diff --git a/.githooks/pre-commit b/.githooks/pre-commit deleted file mode 100755 index 2d093c23..00000000 --- a/.githooks/pre-commit +++ /dev/null @@ -1,108 +0,0 @@ -#!/usr/bin/env bash - -printf "\e[33;1m%s\e[0m\n" 'Started Sorayomi Pre-Commit hook' - -# Undo the stash of the files -pop_stash_files () { - if [ -n "$hasChanges" ]; then - printf "\e[33;1m%s\e[0m\n" '=== Applying git stash changes ===' - git stash pop - fi -} - -# -# Stash unstaged files -# -hasChanges=$(git diff) -if [ -n "$hasChanges" ]; then - printf "\e[33;1m%s\e[0m\n" 'Stashing unstaged changes' - git stash push --keep-index -fi - -printf "\e[33;1m%s\e[0m\n" '=== Running Pub get ===' -flutter pub get -printf "\e[33;1m%s\e[0m\n" 'Finished Running Pub get' - -# -# Localization -# -printf "\e[33;1m%s\e[0m\n" '=== Running Localization ===' -flutter gen-l10n - -hasNewFilesFormatted=$(git diff) -if [ -n "$hasNewFilesFormatted" ]; then - git add . - printf "\e[33;1m%s\e[0m\n" 'Generated locale files added to git stage' -fi -printf "\e[33;1m%s\e[0m\n" 'Finished Running Localization' -printf '%s\n' "${avar}" - -# -# Build Runner -# -printf "\e[33;1m%s\e[0m\n" '=== Running Build Runner ===' -dart run build_runner build --delete-conflicting-outputs - -hasNewFilesFormatted=$(git diff) -if [ -n "$hasNewFilesFormatted" ]; then - git add . - printf "\e[33;1m%s\e[0m\n" 'Generated locale files added to git stage' -fi -printf "\e[33;1m%s\e[0m\n" 'Finished Running Build Runner' -printf '%s\n' "${avar}" - -# -# Flutter formatter -# -printf "\e[33;1m%s\e[0m\n" '=== Running Flutter Formatter ===' -dart format . - -hasNewFilesFormatted=$(git diff) -if [ -n "$hasNewFilesFormatted" ]; then - git add . - printf "\e[33;1m%s\e[0m\n" 'Formmated files added to git stage' -fi -printf "\e[33;1m%s\e[0m\n" 'Finished running Flutter Formatter' -printf '%s\n' "${avar}" - -# -# Dart Fix -# -printf "\e[33;1m%s\e[0m\n" '=== Running Dart Fix ===' -dart fix --apply - -hasNewFilesFormatted=$(git diff) -if [ -n "$hasNewFilesFormatted" ]; then - git add . - printf "\e[33;1m%s\e[0m\n" 'Fixed files added to git stage' -fi -printf "\e[33;1m%s\e[0m\n" 'Finished running Dart Fix' -printf '%s\n' "${avar}" - -# -# Flutter Analyzer -# -printf "\e[33;1m%s\e[0m\n" '=== Running Flutter analyzer ===' -flutter analyze -if [ $? -ne 0 ]; then - printf "\e[31;1m%s\e[0m\n" '=== Flutter analyzer error ===' - pop_stash_files - exit 1 -fi -printf "\e[33;1m%s\e[0m\n" 'Finished running Flutter analyzer' -printf '%s\n' "${avar}" - - -# Unit tests -# printf "\e[33;1m%s\e[0m\n" '=== Running Unit Tests ===' -# flutter test -# if [ $? -ne 0 ]; then -# printf "\e[31;1m%s\e[0m\n" '=== Unit tests error ===' -# pop_stash_files -# exit 1 -# fi -# printf "\e[33;1m%s\e[0m\n" 'Finished running Unit Tests' -# printf '%s\n' "${avar}" - -printf "\e[33;1m%s\e[0m\n" 'Finished running Sorayomi Pre-hook' -pop_stash_files \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 9ec05dae..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,57 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: '' -assignees: '' - ---- - -**PLEASE READ THIS** - -I acknowledge that: - -- I have updated to the latest version of the app. -- I have tried the troubleshooting guide described in `README.md` -- If this is a request for adding/changing an extension it should be brought up to Tachiyomi: https://github.com/tachiyomiorg/tachiyomi-extensions/issues/new/choose -- If this is an issue with some extension not working properly, It does work inside Tachiyomi as intended. -- I have searched the existing issues and this is a new ticket **NOT** a duplicate or related to another open issue -- I will fill out the title and the information in this template - -Note that the issue will be automatically closed if you do not fill out the title or requested information. - -**DELETE THIS SECTION IF YOU HAVE READ AND ACKNOWLEDGED IT** - ---- - -**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 an error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -## Device information (Server) -- Tachidesk version: (Example: v0.2.3-r255-win32) -- Server Operating System: (Example: Ubuntu 20.04) -- Server Desktop Environment: N/A or (Example: Gnome 40) -- Server JVM version: bundled with win32 or (Example: Java 8 Update 281 or OpenJDK 8u281) -## Device information (Client) -- Client version: (Example: 0.1.1) -- Client Type: (Example: Web, Android, Linux, Windows.) -- Client Operating System: (Example: Ubuntu 20.04) -- Client Specifications: (Example: Pixel 4a) -- (If the Client type is web) Client Web Browser: (Example: Google Chrome 89.0.4389.82) - - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 04120c2d..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: '' -assignees: '' - ---- - -**PLEASE READ THIS** - -I acknowledge that: - -- I have updated to the latest version of the app. -- I have tried the troubleshooting guide described in `README.md` -- If this is a request for adding/changing an extension it should be brought up to Tachiyomi: https://github.com/tachiyomiorg/tachiyomi-extensions/issues/new/choose -- If this is an issue with some extension not working properly, It does work in Tachiyomi application as intended. -- I have searched the existing issues and this is a new ticket **NOT** a duplicate or related to another open issue -- I will fill out the title and the information in this template - -Note that the issue will be automatically closed if you do not fill out the title or requested information. - -**DELETE THIS SECTION IF YOU HAVE READ AND ACKNOWLEDGED IT** - ---- - -**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. diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index 62dc169f..00000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,196 +0,0 @@ -name: Publish -on: - # Enable manual run - workflow_dispatch: - push: - tags: - - "*.*.*" -env: - pkg_name: tachidesk-sorayomi -jobs: - create-build: - name: Create ${{ matrix.target }} build - runs-on: ${{ matrix.os }} - # softprops/action-gh-release needs this permission - permissions: - contents: write - - strategy: - # Disable fail-fast as we want results from all even if one fails. - fail-fast: false - matrix: - include: - - os: ubuntu-latest - target: android - build_path: build/app/outputs/flutter-apk - - os: macos-latest - target: ios - build_path: build/ios - - os: ubuntu-latest - target: web - build_path: build/web - - os: ubuntu-latest - target: linux - build_path: build/linux/x64/release/bundle - - os: macos-latest # Catalina - target: macos - build_path: build/macos/Build/Products/Release - - os: windows-latest - target: windows - build_path: build\windows\x64\runner\Release - - steps: - - uses: subosito/flutter-action@v2 - with: - channel: 'stable' - - name: Install Linux dependencies - if: matrix.target == 'linux' - run: | - sudo apt-get update -y - sudo apt-get install -y libgtk-3-dev libx11-dev pkg-config cmake ninja-build libblkid-dev - - name: Install Android dependencies - if: matrix.target == 'android' - uses: actions/setup-java@v3 - with: - distribution: 'zulu' - java-version: "12.x" - - - name: Enable desktop support - if: matrix.target != 'android' && matrix.target != 'ios' && matrix.target != 'web' - run: | - flutter config --enable-linux-desktop - flutter config --enable-macos-desktop - flutter config --enable-windows-desktop - - run: flutter doctor -v - - uses: actions/checkout@v3 - # - run: flutter create . - - run: flutter pub get - - - name: Configure Keystore for Android - if: matrix.target == 'android' - working-directory: android - run: | - echo "${{ secrets.PLAY_STORE_UPLOAD_KEY }}" | base64 --decode > app/upload-keystore.jks - echo "storeFile=upload-keystore.jks" >> key.properties - echo "keyAlias=${{ secrets.KEYSTORE_KEY_ALIAS }}" >> key.properties - echo "storePassword=${{ secrets.KEYSTORE_STORE_PASSWORD }}" >> key.properties - echo "keyPassword=${{ secrets.KEYSTORE_KEY_PASSWORD }}" >> key.properties - - - if: matrix.target != 'android' && matrix.target != 'ios' - run: flutter build ${{ matrix.target }} --release - - if: matrix.target == 'android' - run: | - flutter build apk --release - flutter build apk --split-per-abi --release - - if: matrix.target == 'ios' - run: flutter build ios --release --no-codesign - - - name: Copy VC redistributables to release directory for Windows - if: matrix.target == 'windows' - working-directory: ${{ matrix.build_path }} - run: | - Copy-Item (vswhere -latest -find 'VC\Redist\MSVC\*\x64\*\msvcp140.dll') . - Copy-Item (vswhere -latest -find 'VC\Redist\MSVC\*\x64\*\vcruntime140.dll') . - Copy-Item (vswhere -latest -find 'VC\Redist\MSVC\*\x64\*\vcruntime140_1.dll') . - - name: Rename build for Android - if: matrix.target == 'android' - working-directory: ${{ matrix.build_path }} - run: | - mv app-release.apk "$GITHUB_WORKSPACE/${{ env.pkg_name }}-${{ github.ref_name }}-${{ matrix.target }}-all.apk" - mv app-arm64-v8a-release.apk "$GITHUB_WORKSPACE/${{ env.pkg_name }}-${{ github.ref_name }}-${{ matrix.target }}-arm64-v8a.apk" - mv app-armeabi-v7a-release.apk "$GITHUB_WORKSPACE/${{ env.pkg_name }}-${{ github.ref_name }}-${{ matrix.target }}-armeabi-v7a.apk" - mv app-x86_64-release.apk "$GITHUB_WORKSPACE/${{ env.pkg_name }}-${{ github.ref_name }}-${{ matrix.target }}-x86_64.apk" - - - name: Compress build for iOS - if: matrix.target == 'ios' - working-directory: ${{ matrix.build_path }} - run: | - cd iphoneos - mkdir Payload - cd Payload - ln -s ../Runner.app - cd .. - zip -r app-release.ipa Payload - mv app-release.ipa "$GITHUB_WORKSPACE/${{ env.pkg_name }}-${{ github.ref_name }}-${{ matrix.target }}.ipa" - - - name: Compress build for Web - if: matrix.target == 'web' - working-directory: ${{ matrix.build_path }} - run: zip -r "$GITHUB_WORKSPACE/${{ env.pkg_name }}-${{ github.ref_name }}-${{ matrix.target }}.zip" * - - - name: Compress build for Linux - if: matrix.target == 'linux' - working-directory: ${{ matrix.build_path }} - run: | - cp "$GITHUB_WORKSPACE/scripts/${{ env.pkg_name }}.desktop" . - cp "$GITHUB_WORKSPACE/assets/icons/launcher/sorayomi_icon.png" "./${{ env.pkg_name }}.png" - GZIP=-9 tar czf "$GITHUB_WORKSPACE/${{ env.pkg_name }}-${{ github.ref_name }}-${{ matrix.target }}-x64.tar.gz" * - - - name: Build deb package - if: matrix.target == 'linux' - run: | - mkdir "build/deb" - mkdir "build/deb/${{ env.pkg_name }}-${{ github.ref_name }}" - cp -r "${{ matrix.build_path }}"/* "build/deb/${{ env.pkg_name }}-${{ github.ref_name }}/" - cp "${{ env.pkg_name }}-${{ github.ref_name }}-${{ matrix.target }}-x64.tar.gz" "build/deb/${{ env.pkg_name }}_${{ github.ref_name }}.orig.tar.gz" - cp -r scripts/debian "build/deb/${{ env.pkg_name }}-${{ github.ref_name }}/" - - cd "build/deb/${{ env.pkg_name }}-${{ github.ref_name }}" - sed -i "s/\$pkgver/${{ github.ref_name }}/" debian/changelog - sed -i "s/\$pkgrel/1/" debian/changelog - - sudo apt install build-essential devscripts debhelper - debuild --no-lintian -us -uc - cp "../${{ env.pkg_name }}_${{ github.ref_name }}-1_amd64.deb" "$GITHUB_WORKSPACE/" - - - name: Compress build for macOS - if: matrix.target == 'macos' - working-directory: ${{ matrix.build_path }} - run: ditto -c -k --sequesterRsrc --keepParent "Tachidesk Sorayomi.app" "$GITHUB_WORKSPACE/${{ env.pkg_name }}-${{ github.ref_name }}-${{ matrix.target }}-x64.zip" - - name: Compress build for Windows - if: matrix.target == 'windows' - working-directory: ${{ matrix.build_path }} - run: compress-archive -Path * -DestinationPath "${env:GITHUB_WORKSPACE}\${{ env.pkg_name }}-${{ github.ref_name }}-${{ matrix.target }}-x64.zip" - - name: Create MSI Package - if: matrix.target == 'windows' && startsWith(github.ref, 'refs/tags/') - working-directory: ${{ matrix.build_path }} - run: | - $env:Path += ";C:\Program Files (x86)\WiX Toolset v3.11\bin" - $upgradeCode = [guid]::NewGuid().Guid - Copy-Item "${env:GITHUB_WORKSPACE}\scripts\${{ env.pkg_name }}-x64.wxs" . - Copy-Item "${env:GITHUB_WORKSPACE}\assets\icons\launcher\sorayomi_icon.ico" . - heat dir data -cg data -dr data -sreg -sfrag -gg -o data.wxs - candle -arch x64 -dVersion="${{ github.ref_name }}" -dUpgradeCode="$upgradeCode" -dIcon="sorayomi_icon.ico" "${{ env.pkg_name }}-x64.wxs" data.wxs - light -b data "${{ env.pkg_name }}-x64.wixobj" data.wixobj -o "${{ env.pkg_name }}-${{ github.ref_name }}-${{ matrix.target }}-x64.msi" - Move-Item "${{ env.pkg_name }}-${{ github.ref_name }}-${{ matrix.target }}-x64.msi" "${env:GITHUB_WORKSPACE}" - - - name: Add packaged build to release draft - uses: softprops/action-gh-release@v1 - if: startsWith(github.ref, 'refs/tags/') - with: - draft: false - files: ${{ env.pkg_name }}* - token: ${{ secrets.WINGET }} - - winget-publish: - needs: create-build - runs-on: windows-latest # action can only be run on windows - steps: - - name: Update WINGET manifest - uses: vedantmgoyal2009/winget-releaser@v2 - with: - identifier: Suwayomi.Tachidesk-Sorayomi - version: ${{ github.ref_name }} - token: ${{ secrets.WINGET }} - - homebrew-cask-publish: - needs: create-build - runs-on: macos-latest - steps: - - name: Update Homebrew cask - uses: macauley/action-homebrew-bump-cask@v1 - with: - token: ${{secrets.WINGET}} - tap: homebrew/homebrew-cask - cask: tachidesk-sorayomi - livecheck: true diff --git a/.github/workflows/web.yml b/.github/workflows/web.yml deleted file mode 100644 index 25782b44..00000000 --- a/.github/workflows/web.yml +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright (c) 2022 Contributors to the Suwayomi project -# -# 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/. - -name: gh-Pages - -on: - workflow_dispatch: - push: - tags: - - "*.*.*" - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 # Only works with v2 - - uses: subosito/flutter-action@v2 - with: - channel: 'stable' - - uses: bluefireteam/flutter-gh-pages@v7 - with: - baseHref: /Tachidesk-Sorayomi/ \ No newline at end of file diff --git a/.gitignore b/.gitignore deleted file mode 100644 index f4c0b3a4..00000000 --- a/.gitignore +++ /dev/null @@ -1,46 +0,0 @@ -# Miscellaneous -lib/util_scripts -sym_* -*.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 -**/doc/api/ -**/ios/Flutter/.last_build_id -.dart_tool/ -.flutter-plugins -.flutter-plugins-dependencies -.packages -.pub-cache/ -.pub/ -/build/ - -# Symbolication related -app.*.symbols - -# Obfuscation related -app.*.map.json - -# Android Studio will place build artifacts here -/android/app/debug -/android/app/profile -/android/app/release diff --git a/.last_build_id b/.last_build_id new file mode 100644 index 00000000..e6ce22ee --- /dev/null +++ b/.last_build_id @@ -0,0 +1 @@ +0cb877857fa0e3906c47cb8d3f6f761c \ No newline at end of file diff --git a/.metadata b/.metadata deleted file mode 100644 index 87fe9740..00000000 --- a/.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: f72efea43c3013323d1b95cff571f3c1caa37583 - channel: stable - -project_type: app - -# Tracks metadata for the flutter migrate command -migration: - platforms: - - platform: root - create_revision: f72efea43c3013323d1b95cff571f3c1caa37583 - base_revision: f72efea43c3013323d1b95cff571f3c1caa37583 - - platform: android - create_revision: f72efea43c3013323d1b95cff571f3c1caa37583 - base_revision: f72efea43c3013323d1b95cff571f3c1caa37583 - - platform: ios - create_revision: f72efea43c3013323d1b95cff571f3c1caa37583 - base_revision: f72efea43c3013323d1b95cff571f3c1caa37583 - - platform: linux - create_revision: f72efea43c3013323d1b95cff571f3c1caa37583 - base_revision: f72efea43c3013323d1b95cff571f3c1caa37583 - - platform: macos - create_revision: f72efea43c3013323d1b95cff571f3c1caa37583 - base_revision: f72efea43c3013323d1b95cff571f3c1caa37583 - - platform: web - create_revision: f72efea43c3013323d1b95cff571f3c1caa37583 - base_revision: f72efea43c3013323d1b95cff571f3c1caa37583 - - platform: windows - create_revision: f72efea43c3013323d1b95cff571f3c1caa37583 - base_revision: f72efea43c3013323d1b95cff571f3c1caa37583 - - # 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/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index a3a732ef..00000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "tachidesk_sorayomi", - "request": "launch", - "type": "dart" - }, - { - "name": "tachidesk_sorayomi (profile mode)", - "request": "launch", - "type": "dart", - "flutterMode": "profile" - }, - { - "name": "tachidesk_sorayomi (release mode)", - "request": "launch", - "type": "dart", - "flutterMode": "release" - } - ] -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index aea96891..00000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "cSpell.words": [ - "canonicalized", - "Compat", - "dattatreya", - "horiz", - "keydown", - "kindlish", - "localsourcelang", - "Mangas", - "microtask", - "phonelink", - "proto", - "pubspec", - "readmore", - "reddy", - "Scanlator", - "scanlators", - "sublist", - "suwayomi", - "tachidesk", - "Tachiyomi", - "tekartik", - "vals", - "Webtoon", - "webtoons" - ], - "licenser.license": "MPLv2", - "licenser.projectName": "Tachidesk-Sorayomi", - "licenser.author": "Contributors to the Suwayomi project" -} diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md deleted file mode 100644 index b08e4793..00000000 --- a/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,128 +0,0 @@ -# Contributor Covenant Code of Conduct - -## Our Pledge - -We as members, contributors, and leaders pledge to make participation in our -community a harassment-free experience for everyone, regardless of age, body -size, visible or invisible disability, ethnicity, sex characteristics, gender -identity and expression, level of experience, education, socio-economic status, -nationality, personal appearance, race, religion, or sexual identity -and orientation. - -We pledge to act and interact in ways that contribute to an open, welcoming, -diverse, inclusive, and healthy community. - -## Our Standards - -Examples of behavior that contributes to a positive environment for our -community include: - -* Demonstrating empathy and kindness toward other people -* Being respectful of differing opinions, viewpoints, and experiences -* Giving and gracefully accepting constructive feedback -* Accepting responsibility and apologizing to those affected by our mistakes, - and learning from the experience -* Focusing on what is best not just for us as individuals, but for the - overall community - -Examples of unacceptable behavior include: - -* The use of sexualized language or imagery, and sexual attention or - advances of any kind -* Trolling, insulting or derogatory comments, and personal or political attacks -* Public or private harassment -* Publishing others' private information, such as a physical or email - address, without their explicit permission -* Other conduct which could reasonably be considered inappropriate in a - professional setting - -## Enforcement Responsibilities - -Community leaders are responsible for clarifying and enforcing our standards of -acceptable behavior and will take appropriate and fair corrective action in -response to any behavior that they deem inappropriate, threatening, offensive, -or harmful. - -Community leaders have the right and responsibility to remove, edit, or reject -comments, commits, code, wiki edits, issues, and other contributions that are -not aligned to this Code of Conduct, and will communicate reasons for moderation -decisions when appropriate. - -## Scope - -This Code of Conduct applies within all community spaces, and also applies when -an individual is officially representing the community in public spaces. -Examples of representing our community include using an official e-mail address, -posting via an official social media account, or acting as an appointed -representative at an online or offline event. - -## Enforcement - -Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported to the community leaders responsible for enforcement at -DISCORD. -All complaints will be reviewed and investigated promptly and fairly. - -All community leaders are obligated to respect the privacy and security of the -reporter of any incident. - -## Enforcement Guidelines - -Community leaders will follow these Community Impact Guidelines in determining -the consequences for any action they deem in violation of this Code of Conduct: - -### 1. Correction - -**Community Impact**: Use of inappropriate language or other behavior deemed -unprofessional or unwelcome in the community. - -**Consequence**: A private, written warning from community leaders, providing -clarity around the nature of the violation and an explanation of why the -behavior was inappropriate. A public apology may be requested. - -### 2. Warning - -**Community Impact**: A violation through a single incident or series -of actions. - -**Consequence**: A warning with consequences for continued behavior. No -interaction with the people involved, including unsolicited interaction with -those enforcing the Code of Conduct, for a specified period of time. This -includes avoiding interactions in community spaces as well as external channels -like social media. Violating these terms may lead to a temporary or -permanent ban. - -### 3. Temporary Ban - -**Community Impact**: A serious violation of community standards, including -sustained inappropriate behavior. - -**Consequence**: A temporary ban from any interaction or public -communication with the community for a specified period. No public or -private interaction with the people involved, including unsolicited interaction -with those enforcing the Code of Conduct, is allowed during this period. -Violating these terms may lead to a permanent ban. - -### 4. Permanent Ban - -**Community Impact**: Demonstrating a pattern of violation of community -standards, including sustained inappropriate behavior, harassment of an -individual, or aggression toward or disparagement of classes of individuals. - -**Consequence**: A permanent ban from any public interaction within -the community. - -## Attribution - -This Code of Conduct is adapted from the [Contributor Covenant][homepage], -version 2.0, available at -https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. - -Community Impact Guidelines were inspired by [Mozilla's code of conduct -enforcement ladder](https://github.com/mozilla/diversity). - -[homepage]: https://www.contributor-covenant.org - -For answers to common questions about this code of conduct, see the FAQ at -https://www.contributor-covenant.org/faq. Translations are available at -https://www.contributor-covenant.org/translations. diff --git a/LICENSE b/LICENSE deleted file mode 100644 index a612ad98..00000000 --- a/LICENSE +++ /dev/null @@ -1,373 +0,0 @@ -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. diff --git a/README.md b/README.md deleted file mode 100644 index 384553fc..00000000 --- a/README.md +++ /dev/null @@ -1,200 +0,0 @@ -

- Tachidesk Sorayomi logo -

- -

Tachidesk Sorayomi

- -
- -[![Platform](https://img.shields.io/badge/platform-Android%20%7C%20iOS%20%7C%20Linux%20%7C%20Windows%20%7C%20MacOS%20%7C%20Web-lightgrey)][release] -[![Discord](https://img.shields.io/discord/801021177333940224.svg?label=discord&labelColor=7289da&color=2c2f33&style=flat)](https://discord.gg/DDZdqZWaHA) - -
- -
- -[![GitHub Stars](https://img.shields.io/github/stars/Suwayomi/Tachidesk-Sorayomi)](https://github.com/Suwayomi/Tachidesk-Sorayomi) -[![GitHub License](https://img.shields.io/github/license/Suwayomi/Tachidesk-Sorayomi)](https://github.com/Suwayomi/Tachidesk-Sorayomi/blob/main/LICENSE) -![CI](https://github.com/Suwayomi/Tachidesk-Sorayomi/actions/workflows/publish.yml/badge.svg) -[![stable release](https://img.shields.io/github/release/Suwayomi/Tachidesk-Sorayomi.svg?maxAge=3600&label=download)](https://github.com/Suwayomi/Tachidesk-Sorayomi/releases) - -
- - - -

-A free and open source manga reader based on Flutter to read manga from a Tachidesk-Server instance.

-Tachidesk-Sorayomi need to connect with an already hosted server.

-Tachidesk-Sorayomi supports Linux, Windows, MacOS, Web, iOS and Android. -

- ---- - -## Is this application usable? Should I test it? - -Here is a list of current features for interaction with Tachidesk-Sorayomi: - -- Managing installed Extensions. -- Interaction with your library. -- Browsing installed sources. -- Viewing manga and chapters. -- Reading, downloading, and managing chapters. -- Viewing chapter updates - -**Note:** Keep in mind that Tachidesk-Sorayomi and Tachidesk-Server are alpha software, so it can have issues. See [Support and help](#support-and-help) if it happens. - - -### Supported Tachidesk versions - -These are the versions of [Tachidesk-Server][tachidesk-server] that Tachidesk-Sorayomi supports. - -#### [Release build][release] - -- [Tachidesk-Server][tachidesk-server] v0.6.6+ - - -## Downloading and Running the app - -### Android - -Download *-android-all.apk file from latest release [the releases section][release]. - - -### iOS - -- Download the latest .ipa file from [the releases section][release] -- use [AltStore](https://altstore.io/) to install Sorayomi in ios. - -### Windows - -Download the latest .msi file from [the releases section][release]. - -if you use WINGET, you can run -``` -winget install tachidesk-sorayomi -``` - -### MacOS - -- Download the *-macos-x64.zip from the latest release [the releases section][release] -- Extract the file. -- Drag and drop the extracted app file to applications folder in finder. - -if you use HomeBrew, you can run -``` -brew install --cask tachidesk-sorayomi -``` - -### Debian based Linux - -Download the latest deb release from [the releases section][release]. - -### Arch based Linux - -Download the latest release from [the aur](https://aur.archlinux.org/packages/tachidesk-sorayomi-bin). - -If you use yay, you can run -``` -yay -S tachidesk-sorayomi-bin -``` -inside a terminal window. - -### Web - -Download the latest web.zip file from [the releases section][release]. - -- Sorayomi-web deployed in GitHub pages. You can check out [Sorayomi here](https://suwayomi.github.io/Tachidesk-Sorayomi/). - - -## Post installation - - - Configure your server address in `Navigation bar > more screen > Server URL`. - -## Building from source - -These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. - -### Prerequisites - -You can install Flutter & Dart from [Official website](https://docs.flutter.dev/get-started/install) - - - Dart sdk - - Flutter - Channel Stable - -### Building - -1. Clone the repository: - -``` - $ git clone https://github.com/Suwayomi/Tachidesk-Sorayomi.git - $ cd Tachidesk-Sorayomi/ -``` -2. You can install all dependencies by running this command in terminal: - -``` - $ flutter pub get -``` - -3. Now enter the following command to start debugging the app: - -``` - $ flutter run -``` - -- Localization generator -``` - $ flutter gen-l10n -``` - -- Pull-Request Suggestion - - Install GitHooks after cloning the repo using `git config --local core.hooksPath .githooks` - -## Support and help - -- Join Tachidesk's [discord server](https://discord.gg/DDZdqZWaHA) to hang out with the community and receive support and help. - - -## Built Using - -- [Flutter](https://flutter.dev/) is an open source framework by Google for building beautiful, natively compiled, multi-platform applications from a single codebase. - -- [Flutter Riverpod](https://pub.dev/packages/riverpod/) - A simple way to access state while robust and testable. - -- [Riverpod Architecture](https://codewithandrea.com/articles/flutter-app-architecture-riverpod-introduction/) - File architecture developed by [@bizz84](https://github.com/bizz84) - -Find other dependencies in [pubspec.yaml](pubspec.yaml) - -## Credit - -- The `Tachidesk-server` project is developed by [@AriaMoradi](https://github.com/AriaMoradi) and contributors, - -- The `Tachidesk-Sorayomi` project is developed by [@DattatreyaReddy](https://github.com/DattatreyaReddy) and contributors, - -- CI-CD for `Tachidesk-Sorayomi` is developed by [@mahor1221](https://github.com/mahor1221) and contributors. - -## Translation -Feel free to translate the project on [Weblate](https://hosted.weblate.org/projects/suwayomi/tachidesk-sorayomi/) - -
Translation Progress - -Translation status - -
- -## License - -A link for [Tachidesk is provided here](https://github.com/Suwayomi/Tachidesk) and is licensed under `Mozilla Public License v2.0`. - -You can obtain a copy of `Mozilla Public License v2.0` from https://mozilla.org/MPL/2.0/ - - - Copyright (C) Contributors to the Suwayomi project - - 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/. - - -[release]: https://github.com/Suwayomi/Tachidesk-Sorayomi/releases -[tachidesk-server]: https://github.com/Suwayomi/Tachidesk-Server -[tachidesk-server-preview]: https://github.com/Suwayomi/Tachidesk-Server-preview/releases diff --git a/analysis_options.yaml b/analysis_options.yaml deleted file mode 100644 index bc304fd8..00000000 --- a/analysis_options.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# This file configures the analyzer, which statically analyzes Dart code to -# check for errors, warnings, and lints. -# -# The issues identified by the analyzer are surfaced in the UI of Dart-enabled -# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be -# invoked from the command line by running `flutter analyze`. - -# The following line activates a set of recommended lints for Flutter apps, -# packages, and plugins designed to encourage good coding practices. -include: package:flutter_lints/flutter.yaml - -linter: - # The lint rules applied to this project can be customized in the - # section below to disable rules from the `package:flutter_lints/flutter.yaml` - # included above or to enable additional rules. A list of all available lints - # and their documentation is published at - # https://dart-lang.github.io/linter/lints/index.html. - # - # Instead of disabling a lint rule for the entire project in the - # section below, it can also be suppressed for a single line of code - # or a specific dart file by using the `// ignore: name_of_lint` and - # `// ignore_for_file: name_of_lint` syntax on the line or in the file - # producing the lint. - rules: - # avoid_print: false # Uncomment to disable the `avoid_print` rule - # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule - prefer_relative_imports: true - directives_ordering: true - -# Additional information about this file can be found at -# https://dart.dev/guides/language/analysis-options -analyzer: - exclude: - - "**/*.gform.dart" - - "**/*.g.dart" - - "**/*.freezed.dart" - - errors: - invalid_annotation_target: ignore \ No newline at end of file diff --git a/android/.gitignore b/android/.gitignore deleted file mode 100644 index 6f568019..00000000 --- a/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/android/app/build.gradle b/android/app/build.gradle deleted file mode 100644 index 84de668d..00000000 --- a/android/app/build.gradle +++ /dev/null @@ -1,83 +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" - -def keystoreProperties = new Properties() -def keystorePropertiesFile = rootProject.file('key.properties') -if (keystorePropertiesFile.exists()) { - keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) -} - -android { - compileSdkVersion 33 // 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.suwayomi.tachidesk_sorayomi" - // You can update the following values to match your application needs. - // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration. - minSdkVersion 21 - targetSdkVersion flutter.targetSdkVersion - versionCode flutterVersionCode.toInteger() - versionName flutterVersionName - } - - signingConfigs { - release { - keyAlias keystoreProperties['keyAlias'] - keyPassword keystoreProperties['keyPassword'] - storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null - storePassword keystoreProperties['storePassword'] - } - } - buildTypes { - release { - signingConfig signingConfigs.release - } - } -} - -flutter { - source '../..' -} - -dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" -} diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml deleted file mode 100644 index faae0737..00000000 --- a/android/app/src/debug/AndroidManifest.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml deleted file mode 100644 index 6cb2f6af..00000000 --- a/android/app/src/main/AndroidManifest.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/android/app/src/main/kotlin/com/suwayomi/tachidesk_sorayomi/MainActivity.kt b/android/app/src/main/kotlin/com/suwayomi/tachidesk_sorayomi/MainActivity.kt deleted file mode 100644 index db2eea6c..00000000 --- a/android/app/src/main/kotlin/com/suwayomi/tachidesk_sorayomi/MainActivity.kt +++ /dev/null @@ -1,8 +0,0 @@ -package com.suwayomi.tachidesk_sorayomi - -import io.flutter.embedding.android.FlutterActivity - -import dev.darttools.flutter_android_volume_keydown.FlutterAndroidVolumeKeydownActivity; - -class MainActivity: FlutterAndroidVolumeKeydownActivity() { -} diff --git a/android/app/src/main/res/drawable-hdpi/android12splash.png b/android/app/src/main/res/drawable-hdpi/android12splash.png deleted file mode 100644 index a611684d..00000000 Binary files a/android/app/src/main/res/drawable-hdpi/android12splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-hdpi/branding.png b/android/app/src/main/res/drawable-hdpi/branding.png deleted file mode 100644 index cb5c35ff..00000000 Binary files a/android/app/src/main/res/drawable-hdpi/branding.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-hdpi/splash.png b/android/app/src/main/res/drawable-hdpi/splash.png deleted file mode 100644 index a611684d..00000000 Binary files a/android/app/src/main/res/drawable-hdpi/splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-mdpi/android12splash.png b/android/app/src/main/res/drawable-mdpi/android12splash.png deleted file mode 100644 index de872001..00000000 Binary files a/android/app/src/main/res/drawable-mdpi/android12splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-mdpi/branding.png b/android/app/src/main/res/drawable-mdpi/branding.png deleted file mode 100644 index dd88e17b..00000000 Binary files a/android/app/src/main/res/drawable-mdpi/branding.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-mdpi/splash.png b/android/app/src/main/res/drawable-mdpi/splash.png deleted file mode 100644 index de872001..00000000 Binary files a/android/app/src/main/res/drawable-mdpi/splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-night-hdpi/android12splash.png b/android/app/src/main/res/drawable-night-hdpi/android12splash.png deleted file mode 100644 index c8861cf6..00000000 Binary files a/android/app/src/main/res/drawable-night-hdpi/android12splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-night-hdpi/splash.png b/android/app/src/main/res/drawable-night-hdpi/splash.png deleted file mode 100644 index c8861cf6..00000000 Binary files a/android/app/src/main/res/drawable-night-hdpi/splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-night-mdpi/android12splash.png b/android/app/src/main/res/drawable-night-mdpi/android12splash.png deleted file mode 100644 index e71139cb..00000000 Binary files a/android/app/src/main/res/drawable-night-mdpi/android12splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-night-mdpi/splash.png b/android/app/src/main/res/drawable-night-mdpi/splash.png deleted file mode 100644 index e71139cb..00000000 Binary files a/android/app/src/main/res/drawable-night-mdpi/splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-night-v21/background.png b/android/app/src/main/res/drawable-night-v21/background.png deleted file mode 100644 index 8d8cca37..00000000 Binary files a/android/app/src/main/res/drawable-night-v21/background.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-night-v21/launch_background.xml b/android/app/src/main/res/drawable-night-v21/launch_background.xml deleted file mode 100644 index 52e8749e..00000000 --- a/android/app/src/main/res/drawable-night-v21/launch_background.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/android/app/src/main/res/drawable-night-xhdpi/android12splash.png b/android/app/src/main/res/drawable-night-xhdpi/android12splash.png deleted file mode 100644 index 2e33bc0f..00000000 Binary files a/android/app/src/main/res/drawable-night-xhdpi/android12splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-night-xhdpi/splash.png b/android/app/src/main/res/drawable-night-xhdpi/splash.png deleted file mode 100644 index 2e33bc0f..00000000 Binary files a/android/app/src/main/res/drawable-night-xhdpi/splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-night-xxhdpi/android12splash.png b/android/app/src/main/res/drawable-night-xxhdpi/android12splash.png deleted file mode 100644 index ab32671c..00000000 Binary files a/android/app/src/main/res/drawable-night-xxhdpi/android12splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-night-xxhdpi/splash.png b/android/app/src/main/res/drawable-night-xxhdpi/splash.png deleted file mode 100644 index ab32671c..00000000 Binary files a/android/app/src/main/res/drawable-night-xxhdpi/splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png b/android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png deleted file mode 100644 index 7786bc6a..00000000 Binary files a/android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-night-xxxhdpi/splash.png b/android/app/src/main/res/drawable-night-xxxhdpi/splash.png deleted file mode 100644 index 7786bc6a..00000000 Binary files a/android/app/src/main/res/drawable-night-xxxhdpi/splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-night/background.png b/android/app/src/main/res/drawable-night/background.png deleted file mode 100644 index 8d8cca37..00000000 Binary files a/android/app/src/main/res/drawable-night/background.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-night/launch_background.xml b/android/app/src/main/res/drawable-night/launch_background.xml deleted file mode 100644 index 52e8749e..00000000 --- a/android/app/src/main/res/drawable-night/launch_background.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/android/app/src/main/res/drawable-v21/background.png b/android/app/src/main/res/drawable-v21/background.png deleted file mode 100644 index b0dc5a7e..00000000 Binary files a/android/app/src/main/res/drawable-v21/background.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-v21/launch_background.xml b/android/app/src/main/res/drawable-v21/launch_background.xml deleted file mode 100644 index 52e8749e..00000000 --- a/android/app/src/main/res/drawable-v21/launch_background.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/android/app/src/main/res/drawable-xhdpi/android12splash.png b/android/app/src/main/res/drawable-xhdpi/android12splash.png deleted file mode 100644 index b7fbc3b1..00000000 Binary files a/android/app/src/main/res/drawable-xhdpi/android12splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-xhdpi/branding.png b/android/app/src/main/res/drawable-xhdpi/branding.png deleted file mode 100644 index 0e69d9a5..00000000 Binary files a/android/app/src/main/res/drawable-xhdpi/branding.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-xhdpi/splash.png b/android/app/src/main/res/drawable-xhdpi/splash.png deleted file mode 100644 index b7fbc3b1..00000000 Binary files a/android/app/src/main/res/drawable-xhdpi/splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-xxhdpi/android12splash.png b/android/app/src/main/res/drawable-xxhdpi/android12splash.png deleted file mode 100644 index 5be1b185..00000000 Binary files a/android/app/src/main/res/drawable-xxhdpi/android12splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-xxhdpi/branding.png b/android/app/src/main/res/drawable-xxhdpi/branding.png deleted file mode 100644 index 9b481e42..00000000 Binary files a/android/app/src/main/res/drawable-xxhdpi/branding.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-xxhdpi/splash.png b/android/app/src/main/res/drawable-xxhdpi/splash.png deleted file mode 100644 index 5be1b185..00000000 Binary files a/android/app/src/main/res/drawable-xxhdpi/splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-xxxhdpi/android12splash.png b/android/app/src/main/res/drawable-xxxhdpi/android12splash.png deleted file mode 100644 index db9ae03b..00000000 Binary files a/android/app/src/main/res/drawable-xxxhdpi/android12splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-xxxhdpi/branding.png b/android/app/src/main/res/drawable-xxxhdpi/branding.png deleted file mode 100644 index c0255d8a..00000000 Binary files a/android/app/src/main/res/drawable-xxxhdpi/branding.png and /dev/null differ diff --git a/android/app/src/main/res/drawable-xxxhdpi/splash.png b/android/app/src/main/res/drawable-xxxhdpi/splash.png deleted file mode 100644 index db9ae03b..00000000 Binary files a/android/app/src/main/res/drawable-xxxhdpi/splash.png and /dev/null differ diff --git a/android/app/src/main/res/drawable/background.png b/android/app/src/main/res/drawable/background.png deleted file mode 100644 index b0dc5a7e..00000000 Binary files a/android/app/src/main/res/drawable/background.png and /dev/null differ diff --git a/android/app/src/main/res/drawable/launch_background.xml b/android/app/src/main/res/drawable/launch_background.xml deleted file mode 100644 index 52e8749e..00000000 --- a/android/app/src/main/res/drawable/launch_background.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index db77bb4b..00000000 Binary files a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-hdpi/launcher_icon.png b/android/app/src/main/res/mipmap-hdpi/launcher_icon.png deleted file mode 100644 index 02686c4a..00000000 Binary files a/android/app/src/main/res/mipmap-hdpi/launcher_icon.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index 17987b79..00000000 Binary files a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-mdpi/launcher_icon.png b/android/app/src/main/res/mipmap-mdpi/launcher_icon.png deleted file mode 100644 index 0d9e8e9f..00000000 Binary files a/android/app/src/main/res/mipmap-mdpi/launcher_icon.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png deleted file mode 100644 index 09d43914..00000000 Binary files a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png b/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png deleted file mode 100644 index e36a9ffd..00000000 Binary files a/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index d5f1c8d3..00000000 Binary files a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png b/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png deleted file mode 100644 index 7a2b0dfc..00000000 Binary files a/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png deleted file mode 100644 index 4d6372ee..00000000 Binary files a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png b/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png deleted file mode 100644 index 236a5963..00000000 Binary files a/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png and /dev/null differ diff --git a/android/app/src/main/res/values-night-v31/styles.xml b/android/app/src/main/res/values-night-v31/styles.xml deleted file mode 100644 index 498719cf..00000000 --- a/android/app/src/main/res/values-night-v31/styles.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - diff --git a/android/app/src/main/res/values-night/styles.xml b/android/app/src/main/res/values-night/styles.xml deleted file mode 100644 index dbc9ea9f..00000000 --- a/android/app/src/main/res/values-night/styles.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - diff --git a/android/app/src/main/res/values-v31/styles.xml b/android/app/src/main/res/values-v31/styles.xml deleted file mode 100644 index 8a806e08..00000000 --- a/android/app/src/main/res/values-v31/styles.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml deleted file mode 100644 index 0d1fa8fc..00000000 --- a/android/app/src/main/res/values/styles.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - diff --git a/android/app/src/main/res/xml/network_security_config.xml b/android/app/src/main/res/xml/network_security_config.xml deleted file mode 100644 index 6000a8e5..00000000 --- a/android/app/src/main/res/xml/network_security_config.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - diff --git a/android/app/src/profile/AndroidManifest.xml b/android/app/src/profile/AndroidManifest.xml deleted file mode 100644 index faae0737..00000000 --- a/android/app/src/profile/AndroidManifest.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - diff --git a/android/build.gradle b/android/build.gradle deleted file mode 100644 index 9bc02fa3..00000000 --- a/android/build.gradle +++ /dev/null @@ -1,31 +0,0 @@ -buildscript { - ext.kotlin_version = '1.8.20' - repositories { - google() - mavenCentral() - } - - dependencies { - classpath 'com.android.tools.build:gradle:7.1.2' - 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/android/gradle.properties b/android/gradle.properties deleted file mode 100644 index 94adc3a3..00000000 --- a/android/gradle.properties +++ /dev/null @@ -1,3 +0,0 @@ -org.gradle.jvmargs=-Xmx1536M -android.useAndroidX=true -android.enableJetifier=true diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index cb24abda..00000000 --- a/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.4-all.zip diff --git a/android/settings.gradle b/android/settings.gradle deleted file mode 100644 index 44e62bcf..00000000 --- a/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/assets/AssetManifest.bin b/assets/AssetManifest.bin new file mode 100644 index 00000000..9458fbdd --- /dev/null +++ b/assets/AssetManifest.bin @@ -0,0 +1 @@ + assets/icons/dark_icon.png  assetassets/icons/dark_icon.png'assets/icons/launcher/from_suwayomi.png  asset'assets/icons/launcher/from_suwayomi.png+assets/icons/launcher/ios_sorayomi_icon.png  asset+assets/icons/launcher/ios_sorayomi_icon.png'assets/icons/launcher/sorayomi_icon.ico  asset'assets/icons/launcher/sorayomi_icon.ico'assets/icons/launcher/sorayomi_icon.png  asset'assets/icons/launcher/sorayomi_icon.png/assets/icons/launcher/sorayomi_preview_icon.png  asset/assets/icons/launcher/sorayomi_preview_icon.pngassets/icons/light_icon.png  assetassets/icons/light_icon.pngassets/icons/previous_done.png  assetassets/icons/previous_done.png2packages/cupertino_icons/assets/CupertinoIcons.ttf  asset2packages/cupertino_icons/assets/CupertinoIcons.ttf)packages/fluttertoast/assets/toastify.css  asset)packages/fluttertoast/assets/toastify.css(packages/fluttertoast/assets/toastify.js  asset(packages/fluttertoast/assets/toastify.js9packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf  asset9packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf:packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf  asset:packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf8packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf  asset8packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf \ No newline at end of file diff --git a/assets/AssetManifest.bin.json b/assets/AssetManifest.bin.json new file mode 100644 index 00000000..a75533b9 --- /dev/null +++ b/assets/AssetManifest.bin.json @@ -0,0 +1 @@ +"DQ4HGmFzc2V0cy9pY29ucy9kYXJrX2ljb24ucG5nDAENAQcFYXNzZXQHGmFzc2V0cy9pY29ucy9kYXJrX2ljb24ucG5nBydhc3NldHMvaWNvbnMvbGF1bmNoZXIvZnJvbV9zdXdheW9taS5wbmcMAQ0BBwVhc3NldAcnYXNzZXRzL2ljb25zL2xhdW5jaGVyL2Zyb21fc3V3YXlvbWkucG5nBythc3NldHMvaWNvbnMvbGF1bmNoZXIvaW9zX3NvcmF5b21pX2ljb24ucG5nDAENAQcFYXNzZXQHK2Fzc2V0cy9pY29ucy9sYXVuY2hlci9pb3Nfc29yYXlvbWlfaWNvbi5wbmcHJ2Fzc2V0cy9pY29ucy9sYXVuY2hlci9zb3JheW9taV9pY29uLmljbwwBDQEHBWFzc2V0Bydhc3NldHMvaWNvbnMvbGF1bmNoZXIvc29yYXlvbWlfaWNvbi5pY28HJ2Fzc2V0cy9pY29ucy9sYXVuY2hlci9zb3JheW9taV9pY29uLnBuZwwBDQEHBWFzc2V0Bydhc3NldHMvaWNvbnMvbGF1bmNoZXIvc29yYXlvbWlfaWNvbi5wbmcHL2Fzc2V0cy9pY29ucy9sYXVuY2hlci9zb3JheW9taV9wcmV2aWV3X2ljb24ucG5nDAENAQcFYXNzZXQHL2Fzc2V0cy9pY29ucy9sYXVuY2hlci9zb3JheW9taV9wcmV2aWV3X2ljb24ucG5nBxthc3NldHMvaWNvbnMvbGlnaHRfaWNvbi5wbmcMAQ0BBwVhc3NldAcbYXNzZXRzL2ljb25zL2xpZ2h0X2ljb24ucG5nBx5hc3NldHMvaWNvbnMvcHJldmlvdXNfZG9uZS5wbmcMAQ0BBwVhc3NldAceYXNzZXRzL2ljb25zL3ByZXZpb3VzX2RvbmUucG5nBzJwYWNrYWdlcy9jdXBlcnRpbm9faWNvbnMvYXNzZXRzL0N1cGVydGlub0ljb25zLnR0ZgwBDQEHBWFzc2V0BzJwYWNrYWdlcy9jdXBlcnRpbm9faWNvbnMvYXNzZXRzL0N1cGVydGlub0ljb25zLnR0ZgcpcGFja2FnZXMvZmx1dHRlcnRvYXN0L2Fzc2V0cy90b2FzdGlmeS5jc3MMAQ0BBwVhc3NldAcpcGFja2FnZXMvZmx1dHRlcnRvYXN0L2Fzc2V0cy90b2FzdGlmeS5jc3MHKHBhY2thZ2VzL2ZsdXR0ZXJ0b2FzdC9hc3NldHMvdG9hc3RpZnkuanMMAQ0BBwVhc3NldAcocGFja2FnZXMvZmx1dHRlcnRvYXN0L2Fzc2V0cy90b2FzdGlmeS5qcwc5cGFja2FnZXMvZm9udF9hd2Vzb21lX2ZsdXR0ZXIvbGliL2ZvbnRzL2ZhLWJyYW5kcy00MDAudHRmDAENAQcFYXNzZXQHOXBhY2thZ2VzL2ZvbnRfYXdlc29tZV9mbHV0dGVyL2xpYi9mb250cy9mYS1icmFuZHMtNDAwLnR0Zgc6cGFja2FnZXMvZm9udF9hd2Vzb21lX2ZsdXR0ZXIvbGliL2ZvbnRzL2ZhLXJlZ3VsYXItNDAwLnR0ZgwBDQEHBWFzc2V0BzpwYWNrYWdlcy9mb250X2F3ZXNvbWVfZmx1dHRlci9saWIvZm9udHMvZmEtcmVndWxhci00MDAudHRmBzhwYWNrYWdlcy9mb250X2F3ZXNvbWVfZmx1dHRlci9saWIvZm9udHMvZmEtc29saWQtOTAwLnR0ZgwBDQEHBWFzc2V0BzhwYWNrYWdlcy9mb250X2F3ZXNvbWVfZmx1dHRlci9saWIvZm9udHMvZmEtc29saWQtOTAwLnR0Zg==" \ No newline at end of file diff --git a/assets/AssetManifest.json b/assets/AssetManifest.json new file mode 100644 index 00000000..c0bf12a6 --- /dev/null +++ b/assets/AssetManifest.json @@ -0,0 +1 @@ +{"assets/icons/dark_icon.png":["assets/icons/dark_icon.png"],"assets/icons/launcher/from_suwayomi.png":["assets/icons/launcher/from_suwayomi.png"],"assets/icons/launcher/ios_sorayomi_icon.png":["assets/icons/launcher/ios_sorayomi_icon.png"],"assets/icons/launcher/sorayomi_icon.ico":["assets/icons/launcher/sorayomi_icon.ico"],"assets/icons/launcher/sorayomi_icon.png":["assets/icons/launcher/sorayomi_icon.png"],"assets/icons/launcher/sorayomi_preview_icon.png":["assets/icons/launcher/sorayomi_preview_icon.png"],"assets/icons/light_icon.png":["assets/icons/light_icon.png"],"assets/icons/previous_done.png":["assets/icons/previous_done.png"],"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"],"packages/fluttertoast/assets/toastify.css":["packages/fluttertoast/assets/toastify.css"],"packages/fluttertoast/assets/toastify.js":["packages/fluttertoast/assets/toastify.js"],"packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf":["packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf"],"packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf":["packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf"],"packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf":["packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf"]} \ No newline at end of file diff --git a/assets/FontManifest.json b/assets/FontManifest.json new file mode 100644 index 00000000..23637bc3 --- /dev/null +++ b/assets/FontManifest.json @@ -0,0 +1 @@ +[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]},{"family":"packages/font_awesome_flutter/FontAwesomeBrands","fonts":[{"weight":400,"asset":"packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf"}]},{"family":"packages/font_awesome_flutter/FontAwesomeRegular","fonts":[{"weight":400,"asset":"packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf"}]},{"family":"packages/font_awesome_flutter/FontAwesomeSolid","fonts":[{"weight":900,"asset":"packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf"}]}] \ No newline at end of file diff --git a/assets/NOTICES b/assets/NOTICES new file mode 100644 index 00000000..4062a0ff --- /dev/null +++ b/assets/NOTICES @@ -0,0 +1,37564 @@ +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. +-------------------------------------------------------------------------------- +_fe_analyzer_shared + +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. + +-------------------------------------------------------------------------------- +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 +dart +etc1 +expat +flatbuffers +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) 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. +-------------------------------------------------------------------------------- +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) 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 + +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 + +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 +angle +icu + +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 +skia + +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 +engine +spring_animation +tonic +txt +url_launcher_web +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 + +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. +-------------------------------------------------------------------------------- +analyzer +intl + +Copyright 2013, 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. + +-------------------------------------------------------------------------------- +analyzer_plugin + +Copyright 2017, 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. + +-------------------------------------------------------------------------------- +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 2023 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. +-------------------------------------------------------------------------------- +ansicolor +source_helper + + + 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. + +-------------------------------------------------------------------------------- +archive + +The MIT License + +Copyright (c) 2013-2021 Brendan Duncan. +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. +-------------------------------------------------------------------------------- +args +csslib +logging + +Copyright 2013, 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. + +-------------------------------------------------------------------------------- +async +cli_util +collection +mime +stream_channel +typed_data + +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. + +-------------------------------------------------------------------------------- +boolean_selector +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. + +-------------------------------------------------------------------------------- +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 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 (c) 2022, 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) 2023, 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 2014-2020 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 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 + +Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + +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. +-------------------------------------------------------------------------------- +build +build_runner +code_builder +web_socket_channel + +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. + +-------------------------------------------------------------------------------- +build_config +graphs +io +stream_transform +term_glyph + +Copyright 2017, 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. + +-------------------------------------------------------------------------------- +build_daemon +characters +ffi +package_config + +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. + +-------------------------------------------------------------------------------- +build_resolvers +build_runner_core +test_api +timing + +Copyright 2018, 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. + +-------------------------------------------------------------------------------- +built_collection +built_value + +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. + +-------------------------------------------------------------------------------- +cached_network_image +cached_network_image_platform_interface +cached_network_image_web + + +The MIT License (MIT) + +Copyright (c) 2018 Rene Floor + +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. + +-------------------------------------------------------------------------------- +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. +-------------------------------------------------------------------------------- +checked_yaml + +Copyright 2019, the Dart 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. + +-------------------------------------------------------------------------------- +ci + + 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 2021 Invertase Limited + + 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. +-------------------------------------------------------------------------------- +clock +fake_async +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. +-------------------------------------------------------------------------------- +color + +The MIT License (MIT) + +Copyright (c) 2014 Michael Fenwick + +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. + +-------------------------------------------------------------------------------- +convert +crypto +source_gen + +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. + +-------------------------------------------------------------------------------- +cupertino_icons + +The MIT License (MIT) + +Copyright (c) 2016 Vladimir Kharlampidi + +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. +-------------------------------------------------------------------------------- +custom_lint +custom_lint_core + + 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 2020 Invertase Limited + + 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. + +-------------------------------------------------------------------------------- +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 (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. +-------------------------------------------------------------------------------- +dart_style +glob +http +http_parser +matcher +path +pool +pub_semver +source_span +string_scanner +watcher + +Copyright 2014, 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. + +-------------------------------------------------------------------------------- +dartx + + + 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 2019 Simon Leier + + 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. +-------------------------------------------------------------------------------- +dbus +tachidesk_sorayomi + +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. + +-------------------------------------------------------------------------------- +dio + +MIT License + +Copyright (c) 2018 Wen Du (wendux) +Copyright (c) 2022 The CFUG Team + +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. +-------------------------------------------------------------------------------- +dio_cache_interceptor + + 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. + +-------------------------------------------------------------------------------- +dio_cache_interceptor_hive_store + + 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. + +-------------------------------------------------------------------------------- +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-2020 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. +-------------------------------------------------------------------------------- +file + +Copyright 2017, the Dart 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_picker + +MIT License + +Copyright (c) 2018 Miguel Ruivo + +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 NON INFRINGEMENT. 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. +-------------------------------------------------------------------------------- +fixnum +http_multi_server +shelf +shelf_web_socket +stack_trace + +Copyright 2014, 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. + +-------------------------------------------------------------------------------- +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. +-------------------------------------------------------------------------------- +flex_color_scheme + +BSD 3-Clause License + +FlexColorScheme Copyright (c) 2020, 2021, 2022 +Mike Rydstrom (Twitter @RydMike GitHub rydmike) +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 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 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. + +-------------------------------------------------------------------------------- +flex_seed_scheme + +BSD 3-Clause License + +FlexSeedScheme Copyright (c) 2022 +Mike Rydstrom (Twitter @RydMike GitHub rydmike) +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 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 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. + +-------------------------------------------------------------------------------- +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_android_volume_keydown + +MIT License + +Copyright (c) 2021 Jonathan Goyvaerts + +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. +-------------------------------------------------------------------------------- +flutter_cache_manager + + +The MIT License (MIT) + +Copyright (c) 2017 Rene Floor + +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. + +-------------------------------------------------------------------------------- +flutter_gen_core +flutter_gen_runner + +MIT License + +Copyright (c) 2020-2022 FlutterGen + +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. + +-------------------------------------------------------------------------------- +flutter_hooks + +MIT License + +Copyright (c) 2018 Remi Rousselet + +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. +-------------------------------------------------------------------------------- +flutter_launcher_icons + +MIT License + +Copyright (c) 2019 Mark O'Sullivan + +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. + +-------------------------------------------------------------------------------- +flutter_lints +flutter_markdown +flutter_plugin_android_lifecycle +go_router +go_router_builder +path_provider +path_provider_android +path_provider_foundation +path_provider_linux +path_provider_platform_interface +path_provider_windows +platform +plugin_platform_interface +shared_preferences +shared_preferences_android +shared_preferences_foundation +shared_preferences_linux +shared_preferences_platform_interface +shared_preferences_web +shared_preferences_windows +url_launcher +url_launcher_android +url_launcher_ios +url_launcher_linux +url_launcher_macos +url_launcher_platform_interface +url_launcher_windows +xdg_directories + +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. + +-------------------------------------------------------------------------------- +flutter_native_splash + +MIT License + +Copyright (c) 2022 Jon Hanson + +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. + +-------------------------------------------------------------------------------- +flutter_riverpod +freezed +freezed_annotation +hooks_riverpod +riverpod +riverpod_annotation +riverpod_generator +state_notifier + +MIT License + +Copyright (c) 2020 Remi Rousselet + +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. +-------------------------------------------------------------------------------- +flutter_staggered_grid_view + +MIT License + +Copyright (c) 2018 Romain Rastel + +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. + +-------------------------------------------------------------------------------- +fluttertoast + +MIT License + +Copyright (c) 2020 Karthik Ponnam + +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. + +-------------------------------------------------------------------------------- +font_awesome_flutter + +MIT License + +Copyright (c) 2017 Brian Egan +Copyright (c) 2020 Michael Spiss +Font Awesome Icons by @fontawesome - https://fontawesome.com +License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1) + +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) 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".) +-------------------------------------------------------------------------------- +frontend_server_client + +Copyright 2020, 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. + +-------------------------------------------------------------------------------- +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. +-------------------------------------------------------------------------------- +gap + +MIT License + +Copyright (c) 2020 Romain Rastel + +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. + +-------------------------------------------------------------------------------- +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 Google, Inc. +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 © 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. +-------------------------------------------------------------------------------- +hive + + 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 + + Copyright 2019 Simon Leier + + 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. + +-------------------------------------------------------------------------------- +html + +Copyright (c) 2006-2012 The Authors + +Contributors: +James Graham - jg307@cam.ac.uk +Anne van Kesteren - annevankesteren@gmail.com +Lachlan Hunt - lachlan.hunt@lachy.id.au +Matt McDonald - kanashii@kanashii.ca +Sam Ruby - rubys@intertwingly.net +Ian Hickson (Google) - ian@hixie.ch +Thomas Broyer - t.broyer@ltgt.net +Jacques Distler - distler@golem.ph.utexas.edu +Henri Sivonen - hsivonen@iki.fi +Adam Barth - abarth@webkit.org +Eric Seidel - eric@webkit.org +The Mozilla Foundation (contributions from Henri Sivonen since 2008) +David Flanagan (Mozilla) - dflanagan@mozilla.com +Google LLC (contributed the Dart port) - misc@dartlang.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 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. + +-------------------------------------------------------------------------------- +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-2023 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. +-------------------------------------------------------------------------------- +image + +The MIT License + +Copyright (c) 2013-2022 Brendan Duncan. +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. +-------------------------------------------------------------------------------- +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. +-------------------------------------------------------------------------------- +infinite_scroll_pagination + +MIT License + +Copyright (c) 2021 Edson Bueno + +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. +-------------------------------------------------------------------------------- +json_annotation +json_serializable + +Copyright 2017, the Dart 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. + +-------------------------------------------------------------------------------- +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. +-------------------------------------------------------------------------------- +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. +-------------------------------------------------------------------------------- +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. +-------------------------------------------------------------------------------- +libnatpmp + +BSD 3-Clause License + +Copyright (c) 2007-2022, Thomas BERNARD +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 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 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. + +-------------------------------------------------------------------------------- +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. +-------------------------------------------------------------------------------- +libwebp + +Copyright 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 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 2022 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. + +-------------------------------------------------------------------------------- +markdown + +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. + +-------------------------------------------------------------------------------- +network_info_plus_platform_interface + +// 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. + +-------------------------------------------------------------------------------- +nm + +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. + +-------------------------------------------------------------------------------- +octo_image + +MIT License + +Copyright (c) 2020 Baseflow + +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. + +-------------------------------------------------------------------------------- +package_info_plus + +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. + +-------------------------------------------------------------------------------- +package_info_plus_platform_interface + + + +// 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. +-------------------------------------------------------------------------------- +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. +-------------------------------------------------------------------------------- +permission_handler +permission_handler_android +permission_handler_apple +permission_handler_html +permission_handler_platform_interface + +MIT License + +Copyright (c) 2018 Baseflow + +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. + +-------------------------------------------------------------------------------- +permission_handler_windows + +MIT License + +Copyright (c) 2018 Baseflow + +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. + +-------------------------------------------------------------------------------- +petitparser +xml + +The MIT License + +Copyright (c) 2006-2023 Lukas Renggli. +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. + +-------------------------------------------------------------------------------- +platform_detect + + 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 2017 Workiva 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. + +-------------------------------------------------------------------------------- +pointycastle + + +Copyright (c) 2000 - 2019 The Legion of the Bouncy Castle Inc. (https://www.bouncycastle.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 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. + + +-------------------------------------------------------------------------------- +pubspec_parse + +Copyright 2018, 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. + +-------------------------------------------------------------------------------- +queue + +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. +-------------------------------------------------------------------------------- +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. +-------------------------------------------------------------------------------- +riverpod_analyzer_utils + +MIT License + +Copyright (c) 2023 Remi Rousselet + +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. +-------------------------------------------------------------------------------- +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 + +-------------------------------------------------------------------------------- +rxdart + +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. +-------------------------------------------------------------------------------- +scrollable_positioned_list + +Copyright 2018 the Dart project authors, 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. +-------------------------------------------------------------------------------- +shimmer + +Copyright 2013, the Dart 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. + +-------------------------------------------------------------------------------- +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 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. +-------------------------------------------------------------------------------- +sliver_tools + +The MIT License (MIT) + +Copyright (c) 2020 Pieter van Loon + +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. + +-------------------------------------------------------------------------------- +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. +-------------------------------------------------------------------------------- +sprintf + +Copyright (c) 2012, Richard Eames +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. + +-------------------------------------------------------------------------------- +sqflite +sqflite_common + +BSD 2-Clause License + +Copyright (c) 2019, Alexandre Roux Tekartik +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. + +-------------------------------------------------------------------------------- +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. +-------------------------------------------------------------------------------- +synchronized + +MIT License + +Copyright (c) 2016, Alexandre Roux Tekartik. + +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. +-------------------------------------------------------------------------------- +time + +MIT License + +Copyright (c) 2019 Jeremiah Ogbomo + +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. +-------------------------------------------------------------------------------- +universal_io + + 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 +-------------------------------------------------------------------------------- +uuid + +Copyright (c) 2021 Yulian Kuncheff + +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. +-------------------------------------------------------------------------------- +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 + +Copyright 2023, 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. + +-------------------------------------------------------------------------------- +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. +-------------------------------------------------------------------------------- +win32 + +Copyright 2019, Dart | Windows. 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. +-------------------------------------------------------------------------------- +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. +-------------------------------------------------------------------------------- +yaml + +Copyright (c) 2014, the Dart project authors. +Copyright (c) 2006, Kirill Simonov. + +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. + +-------------------------------------------------------------------------------- +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 + +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 2017 The Chromium 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 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 2018 The Chromium 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 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 2019 The Chromium 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 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 + +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/assets/icons/dark_icon.png b/assets/assets/icons/dark_icon.png similarity index 100% rename from assets/icons/dark_icon.png rename to assets/assets/icons/dark_icon.png diff --git a/assets/icons/launcher/from_suwayomi.png b/assets/assets/icons/launcher/from_suwayomi.png similarity index 100% rename from assets/icons/launcher/from_suwayomi.png rename to assets/assets/icons/launcher/from_suwayomi.png diff --git a/assets/icons/launcher/ios_sorayomi_icon.png b/assets/assets/icons/launcher/ios_sorayomi_icon.png similarity index 100% rename from assets/icons/launcher/ios_sorayomi_icon.png rename to assets/assets/icons/launcher/ios_sorayomi_icon.png diff --git a/assets/icons/launcher/sorayomi_icon.ico b/assets/assets/icons/launcher/sorayomi_icon.ico similarity index 100% rename from assets/icons/launcher/sorayomi_icon.ico rename to assets/assets/icons/launcher/sorayomi_icon.ico diff --git a/assets/icons/launcher/sorayomi_icon.png b/assets/assets/icons/launcher/sorayomi_icon.png similarity index 100% rename from assets/icons/launcher/sorayomi_icon.png rename to assets/assets/icons/launcher/sorayomi_icon.png diff --git a/assets/icons/launcher/sorayomi_preview_icon.png b/assets/assets/icons/launcher/sorayomi_preview_icon.png similarity index 100% rename from assets/icons/launcher/sorayomi_preview_icon.png rename to assets/assets/icons/launcher/sorayomi_preview_icon.png diff --git a/assets/icons/light_icon.png b/assets/assets/icons/light_icon.png similarity index 100% rename from assets/icons/light_icon.png rename to assets/assets/icons/light_icon.png diff --git a/assets/icons/previous_done.png b/assets/assets/icons/previous_done.png similarity index 100% rename from assets/icons/previous_done.png rename to assets/assets/icons/previous_done.png diff --git a/assets/fonts/MaterialIcons-Regular.otf b/assets/fonts/MaterialIcons-Regular.otf new file mode 100644 index 00000000..144b25af Binary files /dev/null and b/assets/fonts/MaterialIcons-Regular.otf differ diff --git a/assets/packages/cupertino_icons/assets/CupertinoIcons.ttf b/assets/packages/cupertino_icons/assets/CupertinoIcons.ttf new file mode 100644 index 00000000..e6b745f9 Binary files /dev/null and b/assets/packages/cupertino_icons/assets/CupertinoIcons.ttf differ diff --git a/assets/packages/fluttertoast/assets/toastify.css b/assets/packages/fluttertoast/assets/toastify.css new file mode 100644 index 00000000..9bb84fcb --- /dev/null +++ b/assets/packages/fluttertoast/assets/toastify.css @@ -0,0 +1,14 @@ +/** + * Minified by jsDelivr using clean-css v4.2.3. + * Original file: /npm/toastify-js@1.9.3/src/toastify.css + * + * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files + */ +/*! + * Toastify js 1.9.3 + * https://github.com/apvarun/toastify-js + * @license MIT licensed + * + * Copyright (C) 2018 Varun A P + */ +.toastify{padding:12px 20px;color:#fff;display:inline-block;box-shadow:0 3px 6px -1px rgba(0,0,0,.12),0 10px 36px -4px rgba(77,96,232,.3);background:-webkit-linear-gradient(315deg,#73a5ff,#5477f5);background:linear-gradient(135deg,#73a5ff,#5477f5);position:fixed;opacity:0;transition:all .4s cubic-bezier(.215,.61,.355,1);border-radius:2px;cursor:pointer;text-decoration:none;max-width:calc(50% - 20px);z-index:2147483647}.toastify.on{opacity:1}.toast-close{opacity:.4;padding:0 5px}.toastify-right{right:15px}.toastify-left{left:15px}.toastify-top{top:-150px}.toastify-bottom{bottom:-150px}.toastify-rounded{border-radius:25px}.toastify-avatar{width:1.5em;height:1.5em;margin:-7px 5px;border-radius:2px}.toastify-center{margin-left:auto;margin-right:auto;left:0;right:0;max-width:fit-content;max-width:-moz-fit-content}@media only screen and (max-width:360px){.toastify-left,.toastify-right{margin-left:auto;margin-right:auto;left:0;right:0;max-width:fit-content}} \ No newline at end of file diff --git a/assets/packages/fluttertoast/assets/toastify.js b/assets/packages/fluttertoast/assets/toastify.js new file mode 100644 index 00000000..be9f1456 --- /dev/null +++ b/assets/packages/fluttertoast/assets/toastify.js @@ -0,0 +1,14 @@ +/** + * Minified by jsDelivr using Terser v5.3.0. + * Original file: /npm/toastify-js@1.9.3/src/toastify.js + * + * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files + */ +/*! + * Toastify js 1.9.3 + * https://github.com/apvarun/toastify-js + * @license MIT licensed + * + * Copyright (C) 2018 Varun A P + */ +!function(t,o){"object"==typeof module && module && module.exports?module.exports=o():t.Toastify=o()}(this,(function(t){var o=function(t){return new o.lib.init(t)};function i(t,o){return o.offset[t]?isNaN(o.offset[t])?o.offset[t]:o.offset[t]+"px":"0px"}function s(t,o){return!(!t||"string"!=typeof o)&&!!(t.className&&t.className.trim().split(/\s+/gi).indexOf(o)>-1)}return o.lib=o.prototype={toastify:"1.9.3",constructor:o,init:function(t){return t||(t={}),this.options={},this.toastElement=null,this.options.text=t.text||"Hi there!",this.options.node=t.node,this.options.duration=0===t.duration?0:t.duration||3e3,this.options.selector=t.selector,this.options.callback=t.callback||function(){},this.options.destination=t.destination,this.options.newWindow=t.newWindow||!1,this.options.close=t.close||!1,this.options.gravity="bottom"===t.gravity?"toastify-bottom":"toastify-top",this.options.positionLeft=t.positionLeft||!1,this.options.position=t.position||"",this.options.backgroundColor=t.backgroundColor,this.options.avatar=t.avatar||"",this.options.className=t.className||"",this.options.stopOnFocus=void 0===t.stopOnFocus||t.stopOnFocus,this.options.onClick=t.onClick,this.options.offset=t.offset||{x:0,y:0},this},buildToast:function(){if(!this.options)throw"Toastify is not initialized";var t=document.createElement("div");if(t.className="toastify on "+this.options.className,this.options.position?t.className+=" toastify-"+this.options.position:!0===this.options.positionLeft?(t.className+=" toastify-left",console.warn("Property `positionLeft` will be depreciated in further versions. Please use `position` instead.")):t.className+=" toastify-right",t.className+=" "+this.options.gravity,this.options.backgroundColor&&(t.style.background=this.options.backgroundColor),this.options.node&&this.options.node.nodeType===Node.ELEMENT_NODE)t.appendChild(this.options.node);else if(t.innerHTML=this.options.text,""!==this.options.avatar){var o=document.createElement("img");o.src=this.options.avatar,o.className="toastify-avatar","left"==this.options.position||!0===this.options.positionLeft?t.appendChild(o):t.insertAdjacentElement("afterbegin",o)}if(!0===this.options.close){var s=document.createElement("span");s.innerHTML="✖",s.className="toast-close",s.addEventListener("click",function(t){t.stopPropagation(),this.removeElement(this.toastElement),window.clearTimeout(this.toastElement.timeOutValue)}.bind(this));var n=window.innerWidth>0?window.innerWidth:screen.width;("left"==this.options.position||!0===this.options.positionLeft)&&n>360?t.insertAdjacentElement("afterbegin",s):t.appendChild(s)}if(this.options.stopOnFocus&&this.options.duration>0){var e=this;t.addEventListener("mouseover",(function(o){window.clearTimeout(t.timeOutValue)})),t.addEventListener("mouseleave",(function(){t.timeOutValue=window.setTimeout((function(){e.removeElement(t)}),e.options.duration)}))}if(void 0!==this.options.destination&&t.addEventListener("click",function(t){t.stopPropagation(),!0===this.options.newWindow?window.open(this.options.destination,"_blank"):window.location=this.options.destination}.bind(this)),"function"==typeof this.options.onClick&&void 0===this.options.destination&&t.addEventListener("click",function(t){t.stopPropagation(),this.options.onClick()}.bind(this)),"object"==typeof this.options.offset){var a=i("x",this.options),p=i("y",this.options),r="left"==this.options.position?a:"-"+a,l="toastify-top"==this.options.gravity?p:"-"+p;t.style.transform="translate("+r+","+l+")"}return t},showToast:function(){var t;if(this.toastElement=this.buildToast(),!(t=void 0===this.options.selector?document.body:document.getElementById(this.options.selector)))throw"Root element is not defined";return t.insertBefore(this.toastElement,t.firstChild),o.reposition(),this.options.duration>0&&(this.toastElement.timeOutValue=window.setTimeout(function(){this.removeElement(this.toastElement)}.bind(this),this.options.duration)),this},hideToast:function(){this.toastElement.timeOutValue&&clearTimeout(this.toastElement.timeOutValue),this.removeElement(this.toastElement)},removeElement:function(t){t.className=t.className.replace(" on",""),window.setTimeout(function(){this.options.node&&this.options.node.parentNode&&this.options.node.parentNode.removeChild(this.options.node),t.parentNode&&t.parentNode.removeChild(t),this.options.callback.call(t),o.reposition()}.bind(this),400)}},o.reposition=function(){for(var t,o={top:15,bottom:15},i={top:15,bottom:15},n={top:15,bottom:15},e=document.getElementsByClassName("toastify"),a=0;a0?window.innerWidth:screen.width)<=360?(e[a].style[t]=n[t]+"px",n[t]+=p+15):!0===s(e[a],"toastify-left")?(e[a].style[t]=o[t]+"px",o[t]+=p+15):(e[a].style[t]=i[t]+"px",i[t]+=p+15)}return this},o.lib.init.prototype=o.lib,o})); diff --git a/assets/packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf b/assets/packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf new file mode 100644 index 00000000..f365f12d Binary files /dev/null and b/assets/packages/font_awesome_flutter/lib/fonts/fa-brands-400.ttf differ diff --git a/assets/packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf b/assets/packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf new file mode 100644 index 00000000..6a4c99ff Binary files /dev/null and b/assets/packages/font_awesome_flutter/lib/fonts/fa-regular-400.ttf differ diff --git a/assets/packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf b/assets/packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf new file mode 100644 index 00000000..175b96f4 Binary files /dev/null and b/assets/packages/font_awesome_flutter/lib/fonts/fa-solid-900.ttf differ diff --git a/assets/shaders/ink_sparkle.frag b/assets/shaders/ink_sparkle.frag new file mode 100644 index 00000000..04e5efc1 --- /dev/null +++ b/assets/shaders/ink_sparkle.frag @@ -0,0 +1,124 @@ +{ + "sksl": "// This SkSL shader is autogenerated by spirv-cross.\n\nfloat4 flutter_FragCoord;\n\nuniform vec4 u_color;\nuniform vec4 u_composite_1;\nuniform vec2 u_center;\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\nfloat u_alpha;\nfloat u_sparkle_alpha;\nfloat u_blur;\nfloat u_radius_scale;\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 _319 = FLT_flutter_local_circle_grid(param, param_1, param_2, param_3, param_4);\n float g1 = _319;\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 _331 = FLT_flutter_local_circle_grid(param_5, param_6, param_7, param_8, param_9);\n float g2 = _331;\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 _344 = FLT_flutter_local_circle_grid(param_10, param_11, param_12, param_13, param_14);\n float g3 = _344;\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 _242 = FLT_flutter_local_triangle_noise(param);\n float n = _242;\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 u_alpha = u_composite_1.x;\n u_sparkle_alpha = u_composite_1.y;\n u_blur = u_composite_1.z;\n u_radius_scale = u_composite_1.w;\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 fragColor = mix(wave_color, vec4(1.0), 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_composite_1", + "rows": 4, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 2, + "name": "u_center", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 3, + "name": "u_max_radius", + "rows": 1, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 4, + "name": "u_resolution_scale", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 5, + "name": "u_noise_scale", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 6, + "name": "u_noise_phase", + "rows": 1, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 7, + "name": "u_circle1", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 8, + "name": "u_circle2", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 9, + "name": "u_circle3", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 10, + "name": "u_rotation1", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 11, + "name": "u_rotation2", + "rows": 2, + "type": 10 + }, + { + "array_elements": 0, + "bit_width": 32, + "columns": 1, + "location": 12, + "name": "u_rotation3", + "rows": 2, + "type": 10 + } + ] +} \ No newline at end of file diff --git a/build.yaml b/build.yaml deleted file mode 100644 index aaa6e0dd..00000000 --- a/build.yaml +++ /dev/null @@ -1,6 +0,0 @@ -targets: - $default: - builders: - json_serializable: - options: - explicit_to_json: true \ No newline at end of file diff --git a/canvaskit/canvaskit.js b/canvaskit/canvaskit.js new file mode 100644 index 00000000..bb308587 --- /dev/null +++ b/canvaskit/canvaskit.js @@ -0,0 +1,217 @@ + +var CanvasKitInit = (() => { + var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined; + if (typeof __filename !== 'undefined') _scriptDir = _scriptDir || __filename; + return ( +function(moduleArg = {}) { + +var r=moduleArg,aa,ba;r.ready=new Promise((a,b)=>{aa=a;ba=b}); +(function(a){a.Md=a.Md||[];a.Md.push(function(){a.MakeSWCanvasSurface=function(b){var c=b,d="undefined"!==typeof OffscreenCanvas&&c instanceof OffscreenCanvas;if(!("undefined"!==typeof HTMLCanvasElement&&c instanceof HTMLCanvasElement||d||(c=document.getElementById(b),c)))throw"Canvas with id "+b+" was not found";if(b=a.MakeSurface(c.width,c.height))b.me=c;return b};a.MakeCanvasSurface||(a.MakeCanvasSurface=a.MakeSWCanvasSurface);a.MakeSurface=function(b,c){var d={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(d=a.Surface._makeRasterDirect(d,k,4*b))d.me=null,d.Ue=b,d.Re=c,d.Se=f,d.xe=k,d.getCanvas().clear(a.TRANSPARENT);return d};a.MakeRasterDirectSurface=function(b,c,d){return a.Surface._makeRasterDirect(b,c.byteOffset,d)};a.Surface.prototype.flush=function(b){a.Jd(this.Id);this._flush();if(this.me){var c=new Uint8ClampedArray(a.HEAPU8.buffer,this.xe,this.Se);c=new ImageData(c,this.Ue,this.Re);b?this.me.getContext("2d").putImageData(c, +0,0,b[0],b[1],b[2]-b[0],b[3]-b[1]):this.me.getContext("2d").putImageData(c,0,0)}};a.Surface.prototype.dispose=function(){this.xe&&a._free(this.xe);this.delete()};a.Jd=a.Jd||function(){};a.ne=a.ne||function(){return null}})})(r); +(function(a){a.Md=a.Md||[];a.Md.push(function(){function b(m,p,w){return m&&m.hasOwnProperty(p)?m[p]:w}function c(m){var p=da(ea);ea[p]=m;return p}function d(m){return m.naturalHeight||m.videoHeight||m.displayHeight||m.height}function f(m){return m.naturalWidth||m.videoWidth||m.displayWidth||m.width}function k(m,p,w,y){m.bindTexture(m.TEXTURE_2D,p);y||w.alphaType!==a.AlphaType.Premul||m.pixelStorei(m.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!0);return p}function l(m,p,w){w||p.alphaType!==a.AlphaType.Premul|| +m.pixelStorei(m.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1);m.bindTexture(m.TEXTURE_2D,null)}a.GetWebGLContext=function(m,p){if(!m)throw"null canvas passed into makeWebGLContext";var w={alpha:b(p,"alpha",1),depth:b(p,"depth",1),stencil:b(p,"stencil",8),antialias:b(p,"antialias",0),premultipliedAlpha:b(p,"premultipliedAlpha",1),preserveDrawingBuffer:b(p,"preserveDrawingBuffer",0),preferLowPowerToHighPerformance:b(p,"preferLowPowerToHighPerformance",0),failIfMajorPerformanceCaveat:b(p,"failIfMajorPerformanceCaveat", +0),enableExtensionsByDefault:b(p,"enableExtensionsByDefault",1),explicitSwapControl:b(p,"explicitSwapControl",0),renderViaOffscreenBackBuffer:b(p,"renderViaOffscreenBackBuffer",0)};w.majorVersion=p&&p.majorVersion?p.majorVersion:"undefined"!==typeof WebGL2RenderingContext?2:1;if(w.explicitSwapControl)throw"explicitSwapControl is not supported";m=fa(m,w);if(!m)return 0;ha(m);v.Ud.getExtension("WEBGL_debug_renderer_info");return m};a.deleteContext=function(m){v===ia[m]&&(v=null);"object"==typeof JSEvents&& +JSEvents.yf(ia[m].Ud.canvas);ia[m]&&ia[m].Ud.canvas&&(ia[m].Ud.canvas.Oe=void 0);ia[m]=null};a._setTextureCleanup({deleteTexture:function(m,p){var w=ea[p];w&&ia[m].Ud.deleteTexture(w);ea[p]=null}});a.MakeWebGLContext=function(m){if(!this.Jd(m))return null;var p=this._MakeGrContext();if(!p)return null;p.Id=m;var w=p.delete.bind(p);p["delete"]=function(){a.Jd(this.Id);w()}.bind(p);return v.ze=p};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(m){a.Jd(this.Id);this._setResourceCacheLimitBytes(m)};a.MakeOnScreenGLSurface=function(m,p,w,y,B,D){if(!this.Jd(m.Id))return null;p=void 0===B||void 0===D? +this._MakeOnScreenGLSurface(m,p,w,y):this._MakeOnScreenGLSurface(m,p,w,y,B,D);if(!p)return null;p.Id=m.Id;return p};a.MakeRenderTarget=function(){var m=arguments[0];if(!this.Jd(m.Id))return null;if(3===arguments.length){var p=this._MakeRenderTargetWH(m,arguments[1],arguments[2]);if(!p)return null}else if(2===arguments.length){if(p=this._MakeRenderTargetII(m,arguments[1]),!p)return null}else return null;p.Id=m.Id;return p};a.MakeWebGLCanvasSurface=function(m,p,w){p=p||null;var y=m,B="undefined"!== +typeof OffscreenCanvas&&y instanceof OffscreenCanvas;if(!("undefined"!==typeof HTMLCanvasElement&&y instanceof HTMLCanvasElement||B||(y=document.getElementById(m),y)))throw"Canvas with id "+m+" was not found";m=this.GetWebGLContext(y,w);if(!m||0>m)throw"failed to create webgl context: err "+m;m=this.MakeWebGLContext(m);p=this.MakeOnScreenGLSurface(m,y.width,y.height,p);return p?p:(p=y.cloneNode(!0),y.parentNode.replaceChild(p,y),p.classList.add("ck-replaced"),a.MakeSWCanvasSurface(p))};a.MakeCanvasSurface= +a.MakeWebGLCanvasSurface;a.Surface.prototype.makeImageFromTexture=function(m,p){a.Jd(this.Id);m=c(m);if(p=this._makeImageFromTexture(this.Id,m,p))p.he=m;return p};a.Surface.prototype.makeImageFromTextureSource=function(m,p,w){p||(p={height:d(m),width:f(m),colorType:a.ColorType.RGBA_8888,alphaType:w?a.AlphaType.Premul:a.AlphaType.Unpremul});p.colorSpace||(p.colorSpace=a.ColorSpace.SRGB);a.Jd(this.Id);var y=v.Ud;w=k(y,y.createTexture(),p,w);2===v.version?y.texImage2D(y.TEXTURE_2D,0,y.RGBA,p.width,p.height, +0,y.RGBA,y.UNSIGNED_BYTE,m):y.texImage2D(y.TEXTURE_2D,0,y.RGBA,y.RGBA,y.UNSIGNED_BYTE,m);l(y,p);this._resetContext();return this.makeImageFromTexture(w,p)};a.Surface.prototype.updateTextureFromSource=function(m,p,w){if(m.he){a.Jd(this.Id);var y=m.getImageInfo(),B=v.Ud,D=k(B,ea[m.he],y,w);2===v.version?B.texImage2D(B.TEXTURE_2D,0,B.RGBA,f(p),d(p),0,B.RGBA,B.UNSIGNED_BYTE,p):B.texImage2D(B.TEXTURE_2D,0,B.RGBA,B.RGBA,B.UNSIGNED_BYTE,p);l(B,y,w);this._resetContext();ea[m.he]=null;m.he=c(D);y.colorSpace= +m.getColorSpace();p=this._makeImageFromTexture(this.Id,m.he,y);w=m.kd.Kd;B=m.kd.Pd;m.kd.Kd=p.kd.Kd;m.kd.Pd=p.kd.Pd;p.kd.Kd=w;p.kd.Pd=B;p.delete();y.colorSpace.delete()}};a.MakeLazyImageFromTextureSource=function(m,p,w){p||(p={height:d(m),width:f(m),colorType:a.ColorType.RGBA_8888,alphaType:w?a.AlphaType.Premul:a.AlphaType.Unpremul});p.colorSpace||(p.colorSpace=a.ColorSpace.SRGB);var y={makeTexture:function(){var B=v,D=B.Ud,u=k(D,D.createTexture(),p,w);2===B.version?D.texImage2D(D.TEXTURE_2D,0,D.RGBA, +p.width,p.height,0,D.RGBA,D.UNSIGNED_BYTE,m):D.texImage2D(D.TEXTURE_2D,0,D.RGBA,D.RGBA,D.UNSIGNED_BYTE,m);l(D,p,w);return c(u)},freeSrc:function(){}};"VideoFrame"===m.constructor.name&&(y.freeSrc=function(){m.close()});return a.Image._makeFromGenerator(p,y)};a.Jd=function(m){return m?ha(m):!1};a.ne=function(){return v&&v.ze&&!v.ze.isDeleted()?v.ze: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 e=Math.floor(g.length/4),h=new Uint32Array(e),n=0;nz;z++)a.HEAPF32[t+n]=g[x][z],n++;g=h}else g=M;e.Rd=g}else throw"Invalid argument to copyFlexibleColorArray, Not a color array "+typeof g;return e}function p(g){if(!g)return M;var e=T.toTypedArray();if(g.length){if(6===g.length||9===g.length)return l(g,"HEAPF32",H),6===g.length&&a.HEAPF32.set(fd,6+H/4),H;if(16===g.length)return e[0]=g[0],e[1]=g[1],e[2]=g[3],e[3]=g[4],e[4]=g[5],e[5]=g[7],e[6]=g[12],e[7]=g[13],e[8]=g[15],H;throw"invalid matrix size"; +}if(void 0===g.m11)throw"invalid matrix argument";e[0]=g.m11;e[1]=g.m21;e[2]=g.m41;e[3]=g.m12;e[4]=g.m22;e[5]=g.m42;e[6]=g.m14;e[7]=g.m24;e[8]=g.m44;return H}function w(g){if(!g)return M;var e=Y.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",ca);e.fill(0);e[0]=g[0];e[1]=g[1];e[3]=g[2];e[4]=g[3];e[5]=g[4];e[7]=g[5];e[10]=1;e[12]=g[6];e[13]=g[7];e[15]=g[8];6===g.length&&(e[12]=0,e[13]=0,e[15]=1);return ca}if(void 0=== +g.m11)throw"invalid matrix argument";e[0]=g.m11;e[1]=g.m21;e[2]=g.m31;e[3]=g.m41;e[4]=g.m12;e[5]=g.m22;e[6]=g.m32;e[7]=g.m42;e[8]=g.m13;e[9]=g.m23;e[10]=g.m33;e[11]=g.m43;e[12]=g.m14;e[13]=g.m24;e[14]=g.m34;e[15]=g.m44;return ca}function y(g,e){return l(g,"HEAPF32",e||va)}function B(g,e,h,n){var t=Ma.toTypedArray();t[0]=g;t[1]=e;t[2]=h;t[3]=n;return va}function D(g){for(var e=new Float32Array(4),h=0;4>h;h++)e[h]=a.HEAPF32[g/4+h];return e}function u(g,e){return l(g,"HEAPF32",e||X)}function F(g,e){return l(g, +"HEAPF32",e||Eb)}a.Color=function(g,e,h,n){void 0===n&&(n=1);return a.Color4f(f(g)/255,f(e)/255,f(h)/255,n)};a.ColorAsInt=function(g,e,h,n){void 0===n&&(n=255);return(f(n)<<24|f(g)<<16|f(e)<<8|f(h)<<0&268435455)>>>0};a.Color4f=function(g,e,h,n){void 0===n&&(n=1);return Float32Array.of(g,e,h,n)};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,e){g=g.toLowerCase();if(g.startsWith("#")){e=255;switch(g.length){case 9:e=parseInt(g.slice(7,9),16);case 7:var h=parseInt(g.slice(1,3),16);var n=parseInt(g.slice(3,5),16);var t=parseInt(g.slice(5,7),16);break;case 5:e=17*parseInt(g.slice(4,5),16);case 4:h=17*parseInt(g.slice(1,2),16),n=17*parseInt(g.slice(2,3),16),t=17*parseInt(g.slice(3,4),16)}return a.Color(h,n,t,e/255)}return g.startsWith("rgba")?(g=g.slice(5, +-1),g=g.split(","),a.Color(+g[0],+g[1],+g[2],d(g[3]))):g.startsWith("rgb")?(g=g.slice(4,-1),g=g.split(","),a.Color(+g[0],+g[1],+g[2],d(g[3]))):g.startsWith("gray(")||g.startsWith("hsl")||!e||(g=e[g],void 0===g)?a.BLACK:g};a.multiplyByAlpha=function(g,e){g=g.slice();g[3]=Math.max(0,Math.min(g[3]*e,1));return g};a.Malloc=function(g,e){var h=a._malloc(e*g.BYTES_PER_ELEMENT);return{_ck:!0,length:e,byteOffset:h,be:null,subarray:function(n,t){n=this.toTypedArray().subarray(n,t);n._ck=!0;return n},toTypedArray:function(){if(this.be&& +this.be.length)return this.be;this.be=new g(a.HEAPU8.buffer,h,e);this.be._ck=!0;return this.be}}};a.Free=function(g){a._free(g.byteOffset);g.byteOffset=M;g.toTypedArray=null;g.be=null};var H=M,T,ca=M,Y,va=M,Ma,na,X=M,fc,Ba=M,gc,Fb=M,hc,Gb=M,hb,Sa=M,ic,Eb=M,jc,kc=M,fd=Float32Array.of(0,0,1),M=0;a.onRuntimeInitialized=function(){function g(e,h,n,t,x,z,E){z||(z=4*t.width,t.colorType===a.ColorType.RGBA_F16?z*=2:t.colorType===a.ColorType.RGBA_F32&&(z*=4));var J=z*t.height;var I=x?x.byteOffset:a._malloc(J); +if(E?!e._readPixels(t,I,z,h,n,E):!e._readPixels(t,I,z,h,n))return x||a._free(I),null;if(x)return x.toTypedArray();switch(t.colorType){case a.ColorType.RGBA_8888:case a.ColorType.RGBA_F16:e=(new Uint8Array(a.HEAPU8.buffer,I,J)).slice();break;case a.ColorType.RGBA_F32:e=(new Float32Array(a.HEAPU8.buffer,I,J)).slice();break;default:return null}a._free(I);return e}Ma=a.Malloc(Float32Array,4);va=Ma.byteOffset;Y=a.Malloc(Float32Array,16);ca=Y.byteOffset;T=a.Malloc(Float32Array,9);H=T.byteOffset;ic=a.Malloc(Float32Array, +12);Eb=ic.byteOffset;jc=a.Malloc(Float32Array,12);kc=jc.byteOffset;na=a.Malloc(Float32Array,4);X=na.byteOffset;fc=a.Malloc(Float32Array,4);Ba=fc.byteOffset;gc=a.Malloc(Float32Array,3);Fb=gc.byteOffset;hc=a.Malloc(Float32Array,3);Gb=hc.byteOffset;hb=a.Malloc(Int32Array,4);Sa=hb.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(e){var h=l(e,"HEAPF32"),n=a.Path._MakeFromCmds(h,e.length);k(h,e);return n};a.Path.MakeFromVerbsPointsWeights=function(e,h,n){var t=l(e,"HEAPU8"),x=l(h,"HEAPF32"),z=l(n,"HEAPF32"),E=a.Path._MakeFromVerbsPointsWeights(t,e.length,x,h.length,z,n&&n.length||0);k(t,e);k(x,h);k(z,n);return E};a.Path.prototype.addArc=function(e,h,n){e=u(e);this._addArc(e,h,n);return this};a.Path.prototype.addCircle=function(e,h,n,t){this._addCircle(e,h,n,!!t);return this};a.Path.prototype.addOval=function(e,h,n){void 0=== +n&&(n=1);e=u(e);this._addOval(e,!!h,n);return this};a.Path.prototype.addPath=function(){var e=Array.prototype.slice.call(arguments),h=e[0],n=!1;"boolean"===typeof e[e.length-1]&&(n=e.pop());if(1===e.length)this._addPath(h,1,0,0,0,1,0,0,0,1,n);else if(2===e.length)e=e[1],this._addPath(h,e[0],e[1],e[2],e[3],e[4],e[5],e[6]||0,e[7]||0,e[8]||1,n);else if(7===e.length||10===e.length)this._addPath(h,e[1],e[2],e[3],e[4],e[5],e[6],e[7]||0,e[8]||0,e[9]||1,n);else return null;return this};a.Path.prototype.addPoly= +function(e,h){var n=l(e,"HEAPF32");this._addPoly(n,e.length/2,h);k(n,e);return this};a.Path.prototype.addRect=function(e,h){e=u(e);this._addRect(e,!!h);return this};a.Path.prototype.addRRect=function(e,h){e=F(e);this._addRRect(e,!!h);return this};a.Path.prototype.addVerbsPointsWeights=function(e,h,n){var t=l(e,"HEAPU8"),x=l(h,"HEAPF32"),z=l(n,"HEAPF32");this._addVerbsPointsWeights(t,e.length,x,h.length,z,n&&n.length||0);k(t,e);k(x,h);k(z,n)};a.Path.prototype.arc=function(e,h,n,t,x,z){e=a.LTRBRect(e- +n,h-n,e+n,h+n);x=(x-t)/Math.PI*180-360*!!z;z=new a.Path;z.addArc(e,t/Math.PI*180,x);this.addPath(z,!0);z.delete();return this};a.Path.prototype.arcToOval=function(e,h,n,t){e=u(e);this._arcToOval(e,h,n,t);return this};a.Path.prototype.arcToRotated=function(e,h,n,t,x,z,E){this._arcToRotated(e,h,n,!!t,!!x,z,E);return this};a.Path.prototype.arcToTangent=function(e,h,n,t,x){this._arcToTangent(e,h,n,t,x);return this};a.Path.prototype.close=function(){this._close();return this};a.Path.prototype.conicTo= +function(e,h,n,t,x){this._conicTo(e,h,n,t,x);return this};a.Path.prototype.computeTightBounds=function(e){this._computeTightBounds(X);var h=na.toTypedArray();return e?(e.set(h),e):h.slice()};a.Path.prototype.cubicTo=function(e,h,n,t,x,z){this._cubicTo(e,h,n,t,x,z);return this};a.Path.prototype.dash=function(e,h,n){return this._dash(e,h,n)?this:null};a.Path.prototype.getBounds=function(e){this._getBounds(X);var h=na.toTypedArray();return e?(e.set(h),e):h.slice()};a.Path.prototype.lineTo=function(e, +h){this._lineTo(e,h);return this};a.Path.prototype.moveTo=function(e,h){this._moveTo(e,h);return this};a.Path.prototype.offset=function(e,h){this._transform(1,0,e,0,1,h,0,0,1);return this};a.Path.prototype.quadTo=function(e,h,n,t){this._quadTo(e,h,n,t);return this};a.Path.prototype.rArcTo=function(e,h,n,t,x,z,E){this._rArcTo(e,h,n,t,x,z,E);return this};a.Path.prototype.rConicTo=function(e,h,n,t,x){this._rConicTo(e,h,n,t,x);return this};a.Path.prototype.rCubicTo=function(e,h,n,t,x,z){this._rCubicTo(e, +h,n,t,x,z);return this};a.Path.prototype.rLineTo=function(e,h){this._rLineTo(e,h);return this};a.Path.prototype.rMoveTo=function(e,h){this._rMoveTo(e,h);return this};a.Path.prototype.rQuadTo=function(e,h,n,t){this._rQuadTo(e,h,n,t);return this};a.Path.prototype.stroke=function(e){e=e||{};e.width=e.width||1;e.miter_limit=e.miter_limit||4;e.cap=e.cap||a.StrokeCap.Butt;e.join=e.join||a.StrokeJoin.Miter;e.precision=e.precision||1;return this._stroke(e)?this:null};a.Path.prototype.transform=function(){if(1=== +arguments.length){var e=arguments[0];this._transform(e[0],e[1],e[2],e[3],e[4],e[5],e[6]||0,e[7]||0,e[8]||1)}else if(6===arguments.length||9===arguments.length)e=arguments,this._transform(e[0],e[1],e[2],e[3],e[4],e[5],e[6]||0,e[7]||0,e[8]||1);else throw"transform expected to take 1 or 9 arguments. Got "+arguments.length;return this};a.Path.prototype.trim=function(e,h,n){return this._trim(e,h,!!n)?this:null};a.Image.prototype.encodeToBytes=function(e,h){var n=a.ne();e=e||a.ImageFormat.PNG;h=h||100; +return n?this._encodeToBytes(e,h,n):this._encodeToBytes(e,h)};a.Image.prototype.makeShaderCubic=function(e,h,n,t,x){x=p(x);return this._makeShaderCubic(e,h,n,t,x)};a.Image.prototype.makeShaderOptions=function(e,h,n,t,x){x=p(x);return this._makeShaderOptions(e,h,n,t,x)};a.Image.prototype.readPixels=function(e,h,n,t,x){var z=a.ne();return g(this,e,h,n,t,x,z)};a.Canvas.prototype.clear=function(e){a.Jd(this.Id);e=y(e);this._clear(e)};a.Canvas.prototype.clipRRect=function(e,h,n){a.Jd(this.Id);e=F(e);this._clipRRect(e, +h,n)};a.Canvas.prototype.clipRect=function(e,h,n){a.Jd(this.Id);e=u(e);this._clipRect(e,h,n)};a.Canvas.prototype.concat=function(e){a.Jd(this.Id);e=w(e);this._concat(e)};a.Canvas.prototype.drawArc=function(e,h,n,t,x){a.Jd(this.Id);e=u(e);this._drawArc(e,h,n,t,x)};a.Canvas.prototype.drawAtlas=function(e,h,n,t,x,z,E){if(e&&t&&h&&n&&h.length===n.length){a.Jd(this.Id);x||(x=a.BlendMode.SrcOver);var J=l(h,"HEAPF32"),I=l(n,"HEAPF32"),U=n.length/4,V=l(c(z),"HEAPU32");if(E&&"B"in E&&"C"in E)this._drawAtlasCubic(e, +I,J,V,U,x,E.B,E.C,t);else{let q=a.FilterMode.Linear,A=a.MipmapMode.None;E&&(q=E.filter,"mipmap"in E&&(A=E.mipmap));this._drawAtlasOptions(e,I,J,V,U,x,q,A,t)}k(J,h);k(I,n);k(V,z)}};a.Canvas.prototype.drawCircle=function(e,h,n,t){a.Jd(this.Id);this._drawCircle(e,h,n,t)};a.Canvas.prototype.drawColor=function(e,h){a.Jd(this.Id);e=y(e);void 0!==h?this._drawColor(e,h):this._drawColor(e)};a.Canvas.prototype.drawColorInt=function(e,h){a.Jd(this.Id);this._drawColorInt(e,h||a.BlendMode.SrcOver)};a.Canvas.prototype.drawColorComponents= +function(e,h,n,t,x){a.Jd(this.Id);e=B(e,h,n,t);void 0!==x?this._drawColor(e,x):this._drawColor(e)};a.Canvas.prototype.drawDRRect=function(e,h,n){a.Jd(this.Id);e=F(e,Eb);h=F(h,kc);this._drawDRRect(e,h,n)};a.Canvas.prototype.drawImage=function(e,h,n,t){a.Jd(this.Id);this._drawImage(e,h,n,t||null)};a.Canvas.prototype.drawImageCubic=function(e,h,n,t,x,z){a.Jd(this.Id);this._drawImageCubic(e,h,n,t,x,z||null)};a.Canvas.prototype.drawImageOptions=function(e,h,n,t,x,z){a.Jd(this.Id);this._drawImageOptions(e, +h,n,t,x,z||null)};a.Canvas.prototype.drawImageNine=function(e,h,n,t,x){a.Jd(this.Id);h=l(h,"HEAP32",Sa);n=u(n);this._drawImageNine(e,h,n,t,x||null)};a.Canvas.prototype.drawImageRect=function(e,h,n,t,x){a.Jd(this.Id);u(h,X);u(n,Ba);this._drawImageRect(e,X,Ba,t,!!x)};a.Canvas.prototype.drawImageRectCubic=function(e,h,n,t,x,z){a.Jd(this.Id);u(h,X);u(n,Ba);this._drawImageRectCubic(e,X,Ba,t,x,z||null)};a.Canvas.prototype.drawImageRectOptions=function(e,h,n,t,x,z){a.Jd(this.Id);u(h,X);u(n,Ba);this._drawImageRectOptions(e, +X,Ba,t,x,z||null)};a.Canvas.prototype.drawLine=function(e,h,n,t,x){a.Jd(this.Id);this._drawLine(e,h,n,t,x)};a.Canvas.prototype.drawOval=function(e,h){a.Jd(this.Id);e=u(e);this._drawOval(e,h)};a.Canvas.prototype.drawPaint=function(e){a.Jd(this.Id);this._drawPaint(e)};a.Canvas.prototype.drawParagraph=function(e,h,n){a.Jd(this.Id);this._drawParagraph(e,h,n)};a.Canvas.prototype.drawPatch=function(e,h,n,t,x){if(24>e.length)throw"Need 12 cubic points";if(h&&4>h.length)throw"Need 4 colors";if(n&&8>n.length)throw"Need 4 shader coordinates"; +a.Jd(this.Id);const z=l(e,"HEAPF32"),E=h?l(c(h),"HEAPU32"):M,J=n?l(n,"HEAPF32"):M;t||(t=a.BlendMode.Modulate);this._drawPatch(z,E,J,t,x);k(J,n);k(E,h);k(z,e)};a.Canvas.prototype.drawPath=function(e,h){a.Jd(this.Id);this._drawPath(e,h)};a.Canvas.prototype.drawPicture=function(e){a.Jd(this.Id);this._drawPicture(e)};a.Canvas.prototype.drawPoints=function(e,h,n){a.Jd(this.Id);var t=l(h,"HEAPF32");this._drawPoints(e,t,h.length/2,n);k(t,h)};a.Canvas.prototype.drawRRect=function(e,h){a.Jd(this.Id);e=F(e); +this._drawRRect(e,h)};a.Canvas.prototype.drawRect=function(e,h){a.Jd(this.Id);e=u(e);this._drawRect(e,h)};a.Canvas.prototype.drawRect4f=function(e,h,n,t,x){a.Jd(this.Id);this._drawRect4f(e,h,n,t,x)};a.Canvas.prototype.drawShadow=function(e,h,n,t,x,z,E){a.Jd(this.Id);var J=l(x,"HEAPF32"),I=l(z,"HEAPF32");h=l(h,"HEAPF32",Fb);n=l(n,"HEAPF32",Gb);this._drawShadow(e,h,n,t,J,I,E);k(J,x);k(I,z)};a.getShadowLocalBounds=function(e,h,n,t,x,z,E){e=p(e);n=l(n,"HEAPF32",Fb);t=l(t,"HEAPF32",Gb);if(!this._getShadowLocalBounds(e, +h,n,t,x,z,X))return null;h=na.toTypedArray();return E?(E.set(h),E):h.slice()};a.Canvas.prototype.drawTextBlob=function(e,h,n,t){a.Jd(this.Id);this._drawTextBlob(e,h,n,t)};a.Canvas.prototype.drawVertices=function(e,h,n){a.Jd(this.Id);this._drawVertices(e,h,n)};a.Canvas.prototype.getDeviceClipBounds=function(e){this._getDeviceClipBounds(Sa);var h=hb.toTypedArray();e?e.set(h):e=h.slice();return e};a.Canvas.prototype.getLocalToDevice=function(){this._getLocalToDevice(ca);for(var e=ca,h=Array(16),n=0;16> +n;n++)h[n]=a.HEAPF32[e/4+n];return h};a.Canvas.prototype.getTotalMatrix=function(){this._getTotalMatrix(H);for(var e=Array(9),h=0;9>h;h++)e[h]=a.HEAPF32[H/4+h];return e};a.Canvas.prototype.makeSurface=function(e){e=this._makeSurface(e);e.Id=this.Id;return e};a.Canvas.prototype.readPixels=function(e,h,n,t,x){a.Jd(this.Id);return g(this,e,h,n,t,x)};a.Canvas.prototype.saveLayer=function(e,h,n,t){h=u(h);return this._saveLayer(e||null,h,n||null,t||0)};a.Canvas.prototype.writePixels=function(e,h,n,t,x, +z,E,J){if(e.byteLength%(h*n))throw"pixels length must be a multiple of the srcWidth * srcHeight";a.Jd(this.Id);var I=e.byteLength/(h*n);z=z||a.AlphaType.Unpremul;E=E||a.ColorType.RGBA_8888;J=J||a.ColorSpace.SRGB;var U=I*h;I=l(e,"HEAPU8");h=this._writePixels({width:h,height:n,colorType:E,alphaType:z,colorSpace:J},I,U,t,x);k(I,e);return h};a.ColorFilter.MakeBlend=function(e,h,n){e=y(e);n=n||a.ColorSpace.SRGB;return a.ColorFilter._MakeBlend(e,h,n)};a.ColorFilter.MakeMatrix=function(e){if(!e||20!==e.length)throw"invalid color matrix"; +var h=l(e,"HEAPF32"),n=a.ColorFilter._makeMatrix(h);k(h,e);return n};a.ContourMeasure.prototype.getPosTan=function(e,h){this._getPosTan(e,X);e=na.toTypedArray();return h?(h.set(e),h):e.slice()};a.ImageFilter.prototype.getOutputBounds=function(e,h,n){e=u(e,X);h=p(h);this._getOutputBounds(e,h,Sa);h=hb.toTypedArray();return n?(n.set(h),n):h.slice()};a.ImageFilter.MakeDropShadow=function(e,h,n,t,x,z){x=y(x,va);return a.ImageFilter._MakeDropShadow(e,h,n,t,x,z)};a.ImageFilter.MakeDropShadowOnly=function(e, +h,n,t,x,z){x=y(x,va);return a.ImageFilter._MakeDropShadowOnly(e,h,n,t,x,z)};a.ImageFilter.MakeImage=function(e,h,n,t){n=u(n,X);t=u(t,Ba);if("B"in h&&"C"in h)return a.ImageFilter._MakeImageCubic(e,h.B,h.C,n,t);const x=h.filter;let z=a.MipmapMode.None;"mipmap"in h&&(z=h.mipmap);return a.ImageFilter._MakeImageOptions(e,x,z,n,t)};a.ImageFilter.MakeMatrixTransform=function(e,h,n){e=p(e);if("B"in h&&"C"in h)return a.ImageFilter._MakeMatrixTransformCubic(e,h.B,h.C,n);const t=h.filter;let x=a.MipmapMode.None; +"mipmap"in h&&(x=h.mipmap);return a.ImageFilter._MakeMatrixTransformOptions(e,t,x,n)};a.Paint.prototype.getColor=function(){this._getColor(va);return D(va)};a.Paint.prototype.setColor=function(e,h){h=h||null;e=y(e);this._setColor(e,h)};a.Paint.prototype.setColorComponents=function(e,h,n,t,x){x=x||null;e=B(e,h,n,t);this._setColor(e,x)};a.Path.prototype.getPoint=function(e,h){this._getPoint(e,X);e=na.toTypedArray();return h?(h[0]=e[0],h[1]=e[1],h):e.slice(0,2)};a.Picture.prototype.makeShader=function(e, +h,n,t,x){t=p(t);x=u(x);return this._makeShader(e,h,n,t,x)};a.Picture.prototype.cullRect=function(e){this._cullRect(X);var h=na.toTypedArray();return e?(e.set(h),e):h.slice()};a.PictureRecorder.prototype.beginRecording=function(e,h){e=u(e);return this._beginRecording(e,!!h)};a.Surface.prototype.getCanvas=function(){var e=this._getCanvas();e.Id=this.Id;return e};a.Surface.prototype.makeImageSnapshot=function(e){a.Jd(this.Id);e=l(e,"HEAP32",Sa);return this._makeImageSnapshot(e)};a.Surface.prototype.makeSurface= +function(e){a.Jd(this.Id);e=this._makeSurface(e);e.Id=this.Id;return e};a.Surface.prototype.Te=function(e,h){this.ge||(this.ge=this.getCanvas());return requestAnimationFrame(function(){a.Jd(this.Id);e(this.ge);this.flush(h)}.bind(this))};a.Surface.prototype.requestAnimationFrame||(a.Surface.prototype.requestAnimationFrame=a.Surface.prototype.Te);a.Surface.prototype.Qe=function(e,h){this.ge||(this.ge=this.getCanvas());requestAnimationFrame(function(){a.Jd(this.Id);e(this.ge);this.flush(h);this.dispose()}.bind(this))}; +a.Surface.prototype.drawOnce||(a.Surface.prototype.drawOnce=a.Surface.prototype.Qe);a.PathEffect.MakeDash=function(e,h){h||(h=0);if(!e.length||1===e.length%2)throw"Intervals array must have even length";var n=l(e,"HEAPF32");h=a.PathEffect._MakeDash(n,e.length,h);k(n,e);return h};a.PathEffect.MakeLine2D=function(e,h){h=p(h);return a.PathEffect._MakeLine2D(e,h)};a.PathEffect.MakePath2D=function(e,h){e=p(e);return a.PathEffect._MakePath2D(e,h)};a.Shader.MakeColor=function(e,h){h=h||null;e=y(e);return a.Shader._MakeColor(e, +h)};a.Shader.Blend=a.Shader.MakeBlend;a.Shader.Color=a.Shader.MakeColor;a.Shader.MakeLinearGradient=function(e,h,n,t,x,z,E,J){J=J||null;var I=m(n),U=l(t,"HEAPF32");E=E||0;z=p(z);var V=na.toTypedArray();V.set(e);V.set(h,2);e=a.Shader._MakeLinearGradient(X,I.Rd,I.colorType,U,I.count,x,E,z,J);k(I.Rd,n);t&&k(U,t);return e};a.Shader.MakeRadialGradient=function(e,h,n,t,x,z,E,J){J=J||null;var I=m(n),U=l(t,"HEAPF32");E=E||0;z=p(z);e=a.Shader._MakeRadialGradient(e[0],e[1],h,I.Rd,I.colorType,U,I.count,x,E, +z,J);k(I.Rd,n);t&&k(U,t);return e};a.Shader.MakeSweepGradient=function(e,h,n,t,x,z,E,J,I,U){U=U||null;var V=m(n),q=l(t,"HEAPF32");E=E||0;J=J||0;I=I||360;z=p(z);e=a.Shader._MakeSweepGradient(e,h,V.Rd,V.colorType,q,V.count,x,J,I,E,z,U);k(V.Rd,n);t&&k(q,t);return e};a.Shader.MakeTwoPointConicalGradient=function(e,h,n,t,x,z,E,J,I,U){U=U||null;var V=m(x),q=l(z,"HEAPF32");I=I||0;J=p(J);var A=na.toTypedArray();A.set(e);A.set(n,2);e=a.Shader._MakeTwoPointConicalGradient(X,h,t,V.Rd,V.colorType,q,V.count,E, +I,J,U);k(V.Rd,x);z&&k(q,z);return e};a.Vertices.prototype.bounds=function(e){this._bounds(X);var h=na.toTypedArray();return e?(e.set(h),e):h.slice()};a.Md&&a.Md.forEach(function(e){e()})};a.computeTonalColors=function(g){var e=l(g.ambient,"HEAPF32"),h=l(g.spot,"HEAPF32");this._computeTonalColors(e,h);var n={ambient:D(e),spot:D(h)};k(e,g.ambient);k(h,g.spot);return n};a.LTRBRect=function(g,e,h,n){return Float32Array.of(g,e,h,n)};a.XYWHRect=function(g,e,h,n){return Float32Array.of(g,e,g+h,e+n)};a.LTRBiRect= +function(g,e,h,n){return Int32Array.of(g,e,h,n)};a.XYWHiRect=function(g,e,h,n){return Int32Array.of(g,e,g+h,e+n)};a.RRectXY=function(g,e,h){return Float32Array.of(g[0],g[1],g[2],g[3],e,h,e,h,e,h,e,h)};a.MakeAnimatedImageFromEncoded=function(g){g=new Uint8Array(g);var e=a._malloc(g.byteLength);a.HEAPU8.set(g,e);return(g=a._decodeAnimatedImage(e,g.byteLength))?g:null};a.MakeImageFromEncoded=function(g){g=new Uint8Array(g);var e=a._malloc(g.byteLength);a.HEAPU8.set(g,e);return(g=a._decodeImage(e,g.byteLength))? +g:null};var Ta=null;a.MakeImageFromCanvasImageSource=function(g){var e=g.width,h=g.height;Ta||(Ta=document.createElement("canvas"));Ta.width=e;Ta.height=h;var n=Ta.getContext("2d",{willReadFrequently:!0});n.drawImage(g,0,0);g=n.getImageData(0,0,e,h);return a.MakeImage({width:e,height:h,alphaType:a.AlphaType.Unpremul,colorType:a.ColorType.RGBA_8888,colorSpace:a.ColorSpace.SRGB},g.data,4*e)};a.MakeImage=function(g,e,h){var n=a._malloc(e.length);a.HEAPU8.set(e,n);return a._MakeImage(g,n,e.length,h)}; +a.MakeVertices=function(g,e,h,n,t,x){var z=t&&t.length||0,E=0;h&&h.length&&(E|=1);n&&n.length&&(E|=2);void 0===x||x||(E|=4);g=new a._VerticesBuilder(g,e.length/2,z,E);l(e,"HEAPF32",g.positions());g.texCoords()&&l(h,"HEAPF32",g.texCoords());g.colors()&&l(c(n),"HEAPU32",g.colors());g.indices()&&l(t,"HEAPU16",g.indices());return g.detach()};(function(g){g.Md=g.Md||[];g.Md.push(function(){function e(q){q&&(q.dir=0===q.dir?g.TextDirection.RTL:g.TextDirection.LTR);return q}function h(q){if(!q||!q.length)return[]; +for(var A=[],P=0;Pe)return a._free(g),null;t=new Uint16Array(a.HEAPU8.buffer,g,e);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,e,h,n){var t=l(g,"HEAPU16"),x=l(e,"HEAPF32");return this._getGlyphIntercepts(t, +g.length,!(g&&g._ck),x,e.length,!(e&&e._ck),h,n)};a.Font.prototype.getGlyphWidths=function(g,e,h){var n=l(g,"HEAPU16"),t=a._malloc(4*g.length);this._getGlyphWidthBounds(n,g.length,t,M,e||null);e=new Float32Array(a.HEAPU8.buffer,t,g.length);k(n,g);if(h)return h.set(e),a._free(t),h;g=Float32Array.from(e);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 e=[],h=[],n= +0;ne)return a._free(g),null;t=new Uint16Array(a.HEAPU8.buffer,g,e);if(h)return h.set(t),a._free(g),h;h=Uint16Array.from(t);a._free(g);return h};a.TextBlob.MakeOnPath=function(g,e,h,n){if(g&&g.length&&e&&e.countPoints()){if(1===e.countPoints())return this.MakeFromText(g,h);n||(n=0);var t=h.getGlyphIDs(g);t=h.getGlyphWidths(t);var x=[];e=new a.ContourMeasureIter(e,!1,1);for(var z=e.next(),E=new Float32Array(4),J=0;Jz.length()){z.delete();z= +e.next();if(!z){g=g.substring(0,J);break}n=I/2}z.getPosTan(n,E);var U=E[2],V=E[3];x.push(U,V,E[0]-I/2*U,E[1]-I/2*V);n+=I/2}g=this.MakeFromRSXform(g,x,h);z&&z.delete();e.delete();return g}};a.TextBlob.MakeFromRSXform=function(g,e,h){var n=ja(g)+1,t=a._malloc(n);ka(g,C,t,n);g=l(e,"HEAPF32");h=a.TextBlob._MakeFromRSXform(t,n-1,g,h);a._free(t);return h?h:null};a.TextBlob.MakeFromRSXformGlyphs=function(g,e,h){var n=l(g,"HEAPU16");e=l(e,"HEAPF32");h=a.TextBlob._MakeFromRSXformGlyphs(n,2*g.length,e,h);k(n, +g);return h?h:null};a.TextBlob.MakeFromGlyphs=function(g,e){var h=l(g,"HEAPU16");e=a.TextBlob._MakeFromGlyphs(h,2*g.length,e);k(h,g);return e?e:null};a.TextBlob.MakeFromText=function(g,e){var h=ja(g)+1,n=a._malloc(h);ka(g,C,n,h);g=a.TextBlob._MakeFromText(n,h-1,e);a._free(n);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 e=a._malloc(g.byteLength);a.HEAPU8.set(g,e);return(g=a._MakePicture(e, +g.byteLength))?g:null}});a.Md=a.Md||[];a.Md.push(function(){a.RuntimeEffect.Make=function(g,e){return a.RuntimeEffect._Make(g,{onError:e||function(h){console.log("RuntimeEffect error",h)}})};a.RuntimeEffect.MakeForBlender=function(g,e){return a.RuntimeEffect._MakeForBlender(g,{onError:e||function(h){console.log("RuntimeEffect error",h)}})};a.RuntimeEffect.prototype.makeShader=function(g,e){var h=!g._ck,n=l(g,"HEAPF32");e=p(e);return this._makeShader(n,4*g.length,h,e)};a.RuntimeEffect.prototype.makeShaderWithChildren= +function(g,e,h){var n=!g._ck,t=l(g,"HEAPF32");h=p(h);for(var x=[],z=0;z{throw b;},pa="object"==typeof window,ra="function"==typeof importScripts,sa="object"==typeof process&&"object"==typeof process.versions&&"string"==typeof process.versions.node,ta="",ua,wa,xa; +if(sa){var fs=require("fs"),ya=require("path");ta=ra?ya.dirname(ta)+"/":__dirname+"/";ua=(a,b)=>{a=a.startsWith("file://")?new URL(a):ya.normalize(a);return fs.readFileSync(a,b?void 0:"utf8")};xa=a=>{a=ua(a,!0);a.buffer||(a=new Uint8Array(a));return a};wa=(a,b,c,d=!0)=>{a=a.startsWith("file://")?new URL(a):ya.normalize(a);fs.readFile(a,d?void 0:"utf8",(f,k)=>{f?c(f):b(d?k.buffer:k)})};!r.thisProgram&&1{process.exitCode= +a;throw b;};r.inspect=()=>"[Emscripten Module object]"}else if(pa||ra)ra?ta=self.location.href:"undefined"!=typeof document&&document.currentScript&&(ta=document.currentScript.src),_scriptDir&&(ta=_scriptDir),0!==ta.indexOf("blob:")?ta=ta.substr(0,ta.replace(/[?#].*/,"").lastIndexOf("/")+1):ta="",ua=a=>{var b=new XMLHttpRequest;b.open("GET",a,!1);b.send(null);return b.responseText},ra&&(xa=a=>{var b=new XMLHttpRequest;b.open("GET",a,!1);b.responseType="arraybuffer";b.send(null);return new Uint8Array(b.response)}), +wa=(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)};var Aa=r.print||console.log.bind(console),Ca=r.printErr||console.error.bind(console);Object.assign(r,la);la=null;r.thisProgram&&(ma=r.thisProgram);r.quit&&(oa=r.quit);var Da;r.wasmBinary&&(Da=r.wasmBinary);var noExitRuntime=r.noExitRuntime||!0;"object"!=typeof WebAssembly&&Ea("no native wasm support detected"); +var Fa,G,Ga=!1,Ha,C,Ia,Ja,K,L,N,Ka;function La(){var a=Fa.buffer;r.HEAP8=Ha=new Int8Array(a);r.HEAP16=Ia=new Int16Array(a);r.HEAP32=K=new Int32Array(a);r.HEAPU8=C=new Uint8Array(a);r.HEAPU16=Ja=new Uint16Array(a);r.HEAPU32=L=new Uint32Array(a);r.HEAPF32=N=new Float32Array(a);r.HEAPF64=Ka=new Float64Array(a)}var Na,Oa=[],Pa=[],Qa=[];function Ra(){var a=r.preRun.shift();Oa.unshift(a)}var Ua=0,Va=null,Wa=null; +function Ea(a){if(r.onAbort)r.onAbort(a);a="Aborted("+a+")";Ca(a);Ga=!0;a=new WebAssembly.RuntimeError(a+". Build with -sASSERTIONS for more info.");ba(a);throw a;}function Xa(a){return a.startsWith("data:application/octet-stream;base64,")}var Ya;Ya="canvaskit.wasm";if(!Xa(Ya)){var Za=Ya;Ya=r.locateFile?r.locateFile(Za,ta):ta+Za}function $a(a){if(a==Ya&&Da)return new Uint8Array(Da);if(xa)return xa(a);throw"both async and sync fetching of the wasm failed";} +function ab(a){if(!Da&&(pa||ra)){if("function"==typeof fetch&&!a.startsWith("file://"))return fetch(a,{credentials:"same-origin"}).then(b=>{if(!b.ok)throw"failed to load wasm binary file at '"+a+"'";return b.arrayBuffer()}).catch(()=>$a(a));if(wa)return new Promise((b,c)=>{wa(a,d=>b(new Uint8Array(d)),c)})}return Promise.resolve().then(()=>$a(a))}function bb(a,b,c){return ab(a).then(d=>WebAssembly.instantiate(d,b)).then(d=>d).then(c,d=>{Ca("failed to asynchronously prepare wasm: "+d);Ea(d)})} +function cb(a,b){var c=Ya;return Da||"function"!=typeof WebAssembly.instantiateStreaming||Xa(c)||c.startsWith("file://")||sa||"function"!=typeof fetch?bb(c,a,b):fetch(c,{credentials:"same-origin"}).then(d=>WebAssembly.instantiateStreaming(d,a).then(b,function(f){Ca("wasm streaming compile failed: "+f);Ca("falling back to ArrayBuffer instantiation");return bb(c,a,b)}))}function db(a){this.name="ExitStatus";this.message=`Program terminated with exit(${a})`;this.status=a}var eb=a=>{for(;0>2]=b};this.we=function(b){L[this.Kd+8>>2]=b};this.Zd=function(b,c){this.ve();this.Pe(b);this.we(c)};this.ve=function(){L[this.Kd+16>>2]=0}} +var gb=0,ib=0,jb="undefined"!=typeof TextDecoder?new TextDecoder("utf8"):void 0,kb=(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}, +lb={};function mb(a){for(;a.length;){var b=a.pop();a.pop()(b)}}function nb(a){return this.fromWireType(K[a>>2])}var ob={},pb={},qb={},rb=void 0;function sb(a){throw new rb(a);} +function tb(a,b,c){function d(m){m=c(m);m.length!==a.length&&sb("Mismatched type converter count");for(var p=0;p{pb.hasOwnProperty(m)?f[p]=pb[m]:(k.push(m),ob.hasOwnProperty(m)||(ob[m]=[]),ob[m].push(()=>{f[p]=pb[m];++l;l===k.length&&d(f)}))});0===k.length&&d(f)} +function vb(a){switch(a){case 1:return 0;case 2:return 1;case 4:return 2;case 8:return 3;default:throw new TypeError(`Unknown type size: ${a}`);}}var wb=void 0;function O(a){for(var b="";C[a];)b+=wb[C[a++]];return b}var xb=void 0;function Q(a){throw new xb(a);} +function yb(a,b,c={}){var d=b.name;a||Q(`type "${d}" must have a positive integer typeid pointer`);if(pb.hasOwnProperty(a)){if(c.ff)return;Q(`Cannot register type '${d}' twice`)}pb[a]=b;delete qb[a];ob.hasOwnProperty(a)&&(b=ob[a],delete ob[a],b.forEach(f=>f()))}function ub(a,b,c={}){if(!("argPackAdvance"in b))throw new TypeError("registerType registeredInstance requires argPackAdvance");yb(a,b,c)}function zb(a){Q(a.kd.Nd.Ld.name+" instance already deleted")}var Ab=!1;function Bb(){} +function Cb(a){--a.count.value;0===a.count.value&&(a.Pd?a.Td.Xd(a.Pd):a.Nd.Ld.Xd(a.Kd))}function Db(a,b,c){if(b===c)return a;if(void 0===c.Qd)return null;a=Db(a,b,c.Qd);return null===a?null:c.Ye(a)}var Jb={},Kb=[];function Lb(){for(;Kb.length;){var a=Kb.pop();a.kd.ee=!1;a["delete"]()}}var Mb=void 0,Nb={};function Ob(a,b){for(void 0===b&&Q("ptr should not be undefined");a.Qd;)b=a.ke(b),a=a.Qd;return Nb[b]} +function Pb(a,b){b.Nd&&b.Kd||sb("makeClassHandle requires ptr and ptrType");!!b.Td!==!!b.Pd&&sb("Both smartPtrType and smartPtr must be specified");b.count={value:1};return Qb(Object.create(a,{kd:{value:b}}))}function Qb(a){if("undefined"===typeof FinalizationRegistry)return Qb=b=>b,a;Ab=new FinalizationRegistry(b=>{Cb(b.kd)});Qb=b=>{var c=b.kd;c.Pd&&Ab.register(b,{kd:c},b);return b};Bb=b=>{Ab.unregister(b)};return Qb(a)}function Rb(){} +function Sb(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 Tb(a,b){a=Sb(a);return{[a]:function(){return b.apply(this,arguments)}}[a]} +function Ub(a,b,c){if(void 0===a[b].Od){var d=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[d.ce]=d}} +function Vb(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`),Ub(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].xf=c))}function Wb(a,b,c,d,f,k,l,m){this.name=a;this.constructor=b;this.fe=c;this.Xd=d;this.Qd=f;this.af=k;this.ke=l;this.Ye=m;this.kf=[]} +function Xb(a,b,c){for(;b!==c;)b.ke||Q(`Expected null or instance of ${c.name}, got an instance of ${b.name}`),a=b.ke(a),b=b.Qd;return a}function Yb(a,b){if(null===b)return this.Ae&&Q(`null is not a valid ${this.name}`),0;b.kd||Q(`Cannot pass "${Zb(b)}" as a ${this.name}`);b.kd.Kd||Q(`Cannot pass deleted object as a pointer of type ${this.name}`);return Xb(b.kd.Kd,b.kd.Nd.Ld,this.Ld)} +function $b(a,b){if(null===b){this.Ae&&Q(`null is not a valid ${this.name}`);if(this.pe){var c=this.Be();null!==a&&a.push(this.Xd,c);return c}return 0}b.kd||Q(`Cannot pass "${Zb(b)}" as a ${this.name}`);b.kd.Kd||Q(`Cannot pass deleted object as a pointer of type ${this.name}`);!this.oe&&b.kd.Nd.oe&&Q(`Cannot convert argument of type ${b.kd.Td?b.kd.Td.name:b.kd.Nd.name} to parameter type ${this.name}`);c=Xb(b.kd.Kd,b.kd.Nd.Ld,this.Ld);if(this.pe)switch(void 0===b.kd.Pd&&Q("Passing raw pointer to smart pointer is illegal"), +this.qf){case 0:b.kd.Td===this?c=b.kd.Pd:Q(`Cannot convert argument of type ${b.kd.Td?b.kd.Td.name:b.kd.Nd.name} to parameter type ${this.name}`);break;case 1:c=b.kd.Pd;break;case 2:if(b.kd.Td===this)c=b.kd.Pd;else{var d=b.clone();c=this.lf(c,ac(function(){d["delete"]()}));null!==a&&a.push(this.Xd,c)}break;default:Q("Unsupporting sharing policy")}return c} +function bc(a,b){if(null===b)return this.Ae&&Q(`null is not a valid ${this.name}`),0;b.kd||Q(`Cannot pass "${Zb(b)}" as a ${this.name}`);b.kd.Kd||Q(`Cannot pass deleted object as a pointer of type ${this.name}`);b.kd.Nd.oe&&Q(`Cannot convert argument of type ${b.kd.Nd.name} to parameter type ${this.name}`);return Xb(b.kd.Kd,b.kd.Nd.Ld,this.Ld)} +function cc(a,b,c,d,f,k,l,m,p,w,y){this.name=a;this.Ld=b;this.Ae=c;this.oe=d;this.pe=f;this.jf=k;this.qf=l;this.Ke=m;this.Be=p;this.lf=w;this.Xd=y;f||void 0!==b.Qd?this.toWireType=$b:(this.toWireType=d?Yb:bc,this.Sd=null)}function dc(a,b,c){r.hasOwnProperty(a)||sb("Replacing nonexistant public symbol");void 0!==r[a].Od&&void 0!==c?r[a].Od[c]=b:(r[a]=b,r[a].ce=c)} +var ec=(a,b)=>{var c=[];return function(){c.length=0;Object.assign(c,arguments);if(a.includes("j")){var d=r["dynCall_"+a];d=c&&c.length?d.apply(null,[b].concat(c)):d.call(null,b)}else d=Na.get(b).apply(null,c);return d}};function mc(a,b){a=O(a);var c=a.includes("j")?ec(a,b):Na.get(b);"function"!=typeof c&&Q(`unknown function pointer with signature ${a}: ${b}`);return c}var nc=void 0;function oc(a){a=pc(a);var b=O(a);qc(a);return b} +function rc(a,b){function c(k){f[k]||pb[k]||(qb[k]?qb[k].forEach(c):(d.push(k),f[k]=!0))}var d=[],f={};b.forEach(c);throw new nc(`${a}: `+d.map(oc).join([", "]));} +function sc(a,b,c,d,f){var k=b.length;2>k&&Q("argTypes array size mismatch! Must at least get return value and 'this' types!");var l=null!==b[1]&&null!==c,m=!1;for(c=1;c>2]);return c}function uc(){this.Wd=[void 0];this.Ie=[]}var vc=new uc;function wc(a){a>=vc.Zd&&0===--vc.get(a).Le&&vc.we(a)} +var xc=a=>{a||Q("Cannot use deleted val. handle = "+a);return vc.get(a).value},ac=a=>{switch(a){case void 0:return 1;case null:return 2;case !0:return 3;case !1:return 4;default:return vc.ve({Le:1,value:a})}};function yc(a,b,c){switch(b){case 0:return function(d){return this.fromWireType((c?Ha:C)[d])};case 1:return function(d){return this.fromWireType((c?Ia:Ja)[d>>1])};case 2:return function(d){return this.fromWireType((c?K:L)[d>>2])};default:throw new TypeError("Unknown integer type: "+a);}} +function zc(a,b){var c=pb[a];void 0===c&&Q(b+" has unknown type "+oc(a));return c}function Zb(a){if(null===a)return"null";var b=typeof a;return"object"===b||"array"===b||"function"===b?a.toString():""+a}function Ac(a,b){switch(b){case 2:return function(c){return this.fromWireType(N[c>>2])};case 3:return function(c){return this.fromWireType(Ka[c>>3])};default:throw new TypeError("Unknown float type: "+a);}} +function Bc(a,b,c){switch(b){case 0:return c?function(d){return Ha[d]}:function(d){return C[d]};case 1:return c?function(d){return Ia[d>>1]}:function(d){return Ja[d>>1]};case 2:return c?function(d){return K[d>>2]}:function(d){return L[d>>2]};default:throw new TypeError("Unknown integer type: "+a);}} +var ka=(a,b,c,d)=>{if(!(0=l){var m=a.charCodeAt(++k);l=65536+((l&1023)<<10)|m&1023}if(127>=l){if(c>=d)break;b[c++]=l}else{if(2047>=l){if(c+1>=d)break;b[c++]=192|l>>6}else{if(65535>=l){if(c+2>=d)break;b[c++]=224|l>>12}else{if(c+3>=d)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},ja=a=>{for(var b=0,c=0;c=d?b++:2047>= +d?b+=2:55296<=d&&57343>=d?(b+=4,++c):b+=3}return b},Cc="undefined"!=typeof TextDecoder?new TextDecoder("utf-16le"):void 0,Dc=(a,b)=>{var c=a>>1;for(var d=c+b/2;!(c>=d)&&Ja[c];)++c;c<<=1;if(32=b/2);++d){var f=Ia[a+2*d>>1];if(0==f)break;c+=String.fromCharCode(f)}return c},Ec=(a,b,c)=>{void 0===c&&(c=2147483647);if(2>c)return 0;c-=2;var d=b;c=c<2*a.length?c/2:a.length;for(var f=0;f>1]=a.charCodeAt(f),b+=2;Ia[b>>1]=0;return b-d}, +Fc=a=>2*a.length,Gc=(a,b)=>{for(var c=0,d="";!(c>=b/4);){var f=K[a+4*c>>2];if(0==f)break;++c;65536<=f?(f-=65536,d+=String.fromCharCode(55296|f>>10,56320|f&1023)):d+=String.fromCharCode(f)}return d},Hc=(a,b,c)=>{void 0===c&&(c=2147483647);if(4>c)return 0;var d=b;c=d+c-4;for(var f=0;f=k){var l=a.charCodeAt(++f);k=65536+((k&1023)<<10)|l&1023}K[b>>2]=k;b+=4;if(b+4>c)break}K[b>>2]=0;return b-d},Ic=a=>{for(var b=0,c=0;c=d&&++c;b+=4}return b},Jc={};function Kc(a){var b=Jc[a];return void 0===b?O(a):b}var Lc=[]; +function Mc(){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 Nc(a){var b=Lc.length;Lc.push(a);return b}function Oc(a,b){for(var c=Array(a),d=0;d>2],"parameter "+d);return c}var Pc=[];function Qc(a){var b=Array(a+1);return function(c,d,f){b[0]=c;for(var k=0;k>2],"parameter "+k);b[k+1]=l.readValueFromPointer(f);f+=l.argPackAdvance}c=new (c.bind.apply(c,b));return ac(c)}}var Rc={}; +function Sc(a){var b=a.getExtension("ANGLE_instanced_arrays");b&&(a.vertexAttribDivisor=function(c,d){b.vertexAttribDivisorANGLE(c,d)},a.drawArraysInstanced=function(c,d,f,k){b.drawArraysInstancedANGLE(c,d,f,k)},a.drawElementsInstanced=function(c,d,f,k,l){b.drawElementsInstancedANGLE(c,d,f,k,l)})} +function Tc(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 Uc(a){var b=a.getExtension("WEBGL_draw_buffers");b&&(a.drawBuffers=function(c,d){b.drawBuffersWEBGL(c,d)})} +var Vc=1,Wc=[],Xc=[],Yc=[],Zc=[],ea=[],$c=[],ad=[],ia=[],bd=[],cd=[],dd={},ed={},gd=4;function R(a){hd||(hd=a)}function da(a){for(var b=Vc++,c=a.length;ca.version||!b.Ge)b.Ge=b.getExtension("EXT_disjoint_timer_query");b.wf=b.getExtension("WEBGL_multi_draw");(b.getSupportedExtensions()||[]).forEach(function(c){c.includes("lose_context")||c.includes("debug")||b.getExtension(c)})}} +var v,hd,ld={},nd=()=>{if(!md){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",_:ma||"./this.program"},b;for(b in ld)void 0===ld[b]?delete a[b]:a[b]=ld[b];var c=[];for(b in a)c.push(`${b}=${a[b]}`);md=c}return md},md,od=[null,[],[]];function pd(a){S.bindVertexArray(ad[a])} +function qd(a,b){for(var c=0;c>2];S.deleteVertexArray(ad[d]);ad[d]=null}}var rd=[];function sd(a,b,c,d){S.drawElements(a,b,c,d)}function td(a,b,c,d){for(var f=0;f>2]=l}}function ud(a,b){td(a,b,"createVertexArray",ad)} +function vd(a,b,c){if(b){var d=void 0;switch(a){case 36346:d=1;break;case 36344:0!=c&&1!=c&&R(1280);return;case 34814:case 36345:d=0;break;case 34466:var f=S.getParameter(34467);d=f?f.length:0;break;case 33309:if(2>v.version){R(1282);return}d=2*(S.getSupportedExtensions()||[]).length;break;case 33307:case 33308:if(2>v.version){R(1280);return}d=33307==a?3:0}if(void 0===d)switch(f=S.getParameter(a),typeof f){case "number":d=f;break;case "boolean":d=f?1:0;break;case "string":R(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:R(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:Ha[b+a>>0]=f[a]?1:0}return}try{d=f.name|0}catch(k){R(1280); +Ca("GL_INVALID_ENUM in glGet"+c+"v: Unknown object returned from WebGL getParameter("+a+")! (error: "+k+")");return}}break;default:R(1280);Ca("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;L[b>>2]=c;L[b+4>>2]=(c-L[b>>2])/4294967296;break;case 0:K[b>>2]=d;break;case 2:N[b>>2]=d;break;case 4:Ha[b>>0]=d?1:0}}else R(1281)}var xd=a=>{var b=ja(a)+1,c=wd(b);c&&ka(a,C,c,b);return c}; +function yd(a){return"]"==a.slice(-1)&&a.lastIndexOf("[")}function zd(a){a-=5120;return 0==a?Ha:1==a?C:2==a?Ia:4==a?K:6==a?N:5==a||28922==a||28520==a||30779==a||30782==a?L:Ja}function Ad(a,b,c,d,f){a=zd(a);var k=31-Math.clz32(a.BYTES_PER_ELEMENT),l=gd;return a.subarray(f>>k,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<>k)} +function W(a){var b=S.We;if(b){var c=b.je[a];"number"==typeof c&&(b.je[a]=c=S.getUniformLocation(b,b.Me[a]+(00===a%4&&(0!==a%100||0===a%400),Ed=[31,29,31,30,31,30,31,31,30,31,30,31],Fd=[31,28,31,30,31,30,31,31,30,31,30,31];function Gd(a){var b=Array(ja(a)+1);ka(a,b,0,b.length);return b} +var Hd=(a,b,c,d)=>{function f(u,F,H){for(u="number"==typeof u?u.toString():u||"";u.lengthca?-1:0T-u.getDate())F-=T-u.getDate()+1,u.setDate(1),11>H?u.setMonth(H+1):(u.setMonth(0),u.setFullYear(u.getFullYear()+1));else{u.setDate(u.getDate()+F);break}}H=new Date(u.getFullYear()+1,0,4);F=m(new Date(u.getFullYear(), +0,4));H=m(H);return 0>=l(F,u)?0>=l(H,u)?u.getFullYear()+1:u.getFullYear():u.getFullYear()-1}var w=K[d+40>>2];d={tf:K[d>>2],sf:K[d+4>>2],te:K[d+8>>2],Ce:K[d+12>>2],ue:K[d+16>>2],ae:K[d+20>>2],Vd:K[d+24>>2],$d:K[d+28>>2],zf:K[d+32>>2],rf:K[d+36>>2],uf:w?w?kb(C,w):"":""};c=c?kb(C,c):"";w={"%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 w)c=c.replace(new RegExp(y,"g"),w[y]);var B="Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "),D="January February March April May June July August September October November December".split(" ");w={"%a":u=>B[u.Vd].substring(0,3),"%A":u=>B[u.Vd],"%b":u=>D[u.ue].substring(0,3),"%B":u=>D[u.ue],"%C":u=>k((u.ae+1900)/ +100|0,2),"%d":u=>k(u.Ce,2),"%e":u=>f(u.Ce,2," "),"%g":u=>p(u).toString().substring(2),"%G":u=>p(u),"%H":u=>k(u.te,2),"%I":u=>{u=u.te;0==u?u=12:12{for(var F=0,H=0;H<=u.ue-1;F+=(Dd(u.ae+1900)?Ed:Fd)[H++]);return k(u.Ce+F,3)},"%m":u=>k(u.ue+1,2),"%M":u=>k(u.sf,2),"%n":()=>"\n","%p":u=>0<=u.te&&12>u.te?"AM":"PM","%S":u=>k(u.tf,2),"%t":()=>"\t","%u":u=>u.Vd||7,"%U":u=>k(Math.floor((u.$d+7-u.Vd)/7),2),"%V":u=>{var F=Math.floor((u.$d+7-(u.Vd+6)%7)/7);2>=(u.Vd+371-u.$d- +2)%7&&F++;if(F)53==F&&(H=(u.Vd+371-u.$d)%7,4==H||3==H&&Dd(u.ae)||(F=1));else{F=52;var H=(u.Vd+7-u.$d-1)%7;(4==H||5==H&&Dd(u.ae%400-1))&&F++}return k(F,2)},"%w":u=>u.Vd,"%W":u=>k(Math.floor((u.$d+7-(u.Vd+6)%7)/7),2),"%y":u=>(u.ae+1900).toString().substring(2),"%Y":u=>u.ae+1900,"%z":u=>{u=u.rf;var F=0<=u;u=Math.abs(u)/60;return(F?"+":"-")+String("0000"+(u/60*100+u%60)).slice(-4)},"%Z":u=>u.uf,"%%":()=>"%"};c=c.replace(/%%/g,"\x00\x00");for(y in w)c.includes(y)&&(c=c.replace(new RegExp(y,"g"),w[y](d))); +c=c.replace(/\0\0/g,"%");y=Gd(c);if(y.length>b)return 0;Ha.set(y,a);return y.length-1};rb=r.InternalError=class extends Error{constructor(a){super(a);this.name="InternalError"}};for(var Id=Array(256),Jd=0;256>Jd;++Jd)Id[Jd]=String.fromCharCode(Jd);wb=Id;xb=r.BindingError=class extends Error{constructor(a){super(a);this.name="BindingError"}}; +Rb.prototype.isAliasOf=function(a){if(!(this instanceof Rb&&a instanceof Rb))return!1;var b=this.kd.Nd.Ld,c=this.kd.Kd,d=a.kd.Nd.Ld;for(a=a.kd.Kd;b.Qd;)c=b.ke(c),b=b.Qd;for(;d.Qd;)a=d.ke(a),d=d.Qd;return b===d&&c===a}; +Rb.prototype.clone=function(){this.kd.Kd||zb(this);if(this.kd.ie)return this.kd.count.value+=1,this;var a=Qb,b=Object,c=b.create,d=Object.getPrototypeOf(this),f=this.kd;a=a(c.call(b,d,{kd:{value:{count:f.count,ee:f.ee,ie:f.ie,Kd:f.Kd,Nd:f.Nd,Pd:f.Pd,Td:f.Td}}}));a.kd.count.value+=1;a.kd.ee=!1;return a};Rb.prototype["delete"]=function(){this.kd.Kd||zb(this);this.kd.ee&&!this.kd.ie&&Q("Object already scheduled for deletion");Bb(this);Cb(this.kd);this.kd.ie||(this.kd.Pd=void 0,this.kd.Kd=void 0)}; +Rb.prototype.isDeleted=function(){return!this.kd.Kd};Rb.prototype.deleteLater=function(){this.kd.Kd||zb(this);this.kd.ee&&!this.kd.ie&&Q("Object already scheduled for deletion");Kb.push(this);1===Kb.length&&Mb&&Mb(Lb);this.kd.ee=!0;return this};r.getInheritedInstanceCount=function(){return Object.keys(Nb).length};r.getLiveInheritedInstances=function(){var a=[],b;for(b in Nb)Nb.hasOwnProperty(b)&&a.push(Nb[b]);return a};r.flushPendingDeletes=Lb;r.setDelayFunction=function(a){Mb=a;Kb.length&&Mb&&Mb(Lb)}; +cc.prototype.bf=function(a){this.Ke&&(a=this.Ke(a));return a};cc.prototype.Ee=function(a){this.Xd&&this.Xd(a)};cc.prototype.argPackAdvance=8;cc.prototype.readValueFromPointer=nb;cc.prototype.deleteObject=function(a){if(null!==a)a["delete"]()}; +cc.prototype.fromWireType=function(a){function b(){return this.pe?Pb(this.Ld.fe,{Nd:this.jf,Kd:c,Td:this,Pd:a}):Pb(this.Ld.fe,{Nd:this,Kd:a})}var c=this.bf(a);if(!c)return this.Ee(a),null;var d=Ob(this.Ld,c);if(void 0!==d){if(0===d.kd.count.value)return d.kd.Kd=c,d.kd.Pd=a,d.clone();d=d.clone();this.Ee(a);return d}d=this.Ld.af(c);d=Jb[d];if(!d)return b.call(this);d=this.oe?d.Ve:d.pointerType;var f=Db(c,this.Ld,d.Ld);return null===f?b.call(this):this.pe?Pb(d.Ld.fe,{Nd:d,Kd:f,Td:this,Pd:a}):Pb(d.Ld.fe, +{Nd:d,Kd:f})};nc=r.UnboundTypeError=function(a,b){var c=Tb(b,function(d){this.name=b;this.message=d;d=Error(d).stack;void 0!==d&&(this.stack=this.toString()+"\n"+d.replace(/^Error(:[^\n]*)?\n/,""))});c.prototype=Object.create(a.prototype);c.prototype.constructor=c;c.prototype.toString=function(){return void 0===this.message?this.name:`${this.name}: ${this.message}`};return c}(Error,"UnboundTypeError"); +Object.assign(uc.prototype,{get(a){return this.Wd[a]},has(a){return void 0!==this.Wd[a]},ve(a){var b=this.Ie.pop()||this.Wd.length;this.Wd[b]=a;return b},we(a){this.Wd[a]=void 0;this.Ie.push(a)}});vc.Wd.push({value:void 0},{value:null},{value:!0},{value:!1});vc.Zd=vc.Wd.length;r.count_emval_handles=function(){for(var a=0,b=vc.Zd;bKd;++Kd)rd.push(Array(Kd));var Ld=new Float32Array(288); +for(Kd=0;288>Kd;++Kd)Bd[Kd]=Ld.subarray(0,Kd+1);var Md=new Int32Array(288);for(Kd=0;288>Kd;++Kd)Cd[Kd]=Md.subarray(0,Kd+1); +var $d={H:function(a,b,c){(new fb(a)).Zd(b,c);gb=a;ib++;throw gb;},U:function(){return 0},vb:()=>{},xb:function(){return 0},sb:()=>{},tb:()=>{},V:function(){},ub:()=>{},C:function(a){var b=lb[a];delete lb[a];var c=b.Be,d=b.Xd,f=b.He,k=f.map(l=>l.ef).concat(f.map(l=>l.nf));tb([a],k,l=>{var m={};f.forEach((p,w)=>{var y=l[w],B=p.cf,D=p.df,u=l[w+f.length],F=p.mf,H=p.pf;m[p.$e]={read:T=>y.fromWireType(B(D,T)),write:(T,ca)=>{var Y=[];F(H,T,u.toWireType(Y,ca));mb(Y)}}});return[{name:b.name,fromWireType:function(p){var w= +{},y;for(y in m)w[y]=m[y].read(p);d(p);return w},toWireType:function(p,w){for(var y in m)if(!(y in w))throw new TypeError(`Missing field: "${y}"`);var B=c();for(y in m)m[y].write(B,w[y]);null!==p&&p.push(d,B);return B},argPackAdvance:8,readValueFromPointer:nb,Sd:d}]})},kb:function(){},Bb:function(a,b,c,d,f){var k=vb(c);b=O(b);ub(a,{name:b,fromWireType:function(l){return!!l},toWireType:function(l,m){return m?d:f},argPackAdvance:8,readValueFromPointer:function(l){if(1===c)var m=Ha;else if(2===c)m=Ia; +else if(4===c)m=K;else throw new TypeError("Unknown boolean type size: "+b);return this.fromWireType(m[l>>k])},Sd:null})},l:function(a,b,c,d,f,k,l,m,p,w,y,B,D){y=O(y);k=mc(f,k);m&&(m=mc(l,m));w&&(w=mc(p,w));D=mc(B,D);var u=Sb(y);Vb(u,function(){rc(`Cannot construct ${y} due to unbound types`,[d])});tb([a,b,c],d?[d]:[],function(F){F=F[0];if(d){var H=F.Ld;var T=H.fe}else T=Rb.prototype;F=Tb(u,function(){if(Object.getPrototypeOf(this)!==ca)throw new xb("Use 'new' to construct "+y);if(void 0===Y.Yd)throw new xb(y+ +" has no accessible constructor");var Ma=Y.Yd[arguments.length];if(void 0===Ma)throw new xb(`Tried to invoke ctor of ${y} with invalid number of parameters (${arguments.length}) - expected (${Object.keys(Y.Yd).toString()}) parameters instead!`);return Ma.apply(this,arguments)});var ca=Object.create(T,{constructor:{value:F}});F.prototype=ca;var Y=new Wb(y,F,ca,D,H,k,m,w);Y.Qd&&(void 0===Y.Qd.le&&(Y.Qd.le=[]),Y.Qd.le.push(Y));H=new cc(y,Y,!0,!1,!1);T=new cc(y+"*",Y,!1,!1,!1);var va=new cc(y+" const*", +Y,!1,!0,!1);Jb[a]={pointerType:T,Ve:va};dc(u,F);return[H,T,va]})},e:function(a,b,c,d,f,k,l){var m=tc(c,d);b=O(b);k=mc(f,k);tb([],[a],function(p){function w(){rc(`Cannot call ${y} due to unbound types`,m)}p=p[0];var y=`${p.name}.${b}`;b.startsWith("@@")&&(b=Symbol[b.substring(2)]);var B=p.Ld.constructor;void 0===B[b]?(w.ce=c-1,B[b]=w):(Ub(B,b,y),B[b].Od[c-1]=w);tb([],m,function(D){D=[D[0],null].concat(D.slice(1));D=sc(y,D,null,k,l);void 0===B[b].Od?(D.ce=c-1,B[b]=D):B[b].Od[c-1]=D;if(p.Ld.le)for(const u of p.Ld.le)u.constructor.hasOwnProperty(b)|| +(u.constructor[b]=D);return[]});return[]})},A:function(a,b,c,d,f,k){var l=tc(b,c);f=mc(d,f);tb([],[a],function(m){m=m[0];var p=`constructor ${m.name}`;void 0===m.Ld.Yd&&(m.Ld.Yd=[]);if(void 0!==m.Ld.Yd[b-1])throw new xb(`Cannot register multiple constructors with identical number of parameters (${b-1}) for class '${m.name}'! Overload resolution is currently only performed using the parameter count, not actual type info!`);m.Ld.Yd[b-1]=()=>{rc(`Cannot construct ${m.name} due to unbound types`,l)}; +tb([],l,function(w){w.splice(1,0,null);m.Ld.Yd[b-1]=sc(p,w,null,f,k);return[]});return[]})},a:function(a,b,c,d,f,k,l,m){var p=tc(c,d);b=O(b);k=mc(f,k);tb([],[a],function(w){function y(){rc(`Cannot call ${B} due to unbound types`,p)}w=w[0];var B=`${w.name}.${b}`;b.startsWith("@@")&&(b=Symbol[b.substring(2)]);m&&w.Ld.kf.push(b);var D=w.Ld.fe,u=D[b];void 0===u||void 0===u.Od&&u.className!==w.name&&u.ce===c-2?(y.ce=c-2,y.className=w.name,D[b]=y):(Ub(D,b,B),D[b].Od[c-2]=y);tb([],p,function(F){F=sc(B,F, +w,k,l);void 0===D[b].Od?(F.ce=c-2,D[b]=F):D[b].Od[c-2]=F;return[]});return[]})},t:function(a,b,c){a=O(a);tb([],[b],function(d){d=d[0];r[a]=d.fromWireType(c);return[]})},Ab:function(a,b){b=O(b);ub(a,{name:b,fromWireType:function(c){var d=xc(c);wc(c);return d},toWireType:function(c,d){return ac(d)},argPackAdvance:8,readValueFromPointer:nb,Sd:null})},j:function(a,b,c,d){function f(){}c=vb(c);b=O(b);f.values={};ub(a,{name:b,constructor:f,fromWireType:function(k){return this.constructor.values[k]},toWireType:function(k, +l){return l.value},argPackAdvance:8,readValueFromPointer:yc(b,c,d),Sd:null});Vb(b,f)},b:function(a,b,c){var d=zc(a,"enum");b=O(b);a=d.constructor;d=Object.create(d.constructor.prototype,{value:{value:c},constructor:{value:Tb(`${d.name}_${b}`,function(){})}});a.values[c]=d;a[b]=d},X:function(a,b,c){c=vb(c);b=O(b);ub(a,{name:b,fromWireType:function(d){return d},toWireType:function(d,f){return f},argPackAdvance:8,readValueFromPointer:Ac(b,c),Sd:null})},v:function(a,b,c,d,f,k){var l=tc(b,c);a=O(a);f= +mc(d,f);Vb(a,function(){rc(`Cannot call ${a} due to unbound types`,l)},b-1);tb([],l,function(m){m=[m[0],null].concat(m.slice(1));dc(a,sc(a,m,null,f,k),b-1);return[]})},E:function(a,b,c,d,f){b=O(b);-1===f&&(f=4294967295);f=vb(c);var k=m=>m;if(0===d){var l=32-8*c;k=m=>m<>>l}c=b.includes("unsigned")?function(m,p){return p>>>0}:function(m,p){return p};ub(a,{name:b,fromWireType:k,toWireType:c,argPackAdvance:8,readValueFromPointer:Bc(b,f,0!==d),Sd:null})},s:function(a,b,c){function d(k){k>>=2;var l= +L;return new f(l.buffer,l[k+1],l[k])}var f=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array][b];c=O(c);ub(a,{name:c,fromWireType:d,argPackAdvance:8,readValueFromPointer:d},{ff:!0})},q:function(a,b,c,d,f,k,l,m,p,w,y,B){c=O(c);k=mc(f,k);m=mc(l,m);w=mc(p,w);B=mc(y,B);tb([a],[b],function(D){D=D[0];return[new cc(c,D.Ld,!1,!1,!0,D,d,k,m,w,B)]})},W:function(a,b){b=O(b);var c="std::string"===b;ub(a,{name:b,fromWireType:function(d){var f=L[d>>2],k=d+4;if(c)for(var l= +k,m=0;m<=f;++m){var p=k+m;if(m==f||0==C[p]){l=l?kb(C,l,p-l):"";if(void 0===w)var w=l;else w+=String.fromCharCode(0),w+=l;l=p+1}}else{w=Array(f);for(m=0;m>2]= +l;if(c&&k)ka(f,C,p,l+1);else if(k)for(k=0;kJa;var m=1}else 4===b&&(d=Gc,f=Hc,k=Ic,l=()=>L,m=2);ub(a,{name:c,fromWireType:function(p){for(var w=L[p>>2],y=l(),B,D=p+4,u=0;u<=w;++u){var F= +p+4+u*b;if(u==w||0==y[F>>m])D=d(D,F-D),void 0===B?B=D:(B+=String.fromCharCode(0),B+=D),D=F+b}qc(p);return B},toWireType:function(p,w){"string"!=typeof w&&Q(`Cannot pass non-string to C++ string type ${c}`);var y=k(w),B=wd(4+y+b);L[B>>2]=y>>m;f(w,B+4,y+b);null!==p&&p.push(qc,B);return B},argPackAdvance:8,readValueFromPointer:nb,Sd:function(p){qc(p)}})},D:function(a,b,c,d,f,k){lb[a]={name:O(b),Be:mc(c,d),Xd:mc(f,k),He:[]}},d:function(a,b,c,d,f,k,l,m,p,w){lb[a].He.push({$e:O(b),ef:c,cf:mc(d,f),df:k, +nf:l,mf:mc(m,p),pf:w})},Cb:function(a,b){b=O(b);ub(a,{hf:!0,name:b,argPackAdvance:0,fromWireType:function(){},toWireType:function(){}})},zb:()=>!0,ob:()=>{throw Infinity;},F:function(a,b,c){a=xc(a);b=zc(b,"emval::as");var d=[],f=ac(d);L[c>>2]=f;return b.toWireType(d,a)},P:function(a,b,c,d,f){a=Lc[a];b=xc(b);c=Kc(c);var k=[];L[d>>2]=ac(k);return a(b,c,k,f)},u:function(a,b,c,d){a=Lc[a];b=xc(b);c=Kc(c);a(b,c,null,d)},c:wc,K:function(a){if(0===a)return ac(Mc());a=Kc(a);return ac(Mc()[a])},r:function(a, +b){var c=Oc(a,b),d=c[0];b=d.name+"_$"+c.slice(1).map(function(l){return l.name}).join("_")+"$";var f=Pc[b];if(void 0!==f)return f;var k=Array(a-1);f=Nc((l,m,p,w)=>{for(var y=0,B=0;B{Ea("")},yb:()=>performance.now(),pb:a=>{var b=C.length;a>>>=0;if(2147483648=c;c*=2){var d=b*(1+.2/c); +d=Math.min(d,a+100663296);var f=Math;d=Math.max(a,d);a:{f=f.min.call(f,2147483648,d+(65536-d%65536)%65536)-Fa.buffer.byteLength+65535>>>16;try{Fa.grow(f);La();var k=1;break a}catch(l){}k=void 0}if(k)return!0}return!1},fb:function(){return v?v.handle:0},qb:(a,b)=>{var c=0;nd().forEach(function(d,f){var k=b+c;f=L[a+4*f>>2]=k;for(k=0;k>0]=d.charCodeAt(k);Ha[f>>0]=0;c+=d.length+1});return 0},rb:(a,b)=>{var c=nd();L[a>>2]=c.length;var d=0;c.forEach(function(f){d+=f.length+1});L[b>> +2]=d;return 0},Db:a=>{if(!noExitRuntime){if(r.onExit)r.onExit(a);Ga=!0}oa(a,new db(a))},M:()=>52,gb:function(){return 52},wb:()=>52,jb:function(){return 70},T:(a,b,c,d)=>{for(var f=0,k=0;k>2],m=L[b+4>>2];b+=8;for(var p=0;p>2]=f;return 0},Wc:function(a){S.activeTexture(a)},Xc:function(a,b){S.attachShader(Xc[a],$c[b])},Yc:function(a,b,c){S.bindAttribLocation(Xc[a],b,c?kb(C,c):"")},Zc:function(a, +b){35051==a?S.ye=b:35052==a&&(S.de=b);S.bindBuffer(a,Wc[b])},$:function(a,b){S.bindFramebuffer(a,Yc[b])},_b:function(a,b){S.bindRenderbuffer(a,Zc[b])},Kb:function(a,b){S.bindSampler(a,bd[b])},_c:function(a,b){S.bindTexture(a,ea[b])},sc:pd,vc:pd,$c:function(a,b,c,d){S.blendColor(a,b,c,d)},aa:function(a){S.blendEquation(a)},ba:function(a,b){S.blendFunc(a,b)},Ub:function(a,b,c,d,f,k,l,m,p,w){S.blitFramebuffer(a,b,c,d,f,k,l,m,p,w)},ca:function(a,b,c,d){2<=v.version?c&&b?S.bufferData(a,C,d,c,b):S.bufferData(a, +b,d):S.bufferData(a,c?C.subarray(c,c+b):b,d)},da:function(a,b,c,d){2<=v.version?c&&S.bufferSubData(a,b,C,d,c):S.bufferSubData(a,b,C.subarray(d,d+c))},$b:function(a){return S.checkFramebufferStatus(a)},R:function(a){S.clear(a)},_:function(a,b,c,d){S.clearColor(a,b,c,d)},S:function(a){S.clearStencil(a)},mb:function(a,b,c,d){return S.clientWaitSync(cd[a],b,(c>>>0)+4294967296*d)},ea:function(a,b,c,d){S.colorMask(!!a,!!b,!!c,!!d)},fa:function(a){S.compileShader($c[a])},ga:function(a,b,c,d,f,k,l,m){2<= +v.version?S.de||!l?S.compressedTexImage2D(a,b,c,d,f,k,l,m):S.compressedTexImage2D(a,b,c,d,f,k,C,m,l):S.compressedTexImage2D(a,b,c,d,f,k,m?C.subarray(m,m+l):null)},ha:function(a,b,c,d,f,k,l,m,p){2<=v.version?S.de||!m?S.compressedTexSubImage2D(a,b,c,d,f,k,l,m,p):S.compressedTexSubImage2D(a,b,c,d,f,k,l,C,p,m):S.compressedTexSubImage2D(a,b,c,d,f,k,l,p?C.subarray(p,p+m):null)},Sb:function(a,b,c,d,f){S.copyBufferSubData(a,b,c,d,f)},ia:function(a,b,c,d,f,k,l,m){S.copyTexSubImage2D(a,b,c,d,f,k,l,m)},ja:function(){var a= +da(Xc),b=S.createProgram();b.name=a;b.se=b.qe=b.re=0;b.De=1;Xc[a]=b;return a},ka:function(a){var b=da($c);$c[b]=S.createShader(a);return b},la:function(a){S.cullFace(a)},ma:function(a,b){for(var c=0;c>2],f=Wc[d];f&&(S.deleteBuffer(f),f.name=0,Wc[d]=null,d==S.ye&&(S.ye=0),d==S.de&&(S.de=0))}},ac:function(a,b){for(var c=0;c>2],f=Yc[d];f&&(S.deleteFramebuffer(f),f.name=0,Yc[d]=null)}},na:function(a){if(a){var b=Xc[a];b?(S.deleteProgram(b),b.name=0,Xc[a]=null): +R(1281)}},bc:function(a,b){for(var c=0;c>2],f=Zc[d];f&&(S.deleteRenderbuffer(f),f.name=0,Zc[d]=null)}},Lb:function(a,b){for(var c=0;c>2],f=bd[d];f&&(S.deleteSampler(f),f.name=0,bd[d]=null)}},oa:function(a){if(a){var b=$c[a];b?(S.deleteShader(b),$c[a]=null):R(1281)}},Tb:function(a){if(a){var b=cd[a];b?(S.deleteSync(b),b.name=0,cd[a]=null):R(1281)}},pa:function(a,b){for(var c=0;c>2],f=ea[d];f&&(S.deleteTexture(f),f.name=0,ea[d]=null)}}, +tc:qd,wc:qd,qa:function(a){S.depthMask(!!a)},ra:function(a){S.disable(a)},sa:function(a){S.disableVertexAttribArray(a)},ta:function(a,b,c){S.drawArrays(a,b,c)},qc:function(a,b,c,d){S.drawArraysInstanced(a,b,c,d)},oc:function(a,b,c,d,f){S.Fe.drawArraysInstancedBaseInstanceWEBGL(a,b,c,d,f)},mc:function(a,b){for(var c=rd[a],d=0;d>2];S.drawBuffers(c)},ua:sd,rc:function(a,b,c,d,f){S.drawElementsInstanced(a,b,c,d,f)},pc:function(a,b,c,d,f,k,l){S.Fe.drawElementsInstancedBaseVertexBaseInstanceWEBGL(a, +b,c,d,f,k,l)},gc:function(a,b,c,d,f,k){sd(a,d,f,k)},va:function(a){S.enable(a)},wa:function(a){S.enableVertexAttribArray(a)},Qb:function(a,b){return(a=S.fenceSync(a,b))?(b=da(cd),a.name=b,cd[b]=a,b):0},xa:function(){S.finish()},ya:function(){S.flush()},cc:function(a,b,c,d){S.framebufferRenderbuffer(a,b,c,Zc[d])},dc:function(a,b,c,d,f){S.framebufferTexture2D(a,b,c,ea[d],f)},za:function(a){S.frontFace(a)},Aa:function(a,b){td(a,b,"createBuffer",Wc)},ec:function(a,b){td(a,b,"createFramebuffer",Yc)},fc:function(a, +b){td(a,b,"createRenderbuffer",Zc)},Mb:function(a,b){td(a,b,"createSampler",bd)},Ba:function(a,b){td(a,b,"createTexture",ea)},uc:ud,xc:ud,Wb:function(a){S.generateMipmap(a)},Ca:function(a,b,c){c?K[c>>2]=S.getBufferParameter(a,b):R(1281)},Da:function(){var a=S.getError()||hd;hd=0;return a},Ea:function(a,b){vd(a,b,2)},Xb:function(a,b,c,d){a=S.getFramebufferAttachmentParameter(a,b,c);if(a instanceof WebGLRenderbuffer||a instanceof WebGLTexture)a=a.name|0;K[d>>2]=a},L:function(a,b){vd(a,b,0)},Fa:function(a, +b,c,d){a=S.getProgramInfoLog(Xc[a]);null===a&&(a="(unknown error)");b=0>2]=b)},Ga:function(a,b,c){if(c)if(a>=Vc)R(1281);else if(a=Xc[a],35716==b)a=S.getProgramInfoLog(a),null===a&&(a="(unknown error)"),K[c>>2]=a.length+1;else if(35719==b){if(!a.se)for(b=0;b>2]=a.se}else if(35722==b){if(!a.qe)for(b=0;b>2]=a.qe}else if(35381==b){if(!a.re)for(b=0;b>2]=a.re}else K[c>>2]=S.getProgramParameter(a,b);else R(1281)},Yb:function(a,b,c){c?K[c>>2]=S.getRenderbufferParameter(a,b):R(1281)},Ha:function(a,b,c,d){a=S.getShaderInfoLog($c[a]);null===a&&(a="(unknown error)");b=0>2]=b)},Hb:function(a,b,c,d){a=S.getShaderPrecisionFormat(a,b);K[c>>2]=a.rangeMin;K[c+4>> +2]=a.rangeMax;K[d>>2]=a.precision},Ia:function(a,b,c){c?35716==b?(a=S.getShaderInfoLog($c[a]),null===a&&(a="(unknown error)"),K[c>>2]=a?a.length+1:0):35720==b?(a=S.getShaderSource($c[a]),K[c>>2]=a?a.length+1:0):K[c>>2]=S.getShaderParameter($c[a],b):R(1281)},Q:function(a){var b=dd[a];if(!b){switch(a){case 7939:b=S.getSupportedExtensions()||[];b=b.concat(b.map(function(d){return"GL_"+d}));b=xd(b.join(" "));break;case 7936:case 7937:case 37445:case 37446:(b=S.getParameter(a))||R(1280);b=b&&xd(b);break; +case 7938:b=S.getParameter(7938);b=2<=v.version?"OpenGL ES 3.0 ("+b+")":"OpenGL ES 2.0 ("+b+")";b=xd(b);break;case 35724:b=S.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=xd(b);break;default:R(1280)}dd[a]=b}return b},db:function(a,b){if(2>v.version)return R(1282),0;var c=ed[a];if(c)return 0>b||b>=c.length?(R(1281),0):c[b];switch(a){case 7939:return c=S.getSupportedExtensions()||[], +c=c.concat(c.map(function(d){return"GL_"+d})),c=c.map(function(d){return xd(d)}),c=ed[a]=c,0>b||b>=c.length?(R(1281),0):c[b];default:return R(1280),0}},Ja:function(a,b){b=b?kb(C,b):"";if(a=Xc[a]){var c=a,d=c.je,f=c.Ne,k;if(!d)for(c.je=d={},c.Me={},k=0;k>>0,f=b.slice(0, +k));if((f=a.Ne[f])&&d>2];S.invalidateFramebuffer(a,d)},Jb:function(a,b,c,d,f,k,l){for(var m=rd[b],p=0;p>2];S.invalidateSubFramebuffer(a,m,d,f,k,l)},Rb:function(a){return S.isSync(cd[a])},Ka:function(a){return(a=ea[a])?S.isTexture(a):0},La:function(a){S.lineWidth(a)},Ma:function(a){a=Xc[a];S.linkProgram(a);a.je=0;a.Ne={}},kc:function(a, +b,c,d,f,k){S.Je.multiDrawArraysInstancedBaseInstanceWEBGL(a,K,b>>2,K,c>>2,K,d>>2,L,f>>2,k)},lc:function(a,b,c,d,f,k,l,m){S.Je.multiDrawElementsInstancedBaseVertexBaseInstanceWEBGL(a,K,b>>2,c,K,d>>2,K,f>>2,K,k>>2,L,l>>2,m)},Na:function(a,b){3317==a&&(gd=b);S.pixelStorei(a,b)},nc:function(a){S.readBuffer(a)},Oa:function(a,b,c,d,f,k,l){if(2<=v.version)if(S.ye)S.readPixels(a,b,c,d,f,k,l);else{var m=zd(k);S.readPixels(a,b,c,d,f,k,m,l>>31-Math.clz32(m.BYTES_PER_ELEMENT))}else(l=Ad(k,f,c,d,l))?S.readPixels(a, +b,c,d,f,k,l):R(1280)},Zb:function(a,b,c,d){S.renderbufferStorage(a,b,c,d)},Vb:function(a,b,c,d,f){S.renderbufferStorageMultisample(a,b,c,d,f)},Nb:function(a,b,c){S.samplerParameterf(bd[a],b,c)},Ob:function(a,b,c){S.samplerParameteri(bd[a],b,c)},Pb:function(a,b,c){S.samplerParameteri(bd[a],b,K[c>>2])},Pa:function(a,b,c,d){S.scissor(a,b,c,d)},Qa:function(a,b,c,d){for(var f="",k=0;k>2]:-1,m=K[c+4*k>>2];l=m?kb(C,m,0>l?void 0:l):"";f+=l}S.shaderSource($c[a],f)},Ra:function(a,b, +c){S.stencilFunc(a,b,c)},Sa:function(a,b,c,d){S.stencilFuncSeparate(a,b,c,d)},Ta:function(a){S.stencilMask(a)},Ua:function(a,b){S.stencilMaskSeparate(a,b)},Va:function(a,b,c){S.stencilOp(a,b,c)},Wa:function(a,b,c,d){S.stencilOpSeparate(a,b,c,d)},Xa:function(a,b,c,d,f,k,l,m,p){if(2<=v.version)if(S.de)S.texImage2D(a,b,c,d,f,k,l,m,p);else if(p){var w=zd(m);S.texImage2D(a,b,c,d,f,k,l,m,w,p>>31-Math.clz32(w.BYTES_PER_ELEMENT))}else S.texImage2D(a,b,c,d,f,k,l,m,null);else S.texImage2D(a,b,c,d,f,k,l,m,p? +Ad(m,l,d,f,p):null)},Ya:function(a,b,c){S.texParameterf(a,b,c)},Za:function(a,b,c){S.texParameterf(a,b,N[c>>2])},_a:function(a,b,c){S.texParameteri(a,b,c)},$a:function(a,b,c){S.texParameteri(a,b,K[c>>2])},hc:function(a,b,c,d,f){S.texStorage2D(a,b,c,d,f)},ab:function(a,b,c,d,f,k,l,m,p){if(2<=v.version)if(S.de)S.texSubImage2D(a,b,c,d,f,k,l,m,p);else if(p){var w=zd(m);S.texSubImage2D(a,b,c,d,f,k,l,m,w,p>>31-Math.clz32(w.BYTES_PER_ELEMENT))}else S.texSubImage2D(a,b,c,d,f,k,l,m,null);else w=null,p&&(w= +Ad(m,l,f,k,p)),S.texSubImage2D(a,b,c,d,f,k,l,m,w)},bb:function(a,b){S.uniform1f(W(a),b)},cb:function(a,b,c){if(2<=v.version)b&&S.uniform1fv(W(a),N,c>>2,b);else{if(288>=b)for(var d=Bd[b-1],f=0;f>2];else d=N.subarray(c>>2,c+4*b>>2);S.uniform1fv(W(a),d)}},Sc:function(a,b){S.uniform1i(W(a),b)},Tc:function(a,b,c){if(2<=v.version)b&&S.uniform1iv(W(a),K,c>>2,b);else{if(288>=b)for(var d=Cd[b-1],f=0;f>2];else d=K.subarray(c>>2,c+4*b>>2);S.uniform1iv(W(a),d)}},Uc:function(a, +b,c){S.uniform2f(W(a),b,c)},Vc:function(a,b,c){if(2<=v.version)b&&S.uniform2fv(W(a),N,c>>2,2*b);else{if(144>=b)for(var d=Bd[2*b-1],f=0;f<2*b;f+=2)d[f]=N[c+4*f>>2],d[f+1]=N[c+(4*f+4)>>2];else d=N.subarray(c>>2,c+8*b>>2);S.uniform2fv(W(a),d)}},Rc:function(a,b,c){S.uniform2i(W(a),b,c)},Qc:function(a,b,c){if(2<=v.version)b&&S.uniform2iv(W(a),K,c>>2,2*b);else{if(144>=b)for(var d=Cd[2*b-1],f=0;f<2*b;f+=2)d[f]=K[c+4*f>>2],d[f+1]=K[c+(4*f+4)>>2];else d=K.subarray(c>>2,c+8*b>>2);S.uniform2iv(W(a),d)}},Pc:function(a, +b,c,d){S.uniform3f(W(a),b,c,d)},Oc:function(a,b,c){if(2<=v.version)b&&S.uniform3fv(W(a),N,c>>2,3*b);else{if(96>=b)for(var d=Bd[3*b-1],f=0;f<3*b;f+=3)d[f]=N[c+4*f>>2],d[f+1]=N[c+(4*f+4)>>2],d[f+2]=N[c+(4*f+8)>>2];else d=N.subarray(c>>2,c+12*b>>2);S.uniform3fv(W(a),d)}},Nc:function(a,b,c,d){S.uniform3i(W(a),b,c,d)},Mc:function(a,b,c){if(2<=v.version)b&&S.uniform3iv(W(a),K,c>>2,3*b);else{if(96>=b)for(var d=Cd[3*b-1],f=0;f<3*b;f+=3)d[f]=K[c+4*f>>2],d[f+1]=K[c+(4*f+4)>>2],d[f+2]=K[c+(4*f+8)>>2];else d= +K.subarray(c>>2,c+12*b>>2);S.uniform3iv(W(a),d)}},Lc:function(a,b,c,d,f){S.uniform4f(W(a),b,c,d,f)},Kc:function(a,b,c){if(2<=v.version)b&&S.uniform4fv(W(a),N,c>>2,4*b);else{if(72>=b){var d=Bd[4*b-1],f=N;c>>=2;for(var k=0;k<4*b;k+=4){var l=c+k;d[k]=f[l];d[k+1]=f[l+1];d[k+2]=f[l+2];d[k+3]=f[l+3]}}else d=N.subarray(c>>2,c+16*b>>2);S.uniform4fv(W(a),d)}},yc:function(a,b,c,d,f){S.uniform4i(W(a),b,c,d,f)},zc:function(a,b,c){if(2<=v.version)b&&S.uniform4iv(W(a),K,c>>2,4*b);else{if(72>=b)for(var d=Cd[4*b- +1],f=0;f<4*b;f+=4)d[f]=K[c+4*f>>2],d[f+1]=K[c+(4*f+4)>>2],d[f+2]=K[c+(4*f+8)>>2],d[f+3]=K[c+(4*f+12)>>2];else d=K.subarray(c>>2,c+16*b>>2);S.uniform4iv(W(a),d)}},Ac:function(a,b,c,d){if(2<=v.version)b&&S.uniformMatrix2fv(W(a),!!c,N,d>>2,4*b);else{if(72>=b)for(var f=Bd[4*b-1],k=0;k<4*b;k+=4)f[k]=N[d+4*k>>2],f[k+1]=N[d+(4*k+4)>>2],f[k+2]=N[d+(4*k+8)>>2],f[k+3]=N[d+(4*k+12)>>2];else f=N.subarray(d>>2,d+16*b>>2);S.uniformMatrix2fv(W(a),!!c,f)}},Bc:function(a,b,c,d){if(2<=v.version)b&&S.uniformMatrix3fv(W(a), +!!c,N,d>>2,9*b);else{if(32>=b)for(var f=Bd[9*b-1],k=0;k<9*b;k+=9)f[k]=N[d+4*k>>2],f[k+1]=N[d+(4*k+4)>>2],f[k+2]=N[d+(4*k+8)>>2],f[k+3]=N[d+(4*k+12)>>2],f[k+4]=N[d+(4*k+16)>>2],f[k+5]=N[d+(4*k+20)>>2],f[k+6]=N[d+(4*k+24)>>2],f[k+7]=N[d+(4*k+28)>>2],f[k+8]=N[d+(4*k+32)>>2];else f=N.subarray(d>>2,d+36*b>>2);S.uniformMatrix3fv(W(a),!!c,f)}},Cc:function(a,b,c,d){if(2<=v.version)b&&S.uniformMatrix4fv(W(a),!!c,N,d>>2,16*b);else{if(18>=b){var f=Bd[16*b-1],k=N;d>>=2;for(var l=0;l<16*b;l+=16){var m=d+l;f[l]= +k[m];f[l+1]=k[m+1];f[l+2]=k[m+2];f[l+3]=k[m+3];f[l+4]=k[m+4];f[l+5]=k[m+5];f[l+6]=k[m+6];f[l+7]=k[m+7];f[l+8]=k[m+8];f[l+9]=k[m+9];f[l+10]=k[m+10];f[l+11]=k[m+11];f[l+12]=k[m+12];f[l+13]=k[m+13];f[l+14]=k[m+14];f[l+15]=k[m+15]}}else f=N.subarray(d>>2,d+64*b>>2);S.uniformMatrix4fv(W(a),!!c,f)}},Dc:function(a){a=Xc[a];S.useProgram(a);S.We=a},Ec:function(a,b){S.vertexAttrib1f(a,b)},Fc:function(a,b){S.vertexAttrib2f(a,N[b>>2],N[b+4>>2])},Gc:function(a,b){S.vertexAttrib3f(a,N[b>>2],N[b+4>>2],N[b+8>>2])}, +Hc:function(a,b){S.vertexAttrib4f(a,N[b>>2],N[b+4>>2],N[b+8>>2],N[b+12>>2])},ic:function(a,b){S.vertexAttribDivisor(a,b)},jc:function(a,b,c,d,f){S.vertexAttribIPointer(a,b,c,d,f)},Ic:function(a,b,c,d,f,k){S.vertexAttribPointer(a,b,c,!!d,f,k)},Jc:function(a,b,c,d){S.viewport(a,b,c,d)},lb:function(a,b,c,d){S.waitSync(cd[a],b,(c>>>0)+4294967296*d)},o:Nd,n:Od,k:Pd,O:Qd,Z:Rd,Y:Sd,x:Td,y:Ud,p:Vd,w:Wd,Eb:Xd,Fb:Yd,Gb:Zd,nb:(a,b,c,d)=>Hd(a,b,c,d)}; +(function(){function a(c){G=c=c.exports;Fa=G.ad;La();Na=G.cd;Pa.unshift(G.bd);Ua--;r.monitorRunDependencies&&r.monitorRunDependencies(Ua);if(0==Ua&&(null!==Va&&(clearInterval(Va),Va=null),Wa)){var d=Wa;Wa=null;d()}return c}var b={a:$d};Ua++;r.monitorRunDependencies&&r.monitorRunDependencies(Ua);if(r.instantiateWasm)try{return r.instantiateWasm(b,a)}catch(c){Ca("Module.instantiateWasm callback failed with error: "+c),ba(c)}cb(b,function(c){a(c.instance)}).catch(ba);return{}})(); +var qc=r._free=a=>(qc=r._free=G.dd)(a),wd=r._malloc=a=>(wd=r._malloc=G.ed)(a),pc=a=>(pc=G.fd)(a);r.__embind_initialize_bindings=()=>(r.__embind_initialize_bindings=G.gd)();var ae=(a,b)=>(ae=G.hd)(a,b),be=()=>(be=G.id)(),ce=a=>(ce=G.jd)(a);r.dynCall_viji=(a,b,c,d,f)=>(r.dynCall_viji=G.ld)(a,b,c,d,f);r.dynCall_vijiii=(a,b,c,d,f,k,l)=>(r.dynCall_vijiii=G.md)(a,b,c,d,f,k,l);r.dynCall_viiiiij=(a,b,c,d,f,k,l,m)=>(r.dynCall_viiiiij=G.nd)(a,b,c,d,f,k,l,m); +r.dynCall_iiiji=(a,b,c,d,f,k)=>(r.dynCall_iiiji=G.od)(a,b,c,d,f,k);r.dynCall_jii=(a,b,c)=>(r.dynCall_jii=G.pd)(a,b,c);r.dynCall_vij=(a,b,c,d)=>(r.dynCall_vij=G.qd)(a,b,c,d);r.dynCall_iiij=(a,b,c,d,f)=>(r.dynCall_iiij=G.rd)(a,b,c,d,f);r.dynCall_iiiij=(a,b,c,d,f,k)=>(r.dynCall_iiiij=G.sd)(a,b,c,d,f,k);r.dynCall_viij=(a,b,c,d,f)=>(r.dynCall_viij=G.td)(a,b,c,d,f);r.dynCall_viiij=(a,b,c,d,f,k)=>(r.dynCall_viiij=G.ud)(a,b,c,d,f,k);r.dynCall_ji=(a,b)=>(r.dynCall_ji=G.vd)(a,b); +r.dynCall_iij=(a,b,c,d)=>(r.dynCall_iij=G.wd)(a,b,c,d);r.dynCall_jiiiiii=(a,b,c,d,f,k,l)=>(r.dynCall_jiiiiii=G.xd)(a,b,c,d,f,k,l);r.dynCall_jiiiiji=(a,b,c,d,f,k,l,m)=>(r.dynCall_jiiiiji=G.yd)(a,b,c,d,f,k,l,m);r.dynCall_iijj=(a,b,c,d,f,k)=>(r.dynCall_iijj=G.zd)(a,b,c,d,f,k);r.dynCall_iiji=(a,b,c,d,f)=>(r.dynCall_iiji=G.Ad)(a,b,c,d,f);r.dynCall_iijjiii=(a,b,c,d,f,k,l,m,p)=>(r.dynCall_iijjiii=G.Bd)(a,b,c,d,f,k,l,m,p); +r.dynCall_vijjjii=(a,b,c,d,f,k,l,m,p,w)=>(r.dynCall_vijjjii=G.Cd)(a,b,c,d,f,k,l,m,p,w);r.dynCall_jiji=(a,b,c,d,f)=>(r.dynCall_jiji=G.Dd)(a,b,c,d,f);r.dynCall_viijii=(a,b,c,d,f,k,l)=>(r.dynCall_viijii=G.Ed)(a,b,c,d,f,k,l);r.dynCall_iiiiij=(a,b,c,d,f,k,l)=>(r.dynCall_iiiiij=G.Fd)(a,b,c,d,f,k,l);r.dynCall_iiiiijj=(a,b,c,d,f,k,l,m,p)=>(r.dynCall_iiiiijj=G.Gd)(a,b,c,d,f,k,l,m,p);r.dynCall_iiiiiijj=(a,b,c,d,f,k,l,m,p,w)=>(r.dynCall_iiiiiijj=G.Hd)(a,b,c,d,f,k,l,m,p,w); +function Wd(a,b,c,d,f){var k=be();try{Na.get(a)(b,c,d,f)}catch(l){ce(k);if(l!==l+0)throw l;ae(1,0)}}function Od(a,b,c){var d=be();try{return Na.get(a)(b,c)}catch(f){ce(d);if(f!==f+0)throw f;ae(1,0)}}function Ud(a,b,c){var d=be();try{Na.get(a)(b,c)}catch(f){ce(d);if(f!==f+0)throw f;ae(1,0)}}function Nd(a,b){var c=be();try{return Na.get(a)(b)}catch(d){ce(c);if(d!==d+0)throw d;ae(1,0)}}function Td(a,b){var c=be();try{Na.get(a)(b)}catch(d){ce(c);if(d!==d+0)throw d;ae(1,0)}} +function Pd(a,b,c,d){var f=be();try{return Na.get(a)(b,c,d)}catch(k){ce(f);if(k!==k+0)throw k;ae(1,0)}}function Zd(a,b,c,d,f,k,l,m,p,w){var y=be();try{Na.get(a)(b,c,d,f,k,l,m,p,w)}catch(B){ce(y);if(B!==B+0)throw B;ae(1,0)}}function Vd(a,b,c,d){var f=be();try{Na.get(a)(b,c,d)}catch(k){ce(f);if(k!==k+0)throw k;ae(1,0)}}function Yd(a,b,c,d,f,k,l){var m=be();try{Na.get(a)(b,c,d,f,k,l)}catch(p){ce(m);if(p!==p+0)throw p;ae(1,0)}} +function Qd(a,b,c,d,f){var k=be();try{return Na.get(a)(b,c,d,f)}catch(l){ce(k);if(l!==l+0)throw l;ae(1,0)}}function Rd(a,b,c,d,f,k,l){var m=be();try{return Na.get(a)(b,c,d,f,k,l)}catch(p){ce(m);if(p!==p+0)throw p;ae(1,0)}}function Xd(a,b,c,d,f,k){var l=be();try{Na.get(a)(b,c,d,f,k)}catch(m){ce(l);if(m!==m+0)throw m;ae(1,0)}}function Sd(a,b,c,d,f,k,l,m,p,w){var y=be();try{return Na.get(a)(b,c,d,f,k,l,m,p,w)}catch(B){ce(y);if(B!==B+0)throw B;ae(1,0)}}var de;Wa=function ee(){de||fe();de||(Wa=ee)}; +function fe(){function a(){if(!de&&(de=!0,r.calledRun=!0,!Ga)){eb(Pa);aa(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();Qa.unshift(b)}eb(Qa)}}if(!(0 CanvasKitInit); diff --git a/canvaskit/canvaskit.wasm b/canvaskit/canvaskit.wasm new file mode 100644 index 00000000..0ee3590f Binary files /dev/null and b/canvaskit/canvaskit.wasm differ diff --git a/canvaskit/chromium/canvaskit.js b/canvaskit/chromium/canvaskit.js new file mode 100644 index 00000000..43e946e3 --- /dev/null +++ b/canvaskit/chromium/canvaskit.js @@ -0,0 +1,217 @@ + +var CanvasKitInit = (() => { + var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined; + if (typeof __filename !== 'undefined') _scriptDir = _scriptDir || __filename; + return ( +function(moduleArg = {}) { + +var r=moduleArg,aa,ba;r.ready=new Promise((a,b)=>{aa=a;ba=b}); +(function(a){a.Hd=a.Hd||[];a.Hd.push(function(){a.MakeSWCanvasSurface=function(b){var c=b,e="undefined"!==typeof OffscreenCanvas&&c instanceof OffscreenCanvas;if(!("undefined"!==typeof HTMLCanvasElement&&c instanceof HTMLCanvasElement||e||(c=document.getElementById(b),c)))throw"Canvas with id "+b+" was not found";if(b=a.MakeSurface(c.width,c.height))b.he=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.he=null,e.Pe=b,e.Me=c,e.Ne=f,e.se=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.Ed(this.Dd);this._flush();if(this.he){var c=new Uint8ClampedArray(a.HEAPU8.buffer,this.se,this.Ne);c=new ImageData(c,this.Pe,this.Me);b?this.he.getContext("2d").putImageData(c, +0,0,b[0],b[1],b[2]-b[0],b[3]-b[1]):this.he.getContext("2d").putImageData(c,0,0)}};a.Surface.prototype.dispose=function(){this.se&&a._free(this.se);this.delete()};a.Ed=a.Ed||function(){};a.ie=a.ie||function(){return null}})})(r); +(function(a){a.Hd=a.Hd||[];a.Hd.push(function(){function b(m,q,w){return m&&m.hasOwnProperty(q)?m[q]:w}function c(m){var q=da(ea);ea[q]=m;return q}function e(m){return m.naturalHeight||m.videoHeight||m.displayHeight||m.height}function f(m){return m.naturalWidth||m.videoWidth||m.displayWidth||m.width}function k(m,q,w,y){m.bindTexture(m.TEXTURE_2D,q);y||w.alphaType!==a.AlphaType.Premul||m.pixelStorei(m.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!0);return q}function l(m,q,w){w||q.alphaType!==a.AlphaType.Premul|| +m.pixelStorei(m.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1);m.bindTexture(m.TEXTURE_2D,null)}a.GetWebGLContext=function(m,q){if(!m)throw"null canvas passed into makeWebGLContext";var w={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)};w.majorVersion=q&&q.majorVersion?q.majorVersion:"undefined"!==typeof WebGL2RenderingContext?2:1;if(w.explicitSwapControl)throw"explicitSwapControl is not supported";m=fa(m,w);if(!m)return 0;ha(m);x.Pd.getExtension("WEBGL_debug_renderer_info");return m};a.deleteContext=function(m){x===ia[m]&&(x=null);"object"==typeof JSEvents&& +JSEvents.tf(ia[m].Pd.canvas);ia[m]&&ia[m].Pd.canvas&&(ia[m].Pd.canvas.Ke=void 0);ia[m]=null};a._setTextureCleanup({deleteTexture:function(m,q){var w=ea[q];w&&ia[m].Pd.deleteTexture(w);ea[q]=null}});a.MakeWebGLContext=function(m){if(!this.Ed(m))return null;var q=this._MakeGrContext();if(!q)return null;q.Dd=m;var w=q.delete.bind(q);q["delete"]=function(){a.Ed(this.Dd);w()}.bind(q);return x.ue=q};a.MakeGrContext=a.MakeWebGLContext;a.GrDirectContext.prototype.getResourceCacheLimitBytes=function(){a.Ed(this.Dd); +this._getResourceCacheLimitBytes()};a.GrDirectContext.prototype.getResourceCacheUsageBytes=function(){a.Ed(this.Dd);this._getResourceCacheUsageBytes()};a.GrDirectContext.prototype.releaseResourcesAndAbandonContext=function(){a.Ed(this.Dd);this._releaseResourcesAndAbandonContext()};a.GrDirectContext.prototype.setResourceCacheLimitBytes=function(m){a.Ed(this.Dd);this._setResourceCacheLimitBytes(m)};a.MakeOnScreenGLSurface=function(m,q,w,y,B,D){if(!this.Ed(m.Dd))return null;q=void 0===B||void 0===D? +this._MakeOnScreenGLSurface(m,q,w,y):this._MakeOnScreenGLSurface(m,q,w,y,B,D);if(!q)return null;q.Dd=m.Dd;return q};a.MakeRenderTarget=function(){var m=arguments[0];if(!this.Ed(m.Dd))return null;if(3===arguments.length){var q=this._MakeRenderTargetWH(m,arguments[1],arguments[2]);if(!q)return null}else if(2===arguments.length){if(q=this._MakeRenderTargetII(m,arguments[1]),!q)return null}else return null;q.Dd=m.Dd;return q};a.MakeWebGLCanvasSurface=function(m,q,w){q=q||null;var y=m,B="undefined"!== +typeof OffscreenCanvas&&y instanceof OffscreenCanvas;if(!("undefined"!==typeof HTMLCanvasElement&&y instanceof HTMLCanvasElement||B||(y=document.getElementById(m),y)))throw"Canvas with id "+m+" was not found";m=this.GetWebGLContext(y,w);if(!m||0>m)throw"failed to create webgl context: err "+m;m=this.MakeWebGLContext(m);q=this.MakeOnScreenGLSurface(m,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(m,q){a.Ed(this.Dd);m=c(m);if(q=this._makeImageFromTexture(this.Dd,m,q))q.ce=m;return q};a.Surface.prototype.makeImageFromTextureSource=function(m,q,w){q||(q={height:e(m),width:f(m),colorType:a.ColorType.RGBA_8888,alphaType:w?a.AlphaType.Premul:a.AlphaType.Unpremul});q.colorSpace||(q.colorSpace=a.ColorSpace.SRGB);a.Ed(this.Dd);var y=x.Pd;w=k(y,y.createTexture(),q,w);2===x.version?y.texImage2D(y.TEXTURE_2D,0,y.RGBA,q.width,q.height, +0,y.RGBA,y.UNSIGNED_BYTE,m):y.texImage2D(y.TEXTURE_2D,0,y.RGBA,y.RGBA,y.UNSIGNED_BYTE,m);l(y,q);this._resetContext();return this.makeImageFromTexture(w,q)};a.Surface.prototype.updateTextureFromSource=function(m,q,w){if(m.ce){a.Ed(this.Dd);var y=m.getImageInfo(),B=x.Pd,D=k(B,ea[m.ce],y,w);2===x.version?B.texImage2D(B.TEXTURE_2D,0,B.RGBA,f(q),e(q),0,B.RGBA,B.UNSIGNED_BYTE,q):B.texImage2D(B.TEXTURE_2D,0,B.RGBA,B.RGBA,B.UNSIGNED_BYTE,q);l(B,y,w);this._resetContext();ea[m.ce]=null;m.ce=c(D);y.colorSpace= +m.getColorSpace();q=this._makeImageFromTexture(this.Dd,m.ce,y);w=m.jd.Fd;B=m.jd.Kd;m.jd.Fd=q.jd.Fd;m.jd.Kd=q.jd.Kd;q.jd.Fd=w;q.jd.Kd=B;q.delete();y.colorSpace.delete()}};a.MakeLazyImageFromTextureSource=function(m,q,w){q||(q={height:e(m),width:f(m),colorType:a.ColorType.RGBA_8888,alphaType:w?a.AlphaType.Premul:a.AlphaType.Unpremul});q.colorSpace||(q.colorSpace=a.ColorSpace.SRGB);var y={makeTexture:function(){var B=x,D=B.Pd,u=k(D,D.createTexture(),q,w);2===B.version?D.texImage2D(D.TEXTURE_2D,0,D.RGBA, +q.width,q.height,0,D.RGBA,D.UNSIGNED_BYTE,m):D.texImage2D(D.TEXTURE_2D,0,D.RGBA,D.RGBA,D.UNSIGNED_BYTE,m);l(D,q,w);return c(u)},freeSrc:function(){}};"VideoFrame"===m.constructor.name&&(y.freeSrc=function(){m.close()});return a.Image._makeFromGenerator(q,y)};a.Ed=function(m){return m?ha(m):!1};a.ie=function(){return x&&x.ue&&!x.ue.isDeleted()?x.ue: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),n=0;nz;z++)a.HEAPF32[t+n]=g[v][z],n++;g=h}else g=M;d.Md=g}else throw"Invalid argument to copyFlexibleColorArray, Not a color array "+typeof g;return d}function q(g){if(!g)return M;var d=T.toTypedArray();if(g.length){if(6===g.length||9===g.length)return l(g,"HEAPF32",H),6===g.length&&a.HEAPF32.set(fd,6+H/4),H;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],H;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 H}function w(g){if(!g)return M;var d=Y.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",ca);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 ca}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 ca}function y(g,d){return l(g,"HEAPF32",d||va)}function B(g,d,h,n){var t=Ma.toTypedArray();t[0]=g;t[1]=d;t[2]=h;t[3]=n;return va}function D(g){for(var d=new Float32Array(4),h=0;4>h;h++)d[h]=a.HEAPF32[g/4+h];return d}function u(g,d){return l(g,"HEAPF32",d||X)}function F(g,d){return l(g, +"HEAPF32",d||Eb)}a.Color=function(g,d,h,n){void 0===n&&(n=1);return a.Color4f(f(g)/255,f(d)/255,f(h)/255,n)};a.ColorAsInt=function(g,d,h,n){void 0===n&&(n=255);return(f(n)<<24|f(g)<<16|f(d)<<8|f(h)<<0&268435455)>>>0};a.Color4f=function(g,d,h,n){void 0===n&&(n=1);return Float32Array.of(g,d,h,n)};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 n=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),n=17*parseInt(g.slice(2,3),16),t=17*parseInt(g.slice(3,4),16)}return a.Color(h,n,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,Xd:null,subarray:function(n,t){n=this.toTypedArray().subarray(n,t);n._ck=!0;return n},toTypedArray:function(){if(this.Xd&& +this.Xd.length)return this.Xd;this.Xd=new g(a.HEAPU8.buffer,h,d);this.Xd._ck=!0;return this.Xd}}};a.Free=function(g){a._free(g.byteOffset);g.byteOffset=M;g.toTypedArray=null;g.Xd=null};var H=M,T,ca=M,Y,va=M,Ma,na,X=M,fc,Ba=M,gc,Fb=M,hc,Gb=M,hb,Sa=M,ic,Eb=M,jc,kc=M,fd=Float32Array.of(0,0,1),M=0;a.onRuntimeInitialized=function(){function g(d,h,n,t,v,z,E){z||(z=4*t.width,t.colorType===a.ColorType.RGBA_F16?z*=2:t.colorType===a.ColorType.RGBA_F32&&(z*=4));var J=z*t.height;var I=v?v.byteOffset:a._malloc(J); +if(E?!d._readPixels(t,I,z,h,n,E):!d._readPixels(t,I,z,h,n))return v||a._free(I),null;if(v)return v.toTypedArray();switch(t.colorType){case a.ColorType.RGBA_8888:case a.ColorType.RGBA_F16:d=(new Uint8Array(a.HEAPU8.buffer,I,J)).slice();break;case a.ColorType.RGBA_F32:d=(new Float32Array(a.HEAPU8.buffer,I,J)).slice();break;default:return null}a._free(I);return d}Ma=a.Malloc(Float32Array,4);va=Ma.byteOffset;Y=a.Malloc(Float32Array,16);ca=Y.byteOffset;T=a.Malloc(Float32Array,9);H=T.byteOffset;ic=a.Malloc(Float32Array, +12);Eb=ic.byteOffset;jc=a.Malloc(Float32Array,12);kc=jc.byteOffset;na=a.Malloc(Float32Array,4);X=na.byteOffset;fc=a.Malloc(Float32Array,4);Ba=fc.byteOffset;gc=a.Malloc(Float32Array,3);Fb=gc.byteOffset;hc=a.Malloc(Float32Array,3);Gb=hc.byteOffset;hb=a.Malloc(Int32Array,4);Sa=hb.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"),n=a.Path._MakeFromCmds(h,d.length);k(h,d);return n};a.Path.MakeFromVerbsPointsWeights=function(d,h,n){var t=l(d,"HEAPU8"),v=l(h,"HEAPF32"),z=l(n,"HEAPF32"),E=a.Path._MakeFromVerbsPointsWeights(t,d.length,v,h.length,z,n&&n.length||0);k(t,d);k(v,h);k(z,n);return E};a.Path.prototype.addArc=function(d,h,n){d=u(d);this._addArc(d,h,n);return this};a.Path.prototype.addCircle=function(d,h,n,t){this._addCircle(d,h,n,!!t);return this};a.Path.prototype.addOval=function(d,h,n){void 0=== +n&&(n=1);d=u(d);this._addOval(d,!!h,n);return this};a.Path.prototype.addPath=function(){var d=Array.prototype.slice.call(arguments),h=d[0],n=!1;"boolean"===typeof d[d.length-1]&&(n=d.pop());if(1===d.length)this._addPath(h,1,0,0,0,1,0,0,0,1,n);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,n);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,n);else return null;return this};a.Path.prototype.addPoly= +function(d,h){var n=l(d,"HEAPF32");this._addPoly(n,d.length/2,h);k(n,d);return this};a.Path.prototype.addRect=function(d,h){d=u(d);this._addRect(d,!!h);return this};a.Path.prototype.addRRect=function(d,h){d=F(d);this._addRRect(d,!!h);return this};a.Path.prototype.addVerbsPointsWeights=function(d,h,n){var t=l(d,"HEAPU8"),v=l(h,"HEAPF32"),z=l(n,"HEAPF32");this._addVerbsPointsWeights(t,d.length,v,h.length,z,n&&n.length||0);k(t,d);k(v,h);k(z,n)};a.Path.prototype.arc=function(d,h,n,t,v,z){d=a.LTRBRect(d- +n,h-n,d+n,h+n);v=(v-t)/Math.PI*180-360*!!z;z=new a.Path;z.addArc(d,t/Math.PI*180,v);this.addPath(z,!0);z.delete();return this};a.Path.prototype.arcToOval=function(d,h,n,t){d=u(d);this._arcToOval(d,h,n,t);return this};a.Path.prototype.arcToRotated=function(d,h,n,t,v,z,E){this._arcToRotated(d,h,n,!!t,!!v,z,E);return this};a.Path.prototype.arcToTangent=function(d,h,n,t,v){this._arcToTangent(d,h,n,t,v);return this};a.Path.prototype.close=function(){this._close();return this};a.Path.prototype.conicTo= +function(d,h,n,t,v){this._conicTo(d,h,n,t,v);return this};a.Path.prototype.computeTightBounds=function(d){this._computeTightBounds(X);var h=na.toTypedArray();return d?(d.set(h),d):h.slice()};a.Path.prototype.cubicTo=function(d,h,n,t,v,z){this._cubicTo(d,h,n,t,v,z);return this};a.Path.prototype.dash=function(d,h,n){return this._dash(d,h,n)?this:null};a.Path.prototype.getBounds=function(d){this._getBounds(X);var h=na.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,n,t){this._quadTo(d,h,n,t);return this};a.Path.prototype.rArcTo=function(d,h,n,t,v,z,E){this._rArcTo(d,h,n,t,v,z,E);return this};a.Path.prototype.rConicTo=function(d,h,n,t,v){this._rConicTo(d,h,n,t,v);return this};a.Path.prototype.rCubicTo=function(d,h,n,t,v,z){this._rCubicTo(d, +h,n,t,v,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,n,t){this._rQuadTo(d,h,n,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,n){return this._trim(d,h,!!n)?this:null};a.Image.prototype.encodeToBytes=function(d,h){var n=a.ie();d=d||a.ImageFormat.PNG;h=h||100; +return n?this._encodeToBytes(d,h,n):this._encodeToBytes(d,h)};a.Image.prototype.makeShaderCubic=function(d,h,n,t,v){v=q(v);return this._makeShaderCubic(d,h,n,t,v)};a.Image.prototype.makeShaderOptions=function(d,h,n,t,v){v=q(v);return this._makeShaderOptions(d,h,n,t,v)};a.Image.prototype.readPixels=function(d,h,n,t,v){var z=a.ie();return g(this,d,h,n,t,v,z)};a.Canvas.prototype.clear=function(d){a.Ed(this.Dd);d=y(d);this._clear(d)};a.Canvas.prototype.clipRRect=function(d,h,n){a.Ed(this.Dd);d=F(d);this._clipRRect(d, +h,n)};a.Canvas.prototype.clipRect=function(d,h,n){a.Ed(this.Dd);d=u(d);this._clipRect(d,h,n)};a.Canvas.prototype.concat=function(d){a.Ed(this.Dd);d=w(d);this._concat(d)};a.Canvas.prototype.drawArc=function(d,h,n,t,v){a.Ed(this.Dd);d=u(d);this._drawArc(d,h,n,t,v)};a.Canvas.prototype.drawAtlas=function(d,h,n,t,v,z,E){if(d&&t&&h&&n&&h.length===n.length){a.Ed(this.Dd);v||(v=a.BlendMode.SrcOver);var J=l(h,"HEAPF32"),I=l(n,"HEAPF32"),U=n.length/4,V=l(c(z),"HEAPU32");if(E&&"B"in E&&"C"in E)this._drawAtlasCubic(d, +I,J,V,U,v,E.B,E.C,t);else{let p=a.FilterMode.Linear,A=a.MipmapMode.None;E&&(p=E.filter,"mipmap"in E&&(A=E.mipmap));this._drawAtlasOptions(d,I,J,V,U,v,p,A,t)}k(J,h);k(I,n);k(V,z)}};a.Canvas.prototype.drawCircle=function(d,h,n,t){a.Ed(this.Dd);this._drawCircle(d,h,n,t)};a.Canvas.prototype.drawColor=function(d,h){a.Ed(this.Dd);d=y(d);void 0!==h?this._drawColor(d,h):this._drawColor(d)};a.Canvas.prototype.drawColorInt=function(d,h){a.Ed(this.Dd);this._drawColorInt(d,h||a.BlendMode.SrcOver)};a.Canvas.prototype.drawColorComponents= +function(d,h,n,t,v){a.Ed(this.Dd);d=B(d,h,n,t);void 0!==v?this._drawColor(d,v):this._drawColor(d)};a.Canvas.prototype.drawDRRect=function(d,h,n){a.Ed(this.Dd);d=F(d,Eb);h=F(h,kc);this._drawDRRect(d,h,n)};a.Canvas.prototype.drawImage=function(d,h,n,t){a.Ed(this.Dd);this._drawImage(d,h,n,t||null)};a.Canvas.prototype.drawImageCubic=function(d,h,n,t,v,z){a.Ed(this.Dd);this._drawImageCubic(d,h,n,t,v,z||null)};a.Canvas.prototype.drawImageOptions=function(d,h,n,t,v,z){a.Ed(this.Dd);this._drawImageOptions(d, +h,n,t,v,z||null)};a.Canvas.prototype.drawImageNine=function(d,h,n,t,v){a.Ed(this.Dd);h=l(h,"HEAP32",Sa);n=u(n);this._drawImageNine(d,h,n,t,v||null)};a.Canvas.prototype.drawImageRect=function(d,h,n,t,v){a.Ed(this.Dd);u(h,X);u(n,Ba);this._drawImageRect(d,X,Ba,t,!!v)};a.Canvas.prototype.drawImageRectCubic=function(d,h,n,t,v,z){a.Ed(this.Dd);u(h,X);u(n,Ba);this._drawImageRectCubic(d,X,Ba,t,v,z||null)};a.Canvas.prototype.drawImageRectOptions=function(d,h,n,t,v,z){a.Ed(this.Dd);u(h,X);u(n,Ba);this._drawImageRectOptions(d, +X,Ba,t,v,z||null)};a.Canvas.prototype.drawLine=function(d,h,n,t,v){a.Ed(this.Dd);this._drawLine(d,h,n,t,v)};a.Canvas.prototype.drawOval=function(d,h){a.Ed(this.Dd);d=u(d);this._drawOval(d,h)};a.Canvas.prototype.drawPaint=function(d){a.Ed(this.Dd);this._drawPaint(d)};a.Canvas.prototype.drawParagraph=function(d,h,n){a.Ed(this.Dd);this._drawParagraph(d,h,n)};a.Canvas.prototype.drawPatch=function(d,h,n,t,v){if(24>d.length)throw"Need 12 cubic points";if(h&&4>h.length)throw"Need 4 colors";if(n&&8>n.length)throw"Need 4 shader coordinates"; +a.Ed(this.Dd);const z=l(d,"HEAPF32"),E=h?l(c(h),"HEAPU32"):M,J=n?l(n,"HEAPF32"):M;t||(t=a.BlendMode.Modulate);this._drawPatch(z,E,J,t,v);k(J,n);k(E,h);k(z,d)};a.Canvas.prototype.drawPath=function(d,h){a.Ed(this.Dd);this._drawPath(d,h)};a.Canvas.prototype.drawPicture=function(d){a.Ed(this.Dd);this._drawPicture(d)};a.Canvas.prototype.drawPoints=function(d,h,n){a.Ed(this.Dd);var t=l(h,"HEAPF32");this._drawPoints(d,t,h.length/2,n);k(t,h)};a.Canvas.prototype.drawRRect=function(d,h){a.Ed(this.Dd);d=F(d); +this._drawRRect(d,h)};a.Canvas.prototype.drawRect=function(d,h){a.Ed(this.Dd);d=u(d);this._drawRect(d,h)};a.Canvas.prototype.drawRect4f=function(d,h,n,t,v){a.Ed(this.Dd);this._drawRect4f(d,h,n,t,v)};a.Canvas.prototype.drawShadow=function(d,h,n,t,v,z,E){a.Ed(this.Dd);var J=l(v,"HEAPF32"),I=l(z,"HEAPF32");h=l(h,"HEAPF32",Fb);n=l(n,"HEAPF32",Gb);this._drawShadow(d,h,n,t,J,I,E);k(J,v);k(I,z)};a.getShadowLocalBounds=function(d,h,n,t,v,z,E){d=q(d);n=l(n,"HEAPF32",Fb);t=l(t,"HEAPF32",Gb);if(!this._getShadowLocalBounds(d, +h,n,t,v,z,X))return null;h=na.toTypedArray();return E?(E.set(h),E):h.slice()};a.Canvas.prototype.drawTextBlob=function(d,h,n,t){a.Ed(this.Dd);this._drawTextBlob(d,h,n,t)};a.Canvas.prototype.drawVertices=function(d,h,n){a.Ed(this.Dd);this._drawVertices(d,h,n)};a.Canvas.prototype.getDeviceClipBounds=function(d){this._getDeviceClipBounds(Sa);var h=hb.toTypedArray();d?d.set(h):d=h.slice();return d};a.Canvas.prototype.getLocalToDevice=function(){this._getLocalToDevice(ca);for(var d=ca,h=Array(16),n=0;16> +n;n++)h[n]=a.HEAPF32[d/4+n];return h};a.Canvas.prototype.getTotalMatrix=function(){this._getTotalMatrix(H);for(var d=Array(9),h=0;9>h;h++)d[h]=a.HEAPF32[H/4+h];return d};a.Canvas.prototype.makeSurface=function(d){d=this._makeSurface(d);d.Dd=this.Dd;return d};a.Canvas.prototype.readPixels=function(d,h,n,t,v){a.Ed(this.Dd);return g(this,d,h,n,t,v)};a.Canvas.prototype.saveLayer=function(d,h,n,t){h=u(h);return this._saveLayer(d||null,h,n||null,t||0)};a.Canvas.prototype.writePixels=function(d,h,n,t,v, +z,E,J){if(d.byteLength%(h*n))throw"pixels length must be a multiple of the srcWidth * srcHeight";a.Ed(this.Dd);var I=d.byteLength/(h*n);z=z||a.AlphaType.Unpremul;E=E||a.ColorType.RGBA_8888;J=J||a.ColorSpace.SRGB;var U=I*h;I=l(d,"HEAPU8");h=this._writePixels({width:h,height:n,colorType:E,alphaType:z,colorSpace:J},I,U,t,v);k(I,d);return h};a.ColorFilter.MakeBlend=function(d,h,n){d=y(d);n=n||a.ColorSpace.SRGB;return a.ColorFilter._MakeBlend(d,h,n)};a.ColorFilter.MakeMatrix=function(d){if(!d||20!==d.length)throw"invalid color matrix"; +var h=l(d,"HEAPF32"),n=a.ColorFilter._makeMatrix(h);k(h,d);return n};a.ContourMeasure.prototype.getPosTan=function(d,h){this._getPosTan(d,X);d=na.toTypedArray();return h?(h.set(d),h):d.slice()};a.ImageFilter.prototype.getOutputBounds=function(d,h,n){d=u(d,X);h=q(h);this._getOutputBounds(d,h,Sa);h=hb.toTypedArray();return n?(n.set(h),n):h.slice()};a.ImageFilter.MakeDropShadow=function(d,h,n,t,v,z){v=y(v,va);return a.ImageFilter._MakeDropShadow(d,h,n,t,v,z)};a.ImageFilter.MakeDropShadowOnly=function(d, +h,n,t,v,z){v=y(v,va);return a.ImageFilter._MakeDropShadowOnly(d,h,n,t,v,z)};a.ImageFilter.MakeImage=function(d,h,n,t){n=u(n,X);t=u(t,Ba);if("B"in h&&"C"in h)return a.ImageFilter._MakeImageCubic(d,h.B,h.C,n,t);const v=h.filter;let z=a.MipmapMode.None;"mipmap"in h&&(z=h.mipmap);return a.ImageFilter._MakeImageOptions(d,v,z,n,t)};a.ImageFilter.MakeMatrixTransform=function(d,h,n){d=q(d);if("B"in h&&"C"in h)return a.ImageFilter._MakeMatrixTransformCubic(d,h.B,h.C,n);const t=h.filter;let v=a.MipmapMode.None; +"mipmap"in h&&(v=h.mipmap);return a.ImageFilter._MakeMatrixTransformOptions(d,t,v,n)};a.Paint.prototype.getColor=function(){this._getColor(va);return D(va)};a.Paint.prototype.setColor=function(d,h){h=h||null;d=y(d);this._setColor(d,h)};a.Paint.prototype.setColorComponents=function(d,h,n,t,v){v=v||null;d=B(d,h,n,t);this._setColor(d,v)};a.Path.prototype.getPoint=function(d,h){this._getPoint(d,X);d=na.toTypedArray();return h?(h[0]=d[0],h[1]=d[1],h):d.slice(0,2)};a.Picture.prototype.makeShader=function(d, +h,n,t,v){t=q(t);v=u(v);return this._makeShader(d,h,n,t,v)};a.Picture.prototype.cullRect=function(d){this._cullRect(X);var h=na.toTypedArray();return d?(d.set(h),d):h.slice()};a.PictureRecorder.prototype.beginRecording=function(d,h){d=u(d);return this._beginRecording(d,!!h)};a.Surface.prototype.getCanvas=function(){var d=this._getCanvas();d.Dd=this.Dd;return d};a.Surface.prototype.makeImageSnapshot=function(d){a.Ed(this.Dd);d=l(d,"HEAP32",Sa);return this._makeImageSnapshot(d)};a.Surface.prototype.makeSurface= +function(d){a.Ed(this.Dd);d=this._makeSurface(d);d.Dd=this.Dd;return d};a.Surface.prototype.Oe=function(d,h){this.be||(this.be=this.getCanvas());return requestAnimationFrame(function(){a.Ed(this.Dd);d(this.be);this.flush(h)}.bind(this))};a.Surface.prototype.requestAnimationFrame||(a.Surface.prototype.requestAnimationFrame=a.Surface.prototype.Oe);a.Surface.prototype.Le=function(d,h){this.be||(this.be=this.getCanvas());requestAnimationFrame(function(){a.Ed(this.Dd);d(this.be);this.flush(h);this.dispose()}.bind(this))}; +a.Surface.prototype.drawOnce||(a.Surface.prototype.drawOnce=a.Surface.prototype.Le);a.PathEffect.MakeDash=function(d,h){h||(h=0);if(!d.length||1===d.length%2)throw"Intervals array must have even length";var n=l(d,"HEAPF32");h=a.PathEffect._MakeDash(n,d.length,h);k(n,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,n,t,v,z,E,J){J=J||null;var I=m(n),U=l(t,"HEAPF32");E=E||0;z=q(z);var V=na.toTypedArray();V.set(d);V.set(h,2);d=a.Shader._MakeLinearGradient(X,I.Md,I.colorType,U,I.count,v,E,z,J);k(I.Md,n);t&&k(U,t);return d};a.Shader.MakeRadialGradient=function(d,h,n,t,v,z,E,J){J=J||null;var I=m(n),U=l(t,"HEAPF32");E=E||0;z=q(z);d=a.Shader._MakeRadialGradient(d[0],d[1],h,I.Md,I.colorType,U,I.count,v,E, +z,J);k(I.Md,n);t&&k(U,t);return d};a.Shader.MakeSweepGradient=function(d,h,n,t,v,z,E,J,I,U){U=U||null;var V=m(n),p=l(t,"HEAPF32");E=E||0;J=J||0;I=I||360;z=q(z);d=a.Shader._MakeSweepGradient(d,h,V.Md,V.colorType,p,V.count,v,J,I,E,z,U);k(V.Md,n);t&&k(p,t);return d};a.Shader.MakeTwoPointConicalGradient=function(d,h,n,t,v,z,E,J,I,U){U=U||null;var V=m(v),p=l(z,"HEAPF32");I=I||0;J=q(J);var A=na.toTypedArray();A.set(d);A.set(n,2);d=a.Shader._MakeTwoPointConicalGradient(X,h,t,V.Md,V.colorType,p,V.count,E, +I,J,U);k(V.Md,v);z&&k(p,z);return d};a.Vertices.prototype.bounds=function(d){this._bounds(X);var h=na.toTypedArray();return d?(d.set(h),d):h.slice()};a.Hd&&a.Hd.forEach(function(d){d()})};a.computeTonalColors=function(g){var d=l(g.ambient,"HEAPF32"),h=l(g.spot,"HEAPF32");this._computeTonalColors(d,h);var n={ambient:D(d),spot:D(h)};k(d,g.ambient);k(h,g.spot);return n};a.LTRBRect=function(g,d,h,n){return Float32Array.of(g,d,h,n)};a.XYWHRect=function(g,d,h,n){return Float32Array.of(g,d,g+h,d+n)};a.LTRBiRect= +function(g,d,h,n){return Int32Array.of(g,d,h,n)};a.XYWHiRect=function(g,d,h,n){return Int32Array.of(g,d,g+h,d+n)};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 Ta=null;a.MakeImageFromCanvasImageSource=function(g){var d=g.width,h=g.height;Ta||(Ta=document.createElement("canvas"));Ta.width=d;Ta.height=h;var n=Ta.getContext("2d",{willReadFrequently:!0});n.drawImage(g,0,0);g=n.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 n=a._malloc(d.length);a.HEAPU8.set(d,n);return a._MakeImage(g,n,d.length,h)}; +a.MakeVertices=function(g,d,h,n,t,v){var z=t&&t.length||0,E=0;h&&h.length&&(E|=1);n&&n.length&&(E|=2);void 0===v||v||(E|=4);g=new a._VerticesBuilder(g,d.length/2,z,E);l(d,"HEAPF32",g.positions());g.texCoords()&&l(h,"HEAPF32",g.texCoords());g.colors()&&l(c(n),"HEAPU32",g.colors());g.indices()&&l(t,"HEAPU16",g.indices());return g.detach()};(function(g){g.Hd=g.Hd||[];g.Hd.push(function(){function d(p){p&&(p.dir=0===p.dir?g.TextDirection.RTL:g.TextDirection.LTR);return p}function h(p){if(!p||!p.length)return[]; +for(var A=[],O=0;Od)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,n){var t=l(g,"HEAPU16"),v=l(d,"HEAPF32");return this._getGlyphIntercepts(t, +g.length,!(g&&g._ck),v,d.length,!(d&&d._ck),h,n)};a.Font.prototype.getGlyphWidths=function(g,d,h){var n=l(g,"HEAPU16"),t=a._malloc(4*g.length);this._getGlyphWidthBounds(n,g.length,t,M,d||null);d=new Float32Array(a.HEAPU8.buffer,t,g.length);k(n,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=[],n= +0;nd)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,n){if(g&&g.length&&d&&d.countPoints()){if(1===d.countPoints())return this.MakeFromText(g,h);n||(n=0);var t=h.getGlyphIDs(g);t=h.getGlyphWidths(t);var v=[];d=new a.ContourMeasureIter(d,!1,1);for(var z=d.next(),E=new Float32Array(4),J=0;Jz.length()){z.delete();z= +d.next();if(!z){g=g.substring(0,J);break}n=I/2}z.getPosTan(n,E);var U=E[2],V=E[3];v.push(U,V,E[0]-I/2*U,E[1]-I/2*V);n+=I/2}g=this.MakeFromRSXform(g,v,h);z&&z.delete();d.delete();return g}};a.TextBlob.MakeFromRSXform=function(g,d,h){var n=ja(g)+1,t=a._malloc(n);ka(g,C,t,n);g=l(d,"HEAPF32");h=a.TextBlob._MakeFromRSXform(t,n-1,g,h);a._free(t);return h?h:null};a.TextBlob.MakeFromRSXformGlyphs=function(g,d,h){var n=l(g,"HEAPU16");d=l(d,"HEAPF32");h=a.TextBlob._MakeFromRSXformGlyphs(n,2*g.length,d,h);k(n, +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=ja(g)+1,n=a._malloc(h);ka(g,C,n,h);g=a.TextBlob._MakeFromText(n,h-1,d);a._free(n);return g?g:null};a.MallocGlyphIDs=function(g){return a.Malloc(Uint16Array,g)}});a.Hd=a.Hd||[];a.Hd.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.Hd=a.Hd||[];a.Hd.push(function(){a.RuntimeEffect.Make=function(g,d){return a.RuntimeEffect._Make(g,{onError:d||function(h){console.log("RuntimeEffect error",h)}})};a.RuntimeEffect.MakeForBlender=function(g,d){return a.RuntimeEffect._MakeForBlender(g,{onError:d||function(h){console.log("RuntimeEffect error",h)}})};a.RuntimeEffect.prototype.makeShader=function(g,d){var h=!g._ck,n=l(g,"HEAPF32");d=q(d);return this._makeShader(n,4*g.length,h,d)};a.RuntimeEffect.prototype.makeShaderWithChildren= +function(g,d,h){var n=!g._ck,t=l(g,"HEAPF32");h=q(h);for(var v=[],z=0;z{throw b;},pa="object"==typeof window,ra="function"==typeof importScripts,sa="object"==typeof process&&"object"==typeof process.versions&&"string"==typeof process.versions.node,ta="",ua,wa,xa; +if(sa){var fs=require("fs"),ya=require("path");ta=ra?ya.dirname(ta)+"/":__dirname+"/";ua=(a,b)=>{a=a.startsWith("file://")?new URL(a):ya.normalize(a);return fs.readFileSync(a,b?void 0:"utf8")};xa=a=>{a=ua(a,!0);a.buffer||(a=new Uint8Array(a));return a};wa=(a,b,c,e=!0)=>{a=a.startsWith("file://")?new URL(a):ya.normalize(a);fs.readFile(a,e?void 0:"utf8",(f,k)=>{f?c(f):b(e?k.buffer:k)})};!r.thisProgram&&1{process.exitCode= +a;throw b;};r.inspect=()=>"[Emscripten Module object]"}else if(pa||ra)ra?ta=self.location.href:"undefined"!=typeof document&&document.currentScript&&(ta=document.currentScript.src),_scriptDir&&(ta=_scriptDir),0!==ta.indexOf("blob:")?ta=ta.substr(0,ta.replace(/[?#].*/,"").lastIndexOf("/")+1):ta="",ua=a=>{var b=new XMLHttpRequest;b.open("GET",a,!1);b.send(null);return b.responseText},ra&&(xa=a=>{var b=new XMLHttpRequest;b.open("GET",a,!1);b.responseType="arraybuffer";b.send(null);return new Uint8Array(b.response)}), +wa=(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 Aa=r.print||console.log.bind(console),Ca=r.printErr||console.error.bind(console);Object.assign(r,la);la=null;r.thisProgram&&(ma=r.thisProgram);r.quit&&(oa=r.quit);var Da;r.wasmBinary&&(Da=r.wasmBinary);var noExitRuntime=r.noExitRuntime||!0;"object"!=typeof WebAssembly&&Ea("no native wasm support detected"); +var Fa,G,Ga=!1,Ha,C,Ia,Ja,K,L,N,Ka;function La(){var a=Fa.buffer;r.HEAP8=Ha=new Int8Array(a);r.HEAP16=Ia=new Int16Array(a);r.HEAP32=K=new Int32Array(a);r.HEAPU8=C=new Uint8Array(a);r.HEAPU16=Ja=new Uint16Array(a);r.HEAPU32=L=new Uint32Array(a);r.HEAPF32=N=new Float32Array(a);r.HEAPF64=Ka=new Float64Array(a)}var Na,Oa=[],Pa=[],Qa=[];function Ra(){var a=r.preRun.shift();Oa.unshift(a)}var Ua=0,Va=null,Wa=null; +function Ea(a){if(r.onAbort)r.onAbort(a);a="Aborted("+a+")";Ca(a);Ga=!0;a=new WebAssembly.RuntimeError(a+". Build with -sASSERTIONS for more info.");ba(a);throw a;}function Xa(a){return a.startsWith("data:application/octet-stream;base64,")}var Ya;Ya="canvaskit.wasm";if(!Xa(Ya)){var Za=Ya;Ya=r.locateFile?r.locateFile(Za,ta):ta+Za}function $a(a){if(a==Ya&&Da)return new Uint8Array(Da);if(xa)return xa(a);throw"both async and sync fetching of the wasm failed";} +function ab(a){if(!Da&&(pa||ra)){if("function"==typeof fetch&&!a.startsWith("file://"))return fetch(a,{credentials:"same-origin"}).then(b=>{if(!b.ok)throw"failed to load wasm binary file at '"+a+"'";return b.arrayBuffer()}).catch(()=>$a(a));if(wa)return new Promise((b,c)=>{wa(a,e=>b(new Uint8Array(e)),c)})}return Promise.resolve().then(()=>$a(a))}function bb(a,b,c){return ab(a).then(e=>WebAssembly.instantiate(e,b)).then(e=>e).then(c,e=>{Ca("failed to asynchronously prepare wasm: "+e);Ea(e)})} +function cb(a,b){var c=Ya;return Da||"function"!=typeof WebAssembly.instantiateStreaming||Xa(c)||c.startsWith("file://")||sa||"function"!=typeof fetch?bb(c,a,b):fetch(c,{credentials:"same-origin"}).then(e=>WebAssembly.instantiateStreaming(e,a).then(b,function(f){Ca("wasm streaming compile failed: "+f);Ca("falling back to ArrayBuffer instantiation");return bb(c,a,b)}))}function db(a){this.name="ExitStatus";this.message=`Program terminated with exit(${a})`;this.status=a}var eb=a=>{for(;0>2]=b};this.re=function(b){L[this.Fd+8>>2]=b};this.Ud=function(b,c){this.qe();this.Je(b);this.re(c)};this.qe=function(){L[this.Fd+16>>2]=0}} +var gb=0,ib=0,jb="undefined"!=typeof TextDecoder?new TextDecoder("utf8"):void 0,kb=(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}, +lb={};function mb(a){for(;a.length;){var b=a.pop();a.pop()(b)}}function nb(a){return this.fromWireType(K[a>>2])}var ob={},pb={},qb={},rb=void 0;function sb(a){throw new rb(a);} +function tb(a,b,c){function e(m){m=c(m);m.length!==a.length&&sb("Mismatched type converter count");for(var q=0;q{pb.hasOwnProperty(m)?f[q]=pb[m]:(k.push(m),ob.hasOwnProperty(m)||(ob[m]=[]),ob[m].push(()=>{f[q]=pb[m];++l;l===k.length&&e(f)}))});0===k.length&&e(f)} +function vb(a){switch(a){case 1:return 0;case 2:return 1;case 4:return 2;case 8:return 3;default:throw new TypeError(`Unknown type size: ${a}`);}}var wb=void 0;function P(a){for(var b="";C[a];)b+=wb[C[a++]];return b}var xb=void 0;function Q(a){throw new xb(a);} +function yb(a,b,c={}){var e=b.name;a||Q(`type "${e}" must have a positive integer typeid pointer`);if(pb.hasOwnProperty(a)){if(c.af)return;Q(`Cannot register type '${e}' twice`)}pb[a]=b;delete qb[a];ob.hasOwnProperty(a)&&(b=ob[a],delete ob[a],b.forEach(f=>f()))}function ub(a,b,c={}){if(!("argPackAdvance"in b))throw new TypeError("registerType registeredInstance requires argPackAdvance");yb(a,b,c)}function zb(a){Q(a.jd.Id.Gd.name+" instance already deleted")}var Ab=!1;function Bb(){} +function Cb(a){--a.count.value;0===a.count.value&&(a.Kd?a.Od.Sd(a.Kd):a.Id.Gd.Sd(a.Fd))}function Db(a,b,c){if(b===c)return a;if(void 0===c.Ld)return null;a=Db(a,b,c.Ld);return null===a?null:c.Te(a)}var Jb={},Kb=[];function Lb(){for(;Kb.length;){var a=Kb.pop();a.jd.$d=!1;a["delete"]()}}var Mb=void 0,Nb={};function Ob(a,b){for(void 0===b&&Q("ptr should not be undefined");a.Ld;)b=a.fe(b),a=a.Ld;return Nb[b]} +function Pb(a,b){b.Id&&b.Fd||sb("makeClassHandle requires ptr and ptrType");!!b.Od!==!!b.Kd&&sb("Both smartPtrType and smartPtr must be specified");b.count={value:1};return Qb(Object.create(a,{jd:{value:b}}))}function Qb(a){if("undefined"===typeof FinalizationRegistry)return Qb=b=>b,a;Ab=new FinalizationRegistry(b=>{Cb(b.jd)});Qb=b=>{var c=b.jd;c.Kd&&Ab.register(b,{jd:c},b);return b};Bb=b=>{Ab.unregister(b)};return Qb(a)}function Rb(){} +function Sb(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 Tb(a,b){a=Sb(a);return{[a]:function(){return b.apply(this,arguments)}}[a]} +function Ub(a,b,c){if(void 0===a[b].Jd){var e=a[b];a[b]=function(){a[b].Jd.hasOwnProperty(arguments.length)||Q(`Function '${c}' called with an invalid number of arguments (${arguments.length}) - expects one of (${a[b].Jd})!`);return a[b].Jd[arguments.length].apply(this,arguments)};a[b].Jd=[];a[b].Jd[e.Yd]=e}} +function Vb(a,b,c){r.hasOwnProperty(a)?((void 0===c||void 0!==r[a].Jd&&void 0!==r[a].Jd[c])&&Q(`Cannot register public name '${a}' twice`),Ub(r,a,a),r.hasOwnProperty(c)&&Q(`Cannot register multiple overloads of a function with the same number of arguments (${c})!`),r[a].Jd[c]=b):(r[a]=b,void 0!==c&&(r[a].sf=c))}function Wb(a,b,c,e,f,k,l,m){this.name=a;this.constructor=b;this.ae=c;this.Sd=e;this.Ld=f;this.We=k;this.fe=l;this.Te=m;this.ef=[]} +function Xb(a,b,c){for(;b!==c;)b.fe||Q(`Expected null or instance of ${c.name}, got an instance of ${b.name}`),a=b.fe(a),b=b.Ld;return a}function Yb(a,b){if(null===b)return this.ve&&Q(`null is not a valid ${this.name}`),0;b.jd||Q(`Cannot pass "${Zb(b)}" as a ${this.name}`);b.jd.Fd||Q(`Cannot pass deleted object as a pointer of type ${this.name}`);return Xb(b.jd.Fd,b.jd.Id.Gd,this.Gd)} +function $b(a,b){if(null===b){this.ve&&Q(`null is not a valid ${this.name}`);if(this.ke){var c=this.we();null!==a&&a.push(this.Sd,c);return c}return 0}b.jd||Q(`Cannot pass "${Zb(b)}" as a ${this.name}`);b.jd.Fd||Q(`Cannot pass deleted object as a pointer of type ${this.name}`);!this.je&&b.jd.Id.je&&Q(`Cannot convert argument of type ${b.jd.Od?b.jd.Od.name:b.jd.Id.name} to parameter type ${this.name}`);c=Xb(b.jd.Fd,b.jd.Id.Gd,this.Gd);if(this.ke)switch(void 0===b.jd.Kd&&Q("Passing raw pointer to smart pointer is illegal"), +this.kf){case 0:b.jd.Od===this?c=b.jd.Kd:Q(`Cannot convert argument of type ${b.jd.Od?b.jd.Od.name:b.jd.Id.name} to parameter type ${this.name}`);break;case 1:c=b.jd.Kd;break;case 2:if(b.jd.Od===this)c=b.jd.Kd;else{var e=b.clone();c=this.ff(c,ac(function(){e["delete"]()}));null!==a&&a.push(this.Sd,c)}break;default:Q("Unsupporting sharing policy")}return c} +function bc(a,b){if(null===b)return this.ve&&Q(`null is not a valid ${this.name}`),0;b.jd||Q(`Cannot pass "${Zb(b)}" as a ${this.name}`);b.jd.Fd||Q(`Cannot pass deleted object as a pointer of type ${this.name}`);b.jd.Id.je&&Q(`Cannot convert argument of type ${b.jd.Id.name} to parameter type ${this.name}`);return Xb(b.jd.Fd,b.jd.Id.Gd,this.Gd)} +function cc(a,b,c,e,f,k,l,m,q,w,y){this.name=a;this.Gd=b;this.ve=c;this.je=e;this.ke=f;this.df=k;this.kf=l;this.Fe=m;this.we=q;this.ff=w;this.Sd=y;f||void 0!==b.Ld?this.toWireType=$b:(this.toWireType=e?Yb:bc,this.Nd=null)}function dc(a,b,c){r.hasOwnProperty(a)||sb("Replacing nonexistant public symbol");void 0!==r[a].Jd&&void 0!==c?r[a].Jd[c]=b:(r[a]=b,r[a].Yd=c)} +var ec=(a,b)=>{var c=[];return function(){c.length=0;Object.assign(c,arguments);if(a.includes("j")){var e=r["dynCall_"+a];e=c&&c.length?e.apply(null,[b].concat(c)):e.call(null,b)}else e=Na.get(b).apply(null,c);return e}};function mc(a,b){a=P(a);var c=a.includes("j")?ec(a,b):Na.get(b);"function"!=typeof c&&Q(`unknown function pointer with signature ${a}: ${b}`);return c}var nc=void 0;function oc(a){a=pc(a);var b=P(a);qc(a);return b} +function rc(a,b){function c(k){f[k]||pb[k]||(qb[k]?qb[k].forEach(c):(e.push(k),f[k]=!0))}var e=[],f={};b.forEach(c);throw new nc(`${a}: `+e.map(oc).join([", "]));} +function sc(a,b,c,e,f){var k=b.length;2>k&&Q("argTypes array size mismatch! Must at least get return value and 'this' types!");var l=null!==b[1]&&null!==c,m=!1;for(c=1;c>2]);return c}function uc(){this.Rd=[void 0];this.De=[]}var vc=new uc;function wc(a){a>=vc.Ud&&0===--vc.get(a).Ge&&vc.re(a)} +var xc=a=>{a||Q("Cannot use deleted val. handle = "+a);return vc.get(a).value},ac=a=>{switch(a){case void 0:return 1;case null:return 2;case !0:return 3;case !1:return 4;default:return vc.qe({Ge:1,value:a})}};function yc(a,b,c){switch(b){case 0:return function(e){return this.fromWireType((c?Ha:C)[e])};case 1:return function(e){return this.fromWireType((c?Ia:Ja)[e>>1])};case 2:return function(e){return this.fromWireType((c?K:L)[e>>2])};default:throw new TypeError("Unknown integer type: "+a);}} +function zc(a,b){var c=pb[a];void 0===c&&Q(b+" has unknown type "+oc(a));return c}function Zb(a){if(null===a)return"null";var b=typeof a;return"object"===b||"array"===b||"function"===b?a.toString():""+a}function Ac(a,b){switch(b){case 2:return function(c){return this.fromWireType(N[c>>2])};case 3:return function(c){return this.fromWireType(Ka[c>>3])};default:throw new TypeError("Unknown float type: "+a);}} +function Bc(a,b,c){switch(b){case 0:return c?function(e){return Ha[e]}:function(e){return C[e]};case 1:return c?function(e){return Ia[e>>1]}:function(e){return Ja[e>>1]};case 2:return c?function(e){return K[e>>2]}:function(e){return L[e>>2]};default:throw new TypeError("Unknown integer type: "+a);}} +var ka=(a,b,c,e)=>{if(!(0=l){var m=a.charCodeAt(++k);l=65536+((l&1023)<<10)|m&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},ja=a=>{for(var b=0,c=0;c=e?b++:2047>= +e?b+=2:55296<=e&&57343>=e?(b+=4,++c):b+=3}return b},Cc="undefined"!=typeof TextDecoder?new TextDecoder("utf-16le"):void 0,Dc=(a,b)=>{var c=a>>1;for(var e=c+b/2;!(c>=e)&&Ja[c];)++c;c<<=1;if(32=b/2);++e){var f=Ia[a+2*e>>1];if(0==f)break;c+=String.fromCharCode(f)}return c},Ec=(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;Ia[b>>1]=0;return b-e}, +Fc=a=>2*a.length,Gc=(a,b)=>{for(var c=0,e="";!(c>=b/4);){var f=K[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},Hc=(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}K[b>>2]=k;b+=4;if(b+4>c)break}K[b>>2]=0;return b-e},Ic=a=>{for(var b=0,c=0;c=e&&++c;b+=4}return b},Jc={};function Kc(a){var b=Jc[a];return void 0===b?P(a):b}var Lc=[]; +function Mc(){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 Nc(a){var b=Lc.length;Lc.push(a);return b}function Oc(a,b){for(var c=Array(a),e=0;e>2],"parameter "+e);return c}var Pc=[];function Qc(a){var b=Array(a+1);return function(c,e,f){b[0]=c;for(var k=0;k>2],"parameter "+k);b[k+1]=l.readValueFromPointer(f);f+=l.argPackAdvance}c=new (c.bind.apply(c,b));return ac(c)}}var Rc={}; +function Sc(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 Tc(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 Uc(a){var b=a.getExtension("WEBGL_draw_buffers");b&&(a.drawBuffers=function(c,e){b.drawBuffersWEBGL(c,e)})} +var Vc=1,Wc=[],Xc=[],Yc=[],Zc=[],ea=[],$c=[],ad=[],ia=[],bd=[],cd=[],dd={},ed={},gd=4;function R(a){hd||(hd=a)}function da(a){for(var b=Vc++,c=a.length;ca.version||!b.Be)b.Be=b.getExtension("EXT_disjoint_timer_query");b.rf=b.getExtension("WEBGL_multi_draw");(b.getSupportedExtensions()||[]).forEach(function(c){c.includes("lose_context")||c.includes("debug")||b.getExtension(c)})}} +var x,hd,ld={},nd=()=>{if(!md){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",_:ma||"./this.program"},b;for(b in ld)void 0===ld[b]?delete a[b]:a[b]=ld[b];var c=[];for(b in a)c.push(`${b}=${a[b]}`);md=c}return md},md,od=[null,[],[]];function pd(a){S.bindVertexArray(ad[a])} +function qd(a,b){for(var c=0;c>2];S.deleteVertexArray(ad[e]);ad[e]=null}}var rd=[];function sd(a,b,c,e){S.drawElements(a,b,c,e)}function td(a,b,c,e){for(var f=0;f>2]=l}}function ud(a,b){td(a,b,"createVertexArray",ad)} +function vd(a,b,c){if(b){var e=void 0;switch(a){case 36346:e=1;break;case 36344:0!=c&&1!=c&&R(1280);return;case 34814:case 36345:e=0;break;case 34466:var f=S.getParameter(34467);e=f?f.length:0;break;case 33309:if(2>x.version){R(1282);return}e=2*(S.getSupportedExtensions()||[]).length;break;case 33307:case 33308:if(2>x.version){R(1280);return}e=33307==a?3:0}if(void 0===e)switch(f=S.getParameter(a),typeof f){case "number":e=f;break;case "boolean":e=f?1:0;break;case "string":R(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:R(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:Ha[b+a>>0]=f[a]?1:0}return}try{e=f.name|0}catch(k){R(1280); +Ca("GL_INVALID_ENUM in glGet"+c+"v: Unknown object returned from WebGL getParameter("+a+")! (error: "+k+")");return}}break;default:R(1280);Ca("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;L[b>>2]=c;L[b+4>>2]=(c-L[b>>2])/4294967296;break;case 0:K[b>>2]=e;break;case 2:N[b>>2]=e;break;case 4:Ha[b>>0]=e?1:0}}else R(1281)}var xd=a=>{var b=ja(a)+1,c=wd(b);c&&ka(a,C,c,b);return c}; +function yd(a){return"]"==a.slice(-1)&&a.lastIndexOf("[")}function zd(a){a-=5120;return 0==a?Ha:1==a?C:2==a?Ia:4==a?K:6==a?N:5==a||28922==a||28520==a||30779==a||30782==a?L:Ja}function Ad(a,b,c,e,f){a=zd(a);var k=31-Math.clz32(a.BYTES_PER_ELEMENT),l=gd;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 W(a){var b=S.Re;if(b){var c=b.ee[a];"number"==typeof c&&(b.ee[a]=c=S.getUniformLocation(b,b.He[a]+(00===a%4&&(0!==a%100||0===a%400),Ed=[31,29,31,30,31,30,31,31,30,31,30,31],Fd=[31,28,31,30,31,30,31,31,30,31,30,31];function Gd(a){var b=Array(ja(a)+1);ka(a,b,0,b.length);return b} +var Hd=(a,b,c,e)=>{function f(u,F,H){for(u="number"==typeof u?u.toString():u||"";u.lengthca?-1:0T-u.getDate())F-=T-u.getDate()+1,u.setDate(1),11>H?u.setMonth(H+1):(u.setMonth(0),u.setFullYear(u.getFullYear()+1));else{u.setDate(u.getDate()+F);break}}H=new Date(u.getFullYear()+1,0,4);F=m(new Date(u.getFullYear(), +0,4));H=m(H);return 0>=l(F,u)?0>=l(H,u)?u.getFullYear()+1:u.getFullYear():u.getFullYear()-1}var w=K[e+40>>2];e={nf:K[e>>2],mf:K[e+4>>2],oe:K[e+8>>2],xe:K[e+12>>2],pe:K[e+16>>2],Wd:K[e+20>>2],Qd:K[e+24>>2],Vd:K[e+28>>2],uf:K[e+32>>2],lf:K[e+36>>2],pf:w?w?kb(C,w):"":""};c=c?kb(C,c):"";w={"%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 w)c=c.replace(new RegExp(y,"g"),w[y]);var B="Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "),D="January February March April May June July August September October November December".split(" ");w={"%a":u=>B[u.Qd].substring(0,3),"%A":u=>B[u.Qd],"%b":u=>D[u.pe].substring(0,3),"%B":u=>D[u.pe],"%C":u=>k((u.Wd+1900)/ +100|0,2),"%d":u=>k(u.xe,2),"%e":u=>f(u.xe,2," "),"%g":u=>q(u).toString().substring(2),"%G":u=>q(u),"%H":u=>k(u.oe,2),"%I":u=>{u=u.oe;0==u?u=12:12{for(var F=0,H=0;H<=u.pe-1;F+=(Dd(u.Wd+1900)?Ed:Fd)[H++]);return k(u.xe+F,3)},"%m":u=>k(u.pe+1,2),"%M":u=>k(u.mf,2),"%n":()=>"\n","%p":u=>0<=u.oe&&12>u.oe?"AM":"PM","%S":u=>k(u.nf,2),"%t":()=>"\t","%u":u=>u.Qd||7,"%U":u=>k(Math.floor((u.Vd+7-u.Qd)/7),2),"%V":u=>{var F=Math.floor((u.Vd+7-(u.Qd+6)%7)/7);2>=(u.Qd+371-u.Vd- +2)%7&&F++;if(F)53==F&&(H=(u.Qd+371-u.Vd)%7,4==H||3==H&&Dd(u.Wd)||(F=1));else{F=52;var H=(u.Qd+7-u.Vd-1)%7;(4==H||5==H&&Dd(u.Wd%400-1))&&F++}return k(F,2)},"%w":u=>u.Qd,"%W":u=>k(Math.floor((u.Vd+7-(u.Qd+6)%7)/7),2),"%y":u=>(u.Wd+1900).toString().substring(2),"%Y":u=>u.Wd+1900,"%z":u=>{u=u.lf;var F=0<=u;u=Math.abs(u)/60;return(F?"+":"-")+String("0000"+(u/60*100+u%60)).slice(-4)},"%Z":u=>u.pf,"%%":()=>"%"};c=c.replace(/%%/g,"\x00\x00");for(y in w)c.includes(y)&&(c=c.replace(new RegExp(y,"g"),w[y](e))); +c=c.replace(/\0\0/g,"%");y=Gd(c);if(y.length>b)return 0;Ha.set(y,a);return y.length-1};rb=r.InternalError=class extends Error{constructor(a){super(a);this.name="InternalError"}};for(var Id=Array(256),Jd=0;256>Jd;++Jd)Id[Jd]=String.fromCharCode(Jd);wb=Id;xb=r.BindingError=class extends Error{constructor(a){super(a);this.name="BindingError"}}; +Rb.prototype.isAliasOf=function(a){if(!(this instanceof Rb&&a instanceof Rb))return!1;var b=this.jd.Id.Gd,c=this.jd.Fd,e=a.jd.Id.Gd;for(a=a.jd.Fd;b.Ld;)c=b.fe(c),b=b.Ld;for(;e.Ld;)a=e.fe(a),e=e.Ld;return b===e&&c===a}; +Rb.prototype.clone=function(){this.jd.Fd||zb(this);if(this.jd.de)return this.jd.count.value+=1,this;var a=Qb,b=Object,c=b.create,e=Object.getPrototypeOf(this),f=this.jd;a=a(c.call(b,e,{jd:{value:{count:f.count,$d:f.$d,de:f.de,Fd:f.Fd,Id:f.Id,Kd:f.Kd,Od:f.Od}}}));a.jd.count.value+=1;a.jd.$d=!1;return a};Rb.prototype["delete"]=function(){this.jd.Fd||zb(this);this.jd.$d&&!this.jd.de&&Q("Object already scheduled for deletion");Bb(this);Cb(this.jd);this.jd.de||(this.jd.Kd=void 0,this.jd.Fd=void 0)}; +Rb.prototype.isDeleted=function(){return!this.jd.Fd};Rb.prototype.deleteLater=function(){this.jd.Fd||zb(this);this.jd.$d&&!this.jd.de&&Q("Object already scheduled for deletion");Kb.push(this);1===Kb.length&&Mb&&Mb(Lb);this.jd.$d=!0;return this};r.getInheritedInstanceCount=function(){return Object.keys(Nb).length};r.getLiveInheritedInstances=function(){var a=[],b;for(b in Nb)Nb.hasOwnProperty(b)&&a.push(Nb[b]);return a};r.flushPendingDeletes=Lb;r.setDelayFunction=function(a){Mb=a;Kb.length&&Mb&&Mb(Lb)}; +cc.prototype.Xe=function(a){this.Fe&&(a=this.Fe(a));return a};cc.prototype.ze=function(a){this.Sd&&this.Sd(a)};cc.prototype.argPackAdvance=8;cc.prototype.readValueFromPointer=nb;cc.prototype.deleteObject=function(a){if(null!==a)a["delete"]()}; +cc.prototype.fromWireType=function(a){function b(){return this.ke?Pb(this.Gd.ae,{Id:this.df,Fd:c,Od:this,Kd:a}):Pb(this.Gd.ae,{Id:this,Fd:a})}var c=this.Xe(a);if(!c)return this.ze(a),null;var e=Ob(this.Gd,c);if(void 0!==e){if(0===e.jd.count.value)return e.jd.Fd=c,e.jd.Kd=a,e.clone();e=e.clone();this.ze(a);return e}e=this.Gd.We(c);e=Jb[e];if(!e)return b.call(this);e=this.je?e.Qe:e.pointerType;var f=Db(c,this.Gd,e.Gd);return null===f?b.call(this):this.ke?Pb(e.Gd.ae,{Id:e,Fd:f,Od:this,Kd:a}):Pb(e.Gd.ae, +{Id:e,Fd:f})};nc=r.UnboundTypeError=function(a,b){var c=Tb(b,function(e){this.name=b;this.message=e;e=Error(e).stack;void 0!==e&&(this.stack=this.toString()+"\n"+e.replace(/^Error(:[^\n]*)?\n/,""))});c.prototype=Object.create(a.prototype);c.prototype.constructor=c;c.prototype.toString=function(){return void 0===this.message?this.name:`${this.name}: ${this.message}`};return c}(Error,"UnboundTypeError"); +Object.assign(uc.prototype,{get(a){return this.Rd[a]},has(a){return void 0!==this.Rd[a]},qe(a){var b=this.De.pop()||this.Rd.length;this.Rd[b]=a;return b},re(a){this.Rd[a]=void 0;this.De.push(a)}});vc.Rd.push({value:void 0},{value:null},{value:!0},{value:!1});vc.Ud=vc.Rd.length;r.count_emval_handles=function(){for(var a=0,b=vc.Ud;bKd;++Kd)rd.push(Array(Kd));var Ld=new Float32Array(288); +for(Kd=0;288>Kd;++Kd)Bd[Kd]=Ld.subarray(0,Kd+1);var Md=new Int32Array(288);for(Kd=0;288>Kd;++Kd)Cd[Kd]=Md.subarray(0,Kd+1); +var $d={H:function(a,b,c){(new fb(a)).Ud(b,c);gb=a;ib++;throw gb;},T:function(){return 0},tb:()=>{},vb:function(){return 0},rb:()=>{},wb:function(){},sb:()=>{},C:function(a){var b=lb[a];delete lb[a];var c=b.we,e=b.Sd,f=b.Ce,k=f.map(l=>l.$e).concat(f.map(l=>l.hf));tb([a],k,l=>{var m={};f.forEach((q,w)=>{var y=l[w],B=q.Ye,D=q.Ze,u=l[w+f.length],F=q.gf,H=q.jf;m[q.Ve]={read:T=>y.fromWireType(B(D,T)),write:(T,ca)=>{var Y=[];F(H,T,u.toWireType(Y,ca));mb(Y)}}});return[{name:b.name,fromWireType:function(q){var w= +{},y;for(y in m)w[y]=m[y].read(q);e(q);return w},toWireType:function(q,w){for(var y in m)if(!(y in w))throw new TypeError(`Missing field: "${y}"`);var B=c();for(y in m)m[y].write(B,w[y]);null!==q&&q.push(e,B);return B},argPackAdvance:8,readValueFromPointer:nb,Nd:e}]})},jb:function(){},Ab:function(a,b,c,e,f){var k=vb(c);b=P(b);ub(a,{name:b,fromWireType:function(l){return!!l},toWireType:function(l,m){return m?e:f},argPackAdvance:8,readValueFromPointer:function(l){if(1===c)var m=Ha;else if(2===c)m=Ia; +else if(4===c)m=K;else throw new TypeError("Unknown boolean type size: "+b);return this.fromWireType(m[l>>k])},Nd:null})},l:function(a,b,c,e,f,k,l,m,q,w,y,B,D){y=P(y);k=mc(f,k);m&&(m=mc(l,m));w&&(w=mc(q,w));D=mc(B,D);var u=Sb(y);Vb(u,function(){rc(`Cannot construct ${y} due to unbound types`,[e])});tb([a,b,c],e?[e]:[],function(F){F=F[0];if(e){var H=F.Gd;var T=H.ae}else T=Rb.prototype;F=Tb(u,function(){if(Object.getPrototypeOf(this)!==ca)throw new xb("Use 'new' to construct "+y);if(void 0===Y.Td)throw new xb(y+ +" has no accessible constructor");var Ma=Y.Td[arguments.length];if(void 0===Ma)throw new xb(`Tried to invoke ctor of ${y} with invalid number of parameters (${arguments.length}) - expected (${Object.keys(Y.Td).toString()}) parameters instead!`);return Ma.apply(this,arguments)});var ca=Object.create(T,{constructor:{value:F}});F.prototype=ca;var Y=new Wb(y,F,ca,D,H,k,m,w);Y.Ld&&(void 0===Y.Ld.ge&&(Y.Ld.ge=[]),Y.Ld.ge.push(Y));H=new cc(y,Y,!0,!1,!1);T=new cc(y+"*",Y,!1,!1,!1);var va=new cc(y+" const*", +Y,!1,!0,!1);Jb[a]={pointerType:T,Qe:va};dc(u,F);return[H,T,va]})},e:function(a,b,c,e,f,k,l){var m=tc(c,e);b=P(b);k=mc(f,k);tb([],[a],function(q){function w(){rc(`Cannot call ${y} due to unbound types`,m)}q=q[0];var y=`${q.name}.${b}`;b.startsWith("@@")&&(b=Symbol[b.substring(2)]);var B=q.Gd.constructor;void 0===B[b]?(w.Yd=c-1,B[b]=w):(Ub(B,b,y),B[b].Jd[c-1]=w);tb([],m,function(D){D=[D[0],null].concat(D.slice(1));D=sc(y,D,null,k,l);void 0===B[b].Jd?(D.Yd=c-1,B[b]=D):B[b].Jd[c-1]=D;if(q.Gd.ge)for(const u of q.Gd.ge)u.constructor.hasOwnProperty(b)|| +(u.constructor[b]=D);return[]});return[]})},A:function(a,b,c,e,f,k){var l=tc(b,c);f=mc(e,f);tb([],[a],function(m){m=m[0];var q=`constructor ${m.name}`;void 0===m.Gd.Td&&(m.Gd.Td=[]);if(void 0!==m.Gd.Td[b-1])throw new xb(`Cannot register multiple constructors with identical number of parameters (${b-1}) for class '${m.name}'! Overload resolution is currently only performed using the parameter count, not actual type info!`);m.Gd.Td[b-1]=()=>{rc(`Cannot construct ${m.name} due to unbound types`,l)}; +tb([],l,function(w){w.splice(1,0,null);m.Gd.Td[b-1]=sc(q,w,null,f,k);return[]});return[]})},a:function(a,b,c,e,f,k,l,m){var q=tc(c,e);b=P(b);k=mc(f,k);tb([],[a],function(w){function y(){rc(`Cannot call ${B} due to unbound types`,q)}w=w[0];var B=`${w.name}.${b}`;b.startsWith("@@")&&(b=Symbol[b.substring(2)]);m&&w.Gd.ef.push(b);var D=w.Gd.ae,u=D[b];void 0===u||void 0===u.Jd&&u.className!==w.name&&u.Yd===c-2?(y.Yd=c-2,y.className=w.name,D[b]=y):(Ub(D,b,B),D[b].Jd[c-2]=y);tb([],q,function(F){F=sc(B,F, +w,k,l);void 0===D[b].Jd?(F.Yd=c-2,D[b]=F):D[b].Jd[c-2]=F;return[]});return[]})},t:function(a,b,c){a=P(a);tb([],[b],function(e){e=e[0];r[a]=e.fromWireType(c);return[]})},zb:function(a,b){b=P(b);ub(a,{name:b,fromWireType:function(c){var e=xc(c);wc(c);return e},toWireType:function(c,e){return ac(e)},argPackAdvance:8,readValueFromPointer:nb,Nd:null})},i:function(a,b,c,e){function f(){}c=vb(c);b=P(b);f.values={};ub(a,{name:b,constructor:f,fromWireType:function(k){return this.constructor.values[k]},toWireType:function(k, +l){return l.value},argPackAdvance:8,readValueFromPointer:yc(b,c,e),Nd:null});Vb(b,f)},b:function(a,b,c){var e=zc(a,"enum");b=P(b);a=e.constructor;e=Object.create(e.constructor.prototype,{value:{value:c},constructor:{value:Tb(`${e.name}_${b}`,function(){})}});a.values[c]=e;a[b]=e},W:function(a,b,c){c=vb(c);b=P(b);ub(a,{name:b,fromWireType:function(e){return e},toWireType:function(e,f){return f},argPackAdvance:8,readValueFromPointer:Ac(b,c),Nd:null})},v:function(a,b,c,e,f,k){var l=tc(b,c);a=P(a);f= +mc(e,f);Vb(a,function(){rc(`Cannot call ${a} due to unbound types`,l)},b-1);tb([],l,function(m){m=[m[0],null].concat(m.slice(1));dc(a,sc(a,m,null,f,k),b-1);return[]})},E:function(a,b,c,e,f){b=P(b);-1===f&&(f=4294967295);f=vb(c);var k=m=>m;if(0===e){var l=32-8*c;k=m=>m<>>l}c=b.includes("unsigned")?function(m,q){return q>>>0}:function(m,q){return q};ub(a,{name:b,fromWireType:k,toWireType:c,argPackAdvance:8,readValueFromPointer:Bc(b,f,0!==e),Nd:null})},s:function(a,b,c){function e(k){k>>=2;var l= +L;return new f(l.buffer,l[k+1],l[k])}var f=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array][b];c=P(c);ub(a,{name:c,fromWireType:e,argPackAdvance:8,readValueFromPointer:e},{af:!0})},q:function(a,b,c,e,f,k,l,m,q,w,y,B){c=P(c);k=mc(f,k);m=mc(l,m);w=mc(q,w);B=mc(y,B);tb([a],[b],function(D){D=D[0];return[new cc(c,D.Gd,!1,!1,!0,D,e,k,m,w,B)]})},V:function(a,b){b=P(b);var c="std::string"===b;ub(a,{name:b,fromWireType:function(e){var f=L[e>>2],k=e+4;if(c)for(var l= +k,m=0;m<=f;++m){var q=k+m;if(m==f||0==C[q]){l=l?kb(C,l,q-l):"";if(void 0===w)var w=l;else w+=String.fromCharCode(0),w+=l;l=q+1}}else{w=Array(f);for(m=0;m>2]= +l;if(c&&k)ka(f,C,q,l+1);else if(k)for(k=0;kJa;var m=1}else 4===b&&(e=Gc,f=Hc,k=Ic,l=()=>L,m=2);ub(a,{name:c,fromWireType:function(q){for(var w=L[q>>2],y=l(),B,D=q+4,u=0;u<=w;++u){var F= +q+4+u*b;if(u==w||0==y[F>>m])D=e(D,F-D),void 0===B?B=D:(B+=String.fromCharCode(0),B+=D),D=F+b}qc(q);return B},toWireType:function(q,w){"string"!=typeof w&&Q(`Cannot pass non-string to C++ string type ${c}`);var y=k(w),B=wd(4+y+b);L[B>>2]=y>>m;f(w,B+4,y+b);null!==q&&q.push(qc,B);return B},argPackAdvance:8,readValueFromPointer:nb,Nd:function(q){qc(q)}})},D:function(a,b,c,e,f,k){lb[a]={name:P(b),we:mc(c,e),Sd:mc(f,k),Ce:[]}},d:function(a,b,c,e,f,k,l,m,q,w){lb[a].Ce.push({Ve:P(b),$e:c,Ye:mc(e,f),Ze:k, +hf:l,gf:mc(m,q),jf:w})},Bb:function(a,b){b=P(b);ub(a,{cf:!0,name:b,argPackAdvance:0,fromWireType:function(){},toWireType:function(){}})},yb:()=>!0,nb:()=>{throw Infinity;},F:function(a,b,c){a=xc(a);b=zc(b,"emval::as");var e=[],f=ac(e);L[c>>2]=f;return b.toWireType(e,a)},O:function(a,b,c,e,f){a=Lc[a];b=xc(b);c=Kc(c);var k=[];L[e>>2]=ac(k);return a(b,c,k,f)},u:function(a,b,c,e){a=Lc[a];b=xc(b);c=Kc(c);a(b,c,null,e)},c:wc,K:function(a){if(0===a)return ac(Mc());a=Kc(a);return ac(Mc()[a])},r:function(a, +b){var c=Oc(a,b),e=c[0];b=e.name+"_$"+c.slice(1).map(function(l){return l.name}).join("_")+"$";var f=Pc[b];if(void 0!==f)return f;var k=Array(a-1);f=Nc((l,m,q,w)=>{for(var y=0,B=0;B{Ea("")},xb:()=>performance.now(),ob:a=>{var b=C.length;a>>>=0;if(2147483648=c;c*=2){var e=b*(1+.2/c); +e=Math.min(e,a+100663296);var f=Math;e=Math.max(a,e);a:{f=f.min.call(f,2147483648,e+(65536-e%65536)%65536)-Fa.buffer.byteLength+65535>>>16;try{Fa.grow(f);La();var k=1;break a}catch(l){}k=void 0}if(k)return!0}return!1},eb:function(){return x?x.handle:0},pb:(a,b)=>{var c=0;nd().forEach(function(e,f){var k=b+c;f=L[a+4*f>>2]=k;for(k=0;k>0]=e.charCodeAt(k);Ha[f>>0]=0;c+=e.length+1});return 0},qb:(a,b)=>{var c=nd();L[a>>2]=c.length;var e=0;c.forEach(function(f){e+=f.length+1});L[b>> +2]=e;return 0},Cb:a=>{if(!noExitRuntime){if(r.onExit)r.onExit(a);Ga=!0}oa(a,new db(a))},U:()=>52,fb:function(){return 52},ub:()=>52,ib:function(){return 70},S:(a,b,c,e)=>{for(var f=0,k=0;k>2],m=L[b+4>>2];b+=8;for(var q=0;q>2]=f;return 0},Vc:function(a){S.activeTexture(a)},Wc:function(a,b){S.attachShader(Xc[a],$c[b])},Xc:function(a,b,c){S.bindAttribLocation(Xc[a],b,c?kb(C,c):"")},Yc:function(a, +b){35051==a?S.te=b:35052==a&&(S.Zd=b);S.bindBuffer(a,Wc[b])},_:function(a,b){S.bindFramebuffer(a,Yc[b])},Zb:function(a,b){S.bindRenderbuffer(a,Zc[b])},Jb:function(a,b){S.bindSampler(a,bd[b])},Zc:function(a,b){S.bindTexture(a,ea[b])},rc:pd,uc:pd,_c:function(a,b,c,e){S.blendColor(a,b,c,e)},$:function(a){S.blendEquation(a)},aa:function(a,b){S.blendFunc(a,b)},Tb:function(a,b,c,e,f,k,l,m,q,w){S.blitFramebuffer(a,b,c,e,f,k,l,m,q,w)},ba:function(a,b,c,e){2<=x.version?c&&b?S.bufferData(a,C,e,c,b):S.bufferData(a, +b,e):S.bufferData(a,c?C.subarray(c,c+b):b,e)},ca:function(a,b,c,e){2<=x.version?c&&S.bufferSubData(a,b,C,e,c):S.bufferSubData(a,b,C.subarray(e,e+c))},_b:function(a){return S.checkFramebufferStatus(a)},Q:function(a){S.clear(a)},Z:function(a,b,c,e){S.clearColor(a,b,c,e)},R:function(a){S.clearStencil(a)},lb:function(a,b,c,e){return S.clientWaitSync(cd[a],b,(c>>>0)+4294967296*e)},da:function(a,b,c,e){S.colorMask(!!a,!!b,!!c,!!e)},ea:function(a){S.compileShader($c[a])},fa:function(a,b,c,e,f,k,l,m){2<= +x.version?S.Zd||!l?S.compressedTexImage2D(a,b,c,e,f,k,l,m):S.compressedTexImage2D(a,b,c,e,f,k,C,m,l):S.compressedTexImage2D(a,b,c,e,f,k,m?C.subarray(m,m+l):null)},ga:function(a,b,c,e,f,k,l,m,q){2<=x.version?S.Zd||!m?S.compressedTexSubImage2D(a,b,c,e,f,k,l,m,q):S.compressedTexSubImage2D(a,b,c,e,f,k,l,C,q,m):S.compressedTexSubImage2D(a,b,c,e,f,k,l,q?C.subarray(q,q+m):null)},Rb:function(a,b,c,e,f){S.copyBufferSubData(a,b,c,e,f)},ha:function(a,b,c,e,f,k,l,m){S.copyTexSubImage2D(a,b,c,e,f,k,l,m)},ia:function(){var a= +da(Xc),b=S.createProgram();b.name=a;b.ne=b.le=b.me=0;b.ye=1;Xc[a]=b;return a},ja:function(a){var b=da($c);$c[b]=S.createShader(a);return b},ka:function(a){S.cullFace(a)},la:function(a,b){for(var c=0;c>2],f=Wc[e];f&&(S.deleteBuffer(f),f.name=0,Wc[e]=null,e==S.te&&(S.te=0),e==S.Zd&&(S.Zd=0))}},$b:function(a,b){for(var c=0;c>2],f=Yc[e];f&&(S.deleteFramebuffer(f),f.name=0,Yc[e]=null)}},ma:function(a){if(a){var b=Xc[a];b?(S.deleteProgram(b),b.name=0,Xc[a]=null): +R(1281)}},ac:function(a,b){for(var c=0;c>2],f=Zc[e];f&&(S.deleteRenderbuffer(f),f.name=0,Zc[e]=null)}},Kb:function(a,b){for(var c=0;c>2],f=bd[e];f&&(S.deleteSampler(f),f.name=0,bd[e]=null)}},na:function(a){if(a){var b=$c[a];b?(S.deleteShader(b),$c[a]=null):R(1281)}},Sb:function(a){if(a){var b=cd[a];b?(S.deleteSync(b),b.name=0,cd[a]=null):R(1281)}},oa:function(a,b){for(var c=0;c>2],f=ea[e];f&&(S.deleteTexture(f),f.name=0,ea[e]=null)}}, +sc:qd,vc:qd,pa:function(a){S.depthMask(!!a)},qa:function(a){S.disable(a)},ra:function(a){S.disableVertexAttribArray(a)},sa:function(a,b,c){S.drawArrays(a,b,c)},pc:function(a,b,c,e){S.drawArraysInstanced(a,b,c,e)},nc:function(a,b,c,e,f){S.Ae.drawArraysInstancedBaseInstanceWEBGL(a,b,c,e,f)},lc:function(a,b){for(var c=rd[a],e=0;e>2];S.drawBuffers(c)},ta:sd,qc:function(a,b,c,e,f){S.drawElementsInstanced(a,b,c,e,f)},oc:function(a,b,c,e,f,k,l){S.Ae.drawElementsInstancedBaseVertexBaseInstanceWEBGL(a, +b,c,e,f,k,l)},fc:function(a,b,c,e,f,k){sd(a,e,f,k)},ua:function(a){S.enable(a)},va:function(a){S.enableVertexAttribArray(a)},Pb:function(a,b){return(a=S.fenceSync(a,b))?(b=da(cd),a.name=b,cd[b]=a,b):0},wa:function(){S.finish()},xa:function(){S.flush()},bc:function(a,b,c,e){S.framebufferRenderbuffer(a,b,c,Zc[e])},cc:function(a,b,c,e,f){S.framebufferTexture2D(a,b,c,ea[e],f)},ya:function(a){S.frontFace(a)},za:function(a,b){td(a,b,"createBuffer",Wc)},dc:function(a,b){td(a,b,"createFramebuffer",Yc)},ec:function(a, +b){td(a,b,"createRenderbuffer",Zc)},Lb:function(a,b){td(a,b,"createSampler",bd)},Aa:function(a,b){td(a,b,"createTexture",ea)},tc:ud,wc:ud,Vb:function(a){S.generateMipmap(a)},Ba:function(a,b,c){c?K[c>>2]=S.getBufferParameter(a,b):R(1281)},Ca:function(){var a=S.getError()||hd;hd=0;return a},Da:function(a,b){vd(a,b,2)},Wb:function(a,b,c,e){a=S.getFramebufferAttachmentParameter(a,b,c);if(a instanceof WebGLRenderbuffer||a instanceof WebGLTexture)a=a.name|0;K[e>>2]=a},L:function(a,b){vd(a,b,0)},Ea:function(a, +b,c,e){a=S.getProgramInfoLog(Xc[a]);null===a&&(a="(unknown error)");b=0>2]=b)},Fa:function(a,b,c){if(c)if(a>=Vc)R(1281);else if(a=Xc[a],35716==b)a=S.getProgramInfoLog(a),null===a&&(a="(unknown error)"),K[c>>2]=a.length+1;else if(35719==b){if(!a.ne)for(b=0;b>2]=a.ne}else if(35722==b){if(!a.le)for(b=0;b>2]=a.le}else if(35381==b){if(!a.me)for(b=0;b>2]=a.me}else K[c>>2]=S.getProgramParameter(a,b);else R(1281)},Xb:function(a,b,c){c?K[c>>2]=S.getRenderbufferParameter(a,b):R(1281)},Ga:function(a,b,c,e){a=S.getShaderInfoLog($c[a]);null===a&&(a="(unknown error)");b=0>2]=b)},Gb:function(a,b,c,e){a=S.getShaderPrecisionFormat(a,b);K[c>>2]=a.rangeMin;K[c+4>> +2]=a.rangeMax;K[e>>2]=a.precision},Ha:function(a,b,c){c?35716==b?(a=S.getShaderInfoLog($c[a]),null===a&&(a="(unknown error)"),K[c>>2]=a?a.length+1:0):35720==b?(a=S.getShaderSource($c[a]),K[c>>2]=a?a.length+1:0):K[c>>2]=S.getShaderParameter($c[a],b):R(1281)},P:function(a){var b=dd[a];if(!b){switch(a){case 7939:b=S.getSupportedExtensions()||[];b=b.concat(b.map(function(e){return"GL_"+e}));b=xd(b.join(" "));break;case 7936:case 7937:case 37445:case 37446:(b=S.getParameter(a))||R(1280);b=b&&xd(b);break; +case 7938:b=S.getParameter(7938);b=2<=x.version?"OpenGL ES 3.0 ("+b+")":"OpenGL ES 2.0 ("+b+")";b=xd(b);break;case 35724:b=S.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=xd(b);break;default:R(1280)}dd[a]=b}return b},cb:function(a,b){if(2>x.version)return R(1282),0;var c=ed[a];if(c)return 0>b||b>=c.length?(R(1281),0):c[b];switch(a){case 7939:return c=S.getSupportedExtensions()||[], +c=c.concat(c.map(function(e){return"GL_"+e})),c=c.map(function(e){return xd(e)}),c=ed[a]=c,0>b||b>=c.length?(R(1281),0):c[b];default:return R(1280),0}},Ia:function(a,b){b=b?kb(C,b):"";if(a=Xc[a]){var c=a,e=c.ee,f=c.Ie,k;if(!e)for(c.ee=e={},c.He={},k=0;k>>0,f=b.slice(0, +k));if((f=a.Ie[f])&&e>2];S.invalidateFramebuffer(a,e)},Ib:function(a,b,c,e,f,k,l){for(var m=rd[b],q=0;q>2];S.invalidateSubFramebuffer(a,m,e,f,k,l)},Qb:function(a){return S.isSync(cd[a])},Ja:function(a){return(a=ea[a])?S.isTexture(a):0},Ka:function(a){S.lineWidth(a)},La:function(a){a=Xc[a];S.linkProgram(a);a.ee=0;a.Ie={}},jc:function(a, +b,c,e,f,k){S.Ee.multiDrawArraysInstancedBaseInstanceWEBGL(a,K,b>>2,K,c>>2,K,e>>2,L,f>>2,k)},kc:function(a,b,c,e,f,k,l,m){S.Ee.multiDrawElementsInstancedBaseVertexBaseInstanceWEBGL(a,K,b>>2,c,K,e>>2,K,f>>2,K,k>>2,L,l>>2,m)},Ma:function(a,b){3317==a&&(gd=b);S.pixelStorei(a,b)},mc:function(a){S.readBuffer(a)},Na:function(a,b,c,e,f,k,l){if(2<=x.version)if(S.te)S.readPixels(a,b,c,e,f,k,l);else{var m=zd(k);S.readPixels(a,b,c,e,f,k,m,l>>31-Math.clz32(m.BYTES_PER_ELEMENT))}else(l=Ad(k,f,c,e,l))?S.readPixels(a, +b,c,e,f,k,l):R(1280)},Yb:function(a,b,c,e){S.renderbufferStorage(a,b,c,e)},Ub:function(a,b,c,e,f){S.renderbufferStorageMultisample(a,b,c,e,f)},Mb:function(a,b,c){S.samplerParameterf(bd[a],b,c)},Nb:function(a,b,c){S.samplerParameteri(bd[a],b,c)},Ob:function(a,b,c){S.samplerParameteri(bd[a],b,K[c>>2])},Oa:function(a,b,c,e){S.scissor(a,b,c,e)},Pa:function(a,b,c,e){for(var f="",k=0;k>2]:-1,m=K[c+4*k>>2];l=m?kb(C,m,0>l?void 0:l):"";f+=l}S.shaderSource($c[a],f)},Qa:function(a,b, +c){S.stencilFunc(a,b,c)},Ra:function(a,b,c,e){S.stencilFuncSeparate(a,b,c,e)},Sa:function(a){S.stencilMask(a)},Ta:function(a,b){S.stencilMaskSeparate(a,b)},Ua:function(a,b,c){S.stencilOp(a,b,c)},Va:function(a,b,c,e){S.stencilOpSeparate(a,b,c,e)},Wa:function(a,b,c,e,f,k,l,m,q){if(2<=x.version)if(S.Zd)S.texImage2D(a,b,c,e,f,k,l,m,q);else if(q){var w=zd(m);S.texImage2D(a,b,c,e,f,k,l,m,w,q>>31-Math.clz32(w.BYTES_PER_ELEMENT))}else S.texImage2D(a,b,c,e,f,k,l,m,null);else S.texImage2D(a,b,c,e,f,k,l,m,q? +Ad(m,l,e,f,q):null)},Xa:function(a,b,c){S.texParameterf(a,b,c)},Ya:function(a,b,c){S.texParameterf(a,b,N[c>>2])},Za:function(a,b,c){S.texParameteri(a,b,c)},_a:function(a,b,c){S.texParameteri(a,b,K[c>>2])},gc:function(a,b,c,e,f){S.texStorage2D(a,b,c,e,f)},$a:function(a,b,c,e,f,k,l,m,q){if(2<=x.version)if(S.Zd)S.texSubImage2D(a,b,c,e,f,k,l,m,q);else if(q){var w=zd(m);S.texSubImage2D(a,b,c,e,f,k,l,m,w,q>>31-Math.clz32(w.BYTES_PER_ELEMENT))}else S.texSubImage2D(a,b,c,e,f,k,l,m,null);else w=null,q&&(w= +Ad(m,l,f,k,q)),S.texSubImage2D(a,b,c,e,f,k,l,m,w)},ab:function(a,b){S.uniform1f(W(a),b)},bb:function(a,b,c){if(2<=x.version)b&&S.uniform1fv(W(a),N,c>>2,b);else{if(288>=b)for(var e=Bd[b-1],f=0;f>2];else e=N.subarray(c>>2,c+4*b>>2);S.uniform1fv(W(a),e)}},Rc:function(a,b){S.uniform1i(W(a),b)},Sc:function(a,b,c){if(2<=x.version)b&&S.uniform1iv(W(a),K,c>>2,b);else{if(288>=b)for(var e=Cd[b-1],f=0;f>2];else e=K.subarray(c>>2,c+4*b>>2);S.uniform1iv(W(a),e)}},Tc:function(a, +b,c){S.uniform2f(W(a),b,c)},Uc:function(a,b,c){if(2<=x.version)b&&S.uniform2fv(W(a),N,c>>2,2*b);else{if(144>=b)for(var e=Bd[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);S.uniform2fv(W(a),e)}},Qc:function(a,b,c){S.uniform2i(W(a),b,c)},Pc:function(a,b,c){if(2<=x.version)b&&S.uniform2iv(W(a),K,c>>2,2*b);else{if(144>=b)for(var e=Cd[2*b-1],f=0;f<2*b;f+=2)e[f]=K[c+4*f>>2],e[f+1]=K[c+(4*f+4)>>2];else e=K.subarray(c>>2,c+8*b>>2);S.uniform2iv(W(a),e)}},Oc:function(a, +b,c,e){S.uniform3f(W(a),b,c,e)},Nc:function(a,b,c){if(2<=x.version)b&&S.uniform3fv(W(a),N,c>>2,3*b);else{if(96>=b)for(var e=Bd[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);S.uniform3fv(W(a),e)}},Mc:function(a,b,c,e){S.uniform3i(W(a),b,c,e)},Lc:function(a,b,c){if(2<=x.version)b&&S.uniform3iv(W(a),K,c>>2,3*b);else{if(96>=b)for(var e=Cd[3*b-1],f=0;f<3*b;f+=3)e[f]=K[c+4*f>>2],e[f+1]=K[c+(4*f+4)>>2],e[f+2]=K[c+(4*f+8)>>2];else e= +K.subarray(c>>2,c+12*b>>2);S.uniform3iv(W(a),e)}},Kc:function(a,b,c,e,f){S.uniform4f(W(a),b,c,e,f)},Jc:function(a,b,c){if(2<=x.version)b&&S.uniform4fv(W(a),N,c>>2,4*b);else{if(72>=b){var e=Bd[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);S.uniform4fv(W(a),e)}},xc:function(a,b,c,e,f){S.uniform4i(W(a),b,c,e,f)},yc:function(a,b,c){if(2<=x.version)b&&S.uniform4iv(W(a),K,c>>2,4*b);else{if(72>=b)for(var e=Cd[4*b- +1],f=0;f<4*b;f+=4)e[f]=K[c+4*f>>2],e[f+1]=K[c+(4*f+4)>>2],e[f+2]=K[c+(4*f+8)>>2],e[f+3]=K[c+(4*f+12)>>2];else e=K.subarray(c>>2,c+16*b>>2);S.uniform4iv(W(a),e)}},zc:function(a,b,c,e){if(2<=x.version)b&&S.uniformMatrix2fv(W(a),!!c,N,e>>2,4*b);else{if(72>=b)for(var f=Bd[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);S.uniformMatrix2fv(W(a),!!c,f)}},Ac:function(a,b,c,e){if(2<=x.version)b&&S.uniformMatrix3fv(W(a), +!!c,N,e>>2,9*b);else{if(32>=b)for(var f=Bd[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);S.uniformMatrix3fv(W(a),!!c,f)}},Bc:function(a,b,c,e){if(2<=x.version)b&&S.uniformMatrix4fv(W(a),!!c,N,e>>2,16*b);else{if(18>=b){var f=Bd[16*b-1],k=N;e>>=2;for(var l=0;l<16*b;l+=16){var m=e+l;f[l]= +k[m];f[l+1]=k[m+1];f[l+2]=k[m+2];f[l+3]=k[m+3];f[l+4]=k[m+4];f[l+5]=k[m+5];f[l+6]=k[m+6];f[l+7]=k[m+7];f[l+8]=k[m+8];f[l+9]=k[m+9];f[l+10]=k[m+10];f[l+11]=k[m+11];f[l+12]=k[m+12];f[l+13]=k[m+13];f[l+14]=k[m+14];f[l+15]=k[m+15]}}else f=N.subarray(e>>2,e+64*b>>2);S.uniformMatrix4fv(W(a),!!c,f)}},Cc:function(a){a=Xc[a];S.useProgram(a);S.Re=a},Dc:function(a,b){S.vertexAttrib1f(a,b)},Ec:function(a,b){S.vertexAttrib2f(a,N[b>>2],N[b+4>>2])},Fc:function(a,b){S.vertexAttrib3f(a,N[b>>2],N[b+4>>2],N[b+8>>2])}, +Gc:function(a,b){S.vertexAttrib4f(a,N[b>>2],N[b+4>>2],N[b+8>>2],N[b+12>>2])},hc:function(a,b){S.vertexAttribDivisor(a,b)},ic:function(a,b,c,e,f){S.vertexAttribIPointer(a,b,c,e,f)},Hc:function(a,b,c,e,f,k){S.vertexAttribPointer(a,b,c,!!e,f,k)},Ic:function(a,b,c,e){S.viewport(a,b,c,e)},kb:function(a,b,c,e){S.waitSync(cd[a],b,(c>>>0)+4294967296*e)},o:Nd,n:Od,j:Pd,N:Qd,Y:Rd,X:Sd,x:Td,y:Ud,p:Vd,w:Wd,Db:Xd,Eb:Yd,Fb:Zd,mb:(a,b,c,e)=>Hd(a,b,c,e)}; +(function(){function a(c){G=c=c.exports;Fa=G.$c;La();Na=G.bd;Pa.unshift(G.ad);Ua--;r.monitorRunDependencies&&r.monitorRunDependencies(Ua);if(0==Ua&&(null!==Va&&(clearInterval(Va),Va=null),Wa)){var e=Wa;Wa=null;e()}return c}var b={a:$d};Ua++;r.monitorRunDependencies&&r.monitorRunDependencies(Ua);if(r.instantiateWasm)try{return r.instantiateWasm(b,a)}catch(c){Ca("Module.instantiateWasm callback failed with error: "+c),ba(c)}cb(b,function(c){a(c.instance)}).catch(ba);return{}})(); +var qc=r._free=a=>(qc=r._free=G.cd)(a),wd=r._malloc=a=>(wd=r._malloc=G.dd)(a),pc=a=>(pc=G.ed)(a);r.__embind_initialize_bindings=()=>(r.__embind_initialize_bindings=G.fd)();var ae=(a,b)=>(ae=G.gd)(a,b),be=()=>(be=G.hd)(),ce=a=>(ce=G.id)(a);r.dynCall_viji=(a,b,c,e,f)=>(r.dynCall_viji=G.kd)(a,b,c,e,f);r.dynCall_vijiii=(a,b,c,e,f,k,l)=>(r.dynCall_vijiii=G.ld)(a,b,c,e,f,k,l);r.dynCall_viiiiij=(a,b,c,e,f,k,l,m)=>(r.dynCall_viiiiij=G.md)(a,b,c,e,f,k,l,m);r.dynCall_jii=(a,b,c)=>(r.dynCall_jii=G.nd)(a,b,c); +r.dynCall_vij=(a,b,c,e)=>(r.dynCall_vij=G.od)(a,b,c,e);r.dynCall_iiij=(a,b,c,e,f)=>(r.dynCall_iiij=G.pd)(a,b,c,e,f);r.dynCall_iiiij=(a,b,c,e,f,k)=>(r.dynCall_iiiij=G.qd)(a,b,c,e,f,k);r.dynCall_viij=(a,b,c,e,f)=>(r.dynCall_viij=G.rd)(a,b,c,e,f);r.dynCall_viiij=(a,b,c,e,f,k)=>(r.dynCall_viiij=G.sd)(a,b,c,e,f,k);r.dynCall_ji=(a,b)=>(r.dynCall_ji=G.td)(a,b);r.dynCall_iij=(a,b,c,e)=>(r.dynCall_iij=G.ud)(a,b,c,e);r.dynCall_jiiiiii=(a,b,c,e,f,k,l)=>(r.dynCall_jiiiiii=G.vd)(a,b,c,e,f,k,l); +r.dynCall_jiiiiji=(a,b,c,e,f,k,l,m)=>(r.dynCall_jiiiiji=G.wd)(a,b,c,e,f,k,l,m);r.dynCall_iijj=(a,b,c,e,f,k)=>(r.dynCall_iijj=G.xd)(a,b,c,e,f,k);r.dynCall_jiji=(a,b,c,e,f)=>(r.dynCall_jiji=G.yd)(a,b,c,e,f);r.dynCall_viijii=(a,b,c,e,f,k,l)=>(r.dynCall_viijii=G.zd)(a,b,c,e,f,k,l);r.dynCall_iiiiij=(a,b,c,e,f,k,l)=>(r.dynCall_iiiiij=G.Ad)(a,b,c,e,f,k,l);r.dynCall_iiiiijj=(a,b,c,e,f,k,l,m,q)=>(r.dynCall_iiiiijj=G.Bd)(a,b,c,e,f,k,l,m,q); +r.dynCall_iiiiiijj=(a,b,c,e,f,k,l,m,q,w)=>(r.dynCall_iiiiiijj=G.Cd)(a,b,c,e,f,k,l,m,q,w);function Wd(a,b,c,e,f){var k=be();try{Na.get(a)(b,c,e,f)}catch(l){ce(k);if(l!==l+0)throw l;ae(1,0)}}function Od(a,b,c){var e=be();try{return Na.get(a)(b,c)}catch(f){ce(e);if(f!==f+0)throw f;ae(1,0)}}function Ud(a,b,c){var e=be();try{Na.get(a)(b,c)}catch(f){ce(e);if(f!==f+0)throw f;ae(1,0)}}function Nd(a,b){var c=be();try{return Na.get(a)(b)}catch(e){ce(c);if(e!==e+0)throw e;ae(1,0)}} +function Td(a,b){var c=be();try{Na.get(a)(b)}catch(e){ce(c);if(e!==e+0)throw e;ae(1,0)}}function Pd(a,b,c,e){var f=be();try{return Na.get(a)(b,c,e)}catch(k){ce(f);if(k!==k+0)throw k;ae(1,0)}}function Zd(a,b,c,e,f,k,l,m,q,w){var y=be();try{Na.get(a)(b,c,e,f,k,l,m,q,w)}catch(B){ce(y);if(B!==B+0)throw B;ae(1,0)}}function Vd(a,b,c,e){var f=be();try{Na.get(a)(b,c,e)}catch(k){ce(f);if(k!==k+0)throw k;ae(1,0)}} +function Yd(a,b,c,e,f,k,l){var m=be();try{Na.get(a)(b,c,e,f,k,l)}catch(q){ce(m);if(q!==q+0)throw q;ae(1,0)}}function Qd(a,b,c,e,f){var k=be();try{return Na.get(a)(b,c,e,f)}catch(l){ce(k);if(l!==l+0)throw l;ae(1,0)}}function Rd(a,b,c,e,f,k,l){var m=be();try{return Na.get(a)(b,c,e,f,k,l)}catch(q){ce(m);if(q!==q+0)throw q;ae(1,0)}}function Xd(a,b,c,e,f,k){var l=be();try{Na.get(a)(b,c,e,f,k)}catch(m){ce(l);if(m!==m+0)throw m;ae(1,0)}} +function Sd(a,b,c,e,f,k,l,m,q,w){var y=be();try{return Na.get(a)(b,c,e,f,k,l,m,q,w)}catch(B){ce(y);if(B!==B+0)throw B;ae(1,0)}}var de;Wa=function ee(){de||fe();de||(Wa=ee)}; +function fe(){function a(){if(!de&&(de=!0,r.calledRun=!0,!Ga)){eb(Pa);aa(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();Qa.unshift(b)}eb(Qa)}}if(!(0 CanvasKitInit); diff --git a/canvaskit/chromium/canvaskit.wasm b/canvaskit/chromium/canvaskit.wasm new file mode 100644 index 00000000..2be39c7f Binary files /dev/null and b/canvaskit/chromium/canvaskit.wasm differ diff --git a/canvaskit/skwasm.js b/canvaskit/skwasm.js new file mode 100644 index 00000000..4833fcf9 --- /dev/null +++ b/canvaskit/skwasm.js @@ -0,0 +1,169 @@ + +var skwasm = (() => { + var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined; + if (typeof __filename !== 'undefined') _scriptDir = _scriptDir || __filename; + return ( +function(moduleArg = {}) { + +function aa(){d.buffer!=h.buffer&&k();return h}function p(){d.buffer!=h.buffer&&k();return ca}function q(){d.buffer!=h.buffer&&k();return da}function t(){d.buffer!=h.buffer&&k();return ea}function v(){d.buffer!=h.buffer&&k();return fa}function ha(){d.buffer!=h.buffer&&k();return ia}var w=moduleArg,ja,ka;w.ready=new Promise((a,b)=>{ja=a;ka=b}); +var la=Object.assign({},w),ma="./this.program",na=(a,b)=>{throw b;},oa="object"==typeof window,pa="function"==typeof importScripts,x="object"==typeof process&&"object"==typeof process.versions&&"string"==typeof process.versions.node,A=w.ENVIRONMENT_IS_PTHREAD||!1,C="";function qa(a){return w.locateFile?w.locateFile(a,C):C+a}var ra,sa,ta; +if(x){var fs=require("fs"),ua=require("path");C=pa?ua.dirname(C)+"/":__dirname+"/";ra=(b,c)=>{b=b.startsWith("file://")?new URL(b):ua.normalize(b);return fs.readFileSync(b,c?void 0:"utf8")};ta=b=>{b=ra(b,!0);b.buffer||(b=new Uint8Array(b));return b};sa=(b,c,e,f=!0)=>{b=b.startsWith("file://")?new URL(b):ua.normalize(b);fs.readFile(b,f?void 0:"utf8",(g,l)=>{g?e(g):c(f?l.buffer:l)})};!w.thisProgram&&1{process.exitCode= +b;throw c;};w.inspect=()=>"[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(oa||pa)pa?C=self.location.href:"undefined"!=typeof document&&document.currentScript&&(C=document.currentScript.src),_scriptDir&&(C=_scriptDir),0!==C.indexOf("blob:")?C=C.substr(0,C.replace(/[?#].*/,"").lastIndexOf("/")+1):C="",x||(ra=a=>{var b= +new XMLHttpRequest;b.open("GET",a,!1);b.send(null);return b.responseText},pa&&(ta=a=>{var b=new XMLHttpRequest;b.open("GET",a,!1);b.responseType="arraybuffer";b.send(null);return new Uint8Array(b.response)}),sa=(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)});x&&"undefined"==typeof performance&&(global.performance=require("perf_hooks").performance); +var va=console.log.bind(console),wa=console.error.bind(console);x&&(va=(...a)=>fs.writeSync(1,a.join(" ")+"\n"),wa=(...a)=>fs.writeSync(2,a.join(" ")+"\n"));var xa=w.print||va,D=w.printErr||wa;Object.assign(w,la);la=null;w.thisProgram&&(ma=w.thisProgram);w.quit&&(na=w.quit);var ya;w.wasmBinary&&(ya=w.wasmBinary);var noExitRuntime=w.noExitRuntime||!0;"object"!=typeof WebAssembly&&za("no native wasm support detected");var d,F,Aa,Ba=!1,Ca,h,ca,Da,Ea,da,ea,fa,ia; +function k(){var a=d.buffer;w.HEAP8=h=new Int8Array(a);w.HEAP16=Da=new Int16Array(a);w.HEAP32=da=new Int32Array(a);w.HEAPU8=ca=new Uint8Array(a);w.HEAPU16=Ea=new Uint16Array(a);w.HEAPU32=ea=new Uint32Array(a);w.HEAPF32=fa=new Float32Array(a);w.HEAPF64=ia=new Float64Array(a)}var Fa=w.INITIAL_MEMORY||16777216;65536<=Fa||za("INITIAL_MEMORY should be larger than STACK_SIZE, was "+Fa+"! (STACK_SIZE=65536)"); +if(A)d=w.wasmMemory;else if(w.wasmMemory)d=w.wasmMemory;else if(d=new WebAssembly.Memory({initial:Fa/65536,maximum:32768,shared:!0}),!(d.buffer instanceof SharedArrayBuffer))throw D("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"),x&&D("(on node you may need: --experimental-wasm-threads --experimental-wasm-bulk-memory and/or recent version)"), +Error("bad memory");k();Fa=d.buffer.byteLength;var G,Ga=[],Ha=[],Ia=[],Ja=0;function Ka(){return noExitRuntime||0{if(!b.ok)throw"failed to load wasm binary file at '"+a+"'";return b.arrayBuffer()}).catch(()=>Ra(a));if(sa)return new Promise((b,c)=>{sa(a,e=>b(new Uint8Array(e)),c)})}return Promise.resolve().then(()=>Ra(a))}function Ta(a,b,c){return Sa(a).then(e=>WebAssembly.instantiate(e,b)).then(e=>e).then(c,e=>{D("failed to asynchronously prepare wasm: "+e);za(e)})} +function Ua(a,b){var c=Qa;return ya||"function"!=typeof WebAssembly.instantiateStreaming||Pa(c)||c.startsWith("file://")||x||"function"!=typeof fetch?Ta(c,a,b):fetch(c,{credentials:"same-origin"}).then(e=>WebAssembly.instantiateStreaming(e,a).then(b,function(f){D("wasm streaming compile failed: "+f);D("falling back to ArrayBuffer instantiation");return Ta(c,a,b)}))}function Va(a){this.name="ExitStatus";this.message=`Program terminated with exit(${a})`;this.status=a} +function Wa(a){a.terminate();a.onmessage=()=>{}}function Xa(a){(a=I.g[a])||za();I.va(a)}function Ya(a){var b=I.la();if(!b)return 6;I.u.push(b);I.g[a.m]=b;b.m=a.m;var c={cmd:"run",start_routine:a.wa,arg:a.ia,pthread_ptr:a.m};c.D=a.D;c.P=a.P;x&&b.unref();b.postMessage(c,a.Da);return 0} +var Za="undefined"!=typeof TextDecoder?new TextDecoder("utf8"):void 0,$a=(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}, +J=(a,b)=>a?$a(p(),a,b):"";function ab(a){if(A)return K(1,1,a);Ca=a;if(!Ka()){I.ya();if(w.onExit)w.onExit(a);Ba=!0}na(a,new Va(a))} +var cb=a=>{Ca=a;if(A)throw bb(a),"unwind";ab(a)},I={o:[],u:[],fa:[],g:{},O:function(){A?I.qa():I.pa()},pa:function(){for(var a=1;a--;)I.V();Ga.unshift(()=>{Na();I.sa(()=>Oa())})},qa:function(){I.receiveObjectTransfer=I.ua;I.threadInitTLS=I.ea;I.setExitStatus=I.da;noExitRuntime=!1},da:function(a){Ca=a},Ka:["$terminateWorker"],ya:function(){for(var a of I.u)Wa(a);for(a of I.o)Wa(a);I.o=[];I.u=[];I.g=[]},va:function(a){var b=a.m;delete I.g[b];I.o.push(a);I.u.splice(I.u.indexOf(a),1);a.m=0;db(b)},ua:function(a){"undefined"!= +typeof eb&&(Object.assign(L,a.P),!w.canvas&&a.D&&L[a.D]&&(w.canvas=L[a.D].F,w.canvas.id=a.D))},ea:function(){I.fa.forEach(a=>a())},$:a=>new Promise(b=>{a.onmessage=g=>{g=g.data;var l=g.cmd;if(g.targetThread&&g.targetThread!=fb()){var n=I.g[g.Ja];n?n.postMessage(g,g.transferList):D('Internal error! Worker sent a message "'+l+'" to target pthread '+g.targetThread+", but that thread no longer exists!")}else if("checkMailbox"===l)gb();else if("spawnThread"===l)Ya(g);else if("cleanupThread"===l)Xa(g.thread); +else if("killThread"===l)g=g.thread,l=I.g[g],delete I.g[g],Wa(l),db(g),I.u.splice(I.u.indexOf(l),1),l.m=0;else if("cancelThread"===l)I.g[g.thread].postMessage({cmd:"cancel"});else if("loaded"===l)a.loaded=!0,x&&!a.m&&a.unref(),b(a);else if("alert"===l)alert("Thread "+g.threadId+": "+g.text);else if("setimmediate"===g.target)a.postMessage(g);else if("callHandler"===l)w[g.handler](...g.args);else l&&D("worker sent an unknown command "+l)};a.onerror=g=>{D("worker sent an error! "+g.filename+":"+g.lineno+ +": "+g.message);throw g;};x&&(a.on("message",function(g){a.onmessage({data:g})}),a.on("error",function(g){a.onerror(g)}));var c=[],e=["onExit","onAbort","print","printErr"],f;for(f of e)w.hasOwnProperty(f)&&c.push(f);a.postMessage({cmd:"load",handlers:c,urlOrBlob:w.mainScriptUrlOrBlob||_scriptDir,wasmMemory:d,wasmModule:Aa})}),sa:function(a){if(A)return a();Promise.all(I.o.map(I.$)).then(a)},V:function(){var a=qa("skwasm.worker.js");a=new Worker(a);I.o.push(a)},la:function(){0==I.o.length&&(I.V(), +I.$(I.o[0]));return I.o.pop()}};w.PThread=I;var hb=a=>{for(;0>2];a=q()[a+56>>2];ib(b,b-a);M(b)};function bb(a){if(A)return K(2,0,a);cb(a)}w.invokeEntryPoint=function(a,b){a=G.get(a)(b);Ka()?I.da(a):jb(a)};function kb(a){this.C=a-24;this.ta=function(b){t()[this.C+4>>2]=b};this.ra=function(b){t()[this.C+8>>2]=b};this.O=function(b,c){this.ma();this.ta(b);this.ra(c)};this.ma=function(){t()[this.C+16>>2]=0}}var lb=0,mb=0; +function nb(a,b,c,e){return A?K(3,1,a,b,c,e):ob(a,b,c,e)} +function ob(a,b,c,e){if("undefined"==typeof SharedArrayBuffer)return D("Current environment does not support SharedArrayBuffer, pthreads are not available!"),6;var f=[],g=0,l=b?t()[b+40>>2]:0;4294967295==l?l="#canvas":l&&(l=J(l).trim());l&&(l=l.split(","));var n={},r=w.canvas?w.canvas.id:"",u;for(u in l){var y=l[u].trim();try{if("#canvas"==y){if(!w.canvas){D('pthread_create: could not find canvas with ID "'+y+'" to transfer to thread!');g=28;break}y=w.canvas.id}if(L[y]){var V=L[y];L[y]=null;w.canvas instanceof +OffscreenCanvas&&y===w.canvas.id&&(w.canvas=null)}else if(!A){var E=w.canvas&&w.canvas.id===y?w.canvas:document.querySelector(y);if(!E){D('pthread_create: could not find canvas with ID "'+y+'" to transfer to thread!');g=28;break}if(E.W){D('pthread_create: cannot transfer canvas with ID "'+y+'" to thread, since the current thread does not have control over it!');g=63;break}if(E.transferControlToOffscreen)E.h||(E.h=pb(12),q()[E.h>>2]=E.width,q()[E.h+4>>2]=E.height,q()[E.h+8>>2]=0),V={F:E.transferControlToOffscreen(), +h:E.h,id:E.id},E.W=!0;else return D('pthread_create: cannot transfer control of canvas "'+y+'" to pthread, because current browser does not support OffscreenCanvas!'),D("pthread_create: Build with -sOFFSCREEN_FRAMEBUFFER to enable fallback proxying of GL commands from pthread to main thread."),52}V&&(f.push(V.F),n[V.id]=V)}catch(m){return D('pthread_create: failed to transfer control of canvas "'+y+'" to OffscreenCanvas! Error: '+m),28}}if(A&&(0===f.length||g))return nb(a,b,c,e);if(g)return g;for(E of Object.values(n))q()[E.h+ +8>>2]=a;a={wa:c,m:a,ia:e,D:r,P:n,Da:f};return A?(a.Fa="spawnThread",postMessage(a,f),0):Ya(a)}function qb(a,b,c){return A?K(4,1,a,b,c):0}function rb(a,b){if(A)return K(5,1,a,b)}function sb(a,b,c){return A?K(6,1,a,b,c):0}function tb(a,b,c,e){if(A)return K(7,1,a,b,c,e)}var ub=a=>{if(!Ba)try{if(a(),!Ka())try{A?jb(Ca):cb(Ca)}catch(b){b instanceof Va||"unwind"==b||na(1,b)}}catch(b){b instanceof Va||"unwind"==b||na(1,b)}}; +function vb(a){"function"===typeof Atomics.Ea&&(Atomics.Ea(q(),a>>2,a).value.then(gb),a+=128,Atomics.store(q(),a>>2,1))}w.__emscripten_thread_mailbox_await=vb;function gb(){var a=fb();a&&(vb(a),ub(()=>wb()))}w.checkMailbox=gb; +var xb=a=>{var b=N();a=a();M(b);return a},yb=a=>{for(var b=0,c=0;c=e?b++:2047>=e?b+=2:55296<=e&&57343>=e?(b+=4,++c):b+=3}return b},zb=(a,b,c,e)=>{if(!(0=l){var n=a.charCodeAt(++g);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},Ab=a=>{var b=yb(a)+1,c=pb(b);c&&zb(a,p(),c,b);return c};function Bb(a,b,c,e){b=b?J(b):"";xb(function(){var f=Cb(12),g=0;b&&(g=Ab(b));q()[f>>2]=g;q()[f+4>>2]=c;q()[f+8>>2]=e;Db(a,654311424,0,g,f)})} +function Eb(a){var b=a.getExtension("ANGLE_instanced_arrays");b&&(a.vertexAttribDivisor=function(c,e){b.vertexAttribDivisorANGLE(c,e)},a.drawArraysInstanced=function(c,e,f,g){b.drawArraysInstancedANGLE(c,e,f,g)},a.drawElementsInstanced=function(c,e,f,g,l){b.drawElementsInstancedANGLE(c,e,f,g,l)})} +function Fb(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 Gb(a){var b=a.getExtension("WEBGL_draw_buffers");b&&(a.drawBuffers=function(c,e){b.drawBuffersWEBGL(c,e)})} +function Hb(a){a.X=a.getExtension("WEBGL_draw_instanced_base_vertex_base_instance")}function Ib(a){a.ba=a.getExtension("WEBGL_multi_draw_instanced_base_vertex_base_instance")}function Jb(a){a.Ia=a.getExtension("WEBGL_multi_draw")}var Kb=1,Lb=[],O=[],Mb=[],Nb=[],P=[],Q=[],Ob=[],Pb={},L={},R=[],Qb=[],Rb={},Sb={},Tb=4;function S(a){Ub||(Ub=a)}function Vb(a){for(var b=Kb++,c=a.length;c>2]=fb();var e={handle:c,attributes:b,version:b.aa,s:a};a.canvas&&(a.canvas.H=e);Pb[c]=e;("undefined"==typeof b.Z||b.Z)&&Yb(e);return c} +function Yb(a){a||(a=T);if(!a.oa){a.oa=!0;var b=a.s;Eb(b);Fb(b);Gb(b);Hb(b);Ib(b);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");Jb(b);(b.getSupportedExtensions()||[]).forEach(function(c){c.includes("lose_context")||c.includes("debug")||b.getExtension(c)})}}var eb={},Ub,T; +function Zb(a){a=2>2]=b,q()[e.h+4>>2]=c);if(e.F||!e.W)e.F&&(e=e.F),a=!1,e.H&&e.H.s&&(a=e.H.s.getParameter(2978),a=0===a[0]&&0===a[1]&&a[2]===e.width&&a[3]===e.height),e.width=b,e.height=c,a&&e.H.s.viewport(0,0,b,c);else return e.h?(e=q()[e.h+8>>2],Bb(e,a,b,c),1):-4;return 0} +function ac(a,b,c){return A?K(8,1,a,b,c):$b(a,b,c)}function bc(a,b,c,e,f,g,l,n){return A?K(9,1,a,b,c,e,f,g,l,n):-52}function cc(a,b,c,e,f,g,l){if(A)return K(10,1,a,b,c,e,f,g,l)}function dc(a,b){U.bindFramebuffer(a,Mb[b])}function ec(a){U.clear(a)}function fc(a,b,c,e){U.clearColor(a,b,c,e)}function gc(a){U.clearStencil(a)} +function hc(a,b,c){if(b){var e=void 0;switch(a){case 36346:e=1;break;case 36344:0!=c&&1!=c&&S(1280);return;case 34814:case 36345:e=0;break;case 34466:var f=U.getParameter(34467);e=f?f.length:0;break;case 33309:if(2>T.version){S(1282);return}e=2*(U.getSupportedExtensions()||[]).length;break;case 33307:case 33308:if(2>T.version){S(1280);return}e=33307==a?3:0}if(void 0===e)switch(f=U.getParameter(a),typeof f){case "number":e=f;break;case "boolean":e=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:e=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:v()[b+4*a>>2]=f[a];break;case 4:aa()[b+a>>0]=f[a]?1:0}return}try{e=f.name| +0}catch(g){S(1280);D("GL_INVALID_ENUM in glGet"+c+"v: Unknown object returned from WebGL getParameter("+a+")! (error: "+g+")");return}}break;default:S(1280);D("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;t()[b>>2]=c;t()[b+4>>2]=(c-t()[b>>2])/4294967296;break;case 0:q()[b>>2]=e;break;case 2:v()[b>>2]=e;break;case 4:aa()[b>>0]=e?1:0}}else S(1281)}function ic(a,b){hc(a,b,0)} +function K(a,b){var c=arguments.length-2,e=arguments;return xb(()=>{for(var f=Cb(8*c),g=f>>3,l=0;l{if(!mc){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",_:ma||"./this.program"},b;for(b in lc)void 0===lc[b]?delete a[b]:a[b]=lc[b];var c=[];for(b in a)c.push(`${b}=${a[b]}`);mc=c}return mc},mc; +function oc(a,b){if(A)return K(11,1,a,b);var c=0;nc().forEach(function(e,f){var g=b+c;f=t()[a+4*f>>2]=g;for(g=0;g>0]=e.charCodeAt(g);aa()[f>>0]=0;c+=e.length+1});return 0}function pc(a,b){if(A)return K(12,1,a,b);var c=nc();t()[a>>2]=c.length;var e=0;c.forEach(function(f){e+=f.length+1});t()[b>>2]=e;return 0}function qc(a){return A?K(13,1,a):52}function rc(a,b,c,e,f,g){return A?K(14,1,a,b,c,e,f,g):52}function sc(a,b,c,e){return A?K(15,1,a,b,c,e):52} +function tc(a,b,c,e,f){return A?K(16,1,a,b,c,e,f):70}var uc=[null,[],[]];function vc(a,b,c,e){if(A)return K(17,1,a,b,c,e);for(var f=0,g=0;g>2],n=t()[b+4>>2];b+=8;for(var r=0;r>2]=f;return 0}function wc(a){U.bindVertexArray(Ob[a])}function xc(a,b){for(var c=0;c>2];U.deleteVertexArray(Ob[e]);Ob[e]=null}}var yc=[]; +function zc(a,b,c,e){U.drawElements(a,b,c,e)}function Ac(a,b,c,e){for(var f=0;f>2]=l}}function Bc(a,b){Ac(a,b,"createVertexArray",Ob)}function Cc(a){return"]"==a.slice(-1)&&a.lastIndexOf("[")}function Dc(a){a-=5120;0==a?a=aa():1==a?a=p():2==a?(d.buffer!=h.buffer&&k(),a=Da):4==a?a=q():6==a?a=v():5==a||28922==a||28520==a||30779==a||30782==a?a=t():(d.buffer!=h.buffer&&k(),a=Ea);return a} +function Ec(a,b,c,e,f){a=Dc(a);var g=31-Math.clz32(a.BYTES_PER_ELEMENT),l=Tb;return a.subarray(f>>g,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<>g)}function W(a){var b=U.ka;if(b){var c=b.G[a];"number"==typeof c&&(b.G[a]=c=U.getUniformLocation(b,b.ga[a]+(00===a%4&&(0!==a%100||0===a%400),Qc=[31,29,31,30,31,30,31,31,30,31,30,31],Rc=[31,28,31,30,31,30,31,31,30,31,30,31];function Sc(a){var b=Array(yb(a)+1);zb(a,b,0,b.length);return b} +var Tc=(a,b)=>{aa().set(a,b)},Uc=(a,b,c,e)=>{function f(m,z,B){for(m="number"==typeof m?m.toString():m||"";m.lengthHc?-1:0ba-m.getDate())z-=ba-m.getDate()+1,m.setDate(1),11>B?m.setMonth(B+1):(m.setMonth(0),m.setFullYear(m.getFullYear()+1));else{m.setDate(m.getDate()+z);break}}B=new Date(m.getFullYear()+1,0,4);z=n(new Date(m.getFullYear(), +0,4));B=n(B);return 0>=l(z,m)?0>=l(B,m)?m.getFullYear()+1:m.getFullYear():m.getFullYear()-1}var u=q()[e+40>>2];e={Ba:q()[e>>2],Aa:q()[e+4>>2],L:q()[e+8>>2],T:q()[e+12>>2],M:q()[e+16>>2],A:q()[e+20>>2],l:q()[e+24>>2],v:q()[e+28>>2],La:q()[e+32>>2],za:q()[e+36>>2],Ca:u?J(u):""};c=J(c);u={"%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 u)c=c.replace(new RegExp(y,"g"),u[y]);var V="Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "),E="January February March April May June July August September October November December".split(" ");u={"%a":m=>V[m.l].substring(0,3),"%A":m=>V[m.l],"%b":m=>E[m.M].substring(0,3),"%B":m=>E[m.M],"%C":m=>g((m.A+1900)/100| +0,2),"%d":m=>g(m.T,2),"%e":m=>f(m.T,2," "),"%g":m=>r(m).toString().substring(2),"%G":m=>r(m),"%H":m=>g(m.L,2),"%I":m=>{m=m.L;0==m?m=12:12{for(var z=0,B=0;B<=m.M-1;z+=(Pc(m.A+1900)?Qc:Rc)[B++]);return g(m.T+z,3)},"%m":m=>g(m.M+1,2),"%M":m=>g(m.Aa,2),"%n":()=>"\n","%p":m=>0<=m.L&&12>m.L?"AM":"PM","%S":m=>g(m.Ba,2),"%t":()=>"\t","%u":m=>m.l||7,"%U":m=>g(Math.floor((m.v+7-m.l)/7),2),"%V":m=>{var z=Math.floor((m.v+7-(m.l+6)%7)/7);2>=(m.l+371-m.v-2)%7&&z++;if(z)53==z&& +(B=(m.l+371-m.v)%7,4==B||3==B&&Pc(m.A)||(z=1));else{z=52;var B=(m.l+7-m.v-1)%7;(4==B||5==B&&Pc(m.A%400-1))&&z++}return g(z,2)},"%w":m=>m.l,"%W":m=>g(Math.floor((m.v+7-(m.l+6)%7)/7),2),"%y":m=>(m.A+1900).toString().substring(2),"%Y":m=>m.A+1900,"%z":m=>{m=m.za;var z=0<=m;m=Math.abs(m)/60;return(z?"+":"-")+String("0000"+(m/60*100+m%60)).slice(-4)},"%Z":m=>m.Ca,"%%":()=>"%"};c=c.replace(/%%/g,"\x00\x00");for(y in u)c.includes(y)&&(c=c.replace(new RegExp(y,"g"),u[y](e)));c=c.replace(/\0\0/g,"%");y=Sc(c); +if(y.length>b)return 0;Tc(y,a);return y.length-1},Vc=void 0,Wc=[];I.O();for(var U,Y=0;32>Y;++Y)yc.push(Array(Y));var Xc=new Float32Array(288);for(Y=0;288>Y;++Y)X[Y]=Xc.subarray(0,Y+1);var Yc=new Int32Array(288);for(Y=0;288>Y;++Y)Fc[Y]=Yc.subarray(0,Y+1); +(function(){const a=new Map,b=new Map;Oc=function(c,e,f){I.g[c].postMessage({S:"setAssociatedObject",R:e,object:f},[f])};Lc=function(c){return b.get(c)};Mc=function(c){function e({data:f}){var g=f.S;if(g)switch(g){case "onRenderComplete":Zc(f.xa,f.ja,f.na);break;case "setAssociatedObject":b.set(f.R,f.object);break;case "disposeAssociatedObject":f=f.R;g=b.get(f);g.close&&g.close();b.delete(f);break;default:console.warn(`unrecognized skwasm message: ${g}`)}}c?I.g[c].addEventListener("message",e):addEventListener("message", +e)};Jc=function(c,e){c=new OffscreenCanvas(c,e);e=Wb(c);a.set(e,c);return e};Nc=function(c,e,f){c=a.get(c);c.width=e;c.height=f};Gc=async function(c,e,f,g,l){e=a.get(e);g=await createImageBitmap(e,0,0,g,l);postMessage({S:"onRenderComplete",xa:c,ja:f,na:g},[g])};Ic=function(c,e,f){const g=T.s,l=g.createTexture();g.bindTexture(g.TEXTURE_2D,l);g.pixelStorei(g.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!0);g.texImage2D(g.TEXTURE_2D,0,g.RGBA,e,f,0,g.RGBA,g.UNSIGNED_BYTE,c);g.pixelStorei(g.UNPACK_PREMULTIPLY_ALPHA_WEBGL, +!1);g.bindTexture(g.TEXTURE_2D,null);c=Vb(P);P[c]=l;return c};Kc=function(c,e){I.g[c].postMessage({S:"disposeAssociatedObject",R:e})}})(); +var $c=[null,ab,bb,nb,qb,rb,sb,tb,ac,bc,cc,oc,pc,qc,rc,sc,tc,vc],md={__cxa_throw:function(a,b,c){(new kb(a)).O(b,c);lb=a;mb++;throw lb;},__emscripten_init_main_thread_js:function(a){ad(a,!pa,1,!oa,65536,!1);I.ea()},__emscripten_thread_cleanup:function(a){A?postMessage({cmd:"cleanupThread",thread:a}):Xa(a)},__pthread_create_js:ob,__syscall_fcntl64:qb,__syscall_fstat64:rb,__syscall_ioctl:sb,__syscall_openat:tb,_emscripten_get_now_is_monotonic:()=>!0,_emscripten_notify_mailbox_postmessage:function(a, +b){a==b?setTimeout(()=>gb()):A?postMessage({targetThread:a,cmd:"checkMailbox"}):(a=I.g[a])&&a.postMessage({cmd:"checkMailbox"})},_emscripten_set_offscreencanvas_size:function(a,b,c){return Zb(a)?$b(a,b,c):ac(a,b,c)},_emscripten_thread_mailbox_await:vb,_emscripten_thread_set_strongref:function(a){x&&I.g[a].ref()},_emscripten_throw_longjmp:()=>{throw Infinity;},_mmap_js:bc,_munmap_js:cc,abort:()=>{za("")},emscripten_check_blocking_allowed:function(){},emscripten_exit_with_live_runtime:()=>{Ja+=1;throw"unwind"; +},emscripten_get_now:()=>performance.timeOrigin+performance.now(),emscripten_glBindFramebuffer:dc,emscripten_glClear:ec,emscripten_glClearColor:fc,emscripten_glClearStencil:gc,emscripten_glGetIntegerv:ic,emscripten_receive_on_main_thread_js:function(a,b,c,e){I.Ha=b;kc.length=c;b=e>>3;for(e=0;e{var b=p().length;a>>>=0;if(a<=b||2147483648=c;c*=2){var e=b*(1+.2/c);e=Math.min(e,a+100663296);var f=Math; +e=Math.max(a,e);a:{f=f.min.call(f,2147483648,e+(65536-e%65536)%65536)-d.buffer.byteLength+65535>>>16;try{d.grow(f);k();var g=1;break a}catch(l){}g=void 0}if(g)return!0}return!1},emscripten_webgl_enable_extension:function(a,b){a=Pb[a];b=J(b);b.startsWith("GL_")&&(b=b.substr(3));"ANGLE_instanced_arrays"==b&&Eb(U);"OES_vertex_array_object"==b&&Fb(U);"WEBGL_draw_buffers"==b&&Gb(U);"WEBGL_draw_instanced_base_vertex_base_instance"==b&&Hb(U);"WEBGL_multi_draw_instanced_base_vertex_base_instance"==b&&Ib(U); +"WEBGL_multi_draw"==b&&Jb(U);return!!a.s.getExtension(b)},emscripten_webgl_get_current_context:function(){return T?T.handle:0},emscripten_webgl_make_context_current:function(a){T=Pb[a];w.Ga=U=T&&T.s;return!a||U?0:-5},environ_get:oc,environ_sizes_get:pc,exit:cb,fd_close:qc,fd_pread:rc,fd_read:sc,fd_seek:tc,fd_write:vc,glActiveTexture:function(a){U.activeTexture(a)},glAttachShader:function(a,b){U.attachShader(O[a],Q[b])},glBindAttribLocation:function(a,b,c){U.bindAttribLocation(O[a],b,J(c))},glBindBuffer:function(a, +b){35051==a?U.N=b:35052==a&&(U.B=b);U.bindBuffer(a,Lb[b])},glBindFramebuffer:dc,glBindRenderbuffer:function(a,b){U.bindRenderbuffer(a,Nb[b])},glBindSampler:function(a,b){U.bindSampler(a,R[b])},glBindTexture:function(a,b){U.bindTexture(a,P[b])},glBindVertexArray:wc,glBindVertexArrayOES:wc,glBlendColor:function(a,b,c,e){U.blendColor(a,b,c,e)},glBlendEquation:function(a){U.blendEquation(a)},glBlendFunc:function(a,b){U.blendFunc(a,b)},glBlitFramebuffer:function(a,b,c,e,f,g,l,n,r,u){U.blitFramebuffer(a, +b,c,e,f,g,l,n,r,u)},glBufferData:function(a,b,c,e){2<=T.version?c&&b?U.bufferData(a,p(),e,c,b):U.bufferData(a,b,e):U.bufferData(a,c?p().subarray(c,c+b):b,e)},glBufferSubData:function(a,b,c,e){2<=T.version?c&&U.bufferSubData(a,b,p(),e,c):U.bufferSubData(a,b,p().subarray(e,e+c))},glCheckFramebufferStatus:function(a){return U.checkFramebufferStatus(a)},glClear:ec,glClearColor:fc,glClearStencil:gc,glClientWaitSync:function(a,b,c,e){return U.clientWaitSync(Qb[a],b,(c>>>0)+4294967296*e)},glColorMask:function(a, +b,c,e){U.colorMask(!!a,!!b,!!c,!!e)},glCompileShader:function(a){U.compileShader(Q[a])},glCompressedTexImage2D:function(a,b,c,e,f,g,l,n){2<=T.version?U.B||!l?U.compressedTexImage2D(a,b,c,e,f,g,l,n):U.compressedTexImage2D(a,b,c,e,f,g,p(),n,l):U.compressedTexImage2D(a,b,c,e,f,g,n?p().subarray(n,n+l):null)},glCompressedTexSubImage2D:function(a,b,c,e,f,g,l,n,r){2<=T.version?U.B||!n?U.compressedTexSubImage2D(a,b,c,e,f,g,l,n,r):U.compressedTexSubImage2D(a,b,c,e,f,g,l,p(),r,n):U.compressedTexSubImage2D(a, +b,c,e,f,g,l,r?p().subarray(r,r+n):null)},glCopyBufferSubData:function(a,b,c,e,f){U.copyBufferSubData(a,b,c,e,f)},glCopyTexSubImage2D:function(a,b,c,e,f,g,l,n){U.copyTexSubImage2D(a,b,c,e,f,g,l,n)},glCreateProgram:function(){var a=Vb(O),b=U.createProgram();b.name=a;b.K=b.I=b.J=0;b.U=1;O[a]=b;return a},glCreateShader:function(a){var b=Vb(Q);Q[b]=U.createShader(a);return b},glCullFace:function(a){U.cullFace(a)},glDeleteBuffers:function(a,b){for(var c=0;c>2],f=Lb[e];f&&(U.deleteBuffer(f), +f.name=0,Lb[e]=null,e==U.N&&(U.N=0),e==U.B&&(U.B=0))}},glDeleteFramebuffers:function(a,b){for(var c=0;c>2],f=Mb[e];f&&(U.deleteFramebuffer(f),f.name=0,Mb[e]=null)}},glDeleteProgram:function(a){if(a){var b=O[a];b?(U.deleteProgram(b),b.name=0,O[a]=null):S(1281)}},glDeleteRenderbuffers:function(a,b){for(var c=0;c>2],f=Nb[e];f&&(U.deleteRenderbuffer(f),f.name=0,Nb[e]=null)}},glDeleteSamplers:function(a,b){for(var c=0;c>2],f=R[e]; +f&&(U.deleteSampler(f),f.name=0,R[e]=null)}},glDeleteShader:function(a){if(a){var b=Q[a];b?(U.deleteShader(b),Q[a]=null):S(1281)}},glDeleteSync:function(a){if(a){var b=Qb[a];b?(U.deleteSync(b),b.name=0,Qb[a]=null):S(1281)}},glDeleteTextures:function(a,b){for(var c=0;c>2],f=P[e];f&&(U.deleteTexture(f),f.name=0,P[e]=null)}},glDeleteVertexArrays:xc,glDeleteVertexArraysOES:xc,glDepthMask:function(a){U.depthMask(!!a)},glDisable:function(a){U.disable(a)},glDisableVertexAttribArray:function(a){U.disableVertexAttribArray(a)}, +glDrawArrays:function(a,b,c){U.drawArrays(a,b,c)},glDrawArraysInstanced:function(a,b,c,e){U.drawArraysInstanced(a,b,c,e)},glDrawArraysInstancedBaseInstanceWEBGL:function(a,b,c,e,f){U.X.drawArraysInstancedBaseInstanceWEBGL(a,b,c,e,f)},glDrawBuffers:function(a,b){for(var c=yc[a],e=0;e>2];U.drawBuffers(c)},glDrawElements:zc,glDrawElementsInstanced:function(a,b,c,e,f){U.drawElementsInstanced(a,b,c,e,f)},glDrawElementsInstancedBaseVertexBaseInstanceWEBGL:function(a,b,c,e,f,g,l){U.X.drawElementsInstancedBaseVertexBaseInstanceWEBGL(a, +b,c,e,f,g,l)},glDrawRangeElements:function(a,b,c,e,f,g){zc(a,e,f,g)},glEnable:function(a){U.enable(a)},glEnableVertexAttribArray:function(a){U.enableVertexAttribArray(a)},glFenceSync:function(a,b){return(a=U.fenceSync(a,b))?(b=Vb(Qb),a.name=b,Qb[b]=a,b):0},glFinish:function(){U.finish()},glFlush:function(){U.flush()},glFramebufferRenderbuffer:function(a,b,c,e){U.framebufferRenderbuffer(a,b,c,Nb[e])},glFramebufferTexture2D:function(a,b,c,e,f){U.framebufferTexture2D(a,b,c,P[e],f)},glFrontFace:function(a){U.frontFace(a)}, +glGenBuffers:function(a,b){Ac(a,b,"createBuffer",Lb)},glGenFramebuffers:function(a,b){Ac(a,b,"createFramebuffer",Mb)},glGenRenderbuffers:function(a,b){Ac(a,b,"createRenderbuffer",Nb)},glGenSamplers:function(a,b){Ac(a,b,"createSampler",R)},glGenTextures:function(a,b){Ac(a,b,"createTexture",P)},glGenVertexArrays:Bc,glGenVertexArraysOES:Bc,glGenerateMipmap:function(a){U.generateMipmap(a)},glGetBufferParameteriv:function(a,b,c){c?q()[c>>2]=U.getBufferParameter(a,b):S(1281)},glGetError:function(){var a= +U.getError()||Ub;Ub=0;return a},glGetFloatv:function(a,b){hc(a,b,2)},glGetFramebufferAttachmentParameteriv:function(a,b,c,e){a=U.getFramebufferAttachmentParameter(a,b,c);if(a instanceof WebGLRenderbuffer||a instanceof WebGLTexture)a=a.name|0;q()[e>>2]=a},glGetIntegerv:ic,glGetProgramInfoLog:function(a,b,c,e){a=U.getProgramInfoLog(O[a]);null===a&&(a="(unknown error)");var f;0>2]=b)},glGetProgramiv:function(a,b,c){if(c)if(a>=Kb)S(1281);else if(a=O[a],35716==b)a= +U.getProgramInfoLog(a),null===a&&(a="(unknown error)"),q()[c>>2]=a.length+1;else if(35719==b){if(!a.K)for(b=0;b>2]=a.K}else if(35722==b){if(!a.I)for(b=0;b>2]=a.I}else if(35381==b){if(!a.J)for(b=0;b>2]=a.J}else q()[c>> +2]=U.getProgramParameter(a,b);else S(1281)},glGetRenderbufferParameteriv:function(a,b,c){c?q()[c>>2]=U.getRenderbufferParameter(a,b):S(1281)},glGetShaderInfoLog:function(a,b,c,e){a=U.getShaderInfoLog(Q[a]);null===a&&(a="(unknown error)");var f;0>2]=b)},glGetShaderPrecisionFormat:function(a,b,c,e){a=U.getShaderPrecisionFormat(a,b);q()[c>>2]=a.rangeMin;q()[c+4>>2]=a.rangeMax;q()[e>>2]=a.precision},glGetShaderiv:function(a,b,c){c?35716==b?(a=U.getShaderInfoLog(Q[a]), +null===a&&(a="(unknown error)"),a=a?a.length+1:0,q()[c>>2]=a):35720==b?(a=(a=U.getShaderSource(Q[a]))?a.length+1:0,q()[c>>2]=a):q()[c>>2]=U.getShaderParameter(Q[a],b):S(1281)},glGetString:function(a){var b=Rb[a];if(!b){switch(a){case 7939:b=U.getSupportedExtensions()||[];b=b.concat(b.map(function(e){return"GL_"+e}));b=Ab(b.join(" "));break;case 7936:case 7937:case 37445:case 37446:(b=U.getParameter(a))||S(1280);b=b&&Ab(b);break;case 7938:b=U.getParameter(7938);b=2<=T.version?"OpenGL ES 3.0 ("+b+")": +"OpenGL ES 2.0 ("+b+")";b=Ab(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=Ab(b);break;default:S(1280)}Rb[a]=b}return b},glGetStringi:function(a,b){if(2>T.version)return S(1282),0;var c=Sb[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(e){return"GL_"+e})),c=c.map(function(e){return Ab(e)}), +c=Sb[a]=c,0>b||b>=c.length?(S(1281),0):c[b];default:return S(1280),0}},glGetUniformLocation:function(a,b){b=J(b);if(a=O[a]){var c=a,e=c.G,f=c.ha,g;if(!e)for(c.G=e={},c.ga={},g=0;g>>0,f=b.slice(0,g));if((f=a.ha[f])&&e>2];U.invalidateFramebuffer(a,e)},glInvalidateSubFramebuffer:function(a,b,c,e,f,g,l){for(var n=yc[b],r=0;r>2];U.invalidateSubFramebuffer(a,n,e,f,g,l)},glIsSync:function(a){return U.isSync(Qb[a])},glIsTexture:function(a){return(a=P[a])?U.isTexture(a):0},glLineWidth:function(a){U.lineWidth(a)},glLinkProgram:function(a){a=O[a];U.linkProgram(a);a.G=0;a.ha={}},glMultiDrawArraysInstancedBaseInstanceWEBGL:function(a, +b,c,e,f,g){U.ba.multiDrawArraysInstancedBaseInstanceWEBGL(a,q(),b>>2,q(),c>>2,q(),e>>2,t(),f>>2,g)},glMultiDrawElementsInstancedBaseVertexBaseInstanceWEBGL:function(a,b,c,e,f,g,l,n){U.ba.multiDrawElementsInstancedBaseVertexBaseInstanceWEBGL(a,q(),b>>2,c,q(),e>>2,q(),f>>2,q(),g>>2,t(),l>>2,n)},glPixelStorei:function(a,b){3317==a&&(Tb=b);U.pixelStorei(a,b)},glReadBuffer:function(a){U.readBuffer(a)},glReadPixels:function(a,b,c,e,f,g,l){if(2<=T.version)if(U.N)U.readPixels(a,b,c,e,f,g,l);else{var n=Dc(g); +U.readPixels(a,b,c,e,f,g,n,l>>31-Math.clz32(n.BYTES_PER_ELEMENT))}else(l=Ec(g,f,c,e,l))?U.readPixels(a,b,c,e,f,g,l):S(1280)},glRenderbufferStorage:function(a,b,c,e){U.renderbufferStorage(a,b,c,e)},glRenderbufferStorageMultisample:function(a,b,c,e,f){U.renderbufferStorageMultisample(a,b,c,e,f)},glSamplerParameterf:function(a,b,c){U.samplerParameterf(R[a],b,c)},glSamplerParameteri:function(a,b,c){U.samplerParameteri(R[a],b,c)},glSamplerParameteriv:function(a,b,c){c=q()[c>>2];U.samplerParameteri(R[a], +b,c)},glScissor:function(a,b,c,e){U.scissor(a,b,c,e)},glShaderSource:function(a,b,c,e){for(var f="",g=0;g>2]:-1;f+=J(q()[c+4*g>>2],0>l?void 0:l)}U.shaderSource(Q[a],f)},glStencilFunc:function(a,b,c){U.stencilFunc(a,b,c)},glStencilFuncSeparate:function(a,b,c,e){U.stencilFuncSeparate(a,b,c,e)},glStencilMask:function(a){U.stencilMask(a)},glStencilMaskSeparate:function(a,b){U.stencilMaskSeparate(a,b)},glStencilOp:function(a,b,c){U.stencilOp(a,b,c)},glStencilOpSeparate:function(a, +b,c,e){U.stencilOpSeparate(a,b,c,e)},glTexImage2D:function(a,b,c,e,f,g,l,n,r){if(2<=T.version)if(U.B)U.texImage2D(a,b,c,e,f,g,l,n,r);else if(r){var u=Dc(n);U.texImage2D(a,b,c,e,f,g,l,n,u,r>>31-Math.clz32(u.BYTES_PER_ELEMENT))}else U.texImage2D(a,b,c,e,f,g,l,n,null);else U.texImage2D(a,b,c,e,f,g,l,n,r?Ec(n,l,e,f,r):null)},glTexParameterf:function(a,b,c){U.texParameterf(a,b,c)},glTexParameterfv:function(a,b,c){c=v()[c>>2];U.texParameterf(a,b,c)},glTexParameteri:function(a,b,c){U.texParameteri(a,b,c)}, +glTexParameteriv:function(a,b,c){c=q()[c>>2];U.texParameteri(a,b,c)},glTexStorage2D:function(a,b,c,e,f){U.texStorage2D(a,b,c,e,f)},glTexSubImage2D:function(a,b,c,e,f,g,l,n,r){if(2<=T.version)if(U.B)U.texSubImage2D(a,b,c,e,f,g,l,n,r);else if(r){var u=Dc(n);U.texSubImage2D(a,b,c,e,f,g,l,n,u,r>>31-Math.clz32(u.BYTES_PER_ELEMENT))}else U.texSubImage2D(a,b,c,e,f,g,l,n,null);else u=null,r&&(u=Ec(n,l,f,g,r)),U.texSubImage2D(a,b,c,e,f,g,l,n,u)},glUniform1f:function(a,b){U.uniform1f(W(a),b)},glUniform1fv:function(a, +b,c){if(2<=T.version)b&&U.uniform1fv(W(a),v(),c>>2,b);else{if(288>=b)for(var e=X[b-1],f=0;f>2];else e=v().subarray(c>>2,c+4*b>>2);U.uniform1fv(W(a),e)}},glUniform1i:function(a,b){U.uniform1i(W(a),b)},glUniform1iv:function(a,b,c){if(2<=T.version)b&&U.uniform1iv(W(a),q(),c>>2,b);else{if(288>=b)for(var e=Fc[b-1],f=0;f>2];else e=q().subarray(c>>2,c+4*b>>2);U.uniform1iv(W(a),e)}},glUniform2f:function(a,b,c){U.uniform2f(W(a),b,c)},glUniform2fv:function(a,b,c){if(2<= +T.version)b&&U.uniform2fv(W(a),v(),c>>2,2*b);else{if(144>=b)for(var e=X[2*b-1],f=0;f<2*b;f+=2)e[f]=v()[c+4*f>>2],e[f+1]=v()[c+(4*f+4)>>2];else e=v().subarray(c>>2,c+8*b>>2);U.uniform2fv(W(a),e)}},glUniform2i:function(a,b,c){U.uniform2i(W(a),b,c)},glUniform2iv:function(a,b,c){if(2<=T.version)b&&U.uniform2iv(W(a),q(),c>>2,2*b);else{if(144>=b)for(var e=Fc[2*b-1],f=0;f<2*b;f+=2)e[f]=q()[c+4*f>>2],e[f+1]=q()[c+(4*f+4)>>2];else e=q().subarray(c>>2,c+8*b>>2);U.uniform2iv(W(a),e)}},glUniform3f:function(a, +b,c,e){U.uniform3f(W(a),b,c,e)},glUniform3fv:function(a,b,c){if(2<=T.version)b&&U.uniform3fv(W(a),v(),c>>2,3*b);else{if(96>=b)for(var e=X[3*b-1],f=0;f<3*b;f+=3)e[f]=v()[c+4*f>>2],e[f+1]=v()[c+(4*f+4)>>2],e[f+2]=v()[c+(4*f+8)>>2];else e=v().subarray(c>>2,c+12*b>>2);U.uniform3fv(W(a),e)}},glUniform3i:function(a,b,c,e){U.uniform3i(W(a),b,c,e)},glUniform3iv:function(a,b,c){if(2<=T.version)b&&U.uniform3iv(W(a),q(),c>>2,3*b);else{if(96>=b)for(var e=Fc[3*b-1],f=0;f<3*b;f+=3)e[f]=q()[c+4*f>>2],e[f+1]=q()[c+ +(4*f+4)>>2],e[f+2]=q()[c+(4*f+8)>>2];else e=q().subarray(c>>2,c+12*b>>2);U.uniform3iv(W(a),e)}},glUniform4f:function(a,b,c,e,f){U.uniform4f(W(a),b,c,e,f)},glUniform4fv:function(a,b,c){if(2<=T.version)b&&U.uniform4fv(W(a),v(),c>>2,4*b);else{if(72>=b){var e=X[4*b-1],f=v();c>>=2;for(var g=0;g<4*b;g+=4){var l=c+g;e[g]=f[l];e[g+1]=f[l+1];e[g+2]=f[l+2];e[g+3]=f[l+3]}}else e=v().subarray(c>>2,c+16*b>>2);U.uniform4fv(W(a),e)}},glUniform4i:function(a,b,c,e,f){U.uniform4i(W(a),b,c,e,f)},glUniform4iv:function(a, +b,c){if(2<=T.version)b&&U.uniform4iv(W(a),q(),c>>2,4*b);else{if(72>=b)for(var e=Fc[4*b-1],f=0;f<4*b;f+=4)e[f]=q()[c+4*f>>2],e[f+1]=q()[c+(4*f+4)>>2],e[f+2]=q()[c+(4*f+8)>>2],e[f+3]=q()[c+(4*f+12)>>2];else e=q().subarray(c>>2,c+16*b>>2);U.uniform4iv(W(a),e)}},glUniformMatrix2fv:function(a,b,c,e){if(2<=T.version)b&&U.uniformMatrix2fv(W(a),!!c,v(),e>>2,4*b);else{if(72>=b)for(var f=X[4*b-1],g=0;g<4*b;g+=4)f[g]=v()[e+4*g>>2],f[g+1]=v()[e+(4*g+4)>>2],f[g+2]=v()[e+(4*g+8)>>2],f[g+3]=v()[e+(4*g+12)>>2];else f= +v().subarray(e>>2,e+16*b>>2);U.uniformMatrix2fv(W(a),!!c,f)}},glUniformMatrix3fv:function(a,b,c,e){if(2<=T.version)b&&U.uniformMatrix3fv(W(a),!!c,v(),e>>2,9*b);else{if(32>=b)for(var f=X[9*b-1],g=0;g<9*b;g+=9)f[g]=v()[e+4*g>>2],f[g+1]=v()[e+(4*g+4)>>2],f[g+2]=v()[e+(4*g+8)>>2],f[g+3]=v()[e+(4*g+12)>>2],f[g+4]=v()[e+(4*g+16)>>2],f[g+5]=v()[e+(4*g+20)>>2],f[g+6]=v()[e+(4*g+24)>>2],f[g+7]=v()[e+(4*g+28)>>2],f[g+8]=v()[e+(4*g+32)>>2];else f=v().subarray(e>>2,e+36*b>>2);U.uniformMatrix3fv(W(a),!!c,f)}}, +glUniformMatrix4fv:function(a,b,c,e){if(2<=T.version)b&&U.uniformMatrix4fv(W(a),!!c,v(),e>>2,16*b);else{if(18>=b){var f=X[16*b-1],g=v();e>>=2;for(var l=0;l<16*b;l+=16){var n=e+l;f[l]=g[n];f[l+1]=g[n+1];f[l+2]=g[n+2];f[l+3]=g[n+3];f[l+4]=g[n+4];f[l+5]=g[n+5];f[l+6]=g[n+6];f[l+7]=g[n+7];f[l+8]=g[n+8];f[l+9]=g[n+9];f[l+10]=g[n+10];f[l+11]=g[n+11];f[l+12]=g[n+12];f[l+13]=g[n+13];f[l+14]=g[n+14];f[l+15]=g[n+15]}}else f=v().subarray(e>>2,e+64*b>>2);U.uniformMatrix4fv(W(a),!!c,f)}},glUseProgram:function(a){a= +O[a];U.useProgram(a);U.ka=a},glVertexAttrib1f:function(a,b){U.vertexAttrib1f(a,b)},glVertexAttrib2fv:function(a,b){U.vertexAttrib2f(a,v()[b>>2],v()[b+4>>2])},glVertexAttrib3fv:function(a,b){U.vertexAttrib3f(a,v()[b>>2],v()[b+4>>2],v()[b+8>>2])},glVertexAttrib4fv:function(a,b){U.vertexAttrib4f(a,v()[b>>2],v()[b+4>>2],v()[b+8>>2],v()[b+12>>2])},glVertexAttribDivisor:function(a,b){U.vertexAttribDivisor(a,b)},glVertexAttribIPointer:function(a,b,c,e,f){U.vertexAttribIPointer(a,b,c,e,f)},glVertexAttribPointer:function(a, +b,c,e,f,g){U.vertexAttribPointer(a,b,c,!!e,f,g)},glViewport:function(a,b,c,e){U.viewport(a,b,c,e)},glWaitSync:function(a,b,c,e){U.waitSync(Qb[a],b,(c>>>0)+4294967296*e)},invoke_ii:bd,invoke_iii:cd,invoke_iiii:dd,invoke_iiiii:ed,invoke_iiiiiii:fd,invoke_vi:gd,invoke_vii:hd,invoke_viii:jd,invoke_viiii:kd,invoke_viiiiiii:ld,memory:d||w.wasmMemory,skwasm_captureImageBitmap:Gc,skwasm_createGlTextureFromTextureSource:Ic,skwasm_createOffscreenCanvas:Jc,skwasm_disposeAssociatedObjectOnThread:Kc,skwasm_getAssociatedObject:Lc, +skwasm_registerMessageListener:Mc,skwasm_resizeCanvas:Nc,skwasm_setAssociatedObjectOnThread:Oc,strftime_l:(a,b,c,e)=>Uc(a,b,c,e)}; +(function(){function a(c,e){F=c=c.exports;w.wasmExports=F;I.fa.push(F._emscripten_tls_init);G=F.__indirect_function_table;Ha.unshift(F.__wasm_call_ctors);Aa=e;Oa();return c}var b={env:md,wasi_snapshot_preview1:md};Na();if(w.instantiateWasm)try{return w.instantiateWasm(b,a)}catch(c){D("Module.instantiateWasm callback failed with error: "+c),ka(c)}Ua(b,function(c){a(c.instance,c.module)}).catch(ka);return{}})();w._canvas_saveLayer=(a,b,c,e)=>(w._canvas_saveLayer=F.canvas_saveLayer)(a,b,c,e); +w._canvas_save=a=>(w._canvas_save=F.canvas_save)(a);w._canvas_restore=a=>(w._canvas_restore=F.canvas_restore)(a);w._canvas_restoreToCount=(a,b)=>(w._canvas_restoreToCount=F.canvas_restoreToCount)(a,b);w._canvas_getSaveCount=a=>(w._canvas_getSaveCount=F.canvas_getSaveCount)(a);w._canvas_translate=(a,b,c)=>(w._canvas_translate=F.canvas_translate)(a,b,c);w._canvas_scale=(a,b,c)=>(w._canvas_scale=F.canvas_scale)(a,b,c);w._canvas_rotate=(a,b)=>(w._canvas_rotate=F.canvas_rotate)(a,b); +w._canvas_skew=(a,b,c)=>(w._canvas_skew=F.canvas_skew)(a,b,c);w._canvas_transform=(a,b)=>(w._canvas_transform=F.canvas_transform)(a,b);w._canvas_clipRect=(a,b,c,e)=>(w._canvas_clipRect=F.canvas_clipRect)(a,b,c,e);w._canvas_clipRRect=(a,b,c)=>(w._canvas_clipRRect=F.canvas_clipRRect)(a,b,c);w._canvas_clipPath=(a,b,c)=>(w._canvas_clipPath=F.canvas_clipPath)(a,b,c);w._canvas_drawColor=(a,b,c)=>(w._canvas_drawColor=F.canvas_drawColor)(a,b,c); +w._canvas_drawLine=(a,b,c,e,f,g)=>(w._canvas_drawLine=F.canvas_drawLine)(a,b,c,e,f,g);w._canvas_drawPaint=(a,b)=>(w._canvas_drawPaint=F.canvas_drawPaint)(a,b);w._canvas_drawRect=(a,b,c)=>(w._canvas_drawRect=F.canvas_drawRect)(a,b,c);w._canvas_drawRRect=(a,b,c)=>(w._canvas_drawRRect=F.canvas_drawRRect)(a,b,c);w._canvas_drawDRRect=(a,b,c,e)=>(w._canvas_drawDRRect=F.canvas_drawDRRect)(a,b,c,e);w._canvas_drawOval=(a,b,c)=>(w._canvas_drawOval=F.canvas_drawOval)(a,b,c); +w._canvas_drawCircle=(a,b,c,e,f)=>(w._canvas_drawCircle=F.canvas_drawCircle)(a,b,c,e,f);w._canvas_drawArc=(a,b,c,e,f,g)=>(w._canvas_drawArc=F.canvas_drawArc)(a,b,c,e,f,g);w._canvas_drawPath=(a,b,c)=>(w._canvas_drawPath=F.canvas_drawPath)(a,b,c);w._canvas_drawShadow=(a,b,c,e,f,g)=>(w._canvas_drawShadow=F.canvas_drawShadow)(a,b,c,e,f,g);w._canvas_drawParagraph=(a,b,c,e)=>(w._canvas_drawParagraph=F.canvas_drawParagraph)(a,b,c,e); +w._canvas_drawPicture=(a,b)=>(w._canvas_drawPicture=F.canvas_drawPicture)(a,b);w._canvas_drawImage=(a,b,c,e,f,g)=>(w._canvas_drawImage=F.canvas_drawImage)(a,b,c,e,f,g);w._canvas_drawImageRect=(a,b,c,e,f,g)=>(w._canvas_drawImageRect=F.canvas_drawImageRect)(a,b,c,e,f,g);w._canvas_drawImageNine=(a,b,c,e,f,g)=>(w._canvas_drawImageNine=F.canvas_drawImageNine)(a,b,c,e,f,g);w._canvas_drawVertices=(a,b,c,e)=>(w._canvas_drawVertices=F.canvas_drawVertices)(a,b,c,e); +w._canvas_drawPoints=(a,b,c,e,f)=>(w._canvas_drawPoints=F.canvas_drawPoints)(a,b,c,e,f);w._canvas_drawAtlas=(a,b,c,e,f,g,l,n,r)=>(w._canvas_drawAtlas=F.canvas_drawAtlas)(a,b,c,e,f,g,l,n,r);w._canvas_getTransform=(a,b)=>(w._canvas_getTransform=F.canvas_getTransform)(a,b);w._canvas_getLocalClipBounds=(a,b)=>(w._canvas_getLocalClipBounds=F.canvas_getLocalClipBounds)(a,b);w._canvas_getDeviceClipBounds=(a,b)=>(w._canvas_getDeviceClipBounds=F.canvas_getDeviceClipBounds)(a,b); +w._contourMeasureIter_create=(a,b,c)=>(w._contourMeasureIter_create=F.contourMeasureIter_create)(a,b,c);w._contourMeasureIter_next=a=>(w._contourMeasureIter_next=F.contourMeasureIter_next)(a);w._contourMeasureIter_dispose=a=>(w._contourMeasureIter_dispose=F.contourMeasureIter_dispose)(a);w._contourMeasure_dispose=a=>(w._contourMeasure_dispose=F.contourMeasure_dispose)(a);w._contourMeasure_length=a=>(w._contourMeasure_length=F.contourMeasure_length)(a); +w._contourMeasure_isClosed=a=>(w._contourMeasure_isClosed=F.contourMeasure_isClosed)(a);w._contourMeasure_getPosTan=(a,b,c,e)=>(w._contourMeasure_getPosTan=F.contourMeasure_getPosTan)(a,b,c,e);w._contourMeasure_getSegment=(a,b,c,e)=>(w._contourMeasure_getSegment=F.contourMeasure_getSegment)(a,b,c,e);w._skData_create=a=>(w._skData_create=F.skData_create)(a);w._skData_getPointer=a=>(w._skData_getPointer=F.skData_getPointer)(a);w._skData_getConstPointer=a=>(w._skData_getConstPointer=F.skData_getConstPointer)(a); +w._skData_getSize=a=>(w._skData_getSize=F.skData_getSize)(a);w._skData_dispose=a=>(w._skData_dispose=F.skData_dispose)(a);w._imageFilter_createBlur=(a,b,c)=>(w._imageFilter_createBlur=F.imageFilter_createBlur)(a,b,c);w._imageFilter_createDilate=(a,b)=>(w._imageFilter_createDilate=F.imageFilter_createDilate)(a,b);w._imageFilter_createErode=(a,b)=>(w._imageFilter_createErode=F.imageFilter_createErode)(a,b); +w._imageFilter_createMatrix=(a,b)=>(w._imageFilter_createMatrix=F.imageFilter_createMatrix)(a,b);w._imageFilter_createFromColorFilter=a=>(w._imageFilter_createFromColorFilter=F.imageFilter_createFromColorFilter)(a);w._imageFilter_compose=(a,b)=>(w._imageFilter_compose=F.imageFilter_compose)(a,b);w._imageFilter_dispose=a=>(w._imageFilter_dispose=F.imageFilter_dispose)(a);w._imageFilter_getFilterBounds=(a,b)=>(w._imageFilter_getFilterBounds=F.imageFilter_getFilterBounds)(a,b); +w._colorFilter_createMode=(a,b)=>(w._colorFilter_createMode=F.colorFilter_createMode)(a,b);w._colorFilter_createMatrix=a=>(w._colorFilter_createMatrix=F.colorFilter_createMatrix)(a);w._colorFilter_createSRGBToLinearGamma=()=>(w._colorFilter_createSRGBToLinearGamma=F.colorFilter_createSRGBToLinearGamma)();w._colorFilter_createLinearToSRGBGamma=()=>(w._colorFilter_createLinearToSRGBGamma=F.colorFilter_createLinearToSRGBGamma)(); +w._colorFilter_compose=(a,b)=>(w._colorFilter_compose=F.colorFilter_compose)(a,b);w._colorFilter_dispose=a=>(w._colorFilter_dispose=F.colorFilter_dispose)(a);w._maskFilter_createBlur=(a,b)=>(w._maskFilter_createBlur=F.maskFilter_createBlur)(a,b);w._maskFilter_dispose=a=>(w._maskFilter_dispose=F.maskFilter_dispose)(a);w._fontCollection_create=()=>(w._fontCollection_create=F.fontCollection_create)();w._fontCollection_dispose=a=>(w._fontCollection_dispose=F.fontCollection_dispose)(a); +w._typeface_create=a=>(w._typeface_create=F.typeface_create)(a);w._typeface_dispose=a=>(w._typeface_dispose=F.typeface_dispose)(a);w._typefaces_filterCoveredCodePoints=(a,b,c,e)=>(w._typefaces_filterCoveredCodePoints=F.typefaces_filterCoveredCodePoints)(a,b,c,e);w._fontCollection_registerTypeface=(a,b,c)=>(w._fontCollection_registerTypeface=F.fontCollection_registerTypeface)(a,b,c);w._fontCollection_clearCaches=a=>(w._fontCollection_clearCaches=F.fontCollection_clearCaches)(a); +w._image_createFromPicture=(a,b,c)=>(w._image_createFromPicture=F.image_createFromPicture)(a,b,c);w._image_createFromPixels=(a,b,c,e,f)=>(w._image_createFromPixels=F.image_createFromPixels)(a,b,c,e,f);w._image_createFromTextureSource=(a,b,c,e)=>(w._image_createFromTextureSource=F.image_createFromTextureSource)(a,b,c,e);w._image_ref=a=>(w._image_ref=F.image_ref)(a);w._image_dispose=a=>(w._image_dispose=F.image_dispose)(a);w._image_getWidth=a=>(w._image_getWidth=F.image_getWidth)(a); +w._image_getHeight=a=>(w._image_getHeight=F.image_getHeight)(a);w._paint_create=()=>(w._paint_create=F.paint_create)();w._paint_dispose=a=>(w._paint_dispose=F.paint_dispose)(a);w._paint_setBlendMode=(a,b)=>(w._paint_setBlendMode=F.paint_setBlendMode)(a,b);w._paint_setStyle=(a,b)=>(w._paint_setStyle=F.paint_setStyle)(a,b);w._paint_getStyle=a=>(w._paint_getStyle=F.paint_getStyle)(a);w._paint_setStrokeWidth=(a,b)=>(w._paint_setStrokeWidth=F.paint_setStrokeWidth)(a,b); +w._paint_getStrokeWidth=a=>(w._paint_getStrokeWidth=F.paint_getStrokeWidth)(a);w._paint_setStrokeCap=(a,b)=>(w._paint_setStrokeCap=F.paint_setStrokeCap)(a,b);w._paint_getStrokeCap=a=>(w._paint_getStrokeCap=F.paint_getStrokeCap)(a);w._paint_setStrokeJoin=(a,b)=>(w._paint_setStrokeJoin=F.paint_setStrokeJoin)(a,b);w._paint_getStrokeJoin=a=>(w._paint_getStrokeJoin=F.paint_getStrokeJoin)(a);w._paint_setAntiAlias=(a,b)=>(w._paint_setAntiAlias=F.paint_setAntiAlias)(a,b); +w._paint_getAntiAlias=a=>(w._paint_getAntiAlias=F.paint_getAntiAlias)(a);w._paint_setColorInt=(a,b)=>(w._paint_setColorInt=F.paint_setColorInt)(a,b);w._paint_getColorInt=a=>(w._paint_getColorInt=F.paint_getColorInt)(a);w._paint_setMiterLimit=(a,b)=>(w._paint_setMiterLimit=F.paint_setMiterLimit)(a,b);w._paint_getMiterLImit=a=>(w._paint_getMiterLImit=F.paint_getMiterLImit)(a);w._paint_setShader=(a,b)=>(w._paint_setShader=F.paint_setShader)(a,b); +w._paint_setImageFilter=(a,b)=>(w._paint_setImageFilter=F.paint_setImageFilter)(a,b);w._paint_setColorFilter=(a,b)=>(w._paint_setColorFilter=F.paint_setColorFilter)(a,b);w._paint_setMaskFilter=(a,b)=>(w._paint_setMaskFilter=F.paint_setMaskFilter)(a,b);w._path_create=()=>(w._path_create=F.path_create)();w._path_dispose=a=>(w._path_dispose=F.path_dispose)(a);w._path_copy=a=>(w._path_copy=F.path_copy)(a);w._path_setFillType=(a,b)=>(w._path_setFillType=F.path_setFillType)(a,b); +w._path_getFillType=a=>(w._path_getFillType=F.path_getFillType)(a);w._path_moveTo=(a,b,c)=>(w._path_moveTo=F.path_moveTo)(a,b,c);w._path_relativeMoveTo=(a,b,c)=>(w._path_relativeMoveTo=F.path_relativeMoveTo)(a,b,c);w._path_lineTo=(a,b,c)=>(w._path_lineTo=F.path_lineTo)(a,b,c);w._path_relativeLineTo=(a,b,c)=>(w._path_relativeLineTo=F.path_relativeLineTo)(a,b,c);w._path_quadraticBezierTo=(a,b,c,e,f)=>(w._path_quadraticBezierTo=F.path_quadraticBezierTo)(a,b,c,e,f); +w._path_relativeQuadraticBezierTo=(a,b,c,e,f)=>(w._path_relativeQuadraticBezierTo=F.path_relativeQuadraticBezierTo)(a,b,c,e,f);w._path_cubicTo=(a,b,c,e,f,g,l)=>(w._path_cubicTo=F.path_cubicTo)(a,b,c,e,f,g,l);w._path_relativeCubicTo=(a,b,c,e,f,g,l)=>(w._path_relativeCubicTo=F.path_relativeCubicTo)(a,b,c,e,f,g,l);w._path_conicTo=(a,b,c,e,f,g)=>(w._path_conicTo=F.path_conicTo)(a,b,c,e,f,g);w._path_relativeConicTo=(a,b,c,e,f,g)=>(w._path_relativeConicTo=F.path_relativeConicTo)(a,b,c,e,f,g); +w._path_arcToOval=(a,b,c,e,f)=>(w._path_arcToOval=F.path_arcToOval)(a,b,c,e,f);w._path_arcToRotated=(a,b,c,e,f,g,l,n)=>(w._path_arcToRotated=F.path_arcToRotated)(a,b,c,e,f,g,l,n);w._path_relativeArcToRotated=(a,b,c,e,f,g,l,n)=>(w._path_relativeArcToRotated=F.path_relativeArcToRotated)(a,b,c,e,f,g,l,n);w._path_addRect=(a,b)=>(w._path_addRect=F.path_addRect)(a,b);w._path_addOval=(a,b)=>(w._path_addOval=F.path_addOval)(a,b);w._path_addArc=(a,b,c,e)=>(w._path_addArc=F.path_addArc)(a,b,c,e); +w._path_addPolygon=(a,b,c,e)=>(w._path_addPolygon=F.path_addPolygon)(a,b,c,e);w._path_addRRect=(a,b)=>(w._path_addRRect=F.path_addRRect)(a,b);w._path_addPath=(a,b,c,e)=>(w._path_addPath=F.path_addPath)(a,b,c,e);w._path_close=a=>(w._path_close=F.path_close)(a);w._path_reset=a=>(w._path_reset=F.path_reset)(a);w._path_contains=(a,b,c)=>(w._path_contains=F.path_contains)(a,b,c);w._path_transform=(a,b)=>(w._path_transform=F.path_transform)(a,b); +w._path_getBounds=(a,b)=>(w._path_getBounds=F.path_getBounds)(a,b);w._path_combine=(a,b,c)=>(w._path_combine=F.path_combine)(a,b,c);w._pictureRecorder_create=()=>(w._pictureRecorder_create=F.pictureRecorder_create)();w._pictureRecorder_dispose=a=>(w._pictureRecorder_dispose=F.pictureRecorder_dispose)(a);w._pictureRecorder_beginRecording=(a,b)=>(w._pictureRecorder_beginRecording=F.pictureRecorder_beginRecording)(a,b);w._pictureRecorder_endRecording=a=>(w._pictureRecorder_endRecording=F.pictureRecorder_endRecording)(a); +w._picture_getCullRect=(a,b)=>(w._picture_getCullRect=F.picture_getCullRect)(a,b);w._picture_dispose=a=>(w._picture_dispose=F.picture_dispose)(a);w._picture_approximateBytesUsed=a=>(w._picture_approximateBytesUsed=F.picture_approximateBytesUsed)(a);w._shader_createLinearGradient=(a,b,c,e,f,g)=>(w._shader_createLinearGradient=F.shader_createLinearGradient)(a,b,c,e,f,g);w._shader_createRadialGradient=(a,b,c,e,f,g,l,n)=>(w._shader_createRadialGradient=F.shader_createRadialGradient)(a,b,c,e,f,g,l,n); +w._shader_createConicalGradient=(a,b,c,e,f,g,l,n)=>(w._shader_createConicalGradient=F.shader_createConicalGradient)(a,b,c,e,f,g,l,n);w._shader_createSweepGradient=(a,b,c,e,f,g,l,n,r)=>(w._shader_createSweepGradient=F.shader_createSweepGradient)(a,b,c,e,f,g,l,n,r);w._shader_dispose=a=>(w._shader_dispose=F.shader_dispose)(a);w._runtimeEffect_create=a=>(w._runtimeEffect_create=F.runtimeEffect_create)(a);w._runtimeEffect_dispose=a=>(w._runtimeEffect_dispose=F.runtimeEffect_dispose)(a); +w._runtimeEffect_getUniformSize=a=>(w._runtimeEffect_getUniformSize=F.runtimeEffect_getUniformSize)(a);w._shader_createRuntimeEffectShader=(a,b,c,e)=>(w._shader_createRuntimeEffectShader=F.shader_createRuntimeEffectShader)(a,b,c,e);w._shader_createFromImage=(a,b,c,e,f)=>(w._shader_createFromImage=F.shader_createFromImage)(a,b,c,e,f);w._skString_allocate=a=>(w._skString_allocate=F.skString_allocate)(a);w._skString_getData=a=>(w._skString_getData=F.skString_getData)(a); +w._skString_free=a=>(w._skString_free=F.skString_free)(a);w._skString16_allocate=a=>(w._skString16_allocate=F.skString16_allocate)(a);w._skString16_getData=a=>(w._skString16_getData=F.skString16_getData)(a);w._skString16_free=a=>(w._skString16_free=F.skString16_free)(a);var Db=(a,b,c,e,f)=>(Db=F.emscripten_dispatch_to_thread_)(a,b,c,e,f);w._surface_create=()=>(w._surface_create=F.surface_create)();w._surface_getThreadId=a=>(w._surface_getThreadId=F.surface_getThreadId)(a); +w._surface_setCallbackHandler=(a,b)=>(w._surface_setCallbackHandler=F.surface_setCallbackHandler)(a,b);w._surface_destroy=a=>(w._surface_destroy=F.surface_destroy)(a);w._surface_renderPicture=(a,b)=>(w._surface_renderPicture=F.surface_renderPicture)(a,b);w._surface_rasterizeImage=(a,b,c)=>(w._surface_rasterizeImage=F.surface_rasterizeImage)(a,b,c);var Zc=w._surface_onRenderComplete=(a,b,c)=>(Zc=w._surface_onRenderComplete=F.surface_onRenderComplete)(a,b,c); +w._lineMetrics_create=(a,b,c,e,f,g,l,n,r)=>(w._lineMetrics_create=F.lineMetrics_create)(a,b,c,e,f,g,l,n,r);w._lineMetrics_dispose=a=>(w._lineMetrics_dispose=F.lineMetrics_dispose)(a);w._lineMetrics_getHardBreak=a=>(w._lineMetrics_getHardBreak=F.lineMetrics_getHardBreak)(a);w._lineMetrics_getAscent=a=>(w._lineMetrics_getAscent=F.lineMetrics_getAscent)(a);w._lineMetrics_getDescent=a=>(w._lineMetrics_getDescent=F.lineMetrics_getDescent)(a); +w._lineMetrics_getUnscaledAscent=a=>(w._lineMetrics_getUnscaledAscent=F.lineMetrics_getUnscaledAscent)(a);w._lineMetrics_getHeight=a=>(w._lineMetrics_getHeight=F.lineMetrics_getHeight)(a);w._lineMetrics_getWidth=a=>(w._lineMetrics_getWidth=F.lineMetrics_getWidth)(a);w._lineMetrics_getLeft=a=>(w._lineMetrics_getLeft=F.lineMetrics_getLeft)(a);w._lineMetrics_getBaseline=a=>(w._lineMetrics_getBaseline=F.lineMetrics_getBaseline)(a);w._lineMetrics_getLineNumber=a=>(w._lineMetrics_getLineNumber=F.lineMetrics_getLineNumber)(a); +w._lineMetrics_getStartIndex=a=>(w._lineMetrics_getStartIndex=F.lineMetrics_getStartIndex)(a);w._lineMetrics_getEndIndex=a=>(w._lineMetrics_getEndIndex=F.lineMetrics_getEndIndex)(a);w._paragraph_dispose=a=>(w._paragraph_dispose=F.paragraph_dispose)(a);w._paragraph_getWidth=a=>(w._paragraph_getWidth=F.paragraph_getWidth)(a);w._paragraph_getHeight=a=>(w._paragraph_getHeight=F.paragraph_getHeight)(a);w._paragraph_getLongestLine=a=>(w._paragraph_getLongestLine=F.paragraph_getLongestLine)(a); +w._paragraph_getMinIntrinsicWidth=a=>(w._paragraph_getMinIntrinsicWidth=F.paragraph_getMinIntrinsicWidth)(a);w._paragraph_getMaxIntrinsicWidth=a=>(w._paragraph_getMaxIntrinsicWidth=F.paragraph_getMaxIntrinsicWidth)(a);w._paragraph_getAlphabeticBaseline=a=>(w._paragraph_getAlphabeticBaseline=F.paragraph_getAlphabeticBaseline)(a);w._paragraph_getIdeographicBaseline=a=>(w._paragraph_getIdeographicBaseline=F.paragraph_getIdeographicBaseline)(a); +w._paragraph_getDidExceedMaxLines=a=>(w._paragraph_getDidExceedMaxLines=F.paragraph_getDidExceedMaxLines)(a);w._paragraph_layout=(a,b)=>(w._paragraph_layout=F.paragraph_layout)(a,b);w._paragraph_getPositionForOffset=(a,b,c,e)=>(w._paragraph_getPositionForOffset=F.paragraph_getPositionForOffset)(a,b,c,e);w._paragraph_getWordBoundary=(a,b,c)=>(w._paragraph_getWordBoundary=F.paragraph_getWordBoundary)(a,b,c);w._paragraph_getLineCount=a=>(w._paragraph_getLineCount=F.paragraph_getLineCount)(a); +w._paragraph_getLineNumberAt=(a,b)=>(w._paragraph_getLineNumberAt=F.paragraph_getLineNumberAt)(a,b);w._paragraph_getLineMetricsAtIndex=(a,b)=>(w._paragraph_getLineMetricsAtIndex=F.paragraph_getLineMetricsAtIndex)(a,b);w._textBoxList_dispose=a=>(w._textBoxList_dispose=F.textBoxList_dispose)(a);w._textBoxList_getLength=a=>(w._textBoxList_getLength=F.textBoxList_getLength)(a);w._textBoxList_getBoxAtIndex=(a,b,c)=>(w._textBoxList_getBoxAtIndex=F.textBoxList_getBoxAtIndex)(a,b,c); +w._paragraph_getBoxesForRange=(a,b,c,e,f)=>(w._paragraph_getBoxesForRange=F.paragraph_getBoxesForRange)(a,b,c,e,f);w._paragraph_getBoxesForPlaceholders=a=>(w._paragraph_getBoxesForPlaceholders=F.paragraph_getBoxesForPlaceholders)(a);w._paragraph_getUnresolvedCodePoints=(a,b,c)=>(w._paragraph_getUnresolvedCodePoints=F.paragraph_getUnresolvedCodePoints)(a,b,c);w._paragraphBuilder_create=(a,b)=>(w._paragraphBuilder_create=F.paragraphBuilder_create)(a,b); +w._paragraphBuilder_dispose=a=>(w._paragraphBuilder_dispose=F.paragraphBuilder_dispose)(a);w._paragraphBuilder_addPlaceholder=(a,b,c,e,f,g)=>(w._paragraphBuilder_addPlaceholder=F.paragraphBuilder_addPlaceholder)(a,b,c,e,f,g);w._paragraphBuilder_addText=(a,b)=>(w._paragraphBuilder_addText=F.paragraphBuilder_addText)(a,b);w._paragraphBuilder_getUtf8Text=(a,b)=>(w._paragraphBuilder_getUtf8Text=F.paragraphBuilder_getUtf8Text)(a,b); +w._paragraphBuilder_pushStyle=(a,b)=>(w._paragraphBuilder_pushStyle=F.paragraphBuilder_pushStyle)(a,b);w._paragraphBuilder_pop=a=>(w._paragraphBuilder_pop=F.paragraphBuilder_pop)(a);w._paragraphBuilder_build=a=>(w._paragraphBuilder_build=F.paragraphBuilder_build)(a);w._unicodePositionBuffer_create=a=>(w._unicodePositionBuffer_create=F.unicodePositionBuffer_create)(a);w._unicodePositionBuffer_getDataPointer=a=>(w._unicodePositionBuffer_getDataPointer=F.unicodePositionBuffer_getDataPointer)(a); +w._unicodePositionBuffer_free=a=>(w._unicodePositionBuffer_free=F.unicodePositionBuffer_free)(a);w._lineBreakBuffer_create=a=>(w._lineBreakBuffer_create=F.lineBreakBuffer_create)(a);w._lineBreakBuffer_getDataPointer=a=>(w._lineBreakBuffer_getDataPointer=F.lineBreakBuffer_getDataPointer)(a);w._lineBreakBuffer_free=a=>(w._lineBreakBuffer_free=F.lineBreakBuffer_free)(a); +w._paragraphBuilder_setGraphemeBreaksUtf16=(a,b)=>(w._paragraphBuilder_setGraphemeBreaksUtf16=F.paragraphBuilder_setGraphemeBreaksUtf16)(a,b);w._paragraphBuilder_setWordBreaksUtf16=(a,b)=>(w._paragraphBuilder_setWordBreaksUtf16=F.paragraphBuilder_setWordBreaksUtf16)(a,b);w._paragraphBuilder_setLineBreaksUtf16=(a,b)=>(w._paragraphBuilder_setLineBreaksUtf16=F.paragraphBuilder_setLineBreaksUtf16)(a,b);w._paragraphStyle_create=()=>(w._paragraphStyle_create=F.paragraphStyle_create)(); +w._paragraphStyle_dispose=a=>(w._paragraphStyle_dispose=F.paragraphStyle_dispose)(a);w._paragraphStyle_setTextAlign=(a,b)=>(w._paragraphStyle_setTextAlign=F.paragraphStyle_setTextAlign)(a,b);w._paragraphStyle_setTextDirection=(a,b)=>(w._paragraphStyle_setTextDirection=F.paragraphStyle_setTextDirection)(a,b);w._paragraphStyle_setMaxLines=(a,b)=>(w._paragraphStyle_setMaxLines=F.paragraphStyle_setMaxLines)(a,b); +w._paragraphStyle_setHeight=(a,b)=>(w._paragraphStyle_setHeight=F.paragraphStyle_setHeight)(a,b);w._paragraphStyle_setTextHeightBehavior=(a,b,c)=>(w._paragraphStyle_setTextHeightBehavior=F.paragraphStyle_setTextHeightBehavior)(a,b,c);w._paragraphStyle_setEllipsis=(a,b)=>(w._paragraphStyle_setEllipsis=F.paragraphStyle_setEllipsis)(a,b);w._paragraphStyle_setStrutStyle=(a,b)=>(w._paragraphStyle_setStrutStyle=F.paragraphStyle_setStrutStyle)(a,b); +w._paragraphStyle_setTextStyle=(a,b)=>(w._paragraphStyle_setTextStyle=F.paragraphStyle_setTextStyle)(a,b);w._strutStyle_create=()=>(w._strutStyle_create=F.strutStyle_create)();w._strutStyle_dispose=a=>(w._strutStyle_dispose=F.strutStyle_dispose)(a);w._strutStyle_setFontFamilies=(a,b,c)=>(w._strutStyle_setFontFamilies=F.strutStyle_setFontFamilies)(a,b,c);w._strutStyle_setFontSize=(a,b)=>(w._strutStyle_setFontSize=F.strutStyle_setFontSize)(a,b); +w._strutStyle_setHeight=(a,b)=>(w._strutStyle_setHeight=F.strutStyle_setHeight)(a,b);w._strutStyle_setHalfLeading=(a,b)=>(w._strutStyle_setHalfLeading=F.strutStyle_setHalfLeading)(a,b);w._strutStyle_setLeading=(a,b)=>(w._strutStyle_setLeading=F.strutStyle_setLeading)(a,b);w._strutStyle_setFontStyle=(a,b,c)=>(w._strutStyle_setFontStyle=F.strutStyle_setFontStyle)(a,b,c);w._strutStyle_setForceStrutHeight=(a,b)=>(w._strutStyle_setForceStrutHeight=F.strutStyle_setForceStrutHeight)(a,b); +w._textStyle_create=()=>(w._textStyle_create=F.textStyle_create)();w._textStyle_copy=a=>(w._textStyle_copy=F.textStyle_copy)(a);w._textStyle_dispose=a=>(w._textStyle_dispose=F.textStyle_dispose)(a);w._textStyle_setColor=(a,b)=>(w._textStyle_setColor=F.textStyle_setColor)(a,b);w._textStyle_setDecoration=(a,b)=>(w._textStyle_setDecoration=F.textStyle_setDecoration)(a,b);w._textStyle_setDecorationColor=(a,b)=>(w._textStyle_setDecorationColor=F.textStyle_setDecorationColor)(a,b); +w._textStyle_setDecorationStyle=(a,b)=>(w._textStyle_setDecorationStyle=F.textStyle_setDecorationStyle)(a,b);w._textStyle_setDecorationThickness=(a,b)=>(w._textStyle_setDecorationThickness=F.textStyle_setDecorationThickness)(a,b);w._textStyle_setFontStyle=(a,b,c)=>(w._textStyle_setFontStyle=F.textStyle_setFontStyle)(a,b,c);w._textStyle_setTextBaseline=(a,b)=>(w._textStyle_setTextBaseline=F.textStyle_setTextBaseline)(a,b);w._textStyle_clearFontFamilies=a=>(w._textStyle_clearFontFamilies=F.textStyle_clearFontFamilies)(a); +w._textStyle_addFontFamilies=(a,b,c)=>(w._textStyle_addFontFamilies=F.textStyle_addFontFamilies)(a,b,c);w._textStyle_setFontSize=(a,b)=>(w._textStyle_setFontSize=F.textStyle_setFontSize)(a,b);w._textStyle_setLetterSpacing=(a,b)=>(w._textStyle_setLetterSpacing=F.textStyle_setLetterSpacing)(a,b);w._textStyle_setWordSpacing=(a,b)=>(w._textStyle_setWordSpacing=F.textStyle_setWordSpacing)(a,b);w._textStyle_setHeight=(a,b)=>(w._textStyle_setHeight=F.textStyle_setHeight)(a,b); +w._textStyle_setHalfLeading=(a,b)=>(w._textStyle_setHalfLeading=F.textStyle_setHalfLeading)(a,b);w._textStyle_setLocale=(a,b)=>(w._textStyle_setLocale=F.textStyle_setLocale)(a,b);w._textStyle_setBackground=(a,b)=>(w._textStyle_setBackground=F.textStyle_setBackground)(a,b);w._textStyle_setForeground=(a,b)=>(w._textStyle_setForeground=F.textStyle_setForeground)(a,b);w._textStyle_addShadow=(a,b,c,e,f)=>(w._textStyle_addShadow=F.textStyle_addShadow)(a,b,c,e,f); +w._textStyle_addFontFeature=(a,b,c)=>(w._textStyle_addFontFeature=F.textStyle_addFontFeature)(a,b,c);w._textStyle_setFontVariations=(a,b,c,e)=>(w._textStyle_setFontVariations=F.textStyle_setFontVariations)(a,b,c,e);w._vertices_create=(a,b,c,e,f,g,l)=>(w._vertices_create=F.vertices_create)(a,b,c,e,f,g,l);w._vertices_dispose=a=>(w._vertices_dispose=F.vertices_dispose)(a);var fb=w._pthread_self=()=>(fb=w._pthread_self=F.pthread_self)(),pb=a=>(pb=F.malloc)(a); +w.__emscripten_tls_init=()=>(w.__emscripten_tls_init=F._emscripten_tls_init)();var ad=w.__emscripten_thread_init=(a,b,c,e,f,g)=>(ad=w.__emscripten_thread_init=F._emscripten_thread_init)(a,b,c,e,f,g);w.__emscripten_thread_crashed=()=>(w.__emscripten_thread_crashed=F._emscripten_thread_crashed)(); +var jc=(a,b,c,e)=>(jc=F._emscripten_run_in_main_runtime_thread_js)(a,b,c,e),db=a=>(db=F._emscripten_thread_free_data)(a),jb=w.__emscripten_thread_exit=a=>(jb=w.__emscripten_thread_exit=F._emscripten_thread_exit)(a),wb=w.__emscripten_check_mailbox=()=>(wb=w.__emscripten_check_mailbox=F._emscripten_check_mailbox)(),Z=(a,b)=>(Z=F.setThrew)(a,b),ib=(a,b)=>(ib=F.emscripten_stack_set_limits)(a,b),N=()=>(N=F.stackSave)(),M=a=>(M=F.stackRestore)(a),Cb=w.stackAlloc=a=>(Cb=w.stackAlloc=F.stackAlloc)(a); +function cd(a,b,c){var e=N();try{return G.get(a)(b,c)}catch(f){M(e);if(f!==f+0)throw f;Z(1,0)}}function hd(a,b,c){var e=N();try{G.get(a)(b,c)}catch(f){M(e);if(f!==f+0)throw f;Z(1,0)}}function bd(a,b){var c=N();try{return G.get(a)(b)}catch(e){M(c);if(e!==e+0)throw e;Z(1,0)}}function jd(a,b,c,e){var f=N();try{G.get(a)(b,c,e)}catch(g){M(f);if(g!==g+0)throw g;Z(1,0)}}function dd(a,b,c,e){var f=N();try{return G.get(a)(b,c,e)}catch(g){M(f);if(g!==g+0)throw g;Z(1,0)}} +function kd(a,b,c,e,f){var g=N();try{G.get(a)(b,c,e,f)}catch(l){M(g);if(l!==l+0)throw l;Z(1,0)}}function ld(a,b,c,e,f,g,l,n){var r=N();try{G.get(a)(b,c,e,f,g,l,n)}catch(u){M(r);if(u!==u+0)throw u;Z(1,0)}}function gd(a,b){var c=N();try{G.get(a)(b)}catch(e){M(c);if(e!==e+0)throw e;Z(1,0)}}function fd(a,b,c,e,f,g,l){var n=N();try{return G.get(a)(b,c,e,f,g,l)}catch(r){M(n);if(r!==r+0)throw r;Z(1,0)}} +function ed(a,b,c,e,f){var g=N();try{return G.get(a)(b,c,e,f)}catch(l){M(g);if(l!==l+0)throw l;Z(1,0)}}w.keepRuntimeAlive=Ka;w.wasmMemory=d;w.wasmExports=F; +w.addFunction=function(a,b){if(!Vc){Vc=new WeakMap;var c=G.length;if(Vc)for(var e=0;e<0+c;e++){var f=G.get(e);f&&Vc.set(f,e)}}if(c=Vc.get(a)||0)return c;if(Wc.length)c=Wc.pop();else{try{G.grow(1)}catch(n){if(!(n instanceof RangeError))throw n;throw"Unable to grow wasm table. Set ALLOW_TABLE_GROWTH.";}c=G.length-1}try{G.set(c,a)}catch(n){if(!(n instanceof TypeError))throw n;if("function"==typeof WebAssembly.Function){e=WebAssembly.Function;f={i:"i32",j:"i64",f:"f32",d:"f64",p:"i32"};for(var g={parameters:[], +results:"v"==b[0]?[]:[f[b[0]]]},l=1;ll?e.push(l):e.push(l%128|128,l>>7);for(l=0;lf?b.push(f):b.push(f%128|128,f>>7);b.push.apply(b,e);b.push(2,7,1,1,101,1,102,0,0,7,5,1,1,102,0,0);b=new WebAssembly.Module(new Uint8Array(b));b=(new WebAssembly.Instance(b, +{e:{f:a}})).exports.f}G.set(c,b)}Vc.set(a,c);return c};w.ExitStatus=Va;w.PThread=I;var nd;Ma=function od(){nd||pd();nd||(Ma=od)}; +function pd(){function a(){if(!nd&&(nd=!0,w.calledRun=!0,!Ba)){A||hb(Ha);ja(w);if(w.onRuntimeInitialized)w.onRuntimeInitialized();if(!A){if(w.postRun)for("function"==typeof w.postRun&&(w.postRun=[w.postRun]);w.postRun.length;){var b=w.postRun.shift();Ia.unshift(b)}hb(Ia)}}}if(!(0 skwasm); diff --git a/canvaskit/skwasm.wasm b/canvaskit/skwasm.wasm new file mode 100644 index 00000000..94b52e13 Binary files /dev/null and b/canvaskit/skwasm.wasm differ diff --git a/canvaskit/skwasm.worker.js b/canvaskit/skwasm.worker.js new file mode 100644 index 00000000..201afe53 --- /dev/null +++ b/canvaskit/skwasm.worker.js @@ -0,0 +1 @@ +"use strict";var Module={};var ENVIRONMENT_IS_NODE=typeof process=="object"&&typeof process.versions=="object"&&typeof process.versions.node=="string";if(ENVIRONMENT_IS_NODE){var nodeWorkerThreads=require("worker_threads");var parentPort=nodeWorkerThreads.parentPort;parentPort.on("message",data=>onmessage({data:data}));var fs=require("fs");Object.assign(global,{self:global,require:require,Module:Module,location:{href:__filename},Worker:nodeWorkerThreads.Worker,importScripts:f=>(0,eval)(fs.readFileSync(f,"utf8")+"//# sourceURL="+f),postMessage:msg=>parentPort.postMessage(msg),performance:global.performance||{now:Date.now}})}var initializedJS=false;function threadPrintErr(){var text=Array.prototype.slice.call(arguments).join(" ");if(ENVIRONMENT_IS_NODE){fs.writeSync(2,text+"\n");return}console.error(text)}function threadAlert(){var text=Array.prototype.slice.call(arguments).join(" ");postMessage({cmd:"alert",text:text,threadId:Module["_pthread_self"]()})}var err=threadPrintErr;self.alert=threadAlert;Module["instantiateWasm"]=(info,receiveInstance)=>{var module=Module["wasmModule"];Module["wasmModule"]=null;var instance=new WebAssembly.Instance(module,info);return receiveInstance(instance)};self.onunhandledrejection=e=>{throw e.reason??e};function handleMessage(e){try{if(e.data.cmd==="load"){let messageQueue=[];self.onmessage=e=>messageQueue.push(e);self.startWorker=instance=>{Module=instance;postMessage({"cmd":"loaded"});for(let msg of messageQueue){handleMessage(msg)}self.onmessage=handleMessage};Module["wasmModule"]=e.data.wasmModule;for(const handler of e.data.handlers){Module[handler]=(...args)=>{postMessage({cmd:"callHandler",handler:handler,args:args})}}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)}else if(e.data.cmd==="run"){Module["__emscripten_thread_init"](e.data.pthread_ptr,/*isMainBrowserThread=*/0,/*isMainRuntimeThread=*/0,/*canBlock=*/1);Module["__emscripten_thread_mailbox_await"](e.data.pthread_ptr);Module["establishStackSpace"]();Module["PThread"].receiveObjectTransfer(e.data);Module["PThread"].threadInitTLS();if(!initializedJS){initializedJS=true}try{Module["invokeEntryPoint"](e.data.start_routine,e.data.arg)}catch(ex){if(ex!="unwind"){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==="checkMailbox"){if(initializedJS){Module["checkMailbox"]()}}else if(e.data.cmd){err("worker.js received unknown command "+e.data.cmd);err(e.data)}}catch(ex){if(Module["__emscripten_thread_crashed"]){Module["__emscripten_thread_crashed"]()}throw ex}}self.onmessage=handleMessage; diff --git a/web/favicon.png b/favicon.png similarity index 100% rename from web/favicon.png rename to favicon.png diff --git a/flutter.js b/flutter.js new file mode 100644 index 00000000..4fd0e51f --- /dev/null +++ b/flutter.js @@ -0,0 +1,377 @@ +// 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((serviceWorkerRegistration) => this._getNewServiceWorker(serviceWorkerRegistration, serviceWorkerVersion)) + .then(this._waitForServiceWorkerActivation); + + // Timeout race promise + return timeout( + serviceWorkerActivation, + timeoutMillis, + "prepareServiceWorker" + ); + } + + /** + * Returns the latest service worker for the given `serviceWorkerRegistration`. + * + * This might return the current service worker, if there's no new service worker + * awaiting to be installed/updated. + * + * @param {ServiceWorkerRegistration} serviceWorkerRegistration + * @param {String} serviceWorkerVersion + * @returns {Promise} + */ + async _getNewServiceWorker(serviceWorkerRegistration, serviceWorkerVersion) { + if (!serviceWorkerRegistration.active && (serviceWorkerRegistration.installing || serviceWorkerRegistration.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 serviceWorkerRegistration.installing || serviceWorkerRegistration.waiting; + } else if (!serviceWorkerRegistration.active.scriptURL.endsWith(serviceWorkerVersion)) { + // When the app updates the serviceWorkerVersion changes, so we + // need to ask the service worker to update. + const newRegistration = await serviceWorkerRegistration.update(); + console.debug("Updating service worker."); + return newRegistration.installing || newRegistration.waiting || newRegistration.active; + } else { + console.debug("Loading from existing service worker."); + return serviceWorkerRegistration.active; + } + } + + /** + * Returns a Promise that resolves when the `serviceWorker` changes its + * state to "activated". + * + * @param {ServiceWorker} serviceWorker + * @returns {Promise} + */ + async _waitForServiceWorkerActivation(serviceWorker) { + if (!serviceWorker || serviceWorker.state == "activated") { + if (!serviceWorker) { + throw new Error("Cannot activate a null service worker!"); + } else { + console.debug("Service worker already active."); + return; + } + } + 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/ios/.gitignore b/ios/.gitignore deleted file mode 100644 index 7a7f9873..00000000 --- a/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/ios/Flutter/AppFrameworkInfo.plist b/ios/Flutter/AppFrameworkInfo.plist deleted file mode 100644 index 9625e105..00000000 --- a/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/ios/Flutter/Debug.xcconfig b/ios/Flutter/Debug.xcconfig deleted file mode 100644 index ec97fc6f..00000000 --- a/ios/Flutter/Debug.xcconfig +++ /dev/null @@ -1,2 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" -#include "Generated.xcconfig" diff --git a/ios/Flutter/Release.xcconfig b/ios/Flutter/Release.xcconfig deleted file mode 100644 index c4855bfe..00000000 --- a/ios/Flutter/Release.xcconfig +++ /dev/null @@ -1,2 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" -#include "Generated.xcconfig" diff --git a/ios/Podfile b/ios/Podfile deleted file mode 100644 index 88359b22..00000000 --- a/ios/Podfile +++ /dev/null @@ -1,41 +0,0 @@ -# Uncomment this line to define a global platform for your project -# platform :ios, '11.0' - -# CocoaPods analytics sends network stats synchronously affecting flutter build latency. -ENV['COCOAPODS_DISABLE_STATS'] = 'true' - -project 'Runner', { - 'Debug' => :debug, - 'Profile' => :release, - 'Release' => :release, -} - -def flutter_root - generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) - unless File.exist?(generated_xcode_build_settings_path) - raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" - end - - File.foreach(generated_xcode_build_settings_path) do |line| - matches = line.match(/FLUTTER_ROOT\=(.*)/) - return matches[1].strip if matches - end - raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" -end - -require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) - -flutter_ios_podfile_setup - -target 'Runner' do - use_frameworks! - use_modular_headers! - - flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) -end - -post_install do |installer| - installer.pods_project.targets.each do |target| - flutter_additional_ios_build_settings(target) - end -end diff --git a/ios/Podfile.lock b/ios/Podfile.lock deleted file mode 100644 index 47ed75d6..00000000 --- a/ios/Podfile.lock +++ /dev/null @@ -1,135 +0,0 @@ -PODS: - - DKImagePickerController/Core (4.3.4): - - DKImagePickerController/ImageDataManager - - DKImagePickerController/Resource - - DKImagePickerController/ImageDataManager (4.3.4) - - DKImagePickerController/PhotoGallery (4.3.4): - - DKImagePickerController/Core - - DKPhotoGallery - - DKImagePickerController/Resource (4.3.4) - - DKPhotoGallery (0.0.17): - - DKPhotoGallery/Core (= 0.0.17) - - DKPhotoGallery/Model (= 0.0.17) - - DKPhotoGallery/Preview (= 0.0.17) - - DKPhotoGallery/Resource (= 0.0.17) - - SDWebImage - - SwiftyGif - - DKPhotoGallery/Core (0.0.17): - - DKPhotoGallery/Model - - DKPhotoGallery/Preview - - SDWebImage - - SwiftyGif - - DKPhotoGallery/Model (0.0.17): - - SDWebImage - - SwiftyGif - - DKPhotoGallery/Preview (0.0.17): - - DKPhotoGallery/Model - - DKPhotoGallery/Resource - - SDWebImage - - SwiftyGif - - DKPhotoGallery/Resource (0.0.17): - - SDWebImage - - SwiftyGif - - file_picker (0.0.1): - - DKImagePickerController/PhotoGallery - - Flutter - - Flutter (1.0.0) - - flutter_native_splash (0.0.1): - - Flutter - - fluttertoast (0.0.2): - - Flutter - - Toast - - FMDB (2.7.5): - - FMDB/standard (= 2.7.5) - - FMDB/standard (2.7.5) - - network_info_plus (0.0.1): - - Flutter - - package_info_plus (0.4.5): - - Flutter - - path_provider_foundation (0.0.1): - - Flutter - - FlutterMacOS - - permission_handler_apple (9.1.1): - - Flutter - - SDWebImage (5.13.5): - - SDWebImage/Core (= 5.13.5) - - SDWebImage/Core (5.13.5) - - shared_preferences_foundation (0.0.1): - - Flutter - - FlutterMacOS - - sqflite (0.0.3): - - Flutter - - FMDB (>= 2.7.5) - - SwiftyGif (5.4.3) - - Toast (4.0.0) - - url_launcher_ios (0.0.1): - - Flutter - -DEPENDENCIES: - - file_picker (from `.symlinks/plugins/file_picker/ios`) - - Flutter (from `Flutter`) - - flutter_native_splash (from `.symlinks/plugins/flutter_native_splash/ios`) - - fluttertoast (from `.symlinks/plugins/fluttertoast/ios`) - - network_info_plus (from `.symlinks/plugins/network_info_plus/ios`) - - package_info_plus (from `.symlinks/plugins/package_info_plus/ios`) - - path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`) - - permission_handler_apple (from `.symlinks/plugins/permission_handler_apple/ios`) - - shared_preferences_foundation (from `.symlinks/plugins/shared_preferences_foundation/darwin`) - - sqflite (from `.symlinks/plugins/sqflite/ios`) - - url_launcher_ios (from `.symlinks/plugins/url_launcher_ios/ios`) - -SPEC REPOS: - trunk: - - DKImagePickerController - - DKPhotoGallery - - FMDB - - SDWebImage - - SwiftyGif - - Toast - -EXTERNAL SOURCES: - file_picker: - :path: ".symlinks/plugins/file_picker/ios" - Flutter: - :path: Flutter - flutter_native_splash: - :path: ".symlinks/plugins/flutter_native_splash/ios" - fluttertoast: - :path: ".symlinks/plugins/fluttertoast/ios" - network_info_plus: - :path: ".symlinks/plugins/network_info_plus/ios" - package_info_plus: - :path: ".symlinks/plugins/package_info_plus/ios" - path_provider_foundation: - :path: ".symlinks/plugins/path_provider_foundation/darwin" - permission_handler_apple: - :path: ".symlinks/plugins/permission_handler_apple/ios" - shared_preferences_foundation: - :path: ".symlinks/plugins/shared_preferences_foundation/darwin" - sqflite: - :path: ".symlinks/plugins/sqflite/ios" - url_launcher_ios: - :path: ".symlinks/plugins/url_launcher_ios/ios" - -SPEC CHECKSUMS: - DKImagePickerController: b512c28220a2b8ac7419f21c491fc8534b7601ac - DKPhotoGallery: fdfad5125a9fdda9cc57df834d49df790dbb4179 - file_picker: ce3938a0df3cc1ef404671531facef740d03f920 - Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854 - flutter_native_splash: 52501b97d1c0a5f898d687f1646226c1f93c56ef - fluttertoast: fafc4fa4d01a6a9e4f772ecd190ffa525e9e2d9c - FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a - network_info_plus: 122280582fe2fa2bbb8681a4269745cd5c3a9b32 - package_info_plus: fd030dabf36271f146f1f3beacd48f564b0f17f7 - path_provider_foundation: 29f094ae23ebbca9d3d0cec13889cd9060c0e943 - permission_handler_apple: e76247795d700c14ea09e3a2d8855d41ee80a2e6 - SDWebImage: 23d714cd599354ee7906dbae26dff89b421c4370 - shared_preferences_foundation: 5b919d13b803cadd15ed2dc053125c68730e5126 - sqflite: 31f7eba61e3074736dff8807a9b41581e4f7f15a - SwiftyGif: 6c3eafd0ce693cad58bb63d2b2fb9bacb8552780 - Toast: 91b396c56ee72a5790816f40d3a94dd357abc196 - url_launcher_ios: 08a3dfac5fb39e8759aeb0abbd5d9480f30fc8b4 - -PODFILE CHECKSUM: ef19549a9bc3046e7bb7d2fab4d021637c0c58a3 - -COCOAPODS: 1.12.1 diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj deleted file mode 100644 index 68ab322c..00000000 --- a/ios/Runner.xcodeproj/project.pbxproj +++ /dev/null @@ -1,554 +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 */; }; - 5A3A6DEA545D05395C03CA7F /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0C7AF1B5C7210FB4BA2BFBE0 /* Pods_Runner.framework */; }; - 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 */; }; -/* End PBXBuildFile 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 */ - 0C7AF1B5C7210FB4BA2BFBE0 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; - 22286F30399C64CCB4A9E4C1 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; 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 = ""; }; - 8E9922996FDE9255F7E55E40 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.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 = ""; }; - A3BAC00BC0A69AD2E62D56C9 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 97C146EB1CF9000F007C117D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 5A3A6DEA545D05395C03CA7F /* Pods_Runner.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 0EBBCA26A17314E53BEB0A9D /* Pods */ = { - isa = PBXGroup; - children = ( - 22286F30399C64CCB4A9E4C1 /* Pods-Runner.debug.xcconfig */, - 8E9922996FDE9255F7E55E40 /* Pods-Runner.release.xcconfig */, - A3BAC00BC0A69AD2E62D56C9 /* Pods-Runner.profile.xcconfig */, - ); - name = Pods; - path = Pods; - sourceTree = ""; - }; - 9740EEB11CF90186004384FC /* Flutter */ = { - isa = PBXGroup; - children = ( - 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, - 9740EEB21CF90195004384FC /* Debug.xcconfig */, - 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, - 9740EEB31CF90195004384FC /* Generated.xcconfig */, - ); - name = Flutter; - sourceTree = ""; - }; - 97C146E51CF9000F007C117D = { - isa = PBXGroup; - children = ( - 9740EEB11CF90186004384FC /* Flutter */, - 97C146F01CF9000F007C117D /* Runner */, - 97C146EF1CF9000F007C117D /* Products */, - 0EBBCA26A17314E53BEB0A9D /* Pods */, - EC11954FB8E6A4DDF0B887BE /* Frameworks */, - ); - sourceTree = ""; - }; - 97C146EF1CF9000F007C117D /* Products */ = { - isa = PBXGroup; - children = ( - 97C146EE1CF9000F007C117D /* Runner.app */, - ); - 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 = ""; - }; - EC11954FB8E6A4DDF0B887BE /* Frameworks */ = { - isa = PBXGroup; - children = ( - 0C7AF1B5C7210FB4BA2BFBE0 /* Pods_Runner.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 97C146ED1CF9000F007C117D /* Runner */ = { - isa = PBXNativeTarget; - buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; - buildPhases = ( - FF29CC94603D1F6DA431600C /* [CP] Check Pods Manifest.lock */, - 9740EEB61CF901F6004384FC /* Run Script */, - 97C146EA1CF9000F007C117D /* Sources */, - 97C146EB1CF9000F007C117D /* Frameworks */, - 97C146EC1CF9000F007C117D /* Resources */, - 9705A1C41CF9048500538489 /* Embed Frameworks */, - 3B06AD1E1E4923F5004D2608 /* Thin Binary */, - 68B5AFE06ECD16CE97286172 /* [CP] Embed Pods Frameworks */, - ); - 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 = { - 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 */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 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 = ( - ); - name = "Thin Binary"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; - }; - 68B5AFE06ECD16CE97286172 /* [CP] Embed Pods Frameworks */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", - ); - name = "[CP] Embed Pods Frameworks"; - outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; - showEnvVarsInLog = 0; - }; - 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"; - }; - FF29CC94603D1F6DA431600C /* [CP] Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", - ); - name = "[CP] Check Pods Manifest.lock"; - outputFileListPaths = ( - ); - outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; - showEnvVarsInLog = 0; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 97C146EA1CF9000F007C117D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, - 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase 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 = 7FHCHBQ25R; - ENABLE_BITCODE = NO; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.suwayomi.tachideskSorayomi; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_VERSION = 5.0; - VERSIONING_SYSTEM = "apple-generic"; - }; - 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 = 7FHCHBQ25R; - ENABLE_BITCODE = NO; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.suwayomi.tachideskSorayomi; - 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 = 7FHCHBQ25R; - ENABLE_BITCODE = NO; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.suwayomi.tachideskSorayomi; - 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 */ - 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/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a6..00000000 --- a/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d98100..00000000 --- a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings deleted file mode 100644 index f9b0d7c5..00000000 --- a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +++ /dev/null @@ -1,8 +0,0 @@ - - - - - PreviewsEnabled - - - diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme deleted file mode 100644 index c87d15a3..00000000 --- a/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ios/Runner.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 21a3cc14..00000000 --- a/ios/Runner.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d98100..00000000 --- a/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings deleted file mode 100644 index f9b0d7c5..00000000 --- a/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +++ /dev/null @@ -1,8 +0,0 @@ - - - - - PreviewsEnabled - - - diff --git a/ios/Runner/AppDelegate.swift b/ios/Runner/AppDelegate.swift deleted file mode 100644 index 70693e4a..00000000 --- a/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/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index d36b1fab..00000000 --- a/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/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png deleted file mode 100644 index 74e5d783..00000000 Binary files a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png deleted file mode 100644 index acfd19a2..00000000 Binary files a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png deleted file mode 100644 index 3c5b1961..00000000 Binary files a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png deleted file mode 100644 index 00308f43..00000000 Binary files a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png deleted file mode 100644 index dad6c76f..00000000 Binary files a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png deleted file mode 100644 index 69f9d3c6..00000000 Binary files a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png deleted file mode 100644 index 0d2379c2..00000000 Binary files a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png deleted file mode 100644 index 3c5b1961..00000000 Binary files a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png deleted file mode 100644 index 7252df3f..00000000 Binary files a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png deleted file mode 100644 index 6aad7598..00000000 Binary files a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png deleted file mode 100644 index b9acc025..00000000 Binary files a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png deleted file mode 100644 index 01b839ac..00000000 Binary files a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png deleted file mode 100644 index 81ee0a09..00000000 Binary files a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png deleted file mode 100644 index 576e32a3..00000000 Binary files a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png deleted file mode 100644 index 6aad7598..00000000 Binary files a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png deleted file mode 100644 index 1731f787..00000000 Binary files a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png deleted file mode 100644 index 01003287..00000000 Binary files a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png deleted file mode 100644 index aa6b4de6..00000000 Binary files a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png deleted file mode 100644 index dccf08c6..00000000 Binary files a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png deleted file mode 100644 index f3a3cb1e..00000000 Binary files a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png deleted file mode 100644 index b363dff4..00000000 Binary files a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/BrandingImage.imageset/BrandingImage.png b/ios/Runner/Assets.xcassets/BrandingImage.imageset/BrandingImage.png deleted file mode 100644 index dd88e17b..00000000 Binary files a/ios/Runner/Assets.xcassets/BrandingImage.imageset/BrandingImage.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/BrandingImage.imageset/BrandingImage@2x.png b/ios/Runner/Assets.xcassets/BrandingImage.imageset/BrandingImage@2x.png deleted file mode 100644 index 0e69d9a5..00000000 Binary files a/ios/Runner/Assets.xcassets/BrandingImage.imageset/BrandingImage@2x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/BrandingImage.imageset/BrandingImage@3x.png b/ios/Runner/Assets.xcassets/BrandingImage.imageset/BrandingImage@3x.png deleted file mode 100644 index 9b481e42..00000000 Binary files a/ios/Runner/Assets.xcassets/BrandingImage.imageset/BrandingImage@3x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/BrandingImage.imageset/Contents.json b/ios/Runner/Assets.xcassets/BrandingImage.imageset/Contents.json deleted file mode 100644 index 12712275..00000000 --- a/ios/Runner/Assets.xcassets/BrandingImage.imageset/Contents.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "images" : [ - { - "filename" : "BrandingImage.png", - "idiom" : "universal", - "scale" : "1x" - }, - { - "filename" : "BrandingImage@2x.png", - "idiom" : "universal", - "scale" : "2x" - }, - { - "filename" : "BrandingImage@3x.png", - "idiom" : "universal", - "scale" : "3x" - } - ], - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json b/ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json deleted file mode 100644 index 8bb185b1..00000000 --- a/ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "images" : [ - { - "filename" : "background.png", - "idiom" : "universal" - }, - { - "appearances" : [ - { - "appearance" : "luminosity", - "value" : "dark" - } - ], - "filename" : "darkbackground.png", - "idiom" : "universal" - } - ], - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png b/ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png deleted file mode 100644 index b0dc5a7e..00000000 Binary files a/ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/LaunchBackground.imageset/darkbackground.png b/ios/Runner/Assets.xcassets/LaunchBackground.imageset/darkbackground.png deleted file mode 100644 index 8d8cca37..00000000 Binary files a/ios/Runner/Assets.xcassets/LaunchBackground.imageset/darkbackground.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json deleted file mode 100644 index f3387d4a..00000000 --- a/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "images" : [ - { - "filename" : "LaunchImage.png", - "idiom" : "universal", - "scale" : "1x" - }, - { - "appearances" : [ - { - "appearance" : "luminosity", - "value" : "dark" - } - ], - "filename" : "LaunchImageDark.png", - "idiom" : "universal", - "scale" : "1x" - }, - { - "filename" : "LaunchImage@2x.png", - "idiom" : "universal", - "scale" : "2x" - }, - { - "appearances" : [ - { - "appearance" : "luminosity", - "value" : "dark" - } - ], - "filename" : "LaunchImageDark@2x.png", - "idiom" : "universal", - "scale" : "2x" - }, - { - "filename" : "LaunchImage@3x.png", - "idiom" : "universal", - "scale" : "3x" - }, - { - "appearances" : [ - { - "appearance" : "luminosity", - "value" : "dark" - } - ], - "filename" : "LaunchImageDark@3x.png", - "idiom" : "universal", - "scale" : "3x" - } - ], - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png deleted file mode 100644 index de872001..00000000 Binary files a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png deleted file mode 100644 index b7fbc3b1..00000000 Binary files a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png deleted file mode 100644 index 5be1b185..00000000 Binary files a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImageDark.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImageDark.png deleted file mode 100644 index e71139cb..00000000 Binary files a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImageDark.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImageDark@2x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImageDark@2x.png deleted file mode 100644 index 2e33bc0f..00000000 Binary files a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImageDark@2x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImageDark@3x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImageDark@3x.png deleted file mode 100644 index ab32671c..00000000 Binary files a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImageDark@3x.png and /dev/null differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md deleted file mode 100644 index 89c2725b..00000000 --- a/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/ios/Runner/Base.lproj/LaunchScreen.storyboard b/ios/Runner/Base.lproj/LaunchScreen.storyboard deleted file mode 100644 index 6453403b..00000000 --- a/ios/Runner/Base.lproj/LaunchScreen.storyboard +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ios/Runner/Base.lproj/Main.storyboard b/ios/Runner/Base.lproj/Main.storyboard deleted file mode 100644 index f3c28516..00000000 --- a/ios/Runner/Base.lproj/Main.storyboard +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist deleted file mode 100644 index 1bde876c..00000000 --- a/ios/Runner/Info.plist +++ /dev/null @@ -1,67 +0,0 @@ - - - - - CFBundleDevelopmentRegion - $(DEVELOPMENT_LANGUAGE) - CFBundleDisplayName - Tachidesk Sorayomi - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - Sorayomi - 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 - - UIStatusBarHidden - - CFBundleLocalizations - - ar - de - en - es - fr - pt - uk - ko - pt-pt - zh - zh-hans - - - diff --git a/ios/Runner/Runner-Bridging-Header.h b/ios/Runner/Runner-Bridging-Header.h deleted file mode 100644 index 308a2a56..00000000 --- a/ios/Runner/Runner-Bridging-Header.h +++ /dev/null @@ -1 +0,0 @@ -#import "GeneratedPluginRegistrant.h" diff --git a/l10n.yaml b/l10n.yaml deleted file mode 100644 index a572cc9b..00000000 --- a/l10n.yaml +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright (c) 2023 Contributors to the Suwayomi project -# -# 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/. - -arb-dir: lib/src/l10n -template-arb-file: app_en.arb -output-localization-file: app_localizations.dart \ No newline at end of file diff --git a/lib/main.dart b/lib/main.dart deleted file mode 100644 index 8ae01949..00000000 --- a/lib/main.dart +++ /dev/null @@ -1,62 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:io'; - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter/services.dart'; -import 'package:go_router/go_router.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:package_info_plus/package_info_plus.dart'; -import 'package:path/path.dart' as path; -import 'package:path_provider/path_provider.dart'; -import 'package:shared_preferences/shared_preferences.dart'; - -import 'src/features/about/presentation/about/controllers/about_controller.dart'; -import 'src/global_providers/global_providers.dart'; -import 'src/sorayomi.dart'; - -Future main() async { - WidgetsFlutterBinding.ensureInitialized(); - final packageInfo = await PackageInfo.fromPlatform(); - final sharedPreferences = await SharedPreferences.getInstance(); - - final Directory? appDirectory; - if (!kIsWeb) { - final appDocDirectory = await getApplicationDocumentsDirectory(); - appDirectory = Directory(path.join(appDocDirectory.path, 'Sorayomi')); - - await appDirectory.create(recursive: true); - - final cacheFiles = ['dio_cache.hive', 'dio_cache.lock']; - for (final cacheFile in cacheFiles) { - final oldCacheFilePath = path.join(appDocDirectory.path, cacheFile); - final newCacheFilePath = path.join(appDirectory.path, cacheFile); - - if (!(await File(newCacheFilePath).exists()) && - await File(oldCacheFilePath).exists()) { - await File(oldCacheFilePath).rename(newCacheFilePath); - } - } - } else { - appDirectory = null; - } - - SystemChrome.setPreferredOrientations(DeviceOrientation.values); - GoRouter.optionURLReflectsImperativeAPIs = true; - - runApp( - ProviderScope( - overrides: [ - packageInfoProvider.overrideWithValue(packageInfo), - sharedPreferencesProvider.overrideWithValue(sharedPreferences), - appDirectoryProvider.overrideWithValue(appDirectory), - ], - child: const Sorayomi(), - ), - ); -} diff --git a/lib/src/constants/app_constants.dart b/lib/src/constants/app_constants.dart deleted file mode 100644 index feb4a377..00000000 --- a/lib/src/constants/app_constants.dart +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -const Duration kDuration = Duration(milliseconds: 500); -const Duration kInstantDuration = Duration(microseconds: 1); -const Duration kLongDuration = Duration(seconds: 2); - -const Curve kCurve = Curves.easeIn; -const Size kMagnifierSize = Size(77.37, 37.9); -const MagnifierDecoration kMagnifierDecoration = MagnifierDecoration( - shape: RoundedRectangleBorder( - borderRadius: BorderRadius.all(Radius.circular(40))), - shadows: [ - BoxShadow( - blurRadius: 1.5, - offset: Offset(0, 2), - spreadRadius: 0.75, - color: Color.fromARGB(25, 0, 0, 0)) - ], -); - -const kDebounceDuration = Duration(milliseconds: 500); diff --git a/lib/src/constants/app_sizes.dart b/lib/src/constants/app_sizes.dart deleted file mode 100644 index b3cef0c7..00000000 --- a/lib/src/constants/app_sizes.dart +++ /dev/null @@ -1,104 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:math'; - -import 'package:flutter/material.dart'; - -import 'app_constants.dart'; -import 'db_keys.dart'; - -const kTabSize = Size.fromHeight(kAppBarBottomHeight); -const kAppBarBottomHeight = 64.0; -const kDrawerWidth = 384.0; - -Size kCalculateAppBarBottomSize(List checks) { - final multiplier = - checks.map((e) => e ? 1 : 0).toList().fold(0, (v1, v2) => v1 + v2); - return Size.fromHeight(kAppBarBottomHeight * multiplier); -} - -Offset kMagnifierPosition(Offset position, Size size, double multiplier) => - Offset( - max( - min( - position.dx - (kMagnifierSize.width * multiplier * .5), - size.width - (kMagnifierSize.width * multiplier * .5), - ), - -(kMagnifierSize.width * multiplier * .5), - ), - max( - min( - position.dy - (kMagnifierSize.height * multiplier), - size.height - (kMagnifierSize.height * multiplier * 1.25), - ), - -(kMagnifierSize.height * multiplier * .5), - ), - ); - -Offset kMagnifierOffset(Offset position, Size size, double multiplier) { - return Offset( - 0, - max(0, min(position.dy, (kMagnifierSize.height * multiplier))) * .5, - ); -} - -/// Constant sizes to be used in the app (paddings, gaps, rounded corners etc.) -enum KEdgeInsets { - a2(EdgeInsets.all(2)), - a4(EdgeInsets.all(4)), - a8(EdgeInsets.all(8)), - a16(EdgeInsets.all(16)), - h8v4(EdgeInsets.symmetric(horizontal: 8, vertical: 4)), - h8v16(EdgeInsets.symmetric(horizontal: 8, vertical: 16)), - h16v8(EdgeInsets.symmetric(horizontal: 16.0, vertical: 8.0)), - h4v8(EdgeInsets.symmetric(horizontal: 4.0, vertical: 8.0)), - h16v4(EdgeInsets.symmetric(horizontal: 16.0, vertical: 4.0)), - h16(EdgeInsets.symmetric(horizontal: 16.0)), - h8(EdgeInsets.symmetric(horizontal: 8.0)), - v8(EdgeInsets.symmetric(vertical: 8)), - v16(EdgeInsets.symmetric(vertical: 16)), - v4(EdgeInsets.symmetric(vertical: 4)), - h4(EdgeInsets.symmetric(horizontal: 4)), - ol4(EdgeInsets.only(left: 4)), - ; - - const KEdgeInsets(this.size); - - final EdgeInsets size; -} - -enum KBorderRadius { - r8(BorderRadius.all(Radius.circular(8))), - r12(BorderRadius.all(Radius.circular(12))), - r16(BorderRadius.all(Radius.circular(16))), - rT16(BorderRadius.vertical(top: Radius.circular(16))), - r32(BorderRadius.all(Radius.circular(32))), - ; - - const KBorderRadius(this.radius); - final BorderRadius radius; -} - -enum KRadius { - r8(Radius.circular(8)), - r12(Radius.circular(12)), - r16(Radius.circular(16)), - rT16(Radius.circular(16)), - r32(Radius.circular(32)), - ; - - const KRadius(this.radius); - final Radius radius; -} - -SliverGridDelegateWithMaxCrossAxisExtent mangaCoverGridDelegate(double? size) => - SliverGridDelegateWithMaxCrossAxisExtent( - maxCrossAxisExtent: size ?? DBKeys.gridMangaCoverWidth.initial, - crossAxisSpacing: 2.0, - mainAxisSpacing: 2.0, - childAspectRatio: 0.75, - ); diff --git a/lib/src/constants/db_keys.dart b/lib/src/constants/db_keys.dart deleted file mode 100644 index 282702ea..00000000 --- a/lib/src/constants/db_keys.dart +++ /dev/null @@ -1,61 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flex_color_scheme/flex_color_scheme.dart'; -import 'package:flutter/material.dart'; - -import 'enum.dart'; - -enum DBKeys { - serverUrl('http://127.0.0.1'), - serverPort(4567), - serverPortToggle(true), - sourceLanguageFilter(["all", "lastUsed", "en", "localsourcelang"]), - extensionLanguageFilter(["installed", "update", "en", "all"]), - sourceLastUsed(null), - themeMode(ThemeMode.system), - isTrueBlack(false), - authType(AuthType.none), - basicCredentials(null), - readerMode(ReaderMode.webtoon), - readerPadding(0.0), - readerMagnifierSize(1.0), - readerNavigationLayout(ReaderNavigationLayout.disabled), - invertTap(false), - quickSearchToggle(true), - swipeToggle(true), - scrollAnimation(true), - showNSFW(true), - downloadedBadge(true), - unreadBadge(true), - languageBadge(false), - l10n(Locale('en')), - mangaFilterDownloaded(null), - mangaFilterUnread(null), - mangaFilterCompleted(null), - chapterFilterDownloaded(null), - chapterFilterUnread(null), - chapterFilterBookmarked(null), - mangaSort(MangaSort.alphabetical), - mangaSortDirection(true), // asc=true, dsc=false - chapterSort(ChapterSort.source), - chapterSortDirection(false), // asc=true, dsc=false - libraryDisplayMode(DisplayMode.grid), - sourceDisplayMode(DisplayMode.grid), - gridMangaCoverWidth(192.0), - readerOverlay(true), - volumeTap(false), - volumeTapInvert(false), - pinchToZoom(true), - flexScheme(FlexScheme.material), - ; - - const DBKeys(this.initial); - - final dynamic initial; -} - -enum DBStoreName { settings } diff --git a/lib/src/constants/endpoints.dart b/lib/src/constants/endpoints.dart deleted file mode 100644 index a623c2b6..00000000 --- a/lib/src/constants/endpoints.dart +++ /dev/null @@ -1,125 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'db_keys.dart'; - -abstract class Endpoints { - // base url - static String baseApi({ - String? baseUrl, - int? port, - bool addPort = true, - bool appendApiToUrl = true, - }) => - "${baseUrl ?? DBKeys.serverUrl.initial}" - "${port != null && addPort ? ":$port" : ''}" - "${appendApiToUrl ? '/api/v1' : ''}"; - - // receiveTimeout - static const Duration receiveTimeout = Duration(minutes: 1); - - // connectTimeout - static const Duration connectionTimeout = Duration(minutes: 1); -} - -abstract class SettingsUrl { - static const String about = '$_settings/about'; - static const String checkServerUpdate = '$_settings/check-update'; - static const String _settings = "/settings"; -} - -abstract class ExtensionUrl { - static const String _extension = "/extension"; - static const String list = "$_extension/list"; - static const String installFile = "$_extension/install"; - static String installPkg(String pkgName) => "$installFile/$pkgName"; - static String updatePkg(String pkgName) => "$_extension/update/$pkgName"; - static String uninstallPkg(String pkgName) => - "$_extension/uninstall/$pkgName"; - static String icon(String apkName) => "$_extension/icon/$apkName"; -} - -abstract class CategoryUrl { - static const String category = "/category"; - static const String reorder = "$category/reorder"; - static String withId(int id) => "$category/$id"; -} - -abstract class MangaUrl { - static String withId(int mangaId) => "$_manga/$mangaId"; - static String fullWithId(int mangaId) => "$_manga/$mangaId/full"; - static String thumbnail(int mangaId) => "$_manga/$mangaId/thumbnail"; - static String category(int mangaId) => "$_manga/$mangaId/category"; - static String categoryId(int mangaId, String categoryId) => - "$_manga/$mangaId/category/$categoryId"; - static String library(int mangaId) => "$_manga/$mangaId/library"; - static String meta(int mangaId) => "$_manga/$mangaId/meta"; - static String chapters(int mangaId) => "$_manga/$mangaId/chapters"; - static String chapterWithIndex( - int mangaId, - int chapterIndex, - ) => - "$_manga/$mangaId/chapter/$chapterIndex"; - static String chapterMetaWithIndex(int mangaId, int chapterIndex) => - "$_manga/$mangaId/chapter/$chapterIndex/meta"; - static String chapterBatch = "/chapter/batch"; - static String chapterPageWithIndex({ - required int mangaId, - required int chapterIndex, - required int pageIndex, - }) => - "$_manga/$mangaId/chapter/$chapterIndex/page/$pageIndex"; - - static const String _manga = "/manga"; -} - -abstract class DownloaderUrl { - static String start = "$downloads/start"; - static String stop = "$downloads/stop"; - static String clear = "$downloads/clear"; - - static String batch = "/download/batch"; - static String chapter(int mangaId, int chapterIndex) => - "/download/$mangaId/chapter/$chapterIndex"; - - static String reorderDownload(int mangaId, int chapterIndex, int to) => - "/download/$mangaId/chapter/$chapterIndex/reorder/$to"; - - static const String downloads = "/downloads"; -} - -abstract class BackupUrl { - static String import = "$_backup/import/file"; - static String validate = "$_backup/validate/file"; - static String export = "$_backup/export/file"; - - static const String _backup = "/backup"; -} - -abstract class SourceUrl { - static String sourceList = "$_source/list"; - - static String withId(String sourceId) => "$_source/$sourceId"; - static String getMangaList(String sourceId, String sourceType, int pageNum) => - "$_source/$sourceId/$sourceType/$pageNum"; - static String preferences(String sourceId) => - "$_source/$sourceId/preferences"; - static String filters(String sourceId) => "$_source/$sourceId/filters"; - static String search(String sourceId) => "$_source/$sourceId/search"; - static String quickSearch(String sourceId) => - "$_source/$sourceId/quick-search"; - - static const String _source = "/source"; -} - -abstract class UpdateUrl { - static String recentChapters(int pageNo) => "$update/recentChapters/$pageNo"; - - static const String update = "/update"; - static const String fetch = "/update/fetch"; - static const String reset = "/update/reset"; - static const String summary = "/update/summary"; -} diff --git a/lib/src/constants/enum.dart b/lib/src/constants/enum.dart deleted file mode 100644 index ead94888..00000000 --- a/lib/src/constants/enum.dart +++ /dev/null @@ -1,168 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../utils/extensions/custom_extensions.dart'; - -enum AuthType { - none, - basic; - - String toLocale(BuildContext context) => switch (this) { - AuthType.none => context.l10n!.authTypeNone, - AuthType.basic => context.l10n!.authTypeBasic, - }; -} - -enum ReaderMode { - defaultReader, - continuousVertical, - singleHorizontalLTR, - singleHorizontalRTL, - continuousHorizontalLTR, - continuousHorizontalRTL, - singleVertical, - webtoon; - - String toLocale(BuildContext context) => switch (this) { - ReaderMode.defaultReader => context.l10n!.readerModeDefaultReader, - ReaderMode.continuousVertical => - context.l10n!.readerModeContinuousVertical, - ReaderMode.singleHorizontalLTR => - context.l10n!.readerModeSingleHorizontalLTR, - ReaderMode.singleHorizontalRTL => - context.l10n!.readerModeSingleHorizontalRTL, - ReaderMode.continuousHorizontalLTR => - context.l10n!.readerModeContinuousHorizontalLTR, - ReaderMode.continuousHorizontalRTL => - context.l10n!.readerModeContinuousHorizontalRTL, - ReaderMode.singleVertical => context.l10n!.readerModeSingleVertical, - ReaderMode.webtoon => context.l10n!.readerModeWebtoon - }; -} - -enum ReaderNavigationLayout { - defaultNavigation, - lShaped, - rightAndLeft, - edge, - kindlish, - disabled; - - String toLocale(BuildContext context) => switch (this) { - ReaderNavigationLayout.defaultNavigation => - context.l10n!.readerNavigationLayoutDefault, - ReaderNavigationLayout.lShaped => - context.l10n!.readerNavigationLayoutLShaped, - ReaderNavigationLayout.rightAndLeft => - context.l10n!.readerNavigationLayoutRightAndLeft, - ReaderNavigationLayout.edge => context.l10n!.readerNavigationLayoutEdge, - ReaderNavigationLayout.kindlish => - context.l10n!.readerNavigationLayoutKindlish, - ReaderNavigationLayout.disabled => - context.l10n!.readerNavigationLayoutDisabled - }; -} - -enum MangaSort { - alphabetical, - dateAdded, - unread, - lastRead; - - String toLocale(BuildContext context) => switch (this) { - MangaSort.alphabetical => context.l10n!.mangaSortAlphabetical, - MangaSort.dateAdded => context.l10n!.mangaSortDateAdded, - MangaSort.unread => context.l10n!.mangaSortUnread, - MangaSort.lastRead => context.l10n!.mangaSortLastRead - }; -} - -enum ChapterSort { - source, - uploadDate, - fetchedDate; - - String toLocale(BuildContext context) => switch (this) { - ChapterSort.source => context.l10n!.chapterSortSource, - ChapterSort.fetchedDate => context.l10n!.chapterSortFetchedDate, - ChapterSort.uploadDate => context.l10n!.chapterSortUploadDate - }; -} - -enum DisplayMode { - grid(Icons.grid_view_rounded), - list(Icons.view_list_rounded), - descriptiveList(Icons.view_list_rounded), - ; - - static const List sourceDisplayList = [ - DisplayMode.grid, - DisplayMode.list - ]; - - final IconData icon; - const DisplayMode(this.icon); - - String toLocale(BuildContext context) => switch (this) { - DisplayMode.grid => context.l10n!.displayModeGrid, - DisplayMode.list => context.l10n!.displayModeList, - DisplayMode.descriptiveList => context.l10n!.displayModeDescriptiveList - }; -} - -enum MangaStatus { - unknown("UNKNOWN", Icons.block_outlined), - ongoing("ONGOING", Icons.schedule_rounded), - completed("COMPLETED", Icons.done_all_rounded), - licensed("LICENSED", Icons.shield_rounded), - publishingFinished("PUBLISHING_FINISHED", Icons.publish_rounded), - cancelled("CANCELLED", Icons.cancel_rounded), - onHiatus("ON_HIATUS", Icons.pause_circle_rounded); - - final IconData icon; - final String title; - const MangaStatus( - this.title, - this.icon, - ); - static final _statusMap = { - for (MangaStatus status in MangaStatus.values) status.title: status - }; - static MangaStatus fromJson(String status) => - _statusMap[status] ?? MangaStatus.unknown; - static String toJson(MangaStatus? status) => - status?.title ?? MangaStatus.unknown.title; - - String toLocale(BuildContext context) => switch (this) { - MangaStatus.unknown => context.l10n!.mangaStatusUnknown, - MangaStatus.ongoing => context.l10n!.mangaStatusOngoing, - MangaStatus.completed => context.l10n!.mangaStatusCompleted, - MangaStatus.licensed => context.l10n!.mangaStatusLicensed, - MangaStatus.publishingFinished => - context.l10n!.mangaStatusPublishingFinished, - MangaStatus.cancelled => context.l10n!.mangaStatusCancelled, - MangaStatus.onHiatus => context.l10n!.mangaStatusOnHiatus - }; -} - -enum SourceType { - latest(Icons.new_releases_outlined, Icons.new_releases_rounded), - popular(Icons.favorite_border_rounded, Icons.favorite_rounded), - filter(Icons.filter_list_outlined, Icons.filter_list_rounded); - - const SourceType(this.icon, this.selectedIcon); - - final IconData icon; - final IconData selectedIcon; - - String toLocale(BuildContext context) => switch (this) { - SourceType.latest => context.l10n!.sourceTypeLatest, - SourceType.popular => context.l10n!.sourceTypePopular, - SourceType.filter => context.l10n!.sourceTypeFilter - }; -} diff --git a/lib/src/constants/gen/assets.gen.dart b/lib/src/constants/gen/assets.gen.dart deleted file mode 100644 index ae6da291..00000000 --- a/lib/src/constants/gen/assets.gen.dart +++ /dev/null @@ -1,143 +0,0 @@ -/// GENERATED CODE - DO NOT MODIFY BY HAND -/// ***************************************************** -/// FlutterGen -/// ***************************************************** - -// coverage:ignore-file -// ignore_for_file: type=lint -// ignore_for_file: directives_ordering,unnecessary_import,implicit_dynamic_list_literal,deprecated_member_use - -import 'package:flutter/widgets.dart'; - -class $AssetsIconsGen { - const $AssetsIconsGen(); - - /// File path: assets/icons/dark_icon.png - AssetGenImage get darkIcon => - const AssetGenImage('assets/icons/dark_icon.png'); - - $AssetsIconsLauncherGen get launcher => const $AssetsIconsLauncherGen(); - - /// File path: assets/icons/light_icon.png - AssetGenImage get lightIcon => - const AssetGenImage('assets/icons/light_icon.png'); - - /// File path: assets/icons/previous_done.png - AssetGenImage get previousDone => - const AssetGenImage('assets/icons/previous_done.png'); - - /// List of all assets - List get values => [darkIcon, lightIcon, previousDone]; -} - -class $AssetsIconsLauncherGen { - const $AssetsIconsLauncherGen(); - - /// File path: assets/icons/launcher/from_suwayomi.png - AssetGenImage get fromSuwayomi => - const AssetGenImage('assets/icons/launcher/from_suwayomi.png'); - - /// File path: assets/icons/launcher/ios_sorayomi_icon.png - AssetGenImage get iosSorayomiIcon => - const AssetGenImage('assets/icons/launcher/ios_sorayomi_icon.png'); - - /// File path: assets/icons/launcher/sorayomi_icon.ico - String get sorayomiIconIco => 'assets/icons/launcher/sorayomi_icon.ico'; - - /// File path: assets/icons/launcher/sorayomi_icon.png - AssetGenImage get sorayomiIconPng => - const AssetGenImage('assets/icons/launcher/sorayomi_icon.png'); - - /// File path: assets/icons/launcher/sorayomi_preview_icon.png - AssetGenImage get sorayomiPreviewIcon => - const AssetGenImage('assets/icons/launcher/sorayomi_preview_icon.png'); - - /// List of all assets - List get values => [ - fromSuwayomi, - iosSorayomiIcon, - sorayomiIconIco, - sorayomiIconPng, - sorayomiPreviewIcon - ]; -} - -class Assets { - Assets._(); - - static const $AssetsIconsGen icons = $AssetsIconsGen(); -} - -class AssetGenImage { - const AssetGenImage(this._assetName); - - final String _assetName; - - Image image({ - Key? key, - AssetBundle? bundle, - ImageFrameBuilder? frameBuilder, - ImageErrorWidgetBuilder? errorBuilder, - String? semanticLabel, - bool excludeFromSemantics = false, - double? scale, - double? width, - double? height, - Color? color, - Animation? opacity, - BlendMode? colorBlendMode, - BoxFit? fit, - AlignmentGeometry alignment = Alignment.center, - ImageRepeat repeat = ImageRepeat.noRepeat, - Rect? centerSlice, - bool matchTextDirection = false, - bool gaplessPlayback = false, - bool isAntiAlias = false, - String? package, - FilterQuality filterQuality = FilterQuality.low, - int? cacheWidth, - int? cacheHeight, - }) { - return Image.asset( - _assetName, - key: key, - bundle: bundle, - frameBuilder: frameBuilder, - errorBuilder: errorBuilder, - semanticLabel: semanticLabel, - excludeFromSemantics: excludeFromSemantics, - scale: scale, - width: width, - height: height, - color: color, - opacity: opacity, - colorBlendMode: colorBlendMode, - fit: fit, - alignment: alignment, - repeat: repeat, - centerSlice: centerSlice, - matchTextDirection: matchTextDirection, - gaplessPlayback: gaplessPlayback, - isAntiAlias: isAntiAlias, - package: package, - filterQuality: filterQuality, - cacheWidth: cacheWidth, - cacheHeight: cacheHeight, - ); - } - - ImageProvider provider({ - AssetBundle? bundle, - String? package, - }) { - return AssetImage( - _assetName, - bundle: bundle, - package: package, - ); - } - - String get path => _assetName; - - String get keyName => _assetName; -} diff --git a/lib/src/constants/language_list.dart b/lib/src/constants/language_list.dart deleted file mode 100644 index 06dff63b..00000000 --- a/lib/src/constants/language_list.dart +++ /dev/null @@ -1,135 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:ui'; - -import '../features/browse_center/domain/language/language_model.dart'; - -String getLanguageNameFormLocale(Locale locale) { - String? displayName; - final localeCode = locale.toLanguageTag().toLowerCase(); - if (languageMap[localeCode] != null) { - displayName = languageMap[localeCode]!.displayName; - } else if (languageMap[locale.languageCode.toLowerCase()] != null) { - displayName = languageMap[locale.languageCode.toLowerCase()]!.displayName; - } - return displayName ?? locale.toLanguageTag(); -} - -String getLanguageNameInEnFormLocale(Locale locale) { - String? name; - final localeCode = locale.toLanguageTag().toLowerCase(); - if (languageMap[localeCode] != null) { - name = languageMap[localeCode]!.name; - } else if (languageMap[locale.languageCode.toLowerCase()] != null) { - name = languageMap[locale.languageCode.toLowerCase()]!.name; - } - return name ?? locale.toLanguageTag(); -} - -final languageMap = { - for (final e in customLanguageList) e['code'] ?? "other": Language.fromJson(e) -}; - -const customLanguageList = [ - ...languageList, - { - "code": 'localsourcelang', - "name": 'Local source', - "nativeName": 'Local source' - }, - {"code": 'installed', "name": 'Installed', "nativeName": 'Installed'}, - {"code": "lastUsed", "name": "Last Used", "nativeName": "Last Used"}, - { - "code": 'update', - "name": 'Updates pending', - "nativeName": 'Updates pending' - }, - {"code": 'other', "name": 'other langs', "nativeName": 'Other'}, - {"code": 'all', "name": 'All', "nativeName": 'All'}, -]; - -const languageList = [ - {"code": 'en', "name": 'English', "nativeName": 'English'}, - {"code": 'en-us', "name": 'English (US)', "nativeName": 'English (US)'}, - {"code": 'ca', "name": 'Catalan; Valencian', "nativeName": 'Català'}, - {"code": 'de', "name": 'German', "nativeName": 'Deutsch'}, - {"code": 'es', "name": 'Spanish; Castilian', "nativeName": 'Español'}, - { - "code": 'es-419', - "name": 'Spanish; Castilian', - "nativeName": 'Español (Latinoamérica)' - }, - {"code": 'fr', "name": 'French', "nativeName": 'Français'}, - {"code": 'id', "name": 'Indonesian', "nativeName": 'Indonesia'}, - {"code": 'it', "name": 'Italian', "nativeName": 'Italiano'}, - {"code": 'pt', "name": 'Portuguese', "nativeName": 'Português'}, - {"code": 'pt-pt', "name": 'Portuguese', "nativeName": 'Português (Portugal)'}, - { - "code": 'pt-br', - "name": 'Portuguese; Brasil', - "nativeName": 'Português (Brasil)' - }, - {"code": 'vi', "name": 'Vietnamese', "nativeName": 'Tiếng Việt'}, - {"code": 'tr', "name": 'Turkish', "nativeName": 'Türkçe'}, - {"code": 'ru', "name": 'Russian', "nativeName": 'русский'}, - {"code": 'ar', "name": 'Arabic', "nativeName": 'العربية'}, - {"code": 'hi', "name": 'Hindi', "nativeName": 'हिन्दी'}, - {"code": 'th', "name": 'Thai', "nativeName": 'ไทย'}, - {"code": 'zh', "name": 'Chinese', "nativeName": '中文'}, - {"code": 'zh-hans', "name": 'Simplified Chinese', "nativeName": '简体中文'}, - {"code": 'zh-hant', "name": 'Traditional Chinese', "nativeName": '繁體中文'}, - { - "code": 'zh-rhk', - "name": 'Traditional Chinese (HK)', - "nativeName": '繁体中文(香港)' - }, - { - "code": 'zh-rtw', - "name": 'Traditional Chinese (TW)', - "nativeName": '繁体中文(台湾)' - }, - {"code": 'ja', "name": 'Japanese', "nativeName": '日本語'}, - {"code": 'ko', "name": 'Korean', "nativeName": '한국어'}, - {"code": 'zu', "name": 'Zulu', "nativeName": 'isiZulu'}, - {"code": 'xh', "name": 'Xhosa', "nativeName": 'isiXhosa'}, - {"code": 'uk', "name": 'Ukrainian', "nativeName": 'Українська'}, - {"code": 'ro', "name": 'Romanian', "nativeName": 'Română'}, - {"code": 'bg', "name": 'Bulgarian', "nativeName": 'български'}, - {"code": 'cs', "name": 'Czech', "nativeName": 'čeština'}, - {"code": 'pl', "name": 'Polish', "nativeName": 'polski'}, - {"code": 'no', "name": 'Norwegian', "nativeName": 'Norsk'}, - {"code": 'nl', "name": 'Dutch', "nativeName": 'Nederlands'}, - {"code": 'my', "name": 'Burmese', "nativeName": 'ဗမာစာ'}, - {"code": 'ms', "name": 'Malay', "nativeName": 'Malaysia'}, - {"code": 'mn', "name": 'Mongolian', "nativeName": 'Монгол'}, - {"code": 'ml', "name": 'Malayalam', "nativeName": 'മലയാളം'}, - {"code": 'ku', "name": 'Kurdish', "nativeName": 'Kurdî'}, - {"code": 'hu', "name": 'Hungarian', "nativeName": 'Magyar'}, - {"code": 'hr', "name": 'Croatian', "nativeName": 'Hrvatski'}, - {"code": 'he', "name": 'Hebrew', "nativeName": 'עברית'}, - {"code": 'fil', "name": 'Filipino', "nativeName": 'Filipino'}, - {"code": 'fi', "name": 'Finnish', "nativeName": 'suomi'}, - {"code": 'fa', "name": 'Persian', "nativeName": 'فارسی'}, - {"code": 'eu', "name": 'Basque', "nativeName": 'euskara'}, - {"code": 'el', "name": 'Greek', "nativeName": 'Ελληνικά'}, - {"code": 'da', "name": 'Danish', "nativeName": 'dansk'}, - {"code": 'bn', "name": 'Bengali', "nativeName": 'বাংলা'}, - {"code": 'lt', "name": 'Lithuanian', "nativeName": 'lietuvių kalba'}, - {"code": 'sh', "name": 'Serbo-Croatian', "nativeName": 'srpskohrvatski'}, - {"code": 'af', "name": 'Afrikaans', "nativeName": 'Afrikaans'}, - {"code": 'am', "name": 'Amharic', "nativeName": 'አማርኛ'}, - {"code": 'az', "name": 'Azerbaijani', "nativeName": 'Azərbaycan'}, - {"code": 'be', "name": 'Belarusian', "nativeName": 'беларуская'}, - {"code": 'bs', "name": 'Bosnian', "nativeName": 'bosanski'}, - {"code": 'sv', "name": 'Swedish', "nativeName": 'svenska'}, - {"code": 'sv', "name": 'Swedish', "nativeName": 'svenska'}, - { - "code": 'nb-no', - "name": 'Norwegian Bokmål (Norway)', - "nativeName": 'Norwegian Bokmål (Norway)' - }, -]; diff --git a/lib/src/constants/navigation_bar_data.dart b/lib/src/constants/navigation_bar_data.dart deleted file mode 100644 index c9c54352..00000000 --- a/lib/src/constants/navigation_bar_data.dart +++ /dev/null @@ -1,70 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../routes/router_config.dart'; -import '../utils/extensions/custom_extensions.dart'; - -class NavigationBarData { - final String Function(BuildContext context) label; - final ValueSetter go; - final IconData icon; - final IconData activeIcon; - final List activeOn; - - static int indexWherePathOrZero(path) { - final index = navList - .indexWhere((e) => e.activeOn.any((element) => path.contains(element))); - return index > 0 ? index : 0; - } - - static final navList = [ - NavigationBarData( - icon: Icons.collections_bookmark_outlined, - activeIcon: Icons.collections_bookmark_rounded, - label: (context) => context.l10n!.library, - go: const LibraryRoute().go, - activeOn: [const LibraryRoute().location], - ), - NavigationBarData( - icon: Icons.new_releases_outlined, - activeIcon: Icons.new_releases_rounded, - label: (context) => context.l10n!.updates, - go: const UpdatesRoute().go, - activeOn: [const UpdatesRoute().location], - ), - NavigationBarData( - icon: Icons.explore_outlined, - activeIcon: Icons.explore_rounded, - label: (context) => context.l10n!.browse, - go: const BrowseRoute().go, - activeOn: [const BrowseRoute().location], - ), - NavigationBarData( - icon: Icons.download_outlined, - activeIcon: Icons.download_rounded, - label: (context) => context.l10n!.downloads, - go: const DownloadsRoute().go, - activeOn: [const DownloadsRoute().location], - ), - NavigationBarData( - icon: Icons.more_horiz_outlined, - activeIcon: Icons.more_horiz_rounded, - label: (context) => context.l10n!.more, - go: const MoreRoute().go, - activeOn: [const MoreRoute().location, const SettingsRoute().location], - ), - ]; - - NavigationBarData({ - required this.label, - required this.go, - required this.icon, - required this.activeIcon, - required this.activeOn, - }); -} diff --git a/lib/src/constants/quick_open_help_text.dart b/lib/src/constants/quick_open_help_text.dart deleted file mode 100644 index 565307d6..00000000 --- a/lib/src/constants/quick_open_help_text.dart +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../features/quick_open/domain/quick_search_result.dart'; -import '../utils/extensions/custom_extensions.dart'; - -List getQuickShowHintTextList(BuildContext context) { - return [ - QuickSearchResult.helpText( - prefill: '@S', - pattern: '@', - hintText: context.l10n!.quickSearchSource, - ), - QuickSearchResult.helpText( - prefill: '@S/M', - pattern: '@/', - hintText: context.l10n!.quickSearchSourceManga, - ), - QuickSearchResult.helpText( - prefill: '#C', - pattern: '#', - hintText: context.l10n!.quickSearchCategory, - ), - QuickSearchResult.helpText( - prefill: '#C/M', - pattern: '#/', - hintText: context.l10n!.quickSearchCategoryManga, - ), - QuickSearchResult.helpText( - prefill: '#C/M:CN', - pattern: '#/:', - hintText: context.l10n!.quickSearchCategoryMangaChapter, - ), - QuickSearchResult.helpText( - prefill: 'X', - hintText: context.l10n!.quickSearchContext, - ), - ]; -} diff --git a/lib/src/constants/reader_keyboard_shortcuts.dart b/lib/src/constants/reader_keyboard_shortcuts.dart deleted file mode 100644 index e6373095..00000000 --- a/lib/src/constants/reader_keyboard_shortcuts.dart +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter/services.dart'; - -class NextScrollIntent extends Intent {} - -class NextChapterIntent extends Intent {} - -class PreviousScrollIntent extends Intent {} - -class PreviousChapterIntent extends Intent {} - -class HideQuickOpenIntent extends Intent {} - -ShortcutManager readerShortcutManager(Axis scrollDirection) => ShortcutManager( - shortcuts: { - const SingleActivator(LogicalKeyboardKey.space): NextScrollIntent(), - const SingleActivator(LogicalKeyboardKey.space, shift: true): - PreviousScrollIntent(), - const SingleActivator(LogicalKeyboardKey.arrowLeft): - scrollDirection == Axis.horizontal - ? PreviousScrollIntent() - : PreviousChapterIntent(), - const SingleActivator(LogicalKeyboardKey.keyA): - scrollDirection == Axis.horizontal - ? PreviousScrollIntent() - : PreviousChapterIntent(), - const SingleActivator(LogicalKeyboardKey.arrowRight): - scrollDirection == Axis.horizontal - ? NextScrollIntent() - : NextChapterIntent(), - const SingleActivator(LogicalKeyboardKey.keyD): - scrollDirection == Axis.horizontal - ? NextScrollIntent() - : NextChapterIntent(), - const SingleActivator(LogicalKeyboardKey.arrowUp): - scrollDirection == Axis.vertical - ? PreviousScrollIntent() - : NextChapterIntent(), - const SingleActivator(LogicalKeyboardKey.keyW): - scrollDirection == Axis.vertical - ? PreviousScrollIntent() - : NextChapterIntent(), - const SingleActivator(LogicalKeyboardKey.arrowDown): - scrollDirection == Axis.vertical - ? NextScrollIntent() - : PreviousChapterIntent(), - const SingleActivator(LogicalKeyboardKey.keyS): - scrollDirection == Axis.vertical - ? NextScrollIntent() - : PreviousChapterIntent(), - const SingleActivator(LogicalKeyboardKey.escape): HideQuickOpenIntent(), - }, - ); diff --git a/lib/src/constants/urls.dart b/lib/src/constants/urls.dart deleted file mode 100644 index f42fcee9..00000000 --- a/lib/src/constants/urls.dart +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -enum AppUrls { - sorayomiGithubUrl(url: "https://github.com/Suwayomi/Tachidesk-Sorayomi"), - sorayomiLatestReleaseUrl( - url: "https://github.com/Suwayomi/Tachidesk-Sorayomi/releases/latest"), - tachideskHelp(url: "https://github.com/Suwayomi/Tachidesk-Server/wiki"), - tachideskReddit(url: "https://www.reddit.com/r/Tachidesk"), - sorayomiWhatsNew( - url: "https://github.com/Suwayomi/Tachidesk-Sorayomi/releases/tag/"), - sorayomiLatestReleaseApiUrl( - url: - "https://api.github.com/repos/Suwayomi/Tachidesk-Sorayomi/releases/latest", - ); - - const AppUrls({required this.url}); - - final String url; -} diff --git a/lib/src/features/about/data/about_repository.dart b/lib/src/features/about/data/about_repository.dart deleted file mode 100644 index 1739018c..00000000 --- a/lib/src/features/about/data/about_repository.dart +++ /dev/null @@ -1,79 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:dio/dio.dart'; -import 'package:package_info_plus/package_info_plus.dart'; -import 'package:pub_semver/pub_semver.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../constants/endpoints.dart'; -import '../../../constants/urls.dart'; -import '../../../global_providers/global_providers.dart'; -import '../../../utils/extensions/custom_extensions.dart'; -import '../../../utils/storage/dio/dio_client.dart'; -import '../domain/about/about_model.dart'; -import '../domain/server_update/server_update_model.dart'; -import '../presentation/about/controllers/about_controller.dart'; - -part 'about_repository.g.dart'; - -class AboutRepository { - final DioClient dioClient; - final PackageInfo packageInfo; - AboutRepository({ - required this.dioClient, - required this.packageInfo, - }); - - Future getAbout({CancelToken? cancelToken}) async { - return (await dioClient.get( - SettingsUrl.about, - decoder: (e) => e is Map ? About.fromJson(e) : null, - cancelToken: cancelToken, - )) - .data; - } - - Future?> checkServerUpdate() async { - return (await dioClient.get, ServerUpdate>( - SettingsUrl.checkServerUpdate, - decoder: (e) => - e is Map ? ServerUpdate.fromJson(e) : ServerUpdate(), - )) - .data; - } - - Future> checkUpdate({CancelToken? cancelToken}) async { - final gitResponse = await AsyncValue.guard?>( - () async => (await dioClient.get( - AppUrls.sorayomiLatestReleaseApiUrl.url, - cancelToken: cancelToken, - )) - .data, - ); - return gitResponse.copyWithData( - (data) { - String? tag = data?["tag_name"]; - Version? latestReleaseBuildNumber = - tag != null ? Version.parse(tag) : null; - Version? packageBuildNumber = Version.parse(packageInfo.version); - if (latestReleaseBuildNumber != null && - latestReleaseBuildNumber - .compareTo(packageBuildNumber) - .isGreaterThan(0)) { - return latestReleaseBuildNumber; - } - return null; - }, - ); - } -} - -@riverpod -AboutRepository aboutRepository(ref) => AboutRepository( - dioClient: ref.watch(dioClientKeyProvider), - packageInfo: ref.watch(packageInfoProvider), - ); diff --git a/lib/src/features/about/data/about_repository.g.dart b/lib/src/features/about/data/about_repository.g.dart deleted file mode 100644 index 3a7570a0..00000000 --- a/lib/src/features/about/data/about_repository.g.dart +++ /dev/null @@ -1,25 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'about_repository.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$aboutRepositoryHash() => r'216ca259fbc00fa61ce7260975ab8d3df1e282dc'; - -/// See also [aboutRepository]. -@ProviderFor(aboutRepository) -final aboutRepositoryProvider = AutoDisposeProvider.internal( - aboutRepository, - name: r'aboutRepositoryProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$aboutRepositoryHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef AboutRepositoryRef = AutoDisposeProviderRef; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/about/domain/about/about_model.dart b/lib/src/features/about/domain/about/about_model.dart deleted file mode 100644 index 8eb5d6d6..00000000 --- a/lib/src/features/about/domain/about/about_model.dart +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:freezed_annotation/freezed_annotation.dart'; - -part 'about_model.freezed.dart'; -part 'about_model.g.dart'; - -@freezed -class About with _$About { - const factory About({ - String? name, - String? version, - String? revision, - String? buildType, - int? buildTime, - String? github, - String? discord, - }) = _About; - - factory About.fromJson(Map json) => _$AboutFromJson(json); -} diff --git a/lib/src/features/about/domain/about/about_model.freezed.dart b/lib/src/features/about/domain/about/about_model.freezed.dart deleted file mode 100644 index ec5ba4d9..00000000 --- a/lib/src/features/about/domain/about/about_model.freezed.dart +++ /dev/null @@ -1,275 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'about_model.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -About _$AboutFromJson(Map json) { - return _About.fromJson(json); -} - -/// @nodoc -mixin _$About { - String? get name => throw _privateConstructorUsedError; - String? get version => throw _privateConstructorUsedError; - String? get revision => throw _privateConstructorUsedError; - String? get buildType => throw _privateConstructorUsedError; - int? get buildTime => throw _privateConstructorUsedError; - String? get github => throw _privateConstructorUsedError; - String? get discord => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $AboutCopyWith get copyWith => throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $AboutCopyWith<$Res> { - factory $AboutCopyWith(About value, $Res Function(About) then) = - _$AboutCopyWithImpl<$Res, About>; - @useResult - $Res call( - {String? name, - String? version, - String? revision, - String? buildType, - int? buildTime, - String? github, - String? discord}); -} - -/// @nodoc -class _$AboutCopyWithImpl<$Res, $Val extends About> - implements $AboutCopyWith<$Res> { - _$AboutCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? name = freezed, - Object? version = freezed, - Object? revision = freezed, - Object? buildType = freezed, - Object? buildTime = freezed, - Object? github = freezed, - Object? discord = freezed, - }) { - return _then(_value.copyWith( - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - version: freezed == version - ? _value.version - : version // ignore: cast_nullable_to_non_nullable - as String?, - revision: freezed == revision - ? _value.revision - : revision // ignore: cast_nullable_to_non_nullable - as String?, - buildType: freezed == buildType - ? _value.buildType - : buildType // ignore: cast_nullable_to_non_nullable - as String?, - buildTime: freezed == buildTime - ? _value.buildTime - : buildTime // ignore: cast_nullable_to_non_nullable - as int?, - github: freezed == github - ? _value.github - : github // ignore: cast_nullable_to_non_nullable - as String?, - discord: freezed == discord - ? _value.discord - : discord // ignore: cast_nullable_to_non_nullable - as String?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$AboutImplCopyWith<$Res> implements $AboutCopyWith<$Res> { - factory _$$AboutImplCopyWith( - _$AboutImpl value, $Res Function(_$AboutImpl) then) = - __$$AboutImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {String? name, - String? version, - String? revision, - String? buildType, - int? buildTime, - String? github, - String? discord}); -} - -/// @nodoc -class __$$AboutImplCopyWithImpl<$Res> - extends _$AboutCopyWithImpl<$Res, _$AboutImpl> - implements _$$AboutImplCopyWith<$Res> { - __$$AboutImplCopyWithImpl( - _$AboutImpl _value, $Res Function(_$AboutImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? name = freezed, - Object? version = freezed, - Object? revision = freezed, - Object? buildType = freezed, - Object? buildTime = freezed, - Object? github = freezed, - Object? discord = freezed, - }) { - return _then(_$AboutImpl( - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - version: freezed == version - ? _value.version - : version // ignore: cast_nullable_to_non_nullable - as String?, - revision: freezed == revision - ? _value.revision - : revision // ignore: cast_nullable_to_non_nullable - as String?, - buildType: freezed == buildType - ? _value.buildType - : buildType // ignore: cast_nullable_to_non_nullable - as String?, - buildTime: freezed == buildTime - ? _value.buildTime - : buildTime // ignore: cast_nullable_to_non_nullable - as int?, - github: freezed == github - ? _value.github - : github // ignore: cast_nullable_to_non_nullable - as String?, - discord: freezed == discord - ? _value.discord - : discord // ignore: cast_nullable_to_non_nullable - as String?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$AboutImpl implements _About { - const _$AboutImpl( - {this.name, - this.version, - this.revision, - this.buildType, - this.buildTime, - this.github, - this.discord}); - - factory _$AboutImpl.fromJson(Map json) => - _$$AboutImplFromJson(json); - - @override - final String? name; - @override - final String? version; - @override - final String? revision; - @override - final String? buildType; - @override - final int? buildTime; - @override - final String? github; - @override - final String? discord; - - @override - String toString() { - return 'About(name: $name, version: $version, revision: $revision, buildType: $buildType, buildTime: $buildTime, github: $github, discord: $discord)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$AboutImpl && - (identical(other.name, name) || other.name == name) && - (identical(other.version, version) || other.version == version) && - (identical(other.revision, revision) || - other.revision == revision) && - (identical(other.buildType, buildType) || - other.buildType == buildType) && - (identical(other.buildTime, buildTime) || - other.buildTime == buildTime) && - (identical(other.github, github) || other.github == github) && - (identical(other.discord, discord) || other.discord == discord)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, name, version, revision, - buildType, buildTime, github, discord); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$AboutImplCopyWith<_$AboutImpl> get copyWith => - __$$AboutImplCopyWithImpl<_$AboutImpl>(this, _$identity); - - @override - Map toJson() { - return _$$AboutImplToJson( - this, - ); - } -} - -abstract class _About implements About { - const factory _About( - {final String? name, - final String? version, - final String? revision, - final String? buildType, - final int? buildTime, - final String? github, - final String? discord}) = _$AboutImpl; - - factory _About.fromJson(Map json) = _$AboutImpl.fromJson; - - @override - String? get name; - @override - String? get version; - @override - String? get revision; - @override - String? get buildType; - @override - int? get buildTime; - @override - String? get github; - @override - String? get discord; - @override - @JsonKey(ignore: true) - _$$AboutImplCopyWith<_$AboutImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/src/features/about/domain/about/about_model.g.dart b/lib/src/features/about/domain/about/about_model.g.dart deleted file mode 100644 index 6d9940c5..00000000 --- a/lib/src/features/about/domain/about/about_model.g.dart +++ /dev/null @@ -1,28 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'about_model.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$AboutImpl _$$AboutImplFromJson(Map json) => _$AboutImpl( - name: json['name'] as String?, - version: json['version'] as String?, - revision: json['revision'] as String?, - buildType: json['buildType'] as String?, - buildTime: json['buildTime'] as int?, - github: json['github'] as String?, - discord: json['discord'] as String?, - ); - -Map _$$AboutImplToJson(_$AboutImpl instance) => - { - 'name': instance.name, - 'version': instance.version, - 'revision': instance.revision, - 'buildType': instance.buildType, - 'buildTime': instance.buildTime, - 'github': instance.github, - 'discord': instance.discord, - }; diff --git a/lib/src/features/about/domain/server_update/server_update_model.dart b/lib/src/features/about/domain/server_update/server_update_model.dart deleted file mode 100644 index ca243773..00000000 --- a/lib/src/features/about/domain/server_update/server_update_model.dart +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:freezed_annotation/freezed_annotation.dart'; - -part 'server_update_model.freezed.dart'; -part 'server_update_model.g.dart'; - -@freezed -class ServerUpdate with _$ServerUpdate { - factory ServerUpdate({ - String? channel, - String? tag, - String? url, - }) = _ServerUpdate; - - factory ServerUpdate.fromJson(Map json) => - _$ServerUpdateFromJson(json); -} diff --git a/lib/src/features/about/domain/server_update/server_update_model.freezed.dart b/lib/src/features/about/domain/server_update/server_update_model.freezed.dart deleted file mode 100644 index 6769c458..00000000 --- a/lib/src/features/about/domain/server_update/server_update_model.freezed.dart +++ /dev/null @@ -1,186 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'server_update_model.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -ServerUpdate _$ServerUpdateFromJson(Map json) { - return _ServerUpdate.fromJson(json); -} - -/// @nodoc -mixin _$ServerUpdate { - String? get channel => throw _privateConstructorUsedError; - String? get tag => throw _privateConstructorUsedError; - String? get url => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $ServerUpdateCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $ServerUpdateCopyWith<$Res> { - factory $ServerUpdateCopyWith( - ServerUpdate value, $Res Function(ServerUpdate) then) = - _$ServerUpdateCopyWithImpl<$Res, ServerUpdate>; - @useResult - $Res call({String? channel, String? tag, String? url}); -} - -/// @nodoc -class _$ServerUpdateCopyWithImpl<$Res, $Val extends ServerUpdate> - implements $ServerUpdateCopyWith<$Res> { - _$ServerUpdateCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? channel = freezed, - Object? tag = freezed, - Object? url = freezed, - }) { - return _then(_value.copyWith( - channel: freezed == channel - ? _value.channel - : channel // ignore: cast_nullable_to_non_nullable - as String?, - tag: freezed == tag - ? _value.tag - : tag // ignore: cast_nullable_to_non_nullable - as String?, - url: freezed == url - ? _value.url - : url // ignore: cast_nullable_to_non_nullable - as String?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$ServerUpdateImplCopyWith<$Res> - implements $ServerUpdateCopyWith<$Res> { - factory _$$ServerUpdateImplCopyWith( - _$ServerUpdateImpl value, $Res Function(_$ServerUpdateImpl) then) = - __$$ServerUpdateImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({String? channel, String? tag, String? url}); -} - -/// @nodoc -class __$$ServerUpdateImplCopyWithImpl<$Res> - extends _$ServerUpdateCopyWithImpl<$Res, _$ServerUpdateImpl> - implements _$$ServerUpdateImplCopyWith<$Res> { - __$$ServerUpdateImplCopyWithImpl( - _$ServerUpdateImpl _value, $Res Function(_$ServerUpdateImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? channel = freezed, - Object? tag = freezed, - Object? url = freezed, - }) { - return _then(_$ServerUpdateImpl( - channel: freezed == channel - ? _value.channel - : channel // ignore: cast_nullable_to_non_nullable - as String?, - tag: freezed == tag - ? _value.tag - : tag // ignore: cast_nullable_to_non_nullable - as String?, - url: freezed == url - ? _value.url - : url // ignore: cast_nullable_to_non_nullable - as String?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$ServerUpdateImpl implements _ServerUpdate { - _$ServerUpdateImpl({this.channel, this.tag, this.url}); - - factory _$ServerUpdateImpl.fromJson(Map json) => - _$$ServerUpdateImplFromJson(json); - - @override - final String? channel; - @override - final String? tag; - @override - final String? url; - - @override - String toString() { - return 'ServerUpdate(channel: $channel, tag: $tag, url: $url)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$ServerUpdateImpl && - (identical(other.channel, channel) || other.channel == channel) && - (identical(other.tag, tag) || other.tag == tag) && - (identical(other.url, url) || other.url == url)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, channel, tag, url); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$ServerUpdateImplCopyWith<_$ServerUpdateImpl> get copyWith => - __$$ServerUpdateImplCopyWithImpl<_$ServerUpdateImpl>(this, _$identity); - - @override - Map toJson() { - return _$$ServerUpdateImplToJson( - this, - ); - } -} - -abstract class _ServerUpdate implements ServerUpdate { - factory _ServerUpdate( - {final String? channel, - final String? tag, - final String? url}) = _$ServerUpdateImpl; - - factory _ServerUpdate.fromJson(Map json) = - _$ServerUpdateImpl.fromJson; - - @override - String? get channel; - @override - String? get tag; - @override - String? get url; - @override - @JsonKey(ignore: true) - _$$ServerUpdateImplCopyWith<_$ServerUpdateImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/src/features/about/domain/server_update/server_update_model.g.dart b/lib/src/features/about/domain/server_update/server_update_model.g.dart deleted file mode 100644 index e1ca2827..00000000 --- a/lib/src/features/about/domain/server_update/server_update_model.g.dart +++ /dev/null @@ -1,21 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'server_update_model.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$ServerUpdateImpl _$$ServerUpdateImplFromJson(Map json) => - _$ServerUpdateImpl( - channel: json['channel'] as String?, - tag: json['tag'] as String?, - url: json['url'] as String?, - ); - -Map _$$ServerUpdateImplToJson(_$ServerUpdateImpl instance) => - { - 'channel': instance.channel, - 'tag': instance.tag, - 'url': instance.url, - }; diff --git a/lib/src/features/about/presentation/about/about_screen.dart b/lib/src/features/about/presentation/about/about_screen.dart deleted file mode 100644 index 061fbbb0..00000000 --- a/lib/src/features/about/presentation/about/about_screen.dart +++ /dev/null @@ -1,222 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:font_awesome_flutter/font_awesome_flutter.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:pub_semver/pub_semver.dart'; - -import '../../../../constants/app_sizes.dart'; -import '../../../../constants/gen/assets.gen.dart'; -import '../../../../constants/urls.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/launch_url_in_web.dart'; -import '../../../../utils/misc/toast/toast.dart'; -import '../../data/about_repository.dart'; -import '../../domain/about/about_model.dart'; -import '../../domain/server_update/server_update_model.dart'; -import 'controllers/about_controller.dart'; -import 'widget/app_update_dialog.dart'; -import 'widget/clipboard_list_tile.dart'; -import 'widget/media_launch_button.dart'; - -class AboutScreen extends HookConsumerWidget { - const AboutScreen({super.key}); - - void checkForServerUpdate({ - required BuildContext context, - required String serverVer, - required About about, - required Future?> Function() updateCallback, - required Toast toast, - }) { - toast.show(context.l10n!.searchingForUpdates); - AsyncValue.guard(updateCallback).then( - (value) { - toast.close(); - try { - value.whenOrNull( - data: (data) { - if (data == null) return; - final newUpdate = data.firstWhere( - (e) => e.channel == about.buildType, - orElse: () => ServerUpdate(), - ); - final currentVer = Version.parse(serverVer.substring(1)); - final newVer = Version.parse(newUpdate.tag?.substring(1) ?? ""); - if ((newVer.compareTo(currentVer)).isGreaterThan(0)) { - appUpdateDialog( - title: about.name ?? context.l10n!.server, - newRelease: "${newVer.canonicalizedVersion}" - " (${newUpdate.channel})", - context: context, - toast: toast, - url: newUpdate.url, - ); - } else { - toast.show(context.l10n!.noUpdatesAvailable); - } - }, - error: (error, stackTrace) => value.showToastOnError(toast), - ); - } catch (e) { - toast.showError( - kDebugMode ? e.toString() : context.l10n!.errorSomethingWentWrong, - ); - } - }, - ); - } - - Future checkForUpdate({ - required String? title, - required BuildContext context, - required Future> Function() updateCallback, - required Toast toast, - }) async { - toast.show(context.l10n!.searchingForUpdates); - final result = await updateCallback(); - if (context.mounted) return; - toast.close(); - result.whenOrNull( - data: (version) { - if (version != null) { - appUpdateDialog( - title: title ?? context.l10n!.appTitle, - newRelease: "v${version.canonicalizedVersion}", - context: context, - toast: toast, - ); - } else { - toast.show(context.l10n!.noUpdatesAvailable); - } - }, - error: (error, stackTrace) => result.showToastOnError(toast), - ); - } - - @override - Widget build(BuildContext context, WidgetRef ref) { - final toast = ref.watch(toastProvider(context)); - final aboutAsync = ref.watch(aboutProvider); - final about = aboutAsync.valueOrNull; - final serverVer = about?.buildType == "Stable" - ? about?.version - : "${about?.version}-${about?.revision}"; - final packageInfo = ref.watch(packageInfoProvider); - - useEffect(() { - aboutAsync.showToastOnError(toast, withMicrotask: true); - return; - }, [aboutAsync.valueOrNull]); - - return Scaffold( - appBar: AppBar(title: Text(context.l10n!.about)), - body: RefreshIndicator( - onRefresh: () => ref.refresh(aboutProvider.future), - child: ListView( - children: [ - ImageIcon( - AssetImage(Assets.icons.darkIcon.path), - size: context.height * .2, - ), - const Divider(), - ClipboardListTile( - title: context.l10n!.client, - value: packageInfo.appName, - ), - ClipboardListTile( - title: context.l10n!.clientVersion, - value: "v${packageInfo.version}", - ), - ListTile( - title: Text(context.l10n!.whatsNew), - onTap: () async { - final url = AppUrls.sorayomiWhatsNew.url + packageInfo.version; - await launchUrlInWeb(context, url, toast); - }, - ), - ListTile( - title: Text(context.l10n!.checkForUpdates), - onTap: () => checkForUpdate( - title: packageInfo.appName, - context: context, - updateCallback: ref.read(aboutRepositoryProvider).checkUpdate, - toast: toast, - ), - ), - if (about != null) ...[ - const Divider(), - ClipboardListTile( - title: context.l10n!.server, - value: about.name, - ), - ClipboardListTile( - title: context.l10n!.channel, - value: about.buildType, - ), - if (serverVer.isNotBlank) - ClipboardListTile( - title: context.l10n!.serverVersion, - value: serverVer, - ), - ClipboardListTile( - title: context.l10n!.buildTime, - value: (about.buildTime).isNull - ? null - : DateTime.fromMillisecondsSinceEpoch( - (about.buildTime.getValueOnNullOrNegative()) * 1000, - ).toDateString, - ), - if (serverVer.isNotBlank) - ListTile( - title: Text(context.l10n!.checkForServerUpdates), - onTap: () => checkForServerUpdate( - context: context, - serverVer: serverVer ?? "", - about: about, - updateCallback: - ref.read(aboutRepositoryProvider).checkServerUpdate, - toast: toast, - ), - ), - ], - Padding( - padding: KEdgeInsets.a8.size, - child: Wrap( - alignment: WrapAlignment.spaceEvenly, - children: [ - MediaLaunchButton( - title: "${context.l10n!.gitHub} ", - iconData: FontAwesomeIcons.github, - url: AppUrls.sorayomiGithubUrl.url, - toast: toast, - ), - if ((about?.discord).isNotBlank) - MediaLaunchButton( - title: context.l10n!.discord, - iconData: FontAwesomeIcons.discord, - url: about!.discord!, - toast: toast, - ), - MediaLaunchButton( - title: context.l10n!.reddit, - iconData: FontAwesomeIcons.reddit, - url: AppUrls.tachideskReddit.url, - toast: toast, - ), - ], - ), - ), - ], - ), - ), - ); - } -} diff --git a/lib/src/features/about/presentation/about/controllers/about_controller.dart b/lib/src/features/about/presentation/about/controllers/about_controller.dart deleted file mode 100644 index cfc547a6..00000000 --- a/lib/src/features/about/presentation/about/controllers/about_controller.dart +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:dio/dio.dart'; -import 'package:package_info_plus/package_info_plus.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../data/about_repository.dart'; -import '../../../domain/about/about_model.dart'; - -part 'about_controller.g.dart'; - -@riverpod -Future about(AboutRef ref) async { - final token = CancelToken(); - ref.onDispose(token.cancel); - final result = - await ref.watch(aboutRepositoryProvider).getAbout(cancelToken: token); - ref.keepAlive(); - return result; -} - -@riverpod -PackageInfo packageInfo(ref) => throw UnimplementedError(); diff --git a/lib/src/features/about/presentation/about/controllers/about_controller.g.dart b/lib/src/features/about/presentation/about/controllers/about_controller.g.dart deleted file mode 100644 index d9ba08f0..00000000 --- a/lib/src/features/about/presentation/about/controllers/about_controller.g.dart +++ /dev/null @@ -1,38 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'about_controller.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$aboutHash() => r'71e0d6115e3d5baeb6cd30cea233be2cba2142bb'; - -/// See also [about]. -@ProviderFor(about) -final aboutProvider = AutoDisposeFutureProvider.internal( - about, - name: r'aboutProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$aboutHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef AboutRef = AutoDisposeFutureProviderRef; -String _$packageInfoHash() => r'a5025c8498b8f2eacf55450228619ff1477adc05'; - -/// See also [packageInfo]. -@ProviderFor(packageInfo) -final packageInfoProvider = AutoDisposeProvider.internal( - packageInfo, - name: r'packageInfoProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$packageInfoHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef PackageInfoRef = AutoDisposeProviderRef; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/about/presentation/about/widget/app_update_dialog.dart b/lib/src/features/about/presentation/about/widget/app_update_dialog.dart deleted file mode 100644 index 19d73342..00000000 --- a/lib/src/features/about/presentation/about/widget/app_update_dialog.dart +++ /dev/null @@ -1,45 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:font_awesome_flutter/font_awesome_flutter.dart'; - -import '../../../../../constants/urls.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../utils/launch_url_in_web.dart'; -import '../../../../../utils/misc/toast/toast.dart'; - -void appUpdateDialog({ - required String title, - required String newRelease, - required BuildContext context, - required Toast toast, - String? url, -}) => - showDialog( - context: context, - builder: (context) { - return AlertDialog( - title: Text(context.l10n!.newUpdateAvailable), - content: Text(context.l10n!.versionAvailable(title, newRelease)), - actions: [ - TextButton( - onPressed: () => Navigator.pop(context), - child: Text(context.l10n!.close), - ), - ElevatedButton.icon( - onPressed: () { - launchUrlInWeb(context, - url ?? AppUrls.sorayomiLatestReleaseUrl.url, toast); - Navigator.pop(context); - }, - icon: const Icon(FontAwesomeIcons.github), - label: Text(context.l10n!.gitHub), - ), - ], - ); - }, - ); diff --git a/lib/src/features/about/presentation/about/widget/clipboard_list_tile.dart b/lib/src/features/about/presentation/about/widget/clipboard_list_tile.dart deleted file mode 100644 index 335ca56a..00000000 --- a/lib/src/features/about/presentation/about/widget/clipboard_list_tile.dart +++ /dev/null @@ -1,40 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter/services.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../utils/misc/toast/toast.dart'; - -class ClipboardListTile extends ConsumerWidget { - const ClipboardListTile({ - super.key, - required this.title, - required this.value, - }); - final String title; - final String? value; - @override - Widget build(BuildContext context, WidgetRef ref) { - return ListTile( - title: Text(title), - subtitle: value.isNotBlank ? Text(value!) : null, - onTap: value.isNotBlank - ? () { - final msg = "$title: $value"; - Clipboard.setData( - ClipboardData(text: msg), - ); - ref - .read(toastProvider(context)) - .instantShow(context.l10n!.copyMsg(msg)); - } - : null, - ); - } -} diff --git a/lib/src/features/about/presentation/about/widget/media_launch_button.dart b/lib/src/features/about/presentation/about/widget/media_launch_button.dart deleted file mode 100644 index 59439074..00000000 --- a/lib/src/features/about/presentation/about/widget/media_launch_button.dart +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../utils/launch_url_in_web.dart'; -import '../../../../../utils/misc/toast/toast.dart'; - -class MediaLaunchButton extends StatelessWidget { - const MediaLaunchButton({ - super.key, - required this.toast, - required this.title, - required this.iconData, - required this.url, - }); - - final Toast toast; - final String title; - final IconData iconData; - final String url; - - @override - Widget build(BuildContext context) { - return url.isNotBlank - ? context.isSmallTabletOrLess - ? IconButton( - tooltip: title, - onPressed: () => launchUrlInWeb(context, url, toast), - icon: Icon(iconData), - ) - : TextButton.icon( - label: Text(title), - onPressed: () => launchUrlInWeb(context, url, toast), - icon: Icon(iconData), - ) - : const SizedBox.shrink(); - } -} diff --git a/lib/src/features/browse_center/data/extension_repository/extension_repository.dart b/lib/src/features/browse_center/data/extension_repository/extension_repository.dart deleted file mode 100644 index fdf1e324..00000000 --- a/lib/src/features/browse_center/data/extension_repository/extension_repository.dart +++ /dev/null @@ -1,92 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:dio/dio.dart'; - -import 'package:file_picker/file_picker.dart'; -import 'package:flutter/material.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../constants/endpoints.dart'; -import '../../../../global_providers/global_providers.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/storage/dio/dio_client.dart'; -import '../../domain/extension/extension_model.dart'; - -part 'extension_repository.g.dart'; - -class ExtensionRepository { - final DioClient dioClient; - - ExtensionRepository(this.dioClient); - - Future installExtensionFile( - BuildContext context, { - PlatformFile? file, - CancelToken? cancelToken, - }) async { - if ((file?.path).isBlank) { - throw context.l10n!.errorFilePick; - } - if (!(file!.name.endsWith('.apk'))) { - throw context.l10n!.errorFilePickUnknownExtension(".apk"); - } - return (file.path).isNotBlank - ? (await dioClient.post( - ExtensionUrl.installFile, - data: FormData.fromMap({ - 'file': MultipartFile.fromFileSync( - file.path!, - filename: file.name, - ) - }), - cancelToken: cancelToken, - )) - .data - : null; - } - - Future installExtension( - String pkgName, { - CancelToken? cancelToken, - }) => - dioClient.get( - ExtensionUrl.installPkg(pkgName), - cancelToken: cancelToken, - ); - - Future uninstallExtension( - String pkgName, { - CancelToken? cancelToken, - }) => - dioClient.get( - ExtensionUrl.uninstallPkg(pkgName), - cancelToken: cancelToken, - ); - - Future updateExtension( - String pkgName, { - CancelToken? cancelToken, - }) => - dioClient.get( - ExtensionUrl.updatePkg(pkgName), - cancelToken: cancelToken, - ); - - Future?> getExtensionList({CancelToken? cancelToken}) async => - (await dioClient.get, Extension>( - ExtensionUrl.list, - decoder: (e) => - e is Map ? Extension.fromJson(e) : Extension(), - cancelToken: cancelToken, - )) - .data; -} - -@riverpod -ExtensionRepository extensionRepository(ExtensionRepositoryRef ref) => - ExtensionRepository(ref.watch(dioClientKeyProvider)); diff --git a/lib/src/features/browse_center/data/extension_repository/extension_repository.g.dart b/lib/src/features/browse_center/data/extension_repository/extension_repository.g.dart deleted file mode 100644 index 20b89aa4..00000000 --- a/lib/src/features/browse_center/data/extension_repository/extension_repository.g.dart +++ /dev/null @@ -1,27 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'extension_repository.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$extensionRepositoryHash() => - r'd5be612415075dc1ca3ac53de932d9ec4ee92ff2'; - -/// See also [extensionRepository]. -@ProviderFor(extensionRepository) -final extensionRepositoryProvider = - AutoDisposeProvider.internal( - extensionRepository, - name: r'extensionRepositoryProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$extensionRepositoryHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef ExtensionRepositoryRef = AutoDisposeProviderRef; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/browse_center/data/source_repository/source_repository.dart b/lib/src/features/browse_center/data/source_repository/source_repository.dart deleted file mode 100644 index bdfe59ec..00000000 --- a/lib/src/features/browse_center/data/source_repository/source_repository.dart +++ /dev/null @@ -1,119 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:dio/dio.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../constants/endpoints.dart'; -import '../../../../constants/enum.dart'; -import '../../../../global_providers/global_providers.dart'; -import '../../../../utils/storage/dio/dio_client.dart'; -import '../../domain/filter/filter_model.dart'; -import '../../domain/manga_page/manga_page.dart'; -import '../../domain/source/source_model.dart'; -import '../../domain/source_preference/source_preference.dart'; - -part 'source_repository.g.dart'; - -class SourceRepository { - final DioClient dioClient; - - SourceRepository(this.dioClient); - - Future?> getSourceList({CancelToken? cancelToken}) async => - (await dioClient.get, Source>( - SourceUrl.sourceList, - decoder: (e) => - e is Map ? Source.fromJson(e) : Source(), - cancelToken: cancelToken, - )) - .data; - - Future getMangaList({ - required String sourceId, - required SourceType sourceType, - required int pageNum, - String? query, - List>? filter, - CancelToken? cancelToken, - }) async { - if (sourceType != SourceType.filter) { - return (await dioClient.get( - SourceUrl.getMangaList(sourceId, sourceType.name, pageNum), - decoder: (e) => - e is Map ? MangaPage.fromJson(e) : null, - cancelToken: cancelToken, - )) - .data; - } else { - return (await dioClient.post( - SourceUrl.quickSearch(sourceId), - queryParameters: { - "pageNum": pageNum, - }, - data: { - "searchTerm": query ?? "", - "filter": [...?filter], - }, - decoder: (e) => - e is Map ? MangaPage.fromJson(e) : null, - cancelToken: cancelToken, - )) - .data; - } - } - - Future?> getFilterList({ - required String sourceId, - CancelToken? cancelToken, - }) async => - (await dioClient.get, Filter>( - SourceUrl.filters(sourceId), - decoder: (e) => - e is Map ? Filter.fromJson(e) : Filter(), - cancelToken: cancelToken, - )) - .data; - - Future getSource( - {required String sourceId, CancelToken? cancelToken}) async => - (await dioClient.get( - SourceUrl.withId(sourceId), - decoder: (e) => - e is Map ? Source.fromJson(e) : Source(), - cancelToken: cancelToken, - )) - .data; - - Future?> getPreferenceList({ - required String sourceId, - CancelToken? cancelToken, - }) async => - (await dioClient.get, SourcePreference>( - SourceUrl.preferences(sourceId), - decoder: (e) => e is Map - ? SourcePreference.fromJson(e) - : SourcePreference(), - cancelToken: cancelToken, - )) - .data; - - Future updatePreferenceList({ - required String sourceId, - CancelToken? cancelToken, - Map? preference, - }) async => - (await dioClient.post( - SourceUrl.preferences(sourceId), - data: preference, - cancelToken: cancelToken, - )) - .data; -} - -@riverpod -SourceRepository sourceRepository(ref) => - SourceRepository(ref.watch(dioClientKeyProvider)); diff --git a/lib/src/features/browse_center/data/source_repository/source_repository.g.dart b/lib/src/features/browse_center/data/source_repository/source_repository.g.dart deleted file mode 100644 index dcda92c6..00000000 --- a/lib/src/features/browse_center/data/source_repository/source_repository.g.dart +++ /dev/null @@ -1,25 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'source_repository.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$sourceRepositoryHash() => r'4d2ee52c078c89e88a9d8e8b70cc40cff251994e'; - -/// See also [sourceRepository]. -@ProviderFor(sourceRepository) -final sourceRepositoryProvider = AutoDisposeProvider.internal( - sourceRepository, - name: r'sourceRepositoryProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$sourceRepositoryHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef SourceRepositoryRef = AutoDisposeProviderRef; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/browse_center/domain/extension/extension_model.dart b/lib/src/features/browse_center/domain/extension/extension_model.dart deleted file mode 100644 index 7ecf60bb..00000000 --- a/lib/src/features/browse_center/domain/extension/extension_model.dart +++ /dev/null @@ -1,37 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:freezed_annotation/freezed_annotation.dart'; - -import '../../../../utils/freezed_converters/language_json_converter.dart'; -import '../language/language_model.dart'; - -part 'extension_model.freezed.dart'; -part 'extension_model.g.dart'; - -@freezed -class Extension with _$Extension { - factory Extension({ - String? apkName, - bool? hasUpdate, - String? iconUrl, - bool? installed, - bool? isNsfw, - @JsonKey( - fromJson: LanguageJsonConverter.fromJson, - toJson: LanguageJsonConverter.toJson, - ) - Language? lang, - String? name, - bool? obsolete, - String? pkgName, - int? versionCode, - String? versionName, - }) = _Extension; - - factory Extension.fromJson(Map json) => - _$ExtensionFromJson(json); -} diff --git a/lib/src/features/browse_center/domain/extension/extension_model.freezed.dart b/lib/src/features/browse_center/domain/extension/extension_model.freezed.dart deleted file mode 100644 index 4317427d..00000000 --- a/lib/src/features/browse_center/domain/extension/extension_model.freezed.dart +++ /dev/null @@ -1,409 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'extension_model.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -Extension _$ExtensionFromJson(Map json) { - return _Extension.fromJson(json); -} - -/// @nodoc -mixin _$Extension { - String? get apkName => throw _privateConstructorUsedError; - bool? get hasUpdate => throw _privateConstructorUsedError; - String? get iconUrl => throw _privateConstructorUsedError; - bool? get installed => throw _privateConstructorUsedError; - bool? get isNsfw => throw _privateConstructorUsedError; - @JsonKey( - fromJson: LanguageJsonConverter.fromJson, - toJson: LanguageJsonConverter.toJson) - Language? get lang => throw _privateConstructorUsedError; - String? get name => throw _privateConstructorUsedError; - bool? get obsolete => throw _privateConstructorUsedError; - String? get pkgName => throw _privateConstructorUsedError; - int? get versionCode => throw _privateConstructorUsedError; - String? get versionName => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $ExtensionCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $ExtensionCopyWith<$Res> { - factory $ExtensionCopyWith(Extension value, $Res Function(Extension) then) = - _$ExtensionCopyWithImpl<$Res, Extension>; - @useResult - $Res call( - {String? apkName, - bool? hasUpdate, - String? iconUrl, - bool? installed, - bool? isNsfw, - @JsonKey( - fromJson: LanguageJsonConverter.fromJson, - toJson: LanguageJsonConverter.toJson) - Language? lang, - String? name, - bool? obsolete, - String? pkgName, - int? versionCode, - String? versionName}); - - $LanguageCopyWith<$Res>? get lang; -} - -/// @nodoc -class _$ExtensionCopyWithImpl<$Res, $Val extends Extension> - implements $ExtensionCopyWith<$Res> { - _$ExtensionCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? apkName = freezed, - Object? hasUpdate = freezed, - Object? iconUrl = freezed, - Object? installed = freezed, - Object? isNsfw = freezed, - Object? lang = freezed, - Object? name = freezed, - Object? obsolete = freezed, - Object? pkgName = freezed, - Object? versionCode = freezed, - Object? versionName = freezed, - }) { - return _then(_value.copyWith( - apkName: freezed == apkName - ? _value.apkName - : apkName // ignore: cast_nullable_to_non_nullable - as String?, - hasUpdate: freezed == hasUpdate - ? _value.hasUpdate - : hasUpdate // ignore: cast_nullable_to_non_nullable - as bool?, - iconUrl: freezed == iconUrl - ? _value.iconUrl - : iconUrl // ignore: cast_nullable_to_non_nullable - as String?, - installed: freezed == installed - ? _value.installed - : installed // ignore: cast_nullable_to_non_nullable - as bool?, - isNsfw: freezed == isNsfw - ? _value.isNsfw - : isNsfw // ignore: cast_nullable_to_non_nullable - as bool?, - lang: freezed == lang - ? _value.lang - : lang // ignore: cast_nullable_to_non_nullable - as Language?, - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - obsolete: freezed == obsolete - ? _value.obsolete - : obsolete // ignore: cast_nullable_to_non_nullable - as bool?, - pkgName: freezed == pkgName - ? _value.pkgName - : pkgName // ignore: cast_nullable_to_non_nullable - as String?, - versionCode: freezed == versionCode - ? _value.versionCode - : versionCode // ignore: cast_nullable_to_non_nullable - as int?, - versionName: freezed == versionName - ? _value.versionName - : versionName // ignore: cast_nullable_to_non_nullable - as String?, - ) as $Val); - } - - @override - @pragma('vm:prefer-inline') - $LanguageCopyWith<$Res>? get lang { - if (_value.lang == null) { - return null; - } - - return $LanguageCopyWith<$Res>(_value.lang!, (value) { - return _then(_value.copyWith(lang: value) as $Val); - }); - } -} - -/// @nodoc -abstract class _$$ExtensionImplCopyWith<$Res> - implements $ExtensionCopyWith<$Res> { - factory _$$ExtensionImplCopyWith( - _$ExtensionImpl value, $Res Function(_$ExtensionImpl) then) = - __$$ExtensionImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {String? apkName, - bool? hasUpdate, - String? iconUrl, - bool? installed, - bool? isNsfw, - @JsonKey( - fromJson: LanguageJsonConverter.fromJson, - toJson: LanguageJsonConverter.toJson) - Language? lang, - String? name, - bool? obsolete, - String? pkgName, - int? versionCode, - String? versionName}); - - @override - $LanguageCopyWith<$Res>? get lang; -} - -/// @nodoc -class __$$ExtensionImplCopyWithImpl<$Res> - extends _$ExtensionCopyWithImpl<$Res, _$ExtensionImpl> - implements _$$ExtensionImplCopyWith<$Res> { - __$$ExtensionImplCopyWithImpl( - _$ExtensionImpl _value, $Res Function(_$ExtensionImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? apkName = freezed, - Object? hasUpdate = freezed, - Object? iconUrl = freezed, - Object? installed = freezed, - Object? isNsfw = freezed, - Object? lang = freezed, - Object? name = freezed, - Object? obsolete = freezed, - Object? pkgName = freezed, - Object? versionCode = freezed, - Object? versionName = freezed, - }) { - return _then(_$ExtensionImpl( - apkName: freezed == apkName - ? _value.apkName - : apkName // ignore: cast_nullable_to_non_nullable - as String?, - hasUpdate: freezed == hasUpdate - ? _value.hasUpdate - : hasUpdate // ignore: cast_nullable_to_non_nullable - as bool?, - iconUrl: freezed == iconUrl - ? _value.iconUrl - : iconUrl // ignore: cast_nullable_to_non_nullable - as String?, - installed: freezed == installed - ? _value.installed - : installed // ignore: cast_nullable_to_non_nullable - as bool?, - isNsfw: freezed == isNsfw - ? _value.isNsfw - : isNsfw // ignore: cast_nullable_to_non_nullable - as bool?, - lang: freezed == lang - ? _value.lang - : lang // ignore: cast_nullable_to_non_nullable - as Language?, - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - obsolete: freezed == obsolete - ? _value.obsolete - : obsolete // ignore: cast_nullable_to_non_nullable - as bool?, - pkgName: freezed == pkgName - ? _value.pkgName - : pkgName // ignore: cast_nullable_to_non_nullable - as String?, - versionCode: freezed == versionCode - ? _value.versionCode - : versionCode // ignore: cast_nullable_to_non_nullable - as int?, - versionName: freezed == versionName - ? _value.versionName - : versionName // ignore: cast_nullable_to_non_nullable - as String?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$ExtensionImpl implements _Extension { - _$ExtensionImpl( - {this.apkName, - this.hasUpdate, - this.iconUrl, - this.installed, - this.isNsfw, - @JsonKey( - fromJson: LanguageJsonConverter.fromJson, - toJson: LanguageJsonConverter.toJson) - this.lang, - this.name, - this.obsolete, - this.pkgName, - this.versionCode, - this.versionName}); - - factory _$ExtensionImpl.fromJson(Map json) => - _$$ExtensionImplFromJson(json); - - @override - final String? apkName; - @override - final bool? hasUpdate; - @override - final String? iconUrl; - @override - final bool? installed; - @override - final bool? isNsfw; - @override - @JsonKey( - fromJson: LanguageJsonConverter.fromJson, - toJson: LanguageJsonConverter.toJson) - final Language? lang; - @override - final String? name; - @override - final bool? obsolete; - @override - final String? pkgName; - @override - final int? versionCode; - @override - final String? versionName; - - @override - String toString() { - return 'Extension(apkName: $apkName, hasUpdate: $hasUpdate, iconUrl: $iconUrl, installed: $installed, isNsfw: $isNsfw, lang: $lang, name: $name, obsolete: $obsolete, pkgName: $pkgName, versionCode: $versionCode, versionName: $versionName)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$ExtensionImpl && - (identical(other.apkName, apkName) || other.apkName == apkName) && - (identical(other.hasUpdate, hasUpdate) || - other.hasUpdate == hasUpdate) && - (identical(other.iconUrl, iconUrl) || other.iconUrl == iconUrl) && - (identical(other.installed, installed) || - other.installed == installed) && - (identical(other.isNsfw, isNsfw) || other.isNsfw == isNsfw) && - (identical(other.lang, lang) || other.lang == lang) && - (identical(other.name, name) || other.name == name) && - (identical(other.obsolete, obsolete) || - other.obsolete == obsolete) && - (identical(other.pkgName, pkgName) || other.pkgName == pkgName) && - (identical(other.versionCode, versionCode) || - other.versionCode == versionCode) && - (identical(other.versionName, versionName) || - other.versionName == versionName)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, - apkName, - hasUpdate, - iconUrl, - installed, - isNsfw, - lang, - name, - obsolete, - pkgName, - versionCode, - versionName); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$ExtensionImplCopyWith<_$ExtensionImpl> get copyWith => - __$$ExtensionImplCopyWithImpl<_$ExtensionImpl>(this, _$identity); - - @override - Map toJson() { - return _$$ExtensionImplToJson( - this, - ); - } -} - -abstract class _Extension implements Extension { - factory _Extension( - {final String? apkName, - final bool? hasUpdate, - final String? iconUrl, - final bool? installed, - final bool? isNsfw, - @JsonKey( - fromJson: LanguageJsonConverter.fromJson, - toJson: LanguageJsonConverter.toJson) - final Language? lang, - final String? name, - final bool? obsolete, - final String? pkgName, - final int? versionCode, - final String? versionName}) = _$ExtensionImpl; - - factory _Extension.fromJson(Map json) = - _$ExtensionImpl.fromJson; - - @override - String? get apkName; - @override - bool? get hasUpdate; - @override - String? get iconUrl; - @override - bool? get installed; - @override - bool? get isNsfw; - @override - @JsonKey( - fromJson: LanguageJsonConverter.fromJson, - toJson: LanguageJsonConverter.toJson) - Language? get lang; - @override - String? get name; - @override - bool? get obsolete; - @override - String? get pkgName; - @override - int? get versionCode; - @override - String? get versionName; - @override - @JsonKey(ignore: true) - _$$ExtensionImplCopyWith<_$ExtensionImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/src/features/browse_center/domain/extension/extension_model.g.dart b/lib/src/features/browse_center/domain/extension/extension_model.g.dart deleted file mode 100644 index 1ca8db5b..00000000 --- a/lib/src/features/browse_center/domain/extension/extension_model.g.dart +++ /dev/null @@ -1,37 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'extension_model.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$ExtensionImpl _$$ExtensionImplFromJson(Map json) => - _$ExtensionImpl( - apkName: json['apkName'] as String?, - hasUpdate: json['hasUpdate'] as bool?, - iconUrl: json['iconUrl'] as String?, - installed: json['installed'] as bool?, - isNsfw: json['isNsfw'] as bool?, - lang: LanguageJsonConverter.fromJson(json['lang'] as String?), - name: json['name'] as String?, - obsolete: json['obsolete'] as bool?, - pkgName: json['pkgName'] as String?, - versionCode: json['versionCode'] as int?, - versionName: json['versionName'] as String?, - ); - -Map _$$ExtensionImplToJson(_$ExtensionImpl instance) => - { - 'apkName': instance.apkName, - 'hasUpdate': instance.hasUpdate, - 'iconUrl': instance.iconUrl, - 'installed': instance.installed, - 'isNsfw': instance.isNsfw, - 'lang': LanguageJsonConverter.toJson(instance.lang), - 'name': instance.name, - 'obsolete': instance.obsolete, - 'pkgName': instance.pkgName, - 'versionCode': instance.versionCode, - 'versionName': instance.versionName, - }; diff --git a/lib/src/features/browse_center/domain/filter/filter_model.dart b/lib/src/features/browse_center/domain/filter/filter_model.dart deleted file mode 100644 index 5000cd38..00000000 --- a/lib/src/features/browse_center/domain/filter/filter_model.dart +++ /dev/null @@ -1,67 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:convert'; - -import 'package:freezed_annotation/freezed_annotation.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; -import '../filter_state/filter_state_model.dart'; - -part 'filter_model.freezed.dart'; -part 'filter_model.g.dart'; - -@freezed -class Filter with _$Filter { - factory Filter({ - String? type, - @JsonKey(readValue: Filter.filterFromJson, name: 'filter') - FilterState? filterState, - }) = _Filter; - - factory Filter.fromJson(Map json) => _$FilterFromJson(json); - - static Map filterFromJson( - Map json, String str) { - final filter = json['filter']; - return { - 'type': json['type'], - if (filter is Map) ...filter, - }; - } - - static List> filtersToJson(List filters) { - final jsonFilter = >[]; - for (int i = 0; i < filters.length; i++) { - final map = Filter.customFilterToJson(filters[i], i); - if (map != null) jsonFilter.addAll(map); - } - return jsonFilter; - } - - static List>? customFilterToJson( - Filter filter, int position) { - return switch (filter.filterState) { - FilterGroup( - state: List? state, - ) => - [ - for (int i = 0; i < (state?.length).getValueOnNullOrNegative(); i++) - { - "position": position, - "state": json.encode(customFilterToJson(state![i], i)?.first), - }, - ], - null => null, - _ => [ - { - "position": position, - "state": json.encode(filter.filterState?.toJson()["state"]) - } - ], - }; - } -} diff --git a/lib/src/features/browse_center/domain/filter/filter_model.freezed.dart b/lib/src/features/browse_center/domain/filter/filter_model.freezed.dart deleted file mode 100644 index 3a18d33b..00000000 --- a/lib/src/features/browse_center/domain/filter/filter_model.freezed.dart +++ /dev/null @@ -1,196 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'filter_model.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -Filter _$FilterFromJson(Map json) { - return _Filter.fromJson(json); -} - -/// @nodoc -mixin _$Filter { - String? get type => throw _privateConstructorUsedError; - @JsonKey(readValue: Filter.filterFromJson, name: 'filter') - FilterState? get filterState => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $FilterCopyWith get copyWith => throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $FilterCopyWith<$Res> { - factory $FilterCopyWith(Filter value, $Res Function(Filter) then) = - _$FilterCopyWithImpl<$Res, Filter>; - @useResult - $Res call( - {String? type, - @JsonKey(readValue: Filter.filterFromJson, name: 'filter') - FilterState? filterState}); - - $FilterStateCopyWith<$Res>? get filterState; -} - -/// @nodoc -class _$FilterCopyWithImpl<$Res, $Val extends Filter> - implements $FilterCopyWith<$Res> { - _$FilterCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? type = freezed, - Object? filterState = freezed, - }) { - return _then(_value.copyWith( - type: freezed == type - ? _value.type - : type // ignore: cast_nullable_to_non_nullable - as String?, - filterState: freezed == filterState - ? _value.filterState - : filterState // ignore: cast_nullable_to_non_nullable - as FilterState?, - ) as $Val); - } - - @override - @pragma('vm:prefer-inline') - $FilterStateCopyWith<$Res>? get filterState { - if (_value.filterState == null) { - return null; - } - - return $FilterStateCopyWith<$Res>(_value.filterState!, (value) { - return _then(_value.copyWith(filterState: value) as $Val); - }); - } -} - -/// @nodoc -abstract class _$$FilterImplCopyWith<$Res> implements $FilterCopyWith<$Res> { - factory _$$FilterImplCopyWith( - _$FilterImpl value, $Res Function(_$FilterImpl) then) = - __$$FilterImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {String? type, - @JsonKey(readValue: Filter.filterFromJson, name: 'filter') - FilterState? filterState}); - - @override - $FilterStateCopyWith<$Res>? get filterState; -} - -/// @nodoc -class __$$FilterImplCopyWithImpl<$Res> - extends _$FilterCopyWithImpl<$Res, _$FilterImpl> - implements _$$FilterImplCopyWith<$Res> { - __$$FilterImplCopyWithImpl( - _$FilterImpl _value, $Res Function(_$FilterImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? type = freezed, - Object? filterState = freezed, - }) { - return _then(_$FilterImpl( - type: freezed == type - ? _value.type - : type // ignore: cast_nullable_to_non_nullable - as String?, - filterState: freezed == filterState - ? _value.filterState - : filterState // ignore: cast_nullable_to_non_nullable - as FilterState?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$FilterImpl implements _Filter { - _$FilterImpl( - {this.type, - @JsonKey(readValue: Filter.filterFromJson, name: 'filter') - this.filterState}); - - factory _$FilterImpl.fromJson(Map json) => - _$$FilterImplFromJson(json); - - @override - final String? type; - @override - @JsonKey(readValue: Filter.filterFromJson, name: 'filter') - final FilterState? filterState; - - @override - String toString() { - return 'Filter(type: $type, filterState: $filterState)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$FilterImpl && - (identical(other.type, type) || other.type == type) && - (identical(other.filterState, filterState) || - other.filterState == filterState)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, type, filterState); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$FilterImplCopyWith<_$FilterImpl> get copyWith => - __$$FilterImplCopyWithImpl<_$FilterImpl>(this, _$identity); - - @override - Map toJson() { - return _$$FilterImplToJson( - this, - ); - } -} - -abstract class _Filter implements Filter { - factory _Filter( - {final String? type, - @JsonKey(readValue: Filter.filterFromJson, name: 'filter') - final FilterState? filterState}) = _$FilterImpl; - - factory _Filter.fromJson(Map json) = _$FilterImpl.fromJson; - - @override - String? get type; - @override - @JsonKey(readValue: Filter.filterFromJson, name: 'filter') - FilterState? get filterState; - @override - @JsonKey(ignore: true) - _$$FilterImplCopyWith<_$FilterImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/src/features/browse_center/domain/filter/filter_model.g.dart b/lib/src/features/browse_center/domain/filter/filter_model.g.dart deleted file mode 100644 index 3038506f..00000000 --- a/lib/src/features/browse_center/domain/filter/filter_model.g.dart +++ /dev/null @@ -1,21 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'filter_model.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$FilterImpl _$$FilterImplFromJson(Map json) => _$FilterImpl( - type: json['type'] as String?, - filterState: Filter.filterFromJson(json, 'filter') == null - ? null - : FilterState.fromJson( - Filter.filterFromJson(json, 'filter') as Map), - ); - -Map _$$FilterImplToJson(_$FilterImpl instance) => - { - 'type': instance.type, - 'filter': instance.filterState?.toJson(), - }; diff --git a/lib/src/features/browse_center/domain/filter_state/filter_state_model.dart b/lib/src/features/browse_center/domain/filter_state/filter_state_model.dart deleted file mode 100644 index 9e8fc7fa..00000000 --- a/lib/src/features/browse_center/domain/filter_state/filter_state_model.dart +++ /dev/null @@ -1,74 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:freezed_annotation/freezed_annotation.dart'; - -import '../filter/filter_model.dart'; - -part 'filter_state_model.freezed.dart'; -part 'filter_state_model.g.dart'; - -@Freezed( - unionKey: 'type', - unionValueCase: FreezedUnionCase.pascal, - fallbackUnion: 'separator', -) -sealed class FilterState with _$FilterState { - const factory FilterState.header({int? state, String? name}) = FilterHeader; - - const factory FilterState.separator({int? state, String? name}) = - FilterSeparator; - - const factory FilterState.text({String? state, String? name}) = FilterText; - - const factory FilterState.checkBox({bool? state, String? name}) = - FilterCheckBox; - - const factory FilterState.triState({int? state, String? name}) = - FilterTriState; - - const factory FilterState.sort({ - SortState? state, - String? name, - List? values, - }) = FilterSort; - - const factory FilterState.select({ - int? state, - String? name, - List? displayValues, - }) = FilterSelect; - - const factory FilterState.group({ - List? state, - String? name, - }) = FilterGroup; - - factory FilterState.fromJson(Map json) => - _$FilterStateFromJson(json); -} - -@freezed -class SortState with _$SortState { - factory SortState({ - int? index, - bool? ascending, - }) = _SortState; - - factory SortState.fromJson(Map json) => - _$SortStateFromJson(json); -} - -@freezed -class SelectValues with _$SelectValues { - factory SelectValues({ - String? first, - String? second, - }) = _SelectValues; - - factory SelectValues.fromJson(Map json) => - _$SelectValuesFromJson(json); -} diff --git a/lib/src/features/browse_center/domain/filter_state/filter_state_model.freezed.dart b/lib/src/features/browse_center/domain/filter_state/filter_state_model.freezed.dart deleted file mode 100644 index 76957d02..00000000 --- a/lib/src/features/browse_center/domain/filter_state/filter_state_model.freezed.dart +++ /dev/null @@ -1,2222 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'filter_state_model.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -FilterState _$FilterStateFromJson(Map json) { - switch (json['type']) { - case 'Header': - return FilterHeader.fromJson(json); - case 'Text': - return FilterText.fromJson(json); - case 'CheckBox': - return FilterCheckBox.fromJson(json); - case 'TriState': - return FilterTriState.fromJson(json); - case 'Sort': - return FilterSort.fromJson(json); - case 'Select': - return FilterSelect.fromJson(json); - case 'Group': - return FilterGroup.fromJson(json); - - default: - return FilterSeparator.fromJson(json); - } -} - -/// @nodoc -mixin _$FilterState { - Object? get state => throw _privateConstructorUsedError; - String? get name => throw _privateConstructorUsedError; - @optionalTypeArgs - TResult when({ - required TResult Function(int? state, String? name) header, - required TResult Function(int? state, String? name) separator, - required TResult Function(String? state, String? name) text, - required TResult Function(bool? state, String? name) checkBox, - required TResult Function(int? state, String? name) triState, - required TResult Function( - SortState? state, String? name, List? values) - sort, - required TResult Function( - int? state, String? name, List? displayValues) - select, - required TResult Function(List? state, String? name) group, - }) => - throw _privateConstructorUsedError; - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(int? state, String? name)? header, - TResult? Function(int? state, String? name)? separator, - TResult? Function(String? state, String? name)? text, - TResult? Function(bool? state, String? name)? checkBox, - TResult? Function(int? state, String? name)? triState, - TResult? Function(SortState? state, String? name, List? values)? - sort, - TResult? Function(int? state, String? name, List? displayValues)? - select, - TResult? Function(List? state, String? name)? group, - }) => - throw _privateConstructorUsedError; - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(int? state, String? name)? header, - TResult Function(int? state, String? name)? separator, - TResult Function(String? state, String? name)? text, - TResult Function(bool? state, String? name)? checkBox, - TResult Function(int? state, String? name)? triState, - TResult Function(SortState? state, String? name, List? values)? - sort, - TResult Function(int? state, String? name, List? displayValues)? - select, - TResult Function(List? state, String? name)? group, - required TResult orElse(), - }) => - throw _privateConstructorUsedError; - @optionalTypeArgs - TResult map({ - required TResult Function(FilterHeader value) header, - required TResult Function(FilterSeparator value) separator, - required TResult Function(FilterText value) text, - required TResult Function(FilterCheckBox value) checkBox, - required TResult Function(FilterTriState value) triState, - required TResult Function(FilterSort value) sort, - required TResult Function(FilterSelect value) select, - required TResult Function(FilterGroup value) group, - }) => - throw _privateConstructorUsedError; - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(FilterHeader value)? header, - TResult? Function(FilterSeparator value)? separator, - TResult? Function(FilterText value)? text, - TResult? Function(FilterCheckBox value)? checkBox, - TResult? Function(FilterTriState value)? triState, - TResult? Function(FilterSort value)? sort, - TResult? Function(FilterSelect value)? select, - TResult? Function(FilterGroup value)? group, - }) => - throw _privateConstructorUsedError; - @optionalTypeArgs - TResult maybeMap({ - TResult Function(FilterHeader value)? header, - TResult Function(FilterSeparator value)? separator, - TResult Function(FilterText value)? text, - TResult Function(FilterCheckBox value)? checkBox, - TResult Function(FilterTriState value)? triState, - TResult Function(FilterSort value)? sort, - TResult Function(FilterSelect value)? select, - TResult Function(FilterGroup value)? group, - required TResult orElse(), - }) => - throw _privateConstructorUsedError; - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $FilterStateCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $FilterStateCopyWith<$Res> { - factory $FilterStateCopyWith( - FilterState value, $Res Function(FilterState) then) = - _$FilterStateCopyWithImpl<$Res, FilterState>; - @useResult - $Res call({String? name}); -} - -/// @nodoc -class _$FilterStateCopyWithImpl<$Res, $Val extends FilterState> - implements $FilterStateCopyWith<$Res> { - _$FilterStateCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? name = freezed, - }) { - return _then(_value.copyWith( - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$FilterHeaderImplCopyWith<$Res> - implements $FilterStateCopyWith<$Res> { - factory _$$FilterHeaderImplCopyWith( - _$FilterHeaderImpl value, $Res Function(_$FilterHeaderImpl) then) = - __$$FilterHeaderImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({int? state, String? name}); -} - -/// @nodoc -class __$$FilterHeaderImplCopyWithImpl<$Res> - extends _$FilterStateCopyWithImpl<$Res, _$FilterHeaderImpl> - implements _$$FilterHeaderImplCopyWith<$Res> { - __$$FilterHeaderImplCopyWithImpl( - _$FilterHeaderImpl _value, $Res Function(_$FilterHeaderImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? state = freezed, - Object? name = freezed, - }) { - return _then(_$FilterHeaderImpl( - state: freezed == state - ? _value.state - : state // ignore: cast_nullable_to_non_nullable - as int?, - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$FilterHeaderImpl implements FilterHeader { - const _$FilterHeaderImpl({this.state, this.name, final String? $type}) - : $type = $type ?? 'Header'; - - factory _$FilterHeaderImpl.fromJson(Map json) => - _$$FilterHeaderImplFromJson(json); - - @override - final int? state; - @override - final String? name; - - @JsonKey(name: 'type') - final String $type; - - @override - String toString() { - return 'FilterState.header(state: $state, name: $name)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$FilterHeaderImpl && - (identical(other.state, state) || other.state == state) && - (identical(other.name, name) || other.name == name)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, state, name); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$FilterHeaderImplCopyWith<_$FilterHeaderImpl> get copyWith => - __$$FilterHeaderImplCopyWithImpl<_$FilterHeaderImpl>(this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(int? state, String? name) header, - required TResult Function(int? state, String? name) separator, - required TResult Function(String? state, String? name) text, - required TResult Function(bool? state, String? name) checkBox, - required TResult Function(int? state, String? name) triState, - required TResult Function( - SortState? state, String? name, List? values) - sort, - required TResult Function( - int? state, String? name, List? displayValues) - select, - required TResult Function(List? state, String? name) group, - }) { - return header(state, name); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(int? state, String? name)? header, - TResult? Function(int? state, String? name)? separator, - TResult? Function(String? state, String? name)? text, - TResult? Function(bool? state, String? name)? checkBox, - TResult? Function(int? state, String? name)? triState, - TResult? Function(SortState? state, String? name, List? values)? - sort, - TResult? Function(int? state, String? name, List? displayValues)? - select, - TResult? Function(List? state, String? name)? group, - }) { - return header?.call(state, name); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(int? state, String? name)? header, - TResult Function(int? state, String? name)? separator, - TResult Function(String? state, String? name)? text, - TResult Function(bool? state, String? name)? checkBox, - TResult Function(int? state, String? name)? triState, - TResult Function(SortState? state, String? name, List? values)? - sort, - TResult Function(int? state, String? name, List? displayValues)? - select, - TResult Function(List? state, String? name)? group, - required TResult orElse(), - }) { - if (header != null) { - return header(state, name); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(FilterHeader value) header, - required TResult Function(FilterSeparator value) separator, - required TResult Function(FilterText value) text, - required TResult Function(FilterCheckBox value) checkBox, - required TResult Function(FilterTriState value) triState, - required TResult Function(FilterSort value) sort, - required TResult Function(FilterSelect value) select, - required TResult Function(FilterGroup value) group, - }) { - return header(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(FilterHeader value)? header, - TResult? Function(FilterSeparator value)? separator, - TResult? Function(FilterText value)? text, - TResult? Function(FilterCheckBox value)? checkBox, - TResult? Function(FilterTriState value)? triState, - TResult? Function(FilterSort value)? sort, - TResult? Function(FilterSelect value)? select, - TResult? Function(FilterGroup value)? group, - }) { - return header?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(FilterHeader value)? header, - TResult Function(FilterSeparator value)? separator, - TResult Function(FilterText value)? text, - TResult Function(FilterCheckBox value)? checkBox, - TResult Function(FilterTriState value)? triState, - TResult Function(FilterSort value)? sort, - TResult Function(FilterSelect value)? select, - TResult Function(FilterGroup value)? group, - required TResult orElse(), - }) { - if (header != null) { - return header(this); - } - return orElse(); - } - - @override - Map toJson() { - return _$$FilterHeaderImplToJson( - this, - ); - } -} - -abstract class FilterHeader implements FilterState { - const factory FilterHeader({final int? state, final String? name}) = - _$FilterHeaderImpl; - - factory FilterHeader.fromJson(Map json) = - _$FilterHeaderImpl.fromJson; - - @override - int? get state; - @override - String? get name; - @override - @JsonKey(ignore: true) - _$$FilterHeaderImplCopyWith<_$FilterHeaderImpl> get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class _$$FilterSeparatorImplCopyWith<$Res> - implements $FilterStateCopyWith<$Res> { - factory _$$FilterSeparatorImplCopyWith(_$FilterSeparatorImpl value, - $Res Function(_$FilterSeparatorImpl) then) = - __$$FilterSeparatorImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({int? state, String? name}); -} - -/// @nodoc -class __$$FilterSeparatorImplCopyWithImpl<$Res> - extends _$FilterStateCopyWithImpl<$Res, _$FilterSeparatorImpl> - implements _$$FilterSeparatorImplCopyWith<$Res> { - __$$FilterSeparatorImplCopyWithImpl( - _$FilterSeparatorImpl _value, $Res Function(_$FilterSeparatorImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? state = freezed, - Object? name = freezed, - }) { - return _then(_$FilterSeparatorImpl( - state: freezed == state - ? _value.state - : state // ignore: cast_nullable_to_non_nullable - as int?, - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$FilterSeparatorImpl implements FilterSeparator { - const _$FilterSeparatorImpl({this.state, this.name, final String? $type}) - : $type = $type ?? 'Separator'; - - factory _$FilterSeparatorImpl.fromJson(Map json) => - _$$FilterSeparatorImplFromJson(json); - - @override - final int? state; - @override - final String? name; - - @JsonKey(name: 'type') - final String $type; - - @override - String toString() { - return 'FilterState.separator(state: $state, name: $name)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$FilterSeparatorImpl && - (identical(other.state, state) || other.state == state) && - (identical(other.name, name) || other.name == name)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, state, name); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$FilterSeparatorImplCopyWith<_$FilterSeparatorImpl> get copyWith => - __$$FilterSeparatorImplCopyWithImpl<_$FilterSeparatorImpl>( - this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(int? state, String? name) header, - required TResult Function(int? state, String? name) separator, - required TResult Function(String? state, String? name) text, - required TResult Function(bool? state, String? name) checkBox, - required TResult Function(int? state, String? name) triState, - required TResult Function( - SortState? state, String? name, List? values) - sort, - required TResult Function( - int? state, String? name, List? displayValues) - select, - required TResult Function(List? state, String? name) group, - }) { - return separator(state, name); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(int? state, String? name)? header, - TResult? Function(int? state, String? name)? separator, - TResult? Function(String? state, String? name)? text, - TResult? Function(bool? state, String? name)? checkBox, - TResult? Function(int? state, String? name)? triState, - TResult? Function(SortState? state, String? name, List? values)? - sort, - TResult? Function(int? state, String? name, List? displayValues)? - select, - TResult? Function(List? state, String? name)? group, - }) { - return separator?.call(state, name); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(int? state, String? name)? header, - TResult Function(int? state, String? name)? separator, - TResult Function(String? state, String? name)? text, - TResult Function(bool? state, String? name)? checkBox, - TResult Function(int? state, String? name)? triState, - TResult Function(SortState? state, String? name, List? values)? - sort, - TResult Function(int? state, String? name, List? displayValues)? - select, - TResult Function(List? state, String? name)? group, - required TResult orElse(), - }) { - if (separator != null) { - return separator(state, name); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(FilterHeader value) header, - required TResult Function(FilterSeparator value) separator, - required TResult Function(FilterText value) text, - required TResult Function(FilterCheckBox value) checkBox, - required TResult Function(FilterTriState value) triState, - required TResult Function(FilterSort value) sort, - required TResult Function(FilterSelect value) select, - required TResult Function(FilterGroup value) group, - }) { - return separator(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(FilterHeader value)? header, - TResult? Function(FilterSeparator value)? separator, - TResult? Function(FilterText value)? text, - TResult? Function(FilterCheckBox value)? checkBox, - TResult? Function(FilterTriState value)? triState, - TResult? Function(FilterSort value)? sort, - TResult? Function(FilterSelect value)? select, - TResult? Function(FilterGroup value)? group, - }) { - return separator?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(FilterHeader value)? header, - TResult Function(FilterSeparator value)? separator, - TResult Function(FilterText value)? text, - TResult Function(FilterCheckBox value)? checkBox, - TResult Function(FilterTriState value)? triState, - TResult Function(FilterSort value)? sort, - TResult Function(FilterSelect value)? select, - TResult Function(FilterGroup value)? group, - required TResult orElse(), - }) { - if (separator != null) { - return separator(this); - } - return orElse(); - } - - @override - Map toJson() { - return _$$FilterSeparatorImplToJson( - this, - ); - } -} - -abstract class FilterSeparator implements FilterState { - const factory FilterSeparator({final int? state, final String? name}) = - _$FilterSeparatorImpl; - - factory FilterSeparator.fromJson(Map json) = - _$FilterSeparatorImpl.fromJson; - - @override - int? get state; - @override - String? get name; - @override - @JsonKey(ignore: true) - _$$FilterSeparatorImplCopyWith<_$FilterSeparatorImpl> get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class _$$FilterTextImplCopyWith<$Res> - implements $FilterStateCopyWith<$Res> { - factory _$$FilterTextImplCopyWith( - _$FilterTextImpl value, $Res Function(_$FilterTextImpl) then) = - __$$FilterTextImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({String? state, String? name}); -} - -/// @nodoc -class __$$FilterTextImplCopyWithImpl<$Res> - extends _$FilterStateCopyWithImpl<$Res, _$FilterTextImpl> - implements _$$FilterTextImplCopyWith<$Res> { - __$$FilterTextImplCopyWithImpl( - _$FilterTextImpl _value, $Res Function(_$FilterTextImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? state = freezed, - Object? name = freezed, - }) { - return _then(_$FilterTextImpl( - state: freezed == state - ? _value.state - : state // ignore: cast_nullable_to_non_nullable - as String?, - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$FilterTextImpl implements FilterText { - const _$FilterTextImpl({this.state, this.name, final String? $type}) - : $type = $type ?? 'Text'; - - factory _$FilterTextImpl.fromJson(Map json) => - _$$FilterTextImplFromJson(json); - - @override - final String? state; - @override - final String? name; - - @JsonKey(name: 'type') - final String $type; - - @override - String toString() { - return 'FilterState.text(state: $state, name: $name)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$FilterTextImpl && - (identical(other.state, state) || other.state == state) && - (identical(other.name, name) || other.name == name)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, state, name); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$FilterTextImplCopyWith<_$FilterTextImpl> get copyWith => - __$$FilterTextImplCopyWithImpl<_$FilterTextImpl>(this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(int? state, String? name) header, - required TResult Function(int? state, String? name) separator, - required TResult Function(String? state, String? name) text, - required TResult Function(bool? state, String? name) checkBox, - required TResult Function(int? state, String? name) triState, - required TResult Function( - SortState? state, String? name, List? values) - sort, - required TResult Function( - int? state, String? name, List? displayValues) - select, - required TResult Function(List? state, String? name) group, - }) { - return text(state, name); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(int? state, String? name)? header, - TResult? Function(int? state, String? name)? separator, - TResult? Function(String? state, String? name)? text, - TResult? Function(bool? state, String? name)? checkBox, - TResult? Function(int? state, String? name)? triState, - TResult? Function(SortState? state, String? name, List? values)? - sort, - TResult? Function(int? state, String? name, List? displayValues)? - select, - TResult? Function(List? state, String? name)? group, - }) { - return text?.call(state, name); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(int? state, String? name)? header, - TResult Function(int? state, String? name)? separator, - TResult Function(String? state, String? name)? text, - TResult Function(bool? state, String? name)? checkBox, - TResult Function(int? state, String? name)? triState, - TResult Function(SortState? state, String? name, List? values)? - sort, - TResult Function(int? state, String? name, List? displayValues)? - select, - TResult Function(List? state, String? name)? group, - required TResult orElse(), - }) { - if (text != null) { - return text(state, name); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(FilterHeader value) header, - required TResult Function(FilterSeparator value) separator, - required TResult Function(FilterText value) text, - required TResult Function(FilterCheckBox value) checkBox, - required TResult Function(FilterTriState value) triState, - required TResult Function(FilterSort value) sort, - required TResult Function(FilterSelect value) select, - required TResult Function(FilterGroup value) group, - }) { - return text(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(FilterHeader value)? header, - TResult? Function(FilterSeparator value)? separator, - TResult? Function(FilterText value)? text, - TResult? Function(FilterCheckBox value)? checkBox, - TResult? Function(FilterTriState value)? triState, - TResult? Function(FilterSort value)? sort, - TResult? Function(FilterSelect value)? select, - TResult? Function(FilterGroup value)? group, - }) { - return text?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(FilterHeader value)? header, - TResult Function(FilterSeparator value)? separator, - TResult Function(FilterText value)? text, - TResult Function(FilterCheckBox value)? checkBox, - TResult Function(FilterTriState value)? triState, - TResult Function(FilterSort value)? sort, - TResult Function(FilterSelect value)? select, - TResult Function(FilterGroup value)? group, - required TResult orElse(), - }) { - if (text != null) { - return text(this); - } - return orElse(); - } - - @override - Map toJson() { - return _$$FilterTextImplToJson( - this, - ); - } -} - -abstract class FilterText implements FilterState { - const factory FilterText({final String? state, final String? name}) = - _$FilterTextImpl; - - factory FilterText.fromJson(Map json) = - _$FilterTextImpl.fromJson; - - @override - String? get state; - @override - String? get name; - @override - @JsonKey(ignore: true) - _$$FilterTextImplCopyWith<_$FilterTextImpl> get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class _$$FilterCheckBoxImplCopyWith<$Res> - implements $FilterStateCopyWith<$Res> { - factory _$$FilterCheckBoxImplCopyWith(_$FilterCheckBoxImpl value, - $Res Function(_$FilterCheckBoxImpl) then) = - __$$FilterCheckBoxImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({bool? state, String? name}); -} - -/// @nodoc -class __$$FilterCheckBoxImplCopyWithImpl<$Res> - extends _$FilterStateCopyWithImpl<$Res, _$FilterCheckBoxImpl> - implements _$$FilterCheckBoxImplCopyWith<$Res> { - __$$FilterCheckBoxImplCopyWithImpl( - _$FilterCheckBoxImpl _value, $Res Function(_$FilterCheckBoxImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? state = freezed, - Object? name = freezed, - }) { - return _then(_$FilterCheckBoxImpl( - state: freezed == state - ? _value.state - : state // ignore: cast_nullable_to_non_nullable - as bool?, - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$FilterCheckBoxImpl implements FilterCheckBox { - const _$FilterCheckBoxImpl({this.state, this.name, final String? $type}) - : $type = $type ?? 'CheckBox'; - - factory _$FilterCheckBoxImpl.fromJson(Map json) => - _$$FilterCheckBoxImplFromJson(json); - - @override - final bool? state; - @override - final String? name; - - @JsonKey(name: 'type') - final String $type; - - @override - String toString() { - return 'FilterState.checkBox(state: $state, name: $name)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$FilterCheckBoxImpl && - (identical(other.state, state) || other.state == state) && - (identical(other.name, name) || other.name == name)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, state, name); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$FilterCheckBoxImplCopyWith<_$FilterCheckBoxImpl> get copyWith => - __$$FilterCheckBoxImplCopyWithImpl<_$FilterCheckBoxImpl>( - this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(int? state, String? name) header, - required TResult Function(int? state, String? name) separator, - required TResult Function(String? state, String? name) text, - required TResult Function(bool? state, String? name) checkBox, - required TResult Function(int? state, String? name) triState, - required TResult Function( - SortState? state, String? name, List? values) - sort, - required TResult Function( - int? state, String? name, List? displayValues) - select, - required TResult Function(List? state, String? name) group, - }) { - return checkBox(state, name); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(int? state, String? name)? header, - TResult? Function(int? state, String? name)? separator, - TResult? Function(String? state, String? name)? text, - TResult? Function(bool? state, String? name)? checkBox, - TResult? Function(int? state, String? name)? triState, - TResult? Function(SortState? state, String? name, List? values)? - sort, - TResult? Function(int? state, String? name, List? displayValues)? - select, - TResult? Function(List? state, String? name)? group, - }) { - return checkBox?.call(state, name); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(int? state, String? name)? header, - TResult Function(int? state, String? name)? separator, - TResult Function(String? state, String? name)? text, - TResult Function(bool? state, String? name)? checkBox, - TResult Function(int? state, String? name)? triState, - TResult Function(SortState? state, String? name, List? values)? - sort, - TResult Function(int? state, String? name, List? displayValues)? - select, - TResult Function(List? state, String? name)? group, - required TResult orElse(), - }) { - if (checkBox != null) { - return checkBox(state, name); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(FilterHeader value) header, - required TResult Function(FilterSeparator value) separator, - required TResult Function(FilterText value) text, - required TResult Function(FilterCheckBox value) checkBox, - required TResult Function(FilterTriState value) triState, - required TResult Function(FilterSort value) sort, - required TResult Function(FilterSelect value) select, - required TResult Function(FilterGroup value) group, - }) { - return checkBox(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(FilterHeader value)? header, - TResult? Function(FilterSeparator value)? separator, - TResult? Function(FilterText value)? text, - TResult? Function(FilterCheckBox value)? checkBox, - TResult? Function(FilterTriState value)? triState, - TResult? Function(FilterSort value)? sort, - TResult? Function(FilterSelect value)? select, - TResult? Function(FilterGroup value)? group, - }) { - return checkBox?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(FilterHeader value)? header, - TResult Function(FilterSeparator value)? separator, - TResult Function(FilterText value)? text, - TResult Function(FilterCheckBox value)? checkBox, - TResult Function(FilterTriState value)? triState, - TResult Function(FilterSort value)? sort, - TResult Function(FilterSelect value)? select, - TResult Function(FilterGroup value)? group, - required TResult orElse(), - }) { - if (checkBox != null) { - return checkBox(this); - } - return orElse(); - } - - @override - Map toJson() { - return _$$FilterCheckBoxImplToJson( - this, - ); - } -} - -abstract class FilterCheckBox implements FilterState { - const factory FilterCheckBox({final bool? state, final String? name}) = - _$FilterCheckBoxImpl; - - factory FilterCheckBox.fromJson(Map json) = - _$FilterCheckBoxImpl.fromJson; - - @override - bool? get state; - @override - String? get name; - @override - @JsonKey(ignore: true) - _$$FilterCheckBoxImplCopyWith<_$FilterCheckBoxImpl> get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class _$$FilterTriStateImplCopyWith<$Res> - implements $FilterStateCopyWith<$Res> { - factory _$$FilterTriStateImplCopyWith(_$FilterTriStateImpl value, - $Res Function(_$FilterTriStateImpl) then) = - __$$FilterTriStateImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({int? state, String? name}); -} - -/// @nodoc -class __$$FilterTriStateImplCopyWithImpl<$Res> - extends _$FilterStateCopyWithImpl<$Res, _$FilterTriStateImpl> - implements _$$FilterTriStateImplCopyWith<$Res> { - __$$FilterTriStateImplCopyWithImpl( - _$FilterTriStateImpl _value, $Res Function(_$FilterTriStateImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? state = freezed, - Object? name = freezed, - }) { - return _then(_$FilterTriStateImpl( - state: freezed == state - ? _value.state - : state // ignore: cast_nullable_to_non_nullable - as int?, - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$FilterTriStateImpl implements FilterTriState { - const _$FilterTriStateImpl({this.state, this.name, final String? $type}) - : $type = $type ?? 'TriState'; - - factory _$FilterTriStateImpl.fromJson(Map json) => - _$$FilterTriStateImplFromJson(json); - - @override - final int? state; - @override - final String? name; - - @JsonKey(name: 'type') - final String $type; - - @override - String toString() { - return 'FilterState.triState(state: $state, name: $name)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$FilterTriStateImpl && - (identical(other.state, state) || other.state == state) && - (identical(other.name, name) || other.name == name)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, state, name); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$FilterTriStateImplCopyWith<_$FilterTriStateImpl> get copyWith => - __$$FilterTriStateImplCopyWithImpl<_$FilterTriStateImpl>( - this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(int? state, String? name) header, - required TResult Function(int? state, String? name) separator, - required TResult Function(String? state, String? name) text, - required TResult Function(bool? state, String? name) checkBox, - required TResult Function(int? state, String? name) triState, - required TResult Function( - SortState? state, String? name, List? values) - sort, - required TResult Function( - int? state, String? name, List? displayValues) - select, - required TResult Function(List? state, String? name) group, - }) { - return triState(state, name); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(int? state, String? name)? header, - TResult? Function(int? state, String? name)? separator, - TResult? Function(String? state, String? name)? text, - TResult? Function(bool? state, String? name)? checkBox, - TResult? Function(int? state, String? name)? triState, - TResult? Function(SortState? state, String? name, List? values)? - sort, - TResult? Function(int? state, String? name, List? displayValues)? - select, - TResult? Function(List? state, String? name)? group, - }) { - return triState?.call(state, name); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(int? state, String? name)? header, - TResult Function(int? state, String? name)? separator, - TResult Function(String? state, String? name)? text, - TResult Function(bool? state, String? name)? checkBox, - TResult Function(int? state, String? name)? triState, - TResult Function(SortState? state, String? name, List? values)? - sort, - TResult Function(int? state, String? name, List? displayValues)? - select, - TResult Function(List? state, String? name)? group, - required TResult orElse(), - }) { - if (triState != null) { - return triState(state, name); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(FilterHeader value) header, - required TResult Function(FilterSeparator value) separator, - required TResult Function(FilterText value) text, - required TResult Function(FilterCheckBox value) checkBox, - required TResult Function(FilterTriState value) triState, - required TResult Function(FilterSort value) sort, - required TResult Function(FilterSelect value) select, - required TResult Function(FilterGroup value) group, - }) { - return triState(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(FilterHeader value)? header, - TResult? Function(FilterSeparator value)? separator, - TResult? Function(FilterText value)? text, - TResult? Function(FilterCheckBox value)? checkBox, - TResult? Function(FilterTriState value)? triState, - TResult? Function(FilterSort value)? sort, - TResult? Function(FilterSelect value)? select, - TResult? Function(FilterGroup value)? group, - }) { - return triState?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(FilterHeader value)? header, - TResult Function(FilterSeparator value)? separator, - TResult Function(FilterText value)? text, - TResult Function(FilterCheckBox value)? checkBox, - TResult Function(FilterTriState value)? triState, - TResult Function(FilterSort value)? sort, - TResult Function(FilterSelect value)? select, - TResult Function(FilterGroup value)? group, - required TResult orElse(), - }) { - if (triState != null) { - return triState(this); - } - return orElse(); - } - - @override - Map toJson() { - return _$$FilterTriStateImplToJson( - this, - ); - } -} - -abstract class FilterTriState implements FilterState { - const factory FilterTriState({final int? state, final String? name}) = - _$FilterTriStateImpl; - - factory FilterTriState.fromJson(Map json) = - _$FilterTriStateImpl.fromJson; - - @override - int? get state; - @override - String? get name; - @override - @JsonKey(ignore: true) - _$$FilterTriStateImplCopyWith<_$FilterTriStateImpl> get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class _$$FilterSortImplCopyWith<$Res> - implements $FilterStateCopyWith<$Res> { - factory _$$FilterSortImplCopyWith( - _$FilterSortImpl value, $Res Function(_$FilterSortImpl) then) = - __$$FilterSortImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({SortState? state, String? name, List? values}); - - $SortStateCopyWith<$Res>? get state; -} - -/// @nodoc -class __$$FilterSortImplCopyWithImpl<$Res> - extends _$FilterStateCopyWithImpl<$Res, _$FilterSortImpl> - implements _$$FilterSortImplCopyWith<$Res> { - __$$FilterSortImplCopyWithImpl( - _$FilterSortImpl _value, $Res Function(_$FilterSortImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? state = freezed, - Object? name = freezed, - Object? values = freezed, - }) { - return _then(_$FilterSortImpl( - state: freezed == state - ? _value.state - : state // ignore: cast_nullable_to_non_nullable - as SortState?, - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - values: freezed == values - ? _value._values - : values // ignore: cast_nullable_to_non_nullable - as List?, - )); - } - - @override - @pragma('vm:prefer-inline') - $SortStateCopyWith<$Res>? get state { - if (_value.state == null) { - return null; - } - - return $SortStateCopyWith<$Res>(_value.state!, (value) { - return _then(_value.copyWith(state: value)); - }); - } -} - -/// @nodoc -@JsonSerializable() -class _$FilterSortImpl implements FilterSort { - const _$FilterSortImpl( - {this.state, this.name, final List? values, final String? $type}) - : _values = values, - $type = $type ?? 'Sort'; - - factory _$FilterSortImpl.fromJson(Map json) => - _$$FilterSortImplFromJson(json); - - @override - final SortState? state; - @override - final String? name; - final List? _values; - @override - List? get values { - final value = _values; - if (value == null) return null; - if (_values is EqualUnmodifiableListView) return _values; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(value); - } - - @JsonKey(name: 'type') - final String $type; - - @override - String toString() { - return 'FilterState.sort(state: $state, name: $name, values: $values)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$FilterSortImpl && - (identical(other.state, state) || other.state == state) && - (identical(other.name, name) || other.name == name) && - const DeepCollectionEquality().equals(other._values, _values)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, state, name, const DeepCollectionEquality().hash(_values)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$FilterSortImplCopyWith<_$FilterSortImpl> get copyWith => - __$$FilterSortImplCopyWithImpl<_$FilterSortImpl>(this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(int? state, String? name) header, - required TResult Function(int? state, String? name) separator, - required TResult Function(String? state, String? name) text, - required TResult Function(bool? state, String? name) checkBox, - required TResult Function(int? state, String? name) triState, - required TResult Function( - SortState? state, String? name, List? values) - sort, - required TResult Function( - int? state, String? name, List? displayValues) - select, - required TResult Function(List? state, String? name) group, - }) { - return sort(state, name, values); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(int? state, String? name)? header, - TResult? Function(int? state, String? name)? separator, - TResult? Function(String? state, String? name)? text, - TResult? Function(bool? state, String? name)? checkBox, - TResult? Function(int? state, String? name)? triState, - TResult? Function(SortState? state, String? name, List? values)? - sort, - TResult? Function(int? state, String? name, List? displayValues)? - select, - TResult? Function(List? state, String? name)? group, - }) { - return sort?.call(state, name, values); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(int? state, String? name)? header, - TResult Function(int? state, String? name)? separator, - TResult Function(String? state, String? name)? text, - TResult Function(bool? state, String? name)? checkBox, - TResult Function(int? state, String? name)? triState, - TResult Function(SortState? state, String? name, List? values)? - sort, - TResult Function(int? state, String? name, List? displayValues)? - select, - TResult Function(List? state, String? name)? group, - required TResult orElse(), - }) { - if (sort != null) { - return sort(state, name, values); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(FilterHeader value) header, - required TResult Function(FilterSeparator value) separator, - required TResult Function(FilterText value) text, - required TResult Function(FilterCheckBox value) checkBox, - required TResult Function(FilterTriState value) triState, - required TResult Function(FilterSort value) sort, - required TResult Function(FilterSelect value) select, - required TResult Function(FilterGroup value) group, - }) { - return sort(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(FilterHeader value)? header, - TResult? Function(FilterSeparator value)? separator, - TResult? Function(FilterText value)? text, - TResult? Function(FilterCheckBox value)? checkBox, - TResult? Function(FilterTriState value)? triState, - TResult? Function(FilterSort value)? sort, - TResult? Function(FilterSelect value)? select, - TResult? Function(FilterGroup value)? group, - }) { - return sort?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(FilterHeader value)? header, - TResult Function(FilterSeparator value)? separator, - TResult Function(FilterText value)? text, - TResult Function(FilterCheckBox value)? checkBox, - TResult Function(FilterTriState value)? triState, - TResult Function(FilterSort value)? sort, - TResult Function(FilterSelect value)? select, - TResult Function(FilterGroup value)? group, - required TResult orElse(), - }) { - if (sort != null) { - return sort(this); - } - return orElse(); - } - - @override - Map toJson() { - return _$$FilterSortImplToJson( - this, - ); - } -} - -abstract class FilterSort implements FilterState { - const factory FilterSort( - {final SortState? state, - final String? name, - final List? values}) = _$FilterSortImpl; - - factory FilterSort.fromJson(Map json) = - _$FilterSortImpl.fromJson; - - @override - SortState? get state; - @override - String? get name; - List? get values; - @override - @JsonKey(ignore: true) - _$$FilterSortImplCopyWith<_$FilterSortImpl> get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class _$$FilterSelectImplCopyWith<$Res> - implements $FilterStateCopyWith<$Res> { - factory _$$FilterSelectImplCopyWith( - _$FilterSelectImpl value, $Res Function(_$FilterSelectImpl) then) = - __$$FilterSelectImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({int? state, String? name, List? displayValues}); -} - -/// @nodoc -class __$$FilterSelectImplCopyWithImpl<$Res> - extends _$FilterStateCopyWithImpl<$Res, _$FilterSelectImpl> - implements _$$FilterSelectImplCopyWith<$Res> { - __$$FilterSelectImplCopyWithImpl( - _$FilterSelectImpl _value, $Res Function(_$FilterSelectImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? state = freezed, - Object? name = freezed, - Object? displayValues = freezed, - }) { - return _then(_$FilterSelectImpl( - state: freezed == state - ? _value.state - : state // ignore: cast_nullable_to_non_nullable - as int?, - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - displayValues: freezed == displayValues - ? _value._displayValues - : displayValues // ignore: cast_nullable_to_non_nullable - as List?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$FilterSelectImpl implements FilterSelect { - const _$FilterSelectImpl( - {this.state, - this.name, - final List? displayValues, - final String? $type}) - : _displayValues = displayValues, - $type = $type ?? 'Select'; - - factory _$FilterSelectImpl.fromJson(Map json) => - _$$FilterSelectImplFromJson(json); - - @override - final int? state; - @override - final String? name; - final List? _displayValues; - @override - List? get displayValues { - final value = _displayValues; - if (value == null) return null; - if (_displayValues is EqualUnmodifiableListView) return _displayValues; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(value); - } - - @JsonKey(name: 'type') - final String $type; - - @override - String toString() { - return 'FilterState.select(state: $state, name: $name, displayValues: $displayValues)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$FilterSelectImpl && - (identical(other.state, state) || other.state == state) && - (identical(other.name, name) || other.name == name) && - const DeepCollectionEquality() - .equals(other._displayValues, _displayValues)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, state, name, - const DeepCollectionEquality().hash(_displayValues)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$FilterSelectImplCopyWith<_$FilterSelectImpl> get copyWith => - __$$FilterSelectImplCopyWithImpl<_$FilterSelectImpl>(this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(int? state, String? name) header, - required TResult Function(int? state, String? name) separator, - required TResult Function(String? state, String? name) text, - required TResult Function(bool? state, String? name) checkBox, - required TResult Function(int? state, String? name) triState, - required TResult Function( - SortState? state, String? name, List? values) - sort, - required TResult Function( - int? state, String? name, List? displayValues) - select, - required TResult Function(List? state, String? name) group, - }) { - return select(state, name, displayValues); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(int? state, String? name)? header, - TResult? Function(int? state, String? name)? separator, - TResult? Function(String? state, String? name)? text, - TResult? Function(bool? state, String? name)? checkBox, - TResult? Function(int? state, String? name)? triState, - TResult? Function(SortState? state, String? name, List? values)? - sort, - TResult? Function(int? state, String? name, List? displayValues)? - select, - TResult? Function(List? state, String? name)? group, - }) { - return select?.call(state, name, displayValues); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(int? state, String? name)? header, - TResult Function(int? state, String? name)? separator, - TResult Function(String? state, String? name)? text, - TResult Function(bool? state, String? name)? checkBox, - TResult Function(int? state, String? name)? triState, - TResult Function(SortState? state, String? name, List? values)? - sort, - TResult Function(int? state, String? name, List? displayValues)? - select, - TResult Function(List? state, String? name)? group, - required TResult orElse(), - }) { - if (select != null) { - return select(state, name, displayValues); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(FilterHeader value) header, - required TResult Function(FilterSeparator value) separator, - required TResult Function(FilterText value) text, - required TResult Function(FilterCheckBox value) checkBox, - required TResult Function(FilterTriState value) triState, - required TResult Function(FilterSort value) sort, - required TResult Function(FilterSelect value) select, - required TResult Function(FilterGroup value) group, - }) { - return select(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(FilterHeader value)? header, - TResult? Function(FilterSeparator value)? separator, - TResult? Function(FilterText value)? text, - TResult? Function(FilterCheckBox value)? checkBox, - TResult? Function(FilterTriState value)? triState, - TResult? Function(FilterSort value)? sort, - TResult? Function(FilterSelect value)? select, - TResult? Function(FilterGroup value)? group, - }) { - return select?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(FilterHeader value)? header, - TResult Function(FilterSeparator value)? separator, - TResult Function(FilterText value)? text, - TResult Function(FilterCheckBox value)? checkBox, - TResult Function(FilterTriState value)? triState, - TResult Function(FilterSort value)? sort, - TResult Function(FilterSelect value)? select, - TResult Function(FilterGroup value)? group, - required TResult orElse(), - }) { - if (select != null) { - return select(this); - } - return orElse(); - } - - @override - Map toJson() { - return _$$FilterSelectImplToJson( - this, - ); - } -} - -abstract class FilterSelect implements FilterState { - const factory FilterSelect( - {final int? state, - final String? name, - final List? displayValues}) = _$FilterSelectImpl; - - factory FilterSelect.fromJson(Map json) = - _$FilterSelectImpl.fromJson; - - @override - int? get state; - @override - String? get name; - List? get displayValues; - @override - @JsonKey(ignore: true) - _$$FilterSelectImplCopyWith<_$FilterSelectImpl> get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class _$$FilterGroupImplCopyWith<$Res> - implements $FilterStateCopyWith<$Res> { - factory _$$FilterGroupImplCopyWith( - _$FilterGroupImpl value, $Res Function(_$FilterGroupImpl) then) = - __$$FilterGroupImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({List? state, String? name}); -} - -/// @nodoc -class __$$FilterGroupImplCopyWithImpl<$Res> - extends _$FilterStateCopyWithImpl<$Res, _$FilterGroupImpl> - implements _$$FilterGroupImplCopyWith<$Res> { - __$$FilterGroupImplCopyWithImpl( - _$FilterGroupImpl _value, $Res Function(_$FilterGroupImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? state = freezed, - Object? name = freezed, - }) { - return _then(_$FilterGroupImpl( - state: freezed == state - ? _value._state - : state // ignore: cast_nullable_to_non_nullable - as List?, - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$FilterGroupImpl implements FilterGroup { - const _$FilterGroupImpl( - {final List? state, this.name, final String? $type}) - : _state = state, - $type = $type ?? 'Group'; - - factory _$FilterGroupImpl.fromJson(Map json) => - _$$FilterGroupImplFromJson(json); - - final List? _state; - @override - List? get state { - final value = _state; - if (value == null) return null; - if (_state is EqualUnmodifiableListView) return _state; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(value); - } - - @override - final String? name; - - @JsonKey(name: 'type') - final String $type; - - @override - String toString() { - return 'FilterState.group(state: $state, name: $name)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$FilterGroupImpl && - const DeepCollectionEquality().equals(other._state, _state) && - (identical(other.name, name) || other.name == name)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, const DeepCollectionEquality().hash(_state), name); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$FilterGroupImplCopyWith<_$FilterGroupImpl> get copyWith => - __$$FilterGroupImplCopyWithImpl<_$FilterGroupImpl>(this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(int? state, String? name) header, - required TResult Function(int? state, String? name) separator, - required TResult Function(String? state, String? name) text, - required TResult Function(bool? state, String? name) checkBox, - required TResult Function(int? state, String? name) triState, - required TResult Function( - SortState? state, String? name, List? values) - sort, - required TResult Function( - int? state, String? name, List? displayValues) - select, - required TResult Function(List? state, String? name) group, - }) { - return group(state, name); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(int? state, String? name)? header, - TResult? Function(int? state, String? name)? separator, - TResult? Function(String? state, String? name)? text, - TResult? Function(bool? state, String? name)? checkBox, - TResult? Function(int? state, String? name)? triState, - TResult? Function(SortState? state, String? name, List? values)? - sort, - TResult? Function(int? state, String? name, List? displayValues)? - select, - TResult? Function(List? state, String? name)? group, - }) { - return group?.call(state, name); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(int? state, String? name)? header, - TResult Function(int? state, String? name)? separator, - TResult Function(String? state, String? name)? text, - TResult Function(bool? state, String? name)? checkBox, - TResult Function(int? state, String? name)? triState, - TResult Function(SortState? state, String? name, List? values)? - sort, - TResult Function(int? state, String? name, List? displayValues)? - select, - TResult Function(List? state, String? name)? group, - required TResult orElse(), - }) { - if (group != null) { - return group(state, name); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(FilterHeader value) header, - required TResult Function(FilterSeparator value) separator, - required TResult Function(FilterText value) text, - required TResult Function(FilterCheckBox value) checkBox, - required TResult Function(FilterTriState value) triState, - required TResult Function(FilterSort value) sort, - required TResult Function(FilterSelect value) select, - required TResult Function(FilterGroup value) group, - }) { - return group(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(FilterHeader value)? header, - TResult? Function(FilterSeparator value)? separator, - TResult? Function(FilterText value)? text, - TResult? Function(FilterCheckBox value)? checkBox, - TResult? Function(FilterTriState value)? triState, - TResult? Function(FilterSort value)? sort, - TResult? Function(FilterSelect value)? select, - TResult? Function(FilterGroup value)? group, - }) { - return group?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(FilterHeader value)? header, - TResult Function(FilterSeparator value)? separator, - TResult Function(FilterText value)? text, - TResult Function(FilterCheckBox value)? checkBox, - TResult Function(FilterTriState value)? triState, - TResult Function(FilterSort value)? sort, - TResult Function(FilterSelect value)? select, - TResult Function(FilterGroup value)? group, - required TResult orElse(), - }) { - if (group != null) { - return group(this); - } - return orElse(); - } - - @override - Map toJson() { - return _$$FilterGroupImplToJson( - this, - ); - } -} - -abstract class FilterGroup implements FilterState { - const factory FilterGroup({final List? state, final String? name}) = - _$FilterGroupImpl; - - factory FilterGroup.fromJson(Map json) = - _$FilterGroupImpl.fromJson; - - @override - List? get state; - @override - String? get name; - @override - @JsonKey(ignore: true) - _$$FilterGroupImplCopyWith<_$FilterGroupImpl> get copyWith => - throw _privateConstructorUsedError; -} - -SortState _$SortStateFromJson(Map json) { - return _SortState.fromJson(json); -} - -/// @nodoc -mixin _$SortState { - int? get index => throw _privateConstructorUsedError; - bool? get ascending => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $SortStateCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $SortStateCopyWith<$Res> { - factory $SortStateCopyWith(SortState value, $Res Function(SortState) then) = - _$SortStateCopyWithImpl<$Res, SortState>; - @useResult - $Res call({int? index, bool? ascending}); -} - -/// @nodoc -class _$SortStateCopyWithImpl<$Res, $Val extends SortState> - implements $SortStateCopyWith<$Res> { - _$SortStateCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? index = freezed, - Object? ascending = freezed, - }) { - return _then(_value.copyWith( - index: freezed == index - ? _value.index - : index // ignore: cast_nullable_to_non_nullable - as int?, - ascending: freezed == ascending - ? _value.ascending - : ascending // ignore: cast_nullable_to_non_nullable - as bool?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$SortStateImplCopyWith<$Res> - implements $SortStateCopyWith<$Res> { - factory _$$SortStateImplCopyWith( - _$SortStateImpl value, $Res Function(_$SortStateImpl) then) = - __$$SortStateImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({int? index, bool? ascending}); -} - -/// @nodoc -class __$$SortStateImplCopyWithImpl<$Res> - extends _$SortStateCopyWithImpl<$Res, _$SortStateImpl> - implements _$$SortStateImplCopyWith<$Res> { - __$$SortStateImplCopyWithImpl( - _$SortStateImpl _value, $Res Function(_$SortStateImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? index = freezed, - Object? ascending = freezed, - }) { - return _then(_$SortStateImpl( - index: freezed == index - ? _value.index - : index // ignore: cast_nullable_to_non_nullable - as int?, - ascending: freezed == ascending - ? _value.ascending - : ascending // ignore: cast_nullable_to_non_nullable - as bool?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$SortStateImpl implements _SortState { - _$SortStateImpl({this.index, this.ascending}); - - factory _$SortStateImpl.fromJson(Map json) => - _$$SortStateImplFromJson(json); - - @override - final int? index; - @override - final bool? ascending; - - @override - String toString() { - return 'SortState(index: $index, ascending: $ascending)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$SortStateImpl && - (identical(other.index, index) || other.index == index) && - (identical(other.ascending, ascending) || - other.ascending == ascending)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, index, ascending); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$SortStateImplCopyWith<_$SortStateImpl> get copyWith => - __$$SortStateImplCopyWithImpl<_$SortStateImpl>(this, _$identity); - - @override - Map toJson() { - return _$$SortStateImplToJson( - this, - ); - } -} - -abstract class _SortState implements SortState { - factory _SortState({final int? index, final bool? ascending}) = - _$SortStateImpl; - - factory _SortState.fromJson(Map json) = - _$SortStateImpl.fromJson; - - @override - int? get index; - @override - bool? get ascending; - @override - @JsonKey(ignore: true) - _$$SortStateImplCopyWith<_$SortStateImpl> get copyWith => - throw _privateConstructorUsedError; -} - -SelectValues _$SelectValuesFromJson(Map json) { - return _SelectValues.fromJson(json); -} - -/// @nodoc -mixin _$SelectValues { - String? get first => throw _privateConstructorUsedError; - String? get second => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $SelectValuesCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $SelectValuesCopyWith<$Res> { - factory $SelectValuesCopyWith( - SelectValues value, $Res Function(SelectValues) then) = - _$SelectValuesCopyWithImpl<$Res, SelectValues>; - @useResult - $Res call({String? first, String? second}); -} - -/// @nodoc -class _$SelectValuesCopyWithImpl<$Res, $Val extends SelectValues> - implements $SelectValuesCopyWith<$Res> { - _$SelectValuesCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? first = freezed, - Object? second = freezed, - }) { - return _then(_value.copyWith( - first: freezed == first - ? _value.first - : first // ignore: cast_nullable_to_non_nullable - as String?, - second: freezed == second - ? _value.second - : second // ignore: cast_nullable_to_non_nullable - as String?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$SelectValuesImplCopyWith<$Res> - implements $SelectValuesCopyWith<$Res> { - factory _$$SelectValuesImplCopyWith( - _$SelectValuesImpl value, $Res Function(_$SelectValuesImpl) then) = - __$$SelectValuesImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({String? first, String? second}); -} - -/// @nodoc -class __$$SelectValuesImplCopyWithImpl<$Res> - extends _$SelectValuesCopyWithImpl<$Res, _$SelectValuesImpl> - implements _$$SelectValuesImplCopyWith<$Res> { - __$$SelectValuesImplCopyWithImpl( - _$SelectValuesImpl _value, $Res Function(_$SelectValuesImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? first = freezed, - Object? second = freezed, - }) { - return _then(_$SelectValuesImpl( - first: freezed == first - ? _value.first - : first // ignore: cast_nullable_to_non_nullable - as String?, - second: freezed == second - ? _value.second - : second // ignore: cast_nullable_to_non_nullable - as String?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$SelectValuesImpl implements _SelectValues { - _$SelectValuesImpl({this.first, this.second}); - - factory _$SelectValuesImpl.fromJson(Map json) => - _$$SelectValuesImplFromJson(json); - - @override - final String? first; - @override - final String? second; - - @override - String toString() { - return 'SelectValues(first: $first, second: $second)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$SelectValuesImpl && - (identical(other.first, first) || other.first == first) && - (identical(other.second, second) || other.second == second)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, first, second); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$SelectValuesImplCopyWith<_$SelectValuesImpl> get copyWith => - __$$SelectValuesImplCopyWithImpl<_$SelectValuesImpl>(this, _$identity); - - @override - Map toJson() { - return _$$SelectValuesImplToJson( - this, - ); - } -} - -abstract class _SelectValues implements SelectValues { - factory _SelectValues({final String? first, final String? second}) = - _$SelectValuesImpl; - - factory _SelectValues.fromJson(Map json) = - _$SelectValuesImpl.fromJson; - - @override - String? get first; - @override - String? get second; - @override - @JsonKey(ignore: true) - _$$SelectValuesImplCopyWith<_$SelectValuesImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/src/features/browse_center/domain/filter_state/filter_state_model.g.dart b/lib/src/features/browse_center/domain/filter_state/filter_state_model.g.dart deleted file mode 100644 index 4787aa43..00000000 --- a/lib/src/features/browse_center/domain/filter_state/filter_state_model.g.dart +++ /dev/null @@ -1,158 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'filter_state_model.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$FilterHeaderImpl _$$FilterHeaderImplFromJson(Map json) => - _$FilterHeaderImpl( - state: json['state'] as int?, - name: json['name'] as String?, - $type: json['type'] as String?, - ); - -Map _$$FilterHeaderImplToJson(_$FilterHeaderImpl instance) => - { - 'state': instance.state, - 'name': instance.name, - 'type': instance.$type, - }; - -_$FilterSeparatorImpl _$$FilterSeparatorImplFromJson( - Map json) => - _$FilterSeparatorImpl( - state: json['state'] as int?, - name: json['name'] as String?, - $type: json['type'] as String?, - ); - -Map _$$FilterSeparatorImplToJson( - _$FilterSeparatorImpl instance) => - { - 'state': instance.state, - 'name': instance.name, - 'type': instance.$type, - }; - -_$FilterTextImpl _$$FilterTextImplFromJson(Map json) => - _$FilterTextImpl( - state: json['state'] as String?, - name: json['name'] as String?, - $type: json['type'] as String?, - ); - -Map _$$FilterTextImplToJson(_$FilterTextImpl instance) => - { - 'state': instance.state, - 'name': instance.name, - 'type': instance.$type, - }; - -_$FilterCheckBoxImpl _$$FilterCheckBoxImplFromJson(Map json) => - _$FilterCheckBoxImpl( - state: json['state'] as bool?, - name: json['name'] as String?, - $type: json['type'] as String?, - ); - -Map _$$FilterCheckBoxImplToJson( - _$FilterCheckBoxImpl instance) => - { - 'state': instance.state, - 'name': instance.name, - 'type': instance.$type, - }; - -_$FilterTriStateImpl _$$FilterTriStateImplFromJson(Map json) => - _$FilterTriStateImpl( - state: json['state'] as int?, - name: json['name'] as String?, - $type: json['type'] as String?, - ); - -Map _$$FilterTriStateImplToJson( - _$FilterTriStateImpl instance) => - { - 'state': instance.state, - 'name': instance.name, - 'type': instance.$type, - }; - -_$FilterSortImpl _$$FilterSortImplFromJson(Map json) => - _$FilterSortImpl( - state: json['state'] == null - ? null - : SortState.fromJson(json['state'] as Map), - name: json['name'] as String?, - values: - (json['values'] as List?)?.map((e) => e as String).toList(), - $type: json['type'] as String?, - ); - -Map _$$FilterSortImplToJson(_$FilterSortImpl instance) => - { - 'state': instance.state?.toJson(), - 'name': instance.name, - 'values': instance.values, - 'type': instance.$type, - }; - -_$FilterSelectImpl _$$FilterSelectImplFromJson(Map json) => - _$FilterSelectImpl( - state: json['state'] as int?, - name: json['name'] as String?, - displayValues: (json['displayValues'] as List?) - ?.map((e) => e as String) - .toList(), - $type: json['type'] as String?, - ); - -Map _$$FilterSelectImplToJson(_$FilterSelectImpl instance) => - { - 'state': instance.state, - 'name': instance.name, - 'displayValues': instance.displayValues, - 'type': instance.$type, - }; - -_$FilterGroupImpl _$$FilterGroupImplFromJson(Map json) => - _$FilterGroupImpl( - state: (json['state'] as List?) - ?.map((e) => Filter.fromJson(e as Map)) - .toList(), - name: json['name'] as String?, - $type: json['type'] as String?, - ); - -Map _$$FilterGroupImplToJson(_$FilterGroupImpl instance) => - { - 'state': instance.state?.map((e) => e.toJson()).toList(), - 'name': instance.name, - 'type': instance.$type, - }; - -_$SortStateImpl _$$SortStateImplFromJson(Map json) => - _$SortStateImpl( - index: json['index'] as int?, - ascending: json['ascending'] as bool?, - ); - -Map _$$SortStateImplToJson(_$SortStateImpl instance) => - { - 'index': instance.index, - 'ascending': instance.ascending, - }; - -_$SelectValuesImpl _$$SelectValuesImplFromJson(Map json) => - _$SelectValuesImpl( - first: json['first'] as String?, - second: json['second'] as String?, - ); - -Map _$$SelectValuesImplToJson(_$SelectValuesImpl instance) => - { - 'first': instance.first, - 'second': instance.second, - }; diff --git a/lib/src/features/browse_center/domain/language/language_model.dart b/lib/src/features/browse_center/domain/language/language_model.dart deleted file mode 100644 index 24ea1539..00000000 --- a/lib/src/features/browse_center/domain/language/language_model.dart +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:freezed_annotation/freezed_annotation.dart'; - -part 'language_model.freezed.dart'; -part 'language_model.g.dart'; - -@freezed -class Language with _$Language { - Language._(); - factory Language({ - String? code, - String? name, - String? nativeName, - }) = _Language; - - String? get displayName => nativeName ?? name ?? code; - - factory Language.fromJson(Map json) => - _$LanguageFromJson(json); -} diff --git a/lib/src/features/browse_center/domain/language/language_model.freezed.dart b/lib/src/features/browse_center/domain/language/language_model.freezed.dart deleted file mode 100644 index 55da1d48..00000000 --- a/lib/src/features/browse_center/domain/language/language_model.freezed.dart +++ /dev/null @@ -1,187 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'language_model.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -Language _$LanguageFromJson(Map json) { - return _Language.fromJson(json); -} - -/// @nodoc -mixin _$Language { - String? get code => throw _privateConstructorUsedError; - String? get name => throw _privateConstructorUsedError; - String? get nativeName => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $LanguageCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $LanguageCopyWith<$Res> { - factory $LanguageCopyWith(Language value, $Res Function(Language) then) = - _$LanguageCopyWithImpl<$Res, Language>; - @useResult - $Res call({String? code, String? name, String? nativeName}); -} - -/// @nodoc -class _$LanguageCopyWithImpl<$Res, $Val extends Language> - implements $LanguageCopyWith<$Res> { - _$LanguageCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? code = freezed, - Object? name = freezed, - Object? nativeName = freezed, - }) { - return _then(_value.copyWith( - code: freezed == code - ? _value.code - : code // ignore: cast_nullable_to_non_nullable - as String?, - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - nativeName: freezed == nativeName - ? _value.nativeName - : nativeName // ignore: cast_nullable_to_non_nullable - as String?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$LanguageImplCopyWith<$Res> - implements $LanguageCopyWith<$Res> { - factory _$$LanguageImplCopyWith( - _$LanguageImpl value, $Res Function(_$LanguageImpl) then) = - __$$LanguageImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({String? code, String? name, String? nativeName}); -} - -/// @nodoc -class __$$LanguageImplCopyWithImpl<$Res> - extends _$LanguageCopyWithImpl<$Res, _$LanguageImpl> - implements _$$LanguageImplCopyWith<$Res> { - __$$LanguageImplCopyWithImpl( - _$LanguageImpl _value, $Res Function(_$LanguageImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? code = freezed, - Object? name = freezed, - Object? nativeName = freezed, - }) { - return _then(_$LanguageImpl( - code: freezed == code - ? _value.code - : code // ignore: cast_nullable_to_non_nullable - as String?, - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - nativeName: freezed == nativeName - ? _value.nativeName - : nativeName // ignore: cast_nullable_to_non_nullable - as String?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$LanguageImpl extends _Language { - _$LanguageImpl({this.code, this.name, this.nativeName}) : super._(); - - factory _$LanguageImpl.fromJson(Map json) => - _$$LanguageImplFromJson(json); - - @override - final String? code; - @override - final String? name; - @override - final String? nativeName; - - @override - String toString() { - return 'Language(code: $code, name: $name, nativeName: $nativeName)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$LanguageImpl && - (identical(other.code, code) || other.code == code) && - (identical(other.name, name) || other.name == name) && - (identical(other.nativeName, nativeName) || - other.nativeName == nativeName)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, code, name, nativeName); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$LanguageImplCopyWith<_$LanguageImpl> get copyWith => - __$$LanguageImplCopyWithImpl<_$LanguageImpl>(this, _$identity); - - @override - Map toJson() { - return _$$LanguageImplToJson( - this, - ); - } -} - -abstract class _Language extends Language { - factory _Language( - {final String? code, - final String? name, - final String? nativeName}) = _$LanguageImpl; - _Language._() : super._(); - - factory _Language.fromJson(Map json) = - _$LanguageImpl.fromJson; - - @override - String? get code; - @override - String? get name; - @override - String? get nativeName; - @override - @JsonKey(ignore: true) - _$$LanguageImplCopyWith<_$LanguageImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/src/features/browse_center/domain/language/language_model.g.dart b/lib/src/features/browse_center/domain/language/language_model.g.dart deleted file mode 100644 index 3b2bbd61..00000000 --- a/lib/src/features/browse_center/domain/language/language_model.g.dart +++ /dev/null @@ -1,21 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'language_model.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$LanguageImpl _$$LanguageImplFromJson(Map json) => - _$LanguageImpl( - code: json['code'] as String?, - name: json['name'] as String?, - nativeName: json['nativeName'] as String?, - ); - -Map _$$LanguageImplToJson(_$LanguageImpl instance) => - { - 'code': instance.code, - 'name': instance.name, - 'nativeName': instance.nativeName, - }; diff --git a/lib/src/features/browse_center/domain/manga_page/manga_page.dart b/lib/src/features/browse_center/domain/manga_page/manga_page.dart deleted file mode 100644 index 4208e249..00000000 --- a/lib/src/features/browse_center/domain/manga_page/manga_page.dart +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:freezed_annotation/freezed_annotation.dart'; - -import '../../../manga_book/domain/manga/manga_model.dart'; - -part 'manga_page.freezed.dart'; -part 'manga_page.g.dart'; - -@freezed -class MangaPage with _$MangaPage { - factory MangaPage({ - List? mangaList, - bool? hasNextPage, - }) = _MangaPage; - - factory MangaPage.fromJson(Map json) => - _$MangaPageFromJson(json); -} diff --git a/lib/src/features/browse_center/domain/manga_page/manga_page.freezed.dart b/lib/src/features/browse_center/domain/manga_page/manga_page.freezed.dart deleted file mode 100644 index 59654d82..00000000 --- a/lib/src/features/browse_center/domain/manga_page/manga_page.freezed.dart +++ /dev/null @@ -1,179 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'manga_page.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -MangaPage _$MangaPageFromJson(Map json) { - return _MangaPage.fromJson(json); -} - -/// @nodoc -mixin _$MangaPage { - List? get mangaList => throw _privateConstructorUsedError; - bool? get hasNextPage => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $MangaPageCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $MangaPageCopyWith<$Res> { - factory $MangaPageCopyWith(MangaPage value, $Res Function(MangaPage) then) = - _$MangaPageCopyWithImpl<$Res, MangaPage>; - @useResult - $Res call({List? mangaList, bool? hasNextPage}); -} - -/// @nodoc -class _$MangaPageCopyWithImpl<$Res, $Val extends MangaPage> - implements $MangaPageCopyWith<$Res> { - _$MangaPageCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? mangaList = freezed, - Object? hasNextPage = freezed, - }) { - return _then(_value.copyWith( - mangaList: freezed == mangaList - ? _value.mangaList - : mangaList // ignore: cast_nullable_to_non_nullable - as List?, - hasNextPage: freezed == hasNextPage - ? _value.hasNextPage - : hasNextPage // ignore: cast_nullable_to_non_nullable - as bool?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$MangaPageImplCopyWith<$Res> - implements $MangaPageCopyWith<$Res> { - factory _$$MangaPageImplCopyWith( - _$MangaPageImpl value, $Res Function(_$MangaPageImpl) then) = - __$$MangaPageImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({List? mangaList, bool? hasNextPage}); -} - -/// @nodoc -class __$$MangaPageImplCopyWithImpl<$Res> - extends _$MangaPageCopyWithImpl<$Res, _$MangaPageImpl> - implements _$$MangaPageImplCopyWith<$Res> { - __$$MangaPageImplCopyWithImpl( - _$MangaPageImpl _value, $Res Function(_$MangaPageImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? mangaList = freezed, - Object? hasNextPage = freezed, - }) { - return _then(_$MangaPageImpl( - mangaList: freezed == mangaList - ? _value._mangaList - : mangaList // ignore: cast_nullable_to_non_nullable - as List?, - hasNextPage: freezed == hasNextPage - ? _value.hasNextPage - : hasNextPage // ignore: cast_nullable_to_non_nullable - as bool?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$MangaPageImpl implements _MangaPage { - _$MangaPageImpl({final List? mangaList, this.hasNextPage}) - : _mangaList = mangaList; - - factory _$MangaPageImpl.fromJson(Map json) => - _$$MangaPageImplFromJson(json); - - final List? _mangaList; - @override - List? get mangaList { - final value = _mangaList; - if (value == null) return null; - if (_mangaList is EqualUnmodifiableListView) return _mangaList; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(value); - } - - @override - final bool? hasNextPage; - - @override - String toString() { - return 'MangaPage(mangaList: $mangaList, hasNextPage: $hasNextPage)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$MangaPageImpl && - const DeepCollectionEquality() - .equals(other._mangaList, _mangaList) && - (identical(other.hasNextPage, hasNextPage) || - other.hasNextPage == hasNextPage)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, - const DeepCollectionEquality().hash(_mangaList), hasNextPage); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$MangaPageImplCopyWith<_$MangaPageImpl> get copyWith => - __$$MangaPageImplCopyWithImpl<_$MangaPageImpl>(this, _$identity); - - @override - Map toJson() { - return _$$MangaPageImplToJson( - this, - ); - } -} - -abstract class _MangaPage implements MangaPage { - factory _MangaPage({final List? mangaList, final bool? hasNextPage}) = - _$MangaPageImpl; - - factory _MangaPage.fromJson(Map json) = - _$MangaPageImpl.fromJson; - - @override - List? get mangaList; - @override - bool? get hasNextPage; - @override - @JsonKey(ignore: true) - _$$MangaPageImplCopyWith<_$MangaPageImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/src/features/browse_center/domain/manga_page/manga_page.g.dart b/lib/src/features/browse_center/domain/manga_page/manga_page.g.dart deleted file mode 100644 index 50f73aeb..00000000 --- a/lib/src/features/browse_center/domain/manga_page/manga_page.g.dart +++ /dev/null @@ -1,21 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'manga_page.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$MangaPageImpl _$$MangaPageImplFromJson(Map json) => - _$MangaPageImpl( - mangaList: (json['mangaList'] as List?) - ?.map((e) => Manga.fromJson(e as Map)) - .toList(), - hasNextPage: json['hasNextPage'] as bool?, - ); - -Map _$$MangaPageImplToJson(_$MangaPageImpl instance) => - { - 'mangaList': instance.mangaList?.map((e) => e.toJson()).toList(), - 'hasNextPage': instance.hasNextPage, - }; diff --git a/lib/src/features/browse_center/domain/source/source_model.dart b/lib/src/features/browse_center/domain/source/source_model.dart deleted file mode 100644 index d2b6af80..00000000 --- a/lib/src/features/browse_center/domain/source/source_model.dart +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:freezed_annotation/freezed_annotation.dart'; - -import '../../../../utils/freezed_converters/language_json_converter.dart'; -import '../language/language_model.dart'; - -part 'source_model.freezed.dart'; -part 'source_model.g.dart'; - -@freezed -class Source with _$Source { - factory Source({ - String? displayName, - String? iconUrl, - String? id, - bool? isConfigurable, - bool? isNsfw, - @JsonKey( - fromJson: LanguageJsonConverter.fromJson, - toJson: LanguageJsonConverter.toJson, - ) - Language? lang, - String? name, - bool? supportsLatest, - }) = _Source; - - factory Source.fromJson(Map json) => _$SourceFromJson(json); -} diff --git a/lib/src/features/browse_center/domain/source/source_model.freezed.dart b/lib/src/features/browse_center/domain/source/source_model.freezed.dart deleted file mode 100644 index 5276f0dc..00000000 --- a/lib/src/features/browse_center/domain/source/source_model.freezed.dart +++ /dev/null @@ -1,333 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'source_model.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -Source _$SourceFromJson(Map json) { - return _Source.fromJson(json); -} - -/// @nodoc -mixin _$Source { - String? get displayName => throw _privateConstructorUsedError; - String? get iconUrl => throw _privateConstructorUsedError; - String? get id => throw _privateConstructorUsedError; - bool? get isConfigurable => throw _privateConstructorUsedError; - bool? get isNsfw => throw _privateConstructorUsedError; - @JsonKey( - fromJson: LanguageJsonConverter.fromJson, - toJson: LanguageJsonConverter.toJson) - Language? get lang => throw _privateConstructorUsedError; - String? get name => throw _privateConstructorUsedError; - bool? get supportsLatest => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $SourceCopyWith get copyWith => throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $SourceCopyWith<$Res> { - factory $SourceCopyWith(Source value, $Res Function(Source) then) = - _$SourceCopyWithImpl<$Res, Source>; - @useResult - $Res call( - {String? displayName, - String? iconUrl, - String? id, - bool? isConfigurable, - bool? isNsfw, - @JsonKey( - fromJson: LanguageJsonConverter.fromJson, - toJson: LanguageJsonConverter.toJson) - Language? lang, - String? name, - bool? supportsLatest}); - - $LanguageCopyWith<$Res>? get lang; -} - -/// @nodoc -class _$SourceCopyWithImpl<$Res, $Val extends Source> - implements $SourceCopyWith<$Res> { - _$SourceCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? displayName = freezed, - Object? iconUrl = freezed, - Object? id = freezed, - Object? isConfigurable = freezed, - Object? isNsfw = freezed, - Object? lang = freezed, - Object? name = freezed, - Object? supportsLatest = freezed, - }) { - return _then(_value.copyWith( - displayName: freezed == displayName - ? _value.displayName - : displayName // ignore: cast_nullable_to_non_nullable - as String?, - iconUrl: freezed == iconUrl - ? _value.iconUrl - : iconUrl // ignore: cast_nullable_to_non_nullable - as String?, - id: freezed == id - ? _value.id - : id // ignore: cast_nullable_to_non_nullable - as String?, - isConfigurable: freezed == isConfigurable - ? _value.isConfigurable - : isConfigurable // ignore: cast_nullable_to_non_nullable - as bool?, - isNsfw: freezed == isNsfw - ? _value.isNsfw - : isNsfw // ignore: cast_nullable_to_non_nullable - as bool?, - lang: freezed == lang - ? _value.lang - : lang // ignore: cast_nullable_to_non_nullable - as Language?, - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - supportsLatest: freezed == supportsLatest - ? _value.supportsLatest - : supportsLatest // ignore: cast_nullable_to_non_nullable - as bool?, - ) as $Val); - } - - @override - @pragma('vm:prefer-inline') - $LanguageCopyWith<$Res>? get lang { - if (_value.lang == null) { - return null; - } - - return $LanguageCopyWith<$Res>(_value.lang!, (value) { - return _then(_value.copyWith(lang: value) as $Val); - }); - } -} - -/// @nodoc -abstract class _$$SourceImplCopyWith<$Res> implements $SourceCopyWith<$Res> { - factory _$$SourceImplCopyWith( - _$SourceImpl value, $Res Function(_$SourceImpl) then) = - __$$SourceImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {String? displayName, - String? iconUrl, - String? id, - bool? isConfigurable, - bool? isNsfw, - @JsonKey( - fromJson: LanguageJsonConverter.fromJson, - toJson: LanguageJsonConverter.toJson) - Language? lang, - String? name, - bool? supportsLatest}); - - @override - $LanguageCopyWith<$Res>? get lang; -} - -/// @nodoc -class __$$SourceImplCopyWithImpl<$Res> - extends _$SourceCopyWithImpl<$Res, _$SourceImpl> - implements _$$SourceImplCopyWith<$Res> { - __$$SourceImplCopyWithImpl( - _$SourceImpl _value, $Res Function(_$SourceImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? displayName = freezed, - Object? iconUrl = freezed, - Object? id = freezed, - Object? isConfigurable = freezed, - Object? isNsfw = freezed, - Object? lang = freezed, - Object? name = freezed, - Object? supportsLatest = freezed, - }) { - return _then(_$SourceImpl( - displayName: freezed == displayName - ? _value.displayName - : displayName // ignore: cast_nullable_to_non_nullable - as String?, - iconUrl: freezed == iconUrl - ? _value.iconUrl - : iconUrl // ignore: cast_nullable_to_non_nullable - as String?, - id: freezed == id - ? _value.id - : id // ignore: cast_nullable_to_non_nullable - as String?, - isConfigurable: freezed == isConfigurable - ? _value.isConfigurable - : isConfigurable // ignore: cast_nullable_to_non_nullable - as bool?, - isNsfw: freezed == isNsfw - ? _value.isNsfw - : isNsfw // ignore: cast_nullable_to_non_nullable - as bool?, - lang: freezed == lang - ? _value.lang - : lang // ignore: cast_nullable_to_non_nullable - as Language?, - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - supportsLatest: freezed == supportsLatest - ? _value.supportsLatest - : supportsLatest // ignore: cast_nullable_to_non_nullable - as bool?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$SourceImpl implements _Source { - _$SourceImpl( - {this.displayName, - this.iconUrl, - this.id, - this.isConfigurable, - this.isNsfw, - @JsonKey( - fromJson: LanguageJsonConverter.fromJson, - toJson: LanguageJsonConverter.toJson) - this.lang, - this.name, - this.supportsLatest}); - - factory _$SourceImpl.fromJson(Map json) => - _$$SourceImplFromJson(json); - - @override - final String? displayName; - @override - final String? iconUrl; - @override - final String? id; - @override - final bool? isConfigurable; - @override - final bool? isNsfw; - @override - @JsonKey( - fromJson: LanguageJsonConverter.fromJson, - toJson: LanguageJsonConverter.toJson) - final Language? lang; - @override - final String? name; - @override - final bool? supportsLatest; - - @override - String toString() { - return 'Source(displayName: $displayName, iconUrl: $iconUrl, id: $id, isConfigurable: $isConfigurable, isNsfw: $isNsfw, lang: $lang, name: $name, supportsLatest: $supportsLatest)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$SourceImpl && - (identical(other.displayName, displayName) || - other.displayName == displayName) && - (identical(other.iconUrl, iconUrl) || other.iconUrl == iconUrl) && - (identical(other.id, id) || other.id == id) && - (identical(other.isConfigurable, isConfigurable) || - other.isConfigurable == isConfigurable) && - (identical(other.isNsfw, isNsfw) || other.isNsfw == isNsfw) && - (identical(other.lang, lang) || other.lang == lang) && - (identical(other.name, name) || other.name == name) && - (identical(other.supportsLatest, supportsLatest) || - other.supportsLatest == supportsLatest)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, displayName, iconUrl, id, - isConfigurable, isNsfw, lang, name, supportsLatest); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$SourceImplCopyWith<_$SourceImpl> get copyWith => - __$$SourceImplCopyWithImpl<_$SourceImpl>(this, _$identity); - - @override - Map toJson() { - return _$$SourceImplToJson( - this, - ); - } -} - -abstract class _Source implements Source { - factory _Source( - {final String? displayName, - final String? iconUrl, - final String? id, - final bool? isConfigurable, - final bool? isNsfw, - @JsonKey( - fromJson: LanguageJsonConverter.fromJson, - toJson: LanguageJsonConverter.toJson) - final Language? lang, - final String? name, - final bool? supportsLatest}) = _$SourceImpl; - - factory _Source.fromJson(Map json) = _$SourceImpl.fromJson; - - @override - String? get displayName; - @override - String? get iconUrl; - @override - String? get id; - @override - bool? get isConfigurable; - @override - bool? get isNsfw; - @override - @JsonKey( - fromJson: LanguageJsonConverter.fromJson, - toJson: LanguageJsonConverter.toJson) - Language? get lang; - @override - String? get name; - @override - bool? get supportsLatest; - @override - @JsonKey(ignore: true) - _$$SourceImplCopyWith<_$SourceImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/src/features/browse_center/domain/source/source_model.g.dart b/lib/src/features/browse_center/domain/source/source_model.g.dart deleted file mode 100644 index fe5d0f73..00000000 --- a/lib/src/features/browse_center/domain/source/source_model.g.dart +++ /dev/null @@ -1,30 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'source_model.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$SourceImpl _$$SourceImplFromJson(Map json) => _$SourceImpl( - displayName: json['displayName'] as String?, - iconUrl: json['iconUrl'] as String?, - id: json['id'] as String?, - isConfigurable: json['isConfigurable'] as bool?, - isNsfw: json['isNsfw'] as bool?, - lang: LanguageJsonConverter.fromJson(json['lang'] as String?), - name: json['name'] as String?, - supportsLatest: json['supportsLatest'] as bool?, - ); - -Map _$$SourceImplToJson(_$SourceImpl instance) => - { - 'displayName': instance.displayName, - 'iconUrl': instance.iconUrl, - 'id': instance.id, - 'isConfigurable': instance.isConfigurable, - 'isNsfw': instance.isNsfw, - 'lang': LanguageJsonConverter.toJson(instance.lang), - 'name': instance.name, - 'supportsLatest': instance.supportsLatest, - }; diff --git a/lib/src/features/browse_center/domain/source_preference/source_preference.dart b/lib/src/features/browse_center/domain/source_preference/source_preference.dart deleted file mode 100644 index 43f385c1..00000000 --- a/lib/src/features/browse_center/domain/source_preference/source_preference.dart +++ /dev/null @@ -1,47 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'package:freezed_annotation/freezed_annotation.dart'; - -import '../source_preference_prop/source_preference_prop.dart'; - -part 'source_preference.freezed.dart'; -part 'source_preference.g.dart'; - -@freezed -class SourcePreference with _$SourcePreference { - factory SourcePreference({ - String? type, - @JsonKey(readValue: SourcePreference.propsFromJson, name: 'props') - SourcePreferenceProp? sourcePreferenceProp, - }) = _SourcePreference; - - factory SourcePreference.fromJson(Map json) => - _$SourcePreferenceFromJson(json); - - static Map propsFromJson( - Map json, String str) { - final props = json['props']; - final type = json['type']; - if (type == 'MultiSelectListPreference' || type == 'ListPreference') { - final entries = props['entries']; - final entryValues = props['entryValues']; - if (entries != null && - entries is List && - entryValues != null && - entryValues is List) { - props['entries'] = Map.fromIterables( - entryValues.map((e) => e.toString()), - entries.map((e) => e.toString()), - ); - } - } - return { - 'type': json['type'], - if (props is Map) ...props, - }; - } -} diff --git a/lib/src/features/browse_center/domain/source_preference/source_preference.freezed.dart b/lib/src/features/browse_center/domain/source_preference/source_preference.freezed.dart deleted file mode 100644 index addd3ec1..00000000 --- a/lib/src/features/browse_center/domain/source_preference/source_preference.freezed.dart +++ /dev/null @@ -1,204 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'source_preference.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -SourcePreference _$SourcePreferenceFromJson(Map json) { - return _SourcePreference.fromJson(json); -} - -/// @nodoc -mixin _$SourcePreference { - String? get type => throw _privateConstructorUsedError; - @JsonKey(readValue: SourcePreference.propsFromJson, name: 'props') - SourcePreferenceProp? get sourcePreferenceProp => - throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $SourcePreferenceCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $SourcePreferenceCopyWith<$Res> { - factory $SourcePreferenceCopyWith( - SourcePreference value, $Res Function(SourcePreference) then) = - _$SourcePreferenceCopyWithImpl<$Res, SourcePreference>; - @useResult - $Res call( - {String? type, - @JsonKey(readValue: SourcePreference.propsFromJson, name: 'props') - SourcePreferenceProp? sourcePreferenceProp}); - - $SourcePreferencePropCopyWith<$Res>? get sourcePreferenceProp; -} - -/// @nodoc -class _$SourcePreferenceCopyWithImpl<$Res, $Val extends SourcePreference> - implements $SourcePreferenceCopyWith<$Res> { - _$SourcePreferenceCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? type = freezed, - Object? sourcePreferenceProp = freezed, - }) { - return _then(_value.copyWith( - type: freezed == type - ? _value.type - : type // ignore: cast_nullable_to_non_nullable - as String?, - sourcePreferenceProp: freezed == sourcePreferenceProp - ? _value.sourcePreferenceProp - : sourcePreferenceProp // ignore: cast_nullable_to_non_nullable - as SourcePreferenceProp?, - ) as $Val); - } - - @override - @pragma('vm:prefer-inline') - $SourcePreferencePropCopyWith<$Res>? get sourcePreferenceProp { - if (_value.sourcePreferenceProp == null) { - return null; - } - - return $SourcePreferencePropCopyWith<$Res>(_value.sourcePreferenceProp!, - (value) { - return _then(_value.copyWith(sourcePreferenceProp: value) as $Val); - }); - } -} - -/// @nodoc -abstract class _$$SourcePreferenceImplCopyWith<$Res> - implements $SourcePreferenceCopyWith<$Res> { - factory _$$SourcePreferenceImplCopyWith(_$SourcePreferenceImpl value, - $Res Function(_$SourcePreferenceImpl) then) = - __$$SourcePreferenceImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {String? type, - @JsonKey(readValue: SourcePreference.propsFromJson, name: 'props') - SourcePreferenceProp? sourcePreferenceProp}); - - @override - $SourcePreferencePropCopyWith<$Res>? get sourcePreferenceProp; -} - -/// @nodoc -class __$$SourcePreferenceImplCopyWithImpl<$Res> - extends _$SourcePreferenceCopyWithImpl<$Res, _$SourcePreferenceImpl> - implements _$$SourcePreferenceImplCopyWith<$Res> { - __$$SourcePreferenceImplCopyWithImpl(_$SourcePreferenceImpl _value, - $Res Function(_$SourcePreferenceImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? type = freezed, - Object? sourcePreferenceProp = freezed, - }) { - return _then(_$SourcePreferenceImpl( - type: freezed == type - ? _value.type - : type // ignore: cast_nullable_to_non_nullable - as String?, - sourcePreferenceProp: freezed == sourcePreferenceProp - ? _value.sourcePreferenceProp - : sourcePreferenceProp // ignore: cast_nullable_to_non_nullable - as SourcePreferenceProp?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$SourcePreferenceImpl implements _SourcePreference { - _$SourcePreferenceImpl( - {this.type, - @JsonKey(readValue: SourcePreference.propsFromJson, name: 'props') - this.sourcePreferenceProp}); - - factory _$SourcePreferenceImpl.fromJson(Map json) => - _$$SourcePreferenceImplFromJson(json); - - @override - final String? type; - @override - @JsonKey(readValue: SourcePreference.propsFromJson, name: 'props') - final SourcePreferenceProp? sourcePreferenceProp; - - @override - String toString() { - return 'SourcePreference(type: $type, sourcePreferenceProp: $sourcePreferenceProp)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$SourcePreferenceImpl && - (identical(other.type, type) || other.type == type) && - (identical(other.sourcePreferenceProp, sourcePreferenceProp) || - other.sourcePreferenceProp == sourcePreferenceProp)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, type, sourcePreferenceProp); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$SourcePreferenceImplCopyWith<_$SourcePreferenceImpl> get copyWith => - __$$SourcePreferenceImplCopyWithImpl<_$SourcePreferenceImpl>( - this, _$identity); - - @override - Map toJson() { - return _$$SourcePreferenceImplToJson( - this, - ); - } -} - -abstract class _SourcePreference implements SourcePreference { - factory _SourcePreference( - {final String? type, - @JsonKey(readValue: SourcePreference.propsFromJson, name: 'props') - final SourcePreferenceProp? sourcePreferenceProp}) = - _$SourcePreferenceImpl; - - factory _SourcePreference.fromJson(Map json) = - _$SourcePreferenceImpl.fromJson; - - @override - String? get type; - @override - @JsonKey(readValue: SourcePreference.propsFromJson, name: 'props') - SourcePreferenceProp? get sourcePreferenceProp; - @override - @JsonKey(ignore: true) - _$$SourcePreferenceImplCopyWith<_$SourcePreferenceImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/src/features/browse_center/domain/source_preference/source_preference.g.dart b/lib/src/features/browse_center/domain/source_preference/source_preference.g.dart deleted file mode 100644 index 1428f386..00000000 --- a/lib/src/features/browse_center/domain/source_preference/source_preference.g.dart +++ /dev/null @@ -1,26 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'source_preference.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$SourcePreferenceImpl _$$SourcePreferenceImplFromJson( - Map json) => - _$SourcePreferenceImpl( - type: json['type'] as String?, - sourcePreferenceProp: - SourcePreference.propsFromJson(json, 'props') == null - ? null - : SourcePreferenceProp.fromJson( - SourcePreference.propsFromJson(json, 'props') - as Map), - ); - -Map _$$SourcePreferenceImplToJson( - _$SourcePreferenceImpl instance) => - { - 'type': instance.type, - 'props': instance.sourcePreferenceProp?.toJson(), - }; diff --git a/lib/src/features/browse_center/domain/source_preference_prop/source_preference_prop.dart b/lib/src/features/browse_center/domain/source_preference_prop/source_preference_prop.dart deleted file mode 100644 index 24094424..00000000 --- a/lib/src/features/browse_center/domain/source_preference_prop/source_preference_prop.dart +++ /dev/null @@ -1,75 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'package:freezed_annotation/freezed_annotation.dart'; - -part 'source_preference_prop.freezed.dart'; -part 'source_preference_prop.g.dart'; - -@Freezed( - unionKey: 'type', - unionValueCase: FreezedUnionCase.pascal, - fallbackUnion: 'fallback', -) -sealed class SourcePreferenceProp with _$SourcePreferenceProp { - const factory SourcePreferenceProp.fallback({ - String? key, - dynamic currentValue, - }) = Fallback; - - const factory SourcePreferenceProp.checkBoxPreference({ - String? key, - String? title, - String? summary, - bool? defaultValue, - bool? currentValue, - String? defaultValueType, - }) = CheckBoxPreference; - - const factory SourcePreferenceProp.switchPreferenceCompat({ - String? key, - String? title, - String? summary, - bool? defaultValue, - bool? currentValue, - String? defaultValueType, - }) = SwitchPreferenceCompat; - - const factory SourcePreferenceProp.listPreference({ - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries, - }) = ListPreference; - - const factory SourcePreferenceProp.multiSelectListPreference({ - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries, - }) = MultiSelectListPreference; - - const factory SourcePreferenceProp.editTextPreference({ - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text, - }) = EditTextPreference; - - factory SourcePreferenceProp.fromJson(Map json) => - _$SourcePreferencePropFromJson(json); -} diff --git a/lib/src/features/browse_center/domain/source_preference_prop/source_preference_prop.freezed.dart b/lib/src/features/browse_center/domain/source_preference_prop/source_preference_prop.freezed.dart deleted file mode 100644 index 3a0c109c..00000000 --- a/lib/src/features/browse_center/domain/source_preference_prop/source_preference_prop.freezed.dart +++ /dev/null @@ -1,2374 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'source_preference_prop.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -SourcePreferenceProp _$SourcePreferencePropFromJson(Map json) { - switch (json['type']) { - case 'CheckBoxPreference': - return CheckBoxPreference.fromJson(json); - case 'SwitchPreferenceCompat': - return SwitchPreferenceCompat.fromJson(json); - case 'ListPreference': - return ListPreference.fromJson(json); - case 'MultiSelectListPreference': - return MultiSelectListPreference.fromJson(json); - case 'EditTextPreference': - return EditTextPreference.fromJson(json); - - default: - return Fallback.fromJson(json); - } -} - -/// @nodoc -mixin _$SourcePreferenceProp { - String? get key => throw _privateConstructorUsedError; - dynamic get currentValue => throw _privateConstructorUsedError; - @optionalTypeArgs - TResult when({ - required TResult Function(String? key, dynamic currentValue) fallback, - required TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType) - checkBoxPreference, - required TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType) - switchPreferenceCompat, - required TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries) - listPreference, - required TResult Function( - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries) - multiSelectListPreference, - required TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text) - editTextPreference, - }) => - throw _privateConstructorUsedError; - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(String? key, dynamic currentValue)? fallback, - TResult? Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - checkBoxPreference, - TResult? Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - switchPreferenceCompat, - TResult? Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries)? - listPreference, - TResult? Function( - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries)? - multiSelectListPreference, - TResult? Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text)? - editTextPreference, - }) => - throw _privateConstructorUsedError; - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(String? key, dynamic currentValue)? fallback, - TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - checkBoxPreference, - TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - switchPreferenceCompat, - TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries)? - listPreference, - TResult Function( - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries)? - multiSelectListPreference, - TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text)? - editTextPreference, - required TResult orElse(), - }) => - throw _privateConstructorUsedError; - @optionalTypeArgs - TResult map({ - required TResult Function(Fallback value) fallback, - required TResult Function(CheckBoxPreference value) checkBoxPreference, - required TResult Function(SwitchPreferenceCompat value) - switchPreferenceCompat, - required TResult Function(ListPreference value) listPreference, - required TResult Function(MultiSelectListPreference value) - multiSelectListPreference, - required TResult Function(EditTextPreference value) editTextPreference, - }) => - throw _privateConstructorUsedError; - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(Fallback value)? fallback, - TResult? Function(CheckBoxPreference value)? checkBoxPreference, - TResult? Function(SwitchPreferenceCompat value)? switchPreferenceCompat, - TResult? Function(ListPreference value)? listPreference, - TResult? Function(MultiSelectListPreference value)? - multiSelectListPreference, - TResult? Function(EditTextPreference value)? editTextPreference, - }) => - throw _privateConstructorUsedError; - @optionalTypeArgs - TResult maybeMap({ - TResult Function(Fallback value)? fallback, - TResult Function(CheckBoxPreference value)? checkBoxPreference, - TResult Function(SwitchPreferenceCompat value)? switchPreferenceCompat, - TResult Function(ListPreference value)? listPreference, - TResult Function(MultiSelectListPreference value)? - multiSelectListPreference, - TResult Function(EditTextPreference value)? editTextPreference, - required TResult orElse(), - }) => - throw _privateConstructorUsedError; - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $SourcePreferencePropCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $SourcePreferencePropCopyWith<$Res> { - factory $SourcePreferencePropCopyWith(SourcePreferenceProp value, - $Res Function(SourcePreferenceProp) then) = - _$SourcePreferencePropCopyWithImpl<$Res, SourcePreferenceProp>; - @useResult - $Res call({String? key}); -} - -/// @nodoc -class _$SourcePreferencePropCopyWithImpl<$Res, - $Val extends SourcePreferenceProp> - implements $SourcePreferencePropCopyWith<$Res> { - _$SourcePreferencePropCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? key = freezed, - }) { - return _then(_value.copyWith( - key: freezed == key - ? _value.key - : key // ignore: cast_nullable_to_non_nullable - as String?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$FallbackImplCopyWith<$Res> - implements $SourcePreferencePropCopyWith<$Res> { - factory _$$FallbackImplCopyWith( - _$FallbackImpl value, $Res Function(_$FallbackImpl) then) = - __$$FallbackImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({String? key, dynamic currentValue}); -} - -/// @nodoc -class __$$FallbackImplCopyWithImpl<$Res> - extends _$SourcePreferencePropCopyWithImpl<$Res, _$FallbackImpl> - implements _$$FallbackImplCopyWith<$Res> { - __$$FallbackImplCopyWithImpl( - _$FallbackImpl _value, $Res Function(_$FallbackImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? key = freezed, - Object? currentValue = freezed, - }) { - return _then(_$FallbackImpl( - key: freezed == key - ? _value.key - : key // ignore: cast_nullable_to_non_nullable - as String?, - currentValue: freezed == currentValue - ? _value.currentValue - : currentValue // ignore: cast_nullable_to_non_nullable - as dynamic, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$FallbackImpl implements Fallback { - const _$FallbackImpl({this.key, this.currentValue, final String? $type}) - : $type = $type ?? 'Fallback'; - - factory _$FallbackImpl.fromJson(Map json) => - _$$FallbackImplFromJson(json); - - @override - final String? key; - @override - final dynamic currentValue; - - @JsonKey(name: 'type') - final String $type; - - @override - String toString() { - return 'SourcePreferenceProp.fallback(key: $key, currentValue: $currentValue)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$FallbackImpl && - (identical(other.key, key) || other.key == key) && - const DeepCollectionEquality() - .equals(other.currentValue, currentValue)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, key, const DeepCollectionEquality().hash(currentValue)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$FallbackImplCopyWith<_$FallbackImpl> get copyWith => - __$$FallbackImplCopyWithImpl<_$FallbackImpl>(this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(String? key, dynamic currentValue) fallback, - required TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType) - checkBoxPreference, - required TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType) - switchPreferenceCompat, - required TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries) - listPreference, - required TResult Function( - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries) - multiSelectListPreference, - required TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text) - editTextPreference, - }) { - return fallback(key, currentValue); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(String? key, dynamic currentValue)? fallback, - TResult? Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - checkBoxPreference, - TResult? Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - switchPreferenceCompat, - TResult? Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries)? - listPreference, - TResult? Function( - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries)? - multiSelectListPreference, - TResult? Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text)? - editTextPreference, - }) { - return fallback?.call(key, currentValue); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(String? key, dynamic currentValue)? fallback, - TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - checkBoxPreference, - TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - switchPreferenceCompat, - TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries)? - listPreference, - TResult Function( - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries)? - multiSelectListPreference, - TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text)? - editTextPreference, - required TResult orElse(), - }) { - if (fallback != null) { - return fallback(key, currentValue); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(Fallback value) fallback, - required TResult Function(CheckBoxPreference value) checkBoxPreference, - required TResult Function(SwitchPreferenceCompat value) - switchPreferenceCompat, - required TResult Function(ListPreference value) listPreference, - required TResult Function(MultiSelectListPreference value) - multiSelectListPreference, - required TResult Function(EditTextPreference value) editTextPreference, - }) { - return fallback(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(Fallback value)? fallback, - TResult? Function(CheckBoxPreference value)? checkBoxPreference, - TResult? Function(SwitchPreferenceCompat value)? switchPreferenceCompat, - TResult? Function(ListPreference value)? listPreference, - TResult? Function(MultiSelectListPreference value)? - multiSelectListPreference, - TResult? Function(EditTextPreference value)? editTextPreference, - }) { - return fallback?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(Fallback value)? fallback, - TResult Function(CheckBoxPreference value)? checkBoxPreference, - TResult Function(SwitchPreferenceCompat value)? switchPreferenceCompat, - TResult Function(ListPreference value)? listPreference, - TResult Function(MultiSelectListPreference value)? - multiSelectListPreference, - TResult Function(EditTextPreference value)? editTextPreference, - required TResult orElse(), - }) { - if (fallback != null) { - return fallback(this); - } - return orElse(); - } - - @override - Map toJson() { - return _$$FallbackImplToJson( - this, - ); - } -} - -abstract class Fallback implements SourcePreferenceProp { - const factory Fallback({final String? key, final dynamic currentValue}) = - _$FallbackImpl; - - factory Fallback.fromJson(Map json) = - _$FallbackImpl.fromJson; - - @override - String? get key; - @override - dynamic get currentValue; - @override - @JsonKey(ignore: true) - _$$FallbackImplCopyWith<_$FallbackImpl> get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class _$$CheckBoxPreferenceImplCopyWith<$Res> - implements $SourcePreferencePropCopyWith<$Res> { - factory _$$CheckBoxPreferenceImplCopyWith(_$CheckBoxPreferenceImpl value, - $Res Function(_$CheckBoxPreferenceImpl) then) = - __$$CheckBoxPreferenceImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {String? key, - String? title, - String? summary, - bool? defaultValue, - bool? currentValue, - String? defaultValueType}); -} - -/// @nodoc -class __$$CheckBoxPreferenceImplCopyWithImpl<$Res> - extends _$SourcePreferencePropCopyWithImpl<$Res, _$CheckBoxPreferenceImpl> - implements _$$CheckBoxPreferenceImplCopyWith<$Res> { - __$$CheckBoxPreferenceImplCopyWithImpl(_$CheckBoxPreferenceImpl _value, - $Res Function(_$CheckBoxPreferenceImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? key = freezed, - Object? title = freezed, - Object? summary = freezed, - Object? defaultValue = freezed, - Object? currentValue = freezed, - Object? defaultValueType = freezed, - }) { - return _then(_$CheckBoxPreferenceImpl( - key: freezed == key - ? _value.key - : key // ignore: cast_nullable_to_non_nullable - as String?, - title: freezed == title - ? _value.title - : title // ignore: cast_nullable_to_non_nullable - as String?, - summary: freezed == summary - ? _value.summary - : summary // ignore: cast_nullable_to_non_nullable - as String?, - defaultValue: freezed == defaultValue - ? _value.defaultValue - : defaultValue // ignore: cast_nullable_to_non_nullable - as bool?, - currentValue: freezed == currentValue - ? _value.currentValue - : currentValue // ignore: cast_nullable_to_non_nullable - as bool?, - defaultValueType: freezed == defaultValueType - ? _value.defaultValueType - : defaultValueType // ignore: cast_nullable_to_non_nullable - as String?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$CheckBoxPreferenceImpl implements CheckBoxPreference { - const _$CheckBoxPreferenceImpl( - {this.key, - this.title, - this.summary, - this.defaultValue, - this.currentValue, - this.defaultValueType, - final String? $type}) - : $type = $type ?? 'CheckBoxPreference'; - - factory _$CheckBoxPreferenceImpl.fromJson(Map json) => - _$$CheckBoxPreferenceImplFromJson(json); - - @override - final String? key; - @override - final String? title; - @override - final String? summary; - @override - final bool? defaultValue; - @override - final bool? currentValue; - @override - final String? defaultValueType; - - @JsonKey(name: 'type') - final String $type; - - @override - String toString() { - return 'SourcePreferenceProp.checkBoxPreference(key: $key, title: $title, summary: $summary, defaultValue: $defaultValue, currentValue: $currentValue, defaultValueType: $defaultValueType)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$CheckBoxPreferenceImpl && - (identical(other.key, key) || other.key == key) && - (identical(other.title, title) || other.title == title) && - (identical(other.summary, summary) || other.summary == summary) && - (identical(other.defaultValue, defaultValue) || - other.defaultValue == defaultValue) && - (identical(other.currentValue, currentValue) || - other.currentValue == currentValue) && - (identical(other.defaultValueType, defaultValueType) || - other.defaultValueType == defaultValueType)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, key, title, summary, - defaultValue, currentValue, defaultValueType); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$CheckBoxPreferenceImplCopyWith<_$CheckBoxPreferenceImpl> get copyWith => - __$$CheckBoxPreferenceImplCopyWithImpl<_$CheckBoxPreferenceImpl>( - this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(String? key, dynamic currentValue) fallback, - required TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType) - checkBoxPreference, - required TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType) - switchPreferenceCompat, - required TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries) - listPreference, - required TResult Function( - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries) - multiSelectListPreference, - required TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text) - editTextPreference, - }) { - return checkBoxPreference( - key, title, summary, defaultValue, currentValue, defaultValueType); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(String? key, dynamic currentValue)? fallback, - TResult? Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - checkBoxPreference, - TResult? Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - switchPreferenceCompat, - TResult? Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries)? - listPreference, - TResult? Function( - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries)? - multiSelectListPreference, - TResult? Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text)? - editTextPreference, - }) { - return checkBoxPreference?.call( - key, title, summary, defaultValue, currentValue, defaultValueType); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(String? key, dynamic currentValue)? fallback, - TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - checkBoxPreference, - TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - switchPreferenceCompat, - TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries)? - listPreference, - TResult Function( - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries)? - multiSelectListPreference, - TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text)? - editTextPreference, - required TResult orElse(), - }) { - if (checkBoxPreference != null) { - return checkBoxPreference( - key, title, summary, defaultValue, currentValue, defaultValueType); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(Fallback value) fallback, - required TResult Function(CheckBoxPreference value) checkBoxPreference, - required TResult Function(SwitchPreferenceCompat value) - switchPreferenceCompat, - required TResult Function(ListPreference value) listPreference, - required TResult Function(MultiSelectListPreference value) - multiSelectListPreference, - required TResult Function(EditTextPreference value) editTextPreference, - }) { - return checkBoxPreference(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(Fallback value)? fallback, - TResult? Function(CheckBoxPreference value)? checkBoxPreference, - TResult? Function(SwitchPreferenceCompat value)? switchPreferenceCompat, - TResult? Function(ListPreference value)? listPreference, - TResult? Function(MultiSelectListPreference value)? - multiSelectListPreference, - TResult? Function(EditTextPreference value)? editTextPreference, - }) { - return checkBoxPreference?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(Fallback value)? fallback, - TResult Function(CheckBoxPreference value)? checkBoxPreference, - TResult Function(SwitchPreferenceCompat value)? switchPreferenceCompat, - TResult Function(ListPreference value)? listPreference, - TResult Function(MultiSelectListPreference value)? - multiSelectListPreference, - TResult Function(EditTextPreference value)? editTextPreference, - required TResult orElse(), - }) { - if (checkBoxPreference != null) { - return checkBoxPreference(this); - } - return orElse(); - } - - @override - Map toJson() { - return _$$CheckBoxPreferenceImplToJson( - this, - ); - } -} - -abstract class CheckBoxPreference implements SourcePreferenceProp { - const factory CheckBoxPreference( - {final String? key, - final String? title, - final String? summary, - final bool? defaultValue, - final bool? currentValue, - final String? defaultValueType}) = _$CheckBoxPreferenceImpl; - - factory CheckBoxPreference.fromJson(Map json) = - _$CheckBoxPreferenceImpl.fromJson; - - @override - String? get key; - String? get title; - String? get summary; - bool? get defaultValue; - @override - bool? get currentValue; - String? get defaultValueType; - @override - @JsonKey(ignore: true) - _$$CheckBoxPreferenceImplCopyWith<_$CheckBoxPreferenceImpl> get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class _$$SwitchPreferenceCompatImplCopyWith<$Res> - implements $SourcePreferencePropCopyWith<$Res> { - factory _$$SwitchPreferenceCompatImplCopyWith( - _$SwitchPreferenceCompatImpl value, - $Res Function(_$SwitchPreferenceCompatImpl) then) = - __$$SwitchPreferenceCompatImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {String? key, - String? title, - String? summary, - bool? defaultValue, - bool? currentValue, - String? defaultValueType}); -} - -/// @nodoc -class __$$SwitchPreferenceCompatImplCopyWithImpl<$Res> - extends _$SourcePreferencePropCopyWithImpl<$Res, - _$SwitchPreferenceCompatImpl> - implements _$$SwitchPreferenceCompatImplCopyWith<$Res> { - __$$SwitchPreferenceCompatImplCopyWithImpl( - _$SwitchPreferenceCompatImpl _value, - $Res Function(_$SwitchPreferenceCompatImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? key = freezed, - Object? title = freezed, - Object? summary = freezed, - Object? defaultValue = freezed, - Object? currentValue = freezed, - Object? defaultValueType = freezed, - }) { - return _then(_$SwitchPreferenceCompatImpl( - key: freezed == key - ? _value.key - : key // ignore: cast_nullable_to_non_nullable - as String?, - title: freezed == title - ? _value.title - : title // ignore: cast_nullable_to_non_nullable - as String?, - summary: freezed == summary - ? _value.summary - : summary // ignore: cast_nullable_to_non_nullable - as String?, - defaultValue: freezed == defaultValue - ? _value.defaultValue - : defaultValue // ignore: cast_nullable_to_non_nullable - as bool?, - currentValue: freezed == currentValue - ? _value.currentValue - : currentValue // ignore: cast_nullable_to_non_nullable - as bool?, - defaultValueType: freezed == defaultValueType - ? _value.defaultValueType - : defaultValueType // ignore: cast_nullable_to_non_nullable - as String?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$SwitchPreferenceCompatImpl implements SwitchPreferenceCompat { - const _$SwitchPreferenceCompatImpl( - {this.key, - this.title, - this.summary, - this.defaultValue, - this.currentValue, - this.defaultValueType, - final String? $type}) - : $type = $type ?? 'SwitchPreferenceCompat'; - - factory _$SwitchPreferenceCompatImpl.fromJson(Map json) => - _$$SwitchPreferenceCompatImplFromJson(json); - - @override - final String? key; - @override - final String? title; - @override - final String? summary; - @override - final bool? defaultValue; - @override - final bool? currentValue; - @override - final String? defaultValueType; - - @JsonKey(name: 'type') - final String $type; - - @override - String toString() { - return 'SourcePreferenceProp.switchPreferenceCompat(key: $key, title: $title, summary: $summary, defaultValue: $defaultValue, currentValue: $currentValue, defaultValueType: $defaultValueType)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$SwitchPreferenceCompatImpl && - (identical(other.key, key) || other.key == key) && - (identical(other.title, title) || other.title == title) && - (identical(other.summary, summary) || other.summary == summary) && - (identical(other.defaultValue, defaultValue) || - other.defaultValue == defaultValue) && - (identical(other.currentValue, currentValue) || - other.currentValue == currentValue) && - (identical(other.defaultValueType, defaultValueType) || - other.defaultValueType == defaultValueType)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, key, title, summary, - defaultValue, currentValue, defaultValueType); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$SwitchPreferenceCompatImplCopyWith<_$SwitchPreferenceCompatImpl> - get copyWith => __$$SwitchPreferenceCompatImplCopyWithImpl< - _$SwitchPreferenceCompatImpl>(this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(String? key, dynamic currentValue) fallback, - required TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType) - checkBoxPreference, - required TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType) - switchPreferenceCompat, - required TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries) - listPreference, - required TResult Function( - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries) - multiSelectListPreference, - required TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text) - editTextPreference, - }) { - return switchPreferenceCompat( - key, title, summary, defaultValue, currentValue, defaultValueType); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(String? key, dynamic currentValue)? fallback, - TResult? Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - checkBoxPreference, - TResult? Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - switchPreferenceCompat, - TResult? Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries)? - listPreference, - TResult? Function( - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries)? - multiSelectListPreference, - TResult? Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text)? - editTextPreference, - }) { - return switchPreferenceCompat?.call( - key, title, summary, defaultValue, currentValue, defaultValueType); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(String? key, dynamic currentValue)? fallback, - TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - checkBoxPreference, - TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - switchPreferenceCompat, - TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries)? - listPreference, - TResult Function( - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries)? - multiSelectListPreference, - TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text)? - editTextPreference, - required TResult orElse(), - }) { - if (switchPreferenceCompat != null) { - return switchPreferenceCompat( - key, title, summary, defaultValue, currentValue, defaultValueType); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(Fallback value) fallback, - required TResult Function(CheckBoxPreference value) checkBoxPreference, - required TResult Function(SwitchPreferenceCompat value) - switchPreferenceCompat, - required TResult Function(ListPreference value) listPreference, - required TResult Function(MultiSelectListPreference value) - multiSelectListPreference, - required TResult Function(EditTextPreference value) editTextPreference, - }) { - return switchPreferenceCompat(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(Fallback value)? fallback, - TResult? Function(CheckBoxPreference value)? checkBoxPreference, - TResult? Function(SwitchPreferenceCompat value)? switchPreferenceCompat, - TResult? Function(ListPreference value)? listPreference, - TResult? Function(MultiSelectListPreference value)? - multiSelectListPreference, - TResult? Function(EditTextPreference value)? editTextPreference, - }) { - return switchPreferenceCompat?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(Fallback value)? fallback, - TResult Function(CheckBoxPreference value)? checkBoxPreference, - TResult Function(SwitchPreferenceCompat value)? switchPreferenceCompat, - TResult Function(ListPreference value)? listPreference, - TResult Function(MultiSelectListPreference value)? - multiSelectListPreference, - TResult Function(EditTextPreference value)? editTextPreference, - required TResult orElse(), - }) { - if (switchPreferenceCompat != null) { - return switchPreferenceCompat(this); - } - return orElse(); - } - - @override - Map toJson() { - return _$$SwitchPreferenceCompatImplToJson( - this, - ); - } -} - -abstract class SwitchPreferenceCompat implements SourcePreferenceProp { - const factory SwitchPreferenceCompat( - {final String? key, - final String? title, - final String? summary, - final bool? defaultValue, - final bool? currentValue, - final String? defaultValueType}) = _$SwitchPreferenceCompatImpl; - - factory SwitchPreferenceCompat.fromJson(Map json) = - _$SwitchPreferenceCompatImpl.fromJson; - - @override - String? get key; - String? get title; - String? get summary; - bool? get defaultValue; - @override - bool? get currentValue; - String? get defaultValueType; - @override - @JsonKey(ignore: true) - _$$SwitchPreferenceCompatImplCopyWith<_$SwitchPreferenceCompatImpl> - get copyWith => throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class _$$ListPreferenceImplCopyWith<$Res> - implements $SourcePreferencePropCopyWith<$Res> { - factory _$$ListPreferenceImplCopyWith(_$ListPreferenceImpl value, - $Res Function(_$ListPreferenceImpl) then) = - __$$ListPreferenceImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries}); -} - -/// @nodoc -class __$$ListPreferenceImplCopyWithImpl<$Res> - extends _$SourcePreferencePropCopyWithImpl<$Res, _$ListPreferenceImpl> - implements _$$ListPreferenceImplCopyWith<$Res> { - __$$ListPreferenceImplCopyWithImpl( - _$ListPreferenceImpl _value, $Res Function(_$ListPreferenceImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? key = freezed, - Object? title = freezed, - Object? summary = freezed, - Object? defaultValue = freezed, - Object? currentValue = freezed, - Object? defaultValueType = freezed, - Object? entries = freezed, - }) { - return _then(_$ListPreferenceImpl( - key: freezed == key - ? _value.key - : key // ignore: cast_nullable_to_non_nullable - as String?, - title: freezed == title - ? _value.title - : title // ignore: cast_nullable_to_non_nullable - as String?, - summary: freezed == summary - ? _value.summary - : summary // ignore: cast_nullable_to_non_nullable - as String?, - defaultValue: freezed == defaultValue - ? _value.defaultValue - : defaultValue // ignore: cast_nullable_to_non_nullable - as String?, - currentValue: freezed == currentValue - ? _value.currentValue - : currentValue // ignore: cast_nullable_to_non_nullable - as String?, - defaultValueType: freezed == defaultValueType - ? _value.defaultValueType - : defaultValueType // ignore: cast_nullable_to_non_nullable - as String?, - entries: freezed == entries - ? _value._entries - : entries // ignore: cast_nullable_to_non_nullable - as Map?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$ListPreferenceImpl implements ListPreference { - const _$ListPreferenceImpl( - {this.key, - this.title, - this.summary, - this.defaultValue, - this.currentValue, - this.defaultValueType, - final Map? entries, - final String? $type}) - : _entries = entries, - $type = $type ?? 'ListPreference'; - - factory _$ListPreferenceImpl.fromJson(Map json) => - _$$ListPreferenceImplFromJson(json); - - @override - final String? key; - @override - final String? title; - @override - final String? summary; - @override - final String? defaultValue; - @override - final String? currentValue; - @override - final String? defaultValueType; - final Map? _entries; - @override - Map? get entries { - final value = _entries; - if (value == null) return null; - if (_entries is EqualUnmodifiableMapView) return _entries; - // ignore: implicit_dynamic_type - return EqualUnmodifiableMapView(value); - } - - @JsonKey(name: 'type') - final String $type; - - @override - String toString() { - return 'SourcePreferenceProp.listPreference(key: $key, title: $title, summary: $summary, defaultValue: $defaultValue, currentValue: $currentValue, defaultValueType: $defaultValueType, entries: $entries)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$ListPreferenceImpl && - (identical(other.key, key) || other.key == key) && - (identical(other.title, title) || other.title == title) && - (identical(other.summary, summary) || other.summary == summary) && - (identical(other.defaultValue, defaultValue) || - other.defaultValue == defaultValue) && - (identical(other.currentValue, currentValue) || - other.currentValue == currentValue) && - (identical(other.defaultValueType, defaultValueType) || - other.defaultValueType == defaultValueType) && - const DeepCollectionEquality().equals(other._entries, _entries)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, - key, - title, - summary, - defaultValue, - currentValue, - defaultValueType, - const DeepCollectionEquality().hash(_entries)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$ListPreferenceImplCopyWith<_$ListPreferenceImpl> get copyWith => - __$$ListPreferenceImplCopyWithImpl<_$ListPreferenceImpl>( - this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(String? key, dynamic currentValue) fallback, - required TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType) - checkBoxPreference, - required TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType) - switchPreferenceCompat, - required TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries) - listPreference, - required TResult Function( - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries) - multiSelectListPreference, - required TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text) - editTextPreference, - }) { - return listPreference(key, title, summary, defaultValue, currentValue, - defaultValueType, entries); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(String? key, dynamic currentValue)? fallback, - TResult? Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - checkBoxPreference, - TResult? Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - switchPreferenceCompat, - TResult? Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries)? - listPreference, - TResult? Function( - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries)? - multiSelectListPreference, - TResult? Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text)? - editTextPreference, - }) { - return listPreference?.call(key, title, summary, defaultValue, currentValue, - defaultValueType, entries); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(String? key, dynamic currentValue)? fallback, - TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - checkBoxPreference, - TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - switchPreferenceCompat, - TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries)? - listPreference, - TResult Function( - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries)? - multiSelectListPreference, - TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text)? - editTextPreference, - required TResult orElse(), - }) { - if (listPreference != null) { - return listPreference(key, title, summary, defaultValue, currentValue, - defaultValueType, entries); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(Fallback value) fallback, - required TResult Function(CheckBoxPreference value) checkBoxPreference, - required TResult Function(SwitchPreferenceCompat value) - switchPreferenceCompat, - required TResult Function(ListPreference value) listPreference, - required TResult Function(MultiSelectListPreference value) - multiSelectListPreference, - required TResult Function(EditTextPreference value) editTextPreference, - }) { - return listPreference(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(Fallback value)? fallback, - TResult? Function(CheckBoxPreference value)? checkBoxPreference, - TResult? Function(SwitchPreferenceCompat value)? switchPreferenceCompat, - TResult? Function(ListPreference value)? listPreference, - TResult? Function(MultiSelectListPreference value)? - multiSelectListPreference, - TResult? Function(EditTextPreference value)? editTextPreference, - }) { - return listPreference?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(Fallback value)? fallback, - TResult Function(CheckBoxPreference value)? checkBoxPreference, - TResult Function(SwitchPreferenceCompat value)? switchPreferenceCompat, - TResult Function(ListPreference value)? listPreference, - TResult Function(MultiSelectListPreference value)? - multiSelectListPreference, - TResult Function(EditTextPreference value)? editTextPreference, - required TResult orElse(), - }) { - if (listPreference != null) { - return listPreference(this); - } - return orElse(); - } - - @override - Map toJson() { - return _$$ListPreferenceImplToJson( - this, - ); - } -} - -abstract class ListPreference implements SourcePreferenceProp { - const factory ListPreference( - {final String? key, - final String? title, - final String? summary, - final String? defaultValue, - final String? currentValue, - final String? defaultValueType, - final Map? entries}) = _$ListPreferenceImpl; - - factory ListPreference.fromJson(Map json) = - _$ListPreferenceImpl.fromJson; - - @override - String? get key; - String? get title; - String? get summary; - String? get defaultValue; - @override - String? get currentValue; - String? get defaultValueType; - Map? get entries; - @override - @JsonKey(ignore: true) - _$$ListPreferenceImplCopyWith<_$ListPreferenceImpl> get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class _$$MultiSelectListPreferenceImplCopyWith<$Res> - implements $SourcePreferencePropCopyWith<$Res> { - factory _$$MultiSelectListPreferenceImplCopyWith( - _$MultiSelectListPreferenceImpl value, - $Res Function(_$MultiSelectListPreferenceImpl) then) = - __$$MultiSelectListPreferenceImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries}); -} - -/// @nodoc -class __$$MultiSelectListPreferenceImplCopyWithImpl<$Res> - extends _$SourcePreferencePropCopyWithImpl<$Res, - _$MultiSelectListPreferenceImpl> - implements _$$MultiSelectListPreferenceImplCopyWith<$Res> { - __$$MultiSelectListPreferenceImplCopyWithImpl( - _$MultiSelectListPreferenceImpl _value, - $Res Function(_$MultiSelectListPreferenceImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? key = freezed, - Object? title = freezed, - Object? summary = freezed, - Object? defaultValue = freezed, - Object? currentValue = freezed, - Object? defaultValueType = freezed, - Object? entries = freezed, - }) { - return _then(_$MultiSelectListPreferenceImpl( - key: freezed == key - ? _value.key - : key // ignore: cast_nullable_to_non_nullable - as String?, - title: freezed == title - ? _value.title - : title // ignore: cast_nullable_to_non_nullable - as String?, - summary: freezed == summary - ? _value.summary - : summary // ignore: cast_nullable_to_non_nullable - as String?, - defaultValue: freezed == defaultValue - ? _value._defaultValue - : defaultValue // ignore: cast_nullable_to_non_nullable - as List?, - currentValue: freezed == currentValue - ? _value._currentValue - : currentValue // ignore: cast_nullable_to_non_nullable - as List?, - defaultValueType: freezed == defaultValueType - ? _value.defaultValueType - : defaultValueType // ignore: cast_nullable_to_non_nullable - as String?, - entries: freezed == entries - ? _value._entries - : entries // ignore: cast_nullable_to_non_nullable - as Map?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$MultiSelectListPreferenceImpl implements MultiSelectListPreference { - const _$MultiSelectListPreferenceImpl( - {this.key, - this.title, - this.summary, - final List? defaultValue, - final List? currentValue, - this.defaultValueType, - final Map? entries, - final String? $type}) - : _defaultValue = defaultValue, - _currentValue = currentValue, - _entries = entries, - $type = $type ?? 'MultiSelectListPreference'; - - factory _$MultiSelectListPreferenceImpl.fromJson(Map json) => - _$$MultiSelectListPreferenceImplFromJson(json); - - @override - final String? key; - @override - final String? title; - @override - final String? summary; - final List? _defaultValue; - @override - List? get defaultValue { - final value = _defaultValue; - if (value == null) return null; - if (_defaultValue is EqualUnmodifiableListView) return _defaultValue; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(value); - } - - final List? _currentValue; - @override - List? get currentValue { - final value = _currentValue; - if (value == null) return null; - if (_currentValue is EqualUnmodifiableListView) return _currentValue; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(value); - } - - @override - final String? defaultValueType; - final Map? _entries; - @override - Map? get entries { - final value = _entries; - if (value == null) return null; - if (_entries is EqualUnmodifiableMapView) return _entries; - // ignore: implicit_dynamic_type - return EqualUnmodifiableMapView(value); - } - - @JsonKey(name: 'type') - final String $type; - - @override - String toString() { - return 'SourcePreferenceProp.multiSelectListPreference(key: $key, title: $title, summary: $summary, defaultValue: $defaultValue, currentValue: $currentValue, defaultValueType: $defaultValueType, entries: $entries)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$MultiSelectListPreferenceImpl && - (identical(other.key, key) || other.key == key) && - (identical(other.title, title) || other.title == title) && - (identical(other.summary, summary) || other.summary == summary) && - const DeepCollectionEquality() - .equals(other._defaultValue, _defaultValue) && - const DeepCollectionEquality() - .equals(other._currentValue, _currentValue) && - (identical(other.defaultValueType, defaultValueType) || - other.defaultValueType == defaultValueType) && - const DeepCollectionEquality().equals(other._entries, _entries)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, - key, - title, - summary, - const DeepCollectionEquality().hash(_defaultValue), - const DeepCollectionEquality().hash(_currentValue), - defaultValueType, - const DeepCollectionEquality().hash(_entries)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$MultiSelectListPreferenceImplCopyWith<_$MultiSelectListPreferenceImpl> - get copyWith => __$$MultiSelectListPreferenceImplCopyWithImpl< - _$MultiSelectListPreferenceImpl>(this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(String? key, dynamic currentValue) fallback, - required TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType) - checkBoxPreference, - required TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType) - switchPreferenceCompat, - required TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries) - listPreference, - required TResult Function( - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries) - multiSelectListPreference, - required TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text) - editTextPreference, - }) { - return multiSelectListPreference(key, title, summary, defaultValue, - currentValue, defaultValueType, entries); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(String? key, dynamic currentValue)? fallback, - TResult? Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - checkBoxPreference, - TResult? Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - switchPreferenceCompat, - TResult? Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries)? - listPreference, - TResult? Function( - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries)? - multiSelectListPreference, - TResult? Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text)? - editTextPreference, - }) { - return multiSelectListPreference?.call(key, title, summary, defaultValue, - currentValue, defaultValueType, entries); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(String? key, dynamic currentValue)? fallback, - TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - checkBoxPreference, - TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - switchPreferenceCompat, - TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries)? - listPreference, - TResult Function( - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries)? - multiSelectListPreference, - TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text)? - editTextPreference, - required TResult orElse(), - }) { - if (multiSelectListPreference != null) { - return multiSelectListPreference(key, title, summary, defaultValue, - currentValue, defaultValueType, entries); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(Fallback value) fallback, - required TResult Function(CheckBoxPreference value) checkBoxPreference, - required TResult Function(SwitchPreferenceCompat value) - switchPreferenceCompat, - required TResult Function(ListPreference value) listPreference, - required TResult Function(MultiSelectListPreference value) - multiSelectListPreference, - required TResult Function(EditTextPreference value) editTextPreference, - }) { - return multiSelectListPreference(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(Fallback value)? fallback, - TResult? Function(CheckBoxPreference value)? checkBoxPreference, - TResult? Function(SwitchPreferenceCompat value)? switchPreferenceCompat, - TResult? Function(ListPreference value)? listPreference, - TResult? Function(MultiSelectListPreference value)? - multiSelectListPreference, - TResult? Function(EditTextPreference value)? editTextPreference, - }) { - return multiSelectListPreference?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(Fallback value)? fallback, - TResult Function(CheckBoxPreference value)? checkBoxPreference, - TResult Function(SwitchPreferenceCompat value)? switchPreferenceCompat, - TResult Function(ListPreference value)? listPreference, - TResult Function(MultiSelectListPreference value)? - multiSelectListPreference, - TResult Function(EditTextPreference value)? editTextPreference, - required TResult orElse(), - }) { - if (multiSelectListPreference != null) { - return multiSelectListPreference(this); - } - return orElse(); - } - - @override - Map toJson() { - return _$$MultiSelectListPreferenceImplToJson( - this, - ); - } -} - -abstract class MultiSelectListPreference implements SourcePreferenceProp { - const factory MultiSelectListPreference( - {final String? key, - final String? title, - final String? summary, - final List? defaultValue, - final List? currentValue, - final String? defaultValueType, - final Map? entries}) = _$MultiSelectListPreferenceImpl; - - factory MultiSelectListPreference.fromJson(Map json) = - _$MultiSelectListPreferenceImpl.fromJson; - - @override - String? get key; - String? get title; - String? get summary; - List? get defaultValue; - @override - List? get currentValue; - String? get defaultValueType; - Map? get entries; - @override - @JsonKey(ignore: true) - _$$MultiSelectListPreferenceImplCopyWith<_$MultiSelectListPreferenceImpl> - get copyWith => throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class _$$EditTextPreferenceImplCopyWith<$Res> - implements $SourcePreferencePropCopyWith<$Res> { - factory _$$EditTextPreferenceImplCopyWith(_$EditTextPreferenceImpl value, - $Res Function(_$EditTextPreferenceImpl) then) = - __$$EditTextPreferenceImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text}); -} - -/// @nodoc -class __$$EditTextPreferenceImplCopyWithImpl<$Res> - extends _$SourcePreferencePropCopyWithImpl<$Res, _$EditTextPreferenceImpl> - implements _$$EditTextPreferenceImplCopyWith<$Res> { - __$$EditTextPreferenceImplCopyWithImpl(_$EditTextPreferenceImpl _value, - $Res Function(_$EditTextPreferenceImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? key = freezed, - Object? title = freezed, - Object? summary = freezed, - Object? defaultValue = freezed, - Object? currentValue = freezed, - Object? defaultValueType = freezed, - Object? dialogTitle = freezed, - Object? dialogMessage = freezed, - Object? text = freezed, - }) { - return _then(_$EditTextPreferenceImpl( - key: freezed == key - ? _value.key - : key // ignore: cast_nullable_to_non_nullable - as String?, - title: freezed == title - ? _value.title - : title // ignore: cast_nullable_to_non_nullable - as String?, - summary: freezed == summary - ? _value.summary - : summary // ignore: cast_nullable_to_non_nullable - as String?, - defaultValue: freezed == defaultValue - ? _value.defaultValue - : defaultValue // ignore: cast_nullable_to_non_nullable - as String?, - currentValue: freezed == currentValue - ? _value.currentValue - : currentValue // ignore: cast_nullable_to_non_nullable - as String?, - defaultValueType: freezed == defaultValueType - ? _value.defaultValueType - : defaultValueType // ignore: cast_nullable_to_non_nullable - as String?, - dialogTitle: freezed == dialogTitle - ? _value.dialogTitle - : dialogTitle // ignore: cast_nullable_to_non_nullable - as String?, - dialogMessage: freezed == dialogMessage - ? _value.dialogMessage - : dialogMessage // ignore: cast_nullable_to_non_nullable - as String?, - text: freezed == text - ? _value.text - : text // ignore: cast_nullable_to_non_nullable - as String?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$EditTextPreferenceImpl implements EditTextPreference { - const _$EditTextPreferenceImpl( - {this.key, - this.title, - this.summary, - this.defaultValue, - this.currentValue, - this.defaultValueType, - this.dialogTitle, - this.dialogMessage, - this.text, - final String? $type}) - : $type = $type ?? 'EditTextPreference'; - - factory _$EditTextPreferenceImpl.fromJson(Map json) => - _$$EditTextPreferenceImplFromJson(json); - - @override - final String? key; - @override - final String? title; - @override - final String? summary; - @override - final String? defaultValue; - @override - final String? currentValue; - @override - final String? defaultValueType; - @override - final String? dialogTitle; - @override - final String? dialogMessage; - @override - final String? text; - - @JsonKey(name: 'type') - final String $type; - - @override - String toString() { - return 'SourcePreferenceProp.editTextPreference(key: $key, title: $title, summary: $summary, defaultValue: $defaultValue, currentValue: $currentValue, defaultValueType: $defaultValueType, dialogTitle: $dialogTitle, dialogMessage: $dialogMessage, text: $text)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$EditTextPreferenceImpl && - (identical(other.key, key) || other.key == key) && - (identical(other.title, title) || other.title == title) && - (identical(other.summary, summary) || other.summary == summary) && - (identical(other.defaultValue, defaultValue) || - other.defaultValue == defaultValue) && - (identical(other.currentValue, currentValue) || - other.currentValue == currentValue) && - (identical(other.defaultValueType, defaultValueType) || - other.defaultValueType == defaultValueType) && - (identical(other.dialogTitle, dialogTitle) || - other.dialogTitle == dialogTitle) && - (identical(other.dialogMessage, dialogMessage) || - other.dialogMessage == dialogMessage) && - (identical(other.text, text) || other.text == text)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, - key, - title, - summary, - defaultValue, - currentValue, - defaultValueType, - dialogTitle, - dialogMessage, - text); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$EditTextPreferenceImplCopyWith<_$EditTextPreferenceImpl> get copyWith => - __$$EditTextPreferenceImplCopyWithImpl<_$EditTextPreferenceImpl>( - this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(String? key, dynamic currentValue) fallback, - required TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType) - checkBoxPreference, - required TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType) - switchPreferenceCompat, - required TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries) - listPreference, - required TResult Function( - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries) - multiSelectListPreference, - required TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text) - editTextPreference, - }) { - return editTextPreference(key, title, summary, defaultValue, currentValue, - defaultValueType, dialogTitle, dialogMessage, text); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(String? key, dynamic currentValue)? fallback, - TResult? Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - checkBoxPreference, - TResult? Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - switchPreferenceCompat, - TResult? Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries)? - listPreference, - TResult? Function( - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries)? - multiSelectListPreference, - TResult? Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text)? - editTextPreference, - }) { - return editTextPreference?.call(key, title, summary, defaultValue, - currentValue, defaultValueType, dialogTitle, dialogMessage, text); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(String? key, dynamic currentValue)? fallback, - TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - checkBoxPreference, - TResult Function(String? key, String? title, String? summary, - bool? defaultValue, bool? currentValue, String? defaultValueType)? - switchPreferenceCompat, - TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - Map? entries)? - listPreference, - TResult Function( - String? key, - String? title, - String? summary, - List? defaultValue, - List? currentValue, - String? defaultValueType, - Map? entries)? - multiSelectListPreference, - TResult Function( - String? key, - String? title, - String? summary, - String? defaultValue, - String? currentValue, - String? defaultValueType, - String? dialogTitle, - String? dialogMessage, - String? text)? - editTextPreference, - required TResult orElse(), - }) { - if (editTextPreference != null) { - return editTextPreference(key, title, summary, defaultValue, currentValue, - defaultValueType, dialogTitle, dialogMessage, text); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(Fallback value) fallback, - required TResult Function(CheckBoxPreference value) checkBoxPreference, - required TResult Function(SwitchPreferenceCompat value) - switchPreferenceCompat, - required TResult Function(ListPreference value) listPreference, - required TResult Function(MultiSelectListPreference value) - multiSelectListPreference, - required TResult Function(EditTextPreference value) editTextPreference, - }) { - return editTextPreference(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(Fallback value)? fallback, - TResult? Function(CheckBoxPreference value)? checkBoxPreference, - TResult? Function(SwitchPreferenceCompat value)? switchPreferenceCompat, - TResult? Function(ListPreference value)? listPreference, - TResult? Function(MultiSelectListPreference value)? - multiSelectListPreference, - TResult? Function(EditTextPreference value)? editTextPreference, - }) { - return editTextPreference?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(Fallback value)? fallback, - TResult Function(CheckBoxPreference value)? checkBoxPreference, - TResult Function(SwitchPreferenceCompat value)? switchPreferenceCompat, - TResult Function(ListPreference value)? listPreference, - TResult Function(MultiSelectListPreference value)? - multiSelectListPreference, - TResult Function(EditTextPreference value)? editTextPreference, - required TResult orElse(), - }) { - if (editTextPreference != null) { - return editTextPreference(this); - } - return orElse(); - } - - @override - Map toJson() { - return _$$EditTextPreferenceImplToJson( - this, - ); - } -} - -abstract class EditTextPreference implements SourcePreferenceProp { - const factory EditTextPreference( - {final String? key, - final String? title, - final String? summary, - final String? defaultValue, - final String? currentValue, - final String? defaultValueType, - final String? dialogTitle, - final String? dialogMessage, - final String? text}) = _$EditTextPreferenceImpl; - - factory EditTextPreference.fromJson(Map json) = - _$EditTextPreferenceImpl.fromJson; - - @override - String? get key; - String? get title; - String? get summary; - String? get defaultValue; - @override - String? get currentValue; - String? get defaultValueType; - String? get dialogTitle; - String? get dialogMessage; - String? get text; - @override - @JsonKey(ignore: true) - _$$EditTextPreferenceImplCopyWith<_$EditTextPreferenceImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/src/features/browse_center/domain/source_preference_prop/source_preference_prop.g.dart b/lib/src/features/browse_center/domain/source_preference_prop/source_preference_prop.g.dart deleted file mode 100644 index 57edc9f8..00000000 --- a/lib/src/features/browse_center/domain/source_preference_prop/source_preference_prop.g.dart +++ /dev/null @@ -1,158 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'source_preference_prop.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$FallbackImpl _$$FallbackImplFromJson(Map json) => - _$FallbackImpl( - key: json['key'] as String?, - currentValue: json['currentValue'], - $type: json['type'] as String?, - ); - -Map _$$FallbackImplToJson(_$FallbackImpl instance) => - { - 'key': instance.key, - 'currentValue': instance.currentValue, - 'type': instance.$type, - }; - -_$CheckBoxPreferenceImpl _$$CheckBoxPreferenceImplFromJson( - Map json) => - _$CheckBoxPreferenceImpl( - key: json['key'] as String?, - title: json['title'] as String?, - summary: json['summary'] as String?, - defaultValue: json['defaultValue'] as bool?, - currentValue: json['currentValue'] as bool?, - defaultValueType: json['defaultValueType'] as String?, - $type: json['type'] as String?, - ); - -Map _$$CheckBoxPreferenceImplToJson( - _$CheckBoxPreferenceImpl instance) => - { - 'key': instance.key, - 'title': instance.title, - 'summary': instance.summary, - 'defaultValue': instance.defaultValue, - 'currentValue': instance.currentValue, - 'defaultValueType': instance.defaultValueType, - 'type': instance.$type, - }; - -_$SwitchPreferenceCompatImpl _$$SwitchPreferenceCompatImplFromJson( - Map json) => - _$SwitchPreferenceCompatImpl( - key: json['key'] as String?, - title: json['title'] as String?, - summary: json['summary'] as String?, - defaultValue: json['defaultValue'] as bool?, - currentValue: json['currentValue'] as bool?, - defaultValueType: json['defaultValueType'] as String?, - $type: json['type'] as String?, - ); - -Map _$$SwitchPreferenceCompatImplToJson( - _$SwitchPreferenceCompatImpl instance) => - { - 'key': instance.key, - 'title': instance.title, - 'summary': instance.summary, - 'defaultValue': instance.defaultValue, - 'currentValue': instance.currentValue, - 'defaultValueType': instance.defaultValueType, - 'type': instance.$type, - }; - -_$ListPreferenceImpl _$$ListPreferenceImplFromJson(Map json) => - _$ListPreferenceImpl( - key: json['key'] as String?, - title: json['title'] as String?, - summary: json['summary'] as String?, - defaultValue: json['defaultValue'] as String?, - currentValue: json['currentValue'] as String?, - defaultValueType: json['defaultValueType'] as String?, - entries: (json['entries'] as Map?)?.map( - (k, e) => MapEntry(k, e as String), - ), - $type: json['type'] as String?, - ); - -Map _$$ListPreferenceImplToJson( - _$ListPreferenceImpl instance) => - { - 'key': instance.key, - 'title': instance.title, - 'summary': instance.summary, - 'defaultValue': instance.defaultValue, - 'currentValue': instance.currentValue, - 'defaultValueType': instance.defaultValueType, - 'entries': instance.entries, - 'type': instance.$type, - }; - -_$MultiSelectListPreferenceImpl _$$MultiSelectListPreferenceImplFromJson( - Map json) => - _$MultiSelectListPreferenceImpl( - key: json['key'] as String?, - title: json['title'] as String?, - summary: json['summary'] as String?, - defaultValue: (json['defaultValue'] as List?) - ?.map((e) => e as String) - .toList(), - currentValue: (json['currentValue'] as List?) - ?.map((e) => e as String) - .toList(), - defaultValueType: json['defaultValueType'] as String?, - entries: (json['entries'] as Map?)?.map( - (k, e) => MapEntry(k, e as String), - ), - $type: json['type'] as String?, - ); - -Map _$$MultiSelectListPreferenceImplToJson( - _$MultiSelectListPreferenceImpl instance) => - { - 'key': instance.key, - 'title': instance.title, - 'summary': instance.summary, - 'defaultValue': instance.defaultValue, - 'currentValue': instance.currentValue, - 'defaultValueType': instance.defaultValueType, - 'entries': instance.entries, - 'type': instance.$type, - }; - -_$EditTextPreferenceImpl _$$EditTextPreferenceImplFromJson( - Map json) => - _$EditTextPreferenceImpl( - key: json['key'] as String?, - title: json['title'] as String?, - summary: json['summary'] as String?, - defaultValue: json['defaultValue'] as String?, - currentValue: json['currentValue'] as String?, - defaultValueType: json['defaultValueType'] as String?, - dialogTitle: json['dialogTitle'] as String?, - dialogMessage: json['dialogMessage'] as String?, - text: json['text'] as String?, - $type: json['type'] as String?, - ); - -Map _$$EditTextPreferenceImplToJson( - _$EditTextPreferenceImpl instance) => - { - 'key': instance.key, - 'title': instance.title, - 'summary': instance.summary, - 'defaultValue': instance.defaultValue, - 'currentValue': instance.currentValue, - 'defaultValueType': instance.defaultValueType, - 'dialogTitle': instance.dialogTitle, - 'dialogMessage': instance.dialogMessage, - 'text': instance.text, - 'type': instance.$type, - }; diff --git a/lib/src/features/browse_center/presentation/browse/browse_screen.dart b/lib/src/features/browse_center/presentation/browse/browse_screen.dart deleted file mode 100644 index 596c01e5..00000000 --- a/lib/src/features/browse_center/presentation/browse/browse_screen.dart +++ /dev/null @@ -1,106 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../constants/app_sizes.dart'; -import '../../../../routes/router_config.dart'; -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../widgets/search_field.dart'; -import '../extension/controller/extension_controller.dart'; -import '../extension/extension_screen.dart'; -import '../extension/widgets/extension_language_filter_dialog.dart'; -import '../extension/widgets/install_extension_file.dart'; -import '../source/source_screen.dart'; -import '../source/widgets/source_language_filter.dart'; - -class BrowseScreen extends HookConsumerWidget { - const BrowseScreen({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - final tabController = useTabController(initialLength: 2); - useListenable(tabController); - final key = useMemoized(() => GlobalKey()); - final showSearch = useState(false); - return Scaffold( - appBar: AppBar( - title: Text(context.l10n!.browse), - centerTitle: true, - actions: [ - IconButton( - onPressed: () => showSearch.value = (true), - icon: Icon( - tabController.index == 0 - ? Icons.travel_explore_rounded - : Icons.search_rounded, - ), - ), - if (tabController.index == 1) ...[ - const InstallExtensionFile(), - ], - IconButton( - onPressed: () => showDialog( - context: context, - builder: (context) => tabController.index == 0 - ? const SourceLanguageFilter() - : const ExtensionLanguageFilterDialog(), - ), - icon: const Icon(Icons.translate_rounded), - ), - ], - bottom: PreferredSize( - preferredSize: kCalculateAppBarBottomSize([true, showSearch.value]), - child: Column( - children: [ - TabBar( - dividerColor: Colors.transparent, - isScrollable: context.isTablet, - controller: tabController, - tabs: [ - Tab(text: context.l10n!.sources), - Tab(text: context.l10n!.extensions), - ], - ), - if (showSearch.value) - Align( - alignment: Alignment.centerRight, - child: tabController.index == 0 - ? SearchField( - key: const ValueKey(0), - onSubmitted: (value) { - if (value.isNotBlank) { - GlobalSearchRoute(query: value).push(context); - } - }, - onClose: () => showSearch.value = (false), - ) - : SearchField( - key: const ValueKey(1), - initialText: ref.read(extensionQueryProvider), - onChanged: (val) => ref - .read(extensionQueryProvider.notifier) - .update(val), - onClose: () => showSearch.value = (false), - ), - ), - ], - ), - ), - ), - body: TabBarView( - key: key, - controller: tabController, - children: const [ - SourceScreen(), - ExtensionScreen(), - ], - ), - ); - } -} diff --git a/lib/src/features/browse_center/presentation/extension/controller/extension_controller.dart b/lib/src/features/browse_center/presentation/extension/controller/extension_controller.dart deleted file mode 100644 index 0ad37af5..00000000 --- a/lib/src/features/browse_center/presentation/extension/controller/extension_controller.dart +++ /dev/null @@ -1,114 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:dio/dio.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../constants/db_keys.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../utils/mixin/shared_preferences_client_mixin.dart'; -import '../../../../../utils/mixin/state_provider_mixin.dart'; -import '../../../../settings/presentation/browse/widgets/show_nsfw_switch/show_nsfw_switch.dart'; -import '../../../data/extension_repository/extension_repository.dart'; -import '../../../domain/extension/extension_model.dart'; - -part 'extension_controller.g.dart'; - -@riverpod -Future?> extension(ExtensionRef ref) async { - final token = CancelToken(); - ref.onDispose(token.cancel); - final result = await ref - .watch(extensionRepositoryProvider) - .getExtensionList(cancelToken: token); - ref.keepAlive(); - return result; -} - -@riverpod -AsyncValue>> extensionMap(ExtensionMapRef ref) { - final extensionMap = >{}; - final extensionListData = ref.watch(extensionProvider); - final extensionList = [...?extensionListData.valueOrNull]; - final showNsfw = ref.watch(showNSFWProvider).ifNull(true); - for (final e in extensionList) { - if (!showNsfw && (e.isNsfw.ifNull())) continue; - if (e.installed.ifNull()) { - if (e.hasUpdate.ifNull()) { - extensionMap.update( - "update", - (value) => [...value, e], - ifAbsent: () => [e], - ); - } else { - extensionMap.update( - "installed", - (value) => [...value, e], - ifAbsent: () => [e], - ); - } - } else { - extensionMap.update( - e.lang?.code?.toLowerCase() ?? "other", - (value) => [...value, e], - ifAbsent: () => [e], - ); - } - } - return extensionListData.copyWithData((p0) => extensionMap); -} - -@riverpod -List extensionFilterLangList(ExtensionFilterLangListRef ref) { - final extensionMap = {...?ref.watch(extensionMapProvider).valueOrNull}; - extensionMap.remove("installed"); - extensionMap.remove("update"); - return [...extensionMap.keys]..sort(); -} - -@riverpod -class ExtensionLanguageFilter extends _$ExtensionLanguageFilter - with SharedPreferenceClientMixin> { - @override - List? build() => initialize(DBKeys.extensionLanguageFilter); -} - -@riverpod -AsyncValue>> extensionMapFiltered( - ExtensionMapFilteredRef ref) { - final extensionMapFiltered = >{}; - final extensionMapData = ref.watch(extensionMapProvider); - final extensionMap = {...?extensionMapData.valueOrNull}; - final enabledLangList = [...?ref.watch(extensionLanguageFilterProvider)]; - for (final e in enabledLangList) { - if (extensionMap.containsKey(e)) extensionMapFiltered[e] = extensionMap[e]!; - } - return extensionMapData.copyWithData((p0) => extensionMapFiltered); -} - -@riverpod -AsyncValue>> extensionMapFilteredAndQueried( - ExtensionMapFilteredAndQueriedRef ref, -) { - final extensionMapData = ref.watch(extensionMapFilteredProvider); - final extensionMap = {...?extensionMapData.valueOrNull}; - final query = ref.watch(extensionQueryProvider); - if (query.isBlank) return extensionMapData; - return extensionMapData.copyWithData( - (e) => extensionMap.map>( - (key, value) => MapEntry( - key, - value.where((element) => element.name.query(query)).toList(), - ), - ), - ); -} - -@riverpod -class ExtensionQuery extends _$ExtensionQuery with StateProviderMixin { - @override - String? build() => null; -} diff --git a/lib/src/features/browse_center/presentation/extension/controller/extension_controller.g.dart b/lib/src/features/browse_center/presentation/extension/controller/extension_controller.g.dart deleted file mode 100644 index 9d1ca6bf..00000000 --- a/lib/src/features/browse_center/presentation/extension/controller/extension_controller.g.dart +++ /dev/null @@ -1,126 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'extension_controller.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$extensionHash() => r'7f4a60c97e38a62db718b504d572bd031b5b845d'; - -/// See also [extension]. -@ProviderFor(extension) -final extensionProvider = AutoDisposeFutureProvider?>.internal( - extension, - name: r'extensionProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$extensionHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef ExtensionRef = AutoDisposeFutureProviderRef?>; -String _$extensionMapHash() => r'868e56067ad0639e41874adcffa4e97c49617f6c'; - -/// See also [extensionMap]. -@ProviderFor(extensionMap) -final extensionMapProvider = - AutoDisposeProvider>>>.internal( - extensionMap, - name: r'extensionMapProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$extensionMapHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef ExtensionMapRef - = AutoDisposeProviderRef>>>; -String _$extensionFilterLangListHash() => - r'9b321188e52c96aa6f900d0bd671217e19d36832'; - -/// See also [extensionFilterLangList]. -@ProviderFor(extensionFilterLangList) -final extensionFilterLangListProvider = - AutoDisposeProvider>.internal( - extensionFilterLangList, - name: r'extensionFilterLangListProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$extensionFilterLangListHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef ExtensionFilterLangListRef = AutoDisposeProviderRef>; -String _$extensionMapFilteredHash() => - r'bcfe4ed3d11f2987273f35b672a3a27d9156fe77'; - -/// See also [extensionMapFiltered]. -@ProviderFor(extensionMapFiltered) -final extensionMapFilteredProvider = - AutoDisposeProvider>>>.internal( - extensionMapFiltered, - name: r'extensionMapFilteredProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$extensionMapFilteredHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef ExtensionMapFilteredRef - = AutoDisposeProviderRef>>>; -String _$extensionMapFilteredAndQueriedHash() => - r'211f3d7c994d5a1c7d9f4b1aba3437162cc69521'; - -/// See also [extensionMapFilteredAndQueried]. -@ProviderFor(extensionMapFilteredAndQueried) -final extensionMapFilteredAndQueriedProvider = - AutoDisposeProvider>>>.internal( - extensionMapFilteredAndQueried, - name: r'extensionMapFilteredAndQueriedProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$extensionMapFilteredAndQueriedHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef ExtensionMapFilteredAndQueriedRef - = AutoDisposeProviderRef>>>; -String _$extensionLanguageFilterHash() => - r'6a687d8f842a353a9d5ed7f4333f99b8557a2e0c'; - -/// See also [ExtensionLanguageFilter]. -@ProviderFor(ExtensionLanguageFilter) -final extensionLanguageFilterProvider = AutoDisposeNotifierProvider< - ExtensionLanguageFilter, List?>.internal( - ExtensionLanguageFilter.new, - name: r'extensionLanguageFilterProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$extensionLanguageFilterHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$ExtensionLanguageFilter = AutoDisposeNotifier?>; -String _$extensionQueryHash() => r'342455d95d1f785523fc35799015958a9be4c3e4'; - -/// See also [ExtensionQuery]. -@ProviderFor(ExtensionQuery) -final extensionQueryProvider = - AutoDisposeNotifierProvider.internal( - ExtensionQuery.new, - name: r'extensionQueryProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$extensionQueryHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$ExtensionQuery = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/browse_center/presentation/extension/extension_screen.dart b/lib/src/features/browse_center/presentation/extension/extension_screen.dart deleted file mode 100644 index e0a3c7cd..00000000 --- a/lib/src/features/browse_center/presentation/extension/extension_screen.dart +++ /dev/null @@ -1,125 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../constants/language_list.dart'; -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/misc/toast/toast.dart'; -import '../../../../widgets/emoticons.dart'; -import '../../domain/extension/extension_model.dart'; -import 'controller/extension_controller.dart'; -import 'widgets/extension_list_tile.dart'; - -class ExtensionScreen extends HookConsumerWidget { - const ExtensionScreen({super.key}); - - List extensionSet({ - Key? key, - required String title, - required List? extensions, - required AsyncCallback refresh, - }) { - if (extensions.isBlank) return []; - return [ - SliverToBoxAdapter( - child: ListTile( - title: Text(title), - ), - ), - SliverList( - key: key, - delegate: SliverChildBuilderDelegate( - (context, index) => ExtensionListTile( - key: ValueKey(extensions[index].pkgName), - extension: extensions[index], - refresh: refresh, - ), - childCount: extensions!.length, - ), - ), - ]; - } - - @override - Widget build(BuildContext context, WidgetRef ref) { - final extensionMapData = ref.watch(extensionMapFilteredAndQueriedProvider); - - final extensionMap = {...?extensionMapData.valueOrNull}; - final installed = extensionMap.remove("installed"); - final update = extensionMap.remove("update"); - final all = extensionMap.remove("all"); - - refresh() => ref.refresh(extensionProvider.future); - - useEffect(() { - if (extensionMapData.isNotLoading) refresh(); - return; - }, []); - - useEffect(() { - extensionMapData.showToastOnError( - ref.read(toastProvider(context)), - withMicrotask: true, - ); - return; - }, [extensionMapData.valueOrNull]); - - return extensionMapData.showUiWhenData( - context, - (data) => (extensionMap.isEmpty && - installed.isBlank && - update.isBlank && - all.isBlank) - ? Emoticons( - text: context.l10n!.extensionListEmpty, - button: TextButton( - onPressed: refresh, - child: Text(context.l10n!.refresh), - ), - ) - : RefreshIndicator( - onRefresh: () => ref.refresh(extensionProvider.future), - child: CustomScrollView( - slivers: [ - if (update.isNotBlank) - ...extensionSet( - key: const ValueKey("update"), - title: languageMap["update"]?.displayName ?? "", - extensions: update, - refresh: refresh, - ), - if (installed.isNotBlank) - ...extensionSet( - key: const ValueKey("installed"), - title: languageMap["installed"]?.displayName ?? "", - extensions: installed, - refresh: refresh, - ), - if (all.isNotBlank) - ...extensionSet( - key: const ValueKey("all"), - title: languageMap["all"]?.displayName ?? "", - extensions: all, - refresh: refresh, - ), - for (final k in extensionMap.keys) - ...extensionSet( - key: ValueKey(k), - title: languageMap[k]?.displayName ?? k, - extensions: extensionMap[k], - refresh: refresh, - ), - ], - ), - ), - refresh: refresh, - ); - } -} diff --git a/lib/src/features/browse_center/presentation/extension/widgets/extension_language_filter_dialog.dart b/lib/src/features/browse_center/presentation/extension/widgets/extension_language_filter_dialog.dart deleted file mode 100644 index b5aa2f4c..00000000 --- a/lib/src/features/browse_center/presentation/extension/widgets/extension_language_filter_dialog.dart +++ /dev/null @@ -1,67 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../constants/language_list.dart'; - -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/pop_button.dart'; -import '../../../domain/language/language_model.dart'; -import '../controller/extension_controller.dart'; - -class ExtensionLanguageFilterDialog extends ConsumerWidget { - const ExtensionLanguageFilterDialog({super.key}); - @override - Widget build(BuildContext context, WidgetRef ref) { - final languageCodes = ref.watch(extensionFilterLangListProvider); - final enabledLanguages = ref.watch(extensionLanguageFilterProvider); - return AlertDialog( - title: Text(context.l10n!.languages), - content: SizedBox( - height: context.heightScale(scale: .5), - width: context.widthScale(scale: context.isSmallTablet ? .5 : .8), - child: ListView.builder( - itemCount: languageCodes.length, - itemBuilder: (context, index) { - final String languageCode = languageCodes[index].toLowerCase(); - final Language? language = languageMap[languageCode]; - final enabledLanguagesIndex = - enabledLanguages?.indexOf(languageCode); - return SwitchListTile( - key: Key(languageCode), - value: enabledLanguagesIndex != -1, - onChanged: (value) { - if (value) { - ref.read(extensionLanguageFilterProvider.notifier).update( - {...?enabledLanguages, languageCode}.toList(), - ); - } else { - if (!((enabledLanguagesIndex?.isNegative).ifNull(true))) { - final updatedEnabledLanguages = [...?enabledLanguages] - ..remove(languageCode); - ref - .read(extensionLanguageFilterProvider.notifier) - .update(updatedEnabledLanguages); - } - } - }, - title: Text( - language?.nativeName ?? language?.name ?? languageCode, - ), - subtitle: (language?.name).isNotBlank && - language?.nativeName != language?.name - ? Text(language!.name!) - : null, - ); - }, - ), - ), - actions: [PopButton(popText: context.l10n!.close)], - ); - } -} diff --git a/lib/src/features/browse_center/presentation/extension/widgets/extension_list_tile.dart b/lib/src/features/browse_center/presentation/extension/widgets/extension_list_tile.dart deleted file mode 100644 index d6ba02d2..00000000 --- a/lib/src/features/browse_center/presentation/extension/widgets/extension_list_tile.dart +++ /dev/null @@ -1,196 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../constants/app_sizes.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../utils/misc/toast/toast.dart'; -import '../../../../../widgets/server_image.dart'; -import '../../../data/extension_repository/extension_repository.dart'; -import '../../../domain/extension/extension_model.dart'; -import '../../source/controller/source_controller.dart'; - -class ExtensionListTile extends HookConsumerWidget { - const ExtensionListTile({ - super.key, - required this.extension, - required this.refresh, - }); - - final Extension extension; - final AsyncCallback refresh; - - @override - Widget build(BuildContext context, WidgetRef ref) { - final repository = ref.watch(extensionRepositoryProvider); - final isLoading = useState(false); - return ListTile( - key: key, - leading: ClipRRect( - borderRadius: KBorderRadius.r8.radius, - child: ServerImageWithCpi( - url: extension.iconUrl ?? "", - outerSize: const Size.square(48), - innerSize: const Size.square(24), - isLoading: isLoading.value, - ), - ), - title: Text( - extension.name ?? "", - overflow: TextOverflow.ellipsis, - ), - subtitle: Text.rich( - TextSpan( - text: (extension.lang) != null - ? "${extension.lang?.displayName} " - : null, - style: const TextStyle(fontWeight: FontWeight.bold), - children: [ - if (extension.versionName.isNotBlank) - TextSpan( - text: "${extension.versionName ?? ""} ", - style: const TextStyle(fontWeight: FontWeight.normal), - ), - if (extension.isNsfw.ifNull()) - TextSpan( - text: context.l10n!.nsfw18, - style: const TextStyle( - fontWeight: FontWeight.w400, - color: Colors.redAccent, - ), - ), - ], - ), - ), - trailing: ExtensionListTileTailing( - extension: extension, - repository: repository, - isLoading: isLoading, - ref: ref, - refresh: refresh, - ), - ); - } -} - -class ExtensionListTileTailing extends StatelessWidget { - const ExtensionListTileTailing({ - super.key, - required this.extension, - required this.repository, - required this.isLoading, - required this.ref, - required this.refresh, - }); - - final Extension extension; - final ExtensionRepository repository; - final ValueNotifier isLoading; - final WidgetRef ref; - final AsyncCallback refresh; - - @override - Widget build(BuildContext context) { - if (extension.obsolete.ifNull()) { - return OutlinedButton( - onPressed: extension.installed.ifNull() - ? () => repository.uninstallExtension(extension.pkgName!) - : null, - child: Text( - context.l10n!.obsolete, - style: const TextStyle(color: Colors.redAccent), - ), - ); - } else { - if (extension.installed.ifNull()) { - return TextButton( - onPressed: (!isLoading.value) - ? () async { - try { - isLoading.value = (true); - final result = (await AsyncValue.guard( - () async { - if (extension.pkgName.isBlank) { - throw context.l10n!.errorExtension; - } - if (extension.hasUpdate.ifNull()) { - await repository.updateExtension(extension.pkgName!); - } else { - await repository - .uninstallExtension(extension.pkgName!); - } - - await refresh(); - }, - )); - if (context.mounted) { - result.showToastOnError(ref.read(toastProvider(context))); - } - isLoading.value = (false); - } catch (e) { - // - } - } - : null, - child: Text( - extension.hasUpdate.ifNull() - ? isLoading.value - ? context.l10n!.updating - : context.l10n!.update - : isLoading.value - ? context.l10n!.uninstalling - : context.l10n!.uninstall, - ), - ); - } else { - return TextButton( - onPressed: !isLoading.value - ? () async { - try { - isLoading.value = (true); - final result = await AsyncValue.guard(() async { - if (extension.pkgName.isBlank) { - throw context.l10n!.errorExtension; - } - await repository.installExtension(extension.pkgName!); - if ((extension.lang?.code).isNotBlank) { - final code = extension.lang!.code!; - final enabledLanguages = - ref.read(sourceLanguageFilterProvider); - if (enabledLanguages.isNotBlank && - !enabledLanguages!.contains(code)) { - ref - .read(sourceLanguageFilterProvider.notifier) - .update( - {...enabledLanguages, code}.toList(), - ); - } - } - await refresh(); - }); - if (context.mounted) { - result.showToastOnError( - ref.read(toastProvider(context)), - ); - } - isLoading.value = (false); - } catch (e) { - // - } - } - : null, - child: Text( - isLoading.value ? context.l10n!.installing : context.l10n!.install, - ), - ); - } - } - } -} diff --git a/lib/src/features/browse_center/presentation/extension/widgets/install_extension_file.dart b/lib/src/features/browse_center/presentation/extension/widgets/install_extension_file.dart deleted file mode 100644 index 37be67f5..00000000 --- a/lib/src/features/browse_center/presentation/extension/widgets/install_extension_file.dart +++ /dev/null @@ -1,50 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:file_picker/file_picker.dart'; -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../utils/misc/toast/toast.dart'; -import '../../../data/extension_repository/extension_repository.dart'; -import '../controller/extension_controller.dart'; - -class InstallExtensionFile extends ConsumerWidget { - const InstallExtensionFile({super.key}); - - void extensionFilePicker(WidgetRef ref, BuildContext context) async { - final toast = ref.read(toastProvider(context)); - final file = await FilePicker.platform.pickFiles( - type: FileType.custom, - allowedExtensions: ['apk'], - ); - if ((file?.files).isNotBlank) { - if (context.mounted) { - toast.show(context.l10n!.installingExtension); - } - } - AsyncValue.guard(() => ref - .read(extensionRepositoryProvider) - .installExtensionFile(context, file: file?.files.single)).then( - (result) => result.whenOrNull( - error: (error, stackTrace) => result.showToastOnError(toast), - data: (data) { - ref.invalidate(extensionProvider); - toast.instantShow(context.l10n!.extensionInstalled); - }, - ), - ); - } - - @override - Widget build(BuildContext context, WidgetRef ref) { - return IconButton( - icon: const Icon(Icons.add_rounded), - onPressed: () => extensionFilePicker(ref, context), - ); - } -} diff --git a/lib/src/features/browse_center/presentation/global_search/controller/source_quick_search_controller.dart b/lib/src/features/browse_center/presentation/global_search/controller/source_quick_search_controller.dart deleted file mode 100644 index cfebd0e4..00000000 --- a/lib/src/features/browse_center/presentation/global_search/controller/source_quick_search_controller.dart +++ /dev/null @@ -1,63 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../constants/enum.dart'; -import '../../../../../global_providers/global_providers.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../manga_book/domain/manga/manga_model.dart'; -import '../../../data/source_repository/source_repository.dart'; -import '../../../domain/source/source_model.dart'; -import '../../source/controller/source_controller.dart'; - -part 'source_quick_search_controller.g.dart'; - -typedef QuickSearchResults = ({ - Source source, - AsyncValue> mangaList -}); - -@riverpod -Future> sourceQuickSearchMangaList( - SourceQuickSearchMangaListRef ref, - String sourceId, { - String? query, -}) async { - final rateLimiterQueue = ref.watch(rateLimitQueueProvider(query)); - final mangaPage = await rateLimiterQueue - .add(() => ref.watch(sourceRepositoryProvider).getMangaList( - pageNum: 1, - sourceId: sourceId, - sourceType: SourceType.filter, - query: query, - )); - return [...?(mangaPage?.mangaList)]; -} - -@riverpod -AsyncValue> quickSearchResults( - QuickSearchResultsRef ref, - {String? query}) { - final sourceMapData = ref.watch(sourceMapFilteredProvider); - - final sourceMap = {...?sourceMapData.valueOrNull}..remove("lastUsed"); - final sourceList = sourceMap.values.fold( - [], - (prev, cur) => [...prev, ...cur], - ); - final List sourceMangaListPairList = []; - for (Source source in sourceList) { - if (source.id.isNotBlank) { - final mangaList = ref.watch( - sourceQuickSearchMangaListProvider(source.id!, query: query), - ); - sourceMangaListPairList.add((mangaList: mangaList, source: source)); - } - } - - return sourceMapData.copyWithData((_) => sourceMangaListPairList); -} diff --git a/lib/src/features/browse_center/presentation/global_search/controller/source_quick_search_controller.g.dart b/lib/src/features/browse_center/presentation/global_search/controller/source_quick_search_controller.g.dart deleted file mode 100644 index 9b60cb31..00000000 --- a/lib/src/features/browse_center/presentation/global_search/controller/source_quick_search_controller.g.dart +++ /dev/null @@ -1,317 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'source_quick_search_controller.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$sourceQuickSearchMangaListHash() => - r'5bdff0092cc32d1ced8fa590a4146cfdba0d108f'; - -/// Copied from Dart SDK -class _SystemHash { - _SystemHash._(); - - static int combine(int hash, int value) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + value); - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x0007ffff & hash) << 10)); - return hash ^ (hash >> 6); - } - - static int finish(int hash) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x03ffffff & hash) << 3)); - // ignore: parameter_assignments - hash = hash ^ (hash >> 11); - return 0x1fffffff & (hash + ((0x00003fff & hash) << 15)); - } -} - -/// See also [sourceQuickSearchMangaList]. -@ProviderFor(sourceQuickSearchMangaList) -const sourceQuickSearchMangaListProvider = SourceQuickSearchMangaListFamily(); - -/// See also [sourceQuickSearchMangaList]. -class SourceQuickSearchMangaListFamily extends Family>> { - /// See also [sourceQuickSearchMangaList]. - const SourceQuickSearchMangaListFamily(); - - /// See also [sourceQuickSearchMangaList]. - SourceQuickSearchMangaListProvider call( - String sourceId, { - String? query, - }) { - return SourceQuickSearchMangaListProvider( - sourceId, - query: query, - ); - } - - @override - SourceQuickSearchMangaListProvider getProviderOverride( - covariant SourceQuickSearchMangaListProvider provider, - ) { - return call( - provider.sourceId, - query: provider.query, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'sourceQuickSearchMangaListProvider'; -} - -/// See also [sourceQuickSearchMangaList]. -class SourceQuickSearchMangaListProvider - extends AutoDisposeFutureProvider> { - /// See also [sourceQuickSearchMangaList]. - SourceQuickSearchMangaListProvider( - String sourceId, { - String? query, - }) : this._internal( - (ref) => sourceQuickSearchMangaList( - ref as SourceQuickSearchMangaListRef, - sourceId, - query: query, - ), - from: sourceQuickSearchMangaListProvider, - name: r'sourceQuickSearchMangaListProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$sourceQuickSearchMangaListHash, - dependencies: SourceQuickSearchMangaListFamily._dependencies, - allTransitiveDependencies: - SourceQuickSearchMangaListFamily._allTransitiveDependencies, - sourceId: sourceId, - query: query, - ); - - SourceQuickSearchMangaListProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.sourceId, - required this.query, - }) : super.internal(); - - final String sourceId; - final String? query; - - @override - Override overrideWith( - FutureOr> Function(SourceQuickSearchMangaListRef provider) - create, - ) { - return ProviderOverride( - origin: this, - override: SourceQuickSearchMangaListProvider._internal( - (ref) => create(ref as SourceQuickSearchMangaListRef), - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - sourceId: sourceId, - query: query, - ), - ); - } - - @override - AutoDisposeFutureProviderElement> createElement() { - return _SourceQuickSearchMangaListProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is SourceQuickSearchMangaListProvider && - other.sourceId == sourceId && - other.query == query; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, sourceId.hashCode); - hash = _SystemHash.combine(hash, query.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin SourceQuickSearchMangaListRef - on AutoDisposeFutureProviderRef> { - /// The parameter `sourceId` of this provider. - String get sourceId; - - /// The parameter `query` of this provider. - String? get query; -} - -class _SourceQuickSearchMangaListProviderElement - extends AutoDisposeFutureProviderElement> - with SourceQuickSearchMangaListRef { - _SourceQuickSearchMangaListProviderElement(super.provider); - - @override - String get sourceId => - (origin as SourceQuickSearchMangaListProvider).sourceId; - @override - String? get query => (origin as SourceQuickSearchMangaListProvider).query; -} - -String _$quickSearchResultsHash() => - r'95c8745e42306378a3b8981adb88d6d40679966e'; - -/// See also [quickSearchResults]. -@ProviderFor(quickSearchResults) -const quickSearchResultsProvider = QuickSearchResultsFamily(); - -/// See also [quickSearchResults]. -class QuickSearchResultsFamily - extends Family>> { - /// See also [quickSearchResults]. - const QuickSearchResultsFamily(); - - /// See also [quickSearchResults]. - QuickSearchResultsProvider call({ - String? query, - }) { - return QuickSearchResultsProvider( - query: query, - ); - } - - @override - QuickSearchResultsProvider getProviderOverride( - covariant QuickSearchResultsProvider provider, - ) { - return call( - query: provider.query, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'quickSearchResultsProvider'; -} - -/// See also [quickSearchResults]. -class QuickSearchResultsProvider - extends AutoDisposeProvider>> { - /// See also [quickSearchResults]. - QuickSearchResultsProvider({ - String? query, - }) : this._internal( - (ref) => quickSearchResults( - ref as QuickSearchResultsRef, - query: query, - ), - from: quickSearchResultsProvider, - name: r'quickSearchResultsProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$quickSearchResultsHash, - dependencies: QuickSearchResultsFamily._dependencies, - allTransitiveDependencies: - QuickSearchResultsFamily._allTransitiveDependencies, - query: query, - ); - - QuickSearchResultsProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.query, - }) : super.internal(); - - final String? query; - - @override - Override overrideWith( - AsyncValue> Function( - QuickSearchResultsRef provider) - create, - ) { - return ProviderOverride( - origin: this, - override: QuickSearchResultsProvider._internal( - (ref) => create(ref as QuickSearchResultsRef), - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - query: query, - ), - ); - } - - @override - AutoDisposeProviderElement>> - createElement() { - return _QuickSearchResultsProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is QuickSearchResultsProvider && other.query == query; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, query.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin QuickSearchResultsRef - on AutoDisposeProviderRef>> { - /// The parameter `query` of this provider. - String? get query; -} - -class _QuickSearchResultsProviderElement - extends AutoDisposeProviderElement>> - with QuickSearchResultsRef { - _QuickSearchResultsProviderElement(super.provider); - - @override - String? get query => (origin as QuickSearchResultsProvider).query; -} -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/browse_center/presentation/global_search/global_search_screen.dart b/lib/src/features/browse_center/presentation/global_search/global_search_screen.dart deleted file mode 100644 index 21fc477a..00000000 --- a/lib/src/features/browse_center/presentation/global_search/global_search_screen.dart +++ /dev/null @@ -1,72 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../constants/app_sizes.dart'; -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../widgets/emoticons.dart'; -import '../../../../widgets/search_field.dart'; -import '../source/controller/source_controller.dart'; -import 'controller/source_quick_search_controller.dart'; -import 'widgets/source_short_search.dart'; - -class GlobalSearchScreen extends HookConsumerWidget { - const GlobalSearchScreen({super.key, this.initialQuery}); - final String? initialQuery; - @override - Widget build(BuildContext context, WidgetRef ref) { - final query = useState(initialQuery); - final quickSearchResult = - ref.watch(quickSearchResultsProvider(query: query.value)); - return Scaffold( - appBar: AppBar( - title: Text(context.l10n!.globalSearch), - bottom: PreferredSize( - preferredSize: kCalculateAppBarBottomSize([true]), - child: Column( - children: [ - Align( - alignment: Alignment.centerRight, - child: SearchField( - initialText: query.value, - onSubmitted: (value) => query.value = value, - ), - ), - ], - ), - ), - ), - body: quickSearchResult.showUiWhenData( - context, - (data) => data.isBlank - ? Emoticons( - text: context.l10n!.noSourcesFound, - button: TextButton( - onPressed: () => ref.invalidate(sourceListProvider), - child: Text(context.l10n!.refresh), - ), - ) - : ListView.builder( - itemBuilder: (context, index) { - if (data[index].source.id == null) { - return const SizedBox.shrink(); - } else { - return SourceShortSearch( - source: data[index].source, - mangaList: data[index].mangaList, - query: query.value, - ); - } - }, - itemCount: data.length, - ), - ), - ); - } -} diff --git a/lib/src/features/browse_center/presentation/global_search/widgets/source_short_search.dart b/lib/src/features/browse_center/presentation/global_search/widgets/source_short_search.dart deleted file mode 100644 index 701745be..00000000 --- a/lib/src/features/browse_center/presentation/global_search/widgets/source_short_search.dart +++ /dev/null @@ -1,75 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../constants/app_sizes.dart'; -import '../../../../../constants/enum.dart'; - -import '../../../../../routes/router_config.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/manga_cover/grid/manga_cover_grid_tile.dart'; -import '../../../../manga_book/domain/manga/manga_model.dart'; -import '../../../domain/source/source_model.dart'; - -class SourceShortSearch extends StatelessWidget { - const SourceShortSearch({ - super.key, - required this.source, - required this.mangaList, - this.query, - }); - final Source source; - final AsyncValue> mangaList; - final String? query; - - @override - Widget build(BuildContext context) { - return Column( - mainAxisSize: MainAxisSize.min, - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - ListTile( - title: Text(source.displayName ?? source.name ?? ""), - trailing: const Icon(Icons.arrow_forward_rounded), - onTap: () => SourceMangaRoute( - sourceId: source.id!, - sourceType: SourceType.filter, - query: query, - ).push(context), - ), - mangaList.showUiWhenData( - context, - (data) => data.isEmpty - ? Padding( - padding: KEdgeInsets.h16v4.size, - child: Text(context.l10n!.noResultFound), - ) - : SingleChildScrollView( - scrollDirection: Axis.horizontal, - child: Row( - children: [ - for (final i in data) - SizedBox( - width: 144, - height: 192, - child: MangaCoverGridTile( - manga: i, - showDarkOverlay: i.inLibrary.ifNull(), - onPressed: i.id != null - ? () => MangaRoute(mangaId: i.id!).push(context) - : null, - ), - ), - ], - ), - ), - ), - ], - ); - } -} diff --git a/lib/src/features/browse_center/presentation/source/controller/source_controller.dart b/lib/src/features/browse_center/presentation/source/controller/source_controller.dart deleted file mode 100644 index 7bae8734..00000000 --- a/lib/src/features/browse_center/presentation/source/controller/source_controller.dart +++ /dev/null @@ -1,110 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:dio/dio.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../constants/db_keys.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../utils/mixin/shared_preferences_client_mixin.dart'; -import '../../../data/source_repository/source_repository.dart'; -import '../../../domain/source/source_model.dart'; - -part 'source_controller.g.dart'; - -@riverpod -Future?> sourceList(SourceListRef ref) async { - final token = CancelToken(); - ref.onDispose(token.cancel); - final result = await ref - .watch(sourceRepositoryProvider) - .getSourceList(cancelToken: token); - ref.keepAlive(); - return result; -} - -@riverpod -AsyncValue>> sourceMap(SourceMapRef ref) { - final sourceMap = >{}; - final sourceListData = ref.watch(sourceListProvider); - final sourceLastUsed = ref.watch(sourceLastUsedProvider); - for (final e in [...?sourceListData.valueOrNull]) { - sourceMap.update( - e.lang?.code ?? "other", - (value) => [...value, e], - ifAbsent: () => [e], - ); - if (e.id == sourceLastUsed) sourceMap["lastUsed"] = [e]; - } - return sourceListData.copyWithData((e) => sourceMap); -} - -@riverpod -class SourceFilterLangMap extends _$SourceFilterLangMap { - @override - Map build() { - final sourceMap = {...?ref.watch(sourceMapProvider).valueOrNull}; - final enabledLanguages = ref.watch(sourceLanguageFilterProvider); - sourceMap.remove("lastUsed"); - sourceMap.remove("localsourcelang"); - return Map.fromIterable( - [...sourceMap.keys], - value: (element) => (enabledLanguages?.contains(element)).ifNull(), - ); - } - - void toggleLang(String langCode, bool value) { - if (!value) { - ref.read(sourceLanguageFilterProvider.notifier).updateWithPreviousState( - (enabledLanguages) => [...?enabledLanguages]..remove(langCode)); - } else { - ref.read(sourceLanguageFilterProvider.notifier).updateWithPreviousState( - (enabledLanguages) => {...?enabledLanguages, langCode}.toList(), - ); - } - } -} - -@riverpod -AsyncValue>?> sourceMapFiltered( - SourceMapFilteredRef ref) { - final sourceMapFiltered = >{}; - final sourceMapData = ref.watch(sourceMapProvider); - final sourceMap = {...?sourceMapData.valueOrNull}; - final enabledLangList = [...?ref.watch(sourceLanguageFilterProvider)]..sort(); - for (final e in enabledLangList) { - if (sourceMap.containsKey(e)) sourceMapFiltered[e] = sourceMap[e]!; - } - return sourceMapData.copyWithData((e) => sourceMapFiltered); -} - -@riverpod -List? sourceQuery(SourceQueryRef ref, {String? query}) { - final sourceMap = {...?ref.watch(sourceMapFilteredProvider).valueOrNull} - ..remove('lastUsed'); - if (query.isNotBlank) { - return sourceMap.values - .expand((list) => list.where( - (element) => element.name.query(query), - )) - .toList(); - } - return sourceMap.values.expand((list) => list).toList(); -} - -@riverpod -class SourceLanguageFilter extends _$SourceLanguageFilter - with SharedPreferenceClientMixin> { - @override - List? build() => initialize(DBKeys.sourceLanguageFilter); -} - -@riverpod -class SourceLastUsed extends _$SourceLastUsed - with SharedPreferenceClientMixin { - @override - String? build() => initialize(DBKeys.sourceLastUsed); -} diff --git a/lib/src/features/browse_center/presentation/source/controller/source_controller.g.dart b/lib/src/features/browse_center/presentation/source/controller/source_controller.g.dart deleted file mode 100644 index 2bb86ee7..00000000 --- a/lib/src/features/browse_center/presentation/source/controller/source_controller.g.dart +++ /dev/null @@ -1,256 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'source_controller.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$sourceListHash() => r'80d37bd602ce3e229ac64c39743cee84d94fd1f9'; - -/// See also [sourceList]. -@ProviderFor(sourceList) -final sourceListProvider = AutoDisposeFutureProvider?>.internal( - sourceList, - name: r'sourceListProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$sourceListHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef SourceListRef = AutoDisposeFutureProviderRef?>; -String _$sourceMapHash() => r'13682cd8c100d4d7ef007793b2c5ab9f97bad438'; - -/// See also [sourceMap]. -@ProviderFor(sourceMap) -final sourceMapProvider = - AutoDisposeProvider>>>.internal( - sourceMap, - name: r'sourceMapProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$sourceMapHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef SourceMapRef - = AutoDisposeProviderRef>>>; -String _$sourceMapFilteredHash() => r'0154413eb0639738378258287e318c3fa3e92ecc'; - -/// See also [sourceMapFiltered]. -@ProviderFor(sourceMapFiltered) -final sourceMapFilteredProvider = - AutoDisposeProvider>?>>.internal( - sourceMapFiltered, - name: r'sourceMapFilteredProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$sourceMapFilteredHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef SourceMapFilteredRef - = AutoDisposeProviderRef>?>>; -String _$sourceQueryHash() => r'4e0ea33fcbc3640e4cc3ecbdf15c75923384ed69'; - -/// Copied from Dart SDK -class _SystemHash { - _SystemHash._(); - - static int combine(int hash, int value) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + value); - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x0007ffff & hash) << 10)); - return hash ^ (hash >> 6); - } - - static int finish(int hash) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x03ffffff & hash) << 3)); - // ignore: parameter_assignments - hash = hash ^ (hash >> 11); - return 0x1fffffff & (hash + ((0x00003fff & hash) << 15)); - } -} - -/// See also [sourceQuery]. -@ProviderFor(sourceQuery) -const sourceQueryProvider = SourceQueryFamily(); - -/// See also [sourceQuery]. -class SourceQueryFamily extends Family?> { - /// See also [sourceQuery]. - const SourceQueryFamily(); - - /// See also [sourceQuery]. - SourceQueryProvider call({ - String? query, - }) { - return SourceQueryProvider( - query: query, - ); - } - - @override - SourceQueryProvider getProviderOverride( - covariant SourceQueryProvider provider, - ) { - return call( - query: provider.query, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'sourceQueryProvider'; -} - -/// See also [sourceQuery]. -class SourceQueryProvider extends AutoDisposeProvider?> { - /// See also [sourceQuery]. - SourceQueryProvider({ - String? query, - }) : this._internal( - (ref) => sourceQuery( - ref as SourceQueryRef, - query: query, - ), - from: sourceQueryProvider, - name: r'sourceQueryProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$sourceQueryHash, - dependencies: SourceQueryFamily._dependencies, - allTransitiveDependencies: - SourceQueryFamily._allTransitiveDependencies, - query: query, - ); - - SourceQueryProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.query, - }) : super.internal(); - - final String? query; - - @override - Override overrideWith( - List? Function(SourceQueryRef provider) create, - ) { - return ProviderOverride( - origin: this, - override: SourceQueryProvider._internal( - (ref) => create(ref as SourceQueryRef), - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - query: query, - ), - ); - } - - @override - AutoDisposeProviderElement?> createElement() { - return _SourceQueryProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is SourceQueryProvider && other.query == query; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, query.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin SourceQueryRef on AutoDisposeProviderRef?> { - /// The parameter `query` of this provider. - String? get query; -} - -class _SourceQueryProviderElement - extends AutoDisposeProviderElement?> with SourceQueryRef { - _SourceQueryProviderElement(super.provider); - - @override - String? get query => (origin as SourceQueryProvider).query; -} - -String _$sourceFilterLangMapHash() => - r'acd7c06834be607eeba22b9fd2fcaacd6685660b'; - -/// See also [SourceFilterLangMap]. -@ProviderFor(SourceFilterLangMap) -final sourceFilterLangMapProvider = AutoDisposeNotifierProvider< - SourceFilterLangMap, Map>.internal( - SourceFilterLangMap.new, - name: r'sourceFilterLangMapProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$sourceFilterLangMapHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$SourceFilterLangMap = AutoDisposeNotifier>; -String _$sourceLanguageFilterHash() => - r'8b8f9811770558706a1a9da80a51dc59ac541afa'; - -/// See also [SourceLanguageFilter]. -@ProviderFor(SourceLanguageFilter) -final sourceLanguageFilterProvider = - AutoDisposeNotifierProvider?>.internal( - SourceLanguageFilter.new, - name: r'sourceLanguageFilterProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$sourceLanguageFilterHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$SourceLanguageFilter = AutoDisposeNotifier?>; -String _$sourceLastUsedHash() => r'd7e60ae5aec05d5ae9bf07ed32c57c7d9fc9ccf8'; - -/// See also [SourceLastUsed]. -@ProviderFor(SourceLastUsed) -final sourceLastUsedProvider = - AutoDisposeNotifierProvider.internal( - SourceLastUsed.new, - name: r'sourceLastUsedProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$sourceLastUsedHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$SourceLastUsed = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/browse_center/presentation/source/source_screen.dart b/lib/src/features/browse_center/presentation/source/source_screen.dart deleted file mode 100644 index 69f239a3..00000000 --- a/lib/src/features/browse_center/presentation/source/source_screen.dart +++ /dev/null @@ -1,119 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../constants/language_list.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/misc/toast/toast.dart'; -import '../../../../widgets/emoticons.dart'; -import 'controller/source_controller.dart'; -import 'widgets/source_list_tile.dart'; - -class SourceScreen extends HookConsumerWidget { - const SourceScreen({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - final sourceMapData = ref.watch(sourceMapFilteredProvider); - - final sourceMap = {...?sourceMapData.valueOrNull}; - final localSource = sourceMap.remove("localsourcelang"); - final lastUsed = sourceMap.remove("lastUsed"); - final allSource = sourceMap.remove("all"); - - refresh() => ref.refresh(sourceListProvider.future); - useEffect(() { - if (sourceMapData.isNotLoading) refresh(); - return; - }, []); - - useEffect(() { - sourceMapData.showToastOnError( - ref.read(toastProvider(context)), - withMicrotask: true, - ); - return; - }, [sourceMapData.valueOrNull]); - - return sourceMapData.showUiWhenData( - context, - (data) { - if ((sourceMap.isEmpty && localSource.isBlank && lastUsed.isBlank)) { - return Emoticons( - text: context.l10n!.noSourcesFound, - button: TextButton( - onPressed: refresh, - child: Text(context.l10n!.refresh), - ), - ); - } - return RefreshIndicator( - onRefresh: refresh, - child: CustomScrollView( - slivers: [ - if (lastUsed.isNotBlank) ...[ - SliverToBoxAdapter( - child: ListTile( - title: Text(languageMap["lastUsed"]?.displayName ?? ""), - ), - ), - SliverToBoxAdapter( - child: SourceListTile(source: lastUsed!.first)) - ], - if (allSource.isNotBlank) ...[ - SliverToBoxAdapter( - child: ListTile( - title: Text(languageMap["all"]?.displayName ?? ""), - ), - ), - SliverList( - delegate: SliverChildBuilderDelegate( - (context, index) => SourceListTile( - source: allSource![index], - ), - childCount: allSource?.length, - ), - ) - ], - for (final k in sourceMap.keys) ...[ - if (sourceMap[k].isNotBlank) ...[ - SliverToBoxAdapter( - child: - ListTile(title: Text(languageMap[k]?.displayName ?? k)), - ), - SliverList( - delegate: SliverChildBuilderDelegate( - (context, index) => SourceListTile( - source: sourceMap[k]![index], - ), - childCount: sourceMap[k]?.length, - ), - ) - ] - ], - if (localSource.isNotBlank) ...[ - SliverToBoxAdapter( - child: ListTile( - title: - Text(languageMap["localsourcelang"]?.displayName ?? ""), - ), - ), - SliverToBoxAdapter( - child: SourceListTile(source: localSource!.first), - ) - ], - ], - ), - ); - }, - refresh: refresh, - ); - } -} diff --git a/lib/src/features/browse_center/presentation/source/widgets/source_language_filter.dart b/lib/src/features/browse_center/presentation/source/widgets/source_language_filter.dart deleted file mode 100644 index 1401f3a6..00000000 --- a/lib/src/features/browse_center/presentation/source/widgets/source_language_filter.dart +++ /dev/null @@ -1,67 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../constants/language_list.dart'; - -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/pop_button.dart'; -import '../../../domain/language/language_model.dart'; -import '../controller/source_controller.dart'; - -class SourceLanguageFilter extends HookConsumerWidget { - const SourceLanguageFilter({super.key}); - @override - Widget build(BuildContext context, WidgetRef ref) { - final languageCodesMap = ref.watch(sourceFilterLangMapProvider); - final languageCodes = useState([]); - - useEffect(() { - final languageList = languageCodesMap.keys.toList(); - languageList.sort((a, b) { - final aExist = (languageCodesMap[a].ifNull()); - final bExist = (languageCodesMap[b].ifNull()); - return aExist == bExist ? a.compareTo(b) : bExist.toIntWithNegative; - }); - languageCodes.value = languageList; - return null; - }, []); - - return AlertDialog( - title: Text(context.l10n!.languages), - content: SizedBox( - height: context.heightScale(scale: .5), - width: context.widthScale(scale: context.isSmallTablet ? .5 : .8), - child: ListView.builder( - itemCount: languageCodes.value.length, - itemBuilder: (context, index) { - final String languageCode = languageCodes.value[index]; - final Language? language = languageMap[languageCode]; - return SwitchListTile( - value: languageCodesMap[languageCode].ifNull(), - onChanged: (value) { - ref - .read(sourceFilterLangMapProvider.notifier) - .toggleLang(languageCode, value); - }, - title: Text( - language?.nativeName ?? language?.name ?? languageCode, - ), - subtitle: (language?.name).isNotBlank && - language?.nativeName != language?.name - ? Text(language!.name!) - : null, - ); - }, - ), - ), - actions: [PopButton(popText: context.l10n!.close)], - ); - } -} diff --git a/lib/src/features/browse_center/presentation/source/widgets/source_list_tile.dart b/lib/src/features/browse_center/presentation/source/widgets/source_list_tile.dart deleted file mode 100644 index e456952b..00000000 --- a/lib/src/features/browse_center/presentation/source/widgets/source_list_tile.dart +++ /dev/null @@ -1,60 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../constants/app_sizes.dart'; -import '../../../../../constants/enum.dart'; - -import '../../../../../routes/router_config.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/server_image.dart'; -import '../../../domain/source/source_model.dart'; -import '../controller/source_controller.dart'; - -class SourceListTile extends ConsumerWidget { - const SourceListTile({super.key, required this.source}); - - final Source source; - - @override - Widget build(BuildContext context, WidgetRef ref) { - return ListTile( - onTap: (() async { - if (source.id == null) return; - ref.read(sourceLastUsedProvider.notifier).update(source.id); - SourceMangaRoute( - sourceId: source.id!, - sourceType: SourceType.popular, - ).push(context); - }), - leading: ClipRRect( - borderRadius: KBorderRadius.r8.radius, - child: ServerImage( - imageUrl: source.iconUrl ?? "", - size: const Size.square(48), - ), - ), - title: Text(source.name ?? ""), - subtitle: (source.lang?.displayName).isNotBlank - ? Text(source.lang?.displayName ?? "") - : null, - trailing: (source.supportsLatest.ifNull()) - ? TextButton( - onPressed: () async { - ref.read(sourceLastUsedProvider.notifier).update(source.id); - SourceMangaRoute( - sourceId: source.id!, - sourceType: SourceType.latest, - ).push(context); - }, - child: Text(context.l10n!.latest), - ) - : null, - ); - } -} diff --git a/lib/src/features/browse_center/presentation/source_manga_list/controller/source_manga_controller.dart b/lib/src/features/browse_center/presentation/source_manga_list/controller/source_manga_controller.dart deleted file mode 100644 index af1d1682..00000000 --- a/lib/src/features/browse_center/presentation/source_manga_list/controller/source_manga_controller.dart +++ /dev/null @@ -1,84 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:dio/dio.dart'; -import 'package:freezed_annotation/freezed_annotation.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../constants/db_keys.dart'; -import '../../../../../constants/enum.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../utils/mixin/shared_preferences_client_mixin.dart'; -import '../../../data/source_repository/source_repository.dart'; -import '../../../domain/filter/filter_model.dart'; -import '../../../domain/source/source_model.dart'; - -part 'source_manga_controller.g.dart'; - -@riverpod -FutureOr source(SourceRef ref, String sourceId) async { - final token = CancelToken(); - ref.onDispose(token.cancel); - final result = await ref - .watch(sourceRepositoryProvider) - .getSource(sourceId: sourceId, cancelToken: token); - ref.keepAlive(); - return result; -} - -@riverpod -Future?> baseSourceMangaFilterList( - BaseSourceMangaFilterListRef ref, - String sourceId, -) async { - final token = CancelToken(); - ref.onDispose(token.cancel); - final result = await ref - .watch(sourceRepositoryProvider) - .getFilterList(sourceId: sourceId); - ref.keepAlive(); - return result; -} - -@riverpod -class SourceMangaFilterList extends _$SourceMangaFilterList { - @override - AsyncValue?> build(String sourceId, {List? filter}) { - final networkFilter = - ref.watch(baseSourceMangaFilterListProvider(sourceId)); - return filter != null ? AsyncData(filter) : networkFilter; - } - - void updateFilter(List? filter) => - state = state.copyWithData((p0) => filter); - - Future reset() async => - ref.invalidate(baseSourceMangaFilterListProvider(sourceId)); - - List> get getAppliedFilter { - final baseFilters = Filter.filtersToJson( - ref.read(baseSourceMangaFilterListProvider(sourceId)).valueOrNull ?? [], - ); - final currentFilters = Filter.filtersToJson(state.valueOrNull ?? []); - if (baseFilters.length != currentFilters.length) return currentFilters; - const equality = DeepCollectionEquality(); - return [ - for (int i = 0; i < baseFilters.length; i++) - if (!equality.equals(currentFilters[i], baseFilters[i])) - currentFilters[i], - ]; - } -} - -@riverpod -class SourceDisplayMode extends _$SourceDisplayMode - with SharedPreferenceEnumClientMixin { - @override - DisplayMode? build() => initialize( - DBKeys.sourceDisplayMode, - enumList: DisplayMode.sourceDisplayList, - ); -} diff --git a/lib/src/features/browse_center/presentation/source_manga_list/controller/source_manga_controller.g.dart b/lib/src/features/browse_center/presentation/source_manga_list/controller/source_manga_controller.g.dart deleted file mode 100644 index 90c8d408..00000000 --- a/lib/src/features/browse_center/presentation/source_manga_list/controller/source_manga_controller.g.dart +++ /dev/null @@ -1,478 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'source_manga_controller.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$sourceHash() => r'02ebbe306c0a96174aa221c8e90e9f2c96f398ee'; - -/// Copied from Dart SDK -class _SystemHash { - _SystemHash._(); - - static int combine(int hash, int value) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + value); - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x0007ffff & hash) << 10)); - return hash ^ (hash >> 6); - } - - static int finish(int hash) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x03ffffff & hash) << 3)); - // ignore: parameter_assignments - hash = hash ^ (hash >> 11); - return 0x1fffffff & (hash + ((0x00003fff & hash) << 15)); - } -} - -/// See also [source]. -@ProviderFor(source) -const sourceProvider = SourceFamily(); - -/// See also [source]. -class SourceFamily extends Family> { - /// See also [source]. - const SourceFamily(); - - /// See also [source]. - SourceProvider call( - String sourceId, - ) { - return SourceProvider( - sourceId, - ); - } - - @override - SourceProvider getProviderOverride( - covariant SourceProvider provider, - ) { - return call( - provider.sourceId, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'sourceProvider'; -} - -/// See also [source]. -class SourceProvider extends AutoDisposeFutureProvider { - /// See also [source]. - SourceProvider( - String sourceId, - ) : this._internal( - (ref) => source( - ref as SourceRef, - sourceId, - ), - from: sourceProvider, - name: r'sourceProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$sourceHash, - dependencies: SourceFamily._dependencies, - allTransitiveDependencies: SourceFamily._allTransitiveDependencies, - sourceId: sourceId, - ); - - SourceProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.sourceId, - }) : super.internal(); - - final String sourceId; - - @override - Override overrideWith( - FutureOr Function(SourceRef provider) create, - ) { - return ProviderOverride( - origin: this, - override: SourceProvider._internal( - (ref) => create(ref as SourceRef), - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - sourceId: sourceId, - ), - ); - } - - @override - AutoDisposeFutureProviderElement createElement() { - return _SourceProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is SourceProvider && other.sourceId == sourceId; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, sourceId.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin SourceRef on AutoDisposeFutureProviderRef { - /// The parameter `sourceId` of this provider. - String get sourceId; -} - -class _SourceProviderElement extends AutoDisposeFutureProviderElement - with SourceRef { - _SourceProviderElement(super.provider); - - @override - String get sourceId => (origin as SourceProvider).sourceId; -} - -String _$baseSourceMangaFilterListHash() => - r'21b6028eb4e3ea54f9708d2faf1c73f21129721e'; - -/// See also [baseSourceMangaFilterList]. -@ProviderFor(baseSourceMangaFilterList) -const baseSourceMangaFilterListProvider = BaseSourceMangaFilterListFamily(); - -/// See also [baseSourceMangaFilterList]. -class BaseSourceMangaFilterListFamily - extends Family?>> { - /// See also [baseSourceMangaFilterList]. - const BaseSourceMangaFilterListFamily(); - - /// See also [baseSourceMangaFilterList]. - BaseSourceMangaFilterListProvider call( - String sourceId, - ) { - return BaseSourceMangaFilterListProvider( - sourceId, - ); - } - - @override - BaseSourceMangaFilterListProvider getProviderOverride( - covariant BaseSourceMangaFilterListProvider provider, - ) { - return call( - provider.sourceId, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'baseSourceMangaFilterListProvider'; -} - -/// See also [baseSourceMangaFilterList]. -class BaseSourceMangaFilterListProvider - extends AutoDisposeFutureProvider?> { - /// See also [baseSourceMangaFilterList]. - BaseSourceMangaFilterListProvider( - String sourceId, - ) : this._internal( - (ref) => baseSourceMangaFilterList( - ref as BaseSourceMangaFilterListRef, - sourceId, - ), - from: baseSourceMangaFilterListProvider, - name: r'baseSourceMangaFilterListProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$baseSourceMangaFilterListHash, - dependencies: BaseSourceMangaFilterListFamily._dependencies, - allTransitiveDependencies: - BaseSourceMangaFilterListFamily._allTransitiveDependencies, - sourceId: sourceId, - ); - - BaseSourceMangaFilterListProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.sourceId, - }) : super.internal(); - - final String sourceId; - - @override - Override overrideWith( - FutureOr?> Function(BaseSourceMangaFilterListRef provider) - create, - ) { - return ProviderOverride( - origin: this, - override: BaseSourceMangaFilterListProvider._internal( - (ref) => create(ref as BaseSourceMangaFilterListRef), - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - sourceId: sourceId, - ), - ); - } - - @override - AutoDisposeFutureProviderElement?> createElement() { - return _BaseSourceMangaFilterListProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is BaseSourceMangaFilterListProvider && - other.sourceId == sourceId; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, sourceId.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin BaseSourceMangaFilterListRef - on AutoDisposeFutureProviderRef?> { - /// The parameter `sourceId` of this provider. - String get sourceId; -} - -class _BaseSourceMangaFilterListProviderElement - extends AutoDisposeFutureProviderElement?> - with BaseSourceMangaFilterListRef { - _BaseSourceMangaFilterListProviderElement(super.provider); - - @override - String get sourceId => (origin as BaseSourceMangaFilterListProvider).sourceId; -} - -String _$sourceMangaFilterListHash() => - r'8a73132c795c270e84df2fe1f325301b4e955c45'; - -abstract class _$SourceMangaFilterList - extends BuildlessAutoDisposeNotifier?>> { - late final String sourceId; - late final List? filter; - - AsyncValue?> build( - String sourceId, { - List? filter, - }); -} - -/// See also [SourceMangaFilterList]. -@ProviderFor(SourceMangaFilterList) -const sourceMangaFilterListProvider = SourceMangaFilterListFamily(); - -/// See also [SourceMangaFilterList]. -class SourceMangaFilterListFamily extends Family?>> { - /// See also [SourceMangaFilterList]. - const SourceMangaFilterListFamily(); - - /// See also [SourceMangaFilterList]. - SourceMangaFilterListProvider call( - String sourceId, { - List? filter, - }) { - return SourceMangaFilterListProvider( - sourceId, - filter: filter, - ); - } - - @override - SourceMangaFilterListProvider getProviderOverride( - covariant SourceMangaFilterListProvider provider, - ) { - return call( - provider.sourceId, - filter: provider.filter, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'sourceMangaFilterListProvider'; -} - -/// See also [SourceMangaFilterList]. -class SourceMangaFilterListProvider extends AutoDisposeNotifierProviderImpl< - SourceMangaFilterList, AsyncValue?>> { - /// See also [SourceMangaFilterList]. - SourceMangaFilterListProvider( - String sourceId, { - List? filter, - }) : this._internal( - () => SourceMangaFilterList() - ..sourceId = sourceId - ..filter = filter, - from: sourceMangaFilterListProvider, - name: r'sourceMangaFilterListProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$sourceMangaFilterListHash, - dependencies: SourceMangaFilterListFamily._dependencies, - allTransitiveDependencies: - SourceMangaFilterListFamily._allTransitiveDependencies, - sourceId: sourceId, - filter: filter, - ); - - SourceMangaFilterListProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.sourceId, - required this.filter, - }) : super.internal(); - - final String sourceId; - final List? filter; - - @override - AsyncValue?> runNotifierBuild( - covariant SourceMangaFilterList notifier, - ) { - return notifier.build( - sourceId, - filter: filter, - ); - } - - @override - Override overrideWith(SourceMangaFilterList Function() create) { - return ProviderOverride( - origin: this, - override: SourceMangaFilterListProvider._internal( - () => create() - ..sourceId = sourceId - ..filter = filter, - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - sourceId: sourceId, - filter: filter, - ), - ); - } - - @override - AutoDisposeNotifierProviderElement?>> createElement() { - return _SourceMangaFilterListProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is SourceMangaFilterListProvider && - other.sourceId == sourceId && - other.filter == filter; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, sourceId.hashCode); - hash = _SystemHash.combine(hash, filter.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin SourceMangaFilterListRef - on AutoDisposeNotifierProviderRef?>> { - /// The parameter `sourceId` of this provider. - String get sourceId; - - /// The parameter `filter` of this provider. - List? get filter; -} - -class _SourceMangaFilterListProviderElement - extends AutoDisposeNotifierProviderElement?>> with SourceMangaFilterListRef { - _SourceMangaFilterListProviderElement(super.provider); - - @override - String get sourceId => (origin as SourceMangaFilterListProvider).sourceId; - @override - List? get filter => (origin as SourceMangaFilterListProvider).filter; -} - -String _$sourceDisplayModeHash() => r'f386ba15fdc6025e0471b7ffc8066162d83ea083'; - -/// See also [SourceDisplayMode]. -@ProviderFor(SourceDisplayMode) -final sourceDisplayModeProvider = - AutoDisposeNotifierProvider.internal( - SourceDisplayMode.new, - name: r'sourceDisplayModeProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$sourceDisplayModeHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$SourceDisplayMode = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/browse_center/presentation/source_manga_list/source_manga_list_screen.dart b/lib/src/features/browse_center/presentation/source_manga_list/source_manga_list_screen.dart deleted file mode 100644 index 2f5ebf1d..00000000 --- a/lib/src/features/browse_center/presentation/source_manga_list/source_manga_list_screen.dart +++ /dev/null @@ -1,254 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:infinite_scroll_pagination/infinite_scroll_pagination.dart'; - -import '../../../../constants/app_sizes.dart'; -import '../../../../constants/enum.dart'; -import '../../../../routes/router_config.dart'; -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/hooks/paging_controller_hook.dart'; -import '../../../../widgets/search_field.dart'; -import '../../../manga_book/domain/manga/manga_model.dart'; -import '../../data/source_repository/source_repository.dart'; -import '../../domain/filter/filter_model.dart'; -import 'controller/source_manga_controller.dart'; -import 'widgets/source_manga_display_icon_popup.dart'; -import 'widgets/source_manga_display_view.dart'; -import 'widgets/source_manga_filter.dart'; -import 'widgets/source_type_selectable_chip.dart'; - -class SourceMangaListScreen extends HookConsumerWidget { - const SourceMangaListScreen({ - super.key, - required this.sourceId, - required this.sourceType, - this.initialQuery, - this.initialFilter, - }); - final String sourceId; - final SourceType sourceType; - final String? initialQuery; - final List? initialFilter; - - void _fetchPage( - SourceRepository repository, - PagingController controller, - int pageKey, { - ValueNotifier? query, - List>? filter, - }) { - AsyncValue.guard( - () => repository.getMangaList( - sourceId: sourceId, - sourceType: sourceType, - pageNum: pageKey, - query: query?.value, - filter: filter, - ), - ).then( - (value) => value.whenOrNull( - data: (recentChaptersPage) { - try { - if (recentChaptersPage != null) { - if (recentChaptersPage.hasNextPage.ifNull()) { - controller.appendPage( - [...?recentChaptersPage.mangaList], - pageKey + 1, - ); - } else { - controller.appendLastPage([...?recentChaptersPage.mangaList]); - } - } - } catch (e) { - // - } - }, - error: (error, stackTrace) => controller.error = error, - ), - ); - } - - Widget filterWidget( - WidgetRef ref, - SourceMangaFilterListProvider provider, - List? filterList, - PagingController controller, - BuildContext context, - ) { - return filterList == null - ? const SizedBox.shrink() - : SourceMangaFilter( - initialFilters: filterList, - sourceId: sourceId, - onReset: () => ref.read(provider.notifier).reset(), - onSubmitted: (value) { - if (sourceType == SourceType.filter) { - Navigator.pop(context); - ref.read(provider.notifier).updateFilter(value); - controller.refresh(); - } else { - SourceMangaRoute( - sourceId: sourceId, - sourceType: SourceType.filter, - $extra: value, - ).pushReplacement(context); - } - }, - ); - } - - @override - Widget build(BuildContext context, WidgetRef ref) { - final filtersProvider = - sourceMangaFilterListProvider(sourceId, filter: initialFilter); - - final sourceRepository = ref.watch(sourceRepositoryProvider); - final filterList = ref.watch(filtersProvider); - final source = ref.watch(sourceProvider(sourceId)); - - final query = useState(initialQuery); - final showSearch = useState(initialQuery.isNotBlank); - final controller = usePagingController(firstPageKey: 1); - - useEffect(() { - controller.addPageRequestListener( - (pageKey) => _fetchPage( - sourceRepository, - controller, - pageKey, - query: query, - filter: ref.read(filtersProvider.notifier).getAppliedFilter, - ), - ); - return; - }, []); - return source.showUiWhenData( - context, - (data) => Scaffold( - appBar: AppBar( - title: Text(data?.displayName ?? context.l10n!.source), - actions: [ - IconButton( - onPressed: () => showSearch.value = true, - icon: const Icon(Icons.search_rounded), - ), - const SourceMangaDisplayIconPopup(), - if ((data?.isConfigurable).ifNull()) - IconButton( - onPressed: () => - SourcePreferenceRoute(sourceId: sourceId).push(context), - icon: const Icon(Icons.settings_rounded), - ), - ], - bottom: PreferredSize( - preferredSize: kCalculateAppBarBottomSize([true, showSearch.value]), - child: Column( - children: [ - Row( - children: [ - SourceTypeSelectableChip( - value: SourceType.popular, - groupValue: sourceType, - onSelected: (val) { - if (sourceType == SourceType.popular) return; - SourceMangaRoute( - sourceId: sourceId, - sourceType: SourceType.popular, - ).pushReplacement(context); - }, - ), - if ((data?.supportsLatest).ifNull()) - SourceTypeSelectableChip( - value: SourceType.latest, - groupValue: sourceType, - onSelected: (val) { - if (sourceType == SourceType.latest) return; - SourceMangaRoute( - sourceId: sourceId, - sourceType: SourceType.latest, - ).pushReplacement(context); - }, - ), - Builder( - builder: (context) => SourceTypeSelectableChip( - value: SourceType.filter, - groupValue: sourceType, - onSelected: (val) { - context.isTablet - ? Scaffold.of(context).openEndDrawer() - : showModalBottomSheet( - context: context, - builder: (context) => filterWidget( - ref, - filtersProvider, - filterList.valueOrNull, - controller, - context, - ), - ); - }, - ), - ), - ], - ), - const Divider(height: 0), - if (showSearch.value) - Align( - alignment: Alignment.centerRight, - child: SearchField( - initialText: query.value, - onClose: () => showSearch.value = (false), - onSubmitted: (val) { - if (sourceType == SourceType.filter) { - query.value = (val); - controller.refresh(); - } else { - if (val == null) return; - SourceMangaRoute( - sourceId: sourceId, - sourceType: SourceType.filter, - query: val, - ).pushReplacement(context); - } - }, - ), - ), - ], - ), - ), - ), - endDrawer: Drawer( - width: kDrawerWidth, - shape: const RoundedRectangleBorder(), - child: Builder( - builder: (context) => filterWidget( - ref, - filtersProvider, - filterList.valueOrNull, - controller, - context, - ), - ), - ), - body: RefreshIndicator( - onRefresh: () async => controller.refresh(), - child: SourceMangaDisplayView(controller: controller, source: data), - ), - ), - refresh: () => ref.refresh(sourceProvider(sourceId)), - wrapper: (body) => Scaffold( - appBar: AppBar( - title: Text(context.l10n!.source), - ), - body: body, - ), - ); - } -} diff --git a/lib/src/features/browse_center/presentation/source_manga_list/widgets/filter_to_widget.dart b/lib/src/features/browse_center/presentation/source_manga_list/widgets/filter_to_widget.dart deleted file mode 100644 index 4182c65f..00000000 --- a/lib/src/features/browse_center/presentation/source_manga_list/widgets/filter_to_widget.dart +++ /dev/null @@ -1,179 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../../../../../constants/app_sizes.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/search_field.dart'; -import '../../../../../widgets/sort_list_tile.dart'; -import '../../../domain/filter/filter_model.dart'; -import '../../../domain/filter_state/filter_state_model.dart'; - -class FilterToWidget extends StatelessWidget { - const FilterToWidget({ - super.key, - required this.filter, - required this.onChanged, - }); - final Filter filter; - final ValueChanged onChanged; - - void onChangedFilterCopyWith(T filterState) => - onChanged(filter.copyWith(filterState: filterState)); - - @override - Widget build(BuildContext context) { - FilterState? filterState = filter.filterState; - return switch (filterState) { - FilterHeader(name: String? name) => name.isNotBlank - ? ListTile( - title: Text(name!), - dense: true, - ) - : const SizedBox.shrink(), - FilterSeparator() => const Divider(), - FilterText( - name: String? name, - state: String? state, - ) => - SearchField( - autofocus: false, - onChanged: (val) => - onChangedFilterCopyWith(filterState.copyWith(state: val)), - hintText: name, - initialText: state, - ), - FilterCheckBox( - name: String? name, - state: bool? state, - ) => - CheckboxListTile( - value: state.ifNull(), - title: Text(name ?? ""), - onChanged: (value) => - onChangedFilterCopyWith(filterState.copyWith(state: value)), - controlAffinity: ListTileControlAffinity.leading, - ), - FilterTriState( - name: String? name, - state: int? state, - ) => - CheckboxListTile( - value: state.toBool, - onChanged: (value) => - onChangedFilterCopyWith(filterState.copyWith(state: value.toInt)), - title: Text(name ?? ""), - controlAffinity: ListTileControlAffinity.leading, - tristate: true, - ), - FilterSort( - name: String? name, - state: SortState? state, - values: List? values, - ) => - ExpansionTile( - title: Text( - name ?? "", - style: context.textTheme.labelLarge, - ), - children: [ - for (int i = 0; - i < (values?.length).getValueOnNullOrNegative(); - i++) - SortListTile( - key: ValueKey("$name-$i"), - ascending: (state?.ascending).ifNull(true), - title: Text(values != null ? values[i] : ""), - selected: i == state?.index, - onChanged: (value) { - if (filterState.copyWith.state == null) return; - onChangedFilterCopyWith( - filterState.copyWith.state!(ascending: value), - ); - }, - onSelected: () { - if (filterState.copyWith.state == null) return; - onChangedFilterCopyWith( - filterState.copyWith.state!(index: i)); - }, - ) - ], - ), - FilterSelect( - name: String? name, - state: int? state, - displayValues: List? displayValues, - ) => - Row( - mainAxisSize: MainAxisSize.min, - children: [ - Expanded( - child: ListTile( - title: Text( - name ?? "", - maxLines: 2, - overflow: TextOverflow.ellipsis, - ), - ), - ), - Expanded( - child: DropdownButtonHideUnderline( - child: Padding( - padding: KEdgeInsets.h16.size, - child: DropdownButton( - icon: const Icon(Icons.keyboard_arrow_down), - isExpanded: true, - value: state, - hint: Text(name ?? ""), - items: List.generate( - (displayValues?.length).getValueOnNullOrNegative(), - (index) => index, - ) - .map((e) => DropdownMenuItem( - value: e, - child: Text( - displayValues![e], - maxLines: 2, - overflow: TextOverflow.ellipsis, - style: context.textTheme.bodySmall, - ), - )) - .toList(), - onChanged: (value) => onChangedFilterCopyWith( - filterState.copyWith(state: value)), - ), - ), - ), - ), - ], - ), - FilterGroup( - name: String? name, - state: List? state, - ) => - ExpansionTile( - title: Text( - name ?? "", - style: context.textTheme.labelLarge, - ), - children: [ - for (int i = 0; i < (state?.length).getValueOnNullOrNegative(); i++) - FilterToWidget( - key: ValueKey("$name-$i"), - filter: state![i], - onChanged: (groupFilter) => onChangedFilterCopyWith( - filterState.copyWith( - state: [...state]..replaceRange(i, i + 1, [groupFilter]), - ), - ), - ), - ], - ), - null => const SizedBox.shrink(), - }; - } -} diff --git a/lib/src/features/browse_center/presentation/source_manga_list/widgets/source_manga_display_icon_popup.dart b/lib/src/features/browse_center/presentation/source_manga_list/widgets/source_manga_display_icon_popup.dart deleted file mode 100644 index 88932947..00000000 --- a/lib/src/features/browse_center/presentation/source_manga_list/widgets/source_manga_display_icon_popup.dart +++ /dev/null @@ -1,40 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../constants/db_keys.dart'; -import '../../../../../constants/enum.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/radio_list_popup.dart'; -import '../controller/source_manga_controller.dart'; - -class SourceMangaDisplayIconPopup extends ConsumerWidget { - const SourceMangaDisplayIconPopup({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - final displayMode = ref.watch(sourceDisplayModeProvider) ?? - DBKeys.sourceDisplayMode.initial; - return IconButton( - icon: Icon(displayMode?.icon), - onPressed: () => showDialog( - context: context, - builder: (context) => RadioListPopup( - optionList: DisplayMode.sourceDisplayList, - getOptionTitle: (value) => value.toLocale(context), - title: context.l10n!.displayMode, - value: displayMode, - onChange: (enumValue) async { - ref.read(sourceDisplayModeProvider.notifier).update(enumValue); - if (context.mounted) Navigator.pop(context); - }, - ), - ), - ); - } -} diff --git a/lib/src/features/browse_center/presentation/source_manga_list/widgets/source_manga_display_view.dart b/lib/src/features/browse_center/presentation/source_manga_list/widgets/source_manga_display_view.dart deleted file mode 100644 index 4b8fc963..00000000 --- a/lib/src/features/browse_center/presentation/source_manga_list/widgets/source_manga_display_view.dart +++ /dev/null @@ -1,85 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:infinite_scroll_pagination/infinite_scroll_pagination.dart'; - -import '../../../../../constants/db_keys.dart'; -import '../../../../../constants/enum.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../manga_book/data/manga_book_repository.dart'; -import '../../../../manga_book/domain/manga/manga_model.dart'; -import '../../../domain/source/source_model.dart'; -import '../controller/source_manga_controller.dart'; -import 'source_manga_grid_view.dart'; -import 'source_manga_list_view.dart'; - -class SourceMangaDisplayView extends ConsumerWidget { - const SourceMangaDisplayView({ - super.key, - required this.controller, - this.source, - }); - - final PagingController controller; - final Source? source; - @override - Widget build(BuildContext context, WidgetRef ref) { - final DisplayMode displayMode = ref.watch(sourceDisplayModeProvider) ?? - DBKeys.sourceDisplayMode.initial; - toggleFavorite(Manga item) async { - if (item.inLibrary.ifNull()) { - bool removeManga = false; - await showDialog( - context: context, - builder: (context) => AlertDialog( - title: item.title.isNotBlank ? Text(item.title!) : null, - content: Text( - context.l10n!.removeFromLibrary, - style: context.textTheme.bodyLarge, - ), - actions: [ - TextButton( - onPressed: () => Navigator.pop(context), - child: Text(context.l10n!.cancel), - ), - ElevatedButton( - onPressed: () async { - Navigator.pop(context); - removeManga = true; - }, - child: Text(context.l10n!.remove), - ), - ], - ), - ); - return removeManga - ? await AsyncValue.guard(() => ref - .read(mangaBookRepositoryProvider) - .removeMangaFromLibrary(item.id!)) - : null; - } else { - return AsyncValue.guard(() => - ref.read(mangaBookRepositoryProvider).addMangaToLibrary(item.id!)); - } - } - - return switch (displayMode) { - DisplayMode.grid => SourceMangaGridView( - controller: controller, - source: source, - toggleFavorite: toggleFavorite, - ), - DisplayMode.list || DisplayMode.descriptiveList => SourceMangaListView( - controller: controller, - source: source, - toggleFavorite: toggleFavorite, - ) - }; - } -} diff --git a/lib/src/features/browse_center/presentation/source_manga_list/widgets/source_manga_filter.dart b/lib/src/features/browse_center/presentation/source_manga_list/widgets/source_manga_filter.dart deleted file mode 100644 index 5671298d..00000000 --- a/lib/src/features/browse_center/presentation/source_manga_list/widgets/source_manga_filter.dart +++ /dev/null @@ -1,76 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; - -import '../../../../../constants/app_sizes.dart'; - -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../domain/filter/filter_model.dart'; -import 'filter_to_widget.dart'; - -class SourceMangaFilter extends HookWidget { - const SourceMangaFilter({ - super.key, - required this.initialFilters, - required this.sourceId, - required this.onSubmitted, - required this.onReset, - }); - final List initialFilters; - final String sourceId; - final ValueChanged?> onSubmitted; - final VoidCallback onReset; - @override - Widget build(BuildContext context) { - final filters = useState(initialFilters); - return Scaffold( - appBar: PreferredSize( - preferredSize: const Size.fromHeight(kAppBarBottomHeight), - child: Padding( - padding: const EdgeInsets.all(8.0), - child: Row( - children: [ - TextButton( - onPressed: () { - onReset(); - filters.value = (initialFilters); - }, - child: Text(context.l10n!.reset), - ), - const Spacer(), - FilledButton( - onPressed: () => onSubmitted(filters.value), - child: Text(context.l10n!.filter), - ), - ], - ), - ), - ), - body: ScrollConfiguration( - behavior: ScrollConfiguration.of(context).copyWith(scrollbars: false), - child: ListView.builder( - itemBuilder: (context, index) { - final filter = filters.value[index]; - return FilterToWidget( - key: ValueKey("Filter-${filter.filterState?.name}"), - filter: filter, - onChanged: (value) { - filters.value = ([...initialFilters]..replaceRange( - index, - index + 1, - [value], - )); - }, - ); - }, - itemCount: filters.value.length, - ), - ), - ); - } -} diff --git a/lib/src/features/browse_center/presentation/source_manga_list/widgets/source_manga_grid_view.dart b/lib/src/features/browse_center/presentation/source_manga_list/widgets/source_manga_grid_view.dart deleted file mode 100644 index 955e50d6..00000000 --- a/lib/src/features/browse_center/presentation/source_manga_list/widgets/source_manga_grid_view.dart +++ /dev/null @@ -1,78 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:infinite_scroll_pagination/infinite_scroll_pagination.dart'; - -import '../../../../../constants/app_sizes.dart'; - -import '../../../../../routes/router_config.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/custom_circular_progress_indicator.dart'; -import '../../../../../widgets/emoticons.dart'; -import '../../../../../widgets/manga_cover/grid/manga_cover_grid_tile.dart'; -import '../../../../manga_book/domain/manga/manga_model.dart'; -import '../../../../settings/presentation/appearance/widgets/grid_cover_min_width.dart'; -import '../../../domain/source/source_model.dart'; - -class SourceMangaGridView extends ConsumerWidget { - const SourceMangaGridView({ - super.key, - required this.toggleFavorite, - required this.controller, - this.source, - }); - final Future Function(Manga) toggleFavorite; - final PagingController controller; - final Source? source; - - @override - Widget build(BuildContext context, WidgetRef ref) { - return PagedGridView( - pagingController: controller, - builderDelegate: PagedChildBuilderDelegate( - firstPageProgressIndicatorBuilder: (context) => - const CenterSorayomiShimmerIndicator(), - newPageProgressIndicatorBuilder: (context) => - const CenterSorayomiShimmerIndicator(), - firstPageErrorIndicatorBuilder: (context) => Emoticons( - text: controller.error.toString(), - button: TextButton( - onPressed: () => controller.refresh(), - child: Text(context.l10n!.retry), - ), - ), - noItemsFoundIndicatorBuilder: (context) => Emoticons( - text: context.l10n!.noMangaFound, - button: TextButton( - onPressed: () => controller.refresh(), - child: Text(context.l10n!.refresh), - ), - ), - itemBuilder: (context, item, index) => MangaCoverGridTile( - manga: item.copyWith(source: source), - showDarkOverlay: item.inLibrary.ifNull(), - onLongPress: () async { - final value = await toggleFavorite(item); - if (value == null) return; - if (value is! AsyncError) { - final items = [...?controller.itemList]; - items[index] = item.copyWith(inLibrary: !item.inLibrary.ifNull()); - controller.itemList = items; - } - }, - onPressed: () { - if (item.id != null) { - MangaRoute(mangaId: item.id!).push(context); - } - }, - ), - ), - gridDelegate: mangaCoverGridDelegate(ref.watch(gridMinWidthProvider)), - ); - } -} diff --git a/lib/src/features/browse_center/presentation/source_manga_list/widgets/source_manga_list_view.dart b/lib/src/features/browse_center/presentation/source_manga_list/widgets/source_manga_list_view.dart deleted file mode 100644 index 7ea9c9b3..00000000 --- a/lib/src/features/browse_center/presentation/source_manga_list/widgets/source_manga_list_view.dart +++ /dev/null @@ -1,101 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:infinite_scroll_pagination/infinite_scroll_pagination.dart'; -import 'package:shimmer/shimmer.dart'; - -import '../../../../../constants/app_sizes.dart'; -import '../../../../../routes/router_config.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/custom_circular_progress_indicator.dart'; -import '../../../../../widgets/emoticons.dart'; -import '../../../../../widgets/manga_cover/list/manga_cover_list_tile.dart'; -import '../../../../manga_book/domain/manga/manga_model.dart'; -import '../../../domain/source/source_model.dart'; - -class SourceMangaListView extends ConsumerWidget { - const SourceMangaListView({ - super.key, - required this.toggleFavorite, - required this.controller, - this.source, - }); - final Future Function(Manga) toggleFavorite; - final PagingController controller; - final Source? source; - - @override - Widget build(BuildContext context, WidgetRef ref) { - return PagedListView( - pagingController: controller, - builderDelegate: PagedChildBuilderDelegate( - firstPageProgressIndicatorBuilder: (context) => - const CenterSorayomiShimmerIndicator(), - newPageProgressIndicatorBuilder: (context) => Row( - children: [ - SizedBox( - height: 80, - width: 80, - child: ClipRRect( - borderRadius: KBorderRadius.r8.radius, - child: const SorayomiShimmerIndicator(), - ), - ), - Padding( - padding: KEdgeInsets.h8.size, - child: Shimmer.fromColors( - baseColor: context.colorScheme.background, - highlightColor: context.theme.indicatorColor, - child: Container( - width: context.width * .3, - decoration: BoxDecoration( - borderRadius: KBorderRadius.r8.radius, - color: Colors.white, - ), - height: 12, - ), - ), - ), - const Spacer() - ], - ), - firstPageErrorIndicatorBuilder: (context) => Emoticons( - text: controller.error.toString(), - button: TextButton( - onPressed: () => controller.refresh(), - child: Text(context.l10n!.retry), - ), - ), - noItemsFoundIndicatorBuilder: (context) => Emoticons( - text: context.l10n!.noMangaFound, - button: TextButton( - onPressed: () => controller.refresh(), - child: Text(context.l10n!.refresh), - ), - ), - itemBuilder: (context, item, index) => MangaCoverListTile( - manga: item.copyWith(source: source), - onLongPress: () async { - final value = await toggleFavorite(item); - if (value == null) return; - if (value is! AsyncError) { - final items = [...?controller.itemList]; - items[index] = item.copyWith(inLibrary: !item.inLibrary.ifNull()); - controller.itemList = items; - } - }, - onPressed: () { - if (item.id != null) { - MangaRoute(mangaId: item.id!).push(context); - } - }, - ), - ), - ); - } -} diff --git a/lib/src/features/browse_center/presentation/source_manga_list/widgets/source_type_selectable_chip.dart b/lib/src/features/browse_center/presentation/source_manga_list/widgets/source_type_selectable_chip.dart deleted file mode 100644 index 44a62d5a..00000000 --- a/lib/src/features/browse_center/presentation/source_manga_list/widgets/source_type_selectable_chip.dart +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../../../../../constants/app_sizes.dart'; -import '../../../../../constants/enum.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; - -class SourceTypeSelectableChip extends StatelessWidget { - const SourceTypeSelectableChip({ - super.key, - required this.value, - required this.groupValue, - required this.onSelected, - }); - final SourceType value; - final SourceType groupValue; - final ValueChanged onSelected; - - @override - Widget build(BuildContext context) { - final selected = value == groupValue; - return Padding( - padding: KEdgeInsets.h4v8.size, - child: ChoiceChip( - label: Text(value.toLocale(context)), - selected: selected, - avatar: selected - ? null - : Icon( - selected ? value.selectedIcon : value.icon, - color: context.theme.colorScheme.onSurface - .withOpacity(selected ? .5 : 1), - ), - onSelected: onSelected, - ), - ); - } -} diff --git a/lib/src/features/browse_center/presentation/source_preference/controller/source_preference_controller.dart b/lib/src/features/browse_center/presentation/source_preference/controller/source_preference_controller.dart deleted file mode 100644 index d7e674ed..00000000 --- a/lib/src/features/browse_center/presentation/source_preference/controller/source_preference_controller.dart +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:convert'; - -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../data/source_repository/source_repository.dart'; -import '../../../domain/source_preference/source_preference.dart'; -part 'source_preference_controller.g.dart'; - -@riverpod -Future?> baseSourcePreferenceList( - BaseSourcePreferenceListRef ref, - String sourceId, -) => - ref.read(sourceRepositoryProvider).getPreferenceList(sourceId: sourceId); - -@riverpod -class SourcePreferenceList extends _$SourcePreferenceList { - @override - AsyncValue?> build(String sourceId) => - ref.watch(baseSourcePreferenceListProvider(sourceId)); - - void reset() => ref.invalidate(baseSourcePreferenceListProvider(sourceId)); - - void updatePreference(int index, SourcePreference preference) async { - final value = preference.sourcePreferenceProp?.currentValue; - await ref.read(sourceRepositoryProvider).updatePreferenceList( - sourceId: sourceId, - preference: { - "position": index, - "value": value is List ? jsonEncode(value) : value, - }, - ); - reset(); - } -} diff --git a/lib/src/features/browse_center/presentation/source_preference/controller/source_preference_controller.g.dart b/lib/src/features/browse_center/presentation/source_preference/controller/source_preference_controller.g.dart deleted file mode 100644 index bcea8004..00000000 --- a/lib/src/features/browse_center/presentation/source_preference/controller/source_preference_controller.g.dart +++ /dev/null @@ -1,313 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'source_preference_controller.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$baseSourcePreferenceListHash() => - r'5f48b999265f1507e80fbcee0caa4e8880d95a76'; - -/// Copied from Dart SDK -class _SystemHash { - _SystemHash._(); - - static int combine(int hash, int value) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + value); - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x0007ffff & hash) << 10)); - return hash ^ (hash >> 6); - } - - static int finish(int hash) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x03ffffff & hash) << 3)); - // ignore: parameter_assignments - hash = hash ^ (hash >> 11); - return 0x1fffffff & (hash + ((0x00003fff & hash) << 15)); - } -} - -/// See also [baseSourcePreferenceList]. -@ProviderFor(baseSourcePreferenceList) -const baseSourcePreferenceListProvider = BaseSourcePreferenceListFamily(); - -/// See also [baseSourcePreferenceList]. -class BaseSourcePreferenceListFamily - extends Family?>> { - /// See also [baseSourcePreferenceList]. - const BaseSourcePreferenceListFamily(); - - /// See also [baseSourcePreferenceList]. - BaseSourcePreferenceListProvider call( - String sourceId, - ) { - return BaseSourcePreferenceListProvider( - sourceId, - ); - } - - @override - BaseSourcePreferenceListProvider getProviderOverride( - covariant BaseSourcePreferenceListProvider provider, - ) { - return call( - provider.sourceId, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'baseSourcePreferenceListProvider'; -} - -/// See also [baseSourcePreferenceList]. -class BaseSourcePreferenceListProvider - extends AutoDisposeFutureProvider?> { - /// See also [baseSourcePreferenceList]. - BaseSourcePreferenceListProvider( - String sourceId, - ) : this._internal( - (ref) => baseSourcePreferenceList( - ref as BaseSourcePreferenceListRef, - sourceId, - ), - from: baseSourcePreferenceListProvider, - name: r'baseSourcePreferenceListProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$baseSourcePreferenceListHash, - dependencies: BaseSourcePreferenceListFamily._dependencies, - allTransitiveDependencies: - BaseSourcePreferenceListFamily._allTransitiveDependencies, - sourceId: sourceId, - ); - - BaseSourcePreferenceListProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.sourceId, - }) : super.internal(); - - final String sourceId; - - @override - Override overrideWith( - FutureOr?> Function( - BaseSourcePreferenceListRef provider) - create, - ) { - return ProviderOverride( - origin: this, - override: BaseSourcePreferenceListProvider._internal( - (ref) => create(ref as BaseSourcePreferenceListRef), - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - sourceId: sourceId, - ), - ); - } - - @override - AutoDisposeFutureProviderElement?> createElement() { - return _BaseSourcePreferenceListProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is BaseSourcePreferenceListProvider && - other.sourceId == sourceId; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, sourceId.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin BaseSourcePreferenceListRef - on AutoDisposeFutureProviderRef?> { - /// The parameter `sourceId` of this provider. - String get sourceId; -} - -class _BaseSourcePreferenceListProviderElement - extends AutoDisposeFutureProviderElement?> - with BaseSourcePreferenceListRef { - _BaseSourcePreferenceListProviderElement(super.provider); - - @override - String get sourceId => (origin as BaseSourcePreferenceListProvider).sourceId; -} - -String _$sourcePreferenceListHash() => - r'30c8dca8328a16872db111dcc9052178c9f3e60c'; - -abstract class _$SourcePreferenceList - extends BuildlessAutoDisposeNotifier?>> { - late final String sourceId; - - AsyncValue?> build( - String sourceId, - ); -} - -/// See also [SourcePreferenceList]. -@ProviderFor(SourcePreferenceList) -const sourcePreferenceListProvider = SourcePreferenceListFamily(); - -/// See also [SourcePreferenceList]. -class SourcePreferenceListFamily - extends Family?>> { - /// See also [SourcePreferenceList]. - const SourcePreferenceListFamily(); - - /// See also [SourcePreferenceList]. - SourcePreferenceListProvider call( - String sourceId, - ) { - return SourcePreferenceListProvider( - sourceId, - ); - } - - @override - SourcePreferenceListProvider getProviderOverride( - covariant SourcePreferenceListProvider provider, - ) { - return call( - provider.sourceId, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'sourcePreferenceListProvider'; -} - -/// See also [SourcePreferenceList]. -class SourcePreferenceListProvider extends AutoDisposeNotifierProviderImpl< - SourcePreferenceList, AsyncValue?>> { - /// See also [SourcePreferenceList]. - SourcePreferenceListProvider( - String sourceId, - ) : this._internal( - () => SourcePreferenceList()..sourceId = sourceId, - from: sourcePreferenceListProvider, - name: r'sourcePreferenceListProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$sourcePreferenceListHash, - dependencies: SourcePreferenceListFamily._dependencies, - allTransitiveDependencies: - SourcePreferenceListFamily._allTransitiveDependencies, - sourceId: sourceId, - ); - - SourcePreferenceListProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.sourceId, - }) : super.internal(); - - final String sourceId; - - @override - AsyncValue?> runNotifierBuild( - covariant SourcePreferenceList notifier, - ) { - return notifier.build( - sourceId, - ); - } - - @override - Override overrideWith(SourcePreferenceList Function() create) { - return ProviderOverride( - origin: this, - override: SourcePreferenceListProvider._internal( - () => create()..sourceId = sourceId, - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - sourceId: sourceId, - ), - ); - } - - @override - AutoDisposeNotifierProviderElement?>> createElement() { - return _SourcePreferenceListProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is SourcePreferenceListProvider && other.sourceId == sourceId; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, sourceId.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin SourcePreferenceListRef - on AutoDisposeNotifierProviderRef?>> { - /// The parameter `sourceId` of this provider. - String get sourceId; -} - -class _SourcePreferenceListProviderElement - extends AutoDisposeNotifierProviderElement?>> with SourcePreferenceListRef { - _SourcePreferenceListProviderElement(super.provider); - - @override - String get sourceId => (origin as SourcePreferenceListProvider).sourceId; -} -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/browse_center/presentation/source_preference/source_preference_screen.dart b/lib/src/features/browse_center/presentation/source_preference/source_preference_screen.dart deleted file mode 100644 index 706539f0..00000000 --- a/lib/src/features/browse_center/presentation/source_preference/source_preference_screen.dart +++ /dev/null @@ -1,56 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; -import '../source_manga_list/controller/source_manga_controller.dart'; -import 'controller/source_preference_controller.dart'; -import 'widgets/source_preference_to_widget.dart'; - -class SourcePreferenceScreen extends HookConsumerWidget { - const SourcePreferenceScreen({super.key, required this.sourceId}); - - final String sourceId; - - @override - Widget build(BuildContext context, WidgetRef ref) { - final source = ref.watch(sourceProvider(sourceId)); - final preferenceProvider = sourcePreferenceListProvider(sourceId); - final networkPreferences = ref.watch(preferenceProvider); - final preferences = networkPreferences.valueOrNull; - return Scaffold( - appBar: AppBar( - title: Text( - source.valueOrNull?.displayName ?? "", - style: context.textTheme.titleLarge, - ), - ), - body: networkPreferences.showUiWhenData( - context, - (data) => ListView.builder( - itemBuilder: (context, index) { - final sourcePreference = preferences?[index]; - if (sourcePreference == null) return const SizedBox.shrink(); - return SourcePreferenceToWidget( - key: ValueKey( - "Source-preference-${sourcePreference.sourcePreferenceProp?.key}", - ), - sourcePreference: sourcePreference, - onChanged: (value) { - ref - .read(preferenceProvider.notifier) - .updatePreference(index, value); - }, - ); - }, - itemCount: preferences?.length ?? 0, - ), - ), - ); - } -} diff --git a/lib/src/features/browse_center/presentation/source_preference/widgets/source_preference_to_widget.dart b/lib/src/features/browse_center/presentation/source_preference/widgets/source_preference_to_widget.dart deleted file mode 100644 index ad91066f..00000000 --- a/lib/src/features/browse_center/presentation/source_preference/widgets/source_preference_to_widget.dart +++ /dev/null @@ -1,142 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/multi_select_popup.dart'; -import '../../../../../widgets/radio_list_popup.dart'; -import '../../../../../widgets/text_field_popup.dart'; -import '../../../domain/source_preference/source_preference.dart'; -import '../../../domain/source_preference_prop/source_preference_prop.dart'; - -class SourcePreferenceToWidget extends StatelessWidget { - const SourcePreferenceToWidget({ - super.key, - required this.sourcePreference, - required this.onChanged, - }); - - final SourcePreference sourcePreference; - final ValueChanged onChanged; - - void onChangedPreferenceCopyWith(T prop, - [BuildContext? context]) { - onChanged(sourcePreference.copyWith(sourcePreferenceProp: prop)); - if (context != null) Navigator.pop(context); - } - - @override - Widget build(BuildContext context) { - SourcePreferenceProp? prop = sourcePreference.sourcePreferenceProp; - return switch (prop) { - CheckBoxPreference( - key: String? key, - title: String? title, - summary: String? summary, - defaultValue: bool? defaultValue, - currentValue: bool? currentValue, - ) => - CheckboxListTile( - key: Key(key ?? ""), - title: Text(title ?? ""), - subtitle: summary.isNotBlank ? Text(summary!) : null, - value: currentValue.ifNull(defaultValue.ifNull()), - onChanged: (value) => - onChangedPreferenceCopyWith(prop.copyWith(currentValue: value)), - controlAffinity: ListTileControlAffinity.trailing, - ), - SwitchPreferenceCompat( - key: String? key, - title: String? title, - summary: String? summary, - defaultValue: bool? defaultValue, - currentValue: bool? currentValue, - ) => - SwitchListTile( - key: Key(key ?? ""), - title: Text(title ?? ""), - subtitle: summary.isNotBlank ? Text(summary!) : null, - value: currentValue.ifNull(defaultValue.ifNull()), - onChanged: (value) => - onChangedPreferenceCopyWith(prop.copyWith(currentValue: value)), - controlAffinity: ListTileControlAffinity.trailing, - ), - ListPreference( - key: String? key, - title: String? title, - defaultValue: String? defaultValue, - currentValue: String? currentValue, - entries: Map? entries, - ) => - ListTile( - key: Key(key ?? ""), - title: Text(title ?? ""), - subtitle: currentValue.isNotBlank ? Text(currentValue!) : null, - onTap: () => showDialog( - context: context, - builder: (context) => RadioListPopup( - title: title ?? "", - optionList: entries?.keys.toList() ?? [], - value: currentValue ?? defaultValue ?? "", - onChange: (value) => onChangedPreferenceCopyWith( - prop.copyWith(currentValue: value), context), - getOptionTitle: (entry) => entries?[entry] ?? entry, - ), - ), - ), - MultiSelectListPreference( - key: String? key, - title: String? title, - summary: String? summary, - defaultValue: List? defaultValue, - currentValue: List? currentValue, - entries: Map? entries, - ) => - ListTile( - key: Key(key ?? ""), - title: Text(title ?? ""), - subtitle: summary.isNotBlank ? Text(summary!) : null, - onTap: () => showDialog( - context: context, - builder: (context) => MultiSelectPopup( - title: title ?? "", - optionList: entries?.keys.toList() ?? [], - values: currentValue ?? defaultValue ?? [], - onChange: (value) => onChangedPreferenceCopyWith( - prop.copyWith(currentValue: value), context), - getOptionTitle: (entry) => entries?[entry] ?? entry, - ), - ), - ), - EditTextPreference( - key: String? key, - title: String? title, - summary: String? summary, - defaultValue: String? defaultValue, - currentValue: String? currentValue, - dialogTitle: String? dialogTitle, - dialogMessage: String? dialogMessage, - ) => - ListTile( - key: Key(key ?? ""), - title: Text(title ?? ""), - subtitle: summary.isNotBlank ? Text(summary!) : null, - onTap: () => showDialog( - context: context, - builder: (context) => TextFieldPopup( - title: dialogTitle ?? title ?? "", - subtitle: dialogMessage ?? summary ?? "", - onChange: (value) => onChangedPreferenceCopyWith( - prop.copyWith(currentValue: value), context), - initialValue: currentValue ?? defaultValue, - ), - ), - ), - null || Fallback() => const SizedBox.shrink(), - }; - } -} diff --git a/lib/src/features/library/data/category/category_repository.dart b/lib/src/features/library/data/category/category_repository.dart deleted file mode 100644 index 24b4e637..00000000 --- a/lib/src/features/library/data/category/category_repository.dart +++ /dev/null @@ -1,89 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:dio/dio.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../constants/endpoints.dart'; -import '../../../../global_providers/global_providers.dart'; -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/storage/dio/dio_client.dart'; -import '../../../manga_book/domain/manga/manga_model.dart'; -import '../../domain/category/category_model.dart'; - -part 'category_repository.g.dart'; - -class CategoryRepository { - final DioClient dioClient; - - CategoryRepository(this.dioClient); - - Future?> getCategoryList({CancelToken? cancelToken}) async => - (await dioClient.get, Category>( - CategoryUrl.category, - decoder: (e) => - e is Map ? Category.fromJson(e) : Category(), - cancelToken: cancelToken, - )) - .data; - - Future createCategory({ - required Category category, - CancelToken? cancelToken, - }) => - dioClient.post( - CategoryUrl.category, - data: FormData.fromMap(category.toJson().filterOutNulls), - cancelToken: cancelToken, - ); - - Future editCategory({ - required Category category, - CancelToken? cancelToken, - }) async => - category.id != null - ? await dioClient.patch( - CategoryUrl.withId(category.id!), - data: FormData.fromMap(category.toJson().filterOutNulls), - cancelToken: cancelToken, - ) - : null; - - Future deleteCategory({ - required Category category, - CancelToken? cancelToken, - }) async => - (category.id != null) - ? dioClient.delete( - CategoryUrl.withId(category.id!), - cancelToken: cancelToken, - ) - : null; - - Future reorderCategory({ - required int from, - required int to, - }) => - dioClient.patch( - CategoryUrl.reorder, - data: FormData.fromMap({"from": from, "to": to}), - ); - - // Manga - Future?> getMangasFromCategory({ - required int categoryId, - CancelToken? cancelToken, - }) async => - (await dioClient.get, Manga>( - CategoryUrl.withId(categoryId), - decoder: (e) => e is Map ? Manga.fromJson(e) : Manga(), - )) - .data; -} - -@riverpod -CategoryRepository categoryRepository(CategoryRepositoryRef ref) => - CategoryRepository(ref.watch(dioClientKeyProvider)); diff --git a/lib/src/features/library/data/category/category_repository.g.dart b/lib/src/features/library/data/category/category_repository.g.dart deleted file mode 100644 index a27a34d4..00000000 --- a/lib/src/features/library/data/category/category_repository.g.dart +++ /dev/null @@ -1,27 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'category_repository.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$categoryRepositoryHash() => - r'f62ecef9ec108e4aba46068e319e118730be6d06'; - -/// See also [categoryRepository]. -@ProviderFor(categoryRepository) -final categoryRepositoryProvider = - AutoDisposeProvider.internal( - categoryRepository, - name: r'categoryRepositoryProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$categoryRepositoryHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef CategoryRepositoryRef = AutoDisposeProviderRef; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/library/domain/category/category_model.dart b/lib/src/features/library/domain/category/category_model.dart deleted file mode 100644 index 9ebb5702..00000000 --- a/lib/src/features/library/domain/category/category_model.dart +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:freezed_annotation/freezed_annotation.dart'; - -part 'category_model.freezed.dart'; -part 'category_model.g.dart'; - -@freezed -class Category with _$Category { - factory Category({ - int? id, - String? name, - int? order, - @JsonKey(name: "default") bool? defaultCategory, - }) = _Category; - - factory Category.fromJson(Map json) => - _$CategoryFromJson(json); -} diff --git a/lib/src/features/library/domain/category/category_model.freezed.dart b/lib/src/features/library/domain/category/category_model.freezed.dart deleted file mode 100644 index 435a96e4..00000000 --- a/lib/src/features/library/domain/category/category_model.freezed.dart +++ /dev/null @@ -1,219 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'category_model.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -Category _$CategoryFromJson(Map json) { - return _Category.fromJson(json); -} - -/// @nodoc -mixin _$Category { - int? get id => throw _privateConstructorUsedError; - String? get name => throw _privateConstructorUsedError; - int? get order => throw _privateConstructorUsedError; - @JsonKey(name: "default") - bool? get defaultCategory => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $CategoryCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $CategoryCopyWith<$Res> { - factory $CategoryCopyWith(Category value, $Res Function(Category) then) = - _$CategoryCopyWithImpl<$Res, Category>; - @useResult - $Res call( - {int? id, - String? name, - int? order, - @JsonKey(name: "default") bool? defaultCategory}); -} - -/// @nodoc -class _$CategoryCopyWithImpl<$Res, $Val extends Category> - implements $CategoryCopyWith<$Res> { - _$CategoryCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? id = freezed, - Object? name = freezed, - Object? order = freezed, - Object? defaultCategory = freezed, - }) { - return _then(_value.copyWith( - id: freezed == id - ? _value.id - : id // ignore: cast_nullable_to_non_nullable - as int?, - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - order: freezed == order - ? _value.order - : order // ignore: cast_nullable_to_non_nullable - as int?, - defaultCategory: freezed == defaultCategory - ? _value.defaultCategory - : defaultCategory // ignore: cast_nullable_to_non_nullable - as bool?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$CategoryImplCopyWith<$Res> - implements $CategoryCopyWith<$Res> { - factory _$$CategoryImplCopyWith( - _$CategoryImpl value, $Res Function(_$CategoryImpl) then) = - __$$CategoryImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {int? id, - String? name, - int? order, - @JsonKey(name: "default") bool? defaultCategory}); -} - -/// @nodoc -class __$$CategoryImplCopyWithImpl<$Res> - extends _$CategoryCopyWithImpl<$Res, _$CategoryImpl> - implements _$$CategoryImplCopyWith<$Res> { - __$$CategoryImplCopyWithImpl( - _$CategoryImpl _value, $Res Function(_$CategoryImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? id = freezed, - Object? name = freezed, - Object? order = freezed, - Object? defaultCategory = freezed, - }) { - return _then(_$CategoryImpl( - id: freezed == id - ? _value.id - : id // ignore: cast_nullable_to_non_nullable - as int?, - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - order: freezed == order - ? _value.order - : order // ignore: cast_nullable_to_non_nullable - as int?, - defaultCategory: freezed == defaultCategory - ? _value.defaultCategory - : defaultCategory // ignore: cast_nullable_to_non_nullable - as bool?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$CategoryImpl implements _Category { - _$CategoryImpl( - {this.id, - this.name, - this.order, - @JsonKey(name: "default") this.defaultCategory}); - - factory _$CategoryImpl.fromJson(Map json) => - _$$CategoryImplFromJson(json); - - @override - final int? id; - @override - final String? name; - @override - final int? order; - @override - @JsonKey(name: "default") - final bool? defaultCategory; - - @override - String toString() { - return 'Category(id: $id, name: $name, order: $order, defaultCategory: $defaultCategory)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$CategoryImpl && - (identical(other.id, id) || other.id == id) && - (identical(other.name, name) || other.name == name) && - (identical(other.order, order) || other.order == order) && - (identical(other.defaultCategory, defaultCategory) || - other.defaultCategory == defaultCategory)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => - Object.hash(runtimeType, id, name, order, defaultCategory); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$CategoryImplCopyWith<_$CategoryImpl> get copyWith => - __$$CategoryImplCopyWithImpl<_$CategoryImpl>(this, _$identity); - - @override - Map toJson() { - return _$$CategoryImplToJson( - this, - ); - } -} - -abstract class _Category implements Category { - factory _Category( - {final int? id, - final String? name, - final int? order, - @JsonKey(name: "default") final bool? defaultCategory}) = _$CategoryImpl; - - factory _Category.fromJson(Map json) = - _$CategoryImpl.fromJson; - - @override - int? get id; - @override - String? get name; - @override - int? get order; - @override - @JsonKey(name: "default") - bool? get defaultCategory; - @override - @JsonKey(ignore: true) - _$$CategoryImplCopyWith<_$CategoryImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/src/features/library/domain/category/category_model.g.dart b/lib/src/features/library/domain/category/category_model.g.dart deleted file mode 100644 index c207c612..00000000 --- a/lib/src/features/library/domain/category/category_model.g.dart +++ /dev/null @@ -1,23 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'category_model.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$CategoryImpl _$$CategoryImplFromJson(Map json) => - _$CategoryImpl( - id: json['id'] as int?, - name: json['name'] as String?, - order: json['order'] as int?, - defaultCategory: json['default'] as bool?, - ); - -Map _$$CategoryImplToJson(_$CategoryImpl instance) => - { - 'id': instance.id, - 'name': instance.name, - 'order': instance.order, - 'default': instance.defaultCategory, - }; diff --git a/lib/src/features/library/presentation/category/controller/edit_category_controller.dart b/lib/src/features/library/presentation/category/controller/edit_category_controller.dart deleted file mode 100644 index 61fb0e74..00000000 --- a/lib/src/features/library/presentation/category/controller/edit_category_controller.dart +++ /dev/null @@ -1,70 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:dio/dio.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../data/category/category_repository.dart'; -import '../../../domain/category/category_model.dart'; - -part 'edit_category_controller.g.dart'; - -@riverpod -class CategoryController extends _$CategoryController { - @override - Future?> build() async => loadCategories(ref); - - Future?> loadCategories( - AutoDisposeAsyncNotifierProviderRef?> ref, - ) async { - final token = CancelToken(); - ref.onDispose(token.cancel); - final result = await ref - .watch(categoryRepositoryProvider) - .getCategoryList(cancelToken: token); - ref.keepAlive(); - return result; - } - - Future deleteCategory(Category category) async { - state = await AsyncValue.guard(() async { - await ref - .read(categoryRepositoryProvider) - .deleteCategory(category: category); - return loadCategories(ref); - }); - } - - Future editCategory(Category category) async { - final categoryRepository = ref.read(categoryRepositoryProvider); - state = await AsyncValue.guard(() async { - if (category.id == null) { - await categoryRepository.createCategory(category: category); - } else { - await categoryRepository.editCategory(category: category); - } - return loadCategories(ref); - }); - } - - Future reorderCategory(int from, int to) async { - final categoryRepository = ref.read(categoryRepositoryProvider); - state = await AsyncValue.guard(() async { - await categoryRepository.reorderCategory(from: from, to: to); - return loadCategories(ref); - }); - } -} - -@riverpod -List? categoryListQuery( - CategoryListQueryRef ref, { - required String query, -}) { - final categoryList = ref.watch(categoryControllerProvider).valueOrNull; - return categoryList?.where((element) => element.name.query(query)).toList(); -} diff --git a/lib/src/features/library/presentation/category/controller/edit_category_controller.g.dart b/lib/src/features/library/presentation/category/controller/edit_category_controller.g.dart deleted file mode 100644 index d2593e26..00000000 --- a/lib/src/features/library/presentation/category/controller/edit_category_controller.g.dart +++ /dev/null @@ -1,177 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'edit_category_controller.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$categoryListQueryHash() => r'47eb6a35cc23a6d24dbe7981cff742174512b4ce'; - -/// Copied from Dart SDK -class _SystemHash { - _SystemHash._(); - - static int combine(int hash, int value) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + value); - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x0007ffff & hash) << 10)); - return hash ^ (hash >> 6); - } - - static int finish(int hash) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x03ffffff & hash) << 3)); - // ignore: parameter_assignments - hash = hash ^ (hash >> 11); - return 0x1fffffff & (hash + ((0x00003fff & hash) << 15)); - } -} - -/// See also [categoryListQuery]. -@ProviderFor(categoryListQuery) -const categoryListQueryProvider = CategoryListQueryFamily(); - -/// See also [categoryListQuery]. -class CategoryListQueryFamily extends Family?> { - /// See also [categoryListQuery]. - const CategoryListQueryFamily(); - - /// See also [categoryListQuery]. - CategoryListQueryProvider call({ - required String query, - }) { - return CategoryListQueryProvider( - query: query, - ); - } - - @override - CategoryListQueryProvider getProviderOverride( - covariant CategoryListQueryProvider provider, - ) { - return call( - query: provider.query, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'categoryListQueryProvider'; -} - -/// See also [categoryListQuery]. -class CategoryListQueryProvider extends AutoDisposeProvider?> { - /// See also [categoryListQuery]. - CategoryListQueryProvider({ - required String query, - }) : this._internal( - (ref) => categoryListQuery( - ref as CategoryListQueryRef, - query: query, - ), - from: categoryListQueryProvider, - name: r'categoryListQueryProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$categoryListQueryHash, - dependencies: CategoryListQueryFamily._dependencies, - allTransitiveDependencies: - CategoryListQueryFamily._allTransitiveDependencies, - query: query, - ); - - CategoryListQueryProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.query, - }) : super.internal(); - - final String query; - - @override - Override overrideWith( - List? Function(CategoryListQueryRef provider) create, - ) { - return ProviderOverride( - origin: this, - override: CategoryListQueryProvider._internal( - (ref) => create(ref as CategoryListQueryRef), - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - query: query, - ), - ); - } - - @override - AutoDisposeProviderElement?> createElement() { - return _CategoryListQueryProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is CategoryListQueryProvider && other.query == query; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, query.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin CategoryListQueryRef on AutoDisposeProviderRef?> { - /// The parameter `query` of this provider. - String get query; -} - -class _CategoryListQueryProviderElement - extends AutoDisposeProviderElement?> - with CategoryListQueryRef { - _CategoryListQueryProviderElement(super.provider); - - @override - String get query => (origin as CategoryListQueryProvider).query; -} - -String _$categoryControllerHash() => - r'03ec5d51bea1147db0139fa68edaeefdacb11f70'; - -/// See also [CategoryController]. -@ProviderFor(CategoryController) -final categoryControllerProvider = AutoDisposeAsyncNotifierProvider< - CategoryController, List?>.internal( - CategoryController.new, - name: r'categoryControllerProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$categoryControllerHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$CategoryController = AutoDisposeAsyncNotifier?>; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/library/presentation/category/edit_category_screen.dart b/lib/src/features/library/presentation/category/edit_category_screen.dart deleted file mode 100644 index ccd937de..00000000 --- a/lib/src/features/library/presentation/category/edit_category_screen.dart +++ /dev/null @@ -1,80 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/misc/toast/toast.dart'; -import '../../../../widgets/emoticons.dart'; -import 'controller/edit_category_controller.dart'; -import 'widgets/category_create_fab.dart'; -import 'widgets/category_tile.dart'; - -class EditCategoryScreen extends HookConsumerWidget { - const EditCategoryScreen({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - final categoryList = ref.watch(categoryControllerProvider); - - useEffect(() { - categoryList.showToastOnError( - ref.read(toastProvider(context)), - withMicrotask: true, - ); - return; - }, [categoryList.valueOrNull]); - - return Scaffold( - appBar: AppBar( - title: Text(context.l10n!.editCategory), - ), - floatingActionButton: categoryList.asError?.error != null - ? null - : const CategoryCreateFab(), - body: categoryList.showUiWhenData( - context, - (data) { - if (data.isBlank || - (data.isSingletonList && data?.firstOrNull?.id == 0)) { - return Emoticons( - text: context.l10n!.noCategoriesFound, - button: TextButton( - onPressed: () => ref.refresh(categoryControllerProvider.future), - child: Text(context.l10n!.refresh), - ), - ); - } else { - final isDefaultInCategoryList = data!.first.id == 0; - return RefreshIndicator( - child: ListView.builder( - itemCount: data.length, - itemBuilder: (context, index) { - final category = data[index]; - if (category.id == 0) { - return const SizedBox.shrink(); - } else { - return CategoryTile( - key: ValueKey(category.id), - maxOrderIndex: isDefaultInCategoryList - ? data.length - 1 - : data.length, - category: category, - ); - } - }, - ), - onRefresh: () => ref.refresh(categoryControllerProvider.future), - ); - } - }, - refresh: () => ref.refresh(categoryControllerProvider.future), - ), - ); - } -} diff --git a/lib/src/features/library/presentation/category/widgets/category_create_fab.dart b/lib/src/features/library/presentation/category/widgets/category_create_fab.dart deleted file mode 100644 index 56c2a1f8..00000000 --- a/lib/src/features/library/presentation/category/widgets/category_create_fab.dart +++ /dev/null @@ -1,50 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/custom_circular_progress_indicator.dart'; -import '../controller/edit_category_controller.dart'; -import 'edit_category_dialog.dart'; - -class CategoryCreateFab extends HookConsumerWidget { - const CategoryCreateFab({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - final isLoading = useState(false); - return FloatingActionButton.extended( - onPressed: isLoading.value - ? null - : () { - showDialog( - context: context, - builder: (context) => EditCategoryDialog( - editCategory: (newCategory) async { - try { - isLoading.value = (true); - await ref - .read(categoryControllerProvider.notifier) - .editCategory(newCategory); - isLoading.value = (false); - } catch (e) { - // - } - }, - ), - ); - }, - isExtended: context.isTablet && !isLoading.value, - label: Text(context.l10n!.addCategory), - icon: isLoading.value - ? MiniCircularProgressIndicator(color: context.iconColor) - : const Icon(Icons.add_rounded), - ); - } -} diff --git a/lib/src/features/library/presentation/category/widgets/category_tile.dart b/lib/src/features/library/presentation/category/widgets/category_tile.dart deleted file mode 100644 index 665c9450..00000000 --- a/lib/src/features/library/presentation/category/widgets/category_tile.dart +++ /dev/null @@ -1,109 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:gap/gap.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../constants/app_sizes.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/pop_button.dart'; -import '../../../domain/category/category_model.dart'; -import '../controller/edit_category_controller.dart'; -import 'edit_category_dialog.dart'; - -class CategoryTile extends HookConsumerWidget { - const CategoryTile({ - super.key, - required this.category, - required this.maxOrderIndex, - }); - - final Category category; - final int maxOrderIndex; - @override - Widget build(BuildContext context, WidgetRef ref) { - final order = category.order.getValueOnNullOrNegative(); - return Card( - margin: KEdgeInsets.h16v4.size, - child: Padding( - padding: const EdgeInsets.symmetric(horizontal: 8.0), - child: Column( - children: [ - ListTile( - leading: const Icon(Icons.label_rounded), - title: Text(category.name ?? ""), - ), - Row( - children: [ - IconButton( - visualDensity: VisualDensity.compact, - onPressed: order <= 1 - ? null - : () => ref - .read(categoryControllerProvider.notifier) - .reorderCategory(order, order - 1), - icon: const Icon(Icons.arrow_drop_up_rounded), - color: Colors.grey, - ), - IconButton( - visualDensity: VisualDensity.compact, - onPressed: order >= maxOrderIndex - ? null - : () => ref - .read(categoryControllerProvider.notifier) - .reorderCategory(order, order + 1), - icon: const Icon(Icons.arrow_drop_down_rounded), - color: Colors.grey, - ), - const Spacer(), - IconButton( - visualDensity: VisualDensity.compact, - onPressed: () => showDialog( - context: context, - builder: (context) => EditCategoryDialog( - category: category, - editCategory: (newCategory) => ref - .read(categoryControllerProvider.notifier) - .editCategory(newCategory), - ), - ), - icon: const Icon(Icons.edit_rounded), - color: Colors.grey, - ), - IconButton( - visualDensity: VisualDensity.compact, - onPressed: () => showDialog( - context: context, - builder: (context) => AlertDialog( - title: Text(context.l10n!.deleteCategoryTitle), - content: Text(context.l10n!.deleteCategoryDescription), - actions: [ - const PopButton(), - ElevatedButton( - onPressed: () { - ref - .read(categoryControllerProvider.notifier) - .deleteCategory(category); - Navigator.pop(context); - }, - child: Text(context.l10n!.delete), - ), - ], - ), - ), - icon: const Icon(Icons.delete_rounded), - color: Colors.grey, - ), - ], - ), - const Gap(8), - ], - ), - ), - ); - } -} diff --git a/lib/src/features/library/presentation/category/widgets/edit_category_dialog.dart b/lib/src/features/library/presentation/category/widgets/edit_category_dialog.dart deleted file mode 100644 index 2fcbd5a8..00000000 --- a/lib/src/features/library/presentation/category/widgets/edit_category_dialog.dart +++ /dev/null @@ -1,98 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../utils/misc/toast/toast.dart'; -import '../../../../../widgets/pop_button.dart'; -import '../../../domain/category/category_model.dart'; - -class EditCategoryDialog extends HookConsumerWidget { - const EditCategoryDialog({ - super.key, - required this.editCategory, - this.category, - }); - final Category? category; - final void Function(Category) editCategory; - - Future submitEditCategory( - String categoryName, - bool defaultCategory, - ) async { - return editCategory((category ?? Category()).copyWith( - name: categoryName, - defaultCategory: defaultCategory, - )); - } - - @override - Widget build(BuildContext context, WidgetRef ref) { - final categoryName = useTextEditingController(text: category?.name); - final defaultCategory = useState((category?.defaultCategory).ifNull()); - return AlertDialog( - title: Text( - category == null - ? context.l10n!.addCategory - : context.l10n!.editCategory, - ), - content: Column( - mainAxisSize: MainAxisSize.min, - children: [ - TextField( - controller: categoryName, - autofocus: true, - decoration: InputDecoration( - hintText: category == null - ? context.l10n!.addCategory - : context.l10n!.editCategory, - border: const OutlineInputBorder(), - ), - onSubmitted: (categoryName.text).isNotBlank - ? (text) { - submitEditCategory( - categoryName.text, - defaultCategory.value, - ); - Navigator.pop(context); - } - : null, - ), - CheckboxListTile( - value: defaultCategory.value, - dense: true, - controlAffinity: ListTileControlAffinity.leading, - onChanged: (value) { - if (value != null) { - defaultCategory.value = (value); - } - }, - title: Text(context.l10n!.defaultCategory), - ) - ], - ), - actions: [ - const PopButton(), - ElevatedButton( - onPressed: () { - if ((categoryName.text).isBlank) { - ref - .read(toastProvider(context)) - .show(context.l10n!.emptyCategory); - return; - } - submitEditCategory(categoryName.text, defaultCategory.value); - Navigator.pop(context); - }, - child: Text(context.l10n!.save), - ), - ], - ); - } -} diff --git a/lib/src/features/library/presentation/library/category_manga_list.dart b/lib/src/features/library/presentation/library/category_manga_list.dart deleted file mode 100644 index 18766a23..00000000 --- a/lib/src/features/library/presentation/library/category_manga_list.dart +++ /dev/null @@ -1,146 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../constants/app_sizes.dart'; -import '../../../../constants/enum.dart'; - -import '../../../../routes/router_config.dart'; -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../widgets/emoticons.dart'; -import '../../../../widgets/manga_cover/grid/manga_cover_grid_tile.dart'; -import '../../../../widgets/manga_cover/list/manga_cover_descriptive_list_tile.dart'; -import '../../../../widgets/manga_cover/list/manga_cover_list_tile.dart'; -import '../../../manga_book/presentation/manga_details/widgets/edit_manga_category_dialog.dart'; -import '../../../settings/presentation/appearance/widgets/grid_cover_min_width.dart'; -import 'controller/library_controller.dart'; - -class CategoryMangaList extends HookConsumerWidget { - const CategoryMangaList({super.key, required this.categoryId}); - final int categoryId; - @override - Widget build(BuildContext context, WidgetRef ref) { - final provider = - categoryMangaListWithQueryAndFilterProvider(categoryId: categoryId); - final mangaList = ref.watch(provider); - final displayMode = ref.watch(libraryDisplayModeProvider); - refresh() => ref.invalidate(categoryMangaListProvider(categoryId)); - useEffect(() { - if (mangaList.isNotLoading) refresh(); - return; - }, []); - return mangaList.showUiWhenData( - context, - (data) { - if (data.isBlank) { - return Emoticons( - text: context.l10n!.noCategoryMangaFound, - button: TextButton( - onPressed: refresh, - child: Text(context.l10n!.refresh), - ), - ); - } - final Widget mangaList = switch (displayMode) { - DisplayMode.list || null => ListView.builder( - itemExtent: 96, - itemCount: (data?.length).getValueOnNullOrNegative(), - itemBuilder: (context, index) => MangaCoverListTile( - manga: data![index], - onPressed: () { - if (data[index].id != null) { - MangaRoute( - mangaId: data[index].id!, - categoryId: categoryId, - ).push(context); - } - }, - onLongPress: () async { - if (data[index].id != null) { - await showDialog( - context: context, - builder: (context) => EditMangaCategoryDialog( - mangaId: data[index].id!, - title: data[index].title, - ), - ); - refresh(); - } - }, - showCountBadges: true, - ), - ), - DisplayMode.grid => GridView.builder( - gridDelegate: - mangaCoverGridDelegate(ref.watch(gridMinWidthProvider)), - itemCount: (data?.length).getValueOnNullOrNegative(), - itemBuilder: (context, index) => MangaCoverGridTile( - onLongPress: () async { - if (data[index].id != null) { - await showDialog( - context: context, - builder: (context) => EditMangaCategoryDialog( - mangaId: data[index].id!, - title: data[index].title, - ), - ); - refresh(); - } - }, - manga: data![index], - onPressed: () { - if (data[index].id != null) { - MangaRoute( - mangaId: data[index].id!, - categoryId: categoryId, - ).push(context); - } - }, - showCountBadges: true, - showDarkOverlay: false, - ), - ), - DisplayMode.descriptiveList => ListView.builder( - itemExtent: 176, - itemCount: (data?.length).getValueOnNullOrNegative(), - itemBuilder: (context, index) => MangaCoverDescriptiveListTile( - manga: data![index], - onPressed: () { - if (data[index].id != null) { - MangaRoute( - mangaId: data[index].id!, - categoryId: categoryId, - ).push(context); - } - }, - onLongPress: () async { - if (data[index].id != null) { - await showDialog( - context: context, - builder: (context) => EditMangaCategoryDialog( - mangaId: data[index].id!, - title: data[index].title, - ), - ); - refresh(); - } - }, - showBadges: true, - ), - ) - }; - return RefreshIndicator( - onRefresh: () async => refresh(), - child: mangaList, - ); - }, - refresh: refresh, - ); - } -} diff --git a/lib/src/features/library/presentation/library/controller/library_controller.dart b/lib/src/features/library/presentation/library/controller/library_controller.dart deleted file mode 100644 index 06ba5629..00000000 --- a/lib/src/features/library/presentation/library/controller/library_controller.dart +++ /dev/null @@ -1,157 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:dio/dio.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../constants/db_keys.dart'; -import '../../../../../constants/enum.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../utils/mixin/shared_preferences_client_mixin.dart'; -import '../../../../../utils/mixin/state_provider_mixin.dart'; -import '../../../../manga_book/domain/manga/manga_model.dart'; -import '../../../data/category/category_repository.dart'; -import '../../../domain/category/category_model.dart'; - -part 'library_controller.g.dart'; - -@riverpod -Future?> categoryMangaList( - CategoryMangaListRef ref, int categoryId) async { - final token = CancelToken(); - ref.onDispose(token.cancel); - final result = await ref - .watch(categoryRepositoryProvider) - .getMangasFromCategory(categoryId: categoryId, cancelToken: token); - ref.keepAlive(); - return result; -} - -@riverpod -class LibraryDisplayCategory extends _$LibraryDisplayCategory - with StateProviderMixin { - @override - Category? build() => null; -} - -@riverpod -class CategoryMangaListWithQueryAndFilter - extends _$CategoryMangaListWithQueryAndFilter { - @override - AsyncValue?> build({required int categoryId}) { - final mangaList = ref.watch(categoryMangaListProvider(categoryId)); - final query = ref.watch(libraryQueryProvider); - final mangaFilterUnread = ref.watch(libraryMangaFilterUnreadProvider); - final mangaFilterDownloaded = - ref.watch(libraryMangaFilterDownloadedProvider); - final mangaFilterCompleted = ref.watch(libraryMangaFilterCompletedProvider); - final MangaSort sortedBy = - ref.watch(libraryMangaSortProvider) ?? DBKeys.mangaSort.initial; - final sortedDirection = - ref.watch(libraryMangaSortDirectionProvider).ifNull(true); - - bool applyMangaFilter(Manga manga) { - if (mangaFilterUnread != null && - (mangaFilterUnread ^ manga.unreadCount.isGreaterThan(0))) { - return false; - } - - if (mangaFilterDownloaded != null && - (mangaFilterDownloaded ^ manga.downloadCount.isGreaterThan(0))) { - return false; - } - - if (mangaFilterCompleted != null && - (mangaFilterCompleted ^ (manga.status?.title == "COMPLETED"))) { - return false; - } - - if (!manga.query(query)) { - return false; - } - - return true; - } - - int applyMangaSort(Manga m1, Manga m2) { - final sortDirToggle = (sortedDirection ? 1 : -1); - return (switch (sortedBy) { - MangaSort.alphabetical => - (m1.title ?? "").compareTo(m2.title ?? ""), - MangaSort.unread => (m1.unreadCount.getValueOnNullOrNegative()) - .compareTo(m2.unreadCount.getValueOnNullOrNegative()), - MangaSort.dateAdded => (m1.inLibraryAt.getValueOnNullOrNegative()) - .compareTo(m2.inLibraryAt.getValueOnNullOrNegative()), - MangaSort.lastRead => (m2.lastReadAt.getValueOnNullOrNegative()) - .compareTo(m1.lastReadAt.getValueOnNullOrNegative()) - }) * - sortDirToggle; - } - - return mangaList.map?>>( - data: (e) => AsyncData(e.valueOrNull?.where(applyMangaFilter).toList() - ?..sort(applyMangaSort)), - error: (e) => e, - loading: (e) => e, - ); - } - - void invalidate() => ref.invalidate(categoryMangaListProvider(categoryId)); -} - -@riverpod -class LibraryQuery extends _$LibraryQuery with StateProviderMixin { - @override - String? build() => null; -} - -@riverpod -class LibraryMangaFilterDownloaded extends _$LibraryMangaFilterDownloaded - with SharedPreferenceClientMixin { - @override - bool? build() => initialize(DBKeys.mangaFilterDownloaded); -} - -@riverpod -class LibraryMangaFilterUnread extends _$LibraryMangaFilterUnread - with SharedPreferenceClientMixin { - @override - bool? build() => initialize(DBKeys.mangaFilterUnread); -} - -@riverpod -class LibraryMangaFilterCompleted extends _$LibraryMangaFilterCompleted - with SharedPreferenceClientMixin { - @override - bool? build() => initialize(DBKeys.mangaFilterCompleted); -} - -@riverpod -class LibraryMangaSort extends _$LibraryMangaSort - with SharedPreferenceEnumClientMixin { - @override - MangaSort? build() => initialize( - DBKeys.mangaSort, - enumList: MangaSort.values, - ); -} - -@riverpod -class LibraryMangaSortDirection extends _$LibraryMangaSortDirection - with SharedPreferenceClientMixin { - @override - bool? build() => initialize(DBKeys.mangaSortDirection); -} - -@riverpod -class LibraryDisplayMode extends _$LibraryDisplayMode - with SharedPreferenceEnumClientMixin { - @override - DisplayMode? build() => initialize( - DBKeys.libraryDisplayMode, - enumList: DisplayMode.values, - ); -} diff --git a/lib/src/features/library/presentation/library/controller/library_controller.g.dart b/lib/src/features/library/presentation/library/controller/library_controller.g.dart deleted file mode 100644 index fe3e0a41..00000000 --- a/lib/src/features/library/presentation/library/controller/library_controller.g.dart +++ /dev/null @@ -1,446 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'library_controller.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$categoryMangaListHash() => r'9da0d48991ecde48dd144171ef5091fd2f597ef7'; - -/// Copied from Dart SDK -class _SystemHash { - _SystemHash._(); - - static int combine(int hash, int value) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + value); - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x0007ffff & hash) << 10)); - return hash ^ (hash >> 6); - } - - static int finish(int hash) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x03ffffff & hash) << 3)); - // ignore: parameter_assignments - hash = hash ^ (hash >> 11); - return 0x1fffffff & (hash + ((0x00003fff & hash) << 15)); - } -} - -/// See also [categoryMangaList]. -@ProviderFor(categoryMangaList) -const categoryMangaListProvider = CategoryMangaListFamily(); - -/// See also [categoryMangaList]. -class CategoryMangaListFamily extends Family?>> { - /// See also [categoryMangaList]. - const CategoryMangaListFamily(); - - /// See also [categoryMangaList]. - CategoryMangaListProvider call( - int categoryId, - ) { - return CategoryMangaListProvider( - categoryId, - ); - } - - @override - CategoryMangaListProvider getProviderOverride( - covariant CategoryMangaListProvider provider, - ) { - return call( - provider.categoryId, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'categoryMangaListProvider'; -} - -/// See also [categoryMangaList]. -class CategoryMangaListProvider - extends AutoDisposeFutureProvider?> { - /// See also [categoryMangaList]. - CategoryMangaListProvider( - int categoryId, - ) : this._internal( - (ref) => categoryMangaList( - ref as CategoryMangaListRef, - categoryId, - ), - from: categoryMangaListProvider, - name: r'categoryMangaListProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$categoryMangaListHash, - dependencies: CategoryMangaListFamily._dependencies, - allTransitiveDependencies: - CategoryMangaListFamily._allTransitiveDependencies, - categoryId: categoryId, - ); - - CategoryMangaListProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.categoryId, - }) : super.internal(); - - final int categoryId; - - @override - Override overrideWith( - FutureOr?> Function(CategoryMangaListRef provider) create, - ) { - return ProviderOverride( - origin: this, - override: CategoryMangaListProvider._internal( - (ref) => create(ref as CategoryMangaListRef), - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - categoryId: categoryId, - ), - ); - } - - @override - AutoDisposeFutureProviderElement?> createElement() { - return _CategoryMangaListProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is CategoryMangaListProvider && other.categoryId == categoryId; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, categoryId.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin CategoryMangaListRef on AutoDisposeFutureProviderRef?> { - /// The parameter `categoryId` of this provider. - int get categoryId; -} - -class _CategoryMangaListProviderElement - extends AutoDisposeFutureProviderElement?> - with CategoryMangaListRef { - _CategoryMangaListProviderElement(super.provider); - - @override - int get categoryId => (origin as CategoryMangaListProvider).categoryId; -} - -String _$libraryDisplayCategoryHash() => - r'984e71bb74c05d7d19d4a6131f2d7b569493fd56'; - -/// See also [LibraryDisplayCategory]. -@ProviderFor(LibraryDisplayCategory) -final libraryDisplayCategoryProvider = - AutoDisposeNotifierProvider.internal( - LibraryDisplayCategory.new, - name: r'libraryDisplayCategoryProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$libraryDisplayCategoryHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$LibraryDisplayCategory = AutoDisposeNotifier; -String _$categoryMangaListWithQueryAndFilterHash() => - r'f4f63df844426a1dd5f7d556caa091343d4d810a'; - -abstract class _$CategoryMangaListWithQueryAndFilter - extends BuildlessAutoDisposeNotifier?>> { - late final int categoryId; - - AsyncValue?> build({ - required int categoryId, - }); -} - -/// See also [CategoryMangaListWithQueryAndFilter]. -@ProviderFor(CategoryMangaListWithQueryAndFilter) -const categoryMangaListWithQueryAndFilterProvider = - CategoryMangaListWithQueryAndFilterFamily(); - -/// See also [CategoryMangaListWithQueryAndFilter]. -class CategoryMangaListWithQueryAndFilterFamily - extends Family?>> { - /// See also [CategoryMangaListWithQueryAndFilter]. - const CategoryMangaListWithQueryAndFilterFamily(); - - /// See also [CategoryMangaListWithQueryAndFilter]. - CategoryMangaListWithQueryAndFilterProvider call({ - required int categoryId, - }) { - return CategoryMangaListWithQueryAndFilterProvider( - categoryId: categoryId, - ); - } - - @override - CategoryMangaListWithQueryAndFilterProvider getProviderOverride( - covariant CategoryMangaListWithQueryAndFilterProvider provider, - ) { - return call( - categoryId: provider.categoryId, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'categoryMangaListWithQueryAndFilterProvider'; -} - -/// See also [CategoryMangaListWithQueryAndFilter]. -class CategoryMangaListWithQueryAndFilterProvider - extends AutoDisposeNotifierProviderImpl?>> { - /// See also [CategoryMangaListWithQueryAndFilter]. - CategoryMangaListWithQueryAndFilterProvider({ - required int categoryId, - }) : this._internal( - () => CategoryMangaListWithQueryAndFilter()..categoryId = categoryId, - from: categoryMangaListWithQueryAndFilterProvider, - name: r'categoryMangaListWithQueryAndFilterProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$categoryMangaListWithQueryAndFilterHash, - dependencies: CategoryMangaListWithQueryAndFilterFamily._dependencies, - allTransitiveDependencies: CategoryMangaListWithQueryAndFilterFamily - ._allTransitiveDependencies, - categoryId: categoryId, - ); - - CategoryMangaListWithQueryAndFilterProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.categoryId, - }) : super.internal(); - - final int categoryId; - - @override - AsyncValue?> runNotifierBuild( - covariant CategoryMangaListWithQueryAndFilter notifier, - ) { - return notifier.build( - categoryId: categoryId, - ); - } - - @override - Override overrideWith(CategoryMangaListWithQueryAndFilter Function() create) { - return ProviderOverride( - origin: this, - override: CategoryMangaListWithQueryAndFilterProvider._internal( - () => create()..categoryId = categoryId, - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - categoryId: categoryId, - ), - ); - } - - @override - AutoDisposeNotifierProviderElement?>> createElement() { - return _CategoryMangaListWithQueryAndFilterProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is CategoryMangaListWithQueryAndFilterProvider && - other.categoryId == categoryId; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, categoryId.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin CategoryMangaListWithQueryAndFilterRef - on AutoDisposeNotifierProviderRef?>> { - /// The parameter `categoryId` of this provider. - int get categoryId; -} - -class _CategoryMangaListWithQueryAndFilterProviderElement - extends AutoDisposeNotifierProviderElement< - CategoryMangaListWithQueryAndFilter, - AsyncValue?>> with CategoryMangaListWithQueryAndFilterRef { - _CategoryMangaListWithQueryAndFilterProviderElement(super.provider); - - @override - int get categoryId => - (origin as CategoryMangaListWithQueryAndFilterProvider).categoryId; -} - -String _$libraryQueryHash() => r'e9f6238da1c3475448f4839b567e65833e7e151e'; - -/// See also [LibraryQuery]. -@ProviderFor(LibraryQuery) -final libraryQueryProvider = - AutoDisposeNotifierProvider.internal( - LibraryQuery.new, - name: r'libraryQueryProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$libraryQueryHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$LibraryQuery = AutoDisposeNotifier; -String _$libraryMangaFilterDownloadedHash() => - r'85e6dc002b8d627d09f88aef898a1810a5830ce5'; - -/// See also [LibraryMangaFilterDownloaded]. -@ProviderFor(LibraryMangaFilterDownloaded) -final libraryMangaFilterDownloadedProvider = - AutoDisposeNotifierProvider.internal( - LibraryMangaFilterDownloaded.new, - name: r'libraryMangaFilterDownloadedProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$libraryMangaFilterDownloadedHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$LibraryMangaFilterDownloaded = AutoDisposeNotifier; -String _$libraryMangaFilterUnreadHash() => - r'fc473316bce2fa425ace19baeda74758258dd769'; - -/// See also [LibraryMangaFilterUnread]. -@ProviderFor(LibraryMangaFilterUnread) -final libraryMangaFilterUnreadProvider = - AutoDisposeNotifierProvider.internal( - LibraryMangaFilterUnread.new, - name: r'libraryMangaFilterUnreadProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$libraryMangaFilterUnreadHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$LibraryMangaFilterUnread = AutoDisposeNotifier; -String _$libraryMangaFilterCompletedHash() => - r'ac96c775a5fdbda052991140af86dc5d6e72887d'; - -/// See also [LibraryMangaFilterCompleted]. -@ProviderFor(LibraryMangaFilterCompleted) -final libraryMangaFilterCompletedProvider = - AutoDisposeNotifierProvider.internal( - LibraryMangaFilterCompleted.new, - name: r'libraryMangaFilterCompletedProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$libraryMangaFilterCompletedHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$LibraryMangaFilterCompleted = AutoDisposeNotifier; -String _$libraryMangaSortHash() => r'aac0d1c0b08c67dc4c74e2969869faf6e1c6c25a'; - -/// See also [LibraryMangaSort]. -@ProviderFor(LibraryMangaSort) -final libraryMangaSortProvider = - AutoDisposeNotifierProvider.internal( - LibraryMangaSort.new, - name: r'libraryMangaSortProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$libraryMangaSortHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$LibraryMangaSort = AutoDisposeNotifier; -String _$libraryMangaSortDirectionHash() => - r'f61359ba47215f496a0cce9fd33f392fad2281f0'; - -/// See also [LibraryMangaSortDirection]. -@ProviderFor(LibraryMangaSortDirection) -final libraryMangaSortDirectionProvider = - AutoDisposeNotifierProvider.internal( - LibraryMangaSortDirection.new, - name: r'libraryMangaSortDirectionProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$libraryMangaSortDirectionHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$LibraryMangaSortDirection = AutoDisposeNotifier; -String _$libraryDisplayModeHash() => - r'dc791f4883cf9e8b283f56ed486fd6f3545a42af'; - -/// See also [LibraryDisplayMode]. -@ProviderFor(LibraryDisplayMode) -final libraryDisplayModeProvider = - AutoDisposeNotifierProvider.internal( - LibraryDisplayMode.new, - name: r'libraryDisplayModeProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$libraryDisplayModeHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$LibraryDisplayMode = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/library/presentation/library/library_screen.dart b/lib/src/features/library/presentation/library/library_screen.dart deleted file mode 100644 index 11f758a4..00000000 --- a/lib/src/features/library/presentation/library/library_screen.dart +++ /dev/null @@ -1,155 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:math'; - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../constants/app_sizes.dart'; -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/misc/toast/toast.dart'; -import '../../../../widgets/emoticons.dart'; -import '../../../../widgets/search_field.dart'; -import '../../../manga_book/widgets/update_status_popup_menu.dart'; -import '../category/controller/edit_category_controller.dart'; -import 'category_manga_list.dart'; -import 'controller/library_controller.dart'; -import 'widgets/library_manga_organizer.dart'; - -class LibraryScreen extends HookConsumerWidget { - const LibraryScreen({super.key, this.initialCategoryOrder}); - final int? initialCategoryOrder; - @override - Widget build(BuildContext context, WidgetRef ref) { - final toast = ref.watch(toastProvider(context)); - final categoryList = ref.watch(categoryControllerProvider); - final showSearch = useState(false); - useEffect(() { - categoryList.showToastOnError(toast, withMicrotask: true); - return; - }, [categoryList.valueOrNull]); - - return categoryList.showUiWhenData( - context, - (data) => data.isBlank - ? Emoticons( - text: context.l10n!.noCategoriesFound, - button: TextButton( - onPressed: () => ref.refresh(categoryControllerProvider), - child: Text(context.l10n!.refresh), - ), - ) - : DefaultTabController( - length: data!.length, - initialIndex: min(initialCategoryOrder.getValueOnNullOrNegative(), - data.length - 1), - child: Scaffold( - appBar: AppBar( - title: Text(context.l10n!.library), - centerTitle: true, - bottom: PreferredSize( - preferredSize: kCalculateAppBarBottomSize( - [data.length.isGreaterThan(1), showSearch.value], - ), - child: Column( - children: [ - if (data.length.isGreaterThan(1)) - TabBar( - isScrollable: true, - tabs: data - .map((e) => Tab(text: e.name ?? "")) - .toList(), - dividerColor: Colors.transparent, - ), - if (showSearch.value) - Align( - alignment: Alignment.centerRight, - child: SearchField( - initialText: ref.read(libraryQueryProvider), - onChanged: (val) => ref - .read(libraryQueryProvider.notifier) - .update(val), - onClose: () => showSearch.value = (false), - ), - ), - ], - ), - ), - actions: [ - IconButton( - onPressed: () => showSearch.value = (true), - icon: const Icon(Icons.search_rounded), - ), - Builder( - builder: (context) => IconButton( - onPressed: () { - if (context.isTablet) { - Scaffold.of(context).openEndDrawer(); - } else { - showModalBottomSheet( - context: context, - shape: RoundedRectangleBorder( - borderRadius: KBorderRadius.rT16.radius, - ), - clipBehavior: Clip.hardEdge, - builder: (_) => const LibraryMangaOrganizer(), - ); - } - }, - icon: const Icon(Icons.filter_list_rounded), - ), - ), - Builder( - builder: (context) { - return UpdateStatusPopupMenu( - getCategory: () => data.isNotBlank - ? data[DefaultTabController.of(context).index] - : null, - ); - }, - ), - ], - ), - endDrawerEnableOpenDragGesture: false, - endDrawer: const Drawer( - width: kDrawerWidth, - shape: RoundedRectangleBorder(), - child: LibraryMangaOrganizer(), - ), - body: data.isBlank - ? Emoticons( - text: context.l10n!.noCategoriesFound, - button: TextButton( - onPressed: () => - ref.refresh(categoryControllerProvider), - child: Text(context.l10n!.refresh), - ), - ) - : Padding( - padding: KEdgeInsets.h8.size, - child: TabBarView( - children: data - .map((e) => CategoryMangaList( - categoryId: e.id.getValueOnNullOrNegative(), - )) - .toList(), - ), - ), - ), - ), - refresh: () => ref.refresh(categoryControllerProvider), - wrapper: (body) => Scaffold( - appBar: AppBar( - title: Text(context.l10n!.library), - centerTitle: true, - ), - body: body, - ), - ); - } -} diff --git a/lib/src/features/library/presentation/library/widgets/library_manga_display.dart b/lib/src/features/library/presentation/library/widgets/library_manga_display.dart deleted file mode 100644 index 54d87c97..00000000 --- a/lib/src/features/library/presentation/library/widgets/library_manga_display.dart +++ /dev/null @@ -1,63 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../constants/db_keys.dart'; -import '../../../../../constants/enum.dart'; - -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/custom_checkbox_list_tile.dart'; -import '../../../../../widgets/manga_cover/providers/manga_cover_providers.dart'; -import '../../../../../widgets/radio_list_popup.dart'; -import '../controller/library_controller.dart'; - -class LibraryMangaDisplay extends ConsumerWidget { - const LibraryMangaDisplay({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - final displayMode = ref.watch(libraryDisplayModeProvider); - return ListView( - children: [ - ListTile( - title: Text( - context.l10n!.displayMode, - style: context.textTheme.labelLarge, - ), - dense: true, - ), - RadioList( - optionList: DisplayMode.values, - getTitle: (value) => value.toLocale(context), - value: displayMode ?? DBKeys.libraryDisplayMode.initial, - onChange: (value) => - ref.read(libraryDisplayModeProvider.notifier).update(value), - ), - ListTile( - title: Text( - context.l10n!.badges, - style: context.textTheme.labelLarge, - ), - dense: true, - ), - CustomCheckboxListTile( - title: context.l10n!.downloaded, - provider: downloadedBadgeProvider, - onChanged: ref.read(downloadedBadgeProvider.notifier).update, - tristate: false, - ), - CustomCheckboxListTile( - title: context.l10n!.unread, - provider: unreadBadgeProvider, - onChanged: ref.read(unreadBadgeProvider.notifier).update, - tristate: false, - ), - ], - ); - } -} diff --git a/lib/src/features/library/presentation/library/widgets/library_manga_filter.dart b/lib/src/features/library/presentation/library/widgets/library_manga_filter.dart deleted file mode 100644 index ff5d95e0..00000000 --- a/lib/src/features/library/presentation/library/widgets/library_manga_filter.dart +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/custom_checkbox_list_tile.dart'; -import '../controller/library_controller.dart'; - -class LibraryMangaFilter extends ConsumerWidget { - const LibraryMangaFilter({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - return ListView( - children: [ - CustomCheckboxListTile( - title: context.l10n!.unread, - provider: libraryMangaFilterUnreadProvider, - onChanged: ref.read(libraryMangaFilterUnreadProvider.notifier).update, - ), - CustomCheckboxListTile( - title: context.l10n!.completed, - provider: libraryMangaFilterCompletedProvider, - onChanged: - ref.read(libraryMangaFilterCompletedProvider.notifier).update, - ), - CustomCheckboxListTile( - title: context.l10n!.downloaded, - provider: libraryMangaFilterDownloadedProvider, - onChanged: - ref.read(libraryMangaFilterDownloadedProvider.notifier).update, - ), - ], - ); - } -} diff --git a/lib/src/features/library/presentation/library/widgets/library_manga_organizer.dart b/lib/src/features/library/presentation/library/widgets/library_manga_organizer.dart deleted file mode 100644 index 8515fb7e..00000000 --- a/lib/src/features/library/presentation/library/widgets/library_manga_organizer.dart +++ /dev/null @@ -1,48 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../../../../../constants/enum.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import 'library_manga_display.dart'; -import 'library_manga_filter.dart'; -import 'library_manga_sort_tile.dart'; - -class LibraryMangaOrganizer extends StatelessWidget { - const LibraryMangaOrganizer({ - super.key, - /* required this.controller */ - }); - // final ScrollController controller; - @override - Widget build(BuildContext context) { - return DefaultTabController( - length: 3, - child: Scaffold( - appBar: TabBar( - tabs: [ - Tab(text: context.l10n!.filter), - Tab(text: context.l10n!.sort), - Tab(text: context.l10n!.display), - ], - ), - body: TabBarView( - children: [ - const LibraryMangaFilter(), - ListView( - children: [ - for (MangaSort sortType in MangaSort.values) - LibraryMangaSortTile(sortType: sortType), - ], - ), - const LibraryMangaDisplay(), - ], - ), - ), - ); - } -} diff --git a/lib/src/features/library/presentation/library/widgets/library_manga_sort_tile.dart b/lib/src/features/library/presentation/library/widgets/library_manga_sort_tile.dart deleted file mode 100644 index 2385eed8..00000000 --- a/lib/src/features/library/presentation/library/widgets/library_manga_sort_tile.dart +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../constants/enum.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/sort_list_tile.dart'; -import '../controller/library_controller.dart'; - -class LibraryMangaSortTile extends ConsumerWidget { - const LibraryMangaSortTile({ - super.key, - required this.sortType, - }); - final MangaSort sortType; - @override - Widget build(BuildContext context, WidgetRef ref) { - final sortedBy = ref.watch(libraryMangaSortProvider); - final sortedDirection = ref.watch(libraryMangaSortDirectionProvider); - return SortListTile( - selected: sortType == sortedBy, - title: Text(sortType.toLocale(context)), - ascending: sortedDirection.ifNull(true), - onChanged: (bool? value) => ref - .read(libraryMangaSortDirectionProvider.notifier) - .update(!(sortedDirection.ifNull())), - onSelected: () => - ref.read(libraryMangaSortProvider.notifier).update(sortType), - ); - } -} diff --git a/lib/src/features/manga_book/data/downloads/downloads_repository.dart b/lib/src/features/manga_book/data/downloads/downloads_repository.dart deleted file mode 100644 index 40e184c4..00000000 --- a/lib/src/features/manga_book/data/downloads/downloads_repository.dart +++ /dev/null @@ -1,123 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:convert'; - -import 'package:flutter/foundation.dart'; - -import 'package:riverpod_annotation/riverpod_annotation.dart'; -import 'package:web_socket_channel/io.dart'; -import 'package:web_socket_channel/web_socket_channel.dart'; - -import '../../../../constants/db_keys.dart'; -import '../../../../constants/endpoints.dart'; -import '../../../../constants/enum.dart'; -import '../../../../global_providers/global_providers.dart'; -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/storage/dio/dio_client.dart'; -import '../../../settings/presentation/server/widget/credential_popup/credentials_popup.dart'; -import '../../domain/downloads/downloads_model.dart'; -import '../../domain/downloads_queue/downloads_queue_model.dart'; - -part 'downloads_repository.g.dart'; - -class DownloadsRepository { - const DownloadsRepository(this.dioClient); - - final DioClient dioClient; - // Downloads - Future startDownloads() => dioClient.get(DownloaderUrl.start); - Future stopDownloads() => dioClient.get(DownloaderUrl.stop); - Future clearDownloads() => dioClient.get(DownloaderUrl.clear); - Future addChaptersBatchToDownloadQueue(List chapterIds) => - dioClient.post( - DownloaderUrl.batch, - data: {"chapterIds": chapterIds}, - ); - Future addChapterToDownloadQueue(int mangaId, int chapterIndex) => - dioClient.get(DownloaderUrl.chapter(mangaId, chapterIndex)); - - Future removeChapterFromDownloadQueue(int mangaId, int chapterIndex) => - dioClient.delete(DownloaderUrl.chapter(mangaId, chapterIndex)); - - Future reorderDownload(int mangaId, int chapterIndex, int to) => - dioClient.patch( - DownloaderUrl.reorderDownload(mangaId, chapterIndex, to), - ); - - ({Stream stream, AsyncCallback closeStream}) socketDownloads( - {required AuthType authType, String? credentials}) { - final url = (dioClient.dio.options.baseUrl.toWebSocket!); - final channel = kIsWeb - ? WebSocketChannel.connect(Uri.parse(url + DownloaderUrl.downloads)) - : IOWebSocketChannel.connect( - Uri.parse(url + DownloaderUrl.downloads), - headers: { - if (authType == AuthType.basic) "Authorization": credentials - }, - ); - - return ( - stream: channel.stream.asyncMap( - (event) => compute( - (s) => Downloads.fromJson(json.decode(s)), - event, - ), - ), - closeStream: channel.sink.close, - ); - } -} - -@riverpod -DownloadsRepository downloadsRepository(DownloadsRepositoryRef ref) => - DownloadsRepository(ref.watch(dioClientKeyProvider)); - -@riverpod -class DownloadsSocket extends _$DownloadsSocket { - @override - Stream build() { - final socket = ref.watch(downloadsRepositoryProvider).socketDownloads( - authType: ref.watch(authTypeKeyProvider) ?? DBKeys.authType.initial, - credentials: ref.watch(credentialsProvider), - ); - ref.onDispose(socket.closeStream); - return socket.stream; - } -} - -@riverpod -Map downloadsMap(DownloadsMapRef ref) { - final downloads = ref.watch(downloadsSocketProvider); - return { - for (DownloadsQueue element in [...?downloads.valueOrNull?.queue]) - element.chapter?.id ?? -1: element - }; -} - -@riverpod -DownloadsQueue? downloadsFromId(DownloadsFromIdRef ref, int chapterId) => - ref.watch(downloadsMapProvider.select((map) => map[chapterId])); - -@riverpod -List downloadsChapterIds(DownloadsChapterIdsRef ref) { - return ref.watch(downloadsMapProvider).keys.toList(); -} - -@riverpod -AsyncValue downloadsStatus(DownloadsStatusRef ref) { - return ref.watch(downloadsSocketProvider - .select((value) => value.copyWithData((data) => data.status))); -} - -@riverpod -bool showDownloadsFAB(ShowDownloadsFABRef ref) { - final downloads = ref.watch(downloadsSocketProvider); - return (downloads.valueOrNull?.queue).isNotBlank && - downloads.valueOrNull!.queue!.any( - (element) => element.state != "Error" || element.tries != 3, - ); -} diff --git a/lib/src/features/manga_book/data/downloads/downloads_repository.g.dart b/lib/src/features/manga_book/data/downloads/downloads_repository.g.dart deleted file mode 100644 index 82b8c93a..00000000 --- a/lib/src/features/manga_book/data/downloads/downloads_repository.g.dart +++ /dev/null @@ -1,255 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'downloads_repository.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$downloadsRepositoryHash() => - r'5863e339050a4025a026249d55ea40d25137c001'; - -/// See also [downloadsRepository]. -@ProviderFor(downloadsRepository) -final downloadsRepositoryProvider = - AutoDisposeProvider.internal( - downloadsRepository, - name: r'downloadsRepositoryProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$downloadsRepositoryHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef DownloadsRepositoryRef = AutoDisposeProviderRef; -String _$downloadsMapHash() => r'069e7137bb59b01aea1cc49d4605e4b8c8a9d7fd'; - -/// See also [downloadsMap]. -@ProviderFor(downloadsMap) -final downloadsMapProvider = - AutoDisposeProvider>.internal( - downloadsMap, - name: r'downloadsMapProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$downloadsMapHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef DownloadsMapRef = AutoDisposeProviderRef>; -String _$downloadsFromIdHash() => r'ebec2d8410a8aa34a66a72061acfe62582f955dd'; - -/// Copied from Dart SDK -class _SystemHash { - _SystemHash._(); - - static int combine(int hash, int value) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + value); - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x0007ffff & hash) << 10)); - return hash ^ (hash >> 6); - } - - static int finish(int hash) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x03ffffff & hash) << 3)); - // ignore: parameter_assignments - hash = hash ^ (hash >> 11); - return 0x1fffffff & (hash + ((0x00003fff & hash) << 15)); - } -} - -/// See also [downloadsFromId]. -@ProviderFor(downloadsFromId) -const downloadsFromIdProvider = DownloadsFromIdFamily(); - -/// See also [downloadsFromId]. -class DownloadsFromIdFamily extends Family { - /// See also [downloadsFromId]. - const DownloadsFromIdFamily(); - - /// See also [downloadsFromId]. - DownloadsFromIdProvider call( - int chapterId, - ) { - return DownloadsFromIdProvider( - chapterId, - ); - } - - @override - DownloadsFromIdProvider getProviderOverride( - covariant DownloadsFromIdProvider provider, - ) { - return call( - provider.chapterId, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'downloadsFromIdProvider'; -} - -/// See also [downloadsFromId]. -class DownloadsFromIdProvider extends AutoDisposeProvider { - /// See also [downloadsFromId]. - DownloadsFromIdProvider( - int chapterId, - ) : this._internal( - (ref) => downloadsFromId( - ref as DownloadsFromIdRef, - chapterId, - ), - from: downloadsFromIdProvider, - name: r'downloadsFromIdProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$downloadsFromIdHash, - dependencies: DownloadsFromIdFamily._dependencies, - allTransitiveDependencies: - DownloadsFromIdFamily._allTransitiveDependencies, - chapterId: chapterId, - ); - - DownloadsFromIdProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.chapterId, - }) : super.internal(); - - final int chapterId; - - @override - Override overrideWith( - DownloadsQueue? Function(DownloadsFromIdRef provider) create, - ) { - return ProviderOverride( - origin: this, - override: DownloadsFromIdProvider._internal( - (ref) => create(ref as DownloadsFromIdRef), - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - chapterId: chapterId, - ), - ); - } - - @override - AutoDisposeProviderElement createElement() { - return _DownloadsFromIdProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is DownloadsFromIdProvider && other.chapterId == chapterId; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, chapterId.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin DownloadsFromIdRef on AutoDisposeProviderRef { - /// The parameter `chapterId` of this provider. - int get chapterId; -} - -class _DownloadsFromIdProviderElement - extends AutoDisposeProviderElement - with DownloadsFromIdRef { - _DownloadsFromIdProviderElement(super.provider); - - @override - int get chapterId => (origin as DownloadsFromIdProvider).chapterId; -} - -String _$downloadsChapterIdsHash() => - r'3c490718de46a5ffd3009b398c3c61441421d958'; - -/// See also [downloadsChapterIds]. -@ProviderFor(downloadsChapterIds) -final downloadsChapterIdsProvider = AutoDisposeProvider>.internal( - downloadsChapterIds, - name: r'downloadsChapterIdsProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$downloadsChapterIdsHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef DownloadsChapterIdsRef = AutoDisposeProviderRef>; -String _$downloadsStatusHash() => r'e1f120563dfc9a83a2e3459680f56168bbf21637'; - -/// See also [downloadsStatus]. -@ProviderFor(downloadsStatus) -final downloadsStatusProvider = - AutoDisposeProvider>.internal( - downloadsStatus, - name: r'downloadsStatusProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$downloadsStatusHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef DownloadsStatusRef = AutoDisposeProviderRef>; -String _$showDownloadsFABHash() => r'4c00b8fa136dc475476fed61a807a4901cc7cdb8'; - -/// See also [showDownloadsFAB]. -@ProviderFor(showDownloadsFAB) -final showDownloadsFABProvider = AutoDisposeProvider.internal( - showDownloadsFAB, - name: r'showDownloadsFABProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$showDownloadsFABHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef ShowDownloadsFABRef = AutoDisposeProviderRef; -String _$downloadsSocketHash() => r'ee5f9b56575b716ba8051e1e1d2b65e8bfb222e8'; - -/// See also [DownloadsSocket]. -@ProviderFor(DownloadsSocket) -final downloadsSocketProvider = - AutoDisposeStreamNotifierProvider.internal( - DownloadsSocket.new, - name: r'downloadsSocketProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$downloadsSocketHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$DownloadsSocket = AutoDisposeStreamNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/manga_book/data/manga_book_repository.dart b/lib/src/features/manga_book/data/manga_book_repository.dart deleted file mode 100644 index c754d330..00000000 --- a/lib/src/features/manga_book/data/manga_book_repository.dart +++ /dev/null @@ -1,119 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:dio/dio.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../constants/endpoints.dart'; -import '../../../global_providers/global_providers.dart'; -import '../../../utils/extensions/custom_extensions.dart'; -import '../../../utils/storage/dio/dio_client.dart'; -import '../../library/domain/category/category_model.dart'; -import '../domain/chapter/chapter_model.dart'; -import '../domain/chapter_batch/chapter_batch_model.dart'; -import '../domain/chapter_patch/chapter_put_model.dart'; -import '../domain/manga/manga_model.dart'; - -part 'manga_book_repository.g.dart'; - -class MangaBookRepository { - const MangaBookRepository(this.dioClient); - - final DioClient dioClient; - Future addMangaToLibrary(int mangaId) => - dioClient.get(MangaUrl.library(mangaId)); - Future removeMangaFromLibrary(int mangaId) => - dioClient.delete(MangaUrl.library(mangaId)); - - Future modifyBulkChapters({ChapterBatch? batch}) => dioClient - .post(MangaUrl.chapterBatch, data: batch?.toJson().filterOutNulls); - - // Mangas - Future getManga({ - required int mangaId, - bool onlineFetch = false, - CancelToken? cancelToken, - }) async => - (await dioClient.get( - MangaUrl.fullWithId(mangaId), - queryParameters: {"onlineFetch": onlineFetch}, - decoder: (e) => e is Map ? Manga.fromJson(e) : null, - cancelToken: cancelToken, - )) - .data; - - // Chapters - - Future getChapter({ - required int mangaId, - required int chapterIndex, - CancelToken? cancelToken, - }) async => - (await dioClient.get( - MangaUrl.chapterWithIndex(mangaId, chapterIndex), - decoder: (e) => e is Map ? Chapter.fromJson(e) : null, - cancelToken: cancelToken, - )) - .data; - - Future putChapter({ - required int mangaId, - required int chapterIndex, - required ChapterPut patch, - CancelToken? cancelToken, - }) async => - (await dioClient.put( - MangaUrl.chapterWithIndex(mangaId, chapterIndex), - data: FormData.fromMap(patch.toJson().filterOutNulls), - cancelToken: cancelToken, - )); - - Future patchMangaMeta({ - required int mangaId, - required String key, - required dynamic value, - CancelToken? cancelToken, - }) async => - (await dioClient.patch( - MangaUrl.meta(mangaId), - data: FormData.fromMap({"key": key, "value": value?.toString()}), - cancelToken: cancelToken, - )); - - Future?> getChapterList({ - required int mangaId, - bool onlineFetch = false, - CancelToken? cancelToken, - }) async => - (await dioClient.get, Chapter>( - MangaUrl.chapters(mangaId), - queryParameters: {"onlineFetch": onlineFetch}, - decoder: (e) => - e is Map ? Chapter.fromJson(e) : Chapter(), - cancelToken: cancelToken, - )) - .data; - - Future?> getMangaCategoryList({ - required int mangaId, - CancelToken? cancelToken, - }) async => - (await dioClient.get, Category>( - MangaUrl.category(mangaId), - decoder: (e) => - e is Map ? Category.fromJson(e) : Category(), - cancelToken: cancelToken, - )) - .data; - Future addMangaToCategory(int mangaId, String categoryId) => - dioClient.get(MangaUrl.categoryId(mangaId, categoryId)); - Future removeMangaFromCategory(int mangaId, String categoryId) => - dioClient.delete(MangaUrl.categoryId(mangaId, categoryId)); -} - -@riverpod -MangaBookRepository mangaBookRepository(MangaBookRepositoryRef ref) => - MangaBookRepository(ref.watch(dioClientKeyProvider)); diff --git a/lib/src/features/manga_book/data/manga_book_repository.g.dart b/lib/src/features/manga_book/data/manga_book_repository.g.dart deleted file mode 100644 index a73bdd36..00000000 --- a/lib/src/features/manga_book/data/manga_book_repository.g.dart +++ /dev/null @@ -1,27 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'manga_book_repository.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$mangaBookRepositoryHash() => - r'fbc0619db23d43e750686649e9c371b48bb46f66'; - -/// See also [mangaBookRepository]. -@ProviderFor(mangaBookRepository) -final mangaBookRepositoryProvider = - AutoDisposeProvider.internal( - mangaBookRepository, - name: r'mangaBookRepositoryProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$mangaBookRepositoryHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef MangaBookRepositoryRef = AutoDisposeProviderRef; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/manga_book/data/updates/updates_repository.dart b/lib/src/features/manga_book/data/updates/updates_repository.dart deleted file mode 100644 index 7ca42d0d..00000000 --- a/lib/src/features/manga_book/data/updates/updates_repository.dart +++ /dev/null @@ -1,121 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:convert'; - -import 'package:dio/dio.dart'; -import 'package:flutter/foundation.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; -import 'package:web_socket_channel/io.dart'; -import 'package:web_socket_channel/web_socket_channel.dart'; - -import '../../../../constants/db_keys.dart'; -import '../../../../constants/endpoints.dart'; -import '../../../../constants/enum.dart'; -import '../../../../global_providers/global_providers.dart'; -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/storage/dio/dio_client.dart'; -import '../../../settings/presentation/server/widget/credential_popup/credentials_popup.dart'; -import '../../domain/chapter_page/chapter_page_model.dart'; -import '../../domain/update_status/update_status_model.dart'; - -part 'updates_repository.g.dart'; - -class UpdatesRepository { - const UpdatesRepository(this.dioClient); - - final DioClient dioClient; - // Downloads - - // Updates - Future getRecentChaptersPage({ - int pageNo = 0, - CancelToken? cancelToken, - }) async => - (await dioClient.get( - UpdateUrl.recentChapters(pageNo), - decoder: (e) => - e is Map ? ChapterPage.fromJson(e) : null, - cancelToken: cancelToken, - )) - .data; - - Future fetchUpdates({ - int? categoryId, - CancelToken? cancelToken, - }) => - dioClient.post( - UpdateUrl.fetch, - cancelToken: cancelToken, - data: FormData.fromMap({ - if (categoryId != null && categoryId != 0) "categoryId": categoryId, - }), - ); - - Future resetUpdates({ - CancelToken? cancelToken, - }) => - dioClient.post(UpdateUrl.reset, cancelToken: cancelToken); - - Future summaryUpdates({ - CancelToken? cancelToken, - }) async => - (await dioClient.get( - UpdateUrl.summary, - cancelToken: cancelToken, - decoder: (e) => e is Map - ? UpdateStatus.fromJson(e["statusMap"]) - : null, - )) - .data; - - ({Stream stream, AsyncCallback closeStream}) socketUpdates( - {required AuthType authType, String? credentials}) { - final url = (dioClient.dio.options.baseUrl.toWebSocket!); - final channel = kIsWeb - ? WebSocketChannel.connect(Uri.parse(url + UpdateUrl.update)) - : IOWebSocketChannel.connect( - Uri.parse(url + UpdateUrl.update), - headers: { - if (authType == AuthType.basic) "Authorization": credentials - }, - ); - return ( - stream: channel.stream.asyncMap((event) => - compute( - (s) => UpdateStatus.fromJson({...?json.decode(s)["statusMap"]}), - event)), - closeStream: channel.sink.close, - ); - } -} - -@riverpod -UpdatesRepository updatesRepository(UpdatesRepositoryRef ref) => - UpdatesRepository(ref.watch(dioClientKeyProvider)); - -@riverpod -Future updateSummary(UpdateSummaryRef ref) async { - final token = CancelToken(); - ref.onDispose(token.cancel); - final result = await ref - .watch(updatesRepositoryProvider) - .summaryUpdates(cancelToken: token); - return result; -} - -@riverpod -class UpdatesSocket extends _$UpdatesSocket { - @override - Stream build() { - final stream = ref.watch(updatesRepositoryProvider).socketUpdates( - authType: ref.watch(authTypeKeyProvider) ?? DBKeys.authType.initial, - credentials: ref.watch(credentialsProvider), - ); - ref.onDispose(stream.closeStream); - return stream.stream; - } -} diff --git a/lib/src/features/manga_book/data/updates/updates_repository.g.dart b/lib/src/features/manga_book/data/updates/updates_repository.g.dart deleted file mode 100644 index 4088a9bf..00000000 --- a/lib/src/features/manga_book/data/updates/updates_repository.g.dart +++ /dev/null @@ -1,57 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'updates_repository.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$updatesRepositoryHash() => r'7137ec4e542f1b7b9e5f9d74abcc570b100530d0'; - -/// See also [updatesRepository]. -@ProviderFor(updatesRepository) -final updatesRepositoryProvider = - AutoDisposeProvider.internal( - updatesRepository, - name: r'updatesRepositoryProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$updatesRepositoryHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef UpdatesRepositoryRef = AutoDisposeProviderRef; -String _$updateSummaryHash() => r'cd04991640fe6971183b65daf9e45e9445205800'; - -/// See also [updateSummary]. -@ProviderFor(updateSummary) -final updateSummaryProvider = AutoDisposeFutureProvider.internal( - updateSummary, - name: r'updateSummaryProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$updateSummaryHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef UpdateSummaryRef = AutoDisposeFutureProviderRef; -String _$updatesSocketHash() => r'714e545daee4dc279babf3b72e9c1c5a4f8934e5'; - -/// See also [UpdatesSocket]. -@ProviderFor(UpdatesSocket) -final updatesSocketProvider = - AutoDisposeStreamNotifierProvider.internal( - UpdatesSocket.new, - name: r'updatesSocketProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$updatesSocketHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$UpdatesSocket = AutoDisposeStreamNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/manga_book/domain/chapter/chapter_model.dart b/lib/src/features/manga_book/domain/chapter/chapter_model.dart deleted file mode 100644 index 4a87bae1..00000000 --- a/lib/src/features/manga_book/domain/chapter/chapter_model.dart +++ /dev/null @@ -1,52 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:freezed_annotation/freezed_annotation.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; - -part 'chapter_model.freezed.dart'; -part 'chapter_model.g.dart'; - -@freezed -class Chapter with _$Chapter { - Chapter._(); - factory Chapter({ - int? id, - bool? bookmarked, - int? chapterCount, - double? chapterNumber, - bool? downloaded, - int? fetchedAt, - int? index, - int? lastPageRead, - int? lastReadAt, - int? mangaId, - String? name, - int? pageCount, - bool? read, - String? realUrl, - String? scanlator, - int? uploadDate, - String? url, - Map? meta, - }) = _Chapter; - - factory Chapter.fromJson(Map json) => - _$ChapterFromJson(json); - - bool query([String? query]) { - return name.query(query) || index == int.tryParse(query ?? ''); - } - - String getDisplayName(BuildContext context) { - return name ?? - context.l10n!.chapterNumber( - chapterNumber ?? index?.toDouble() ?? 0, - ); - } -} diff --git a/lib/src/features/manga_book/domain/chapter/chapter_model.freezed.dart b/lib/src/features/manga_book/domain/chapter/chapter_model.freezed.dart deleted file mode 100644 index 36e94f70..00000000 --- a/lib/src/features/manga_book/domain/chapter/chapter_model.freezed.dart +++ /dev/null @@ -1,530 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'chapter_model.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -Chapter _$ChapterFromJson(Map json) { - return _Chapter.fromJson(json); -} - -/// @nodoc -mixin _$Chapter { - int? get id => throw _privateConstructorUsedError; - bool? get bookmarked => throw _privateConstructorUsedError; - int? get chapterCount => throw _privateConstructorUsedError; - double? get chapterNumber => throw _privateConstructorUsedError; - bool? get downloaded => throw _privateConstructorUsedError; - int? get fetchedAt => throw _privateConstructorUsedError; - int? get index => throw _privateConstructorUsedError; - int? get lastPageRead => throw _privateConstructorUsedError; - int? get lastReadAt => throw _privateConstructorUsedError; - int? get mangaId => throw _privateConstructorUsedError; - String? get name => throw _privateConstructorUsedError; - int? get pageCount => throw _privateConstructorUsedError; - bool? get read => throw _privateConstructorUsedError; - String? get realUrl => throw _privateConstructorUsedError; - String? get scanlator => throw _privateConstructorUsedError; - int? get uploadDate => throw _privateConstructorUsedError; - String? get url => throw _privateConstructorUsedError; - Map? get meta => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $ChapterCopyWith get copyWith => throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $ChapterCopyWith<$Res> { - factory $ChapterCopyWith(Chapter value, $Res Function(Chapter) then) = - _$ChapterCopyWithImpl<$Res, Chapter>; - @useResult - $Res call( - {int? id, - bool? bookmarked, - int? chapterCount, - double? chapterNumber, - bool? downloaded, - int? fetchedAt, - int? index, - int? lastPageRead, - int? lastReadAt, - int? mangaId, - String? name, - int? pageCount, - bool? read, - String? realUrl, - String? scanlator, - int? uploadDate, - String? url, - Map? meta}); -} - -/// @nodoc -class _$ChapterCopyWithImpl<$Res, $Val extends Chapter> - implements $ChapterCopyWith<$Res> { - _$ChapterCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? id = freezed, - Object? bookmarked = freezed, - Object? chapterCount = freezed, - Object? chapterNumber = freezed, - Object? downloaded = freezed, - Object? fetchedAt = freezed, - Object? index = freezed, - Object? lastPageRead = freezed, - Object? lastReadAt = freezed, - Object? mangaId = freezed, - Object? name = freezed, - Object? pageCount = freezed, - Object? read = freezed, - Object? realUrl = freezed, - Object? scanlator = freezed, - Object? uploadDate = freezed, - Object? url = freezed, - Object? meta = freezed, - }) { - return _then(_value.copyWith( - id: freezed == id - ? _value.id - : id // ignore: cast_nullable_to_non_nullable - as int?, - bookmarked: freezed == bookmarked - ? _value.bookmarked - : bookmarked // ignore: cast_nullable_to_non_nullable - as bool?, - chapterCount: freezed == chapterCount - ? _value.chapterCount - : chapterCount // ignore: cast_nullable_to_non_nullable - as int?, - chapterNumber: freezed == chapterNumber - ? _value.chapterNumber - : chapterNumber // ignore: cast_nullable_to_non_nullable - as double?, - downloaded: freezed == downloaded - ? _value.downloaded - : downloaded // ignore: cast_nullable_to_non_nullable - as bool?, - fetchedAt: freezed == fetchedAt - ? _value.fetchedAt - : fetchedAt // ignore: cast_nullable_to_non_nullable - as int?, - index: freezed == index - ? _value.index - : index // ignore: cast_nullable_to_non_nullable - as int?, - lastPageRead: freezed == lastPageRead - ? _value.lastPageRead - : lastPageRead // ignore: cast_nullable_to_non_nullable - as int?, - lastReadAt: freezed == lastReadAt - ? _value.lastReadAt - : lastReadAt // ignore: cast_nullable_to_non_nullable - as int?, - mangaId: freezed == mangaId - ? _value.mangaId - : mangaId // ignore: cast_nullable_to_non_nullable - as int?, - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - pageCount: freezed == pageCount - ? _value.pageCount - : pageCount // ignore: cast_nullable_to_non_nullable - as int?, - read: freezed == read - ? _value.read - : read // ignore: cast_nullable_to_non_nullable - as bool?, - realUrl: freezed == realUrl - ? _value.realUrl - : realUrl // ignore: cast_nullable_to_non_nullable - as String?, - scanlator: freezed == scanlator - ? _value.scanlator - : scanlator // ignore: cast_nullable_to_non_nullable - as String?, - uploadDate: freezed == uploadDate - ? _value.uploadDate - : uploadDate // ignore: cast_nullable_to_non_nullable - as int?, - url: freezed == url - ? _value.url - : url // ignore: cast_nullable_to_non_nullable - as String?, - meta: freezed == meta - ? _value.meta - : meta // ignore: cast_nullable_to_non_nullable - as Map?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$ChapterImplCopyWith<$Res> implements $ChapterCopyWith<$Res> { - factory _$$ChapterImplCopyWith( - _$ChapterImpl value, $Res Function(_$ChapterImpl) then) = - __$$ChapterImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {int? id, - bool? bookmarked, - int? chapterCount, - double? chapterNumber, - bool? downloaded, - int? fetchedAt, - int? index, - int? lastPageRead, - int? lastReadAt, - int? mangaId, - String? name, - int? pageCount, - bool? read, - String? realUrl, - String? scanlator, - int? uploadDate, - String? url, - Map? meta}); -} - -/// @nodoc -class __$$ChapterImplCopyWithImpl<$Res> - extends _$ChapterCopyWithImpl<$Res, _$ChapterImpl> - implements _$$ChapterImplCopyWith<$Res> { - __$$ChapterImplCopyWithImpl( - _$ChapterImpl _value, $Res Function(_$ChapterImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? id = freezed, - Object? bookmarked = freezed, - Object? chapterCount = freezed, - Object? chapterNumber = freezed, - Object? downloaded = freezed, - Object? fetchedAt = freezed, - Object? index = freezed, - Object? lastPageRead = freezed, - Object? lastReadAt = freezed, - Object? mangaId = freezed, - Object? name = freezed, - Object? pageCount = freezed, - Object? read = freezed, - Object? realUrl = freezed, - Object? scanlator = freezed, - Object? uploadDate = freezed, - Object? url = freezed, - Object? meta = freezed, - }) { - return _then(_$ChapterImpl( - id: freezed == id - ? _value.id - : id // ignore: cast_nullable_to_non_nullable - as int?, - bookmarked: freezed == bookmarked - ? _value.bookmarked - : bookmarked // ignore: cast_nullable_to_non_nullable - as bool?, - chapterCount: freezed == chapterCount - ? _value.chapterCount - : chapterCount // ignore: cast_nullable_to_non_nullable - as int?, - chapterNumber: freezed == chapterNumber - ? _value.chapterNumber - : chapterNumber // ignore: cast_nullable_to_non_nullable - as double?, - downloaded: freezed == downloaded - ? _value.downloaded - : downloaded // ignore: cast_nullable_to_non_nullable - as bool?, - fetchedAt: freezed == fetchedAt - ? _value.fetchedAt - : fetchedAt // ignore: cast_nullable_to_non_nullable - as int?, - index: freezed == index - ? _value.index - : index // ignore: cast_nullable_to_non_nullable - as int?, - lastPageRead: freezed == lastPageRead - ? _value.lastPageRead - : lastPageRead // ignore: cast_nullable_to_non_nullable - as int?, - lastReadAt: freezed == lastReadAt - ? _value.lastReadAt - : lastReadAt // ignore: cast_nullable_to_non_nullable - as int?, - mangaId: freezed == mangaId - ? _value.mangaId - : mangaId // ignore: cast_nullable_to_non_nullable - as int?, - name: freezed == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String?, - pageCount: freezed == pageCount - ? _value.pageCount - : pageCount // ignore: cast_nullable_to_non_nullable - as int?, - read: freezed == read - ? _value.read - : read // ignore: cast_nullable_to_non_nullable - as bool?, - realUrl: freezed == realUrl - ? _value.realUrl - : realUrl // ignore: cast_nullable_to_non_nullable - as String?, - scanlator: freezed == scanlator - ? _value.scanlator - : scanlator // ignore: cast_nullable_to_non_nullable - as String?, - uploadDate: freezed == uploadDate - ? _value.uploadDate - : uploadDate // ignore: cast_nullable_to_non_nullable - as int?, - url: freezed == url - ? _value.url - : url // ignore: cast_nullable_to_non_nullable - as String?, - meta: freezed == meta - ? _value._meta - : meta // ignore: cast_nullable_to_non_nullable - as Map?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$ChapterImpl extends _Chapter { - _$ChapterImpl( - {this.id, - this.bookmarked, - this.chapterCount, - this.chapterNumber, - this.downloaded, - this.fetchedAt, - this.index, - this.lastPageRead, - this.lastReadAt, - this.mangaId, - this.name, - this.pageCount, - this.read, - this.realUrl, - this.scanlator, - this.uploadDate, - this.url, - final Map? meta}) - : _meta = meta, - super._(); - - factory _$ChapterImpl.fromJson(Map json) => - _$$ChapterImplFromJson(json); - - @override - final int? id; - @override - final bool? bookmarked; - @override - final int? chapterCount; - @override - final double? chapterNumber; - @override - final bool? downloaded; - @override - final int? fetchedAt; - @override - final int? index; - @override - final int? lastPageRead; - @override - final int? lastReadAt; - @override - final int? mangaId; - @override - final String? name; - @override - final int? pageCount; - @override - final bool? read; - @override - final String? realUrl; - @override - final String? scanlator; - @override - final int? uploadDate; - @override - final String? url; - final Map? _meta; - @override - Map? get meta { - final value = _meta; - if (value == null) return null; - if (_meta is EqualUnmodifiableMapView) return _meta; - // ignore: implicit_dynamic_type - return EqualUnmodifiableMapView(value); - } - - @override - String toString() { - return 'Chapter(id: $id, bookmarked: $bookmarked, chapterCount: $chapterCount, chapterNumber: $chapterNumber, downloaded: $downloaded, fetchedAt: $fetchedAt, index: $index, lastPageRead: $lastPageRead, lastReadAt: $lastReadAt, mangaId: $mangaId, name: $name, pageCount: $pageCount, read: $read, realUrl: $realUrl, scanlator: $scanlator, uploadDate: $uploadDate, url: $url, meta: $meta)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$ChapterImpl && - (identical(other.id, id) || other.id == id) && - (identical(other.bookmarked, bookmarked) || - other.bookmarked == bookmarked) && - (identical(other.chapterCount, chapterCount) || - other.chapterCount == chapterCount) && - (identical(other.chapterNumber, chapterNumber) || - other.chapterNumber == chapterNumber) && - (identical(other.downloaded, downloaded) || - other.downloaded == downloaded) && - (identical(other.fetchedAt, fetchedAt) || - other.fetchedAt == fetchedAt) && - (identical(other.index, index) || other.index == index) && - (identical(other.lastPageRead, lastPageRead) || - other.lastPageRead == lastPageRead) && - (identical(other.lastReadAt, lastReadAt) || - other.lastReadAt == lastReadAt) && - (identical(other.mangaId, mangaId) || other.mangaId == mangaId) && - (identical(other.name, name) || other.name == name) && - (identical(other.pageCount, pageCount) || - other.pageCount == pageCount) && - (identical(other.read, read) || other.read == read) && - (identical(other.realUrl, realUrl) || other.realUrl == realUrl) && - (identical(other.scanlator, scanlator) || - other.scanlator == scanlator) && - (identical(other.uploadDate, uploadDate) || - other.uploadDate == uploadDate) && - (identical(other.url, url) || other.url == url) && - const DeepCollectionEquality().equals(other._meta, _meta)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, - id, - bookmarked, - chapterCount, - chapterNumber, - downloaded, - fetchedAt, - index, - lastPageRead, - lastReadAt, - mangaId, - name, - pageCount, - read, - realUrl, - scanlator, - uploadDate, - url, - const DeepCollectionEquality().hash(_meta)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$ChapterImplCopyWith<_$ChapterImpl> get copyWith => - __$$ChapterImplCopyWithImpl<_$ChapterImpl>(this, _$identity); - - @override - Map toJson() { - return _$$ChapterImplToJson( - this, - ); - } -} - -abstract class _Chapter extends Chapter { - factory _Chapter( - {final int? id, - final bool? bookmarked, - final int? chapterCount, - final double? chapterNumber, - final bool? downloaded, - final int? fetchedAt, - final int? index, - final int? lastPageRead, - final int? lastReadAt, - final int? mangaId, - final String? name, - final int? pageCount, - final bool? read, - final String? realUrl, - final String? scanlator, - final int? uploadDate, - final String? url, - final Map? meta}) = _$ChapterImpl; - _Chapter._() : super._(); - - factory _Chapter.fromJson(Map json) = _$ChapterImpl.fromJson; - - @override - int? get id; - @override - bool? get bookmarked; - @override - int? get chapterCount; - @override - double? get chapterNumber; - @override - bool? get downloaded; - @override - int? get fetchedAt; - @override - int? get index; - @override - int? get lastPageRead; - @override - int? get lastReadAt; - @override - int? get mangaId; - @override - String? get name; - @override - int? get pageCount; - @override - bool? get read; - @override - String? get realUrl; - @override - String? get scanlator; - @override - int? get uploadDate; - @override - String? get url; - @override - Map? get meta; - @override - @JsonKey(ignore: true) - _$$ChapterImplCopyWith<_$ChapterImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/src/features/manga_book/domain/chapter/chapter_model.g.dart b/lib/src/features/manga_book/domain/chapter/chapter_model.g.dart deleted file mode 100644 index 38b5408a..00000000 --- a/lib/src/features/manga_book/domain/chapter/chapter_model.g.dart +++ /dev/null @@ -1,53 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'chapter_model.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$ChapterImpl _$$ChapterImplFromJson(Map json) => - _$ChapterImpl( - id: json['id'] as int?, - bookmarked: json['bookmarked'] as bool?, - chapterCount: json['chapterCount'] as int?, - chapterNumber: (json['chapterNumber'] as num?)?.toDouble(), - downloaded: json['downloaded'] as bool?, - fetchedAt: json['fetchedAt'] as int?, - index: json['index'] as int?, - lastPageRead: json['lastPageRead'] as int?, - lastReadAt: json['lastReadAt'] as int?, - mangaId: json['mangaId'] as int?, - name: json['name'] as String?, - pageCount: json['pageCount'] as int?, - read: json['read'] as bool?, - realUrl: json['realUrl'] as String?, - scanlator: json['scanlator'] as String?, - uploadDate: json['uploadDate'] as int?, - url: json['url'] as String?, - meta: (json['meta'] as Map?)?.map( - (k, e) => MapEntry(k, e as String), - ), - ); - -Map _$$ChapterImplToJson(_$ChapterImpl instance) => - { - 'id': instance.id, - 'bookmarked': instance.bookmarked, - 'chapterCount': instance.chapterCount, - 'chapterNumber': instance.chapterNumber, - 'downloaded': instance.downloaded, - 'fetchedAt': instance.fetchedAt, - 'index': instance.index, - 'lastPageRead': instance.lastPageRead, - 'lastReadAt': instance.lastReadAt, - 'mangaId': instance.mangaId, - 'name': instance.name, - 'pageCount': instance.pageCount, - 'read': instance.read, - 'realUrl': instance.realUrl, - 'scanlator': instance.scanlator, - 'uploadDate': instance.uploadDate, - 'url': instance.url, - 'meta': instance.meta, - }; diff --git a/lib/src/features/manga_book/domain/chapter_batch/chapter_batch_model.dart b/lib/src/features/manga_book/domain/chapter_batch/chapter_batch_model.dart deleted file mode 100644 index 1a6accdc..00000000 --- a/lib/src/features/manga_book/domain/chapter_batch/chapter_batch_model.dart +++ /dev/null @@ -1,34 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:freezed_annotation/freezed_annotation.dart'; - -part 'chapter_batch_model.freezed.dart'; -part 'chapter_batch_model.g.dart'; - -@freezed -class ChapterBatch with _$ChapterBatch { - factory ChapterBatch({ - List? chapterIds, - ChapterChange? change, - }) = _ChapterBatch; - - factory ChapterBatch.fromJson(Map json) => - _$ChapterBatchFromJson(json); -} - -@freezed -class ChapterChange with _$ChapterChange { - factory ChapterChange({ - bool? isRead, - bool? isBookmarked, - int? lastPageRead, - bool? delete, - }) = _ChapterChange; - - factory ChapterChange.fromJson(Map json) => - _$ChapterChangeFromJson(json); -} diff --git a/lib/src/features/manga_book/domain/chapter_batch/chapter_batch_model.freezed.dart b/lib/src/features/manga_book/domain/chapter_batch/chapter_batch_model.freezed.dart deleted file mode 100644 index 75e3c1d7..00000000 --- a/lib/src/features/manga_book/domain/chapter_batch/chapter_batch_model.freezed.dart +++ /dev/null @@ -1,391 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'chapter_batch_model.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -ChapterBatch _$ChapterBatchFromJson(Map json) { - return _ChapterBatch.fromJson(json); -} - -/// @nodoc -mixin _$ChapterBatch { - List? get chapterIds => throw _privateConstructorUsedError; - ChapterChange? get change => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $ChapterBatchCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $ChapterBatchCopyWith<$Res> { - factory $ChapterBatchCopyWith( - ChapterBatch value, $Res Function(ChapterBatch) then) = - _$ChapterBatchCopyWithImpl<$Res, ChapterBatch>; - @useResult - $Res call({List? chapterIds, ChapterChange? change}); - - $ChapterChangeCopyWith<$Res>? get change; -} - -/// @nodoc -class _$ChapterBatchCopyWithImpl<$Res, $Val extends ChapterBatch> - implements $ChapterBatchCopyWith<$Res> { - _$ChapterBatchCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? chapterIds = freezed, - Object? change = freezed, - }) { - return _then(_value.copyWith( - chapterIds: freezed == chapterIds - ? _value.chapterIds - : chapterIds // ignore: cast_nullable_to_non_nullable - as List?, - change: freezed == change - ? _value.change - : change // ignore: cast_nullable_to_non_nullable - as ChapterChange?, - ) as $Val); - } - - @override - @pragma('vm:prefer-inline') - $ChapterChangeCopyWith<$Res>? get change { - if (_value.change == null) { - return null; - } - - return $ChapterChangeCopyWith<$Res>(_value.change!, (value) { - return _then(_value.copyWith(change: value) as $Val); - }); - } -} - -/// @nodoc -abstract class _$$ChapterBatchImplCopyWith<$Res> - implements $ChapterBatchCopyWith<$Res> { - factory _$$ChapterBatchImplCopyWith( - _$ChapterBatchImpl value, $Res Function(_$ChapterBatchImpl) then) = - __$$ChapterBatchImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({List? chapterIds, ChapterChange? change}); - - @override - $ChapterChangeCopyWith<$Res>? get change; -} - -/// @nodoc -class __$$ChapterBatchImplCopyWithImpl<$Res> - extends _$ChapterBatchCopyWithImpl<$Res, _$ChapterBatchImpl> - implements _$$ChapterBatchImplCopyWith<$Res> { - __$$ChapterBatchImplCopyWithImpl( - _$ChapterBatchImpl _value, $Res Function(_$ChapterBatchImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? chapterIds = freezed, - Object? change = freezed, - }) { - return _then(_$ChapterBatchImpl( - chapterIds: freezed == chapterIds - ? _value._chapterIds - : chapterIds // ignore: cast_nullable_to_non_nullable - as List?, - change: freezed == change - ? _value.change - : change // ignore: cast_nullable_to_non_nullable - as ChapterChange?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$ChapterBatchImpl implements _ChapterBatch { - _$ChapterBatchImpl({final List? chapterIds, this.change}) - : _chapterIds = chapterIds; - - factory _$ChapterBatchImpl.fromJson(Map json) => - _$$ChapterBatchImplFromJson(json); - - final List? _chapterIds; - @override - List? get chapterIds { - final value = _chapterIds; - if (value == null) return null; - if (_chapterIds is EqualUnmodifiableListView) return _chapterIds; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(value); - } - - @override - final ChapterChange? change; - - @override - String toString() { - return 'ChapterBatch(chapterIds: $chapterIds, change: $change)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$ChapterBatchImpl && - const DeepCollectionEquality() - .equals(other._chapterIds, _chapterIds) && - (identical(other.change, change) || other.change == change)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, const DeepCollectionEquality().hash(_chapterIds), change); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$ChapterBatchImplCopyWith<_$ChapterBatchImpl> get copyWith => - __$$ChapterBatchImplCopyWithImpl<_$ChapterBatchImpl>(this, _$identity); - - @override - Map toJson() { - return _$$ChapterBatchImplToJson( - this, - ); - } -} - -abstract class _ChapterBatch implements ChapterBatch { - factory _ChapterBatch( - {final List? chapterIds, - final ChapterChange? change}) = _$ChapterBatchImpl; - - factory _ChapterBatch.fromJson(Map json) = - _$ChapterBatchImpl.fromJson; - - @override - List? get chapterIds; - @override - ChapterChange? get change; - @override - @JsonKey(ignore: true) - _$$ChapterBatchImplCopyWith<_$ChapterBatchImpl> get copyWith => - throw _privateConstructorUsedError; -} - -ChapterChange _$ChapterChangeFromJson(Map json) { - return _ChapterChange.fromJson(json); -} - -/// @nodoc -mixin _$ChapterChange { - bool? get isRead => throw _privateConstructorUsedError; - bool? get isBookmarked => throw _privateConstructorUsedError; - int? get lastPageRead => throw _privateConstructorUsedError; - bool? get delete => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $ChapterChangeCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $ChapterChangeCopyWith<$Res> { - factory $ChapterChangeCopyWith( - ChapterChange value, $Res Function(ChapterChange) then) = - _$ChapterChangeCopyWithImpl<$Res, ChapterChange>; - @useResult - $Res call( - {bool? isRead, bool? isBookmarked, int? lastPageRead, bool? delete}); -} - -/// @nodoc -class _$ChapterChangeCopyWithImpl<$Res, $Val extends ChapterChange> - implements $ChapterChangeCopyWith<$Res> { - _$ChapterChangeCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? isRead = freezed, - Object? isBookmarked = freezed, - Object? lastPageRead = freezed, - Object? delete = freezed, - }) { - return _then(_value.copyWith( - isRead: freezed == isRead - ? _value.isRead - : isRead // ignore: cast_nullable_to_non_nullable - as bool?, - isBookmarked: freezed == isBookmarked - ? _value.isBookmarked - : isBookmarked // ignore: cast_nullable_to_non_nullable - as bool?, - lastPageRead: freezed == lastPageRead - ? _value.lastPageRead - : lastPageRead // ignore: cast_nullable_to_non_nullable - as int?, - delete: freezed == delete - ? _value.delete - : delete // ignore: cast_nullable_to_non_nullable - as bool?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$ChapterChangeImplCopyWith<$Res> - implements $ChapterChangeCopyWith<$Res> { - factory _$$ChapterChangeImplCopyWith( - _$ChapterChangeImpl value, $Res Function(_$ChapterChangeImpl) then) = - __$$ChapterChangeImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {bool? isRead, bool? isBookmarked, int? lastPageRead, bool? delete}); -} - -/// @nodoc -class __$$ChapterChangeImplCopyWithImpl<$Res> - extends _$ChapterChangeCopyWithImpl<$Res, _$ChapterChangeImpl> - implements _$$ChapterChangeImplCopyWith<$Res> { - __$$ChapterChangeImplCopyWithImpl( - _$ChapterChangeImpl _value, $Res Function(_$ChapterChangeImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? isRead = freezed, - Object? isBookmarked = freezed, - Object? lastPageRead = freezed, - Object? delete = freezed, - }) { - return _then(_$ChapterChangeImpl( - isRead: freezed == isRead - ? _value.isRead - : isRead // ignore: cast_nullable_to_non_nullable - as bool?, - isBookmarked: freezed == isBookmarked - ? _value.isBookmarked - : isBookmarked // ignore: cast_nullable_to_non_nullable - as bool?, - lastPageRead: freezed == lastPageRead - ? _value.lastPageRead - : lastPageRead // ignore: cast_nullable_to_non_nullable - as int?, - delete: freezed == delete - ? _value.delete - : delete // ignore: cast_nullable_to_non_nullable - as bool?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$ChapterChangeImpl implements _ChapterChange { - _$ChapterChangeImpl( - {this.isRead, this.isBookmarked, this.lastPageRead, this.delete}); - - factory _$ChapterChangeImpl.fromJson(Map json) => - _$$ChapterChangeImplFromJson(json); - - @override - final bool? isRead; - @override - final bool? isBookmarked; - @override - final int? lastPageRead; - @override - final bool? delete; - - @override - String toString() { - return 'ChapterChange(isRead: $isRead, isBookmarked: $isBookmarked, lastPageRead: $lastPageRead, delete: $delete)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$ChapterChangeImpl && - (identical(other.isRead, isRead) || other.isRead == isRead) && - (identical(other.isBookmarked, isBookmarked) || - other.isBookmarked == isBookmarked) && - (identical(other.lastPageRead, lastPageRead) || - other.lastPageRead == lastPageRead) && - (identical(other.delete, delete) || other.delete == delete)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => - Object.hash(runtimeType, isRead, isBookmarked, lastPageRead, delete); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$ChapterChangeImplCopyWith<_$ChapterChangeImpl> get copyWith => - __$$ChapterChangeImplCopyWithImpl<_$ChapterChangeImpl>(this, _$identity); - - @override - Map toJson() { - return _$$ChapterChangeImplToJson( - this, - ); - } -} - -abstract class _ChapterChange implements ChapterChange { - factory _ChapterChange( - {final bool? isRead, - final bool? isBookmarked, - final int? lastPageRead, - final bool? delete}) = _$ChapterChangeImpl; - - factory _ChapterChange.fromJson(Map json) = - _$ChapterChangeImpl.fromJson; - - @override - bool? get isRead; - @override - bool? get isBookmarked; - @override - int? get lastPageRead; - @override - bool? get delete; - @override - @JsonKey(ignore: true) - _$$ChapterChangeImplCopyWith<_$ChapterChangeImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/src/features/manga_book/domain/chapter_batch/chapter_batch_model.g.dart b/lib/src/features/manga_book/domain/chapter_batch/chapter_batch_model.g.dart deleted file mode 100644 index 177d18b5..00000000 --- a/lib/src/features/manga_book/domain/chapter_batch/chapter_batch_model.g.dart +++ /dev/null @@ -1,38 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'chapter_batch_model.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$ChapterBatchImpl _$$ChapterBatchImplFromJson(Map json) => - _$ChapterBatchImpl( - chapterIds: - (json['chapterIds'] as List?)?.map((e) => e as int).toList(), - change: json['change'] == null - ? null - : ChapterChange.fromJson(json['change'] as Map), - ); - -Map _$$ChapterBatchImplToJson(_$ChapterBatchImpl instance) => - { - 'chapterIds': instance.chapterIds, - 'change': instance.change?.toJson(), - }; - -_$ChapterChangeImpl _$$ChapterChangeImplFromJson(Map json) => - _$ChapterChangeImpl( - isRead: json['isRead'] as bool?, - isBookmarked: json['isBookmarked'] as bool?, - lastPageRead: json['lastPageRead'] as int?, - delete: json['delete'] as bool?, - ); - -Map _$$ChapterChangeImplToJson(_$ChapterChangeImpl instance) => - { - 'isRead': instance.isRead, - 'isBookmarked': instance.isBookmarked, - 'lastPageRead': instance.lastPageRead, - 'delete': instance.delete, - }; diff --git a/lib/src/features/manga_book/domain/chapter_page/chapter_page_model.dart b/lib/src/features/manga_book/domain/chapter_page/chapter_page_model.dart deleted file mode 100644 index 47b571a4..00000000 --- a/lib/src/features/manga_book/domain/chapter_page/chapter_page_model.dart +++ /dev/null @@ -1,35 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:freezed_annotation/freezed_annotation.dart'; - -import '../chapter/chapter_model.dart'; -import '../manga/manga_model.dart'; - -part 'chapter_page_model.freezed.dart'; -part 'chapter_page_model.g.dart'; - -@freezed -class ChapterMangaPair with _$ChapterMangaPair { - factory ChapterMangaPair({ - Chapter? chapter, - Manga? manga, - }) = _ChapterMangaPair; - - factory ChapterMangaPair.fromJson(Map json) => - _$ChapterMangaPairFromJson(json); -} - -@freezed -class ChapterPage with _$ChapterPage { - factory ChapterPage({ - bool? hasNextPage, - List? page, - }) = _ChapterPage; - - factory ChapterPage.fromJson(Map json) => - _$ChapterPageFromJson(json); -} diff --git a/lib/src/features/manga_book/domain/chapter_page/chapter_page_model.freezed.dart b/lib/src/features/manga_book/domain/chapter_page/chapter_page_model.freezed.dart deleted file mode 100644 index b3ae8faa..00000000 --- a/lib/src/features/manga_book/domain/chapter_page/chapter_page_model.freezed.dart +++ /dev/null @@ -1,365 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'chapter_page_model.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -ChapterMangaPair _$ChapterMangaPairFromJson(Map json) { - return _ChapterMangaPair.fromJson(json); -} - -/// @nodoc -mixin _$ChapterMangaPair { - Chapter? get chapter => throw _privateConstructorUsedError; - Manga? get manga => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $ChapterMangaPairCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $ChapterMangaPairCopyWith<$Res> { - factory $ChapterMangaPairCopyWith( - ChapterMangaPair value, $Res Function(ChapterMangaPair) then) = - _$ChapterMangaPairCopyWithImpl<$Res, ChapterMangaPair>; - @useResult - $Res call({Chapter? chapter, Manga? manga}); - - $ChapterCopyWith<$Res>? get chapter; - $MangaCopyWith<$Res>? get manga; -} - -/// @nodoc -class _$ChapterMangaPairCopyWithImpl<$Res, $Val extends ChapterMangaPair> - implements $ChapterMangaPairCopyWith<$Res> { - _$ChapterMangaPairCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? chapter = freezed, - Object? manga = freezed, - }) { - return _then(_value.copyWith( - chapter: freezed == chapter - ? _value.chapter - : chapter // ignore: cast_nullable_to_non_nullable - as Chapter?, - manga: freezed == manga - ? _value.manga - : manga // ignore: cast_nullable_to_non_nullable - as Manga?, - ) as $Val); - } - - @override - @pragma('vm:prefer-inline') - $ChapterCopyWith<$Res>? get chapter { - if (_value.chapter == null) { - return null; - } - - return $ChapterCopyWith<$Res>(_value.chapter!, (value) { - return _then(_value.copyWith(chapter: value) as $Val); - }); - } - - @override - @pragma('vm:prefer-inline') - $MangaCopyWith<$Res>? get manga { - if (_value.manga == null) { - return null; - } - - return $MangaCopyWith<$Res>(_value.manga!, (value) { - return _then(_value.copyWith(manga: value) as $Val); - }); - } -} - -/// @nodoc -abstract class _$$ChapterMangaPairImplCopyWith<$Res> - implements $ChapterMangaPairCopyWith<$Res> { - factory _$$ChapterMangaPairImplCopyWith(_$ChapterMangaPairImpl value, - $Res Function(_$ChapterMangaPairImpl) then) = - __$$ChapterMangaPairImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({Chapter? chapter, Manga? manga}); - - @override - $ChapterCopyWith<$Res>? get chapter; - @override - $MangaCopyWith<$Res>? get manga; -} - -/// @nodoc -class __$$ChapterMangaPairImplCopyWithImpl<$Res> - extends _$ChapterMangaPairCopyWithImpl<$Res, _$ChapterMangaPairImpl> - implements _$$ChapterMangaPairImplCopyWith<$Res> { - __$$ChapterMangaPairImplCopyWithImpl(_$ChapterMangaPairImpl _value, - $Res Function(_$ChapterMangaPairImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? chapter = freezed, - Object? manga = freezed, - }) { - return _then(_$ChapterMangaPairImpl( - chapter: freezed == chapter - ? _value.chapter - : chapter // ignore: cast_nullable_to_non_nullable - as Chapter?, - manga: freezed == manga - ? _value.manga - : manga // ignore: cast_nullable_to_non_nullable - as Manga?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$ChapterMangaPairImpl implements _ChapterMangaPair { - _$ChapterMangaPairImpl({this.chapter, this.manga}); - - factory _$ChapterMangaPairImpl.fromJson(Map json) => - _$$ChapterMangaPairImplFromJson(json); - - @override - final Chapter? chapter; - @override - final Manga? manga; - - @override - String toString() { - return 'ChapterMangaPair(chapter: $chapter, manga: $manga)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$ChapterMangaPairImpl && - (identical(other.chapter, chapter) || other.chapter == chapter) && - (identical(other.manga, manga) || other.manga == manga)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, chapter, manga); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$ChapterMangaPairImplCopyWith<_$ChapterMangaPairImpl> get copyWith => - __$$ChapterMangaPairImplCopyWithImpl<_$ChapterMangaPairImpl>( - this, _$identity); - - @override - Map toJson() { - return _$$ChapterMangaPairImplToJson( - this, - ); - } -} - -abstract class _ChapterMangaPair implements ChapterMangaPair { - factory _ChapterMangaPair({final Chapter? chapter, final Manga? manga}) = - _$ChapterMangaPairImpl; - - factory _ChapterMangaPair.fromJson(Map json) = - _$ChapterMangaPairImpl.fromJson; - - @override - Chapter? get chapter; - @override - Manga? get manga; - @override - @JsonKey(ignore: true) - _$$ChapterMangaPairImplCopyWith<_$ChapterMangaPairImpl> get copyWith => - throw _privateConstructorUsedError; -} - -ChapterPage _$ChapterPageFromJson(Map json) { - return _ChapterPage.fromJson(json); -} - -/// @nodoc -mixin _$ChapterPage { - bool? get hasNextPage => throw _privateConstructorUsedError; - List? get page => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $ChapterPageCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $ChapterPageCopyWith<$Res> { - factory $ChapterPageCopyWith( - ChapterPage value, $Res Function(ChapterPage) then) = - _$ChapterPageCopyWithImpl<$Res, ChapterPage>; - @useResult - $Res call({bool? hasNextPage, List? page}); -} - -/// @nodoc -class _$ChapterPageCopyWithImpl<$Res, $Val extends ChapterPage> - implements $ChapterPageCopyWith<$Res> { - _$ChapterPageCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? hasNextPage = freezed, - Object? page = freezed, - }) { - return _then(_value.copyWith( - hasNextPage: freezed == hasNextPage - ? _value.hasNextPage - : hasNextPage // ignore: cast_nullable_to_non_nullable - as bool?, - page: freezed == page - ? _value.page - : page // ignore: cast_nullable_to_non_nullable - as List?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$ChapterPageImplCopyWith<$Res> - implements $ChapterPageCopyWith<$Res> { - factory _$$ChapterPageImplCopyWith( - _$ChapterPageImpl value, $Res Function(_$ChapterPageImpl) then) = - __$$ChapterPageImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({bool? hasNextPage, List? page}); -} - -/// @nodoc -class __$$ChapterPageImplCopyWithImpl<$Res> - extends _$ChapterPageCopyWithImpl<$Res, _$ChapterPageImpl> - implements _$$ChapterPageImplCopyWith<$Res> { - __$$ChapterPageImplCopyWithImpl( - _$ChapterPageImpl _value, $Res Function(_$ChapterPageImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? hasNextPage = freezed, - Object? page = freezed, - }) { - return _then(_$ChapterPageImpl( - hasNextPage: freezed == hasNextPage - ? _value.hasNextPage - : hasNextPage // ignore: cast_nullable_to_non_nullable - as bool?, - page: freezed == page - ? _value._page - : page // ignore: cast_nullable_to_non_nullable - as List?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$ChapterPageImpl implements _ChapterPage { - _$ChapterPageImpl({this.hasNextPage, final List? page}) - : _page = page; - - factory _$ChapterPageImpl.fromJson(Map json) => - _$$ChapterPageImplFromJson(json); - - @override - final bool? hasNextPage; - final List? _page; - @override - List? get page { - final value = _page; - if (value == null) return null; - if (_page is EqualUnmodifiableListView) return _page; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(value); - } - - @override - String toString() { - return 'ChapterPage(hasNextPage: $hasNextPage, page: $page)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$ChapterPageImpl && - (identical(other.hasNextPage, hasNextPage) || - other.hasNextPage == hasNextPage) && - const DeepCollectionEquality().equals(other._page, _page)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, hasNextPage, const DeepCollectionEquality().hash(_page)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$ChapterPageImplCopyWith<_$ChapterPageImpl> get copyWith => - __$$ChapterPageImplCopyWithImpl<_$ChapterPageImpl>(this, _$identity); - - @override - Map toJson() { - return _$$ChapterPageImplToJson( - this, - ); - } -} - -abstract class _ChapterPage implements ChapterPage { - factory _ChapterPage( - {final bool? hasNextPage, - final List? page}) = _$ChapterPageImpl; - - factory _ChapterPage.fromJson(Map json) = - _$ChapterPageImpl.fromJson; - - @override - bool? get hasNextPage; - @override - List? get page; - @override - @JsonKey(ignore: true) - _$$ChapterPageImplCopyWith<_$ChapterPageImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/src/features/manga_book/domain/chapter_page/chapter_page_model.g.dart b/lib/src/features/manga_book/domain/chapter_page/chapter_page_model.g.dart deleted file mode 100644 index cdbe439a..00000000 --- a/lib/src/features/manga_book/domain/chapter_page/chapter_page_model.g.dart +++ /dev/null @@ -1,39 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'chapter_page_model.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$ChapterMangaPairImpl _$$ChapterMangaPairImplFromJson( - Map json) => - _$ChapterMangaPairImpl( - chapter: json['chapter'] == null - ? null - : Chapter.fromJson(json['chapter'] as Map), - manga: json['manga'] == null - ? null - : Manga.fromJson(json['manga'] as Map), - ); - -Map _$$ChapterMangaPairImplToJson( - _$ChapterMangaPairImpl instance) => - { - 'chapter': instance.chapter?.toJson(), - 'manga': instance.manga?.toJson(), - }; - -_$ChapterPageImpl _$$ChapterPageImplFromJson(Map json) => - _$ChapterPageImpl( - hasNextPage: json['hasNextPage'] as bool?, - page: (json['page'] as List?) - ?.map((e) => ChapterMangaPair.fromJson(e as Map)) - .toList(), - ); - -Map _$$ChapterPageImplToJson(_$ChapterPageImpl instance) => - { - 'hasNextPage': instance.hasNextPage, - 'page': instance.page?.map((e) => e.toJson()).toList(), - }; diff --git a/lib/src/features/manga_book/domain/chapter_patch/chapter_put_model.dart b/lib/src/features/manga_book/domain/chapter_patch/chapter_put_model.dart deleted file mode 100644 index 28ef966b..00000000 --- a/lib/src/features/manga_book/domain/chapter_patch/chapter_put_model.dart +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:freezed_annotation/freezed_annotation.dart'; - -part 'chapter_put_model.freezed.dart'; -part 'chapter_put_model.g.dart'; - -@freezed -class ChapterPut with _$ChapterPut { - factory ChapterPut({ - bool? read, - bool? bookmarked, - bool? markPrevRead, - int? lastPageRead, - }) = _ChapterPut; - - factory ChapterPut.fromJson(Map json) => - _$ChapterPutFromJson(json); -} diff --git a/lib/src/features/manga_book/domain/chapter_patch/chapter_put_model.freezed.dart b/lib/src/features/manga_book/domain/chapter_patch/chapter_put_model.freezed.dart deleted file mode 100644 index 3a0ecdd8..00000000 --- a/lib/src/features/manga_book/domain/chapter_patch/chapter_put_model.freezed.dart +++ /dev/null @@ -1,210 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'chapter_put_model.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -ChapterPut _$ChapterPutFromJson(Map json) { - return _ChapterPut.fromJson(json); -} - -/// @nodoc -mixin _$ChapterPut { - bool? get read => throw _privateConstructorUsedError; - bool? get bookmarked => throw _privateConstructorUsedError; - bool? get markPrevRead => throw _privateConstructorUsedError; - int? get lastPageRead => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $ChapterPutCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $ChapterPutCopyWith<$Res> { - factory $ChapterPutCopyWith( - ChapterPut value, $Res Function(ChapterPut) then) = - _$ChapterPutCopyWithImpl<$Res, ChapterPut>; - @useResult - $Res call( - {bool? read, bool? bookmarked, bool? markPrevRead, int? lastPageRead}); -} - -/// @nodoc -class _$ChapterPutCopyWithImpl<$Res, $Val extends ChapterPut> - implements $ChapterPutCopyWith<$Res> { - _$ChapterPutCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? read = freezed, - Object? bookmarked = freezed, - Object? markPrevRead = freezed, - Object? lastPageRead = freezed, - }) { - return _then(_value.copyWith( - read: freezed == read - ? _value.read - : read // ignore: cast_nullable_to_non_nullable - as bool?, - bookmarked: freezed == bookmarked - ? _value.bookmarked - : bookmarked // ignore: cast_nullable_to_non_nullable - as bool?, - markPrevRead: freezed == markPrevRead - ? _value.markPrevRead - : markPrevRead // ignore: cast_nullable_to_non_nullable - as bool?, - lastPageRead: freezed == lastPageRead - ? _value.lastPageRead - : lastPageRead // ignore: cast_nullable_to_non_nullable - as int?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$ChapterPutImplCopyWith<$Res> - implements $ChapterPutCopyWith<$Res> { - factory _$$ChapterPutImplCopyWith( - _$ChapterPutImpl value, $Res Function(_$ChapterPutImpl) then) = - __$$ChapterPutImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {bool? read, bool? bookmarked, bool? markPrevRead, int? lastPageRead}); -} - -/// @nodoc -class __$$ChapterPutImplCopyWithImpl<$Res> - extends _$ChapterPutCopyWithImpl<$Res, _$ChapterPutImpl> - implements _$$ChapterPutImplCopyWith<$Res> { - __$$ChapterPutImplCopyWithImpl( - _$ChapterPutImpl _value, $Res Function(_$ChapterPutImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? read = freezed, - Object? bookmarked = freezed, - Object? markPrevRead = freezed, - Object? lastPageRead = freezed, - }) { - return _then(_$ChapterPutImpl( - read: freezed == read - ? _value.read - : read // ignore: cast_nullable_to_non_nullable - as bool?, - bookmarked: freezed == bookmarked - ? _value.bookmarked - : bookmarked // ignore: cast_nullable_to_non_nullable - as bool?, - markPrevRead: freezed == markPrevRead - ? _value.markPrevRead - : markPrevRead // ignore: cast_nullable_to_non_nullable - as bool?, - lastPageRead: freezed == lastPageRead - ? _value.lastPageRead - : lastPageRead // ignore: cast_nullable_to_non_nullable - as int?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$ChapterPutImpl implements _ChapterPut { - _$ChapterPutImpl( - {this.read, this.bookmarked, this.markPrevRead, this.lastPageRead}); - - factory _$ChapterPutImpl.fromJson(Map json) => - _$$ChapterPutImplFromJson(json); - - @override - final bool? read; - @override - final bool? bookmarked; - @override - final bool? markPrevRead; - @override - final int? lastPageRead; - - @override - String toString() { - return 'ChapterPut(read: $read, bookmarked: $bookmarked, markPrevRead: $markPrevRead, lastPageRead: $lastPageRead)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$ChapterPutImpl && - (identical(other.read, read) || other.read == read) && - (identical(other.bookmarked, bookmarked) || - other.bookmarked == bookmarked) && - (identical(other.markPrevRead, markPrevRead) || - other.markPrevRead == markPrevRead) && - (identical(other.lastPageRead, lastPageRead) || - other.lastPageRead == lastPageRead)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => - Object.hash(runtimeType, read, bookmarked, markPrevRead, lastPageRead); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$ChapterPutImplCopyWith<_$ChapterPutImpl> get copyWith => - __$$ChapterPutImplCopyWithImpl<_$ChapterPutImpl>(this, _$identity); - - @override - Map toJson() { - return _$$ChapterPutImplToJson( - this, - ); - } -} - -abstract class _ChapterPut implements ChapterPut { - factory _ChapterPut( - {final bool? read, - final bool? bookmarked, - final bool? markPrevRead, - final int? lastPageRead}) = _$ChapterPutImpl; - - factory _ChapterPut.fromJson(Map json) = - _$ChapterPutImpl.fromJson; - - @override - bool? get read; - @override - bool? get bookmarked; - @override - bool? get markPrevRead; - @override - int? get lastPageRead; - @override - @JsonKey(ignore: true) - _$$ChapterPutImplCopyWith<_$ChapterPutImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/src/features/manga_book/domain/chapter_patch/chapter_put_model.g.dart b/lib/src/features/manga_book/domain/chapter_patch/chapter_put_model.g.dart deleted file mode 100644 index 84e11d0c..00000000 --- a/lib/src/features/manga_book/domain/chapter_patch/chapter_put_model.g.dart +++ /dev/null @@ -1,23 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'chapter_put_model.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$ChapterPutImpl _$$ChapterPutImplFromJson(Map json) => - _$ChapterPutImpl( - read: json['read'] as bool?, - bookmarked: json['bookmarked'] as bool?, - markPrevRead: json['markPrevRead'] as bool?, - lastPageRead: json['lastPageRead'] as int?, - ); - -Map _$$ChapterPutImplToJson(_$ChapterPutImpl instance) => - { - 'read': instance.read, - 'bookmarked': instance.bookmarked, - 'markPrevRead': instance.markPrevRead, - 'lastPageRead': instance.lastPageRead, - }; diff --git a/lib/src/features/manga_book/domain/downloads/downloads_model.dart b/lib/src/features/manga_book/domain/downloads/downloads_model.dart deleted file mode 100644 index a5643dc8..00000000 --- a/lib/src/features/manga_book/domain/downloads/downloads_model.dart +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:freezed_annotation/freezed_annotation.dart'; - -import '../downloads_queue/downloads_queue_model.dart'; - -part 'downloads_model.freezed.dart'; -part 'downloads_model.g.dart'; - -@freezed -class Downloads with _$Downloads { - factory Downloads({ - List? queue, - String? status, - }) = _Downloads; - - factory Downloads.fromJson(Map json) => - _$DownloadsFromJson(json); -} diff --git a/lib/src/features/manga_book/domain/downloads/downloads_model.freezed.dart b/lib/src/features/manga_book/domain/downloads/downloads_model.freezed.dart deleted file mode 100644 index 9daf3849..00000000 --- a/lib/src/features/manga_book/domain/downloads/downloads_model.freezed.dart +++ /dev/null @@ -1,178 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'downloads_model.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -Downloads _$DownloadsFromJson(Map json) { - return _Downloads.fromJson(json); -} - -/// @nodoc -mixin _$Downloads { - List? get queue => throw _privateConstructorUsedError; - String? get status => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $DownloadsCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $DownloadsCopyWith<$Res> { - factory $DownloadsCopyWith(Downloads value, $Res Function(Downloads) then) = - _$DownloadsCopyWithImpl<$Res, Downloads>; - @useResult - $Res call({List? queue, String? status}); -} - -/// @nodoc -class _$DownloadsCopyWithImpl<$Res, $Val extends Downloads> - implements $DownloadsCopyWith<$Res> { - _$DownloadsCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? queue = freezed, - Object? status = freezed, - }) { - return _then(_value.copyWith( - queue: freezed == queue - ? _value.queue - : queue // ignore: cast_nullable_to_non_nullable - as List?, - status: freezed == status - ? _value.status - : status // ignore: cast_nullable_to_non_nullable - as String?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$DownloadsImplCopyWith<$Res> - implements $DownloadsCopyWith<$Res> { - factory _$$DownloadsImplCopyWith( - _$DownloadsImpl value, $Res Function(_$DownloadsImpl) then) = - __$$DownloadsImplCopyWithImpl<$Res>; - @override - @useResult - $Res call({List? queue, String? status}); -} - -/// @nodoc -class __$$DownloadsImplCopyWithImpl<$Res> - extends _$DownloadsCopyWithImpl<$Res, _$DownloadsImpl> - implements _$$DownloadsImplCopyWith<$Res> { - __$$DownloadsImplCopyWithImpl( - _$DownloadsImpl _value, $Res Function(_$DownloadsImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? queue = freezed, - Object? status = freezed, - }) { - return _then(_$DownloadsImpl( - queue: freezed == queue - ? _value._queue - : queue // ignore: cast_nullable_to_non_nullable - as List?, - status: freezed == status - ? _value.status - : status // ignore: cast_nullable_to_non_nullable - as String?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$DownloadsImpl implements _Downloads { - _$DownloadsImpl({final List? queue, this.status}) - : _queue = queue; - - factory _$DownloadsImpl.fromJson(Map json) => - _$$DownloadsImplFromJson(json); - - final List? _queue; - @override - List? get queue { - final value = _queue; - if (value == null) return null; - if (_queue is EqualUnmodifiableListView) return _queue; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(value); - } - - @override - final String? status; - - @override - String toString() { - return 'Downloads(queue: $queue, status: $status)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$DownloadsImpl && - const DeepCollectionEquality().equals(other._queue, _queue) && - (identical(other.status, status) || other.status == status)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, const DeepCollectionEquality().hash(_queue), status); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$DownloadsImplCopyWith<_$DownloadsImpl> get copyWith => - __$$DownloadsImplCopyWithImpl<_$DownloadsImpl>(this, _$identity); - - @override - Map toJson() { - return _$$DownloadsImplToJson( - this, - ); - } -} - -abstract class _Downloads implements Downloads { - factory _Downloads( - {final List? queue, - final String? status}) = _$DownloadsImpl; - - factory _Downloads.fromJson(Map json) = - _$DownloadsImpl.fromJson; - - @override - List? get queue; - @override - String? get status; - @override - @JsonKey(ignore: true) - _$$DownloadsImplCopyWith<_$DownloadsImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/src/features/manga_book/domain/downloads/downloads_model.g.dart b/lib/src/features/manga_book/domain/downloads/downloads_model.g.dart deleted file mode 100644 index d89cc904..00000000 --- a/lib/src/features/manga_book/domain/downloads/downloads_model.g.dart +++ /dev/null @@ -1,21 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'downloads_model.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$DownloadsImpl _$$DownloadsImplFromJson(Map json) => - _$DownloadsImpl( - queue: (json['queue'] as List?) - ?.map((e) => DownloadsQueue.fromJson(e as Map)) - .toList(), - status: json['status'] as String?, - ); - -Map _$$DownloadsImplToJson(_$DownloadsImpl instance) => - { - 'queue': instance.queue?.map((e) => e.toJson()).toList(), - 'status': instance.status, - }; diff --git a/lib/src/features/manga_book/domain/downloads_queue/downloads_queue_model.dart b/lib/src/features/manga_book/domain/downloads_queue/downloads_queue_model.dart deleted file mode 100644 index b807d7d9..00000000 --- a/lib/src/features/manga_book/domain/downloads_queue/downloads_queue_model.dart +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:freezed_annotation/freezed_annotation.dart'; - -import '../chapter/chapter_model.dart'; -import '../manga/manga_model.dart'; - -part 'downloads_queue_model.freezed.dart'; -part 'downloads_queue_model.g.dart'; - -@freezed -class DownloadsQueue with _$DownloadsQueue { - factory DownloadsQueue({ - Chapter? chapter, - int? chapterIndex, - Manga? manga, - int? mangaId, - double? progress, - String? state, - int? tries, - }) = _DownloadsQueue; - - factory DownloadsQueue.fromJson(Map json) => - _$DownloadsQueueFromJson(json); -} diff --git a/lib/src/features/manga_book/domain/downloads_queue/downloads_queue_model.freezed.dart b/lib/src/features/manga_book/domain/downloads_queue/downloads_queue_model.freezed.dart deleted file mode 100644 index b757f8bb..00000000 --- a/lib/src/features/manga_book/domain/downloads_queue/downloads_queue_model.freezed.dart +++ /dev/null @@ -1,311 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'downloads_queue_model.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -DownloadsQueue _$DownloadsQueueFromJson(Map json) { - return _DownloadsQueue.fromJson(json); -} - -/// @nodoc -mixin _$DownloadsQueue { - Chapter? get chapter => throw _privateConstructorUsedError; - int? get chapterIndex => throw _privateConstructorUsedError; - Manga? get manga => throw _privateConstructorUsedError; - int? get mangaId => throw _privateConstructorUsedError; - double? get progress => throw _privateConstructorUsedError; - String? get state => throw _privateConstructorUsedError; - int? get tries => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $DownloadsQueueCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $DownloadsQueueCopyWith<$Res> { - factory $DownloadsQueueCopyWith( - DownloadsQueue value, $Res Function(DownloadsQueue) then) = - _$DownloadsQueueCopyWithImpl<$Res, DownloadsQueue>; - @useResult - $Res call( - {Chapter? chapter, - int? chapterIndex, - Manga? manga, - int? mangaId, - double? progress, - String? state, - int? tries}); - - $ChapterCopyWith<$Res>? get chapter; - $MangaCopyWith<$Res>? get manga; -} - -/// @nodoc -class _$DownloadsQueueCopyWithImpl<$Res, $Val extends DownloadsQueue> - implements $DownloadsQueueCopyWith<$Res> { - _$DownloadsQueueCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? chapter = freezed, - Object? chapterIndex = freezed, - Object? manga = freezed, - Object? mangaId = freezed, - Object? progress = freezed, - Object? state = freezed, - Object? tries = freezed, - }) { - return _then(_value.copyWith( - chapter: freezed == chapter - ? _value.chapter - : chapter // ignore: cast_nullable_to_non_nullable - as Chapter?, - chapterIndex: freezed == chapterIndex - ? _value.chapterIndex - : chapterIndex // ignore: cast_nullable_to_non_nullable - as int?, - manga: freezed == manga - ? _value.manga - : manga // ignore: cast_nullable_to_non_nullable - as Manga?, - mangaId: freezed == mangaId - ? _value.mangaId - : mangaId // ignore: cast_nullable_to_non_nullable - as int?, - progress: freezed == progress - ? _value.progress - : progress // ignore: cast_nullable_to_non_nullable - as double?, - state: freezed == state - ? _value.state - : state // ignore: cast_nullable_to_non_nullable - as String?, - tries: freezed == tries - ? _value.tries - : tries // ignore: cast_nullable_to_non_nullable - as int?, - ) as $Val); - } - - @override - @pragma('vm:prefer-inline') - $ChapterCopyWith<$Res>? get chapter { - if (_value.chapter == null) { - return null; - } - - return $ChapterCopyWith<$Res>(_value.chapter!, (value) { - return _then(_value.copyWith(chapter: value) as $Val); - }); - } - - @override - @pragma('vm:prefer-inline') - $MangaCopyWith<$Res>? get manga { - if (_value.manga == null) { - return null; - } - - return $MangaCopyWith<$Res>(_value.manga!, (value) { - return _then(_value.copyWith(manga: value) as $Val); - }); - } -} - -/// @nodoc -abstract class _$$DownloadsQueueImplCopyWith<$Res> - implements $DownloadsQueueCopyWith<$Res> { - factory _$$DownloadsQueueImplCopyWith(_$DownloadsQueueImpl value, - $Res Function(_$DownloadsQueueImpl) then) = - __$$DownloadsQueueImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {Chapter? chapter, - int? chapterIndex, - Manga? manga, - int? mangaId, - double? progress, - String? state, - int? tries}); - - @override - $ChapterCopyWith<$Res>? get chapter; - @override - $MangaCopyWith<$Res>? get manga; -} - -/// @nodoc -class __$$DownloadsQueueImplCopyWithImpl<$Res> - extends _$DownloadsQueueCopyWithImpl<$Res, _$DownloadsQueueImpl> - implements _$$DownloadsQueueImplCopyWith<$Res> { - __$$DownloadsQueueImplCopyWithImpl( - _$DownloadsQueueImpl _value, $Res Function(_$DownloadsQueueImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? chapter = freezed, - Object? chapterIndex = freezed, - Object? manga = freezed, - Object? mangaId = freezed, - Object? progress = freezed, - Object? state = freezed, - Object? tries = freezed, - }) { - return _then(_$DownloadsQueueImpl( - chapter: freezed == chapter - ? _value.chapter - : chapter // ignore: cast_nullable_to_non_nullable - as Chapter?, - chapterIndex: freezed == chapterIndex - ? _value.chapterIndex - : chapterIndex // ignore: cast_nullable_to_non_nullable - as int?, - manga: freezed == manga - ? _value.manga - : manga // ignore: cast_nullable_to_non_nullable - as Manga?, - mangaId: freezed == mangaId - ? _value.mangaId - : mangaId // ignore: cast_nullable_to_non_nullable - as int?, - progress: freezed == progress - ? _value.progress - : progress // ignore: cast_nullable_to_non_nullable - as double?, - state: freezed == state - ? _value.state - : state // ignore: cast_nullable_to_non_nullable - as String?, - tries: freezed == tries - ? _value.tries - : tries // ignore: cast_nullable_to_non_nullable - as int?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$DownloadsQueueImpl implements _DownloadsQueue { - _$DownloadsQueueImpl( - {this.chapter, - this.chapterIndex, - this.manga, - this.mangaId, - this.progress, - this.state, - this.tries}); - - factory _$DownloadsQueueImpl.fromJson(Map json) => - _$$DownloadsQueueImplFromJson(json); - - @override - final Chapter? chapter; - @override - final int? chapterIndex; - @override - final Manga? manga; - @override - final int? mangaId; - @override - final double? progress; - @override - final String? state; - @override - final int? tries; - - @override - String toString() { - return 'DownloadsQueue(chapter: $chapter, chapterIndex: $chapterIndex, manga: $manga, mangaId: $mangaId, progress: $progress, state: $state, tries: $tries)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$DownloadsQueueImpl && - (identical(other.chapter, chapter) || other.chapter == chapter) && - (identical(other.chapterIndex, chapterIndex) || - other.chapterIndex == chapterIndex) && - (identical(other.manga, manga) || other.manga == manga) && - (identical(other.mangaId, mangaId) || other.mangaId == mangaId) && - (identical(other.progress, progress) || - other.progress == progress) && - (identical(other.state, state) || other.state == state) && - (identical(other.tries, tries) || other.tries == tries)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash(runtimeType, chapter, chapterIndex, manga, - mangaId, progress, state, tries); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$DownloadsQueueImplCopyWith<_$DownloadsQueueImpl> get copyWith => - __$$DownloadsQueueImplCopyWithImpl<_$DownloadsQueueImpl>( - this, _$identity); - - @override - Map toJson() { - return _$$DownloadsQueueImplToJson( - this, - ); - } -} - -abstract class _DownloadsQueue implements DownloadsQueue { - factory _DownloadsQueue( - {final Chapter? chapter, - final int? chapterIndex, - final Manga? manga, - final int? mangaId, - final double? progress, - final String? state, - final int? tries}) = _$DownloadsQueueImpl; - - factory _DownloadsQueue.fromJson(Map json) = - _$DownloadsQueueImpl.fromJson; - - @override - Chapter? get chapter; - @override - int? get chapterIndex; - @override - Manga? get manga; - @override - int? get mangaId; - @override - double? get progress; - @override - String? get state; - @override - int? get tries; - @override - @JsonKey(ignore: true) - _$$DownloadsQueueImplCopyWith<_$DownloadsQueueImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/src/features/manga_book/domain/downloads_queue/downloads_queue_model.g.dart b/lib/src/features/manga_book/domain/downloads_queue/downloads_queue_model.g.dart deleted file mode 100644 index 9af8224d..00000000 --- a/lib/src/features/manga_book/domain/downloads_queue/downloads_queue_model.g.dart +++ /dev/null @@ -1,34 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'downloads_queue_model.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$DownloadsQueueImpl _$$DownloadsQueueImplFromJson(Map json) => - _$DownloadsQueueImpl( - chapter: json['chapter'] == null - ? null - : Chapter.fromJson(json['chapter'] as Map), - chapterIndex: json['chapterIndex'] as int?, - manga: json['manga'] == null - ? null - : Manga.fromJson(json['manga'] as Map), - mangaId: json['mangaId'] as int?, - progress: (json['progress'] as num?)?.toDouble(), - state: json['state'] as String?, - tries: json['tries'] as int?, - ); - -Map _$$DownloadsQueueImplToJson( - _$DownloadsQueueImpl instance) => - { - 'chapter': instance.chapter?.toJson(), - 'chapterIndex': instance.chapterIndex, - 'manga': instance.manga?.toJson(), - 'mangaId': instance.mangaId, - 'progress': instance.progress, - 'state': instance.state, - 'tries': instance.tries, - }; diff --git a/lib/src/features/manga_book/domain/manga/manga_model.dart b/lib/src/features/manga_book/domain/manga/manga_model.dart deleted file mode 100644 index 83670faa..00000000 --- a/lib/src/features/manga_book/domain/manga/manga_model.dart +++ /dev/null @@ -1,111 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:freezed_annotation/freezed_annotation.dart'; - -import '../../../../constants/enum.dart'; -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../browse_center/domain/source/source_model.dart'; -import '../chapter/chapter_model.dart'; - -part 'manga_model.freezed.dart'; -part 'manga_model.g.dart'; - -@freezed -class Manga with _$Manga { - Manga._(); - factory Manga({ - String? artist, - String? author, - String? description, - int? downloadCount, - int? chapterCount, - int? lastReadAt, - Chapter? lastChapterRead, - bool? freshData, - List? genre, - bool? inLibrary, - int? id, - int? inLibraryAt, - bool? initialized, - String? realUrl, - Source? source, - String? sourceId, - @JsonKey(fromJson: MangaStatus.fromJson, toJson: MangaStatus.toJson) - MangaStatus? status, - String? thumbnailUrl, - int? thumbnailUrlLastFetched, - String? title, - int? unreadCount, - int? lastFetchedAt, - int? chaptersLastFetchedAt, - String? url, - MangaMeta? meta, - }) = _Manga; - - factory Manga.fromJson(Map json) => _$MangaFromJson(json); - - bool genreMatches( - List? mangaGenreList, List? queryGenreList) { - Set? mangaSet = mangaGenreList?.map((e) => e.toLowerCase()).toSet(); - Set? querySet = - queryGenreList?.map((e) => e.toLowerCase().trim()).toSet(); - return (mangaSet?.containsAll(querySet ?? {})).ifNull(true); - } - - bool query([String? query]) { - return title.query(query) || - author.query(query) || - genreMatches(genre, query?.split(',')); - } -} - -@freezed -class MangaMeta with _$MangaMeta { - factory MangaMeta({ - @JsonKey( - name: "flutter_readerNavigationLayoutInvert", - fromJson: MangaMeta.fromJsonToBool, - ) - bool? invertTap, - @JsonKey(name: "flutter_readerNavigationLayout") - ReaderNavigationLayout? readerNavigationLayout, - @JsonKey(name: "flutter_readerMode") ReaderMode? readerMode, - @JsonKey( - name: "flutter_readerPadding", - fromJson: MangaMeta.fromJsonToDouble, - ) - double? readerPadding, - @JsonKey( - name: "flutter_readerMagnifierSize", - fromJson: MangaMeta.fromJsonToDouble, - ) - double? readerMagnifierSize, - @JsonKey(name: "flutter_scanlator") String? scanlator, - }) = _MangaMeta; - - static bool? fromJsonToBool(dynamic val) => val != null && val is String - ? val.toLowerCase().compareTo(true.toString()) == 0 - : null; - - static double? fromJsonToDouble(dynamic val) => - val != null && val is String ? double.parse(val) : null; - factory MangaMeta.fromJson(Map json) => - _$MangaMetaFromJson(json); -} - -enum MangaMetaKeys { - invertTap("flutter_readerNavigationLayoutInvert"), - readerNavigationLayout("flutter_readerNavigationLayout"), - readerMode("flutter_readerMode"), - readerPadding("flutter_readerPadding"), - readerMagnifierSize("flutter_readerMagnifierSize"), - scanlator("flutter_scanlator"), - ; - - const MangaMetaKeys(this.key); - final String key; -} diff --git a/lib/src/features/manga_book/domain/manga/manga_model.freezed.dart b/lib/src/features/manga_book/domain/manga/manga_model.freezed.dart deleted file mode 100644 index ba360523..00000000 --- a/lib/src/features/manga_book/domain/manga/manga_model.freezed.dart +++ /dev/null @@ -1,1056 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'manga_model.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -Manga _$MangaFromJson(Map json) { - return _Manga.fromJson(json); -} - -/// @nodoc -mixin _$Manga { - String? get artist => throw _privateConstructorUsedError; - String? get author => throw _privateConstructorUsedError; - String? get description => throw _privateConstructorUsedError; - int? get downloadCount => throw _privateConstructorUsedError; - int? get chapterCount => throw _privateConstructorUsedError; - int? get lastReadAt => throw _privateConstructorUsedError; - Chapter? get lastChapterRead => throw _privateConstructorUsedError; - bool? get freshData => throw _privateConstructorUsedError; - List? get genre => throw _privateConstructorUsedError; - bool? get inLibrary => throw _privateConstructorUsedError; - int? get id => throw _privateConstructorUsedError; - int? get inLibraryAt => throw _privateConstructorUsedError; - bool? get initialized => throw _privateConstructorUsedError; - String? get realUrl => throw _privateConstructorUsedError; - Source? get source => throw _privateConstructorUsedError; - String? get sourceId => throw _privateConstructorUsedError; - @JsonKey(fromJson: MangaStatus.fromJson, toJson: MangaStatus.toJson) - MangaStatus? get status => throw _privateConstructorUsedError; - String? get thumbnailUrl => throw _privateConstructorUsedError; - int? get thumbnailUrlLastFetched => throw _privateConstructorUsedError; - String? get title => throw _privateConstructorUsedError; - int? get unreadCount => throw _privateConstructorUsedError; - int? get lastFetchedAt => throw _privateConstructorUsedError; - int? get chaptersLastFetchedAt => throw _privateConstructorUsedError; - String? get url => throw _privateConstructorUsedError; - MangaMeta? get meta => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $MangaCopyWith get copyWith => throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $MangaCopyWith<$Res> { - factory $MangaCopyWith(Manga value, $Res Function(Manga) then) = - _$MangaCopyWithImpl<$Res, Manga>; - @useResult - $Res call( - {String? artist, - String? author, - String? description, - int? downloadCount, - int? chapterCount, - int? lastReadAt, - Chapter? lastChapterRead, - bool? freshData, - List? genre, - bool? inLibrary, - int? id, - int? inLibraryAt, - bool? initialized, - String? realUrl, - Source? source, - String? sourceId, - @JsonKey(fromJson: MangaStatus.fromJson, toJson: MangaStatus.toJson) - MangaStatus? status, - String? thumbnailUrl, - int? thumbnailUrlLastFetched, - String? title, - int? unreadCount, - int? lastFetchedAt, - int? chaptersLastFetchedAt, - String? url, - MangaMeta? meta}); - - $ChapterCopyWith<$Res>? get lastChapterRead; - $SourceCopyWith<$Res>? get source; - $MangaMetaCopyWith<$Res>? get meta; -} - -/// @nodoc -class _$MangaCopyWithImpl<$Res, $Val extends Manga> - implements $MangaCopyWith<$Res> { - _$MangaCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? artist = freezed, - Object? author = freezed, - Object? description = freezed, - Object? downloadCount = freezed, - Object? chapterCount = freezed, - Object? lastReadAt = freezed, - Object? lastChapterRead = freezed, - Object? freshData = freezed, - Object? genre = freezed, - Object? inLibrary = freezed, - Object? id = freezed, - Object? inLibraryAt = freezed, - Object? initialized = freezed, - Object? realUrl = freezed, - Object? source = freezed, - Object? sourceId = freezed, - Object? status = freezed, - Object? thumbnailUrl = freezed, - Object? thumbnailUrlLastFetched = freezed, - Object? title = freezed, - Object? unreadCount = freezed, - Object? lastFetchedAt = freezed, - Object? chaptersLastFetchedAt = freezed, - Object? url = freezed, - Object? meta = freezed, - }) { - return _then(_value.copyWith( - artist: freezed == artist - ? _value.artist - : artist // ignore: cast_nullable_to_non_nullable - as String?, - author: freezed == author - ? _value.author - : author // ignore: cast_nullable_to_non_nullable - as String?, - description: freezed == description - ? _value.description - : description // ignore: cast_nullable_to_non_nullable - as String?, - downloadCount: freezed == downloadCount - ? _value.downloadCount - : downloadCount // ignore: cast_nullable_to_non_nullable - as int?, - chapterCount: freezed == chapterCount - ? _value.chapterCount - : chapterCount // ignore: cast_nullable_to_non_nullable - as int?, - lastReadAt: freezed == lastReadAt - ? _value.lastReadAt - : lastReadAt // ignore: cast_nullable_to_non_nullable - as int?, - lastChapterRead: freezed == lastChapterRead - ? _value.lastChapterRead - : lastChapterRead // ignore: cast_nullable_to_non_nullable - as Chapter?, - freshData: freezed == freshData - ? _value.freshData - : freshData // ignore: cast_nullable_to_non_nullable - as bool?, - genre: freezed == genre - ? _value.genre - : genre // ignore: cast_nullable_to_non_nullable - as List?, - inLibrary: freezed == inLibrary - ? _value.inLibrary - : inLibrary // ignore: cast_nullable_to_non_nullable - as bool?, - id: freezed == id - ? _value.id - : id // ignore: cast_nullable_to_non_nullable - as int?, - inLibraryAt: freezed == inLibraryAt - ? _value.inLibraryAt - : inLibraryAt // ignore: cast_nullable_to_non_nullable - as int?, - initialized: freezed == initialized - ? _value.initialized - : initialized // ignore: cast_nullable_to_non_nullable - as bool?, - realUrl: freezed == realUrl - ? _value.realUrl - : realUrl // ignore: cast_nullable_to_non_nullable - as String?, - source: freezed == source - ? _value.source - : source // ignore: cast_nullable_to_non_nullable - as Source?, - sourceId: freezed == sourceId - ? _value.sourceId - : sourceId // ignore: cast_nullable_to_non_nullable - as String?, - status: freezed == status - ? _value.status - : status // ignore: cast_nullable_to_non_nullable - as MangaStatus?, - thumbnailUrl: freezed == thumbnailUrl - ? _value.thumbnailUrl - : thumbnailUrl // ignore: cast_nullable_to_non_nullable - as String?, - thumbnailUrlLastFetched: freezed == thumbnailUrlLastFetched - ? _value.thumbnailUrlLastFetched - : thumbnailUrlLastFetched // ignore: cast_nullable_to_non_nullable - as int?, - title: freezed == title - ? _value.title - : title // ignore: cast_nullable_to_non_nullable - as String?, - unreadCount: freezed == unreadCount - ? _value.unreadCount - : unreadCount // ignore: cast_nullable_to_non_nullable - as int?, - lastFetchedAt: freezed == lastFetchedAt - ? _value.lastFetchedAt - : lastFetchedAt // ignore: cast_nullable_to_non_nullable - as int?, - chaptersLastFetchedAt: freezed == chaptersLastFetchedAt - ? _value.chaptersLastFetchedAt - : chaptersLastFetchedAt // ignore: cast_nullable_to_non_nullable - as int?, - url: freezed == url - ? _value.url - : url // ignore: cast_nullable_to_non_nullable - as String?, - meta: freezed == meta - ? _value.meta - : meta // ignore: cast_nullable_to_non_nullable - as MangaMeta?, - ) as $Val); - } - - @override - @pragma('vm:prefer-inline') - $ChapterCopyWith<$Res>? get lastChapterRead { - if (_value.lastChapterRead == null) { - return null; - } - - return $ChapterCopyWith<$Res>(_value.lastChapterRead!, (value) { - return _then(_value.copyWith(lastChapterRead: value) as $Val); - }); - } - - @override - @pragma('vm:prefer-inline') - $SourceCopyWith<$Res>? get source { - if (_value.source == null) { - return null; - } - - return $SourceCopyWith<$Res>(_value.source!, (value) { - return _then(_value.copyWith(source: value) as $Val); - }); - } - - @override - @pragma('vm:prefer-inline') - $MangaMetaCopyWith<$Res>? get meta { - if (_value.meta == null) { - return null; - } - - return $MangaMetaCopyWith<$Res>(_value.meta!, (value) { - return _then(_value.copyWith(meta: value) as $Val); - }); - } -} - -/// @nodoc -abstract class _$$MangaImplCopyWith<$Res> implements $MangaCopyWith<$Res> { - factory _$$MangaImplCopyWith( - _$MangaImpl value, $Res Function(_$MangaImpl) then) = - __$$MangaImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {String? artist, - String? author, - String? description, - int? downloadCount, - int? chapterCount, - int? lastReadAt, - Chapter? lastChapterRead, - bool? freshData, - List? genre, - bool? inLibrary, - int? id, - int? inLibraryAt, - bool? initialized, - String? realUrl, - Source? source, - String? sourceId, - @JsonKey(fromJson: MangaStatus.fromJson, toJson: MangaStatus.toJson) - MangaStatus? status, - String? thumbnailUrl, - int? thumbnailUrlLastFetched, - String? title, - int? unreadCount, - int? lastFetchedAt, - int? chaptersLastFetchedAt, - String? url, - MangaMeta? meta}); - - @override - $ChapterCopyWith<$Res>? get lastChapterRead; - @override - $SourceCopyWith<$Res>? get source; - @override - $MangaMetaCopyWith<$Res>? get meta; -} - -/// @nodoc -class __$$MangaImplCopyWithImpl<$Res> - extends _$MangaCopyWithImpl<$Res, _$MangaImpl> - implements _$$MangaImplCopyWith<$Res> { - __$$MangaImplCopyWithImpl( - _$MangaImpl _value, $Res Function(_$MangaImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? artist = freezed, - Object? author = freezed, - Object? description = freezed, - Object? downloadCount = freezed, - Object? chapterCount = freezed, - Object? lastReadAt = freezed, - Object? lastChapterRead = freezed, - Object? freshData = freezed, - Object? genre = freezed, - Object? inLibrary = freezed, - Object? id = freezed, - Object? inLibraryAt = freezed, - Object? initialized = freezed, - Object? realUrl = freezed, - Object? source = freezed, - Object? sourceId = freezed, - Object? status = freezed, - Object? thumbnailUrl = freezed, - Object? thumbnailUrlLastFetched = freezed, - Object? title = freezed, - Object? unreadCount = freezed, - Object? lastFetchedAt = freezed, - Object? chaptersLastFetchedAt = freezed, - Object? url = freezed, - Object? meta = freezed, - }) { - return _then(_$MangaImpl( - artist: freezed == artist - ? _value.artist - : artist // ignore: cast_nullable_to_non_nullable - as String?, - author: freezed == author - ? _value.author - : author // ignore: cast_nullable_to_non_nullable - as String?, - description: freezed == description - ? _value.description - : description // ignore: cast_nullable_to_non_nullable - as String?, - downloadCount: freezed == downloadCount - ? _value.downloadCount - : downloadCount // ignore: cast_nullable_to_non_nullable - as int?, - chapterCount: freezed == chapterCount - ? _value.chapterCount - : chapterCount // ignore: cast_nullable_to_non_nullable - as int?, - lastReadAt: freezed == lastReadAt - ? _value.lastReadAt - : lastReadAt // ignore: cast_nullable_to_non_nullable - as int?, - lastChapterRead: freezed == lastChapterRead - ? _value.lastChapterRead - : lastChapterRead // ignore: cast_nullable_to_non_nullable - as Chapter?, - freshData: freezed == freshData - ? _value.freshData - : freshData // ignore: cast_nullable_to_non_nullable - as bool?, - genre: freezed == genre - ? _value._genre - : genre // ignore: cast_nullable_to_non_nullable - as List?, - inLibrary: freezed == inLibrary - ? _value.inLibrary - : inLibrary // ignore: cast_nullable_to_non_nullable - as bool?, - id: freezed == id - ? _value.id - : id // ignore: cast_nullable_to_non_nullable - as int?, - inLibraryAt: freezed == inLibraryAt - ? _value.inLibraryAt - : inLibraryAt // ignore: cast_nullable_to_non_nullable - as int?, - initialized: freezed == initialized - ? _value.initialized - : initialized // ignore: cast_nullable_to_non_nullable - as bool?, - realUrl: freezed == realUrl - ? _value.realUrl - : realUrl // ignore: cast_nullable_to_non_nullable - as String?, - source: freezed == source - ? _value.source - : source // ignore: cast_nullable_to_non_nullable - as Source?, - sourceId: freezed == sourceId - ? _value.sourceId - : sourceId // ignore: cast_nullable_to_non_nullable - as String?, - status: freezed == status - ? _value.status - : status // ignore: cast_nullable_to_non_nullable - as MangaStatus?, - thumbnailUrl: freezed == thumbnailUrl - ? _value.thumbnailUrl - : thumbnailUrl // ignore: cast_nullable_to_non_nullable - as String?, - thumbnailUrlLastFetched: freezed == thumbnailUrlLastFetched - ? _value.thumbnailUrlLastFetched - : thumbnailUrlLastFetched // ignore: cast_nullable_to_non_nullable - as int?, - title: freezed == title - ? _value.title - : title // ignore: cast_nullable_to_non_nullable - as String?, - unreadCount: freezed == unreadCount - ? _value.unreadCount - : unreadCount // ignore: cast_nullable_to_non_nullable - as int?, - lastFetchedAt: freezed == lastFetchedAt - ? _value.lastFetchedAt - : lastFetchedAt // ignore: cast_nullable_to_non_nullable - as int?, - chaptersLastFetchedAt: freezed == chaptersLastFetchedAt - ? _value.chaptersLastFetchedAt - : chaptersLastFetchedAt // ignore: cast_nullable_to_non_nullable - as int?, - url: freezed == url - ? _value.url - : url // ignore: cast_nullable_to_non_nullable - as String?, - meta: freezed == meta - ? _value.meta - : meta // ignore: cast_nullable_to_non_nullable - as MangaMeta?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$MangaImpl extends _Manga { - _$MangaImpl( - {this.artist, - this.author, - this.description, - this.downloadCount, - this.chapterCount, - this.lastReadAt, - this.lastChapterRead, - this.freshData, - final List? genre, - this.inLibrary, - this.id, - this.inLibraryAt, - this.initialized, - this.realUrl, - this.source, - this.sourceId, - @JsonKey(fromJson: MangaStatus.fromJson, toJson: MangaStatus.toJson) - this.status, - this.thumbnailUrl, - this.thumbnailUrlLastFetched, - this.title, - this.unreadCount, - this.lastFetchedAt, - this.chaptersLastFetchedAt, - this.url, - this.meta}) - : _genre = genre, - super._(); - - factory _$MangaImpl.fromJson(Map json) => - _$$MangaImplFromJson(json); - - @override - final String? artist; - @override - final String? author; - @override - final String? description; - @override - final int? downloadCount; - @override - final int? chapterCount; - @override - final int? lastReadAt; - @override - final Chapter? lastChapterRead; - @override - final bool? freshData; - final List? _genre; - @override - List? get genre { - final value = _genre; - if (value == null) return null; - if (_genre is EqualUnmodifiableListView) return _genre; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(value); - } - - @override - final bool? inLibrary; - @override - final int? id; - @override - final int? inLibraryAt; - @override - final bool? initialized; - @override - final String? realUrl; - @override - final Source? source; - @override - final String? sourceId; - @override - @JsonKey(fromJson: MangaStatus.fromJson, toJson: MangaStatus.toJson) - final MangaStatus? status; - @override - final String? thumbnailUrl; - @override - final int? thumbnailUrlLastFetched; - @override - final String? title; - @override - final int? unreadCount; - @override - final int? lastFetchedAt; - @override - final int? chaptersLastFetchedAt; - @override - final String? url; - @override - final MangaMeta? meta; - - @override - String toString() { - return 'Manga(artist: $artist, author: $author, description: $description, downloadCount: $downloadCount, chapterCount: $chapterCount, lastReadAt: $lastReadAt, lastChapterRead: $lastChapterRead, freshData: $freshData, genre: $genre, inLibrary: $inLibrary, id: $id, inLibraryAt: $inLibraryAt, initialized: $initialized, realUrl: $realUrl, source: $source, sourceId: $sourceId, status: $status, thumbnailUrl: $thumbnailUrl, thumbnailUrlLastFetched: $thumbnailUrlLastFetched, title: $title, unreadCount: $unreadCount, lastFetchedAt: $lastFetchedAt, chaptersLastFetchedAt: $chaptersLastFetchedAt, url: $url, meta: $meta)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$MangaImpl && - (identical(other.artist, artist) || other.artist == artist) && - (identical(other.author, author) || other.author == author) && - (identical(other.description, description) || - other.description == description) && - (identical(other.downloadCount, downloadCount) || - other.downloadCount == downloadCount) && - (identical(other.chapterCount, chapterCount) || - other.chapterCount == chapterCount) && - (identical(other.lastReadAt, lastReadAt) || - other.lastReadAt == lastReadAt) && - (identical(other.lastChapterRead, lastChapterRead) || - other.lastChapterRead == lastChapterRead) && - (identical(other.freshData, freshData) || - other.freshData == freshData) && - const DeepCollectionEquality().equals(other._genre, _genre) && - (identical(other.inLibrary, inLibrary) || - other.inLibrary == inLibrary) && - (identical(other.id, id) || other.id == id) && - (identical(other.inLibraryAt, inLibraryAt) || - other.inLibraryAt == inLibraryAt) && - (identical(other.initialized, initialized) || - other.initialized == initialized) && - (identical(other.realUrl, realUrl) || other.realUrl == realUrl) && - (identical(other.source, source) || other.source == source) && - (identical(other.sourceId, sourceId) || - other.sourceId == sourceId) && - (identical(other.status, status) || other.status == status) && - (identical(other.thumbnailUrl, thumbnailUrl) || - other.thumbnailUrl == thumbnailUrl) && - (identical( - other.thumbnailUrlLastFetched, thumbnailUrlLastFetched) || - other.thumbnailUrlLastFetched == thumbnailUrlLastFetched) && - (identical(other.title, title) || other.title == title) && - (identical(other.unreadCount, unreadCount) || - other.unreadCount == unreadCount) && - (identical(other.lastFetchedAt, lastFetchedAt) || - other.lastFetchedAt == lastFetchedAt) && - (identical(other.chaptersLastFetchedAt, chaptersLastFetchedAt) || - other.chaptersLastFetchedAt == chaptersLastFetchedAt) && - (identical(other.url, url) || other.url == url) && - (identical(other.meta, meta) || other.meta == meta)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hashAll([ - runtimeType, - artist, - author, - description, - downloadCount, - chapterCount, - lastReadAt, - lastChapterRead, - freshData, - const DeepCollectionEquality().hash(_genre), - inLibrary, - id, - inLibraryAt, - initialized, - realUrl, - source, - sourceId, - status, - thumbnailUrl, - thumbnailUrlLastFetched, - title, - unreadCount, - lastFetchedAt, - chaptersLastFetchedAt, - url, - meta - ]); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$MangaImplCopyWith<_$MangaImpl> get copyWith => - __$$MangaImplCopyWithImpl<_$MangaImpl>(this, _$identity); - - @override - Map toJson() { - return _$$MangaImplToJson( - this, - ); - } -} - -abstract class _Manga extends Manga { - factory _Manga( - {final String? artist, - final String? author, - final String? description, - final int? downloadCount, - final int? chapterCount, - final int? lastReadAt, - final Chapter? lastChapterRead, - final bool? freshData, - final List? genre, - final bool? inLibrary, - final int? id, - final int? inLibraryAt, - final bool? initialized, - final String? realUrl, - final Source? source, - final String? sourceId, - @JsonKey(fromJson: MangaStatus.fromJson, toJson: MangaStatus.toJson) - final MangaStatus? status, - final String? thumbnailUrl, - final int? thumbnailUrlLastFetched, - final String? title, - final int? unreadCount, - final int? lastFetchedAt, - final int? chaptersLastFetchedAt, - final String? url, - final MangaMeta? meta}) = _$MangaImpl; - _Manga._() : super._(); - - factory _Manga.fromJson(Map json) = _$MangaImpl.fromJson; - - @override - String? get artist; - @override - String? get author; - @override - String? get description; - @override - int? get downloadCount; - @override - int? get chapterCount; - @override - int? get lastReadAt; - @override - Chapter? get lastChapterRead; - @override - bool? get freshData; - @override - List? get genre; - @override - bool? get inLibrary; - @override - int? get id; - @override - int? get inLibraryAt; - @override - bool? get initialized; - @override - String? get realUrl; - @override - Source? get source; - @override - String? get sourceId; - @override - @JsonKey(fromJson: MangaStatus.fromJson, toJson: MangaStatus.toJson) - MangaStatus? get status; - @override - String? get thumbnailUrl; - @override - int? get thumbnailUrlLastFetched; - @override - String? get title; - @override - int? get unreadCount; - @override - int? get lastFetchedAt; - @override - int? get chaptersLastFetchedAt; - @override - String? get url; - @override - MangaMeta? get meta; - @override - @JsonKey(ignore: true) - _$$MangaImplCopyWith<_$MangaImpl> get copyWith => - throw _privateConstructorUsedError; -} - -MangaMeta _$MangaMetaFromJson(Map json) { - return _MangaMeta.fromJson(json); -} - -/// @nodoc -mixin _$MangaMeta { - @JsonKey( - name: "flutter_readerNavigationLayoutInvert", - fromJson: MangaMeta.fromJsonToBool) - bool? get invertTap => throw _privateConstructorUsedError; - @JsonKey(name: "flutter_readerNavigationLayout") - ReaderNavigationLayout? get readerNavigationLayout => - throw _privateConstructorUsedError; - @JsonKey(name: "flutter_readerMode") - ReaderMode? get readerMode => throw _privateConstructorUsedError; - @JsonKey(name: "flutter_readerPadding", fromJson: MangaMeta.fromJsonToDouble) - double? get readerPadding => throw _privateConstructorUsedError; - @JsonKey( - name: "flutter_readerMagnifierSize", fromJson: MangaMeta.fromJsonToDouble) - double? get readerMagnifierSize => throw _privateConstructorUsedError; - @JsonKey(name: "flutter_scanlator") - String? get scanlator => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $MangaMetaCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $MangaMetaCopyWith<$Res> { - factory $MangaMetaCopyWith(MangaMeta value, $Res Function(MangaMeta) then) = - _$MangaMetaCopyWithImpl<$Res, MangaMeta>; - @useResult - $Res call( - {@JsonKey( - name: "flutter_readerNavigationLayoutInvert", - fromJson: MangaMeta.fromJsonToBool) - bool? invertTap, - @JsonKey(name: "flutter_readerNavigationLayout") - ReaderNavigationLayout? readerNavigationLayout, - @JsonKey(name: "flutter_readerMode") ReaderMode? readerMode, - @JsonKey( - name: "flutter_readerPadding", fromJson: MangaMeta.fromJsonToDouble) - double? readerPadding, - @JsonKey( - name: "flutter_readerMagnifierSize", - fromJson: MangaMeta.fromJsonToDouble) - double? readerMagnifierSize, - @JsonKey(name: "flutter_scanlator") String? scanlator}); -} - -/// @nodoc -class _$MangaMetaCopyWithImpl<$Res, $Val extends MangaMeta> - implements $MangaMetaCopyWith<$Res> { - _$MangaMetaCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? invertTap = freezed, - Object? readerNavigationLayout = freezed, - Object? readerMode = freezed, - Object? readerPadding = freezed, - Object? readerMagnifierSize = freezed, - Object? scanlator = freezed, - }) { - return _then(_value.copyWith( - invertTap: freezed == invertTap - ? _value.invertTap - : invertTap // ignore: cast_nullable_to_non_nullable - as bool?, - readerNavigationLayout: freezed == readerNavigationLayout - ? _value.readerNavigationLayout - : readerNavigationLayout // ignore: cast_nullable_to_non_nullable - as ReaderNavigationLayout?, - readerMode: freezed == readerMode - ? _value.readerMode - : readerMode // ignore: cast_nullable_to_non_nullable - as ReaderMode?, - readerPadding: freezed == readerPadding - ? _value.readerPadding - : readerPadding // ignore: cast_nullable_to_non_nullable - as double?, - readerMagnifierSize: freezed == readerMagnifierSize - ? _value.readerMagnifierSize - : readerMagnifierSize // ignore: cast_nullable_to_non_nullable - as double?, - scanlator: freezed == scanlator - ? _value.scanlator - : scanlator // ignore: cast_nullable_to_non_nullable - as String?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$MangaMetaImplCopyWith<$Res> - implements $MangaMetaCopyWith<$Res> { - factory _$$MangaMetaImplCopyWith( - _$MangaMetaImpl value, $Res Function(_$MangaMetaImpl) then) = - __$$MangaMetaImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {@JsonKey( - name: "flutter_readerNavigationLayoutInvert", - fromJson: MangaMeta.fromJsonToBool) - bool? invertTap, - @JsonKey(name: "flutter_readerNavigationLayout") - ReaderNavigationLayout? readerNavigationLayout, - @JsonKey(name: "flutter_readerMode") ReaderMode? readerMode, - @JsonKey( - name: "flutter_readerPadding", fromJson: MangaMeta.fromJsonToDouble) - double? readerPadding, - @JsonKey( - name: "flutter_readerMagnifierSize", - fromJson: MangaMeta.fromJsonToDouble) - double? readerMagnifierSize, - @JsonKey(name: "flutter_scanlator") String? scanlator}); -} - -/// @nodoc -class __$$MangaMetaImplCopyWithImpl<$Res> - extends _$MangaMetaCopyWithImpl<$Res, _$MangaMetaImpl> - implements _$$MangaMetaImplCopyWith<$Res> { - __$$MangaMetaImplCopyWithImpl( - _$MangaMetaImpl _value, $Res Function(_$MangaMetaImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? invertTap = freezed, - Object? readerNavigationLayout = freezed, - Object? readerMode = freezed, - Object? readerPadding = freezed, - Object? readerMagnifierSize = freezed, - Object? scanlator = freezed, - }) { - return _then(_$MangaMetaImpl( - invertTap: freezed == invertTap - ? _value.invertTap - : invertTap // ignore: cast_nullable_to_non_nullable - as bool?, - readerNavigationLayout: freezed == readerNavigationLayout - ? _value.readerNavigationLayout - : readerNavigationLayout // ignore: cast_nullable_to_non_nullable - as ReaderNavigationLayout?, - readerMode: freezed == readerMode - ? _value.readerMode - : readerMode // ignore: cast_nullable_to_non_nullable - as ReaderMode?, - readerPadding: freezed == readerPadding - ? _value.readerPadding - : readerPadding // ignore: cast_nullable_to_non_nullable - as double?, - readerMagnifierSize: freezed == readerMagnifierSize - ? _value.readerMagnifierSize - : readerMagnifierSize // ignore: cast_nullable_to_non_nullable - as double?, - scanlator: freezed == scanlator - ? _value.scanlator - : scanlator // ignore: cast_nullable_to_non_nullable - as String?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$MangaMetaImpl implements _MangaMeta { - _$MangaMetaImpl( - {@JsonKey( - name: "flutter_readerNavigationLayoutInvert", - fromJson: MangaMeta.fromJsonToBool) - this.invertTap, - @JsonKey(name: "flutter_readerNavigationLayout") - this.readerNavigationLayout, - @JsonKey(name: "flutter_readerMode") this.readerMode, - @JsonKey( - name: "flutter_readerPadding", fromJson: MangaMeta.fromJsonToDouble) - this.readerPadding, - @JsonKey( - name: "flutter_readerMagnifierSize", - fromJson: MangaMeta.fromJsonToDouble) - this.readerMagnifierSize, - @JsonKey(name: "flutter_scanlator") this.scanlator}); - - factory _$MangaMetaImpl.fromJson(Map json) => - _$$MangaMetaImplFromJson(json); - - @override - @JsonKey( - name: "flutter_readerNavigationLayoutInvert", - fromJson: MangaMeta.fromJsonToBool) - final bool? invertTap; - @override - @JsonKey(name: "flutter_readerNavigationLayout") - final ReaderNavigationLayout? readerNavigationLayout; - @override - @JsonKey(name: "flutter_readerMode") - final ReaderMode? readerMode; - @override - @JsonKey(name: "flutter_readerPadding", fromJson: MangaMeta.fromJsonToDouble) - final double? readerPadding; - @override - @JsonKey( - name: "flutter_readerMagnifierSize", fromJson: MangaMeta.fromJsonToDouble) - final double? readerMagnifierSize; - @override - @JsonKey(name: "flutter_scanlator") - final String? scanlator; - - @override - String toString() { - return 'MangaMeta(invertTap: $invertTap, readerNavigationLayout: $readerNavigationLayout, readerMode: $readerMode, readerPadding: $readerPadding, readerMagnifierSize: $readerMagnifierSize, scanlator: $scanlator)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$MangaMetaImpl && - (identical(other.invertTap, invertTap) || - other.invertTap == invertTap) && - (identical(other.readerNavigationLayout, readerNavigationLayout) || - other.readerNavigationLayout == readerNavigationLayout) && - (identical(other.readerMode, readerMode) || - other.readerMode == readerMode) && - (identical(other.readerPadding, readerPadding) || - other.readerPadding == readerPadding) && - (identical(other.readerMagnifierSize, readerMagnifierSize) || - other.readerMagnifierSize == readerMagnifierSize) && - (identical(other.scanlator, scanlator) || - other.scanlator == scanlator)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, - invertTap, - readerNavigationLayout, - readerMode, - readerPadding, - readerMagnifierSize, - scanlator); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$MangaMetaImplCopyWith<_$MangaMetaImpl> get copyWith => - __$$MangaMetaImplCopyWithImpl<_$MangaMetaImpl>(this, _$identity); - - @override - Map toJson() { - return _$$MangaMetaImplToJson( - this, - ); - } -} - -abstract class _MangaMeta implements MangaMeta { - factory _MangaMeta( - {@JsonKey( - name: "flutter_readerNavigationLayoutInvert", - fromJson: MangaMeta.fromJsonToBool) - final bool? invertTap, - @JsonKey(name: "flutter_readerNavigationLayout") - final ReaderNavigationLayout? readerNavigationLayout, - @JsonKey(name: "flutter_readerMode") final ReaderMode? readerMode, - @JsonKey( - name: "flutter_readerPadding", fromJson: MangaMeta.fromJsonToDouble) - final double? readerPadding, - @JsonKey( - name: "flutter_readerMagnifierSize", - fromJson: MangaMeta.fromJsonToDouble) - final double? readerMagnifierSize, - @JsonKey(name: "flutter_scanlator") - final String? scanlator}) = _$MangaMetaImpl; - - factory _MangaMeta.fromJson(Map json) = - _$MangaMetaImpl.fromJson; - - @override - @JsonKey( - name: "flutter_readerNavigationLayoutInvert", - fromJson: MangaMeta.fromJsonToBool) - bool? get invertTap; - @override - @JsonKey(name: "flutter_readerNavigationLayout") - ReaderNavigationLayout? get readerNavigationLayout; - @override - @JsonKey(name: "flutter_readerMode") - ReaderMode? get readerMode; - @override - @JsonKey(name: "flutter_readerPadding", fromJson: MangaMeta.fromJsonToDouble) - double? get readerPadding; - @override - @JsonKey( - name: "flutter_readerMagnifierSize", fromJson: MangaMeta.fromJsonToDouble) - double? get readerMagnifierSize; - @override - @JsonKey(name: "flutter_scanlator") - String? get scanlator; - @override - @JsonKey(ignore: true) - _$$MangaMetaImplCopyWith<_$MangaMetaImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/src/features/manga_book/domain/manga/manga_model.g.dart b/lib/src/features/manga_book/domain/manga/manga_model.g.dart deleted file mode 100644 index 3be9d6e1..00000000 --- a/lib/src/features/manga_book/domain/manga/manga_model.g.dart +++ /dev/null @@ -1,117 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'manga_model.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$MangaImpl _$$MangaImplFromJson(Map json) => _$MangaImpl( - artist: json['artist'] as String?, - author: json['author'] as String?, - description: json['description'] as String?, - downloadCount: json['downloadCount'] as int?, - chapterCount: json['chapterCount'] as int?, - lastReadAt: json['lastReadAt'] as int?, - lastChapterRead: json['lastChapterRead'] == null - ? null - : Chapter.fromJson(json['lastChapterRead'] as Map), - freshData: json['freshData'] as bool?, - genre: - (json['genre'] as List?)?.map((e) => e as String).toList(), - inLibrary: json['inLibrary'] as bool?, - id: json['id'] as int?, - inLibraryAt: json['inLibraryAt'] as int?, - initialized: json['initialized'] as bool?, - realUrl: json['realUrl'] as String?, - source: json['source'] == null - ? null - : Source.fromJson(json['source'] as Map), - sourceId: json['sourceId'] as String?, - status: MangaStatus.fromJson(json['status'] as String), - thumbnailUrl: json['thumbnailUrl'] as String?, - thumbnailUrlLastFetched: json['thumbnailUrlLastFetched'] as int?, - title: json['title'] as String?, - unreadCount: json['unreadCount'] as int?, - lastFetchedAt: json['lastFetchedAt'] as int?, - chaptersLastFetchedAt: json['chaptersLastFetchedAt'] as int?, - url: json['url'] as String?, - meta: json['meta'] == null - ? null - : MangaMeta.fromJson(json['meta'] as Map), - ); - -Map _$$MangaImplToJson(_$MangaImpl instance) => - { - 'artist': instance.artist, - 'author': instance.author, - 'description': instance.description, - 'downloadCount': instance.downloadCount, - 'chapterCount': instance.chapterCount, - 'lastReadAt': instance.lastReadAt, - 'lastChapterRead': instance.lastChapterRead?.toJson(), - 'freshData': instance.freshData, - 'genre': instance.genre, - 'inLibrary': instance.inLibrary, - 'id': instance.id, - 'inLibraryAt': instance.inLibraryAt, - 'initialized': instance.initialized, - 'realUrl': instance.realUrl, - 'source': instance.source?.toJson(), - 'sourceId': instance.sourceId, - 'status': MangaStatus.toJson(instance.status), - 'thumbnailUrl': instance.thumbnailUrl, - 'thumbnailUrlLastFetched': instance.thumbnailUrlLastFetched, - 'title': instance.title, - 'unreadCount': instance.unreadCount, - 'lastFetchedAt': instance.lastFetchedAt, - 'chaptersLastFetchedAt': instance.chaptersLastFetchedAt, - 'url': instance.url, - 'meta': instance.meta?.toJson(), - }; - -_$MangaMetaImpl _$$MangaMetaImplFromJson(Map json) => - _$MangaMetaImpl( - invertTap: MangaMeta.fromJsonToBool( - json['flutter_readerNavigationLayoutInvert']), - readerNavigationLayout: $enumDecodeNullable( - _$ReaderNavigationLayoutEnumMap, - json['flutter_readerNavigationLayout']), - readerMode: - $enumDecodeNullable(_$ReaderModeEnumMap, json['flutter_readerMode']), - readerPadding: MangaMeta.fromJsonToDouble(json['flutter_readerPadding']), - readerMagnifierSize: - MangaMeta.fromJsonToDouble(json['flutter_readerMagnifierSize']), - scanlator: json['flutter_scanlator'] as String?, - ); - -Map _$$MangaMetaImplToJson(_$MangaMetaImpl instance) => - { - 'flutter_readerNavigationLayoutInvert': instance.invertTap, - 'flutter_readerNavigationLayout': - _$ReaderNavigationLayoutEnumMap[instance.readerNavigationLayout], - 'flutter_readerMode': _$ReaderModeEnumMap[instance.readerMode], - 'flutter_readerPadding': instance.readerPadding, - 'flutter_readerMagnifierSize': instance.readerMagnifierSize, - 'flutter_scanlator': instance.scanlator, - }; - -const _$ReaderNavigationLayoutEnumMap = { - ReaderNavigationLayout.defaultNavigation: 'defaultNavigation', - ReaderNavigationLayout.lShaped: 'lShaped', - ReaderNavigationLayout.rightAndLeft: 'rightAndLeft', - ReaderNavigationLayout.edge: 'edge', - ReaderNavigationLayout.kindlish: 'kindlish', - ReaderNavigationLayout.disabled: 'disabled', -}; - -const _$ReaderModeEnumMap = { - ReaderMode.defaultReader: 'defaultReader', - ReaderMode.continuousVertical: 'continuousVertical', - ReaderMode.singleHorizontalLTR: 'singleHorizontalLTR', - ReaderMode.singleHorizontalRTL: 'singleHorizontalRTL', - ReaderMode.continuousHorizontalLTR: 'continuousHorizontalLTR', - ReaderMode.continuousHorizontalRTL: 'continuousHorizontalRTL', - ReaderMode.singleVertical: 'singleVertical', - ReaderMode.webtoon: 'webtoon', -}; diff --git a/lib/src/features/manga_book/domain/update_status/update_status_model.dart b/lib/src/features/manga_book/domain/update_status/update_status_model.dart deleted file mode 100644 index bb6bc02f..00000000 --- a/lib/src/features/manga_book/domain/update_status/update_status_model.dart +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:freezed_annotation/freezed_annotation.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; -import '../manga/manga_model.dart'; - -part 'update_status_model.freezed.dart'; -part 'update_status_model.g.dart'; - -@freezed -class UpdateStatus with _$UpdateStatus { - UpdateStatus._(); - factory UpdateStatus({ - @JsonKey(name: "PENDING") List? pending, - @JsonKey(name: "RUNNING") List? running, - @JsonKey(name: "COMPLETE") List? completed, - @JsonKey(name: "FAILED") List? failed, - }) = _UpdateStatus; - - int get total => - (pending?.length).getValueOnNullOrNegative() + - (running?.length).getValueOnNullOrNegative() + - (completed?.length).getValueOnNullOrNegative() + - (failed?.length).getValueOnNullOrNegative(); - - int get updateChecked => - (completed?.length).getValueOnNullOrNegative() + - (failed?.length).getValueOnNullOrNegative(); - - bool get isUpdateCheckCompleted => total == updateChecked; - - bool get isUpdateChecking => - (total).isGreaterThan(0) && !(isUpdateCheckCompleted); - - factory UpdateStatus.fromJson(Map json) => - _$UpdateStatusFromJson(json); -} diff --git a/lib/src/features/manga_book/domain/update_status/update_status_model.freezed.dart b/lib/src/features/manga_book/domain/update_status/update_status_model.freezed.dart deleted file mode 100644 index 6146b542..00000000 --- a/lib/src/features/manga_book/domain/update_status/update_status_model.freezed.dart +++ /dev/null @@ -1,270 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'update_status_model.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -UpdateStatus _$UpdateStatusFromJson(Map json) { - return _UpdateStatus.fromJson(json); -} - -/// @nodoc -mixin _$UpdateStatus { - @JsonKey(name: "PENDING") - List? get pending => throw _privateConstructorUsedError; - @JsonKey(name: "RUNNING") - List? get running => throw _privateConstructorUsedError; - @JsonKey(name: "COMPLETE") - List? get completed => throw _privateConstructorUsedError; - @JsonKey(name: "FAILED") - List? get failed => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $UpdateStatusCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $UpdateStatusCopyWith<$Res> { - factory $UpdateStatusCopyWith( - UpdateStatus value, $Res Function(UpdateStatus) then) = - _$UpdateStatusCopyWithImpl<$Res, UpdateStatus>; - @useResult - $Res call( - {@JsonKey(name: "PENDING") List? pending, - @JsonKey(name: "RUNNING") List? running, - @JsonKey(name: "COMPLETE") List? completed, - @JsonKey(name: "FAILED") List? failed}); -} - -/// @nodoc -class _$UpdateStatusCopyWithImpl<$Res, $Val extends UpdateStatus> - implements $UpdateStatusCopyWith<$Res> { - _$UpdateStatusCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? pending = freezed, - Object? running = freezed, - Object? completed = freezed, - Object? failed = freezed, - }) { - return _then(_value.copyWith( - pending: freezed == pending - ? _value.pending - : pending // ignore: cast_nullable_to_non_nullable - as List?, - running: freezed == running - ? _value.running - : running // ignore: cast_nullable_to_non_nullable - as List?, - completed: freezed == completed - ? _value.completed - : completed // ignore: cast_nullable_to_non_nullable - as List?, - failed: freezed == failed - ? _value.failed - : failed // ignore: cast_nullable_to_non_nullable - as List?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$UpdateStatusImplCopyWith<$Res> - implements $UpdateStatusCopyWith<$Res> { - factory _$$UpdateStatusImplCopyWith( - _$UpdateStatusImpl value, $Res Function(_$UpdateStatusImpl) then) = - __$$UpdateStatusImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {@JsonKey(name: "PENDING") List? pending, - @JsonKey(name: "RUNNING") List? running, - @JsonKey(name: "COMPLETE") List? completed, - @JsonKey(name: "FAILED") List? failed}); -} - -/// @nodoc -class __$$UpdateStatusImplCopyWithImpl<$Res> - extends _$UpdateStatusCopyWithImpl<$Res, _$UpdateStatusImpl> - implements _$$UpdateStatusImplCopyWith<$Res> { - __$$UpdateStatusImplCopyWithImpl( - _$UpdateStatusImpl _value, $Res Function(_$UpdateStatusImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? pending = freezed, - Object? running = freezed, - Object? completed = freezed, - Object? failed = freezed, - }) { - return _then(_$UpdateStatusImpl( - pending: freezed == pending - ? _value._pending - : pending // ignore: cast_nullable_to_non_nullable - as List?, - running: freezed == running - ? _value._running - : running // ignore: cast_nullable_to_non_nullable - as List?, - completed: freezed == completed - ? _value._completed - : completed // ignore: cast_nullable_to_non_nullable - as List?, - failed: freezed == failed - ? _value._failed - : failed // ignore: cast_nullable_to_non_nullable - as List?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$UpdateStatusImpl extends _UpdateStatus { - _$UpdateStatusImpl( - {@JsonKey(name: "PENDING") final List? pending, - @JsonKey(name: "RUNNING") final List? running, - @JsonKey(name: "COMPLETE") final List? completed, - @JsonKey(name: "FAILED") final List? failed}) - : _pending = pending, - _running = running, - _completed = completed, - _failed = failed, - super._(); - - factory _$UpdateStatusImpl.fromJson(Map json) => - _$$UpdateStatusImplFromJson(json); - - final List? _pending; - @override - @JsonKey(name: "PENDING") - List? get pending { - final value = _pending; - if (value == null) return null; - if (_pending is EqualUnmodifiableListView) return _pending; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(value); - } - - final List? _running; - @override - @JsonKey(name: "RUNNING") - List? get running { - final value = _running; - if (value == null) return null; - if (_running is EqualUnmodifiableListView) return _running; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(value); - } - - final List? _completed; - @override - @JsonKey(name: "COMPLETE") - List? get completed { - final value = _completed; - if (value == null) return null; - if (_completed is EqualUnmodifiableListView) return _completed; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(value); - } - - final List? _failed; - @override - @JsonKey(name: "FAILED") - List? get failed { - final value = _failed; - if (value == null) return null; - if (_failed is EqualUnmodifiableListView) return _failed; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(value); - } - - @override - String toString() { - return 'UpdateStatus(pending: $pending, running: $running, completed: $completed, failed: $failed)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$UpdateStatusImpl && - const DeepCollectionEquality().equals(other._pending, _pending) && - const DeepCollectionEquality().equals(other._running, _running) && - const DeepCollectionEquality() - .equals(other._completed, _completed) && - const DeepCollectionEquality().equals(other._failed, _failed)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, - const DeepCollectionEquality().hash(_pending), - const DeepCollectionEquality().hash(_running), - const DeepCollectionEquality().hash(_completed), - const DeepCollectionEquality().hash(_failed)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$UpdateStatusImplCopyWith<_$UpdateStatusImpl> get copyWith => - __$$UpdateStatusImplCopyWithImpl<_$UpdateStatusImpl>(this, _$identity); - - @override - Map toJson() { - return _$$UpdateStatusImplToJson( - this, - ); - } -} - -abstract class _UpdateStatus extends UpdateStatus { - factory _UpdateStatus( - {@JsonKey(name: "PENDING") final List? pending, - @JsonKey(name: "RUNNING") final List? running, - @JsonKey(name: "COMPLETE") final List? completed, - @JsonKey(name: "FAILED") final List? failed}) = _$UpdateStatusImpl; - _UpdateStatus._() : super._(); - - factory _UpdateStatus.fromJson(Map json) = - _$UpdateStatusImpl.fromJson; - - @override - @JsonKey(name: "PENDING") - List? get pending; - @override - @JsonKey(name: "RUNNING") - List? get running; - @override - @JsonKey(name: "COMPLETE") - List? get completed; - @override - @JsonKey(name: "FAILED") - List? get failed; - @override - @JsonKey(ignore: true) - _$$UpdateStatusImplCopyWith<_$UpdateStatusImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/src/features/manga_book/domain/update_status/update_status_model.g.dart b/lib/src/features/manga_book/domain/update_status/update_status_model.g.dart deleted file mode 100644 index a6b2ff64..00000000 --- a/lib/src/features/manga_book/domain/update_status/update_status_model.g.dart +++ /dev/null @@ -1,31 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'update_status_model.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$UpdateStatusImpl _$$UpdateStatusImplFromJson(Map json) => - _$UpdateStatusImpl( - pending: (json['PENDING'] as List?) - ?.map((e) => Manga.fromJson(e as Map)) - .toList(), - running: (json['RUNNING'] as List?) - ?.map((e) => Manga.fromJson(e as Map)) - .toList(), - completed: (json['COMPLETE'] as List?) - ?.map((e) => Manga.fromJson(e as Map)) - .toList(), - failed: (json['FAILED'] as List?) - ?.map((e) => Manga.fromJson(e as Map)) - .toList(), - ); - -Map _$$UpdateStatusImplToJson(_$UpdateStatusImpl instance) => - { - 'PENDING': instance.pending?.map((e) => e.toJson()).toList(), - 'RUNNING': instance.running?.map((e) => e.toJson()).toList(), - 'COMPLETE': instance.completed?.map((e) => e.toJson()).toList(), - 'FAILED': instance.failed?.map((e) => e.toJson()).toList(), - }; diff --git a/lib/src/features/manga_book/presentation/downloads/downloads_screen.dart b/lib/src/features/manga_book/presentation/downloads/downloads_screen.dart deleted file mode 100644 index c91b146b..00000000 --- a/lib/src/features/manga_book/presentation/downloads/downloads_screen.dart +++ /dev/null @@ -1,74 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:gap/gap.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/misc/toast/toast.dart'; -import '../../../../widgets/emoticons.dart'; -import '../../data/downloads/downloads_repository.dart'; -import 'widgets/download_progress_list_tile.dart'; -import 'widgets/downloads_fab.dart'; - -class DownloadsScreen extends ConsumerWidget { - const DownloadsScreen({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - final toast = ref.watch(toastProvider(context)); - final downloadsChapterIds = ref.watch(downloadsChapterIdsProvider); - final downloadsGlobalStatus = ref.watch(downloadsStatusProvider); - final showDownloadsFAB = ref.watch(showDownloadsFABProvider); - return Scaffold( - appBar: AppBar( - title: Text(context.l10n!.downloads), - actions: [ - if ((downloadsChapterIds).isNotBlank) - IconButton( - onPressed: () => AsyncValue.guard( - ref.read(downloadsRepositoryProvider).clearDownloads, - ), - icon: const Icon(Icons.delete_sweep_rounded), - ), - ], - ), - floatingActionButton: showDownloadsFAB - ? DownloadsFab(status: downloadsGlobalStatus.valueOrNull ?? "") - : null, - body: downloadsGlobalStatus.showUiWhenData( - context, - (data) { - if (data == null) { - return Emoticons(text: context.l10n!.errorSomethingWentWrong); - } else if (downloadsChapterIds.isBlank) { - return Emoticons(text: context.l10n!.noDownloads); - } else { - final downloadsCount = - (downloadsChapterIds.length).getValueOnNullOrNegative(); - return ListView.builder( - itemExtent: 104, - itemBuilder: (context, index) { - if (index == downloadsCount) return const Gap(104); - final chapterId = downloadsChapterIds[index]; - return DownloadProgressListTile( - key: ValueKey("$chapterId"), - index: index, - downloadsCount: downloadsCount, - chapterId: chapterId, - toast: toast, - ); - }, - itemCount: downloadsCount + 1, - ); - } - }, - showGenericError: true, - ), - ); - } -} diff --git a/lib/src/features/manga_book/presentation/downloads/widgets/download_progress_list_tile.dart b/lib/src/features/manga_book/presentation/downloads/widgets/download_progress_list_tile.dart deleted file mode 100644 index bd85e334..00000000 --- a/lib/src/features/manga_book/presentation/downloads/widgets/download_progress_list_tile.dart +++ /dev/null @@ -1,207 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../constants/app_sizes.dart'; - -import '../../../../../routes/router_config.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../utils/misc/toast/toast.dart'; -import '../../../../../widgets/server_image.dart'; -import '../../../data/downloads/downloads_repository.dart'; - -class DownloadProgressListTile extends HookConsumerWidget { - const DownloadProgressListTile({ - super.key, - required this.chapterId, - required this.toast, - required this.index, - required this.downloadsCount, - }); - final int chapterId; - final Toast toast; - final int index; - final int downloadsCount; - - Future toggleChapterToQueue( - Toast toast, - WidgetRef ref, - bool addToDownload, - int mangaId, - int chapterIndex, - ) async { - try { - if (!chapterIndex.isNull && !mangaId.isNull) { - (await AsyncValue.guard(() async { - final repo = ref.read(downloadsRepositoryProvider); - await repo.removeChapterFromDownloadQueue( - mangaId, - chapterIndex, - ); - if (addToDownload) { - await repo.addChapterToDownloadQueue( - mangaId, - chapterIndex, - ); - } - })) - .showToastOnError(toast); - } - } catch (e) { - // - } - } - - @override - Widget build(BuildContext context, WidgetRef ref) { - final status = useState(null); - final download = ref.watch(downloadsFromIdProvider(chapterId)); - useEffect(() { - status.value = download?.state == "Downloading" - ? "${((download?.progress ?? 0) * 100).toInt()}%" - : download?.state == "Error" - ? "${download?.state}(${download?.tries})" - : download?.state; - return null; - }, [download?.state, download?.progress, download?.tries]); - if (download == null) return const SizedBox.shrink(); - return Card( - margin: KEdgeInsets.h16v4.size, - child: Padding( - padding: const EdgeInsets.symmetric(horizontal: 8.0), - child: Row( - children: [ - if ((download.manga?.thumbnailUrl).isNotBlank) - Padding( - padding: KEdgeInsets.a8.size, - child: InkWell( - onTap: () => - MangaRoute(mangaId: download.mangaId!).push(context), - child: ClipRRect( - borderRadius: KBorderRadius.r8.radius, - child: ServerImage( - imageUrl: download.manga!.thumbnailUrl!, - size: const Size.square(56), - ), - ), - ), - ), - Expanded( - child: Padding( - padding: KEdgeInsets.a4.size, - child: Column( - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - ListTile( - contentPadding: EdgeInsets.zero, - dense: true, - title: Text( - download.manga?.title ?? "", - style: context.textTheme.labelLarge, - overflow: TextOverflow.ellipsis, - ), - subtitle: Text( - download.chapter?.name ?? - download.chapter?.chapterNumber.toString() ?? - "", - overflow: TextOverflow.ellipsis, - style: context.textTheme.labelSmall, - ), - trailing: status.value.isNull - ? null - : Text( - status.value!, - overflow: TextOverflow.ellipsis, - ), - ), - LinearProgressIndicator( - value: (download.progress ?? 0), - semanticsValue: - "${((download.progress ?? 0) * 100).toInt()}%", - ), - Row( - children: [ - IconButton( - visualDensity: VisualDensity.compact, - onPressed: index.isZero - ? null - : () => ref - .read(downloadsRepositoryProvider) - .reorderDownload( - download.mangaId!, - download.chapterIndex!, - index - 1, - ), - icon: const Icon(Icons.arrow_drop_up_rounded), - color: Colors.grey, - ), - IconButton( - visualDensity: VisualDensity.compact, - onPressed: index >= downloadsCount - 1 - ? null - : () => ref - .read(downloadsRepositoryProvider) - .reorderDownload( - download.mangaId!, - download.chapterIndex!, - index + 1, - ), - icon: const Icon(Icons.arrow_drop_down_rounded), - color: Colors.grey, - ), - ], - ), - ], - ), - ), - ), - PopupMenuButton( - shape: RoundedRectangleBorder( - borderRadius: KBorderRadius.r16.radius, - ), - itemBuilder: (context) => [ - if (download.state == "Error") - PopupMenuItem( - child: Text(context.l10n!.retry), - onTap: () => toggleChapterToQueue(toast, ref, true, - download.mangaId!, download.chapterIndex!), - ), - PopupMenuItem( - child: Text(context.l10n!.delete), - onTap: () => toggleChapterToQueue(toast, ref, false, - download.mangaId!, download.chapterIndex!), - ), - if (!index.isZero) - PopupMenuItem( - child: Text(context.l10n!.moveToTop), - onTap: () => - ref.read(downloadsRepositoryProvider).reorderDownload( - download.mangaId!, - download.chapterIndex!, - 0, - ), - ), - if (index < downloadsCount - 1) - PopupMenuItem( - child: Text(context.l10n!.moveToBottom), - onTap: () => - ref.read(downloadsRepositoryProvider).reorderDownload( - download.mangaId!, - download.chapterIndex!, - downloadsCount - 1, - ), - ), - ], - ), - ], - ), - ), - ); - } -} diff --git a/lib/src/features/manga_book/presentation/downloads/widgets/downloads_fab.dart b/lib/src/features/manga_book/presentation/downloads/widgets/downloads_fab.dart deleted file mode 100644 index 14da638b..00000000 --- a/lib/src/features/manga_book/presentation/downloads/widgets/downloads_fab.dart +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../utils/misc/toast/toast.dart'; -import '../../../data/downloads/downloads_repository.dart'; - -class DownloadsFab extends ConsumerWidget { - const DownloadsFab({super.key, required this.status}); - final String status; - @override - Widget build(BuildContext context, WidgetRef ref) { - final toast = ref.watch(toastProvider(context)); - if (status == "Stopped" || status == "Error") { - return FloatingActionButton.extended( - onPressed: () async { - (await AsyncValue.guard( - ref.read(downloadsRepositoryProvider).startDownloads)) - .showToastOnError(toast); - }, - label: Text(context.l10n!.resume), - isExtended: context.isTablet, - icon: const Icon(Icons.play_arrow), - ); - } else { - return FloatingActionButton.extended( - onPressed: () async { - (await AsyncValue.guard( - ref.read(downloadsRepositoryProvider).stopDownloads)) - .showToastOnError(toast); - }, - label: Text(context.l10n!.pause), - isExtended: context.isTablet, - icon: const Icon(Icons.pause_rounded), - ); - } - } -} diff --git a/lib/src/features/manga_book/presentation/manga_details/controller/manga_details_controller.dart b/lib/src/features/manga_book/presentation/manga_details/controller/manga_details_controller.dart deleted file mode 100644 index 48bbe4d9..00000000 --- a/lib/src/features/manga_book/presentation/manga_details/controller/manga_details_controller.dart +++ /dev/null @@ -1,302 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:dio/dio.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../constants/db_keys.dart'; -import '../../../../../constants/enum.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../utils/mixin/shared_preferences_client_mixin.dart'; -import '../../../../library/domain/category/category_model.dart'; -import '../../../data/manga_book_repository.dart'; -import '../../../domain/chapter/chapter_model.dart'; -import '../../../domain/manga/manga_model.dart'; - -part 'manga_details_controller.g.dart'; - -@riverpod -class MangaWithId extends _$MangaWithId { - @override - Future build({required int mangaId}) async { - final token = CancelToken(); - ref.onDispose(token.cancel); - final result = await ref - .watch(mangaBookRepositoryProvider) - .getManga(mangaId: mangaId, cancelToken: token); - ref.keepAlive(); - return result; - } - - Future refresh([bool onlineFetch = false]) async { - final token = CancelToken(); - ref.onDispose(token.cancel); - final result = await AsyncValue.guard( - () => ref.watch(mangaBookRepositoryProvider).getManga( - mangaId: mangaId, - cancelToken: token, - onlineFetch: onlineFetch, - ), - ); - ref.keepAlive(); - if (result.hasError) { - state = result.copyWithPrevious(state); - } else { - state = result; - } - } -} - -@riverpod -class MangaChapterList extends _$MangaChapterList { - @override - Future?> build({required int mangaId}) async { - final token = CancelToken(); - ref.onDispose(token.cancel); - final result = await ref.watch(mangaBookRepositoryProvider).getChapterList( - mangaId: mangaId, - cancelToken: token, - onlineFetch: false, - ); - ref.keepAlive(); - return result; - } - - Future refresh([bool onlineFetch = false]) async { - final token = CancelToken(); - ref.onDispose(token.cancel); - final result = await AsyncValue.guard( - () => ref.read(mangaBookRepositoryProvider).getChapterList( - mangaId: mangaId, - cancelToken: token, - onlineFetch: onlineFetch, - ), - ); - ref.keepAlive(); - if (result.hasError) { - state = result.copyWithPrevious(state); - } else { - state = result; - } - } - - void updateChapter(int index, Chapter chapter) { - try { - final newList = [...?state.valueOrNull]; - newList[index] = chapter; - state = AsyncData?>(newList).copyWithPrevious(state); - } catch (e) { - // - } - } -} - -@riverpod -Set mangaScanlatorList(MangaScanlatorListRef ref, - {required int mangaId}) { - final chapterList = ref.watch(mangaChapterListProvider(mangaId: mangaId)); - final scanlatorList = {}; - chapterList.whenData((data) { - if (data == null) return; - for (final chapter in data) { - if (chapter.scanlator.isNotBlank) { - scanlatorList.add(chapter.scanlator!); - } - } - }); - return scanlatorList; -} - -@riverpod -class MangaChapterFilterScanlator extends _$MangaChapterFilterScanlator { - @override - String build({required int mangaId}) { - final manga = ref.watch(mangaWithIdProvider(mangaId: mangaId)); - return manga.valueOrNull?.meta?.scanlator ?? MangaMetaKeys.scanlator.key; - } - - void update(String? scanlator) async { - await AsyncValue.guard( - () => ref.read(mangaBookRepositoryProvider).patchMangaMeta( - mangaId: mangaId, - key: MangaMetaKeys.scanlator.key, - value: scanlator ?? MangaMetaKeys.scanlator.key, - ), - ); - ref.invalidate(mangaWithIdProvider(mangaId: mangaId)); - state = scanlator ?? MangaMetaKeys.scanlator.key; - } -} - -@riverpod -AsyncValue?> mangaChapterListWithFilter( - MangaChapterListWithFilterRef ref, { - required int mangaId, -}) { - final chapterList = ref.watch(mangaChapterListProvider(mangaId: mangaId)); - final chapterFilterUnread = ref.watch(mangaChapterFilterUnreadProvider); - final chapterFilterDownloaded = - ref.watch(mangaChapterFilterDownloadedProvider); - final chapterFilterBookmark = ref.watch(mangaChapterFilterBookmarkedProvider); - final ChapterSort sortedBy = ref.watch(mangaChapterSortProvider) ?? - DBKeys.chapterSortDirection.initial; - final sortedDirection = - ref.watch(mangaChapterSortDirectionProvider).ifNull(true); - - final chapterFilterScanlator = - ref.watch(mangaChapterFilterScanlatorProvider(mangaId: mangaId)); - - bool applyChapterFilter(Chapter chapter) { - if (chapterFilterUnread != null && - (chapterFilterUnread ^ !(chapter.read.ifNull()))) { - return false; - } - - if (chapterFilterDownloaded != null && - (chapterFilterDownloaded ^ (chapter.downloaded.ifNull()))) { - return false; - } - - if (chapterFilterBookmark != null && - (chapterFilterBookmark ^ (chapter.bookmarked.ifNull()))) { - return false; - } - - if (chapterFilterScanlator != MangaMetaKeys.scanlator.key && - chapter.scanlator != chapterFilterScanlator) { - return false; - } - return true; - } - - int applyChapterSort(Chapter m1, Chapter m2) { - final sortDirToggle = (sortedDirection ? 1 : -1); - return (switch (sortedBy) { - ChapterSort.fetchedDate => - (m1.fetchedAt ?? 0).compareTo(m2.fetchedAt ?? 0), - ChapterSort.source => (m1.index ?? 0).compareTo(m2.index ?? 0), - ChapterSort.uploadDate => - (m1.uploadDate ?? 0).compareTo(m2.uploadDate ?? 0), - }) * - sortDirToggle; - } - - return chapterList.copyWithData( - (data) => [...?data?.where(applyChapterFilter)]..sort(applyChapterSort), - ); -} - -@riverpod -Chapter? firstUnreadInFilteredChapterList( - FirstUnreadInFilteredChapterListRef ref, { - required int mangaId, -}) { - final isAscSorted = ref.watch(mangaChapterSortDirectionProvider) ?? - DBKeys.chapterSortDirection.initial; - final filteredList = ref - .watch(mangaChapterListWithFilterProvider(mangaId: mangaId)) - .valueOrNull; - if (filteredList == null) { - return null; - } else { - if (isAscSorted) { - return filteredList - .firstWhereOrNull((element) => !element.read.ifNull(true)); - } else { - return filteredList - .lastWhereOrNull((element) => !element.read.ifNull(true)); - } - } -} - -@riverpod -({Chapter? first, Chapter? second})? getNextAndPreviousChapters( - GetNextAndPreviousChaptersRef ref, { - required int mangaId, - required String chapterIndex, - bool shouldAscSort = true, -}) { - final isAscSorted = ref.watch(mangaChapterSortDirectionProvider) ?? - DBKeys.chapterSortDirection.initial; - final filteredList = ref - .watch(mangaChapterListWithFilterProvider(mangaId: mangaId)) - .valueOrNull; - if (filteredList == null) { - return null; - } else { - final currentChapterIndex = filteredList - .indexWhere((element) => "${element.index}" == chapterIndex); - final prevChapter = - currentChapterIndex > 0 ? filteredList[currentChapterIndex - 1] : null; - final nextChapter = currentChapterIndex < (filteredList.length - 1) - ? filteredList[currentChapterIndex + 1] - : null; - return ( - first: shouldAscSort && isAscSorted ? nextChapter : prevChapter, - second: shouldAscSort && isAscSorted ? prevChapter : nextChapter, - ); - } -} - -@riverpod -class MangaChapterSort extends _$MangaChapterSort - with SharedPreferenceEnumClientMixin { - @override - ChapterSort? build() => initialize( - DBKeys.chapterSort, - enumList: ChapterSort.values, - ); -} - -@riverpod -class MangaChapterSortDirection extends _$MangaChapterSortDirection - with SharedPreferenceClientMixin { - @override - bool? build() => initialize(DBKeys.chapterSortDirection); -} - -@riverpod -class MangaChapterFilterDownloaded extends _$MangaChapterFilterDownloaded - with SharedPreferenceClientMixin { - @override - bool? build() => initialize(DBKeys.chapterFilterDownloaded); -} - -@riverpod -class MangaChapterFilterUnread extends _$MangaChapterFilterUnread - with SharedPreferenceClientMixin { - @override - bool? build() => initialize(DBKeys.chapterFilterUnread); -} - -@riverpod -class MangaChapterFilterBookmarked extends _$MangaChapterFilterBookmarked - with SharedPreferenceClientMixin { - @override - bool? build() => initialize(DBKeys.chapterFilterBookmarked); -} - -@riverpod -class MangaCategoryList extends _$MangaCategoryList { - @override - FutureOr?> build(int mangaId) async { - final result = await ref - .watch(mangaBookRepositoryProvider) - .getMangaCategoryList(mangaId: mangaId); - return { - for (Category i in (result ?? [])) "${i.id ?? ''}": i, - }; - } - - Future refresh() async { - final result = await AsyncValue.guard(() => ref - .watch(mangaBookRepositoryProvider) - .getMangaCategoryList(mangaId: mangaId)); - state = result.copyWithData((data) => { - for (Category i in (data ?? [])) "${i.id ?? ''}": i, - }); - } -} diff --git a/lib/src/features/manga_book/presentation/manga_details/controller/manga_details_controller.g.dart b/lib/src/features/manga_book/presentation/manga_details/controller/manga_details_controller.g.dart deleted file mode 100644 index c1856ea0..00000000 --- a/lib/src/features/manga_book/presentation/manga_details/controller/manga_details_controller.g.dart +++ /dev/null @@ -1,1263 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'manga_details_controller.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$mangaScanlatorListHash() => - r'de9a418bc7324f26283f6409bff10dff5b8c676d'; - -/// Copied from Dart SDK -class _SystemHash { - _SystemHash._(); - - static int combine(int hash, int value) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + value); - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x0007ffff & hash) << 10)); - return hash ^ (hash >> 6); - } - - static int finish(int hash) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x03ffffff & hash) << 3)); - // ignore: parameter_assignments - hash = hash ^ (hash >> 11); - return 0x1fffffff & (hash + ((0x00003fff & hash) << 15)); - } -} - -/// See also [mangaScanlatorList]. -@ProviderFor(mangaScanlatorList) -const mangaScanlatorListProvider = MangaScanlatorListFamily(); - -/// See also [mangaScanlatorList]. -class MangaScanlatorListFamily extends Family> { - /// See also [mangaScanlatorList]. - const MangaScanlatorListFamily(); - - /// See also [mangaScanlatorList]. - MangaScanlatorListProvider call({ - required int mangaId, - }) { - return MangaScanlatorListProvider( - mangaId: mangaId, - ); - } - - @override - MangaScanlatorListProvider getProviderOverride( - covariant MangaScanlatorListProvider provider, - ) { - return call( - mangaId: provider.mangaId, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'mangaScanlatorListProvider'; -} - -/// See also [mangaScanlatorList]. -class MangaScanlatorListProvider extends AutoDisposeProvider> { - /// See also [mangaScanlatorList]. - MangaScanlatorListProvider({ - required int mangaId, - }) : this._internal( - (ref) => mangaScanlatorList( - ref as MangaScanlatorListRef, - mangaId: mangaId, - ), - from: mangaScanlatorListProvider, - name: r'mangaScanlatorListProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$mangaScanlatorListHash, - dependencies: MangaScanlatorListFamily._dependencies, - allTransitiveDependencies: - MangaScanlatorListFamily._allTransitiveDependencies, - mangaId: mangaId, - ); - - MangaScanlatorListProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.mangaId, - }) : super.internal(); - - final int mangaId; - - @override - Override overrideWith( - Set Function(MangaScanlatorListRef provider) create, - ) { - return ProviderOverride( - origin: this, - override: MangaScanlatorListProvider._internal( - (ref) => create(ref as MangaScanlatorListRef), - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - mangaId: mangaId, - ), - ); - } - - @override - AutoDisposeProviderElement> createElement() { - return _MangaScanlatorListProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is MangaScanlatorListProvider && other.mangaId == mangaId; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, mangaId.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin MangaScanlatorListRef on AutoDisposeProviderRef> { - /// The parameter `mangaId` of this provider. - int get mangaId; -} - -class _MangaScanlatorListProviderElement - extends AutoDisposeProviderElement> with MangaScanlatorListRef { - _MangaScanlatorListProviderElement(super.provider); - - @override - int get mangaId => (origin as MangaScanlatorListProvider).mangaId; -} - -String _$mangaChapterListWithFilterHash() => - r'd8e95ee63920e7ee5acf15deda7b9d795ca452c9'; - -/// See also [mangaChapterListWithFilter]. -@ProviderFor(mangaChapterListWithFilter) -const mangaChapterListWithFilterProvider = MangaChapterListWithFilterFamily(); - -/// See also [mangaChapterListWithFilter]. -class MangaChapterListWithFilterFamily - extends Family?>> { - /// See also [mangaChapterListWithFilter]. - const MangaChapterListWithFilterFamily(); - - /// See also [mangaChapterListWithFilter]. - MangaChapterListWithFilterProvider call({ - required int mangaId, - }) { - return MangaChapterListWithFilterProvider( - mangaId: mangaId, - ); - } - - @override - MangaChapterListWithFilterProvider getProviderOverride( - covariant MangaChapterListWithFilterProvider provider, - ) { - return call( - mangaId: provider.mangaId, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'mangaChapterListWithFilterProvider'; -} - -/// See also [mangaChapterListWithFilter]. -class MangaChapterListWithFilterProvider - extends AutoDisposeProvider?>> { - /// See also [mangaChapterListWithFilter]. - MangaChapterListWithFilterProvider({ - required int mangaId, - }) : this._internal( - (ref) => mangaChapterListWithFilter( - ref as MangaChapterListWithFilterRef, - mangaId: mangaId, - ), - from: mangaChapterListWithFilterProvider, - name: r'mangaChapterListWithFilterProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$mangaChapterListWithFilterHash, - dependencies: MangaChapterListWithFilterFamily._dependencies, - allTransitiveDependencies: - MangaChapterListWithFilterFamily._allTransitiveDependencies, - mangaId: mangaId, - ); - - MangaChapterListWithFilterProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.mangaId, - }) : super.internal(); - - final int mangaId; - - @override - Override overrideWith( - AsyncValue?> Function(MangaChapterListWithFilterRef provider) - create, - ) { - return ProviderOverride( - origin: this, - override: MangaChapterListWithFilterProvider._internal( - (ref) => create(ref as MangaChapterListWithFilterRef), - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - mangaId: mangaId, - ), - ); - } - - @override - AutoDisposeProviderElement?>> createElement() { - return _MangaChapterListWithFilterProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is MangaChapterListWithFilterProvider && - other.mangaId == mangaId; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, mangaId.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin MangaChapterListWithFilterRef - on AutoDisposeProviderRef?>> { - /// The parameter `mangaId` of this provider. - int get mangaId; -} - -class _MangaChapterListWithFilterProviderElement - extends AutoDisposeProviderElement?>> - with MangaChapterListWithFilterRef { - _MangaChapterListWithFilterProviderElement(super.provider); - - @override - int get mangaId => (origin as MangaChapterListWithFilterProvider).mangaId; -} - -String _$firstUnreadInFilteredChapterListHash() => - r'ed13a5108da7bb4f9224899075348531da8a118e'; - -/// See also [firstUnreadInFilteredChapterList]. -@ProviderFor(firstUnreadInFilteredChapterList) -const firstUnreadInFilteredChapterListProvider = - FirstUnreadInFilteredChapterListFamily(); - -/// See also [firstUnreadInFilteredChapterList]. -class FirstUnreadInFilteredChapterListFamily extends Family { - /// See also [firstUnreadInFilteredChapterList]. - const FirstUnreadInFilteredChapterListFamily(); - - /// See also [firstUnreadInFilteredChapterList]. - FirstUnreadInFilteredChapterListProvider call({ - required int mangaId, - }) { - return FirstUnreadInFilteredChapterListProvider( - mangaId: mangaId, - ); - } - - @override - FirstUnreadInFilteredChapterListProvider getProviderOverride( - covariant FirstUnreadInFilteredChapterListProvider provider, - ) { - return call( - mangaId: provider.mangaId, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'firstUnreadInFilteredChapterListProvider'; -} - -/// See also [firstUnreadInFilteredChapterList]. -class FirstUnreadInFilteredChapterListProvider - extends AutoDisposeProvider { - /// See also [firstUnreadInFilteredChapterList]. - FirstUnreadInFilteredChapterListProvider({ - required int mangaId, - }) : this._internal( - (ref) => firstUnreadInFilteredChapterList( - ref as FirstUnreadInFilteredChapterListRef, - mangaId: mangaId, - ), - from: firstUnreadInFilteredChapterListProvider, - name: r'firstUnreadInFilteredChapterListProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$firstUnreadInFilteredChapterListHash, - dependencies: FirstUnreadInFilteredChapterListFamily._dependencies, - allTransitiveDependencies: - FirstUnreadInFilteredChapterListFamily._allTransitiveDependencies, - mangaId: mangaId, - ); - - FirstUnreadInFilteredChapterListProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.mangaId, - }) : super.internal(); - - final int mangaId; - - @override - Override overrideWith( - Chapter? Function(FirstUnreadInFilteredChapterListRef provider) create, - ) { - return ProviderOverride( - origin: this, - override: FirstUnreadInFilteredChapterListProvider._internal( - (ref) => create(ref as FirstUnreadInFilteredChapterListRef), - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - mangaId: mangaId, - ), - ); - } - - @override - AutoDisposeProviderElement createElement() { - return _FirstUnreadInFilteredChapterListProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is FirstUnreadInFilteredChapterListProvider && - other.mangaId == mangaId; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, mangaId.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin FirstUnreadInFilteredChapterListRef on AutoDisposeProviderRef { - /// The parameter `mangaId` of this provider. - int get mangaId; -} - -class _FirstUnreadInFilteredChapterListProviderElement - extends AutoDisposeProviderElement - with FirstUnreadInFilteredChapterListRef { - _FirstUnreadInFilteredChapterListProviderElement(super.provider); - - @override - int get mangaId => - (origin as FirstUnreadInFilteredChapterListProvider).mangaId; -} - -String _$getNextAndPreviousChaptersHash() => - r'c4de0562e24cb2b3a6ead00889b2c5325d8cf7b5'; - -/// See also [getNextAndPreviousChapters]. -@ProviderFor(getNextAndPreviousChapters) -const getNextAndPreviousChaptersProvider = GetNextAndPreviousChaptersFamily(); - -/// See also [getNextAndPreviousChapters]. -class GetNextAndPreviousChaptersFamily - extends Family<({Chapter? first, Chapter? second})?> { - /// See also [getNextAndPreviousChapters]. - const GetNextAndPreviousChaptersFamily(); - - /// See also [getNextAndPreviousChapters]. - GetNextAndPreviousChaptersProvider call({ - required int mangaId, - required String chapterIndex, - bool shouldAscSort = true, - }) { - return GetNextAndPreviousChaptersProvider( - mangaId: mangaId, - chapterIndex: chapterIndex, - shouldAscSort: shouldAscSort, - ); - } - - @override - GetNextAndPreviousChaptersProvider getProviderOverride( - covariant GetNextAndPreviousChaptersProvider provider, - ) { - return call( - mangaId: provider.mangaId, - chapterIndex: provider.chapterIndex, - shouldAscSort: provider.shouldAscSort, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'getNextAndPreviousChaptersProvider'; -} - -/// See also [getNextAndPreviousChapters]. -class GetNextAndPreviousChaptersProvider - extends AutoDisposeProvider<({Chapter? first, Chapter? second})?> { - /// See also [getNextAndPreviousChapters]. - GetNextAndPreviousChaptersProvider({ - required int mangaId, - required String chapterIndex, - bool shouldAscSort = true, - }) : this._internal( - (ref) => getNextAndPreviousChapters( - ref as GetNextAndPreviousChaptersRef, - mangaId: mangaId, - chapterIndex: chapterIndex, - shouldAscSort: shouldAscSort, - ), - from: getNextAndPreviousChaptersProvider, - name: r'getNextAndPreviousChaptersProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$getNextAndPreviousChaptersHash, - dependencies: GetNextAndPreviousChaptersFamily._dependencies, - allTransitiveDependencies: - GetNextAndPreviousChaptersFamily._allTransitiveDependencies, - mangaId: mangaId, - chapterIndex: chapterIndex, - shouldAscSort: shouldAscSort, - ); - - GetNextAndPreviousChaptersProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.mangaId, - required this.chapterIndex, - required this.shouldAscSort, - }) : super.internal(); - - final int mangaId; - final String chapterIndex; - final bool shouldAscSort; - - @override - Override overrideWith( - ({Chapter? first, Chapter? second})? Function( - GetNextAndPreviousChaptersRef provider) - create, - ) { - return ProviderOverride( - origin: this, - override: GetNextAndPreviousChaptersProvider._internal( - (ref) => create(ref as GetNextAndPreviousChaptersRef), - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - mangaId: mangaId, - chapterIndex: chapterIndex, - shouldAscSort: shouldAscSort, - ), - ); - } - - @override - AutoDisposeProviderElement<({Chapter? first, Chapter? second})?> - createElement() { - return _GetNextAndPreviousChaptersProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is GetNextAndPreviousChaptersProvider && - other.mangaId == mangaId && - other.chapterIndex == chapterIndex && - other.shouldAscSort == shouldAscSort; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, mangaId.hashCode); - hash = _SystemHash.combine(hash, chapterIndex.hashCode); - hash = _SystemHash.combine(hash, shouldAscSort.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin GetNextAndPreviousChaptersRef - on AutoDisposeProviderRef<({Chapter? first, Chapter? second})?> { - /// The parameter `mangaId` of this provider. - int get mangaId; - - /// The parameter `chapterIndex` of this provider. - String get chapterIndex; - - /// The parameter `shouldAscSort` of this provider. - bool get shouldAscSort; -} - -class _GetNextAndPreviousChaptersProviderElement - extends AutoDisposeProviderElement<({Chapter? first, Chapter? second})?> - with GetNextAndPreviousChaptersRef { - _GetNextAndPreviousChaptersProviderElement(super.provider); - - @override - int get mangaId => (origin as GetNextAndPreviousChaptersProvider).mangaId; - @override - String get chapterIndex => - (origin as GetNextAndPreviousChaptersProvider).chapterIndex; - @override - bool get shouldAscSort => - (origin as GetNextAndPreviousChaptersProvider).shouldAscSort; -} - -String _$mangaWithIdHash() => r'aea36ab8126c57f1c73a24b1f8dc6ecbd03f25c1'; - -abstract class _$MangaWithId extends BuildlessAutoDisposeAsyncNotifier { - late final int mangaId; - - FutureOr build({ - required int mangaId, - }); -} - -/// See also [MangaWithId]. -@ProviderFor(MangaWithId) -const mangaWithIdProvider = MangaWithIdFamily(); - -/// See also [MangaWithId]. -class MangaWithIdFamily extends Family> { - /// See also [MangaWithId]. - const MangaWithIdFamily(); - - /// See also [MangaWithId]. - MangaWithIdProvider call({ - required int mangaId, - }) { - return MangaWithIdProvider( - mangaId: mangaId, - ); - } - - @override - MangaWithIdProvider getProviderOverride( - covariant MangaWithIdProvider provider, - ) { - return call( - mangaId: provider.mangaId, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'mangaWithIdProvider'; -} - -/// See also [MangaWithId]. -class MangaWithIdProvider - extends AutoDisposeAsyncNotifierProviderImpl { - /// See also [MangaWithId]. - MangaWithIdProvider({ - required int mangaId, - }) : this._internal( - () => MangaWithId()..mangaId = mangaId, - from: mangaWithIdProvider, - name: r'mangaWithIdProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$mangaWithIdHash, - dependencies: MangaWithIdFamily._dependencies, - allTransitiveDependencies: - MangaWithIdFamily._allTransitiveDependencies, - mangaId: mangaId, - ); - - MangaWithIdProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.mangaId, - }) : super.internal(); - - final int mangaId; - - @override - FutureOr runNotifierBuild( - covariant MangaWithId notifier, - ) { - return notifier.build( - mangaId: mangaId, - ); - } - - @override - Override overrideWith(MangaWithId Function() create) { - return ProviderOverride( - origin: this, - override: MangaWithIdProvider._internal( - () => create()..mangaId = mangaId, - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - mangaId: mangaId, - ), - ); - } - - @override - AutoDisposeAsyncNotifierProviderElement createElement() { - return _MangaWithIdProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is MangaWithIdProvider && other.mangaId == mangaId; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, mangaId.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin MangaWithIdRef on AutoDisposeAsyncNotifierProviderRef { - /// The parameter `mangaId` of this provider. - int get mangaId; -} - -class _MangaWithIdProviderElement - extends AutoDisposeAsyncNotifierProviderElement - with MangaWithIdRef { - _MangaWithIdProviderElement(super.provider); - - @override - int get mangaId => (origin as MangaWithIdProvider).mangaId; -} - -String _$mangaChapterListHash() => r'cf56cf36f6e1373d708eb3099b396395ec54032d'; - -abstract class _$MangaChapterList - extends BuildlessAutoDisposeAsyncNotifier?> { - late final int mangaId; - - FutureOr?> build({ - required int mangaId, - }); -} - -/// See also [MangaChapterList]. -@ProviderFor(MangaChapterList) -const mangaChapterListProvider = MangaChapterListFamily(); - -/// See also [MangaChapterList]. -class MangaChapterListFamily extends Family?>> { - /// See also [MangaChapterList]. - const MangaChapterListFamily(); - - /// See also [MangaChapterList]. - MangaChapterListProvider call({ - required int mangaId, - }) { - return MangaChapterListProvider( - mangaId: mangaId, - ); - } - - @override - MangaChapterListProvider getProviderOverride( - covariant MangaChapterListProvider provider, - ) { - return call( - mangaId: provider.mangaId, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'mangaChapterListProvider'; -} - -/// See also [MangaChapterList]. -class MangaChapterListProvider extends AutoDisposeAsyncNotifierProviderImpl< - MangaChapterList, List?> { - /// See also [MangaChapterList]. - MangaChapterListProvider({ - required int mangaId, - }) : this._internal( - () => MangaChapterList()..mangaId = mangaId, - from: mangaChapterListProvider, - name: r'mangaChapterListProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$mangaChapterListHash, - dependencies: MangaChapterListFamily._dependencies, - allTransitiveDependencies: - MangaChapterListFamily._allTransitiveDependencies, - mangaId: mangaId, - ); - - MangaChapterListProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.mangaId, - }) : super.internal(); - - final int mangaId; - - @override - FutureOr?> runNotifierBuild( - covariant MangaChapterList notifier, - ) { - return notifier.build( - mangaId: mangaId, - ); - } - - @override - Override overrideWith(MangaChapterList Function() create) { - return ProviderOverride( - origin: this, - override: MangaChapterListProvider._internal( - () => create()..mangaId = mangaId, - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - mangaId: mangaId, - ), - ); - } - - @override - AutoDisposeAsyncNotifierProviderElement?> - createElement() { - return _MangaChapterListProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is MangaChapterListProvider && other.mangaId == mangaId; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, mangaId.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin MangaChapterListRef - on AutoDisposeAsyncNotifierProviderRef?> { - /// The parameter `mangaId` of this provider. - int get mangaId; -} - -class _MangaChapterListProviderElement - extends AutoDisposeAsyncNotifierProviderElement?> with MangaChapterListRef { - _MangaChapterListProviderElement(super.provider); - - @override - int get mangaId => (origin as MangaChapterListProvider).mangaId; -} - -String _$mangaChapterFilterScanlatorHash() => - r'4d6da76af3cbbf033f1ca5fb04ea6eb7798c5820'; - -abstract class _$MangaChapterFilterScanlator - extends BuildlessAutoDisposeNotifier { - late final int mangaId; - - String build({ - required int mangaId, - }); -} - -/// See also [MangaChapterFilterScanlator]. -@ProviderFor(MangaChapterFilterScanlator) -const mangaChapterFilterScanlatorProvider = MangaChapterFilterScanlatorFamily(); - -/// See also [MangaChapterFilterScanlator]. -class MangaChapterFilterScanlatorFamily extends Family { - /// See also [MangaChapterFilterScanlator]. - const MangaChapterFilterScanlatorFamily(); - - /// See also [MangaChapterFilterScanlator]. - MangaChapterFilterScanlatorProvider call({ - required int mangaId, - }) { - return MangaChapterFilterScanlatorProvider( - mangaId: mangaId, - ); - } - - @override - MangaChapterFilterScanlatorProvider getProviderOverride( - covariant MangaChapterFilterScanlatorProvider provider, - ) { - return call( - mangaId: provider.mangaId, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'mangaChapterFilterScanlatorProvider'; -} - -/// See also [MangaChapterFilterScanlator]. -class MangaChapterFilterScanlatorProvider - extends AutoDisposeNotifierProviderImpl { - /// See also [MangaChapterFilterScanlator]. - MangaChapterFilterScanlatorProvider({ - required int mangaId, - }) : this._internal( - () => MangaChapterFilterScanlator()..mangaId = mangaId, - from: mangaChapterFilterScanlatorProvider, - name: r'mangaChapterFilterScanlatorProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$mangaChapterFilterScanlatorHash, - dependencies: MangaChapterFilterScanlatorFamily._dependencies, - allTransitiveDependencies: - MangaChapterFilterScanlatorFamily._allTransitiveDependencies, - mangaId: mangaId, - ); - - MangaChapterFilterScanlatorProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.mangaId, - }) : super.internal(); - - final int mangaId; - - @override - String runNotifierBuild( - covariant MangaChapterFilterScanlator notifier, - ) { - return notifier.build( - mangaId: mangaId, - ); - } - - @override - Override overrideWith(MangaChapterFilterScanlator Function() create) { - return ProviderOverride( - origin: this, - override: MangaChapterFilterScanlatorProvider._internal( - () => create()..mangaId = mangaId, - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - mangaId: mangaId, - ), - ); - } - - @override - AutoDisposeNotifierProviderElement - createElement() { - return _MangaChapterFilterScanlatorProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is MangaChapterFilterScanlatorProvider && - other.mangaId == mangaId; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, mangaId.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin MangaChapterFilterScanlatorRef on AutoDisposeNotifierProviderRef { - /// The parameter `mangaId` of this provider. - int get mangaId; -} - -class _MangaChapterFilterScanlatorProviderElement - extends AutoDisposeNotifierProviderElement with MangaChapterFilterScanlatorRef { - _MangaChapterFilterScanlatorProviderElement(super.provider); - - @override - int get mangaId => (origin as MangaChapterFilterScanlatorProvider).mangaId; -} - -String _$mangaChapterSortHash() => r'65cfa4018101913a9afb73cfe0f1dc8e7e9051c6'; - -/// See also [MangaChapterSort]. -@ProviderFor(MangaChapterSort) -final mangaChapterSortProvider = - AutoDisposeNotifierProvider.internal( - MangaChapterSort.new, - name: r'mangaChapterSortProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$mangaChapterSortHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$MangaChapterSort = AutoDisposeNotifier; -String _$mangaChapterSortDirectionHash() => - r'178008eb77e4c802bde58a23b3b288b33fbbcbfd'; - -/// See also [MangaChapterSortDirection]. -@ProviderFor(MangaChapterSortDirection) -final mangaChapterSortDirectionProvider = - AutoDisposeNotifierProvider.internal( - MangaChapterSortDirection.new, - name: r'mangaChapterSortDirectionProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$mangaChapterSortDirectionHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$MangaChapterSortDirection = AutoDisposeNotifier; -String _$mangaChapterFilterDownloadedHash() => - r'f22afc19cbdca59e0a9f73c875ef02640d414bc7'; - -/// See also [MangaChapterFilterDownloaded]. -@ProviderFor(MangaChapterFilterDownloaded) -final mangaChapterFilterDownloadedProvider = - AutoDisposeNotifierProvider.internal( - MangaChapterFilterDownloaded.new, - name: r'mangaChapterFilterDownloadedProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$mangaChapterFilterDownloadedHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$MangaChapterFilterDownloaded = AutoDisposeNotifier; -String _$mangaChapterFilterUnreadHash() => - r'75a99006c8f2ed6c2b52da3f7c9ffdecef0ac4fe'; - -/// See also [MangaChapterFilterUnread]. -@ProviderFor(MangaChapterFilterUnread) -final mangaChapterFilterUnreadProvider = - AutoDisposeNotifierProvider.internal( - MangaChapterFilterUnread.new, - name: r'mangaChapterFilterUnreadProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$mangaChapterFilterUnreadHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$MangaChapterFilterUnread = AutoDisposeNotifier; -String _$mangaChapterFilterBookmarkedHash() => - r'5d99f8a20682b1c278652ea51463fbfc5b0f676b'; - -/// See also [MangaChapterFilterBookmarked]. -@ProviderFor(MangaChapterFilterBookmarked) -final mangaChapterFilterBookmarkedProvider = - AutoDisposeNotifierProvider.internal( - MangaChapterFilterBookmarked.new, - name: r'mangaChapterFilterBookmarkedProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$mangaChapterFilterBookmarkedHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$MangaChapterFilterBookmarked = AutoDisposeNotifier; -String _$mangaCategoryListHash() => r'3fec3a544adc138ec7fbc98ad216e1b7399d0983'; - -abstract class _$MangaCategoryList - extends BuildlessAutoDisposeAsyncNotifier?> { - late final int mangaId; - - FutureOr?> build( - int mangaId, - ); -} - -/// See also [MangaCategoryList]. -@ProviderFor(MangaCategoryList) -const mangaCategoryListProvider = MangaCategoryListFamily(); - -/// See also [MangaCategoryList]. -class MangaCategoryListFamily - extends Family?>> { - /// See also [MangaCategoryList]. - const MangaCategoryListFamily(); - - /// See also [MangaCategoryList]. - MangaCategoryListProvider call( - int mangaId, - ) { - return MangaCategoryListProvider( - mangaId, - ); - } - - @override - MangaCategoryListProvider getProviderOverride( - covariant MangaCategoryListProvider provider, - ) { - return call( - provider.mangaId, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'mangaCategoryListProvider'; -} - -/// See also [MangaCategoryList]. -class MangaCategoryListProvider extends AutoDisposeAsyncNotifierProviderImpl< - MangaCategoryList, Map?> { - /// See also [MangaCategoryList]. - MangaCategoryListProvider( - int mangaId, - ) : this._internal( - () => MangaCategoryList()..mangaId = mangaId, - from: mangaCategoryListProvider, - name: r'mangaCategoryListProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$mangaCategoryListHash, - dependencies: MangaCategoryListFamily._dependencies, - allTransitiveDependencies: - MangaCategoryListFamily._allTransitiveDependencies, - mangaId: mangaId, - ); - - MangaCategoryListProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.mangaId, - }) : super.internal(); - - final int mangaId; - - @override - FutureOr?> runNotifierBuild( - covariant MangaCategoryList notifier, - ) { - return notifier.build( - mangaId, - ); - } - - @override - Override overrideWith(MangaCategoryList Function() create) { - return ProviderOverride( - origin: this, - override: MangaCategoryListProvider._internal( - () => create()..mangaId = mangaId, - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - mangaId: mangaId, - ), - ); - } - - @override - AutoDisposeAsyncNotifierProviderElement?> createElement() { - return _MangaCategoryListProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is MangaCategoryListProvider && other.mangaId == mangaId; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, mangaId.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin MangaCategoryListRef - on AutoDisposeAsyncNotifierProviderRef?> { - /// The parameter `mangaId` of this provider. - int get mangaId; -} - -class _MangaCategoryListProviderElement - extends AutoDisposeAsyncNotifierProviderElement?> with MangaCategoryListRef { - _MangaCategoryListProviderElement(super.provider); - - @override - int get mangaId => (origin as MangaCategoryListProvider).mangaId; -} -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/manga_book/presentation/manga_details/manga_details_screen.dart b/lib/src/features/manga_book/presentation/manga_details/manga_details_screen.dart deleted file mode 100644 index 7c0b1479..00000000 --- a/lib/src/features/manga_book/presentation/manga_details/manga_details_screen.dart +++ /dev/null @@ -1,338 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:math'; - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../constants/app_sizes.dart'; -import '../../../../routes/router_config.dart'; -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/misc/toast/toast.dart'; -import '../../../../widgets/emoticons.dart'; -import '../../../library/presentation/library/controller/library_controller.dart'; -import '../../domain/chapter/chapter_model.dart'; -import '../../widgets/chapter_actions/multi_chapters_actions_bottom_app_bar.dart'; -import 'controller/manga_details_controller.dart'; -import 'widgets/big_screen_manga_details.dart'; -import 'widgets/edit_manga_category_dialog.dart'; -import 'widgets/manga_chapter_organizer.dart'; -import 'widgets/small_screen_manga_details.dart'; - -class MangaDetailsScreen extends HookConsumerWidget { - const MangaDetailsScreen({super.key, required this.mangaId, this.categoryId}); - final int mangaId; - final int? categoryId; - @override - Widget build(BuildContext context, WidgetRef ref) { - // Providers as Class for this screen - final mangaProvider = mangaWithIdProvider(mangaId: mangaId); - final chapterListProvider = mangaChapterListProvider(mangaId: mangaId); - final chapterListFilteredProvider = - mangaChapterListWithFilterProvider(mangaId: mangaId); - - final manga = ref.watch(mangaProvider); - final filteredChapterList = ref.watch(chapterListFilteredProvider); - final firstUnreadChapter = ref.watch( - firstUnreadInFilteredChapterListProvider(mangaId: mangaId), - ); - - final selectedChapters = useState>({}); - - // Refresh manga - final mangaRefresh = useCallback( - ([bool onlineFetch = false]) async => - await ref.read(mangaProvider.notifier).refresh(onlineFetch), - [mangaProvider]); - - // Refresh chapter list - final chapterListRefresh = useCallback( - ([bool onlineFetch = false]) async => - await ref.read(chapterListProvider.notifier).refresh(onlineFetch), - [chapterListProvider]); - - final refresh = useCallback(([onlineFetch = false]) async { - if (context.mounted && onlineFetch) { - ref.read(toastProvider(context)).show( - context.l10n!.updating, - withMicrotask: true, - ); - } - await mangaRefresh(onlineFetch); - await chapterListRefresh(onlineFetch); - if (context.mounted && onlineFetch) { - if (manga.hasError) { - ref.read(toastProvider(context)).showError( - context.l10n!.errorSomethingWentWrong, - ); - } else { - ref.read(toastProvider(context)).show( - context.l10n!.updateCompleted, - withMicrotask: true, - ); - } - } - }, [context, mangaRefresh, chapterListRefresh]); - - useEffect(() { - if (filteredChapterList.isNotLoading && manga.isNotLoading) refresh(); - return; - }, []); - - return PopScope( - onPopInvoked: (didPop) async { - if (didPop && categoryId != null) { - ref.invalidate(categoryMangaListProvider(categoryId!)); - } - }, - child: manga.showUiWhenData( - context, - (data) => Scaffold( - appBar: selectedChapters.value.isNotEmpty - ? AppBar( - leading: IconButton( - onPressed: () => selectedChapters.value = ({}), - icon: const Icon(Icons.close_rounded), - ), - title: Text( - context.l10n!.numSelected(selectedChapters.value.length), - ), - actions: [ - IconButton( - onPressed: () { - final chapterList = [ - ...?filteredChapterList.valueOrNull - ]; - selectedChapters.value = ({ - for (Chapter i in chapterList) - if (i.id != null) i.id!: i - }); - }, - icon: const Icon(Icons.select_all_rounded), - ), - IconButton( - onPressed: () { - final chapterList = [ - ...?filteredChapterList.valueOrNull - ]; - selectedChapters.value = ({ - for (Chapter i in chapterList) - if (i.id != null && - !selectedChapters.value.containsKey(i.id)) - i.id!: i - }); - }, - icon: const Icon(Icons.flip_to_back_rounded), - ), - MultiSelectPopupButton( - filteredChapterList: filteredChapterList, - selectedChapters: selectedChapters, - ), - ], - ) - : AppBar( - title: Text(data?.title ?? context.l10n!.manga), - actions: [ - if (context.isTablet) ...[ - IconButton( - onPressed: () => refresh(true), - icon: const Icon(Icons.refresh_rounded), - ), - IconButton( - onPressed: () => showDialog( - context: context, - builder: (context) => - EditMangaCategoryDialog(mangaId: mangaId), - ), - icon: const Icon(Icons.category_rounded), - ) - ], - Builder( - builder: (context) => IconButton( - onPressed: () { - if (context.isTablet) { - Scaffold.of(context).openEndDrawer(); - } else { - showModalBottomSheet( - context: context, - shape: RoundedRectangleBorder( - borderRadius: KBorderRadius.rT16.radius, - ), - clipBehavior: Clip.hardEdge, - builder: (_) => - MangaChapterOrganizer(mangaId: mangaId), - ); - } - }, - icon: const Icon(Icons.filter_list_rounded), - ), - ), - if (!context.isTablet) - PopupMenuButton( - shape: RoundedRectangleBorder( - borderRadius: KBorderRadius.r16.radius, - ), - icon: const Icon(Icons.more_vert_rounded), - itemBuilder: (context) => [ - PopupMenuItem( - onTap: () => Future.microtask( - () => showDialog( - context: context, - builder: (context) => - EditMangaCategoryDialog(mangaId: mangaId), - ), - ), - child: Text(context.l10n!.editCategory), - ), - PopupMenuItem( - onTap: () => refresh(true), - child: Text(context.l10n!.refresh), - ), - ], - ) - ], - ), - endDrawer: Drawer( - shape: const RoundedRectangleBorder(), - width: kDrawerWidth, - child: MangaChapterOrganizer(mangaId: mangaId), - ), - bottomSheet: selectedChapters.value.isNotEmpty - ? MultiChaptersActionsBottomAppBar( - afterOptionSelected: chapterListRefresh, - selectedChapters: selectedChapters, - ) - : null, - floatingActionButton: - firstUnreadChapter != null && selectedChapters.value.isEmpty - ? FloatingActionButton.extended( - isExtended: context.isTablet, - label: Text( - data?.lastChapterRead?.index != null - ? context.l10n!.resume - : context.l10n!.start, - ), - icon: const Icon(Icons.play_arrow_rounded), - onPressed: () { - ReaderRoute( - mangaId: firstUnreadChapter.mangaId ?? mangaId, - chapterIndex: firstUnreadChapter.index ?? 0, - showReaderLayoutAnimation: true, - ).push(context); - }, - ) - : null, - body: data != null - ? context.isTablet - ? BigScreenMangaDetails( - chapterList: filteredChapterList, - manga: data, - mangaId: mangaId, - onRefresh: refresh, - onDescriptionRefresh: mangaRefresh, - onListRefresh: chapterListRefresh, - selectedChapters: selectedChapters, - ) - : SmallScreenMangaDetails( - chapterList: filteredChapterList, - manga: data, - mangaId: mangaId, - onRefresh: refresh, - onDescriptionRefresh: mangaRefresh, - onListRefresh: chapterListRefresh, - selectedChapters: selectedChapters, - ) - : Emoticons( - text: context.l10n!.noMangaFound, - button: TextButton( - onPressed: refresh, - child: Text(context.l10n!.refresh), - ), - ), - ), - refresh: refresh, - wrapper: (body) => Scaffold( - appBar: AppBar( - title: Text(context.l10n!.manga), - ), - body: body, - ), - ), - ); - } -} - -class MultiSelectPopupButton extends StatelessWidget { - const MultiSelectPopupButton({ - super.key, - required this.filteredChapterList, - required this.selectedChapters, - }); - - final AsyncValue?> filteredChapterList; - final ValueNotifier> selectedChapters; - - @override - Widget build(BuildContext context) { - return PopupMenuButton( - shape: RoundedRectangleBorder( - borderRadius: KBorderRadius.r16.radius, - ), - icon: const Icon(Icons.more_vert_rounded), - itemBuilder: (context) => [ - PopupMenuItem( - onTap: () { - List chapterList = [...?filteredChapterList.valueOrNull]; - final lastId = selectedChapters.value.keys.last; - final lastIndex = - chapterList.lastIndexWhere((chapter) => chapter.id == lastId); - final maxIndex = min(chapterList.length, lastIndex + 10); - selectedChapters.value = ({ - ...selectedChapters.value, - for (int i = lastIndex + 1; i < maxIndex; i++) - if (chapterList[i].id != null) - chapterList[i].id!: chapterList[i] - }); - }, - child: Text(context.l10n!.selectNext10), - ), - PopupMenuItem( - onTap: () { - final chapterList = [...?filteredChapterList.valueOrNull]; - - selectedChapters.value = ({ - for (Chapter i in chapterList) - if (i.id != null && !i.read.ifNull()) i.id!: i - }); - }, - child: Text(context.l10n!.selectUnread), - ), - PopupMenuItem( - onTap: () { - final chapterList = [...?filteredChapterList.valueOrNull]; - final selectedChapterIds = - selectedChapters.value.keys.toList(growable: false); - final firstSelectedIndex = chapterList.indexWhere( - (chapter) => chapter.id == selectedChapterIds.firstOrNull); - final lastSelectedIndex = chapterList.indexWhere( - (chapter) => chapter.id == selectedChapterIds.lastOrNull); - final firstIndex = min(firstSelectedIndex, lastSelectedIndex); - final lastIndex = max(firstSelectedIndex, lastSelectedIndex); - - selectedChapters.value = ({ - for (int i = firstIndex; i <= lastIndex; i++) - if (chapterList[i].id != null) - chapterList[i].id!: chapterList[i] - }); - }, - child: Text(context.l10n!.selectInBetween), - ), - ], - ); - } -} diff --git a/lib/src/features/manga_book/presentation/manga_details/widgets/big_screen_manga_details.dart b/lib/src/features/manga_book/presentation/manga_details/widgets/big_screen_manga_details.dart deleted file mode 100644 index 7b06c310..00000000 --- a/lib/src/features/manga_book/presentation/manga_details/widgets/big_screen_manga_details.dart +++ /dev/null @@ -1,119 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/emoticons.dart'; -import '../../../data/manga_book_repository.dart'; -import '../../../domain/chapter/chapter_model.dart'; -import '../../../domain/manga/manga_model.dart'; -import 'chapter_list_tile.dart'; -import 'manga_description.dart'; - -class BigScreenMangaDetails extends ConsumerWidget { - const BigScreenMangaDetails({ - super.key, - required this.chapterList, - required this.manga, - required this.mangaId, - required this.selectedChapters, - required this.onListRefresh, - required this.onRefresh, - required this.onDescriptionRefresh, - }); - final Manga manga; - final int mangaId; - final AsyncValueSetter onListRefresh; - final AsyncValueSetter onDescriptionRefresh; - final AsyncValueSetter onRefresh; - final ValueNotifier> selectedChapters; - final AsyncValue?> chapterList; - @override - Widget build(BuildContext context, WidgetRef ref) { - final filteredChapterList = chapterList.valueOrNull; - return RefreshIndicator( - onRefresh: () => onRefresh(true), - child: Row( - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - Expanded( - child: SingleChildScrollView( - child: MangaDescription( - manga: manga, - removeMangaFromLibrary: (() => ref - .read(mangaBookRepositoryProvider) - .removeMangaFromLibrary(mangaId)), - addMangaToLibrary: (() => ref - .read(mangaBookRepositoryProvider) - .addMangaToLibrary(mangaId)), - refresh: () => onDescriptionRefresh(false), - ), - ), - ), - const VerticalDivider(width: 0), - Expanded( - child: chapterList.showUiWhenData( - context, - (data) { - if (data.isNotBlank) { - return Column( - children: [ - ListTile( - title: Text(context.l10n!.noOfChapters( - filteredChapterList?.length ?? 0, - )), - ), - Expanded( - child: ListView.builder( - physics: const AlwaysScrollableScrollPhysics(), - itemBuilder: (context, index) { - if (filteredChapterList.length == index) { - return const ListTile(); - } - final key = - ValueKey("${filteredChapterList[index].id}"); - final chapter = filteredChapterList[index]; - return ChapterListTile( - key: key, - manga: manga, - chapter: chapter, - updateData: () => onListRefresh(false), - isSelected: selectedChapters.value - .containsKey(chapter.id), - canTapSelect: selectedChapters.value.isNotEmpty, - toggleSelect: (Chapter val) { - if ((val.id).isNull) return; - selectedChapters.value = selectedChapters.value - .toggleKey(val.id!, val); - }, - ); - }, - itemCount: filteredChapterList!.length + 1, - ), - ), - ], - ); - } else { - return Emoticons( - text: context.l10n!.noChaptersFound, - button: TextButton( - onPressed: () => onListRefresh(true), - child: Text(context.l10n!.refresh), - ), - ); - } - }, - refresh: () => onRefresh(false), - ), - ), - ], - ), - ); - } -} diff --git a/lib/src/features/manga_book/presentation/manga_details/widgets/chapter_list_tile.dart b/lib/src/features/manga_book/presentation/manga_details/widgets/chapter_list_tile.dart deleted file mode 100644 index 677e9457..00000000 --- a/lib/src/features/manga_book/presentation/manga_details/widgets/chapter_list_tile.dart +++ /dev/null @@ -1,113 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:gap/gap.dart'; - -import '../../../../../routes/router_config.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../domain/chapter/chapter_model.dart'; -import '../../../domain/manga/manga_model.dart'; -import '../../../widgets/download_status_icon.dart'; - -class ChapterListTile extends StatelessWidget { - const ChapterListTile({ - super.key, - required this.manga, - required this.chapter, - required this.updateData, - required this.toggleSelect, - this.canTapSelect = false, - this.isSelected = false, - }); - final Manga manga; - final Chapter chapter; - final AsyncCallback updateData; - final ValueChanged toggleSelect; - final bool canTapSelect; - final bool isSelected; - @override - Widget build(BuildContext context) { - return GestureDetector( - key: Key("manga-${manga.id}-chapter-${chapter.id}"), - onSecondaryTap: () => toggleSelect(chapter), - child: ListTile( - title: Row( - mainAxisSize: MainAxisSize.min, - children: [ - if (chapter.bookmarked.ifNull()) ...[ - Icon( - Icons.bookmark, - color: chapter.read.ifNull() ? Colors.grey : context.iconColor, - size: 20, - ), - const Gap(4), - ], - Expanded( - child: Text( - chapter.getDisplayName(context), - style: TextStyle( - color: chapter.read.ifNull() ? Colors.grey : null, - ), - overflow: TextOverflow.ellipsis, - ), - ), - ], - ), - subtitle: chapter.uploadDate != null - ? Row( - children: [ - Text( - chapter.uploadDate!.toDaysAgo(context), - style: TextStyle( - color: chapter.read.ifNull() ? Colors.grey : null, - ), - ), - if (!chapter.read.ifNull() && - (chapter.lastPageRead).getValueOnNullOrNegative() != 0) - Text( - " • ${context.l10n!.page(chapter.lastPageRead.getValueOnNullOrNegative() + 1)}", - style: const TextStyle(color: Colors.grey), - overflow: TextOverflow.ellipsis, - ), - if (chapter.scanlator.isNotBlank) - Expanded( - child: Text( - " • ${chapter.scanlator}", - style: TextStyle( - color: chapter.read.ifNull() ? Colors.grey : null, - ), - overflow: TextOverflow.ellipsis, - ), - ), - ], - ) - : null, - trailing: (chapter.index != null && manga.id != null) - ? DownloadStatusIcon( - updateData: updateData, - chapter: chapter, - mangaId: manga.id!, - isDownloaded: chapter.downloaded.ifNull(), - ) - : null, - selectedColor: context.theme.colorScheme.onSurface, - selectedTileColor: - context.isDarkMode ? Colors.grey.shade700 : Colors.grey.shade300, - selected: isSelected, - onTap: canTapSelect - ? () => toggleSelect(chapter) - : () => ReaderRoute( - mangaId: manga.id!, - chapterIndex: chapter.index!, - showReaderLayoutAnimation: true, - ).push(context), - onLongPress: () => toggleSelect(chapter), - ), - ); - } -} diff --git a/lib/src/features/manga_book/presentation/manga_details/widgets/edit_manga_category_dialog.dart b/lib/src/features/manga_book/presentation/manga_details/widgets/edit_manga_category_dialog.dart deleted file mode 100644 index ddd82302..00000000 --- a/lib/src/features/manga_book/presentation/manga_details/widgets/edit_manga_category_dialog.dart +++ /dev/null @@ -1,97 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../constants/app_sizes.dart'; - -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/async_buttons/async_checkbox_list_tile.dart'; -import '../../../../../widgets/pop_button.dart'; -import '../../../../library/domain/category/category_model.dart'; -import '../../../../library/presentation/category/controller/edit_category_controller.dart'; -import '../../../data/manga_book_repository.dart'; -import '../controller/manga_details_controller.dart'; - -class EditMangaCategoryDialog extends HookConsumerWidget { - const EditMangaCategoryDialog({ - super.key, - required this.mangaId, - this.title, - }); - final int mangaId; - final String? title; - @override - Widget build(BuildContext context, WidgetRef ref) { - final categoryList = ref.watch(categoryControllerProvider); - final provider = mangaCategoryListProvider(mangaId); - final mangaCategoryList = ref.watch(provider); - return AlertDialog( - title: Column( - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - Text(context.l10n!.editCategory), - if (title.isNotBlank) - Text( - title!, - style: context.textTheme.bodySmall, - overflow: TextOverflow.ellipsis, - ) - ], - ), - contentPadding: KEdgeInsets.h8v16.size, - actions: [PopButton(popText: context.l10n!.close)], - content: categoryList.showUiWhenData( - context, - (data) => ConstrainedBox( - constraints: BoxConstraints(maxHeight: context.height * .7), - child: data.isBlank || (data.isSingletonList && data!.first.id == 0) - ? Padding( - padding: KEdgeInsets.h16.size, - child: Text(context.l10n!.noCategoriesFoundAlt), - ) - : SingleChildScrollView( - child: mangaCategoryList.showUiWhenData( - context, - (selectedCategoryList) => Column( - children: [ - for (Category category in data!) - if (category.id != 0) - AsyncCheckboxListTile( - onChanged: (value) async { - await AsyncValue.guard( - () => value.ifNull() - ? ref - .read(mangaBookRepositoryProvider) - .addMangaToCategory( - mangaId, - "${category.id!}", - ) - : ref - .read(mangaBookRepositoryProvider) - .removeMangaFromCategory( - mangaId, - "${category.id!}", - ), - ); - await ref.read(provider.notifier).refresh(); - }, - value: selectedCategoryList?.containsKey( - "${category.id}", - ) ?? - false, - title: Text(category.name ?? ""), - ), - ], - ), - ), - ), - ), - ), - ); - } -} diff --git a/lib/src/features/manga_book/presentation/manga_details/widgets/manga_chapter_filter.dart b/lib/src/features/manga_book/presentation/manga_details/widgets/manga_chapter_filter.dart deleted file mode 100644 index 5547cb40..00000000 --- a/lib/src/features/manga_book/presentation/manga_details/widgets/manga_chapter_filter.dart +++ /dev/null @@ -1,74 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/custom_checkbox_list_tile.dart'; -import '../../../domain/manga/manga_model.dart'; -import '../controller/manga_details_controller.dart'; - -class MangaChapterFilter extends ConsumerWidget { - const MangaChapterFilter({super.key, required this.mangaId}); - final int mangaId; - @override - Widget build(BuildContext context, WidgetRef ref) { - final scanlatorList = - ref.watch(mangaScanlatorListProvider(mangaId: mangaId)); - final selectedScanlator = - ref.watch(mangaChapterFilterScanlatorProvider(mangaId: mangaId)); - return ListView( - children: [ - CustomCheckboxListTile( - title: context.l10n!.unread, - provider: mangaChapterFilterUnreadProvider, - onChanged: ref.read(mangaChapterFilterUnreadProvider.notifier).update, - ), - CustomCheckboxListTile( - title: context.l10n!.bookmarked, - provider: mangaChapterFilterBookmarkedProvider, - onChanged: - ref.read(mangaChapterFilterBookmarkedProvider.notifier).update, - ), - CustomCheckboxListTile( - title: context.l10n!.downloaded, - provider: mangaChapterFilterDownloadedProvider, - onChanged: - ref.read(mangaChapterFilterDownloadedProvider.notifier).update, - ), - if (scanlatorList.isNotBlank && scanlatorList.length > 1) ...[ - ListTile( - title: Text( - context.l10n!.scanlators, - style: context.textTheme.labelLarge, - ), - dense: true, - ), - RadioListTile( - title: Text(context.l10n!.allScanlators), - value: MangaMetaKeys.scanlator.key, - groupValue: selectedScanlator, - onChanged: (val) => ref - .read(mangaChapterFilterScanlatorProvider(mangaId: mangaId) - .notifier) - .update(val), - ), - for (final scanlator in scanlatorList) - RadioListTile( - title: Text(scanlator), - value: scanlator, - groupValue: selectedScanlator, - onChanged: (val) => ref - .read(mangaChapterFilterScanlatorProvider(mangaId: mangaId) - .notifier) - .update(val), - ), - ], - ], - ); - } -} diff --git a/lib/src/features/manga_book/presentation/manga_details/widgets/manga_chapter_organizer.dart b/lib/src/features/manga_book/presentation/manga_details/widgets/manga_chapter_organizer.dart deleted file mode 100644 index 406c3fba..00000000 --- a/lib/src/features/manga_book/presentation/manga_details/widgets/manga_chapter_organizer.dart +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../../../../../utils/extensions/custom_extensions.dart'; -import 'manga_chapter_filter.dart'; -import 'manga_chapter_sort.dart'; - -class MangaChapterOrganizer extends StatelessWidget { - const MangaChapterOrganizer({super.key, required this.mangaId}); - final int mangaId; - @override - Widget build(BuildContext context) { - return DefaultTabController( - length: 2, - child: Scaffold( - appBar: TabBar( - tabs: [ - Tab(text: context.l10n!.filter), - Tab(text: context.l10n!.sort), - ], - ), - body: TabBarView( - children: [ - MangaChapterFilter(mangaId: mangaId), - const MangaChapterSort(), - ], - ), - ), - ); - } -} diff --git a/lib/src/features/manga_book/presentation/manga_details/widgets/manga_chapter_sort.dart b/lib/src/features/manga_book/presentation/manga_details/widgets/manga_chapter_sort.dart deleted file mode 100644 index a536a43e..00000000 --- a/lib/src/features/manga_book/presentation/manga_details/widgets/manga_chapter_sort.dart +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../constants/enum.dart'; -import 'manga_chapter_sort_tile.dart'; - -class MangaChapterSort extends ConsumerWidget { - const MangaChapterSort({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - return ListView( - children: [ - const Divider(height: .5), - for (ChapterSort chapterSort in ChapterSort.values) - MangaChapterSortTile(sortType: chapterSort), - ], - ); - } -} diff --git a/lib/src/features/manga_book/presentation/manga_details/widgets/manga_chapter_sort_tile.dart b/lib/src/features/manga_book/presentation/manga_details/widgets/manga_chapter_sort_tile.dart deleted file mode 100644 index dbacd172..00000000 --- a/lib/src/features/manga_book/presentation/manga_details/widgets/manga_chapter_sort_tile.dart +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../constants/enum.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/sort_list_tile.dart'; -import '../controller/manga_details_controller.dart'; - -class MangaChapterSortTile extends ConsumerWidget { - const MangaChapterSortTile({ - super.key, - required this.sortType, - }); - final ChapterSort sortType; - @override - Widget build(BuildContext context, WidgetRef ref) { - final sortedBy = ref.watch(mangaChapterSortProvider); - final sortedDirection = ref.watch(mangaChapterSortDirectionProvider); - return SortListTile( - selected: sortType == sortedBy, - title: Text(sortType.toLocale(context)), - ascending: sortedDirection.ifNull(true), - onChanged: (bool? value) => ref - .read(mangaChapterSortDirectionProvider.notifier) - .update(!(sortedDirection.ifNull())), - onSelected: () => - ref.read(mangaChapterSortProvider.notifier).update(sortType), - ); - } -} diff --git a/lib/src/features/manga_book/presentation/manga_details/widgets/manga_description.dart b/lib/src/features/manga_book/presentation/manga_details/widgets/manga_description.dart deleted file mode 100644 index 9b454f4d..00000000 --- a/lib/src/features/manga_book/presentation/manga_details/widgets/manga_description.dart +++ /dev/null @@ -1,166 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../constants/app_sizes.dart'; - -import '../../../../../routes/router_config.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../utils/launch_url_in_web.dart'; -import '../../../../../utils/misc/toast/toast.dart'; -import '../../../../../widgets/async_buttons/async_text_button_icon.dart'; -import '../../../../../widgets/manga_cover/list/manga_cover_descriptive_list_tile.dart'; -import '../../../domain/manga/manga_model.dart'; - -class MangaDescription extends HookConsumerWidget { - const MangaDescription({ - super.key, - required this.manga, - required this.removeMangaFromLibrary, - required this.addMangaToLibrary, - required this.refresh, - }); - final Manga manga; - final AsyncCallback refresh; - final AsyncCallback removeMangaFromLibrary; - final AsyncCallback addMangaToLibrary; - @override - Widget build(BuildContext context, WidgetRef ref) { - final isExpanded = useState(context.isTablet); - return Column( - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - MangaCoverDescriptiveListTile( - manga: manga, - showBadges: false, - onTitleClicked: (query) => - GlobalSearchRoute(query: query).push(context), - ), - Padding( - padding: const EdgeInsets.all(8.0), - child: Row( - mainAxisAlignment: MainAxisAlignment.spaceEvenly, - children: [ - AsyncTextButtonIcon( - onPressed: () async { - final val = await AsyncValue.guard(() async { - if (manga.inLibrary.ifNull()) { - await removeMangaFromLibrary(); - } else { - await addMangaToLibrary(); - } - await refresh(); - }); - if (context.mounted) { - val.showToastOnError(ref.read(toastProvider(context))); - } - }, - isPrimary: manga.inLibrary.ifNull(), - primaryIcon: const Icon(Icons.favorite_rounded), - secondaryIcon: const Icon(Icons.favorite_border_outlined), - secondaryStyle: - TextButton.styleFrom(foregroundColor: Colors.grey), - primaryLabel: Text(context.l10n!.inLibrary), - secondaryLabel: Text(context.l10n!.addToLibrary), - ), - if (manga.realUrl.isNotBlank) - TextButton.icon( - onPressed: () async { - launchUrlInWeb( - context, - (manga.realUrl ?? ""), - ref.read(toastProvider(context)), - ); - }, - icon: const Icon(Icons.public), - style: TextButton.styleFrom(foregroundColor: Colors.grey), - label: Text(context.l10n!.webView), - ), - ], - ), - ), - if (manga.description.isNotBlank) - Padding( - padding: KEdgeInsets.a16.size, - child: Stack( - alignment: AlignmentDirectional.bottomStart, - children: [ - Text( - "${manga.description}\n", - maxLines: isExpanded.value ? null : 3, - ), - InkWell( - child: Container( - margin: EdgeInsets.zero, - decoration: BoxDecoration( - boxShadow: [ - BoxShadow( - color: context.theme.canvasColor.withOpacity(.7), - ), - ], - gradient: LinearGradient( - colors: [ - context.theme.canvasColor.withOpacity(0), - context.theme.canvasColor.withOpacity(.3), - context.theme.canvasColor.withOpacity(.5), - context.theme.canvasColor.withOpacity(.6), - ], - begin: Alignment.topCenter, - end: Alignment.bottomCenter, - ), - ), - child: Center( - child: Icon( - isExpanded.value - ? Icons.keyboard_arrow_up_rounded - : Icons.keyboard_arrow_down_rounded, - ), - ), - ), - onTap: () => isExpanded.value = (!isExpanded.value), - ), - ], - ), - ), - if (isExpanded.value) - Padding( - padding: KEdgeInsets.h16.size, - child: Wrap( - spacing: 8, - runSpacing: 8, - // alignment: WrapAlignment.spaceBetween, - children: [ - ...?manga.genre?.map( - (e) => Chip(label: Text(e)), - ) - ], - ), - ) - else - Padding( - padding: KEdgeInsets.h16.size, - child: SingleChildScrollView( - scrollDirection: Axis.horizontal, - child: Row( - children: [ - ...?manga.genre?.map( - (e) => Padding( - padding: KEdgeInsets.h4.size, - child: Chip(label: Text(e)), - ), - ) - ], - ), - ), - ), - ], - ); - } -} diff --git a/lib/src/features/manga_book/presentation/manga_details/widgets/small_screen_manga_details.dart b/lib/src/features/manga_book/presentation/manga_details/widgets/small_screen_manga_details.dart deleted file mode 100644 index 6d9477c4..00000000 --- a/lib/src/features/manga_book/presentation/manga_details/widgets/small_screen_manga_details.dart +++ /dev/null @@ -1,114 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/emoticons.dart'; -import '../../../data/manga_book_repository.dart'; -import '../../../domain/chapter/chapter_model.dart'; -import '../../../domain/manga/manga_model.dart'; -import 'chapter_list_tile.dart'; -import 'manga_description.dart'; - -class SmallScreenMangaDetails extends ConsumerWidget { - const SmallScreenMangaDetails({ - super.key, - required this.chapterList, - required this.manga, - required this.selectedChapters, - required this.mangaId, - required this.onRefresh, - required this.onDescriptionRefresh, - required this.onListRefresh, - }); - final int mangaId; - final Manga manga; - final AsyncValueSetter onRefresh; - final ValueNotifier> selectedChapters; - final AsyncValue?> chapterList; - final AsyncValueSetter onListRefresh; - final AsyncValueSetter onDescriptionRefresh; - @override - Widget build(BuildContext context, WidgetRef ref) { - final filteredChapterList = chapterList.valueOrNull; - return RefreshIndicator( - onRefresh: () => onRefresh(true), - child: CustomScrollView( - physics: const AlwaysScrollableScrollPhysics(), - slivers: [ - SliverToBoxAdapter( - child: SingleChildScrollView( - child: MangaDescription( - manga: manga, - refresh: () => onDescriptionRefresh(false), - removeMangaFromLibrary: () => ref - .read(mangaBookRepositoryProvider) - .removeMangaFromLibrary(mangaId), - addMangaToLibrary: () => ref - .read(mangaBookRepositoryProvider) - .addMangaToLibrary(mangaId), - ), - ), - ), - SliverToBoxAdapter( - child: ListTile( - title: Text( - context.l10n!.noOfChapters(filteredChapterList?.length ?? 0), - ), - ), - ), - chapterList.showUiWhenData( - context, - (data) { - if (data.isNotBlank) { - return SliverList( - delegate: SliverChildBuilderDelegate( - (context, index) => ChapterListTile( - key: ValueKey("${filteredChapterList[index].id}"), - manga: manga, - chapter: filteredChapterList[index], - updateData: () => onRefresh(false), - isSelected: selectedChapters.value - .containsKey(filteredChapterList[index].id), - canTapSelect: selectedChapters.value.isNotEmpty, - toggleSelect: (Chapter val) { - if ((val.id).isNull) return; - selectedChapters.value = - selectedChapters.value.toggleKey(val.id!, val); - }, - ), - childCount: filteredChapterList!.length, - ), - ); - } else { - return SliverToBoxAdapter( - child: Emoticons( - text: context.l10n!.noChaptersFound, - button: TextButton( - onPressed: () => onDescriptionRefresh(true), - child: Text(context.l10n!.refresh), - ), - ), - ); - } - }, - refresh: () => onRefresh(false), - wrapper: (child) => SliverToBoxAdapter( - child: SizedBox( - height: context.height * .5, - child: child, - ), - ), - ), - const SliverToBoxAdapter(child: ListTile()), - ], - ), - ); - } -} diff --git a/lib/src/features/manga_book/presentation/manga_thumbnail_viewer/manga_thumbnail_viewer.dart b/lib/src/features/manga_book/presentation/manga_thumbnail_viewer/manga_thumbnail_viewer.dart deleted file mode 100644 index 26643eda..00000000 --- a/lib/src/features/manga_book/presentation/manga_thumbnail_viewer/manga_thumbnail_viewer.dart +++ /dev/null @@ -1,45 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:ui'; - -import 'package:flutter/material.dart'; -import 'package:go_router/go_router.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../widgets/server_image.dart'; - -class MangaThumbnailViewer extends StatelessWidget { - const MangaThumbnailViewer({ - super.key, - required this.imageUrl, - }); - final String imageUrl; - @override - Widget build(BuildContext context) { - return GestureDetector( - onTap: () => context.pop(), - child: Scaffold( - appBar: AppBar(backgroundColor: Colors.transparent), - backgroundColor: Colors.transparent, - body: BackdropFilter( - filter: ImageFilter.blur(sigmaX: 3.0, sigmaY: 3.0), - child: Container( - decoration: BoxDecoration( - color: context.colorScheme.background.withOpacity(0.1), - ), - child: InteractiveViewer( - maxScale: 4, - child: Center( - child: ServerImage(imageUrl: imageUrl), - ), - ), - ), - ), - ), - ); - } -} diff --git a/lib/src/features/manga_book/presentation/reader/controller/reader_controller.dart b/lib/src/features/manga_book/presentation/reader/controller/reader_controller.dart deleted file mode 100644 index 68ad5ff8..00000000 --- a/lib/src/features/manga_book/presentation/reader/controller/reader_controller.dart +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:dio/dio.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../data/manga_book_repository.dart'; -import '../../../domain/chapter/chapter_model.dart'; - -part 'reader_controller.g.dart'; - -@riverpod -FutureOr chapter( - ChapterRef ref, { - required int mangaId, - required int chapterIndex, -}) async { - final token = CancelToken(); - ref.onDispose(token.cancel); - final result = await ref.watch(mangaBookRepositoryProvider).getChapter( - mangaId: mangaId, - chapterIndex: chapterIndex, - ); - ref.keepAlive(); - return result; -} diff --git a/lib/src/features/manga_book/presentation/reader/controller/reader_controller.g.dart b/lib/src/features/manga_book/presentation/reader/controller/reader_controller.g.dart deleted file mode 100644 index 86454b8d..00000000 --- a/lib/src/features/manga_book/presentation/reader/controller/reader_controller.g.dart +++ /dev/null @@ -1,174 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'reader_controller.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$chapterHash() => r'8cdfda4725491b07f03c8b51a655b22090fca811'; - -/// Copied from Dart SDK -class _SystemHash { - _SystemHash._(); - - static int combine(int hash, int value) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + value); - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x0007ffff & hash) << 10)); - return hash ^ (hash >> 6); - } - - static int finish(int hash) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x03ffffff & hash) << 3)); - // ignore: parameter_assignments - hash = hash ^ (hash >> 11); - return 0x1fffffff & (hash + ((0x00003fff & hash) << 15)); - } -} - -/// See also [chapter]. -@ProviderFor(chapter) -const chapterProvider = ChapterFamily(); - -/// See also [chapter]. -class ChapterFamily extends Family> { - /// See also [chapter]. - const ChapterFamily(); - - /// See also [chapter]. - ChapterProvider call({ - required int mangaId, - required int chapterIndex, - }) { - return ChapterProvider( - mangaId: mangaId, - chapterIndex: chapterIndex, - ); - } - - @override - ChapterProvider getProviderOverride( - covariant ChapterProvider provider, - ) { - return call( - mangaId: provider.mangaId, - chapterIndex: provider.chapterIndex, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'chapterProvider'; -} - -/// See also [chapter]. -class ChapterProvider extends AutoDisposeFutureProvider { - /// See also [chapter]. - ChapterProvider({ - required int mangaId, - required int chapterIndex, - }) : this._internal( - (ref) => chapter( - ref as ChapterRef, - mangaId: mangaId, - chapterIndex: chapterIndex, - ), - from: chapterProvider, - name: r'chapterProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$chapterHash, - dependencies: ChapterFamily._dependencies, - allTransitiveDependencies: ChapterFamily._allTransitiveDependencies, - mangaId: mangaId, - chapterIndex: chapterIndex, - ); - - ChapterProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.mangaId, - required this.chapterIndex, - }) : super.internal(); - - final int mangaId; - final int chapterIndex; - - @override - Override overrideWith( - FutureOr Function(ChapterRef provider) create, - ) { - return ProviderOverride( - origin: this, - override: ChapterProvider._internal( - (ref) => create(ref as ChapterRef), - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - mangaId: mangaId, - chapterIndex: chapterIndex, - ), - ); - } - - @override - AutoDisposeFutureProviderElement createElement() { - return _ChapterProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is ChapterProvider && - other.mangaId == mangaId && - other.chapterIndex == chapterIndex; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, mangaId.hashCode); - hash = _SystemHash.combine(hash, chapterIndex.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin ChapterRef on AutoDisposeFutureProviderRef { - /// The parameter `mangaId` of this provider. - int get mangaId; - - /// The parameter `chapterIndex` of this provider. - int get chapterIndex; -} - -class _ChapterProviderElement extends AutoDisposeFutureProviderElement - with ChapterRef { - _ChapterProviderElement(super.provider); - - @override - int get mangaId => (origin as ChapterProvider).mangaId; - @override - int get chapterIndex => (origin as ChapterProvider).chapterIndex; -} -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/manga_book/presentation/reader/reader_screen.dart b/lib/src/features/manga_book/presentation/reader/reader_screen.dart deleted file mode 100644 index 3ff1a554..00000000 --- a/lib/src/features/manga_book/presentation/reader/reader_screen.dart +++ /dev/null @@ -1,184 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. -import 'dart:async'; - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter/services.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../constants/enum.dart'; -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../settings/presentation/reader/widgets/reader_mode_tile/reader_mode_tile.dart'; -import '../../data/manga_book_repository.dart'; -import '../../domain/chapter_patch/chapter_put_model.dart'; -import '../manga_details/controller/manga_details_controller.dart'; -import 'controller/reader_controller.dart'; -import 'widgets/reader_mode/continuous_reader_mode.dart'; -import 'widgets/reader_mode/single_page_reader_mode.dart'; - -class ReaderScreen extends HookConsumerWidget { - const ReaderScreen({ - super.key, - required this.mangaId, - required this.chapterIndex, - this.showReaderLayoutAnimation = false, - }); - final int mangaId; - final int chapterIndex; - final bool showReaderLayoutAnimation; - @override - Widget build(BuildContext context, WidgetRef ref) { - final mangaProvider = mangaWithIdProvider(mangaId: mangaId); - final chapterProviderWithIndex = - chapterProvider(mangaId: mangaId, chapterIndex: chapterIndex); - - final manga = ref.watch(mangaProvider); - final chapter = ref.watch(chapterProviderWithIndex); - final defaultReaderMode = ref.watch(readerModeKeyProvider); - - final debounce = useRef(null); - final updateLastRead = useCallback((int currentPage) async { - final chapterValue = chapter.valueOrNull; - final isReadingCompeted = chapterValue != null && - ((chapterValue.read).ifNull() || - (currentPage >= - ((chapterValue.pageCount).getValueOnNullOrNegative() - 1))); - await AsyncValue.guard( - () => ref.read(mangaBookRepositoryProvider).putChapter( - mangaId: mangaId, - chapterIndex: chapterIndex, - patch: ChapterPut( - lastPageRead: isReadingCompeted ? 0 : currentPage, - read: isReadingCompeted, - ), - ), - ); - }, [chapter.valueOrNull]); - - final onPageChanged = useCallback>( - (int index) async { - final chapterValue = chapter.valueOrNull; - if ((chapterValue?.read).ifNull() || - (chapterValue?.lastPageRead).getValueOnNullOrNegative() >= index) { - return; - } - - final finalDebounce = debounce.value; - if ((finalDebounce?.isActive).ifNull()) { - finalDebounce?.cancel(); - } - - if ((index >= - ((chapter.valueOrNull?.pageCount).getValueOnNullOrNegative() - - 1))) { - updateLastRead(index); - } else { - debounce.value = Timer( - const Duration(seconds: 2), - () => updateLastRead(index), - ); - } - return; - }, - [chapter], - ); - - useEffect(() { - SystemChrome.setEnabledSystemUIMode(SystemUiMode.immersiveSticky); - return () => SystemChrome.setEnabledSystemUIMode( - SystemUiMode.manual, - overlays: SystemUiOverlay.values, - ); - }, []); - - return PopScope( - onPopInvoked: (didPop) async { - if (didPop) { - ref.invalidate(chapterProviderWithIndex); - ref.invalidate(mangaChapterListProvider(mangaId: mangaId)); - } - }, - child: ScrollConfiguration( - behavior: ScrollConfiguration.of(context).copyWith(scrollbars: false), - child: SafeArea( - child: manga.showUiWhenData( - context, - (data) { - if (data == null) return const SizedBox.shrink(); - return chapter.showUiWhenData( - context, - (chapterData) { - if (chapterData == null) return const SizedBox.shrink(); - return switch (data.meta?.readerMode ?? defaultReaderMode) { - ReaderMode.singleVertical => SinglePageReaderMode( - chapter: chapterData, - manga: data, - onPageChanged: onPageChanged, - scrollDirection: Axis.vertical, - showReaderLayoutAnimation: showReaderLayoutAnimation, - ), - ReaderMode.singleHorizontalRTL => SinglePageReaderMode( - chapter: chapterData, - manga: data, - onPageChanged: onPageChanged, - reverse: true, - showReaderLayoutAnimation: showReaderLayoutAnimation, - ), - ReaderMode.continuousHorizontalLTR => ContinuousReaderMode( - chapter: chapterData, - manga: data, - onPageChanged: onPageChanged, - scrollDirection: Axis.horizontal, - showReaderLayoutAnimation: showReaderLayoutAnimation, - ), - ReaderMode.continuousHorizontalRTL => ContinuousReaderMode( - chapter: chapterData, - manga: data, - onPageChanged: onPageChanged, - scrollDirection: Axis.horizontal, - reverse: true, - showReaderLayoutAnimation: showReaderLayoutAnimation, - ), - ReaderMode.singleHorizontalLTR => SinglePageReaderMode( - chapter: chapterData, - manga: data, - onPageChanged: onPageChanged, - ), - ReaderMode.continuousVertical => ContinuousReaderMode( - chapter: chapterData, - manga: data, - onPageChanged: onPageChanged, - showSeparator: true, - showReaderLayoutAnimation: showReaderLayoutAnimation, - ), - ReaderMode.webtoon => ContinuousReaderMode( - chapter: chapterData, - manga: data, - onPageChanged: onPageChanged, - showReaderLayoutAnimation: showReaderLayoutAnimation, - ), - ReaderMode.defaultReader || null => ContinuousReaderMode( - chapter: chapterData, - manga: data, - onPageChanged: onPageChanged, - showReaderLayoutAnimation: showReaderLayoutAnimation, - ) - }; - }, - refresh: () => ref.refresh(chapterProviderWithIndex), - addScaffoldWrapper: true, - ); - }, - addScaffoldWrapper: true, - refresh: () => ref.refresh(mangaProvider), - ), - ), - ), - ); - } -} diff --git a/lib/src/features/manga_book/presentation/reader/widgets/chapter_separator.dart b/lib/src/features/manga_book/presentation/reader/widgets/chapter_separator.dart deleted file mode 100644 index 3e7af7df..00000000 --- a/lib/src/features/manga_book/presentation/reader/widgets/chapter_separator.dart +++ /dev/null @@ -1,107 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:gap/gap.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../constants/app_sizes.dart'; -import '../../../../../constants/enum.dart'; -import '../../../../../routes/router_config.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../settings/presentation/reader/widgets/reader_navigation_layout_tile/reader_navigation_layout_tile.dart'; -import '../../../domain/chapter/chapter_model.dart'; -import '../../../domain/manga/manga_model.dart'; -import '../../manga_details/controller/manga_details_controller.dart'; - -class ChapterSeparator extends ConsumerWidget { - const ChapterSeparator({ - super.key, - required this.manga, - required this.chapter, - required this.isPreviousChapterSeparator, - }); - final Manga manga; - final Chapter chapter; - final bool isPreviousChapterSeparator; - @override - Widget build(BuildContext context, WidgetRef ref) { - final nextPrevChapterPair = ref.watch( - getNextAndPreviousChaptersProvider( - mangaId: manga.id!, - chapterIndex: "${chapter.index}", - ), - ); - final navigationLayout = ref.watch(readerNavigationLayoutKeyProvider); - final showPrevNextButtons = - manga.meta?.readerNavigationLayout == ReaderNavigationLayout.disabled || - ((manga.meta?.readerNavigationLayout == null || - manga.meta?.readerNavigationLayout == - ReaderNavigationLayout.defaultNavigation) && - navigationLayout == ReaderNavigationLayout.disabled); - return Center( - child: SingleChildScrollView( - child: Column( - mainAxisAlignment: MainAxisAlignment.center, - crossAxisAlignment: CrossAxisAlignment.center, - children: [ - const Gap(16), - if (showPrevNextButtons && - nextPrevChapterPair?.second != null && - isPreviousChapterSeparator) - Padding( - padding: KEdgeInsets.v16.size, - child: FilledButton( - onPressed: () => ReaderRoute( - mangaId: nextPrevChapterPair!.second!.mangaId!, - chapterIndex: nextPrevChapterPair.second!.index!, - ).pushReplacement(context), - child: Text( - context.l10n!.previousChapter( - nextPrevChapterPair?.second?.getDisplayName(context) ?? - "", - ), - ), - ), - ), - Text( - isPreviousChapterSeparator - ? context.l10n!.start - : context.l10n!.finished, - style: context.textTheme.titleMedium - ?.copyWith(fontWeight: FontWeight.bold), - overflow: TextOverflow.ellipsis, - ), - Text( - chapter.getDisplayName(context), - style: context.textTheme.bodyMedium - ?.copyWith(fontWeight: FontWeight.bold), - overflow: TextOverflow.ellipsis, - ), - if (showPrevNextButtons && - nextPrevChapterPair?.first != null && - !isPreviousChapterSeparator) - Padding( - padding: KEdgeInsets.v16.size, - child: FilledButton( - onPressed: () => ReaderRoute( - mangaId: nextPrevChapterPair!.first!.mangaId!, - chapterIndex: nextPrevChapterPair.first!.index!, - ).pushReplacement(context), - child: Text( - context.l10n!.nextChapter( - nextPrevChapterPair?.first?.getDisplayName(context) ?? "", - ), - ), - ), - ), - const Gap(16), - ], - ), - ), - ); - } -} diff --git a/lib/src/features/manga_book/presentation/reader/widgets/page_number_slider.dart b/lib/src/features/manga_book/presentation/reader/widgets/page_number_slider.dart deleted file mode 100644 index e2c16a7e..00000000 --- a/lib/src/features/manga_book/presentation/reader/widgets/page_number_slider.dart +++ /dev/null @@ -1,57 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:math'; - -import 'package:flutter/material.dart'; - -import '../../../../../constants/app_sizes.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; - -class PageNumberSlider extends StatelessWidget { - const PageNumberSlider({ - super.key, - required this.currentValue, - required this.maxValue, - required this.onChanged, - this.inverted = false, - }); - final int currentValue; - final int maxValue; - final ValueChanged onChanged; - final bool inverted; - @override - Widget build(BuildContext context) { - final sliderWidget = [ - Text("${currentValue + 1}"), - Expanded( - child: Transform.flip( - flipX: inverted, - child: Slider( - value: min(currentValue.toDouble(), maxValue.toDouble()), - min: 0, - max: maxValue.toDouble() - 1, - divisions: max(maxValue - 1, 1), - onChanged: (val) => onChanged(val.toInt()), - ), - ), - ), - Text("$maxValue"), - ]; - return Card( - color: context.theme.appBarTheme.backgroundColor?.withOpacity(.7), - shape: RoundedRectangleBorder( - borderRadius: KBorderRadius.r32.radius, - ), - child: Padding( - padding: const EdgeInsets.symmetric(horizontal: 16), - child: Row( - children: inverted ? sliderWidget.reversed.toList() : sliderWidget, - ), - ), - ); - } -} diff --git a/lib/src/features/manga_book/presentation/reader/widgets/reader_mode/continuous_reader_mode.dart b/lib/src/features/manga_book/presentation/reader/widgets/reader_mode/continuous_reader_mode.dart deleted file mode 100644 index eae9696f..00000000 --- a/lib/src/features/manga_book/presentation/reader/widgets/reader_mode/continuous_reader_mode.dart +++ /dev/null @@ -1,206 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:io'; - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:gap/gap.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:scrollable_positioned_list/scrollable_positioned_list.dart'; - -import '../../../../../../constants/app_constants.dart'; -import '../../../../../../constants/endpoints.dart'; -import '../../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../../utils/misc/app_utils.dart'; -import '../../../../../../widgets/server_image.dart'; -import '../../../../../settings/presentation/reader/widgets/reader_pinch_to_zoom/reader_pinch_to_zoom.dart'; -import '../../../../../settings/presentation/reader/widgets/reader_scroll_animation_tile/reader_scroll_animation_tile.dart'; -import '../../../../domain/chapter/chapter_model.dart'; -import '../../../../domain/manga/manga_model.dart'; -import '../chapter_separator.dart'; -import '../reader_wrapper.dart'; - -class ContinuousReaderMode extends HookConsumerWidget { - const ContinuousReaderMode({ - super.key, - required this.manga, - required this.chapter, - this.showSeparator = false, - this.onPageChanged, - this.scrollDirection = Axis.vertical, - this.reverse = false, - this.showReaderLayoutAnimation = false, - }); - final Manga manga; - final Chapter chapter; - final bool showSeparator; - final ValueSetter? onPageChanged; - final Axis scrollDirection; - final bool reverse; - final bool showReaderLayoutAnimation; - @override - Widget build(BuildContext context, WidgetRef ref) { - final scrollController = useMemoized(() => ItemScrollController()); - final positionsListener = useMemoized(() => ItemPositionsListener.create()); - final currentIndex = useState( - chapter.read.ifNull() - ? 0 - : (chapter.lastPageRead).getValueOnNullOrNegative(), - ); - useEffect(() { - if (onPageChanged != null) { - onPageChanged!(currentIndex.value); - } - return; - }, [currentIndex.value]); - useEffect(() { - listener() { - final positions = positionsListener.itemPositions.value.toList(); - if (positions.isSingletonList) { - currentIndex.value = (positions.first.index); - } else { - final newPositions = positions.where((ItemPosition position) => - position.itemTrailingEdge.liesBetween()); - if (newPositions.isBlank) return; - currentIndex.value = (newPositions - .reduce((ItemPosition max, ItemPosition position) => - position.itemTrailingEdge > max.itemTrailingEdge - ? position - : max) - .index); - } - } - - positionsListener.itemPositions.addListener(listener); - return () => positionsListener.itemPositions.removeListener(listener); - }, []); - final isAnimationEnabled = - ref.read(readerScrollAnimationProvider).ifNull(true); - final isPinchToZoomEnabled = ref.read(pinchToZoomProvider).ifNull(true); - return ReaderWrapper( - scrollDirection: scrollDirection, - chapter: chapter, - manga: manga, - showReaderLayoutAnimation: showReaderLayoutAnimation, - currentIndex: currentIndex.value, - onChanged: (index) => scrollController.jumpTo(index: index), - onPrevious: () { - final ItemPosition itemPosition = - positionsListener.itemPositions.value.toList().first; - isAnimationEnabled - ? scrollController.scrollTo( - index: itemPosition.index, - duration: kDuration, - curve: kCurve, - alignment: itemPosition.itemLeadingEdge + .8, - ) - : scrollController.jumpTo( - index: itemPosition.index, - alignment: itemPosition.itemLeadingEdge + .8, - ); - }, - onNext: () { - ItemPosition itemPosition = positionsListener.itemPositions.value.first; - final int index; - final double alignment; - if (itemPosition.itemTrailingEdge > 1) { - index = itemPosition.index; - alignment = itemPosition.itemLeadingEdge - .8; - } else { - index = itemPosition.index + 1; - alignment = 0; - } - isAnimationEnabled - ? scrollController.scrollTo( - index: index, - duration: kDuration, - curve: kCurve, - alignment: alignment, - ) - : scrollController.jumpTo( - index: index, - alignment: alignment, - ); - }, - child: AppUtils.wrapIf( - !kIsWeb && - (Platform.isAndroid || Platform.isIOS) && - isPinchToZoomEnabled - ? (child) => InteractiveViewer(maxScale: 5, child: child) - : null, - ScrollablePositionedList.separated( - itemScrollController: scrollController, - itemPositionsListener: positionsListener, - initialScrollIndex: chapter.read.ifNull() - ? 0 - : chapter.lastPageRead.getValueOnNullOrNegative(), - scrollDirection: scrollDirection, - reverse: reverse, - itemCount: chapter.pageCount ?? 0, - minCacheExtent: scrollDirection == Axis.vertical - ? context.height * 2 - : context.width * 2, - separatorBuilder: (BuildContext context, int index) => - showSeparator ? const Gap(16) : const SizedBox.shrink(), - itemBuilder: (BuildContext context, int index) { - final image = ServerImage( - showReloadButton: true, - fit: scrollDirection == Axis.vertical - ? BoxFit.fitWidth - : BoxFit.fitHeight, - appendApiToUrl: true, - imageUrl: MangaUrl.chapterPageWithIndex( - chapterIndex: chapter.index!, - mangaId: manga.id!, - pageIndex: index, - ), - progressIndicatorBuilder: (_, __, downloadProgress) => Center( - child: CircularProgressIndicator( - value: downloadProgress.progress, - ), - ), - wrapper: (child) => SizedBox( - height: scrollDirection == Axis.vertical - ? context.height * .7 - : null, - width: scrollDirection != Axis.vertical - ? context.width * .7 - : null, - child: child, - ), - ); - if (index == 0 || index == (chapter.pageCount ?? 1) - 1) { - final bool reverseDirection = - scrollDirection == Axis.horizontal && reverse; - final separator = SizedBox( - width: scrollDirection != Axis.vertical - ? context.width * .5 - : null, - child: ChapterSeparator( - manga: manga, - chapter: chapter, - isPreviousChapterSeparator: (index == 0), - ), - ); - return Flex( - direction: scrollDirection, - mainAxisSize: MainAxisSize.min, - crossAxisAlignment: CrossAxisAlignment.stretch, - children: ((index == 0) != reverseDirection) - ? [separator, image] - : [image, separator], - ); - } else { - return image; - } - }, - ), - ), - ); - } -} diff --git a/lib/src/features/manga_book/presentation/reader/widgets/reader_mode/single_page_reader_mode.dart b/lib/src/features/manga_book/presentation/reader/widgets/reader_mode/single_page_reader_mode.dart deleted file mode 100644 index 531019ee..00000000 --- a/lib/src/features/manga_book/presentation/reader/widgets/reader_mode/single_page_reader_mode.dart +++ /dev/null @@ -1,149 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:io'; - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter_cache_manager/flutter_cache_manager.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../../constants/app_constants.dart'; -import '../../../../../../constants/endpoints.dart'; -import '../../../../../../utils/extensions/cache_manager_extensions.dart'; -import '../../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../../utils/misc/app_utils.dart'; -import '../../../../../../widgets/custom_circular_progress_indicator.dart'; -import '../../../../../../widgets/server_image.dart'; -import '../../../../../settings/presentation/reader/widgets/reader_scroll_animation_tile/reader_scroll_animation_tile.dart'; -import '../../../../domain/chapter/chapter_model.dart'; -import '../../../../domain/manga/manga_model.dart'; -import '../reader_wrapper.dart'; - -class SinglePageReaderMode extends HookConsumerWidget { - const SinglePageReaderMode({ - super.key, - required this.manga, - required this.chapter, - this.onPageChanged, - this.reverse = false, - this.scrollDirection = Axis.horizontal, - this.showReaderLayoutAnimation = false, - }); - - final Manga manga; - final Chapter chapter; - final ValueSetter? onPageChanged; - final bool reverse; - final Axis scrollDirection; - final bool showReaderLayoutAnimation; - @override - Widget build(BuildContext context, WidgetRef ref) { - final cacheManager = useMemoized(() => DefaultCacheManager()); - final scrollController = usePageController( - initialPage: chapter.read.ifNull() - ? 0 - : chapter.lastPageRead.getValueOnNullOrNegative(), - ); - final currentIndex = useState(scrollController.initialPage); - useEffect(() { - if (onPageChanged != null) onPageChanged!(currentIndex.value); - int currentPage = currentIndex.value; - // Prev page - if (currentPage > 0) { - cacheManager.getServerFile( - ref, - MangaUrl.chapterPageWithIndex( - chapterIndex: chapter.index!, - mangaId: manga.id!, - pageIndex: currentPage - 1, - ), - ); - } - // Next page - if (currentPage < (chapter.pageCount.getValueOnNullOrNegative() - 1)) { - cacheManager.getServerFile( - ref, - MangaUrl.chapterPageWithIndex( - chapterIndex: chapter.index!, - mangaId: manga.id!, - pageIndex: currentPage + 1, - ), - ); - } - // 2nd next page - if (currentPage < (chapter.pageCount.getValueOnNullOrNegative() - 2)) { - cacheManager.getServerFile( - ref, - MangaUrl.chapterPageWithIndex( - chapterIndex: chapter.index!, - mangaId: manga.id!, - pageIndex: currentPage + 2, - ), - ); - } - return null; - }, [currentIndex.value]); - useEffect(() { - listener() { - final currentPage = scrollController.page; - if (currentPage != null) currentIndex.value = (currentPage.toInt()); - } - - scrollController.addListener(listener); - return () => scrollController.removeListener(listener); - }, [scrollController]); - final isAnimationEnabled = - ref.read(readerScrollAnimationProvider).ifNull(true); - return ReaderWrapper( - scrollDirection: scrollDirection, - chapter: chapter, - manga: manga, - currentIndex: currentIndex.value, - onChanged: (index) => scrollController.jumpToPage(index), - showReaderLayoutAnimation: showReaderLayoutAnimation, - onPrevious: () => scrollController.previousPage( - duration: isAnimationEnabled ? kDuration : kInstantDuration, - curve: kCurve, - ), - onNext: () => scrollController.nextPage( - duration: isAnimationEnabled ? kDuration : kInstantDuration, - curve: kCurve, - ), - child: PageView.builder( - scrollDirection: scrollDirection, - reverse: reverse, - controller: scrollController, - allowImplicitScrolling: true, - itemBuilder: (BuildContext context, int index) { - final image = ServerImage( - showReloadButton: true, - fit: BoxFit.contain, - size: Size.fromHeight(context.height), - appendApiToUrl: true, - imageUrl: MangaUrl.chapterPageWithIndex( - chapterIndex: chapter.index!, - mangaId: manga.id!, - pageIndex: index, - ), - progressIndicatorBuilder: (context, url, downloadProgress) => - CenterSorayomiShimmerIndicator( - value: downloadProgress.progress, - ), - ); - return AppUtils.wrapIf( - !kIsWeb && (Platform.isAndroid || Platform.isIOS) - ? (child) => InteractiveViewer(maxScale: 5, child: child) - : null, - image, - ); - }, - itemCount: chapter.pageCount.getValueOnNullOrNegative(), - ), - ); - } -} diff --git a/lib/src/features/manga_book/presentation/reader/widgets/reader_navigation_layout/layouts/edge_layout.dart b/lib/src/features/manga_book/presentation/reader/widgets/reader_navigation_layout/layouts/edge_layout.dart deleted file mode 100644 index b21f2f24..00000000 --- a/lib/src/features/manga_book/presentation/reader/widgets/reader_navigation_layout/layouts/edge_layout.dart +++ /dev/null @@ -1,60 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -class EdgeLayout extends StatelessWidget { - const EdgeLayout({ - super.key, - this.onLeftTap, - this.onRightTap, - this.leftColor, - this.rightColor, - }); - final VoidCallback? onLeftTap; - final VoidCallback? onRightTap; - final Color? leftColor; - final Color? rightColor; - @override - Widget build(BuildContext context) { - return Row( - mainAxisAlignment: MainAxisAlignment.spaceBetween, - children: [ - Expanded( - child: GestureDetector( - behavior: HitTestBehavior.translucent, - onTap: onRightTap, - child: Container(color: rightColor), - ), - ), - Expanded( - child: Column( - children: [ - const Expanded( - flex: 2, - child: SizedBox.expand(), - ), - Expanded( - child: GestureDetector( - behavior: HitTestBehavior.translucent, - onTap: onLeftTap, - child: Container(color: leftColor), - ), - ), - ], - ), - ), - Expanded( - child: GestureDetector( - behavior: HitTestBehavior.translucent, - onTap: onRightTap, - child: Container(color: rightColor), - ), - ), - ], - ); - } -} diff --git a/lib/src/features/manga_book/presentation/reader/widgets/reader_navigation_layout/layouts/kindlish_layout.dart b/lib/src/features/manga_book/presentation/reader/widgets/reader_navigation_layout/layouts/kindlish_layout.dart deleted file mode 100644 index 8d61094e..00000000 --- a/lib/src/features/manga_book/presentation/reader/widgets/reader_navigation_layout/layouts/kindlish_layout.dart +++ /dev/null @@ -1,52 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -class KindlishLayout extends StatelessWidget { - const KindlishLayout({ - super.key, - this.onLeftTap, - this.onRightTap, - this.leftColor, - this.rightColor, - }); - final VoidCallback? onLeftTap; - final VoidCallback? onRightTap; - final Color? leftColor; - final Color? rightColor; - @override - Widget build(BuildContext context) { - return Column( - mainAxisAlignment: MainAxisAlignment.end, - children: [ - const Expanded(child: SizedBox.expand()), - Expanded( - flex: 2, - child: Row( - children: [ - Expanded( - child: GestureDetector( - behavior: HitTestBehavior.translucent, - onTap: onLeftTap, - child: Container(color: leftColor), - ), - ), - Expanded( - flex: 2, - child: GestureDetector( - behavior: HitTestBehavior.translucent, - onTap: onRightTap, - child: Container(color: rightColor), - ), - ) - ], - ), - ), - ], - ); - } -} diff --git a/lib/src/features/manga_book/presentation/reader/widgets/reader_navigation_layout/layouts/l_shaped_layout.dart b/lib/src/features/manga_book/presentation/reader/widgets/reader_navigation_layout/layouts/l_shaped_layout.dart deleted file mode 100644 index 6a8d83fd..00000000 --- a/lib/src/features/manga_book/presentation/reader/widgets/reader_navigation_layout/layouts/l_shaped_layout.dart +++ /dev/null @@ -1,65 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -class LShapedLayout extends StatelessWidget { - const LShapedLayout({ - super.key, - this.onLeftTap, - this.onRightTap, - this.leftColor, - this.rightColor, - }); - - final VoidCallback? onLeftTap; - final VoidCallback? onRightTap; - final Color? leftColor; - final Color? rightColor; - @override - Widget build(BuildContext context) { - return Column( - children: [ - Expanded( - child: GestureDetector( - behavior: HitTestBehavior.translucent, - onTap: onLeftTap, - child: Container(color: leftColor), - ), - ), - Expanded( - child: Row( - mainAxisAlignment: MainAxisAlignment.spaceBetween, - children: [ - Expanded( - child: GestureDetector( - behavior: HitTestBehavior.translucent, - onTap: onLeftTap, - child: Container(color: leftColor), - ), - ), - const Expanded(child: SizedBox.expand()), - Expanded( - child: GestureDetector( - behavior: HitTestBehavior.translucent, - onTap: onRightTap, - child: Container(color: rightColor), - ), - ), - ], - ), - ), - Expanded( - child: GestureDetector( - behavior: HitTestBehavior.translucent, - onTap: onRightTap, - child: Container(color: rightColor), - ), - ), - ], - ); - } -} diff --git a/lib/src/features/manga_book/presentation/reader/widgets/reader_navigation_layout/layouts/right_and_left_layout.dart b/lib/src/features/manga_book/presentation/reader/widgets/reader_navigation_layout/layouts/right_and_left_layout.dart deleted file mode 100644 index fb7c347f..00000000 --- a/lib/src/features/manga_book/presentation/reader/widgets/reader_navigation_layout/layouts/right_and_left_layout.dart +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -class RightAndLeftLayout extends StatelessWidget { - const RightAndLeftLayout({ - super.key, - this.onLeftTap, - this.onRightTap, - this.leftColor, - this.rightColor, - }); - final VoidCallback? onLeftTap; - final VoidCallback? onRightTap; - final Color? leftColor; - final Color? rightColor; - @override - Widget build(BuildContext context) { - return Row( - mainAxisAlignment: MainAxisAlignment.spaceBetween, - children: [ - Expanded( - child: GestureDetector( - behavior: HitTestBehavior.translucent, - onTap: onLeftTap, - child: Container(color: leftColor), - ), - ), - const Expanded(child: SizedBox.expand()), - Expanded( - child: GestureDetector( - behavior: HitTestBehavior.translucent, - onTap: onRightTap, - child: Container(color: rightColor), - ), - ), - ], - ); - } -} diff --git a/lib/src/features/manga_book/presentation/reader/widgets/reader_navigation_layout/reader_navigation_layout.dart b/lib/src/features/manga_book/presentation/reader/widgets/reader_navigation_layout/reader_navigation_layout.dart deleted file mode 100644 index 73894c96..00000000 --- a/lib/src/features/manga_book/presentation/reader/widgets/reader_navigation_layout/reader_navigation_layout.dart +++ /dev/null @@ -1,100 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../../constants/app_constants.dart'; -import '../../../../../../constants/enum.dart'; -import '../../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../settings/presentation/reader/widgets/reader_invert_tap_tile/reader_invert_tap_tile.dart'; -import '../../../../../settings/presentation/reader/widgets/reader_navigation_layout_tile/reader_navigation_layout_tile.dart'; -import 'layouts/edge_layout.dart'; -import 'layouts/kindlish_layout.dart'; -import 'layouts/l_shaped_layout.dart'; -import 'layouts/right_and_left_layout.dart'; - -class ReaderNavigationLayoutWidget extends HookConsumerWidget { - const ReaderNavigationLayoutWidget({ - super.key, - this.navigationLayout, - required this.onPrevious, - required this.onNext, - this.showReaderLayoutAnimation = false, - }); - final ReaderNavigationLayout? navigationLayout; - final VoidCallback? onPrevious; - final VoidCallback? onNext; - final bool showReaderLayoutAnimation; - @override - Widget build(BuildContext context, WidgetRef ref) { - final animationController = useAnimationController(duration: kLongDuration); - useAnimation(animationController); - final nextColorTween = ColorTween( - begin: showReaderLayoutAnimation ? Colors.green : Colors.transparent, - ).animate(animationController).value; - - final prevColorTween = ColorTween( - begin: showReaderLayoutAnimation ? Colors.blue : Colors.transparent, - ).animate(animationController).value; - useEffect(() { - animationController.forward(); - return; - }, []); - - final layout = navigationLayout == null || - navigationLayout == ReaderNavigationLayout.defaultNavigation - ? ref.watch(readerNavigationLayoutKeyProvider) - : navigationLayout; - final invertTap = ref.watch(invertTapProvider).ifNull(); - final VoidCallback? onLeftTap; - final VoidCallback? onRightTap; - final Color? leftColor; - final Color? rightColor; - if (invertTap) { - onLeftTap = onNext; - onRightTap = onPrevious; - leftColor = nextColorTween; - rightColor = prevColorTween; - } else { - onLeftTap = onPrevious; - onRightTap = onNext; - leftColor = prevColorTween; - rightColor = nextColorTween; - } - return switch (layout) { - ReaderNavigationLayout.edge => EdgeLayout( - onLeftTap: onLeftTap, - onRightTap: onRightTap, - leftColor: leftColor, - rightColor: rightColor, - ), - ReaderNavigationLayout.kindlish => KindlishLayout( - onLeftTap: onLeftTap, - onRightTap: onRightTap, - leftColor: leftColor, - rightColor: rightColor, - ), - ReaderNavigationLayout.lShaped => LShapedLayout( - onLeftTap: onLeftTap, - onRightTap: onRightTap, - leftColor: leftColor, - rightColor: rightColor, - ), - ReaderNavigationLayout.rightAndLeft => RightAndLeftLayout( - onLeftTap: onLeftTap, - onRightTap: onRightTap, - leftColor: leftColor, - rightColor: rightColor, - ), - ReaderNavigationLayout.defaultNavigation || - ReaderNavigationLayout.disabled || - null => - const SizedBox.shrink(), - }; - } -} diff --git a/lib/src/features/manga_book/presentation/reader/widgets/reader_wrapper.dart b/lib/src/features/manga_book/presentation/reader/widgets/reader_wrapper.dart deleted file mode 100644 index bfd0c61c..00000000 --- a/lib/src/features/manga_book/presentation/reader/widgets/reader_wrapper.dart +++ /dev/null @@ -1,574 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:async'; - -import 'package:flutter/material.dart'; -import 'package:flutter/services.dart'; -import 'package:flutter_android_volume_keydown/flutter_android_volume_keydown.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:gap/gap.dart'; -import 'package:go_router/go_router.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../constants/app_constants.dart'; -import '../../../../../constants/app_sizes.dart'; -import '../../../../../constants/db_keys.dart'; -import '../../../../../constants/enum.dart'; -import '../../../../../constants/reader_keyboard_shortcuts.dart'; -import '../../../../../routes/router_config.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../utils/launch_url_in_web.dart'; -import '../../../../../utils/misc/toast/toast.dart'; -import '../../../../../widgets/radio_list_popup.dart'; -import '../../../../settings/presentation/reader/widgets/reader_initial_overlay_tile/reader_initial_overlay_tile.dart'; -import '../../../../settings/presentation/reader/widgets/reader_invert_tap_tile/reader_invert_tap_tile.dart'; -import '../../../../settings/presentation/reader/widgets/reader_magnifier_size_slider/reader_magnifier_size_slider.dart'; -import '../../../../settings/presentation/reader/widgets/reader_padding_slider/reader_padding_slider.dart'; -import '../../../../settings/presentation/reader/widgets/reader_swipe_toggle_tile/reader_swipe_chapter_toggle_tile.dart'; -import '../../../../settings/presentation/reader/widgets/reader_volume_tap_invert_tile/reader_volume_tap_invert_tile.dart'; -import '../../../../settings/presentation/reader/widgets/reader_volume_tap_tile/reader_volume_tap_tile.dart'; -import '../../../data/manga_book_repository.dart'; -import '../../../domain/chapter/chapter_model.dart'; -import '../../../domain/chapter_patch/chapter_put_model.dart'; -import '../../../domain/manga/manga_model.dart'; -import '../../../widgets/chapter_actions/single_chapter_action_icon.dart'; -import '../../manga_details/controller/manga_details_controller.dart'; -import '../controller/reader_controller.dart'; -import 'page_number_slider.dart'; -import 'reader_navigation_layout/reader_navigation_layout.dart'; - -class ReaderWrapper extends HookConsumerWidget { - const ReaderWrapper({ - super.key, - required this.child, - required this.manga, - required this.chapter, - required this.onChanged, - required this.currentIndex, - required this.onNext, - required this.onPrevious, - required this.scrollDirection, - this.showReaderLayoutAnimation = false, - }); - final Widget child; - final Manga manga; - final Chapter chapter; - final ValueChanged onChanged; - final VoidCallback onPrevious; - final VoidCallback onNext; - final int currentIndex; - final Axis scrollDirection; - final bool showReaderLayoutAnimation; - - @override - Widget build(BuildContext context, WidgetRef ref) { - final nextPrevChapterPair = ref.watch( - getNextAndPreviousChaptersProvider( - mangaId: manga.id!, - chapterIndex: "${chapter.index}", - ), - ); - final invertTap = ref.watch(invertTapProvider).ifNull(); - - final bool volumeTap = ref.watch(volumeTapProvider).ifNull(); - final bool volumeTapInvert = ref.watch(volumeTapInvertProvider).ifNull(); - - final double localMangaReaderPadding = - ref.watch(readerPaddingKeyProvider) ?? DBKeys.readerPadding.initial; - - final bool readerSwipeChapterToggle = - ref.watch(swipeChapterToggleProvider) ?? DBKeys.swipeToggle.initial; - - final double localMangaReaderMagnifierSize = - ref.watch(readerMagnifierSizeKeyProvider) ?? - DBKeys.readerMagnifierSize.initial; - - final visibility = - useState(ref.read(readerInitialOverlayProvider).ifNull()); - final mangaReaderPadding = - useState(manga.meta?.readerPadding ?? localMangaReaderPadding); - final mangaReaderMagnifierSize = useState( - manga.meta?.readerMagnifierSize ?? localMangaReaderMagnifierSize, - ); - - final mangaReaderMode = manga.meta?.readerMode ?? ReaderMode.defaultReader; - final mangaReaderNavigationLayout = manga.meta?.readerNavigationLayout ?? - ReaderNavigationLayout.defaultNavigation; - - final showReaderModePopup = useCallback( - () => showDialog( - context: context, - builder: (context) => RadioListPopup( - optionList: ReaderMode.values, - getOptionTitle: (value) => value.toLocale(context), - value: mangaReaderMode, - title: context.l10n!.readerMode, - onChange: (enumValue) async { - if (context.mounted) Navigator.pop(context); - await AsyncValue.guard( - () => ref.read(mangaBookRepositoryProvider).patchMangaMeta( - mangaId: manga.id!, - key: MangaMetaKeys.readerMode.key, - value: enumValue.name, - ), - ); - ref.invalidate(mangaWithIdProvider(mangaId: manga.id!)); - }, - ), - ), - [mangaReaderMode], - ); - - final showReaderNavigationLayoutPopup = useCallback( - () => showDialog( - context: context, - builder: (context) => RadioListPopup( - optionList: ReaderNavigationLayout.values, - getOptionTitle: (value) => value.toLocale(context), - title: context.l10n!.readerNavigationLayout, - value: mangaReaderNavigationLayout, - onChange: (enumValue) async { - if (context.mounted) Navigator.pop(context); - await AsyncValue.guard( - () => ref.read(mangaBookRepositoryProvider).patchMangaMeta( - mangaId: manga.id!, - key: MangaMetaKeys.readerNavigationLayout.key, - value: enumValue.name, - ), - ); - ref.invalidate(mangaWithIdProvider(mangaId: manga.id!)); - }, - ), - ), - [mangaReaderNavigationLayout], - ); - - useEffect(() { - if (!visibility.value) { - SystemChrome.setEnabledSystemUIMode(SystemUiMode.immersiveSticky); - } - return null; - }, [visibility.value]); - - useEffect(() { - StreamSubscription? subscription; - if (volumeTap) { - subscription = FlutterAndroidVolumeKeydown.stream.listen( - (event) => (switch (event) { - HardwareButton.volume_up => - volumeTapInvert ? onNext() : onPrevious(), - HardwareButton.volume_down => - volumeTapInvert ? onPrevious() : onNext(), - }), - ); - } - return () => subscription?.cancel(); - }, [volumeTap, volumeTapInvert]); - - return Theme( - data: context.theme.copyWith( - bottomSheetTheme: const BottomSheetThemeData( - backgroundColor: Colors.transparent, - elevation: 0, - ), - ), - child: Scaffold( - appBar: visibility.value - ? AppBar( - title: ListTile( - title: (manga.title).isNotBlank - ? Text( - "${manga.title}", - overflow: TextOverflow.ellipsis, - ) - : null, - subtitle: (chapter.name).isNotBlank - ? Text( - "${chapter.name}", - overflow: TextOverflow.ellipsis, - ) - : null, - ), - elevation: 0, - actions: [ - chapter.realUrl.isBlank - ? const SizedBox.shrink() - : IconButton( - onPressed: () async { - launchUrlInWeb( - context, - (chapter.realUrl ?? ""), - ref.read(toastProvider(context)), - ); - }, - icon: const Icon(Icons.public), - ) - ], - ) - : null, - extendBodyBehindAppBar: true, - extendBody: true, - endDrawerEnableOpenDragGesture: false, - endDrawer: Drawer( - width: kDrawerWidth, - shape: const RoundedRectangleBorder(), - child: ListView( - children: [ - ListTile( - leading: const Icon(Icons.close_rounded), - onTap: context.pop, - ), - ListTile( - style: ListTileStyle.drawer, - leading: const Icon(Icons.app_settings_alt_outlined), - title: Text(context.l10n!.readerMode), - subtitle: Text(mangaReaderMode.toLocale(context)), - onTap: () { - context.pop(); - showReaderModePopup(); - }, - ), - ListTile( - style: ListTileStyle.drawer, - leading: const Icon(Icons.touch_app_rounded), - title: Text(context.l10n!.readerNavigationLayout), - subtitle: Text(mangaReaderNavigationLayout.toLocale(context)), - onTap: () { - context.pop(); - showReaderNavigationLayoutPopup(); - }, - ), - AsyncReaderPaddingSlider( - readerPadding: mangaReaderPadding, - onChanged: (value) { - AsyncValue.guard( - () => ref.read(mangaBookRepositoryProvider).patchMangaMeta( - mangaId: manga.id!, - key: MangaMetaKeys.readerPadding.key, - value: value, - ), - ); - ref.invalidate(mangaWithIdProvider(mangaId: manga.id!)); - }, - ), - AsyncReaderMagnifierSizeSlider( - readerMagnifierSize: mangaReaderMagnifierSize, - onChanged: (value) { - AsyncValue.guard( - () => ref.read(mangaBookRepositoryProvider).patchMangaMeta( - mangaId: manga.id!, - key: MangaMetaKeys.readerMagnifierSize.key, - value: value, - ), - ); - ref.invalidate(mangaWithIdProvider(mangaId: manga.id!)); - }, - ), - ], - ), - ), - bottomSheet: visibility.value - ? ExcludeFocus( - child: Column( - mainAxisSize: MainAxisSize.min, - children: [ - Row( - children: [ - Card( - shape: const CircleBorder(), - child: IconButton( - onPressed: nextPrevChapterPair?.second != null - ? () => ReaderRoute( - mangaId: - nextPrevChapterPair!.second!.mangaId!, - chapterIndex: - nextPrevChapterPair.second!.index!, - toPrev: true, - transVertical: - scrollDirection != Axis.vertical, - ).pushReplacement(context) - : null, - icon: const Icon( - Icons.skip_previous_rounded, - ), - ), - ), - Expanded( - child: PageNumberSlider( - currentValue: currentIndex, - maxValue: chapter.pageCount ?? 1, - onChanged: (index) => onChanged(index), - inverted: invertTap, - ), - ), - Card( - shape: const CircleBorder(), - child: IconButton( - onPressed: nextPrevChapterPair?.first != null - ? () => ReaderRoute( - mangaId: - nextPrevChapterPair!.first!.mangaId!, - chapterIndex: - nextPrevChapterPair.first!.index!, - transVertical: - scrollDirection != Axis.vertical, - ).pushReplacement(context) - : null, - icon: const Icon(Icons.skip_next_rounded), - ), - ) - ], - ), - const Gap(8), - Card( - shape: RoundedRectangleBorder( - borderRadius: BorderRadius.vertical( - top: KRadius.r8.radius, - ), - ), - margin: EdgeInsets.zero, - child: Padding( - padding: KEdgeInsets.h16v8.size, - child: Row( - mainAxisAlignment: MainAxisAlignment.spaceEvenly, - children: [ - if (chapter.index != null && - chapter.bookmarked != null) - SingleChapterActionIcon( - icon: chapter.bookmarked! - ? Icons.bookmark_rounded - : Icons.bookmark_outline_rounded, - chapterIndex: chapter.index!, - mangaId: manga.id!, - chapterPut: ChapterPut( - bookmarked: !chapter.bookmarked!, - ), - refresh: () async { - if (manga.id != null && - chapter.index != null) { - return ref.refresh(chapterProvider( - mangaId: manga.id!, - chapterIndex: chapter.index!, - ).future); - } - }, - ), - IconButton( - icon: const Icon(Icons.app_settings_alt_outlined), - onPressed: () => showReaderModePopup(), - ), - Builder(builder: (context) { - return IconButton( - onPressed: () => - Scaffold.of(context).openEndDrawer(), - icon: const Icon(Icons.settings_rounded), - ); - }), - ], - ), - ), - ), - ], - ), - ) - : null, - body: Shortcuts.manager( - manager: readerShortcutManager(scrollDirection), - child: Actions( - actions: { - PreviousScrollIntent: CallbackAction( - onInvoke: (intent) => invertTap ? onNext() : onPrevious(), - ), - NextScrollIntent: CallbackAction( - onInvoke: (intent) => invertTap ? onPrevious() : onNext(), - ), - PreviousChapterIntent: CallbackAction( - onInvoke: (intent) { - nextPrevChapterPair?.second != null - ? ReaderRoute( - mangaId: nextPrevChapterPair!.second!.mangaId!, - chapterIndex: nextPrevChapterPair.second!.index!, - toPrev: true, - transVertical: scrollDirection != Axis.vertical, - ).pushReplacement(context) - : onPrevious(); - return null; - }, - ), - NextChapterIntent: CallbackAction( - onInvoke: (intent) => nextPrevChapterPair?.first != null - ? ReaderRoute( - mangaId: nextPrevChapterPair!.first!.mangaId!, - chapterIndex: nextPrevChapterPair.first!.index!, - transVertical: scrollDirection != Axis.vertical, - ).pushReplacement(context) - : onNext(), - ), - HideQuickOpenIntent: CallbackAction( - onInvoke: (HideQuickOpenIntent intent) { - visibility.value = !visibility.value; - return null; - }, - ), - }, - child: Focus( - autofocus: true, - child: Listener( - child: RepaintBoundary( - child: ReaderView( - toggleVisibility: () => - visibility.value = !visibility.value, - scrollDirection: scrollDirection, - mangaId: manga.id!, - mangaReaderPadding: mangaReaderPadding.value, - mangaReaderMagnifierSize: mangaReaderMagnifierSize.value, - onNext: onNext, - onPrevious: onPrevious, - mangaReaderNavigationLayout: mangaReaderNavigationLayout, - prevNextChapterPair: nextPrevChapterPair, - readerSwipeChapterToggle: readerSwipeChapterToggle, - showReaderLayoutAnimation: showReaderLayoutAnimation, - child: child, - ), - ), - ), - ), - ), - ), - ), - ); - } -} - -class ReaderView extends HookWidget { - const ReaderView({ - super.key, - required this.toggleVisibility, - required this.scrollDirection, - required this.mangaId, - required this.mangaReaderPadding, - required this.mangaReaderMagnifierSize, - required this.onNext, - required this.onPrevious, - required this.prevNextChapterPair, - required this.mangaReaderNavigationLayout, - required this.readerSwipeChapterToggle, - required this.child, - this.showReaderLayoutAnimation = false, - }); - - final VoidCallback toggleVisibility; - final Axis scrollDirection; - final int mangaId; - final double mangaReaderPadding; - final double mangaReaderMagnifierSize; - final VoidCallback onNext; - final VoidCallback onPrevious; - final ({Chapter? first, Chapter? second})? prevNextChapterPair; - final ReaderNavigationLayout mangaReaderNavigationLayout; - final bool readerSwipeChapterToggle; - final bool showReaderLayoutAnimation; - final Widget child; - - @override - Widget build(BuildContext context) { - final showMagnification = useState(false); - final dragGesturePosition = useState(Offset.zero); - final positionOffset = kMagnifierPosition( - dragGesturePosition.value, - context.mediaQuerySize, - mangaReaderMagnifierSize, - ); - nextChapter() => prevNextChapterPair?.first != null - ? ReaderRoute( - mangaId: mangaId, - chapterIndex: prevNextChapterPair!.first!.index!, - transVertical: scrollDirection != Axis.vertical, - ).pushReplacement(context) - : null; - prevChapter() => prevNextChapterPair?.second != null - ? ReaderRoute( - mangaId: mangaId, - chapterIndex: prevNextChapterPair!.second!.index!, - toPrev: true, - transVertical: scrollDirection != Axis.vertical, - ).pushReplacement(context) - : MangaRoute(mangaId: mangaId).pushReplacement(context); - return Stack( - children: [ - GestureDetector( - onLongPressStart: (details) { - dragGesturePosition.value = (details.localPosition); - showMagnification.value = (true); - }, - onLongPressEnd: (details) { - dragGesturePosition.value = (details.localPosition); - showMagnification.value = (false); - }, - onLongPressMoveUpdate: (details) => - dragGesturePosition.value = (details.localPosition), - onTap: toggleVisibility, - behavior: HitTestBehavior.translucent, - onHorizontalDragEnd: (details) { - if (scrollDirection == Axis.vertical && readerSwipeChapterToggle) { - if (details.primaryVelocity == null) { - return; - } else if (details.primaryVelocity! > 8) { - prevChapter(); - } else { - nextChapter(); - } - } - }, - onVerticalDragEnd: (details) { - if (scrollDirection == Axis.horizontal && - readerSwipeChapterToggle) { - if (details.primaryVelocity == null) { - return; - } else if (details.primaryVelocity! > 8) { - prevChapter(); - } else { - nextChapter(); - } - } - }, - child: Padding( - padding: EdgeInsets.symmetric( - vertical: context.height * - (scrollDirection != Axis.vertical ? mangaReaderPadding : 0), - horizontal: context.width * - (scrollDirection == Axis.vertical ? mangaReaderPadding : 0), - ), - child: child, - ), - ), - ReaderNavigationLayoutWidget( - onNext: onNext, - onPrevious: onPrevious, - navigationLayout: mangaReaderNavigationLayout, - showReaderLayoutAnimation: showReaderLayoutAnimation, - ), - if (showMagnification.value) - Positioned( - left: positionOffset.dx, - top: positionOffset.dy, - child: RawMagnifier( - decoration: kMagnifierDecoration, - size: kMagnifierSize * mangaReaderMagnifierSize, - focalPointOffset: kMagnifierOffset( - dragGesturePosition.value, - context.mediaQuerySize, - mangaReaderMagnifierSize, - ), - magnificationScale: 2, - child: const ColoredBox(color: Color.fromARGB(8, 158, 158, 158)), - ), - ) - ], - ); - } -} diff --git a/lib/src/features/manga_book/presentation/updates/updates_screen.dart b/lib/src/features/manga_book/presentation/updates/updates_screen.dart deleted file mode 100644 index dbaa837c..00000000 --- a/lib/src/features/manga_book/presentation/updates/updates_screen.dart +++ /dev/null @@ -1,196 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:infinite_scroll_pagination/infinite_scroll_pagination.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/hooks/paging_controller_hook.dart'; -import '../../../../utils/misc/toast/toast.dart'; -import '../../../../widgets/custom_circular_progress_indicator.dart'; -import '../../../../widgets/emoticons.dart'; -import '../../data/updates/updates_repository.dart'; -import '../../domain/chapter/chapter_model.dart'; -import '../../domain/chapter_page/chapter_page_model.dart'; -import '../../widgets/chapter_actions/multi_chapters_actions_bottom_app_bar.dart'; -import '../../widgets/update_status_fab.dart'; -import '../../widgets/update_status_popup_menu.dart'; -import '../reader/controller/reader_controller.dart'; -import 'widgets/chapter_manga_list_tile.dart'; - -class UpdatesScreen extends HookConsumerWidget { - const UpdatesScreen({super.key}); - - Future _fetchPage( - UpdatesRepository repository, - PagingController controller, - int pageKey, - ) async { - AsyncValue.guard( - () async => await repository.getRecentChaptersPage(pageNo: pageKey), - ).then( - (value) => value.whenOrNull( - data: (recentChaptersPage) { - try { - if (recentChaptersPage != null) { - if (recentChaptersPage.hasNextPage.ifNull()) { - controller - .appendPage([...?recentChaptersPage.page], pageKey + 1); - } else { - controller.appendLastPage([...?recentChaptersPage.page]); - } - } - } catch (e) { - // - } - }, - error: (error, stackTrace) => controller.error = error, - ), - ); - } - - @override - Widget build(BuildContext context, WidgetRef ref) { - final controller = - usePagingController(firstPageKey: 0); - final updatesRepository = ref.watch(updatesRepositoryProvider); - final isUpdatesChecking = ref - .watch(updatesSocketProvider - .select((value) => value.valueOrNull?.isUpdateChecking)) - .ifNull(); - final selectedChapters = useState>({}); - useEffect(() { - controller.addPageRequestListener((pageKey) => _fetchPage( - updatesRepository, - controller, - pageKey, - )); - return; - }, []); - useEffect(() { - if (!isUpdatesChecking) { - try { - selectedChapters.value = ({}); - controller.refresh(); - } catch (e) { - // - } - } - return null; - }, [isUpdatesChecking]); - return Scaffold( - floatingActionButton: - selectedChapters.value.isEmpty ? const UpdateStatusFab() : null, - appBar: selectedChapters.value.isNotEmpty - ? AppBar( - leading: IconButton( - onPressed: () => selectedChapters.value = ({}), - icon: const Icon(Icons.close_rounded), - ), - title: Text( - context.l10n!.numSelected(selectedChapters.value.length), - ), - ) - : AppBar( - title: Text(context.l10n!.updates), - actions: const [UpdateStatusPopupMenu()], - ), - bottomSheet: selectedChapters.value.isNotEmpty - ? MultiChaptersActionsBottomAppBar( - selectedChapters: selectedChapters, - afterOptionSelected: () async => controller.refresh(), - hasPreviousDone: false, - ) - : null, - body: RefreshIndicator( - onRefresh: () async { - selectedChapters.value = ({}); - controller.refresh(); - }, - child: PagedListView( - pagingController: controller, - builderDelegate: PagedChildBuilderDelegate( - firstPageProgressIndicatorBuilder: (context) => - const CenterSorayomiShimmerIndicator(), - firstPageErrorIndicatorBuilder: (context) => Emoticons( - text: controller.error.toString(), - button: TextButton( - onPressed: () => controller.refresh(), - child: Text(context.l10n!.retry), - ), - ), - noItemsFoundIndicatorBuilder: (context) => Emoticons( - text: context.l10n!.noUpdatesFound, - button: TextButton( - onPressed: () => controller.refresh(), - child: Text(context.l10n!.refresh), - ), - ), - itemBuilder: (context, item, index) { - int? previousDate; - try { - previousDate = - controller.itemList?[index - 1].chapter?.fetchedAt; - } catch (e) { - previousDate = null; - } - final chapterTile = ChapterMangaListTile( - pair: item, - updatePair: () async { - if (item.manga?.id == null || item.chapter?.index == null) { - return; - } else { - final chapter = ref - .refresh(chapterProvider( - mangaId: item.manga!.id!, - chapterIndex: item.chapter!.index!, - )) - .valueOrToast(ref.read(toastProvider(context))); - try { - controller.itemList = [...?controller.itemList] - ..replaceRange(index, index + 1, [ - item.copyWith( - chapter: chapter ?? item.chapter, - ) - ]); - } catch (e) { - // - } - } - }, - isSelected: - selectedChapters.value.containsKey(item.chapter!.id!), - canTapSelect: selectedChapters.value.isNotEmpty, - toggleSelect: (Chapter val) { - if ((val.id).isNull) return; - selectedChapters.value = - (selectedChapters.value.toggleKey(val.id!, val)); - }, - ); - if ((item.chapter?.fetchedAt).isSameDayAs(previousDate)) { - return chapterTile; - } else { - return Column( - mainAxisSize: MainAxisSize.min, - children: [ - ListTile( - title: Text( - item.chapter!.fetchedAt.toDaysAgoFromSeconds(context), - ), - ), - chapterTile, - ], - ); - } - }, - ), - ), - ), - ); - } -} diff --git a/lib/src/features/manga_book/presentation/updates/widgets/chapter_manga_list_tile.dart b/lib/src/features/manga_book/presentation/updates/widgets/chapter_manga_list_tile.dart deleted file mode 100644 index f78f4c41..00000000 --- a/lib/src/features/manga_book/presentation/updates/widgets/chapter_manga_list_tile.dart +++ /dev/null @@ -1,106 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:gap/gap.dart'; - -import '../../../../../constants/app_sizes.dart'; -import '../../../../../routes/router_config.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/server_image.dart'; -import '../../../domain/chapter/chapter_model.dart'; -import '../../../domain/chapter_page/chapter_page_model.dart'; -import '../../../widgets/download_status_icon.dart'; - -class ChapterMangaListTile extends StatelessWidget { - const ChapterMangaListTile({ - super.key, - required this.pair, - required this.updatePair, - required this.toggleSelect, - this.canTapSelect = false, - this.isSelected = false, - }); - final ChapterMangaPair pair; - final AsyncCallback updatePair; - final ValueChanged toggleSelect; - final bool canTapSelect; - final bool isSelected; - - @override - Widget build(BuildContext context) { - final color = (pair.chapter?.read).ifNull() ? Colors.grey : null; - return GestureDetector( - onSecondaryTap: - pair.chapter != null ? () => toggleSelect(pair.chapter!) : null, - child: ListTile( - title: Row( - mainAxisSize: MainAxisSize.min, - children: [ - if ((pair.chapter?.bookmarked).ifNull()) ...[ - const Icon(Icons.bookmark, size: 20), - const Gap(4), - ], - Expanded( - child: Text( - pair.manga?.title ?? "", - style: TextStyle(color: color), - ), - ), - ], - ), - leading: ClipRRect( - borderRadius: KBorderRadius.r8.radius, - child: InkWell( - onTap: () { - if ((pair.manga?.id) != null) { - MangaRoute( - mangaId: pair.manga!.id!, - ).push(context); - } - }, - child: ServerImage( - imageUrl: pair.manga?.thumbnailUrl ?? "", - size: const Size.square(48), - ), - ), - ), - subtitle: Text( - pair.chapter?.name ?? pair.chapter?.chapterNumber.toString() ?? "", - style: TextStyle(color: color), - ), - trailing: (pair.manga?.id != null && pair.chapter?.index != null) - ? DownloadStatusIcon( - isDownloaded: (pair.chapter?.downloaded).ifNull(), - mangaId: pair.manga!.id!, - chapter: pair.chapter!, - updateData: updatePair, - ) - : null, - selectedColor: context.theme.colorScheme.onSurface, - selectedTileColor: - context.isDarkMode ? Colors.grey.shade700 : Colors.grey.shade300, - selected: isSelected, - onTap: pair.chapter != null && pair.manga != null - ? () { - if (canTapSelect) { - toggleSelect(pair.chapter!); - } else { - ReaderRoute( - mangaId: pair.manga!.id!, - chapterIndex: pair.chapter!.index!, - showReaderLayoutAnimation: true, - ).push(context); - } - } - : null, - onLongPress: - pair.chapter != null ? () => toggleSelect(pair.chapter!) : null, - ), - ); - } -} diff --git a/lib/src/features/manga_book/widgets/chapter_actions/multi_chapters_action_icon.dart b/lib/src/features/manga_book/widgets/chapter_actions/multi_chapters_action_icon.dart deleted file mode 100644 index 3599797c..00000000 --- a/lib/src/features/manga_book/widgets/chapter_actions/multi_chapters_action_icon.dart +++ /dev/null @@ -1,53 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/misc/toast/toast.dart'; -import '../../data/downloads/downloads_repository.dart'; -import '../../data/manga_book_repository.dart'; -import '../../domain/chapter_batch/chapter_batch_model.dart'; - -class MultiChaptersActionIcon extends ConsumerWidget { - const MultiChaptersActionIcon({ - required this.icon, - required this.chapterList, - this.change, - required this.refresh, - super.key, - }); - final List chapterList; - final ChapterChange? change; - final AsyncValueSetter refresh; - final IconData icon; - @override - Widget build(BuildContext context, WidgetRef ref) { - return IconButton( - icon: Icon(icon), - onPressed: () async { - final result = await AsyncValue.guard( - () => change == null - ? ref - .read(downloadsRepositoryProvider) - .addChaptersBatchToDownloadQueue(chapterList) - : ref.read(mangaBookRepositoryProvider).modifyBulkChapters( - batch: ChapterBatch( - chapterIds: chapterList, - change: change, - ), - ), - ); - if (context.mounted) { - result.showToastOnError(ref.read(toastProvider(context))); - } - await refresh(change != null); - }, - ); - } -} diff --git a/lib/src/features/manga_book/widgets/chapter_actions/multi_chapters_actions_bottom_app_bar.dart b/lib/src/features/manga_book/widgets/chapter_actions/multi_chapters_actions_bottom_app_bar.dart deleted file mode 100644 index f078c3d4..00000000 --- a/lib/src/features/manga_book/widgets/chapter_actions/multi_chapters_actions_bottom_app_bar.dart +++ /dev/null @@ -1,108 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; - -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../constants/app_sizes.dart'; -import '../../../../constants/gen/assets.gen.dart'; -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../domain/chapter/chapter_model.dart'; -import '../../domain/chapter_batch/chapter_batch_model.dart'; -import '../../domain/chapter_patch/chapter_put_model.dart'; -import 'multi_chapters_action_icon.dart'; -import 'single_chapter_action_icon.dart'; - -class MultiChaptersActionsBottomAppBar extends HookConsumerWidget { - const MultiChaptersActionsBottomAppBar({ - super.key, - required this.selectedChapters, - required this.afterOptionSelected, - this.hasPreviousDone = true, - }); - - final ValueNotifier> selectedChapters; - final AsyncCallback afterOptionSelected; - final bool hasPreviousDone; - - List get chapterList => selectedChapters.value.keys.toList(); - - @override - Widget build(BuildContext context, WidgetRef ref) { - refresh([bool triggerAfterOption = true]) async { - selectedChapters.value = {}; - if (triggerAfterOption) await afterOptionSelected(); - } - - final selectedList = selectedChapters.value.values; - - return Padding( - padding: KEdgeInsets.a8.size, - child: Row( - mainAxisAlignment: MainAxisAlignment.spaceEvenly, - children: [ - if (selectedList.any((e) => e.bookmarked.ifNull())) - MultiChaptersActionIcon( - icon: Icons.bookmark_remove_sharp, - chapterList: chapterList, - change: ChapterChange(isBookmarked: false), - refresh: refresh, - ), - if (selectedList.any((e) => !(e.bookmarked.ifNull()))) - MultiChaptersActionIcon( - icon: Icons.bookmark_add_sharp, - chapterList: chapterList, - change: ChapterChange(isBookmarked: true), - refresh: refresh, - ), - if (selectedList.isSingletonList && hasPreviousDone) - SingleChapterActionIcon( - chapterIndex: selectedChapters.value[chapterList.first]!.index!, - mangaId: selectedChapters.value[chapterList.first]!.mangaId!, - imageIcon: ImageIcon( - Assets.icons.previousDone.provider(), - color: context.theme.cardTheme.color, - ), - chapterPut: ChapterPut(markPrevRead: true), - refresh: refresh, - ), - if (selectedList.any((e) => !(e.read.ifNull()))) - MultiChaptersActionIcon( - icon: Icons.done_all_sharp, - chapterList: chapterList, - change: ChapterChange(isRead: true, lastPageRead: 0), - refresh: refresh, - ), - if (selectedList.any((e) => e.read.ifNull())) - MultiChaptersActionIcon( - icon: Icons.remove_done_sharp, - chapterList: chapterList, - change: ChapterChange(isRead: false), - refresh: refresh, - ), - if (selectedList.any((e) => !(e.downloaded.ifNull()))) - MultiChaptersActionIcon( - icon: Icons.download_sharp, - chapterList: [ - for (var e in selectedList) - if (!(e.downloaded.ifNull(true))) (e.id!) - ], - refresh: refresh, - ), - if (selectedList.any((e) => e.downloaded.ifNull())) - MultiChaptersActionIcon( - icon: Icons.delete_sharp, - chapterList: chapterList, - change: ChapterChange(delete: true), - refresh: refresh, - ), - ], - ), - ); - } -} diff --git a/lib/src/features/manga_book/widgets/chapter_actions/single_chapter_action_icon.dart b/lib/src/features/manga_book/widgets/chapter_actions/single_chapter_action_icon.dart deleted file mode 100644 index 05587c4d..00000000 --- a/lib/src/features/manga_book/widgets/chapter_actions/single_chapter_action_icon.dart +++ /dev/null @@ -1,51 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/misc/toast/toast.dart'; -import '../../data/manga_book_repository.dart'; -import '../../domain/chapter_patch/chapter_put_model.dart'; - -class SingleChapterActionIcon extends ConsumerWidget { - const SingleChapterActionIcon({ - required this.chapterIndex, - required this.mangaId, - this.icon, - this.imageIcon, - required this.chapterPut, - required this.refresh, - super.key, - }) : assert(imageIcon != null || icon != null); - final int chapterIndex; - final int mangaId; - final ChapterPut chapterPut; - final AsyncCallback refresh; - final IconData? icon; - final ImageIcon? imageIcon; - @override - Widget build(BuildContext context, WidgetRef ref) { - return IconButton( - icon: imageIcon ?? Icon(icon), - onPressed: () async { - final result = (await AsyncValue.guard( - () => ref.read(mangaBookRepositoryProvider).putChapter( - mangaId: mangaId, - chapterIndex: chapterIndex, - patch: chapterPut, - ), - )); - if (context.mounted) { - result.showToastOnError(ref.read(toastProvider(context))); - } - await refresh(); - }, - ); - } -} diff --git a/lib/src/features/manga_book/widgets/download_status_icon.dart b/lib/src/features/manga_book/widgets/download_status_icon.dart deleted file mode 100644 index db0c5d7a..00000000 --- a/lib/src/features/manga_book/widgets/download_status_icon.dart +++ /dev/null @@ -1,133 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; - -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../constants/app_sizes.dart'; -import '../../../utils/extensions/custom_extensions.dart'; -import '../../../utils/misc/toast/toast.dart'; -import '../../../widgets/custom_circular_progress_indicator.dart'; -import '../data/downloads/downloads_repository.dart'; -import '../data/manga_book_repository.dart'; -import '../domain/chapter/chapter_model.dart'; -import '../domain/chapter_batch/chapter_batch_model.dart'; - -class DownloadStatusIcon extends HookConsumerWidget { - const DownloadStatusIcon({ - super.key, - required this.updateData, - required this.chapter, - required this.mangaId, - required this.isDownloaded, - }); - final AsyncCallback updateData; - final Chapter chapter; - final int mangaId; - final bool isDownloaded; - - Future newUpdatePair( - WidgetRef ref, ValueSetter setIsLoading) async { - try { - setIsLoading(true); - await updateData(); - setIsLoading(false); - } catch (e) { - // - } - } - - Future toggleChapterToQueue( - Toast toast, - WidgetRef ref, { - bool isAdd = false, - bool isRemove = false, - bool isError = false, - }) async { - try { - if (chapter.index == null) return; - (await AsyncValue.guard(() async { - final repo = ref.read(downloadsRepositoryProvider); - if (isRemove || isError) { - await repo.removeChapterFromDownloadQueue(mangaId, chapter.index!); - } - if (isAdd || isError) { - await repo.addChapterToDownloadQueue(mangaId, chapter.index!); - } - })) - .showToastOnError(toast); - } catch (e) { - // - } - } - - @override - Widget build(BuildContext context, WidgetRef ref) { - final isLoading = useState(false); - - final toast = ref.watch(toastProvider(context)); - final download = ref.watch(downloadsFromIdProvider(chapter.id ?? -1)); - useEffect(() { - if (download?.state == "Finished") { - Future.microtask( - () => newUpdatePair(ref, (value) => isLoading.value = value)); - } - return; - }, [download?.state]); - - if (isLoading.value) { - return Padding( - padding: KEdgeInsets.h8.size, - child: MiniCircularProgressIndicator(color: context.iconColor), - ); - } else { - if (download != null) { - if (download.state == "Error") { - return IconButton( - onPressed: () => toggleChapterToQueue(toast, ref, isError: true), - icon: const Icon(Icons.replay_rounded), - ); - } else { - return IconButton( - onPressed: () => toggleChapterToQueue(toast, ref, isRemove: true), - icon: MiniCircularProgressIndicator( - value: download.progress == 0 ? null : download.progress, - color: context.iconColor, - ), - ); - } - } else { - if (isDownloaded) { - return IconButton( - icon: const Icon(Icons.check_circle_rounded), - onPressed: () async { - (await AsyncValue.guard( - () => ref.read(mangaBookRepositoryProvider).modifyBulkChapters( - batch: ChapterBatch( - chapterIds: [chapter.id!], - change: ChapterChange(delete: true), - ), - ), - )) - .showToastOnError(toast); - await newUpdatePair(ref, (value) => isLoading.value = value); - }, - ); - } else { - return IconButton( - icon: const Icon(Icons.download_for_offline_rounded), - onPressed: () { - toggleChapterToQueue(toast, ref, isAdd: true); - }, - ); - } - } - } - } -} diff --git a/lib/src/features/manga_book/widgets/update_status_fab.dart b/lib/src/features/manga_book/widgets/update_status_fab.dart deleted file mode 100644 index d4a961bb..00000000 --- a/lib/src/features/manga_book/widgets/update_status_fab.dart +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../routes/router_config.dart'; -import '../../../utils/extensions/custom_extensions.dart'; -import '../data/updates/updates_repository.dart'; - -class UpdateStatusFab extends ConsumerWidget { - const UpdateStatusFab({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - final updateStatus = ref.watch(updatesSocketProvider); - final showStatus = (updateStatus.valueOrNull?.isUpdateChecking).ifNull(); - return FloatingActionButton.extended( - icon: showStatus ? null : const Icon(Icons.refresh), - onPressed: () => showStatus - ? const UpdateStatusRoute().push(context) - : ref.read(updatesRepositoryProvider).fetchUpdates(), - label: showStatus - ? Text("${updateStatus.valueOrNull?.updateChecked.padLeft()}" - "/${updateStatus.valueOrNull?.total.padLeft()}") - : Text(context.l10n!.update), - ); - } -} diff --git a/lib/src/features/manga_book/widgets/update_status_popup_menu.dart b/lib/src/features/manga_book/widgets/update_status_popup_menu.dart deleted file mode 100644 index bea764f7..00000000 --- a/lib/src/features/manga_book/widgets/update_status_popup_menu.dart +++ /dev/null @@ -1,55 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../constants/app_sizes.dart'; - -import '../../../routes/router_config.dart'; -import '../../../utils/extensions/custom_extensions.dart'; -import '../../library/domain/category/category_model.dart'; -import '../data/updates/updates_repository.dart'; - -class UpdateStatusPopupMenu extends ConsumerWidget { - const UpdateStatusPopupMenu({ - super.key, - this.getCategory, - this.showSummaryButton = true, - }); - final Category? Function()? getCategory; - final bool showSummaryButton; - @override - Widget build(BuildContext context, WidgetRef ref) { - return PopupMenuButton( - icon: const Icon(Icons.more_vert_rounded), - shape: RoundedRectangleBorder(borderRadius: KBorderRadius.r16.radius), - itemBuilder: (context) { - final category = getCategory?.call(); - return [ - if (category != null && category.id != null && category.id != 0) - PopupMenuItem( - child: Text(context.l10n!.categoryUpdate), - onTap: () => ref - .read(updatesRepositoryProvider) - .fetchUpdates(categoryId: category.id), - ), - PopupMenuItem( - onTap: () => ref.read(updatesRepositoryProvider).fetchUpdates(), - child: Text(context.l10n!.globalUpdate), - ), - if (showSummaryButton) - PopupMenuItem( - onTap: () => const UpdateStatusRoute().push(context), - child: Text( - context.l10n!.updatesSummary, - ), - ), - ]; - }, - ); - } -} diff --git a/lib/src/features/manga_book/widgets/update_status_summary_sheet.dart b/lib/src/features/manga_book/widgets/update_status_summary_sheet.dart deleted file mode 100644 index 320a9fbd..00000000 --- a/lib/src/features/manga_book/widgets/update_status_summary_sheet.dart +++ /dev/null @@ -1,98 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../routes/router_config.dart'; -import '../../../utils/extensions/custom_extensions.dart'; -import '../../../widgets/manga_cover/list/manga_cover_list_tile.dart'; -import '../data/updates/updates_repository.dart'; -import '../domain/manga/manga_model.dart'; -import '../domain/update_status/update_status_model.dart'; -import 'update_status_popup_menu.dart'; - -class UpdateStatusSummaryDialog extends ConsumerWidget { - const UpdateStatusSummaryDialog({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - final statusUpdate = ref.watch(updateSummaryProvider); - final statusUpdateStream = ref.watch(updatesSocketProvider); - final AsyncValue finalStatus = - (statusUpdateStream.valueOrNull?.total.isGreaterThan(0)).ifNull() - ? statusUpdateStream - : statusUpdate; - return Scaffold( - appBar: AppBar( - title: Text(context.l10n!.updatesSummary), - actions: const [UpdateStatusPopupMenu(showSummaryButton: false)], - ), - body: finalStatus.showUiWhenData( - context, - (data) => RefreshIndicator( - onRefresh: () => ref.refresh(updateSummaryProvider.future), - child: ListView( - children: [ - if ((data?.running).isNotBlank) - UpdateStatusExpansionTile( - mangas: data!.running!, - title: context.l10n!.running, - initiallyExpanded: true, - ), - if ((data?.pending).isNotBlank) - UpdateStatusExpansionTile( - mangas: data!.pending!, - title: context.l10n!.pending, - ), - if ((data?.completed).isNotBlank) - UpdateStatusExpansionTile( - mangas: data!.completed!, - title: context.l10n!.completed, - ), - if ((data?.failed).isNotBlank) - UpdateStatusExpansionTile( - mangas: data!.failed!, - title: context.l10n!.failed, - initiallyExpanded: true, - ), - ], - ), - ), - refresh: () => ref.invalidate(updateSummaryProvider), - ), - ); - } -} - -class UpdateStatusExpansionTile extends StatelessWidget { - const UpdateStatusExpansionTile({ - super.key, - required this.mangas, - required this.title, - this.initiallyExpanded = false, - }); - final List mangas; - final String title; - final bool initiallyExpanded; - @override - Widget build(BuildContext context) { - return ExpansionTile( - title: Text("$title (${mangas.length.padLeft()})"), - initiallyExpanded: initiallyExpanded, - textColor: context.theme.indicatorColor, - iconColor: context.theme.indicatorColor, - shape: const RoundedRectangleBorder(), - children: mangas - .map((e) => MangaCoverListTile( - manga: e, - showCountBadges: true, - onPressed: () => MangaRoute(mangaId: e.id!).push(context), - )) - .toList(), - ); - } -} diff --git a/lib/src/features/quick_open/domain/quick_search_result.dart b/lib/src/features/quick_open/domain/quick_search_result.dart deleted file mode 100644 index 1aeeef4e..00000000 --- a/lib/src/features/quick_open/domain/quick_search_result.dart +++ /dev/null @@ -1,61 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'package:freezed_annotation/freezed_annotation.dart'; - -import '../../browse_center/domain/source/source_model.dart'; -import '../../library/domain/category/category_model.dart'; -import '../../manga_book/domain/chapter/chapter_model.dart'; -import '../../manga_book/domain/manga/manga_model.dart'; - -part 'quick_search_result.freezed.dart'; - -@freezed -class QuickSearchResult with _$QuickSearchResult { - const factory QuickSearchResult.helpText({ - required String prefill, - String? pattern, - required String hintText, - }) = HelpTextQuickSearchResult; - - const factory QuickSearchResult.source({ - required Source source, - }) = SourceQuickSearchResult; - - const factory QuickSearchResult.sourceSearch({ - required Source source, - required String query, - }) = SourceSearchQuickSearchResult; - - const factory QuickSearchResult.category({ - required Category category, - }) = CategoryQuickSearchResult; - - const factory QuickSearchResult.categoryManga({ - required Category category, - required Manga manga, - }) = CategoryMangaQuickSearchResult; - - const factory QuickSearchResult.categoryMangaChapter({ - Category? category, - required Manga manga, - required Chapter chapter, - }) = CategoryMangaChapterQuickSearchResult; - - const factory QuickSearchResult.manga({ - Source? source, - required Manga manga, - }) = MangaQuickSearchResult; - - const factory QuickSearchResult.chapter({ - Source? source, - required Manga manga, - required Chapter chapter, - }) = ChapterQuickSearchResult; - - const factory QuickSearchResult.globalSearch() = - GlobalSearchQuickSearchResult; -} diff --git a/lib/src/features/quick_open/domain/quick_search_result.freezed.dart b/lib/src/features/quick_open/domain/quick_search_result.freezed.dart deleted file mode 100644 index 8135c5ec..00000000 --- a/lib/src/features/quick_open/domain/quick_search_result.freezed.dart +++ /dev/null @@ -1,2061 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'quick_search_result.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -/// @nodoc -mixin _$QuickSearchResult { - @optionalTypeArgs - TResult when({ - required TResult Function(String prefill, String? pattern, String hintText) - helpText, - required TResult Function(Source source) source, - required TResult Function(Source source, String query) sourceSearch, - required TResult Function(Category category) category, - required TResult Function(Category category, Manga manga) categoryManga, - required TResult Function(Category? category, Manga manga, Chapter chapter) - categoryMangaChapter, - required TResult Function(Source? source, Manga manga) manga, - required TResult Function(Source? source, Manga manga, Chapter chapter) - chapter, - required TResult Function() globalSearch, - }) => - throw _privateConstructorUsedError; - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(String prefill, String? pattern, String hintText)? - helpText, - TResult? Function(Source source)? source, - TResult? Function(Source source, String query)? sourceSearch, - TResult? Function(Category category)? category, - TResult? Function(Category category, Manga manga)? categoryManga, - TResult? Function(Category? category, Manga manga, Chapter chapter)? - categoryMangaChapter, - TResult? Function(Source? source, Manga manga)? manga, - TResult? Function(Source? source, Manga manga, Chapter chapter)? chapter, - TResult? Function()? globalSearch, - }) => - throw _privateConstructorUsedError; - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(String prefill, String? pattern, String hintText)? - helpText, - TResult Function(Source source)? source, - TResult Function(Source source, String query)? sourceSearch, - TResult Function(Category category)? category, - TResult Function(Category category, Manga manga)? categoryManga, - TResult Function(Category? category, Manga manga, Chapter chapter)? - categoryMangaChapter, - TResult Function(Source? source, Manga manga)? manga, - TResult Function(Source? source, Manga manga, Chapter chapter)? chapter, - TResult Function()? globalSearch, - required TResult orElse(), - }) => - throw _privateConstructorUsedError; - @optionalTypeArgs - TResult map({ - required TResult Function(HelpTextQuickSearchResult value) helpText, - required TResult Function(SourceQuickSearchResult value) source, - required TResult Function(SourceSearchQuickSearchResult value) sourceSearch, - required TResult Function(CategoryQuickSearchResult value) category, - required TResult Function(CategoryMangaQuickSearchResult value) - categoryManga, - required TResult Function(CategoryMangaChapterQuickSearchResult value) - categoryMangaChapter, - required TResult Function(MangaQuickSearchResult value) manga, - required TResult Function(ChapterQuickSearchResult value) chapter, - required TResult Function(GlobalSearchQuickSearchResult value) globalSearch, - }) => - throw _privateConstructorUsedError; - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(HelpTextQuickSearchResult value)? helpText, - TResult? Function(SourceQuickSearchResult value)? source, - TResult? Function(SourceSearchQuickSearchResult value)? sourceSearch, - TResult? Function(CategoryQuickSearchResult value)? category, - TResult? Function(CategoryMangaQuickSearchResult value)? categoryManga, - TResult? Function(CategoryMangaChapterQuickSearchResult value)? - categoryMangaChapter, - TResult? Function(MangaQuickSearchResult value)? manga, - TResult? Function(ChapterQuickSearchResult value)? chapter, - TResult? Function(GlobalSearchQuickSearchResult value)? globalSearch, - }) => - throw _privateConstructorUsedError; - @optionalTypeArgs - TResult maybeMap({ - TResult Function(HelpTextQuickSearchResult value)? helpText, - TResult Function(SourceQuickSearchResult value)? source, - TResult Function(SourceSearchQuickSearchResult value)? sourceSearch, - TResult Function(CategoryQuickSearchResult value)? category, - TResult Function(CategoryMangaQuickSearchResult value)? categoryManga, - TResult Function(CategoryMangaChapterQuickSearchResult value)? - categoryMangaChapter, - TResult Function(MangaQuickSearchResult value)? manga, - TResult Function(ChapterQuickSearchResult value)? chapter, - TResult Function(GlobalSearchQuickSearchResult value)? globalSearch, - required TResult orElse(), - }) => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $QuickSearchResultCopyWith<$Res> { - factory $QuickSearchResultCopyWith( - QuickSearchResult value, $Res Function(QuickSearchResult) then) = - _$QuickSearchResultCopyWithImpl<$Res, QuickSearchResult>; -} - -/// @nodoc -class _$QuickSearchResultCopyWithImpl<$Res, $Val extends QuickSearchResult> - implements $QuickSearchResultCopyWith<$Res> { - _$QuickSearchResultCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; -} - -/// @nodoc -abstract class _$$HelpTextQuickSearchResultImplCopyWith<$Res> { - factory _$$HelpTextQuickSearchResultImplCopyWith( - _$HelpTextQuickSearchResultImpl value, - $Res Function(_$HelpTextQuickSearchResultImpl) then) = - __$$HelpTextQuickSearchResultImplCopyWithImpl<$Res>; - @useResult - $Res call({String prefill, String? pattern, String hintText}); -} - -/// @nodoc -class __$$HelpTextQuickSearchResultImplCopyWithImpl<$Res> - extends _$QuickSearchResultCopyWithImpl<$Res, - _$HelpTextQuickSearchResultImpl> - implements _$$HelpTextQuickSearchResultImplCopyWith<$Res> { - __$$HelpTextQuickSearchResultImplCopyWithImpl( - _$HelpTextQuickSearchResultImpl _value, - $Res Function(_$HelpTextQuickSearchResultImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? prefill = null, - Object? pattern = freezed, - Object? hintText = null, - }) { - return _then(_$HelpTextQuickSearchResultImpl( - prefill: null == prefill - ? _value.prefill - : prefill // ignore: cast_nullable_to_non_nullable - as String, - pattern: freezed == pattern - ? _value.pattern - : pattern // ignore: cast_nullable_to_non_nullable - as String?, - hintText: null == hintText - ? _value.hintText - : hintText // ignore: cast_nullable_to_non_nullable - as String, - )); - } -} - -/// @nodoc - -class _$HelpTextQuickSearchResultImpl implements HelpTextQuickSearchResult { - const _$HelpTextQuickSearchResultImpl( - {required this.prefill, this.pattern, required this.hintText}); - - @override - final String prefill; - @override - final String? pattern; - @override - final String hintText; - - @override - String toString() { - return 'QuickSearchResult.helpText(prefill: $prefill, pattern: $pattern, hintText: $hintText)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$HelpTextQuickSearchResultImpl && - (identical(other.prefill, prefill) || other.prefill == prefill) && - (identical(other.pattern, pattern) || other.pattern == pattern) && - (identical(other.hintText, hintText) || - other.hintText == hintText)); - } - - @override - int get hashCode => Object.hash(runtimeType, prefill, pattern, hintText); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$HelpTextQuickSearchResultImplCopyWith<_$HelpTextQuickSearchResultImpl> - get copyWith => __$$HelpTextQuickSearchResultImplCopyWithImpl< - _$HelpTextQuickSearchResultImpl>(this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(String prefill, String? pattern, String hintText) - helpText, - required TResult Function(Source source) source, - required TResult Function(Source source, String query) sourceSearch, - required TResult Function(Category category) category, - required TResult Function(Category category, Manga manga) categoryManga, - required TResult Function(Category? category, Manga manga, Chapter chapter) - categoryMangaChapter, - required TResult Function(Source? source, Manga manga) manga, - required TResult Function(Source? source, Manga manga, Chapter chapter) - chapter, - required TResult Function() globalSearch, - }) { - return helpText(prefill, pattern, hintText); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(String prefill, String? pattern, String hintText)? - helpText, - TResult? Function(Source source)? source, - TResult? Function(Source source, String query)? sourceSearch, - TResult? Function(Category category)? category, - TResult? Function(Category category, Manga manga)? categoryManga, - TResult? Function(Category? category, Manga manga, Chapter chapter)? - categoryMangaChapter, - TResult? Function(Source? source, Manga manga)? manga, - TResult? Function(Source? source, Manga manga, Chapter chapter)? chapter, - TResult? Function()? globalSearch, - }) { - return helpText?.call(prefill, pattern, hintText); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(String prefill, String? pattern, String hintText)? - helpText, - TResult Function(Source source)? source, - TResult Function(Source source, String query)? sourceSearch, - TResult Function(Category category)? category, - TResult Function(Category category, Manga manga)? categoryManga, - TResult Function(Category? category, Manga manga, Chapter chapter)? - categoryMangaChapter, - TResult Function(Source? source, Manga manga)? manga, - TResult Function(Source? source, Manga manga, Chapter chapter)? chapter, - TResult Function()? globalSearch, - required TResult orElse(), - }) { - if (helpText != null) { - return helpText(prefill, pattern, hintText); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(HelpTextQuickSearchResult value) helpText, - required TResult Function(SourceQuickSearchResult value) source, - required TResult Function(SourceSearchQuickSearchResult value) sourceSearch, - required TResult Function(CategoryQuickSearchResult value) category, - required TResult Function(CategoryMangaQuickSearchResult value) - categoryManga, - required TResult Function(CategoryMangaChapterQuickSearchResult value) - categoryMangaChapter, - required TResult Function(MangaQuickSearchResult value) manga, - required TResult Function(ChapterQuickSearchResult value) chapter, - required TResult Function(GlobalSearchQuickSearchResult value) globalSearch, - }) { - return helpText(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(HelpTextQuickSearchResult value)? helpText, - TResult? Function(SourceQuickSearchResult value)? source, - TResult? Function(SourceSearchQuickSearchResult value)? sourceSearch, - TResult? Function(CategoryQuickSearchResult value)? category, - TResult? Function(CategoryMangaQuickSearchResult value)? categoryManga, - TResult? Function(CategoryMangaChapterQuickSearchResult value)? - categoryMangaChapter, - TResult? Function(MangaQuickSearchResult value)? manga, - TResult? Function(ChapterQuickSearchResult value)? chapter, - TResult? Function(GlobalSearchQuickSearchResult value)? globalSearch, - }) { - return helpText?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(HelpTextQuickSearchResult value)? helpText, - TResult Function(SourceQuickSearchResult value)? source, - TResult Function(SourceSearchQuickSearchResult value)? sourceSearch, - TResult Function(CategoryQuickSearchResult value)? category, - TResult Function(CategoryMangaQuickSearchResult value)? categoryManga, - TResult Function(CategoryMangaChapterQuickSearchResult value)? - categoryMangaChapter, - TResult Function(MangaQuickSearchResult value)? manga, - TResult Function(ChapterQuickSearchResult value)? chapter, - TResult Function(GlobalSearchQuickSearchResult value)? globalSearch, - required TResult orElse(), - }) { - if (helpText != null) { - return helpText(this); - } - return orElse(); - } -} - -abstract class HelpTextQuickSearchResult implements QuickSearchResult { - const factory HelpTextQuickSearchResult( - {required final String prefill, - final String? pattern, - required final String hintText}) = _$HelpTextQuickSearchResultImpl; - - String get prefill; - String? get pattern; - String get hintText; - @JsonKey(ignore: true) - _$$HelpTextQuickSearchResultImplCopyWith<_$HelpTextQuickSearchResultImpl> - get copyWith => throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class _$$SourceQuickSearchResultImplCopyWith<$Res> { - factory _$$SourceQuickSearchResultImplCopyWith( - _$SourceQuickSearchResultImpl value, - $Res Function(_$SourceQuickSearchResultImpl) then) = - __$$SourceQuickSearchResultImplCopyWithImpl<$Res>; - @useResult - $Res call({Source source}); - - $SourceCopyWith<$Res> get source; -} - -/// @nodoc -class __$$SourceQuickSearchResultImplCopyWithImpl<$Res> - extends _$QuickSearchResultCopyWithImpl<$Res, _$SourceQuickSearchResultImpl> - implements _$$SourceQuickSearchResultImplCopyWith<$Res> { - __$$SourceQuickSearchResultImplCopyWithImpl( - _$SourceQuickSearchResultImpl _value, - $Res Function(_$SourceQuickSearchResultImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? source = null, - }) { - return _then(_$SourceQuickSearchResultImpl( - source: null == source - ? _value.source - : source // ignore: cast_nullable_to_non_nullable - as Source, - )); - } - - @override - @pragma('vm:prefer-inline') - $SourceCopyWith<$Res> get source { - return $SourceCopyWith<$Res>(_value.source, (value) { - return _then(_value.copyWith(source: value)); - }); - } -} - -/// @nodoc - -class _$SourceQuickSearchResultImpl implements SourceQuickSearchResult { - const _$SourceQuickSearchResultImpl({required this.source}); - - @override - final Source source; - - @override - String toString() { - return 'QuickSearchResult.source(source: $source)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$SourceQuickSearchResultImpl && - (identical(other.source, source) || other.source == source)); - } - - @override - int get hashCode => Object.hash(runtimeType, source); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$SourceQuickSearchResultImplCopyWith<_$SourceQuickSearchResultImpl> - get copyWith => __$$SourceQuickSearchResultImplCopyWithImpl< - _$SourceQuickSearchResultImpl>(this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(String prefill, String? pattern, String hintText) - helpText, - required TResult Function(Source source) source, - required TResult Function(Source source, String query) sourceSearch, - required TResult Function(Category category) category, - required TResult Function(Category category, Manga manga) categoryManga, - required TResult Function(Category? category, Manga manga, Chapter chapter) - categoryMangaChapter, - required TResult Function(Source? source, Manga manga) manga, - required TResult Function(Source? source, Manga manga, Chapter chapter) - chapter, - required TResult Function() globalSearch, - }) { - return source(this.source); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(String prefill, String? pattern, String hintText)? - helpText, - TResult? Function(Source source)? source, - TResult? Function(Source source, String query)? sourceSearch, - TResult? Function(Category category)? category, - TResult? Function(Category category, Manga manga)? categoryManga, - TResult? Function(Category? category, Manga manga, Chapter chapter)? - categoryMangaChapter, - TResult? Function(Source? source, Manga manga)? manga, - TResult? Function(Source? source, Manga manga, Chapter chapter)? chapter, - TResult? Function()? globalSearch, - }) { - return source?.call(this.source); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(String prefill, String? pattern, String hintText)? - helpText, - TResult Function(Source source)? source, - TResult Function(Source source, String query)? sourceSearch, - TResult Function(Category category)? category, - TResult Function(Category category, Manga manga)? categoryManga, - TResult Function(Category? category, Manga manga, Chapter chapter)? - categoryMangaChapter, - TResult Function(Source? source, Manga manga)? manga, - TResult Function(Source? source, Manga manga, Chapter chapter)? chapter, - TResult Function()? globalSearch, - required TResult orElse(), - }) { - if (source != null) { - return source(this.source); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(HelpTextQuickSearchResult value) helpText, - required TResult Function(SourceQuickSearchResult value) source, - required TResult Function(SourceSearchQuickSearchResult value) sourceSearch, - required TResult Function(CategoryQuickSearchResult value) category, - required TResult Function(CategoryMangaQuickSearchResult value) - categoryManga, - required TResult Function(CategoryMangaChapterQuickSearchResult value) - categoryMangaChapter, - required TResult Function(MangaQuickSearchResult value) manga, - required TResult Function(ChapterQuickSearchResult value) chapter, - required TResult Function(GlobalSearchQuickSearchResult value) globalSearch, - }) { - return source(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(HelpTextQuickSearchResult value)? helpText, - TResult? Function(SourceQuickSearchResult value)? source, - TResult? Function(SourceSearchQuickSearchResult value)? sourceSearch, - TResult? Function(CategoryQuickSearchResult value)? category, - TResult? Function(CategoryMangaQuickSearchResult value)? categoryManga, - TResult? Function(CategoryMangaChapterQuickSearchResult value)? - categoryMangaChapter, - TResult? Function(MangaQuickSearchResult value)? manga, - TResult? Function(ChapterQuickSearchResult value)? chapter, - TResult? Function(GlobalSearchQuickSearchResult value)? globalSearch, - }) { - return source?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(HelpTextQuickSearchResult value)? helpText, - TResult Function(SourceQuickSearchResult value)? source, - TResult Function(SourceSearchQuickSearchResult value)? sourceSearch, - TResult Function(CategoryQuickSearchResult value)? category, - TResult Function(CategoryMangaQuickSearchResult value)? categoryManga, - TResult Function(CategoryMangaChapterQuickSearchResult value)? - categoryMangaChapter, - TResult Function(MangaQuickSearchResult value)? manga, - TResult Function(ChapterQuickSearchResult value)? chapter, - TResult Function(GlobalSearchQuickSearchResult value)? globalSearch, - required TResult orElse(), - }) { - if (source != null) { - return source(this); - } - return orElse(); - } -} - -abstract class SourceQuickSearchResult implements QuickSearchResult { - const factory SourceQuickSearchResult({required final Source source}) = - _$SourceQuickSearchResultImpl; - - Source get source; - @JsonKey(ignore: true) - _$$SourceQuickSearchResultImplCopyWith<_$SourceQuickSearchResultImpl> - get copyWith => throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class _$$SourceSearchQuickSearchResultImplCopyWith<$Res> { - factory _$$SourceSearchQuickSearchResultImplCopyWith( - _$SourceSearchQuickSearchResultImpl value, - $Res Function(_$SourceSearchQuickSearchResultImpl) then) = - __$$SourceSearchQuickSearchResultImplCopyWithImpl<$Res>; - @useResult - $Res call({Source source, String query}); - - $SourceCopyWith<$Res> get source; -} - -/// @nodoc -class __$$SourceSearchQuickSearchResultImplCopyWithImpl<$Res> - extends _$QuickSearchResultCopyWithImpl<$Res, - _$SourceSearchQuickSearchResultImpl> - implements _$$SourceSearchQuickSearchResultImplCopyWith<$Res> { - __$$SourceSearchQuickSearchResultImplCopyWithImpl( - _$SourceSearchQuickSearchResultImpl _value, - $Res Function(_$SourceSearchQuickSearchResultImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? source = null, - Object? query = null, - }) { - return _then(_$SourceSearchQuickSearchResultImpl( - source: null == source - ? _value.source - : source // ignore: cast_nullable_to_non_nullable - as Source, - query: null == query - ? _value.query - : query // ignore: cast_nullable_to_non_nullable - as String, - )); - } - - @override - @pragma('vm:prefer-inline') - $SourceCopyWith<$Res> get source { - return $SourceCopyWith<$Res>(_value.source, (value) { - return _then(_value.copyWith(source: value)); - }); - } -} - -/// @nodoc - -class _$SourceSearchQuickSearchResultImpl - implements SourceSearchQuickSearchResult { - const _$SourceSearchQuickSearchResultImpl( - {required this.source, required this.query}); - - @override - final Source source; - @override - final String query; - - @override - String toString() { - return 'QuickSearchResult.sourceSearch(source: $source, query: $query)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$SourceSearchQuickSearchResultImpl && - (identical(other.source, source) || other.source == source) && - (identical(other.query, query) || other.query == query)); - } - - @override - int get hashCode => Object.hash(runtimeType, source, query); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$SourceSearchQuickSearchResultImplCopyWith< - _$SourceSearchQuickSearchResultImpl> - get copyWith => __$$SourceSearchQuickSearchResultImplCopyWithImpl< - _$SourceSearchQuickSearchResultImpl>(this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(String prefill, String? pattern, String hintText) - helpText, - required TResult Function(Source source) source, - required TResult Function(Source source, String query) sourceSearch, - required TResult Function(Category category) category, - required TResult Function(Category category, Manga manga) categoryManga, - required TResult Function(Category? category, Manga manga, Chapter chapter) - categoryMangaChapter, - required TResult Function(Source? source, Manga manga) manga, - required TResult Function(Source? source, Manga manga, Chapter chapter) - chapter, - required TResult Function() globalSearch, - }) { - return sourceSearch(this.source, query); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(String prefill, String? pattern, String hintText)? - helpText, - TResult? Function(Source source)? source, - TResult? Function(Source source, String query)? sourceSearch, - TResult? Function(Category category)? category, - TResult? Function(Category category, Manga manga)? categoryManga, - TResult? Function(Category? category, Manga manga, Chapter chapter)? - categoryMangaChapter, - TResult? Function(Source? source, Manga manga)? manga, - TResult? Function(Source? source, Manga manga, Chapter chapter)? chapter, - TResult? Function()? globalSearch, - }) { - return sourceSearch?.call(this.source, query); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(String prefill, String? pattern, String hintText)? - helpText, - TResult Function(Source source)? source, - TResult Function(Source source, String query)? sourceSearch, - TResult Function(Category category)? category, - TResult Function(Category category, Manga manga)? categoryManga, - TResult Function(Category? category, Manga manga, Chapter chapter)? - categoryMangaChapter, - TResult Function(Source? source, Manga manga)? manga, - TResult Function(Source? source, Manga manga, Chapter chapter)? chapter, - TResult Function()? globalSearch, - required TResult orElse(), - }) { - if (sourceSearch != null) { - return sourceSearch(this.source, query); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(HelpTextQuickSearchResult value) helpText, - required TResult Function(SourceQuickSearchResult value) source, - required TResult Function(SourceSearchQuickSearchResult value) sourceSearch, - required TResult Function(CategoryQuickSearchResult value) category, - required TResult Function(CategoryMangaQuickSearchResult value) - categoryManga, - required TResult Function(CategoryMangaChapterQuickSearchResult value) - categoryMangaChapter, - required TResult Function(MangaQuickSearchResult value) manga, - required TResult Function(ChapterQuickSearchResult value) chapter, - required TResult Function(GlobalSearchQuickSearchResult value) globalSearch, - }) { - return sourceSearch(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(HelpTextQuickSearchResult value)? helpText, - TResult? Function(SourceQuickSearchResult value)? source, - TResult? Function(SourceSearchQuickSearchResult value)? sourceSearch, - TResult? Function(CategoryQuickSearchResult value)? category, - TResult? Function(CategoryMangaQuickSearchResult value)? categoryManga, - TResult? Function(CategoryMangaChapterQuickSearchResult value)? - categoryMangaChapter, - TResult? Function(MangaQuickSearchResult value)? manga, - TResult? Function(ChapterQuickSearchResult value)? chapter, - TResult? Function(GlobalSearchQuickSearchResult value)? globalSearch, - }) { - return sourceSearch?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(HelpTextQuickSearchResult value)? helpText, - TResult Function(SourceQuickSearchResult value)? source, - TResult Function(SourceSearchQuickSearchResult value)? sourceSearch, - TResult Function(CategoryQuickSearchResult value)? category, - TResult Function(CategoryMangaQuickSearchResult value)? categoryManga, - TResult Function(CategoryMangaChapterQuickSearchResult value)? - categoryMangaChapter, - TResult Function(MangaQuickSearchResult value)? manga, - TResult Function(ChapterQuickSearchResult value)? chapter, - TResult Function(GlobalSearchQuickSearchResult value)? globalSearch, - required TResult orElse(), - }) { - if (sourceSearch != null) { - return sourceSearch(this); - } - return orElse(); - } -} - -abstract class SourceSearchQuickSearchResult implements QuickSearchResult { - const factory SourceSearchQuickSearchResult( - {required final Source source, - required final String query}) = _$SourceSearchQuickSearchResultImpl; - - Source get source; - String get query; - @JsonKey(ignore: true) - _$$SourceSearchQuickSearchResultImplCopyWith< - _$SourceSearchQuickSearchResultImpl> - get copyWith => throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class _$$CategoryQuickSearchResultImplCopyWith<$Res> { - factory _$$CategoryQuickSearchResultImplCopyWith( - _$CategoryQuickSearchResultImpl value, - $Res Function(_$CategoryQuickSearchResultImpl) then) = - __$$CategoryQuickSearchResultImplCopyWithImpl<$Res>; - @useResult - $Res call({Category category}); - - $CategoryCopyWith<$Res> get category; -} - -/// @nodoc -class __$$CategoryQuickSearchResultImplCopyWithImpl<$Res> - extends _$QuickSearchResultCopyWithImpl<$Res, - _$CategoryQuickSearchResultImpl> - implements _$$CategoryQuickSearchResultImplCopyWith<$Res> { - __$$CategoryQuickSearchResultImplCopyWithImpl( - _$CategoryQuickSearchResultImpl _value, - $Res Function(_$CategoryQuickSearchResultImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? category = null, - }) { - return _then(_$CategoryQuickSearchResultImpl( - category: null == category - ? _value.category - : category // ignore: cast_nullable_to_non_nullable - as Category, - )); - } - - @override - @pragma('vm:prefer-inline') - $CategoryCopyWith<$Res> get category { - return $CategoryCopyWith<$Res>(_value.category, (value) { - return _then(_value.copyWith(category: value)); - }); - } -} - -/// @nodoc - -class _$CategoryQuickSearchResultImpl implements CategoryQuickSearchResult { - const _$CategoryQuickSearchResultImpl({required this.category}); - - @override - final Category category; - - @override - String toString() { - return 'QuickSearchResult.category(category: $category)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$CategoryQuickSearchResultImpl && - (identical(other.category, category) || - other.category == category)); - } - - @override - int get hashCode => Object.hash(runtimeType, category); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$CategoryQuickSearchResultImplCopyWith<_$CategoryQuickSearchResultImpl> - get copyWith => __$$CategoryQuickSearchResultImplCopyWithImpl< - _$CategoryQuickSearchResultImpl>(this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(String prefill, String? pattern, String hintText) - helpText, - required TResult Function(Source source) source, - required TResult Function(Source source, String query) sourceSearch, - required TResult Function(Category category) category, - required TResult Function(Category category, Manga manga) categoryManga, - required TResult Function(Category? category, Manga manga, Chapter chapter) - categoryMangaChapter, - required TResult Function(Source? source, Manga manga) manga, - required TResult Function(Source? source, Manga manga, Chapter chapter) - chapter, - required TResult Function() globalSearch, - }) { - return category(this.category); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(String prefill, String? pattern, String hintText)? - helpText, - TResult? Function(Source source)? source, - TResult? Function(Source source, String query)? sourceSearch, - TResult? Function(Category category)? category, - TResult? Function(Category category, Manga manga)? categoryManga, - TResult? Function(Category? category, Manga manga, Chapter chapter)? - categoryMangaChapter, - TResult? Function(Source? source, Manga manga)? manga, - TResult? Function(Source? source, Manga manga, Chapter chapter)? chapter, - TResult? Function()? globalSearch, - }) { - return category?.call(this.category); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(String prefill, String? pattern, String hintText)? - helpText, - TResult Function(Source source)? source, - TResult Function(Source source, String query)? sourceSearch, - TResult Function(Category category)? category, - TResult Function(Category category, Manga manga)? categoryManga, - TResult Function(Category? category, Manga manga, Chapter chapter)? - categoryMangaChapter, - TResult Function(Source? source, Manga manga)? manga, - TResult Function(Source? source, Manga manga, Chapter chapter)? chapter, - TResult Function()? globalSearch, - required TResult orElse(), - }) { - if (category != null) { - return category(this.category); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(HelpTextQuickSearchResult value) helpText, - required TResult Function(SourceQuickSearchResult value) source, - required TResult Function(SourceSearchQuickSearchResult value) sourceSearch, - required TResult Function(CategoryQuickSearchResult value) category, - required TResult Function(CategoryMangaQuickSearchResult value) - categoryManga, - required TResult Function(CategoryMangaChapterQuickSearchResult value) - categoryMangaChapter, - required TResult Function(MangaQuickSearchResult value) manga, - required TResult Function(ChapterQuickSearchResult value) chapter, - required TResult Function(GlobalSearchQuickSearchResult value) globalSearch, - }) { - return category(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(HelpTextQuickSearchResult value)? helpText, - TResult? Function(SourceQuickSearchResult value)? source, - TResult? Function(SourceSearchQuickSearchResult value)? sourceSearch, - TResult? Function(CategoryQuickSearchResult value)? category, - TResult? Function(CategoryMangaQuickSearchResult value)? categoryManga, - TResult? Function(CategoryMangaChapterQuickSearchResult value)? - categoryMangaChapter, - TResult? Function(MangaQuickSearchResult value)? manga, - TResult? Function(ChapterQuickSearchResult value)? chapter, - TResult? Function(GlobalSearchQuickSearchResult value)? globalSearch, - }) { - return category?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(HelpTextQuickSearchResult value)? helpText, - TResult Function(SourceQuickSearchResult value)? source, - TResult Function(SourceSearchQuickSearchResult value)? sourceSearch, - TResult Function(CategoryQuickSearchResult value)? category, - TResult Function(CategoryMangaQuickSearchResult value)? categoryManga, - TResult Function(CategoryMangaChapterQuickSearchResult value)? - categoryMangaChapter, - TResult Function(MangaQuickSearchResult value)? manga, - TResult Function(ChapterQuickSearchResult value)? chapter, - TResult Function(GlobalSearchQuickSearchResult value)? globalSearch, - required TResult orElse(), - }) { - if (category != null) { - return category(this); - } - return orElse(); - } -} - -abstract class CategoryQuickSearchResult implements QuickSearchResult { - const factory CategoryQuickSearchResult({required final Category category}) = - _$CategoryQuickSearchResultImpl; - - Category get category; - @JsonKey(ignore: true) - _$$CategoryQuickSearchResultImplCopyWith<_$CategoryQuickSearchResultImpl> - get copyWith => throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class _$$CategoryMangaQuickSearchResultImplCopyWith<$Res> { - factory _$$CategoryMangaQuickSearchResultImplCopyWith( - _$CategoryMangaQuickSearchResultImpl value, - $Res Function(_$CategoryMangaQuickSearchResultImpl) then) = - __$$CategoryMangaQuickSearchResultImplCopyWithImpl<$Res>; - @useResult - $Res call({Category category, Manga manga}); - - $CategoryCopyWith<$Res> get category; - $MangaCopyWith<$Res> get manga; -} - -/// @nodoc -class __$$CategoryMangaQuickSearchResultImplCopyWithImpl<$Res> - extends _$QuickSearchResultCopyWithImpl<$Res, - _$CategoryMangaQuickSearchResultImpl> - implements _$$CategoryMangaQuickSearchResultImplCopyWith<$Res> { - __$$CategoryMangaQuickSearchResultImplCopyWithImpl( - _$CategoryMangaQuickSearchResultImpl _value, - $Res Function(_$CategoryMangaQuickSearchResultImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? category = null, - Object? manga = null, - }) { - return _then(_$CategoryMangaQuickSearchResultImpl( - category: null == category - ? _value.category - : category // ignore: cast_nullable_to_non_nullable - as Category, - manga: null == manga - ? _value.manga - : manga // ignore: cast_nullable_to_non_nullable - as Manga, - )); - } - - @override - @pragma('vm:prefer-inline') - $CategoryCopyWith<$Res> get category { - return $CategoryCopyWith<$Res>(_value.category, (value) { - return _then(_value.copyWith(category: value)); - }); - } - - @override - @pragma('vm:prefer-inline') - $MangaCopyWith<$Res> get manga { - return $MangaCopyWith<$Res>(_value.manga, (value) { - return _then(_value.copyWith(manga: value)); - }); - } -} - -/// @nodoc - -class _$CategoryMangaQuickSearchResultImpl - implements CategoryMangaQuickSearchResult { - const _$CategoryMangaQuickSearchResultImpl( - {required this.category, required this.manga}); - - @override - final Category category; - @override - final Manga manga; - - @override - String toString() { - return 'QuickSearchResult.categoryManga(category: $category, manga: $manga)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$CategoryMangaQuickSearchResultImpl && - (identical(other.category, category) || - other.category == category) && - (identical(other.manga, manga) || other.manga == manga)); - } - - @override - int get hashCode => Object.hash(runtimeType, category, manga); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$CategoryMangaQuickSearchResultImplCopyWith< - _$CategoryMangaQuickSearchResultImpl> - get copyWith => __$$CategoryMangaQuickSearchResultImplCopyWithImpl< - _$CategoryMangaQuickSearchResultImpl>(this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(String prefill, String? pattern, String hintText) - helpText, - required TResult Function(Source source) source, - required TResult Function(Source source, String query) sourceSearch, - required TResult Function(Category category) category, - required TResult Function(Category category, Manga manga) categoryManga, - required TResult Function(Category? category, Manga manga, Chapter chapter) - categoryMangaChapter, - required TResult Function(Source? source, Manga manga) manga, - required TResult Function(Source? source, Manga manga, Chapter chapter) - chapter, - required TResult Function() globalSearch, - }) { - return categoryManga(this.category, this.manga); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(String prefill, String? pattern, String hintText)? - helpText, - TResult? Function(Source source)? source, - TResult? Function(Source source, String query)? sourceSearch, - TResult? Function(Category category)? category, - TResult? Function(Category category, Manga manga)? categoryManga, - TResult? Function(Category? category, Manga manga, Chapter chapter)? - categoryMangaChapter, - TResult? Function(Source? source, Manga manga)? manga, - TResult? Function(Source? source, Manga manga, Chapter chapter)? chapter, - TResult? Function()? globalSearch, - }) { - return categoryManga?.call(this.category, this.manga); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(String prefill, String? pattern, String hintText)? - helpText, - TResult Function(Source source)? source, - TResult Function(Source source, String query)? sourceSearch, - TResult Function(Category category)? category, - TResult Function(Category category, Manga manga)? categoryManga, - TResult Function(Category? category, Manga manga, Chapter chapter)? - categoryMangaChapter, - TResult Function(Source? source, Manga manga)? manga, - TResult Function(Source? source, Manga manga, Chapter chapter)? chapter, - TResult Function()? globalSearch, - required TResult orElse(), - }) { - if (categoryManga != null) { - return categoryManga(this.category, this.manga); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(HelpTextQuickSearchResult value) helpText, - required TResult Function(SourceQuickSearchResult value) source, - required TResult Function(SourceSearchQuickSearchResult value) sourceSearch, - required TResult Function(CategoryQuickSearchResult value) category, - required TResult Function(CategoryMangaQuickSearchResult value) - categoryManga, - required TResult Function(CategoryMangaChapterQuickSearchResult value) - categoryMangaChapter, - required TResult Function(MangaQuickSearchResult value) manga, - required TResult Function(ChapterQuickSearchResult value) chapter, - required TResult Function(GlobalSearchQuickSearchResult value) globalSearch, - }) { - return categoryManga(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(HelpTextQuickSearchResult value)? helpText, - TResult? Function(SourceQuickSearchResult value)? source, - TResult? Function(SourceSearchQuickSearchResult value)? sourceSearch, - TResult? Function(CategoryQuickSearchResult value)? category, - TResult? Function(CategoryMangaQuickSearchResult value)? categoryManga, - TResult? Function(CategoryMangaChapterQuickSearchResult value)? - categoryMangaChapter, - TResult? Function(MangaQuickSearchResult value)? manga, - TResult? Function(ChapterQuickSearchResult value)? chapter, - TResult? Function(GlobalSearchQuickSearchResult value)? globalSearch, - }) { - return categoryManga?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(HelpTextQuickSearchResult value)? helpText, - TResult Function(SourceQuickSearchResult value)? source, - TResult Function(SourceSearchQuickSearchResult value)? sourceSearch, - TResult Function(CategoryQuickSearchResult value)? category, - TResult Function(CategoryMangaQuickSearchResult value)? categoryManga, - TResult Function(CategoryMangaChapterQuickSearchResult value)? - categoryMangaChapter, - TResult Function(MangaQuickSearchResult value)? manga, - TResult Function(ChapterQuickSearchResult value)? chapter, - TResult Function(GlobalSearchQuickSearchResult value)? globalSearch, - required TResult orElse(), - }) { - if (categoryManga != null) { - return categoryManga(this); - } - return orElse(); - } -} - -abstract class CategoryMangaQuickSearchResult implements QuickSearchResult { - const factory CategoryMangaQuickSearchResult( - {required final Category category, - required final Manga manga}) = _$CategoryMangaQuickSearchResultImpl; - - Category get category; - Manga get manga; - @JsonKey(ignore: true) - _$$CategoryMangaQuickSearchResultImplCopyWith< - _$CategoryMangaQuickSearchResultImpl> - get copyWith => throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class _$$CategoryMangaChapterQuickSearchResultImplCopyWith<$Res> { - factory _$$CategoryMangaChapterQuickSearchResultImplCopyWith( - _$CategoryMangaChapterQuickSearchResultImpl value, - $Res Function(_$CategoryMangaChapterQuickSearchResultImpl) then) = - __$$CategoryMangaChapterQuickSearchResultImplCopyWithImpl<$Res>; - @useResult - $Res call({Category? category, Manga manga, Chapter chapter}); - - $CategoryCopyWith<$Res>? get category; - $MangaCopyWith<$Res> get manga; - $ChapterCopyWith<$Res> get chapter; -} - -/// @nodoc -class __$$CategoryMangaChapterQuickSearchResultImplCopyWithImpl<$Res> - extends _$QuickSearchResultCopyWithImpl<$Res, - _$CategoryMangaChapterQuickSearchResultImpl> - implements _$$CategoryMangaChapterQuickSearchResultImplCopyWith<$Res> { - __$$CategoryMangaChapterQuickSearchResultImplCopyWithImpl( - _$CategoryMangaChapterQuickSearchResultImpl _value, - $Res Function(_$CategoryMangaChapterQuickSearchResultImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? category = freezed, - Object? manga = null, - Object? chapter = null, - }) { - return _then(_$CategoryMangaChapterQuickSearchResultImpl( - category: freezed == category - ? _value.category - : category // ignore: cast_nullable_to_non_nullable - as Category?, - manga: null == manga - ? _value.manga - : manga // ignore: cast_nullable_to_non_nullable - as Manga, - chapter: null == chapter - ? _value.chapter - : chapter // ignore: cast_nullable_to_non_nullable - as Chapter, - )); - } - - @override - @pragma('vm:prefer-inline') - $CategoryCopyWith<$Res>? get category { - if (_value.category == null) { - return null; - } - - return $CategoryCopyWith<$Res>(_value.category!, (value) { - return _then(_value.copyWith(category: value)); - }); - } - - @override - @pragma('vm:prefer-inline') - $MangaCopyWith<$Res> get manga { - return $MangaCopyWith<$Res>(_value.manga, (value) { - return _then(_value.copyWith(manga: value)); - }); - } - - @override - @pragma('vm:prefer-inline') - $ChapterCopyWith<$Res> get chapter { - return $ChapterCopyWith<$Res>(_value.chapter, (value) { - return _then(_value.copyWith(chapter: value)); - }); - } -} - -/// @nodoc - -class _$CategoryMangaChapterQuickSearchResultImpl - implements CategoryMangaChapterQuickSearchResult { - const _$CategoryMangaChapterQuickSearchResultImpl( - {this.category, required this.manga, required this.chapter}); - - @override - final Category? category; - @override - final Manga manga; - @override - final Chapter chapter; - - @override - String toString() { - return 'QuickSearchResult.categoryMangaChapter(category: $category, manga: $manga, chapter: $chapter)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$CategoryMangaChapterQuickSearchResultImpl && - (identical(other.category, category) || - other.category == category) && - (identical(other.manga, manga) || other.manga == manga) && - (identical(other.chapter, chapter) || other.chapter == chapter)); - } - - @override - int get hashCode => Object.hash(runtimeType, category, manga, chapter); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$CategoryMangaChapterQuickSearchResultImplCopyWith< - _$CategoryMangaChapterQuickSearchResultImpl> - get copyWith => __$$CategoryMangaChapterQuickSearchResultImplCopyWithImpl< - _$CategoryMangaChapterQuickSearchResultImpl>(this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(String prefill, String? pattern, String hintText) - helpText, - required TResult Function(Source source) source, - required TResult Function(Source source, String query) sourceSearch, - required TResult Function(Category category) category, - required TResult Function(Category category, Manga manga) categoryManga, - required TResult Function(Category? category, Manga manga, Chapter chapter) - categoryMangaChapter, - required TResult Function(Source? source, Manga manga) manga, - required TResult Function(Source? source, Manga manga, Chapter chapter) - chapter, - required TResult Function() globalSearch, - }) { - return categoryMangaChapter(this.category, this.manga, this.chapter); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(String prefill, String? pattern, String hintText)? - helpText, - TResult? Function(Source source)? source, - TResult? Function(Source source, String query)? sourceSearch, - TResult? Function(Category category)? category, - TResult? Function(Category category, Manga manga)? categoryManga, - TResult? Function(Category? category, Manga manga, Chapter chapter)? - categoryMangaChapter, - TResult? Function(Source? source, Manga manga)? manga, - TResult? Function(Source? source, Manga manga, Chapter chapter)? chapter, - TResult? Function()? globalSearch, - }) { - return categoryMangaChapter?.call(this.category, this.manga, this.chapter); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(String prefill, String? pattern, String hintText)? - helpText, - TResult Function(Source source)? source, - TResult Function(Source source, String query)? sourceSearch, - TResult Function(Category category)? category, - TResult Function(Category category, Manga manga)? categoryManga, - TResult Function(Category? category, Manga manga, Chapter chapter)? - categoryMangaChapter, - TResult Function(Source? source, Manga manga)? manga, - TResult Function(Source? source, Manga manga, Chapter chapter)? chapter, - TResult Function()? globalSearch, - required TResult orElse(), - }) { - if (categoryMangaChapter != null) { - return categoryMangaChapter(this.category, this.manga, this.chapter); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(HelpTextQuickSearchResult value) helpText, - required TResult Function(SourceQuickSearchResult value) source, - required TResult Function(SourceSearchQuickSearchResult value) sourceSearch, - required TResult Function(CategoryQuickSearchResult value) category, - required TResult Function(CategoryMangaQuickSearchResult value) - categoryManga, - required TResult Function(CategoryMangaChapterQuickSearchResult value) - categoryMangaChapter, - required TResult Function(MangaQuickSearchResult value) manga, - required TResult Function(ChapterQuickSearchResult value) chapter, - required TResult Function(GlobalSearchQuickSearchResult value) globalSearch, - }) { - return categoryMangaChapter(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(HelpTextQuickSearchResult value)? helpText, - TResult? Function(SourceQuickSearchResult value)? source, - TResult? Function(SourceSearchQuickSearchResult value)? sourceSearch, - TResult? Function(CategoryQuickSearchResult value)? category, - TResult? Function(CategoryMangaQuickSearchResult value)? categoryManga, - TResult? Function(CategoryMangaChapterQuickSearchResult value)? - categoryMangaChapter, - TResult? Function(MangaQuickSearchResult value)? manga, - TResult? Function(ChapterQuickSearchResult value)? chapter, - TResult? Function(GlobalSearchQuickSearchResult value)? globalSearch, - }) { - return categoryMangaChapter?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(HelpTextQuickSearchResult value)? helpText, - TResult Function(SourceQuickSearchResult value)? source, - TResult Function(SourceSearchQuickSearchResult value)? sourceSearch, - TResult Function(CategoryQuickSearchResult value)? category, - TResult Function(CategoryMangaQuickSearchResult value)? categoryManga, - TResult Function(CategoryMangaChapterQuickSearchResult value)? - categoryMangaChapter, - TResult Function(MangaQuickSearchResult value)? manga, - TResult Function(ChapterQuickSearchResult value)? chapter, - TResult Function(GlobalSearchQuickSearchResult value)? globalSearch, - required TResult orElse(), - }) { - if (categoryMangaChapter != null) { - return categoryMangaChapter(this); - } - return orElse(); - } -} - -abstract class CategoryMangaChapterQuickSearchResult - implements QuickSearchResult { - const factory CategoryMangaChapterQuickSearchResult( - {final Category? category, - required final Manga manga, - required final Chapter chapter}) = - _$CategoryMangaChapterQuickSearchResultImpl; - - Category? get category; - Manga get manga; - Chapter get chapter; - @JsonKey(ignore: true) - _$$CategoryMangaChapterQuickSearchResultImplCopyWith< - _$CategoryMangaChapterQuickSearchResultImpl> - get copyWith => throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class _$$MangaQuickSearchResultImplCopyWith<$Res> { - factory _$$MangaQuickSearchResultImplCopyWith( - _$MangaQuickSearchResultImpl value, - $Res Function(_$MangaQuickSearchResultImpl) then) = - __$$MangaQuickSearchResultImplCopyWithImpl<$Res>; - @useResult - $Res call({Source? source, Manga manga}); - - $SourceCopyWith<$Res>? get source; - $MangaCopyWith<$Res> get manga; -} - -/// @nodoc -class __$$MangaQuickSearchResultImplCopyWithImpl<$Res> - extends _$QuickSearchResultCopyWithImpl<$Res, _$MangaQuickSearchResultImpl> - implements _$$MangaQuickSearchResultImplCopyWith<$Res> { - __$$MangaQuickSearchResultImplCopyWithImpl( - _$MangaQuickSearchResultImpl _value, - $Res Function(_$MangaQuickSearchResultImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? source = freezed, - Object? manga = null, - }) { - return _then(_$MangaQuickSearchResultImpl( - source: freezed == source - ? _value.source - : source // ignore: cast_nullable_to_non_nullable - as Source?, - manga: null == manga - ? _value.manga - : manga // ignore: cast_nullable_to_non_nullable - as Manga, - )); - } - - @override - @pragma('vm:prefer-inline') - $SourceCopyWith<$Res>? get source { - if (_value.source == null) { - return null; - } - - return $SourceCopyWith<$Res>(_value.source!, (value) { - return _then(_value.copyWith(source: value)); - }); - } - - @override - @pragma('vm:prefer-inline') - $MangaCopyWith<$Res> get manga { - return $MangaCopyWith<$Res>(_value.manga, (value) { - return _then(_value.copyWith(manga: value)); - }); - } -} - -/// @nodoc - -class _$MangaQuickSearchResultImpl implements MangaQuickSearchResult { - const _$MangaQuickSearchResultImpl({this.source, required this.manga}); - - @override - final Source? source; - @override - final Manga manga; - - @override - String toString() { - return 'QuickSearchResult.manga(source: $source, manga: $manga)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$MangaQuickSearchResultImpl && - (identical(other.source, source) || other.source == source) && - (identical(other.manga, manga) || other.manga == manga)); - } - - @override - int get hashCode => Object.hash(runtimeType, source, manga); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$MangaQuickSearchResultImplCopyWith<_$MangaQuickSearchResultImpl> - get copyWith => __$$MangaQuickSearchResultImplCopyWithImpl< - _$MangaQuickSearchResultImpl>(this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(String prefill, String? pattern, String hintText) - helpText, - required TResult Function(Source source) source, - required TResult Function(Source source, String query) sourceSearch, - required TResult Function(Category category) category, - required TResult Function(Category category, Manga manga) categoryManga, - required TResult Function(Category? category, Manga manga, Chapter chapter) - categoryMangaChapter, - required TResult Function(Source? source, Manga manga) manga, - required TResult Function(Source? source, Manga manga, Chapter chapter) - chapter, - required TResult Function() globalSearch, - }) { - return manga(this.source, this.manga); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(String prefill, String? pattern, String hintText)? - helpText, - TResult? Function(Source source)? source, - TResult? Function(Source source, String query)? sourceSearch, - TResult? Function(Category category)? category, - TResult? Function(Category category, Manga manga)? categoryManga, - TResult? Function(Category? category, Manga manga, Chapter chapter)? - categoryMangaChapter, - TResult? Function(Source? source, Manga manga)? manga, - TResult? Function(Source? source, Manga manga, Chapter chapter)? chapter, - TResult? Function()? globalSearch, - }) { - return manga?.call(this.source, this.manga); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(String prefill, String? pattern, String hintText)? - helpText, - TResult Function(Source source)? source, - TResult Function(Source source, String query)? sourceSearch, - TResult Function(Category category)? category, - TResult Function(Category category, Manga manga)? categoryManga, - TResult Function(Category? category, Manga manga, Chapter chapter)? - categoryMangaChapter, - TResult Function(Source? source, Manga manga)? manga, - TResult Function(Source? source, Manga manga, Chapter chapter)? chapter, - TResult Function()? globalSearch, - required TResult orElse(), - }) { - if (manga != null) { - return manga(this.source, this.manga); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(HelpTextQuickSearchResult value) helpText, - required TResult Function(SourceQuickSearchResult value) source, - required TResult Function(SourceSearchQuickSearchResult value) sourceSearch, - required TResult Function(CategoryQuickSearchResult value) category, - required TResult Function(CategoryMangaQuickSearchResult value) - categoryManga, - required TResult Function(CategoryMangaChapterQuickSearchResult value) - categoryMangaChapter, - required TResult Function(MangaQuickSearchResult value) manga, - required TResult Function(ChapterQuickSearchResult value) chapter, - required TResult Function(GlobalSearchQuickSearchResult value) globalSearch, - }) { - return manga(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(HelpTextQuickSearchResult value)? helpText, - TResult? Function(SourceQuickSearchResult value)? source, - TResult? Function(SourceSearchQuickSearchResult value)? sourceSearch, - TResult? Function(CategoryQuickSearchResult value)? category, - TResult? Function(CategoryMangaQuickSearchResult value)? categoryManga, - TResult? Function(CategoryMangaChapterQuickSearchResult value)? - categoryMangaChapter, - TResult? Function(MangaQuickSearchResult value)? manga, - TResult? Function(ChapterQuickSearchResult value)? chapter, - TResult? Function(GlobalSearchQuickSearchResult value)? globalSearch, - }) { - return manga?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(HelpTextQuickSearchResult value)? helpText, - TResult Function(SourceQuickSearchResult value)? source, - TResult Function(SourceSearchQuickSearchResult value)? sourceSearch, - TResult Function(CategoryQuickSearchResult value)? category, - TResult Function(CategoryMangaQuickSearchResult value)? categoryManga, - TResult Function(CategoryMangaChapterQuickSearchResult value)? - categoryMangaChapter, - TResult Function(MangaQuickSearchResult value)? manga, - TResult Function(ChapterQuickSearchResult value)? chapter, - TResult Function(GlobalSearchQuickSearchResult value)? globalSearch, - required TResult orElse(), - }) { - if (manga != null) { - return manga(this); - } - return orElse(); - } -} - -abstract class MangaQuickSearchResult implements QuickSearchResult { - const factory MangaQuickSearchResult( - {final Source? source, - required final Manga manga}) = _$MangaQuickSearchResultImpl; - - Source? get source; - Manga get manga; - @JsonKey(ignore: true) - _$$MangaQuickSearchResultImplCopyWith<_$MangaQuickSearchResultImpl> - get copyWith => throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class _$$ChapterQuickSearchResultImplCopyWith<$Res> { - factory _$$ChapterQuickSearchResultImplCopyWith( - _$ChapterQuickSearchResultImpl value, - $Res Function(_$ChapterQuickSearchResultImpl) then) = - __$$ChapterQuickSearchResultImplCopyWithImpl<$Res>; - @useResult - $Res call({Source? source, Manga manga, Chapter chapter}); - - $SourceCopyWith<$Res>? get source; - $MangaCopyWith<$Res> get manga; - $ChapterCopyWith<$Res> get chapter; -} - -/// @nodoc -class __$$ChapterQuickSearchResultImplCopyWithImpl<$Res> - extends _$QuickSearchResultCopyWithImpl<$Res, - _$ChapterQuickSearchResultImpl> - implements _$$ChapterQuickSearchResultImplCopyWith<$Res> { - __$$ChapterQuickSearchResultImplCopyWithImpl( - _$ChapterQuickSearchResultImpl _value, - $Res Function(_$ChapterQuickSearchResultImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? source = freezed, - Object? manga = null, - Object? chapter = null, - }) { - return _then(_$ChapterQuickSearchResultImpl( - source: freezed == source - ? _value.source - : source // ignore: cast_nullable_to_non_nullable - as Source?, - manga: null == manga - ? _value.manga - : manga // ignore: cast_nullable_to_non_nullable - as Manga, - chapter: null == chapter - ? _value.chapter - : chapter // ignore: cast_nullable_to_non_nullable - as Chapter, - )); - } - - @override - @pragma('vm:prefer-inline') - $SourceCopyWith<$Res>? get source { - if (_value.source == null) { - return null; - } - - return $SourceCopyWith<$Res>(_value.source!, (value) { - return _then(_value.copyWith(source: value)); - }); - } - - @override - @pragma('vm:prefer-inline') - $MangaCopyWith<$Res> get manga { - return $MangaCopyWith<$Res>(_value.manga, (value) { - return _then(_value.copyWith(manga: value)); - }); - } - - @override - @pragma('vm:prefer-inline') - $ChapterCopyWith<$Res> get chapter { - return $ChapterCopyWith<$Res>(_value.chapter, (value) { - return _then(_value.copyWith(chapter: value)); - }); - } -} - -/// @nodoc - -class _$ChapterQuickSearchResultImpl implements ChapterQuickSearchResult { - const _$ChapterQuickSearchResultImpl( - {this.source, required this.manga, required this.chapter}); - - @override - final Source? source; - @override - final Manga manga; - @override - final Chapter chapter; - - @override - String toString() { - return 'QuickSearchResult.chapter(source: $source, manga: $manga, chapter: $chapter)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$ChapterQuickSearchResultImpl && - (identical(other.source, source) || other.source == source) && - (identical(other.manga, manga) || other.manga == manga) && - (identical(other.chapter, chapter) || other.chapter == chapter)); - } - - @override - int get hashCode => Object.hash(runtimeType, source, manga, chapter); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$ChapterQuickSearchResultImplCopyWith<_$ChapterQuickSearchResultImpl> - get copyWith => __$$ChapterQuickSearchResultImplCopyWithImpl< - _$ChapterQuickSearchResultImpl>(this, _$identity); - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(String prefill, String? pattern, String hintText) - helpText, - required TResult Function(Source source) source, - required TResult Function(Source source, String query) sourceSearch, - required TResult Function(Category category) category, - required TResult Function(Category category, Manga manga) categoryManga, - required TResult Function(Category? category, Manga manga, Chapter chapter) - categoryMangaChapter, - required TResult Function(Source? source, Manga manga) manga, - required TResult Function(Source? source, Manga manga, Chapter chapter) - chapter, - required TResult Function() globalSearch, - }) { - return chapter(this.source, this.manga, this.chapter); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(String prefill, String? pattern, String hintText)? - helpText, - TResult? Function(Source source)? source, - TResult? Function(Source source, String query)? sourceSearch, - TResult? Function(Category category)? category, - TResult? Function(Category category, Manga manga)? categoryManga, - TResult? Function(Category? category, Manga manga, Chapter chapter)? - categoryMangaChapter, - TResult? Function(Source? source, Manga manga)? manga, - TResult? Function(Source? source, Manga manga, Chapter chapter)? chapter, - TResult? Function()? globalSearch, - }) { - return chapter?.call(this.source, this.manga, this.chapter); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(String prefill, String? pattern, String hintText)? - helpText, - TResult Function(Source source)? source, - TResult Function(Source source, String query)? sourceSearch, - TResult Function(Category category)? category, - TResult Function(Category category, Manga manga)? categoryManga, - TResult Function(Category? category, Manga manga, Chapter chapter)? - categoryMangaChapter, - TResult Function(Source? source, Manga manga)? manga, - TResult Function(Source? source, Manga manga, Chapter chapter)? chapter, - TResult Function()? globalSearch, - required TResult orElse(), - }) { - if (chapter != null) { - return chapter(this.source, this.manga, this.chapter); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(HelpTextQuickSearchResult value) helpText, - required TResult Function(SourceQuickSearchResult value) source, - required TResult Function(SourceSearchQuickSearchResult value) sourceSearch, - required TResult Function(CategoryQuickSearchResult value) category, - required TResult Function(CategoryMangaQuickSearchResult value) - categoryManga, - required TResult Function(CategoryMangaChapterQuickSearchResult value) - categoryMangaChapter, - required TResult Function(MangaQuickSearchResult value) manga, - required TResult Function(ChapterQuickSearchResult value) chapter, - required TResult Function(GlobalSearchQuickSearchResult value) globalSearch, - }) { - return chapter(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(HelpTextQuickSearchResult value)? helpText, - TResult? Function(SourceQuickSearchResult value)? source, - TResult? Function(SourceSearchQuickSearchResult value)? sourceSearch, - TResult? Function(CategoryQuickSearchResult value)? category, - TResult? Function(CategoryMangaQuickSearchResult value)? categoryManga, - TResult? Function(CategoryMangaChapterQuickSearchResult value)? - categoryMangaChapter, - TResult? Function(MangaQuickSearchResult value)? manga, - TResult? Function(ChapterQuickSearchResult value)? chapter, - TResult? Function(GlobalSearchQuickSearchResult value)? globalSearch, - }) { - return chapter?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(HelpTextQuickSearchResult value)? helpText, - TResult Function(SourceQuickSearchResult value)? source, - TResult Function(SourceSearchQuickSearchResult value)? sourceSearch, - TResult Function(CategoryQuickSearchResult value)? category, - TResult Function(CategoryMangaQuickSearchResult value)? categoryManga, - TResult Function(CategoryMangaChapterQuickSearchResult value)? - categoryMangaChapter, - TResult Function(MangaQuickSearchResult value)? manga, - TResult Function(ChapterQuickSearchResult value)? chapter, - TResult Function(GlobalSearchQuickSearchResult value)? globalSearch, - required TResult orElse(), - }) { - if (chapter != null) { - return chapter(this); - } - return orElse(); - } -} - -abstract class ChapterQuickSearchResult implements QuickSearchResult { - const factory ChapterQuickSearchResult( - {final Source? source, - required final Manga manga, - required final Chapter chapter}) = _$ChapterQuickSearchResultImpl; - - Source? get source; - Manga get manga; - Chapter get chapter; - @JsonKey(ignore: true) - _$$ChapterQuickSearchResultImplCopyWith<_$ChapterQuickSearchResultImpl> - get copyWith => throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class _$$GlobalSearchQuickSearchResultImplCopyWith<$Res> { - factory _$$GlobalSearchQuickSearchResultImplCopyWith( - _$GlobalSearchQuickSearchResultImpl value, - $Res Function(_$GlobalSearchQuickSearchResultImpl) then) = - __$$GlobalSearchQuickSearchResultImplCopyWithImpl<$Res>; -} - -/// @nodoc -class __$$GlobalSearchQuickSearchResultImplCopyWithImpl<$Res> - extends _$QuickSearchResultCopyWithImpl<$Res, - _$GlobalSearchQuickSearchResultImpl> - implements _$$GlobalSearchQuickSearchResultImplCopyWith<$Res> { - __$$GlobalSearchQuickSearchResultImplCopyWithImpl( - _$GlobalSearchQuickSearchResultImpl _value, - $Res Function(_$GlobalSearchQuickSearchResultImpl) _then) - : super(_value, _then); -} - -/// @nodoc - -class _$GlobalSearchQuickSearchResultImpl - implements GlobalSearchQuickSearchResult { - const _$GlobalSearchQuickSearchResultImpl(); - - @override - String toString() { - return 'QuickSearchResult.globalSearch()'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$GlobalSearchQuickSearchResultImpl); - } - - @override - int get hashCode => runtimeType.hashCode; - - @override - @optionalTypeArgs - TResult when({ - required TResult Function(String prefill, String? pattern, String hintText) - helpText, - required TResult Function(Source source) source, - required TResult Function(Source source, String query) sourceSearch, - required TResult Function(Category category) category, - required TResult Function(Category category, Manga manga) categoryManga, - required TResult Function(Category? category, Manga manga, Chapter chapter) - categoryMangaChapter, - required TResult Function(Source? source, Manga manga) manga, - required TResult Function(Source? source, Manga manga, Chapter chapter) - chapter, - required TResult Function() globalSearch, - }) { - return globalSearch(); - } - - @override - @optionalTypeArgs - TResult? whenOrNull({ - TResult? Function(String prefill, String? pattern, String hintText)? - helpText, - TResult? Function(Source source)? source, - TResult? Function(Source source, String query)? sourceSearch, - TResult? Function(Category category)? category, - TResult? Function(Category category, Manga manga)? categoryManga, - TResult? Function(Category? category, Manga manga, Chapter chapter)? - categoryMangaChapter, - TResult? Function(Source? source, Manga manga)? manga, - TResult? Function(Source? source, Manga manga, Chapter chapter)? chapter, - TResult? Function()? globalSearch, - }) { - return globalSearch?.call(); - } - - @override - @optionalTypeArgs - TResult maybeWhen({ - TResult Function(String prefill, String? pattern, String hintText)? - helpText, - TResult Function(Source source)? source, - TResult Function(Source source, String query)? sourceSearch, - TResult Function(Category category)? category, - TResult Function(Category category, Manga manga)? categoryManga, - TResult Function(Category? category, Manga manga, Chapter chapter)? - categoryMangaChapter, - TResult Function(Source? source, Manga manga)? manga, - TResult Function(Source? source, Manga manga, Chapter chapter)? chapter, - TResult Function()? globalSearch, - required TResult orElse(), - }) { - if (globalSearch != null) { - return globalSearch(); - } - return orElse(); - } - - @override - @optionalTypeArgs - TResult map({ - required TResult Function(HelpTextQuickSearchResult value) helpText, - required TResult Function(SourceQuickSearchResult value) source, - required TResult Function(SourceSearchQuickSearchResult value) sourceSearch, - required TResult Function(CategoryQuickSearchResult value) category, - required TResult Function(CategoryMangaQuickSearchResult value) - categoryManga, - required TResult Function(CategoryMangaChapterQuickSearchResult value) - categoryMangaChapter, - required TResult Function(MangaQuickSearchResult value) manga, - required TResult Function(ChapterQuickSearchResult value) chapter, - required TResult Function(GlobalSearchQuickSearchResult value) globalSearch, - }) { - return globalSearch(this); - } - - @override - @optionalTypeArgs - TResult? mapOrNull({ - TResult? Function(HelpTextQuickSearchResult value)? helpText, - TResult? Function(SourceQuickSearchResult value)? source, - TResult? Function(SourceSearchQuickSearchResult value)? sourceSearch, - TResult? Function(CategoryQuickSearchResult value)? category, - TResult? Function(CategoryMangaQuickSearchResult value)? categoryManga, - TResult? Function(CategoryMangaChapterQuickSearchResult value)? - categoryMangaChapter, - TResult? Function(MangaQuickSearchResult value)? manga, - TResult? Function(ChapterQuickSearchResult value)? chapter, - TResult? Function(GlobalSearchQuickSearchResult value)? globalSearch, - }) { - return globalSearch?.call(this); - } - - @override - @optionalTypeArgs - TResult maybeMap({ - TResult Function(HelpTextQuickSearchResult value)? helpText, - TResult Function(SourceQuickSearchResult value)? source, - TResult Function(SourceSearchQuickSearchResult value)? sourceSearch, - TResult Function(CategoryQuickSearchResult value)? category, - TResult Function(CategoryMangaQuickSearchResult value)? categoryManga, - TResult Function(CategoryMangaChapterQuickSearchResult value)? - categoryMangaChapter, - TResult Function(MangaQuickSearchResult value)? manga, - TResult Function(ChapterQuickSearchResult value)? chapter, - TResult Function(GlobalSearchQuickSearchResult value)? globalSearch, - required TResult orElse(), - }) { - if (globalSearch != null) { - return globalSearch(this); - } - return orElse(); - } -} - -abstract class GlobalSearchQuickSearchResult implements QuickSearchResult { - const factory GlobalSearchQuickSearchResult() = - _$GlobalSearchQuickSearchResultImpl; -} diff --git a/lib/src/features/quick_open/presentation/quick_search/controller/quick_search_controller.dart b/lib/src/features/quick_open/presentation/quick_search/controller/quick_search_controller.dart deleted file mode 100644 index 397b0f1d..00000000 --- a/lib/src/features/quick_open/presentation/quick_search/controller/quick_search_controller.dart +++ /dev/null @@ -1,141 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; -import '../../../../../constants/quick_open_help_text.dart'; -import '../../../../../routes/router_config.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../utils/mixin/state_provider_mixin.dart'; -import '../../../../browse_center/presentation/source/controller/source_controller.dart'; -import '../../../../library/domain/category/category_model.dart'; -import '../../../../library/presentation/category/controller/edit_category_controller.dart'; -import '../../../../library/presentation/library/controller/library_controller.dart'; -import '../../../../manga_book/domain/manga/manga_model.dart'; -import '../../../../manga_book/presentation/manga_details/controller/manga_details_controller.dart'; -import '../../../domain/quick_search_result.dart'; -part 'quick_search_controller.g.dart'; - -@riverpod -class QuickSearchQuery extends _$QuickSearchQuery - with StateProviderMixin { - @override - String? build() => null; -} - -@riverpod -List? processesQuickSearch( - ProcessesQuickSearchRef ref, { - required BuildContext context, -}) { - String query = ref.watch(quickSearchQueryProvider) ?? ""; - - if (query.startsWith('?')) return getQuickShowHintTextList(context); - - // Source Search - if (query.startsWith('@')) { - String sourceQuery = query.startsWith('@') ? query.substring(1) : query; - final queryList = sourceQuery.split('/'); - final sourceList = - ref.watch(sourceQueryProvider(query: queryList.firstOrNull)); - - if (queryList.length > 1) { - return sourceList - ?.map((e) => QuickSearchResult.sourceSearch( - source: e, - query: queryList[1], - )) - .toList(); - } else { - return sourceList - ?.map((e) => QuickSearchResult.source(source: e)) - .toList(); - } - } - // Chapter Search with Manga - List? chapterSearch(Manga manga, - {Category? category, String? query}) { - final chapterList = ref - .watch(mangaChapterListProvider(mangaId: manga.id!)) - .valueOrNull - ?.where( - (chapter) => chapter.query(query), - ) - .toList(); - return chapterList - ?.map( - (c) => QuickSearchResult.categoryMangaChapter( - category: category, - manga: manga, - chapter: c, - ), - ) - .toList(); - } - - // Library Category Search with Query - List? mangaSearch(String query) { - final categoryQuery = query.startsWith('#') ? query.substring(1) : query; - final categoryMangaQueryList = categoryQuery.split('/'); - - final categoryList = ref - .watch(categoryListQueryProvider(query: categoryMangaQueryList.first)); - - if (categoryMangaQueryList.length > 1) { - final firstCategory = categoryList.firstOrNull; - if (firstCategory?.id == null) return null; - - final mangaChapterQueryList = categoryMangaQueryList[1].split(':'); - final mangaList = ref - .watch(categoryMangaListProvider(firstCategory!.id!)) - .valueOrNull - ?.where((e) => e.query(mangaChapterQueryList.firstOrNull)); - - if (mangaChapterQueryList.length > 1) { - final firstManga = mangaList.firstOrNull; - if (firstManga != null && firstManga.id != null) { - return chapterSearch( - firstManga, - category: firstCategory, - query: mangaChapterQueryList[1], - ); - } - } else { - return mangaList - ?.map((e) => QuickSearchResult.categoryManga( - category: firstCategory, - manga: e, - )) - .toList(); - } - } - return categoryList - ?.map((e) => QuickSearchResult.category(category: e)) - .toList(); - } - - // Manga Search - if (query.startsWith('#') || - (context.location.contains(Routes.library)).ifNull()) { - return mangaSearch(query); - } - - // Manga Description context aware Search - if ((context.location.startsWith(Routes.mangaRoute)).ifNull()) { - final id = int.tryParse(context.location - .substring(Routes.mangaRoute.length) - .split('/') - .firstOrNull - ?.split('?') - .firstOrNull ?? - ''); - if (id != null) { - final manga = ref.watch(MangaWithIdProvider(mangaId: id)).valueOrNull; - if (manga != null) return chapterSearch(manga, query: query); - } - } - return mangaSearch(query); -} diff --git a/lib/src/features/quick_open/presentation/quick_search/controller/quick_search_controller.g.dart b/lib/src/features/quick_open/presentation/quick_search/controller/quick_search_controller.g.dart deleted file mode 100644 index ff6af366..00000000 --- a/lib/src/features/quick_open/presentation/quick_search/controller/quick_search_controller.g.dart +++ /dev/null @@ -1,179 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'quick_search_controller.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$processesQuickSearchHash() => - r'93fc20d8122c2e7cb96f566d756f68d9436cc08c'; - -/// Copied from Dart SDK -class _SystemHash { - _SystemHash._(); - - static int combine(int hash, int value) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + value); - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x0007ffff & hash) << 10)); - return hash ^ (hash >> 6); - } - - static int finish(int hash) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x03ffffff & hash) << 3)); - // ignore: parameter_assignments - hash = hash ^ (hash >> 11); - return 0x1fffffff & (hash + ((0x00003fff & hash) << 15)); - } -} - -/// See also [processesQuickSearch]. -@ProviderFor(processesQuickSearch) -const processesQuickSearchProvider = ProcessesQuickSearchFamily(); - -/// See also [processesQuickSearch]. -class ProcessesQuickSearchFamily extends Family?> { - /// See also [processesQuickSearch]. - const ProcessesQuickSearchFamily(); - - /// See also [processesQuickSearch]. - ProcessesQuickSearchProvider call({ - required BuildContext context, - }) { - return ProcessesQuickSearchProvider( - context: context, - ); - } - - @override - ProcessesQuickSearchProvider getProviderOverride( - covariant ProcessesQuickSearchProvider provider, - ) { - return call( - context: provider.context, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'processesQuickSearchProvider'; -} - -/// See also [processesQuickSearch]. -class ProcessesQuickSearchProvider - extends AutoDisposeProvider?> { - /// See also [processesQuickSearch]. - ProcessesQuickSearchProvider({ - required BuildContext context, - }) : this._internal( - (ref) => processesQuickSearch( - ref as ProcessesQuickSearchRef, - context: context, - ), - from: processesQuickSearchProvider, - name: r'processesQuickSearchProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$processesQuickSearchHash, - dependencies: ProcessesQuickSearchFamily._dependencies, - allTransitiveDependencies: - ProcessesQuickSearchFamily._allTransitiveDependencies, - context: context, - ); - - ProcessesQuickSearchProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.context, - }) : super.internal(); - - final BuildContext context; - - @override - Override overrideWith( - List? Function(ProcessesQuickSearchRef provider) create, - ) { - return ProviderOverride( - origin: this, - override: ProcessesQuickSearchProvider._internal( - (ref) => create(ref as ProcessesQuickSearchRef), - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - context: context, - ), - ); - } - - @override - AutoDisposeProviderElement?> createElement() { - return _ProcessesQuickSearchProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is ProcessesQuickSearchProvider && other.context == context; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, context.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin ProcessesQuickSearchRef - on AutoDisposeProviderRef?> { - /// The parameter `context` of this provider. - BuildContext get context; -} - -class _ProcessesQuickSearchProviderElement - extends AutoDisposeProviderElement?> - with ProcessesQuickSearchRef { - _ProcessesQuickSearchProviderElement(super.provider); - - @override - BuildContext get context => (origin as ProcessesQuickSearchProvider).context; -} - -String _$quickSearchQueryHash() => r'92868329e912423e36de604ccac3e6c1a96056e3'; - -/// See also [QuickSearchQuery]. -@ProviderFor(QuickSearchQuery) -final quickSearchQueryProvider = - AutoDisposeNotifierProvider.internal( - QuickSearchQuery.new, - name: r'quickSearchQueryProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$quickSearchQueryHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$QuickSearchQuery = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/quick_open/presentation/quick_search/quick_search_screen.dart b/lib/src/features/quick_open/presentation/quick_search/quick_search_screen.dart deleted file mode 100644 index 207ac813..00000000 --- a/lib/src/features/quick_open/presentation/quick_search/quick_search_screen.dart +++ /dev/null @@ -1,60 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:gap/gap.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; -import 'widgets/quick_query_result.dart'; -import 'widgets/quick_search_bar.dart'; - -class QuickSearchScreen extends HookWidget { - const QuickSearchScreen({super.key, required this.afterClick}); - final VoidCallback afterClick; - @override - Widget build(BuildContext context) { - final controller = useTextEditingController(); - useEffect(() { - Future.microtask( - () => controller.selection = TextSelection( - baseOffset: 0, - extentOffset: controller.text.length, - ), - ); - - return null; - }, []); - return Padding( - padding: EdgeInsets.symmetric( - horizontal: context.widthScale(scale: .1), - vertical: context.heightScale(scale: .05), - ), - child: Align( - alignment: Alignment.topCenter, - child: FocusScope( - child: Column( - mainAxisSize: MainAxisSize.min, - children: [ - const Gap(32), - QuickSearchBar(controller: controller), - Flexible( - child: QuickQueryResult( - afterClick: afterClick, - controller: controller, - ), - ), - Material( - color: Colors.transparent, - child: Text(context.l10n!.quickSearchShowAllCommandTip), - ) - ], - ), - ), - ), - ); - } -} diff --git a/lib/src/features/quick_open/presentation/quick_search/widgets/category_query_list_tile.dart b/lib/src/features/quick_open/presentation/quick_search/widgets/category_query_list_tile.dart deleted file mode 100644 index e688e71e..00000000 --- a/lib/src/features/quick_open/presentation/quick_search/widgets/category_query_list_tile.dart +++ /dev/null @@ -1,105 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../../../../../constants/app_sizes.dart'; -import '../../../../../routes/router_config.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/server_image.dart'; -import '../../../../library/domain/category/category_model.dart'; -import '../../../../manga_book/domain/chapter/chapter_model.dart'; -import '../../../../manga_book/domain/manga/manga_model.dart'; - -class CategoryQueryListTile extends StatelessWidget { - const CategoryQueryListTile({ - super.key, - this.category, - this.manga, - this.chapter, - this.afterClick, - }) : assert(category == null ? manga != null && chapter != null : true), - assert(chapter != null ? manga != null : true); - final Category? category; - final Manga? manga; - final Chapter? chapter; - final VoidCallback? afterClick; - - @override - Widget build(BuildContext context) { - String title; - if ((manga?.title).isBlank) { - title = category?.name ?? ""; - } else if ((chapter?.name).isBlank) { - title = (manga?.title ?? ""); - } else { - title = chapter?.getDisplayName(context) ?? ""; - } - - return InkWell( - onTap: () { - if (chapter?.index != null) { - ReaderRoute( - mangaId: manga!.id!, - chapterIndex: chapter!.index!, - showReaderLayoutAnimation: true, - ).push(context); - } else if (manga?.id != null) { - MangaRoute(mangaId: manga!.id!, categoryId: category?.id) - .push(context); - } else { - LibraryRoute(initialCategoryOrder: category?.order).push(context); - } - afterClick?.call(); - }, - child: Row( - children: [ - Padding( - padding: const EdgeInsets.all(8.0), - child: ClipRRect( - borderRadius: KBorderRadius.r8.radius, - child: (manga?.thumbnailUrl).isBlank - ? Icon( - Icons.category_rounded, - color: context.theme.disabledColor, - ) - : ServerImage( - imageUrl: manga?.thumbnailUrl ?? "", - size: const Size.square(48), - ), - ), - ), - Expanded( - child: Column( - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - if ((manga?.title).isNotBlank) - Text( - (chapter?.name).isBlank - ? "${(category?.name ?? "")}/ " - : "${manga?.title ?? ""}/", - overflow: TextOverflow.ellipsis, - maxLines: 1, - style: Theme.of(context).textTheme.bodySmall?.copyWith( - letterSpacing: .1, - wordSpacing: .1, - color: context.theme.hintColor, - ), - ), - Text( - title, - overflow: TextOverflow.ellipsis, - maxLines: 1, - style: Theme.of(context).textTheme.titleMedium, - ), - ], - ), - ), - ], - ), - ); - } -} diff --git a/lib/src/features/quick_open/presentation/quick_search/widgets/quick_query_result.dart b/lib/src/features/quick_open/presentation/quick_search/widgets/quick_query_result.dart deleted file mode 100644 index 6fa94054..00000000 --- a/lib/src/features/quick_open/presentation/quick_search/widgets/quick_query_result.dart +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../controller/quick_search_controller.dart'; -import 'search_result_to_widget.dart'; - -class QuickQueryResult extends ConsumerWidget { - const QuickQueryResult({ - super.key, - required this.afterClick, - this.controller, - }); - final VoidCallback afterClick; - final TextEditingController? controller; - @override - Widget build(BuildContext context, WidgetRef ref) { - final results = ref.watch(processesQuickSearchProvider(context: context)); - if (results.isBlank) return const SizedBox.shrink(); - return Card( - clipBehavior: Clip.hardEdge, - child: SingleChildScrollView( - child: Column( - mainAxisSize: MainAxisSize.min, - children: results! - .map( - (e) => SearchResultToWidget( - result: e, - afterClick: afterClick, - controller: controller, - ), - ) - .toList(), - ), - ), - ); - } -} diff --git a/lib/src/features/quick_open/presentation/quick_search/widgets/quick_search_bar.dart b/lib/src/features/quick_open/presentation/quick_search/widgets/quick_search_bar.dart deleted file mode 100644 index 25180646..00000000 --- a/lib/src/features/quick_open/presentation/quick_search/widgets/quick_search_bar.dart +++ /dev/null @@ -1,51 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../constants/app_sizes.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../controller/quick_search_controller.dart'; - -class QuickSearchBar extends HookConsumerWidget { - const QuickSearchBar({ - super.key, - required this.controller, - }); - final TextEditingController controller; - @override - Widget build(BuildContext context, WidgetRef ref) { - final focus = useFocusNode(); - useEffect(() { - focus.requestFocus(); - return () => focus.unfocus(); - }, []); - useEffect(() { - updateOnChange() => - ref.read(quickSearchQueryProvider.notifier).update(controller.text); - controller.addListener(updateOnChange); - return () => controller.removeListener(updateOnChange); - }, [controller]); - return Card( - shape: RoundedRectangleBorder(borderRadius: KBorderRadius.r16.radius), - child: TextField( - controller: controller, - focusNode: focus, - autofocus: true, - onEditingComplete: () { - FocusScope.of(context).nextFocus(); - }, - decoration: InputDecoration( - isDense: true, - hintText: context.l10n!.search, - border: OutlineInputBorder(borderRadius: KBorderRadius.r16.radius), - ), - ), - ); - } -} diff --git a/lib/src/features/quick_open/presentation/quick_search/widgets/search_result_to_widget.dart b/lib/src/features/quick_open/presentation/quick_search/widgets/search_result_to_widget.dart deleted file mode 100644 index 17b1a067..00000000 --- a/lib/src/features/quick_open/presentation/quick_search/widgets/search_result_to_widget.dart +++ /dev/null @@ -1,65 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../domain/quick_search_result.dart'; -import 'category_query_list_tile.dart'; -import 'source_query_list_tile.dart'; - -class SearchResultToWidget extends StatelessWidget { - const SearchResultToWidget({ - super.key, - required this.result, - required this.afterClick, - this.controller, - }); - final QuickSearchResult result; - final VoidCallback afterClick; - final TextEditingController? controller; - @override - Widget build(BuildContext context) { - return result.when( - // helpText: , - helpText: (prefill, pattern, hintText) => ListTile( - leading: Text(prefill), - title: Text( - hintText, - style: TextStyle(color: context.theme.hintColor), - ), - onTap: () => pattern.isNotBlank ? controller?.text = pattern! : null, - ), - source: (source) => SourceQueryListTile( - source: source, - afterClick: afterClick, - ), - sourceSearch: (source, query) => SourceQueryListTile( - source: source, - query: query, - afterClick: afterClick, - ), - category: (category) => CategoryQueryListTile( - category: category, - afterClick: afterClick, - ), - categoryManga: (category, manga) => CategoryQueryListTile( - category: category, - manga: manga, - afterClick: afterClick, - ), - categoryMangaChapter: (category, manga, chapter) => CategoryQueryListTile( - category: category, - manga: manga, - chapter: chapter, - afterClick: afterClick, - ), - manga: (source, manga) => const SizedBox.shrink(), - chapter: (source, manga, chapter) => const SizedBox.shrink(), - globalSearch: () => const SizedBox.shrink(), - ); - } -} diff --git a/lib/src/features/quick_open/presentation/quick_search/widgets/source_query_list_tile.dart b/lib/src/features/quick_open/presentation/quick_search/widgets/source_query_list_tile.dart deleted file mode 100644 index d7835bd1..00000000 --- a/lib/src/features/quick_open/presentation/quick_search/widgets/source_query_list_tile.dart +++ /dev/null @@ -1,78 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../constants/app_sizes.dart'; -import '../../../../../constants/enum.dart'; - -import '../../../../../routes/router_config.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/server_image.dart'; -import '../../../../browse_center/domain/source/source_model.dart'; -import '../../../../browse_center/presentation/source/controller/source_controller.dart'; - -class SourceQueryListTile extends ConsumerWidget { - const SourceQueryListTile({ - super.key, - required this.source, - this.query, - this.afterClick, - }); - - final Source source; - final String? query; - final VoidCallback? afterClick; - @override - Widget build(BuildContext context, WidgetRef ref) { - return ListTile( - onTap: (() async { - if (source.id == null) return; - ref.read(sourceLastUsedProvider.notifier).update(source.id); - SourceMangaRoute( - sourceId: source.id!, - sourceType: query.isBlank ? SourceType.popular : SourceType.filter, - query: query, - ).push(context); - afterClick?.call(); - }), - leading: ClipRRect( - borderRadius: KBorderRadius.r8.radius, - child: ServerImage( - imageUrl: source.iconUrl ?? "", - size: const Size.square(48), - ), - ), - title: query.isNotBlank - ? RichText( - text: TextSpan( - children: [ - TextSpan( - text: "${source.displayName ?? source.name ?? ""}/ ", - style: Theme.of(context).textTheme.bodySmall?.copyWith( - letterSpacing: .1, - wordSpacing: .1, - color: context.theme.hintColor, - ), - ), - TextSpan( - text: query ?? "", - style: Theme.of(context).textTheme.titleMedium, - ), - ], - ), - ) - : Text(source.displayName ?? source.name ?? ""), - subtitle: (source.lang?.displayName).isNotBlank - ? Text( - source.lang?.displayName ?? "", - style: TextStyle(color: context.theme.hintColor), - ) - : null, - ); - } -} diff --git a/lib/src/features/quick_open/presentation/search_stack/search_stack_screen.dart b/lib/src/features/quick_open/presentation/search_stack/search_stack_screen.dart deleted file mode 100644 index 10043843..00000000 --- a/lib/src/features/quick_open/presentation/search_stack/search_stack_screen.dart +++ /dev/null @@ -1,100 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:io'; -import 'dart:ui'; - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter/services.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../settings/presentation/general/quick_search_toggle/quick_search_toggle_tile.dart'; -import '../quick_search/quick_search_screen.dart'; - -class ShowQuickOpenIntent extends Intent {} - -class HideQuickOpenIntent extends Intent {} - -class SearchStackScreen extends HookConsumerWidget { - const SearchStackScreen({super.key, this.child}); - final Widget? child; - @override - Widget build(context, ref) { - final visible = useState(false); - final isQuickSearchEnabled = ref.watch(quickSearchToggleProvider).ifNull(); - if (!isQuickSearchEnabled) return child!; - return QuickSearchShortcutWrapper( - visible: visible, - child: Stack( - children: [ - if (child != null) child!, - if (visible.value) - GestureDetector( - onTap: () => visible.value = (false), - child: BackdropFilter( - filter: ImageFilter.blur(sigmaX: 5, sigmaY: 5), - child: Container( - constraints: const BoxConstraints.expand(), - decoration: BoxDecoration( - color: context.theme.canvasColor.withOpacity(.1), - ), - child: QuickSearchScreen( - afterClick: () => visible.value = (false), - ), - ), - ), - ), - ], - ), - ); - } -} - -class QuickSearchShortcutWrapper extends StatelessWidget { - const QuickSearchShortcutWrapper({ - super.key, - required this.child, - required this.visible, - }); - final Widget child; - final ValueNotifier visible; - @override - Widget build(BuildContext context) { - return Shortcuts( - shortcuts: { - SingleActivator( - LogicalKeyboardKey.keyP, - control: kIsWeb || !Platform.isMacOS, - meta: kIsWeb ? false : Platform.isMacOS, - ): ShowQuickOpenIntent(), - const SingleActivator(LogicalKeyboardKey.escape): HideQuickOpenIntent(), - }, - child: Actions( - actions: { - ShowQuickOpenIntent: CallbackAction( - onInvoke: (ShowQuickOpenIntent intent) { - visible.value = (true); - return null; - }, - ), - HideQuickOpenIntent: CallbackAction( - onInvoke: (HideQuickOpenIntent intent) { - visible.value = (false); - return null; - }, - ), - }, - child: GestureDetector( - onLongPress: () => visible.value = (true), - child: child, - ), - ), - ); - } -} diff --git a/lib/src/features/settings/data/backup/backup_repository.dart b/lib/src/features/settings/data/backup/backup_repository.dart deleted file mode 100644 index b38ff63c..00000000 --- a/lib/src/features/settings/data/backup/backup_repository.dart +++ /dev/null @@ -1,60 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:dio/dio.dart'; - -import 'package:file_picker/file_picker.dart'; -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../constants/endpoints.dart'; -import '../../../../global_providers/global_providers.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/storage/dio/dio_client.dart'; -import '../../domain/backup_missing/backup_missing.dart'; - -part 'backup_repository.g.dart'; - -class BackupRepository { - const BackupRepository(this.dioClient); - - final DioClient dioClient; - - Future restoreBackup( - BuildContext context, PlatformFile? file) async { - if ((file?.name).isBlank || - (kIsWeb && (file?.bytes).isBlank || - (!kIsWeb && (file?.path).isBlank))) { - throw context.l10n!.errorFilePick; - } - if (!(file!.name.endsWith('.proto.gz'))) { - throw context.l10n!.errorFilePickUnknownExtension(".proto.gz"); - } - return (await dioClient.post( - BackupUrl.import, - data: FormData.fromMap({ - 'backup.proto.gz': kIsWeb - ? MultipartFile.fromBytes( - file.bytes!, - filename: "backup.proto.gz", - ) - : MultipartFile.fromFileSync( - file.path!, - filename: "backup.proto.gz", - ) - }), - decoder: (e) => - e is Map ? BackupMissing.fromJson(e) : null, - )) - .data; - } -} - -@riverpod -BackupRepository backupRepository(BackupRepositoryRef ref) => - BackupRepository(ref.watch(dioClientKeyProvider)); diff --git a/lib/src/features/settings/data/backup/backup_repository.g.dart b/lib/src/features/settings/data/backup/backup_repository.g.dart deleted file mode 100644 index a5372112..00000000 --- a/lib/src/features/settings/data/backup/backup_repository.g.dart +++ /dev/null @@ -1,25 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'backup_repository.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$backupRepositoryHash() => r'f23ad9ca70263d5a36808247d3868230cacaa3cd'; - -/// See also [backupRepository]. -@ProviderFor(backupRepository) -final backupRepositoryProvider = AutoDisposeProvider.internal( - backupRepository, - name: r'backupRepositoryProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$backupRepositoryHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef BackupRepositoryRef = AutoDisposeProviderRef; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/domain/backup_missing/backup_missing.dart b/lib/src/features/settings/domain/backup_missing/backup_missing.dart deleted file mode 100644 index c517098c..00000000 --- a/lib/src/features/settings/domain/backup_missing/backup_missing.dart +++ /dev/null @@ -1,38 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:freezed_annotation/freezed_annotation.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; - -part 'backup_missing.freezed.dart'; -part 'backup_missing.g.dart'; - -@freezed -class BackupMissing with _$BackupMissing { - BackupMissing._(); - factory BackupMissing({ - List? missingSources, - List? missingTrackers, - List? mangasMissingSources, - }) = _BackupMissing; - - BackupMissing get filter => BackupMissing( - missingSources: [...?missingSources] - ..removeWhere((element) => element.isBlank), - missingTrackers: [...?missingTrackers] - ..removeWhere((element) => element.isBlank), - mangasMissingSources: [...?mangasMissingSources] - ..removeWhere((element) => element.isBlank), - ); - bool get isEmpty => - missingSources.isBlank && - missingTrackers.isBlank && - mangasMissingSources.isBlank; - - factory BackupMissing.fromJson(Map json) => - _$BackupMissingFromJson(json); -} diff --git a/lib/src/features/settings/domain/backup_missing/backup_missing.freezed.dart b/lib/src/features/settings/domain/backup_missing/backup_missing.freezed.dart deleted file mode 100644 index f16553a5..00000000 --- a/lib/src/features/settings/domain/backup_missing/backup_missing.freezed.dart +++ /dev/null @@ -1,231 +0,0 @@ -// coverage:ignore-file -// GENERATED CODE - DO NOT MODIFY BY HAND -// ignore_for_file: type=lint -// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark - -part of 'backup_missing.dart'; - -// ************************************************************************** -// FreezedGenerator -// ************************************************************************** - -T _$identity(T value) => value; - -final _privateConstructorUsedError = UnsupportedError( - 'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods'); - -BackupMissing _$BackupMissingFromJson(Map json) { - return _BackupMissing.fromJson(json); -} - -/// @nodoc -mixin _$BackupMissing { - List? get missingSources => throw _privateConstructorUsedError; - List? get missingTrackers => throw _privateConstructorUsedError; - List? get mangasMissingSources => throw _privateConstructorUsedError; - - Map toJson() => throw _privateConstructorUsedError; - @JsonKey(ignore: true) - $BackupMissingCopyWith get copyWith => - throw _privateConstructorUsedError; -} - -/// @nodoc -abstract class $BackupMissingCopyWith<$Res> { - factory $BackupMissingCopyWith( - BackupMissing value, $Res Function(BackupMissing) then) = - _$BackupMissingCopyWithImpl<$Res, BackupMissing>; - @useResult - $Res call( - {List? missingSources, - List? missingTrackers, - List? mangasMissingSources}); -} - -/// @nodoc -class _$BackupMissingCopyWithImpl<$Res, $Val extends BackupMissing> - implements $BackupMissingCopyWith<$Res> { - _$BackupMissingCopyWithImpl(this._value, this._then); - - // ignore: unused_field - final $Val _value; - // ignore: unused_field - final $Res Function($Val) _then; - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? missingSources = freezed, - Object? missingTrackers = freezed, - Object? mangasMissingSources = freezed, - }) { - return _then(_value.copyWith( - missingSources: freezed == missingSources - ? _value.missingSources - : missingSources // ignore: cast_nullable_to_non_nullable - as List?, - missingTrackers: freezed == missingTrackers - ? _value.missingTrackers - : missingTrackers // ignore: cast_nullable_to_non_nullable - as List?, - mangasMissingSources: freezed == mangasMissingSources - ? _value.mangasMissingSources - : mangasMissingSources // ignore: cast_nullable_to_non_nullable - as List?, - ) as $Val); - } -} - -/// @nodoc -abstract class _$$BackupMissingImplCopyWith<$Res> - implements $BackupMissingCopyWith<$Res> { - factory _$$BackupMissingImplCopyWith( - _$BackupMissingImpl value, $Res Function(_$BackupMissingImpl) then) = - __$$BackupMissingImplCopyWithImpl<$Res>; - @override - @useResult - $Res call( - {List? missingSources, - List? missingTrackers, - List? mangasMissingSources}); -} - -/// @nodoc -class __$$BackupMissingImplCopyWithImpl<$Res> - extends _$BackupMissingCopyWithImpl<$Res, _$BackupMissingImpl> - implements _$$BackupMissingImplCopyWith<$Res> { - __$$BackupMissingImplCopyWithImpl( - _$BackupMissingImpl _value, $Res Function(_$BackupMissingImpl) _then) - : super(_value, _then); - - @pragma('vm:prefer-inline') - @override - $Res call({ - Object? missingSources = freezed, - Object? missingTrackers = freezed, - Object? mangasMissingSources = freezed, - }) { - return _then(_$BackupMissingImpl( - missingSources: freezed == missingSources - ? _value._missingSources - : missingSources // ignore: cast_nullable_to_non_nullable - as List?, - missingTrackers: freezed == missingTrackers - ? _value._missingTrackers - : missingTrackers // ignore: cast_nullable_to_non_nullable - as List?, - mangasMissingSources: freezed == mangasMissingSources - ? _value._mangasMissingSources - : mangasMissingSources // ignore: cast_nullable_to_non_nullable - as List?, - )); - } -} - -/// @nodoc -@JsonSerializable() -class _$BackupMissingImpl extends _BackupMissing { - _$BackupMissingImpl( - {final List? missingSources, - final List? missingTrackers, - final List? mangasMissingSources}) - : _missingSources = missingSources, - _missingTrackers = missingTrackers, - _mangasMissingSources = mangasMissingSources, - super._(); - - factory _$BackupMissingImpl.fromJson(Map json) => - _$$BackupMissingImplFromJson(json); - - final List? _missingSources; - @override - List? get missingSources { - final value = _missingSources; - if (value == null) return null; - if (_missingSources is EqualUnmodifiableListView) return _missingSources; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(value); - } - - final List? _missingTrackers; - @override - List? get missingTrackers { - final value = _missingTrackers; - if (value == null) return null; - if (_missingTrackers is EqualUnmodifiableListView) return _missingTrackers; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(value); - } - - final List? _mangasMissingSources; - @override - List? get mangasMissingSources { - final value = _mangasMissingSources; - if (value == null) return null; - if (_mangasMissingSources is EqualUnmodifiableListView) - return _mangasMissingSources; - // ignore: implicit_dynamic_type - return EqualUnmodifiableListView(value); - } - - @override - String toString() { - return 'BackupMissing(missingSources: $missingSources, missingTrackers: $missingTrackers, mangasMissingSources: $mangasMissingSources)'; - } - - @override - bool operator ==(Object other) { - return identical(this, other) || - (other.runtimeType == runtimeType && - other is _$BackupMissingImpl && - const DeepCollectionEquality() - .equals(other._missingSources, _missingSources) && - const DeepCollectionEquality() - .equals(other._missingTrackers, _missingTrackers) && - const DeepCollectionEquality() - .equals(other._mangasMissingSources, _mangasMissingSources)); - } - - @JsonKey(ignore: true) - @override - int get hashCode => Object.hash( - runtimeType, - const DeepCollectionEquality().hash(_missingSources), - const DeepCollectionEquality().hash(_missingTrackers), - const DeepCollectionEquality().hash(_mangasMissingSources)); - - @JsonKey(ignore: true) - @override - @pragma('vm:prefer-inline') - _$$BackupMissingImplCopyWith<_$BackupMissingImpl> get copyWith => - __$$BackupMissingImplCopyWithImpl<_$BackupMissingImpl>(this, _$identity); - - @override - Map toJson() { - return _$$BackupMissingImplToJson( - this, - ); - } -} - -abstract class _BackupMissing extends BackupMissing { - factory _BackupMissing( - {final List? missingSources, - final List? missingTrackers, - final List? mangasMissingSources}) = _$BackupMissingImpl; - _BackupMissing._() : super._(); - - factory _BackupMissing.fromJson(Map json) = - _$BackupMissingImpl.fromJson; - - @override - List? get missingSources; - @override - List? get missingTrackers; - @override - List? get mangasMissingSources; - @override - @JsonKey(ignore: true) - _$$BackupMissingImplCopyWith<_$BackupMissingImpl> get copyWith => - throw _privateConstructorUsedError; -} diff --git a/lib/src/features/settings/domain/backup_missing/backup_missing.g.dart b/lib/src/features/settings/domain/backup_missing/backup_missing.g.dart deleted file mode 100644 index f42017a6..00000000 --- a/lib/src/features/settings/domain/backup_missing/backup_missing.g.dart +++ /dev/null @@ -1,27 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'backup_missing.dart'; - -// ************************************************************************** -// JsonSerializableGenerator -// ************************************************************************** - -_$BackupMissingImpl _$$BackupMissingImplFromJson(Map json) => - _$BackupMissingImpl( - missingSources: (json['missingSources'] as List?) - ?.map((e) => e as String) - .toList(), - missingTrackers: (json['missingTrackers'] as List?) - ?.map((e) => e as String) - .toList(), - mangasMissingSources: (json['mangasMissingSources'] as List?) - ?.map((e) => e as String) - .toList(), - ); - -Map _$$BackupMissingImplToJson(_$BackupMissingImpl instance) => - { - 'missingSources': instance.missingSources, - 'missingTrackers': instance.missingTrackers, - 'mangasMissingSources': instance.mangasMissingSources, - }; diff --git a/lib/src/features/settings/presentation/appearance/appearance_screen.dart b/lib/src/features/settings/presentation/appearance/appearance_screen.dart deleted file mode 100644 index 30905e8c..00000000 --- a/lib/src/features/settings/presentation/appearance/appearance_screen.dart +++ /dev/null @@ -1,34 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../widgets/app_theme_mode_tile/app_theme_mode_tile.dart'; -import 'widgets/app_theme_selector/app_theme_selector.dart'; -import 'widgets/grid_cover_min_width.dart'; -import 'widgets/is_true_black/is_true_black_tile.dart'; - -class AppearanceScreen extends ConsumerWidget { - const AppearanceScreen({super.key}); - - @override - Widget build(context, ref) { - final themeMode = ref.watch(appThemeModeProvider); - return Scaffold( - appBar: AppBar(title: Text(context.l10n!.appearance)), - body: ListView( - children: [ - const AppThemeModeTile(), - if (themeMode != ThemeMode.light) const IsTrueBlackTile(), - const AppThemeSelector(), - const GridCoverMinWidth(), - ], - ), - ); - } -} diff --git a/lib/src/features/settings/presentation/appearance/widgets/app_theme_selector/app_theme_selector.dart b/lib/src/features/settings/presentation/appearance/widgets/app_theme_selector/app_theme_selector.dart deleted file mode 100644 index 8a1152c9..00000000 --- a/lib/src/features/settings/presentation/appearance/widgets/app_theme_selector/app_theme_selector.dart +++ /dev/null @@ -1,69 +0,0 @@ -import 'package:flex_color_scheme/flex_color_scheme.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../../constants/db_keys.dart'; -import '../../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../../utils/mixin/shared_preferences_client_mixin.dart'; - -part 'app_theme_selector.g.dart'; - -@riverpod -class AppScheme extends _$AppScheme - with SharedPreferenceEnumClientMixin { - @override - FlexScheme? build() => initialize( - DBKeys.flexScheme, - enumList: FlexColor.schemes.keys.toList(), - ); -} - -class AppThemeSelector extends HookConsumerWidget { - const AppThemeSelector({super.key}); - - @override - Widget build(context, ref) { - final flexSchemaList = useMemoized(() => FlexColor.schemes.keys.toList()); - final selectedAppTheme = ref.watch(appSchemeProvider); - - return Padding( - padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 16), - child: SizedBox( - height: 148, - child: ListView.builder( - scrollDirection: Axis.horizontal, - itemCount: flexSchemaList.length, - itemBuilder: (context, index) { - final flexSchemeColor = FlexColor.schemes[flexSchemaList[index]]; - if (flexSchemeColor == null) return const SizedBox.shrink(); - return Padding( - padding: const EdgeInsets.symmetric(horizontal: 4), - child: Tooltip( - message: flexSchemeColor.name, - child: FlexThemeModeOptionButton( - height: 64, - width: 32, - optionButtonBorderRadius: 16, - flexSchemeColor: flexSchemeColor.dark, - borderRadius: 8, - hoverColor: context.isDarkMode - ? Colors.black.withAlpha(0x2F) - : Colors.white.withAlpha(0x3F), - focusColor: context.isDarkMode - ? Colors.black.withAlpha(0x4F) - : Colors.white.withAlpha(0x5F), - selected: selectedAppTheme == flexSchemaList[index], - onSelect: () => ref - .read(appSchemeProvider.notifier) - .update(flexSchemaList[index]), - ), - ), - ); - }, - ), - ), - ); - } -} diff --git a/lib/src/features/settings/presentation/appearance/widgets/app_theme_selector/app_theme_selector.g.dart b/lib/src/features/settings/presentation/appearance/widgets/app_theme_selector/app_theme_selector.g.dart deleted file mode 100644 index e1a6f44c..00000000 --- a/lib/src/features/settings/presentation/appearance/widgets/app_theme_selector/app_theme_selector.g.dart +++ /dev/null @@ -1,25 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'app_theme_selector.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$appSchemeHash() => r'90f59c7c113c6e65db90508719f04fa5c9d23ad6'; - -/// See also [AppScheme]. -@ProviderFor(AppScheme) -final appSchemeProvider = - AutoDisposeNotifierProvider.internal( - AppScheme.new, - name: r'appSchemeProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$appSchemeHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$AppScheme = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/appearance/widgets/grid_cover_min_width.dart b/lib/src/features/settings/presentation/appearance/widgets/grid_cover_min_width.dart deleted file mode 100644 index fde5caaf..00000000 --- a/lib/src/features/settings/presentation/appearance/widgets/grid_cover_min_width.dart +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../constants/db_keys.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../utils/mixin/shared_preferences_client_mixin.dart'; -import '../../../widgets/slider_setting_tile/slider_setting_tile.dart'; - -part 'grid_cover_min_width.g.dart'; - -@riverpod -class GridMinWidth extends _$GridMinWidth - with SharedPreferenceClientMixin { - @override - double? build() => initialize(DBKeys.gridMangaCoverWidth); -} - -class GridCoverMinWidth extends ConsumerWidget { - const GridCoverMinWidth({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - return SliderSettingTile( - defaultValue: DBKeys.gridMangaCoverWidth.initial, - getSliderLabel: (value) => value.round().toString(), - title: context.l10n!.mangaGridSize, - icon: Icons.grid_view_rounded, - value: - ref.watch(gridMinWidthProvider) ?? DBKeys.gridMangaCoverWidth.initial, - onChanged: (val) => - ref.read(gridMinWidthProvider.notifier).update(val.roundToDouble()), - min: 100, - max: 999, - ); - } -} diff --git a/lib/src/features/settings/presentation/appearance/widgets/grid_cover_min_width.g.dart b/lib/src/features/settings/presentation/appearance/widgets/grid_cover_min_width.g.dart deleted file mode 100644 index 5d5780a2..00000000 --- a/lib/src/features/settings/presentation/appearance/widgets/grid_cover_min_width.g.dart +++ /dev/null @@ -1,25 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'grid_cover_min_width.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$gridMinWidthHash() => r'ad72f8c6aa95e47acf6470e2766525ce64880193'; - -/// See also [GridMinWidth]. -@ProviderFor(GridMinWidth) -final gridMinWidthProvider = - AutoDisposeNotifierProvider.internal( - GridMinWidth.new, - name: r'gridMinWidthProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$gridMinWidthHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$GridMinWidth = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/appearance/widgets/is_true_black/is_true_black_tile.dart b/lib/src/features/settings/presentation/appearance/widgets/is_true_black/is_true_black_tile.dart deleted file mode 100644 index 19b63ded..00000000 --- a/lib/src/features/settings/presentation/appearance/widgets/is_true_black/is_true_black_tile.dart +++ /dev/null @@ -1,35 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../../constants/db_keys.dart'; -import '../../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../../utils/mixin/shared_preferences_client_mixin.dart'; - -part 'is_true_black_tile.g.dart'; - -@riverpod -class IsTrueBlack extends _$IsTrueBlack with SharedPreferenceClientMixin { - @override - bool? build() => initialize(DBKeys.isTrueBlack); -} - -class IsTrueBlackTile extends HookConsumerWidget { - const IsTrueBlackTile({super.key}); - @override - Widget build(BuildContext context, WidgetRef ref) { - return SwitchListTile( - controlAffinity: ListTileControlAffinity.trailing, - secondary: const Icon(Icons.circle, color: Colors.black), - title: Text(context.l10n!.isTrueBlack), - onChanged: ref.read(isTrueBlackProvider.notifier).update, - value: ref.watch(isTrueBlackProvider).ifNull(), - ); - } -} diff --git a/lib/src/features/settings/presentation/appearance/widgets/is_true_black/is_true_black_tile.g.dart b/lib/src/features/settings/presentation/appearance/widgets/is_true_black/is_true_black_tile.g.dart deleted file mode 100644 index bacbf725..00000000 --- a/lib/src/features/settings/presentation/appearance/widgets/is_true_black/is_true_black_tile.g.dart +++ /dev/null @@ -1,25 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'is_true_black_tile.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$isTrueBlackHash() => r'ffe195c45cef7942001bfe08409e4ad16deacd14'; - -/// See also [IsTrueBlack]. -@ProviderFor(IsTrueBlack) -final isTrueBlackProvider = - AutoDisposeNotifierProvider.internal( - IsTrueBlack.new, - name: r'isTrueBlackProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$isTrueBlackHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$IsTrueBlack = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/backup/backup_screen.dart b/lib/src/features/settings/presentation/backup/backup_screen.dart deleted file mode 100644 index 31bd17a5..00000000 --- a/lib/src/features/settings/presentation/backup/backup_screen.dart +++ /dev/null @@ -1,95 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:file_picker/file_picker.dart'; -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../constants/endpoints.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/launch_url_in_web.dart'; -import '../../../../utils/misc/toast/toast.dart'; -import '../../data/backup/backup_repository.dart'; -import '../../widgets/server_port_tile/server_port_tile.dart'; -import '../../widgets/server_url_tile/server_url_tile.dart'; -import 'widgets/backup_missing_dialog.dart'; - -class BackupScreen extends ConsumerWidget { - const BackupScreen({super.key}); - - void backupFilePicker(WidgetRef ref, BuildContext context) async { - Toast getToast(context) => ref.read(toastProvider(context)); - final file = await FilePicker.platform.pickFiles( - type: FileType.custom, - allowedExtensions: ['gz'], - ); - if ((file?.files).isNotBlank) { - if (context.mounted) { - getToast(context).show(context.l10n!.restoring); - } - } - final result = await AsyncValue.guard(() => ref - .read(backupRepositoryProvider) - .restoreBackup(context, file?.files.single)); - result.whenOrNull( - error: (error, stackTrace) { - if (context.mounted) { - result.showToastOnError(getToast(context)); - } - }, - data: (data) { - final backupMissing = data?.filter; - if (context.mounted) { - getToast(context).instantShow(context.l10n!.restored); - } - if (backupMissing != null && !backupMissing.isEmpty) { - showDialog( - context: context, - builder: (context) => BackupMissingDialog( - backupMissing: backupMissing, - ), - ); - } - }, - ); - } - - @override - Widget build(BuildContext context, WidgetRef ref) { - return Scaffold( - appBar: AppBar(title: Text(context.l10n!.backup)), - body: ListView( - children: [ - ListTile( - title: Text(context.l10n!.createBackupTitle), - subtitle: Text(context.l10n!.createBackupDescription), - leading: const Icon(Icons.backup_rounded), - onTap: () async { - final toast = ref.read(toastProvider(context)); - launchUrlInWeb( - context, - Endpoints.baseApi( - baseUrl: ref.read(serverUrlProvider), - port: ref.read(serverPortProvider), - addPort: ref.watch(serverPortToggleProvider).ifNull(), - ) + - BackupUrl.export, - toast, - ); - }, - ), - ListTile( - title: Text(context.l10n!.restoreBackupTitle), - subtitle: Text(context.l10n!.restoreBackupDescription), - leading: const Icon(Icons.restore_rounded), - onTap: () => backupFilePicker(ref, context), - ), - ], - ), - ); - } -} diff --git a/lib/src/features/settings/presentation/backup/widgets/backup_missing_dialog.dart b/lib/src/features/settings/presentation/backup/widgets/backup_missing_dialog.dart deleted file mode 100644 index 69461272..00000000 --- a/lib/src/features/settings/presentation/backup/widgets/backup_missing_dialog.dart +++ /dev/null @@ -1,68 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/pop_button.dart'; -import '../../../domain/backup_missing/backup_missing.dart'; - -class BackupMissingDialog extends StatelessWidget { - const BackupMissingDialog({ - super.key, - required this.backupMissing, - }); - final BackupMissing backupMissing; - @override - Widget build(BuildContext context) { - return AlertDialog( - content: SingleChildScrollView( - child: Column( - mainAxisSize: MainAxisSize.min, - children: [ - if (backupMissing.missingSources.isNotBlank) ...[ - Text( - context.l10n!.missingExtension, - style: context.textTheme.titleMedium, - ), - ...?backupMissing.missingSources?.map( - (e) => ListTile( - leading: const Icon(Icons.extension_rounded), - title: Text(e), - ), - ), - ], - if (backupMissing.missingTrackers.isNotBlank) ...[ - Text( - context.l10n!.missingTrackers, - style: context.textTheme.titleMedium, - ), - ...?backupMissing.missingTrackers?.map( - (e) => ListTile( - leading: const Icon(Icons.sync_rounded), - title: Text(e), - ), - ), - ], - if (backupMissing.mangasMissingSources.isNotBlank) ...[ - Text( - context.l10n!.mangaMissingSources, - style: context.textTheme.titleMedium, - ), - ...?backupMissing.mangasMissingSources?.map( - (e) => ListTile( - leading: const Icon(Icons.explore), - title: Text(e), - ), - ), - ] - ], - ), - ), - actions: [PopButton(popText: context.l10n!.close)], - ); - } -} diff --git a/lib/src/features/settings/presentation/browse/browse_settings_screen.dart b/lib/src/features/settings/presentation/browse/browse_settings_screen.dart deleted file mode 100644 index b5550d92..00000000 --- a/lib/src/features/settings/presentation/browse/browse_settings_screen.dart +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; -import 'widgets/show_nsfw_switch/show_nsfw_switch.dart'; - -class BrowseSettingsScreen extends StatelessWidget { - const BrowseSettingsScreen({super.key}); - - @override - Widget build(BuildContext context) { - return Scaffold( - appBar: AppBar(title: Text(context.l10n!.browse)), - body: ListView( - children: [ - const ShowNSFWTile(), - ListTile( - subtitle: Text(context.l10n!.nsfwInfo), - leading: const Icon(Icons.info_rounded), - dense: true, - ), - const Divider(), - ], - ), - ); - } -} diff --git a/lib/src/features/settings/presentation/browse/widgets/show_nsfw_switch/show_nsfw_switch.dart b/lib/src/features/settings/presentation/browse/widgets/show_nsfw_switch/show_nsfw_switch.dart deleted file mode 100644 index 24f38b21..00000000 --- a/lib/src/features/settings/presentation/browse/widgets/show_nsfw_switch/show_nsfw_switch.dart +++ /dev/null @@ -1,37 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../../constants/db_keys.dart'; -import '../../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../../utils/mixin/shared_preferences_client_mixin.dart'; - -part 'show_nsfw_switch.g.dart'; - -@riverpod -class ShowNSFW extends _$ShowNSFW with SharedPreferenceClientMixin { - @override - bool? build() => initialize(DBKeys.showNSFW); -} - -class ShowNSFWTile extends ConsumerWidget { - const ShowNSFWTile({super.key}); - @override - Widget build(BuildContext context, WidgetRef ref) { - return SwitchListTile( - controlAffinity: ListTileControlAffinity.trailing, - secondary: const Icon(Icons.eighteen_up_rating_rounded), - title: Text( - context.l10n!.nsfw, - ), - onChanged: ref.read(showNSFWProvider.notifier).update, - value: ref.watch(showNSFWProvider).ifNull(), - ); - } -} diff --git a/lib/src/features/settings/presentation/browse/widgets/show_nsfw_switch/show_nsfw_switch.g.dart b/lib/src/features/settings/presentation/browse/widgets/show_nsfw_switch/show_nsfw_switch.g.dart deleted file mode 100644 index c74b3134..00000000 --- a/lib/src/features/settings/presentation/browse/widgets/show_nsfw_switch/show_nsfw_switch.g.dart +++ /dev/null @@ -1,24 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'show_nsfw_switch.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$showNSFWHash() => r'666d246997c11dc67d88f95a2264aa728fc307f4'; - -/// See also [ShowNSFW]. -@ProviderFor(ShowNSFW) -final showNSFWProvider = AutoDisposeNotifierProvider.internal( - ShowNSFW.new, - name: r'showNSFWProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$showNSFWHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$ShowNSFW = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/general/general_screen.dart b/lib/src/features/settings/presentation/general/general_screen.dart deleted file mode 100644 index 4f2d46bd..00000000 --- a/lib/src/features/settings/presentation/general/general_screen.dart +++ /dev/null @@ -1,65 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_cache_manager/flutter_cache_manager.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../constants/language_list.dart'; -import '../../../../global_providers/global_providers.dart'; -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/misc/toast/toast.dart'; -import '../../../../widgets/radio_list_popup.dart'; -import 'quick_search_toggle/quick_search_toggle_tile.dart'; - -class GeneralScreen extends ConsumerWidget { - const GeneralScreen({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - return Scaffold( - appBar: AppBar(title: Text(context.l10n!.general)), - body: ListView( - children: [ - ListTile( - leading: const Icon(Icons.translate_rounded), - title: Text(context.l10n!.appLanguage), - subtitle: Text(getLanguageNameFormLocale(context.currentLocale)), - onTap: () => showDialog( - context: context, - builder: (context) => RadioListPopup( - title: context.l10n!.appLanguage, - optionList: AppLocalizations.supportedLocales, - value: context.currentLocale, - onChange: (locale) { - ref.read(l10nProvider.notifier).update(locale); - Navigator.pop(context); - }, - getOptionTitle: getLanguageNameFormLocale, - getOptionSubtitle: getLanguageNameInEnFormLocale, - ), - ), - ), - ListTile( - leading: const Icon(Icons.cleaning_services_rounded), - title: Text(context.l10n!.clearCache), - onTap: () async { - await ref.watch(hiveCacheStoreProvider).clean(); - DefaultCacheManager().emptyCache(); - if (context.mounted) { - ref - .read(toastProvider(context)) - .show(context.l10n!.cacheCleared); - } - }, - ), - const QuickSearchToggleTile(), - ], - ), - ); - } -} diff --git a/lib/src/features/settings/presentation/general/quick_search_toggle/quick_search_toggle_tile.dart b/lib/src/features/settings/presentation/general/quick_search_toggle/quick_search_toggle_tile.dart deleted file mode 100644 index e1c76583..00000000 --- a/lib/src/features/settings/presentation/general/quick_search_toggle/quick_search_toggle_tile.dart +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../constants/db_keys.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../utils/mixin/shared_preferences_client_mixin.dart'; - -part 'quick_search_toggle_tile.g.dart'; - -@riverpod -class QuickSearchToggle extends _$QuickSearchToggle - with SharedPreferenceClientMixin { - @override - bool? build() => initialize(DBKeys.quickSearchToggle); -} - -class QuickSearchToggleTile extends HookConsumerWidget { - const QuickSearchToggleTile({super.key}); - @override - Widget build(BuildContext context, WidgetRef ref) { - return SwitchListTile( - controlAffinity: ListTileControlAffinity.trailing, - secondary: const Icon(Icons.search_rounded), - title: Text(context.l10n!.quickSearch), - onChanged: ref.read(quickSearchToggleProvider.notifier).update, - value: ref.watch(quickSearchToggleProvider).ifNull(), - ); - } -} diff --git a/lib/src/features/settings/presentation/general/quick_search_toggle/quick_search_toggle_tile.g.dart b/lib/src/features/settings/presentation/general/quick_search_toggle/quick_search_toggle_tile.g.dart deleted file mode 100644 index cb067edb..00000000 --- a/lib/src/features/settings/presentation/general/quick_search_toggle/quick_search_toggle_tile.g.dart +++ /dev/null @@ -1,26 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'quick_search_toggle_tile.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$quickSearchToggleHash() => r'1805371cc00c16e3156bc431adf9e5e1cb604f10'; - -/// See also [QuickSearchToggle]. -@ProviderFor(QuickSearchToggle) -final quickSearchToggleProvider = - AutoDisposeNotifierProvider.internal( - QuickSearchToggle.new, - name: r'quickSearchToggleProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$quickSearchToggleHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$QuickSearchToggle = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/general/quick_search_toggle/reader_invert_tap_tile.g.dart b/lib/src/features/settings/presentation/general/quick_search_toggle/reader_invert_tap_tile.g.dart deleted file mode 100644 index ba1770a3..00000000 --- a/lib/src/features/settings/presentation/general/quick_search_toggle/reader_invert_tap_tile.g.dart +++ /dev/null @@ -1,25 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'reader_invert_tap_tile.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$invertTapHash() => r'c4bde6eb87d0f7ede8eff109d63056af85a2fdc7'; - -/// See also [InvertTap]. -@ProviderFor(InvertTap) -final invertTapProvider = - AutoDisposeNotifierProvider.internal( - InvertTap.new, - name: r'invertTapProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$invertTapHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$InvertTap = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/library/library_settings_screen.dart b/lib/src/features/settings/presentation/library/library_settings_screen.dart deleted file mode 100644 index 047b32c0..00000000 --- a/lib/src/features/settings/presentation/library/library_settings_screen.dart +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../../../../routes/router_config.dart'; -import '../../../../utils/extensions/custom_extensions.dart'; - -class LibrarySettingsScreen extends StatelessWidget { - const LibrarySettingsScreen({super.key}); - - @override - Widget build(BuildContext context) { - return Scaffold( - appBar: AppBar( - title: Text(context.l10n!.library), - ), - body: ListView( - children: [ - ListTile( - title: Text(context.l10n!.categories), - leading: const Icon(Icons.label_rounded), - onTap: () => const EditCategoriesRoute().push(context), - ), - ], - ), - ); - } -} diff --git a/lib/src/features/settings/presentation/more/more_screen.dart b/lib/src/features/settings/presentation/more/more_screen.dart deleted file mode 100644 index aeb4f91d..00000000 --- a/lib/src/features/settings/presentation/more/more_screen.dart +++ /dev/null @@ -1,71 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../constants/gen/assets.gen.dart'; -import '../../../../constants/urls.dart'; -import '../../../../routes/router_config.dart'; -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/launch_url_in_web.dart'; -import '../../../../utils/misc/toast/toast.dart'; -import '../../widgets/app_theme_mode_tile/app_theme_mode_tile.dart'; -import '../../widgets/server_url_tile/server_url_tile.dart'; - -class MoreScreen extends ConsumerWidget { - const MoreScreen({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - return Scaffold( - appBar: AppBar( - title: Text(context.l10n!.more), - ), - body: ListView( - children: [ - ImageIcon( - AssetImage(Assets.icons.darkIcon.path), - size: context.height * .2, - ), - const Divider(), - const ServerUrlTile(), - ListTile( - title: Text(context.l10n!.categories), - leading: const Icon(Icons.label_rounded), - onTap: () => const EditCategoriesRoute().push(context), - ), - const AppThemeModeTile(), - ListTile( - title: Text(context.l10n!.backup), - leading: const Icon(Icons.settings_backup_restore_rounded), - onTap: () => const BackupRoute().push(context), - ), - const Divider(), - ListTile( - title: Text(context.l10n!.settings), - leading: const Icon(Icons.settings_rounded), - onTap: () => const SettingsRoute().push(context), - ), - ListTile( - title: Text(context.l10n!.about), - leading: const Icon(Icons.info_rounded), - onTap: () => const AboutRoute().push(context), - ), - ListTile( - title: Text(context.l10n!.help), - leading: const Icon(Icons.help_rounded), - onTap: () => launchUrlInWeb( - context, - AppUrls.tachideskHelp.url, - ref.read(toastProvider(context)), - ), - ), - ], - ), - ); - } -} diff --git a/lib/src/features/settings/presentation/reader/reader_settings_screen.dart b/lib/src/features/settings/presentation/reader/reader_settings_screen.dart deleted file mode 100644 index 374386d4..00000000 --- a/lib/src/features/settings/presentation/reader/reader_settings_screen.dart +++ /dev/null @@ -1,57 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:io'; - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:gap/gap.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; -import 'widgets/reader_initial_overlay_tile/reader_initial_overlay_tile.dart'; -import 'widgets/reader_invert_tap_tile/reader_invert_tap_tile.dart'; -import 'widgets/reader_magnifier_size_slider/reader_magnifier_size_slider.dart'; -import 'widgets/reader_mode_tile/reader_mode_tile.dart'; -import 'widgets/reader_navigation_layout_tile/reader_navigation_layout_tile.dart'; -import 'widgets/reader_padding_slider/reader_padding_slider.dart'; -import 'widgets/reader_pinch_to_zoom/reader_pinch_to_zoom.dart'; -import 'widgets/reader_scroll_animation_tile/reader_scroll_animation_tile.dart'; -import 'widgets/reader_swipe_toggle_tile/reader_swipe_chapter_toggle_tile.dart'; -import 'widgets/reader_volume_tap_invert_tile/reader_volume_tap_invert_tile.dart'; -import 'widgets/reader_volume_tap_tile/reader_volume_tap_tile.dart'; - -class ReaderSettingsScreen extends ConsumerWidget { - const ReaderSettingsScreen({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - final isVolumeTapEnabled = ref.watch(volumeTapProvider).ifNull(); - return Scaffold( - appBar: AppBar(title: Text(context.l10n!.reader)), - body: ListView( - children: [ - const ReaderModeTile(), - const ReaderNavigationLayoutTile(), - const ReaderInvertTapTile(), - const ReaderInitialOverlayTile(), - const SwipeChapterToggleTile(), - const ReaderScrollAnimationTile(), - const ReaderPaddingSlider(), - const ReaderMagnifierSizeSlider(), - if (!kIsWeb) ...[ - if (Platform.isAndroid || Platform.isIOS) const ReaderPinchToZoom(), - if (Platform.isAndroid) ...[ - const ReaderVolumeTapTile(), - if (isVolumeTapEnabled) const ReaderVolumeTapInvertTile(), - ], - ], - const Gap(128), - ], - ), - ); - } -} diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_initial_overlay_tile/reader_initial_overlay_tile.dart b/lib/src/features/settings/presentation/reader/widgets/reader_initial_overlay_tile/reader_initial_overlay_tile.dart deleted file mode 100644 index 0875d9c9..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_initial_overlay_tile/reader_initial_overlay_tile.dart +++ /dev/null @@ -1,37 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../../constants/db_keys.dart'; -import '../../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../../utils/mixin/shared_preferences_client_mixin.dart'; - -part 'reader_initial_overlay_tile.g.dart'; - -@riverpod -class ReaderInitialOverlay extends _$ReaderInitialOverlay - with SharedPreferenceClientMixin { - @override - bool? build() => initialize(DBKeys.readerOverlay); -} - -class ReaderInitialOverlayTile extends HookConsumerWidget { - const ReaderInitialOverlayTile({super.key}); - @override - Widget build(BuildContext context, WidgetRef ref) { - return SwitchListTile( - controlAffinity: ListTileControlAffinity.trailing, - secondary: const Icon(Icons.layers_outlined), - title: Text(context.l10n!.readerOverlay), - subtitle: Text(context.l10n!.readerOverlaySubtitle), - onChanged: ref.read(readerInitialOverlayProvider.notifier).update, - value: ref.watch(readerInitialOverlayProvider).ifNull(), - ); - } -} diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_initial_overlay_tile/reader_initial_overlay_tile.g.dart b/lib/src/features/settings/presentation/reader/widgets/reader_initial_overlay_tile/reader_initial_overlay_tile.g.dart deleted file mode 100644 index 639bd930..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_initial_overlay_tile/reader_initial_overlay_tile.g.dart +++ /dev/null @@ -1,27 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'reader_initial_overlay_tile.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$readerInitialOverlayHash() => - r'fd033c1b69ab9437600a762c7bd8c759198fe4d7'; - -/// See also [ReaderInitialOverlay]. -@ProviderFor(ReaderInitialOverlay) -final readerInitialOverlayProvider = - AutoDisposeNotifierProvider.internal( - ReaderInitialOverlay.new, - name: r'readerInitialOverlayProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$readerInitialOverlayHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$ReaderInitialOverlay = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_invert_tap_tile/reader_invert_tap_tile.dart b/lib/src/features/settings/presentation/reader/widgets/reader_invert_tap_tile/reader_invert_tap_tile.dart deleted file mode 100644 index fd09f8ff..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_invert_tap_tile/reader_invert_tap_tile.dart +++ /dev/null @@ -1,35 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../../constants/db_keys.dart'; -import '../../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../../utils/mixin/shared_preferences_client_mixin.dart'; - -part 'reader_invert_tap_tile.g.dart'; - -@riverpod -class InvertTap extends _$InvertTap with SharedPreferenceClientMixin { - @override - bool? build() => initialize(DBKeys.invertTap); -} - -class ReaderInvertTapTile extends HookConsumerWidget { - const ReaderInvertTapTile({super.key}); - @override - Widget build(BuildContext context, WidgetRef ref) { - return SwitchListTile( - controlAffinity: ListTileControlAffinity.trailing, - secondary: const Icon(Icons.switch_left_rounded), - title: Text(context.l10n!.readerNavigationLayoutInvert), - onChanged: ref.read(invertTapProvider.notifier).update, - value: ref.watch(invertTapProvider).ifNull(), - ); - } -} diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_invert_tap_tile/reader_invert_tap_tile.g.dart b/lib/src/features/settings/presentation/reader/widgets/reader_invert_tap_tile/reader_invert_tap_tile.g.dart deleted file mode 100644 index ba1770a3..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_invert_tap_tile/reader_invert_tap_tile.g.dart +++ /dev/null @@ -1,25 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'reader_invert_tap_tile.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$invertTapHash() => r'c4bde6eb87d0f7ede8eff109d63056af85a2fdc7'; - -/// See also [InvertTap]. -@ProviderFor(InvertTap) -final invertTapProvider = - AutoDisposeNotifierProvider.internal( - InvertTap.new, - name: r'invertTapProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$invertTapHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$InvertTap = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_magnifier_size_slider/reader_magnifier_size_slider.dart b/lib/src/features/settings/presentation/reader/widgets/reader_magnifier_size_slider/reader_magnifier_size_slider.dart deleted file mode 100644 index ee81bacb..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_magnifier_size_slider/reader_magnifier_size_slider.dart +++ /dev/null @@ -1,90 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:async'; - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../../constants/app_constants.dart'; -import '../../../../../../constants/db_keys.dart'; -import '../../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../../utils/mixin/shared_preferences_client_mixin.dart'; -import '../../../../widgets/slider_setting_tile/slider_setting_tile.dart'; - -part 'reader_magnifier_size_slider.g.dart'; - -@riverpod -class ReaderMagnifierSizeKey extends _$ReaderMagnifierSizeKey - with SharedPreferenceClientMixin { - @override - double? build() => initialize(DBKeys.readerMagnifierSize); -} - -class ReaderMagnifierSizeSlider extends ConsumerWidget { - const ReaderMagnifierSizeSlider({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - final double readerMagnifierSize = - ref.watch(readerMagnifierSizeKeyProvider) ?? - DBKeys.readerMagnifierSize.initial; - return SliderSettingTile( - icon: Icons.search, - title: context.l10n!.readerMagnifierSize, - value: readerMagnifierSize, - getSliderLabel: (val) => val.toStringAsFixed(2), - onChanged: ref.read(readerMagnifierSizeKeyProvider.notifier).update, - defaultValue: DBKeys.readerMagnifierSize.initial, - min: 1, - max: 5, - ); - } -} - -class AsyncReaderMagnifierSizeSlider extends HookConsumerWidget { - const AsyncReaderMagnifierSizeSlider({ - super.key, - required this.onChanged, - required this.readerMagnifierSize, - }); - - final ValueSetter onChanged; - final ValueNotifier readerMagnifierSize; - - @override - Widget build(BuildContext context, WidgetRef ref) { - final debounce = useRef(null); - - final onDebounceChanged = useCallback>( - (double magnifierSizeValue) async { - readerMagnifierSize.value = (magnifierSizeValue); - final finalDebounce = debounce.value; - if ((finalDebounce?.isActive).ifNull()) { - finalDebounce?.cancel(); - } - debounce.value = Timer( - kDebounceDuration, - () => onChanged(magnifierSizeValue), - ); - return; - }, - [], - ); - return SliderSettingTile( - icon: Icons.search, - title: context.l10n!.readerMagnifierSize, - value: readerMagnifierSize.value, - getSliderLabel: (val) => val.toStringAsFixed(2), - onChanged: onDebounceChanged, - defaultValue: DBKeys.readerMagnifierSize.initial, - min: 1, - max: 5, - ); - } -} diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_magnifier_size_slider/reader_magnifier_size_slider.g.dart b/lib/src/features/settings/presentation/reader/widgets/reader_magnifier_size_slider/reader_magnifier_size_slider.g.dart deleted file mode 100644 index 37040cb9..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_magnifier_size_slider/reader_magnifier_size_slider.g.dart +++ /dev/null @@ -1,27 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'reader_magnifier_size_slider.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$readerMagnifierSizeKeyHash() => - r'3f954620173149ee83f7bdab0b13bc78c06bd796'; - -/// See also [ReaderMagnifierSizeKey]. -@ProviderFor(ReaderMagnifierSizeKey) -final readerMagnifierSizeKeyProvider = - AutoDisposeNotifierProvider.internal( - ReaderMagnifierSizeKey.new, - name: r'readerMagnifierSizeKeyProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$readerMagnifierSizeKeyHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$ReaderMagnifierSizeKey = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_mode_tile/reader_mode_tile.dart b/lib/src/features/settings/presentation/reader/widgets/reader_mode_tile/reader_mode_tile.dart deleted file mode 100644 index 454133bd..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_mode_tile/reader_mode_tile.dart +++ /dev/null @@ -1,52 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../../constants/db_keys.dart'; -import '../../../../../../constants/enum.dart'; -import '../../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../../utils/mixin/shared_preferences_client_mixin.dart'; -import '../../../../../../widgets/radio_list_popup.dart'; - -part 'reader_mode_tile.g.dart'; - -@riverpod -class ReaderModeKey extends _$ReaderModeKey - with SharedPreferenceEnumClientMixin { - @override - ReaderMode? build() => - initialize(DBKeys.readerMode, enumList: ReaderMode.values); -} - -class ReaderModeTile extends ConsumerWidget { - const ReaderModeTile({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - final readerMode = ref.watch(readerModeKeyProvider); - return ListTile( - leading: const Icon(Icons.app_settings_alt_rounded), - subtitle: readerMode != null ? Text(readerMode.toLocale(context)) : null, - title: Text(context.l10n!.readerMode), - onTap: () => showDialog( - context: context, - builder: (context) => RadioListPopup( - title: context.l10n!.readerMode, - optionList: ReaderMode.values.sublist(1), - getOptionTitle: (value) => value.toLocale(context), - value: readerMode ?? ReaderMode.webtoon, - onChange: (enumValue) async { - ref.read(readerModeKeyProvider.notifier).update(enumValue); - if (context.mounted) Navigator.pop(context); - }, - ), - ), - ); - } -} diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_mode_tile/reader_mode_tile.g.dart b/lib/src/features/settings/presentation/reader/widgets/reader_mode_tile/reader_mode_tile.g.dart deleted file mode 100644 index b0b254f0..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_mode_tile/reader_mode_tile.g.dart +++ /dev/null @@ -1,26 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'reader_mode_tile.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$readerModeKeyHash() => r'542fcae53ee45ad75064ee9e3a2889936d873c8d'; - -/// See also [ReaderModeKey]. -@ProviderFor(ReaderModeKey) -final readerModeKeyProvider = - AutoDisposeNotifierProvider.internal( - ReaderModeKey.new, - name: r'readerModeKeyProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$readerModeKeyHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$ReaderModeKey = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_navigation_layout_tile/reader_navigation_layout_tile.dart b/lib/src/features/settings/presentation/reader/widgets/reader_navigation_layout_tile/reader_navigation_layout_tile.dart deleted file mode 100644 index 659e3488..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_navigation_layout_tile/reader_navigation_layout_tile.dart +++ /dev/null @@ -1,58 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../../constants/db_keys.dart'; -import '../../../../../../constants/enum.dart'; -import '../../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../../utils/mixin/shared_preferences_client_mixin.dart'; -import '../../../../../../widgets/radio_list_popup.dart'; - -part 'reader_navigation_layout_tile.g.dart'; - -@riverpod -class ReaderNavigationLayoutKey extends _$ReaderNavigationLayoutKey - with SharedPreferenceEnumClientMixin { - @override - ReaderNavigationLayout? build() => initialize( - DBKeys.readerNavigationLayout, - enumList: ReaderNavigationLayout.values, - ); -} - -class ReaderNavigationLayoutTile extends ConsumerWidget { - const ReaderNavigationLayoutTile({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - final readerNavigationLayout = ref.watch(readerNavigationLayoutKeyProvider); - return ListTile( - leading: const Icon(Icons.touch_app_rounded), - subtitle: readerNavigationLayout != null - ? Text(readerNavigationLayout.toLocale(context)) - : null, - title: Text(context.l10n!.readerNavigationLayout), - onTap: () => showDialog( - context: context, - builder: (context) => RadioListPopup( - title: context.l10n!.readerNavigationLayout, - optionList: ReaderNavigationLayout.values.sublist(1), - getOptionTitle: (value) => value.toLocale(context), - value: readerNavigationLayout ?? ReaderNavigationLayout.disabled, - onChange: (enumValue) async { - ref - .read(readerNavigationLayoutKeyProvider.notifier) - .update(enumValue); - if (context.mounted) Navigator.pop(context); - }, - ), - ), - ); - } -} diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_navigation_layout_tile/reader_navigation_layout_tile.g.dart b/lib/src/features/settings/presentation/reader/widgets/reader_navigation_layout_tile/reader_navigation_layout_tile.g.dart deleted file mode 100644 index 68b2a74d..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_navigation_layout_tile/reader_navigation_layout_tile.g.dart +++ /dev/null @@ -1,28 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'reader_navigation_layout_tile.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$readerNavigationLayoutKeyHash() => - r'a2c719fe589f9ee1ce5bfe71284508d4be6e8651'; - -/// See also [ReaderNavigationLayoutKey]. -@ProviderFor(ReaderNavigationLayoutKey) -final readerNavigationLayoutKeyProvider = AutoDisposeNotifierProvider< - ReaderNavigationLayoutKey, ReaderNavigationLayout?>.internal( - ReaderNavigationLayoutKey.new, - name: r'readerNavigationLayoutKeyProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$readerNavigationLayoutKeyHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$ReaderNavigationLayoutKey - = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_padding_slider/reader_padding_slider.dart b/lib/src/features/settings/presentation/reader/widgets/reader_padding_slider/reader_padding_slider.dart deleted file mode 100644 index d292e7fb..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_padding_slider/reader_padding_slider.dart +++ /dev/null @@ -1,89 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:async'; - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../../constants/app_constants.dart'; -import '../../../../../../constants/db_keys.dart'; -import '../../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../../utils/mixin/shared_preferences_client_mixin.dart'; -import '../../../../widgets/slider_setting_tile/slider_setting_tile.dart'; - -part 'reader_padding_slider.g.dart'; - -@riverpod -class ReaderPaddingKey extends _$ReaderPaddingKey - with SharedPreferenceClientMixin { - @override - double? build() => initialize(DBKeys.readerPadding); -} - -class ReaderPaddingSlider extends ConsumerWidget { - const ReaderPaddingSlider({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - final double readerPadding = - ref.watch(readerPaddingKeyProvider) ?? DBKeys.readerPadding.initial; - return SliderSettingTile( - icon: Icons.width_wide_rounded, - title: context.l10n!.readerPadding, - value: readerPadding, - getSliderLabel: (val) => (val * 2.5).toStringAsFixed(2), - onChanged: ref.read(readerPaddingKeyProvider.notifier).update, - defaultValue: DBKeys.readerPadding.initial, - min: 0, - max: 0.4, - ); - } -} - -class AsyncReaderPaddingSlider extends HookConsumerWidget { - const AsyncReaderPaddingSlider({ - super.key, - required this.onChanged, - required this.readerPadding, - }); - - final ValueSetter onChanged; - final ValueNotifier readerPadding; - - @override - Widget build(BuildContext context, WidgetRef ref) { - final debounce = useRef(null); - - final onDebounceChanged = useCallback>( - (double paddingValue) async { - readerPadding.value = (paddingValue); - final finalDebounce = debounce.value; - if ((finalDebounce?.isActive).ifNull()) { - finalDebounce?.cancel(); - } - debounce.value = Timer( - kDebounceDuration, - () => onChanged(paddingValue), - ); - return; - }, - [], - ); - return SliderSettingTile( - icon: Icons.width_wide_rounded, - title: context.l10n!.readerPadding, - value: readerPadding.value, - getSliderLabel: (val) => (val * 2.5).toStringAsFixed(2), - onChanged: onDebounceChanged, - defaultValue: DBKeys.readerPadding.initial, - min: 0, - max: 0.4, - ); - } -} diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_padding_slider/reader_padding_slider.g.dart b/lib/src/features/settings/presentation/reader/widgets/reader_padding_slider/reader_padding_slider.g.dart deleted file mode 100644 index 6ca0a9f2..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_padding_slider/reader_padding_slider.g.dart +++ /dev/null @@ -1,26 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'reader_padding_slider.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$readerPaddingKeyHash() => r'fefb063d72d62d247e541d810a418451cd91d6ce'; - -/// See also [ReaderPaddingKey]. -@ProviderFor(ReaderPaddingKey) -final readerPaddingKeyProvider = - AutoDisposeNotifierProvider.internal( - ReaderPaddingKey.new, - name: r'readerPaddingKeyProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$readerPaddingKeyHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$ReaderPaddingKey = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_pinch_to_zoom/reader_invert_tap_tile.g.dart b/lib/src/features/settings/presentation/reader/widgets/reader_pinch_to_zoom/reader_invert_tap_tile.g.dart deleted file mode 100644 index 0b46aa58..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_pinch_to_zoom/reader_invert_tap_tile.g.dart +++ /dev/null @@ -1,25 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'reader_invert_tap_tile.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$invertTapHash() => r'8885890ec1184098ce4769b2488f02078502937b'; - -/// See also [InvertTap]. -@ProviderFor(InvertTap) -final invertTapProvider = - AutoDisposeNotifierProvider.internal( - InvertTap.new, - name: r'invertTapProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$invertTapHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$InvertTap = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_pinch_to_zoom/reader_pinch_to_zoom.dart b/lib/src/features/settings/presentation/reader/widgets/reader_pinch_to_zoom/reader_pinch_to_zoom.dart deleted file mode 100644 index 9c2cd2f3..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_pinch_to_zoom/reader_pinch_to_zoom.dart +++ /dev/null @@ -1,34 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../../constants/db_keys.dart'; -import '../../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../../utils/mixin/shared_preferences_client_mixin.dart'; - -part 'reader_pinch_to_zoom.g.dart'; - -@riverpod -class PinchToZoom extends _$PinchToZoom with SharedPreferenceClientMixin { - @override - bool? build() => initialize(DBKeys.pinchToZoom); -} - -class ReaderPinchToZoom extends HookConsumerWidget { - const ReaderPinchToZoom({super.key}); - @override - Widget build(BuildContext context, WidgetRef ref) { - return SwitchListTile( - controlAffinity: ListTileControlAffinity.trailing, - secondary: const Icon(Icons.pinch_rounded), - title: Text(context.l10n!.pinchToZoom), - onChanged: ref.read(pinchToZoomProvider.notifier).update, - value: ref.watch(pinchToZoomProvider).ifNull(), - ); - } -} diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_pinch_to_zoom/reader_pinch_to_zoom.g.dart b/lib/src/features/settings/presentation/reader/widgets/reader_pinch_to_zoom/reader_pinch_to_zoom.g.dart deleted file mode 100644 index 89dc48ee..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_pinch_to_zoom/reader_pinch_to_zoom.g.dart +++ /dev/null @@ -1,25 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'reader_pinch_to_zoom.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$pinchToZoomHash() => r'b5acb6c92cb357b7cd32616171ddbe3daade93c5'; - -/// See also [PinchToZoom]. -@ProviderFor(PinchToZoom) -final pinchToZoomProvider = - AutoDisposeNotifierProvider.internal( - PinchToZoom.new, - name: r'pinchToZoomProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$pinchToZoomHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$PinchToZoom = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_pinch_to_zoom/reader_volume_tap_tile.g.dart b/lib/src/features/settings/presentation/reader/widgets/reader_pinch_to_zoom/reader_volume_tap_tile.g.dart deleted file mode 100644 index fb051143..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_pinch_to_zoom/reader_volume_tap_tile.g.dart +++ /dev/null @@ -1,25 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'reader_volume_tap_tile.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$volumeTapHash() => r'3a6607d4250354a14e96cd1f8a5eeaef1ac34090'; - -/// See also [VolumeTap]. -@ProviderFor(VolumeTap) -final volumeTapProvider = - AutoDisposeNotifierProvider.internal( - VolumeTap.new, - name: r'volumeTapProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$volumeTapHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$VolumeTap = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_scroll_animation_tile/reader_scroll_animation_tile.dart b/lib/src/features/settings/presentation/reader/widgets/reader_scroll_animation_tile/reader_scroll_animation_tile.dart deleted file mode 100644 index c1bda741..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_scroll_animation_tile/reader_scroll_animation_tile.dart +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../../constants/db_keys.dart'; -import '../../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../../utils/mixin/shared_preferences_client_mixin.dart'; - -part 'reader_scroll_animation_tile.g.dart'; - -@riverpod -class ReaderScrollAnimation extends _$ReaderScrollAnimation - with SharedPreferenceClientMixin { - @override - bool? build() => initialize(DBKeys.scrollAnimation); -} - -class ReaderScrollAnimationTile extends HookConsumerWidget { - const ReaderScrollAnimationTile({super.key}); - @override - Widget build(BuildContext context, WidgetRef ref) { - return SwitchListTile( - controlAffinity: ListTileControlAffinity.trailing, - secondary: const Icon(Icons.animation_rounded), - title: Text(context.l10n!.readerScrollAnimation), - onChanged: ref.read(readerScrollAnimationProvider.notifier).update, - value: ref.watch(readerScrollAnimationProvider).ifNull(), - ); - } -} diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_scroll_animation_tile/reader_scroll_animation_tile.g.dart b/lib/src/features/settings/presentation/reader/widgets/reader_scroll_animation_tile/reader_scroll_animation_tile.g.dart deleted file mode 100644 index 7fdae799..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_scroll_animation_tile/reader_scroll_animation_tile.g.dart +++ /dev/null @@ -1,27 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'reader_scroll_animation_tile.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$readerScrollAnimationHash() => - r'141994b8a881442624c91141d3148cd8bdd8aad7'; - -/// See also [ReaderScrollAnimation]. -@ProviderFor(ReaderScrollAnimation) -final readerScrollAnimationProvider = - AutoDisposeNotifierProvider.internal( - ReaderScrollAnimation.new, - name: r'readerScrollAnimationProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$readerScrollAnimationHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$ReaderScrollAnimation = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_swipe_toggle_tile/reader_swipe_chapter_toggle_tile.dart b/lib/src/features/settings/presentation/reader/widgets/reader_swipe_toggle_tile/reader_swipe_chapter_toggle_tile.dart deleted file mode 100644 index 75b19575..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_swipe_toggle_tile/reader_swipe_chapter_toggle_tile.dart +++ /dev/null @@ -1,37 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../../constants/db_keys.dart'; -import '../../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../../utils/mixin/shared_preferences_client_mixin.dart'; - -part 'reader_swipe_chapter_toggle_tile.g.dart'; - -@riverpod -class SwipeChapterToggle extends _$SwipeChapterToggle - with SharedPreferenceClientMixin { - @override - bool? build() => initialize(DBKeys.swipeToggle); -} - -class SwipeChapterToggleTile extends HookConsumerWidget { - const SwipeChapterToggleTile({super.key}); - @override - Widget build(BuildContext context, WidgetRef ref) { - return SwitchListTile( - controlAffinity: ListTileControlAffinity.trailing, - secondary: const Icon(Icons.swipe_rounded), - title: Text(context.l10n!.readerSwipeChapterToggle), - subtitle: Text(context.l10n!.readerSwipeChapterToggleDescription), - onChanged: ref.read(swipeChapterToggleProvider.notifier).update, - value: ref.watch(swipeChapterToggleProvider).ifNull(), - ); - } -} diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_swipe_toggle_tile/reader_swipe_chapter_toggle_tile.g.dart b/lib/src/features/settings/presentation/reader/widgets/reader_swipe_toggle_tile/reader_swipe_chapter_toggle_tile.g.dart deleted file mode 100644 index d06363c6..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_swipe_toggle_tile/reader_swipe_chapter_toggle_tile.g.dart +++ /dev/null @@ -1,27 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'reader_swipe_chapter_toggle_tile.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$swipeChapterToggleHash() => - r'9695f972659a8b2213796d23f5d84342d292340f'; - -/// See also [SwipeChapterToggle]. -@ProviderFor(SwipeChapterToggle) -final swipeChapterToggleProvider = - AutoDisposeNotifierProvider.internal( - SwipeChapterToggle.new, - name: r'swipeChapterToggleProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$swipeChapterToggleHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$SwipeChapterToggle = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_volume_tap_invert_tile/reader_invert_tap_tile.g.dart b/lib/src/features/settings/presentation/reader/widgets/reader_volume_tap_invert_tile/reader_invert_tap_tile.g.dart deleted file mode 100644 index 0b46aa58..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_volume_tap_invert_tile/reader_invert_tap_tile.g.dart +++ /dev/null @@ -1,25 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'reader_invert_tap_tile.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$invertTapHash() => r'8885890ec1184098ce4769b2488f02078502937b'; - -/// See also [InvertTap]. -@ProviderFor(InvertTap) -final invertTapProvider = - AutoDisposeNotifierProvider.internal( - InvertTap.new, - name: r'invertTapProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$invertTapHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$InvertTap = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_volume_tap_invert_tile/reader_volume_tap_invert_tile.dart b/lib/src/features/settings/presentation/reader/widgets/reader_volume_tap_invert_tile/reader_volume_tap_invert_tile.dart deleted file mode 100644 index d2e00afb..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_volume_tap_invert_tile/reader_volume_tap_invert_tile.dart +++ /dev/null @@ -1,40 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. -import 'dart:math' as math; - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../../constants/db_keys.dart'; -import '../../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../../utils/mixin/shared_preferences_client_mixin.dart'; - -part 'reader_volume_tap_invert_tile.g.dart'; - -@riverpod -class VolumeTapInvert extends _$VolumeTapInvert - with SharedPreferenceClientMixin { - @override - bool? build() => initialize(DBKeys.volumeTapInvert); -} - -class ReaderVolumeTapInvertTile extends HookConsumerWidget { - const ReaderVolumeTapInvertTile({super.key}); - @override - Widget build(BuildContext context, WidgetRef ref) { - return SwitchListTile( - controlAffinity: ListTileControlAffinity.trailing, - secondary: Transform.rotate( - angle: -math.pi / 2, - child: const Icon(Icons.switch_left_rounded), - ), - title: Text(context.l10n!.readerVolumeTapInvert), - onChanged: ref.read(volumeTapInvertProvider.notifier).update, - value: ref.watch(volumeTapInvertProvider).ifNull(), - ); - } -} diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_volume_tap_invert_tile/reader_volume_tap_invert_tile.g.dart b/lib/src/features/settings/presentation/reader/widgets/reader_volume_tap_invert_tile/reader_volume_tap_invert_tile.g.dart deleted file mode 100644 index d2a26868..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_volume_tap_invert_tile/reader_volume_tap_invert_tile.g.dart +++ /dev/null @@ -1,26 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'reader_volume_tap_invert_tile.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$volumeTapInvertHash() => r'2bcbb177dc5776d0fba12704a83f6973743342d6'; - -/// See also [VolumeTapInvert]. -@ProviderFor(VolumeTapInvert) -final volumeTapInvertProvider = - AutoDisposeNotifierProvider.internal( - VolumeTapInvert.new, - name: r'volumeTapInvertProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$volumeTapInvertHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$VolumeTapInvert = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_volume_tap_tile/reader_invert_tap_tile.g.dart b/lib/src/features/settings/presentation/reader/widgets/reader_volume_tap_tile/reader_invert_tap_tile.g.dart deleted file mode 100644 index 0b46aa58..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_volume_tap_tile/reader_invert_tap_tile.g.dart +++ /dev/null @@ -1,25 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'reader_invert_tap_tile.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$invertTapHash() => r'8885890ec1184098ce4769b2488f02078502937b'; - -/// See also [InvertTap]. -@ProviderFor(InvertTap) -final invertTapProvider = - AutoDisposeNotifierProvider.internal( - InvertTap.new, - name: r'invertTapProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$invertTapHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$InvertTap = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_volume_tap_tile/reader_volume_tap_tile.dart b/lib/src/features/settings/presentation/reader/widgets/reader_volume_tap_tile/reader_volume_tap_tile.dart deleted file mode 100644 index 892aca33..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_volume_tap_tile/reader_volume_tap_tile.dart +++ /dev/null @@ -1,40 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. -import 'dart:math' as math; - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../../constants/db_keys.dart'; -import '../../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../../utils/mixin/shared_preferences_client_mixin.dart'; - -part 'reader_volume_tap_tile.g.dart'; - -@riverpod -class VolumeTap extends _$VolumeTap with SharedPreferenceClientMixin { - @override - bool? build() => initialize(DBKeys.volumeTap); -} - -class ReaderVolumeTapTile extends HookConsumerWidget { - const ReaderVolumeTapTile({super.key}); - @override - Widget build(BuildContext context, WidgetRef ref) { - return SwitchListTile( - controlAffinity: ListTileControlAffinity.trailing, - secondary: Transform.rotate( - angle: math.pi / 2, - child: const Icon(Icons.switch_left_rounded), - ), - title: Text(context.l10n!.readerVolumeTap), - subtitle: Text(context.l10n!.readerVolumeTapSubtitle), - onChanged: ref.read(volumeTapProvider.notifier).update, - value: ref.watch(volumeTapProvider).ifNull(), - ); - } -} diff --git a/lib/src/features/settings/presentation/reader/widgets/reader_volume_tap_tile/reader_volume_tap_tile.g.dart b/lib/src/features/settings/presentation/reader/widgets/reader_volume_tap_tile/reader_volume_tap_tile.g.dart deleted file mode 100644 index fb051143..00000000 --- a/lib/src/features/settings/presentation/reader/widgets/reader_volume_tap_tile/reader_volume_tap_tile.g.dart +++ /dev/null @@ -1,25 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'reader_volume_tap_tile.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$volumeTapHash() => r'3a6607d4250354a14e96cd1f8a5eeaef1ac34090'; - -/// See also [VolumeTap]. -@ProviderFor(VolumeTap) -final volumeTapProvider = - AutoDisposeNotifierProvider.internal( - VolumeTap.new, - name: r'volumeTapProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$volumeTapHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$VolumeTap = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/server/server_screen.dart b/lib/src/features/settings/presentation/server/server_screen.dart deleted file mode 100644 index 2e5fb366..00000000 --- a/lib/src/features/settings/presentation/server/server_screen.dart +++ /dev/null @@ -1,72 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../constants/endpoints.dart'; -import '../../../../constants/enum.dart'; -import '../../../../global_providers/global_providers.dart'; - -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/launch_url_in_web.dart'; -import '../../../../utils/misc/toast/toast.dart'; -import '../../widgets/server_port_tile/server_port_tile.dart'; -import '../../widgets/server_url_tile/server_url_tile.dart'; -import 'widget/auth_type_tile.dart'; -import 'widget/credential_popup/credentials_popup.dart'; - -class ServerScreen extends ConsumerWidget { - const ServerScreen({super.key}); - @override - Widget build(BuildContext context, WidgetRef ref) { - final authType = ref.watch(authTypeKeyProvider); - return Scaffold( - appBar: AppBar( - title: Text(context.l10n!.server), - ), - body: ListView( - children: [ - const ServerUrlTile(), - const ServerPortTile(), - const AuthTypeTile(), - if (authType != null && authType != AuthType.none) - ListTile( - leading: const Icon(Icons.password_rounded), - title: Text(context.l10n!.credentials), - onTap: () { - showDialog( - context: context, - builder: (context) => const CredentialsPopup(), - ); - }, - ), - if (!kIsWeb) - ListTile( - leading: const Icon(Icons.web_rounded), - title: Text(context.l10n!.webUI), - onTap: () { - final url = Endpoints.baseApi( - baseUrl: ref.read(serverUrlProvider), - port: ref.read(serverPortProvider), - addPort: ref.watch(serverPortToggleProvider).ifNull(), - appendApiToUrl: false, - ); - if (url.isNotBlank) { - launchUrlInWeb( - context, - url, - ref.read(toastProvider(context)), - ); - } - }, - ) - ], - ), - ); - } -} diff --git a/lib/src/features/settings/presentation/server/widget/auth_type_tile.dart b/lib/src/features/settings/presentation/server/widget/auth_type_tile.dart deleted file mode 100644 index adef0cdb..00000000 --- a/lib/src/features/settings/presentation/server/widget/auth_type_tile.dart +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../../../constants/enum.dart'; -import '../../../../../global_providers/global_providers.dart'; -import '../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../widgets/radio_list_popup.dart'; - -class AuthTypeTile extends ConsumerWidget { - const AuthTypeTile({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - final authType = ref.watch(authTypeKeyProvider); - - return ListTile( - leading: const Icon(Icons.security_rounded), - subtitle: authType != null ? Text(authType.toLocale(context)) : null, - title: Text(context.l10n!.authType), - onTap: () => showDialog( - context: context, - builder: (context) => RadioListPopup( - title: context.l10n!.authType, - optionList: AuthType.values, - getOptionTitle: (value) => value.toLocale(context), - value: authType ?? AuthType.none, - onChange: (enumValue) { - ref.read(authTypeKeyProvider.notifier).update(enumValue); - Navigator.pop(context); - }, - ), - ), - ); - } -} diff --git a/lib/src/features/settings/presentation/server/widget/credential_popup/credentials_popup.dart b/lib/src/features/settings/presentation/server/widget/credential_popup/credentials_popup.dart deleted file mode 100644 index 7d065e37..00000000 --- a/lib/src/features/settings/presentation/server/widget/credential_popup/credentials_popup.dart +++ /dev/null @@ -1,95 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:convert'; - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:gap/gap.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../../../constants/db_keys.dart'; -import '../../../../../../utils/extensions/custom_extensions.dart'; -import '../../../../../../utils/mixin/shared_preferences_client_mixin.dart'; -import '../../../../../../widgets/pop_button.dart'; - -part 'credentials_popup.g.dart'; - -@riverpod -class Credentials extends _$Credentials - with SharedPreferenceClientMixin { - @override - String? build() => initialize(DBKeys.basicCredentials); -} - -final formKey = GlobalKey(); - -class CredentialsPopup extends HookConsumerWidget { - const CredentialsPopup({super.key}); - - String _basicAuth({ - required String userName, - required String password, - }) => - 'Basic ${base64.encode( - utf8.encode('$userName:$password'), - )}'; - - @override - Widget build(BuildContext context, WidgetRef ref) { - final username = useTextEditingController(); - final password = useTextEditingController(); - return AlertDialog( - title: Text(context.l10n!.credentials), - content: Form( - key: formKey, - child: Column( - mainAxisSize: MainAxisSize.min, - children: [ - TextFormField( - controller: username, - validator: (value) => - value.isBlank ? (context.l10n!.errorUserName) : null, - decoration: InputDecoration( - hintText: context.l10n!.userName, - border: const OutlineInputBorder(), - ), - ), - const Gap(4), - TextFormField( - controller: password, - validator: (value) => - value.isBlank ? (context.l10n!.errorPassword) : null, - obscureText: true, - decoration: InputDecoration( - hintText: context.l10n!.password, - border: const OutlineInputBorder(), - ), - ), - ], - ), - ), - actions: [ - const PopButton(), - ElevatedButton( - onPressed: () async { - if ((formKey.currentState?.validate()).ifNull()) { - ref.read(credentialsProvider.notifier).update( - _basicAuth( - userName: username.text, - password: password.text, - ), - ); - Navigator.pop(context); - } - }, - child: Text(context.l10n!.save), - ), - ], - ); - } -} diff --git a/lib/src/features/settings/presentation/server/widget/credential_popup/credentials_popup.g.dart b/lib/src/features/settings/presentation/server/widget/credential_popup/credentials_popup.g.dart deleted file mode 100644 index 40f7b81d..00000000 --- a/lib/src/features/settings/presentation/server/widget/credential_popup/credentials_popup.g.dart +++ /dev/null @@ -1,25 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'credentials_popup.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$credentialsHash() => r'6ccec3db0f5cd3f90ff51972bf267aab01d0f363'; - -/// See also [Credentials]. -@ProviderFor(Credentials) -final credentialsProvider = - AutoDisposeNotifierProvider.internal( - Credentials.new, - name: r'credentialsProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$credentialsHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$Credentials = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/presentation/settings/settings_screen.dart b/lib/src/features/settings/presentation/settings/settings_screen.dart deleted file mode 100644 index 372b74b7..00000000 --- a/lib/src/features/settings/presentation/settings/settings_screen.dart +++ /dev/null @@ -1,62 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../../../../routes/router_config.dart'; -import '../../../../utils/extensions/custom_extensions.dart'; - -class SettingsScreen extends StatelessWidget { - const SettingsScreen({super.key}); - - @override - Widget build(BuildContext context) { - return Scaffold( - appBar: AppBar( - title: Text(context.l10n!.settings), - ), - body: ListView( - children: [ - ListTile( - title: Text(context.l10n!.general), - leading: const Icon(Icons.tune_rounded), - onTap: () => const GeneralSettingsRoute().push(context), - ), - ListTile( - title: Text(context.l10n!.appearance), - leading: const Icon(Icons.color_lens_rounded), - onTap: () => const AppearanceSettingsRoute().push(context), - ), - ListTile( - title: Text(context.l10n!.library), - leading: const Icon(Icons.collections_bookmark_rounded), - onTap: () => const LibrarySettingsRoute().push(context), - ), - ListTile( - title: Text(context.l10n!.reader), - leading: const Icon(Icons.chrome_reader_mode_rounded), - onTap: () => const ReaderSettingsRoute().push(context), - ), - ListTile( - title: Text(context.l10n!.browse), - leading: const Icon(Icons.explore_rounded), - onTap: () => const BrowseSettingsRoute().push(context), - ), - ListTile( - title: Text(context.l10n!.backup), - leading: const Icon(Icons.settings_backup_restore_rounded), - onTap: () => const BackupRoute().push(context), - ), - ListTile( - title: Text(context.l10n!.server), - leading: const Icon(Icons.computer_rounded), - onTap: () => const ServerSettingsRoute().push(context), - ), - ], - ), - ); - } -} diff --git a/lib/src/features/settings/widgets/app_theme_mode_tile/app_theme_mode_tile.dart b/lib/src/features/settings/widgets/app_theme_mode_tile/app_theme_mode_tile.dart deleted file mode 100644 index c5a514e0..00000000 --- a/lib/src/features/settings/widgets/app_theme_mode_tile/app_theme_mode_tile.dart +++ /dev/null @@ -1,63 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../constants/db_keys.dart'; -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/mixin/shared_preferences_client_mixin.dart'; -import '../../../../widgets/radio_list_popup.dart'; - -part 'app_theme_mode_tile.g.dart'; - -@riverpod -class AppThemeMode extends _$AppThemeMode - with SharedPreferenceEnumClientMixin { - @override - ThemeMode? build() => initialize( - DBKeys.themeMode, - enumList: ThemeMode.values, - ); -} - -extension ThemeModeExtension on ThemeMode { - String toLocale(BuildContext context) => switch (this) { - ThemeMode.system => context.l10n!.themeModeSystem, - ThemeMode.light => context.l10n!.themeModeLight, - ThemeMode.dark => context.l10n!.themeModeDark - }; -} - -class AppThemeModeTile extends ConsumerWidget { - const AppThemeModeTile({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - final themeMode = ref.watch(appThemeModeProvider); - return ListTile( - leading: Icon( - context.isDarkMode ? Icons.dark_mode_rounded : Icons.light_mode_rounded, - ), - subtitle: themeMode != null ? Text(themeMode.toLocale(context)) : null, - title: Text(context.l10n!.appTheme), - onTap: () => showDialog( - context: context, - builder: (context) => RadioListPopup( - title: context.l10n!.appTheme, - optionList: ThemeMode.values, - value: themeMode ?? ThemeMode.system, - getOptionTitle: (value) => value.toLocale(context), - onChange: (enumValue) async { - ref.read(appThemeModeProvider.notifier).update(enumValue); - if (context.mounted) Navigator.pop(context); - }, - ), - ), - ); - } -} diff --git a/lib/src/features/settings/widgets/app_theme_mode_tile/app_theme_mode_tile.g.dart b/lib/src/features/settings/widgets/app_theme_mode_tile/app_theme_mode_tile.g.dart deleted file mode 100644 index 1492735b..00000000 --- a/lib/src/features/settings/widgets/app_theme_mode_tile/app_theme_mode_tile.g.dart +++ /dev/null @@ -1,25 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'app_theme_mode_tile.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$appThemeModeHash() => r'380ffe956e0fb3dd226139f0a8c3b2b39ed9472c'; - -/// See also [AppThemeMode]. -@ProviderFor(AppThemeMode) -final appThemeModeProvider = - AutoDisposeNotifierProvider.internal( - AppThemeMode.new, - name: r'appThemeModeProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$appThemeModeHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$AppThemeMode = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/widgets/server_port_tile/server_port_tile.dart b/lib/src/features/settings/widgets/server_port_tile/server_port_tile.dart deleted file mode 100644 index 3b249c56..00000000 --- a/lib/src/features/settings/widgets/server_port_tile/server_port_tile.dart +++ /dev/null @@ -1,112 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter/services.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../constants/db_keys.dart'; -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/mixin/shared_preferences_client_mixin.dart'; -import '../../../../widgets/pop_button.dart'; - -part 'server_port_tile.g.dart'; - -@riverpod -class ServerPort extends _$ServerPort with SharedPreferenceClientMixin { - @override - int? build() => initialize(DBKeys.serverPort); -} - -@riverpod -class ServerPortToggle extends _$ServerPortToggle - with SharedPreferenceClientMixin { - @override - bool? build() => initialize( - DBKeys.serverPortToggle, - initial: kIsWeb ? false : DBKeys.serverPortToggle.initial, - ); -} - -class ServerPortTile extends ConsumerWidget { - const ServerPortTile({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - final serverPort = ref.watch(serverPortProvider); - final serverToggle = ref.watch(serverPortToggleProvider).ifNull(); - return ListTile( - leading: const Icon(Icons.dns_rounded), - title: Text(context.l10n!.serverPort), - subtitle: (serverToggle && serverPort != null) - ? (Text(serverPort.toString())) - : null, - trailing: Switch( - value: serverToggle, - onChanged: (value) { - ref.read(serverPortToggleProvider.notifier).update(value); - }, - ), - onTap: serverToggle - ? () => showDialog( - context: context, - builder: (context) => ServerPortField(initialPort: serverPort), - ) - : null, - ); - } -} - -class ServerPortField extends HookConsumerWidget { - const ServerPortField({ - this.initialPort, - super.key, - }); - final int? initialPort; - - void _update(int? port, WidgetRef ref) { - ref.read(serverPortProvider.notifier).update(port); - } - - @override - Widget build(BuildContext context, WidgetRef ref) { - final controller = useTextEditingController( - text: (initialPort ?? '').toString(), - ); - return AlertDialog( - title: Text(context.l10n!.serverPort), - content: TextField( - autofocus: true, - controller: controller, - onSubmitted: (value) { - _update(int.tryParse(controller.text), ref); - Navigator.pop(context); - }, - keyboardType: TextInputType.number, - maxLength: 5, - inputFormatters: [FilteringTextInputFormatter.digitsOnly], - decoration: InputDecoration( - counter: const SizedBox.shrink(), - border: const OutlineInputBorder(), - hintText: (context.l10n!.serverPortHintText), - ), - ), - actions: [ - const PopButton(), - ElevatedButton( - onPressed: () { - _update(int.tryParse(controller.text), ref); - Navigator.pop(context); - }, - child: Text(context.l10n!.save), - ), - ], - ); - } -} diff --git a/lib/src/features/settings/widgets/server_port_tile/server_port_tile.g.dart b/lib/src/features/settings/widgets/server_port_tile/server_port_tile.g.dart deleted file mode 100644 index e33726ed..00000000 --- a/lib/src/features/settings/widgets/server_port_tile/server_port_tile.g.dart +++ /dev/null @@ -1,41 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'server_port_tile.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$serverPortHash() => r'604731733e9855577fdc9a40b98a917eca77d242'; - -/// See also [ServerPort]. -@ProviderFor(ServerPort) -final serverPortProvider = - AutoDisposeNotifierProvider.internal( - ServerPort.new, - name: r'serverPortProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$serverPortHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$ServerPort = AutoDisposeNotifier; -String _$serverPortToggleHash() => r'c7b68d8ce2c77e5af9ba26fc97a3feebfbe9e8cd'; - -/// See also [ServerPortToggle]. -@ProviderFor(ServerPortToggle) -final serverPortToggleProvider = - AutoDisposeNotifierProvider.internal( - ServerPortToggle.new, - name: r'serverPortToggleProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$serverPortToggleHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$ServerPortToggle = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/widgets/server_url_tile/server_search_button.dart b/lib/src/features/settings/widgets/server_url_tile/server_search_button.dart deleted file mode 100644 index 99b88a60..00000000 --- a/lib/src/features/settings/widgets/server_url_tile/server_search_button.dart +++ /dev/null @@ -1,89 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:io'; - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:network_info_plus/network_info_plus.dart'; - -import '../../../../constants/db_keys.dart'; -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/misc/toast/toast.dart'; -import '../../../../widgets/async_buttons/async_text_button.dart'; -import '../server_port_tile/server_port_tile.dart'; -import 'server_url_tile.dart'; - -class ServerSearchButton extends ConsumerWidget { - const ServerSearchButton({ - super.key, - this.text, - }); - final String? text; - void _update(String url, WidgetRef ref) { - final tempUrl = url.endsWith('/') ? url.substring(0, url.length - 1) : url; - ref.read(serverUrlProvider.notifier).update(tempUrl); - } - - Future getServerAddress(int? port) async { - final ip = await NetworkInfo().getWifiIP(); - if (ip.isBlank) return null; - - port ??= 4567; - String serverIp = ip!; - - if (await pingIp(serverIp, port)) return DBKeys.serverUrl.initial; - - final String subnet = ip.substring(0, ip.lastIndexOf('.')); - - for (var i = 0; i < 254; i++) { - serverIp = '$subnet.$i'; - if (await pingIp(serverIp, port)) return "http://$serverIp"; - } - return null; - } - - Future pingIp(String ip, int port) async { - bool isValidIp = false; - await Socket.connect(ip, port, timeout: const Duration(milliseconds: 50)) - .then( - (socket) async { - await InternetAddress(socket.address.address).reverse().then( - (value) => isValidIp = true, - onError: (_) => isValidIp = true, - ); - socket.destroy(); - }, - onError: (_) => null, - ); - return isValidIp; - } - - @override - Widget build(BuildContext context, WidgetRef ref) { - final port = ref.watch(serverPortProvider); - final addPort = ref.watch(serverPortToggleProvider).ifNull(); - if (!addPort) return const SizedBox.shrink(); - return AsyncTextButton( - icon: const Icon(Icons.search), - onPressed: port != null - ? () async { - final value = await getServerAddress(port); - if (value != null) { - _update(value, ref); - } else { - if (context.mounted) { - ref - .watch(toastProvider(context)) - .showError(context.l10n!.noServerFound); - } - } - } - : null, - child: Text(context.l10n!.findServer), - ); - } -} diff --git a/lib/src/features/settings/widgets/server_url_tile/server_url_tile.dart b/lib/src/features/settings/widgets/server_url_tile/server_url_tile.dart deleted file mode 100644 index 3d4668e9..00000000 --- a/lib/src/features/settings/widgets/server_url_tile/server_url_tile.dart +++ /dev/null @@ -1,90 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../../constants/db_keys.dart'; -import '../../../../utils/extensions/custom_extensions.dart'; -import '../../../../utils/mixin/shared_preferences_client_mixin.dart'; -import '../../../../widgets/pop_button.dart'; -import 'server_search_button.dart'; - -part 'server_url_tile.g.dart'; - -@riverpod -class ServerUrl extends _$ServerUrl with SharedPreferenceClientMixin { - @override - String? build() => initialize( - DBKeys.serverUrl, - initial: kIsWeb ? Uri.base.origin : DBKeys.serverUrl.initial, - ); -} - -class ServerUrlTile extends ConsumerWidget { - const ServerUrlTile({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - final serverUrl = ref.watch(serverUrlProvider); - return ListTile( - leading: const Icon(Icons.computer_rounded), - title: Text(context.l10n!.serverUrl), - subtitle: (serverUrl.isNotBlank) ? Text(serverUrl!) : null, - trailing: !kIsWeb ? (const ServerSearchButton()) : null, - onTap: () => showDialog( - context: context, - builder: (context) => ServerUrlField(initialUrl: serverUrl), - ), - ); - } -} - -class ServerUrlField extends HookConsumerWidget { - const ServerUrlField({ - this.initialUrl, - super.key, - }); - final String? initialUrl; - - void _update(String url, WidgetRef ref) { - final tempUrl = url.endsWith('/') ? url.substring(0, url.length - 1) : url; - ref.read(serverUrlProvider.notifier).update(tempUrl); - } - - @override - Widget build(BuildContext context, WidgetRef ref) { - final controller = useTextEditingController(text: initialUrl); - return AlertDialog( - title: Text(context.l10n!.serverUrl), - content: TextField( - autofocus: true, - controller: controller, - onSubmitted: (value) { - _update(controller.text, ref); - Navigator.pop(context); - }, - decoration: InputDecoration( - border: const OutlineInputBorder(), - hintText: (context.l10n!.serverUrlHintText), - ), - ), - actions: [ - const PopButton(), - ElevatedButton( - onPressed: () { - _update(controller.text, ref); - Navigator.pop(context); - }, - child: Text(context.l10n!.save), - ), - ], - ); - } -} diff --git a/lib/src/features/settings/widgets/server_url_tile/server_url_tile.g.dart b/lib/src/features/settings/widgets/server_url_tile/server_url_tile.g.dart deleted file mode 100644 index 8dc6edfc..00000000 --- a/lib/src/features/settings/widgets/server_url_tile/server_url_tile.g.dart +++ /dev/null @@ -1,25 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'server_url_tile.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$serverUrlHash() => r'5034a62624cb87c32618d2559c8c0416236882d7'; - -/// See also [ServerUrl]. -@ProviderFor(ServerUrl) -final serverUrlProvider = - AutoDisposeNotifierProvider.internal( - ServerUrl.new, - name: r'serverUrlProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$serverUrlHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$ServerUrl = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/features/settings/widgets/slider_setting_tile/slider_setting_tile.dart b/lib/src/features/settings/widgets/slider_setting_tile/slider_setting_tile.dart deleted file mode 100644 index 9fd192fc..00000000 --- a/lib/src/features/settings/widgets/slider_setting_tile/slider_setting_tile.dart +++ /dev/null @@ -1,57 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -class SliderSettingTile extends StatelessWidget { - const SliderSettingTile({ - super.key, - required this.title, - required this.icon, - required this.value, - required this.defaultValue, - required this.onChanged, - required this.min, - required this.max, - required this.getSliderLabel, - }); - final String title; - final IconData icon; - final double value; - final ValueSetter onChanged; - final double min; - final double defaultValue; - final double max; - final String Function(double) getSliderLabel; - @override - Widget build(BuildContext context) { - final label = getSliderLabel(value); - return ListTile( - dense: false, - isThreeLine: true, - leading: Icon(icon), - title: Text(title), - trailing: IconButton( - onPressed: () => onChanged(defaultValue), - icon: const Icon(Icons.refresh), - ), - subtitle: Row( - children: [ - Expanded( - child: Slider( - label: label.toString(), - value: value, - min: min, - max: max, - onChanged: (value) => onChanged(value), - ), - ), - Text(label), - ], - ), - ); - } -} diff --git a/lib/src/global_providers/global_providers.dart b/lib/src/global_providers/global_providers.dart deleted file mode 100644 index f51b87e9..00000000 --- a/lib/src/global_providers/global_providers.dart +++ /dev/null @@ -1,92 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:io'; - -import 'package:dio_cache_interceptor_hive_store/dio_cache_interceptor_hive_store.dart'; -import 'package:flutter/material.dart'; -import 'package:queue/queue.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; -import 'package:shared_preferences/shared_preferences.dart'; - -import '../constants/db_keys.dart'; -import '../constants/enum.dart'; -import '../features/settings/presentation/server/widget/credential_popup/credentials_popup.dart'; -import '../features/settings/widgets/server_port_tile/server_port_tile.dart'; -import '../features/settings/widgets/server_url_tile/server_url_tile.dart'; -import '../utils/extensions/custom_extensions.dart'; -import '../utils/mixin/shared_preferences_client_mixin.dart'; -import '../utils/storage/dio/dio_client.dart'; -import '../utils/storage/dio/network_module.dart'; - -part 'global_providers.g.dart'; - -@riverpod -DioClient dioClientKey(DioClientKeyRef ref) => DioClient( - dio: ref.watch(networkModuleProvider).provideDio( - baseUrl: ref.watch(serverUrlProvider) ?? DBKeys.serverUrl.initial, - port: ref.watch(serverPortProvider), - addPort: ref.watch(serverPortToggleProvider).ifNull(), - authType: ref.watch(authTypeKeyProvider) ?? DBKeys.authType.initial, - credentials: ref.watch(credentialsProvider), - hiveCacheStore: ref.watch(hiveCacheStoreProvider), - ), - ); - -@riverpod -class AuthTypeKey extends _$AuthTypeKey - with SharedPreferenceEnumClientMixin { - @override - AuthType? build() => initialize( - DBKeys.authType, - enumList: AuthType.values, - ); -} - -@riverpod -class L10n extends _$L10n with SharedPreferenceClientMixin { - Map toJson(Locale locale) => { - if (locale.countryCode.isNotBlank) "countryCode": locale.countryCode!, - if (locale.languageCode.isNotBlank) "languageCode": locale.languageCode, - if (locale.scriptCode.isNotBlank) "scriptCode": locale.scriptCode!, - }; - Locale? fromJson(dynamic json) => - json is! Map || (json["languageCode"] == null) - ? null - : Locale.fromSubtags( - languageCode: json["languageCode"]!.toString(), - scriptCode: json["scriptCode"]?.toString(), - countryCode: json["countryCode"]?.toString(), - ); - @override - Locale? build() => initialize( - DBKeys.l10n, - fromJson: fromJson, - toJson: toJson, - ); -} - -@riverpod -SharedPreferences sharedPreferences(ref) => throw UnimplementedError(); - -@riverpod -Directory? appDirectory(ref) => throw UnimplementedError(); - -@riverpod -HiveCacheStore hiveCacheStore(HiveCacheStoreRef ref) => - HiveCacheStore(ref.watch(appDirectoryProvider)?.path); - -@riverpod -Queue rateLimitQueue(RateLimitQueueRef ref, [String? query]) { - final queue = Queue( - parallel: 3, - delay: const Duration(milliseconds: 500), - ); - ref.onDispose(() { - queue.cancel(); - }); - return queue; -} diff --git a/lib/src/global_providers/global_providers.g.dart b/lib/src/global_providers/global_providers.g.dart deleted file mode 100644 index 8f316dfd..00000000 --- a/lib/src/global_providers/global_providers.g.dart +++ /dev/null @@ -1,247 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'global_providers.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$dioClientKeyHash() => r'3c0bdf6561be103898cbba24855ca355c5dfba6b'; - -/// See also [dioClientKey]. -@ProviderFor(dioClientKey) -final dioClientKeyProvider = AutoDisposeProvider.internal( - dioClientKey, - name: r'dioClientKeyProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$dioClientKeyHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef DioClientKeyRef = AutoDisposeProviderRef; -String _$sharedPreferencesHash() => r'dd034076f3a6cac11ba173b2ebd1bd0debcadd42'; - -/// See also [sharedPreferences]. -@ProviderFor(sharedPreferences) -final sharedPreferencesProvider = - AutoDisposeProvider.internal( - sharedPreferences, - name: r'sharedPreferencesProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$sharedPreferencesHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef SharedPreferencesRef = AutoDisposeProviderRef; -String _$appDirectoryHash() => r'598612365ff87cbdf65761e923161467412ec463'; - -/// See also [appDirectory]. -@ProviderFor(appDirectory) -final appDirectoryProvider = AutoDisposeProvider.internal( - appDirectory, - name: r'appDirectoryProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$appDirectoryHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef AppDirectoryRef = AutoDisposeProviderRef; -String _$hiveCacheStoreHash() => r'9b2759c40cc610a05bf24953b306f6dec44cb2e6'; - -/// See also [hiveCacheStore]. -@ProviderFor(hiveCacheStore) -final hiveCacheStoreProvider = AutoDisposeProvider.internal( - hiveCacheStore, - name: r'hiveCacheStoreProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$hiveCacheStoreHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef HiveCacheStoreRef = AutoDisposeProviderRef; -String _$rateLimitQueueHash() => r'160a82b2737ac46d9dabad1f6ae8f59bfdcb24ca'; - -/// Copied from Dart SDK -class _SystemHash { - _SystemHash._(); - - static int combine(int hash, int value) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + value); - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x0007ffff & hash) << 10)); - return hash ^ (hash >> 6); - } - - static int finish(int hash) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x03ffffff & hash) << 3)); - // ignore: parameter_assignments - hash = hash ^ (hash >> 11); - return 0x1fffffff & (hash + ((0x00003fff & hash) << 15)); - } -} - -/// See also [rateLimitQueue]. -@ProviderFor(rateLimitQueue) -const rateLimitQueueProvider = RateLimitQueueFamily(); - -/// See also [rateLimitQueue]. -class RateLimitQueueFamily extends Family { - /// See also [rateLimitQueue]. - const RateLimitQueueFamily(); - - /// See also [rateLimitQueue]. - RateLimitQueueProvider call([ - String? query, - ]) { - return RateLimitQueueProvider( - query, - ); - } - - @override - RateLimitQueueProvider getProviderOverride( - covariant RateLimitQueueProvider provider, - ) { - return call( - provider.query, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'rateLimitQueueProvider'; -} - -/// See also [rateLimitQueue]. -class RateLimitQueueProvider extends AutoDisposeProvider { - /// See also [rateLimitQueue]. - RateLimitQueueProvider([ - String? query, - ]) : this._internal( - (ref) => rateLimitQueue( - ref as RateLimitQueueRef, - query, - ), - from: rateLimitQueueProvider, - name: r'rateLimitQueueProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$rateLimitQueueHash, - dependencies: RateLimitQueueFamily._dependencies, - allTransitiveDependencies: - RateLimitQueueFamily._allTransitiveDependencies, - query: query, - ); - - RateLimitQueueProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.query, - }) : super.internal(); - - final String? query; - - @override - Override overrideWith( - Queue Function(RateLimitQueueRef provider) create, - ) { - return ProviderOverride( - origin: this, - override: RateLimitQueueProvider._internal( - (ref) => create(ref as RateLimitQueueRef), - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - query: query, - ), - ); - } - - @override - AutoDisposeProviderElement createElement() { - return _RateLimitQueueProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is RateLimitQueueProvider && other.query == query; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, query.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin RateLimitQueueRef on AutoDisposeProviderRef { - /// The parameter `query` of this provider. - String? get query; -} - -class _RateLimitQueueProviderElement extends AutoDisposeProviderElement - with RateLimitQueueRef { - _RateLimitQueueProviderElement(super.provider); - - @override - String? get query => (origin as RateLimitQueueProvider).query; -} - -String _$authTypeKeyHash() => r'357e6f44cc8ac94656f8491ed9f6d1775ac52ec6'; - -/// See also [AuthTypeKey]. -@ProviderFor(AuthTypeKey) -final authTypeKeyProvider = - AutoDisposeNotifierProvider.internal( - AuthTypeKey.new, - name: r'authTypeKeyProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$authTypeKeyHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$AuthTypeKey = AutoDisposeNotifier; -String _$l10nHash() => r'1d15ba851371130f70b37ec77cbdc62ac6d9a7b8'; - -/// See also [L10n]. -@ProviderFor(L10n) -final l10nProvider = AutoDisposeNotifierProvider.internal( - L10n.new, - name: r'l10nProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$l10nHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$L10n = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/l10n/app_ar.arb b/lib/src/l10n/app_ar.arb deleted file mode 100644 index 47babc1a..00000000 --- a/lib/src/l10n/app_ar.arb +++ /dev/null @@ -1,854 +0,0 @@ -{ - "about": "حول", - "@about": { - "description": "Screen title and Button text of About screen" - }, - "addCategory": "إضافة فئة", - "@addCategory": { - "description": "Popup title and Button text to add new category in Edit Category Screen" - }, - "addToLibrary": "إضافة إلى المكتبة", - "@addToLibrary": { - "description": "Button text to add Manga to Library in Manga Details Screen" - }, - "appLanguage": "لغة التطبيق", - "@appLanguage": { - "description": "Popup title and Button text to change App Language" - }, - "appTheme": "مظهر التطبيق", - "@appTheme": { - "description": "Popup title and Button text to change App Theme" - }, - "appTitle": "تاشيديسك سورايومي", - "@appTitle": { - "description": "Name of the app (Tachidesk Sorayomi in native script)" - }, - "authType": "نوع المصادقة", - "@authType": { - "description": "Popup title and Button text to change App Authentication" - }, - "authTypeBasic": "مصادقة أساسية", - "@authTypeBasic": { - "description": "Radio button text for the Basic Authentication type" - }, - "authTypeNone": "بلا", - "@authTypeNone": { - "description": "Radio button text for no Authentication" - }, - "backup": "النسخ الاحتياطي و الاستعادة", - "@backup": { - "description": "Screen title and Button text of Backup & Restore screen" - }, - "badges": "الشارات", - "@badges": { - "description": "Checkbox Group title to enable Badges on manga Cover in Library Screen" - }, - "bookmarked": "لديها إشارات مرجعية", - "@bookmarked": { - "description": "Checkbox text to filter bookmarked manga chapters in Manga Details screen" - }, - "browse": "تصفح", - "@browse": { - "description": "Screen title, Navigation Bar text and Button text of both Browse screen and Browse Settings Screen" - }, - "buildTime": "تاريخ بناء الخادم", - "@buildTime": { - "description": "Text title to show build time of Server in About Screen" - }, - "cacheCleared": "تم تنظيف الملفات المؤقتة", - "@cacheCleared": { - "description": "Toast Text to show after clearing cache" - }, - "categories": "الفئات", - "@categories": { - "description": "Button text of edit Categories screen in Library settings screen" - }, - "categoryUpdate": "تحديث الفئة", - "@categoryUpdate": { - "description": "Button text to update the mangas in the Category" - }, - "chapterNumber": "الفصل {number}", - "@chapterNumber": { - "description": "Text title for Chapter name in chapter list", - "placeholders": { - "number": { - "example": "12.5", - "type": "double" - } - } - }, - "chapterSortFetchedDate": "حسب الموقع", - "@chapterSortFetchedDate": { - "description": "Radio button text for sort by Fetched Date" - }, - "chapterSortSource": "حسب المصدر", - "@chapterSortSource": { - "description": "Radio button text for sort by Source" - }, - "checkForServerUpdates": "تحقق من وجود تحديثات الخادم", - "@checkForServerUpdates": { - "description": "Button text to check for Server updates" - }, - "checkForUpdates": "تحقق من وجود تحديثات", - "@checkForUpdates": { - "description": "Button text to check for App Updates" - }, - "clearCache": "تنظيف الملفات المؤقتة", - "@clearCache": { - "description": "Button text for clear cache in General Settings screen" - }, - "client": "الوكيل", - "@client": { - "description": "Text title for the name of the client in About screen" - }, - "clientVersion": "إصدار الوكيل", - "@clientVersion": { - "description": "Text title for the current version of the client in About screen" - }, - "close": "إغلاق", - "@close": { - "description": "Text for close button" - }, - "completed": "مكتملة", - "@completed": { - "description": "Checkbox text to filter Completed mangas in Library screen and Manga Grouping text in Update Summary screen" - }, - "copyMsg": "'{msg}'‮ تم نسخ!", - "@copyMsg": { - "description": "Toast text to show that the message has been copied", - "placeholders": { - "msg": { - "example": "Client : Tachidesk Sorayomi", - "type": "String" - } - } - }, - "createBackupDescription": "النسخ الاحتياطي لمكتبة Tachidesk", - "@createBackupDescription": { - "description": "Button text description to create backup" - }, - "createBackupTitle": "إنشاء نسخة احتياطية", - "@createBackupTitle": { - "description": "Button text to create backup" - }, - "current": "الحالي", - "@current": { - "description": "Text to show the currently reading chapter in Reader Screen" - }, - "credentials": "الشهادات", - "@credentials": { - "description": "Popup title and Button text to enter Authentication credentials" - }, - "delete": "حذف", - "@delete": { - "description": "Text for delete button" - }, - "deleteCategoryDescription": "سيؤدي إلى دمج جميع المانجا في هذه الفئة إلى الافتراضية!", - "@deleteCategoryDescription": { - "description": "Popup description when deleting Category" - }, - "deleteCategoryTitle": "هل أنت متأكد؟", - "@deleteCategoryTitle": { - "description": "Popup title when deleting Category" - }, - "discord": "Discord", - "@discord": { - "description": "Discord app title" - }, - "display": "العرض", - "@display": { - "description": "Text for Display tab in Library screen drawer" - }, - "displayModeList": "قائمة", - "@displayModeList": { - "description": "Radio button text for Manga Cover display mode - List" - }, - "edit": "تعديل", - "@edit": { - "description": "Popup button text to edit Category in Edit category screen" - }, - "editCategory": "تعديل الفئة", - "@editCategory": { - "description": "Screen title, Button text and of Downloads screen" - }, - "emptyCategory": "لا يمكن أن يكون اسم الفئة فارغًا", - "@emptyCategory": { - "description": "Description to show that category list is empty in Edit Category screen" - }, - "errorFilePick": "لم يتم اختيار الملف!", - "@errorFilePick": { - "description": "Error Description to show when user does not selected an file" - }, - "errorFilePickUnknownExtension": "الرجاء تحديد ملف بالامتداد {extensionName}", - "@errorFilePickUnknownExtension": { - "description": "Error Description to show when user selected unknown extension file" - }, - "errorExtension": "تعذر العثور على الإضافة المحددة", - "@errorExtension": { - "description": "Error Description to show when user selected unknown extension from list" - }, - "errorPassword": "كلمة السر فارغة", - "@errorPassword": { - "description": "Error Description to show that password cannot be empty" - }, - "downloaded": "منزلة", - "@downloaded": { - "description": "Text to show downloaded chapters status in Filters " - }, - "downloads": "التنزيلات", - "@downloads": { - "description": "Screen title and Navigation text of Downloads screen" - }, - "errorSomethingWentWrong": "هناك خطأ ما!", - "@errorSomethingWentWrong": { - "description": "Error Description to show that Something went wrong!" - }, - "errorUserName": "اسم المستخدم فارغ", - "@errorUserName": { - "description": "Error Description to show that UserName cannot be empty" - }, - "extensionInstalled": "تم تحميل الإضافة!", - "@extensionInstalled": { - "description": "Toast text to show that the Extension Installed successfully" - }, - "extensionListEmpty": "قائمة الإضافات فارغة", - "@extensionListEmpty": { - "description": "Description to show that Extension list is empty in Extension list tab of Browse screen" - }, - "appearance": "المظهر", - "@appearance": { - "description": "Screen title and Button text of Appearance screen" - }, - "cancel": "إلغاء", - "@cancel": { - "description": "Text for Cancel button in a Popup" - }, - "channel": "النوع", - "@channel": { - "description": "Text title to show Channel of the Server (Stable, preview) in About Screen" - }, - "chapterSortUploadDate": "حسب تاريخ الإضافة", - "@chapterSortUploadDate": { - "description": "Radio button text for sort by Upload Date" - }, - "defaultCategory": "الفئة الافتراضية عند إضافة مانجا جديدة إلى المكتبة", - "@defaultCategory": { - "description": "Checkbox description when creating a Category to add manga to the Category by Default" - }, - "displayModeDescriptiveList": "قائمة وصفية", - "@displayModeDescriptiveList": { - "description": "Radio button text for Manga Cover display mode - Descriptive List" - }, - "displayMode": "وضع العرض", - "@displayMode": { - "description": "Radio Group title to change manga Cover display in Library and Source Screens" - }, - "displayModeGrid": "شبكة مدمجة", - "@displayModeGrid": { - "description": "Radio button text for Manga Cover display mode - Grid" - }, - "errorLaunchURL": "فشل في الفتح!\nنسخ \"{url}\" الى الحافظة", - "@errorLaunchURL": { - "description": "Error Description to show when App failed to launch an URL and copied the URL to clipboard", - "placeholders": { - "url": { - "example": "http://sorayomi.suwayomi.org", - "type": "String" - } - } - }, - "failed": "فشل", - "@failed": { - "description": "Failed status Manga Group title in Update Summary Screen" - }, - "extensions": "الإضافات", - "@extensions": { - "description": "Extension list Tab title in Browse Screen" - }, - "filter": "فرز", - "@filter": { - "description": "title of filter Tab across the app" - }, - "finished": "النهاية", - "@finished": { - "description": "Text to show the Currently Finished reading chapter in Reader Screen" - }, - "globalSearch": "البحث العام", - "@globalSearch": { - "description": "Screen title of Global Search screen" - }, - "globalUpdate": "تحديث الكل", - "@globalUpdate": { - "description": "Button text of Global Manga Update" - }, - "help": "مساعدة", - "@help": { - "description": "Button text of help in about screen" - }, - "inLibrary": "في المكتبة", - "@inLibrary": { - "description": "Button and Chip text to show that the manga is in Library" - }, - "library": "المكتبة", - "@library": { - "description": "Screen title and Button text of Library and Library Settings screen" - }, - "installingExtension": "جاري تحميل الاضافة", - "@installingExtension": { - "description": "Toast text to show that the extension is installing" - }, - "languages": "اللغات", - "@languages": { - "description": "Popup title to filter extensions based on language" - }, - "general": "عام", - "@general": { - "description": "Screen title and Button text of General setting screen" - }, - "installing": "جار التحميل", - "@installing": { - "description": "Button text to show that the extension is installing" - }, - "install": "تحميل", - "@install": { - "description": "Button text to install the extension" - }, - "latest": "الأخير", - "@latest": { - "description": "Button text to take user to the latest tab of Source manga screen" - }, - "noUpdatesAvailable": "أنت تستخدم أحدث إصدار", - "@noUpdatesAvailable": { - "description": "Text to show that the user is using the latest version of the app" - }, - "noUpdatesFound": "لم يتم العثور على تحديثات", - "@noUpdatesFound": { - "description": "Toast Text to show that there are no Updates available" - }, - "nsfw": "إظهار إضافات ومصادر NSFW", - "@nsfw": { - "description": "Switch text to show/hide the nsfw extensions" - }, - "noResultFound": "لم يتم العثور على نتائج", - "@noResultFound": { - "description": "Text to show that no results found for the given search query" - }, - "noSourcesFound": "لم يتم العثور على مصادر", - "@noSourcesFound": { - "description": "Text to show that the Source list is empty" - }, - "findServer": "ابحث", - "@findServer": { - "description": "Button text of Find Server" - }, - "manga": "مانجا", - "@manga": { - "description": "Screen title and Button text of Manga details screen" - }, - "mangaStatusCompleted": "مكتملة", - "@mangaStatusCompleted": { - "description": "Text to show Manga Status Completed in Manga details screen" - }, - "mangaGridSize": "حجم شبكة المانجا", - "@mangaGridSize": { - "description": "Popup title and Button text to change Manga Grid size" - }, - "mangaMissingSources": "مصادر المانجا المفقودة", - "@mangaMissingSources": { - "description": "Group title to show the Manga Missing Sources when restoring Backup" - }, - "mangaSortAlphabetical": "أبجدي", - "@mangaSortAlphabetical": { - "description": "Radio button text for Manga sort Type - Alphabetical" - }, - "mangaSortDateAdded": "تاريخ الإضافة", - "@mangaSortDateAdded": { - "description": "Radio button text for Manga sort Type - Date Added" - }, - "mangaSortUnread": "غير مقروء", - "@mangaSortUnread": { - "description": "Radio button text for Manga sort Type - Unread" - }, - "mangaSortLastRead": "آخر قراءة", - "@mangaSortLastRead": { - "description": "Radio button text for Manga sort Type - Last Read" - }, - "mangaStatusCancelled": "ألغيت", - "@mangaStatusCancelled": { - "description": "Text to show Manga Status Cancelled in Manga details screen" - }, - "mangaStatusLicensed": "مرخصة", - "@mangaStatusLicensed": { - "description": "Text to show Manga Status Licensed in Manga details screen" - }, - "mangaStatusOnHiatus": "في فترة توقف", - "@mangaStatusOnHiatus": { - "description": "Text to show Manga Status On Hiatus in Manga details screen" - }, - "mangaStatusOngoing": "مستمرة", - "@mangaStatusOngoing": { - "description": "Text to show Manga Status Ongoing in Manga details screen" - }, - "mangaStatusPublishingFinished": "انتهى النشر", - "@mangaStatusPublishingFinished": { - "description": "Text to show Manga Status Publishing Finished in Manga details screen" - }, - "mangaStatusUnknown": "غير معروف", - "@mangaStatusUnknown": { - "description": "Text to show Manga Status Unknown in Manga details screen" - }, - "missingExtension": "إضافات مفقودة", - "@missingExtension": { - "description": "Group title to show the Missing Extensions when restoring Backup" - }, - "missingTrackers": "التتبعات مفقودة", - "@missingTrackers": { - "description": "Group title to show the Missing Trackers when restoring Backup" - }, - "more": "أكثر", - "@more": { - "description": "Screen title and Navigation text of More screen" - }, - "moveToBottom": "الانتقال إلى أسفل", - "@moveToBottom": { - "description": "Button text to move download/category to the bottom of list" - }, - "moveToTop": "الانتقال إلى الأعلى", - "@moveToTop": { - "description": "Button text to move download/category to the top of list" - }, - "newUpdateAvailable": "تحديث جديد متاح", - "@newUpdateAvailable": { - "description": "Popup title to show that the App/Server has and update" - }, - "noCategoriesFound": "ليس لديك أي فئات. \n(نصيحة: اضغط على زر علامة الزائد لإنشاء فئة لتنظيم مكتبتك)", - "@noCategoriesFound": { - "description": "Hint text to add new Category when category list is empty" - }, - "noCategoriesFoundAlt": "ليس لديك أي فئات.\nقم بإنشاء فئة في الإعدادات لتنظيم مكتبتك", - "@noCategoriesFoundAlt": { - "description": "Hint text to add new Category in Settings when category list is empty" - }, - "noCategoryMangaFound": "لم يتم العثور على مانجا في هذه الفئة. \n(نصيحة: تحقق من البحث والفلاتر!)", - "@noCategoryMangaFound": { - "description": "Hint text to check filter when manga list is empty in Category tab in Library" - }, - "noChaptersFound": "لا يوجد فصول", - "@noChaptersFound": { - "description": "Text to show that the Chapter list is empty in Manga details Screen" - }, - "noDownloads": "لا يوجد تنزيلات", - "@noDownloads": { - "description": "Text to show that there is no active downloads in Downloads Screen" - }, - "noMangaFound": "لم يتم العثور على مانغا", - "@noMangaFound": { - "description": "Text to show that the Manga list is empty" - }, - "noOfChapters": "{count} فصل", - "@noOfChapters": { - "description": "Title text to show the number of chapters in the Manga details screen", - "placeholders": { - "count": { - "example": "23", - "type": "int" - } - } - }, - "noServerFound": "لا يوجد خادم في شبكتك المحلية", - "@noServerFound": { - "description": "Text to show that no Server found in locale network" - }, - "nsfw18": "18+", - "@nsfw18": { - "description": "18+ tag Text to show in extensions list" - }, - "numSelected": "المحددة {num}", - "@numSelected": { - "description": "Title text to show the number of chapters selected in the Manga details screen and Updates screen", - "placeholders": { - "num": { - "example": "23", - "type": "int" - } - } - }, - "nsfwInfo": "هذا لا يمنع الإضافات غير الرسمية أو التي يحتمل أن يتم وضع علامة عليها بشكل غير صحيح من الظهور على محتوى NSFW (18+) داخل التطبيق", - "@nsfwInfo": { - "description": "Hint text to show that the nsfw switch cannot prevent incorrectly flagged extensions from surfacing" - }, - "readerNavigationLayoutInvert": "بالنقر", - "@readerNavigationLayoutInvert": { - "description": "Switch title to invert Tap to scroll in reader screen" - }, - "readerScrollAnimation": "مؤثرات الانتقال بين الصفحات", - "@readerScrollAnimation": { - "description": "Switch title to Disable scroll animation in reader screen" - }, - "readerMagnifierSize": "حجم التكبير", - "@readerMagnifierSize": { - "description": "Slider title text for Reader Magnifier Size" - }, - "reddit": "Reddit", - "@reddit": { - "description": "Reddit app title" - }, - "refresh": "تحديث", - "@refresh": { - "description": "Refresh button text" - }, - "reset": "إعادة ضبط", - "@reset": { - "description": "Button text of reset button in source filters" - }, - "restoring": "جاري استعادة النسخة الاحتياطية", - "@restoring": { - "description": "Toast Text to show that the backup is restoring" - }, - "resume": "استأنف", - "@resume": { - "description": "Button Text to resume Chapter reading/downloading" - }, - "retry": "أعد المحاولة", - "@retry": { - "description": "Retry Button Text" - }, - "restored": "تمت استعادة النسخة الاحتياطية!", - "@restored": { - "description": "Toast Text to show that the backup has been restored" - }, - "serverVersion": "إصدار السيرفر", - "@serverVersion": { - "description": "Text title for the current version of the Server in About screen" - }, - "sort": "ترتيب", - "@sort": { - "description": "title of sort Tab across the app" - }, - "source": "المصدر", - "@source": { - "description": "Screen title and Button text of source screen" - }, - "settings": "الإعدادات", - "@settings": { - "description": "Screen title and Button text of Settings screen" - }, - "updates": "التحديثات", - "@updates": { - "description": "Screen title and Button text of Updates screen" - }, - "updatesSummary": "ملخص التحديثات", - "@updatesSummary": { - "description": "Screen title and Button text of Updates Summary screen" - }, - "unread": "غير مقروء", - "@unread": { - "description": "Checkbox text to unread bookmarked manga/chapters across app" - }, - "update": "تحديث", - "@update": { - "description": "Button text to update the extension" - }, - "updateCompleted": "اكتمل التحديث", - "@updateCompleted": { - "description": "Button text to show that extension update is completed" - }, - "gitHub": "GitHub", - "@gitHub": { - "description": "GitHub app title" - }, - "nameCountDisplay": "{name}: {count}", - "@nameCountDisplay": { - "description": "Text pattern to display an name and count in a string", - "placeholders": { - "name": { - "example": "Downloaded", - "type": "String" - }, - "count": { - "example": "22", - "type": "int" - } - } - }, - "readerModeContinuousVertical": "عمودي مستمر", - "@readerModeContinuousVertical": { - "description": "Radio button text for Reader Mode Type - Continuous Vertical" - }, - "obsolete": "قديمة", - "@obsolete": { - "description": "Text to show that the extension has become Obsolete" - }, - "page": "الصفحة: {number}", - "@page": { - "description": "Text to show the last read Page number of the chapter in Manga details screen", - "placeholders": { - "number": { - "example": "23", - "type": "int" - } - } - }, - "password": "كلمة المرور", - "@password": { - "description": "Title text for password field" - }, - "pause": "إيقاف", - "@pause": { - "description": "Button text to pause downloads" - }, - "pending": "في الانتظار", - "@pending": { - "description": "Pending status Manga Group title in Update Summary Screen" - }, - "reader": "القارئ", - "@reader": { - "description": "Screen title and Button text of Reader screen" - }, - "readerMode": "وضع القراءة", - "@readerMode": { - "description": "Popup title and Button text of Reader Mode popup" - }, - "readerModeDefaultReader": "الافتراضي", - "@readerModeDefaultReader": { - "description": "Radio button text for Reader Mode Type - Default" - }, - "readerModeContinuousHorizontalLTR": "افقي مستمر (من اليسار لليمين)", - "@readerModeContinuousHorizontalLTR": { - "description": "Radio button text for Reader Mode Type - Continuous Horizontal (LTR)" - }, - "readerModeContinuousHorizontalRTL": "افقي مستمر (من اليمين لليسار)", - "@readerModeContinuousHorizontalRTL": { - "description": "Radio button text for Reader Mode Type - Continuous Horizontal (RTL)" - }, - "readerModeSingleHorizontalLTR": "من اليسار لليمين", - "@readerModeSingleHorizontalLTR": { - "description": "Radio button text for Reader Mode Type - Single Horizontal (LTR)" - }, - "readerModeSingleHorizontalRTL": "من اليمين لليسار", - "@readerModeSingleHorizontalRTL": { - "description": "Radio button text for Reader Mode Type - Single Horizontal (RTL)" - }, - "readerModeSingleVertical": "عموديا", - "@readerModeSingleVertical": { - "description": "Radio button text for Reader Mode Type - Single Vertical" - }, - "readerModeWebtoon": "ويبتون", - "@readerModeWebtoon": { - "description": "Radio button text for Reader Mode Type - Webtoon" - }, - "readerNavigationLayout": "نوع الانتقال", - "@readerNavigationLayout": { - "description": "Popup title and Button text of Reader Navigation Layout popup" - }, - "readerNavigationLayoutDisabled": "تعطيل", - "@readerNavigationLayoutDisabled": { - "description": "Radio button text for Reader Navigation Layout - Disabled" - }, - "readerNavigationLayoutEdge": "في الحافة", - "@readerNavigationLayoutEdge": { - "description": "Radio button text for Reader Navigation Layout - Edge" - }, - "readerNavigationLayoutKindlish": "وضع الكيندل", - "@readerNavigationLayoutKindlish": { - "description": "Radio button text for Reader Navigation Layout - Kindle-ish" - }, - "readerNavigationLayoutDefault": "الافتراضي", - "@readerNavigationLayoutDefault": { - "description": "Radio button text for Reader Navigation Layout - Default" - }, - "readerNavigationLayoutLShaped": "شكل حرف L", - "@readerNavigationLayoutLShaped": { - "description": "Radio button text for Reader Navigation Layout - L Shaped" - }, - "readerNavigationLayoutRightAndLeft": "يمينا و يسارا", - "@readerNavigationLayoutRightAndLeft": { - "description": "Radio button text for Reader Navigation Layout - Right And Left" - }, - "running": "جاري", - "@running": { - "description": "Running status Manga Group title in Update Summary Screen" - }, - "save": "حفظ", - "@save": { - "description": "Save Button Text" - }, - "search": "البحث", - "@search": { - "description": "Search field hint Text" - }, - "searchingForUpdates": "البحث عن التحديثات", - "@searchingForUpdates": { - "description": "Toast Text for searching for updates of the App/Server" - }, - "server": "سيرفر", - "@server": { - "description": "Text title for the server in About screen" - }, - "serverUrl": "عنوان السيرفر", - "@serverUrl": { - "description": "Popup title and Button text to update Server Url" - }, - "serverUrlHintText": "أدخل عنوان السيرفر", - "@serverUrlHintText": { - "description": "Text Filed hint text to update Server Url" - }, - "serverPort": "منفذ السيرفر", - "@serverPort": { - "description": "Popup title and Button text to update Server Port" - }, - "serverPortHintText": "أدخل منفذ السيرفر", - "@serverPortHintText": { - "description": "Text Filed hint text to update Server Port" - }, - "sourceTypeFilter": "فرز", - "@sourceTypeFilter": { - "description": "Tab text Filter for source screen type" - }, - "sourceTypeLatest": "الحديثة", - "@sourceTypeLatest": { - "description": "Tab text Latest for source screen type" - }, - "sourceTypePopular": "الشائعة", - "@sourceTypePopular": { - "description": "Tab text Popular for source screen type" - }, - "sources": "المصادر", - "@sources": { - "description": "title of Sources Tab in Browse Screen" - }, - "start": "ابدأ", - "@start": { - "description": "Button text start reading the manga" - }, - "themeModeDark": "داكن", - "@themeModeDark": { - "description": "Radio button text for App theme - Dark" - }, - "themeModeLight": "فاتح", - "@themeModeLight": { - "description": "Radio button text for App theme - Light" - }, - "themeModeSystem": "النظام", - "@themeModeSystem": { - "description": "Radio button text for App theme - System" - }, - "uninstall": "إلغاء التثبيت", - "@uninstall": { - "description": "Button text to Uninstall the extension" - }, - "uninstalling": "جاري إلغاء التثبيت", - "@uninstalling": { - "description": "Button text to show that the extension is uninstalling" - }, - "unknownManga": "مانجا غير معروفة", - "@unknownManga": { - "description": "Text to show unknown manga in Manga details screen" - }, - "unknownSource": "المصدر مجهول", - "@unknownSource": { - "description": "Text to show unknown Source in Manga details screen" - }, - "updating": "جاري التحديث", - "@updating": { - "description": "Button text to show that the extension is updating" - }, - "userName": "اسم المستخدم", - "@userName": { - "description": "Title text for User Name field" - }, - "webUI": "فتح في المتصفح", - "@webUI": { - "description": "Button text to open in web UI" - }, - "webView": "عرض الويب", - "@webView": { - "description": "Button text to open manga website" - }, - "whatsNew": "ما الجديد؟", - "@whatsNew": { - "description": "Button text to open whats new page of app in web" - }, - "restoreBackupDescription": "استعادة Tachidesk من النسخة الاحتياطية", - "@restoreBackupDescription": { - "description": "Button text description to create backup" - }, - "restoreBackupTitle": "استعادة النسخة الاحتياطية", - "@restoreBackupTitle": { - "description": "Button text to create backup" - }, - "readerPadding": "ملاءمة القارىء", - "@readerPadding": { - "description": "Slider title text for Reader Padding" - }, - "unknownAuthor": "مؤلف مجهول", - "@unknownAuthor": { - "description": "Text to show unknown author in Manga details screen" - }, - "versionAvailable": "الإصدار {version} متاح لـ {app}!!", - "@versionAvailable": { - "description": "Text to show that there is an update to App/Server", - "placeholders": { - "app": { - "example": "Server", - "type": "String" - }, - "version": { - "example": "v0.4.2", - "type": "String" - } - } - }, - "quickSearchCategoryManga": "اذهب إلى المانجا 'M' في الفئة 'C'", - "@quickSearchCategoryManga": { - "description": "Quick Open Hint text for searching Manga M in Category C with prefill '#C/M'" - }, - "quickSearchSourceManga": "ابحث عن المانجا 'M' في المصدر 'S'", - "@quickSearchSourceManga": { - "description": "Quick Open Hint text for searching Manga M in Source S with prefill '@S/M'" - }, - "quickSearchCategoryMangaChapter": "انتقل إلى اسم الفصل 'CN' من المانجا 'M' في الفئة 'C'", - "@quickSearchCategoryMangaChapter": { - "description": "Quick Open Hint text for searching Chapter name CN from Manga M in Source S with prefill '#C/M:CN'" - }, - "scanlators": "فرق الترجمة", - "@scanlators": { - "description": "Title text for Scanlators" - }, - "allScanlators": "كل فرق الترجمة", - "@allScanlators": { - "description": "Text for all Scanlators in manga description screen chapter filter" - }, - "quickSearchContext": "للبحث عن استعلام (النتائج مبنية على معلومات الشاشة)", - "@quickSearchContext": { - "description": "Quick Open Hint text for query X" - }, - "quickSearchSource": "اذهب إلى المصدر 'S'", - "@quickSearchSource": { - "description": "Quick Open Hint text for Source S with prefill '@S'" - }, - "quickSearchCategory": "اذهب إلى الفئة 'C'", - "@quickSearchCategory": { - "description": "Quick Open Hint text for Category C with prefill '#C'" - }, - "today": "اليوم", - "@today": { - "description": "Today Text to show the release date of manga" - }, - "daysAgo": "منذ {days} أيام", - "@daysAgo": { - "description": "Days ago text to show the release date of manga" - }, - "yesterday": "أمس", - "@yesterday": { - "description": "Yesterday Text to show the release date of manga" - }, - "readerSwipeChapterToggle": "اسحب للانتقال", - "@readerSwipeChapterToggle": { - "description": "Switch title to toggle `swipe to change chapter` in reader screen" - }, - "readerSwipeChapterToggleDescription": "اسحب لتغير الفصل في القارئ", - "@readerSwipeChapterToggleDescription": { - "description": "Switch tile description for, toggle `swipe to change chapter` in reader screen" - } -} diff --git a/lib/src/l10n/app_de.arb b/lib/src/l10n/app_de.arb deleted file mode 100644 index 757189b8..00000000 --- a/lib/src/l10n/app_de.arb +++ /dev/null @@ -1,834 +0,0 @@ -{ - "library": "Bibltiotek", - "@library": { - "description": "Screen title and Button text of Library and Library Settings screen" - }, - "chapterSortUploadDate": "Nach Hochladedatum", - "@chapterSortUploadDate": { - "description": "Radio button text for sort by Upload Date" - }, - "client": "Endgerät", - "@client": { - "description": "Text title for the name of the client in About screen" - }, - "clientVersion": "Endgerät Version", - "@clientVersion": { - "description": "Text title for the current version of the client in About screen" - }, - "close": "Schließen", - "@close": { - "description": "Text for close button" - }, - "completed": "Abgeschlossen", - "@completed": { - "description": "Checkbox text to filter Completed mangas in Library screen and Manga Grouping text in Update Summary screen" - }, - "credentials": "Anmeldedaten", - "@credentials": { - "description": "Popup title and Button text to enter Authentication credentials" - }, - "current": "Aktuell", - "@current": { - "description": "Text to show the currently reading chapter in Reader Screen" - }, - "copyMsg": "'{msg}' kopiert!", - "@copyMsg": { - "description": "Toast text to show that the message has been copied", - "placeholders": { - "msg": { - "example": "Client : Tachidesk Sorayomi", - "type": "String" - } - } - }, - "createBackupDescription": "Bibliothek als Tachidesk backup sichern", - "@createBackupDescription": { - "description": "Button text description to create backup" - }, - "createBackupTitle": "Sicherung erstellen", - "@createBackupTitle": { - "description": "Button text to create backup" - }, - "delete": "Löschen", - "@delete": { - "description": "Text for delete button" - }, - "cacheCleared": "Zwischenspeicher geleert", - "@cacheCleared": { - "description": "Toast Text to show after clearing cache" - }, - "clearCache": "Zwischenspeicher leeren", - "@clearCache": { - "description": "Button text for clear cache in General Settings screen" - }, - "about": "Über", - "@about": { - "description": "Screen title and Button text of About screen" - }, - "addCategory": "Kategorie hinzufügen", - "@addCategory": { - "description": "Popup title and Button text to add new category in Edit Category Screen" - }, - "chapterNumber": "Kapitel {number}", - "@chapterNumber": { - "description": "Text title for Chapter name in chapter list", - "placeholders": { - "number": { - "example": "12.5", - "type": "double" - } - } - }, - "chapterSortFetchedDate": "Nach Abrufdatum", - "@chapterSortFetchedDate": { - "description": "Radio button text for sort by Fetched Date" - }, - "chapterSortSource": "Nach Quelle", - "@chapterSortSource": { - "description": "Radio button text for sort by Source" - }, - "checkForUpdates": "Nach Aktualisierungen suchen", - "@checkForUpdates": { - "description": "Button text to check for App Updates" - }, - "checkForServerUpdates": "Nach Serveraktualisierungen suchen", - "@checkForServerUpdates": { - "description": "Button text to check for Server updates" - }, - "addToLibrary": "Zur Bibliothek hinzufügen", - "@addToLibrary": { - "description": "Button text to add Manga to Library in Manga Details Screen" - }, - "appLanguage": "App Sprache", - "@appLanguage": { - "description": "Popup title and Button text to change App Language" - }, - "appTheme": "App Design", - "@appTheme": { - "description": "Popup title and Button text to change App Theme" - }, - "appTitle": "Tachidesk Sorayomi", - "@appTitle": { - "description": "Name of the app (Tachidesk Sorayomi in native script)" - }, - "appearance": "Aussehen", - "@appearance": { - "description": "Screen title and Button text of Appearance screen" - }, - "authType": "Authentifizierungsart", - "@authType": { - "description": "Popup title and Button text to change App Authentication" - }, - "authTypeBasic": "Basic Auth", - "@authTypeBasic": { - "description": "Radio button text for the Basic Authentication type" - }, - "authTypeNone": "Keine", - "@authTypeNone": { - "description": "Radio button text for no Authentication" - }, - "backup": "Sichern und wiederherstellen", - "@backup": { - "description": "Screen title and Button text of Backup & Restore screen" - }, - "badges": "Indikatoren", - "@badges": { - "description": "Checkbox Group title to enable Badges on manga Cover in Library Screen" - }, - "bookmarked": "Hat Lesezeichen", - "@bookmarked": { - "description": "Checkbox text to filter bookmarked manga chapters in Manga Details screen" - }, - "browse": "Suchen", - "@browse": { - "description": "Screen title, Navigation Bar text and Button text of both Browse screen and Browse Settings Screen" - }, - "buildTime": "Build time", - "@buildTime": { - "description": "Text title to show build time of Server in About Screen" - }, - "cancel": "Abbrechen", - "@cancel": { - "description": "Text for Cancel button in a Popup" - }, - "categories": "Kategorien", - "@categories": { - "description": "Button text of edit Categories screen in Library settings screen" - }, - "categoryUpdate": "Kategorie aktualisierung", - "@categoryUpdate": { - "description": "Button text to update the mangas in the Category" - }, - "channel": "Kanal", - "@channel": { - "description": "Text title to show Channel of the Server (Stable, preview) in About Screen" - }, - "defaultCategory": "Standard Kategorie, wenn neue Manga zur Bibliothek hinzugefügt werden", - "@defaultCategory": { - "description": "Checkbox description when creating a Category to add manga to the Category by Default" - }, - "readerPadding": "", - "@readerPadding": { - "description": "Slider title text for Reader Padding" - }, - "refresh": "", - "@refresh": { - "description": "Refresh button text" - }, - "retry": "", - "@retry": { - "description": "Retry Button Text" - }, - "running": "", - "@running": { - "description": "Running status Manga Group title in Update Summary Screen" - }, - "save": "", - "@save": { - "description": "Save Button Text" - }, - "search": "", - "@search": { - "description": "Search field hint Text" - }, - "sourceTypeFilter": "", - "@sourceTypeFilter": { - "description": "Tab text Filter for source screen type" - }, - "sourceTypeLatest": "", - "@sourceTypeLatest": { - "description": "Tab text Latest for source screen type" - }, - "sourceTypePopular": "", - "@sourceTypePopular": { - "description": "Tab text Popular for source screen type" - }, - "sources": "", - "@sources": { - "description": "title of Sources Tab in Browse Screen" - }, - "start": "", - "@start": { - "description": "Button text start reading the manga" - }, - "themeModeDark": "", - "@themeModeDark": { - "description": "Radio button text for App theme - Dark" - }, - "themeModeLight": "", - "@themeModeLight": { - "description": "Radio button text for App theme - Light" - }, - "themeModeSystem": "", - "@themeModeSystem": { - "description": "Radio button text for App theme - System" - }, - "uninstall": "", - "@uninstall": { - "description": "Button text to Uninstall the extension" - }, - "uninstalling": "", - "@uninstalling": { - "description": "Button text to show that the extension is uninstalling" - }, - "unknownAuthor": "", - "@unknownAuthor": { - "description": "Text to show unknown author in Manga details screen" - }, - "unknownManga": "", - "@unknownManga": { - "description": "Text to show unknown manga in Manga details screen" - }, - "unknownSource": "", - "@unknownSource": { - "description": "Text to show unknown Source in Manga details screen" - }, - "updates": "", - "@updates": { - "description": "Screen title and Button text of Updates screen" - }, - "updatesSummary": "", - "@updatesSummary": { - "description": "Screen title and Button text of Updates Summary screen" - }, - "updating": "", - "@updating": { - "description": "Button text to show that the extension is updating" - }, - "userName": "", - "@userName": { - "description": "Title text for User Name field" - }, - "versionAvailable": "", - "@versionAvailable": { - "description": "Text to show that there is an update to App/Server", - "placeholders": { - "app": { - "example": "Server", - "type": "String" - }, - "version": { - "example": "v0.4.2", - "type": "String" - } - } - }, - "downloads": "", - "@downloads": { - "description": "Screen title and Navigation text of Downloads screen" - }, - "errorPassword": "", - "@errorPassword": { - "description": "Error Description to show that password cannot be empty" - }, - "general": "", - "@general": { - "description": "Screen title and Button text of General setting screen" - }, - "gitHub": "", - "@gitHub": { - "description": "GitHub app title" - }, - "globalSearch": "", - "@globalSearch": { - "description": "Screen title of Global Search screen" - }, - "latest": "", - "@latest": { - "description": "Button text to take user to the latest tab of Source manga screen" - }, - "noCategoriesFoundAlt": "", - "@noCategoriesFoundAlt": { - "description": "Hint text to add new Category in Settings when category list is empty" - }, - "noCategoryMangaFound": "", - "@noCategoryMangaFound": { - "description": "Hint text to check filter when manga list is empty in Category tab in Library" - }, - "noUpdatesFound": "", - "@noUpdatesFound": { - "description": "Toast Text to show that there are no Updates available" - }, - "nsfw": "", - "@nsfw": { - "description": "Switch text to show/hide the nsfw extensions" - }, - "mangaSortDateAdded": "", - "@mangaSortDateAdded": { - "description": "Radio button text for Manga sort Type - Date Added" - }, - "noChaptersFound": "", - "@noChaptersFound": { - "description": "Text to show that the Chapter list is empty in Manga details Screen" - }, - "noDownloads": "", - "@noDownloads": { - "description": "Text to show that there is no active downloads in Downloads Screen" - }, - "noMangaFound": "", - "@noMangaFound": { - "description": "Text to show that the Manga list is empty" - }, - "noOfChapters": "", - "@noOfChapters": { - "description": "Title text to show the number of chapters in the Manga details screen", - "placeholders": { - "count": { - "example": "23", - "type": "int" - } - } - }, - "noResultFound": "", - "@noResultFound": { - "description": "Text to show that no results found for the given search query" - }, - "readerNavigationLayoutKindlish": "", - "@readerNavigationLayoutKindlish": { - "description": "Radio button text for Reader Navigation Layout - Kindle-ish" - }, - "quickSearchCategoryMangaChapter": "", - "@quickSearchCategoryMangaChapter": { - "description": "Quick Open Hint text for searching Chapter name CN from Manga M in Source S with prefill '#C/M:CN'" - }, - "allScanlators": "", - "@allScanlators": { - "description": "Text for all Scanlators in manga description screen chapter filter" - }, - "noCategoriesFound": "", - "@noCategoriesFound": { - "description": "Hint text to add new Category when category list is empty" - }, - "errorFilePickUnknownExtension": "", - "@errorFilePickUnknownExtension": { - "description": "Error Description to show when user selected unknown extension file" - }, - "readerScrollAnimation": "", - "@readerScrollAnimation": { - "description": "Switch title to Disable scroll animation in reader screen" - }, - "mangaMissingSources": "", - "@mangaMissingSources": { - "description": "Group title to show the Manga Missing Sources when restoring Backup" - }, - "mangaSortUnread": "", - "@mangaSortUnread": { - "description": "Radio button text for Manga sort Type - Unread" - }, - "emptyCategory": "", - "@emptyCategory": { - "description": "Description to show that category list is empty in Edit Category screen" - }, - "readerModeSingleHorizontalLTR": "", - "@readerModeSingleHorizontalLTR": { - "description": "Radio button text for Reader Mode Type - Single Horizontal (LTR)" - }, - "readerModeContinuousHorizontalRTL": "", - "@readerModeContinuousHorizontalRTL": { - "description": "Radio button text for Reader Mode Type - Continuous Horizontal (RTL)" - }, - "deleteCategoryDescription": "", - "@deleteCategoryDescription": { - "description": "Popup description when deleting Category" - }, - "languages": "", - "@languages": { - "description": "Popup title to filter extensions based on language" - }, - "mangaGridSize": "", - "@mangaGridSize": { - "description": "Popup title and Button text to change Manga Grid size" - }, - "installing": "", - "@installing": { - "description": "Button text to show that the extension is installing" - }, - "quickSearchContext": "", - "@quickSearchContext": { - "description": "Quick Open Hint text for query X" - }, - "inLibrary": "", - "@inLibrary": { - "description": "Button and Chip text to show that the manga is in Library" - }, - "readerModeSingleVertical": "", - "@readerModeSingleVertical": { - "description": "Radio button text for Reader Mode Type - Single Vertical" - }, - "manga": "", - "@manga": { - "description": "Screen title and Button text of Manga details screen" - }, - "edit": "", - "@edit": { - "description": "Popup button text to edit Category in Edit category screen" - }, - "quickSearchSource": "", - "@quickSearchSource": { - "description": "Quick Open Hint text for Source S with prefill '@S'" - }, - "readerNavigationLayoutLShaped": "", - "@readerNavigationLayoutLShaped": { - "description": "Radio button text for Reader Navigation Layout - L Shaped" - }, - "readerModeContinuousHorizontalLTR": "", - "@readerModeContinuousHorizontalLTR": { - "description": "Radio button text for Reader Mode Type - Continuous Horizontal (LTR)" - }, - "downloaded": "", - "@downloaded": { - "description": "Text to show downloaded chapters status in Filters " - }, - "mangaSortAlphabetical": "", - "@mangaSortAlphabetical": { - "description": "Radio button text for Manga sort Type - Alphabetical" - }, - "install": "", - "@install": { - "description": "Button text to install the extension" - }, - "readerNavigationLayout": "", - "@readerNavigationLayout": { - "description": "Popup title and Button text of Reader Navigation Layout popup" - }, - "errorExtension": "", - "@errorExtension": { - "description": "Error Description to show when user selected unknown extension from list" - }, - "quickSearchCategory": "", - "@quickSearchCategory": { - "description": "Quick Open Hint text for Category C with prefill '#C'" - }, - "errorUserName": "", - "@errorUserName": { - "description": "Error Description to show that UserName cannot be empty" - }, - "extensionInstalled": "", - "@extensionInstalled": { - "description": "Toast text to show that the Extension Installed successfully" - }, - "finished": "", - "@finished": { - "description": "Text to show the Currently Finished reading chapter in Reader Screen" - }, - "readerModeSingleHorizontalRTL": "", - "@readerModeSingleHorizontalRTL": { - "description": "Radio button text for Reader Mode Type - Single Horizontal (RTL)" - }, - "readerNavigationLayoutEdge": "", - "@readerNavigationLayoutEdge": { - "description": "Radio button text for Reader Navigation Layout - Edge" - }, - "noUpdatesAvailable": "", - "@noUpdatesAvailable": { - "description": "Text to show that the user is using the latest version of the app" - }, - "quickSearchSourceManga": "", - "@quickSearchSourceManga": { - "description": "Quick Open Hint text for searching Manga M in Source S with prefill '@S/M'" - }, - "editCategory": "", - "@editCategory": { - "description": "Screen title, Button text and of Downloads screen" - }, - "noServerFound": "", - "@noServerFound": { - "description": "Text to show that no Server found in locale network" - }, - "readerNavigationLayoutInvert": "", - "@readerNavigationLayoutInvert": { - "description": "Switch title to invert Tap to scroll in reader screen" - }, - "nsfw18": "", - "@nsfw18": { - "description": "18+ tag Text to show in extensions list" - }, - "mangaStatusCompleted": "", - "@mangaStatusCompleted": { - "description": "Text to show Manga Status Completed in Manga details screen" - }, - "quickSearchCategoryManga": "", - "@quickSearchCategoryManga": { - "description": "Quick Open Hint text for searching Manga M in Category C with prefill '#C/M'" - }, - "deleteCategoryTitle": "", - "@deleteCategoryTitle": { - "description": "Popup title when deleting Category" - }, - "readerNavigationLayoutDisabled": "", - "@readerNavigationLayoutDisabled": { - "description": "Radio button text for Reader Navigation Layout - Disabled" - }, - "mangaSortLastRead": "", - "@mangaSortLastRead": { - "description": "Radio button text for Manga sort Type - Last Read" - }, - "mangaStatusCancelled": "", - "@mangaStatusCancelled": { - "description": "Text to show Manga Status Cancelled in Manga details screen" - }, - "noSourcesFound": "", - "@noSourcesFound": { - "description": "Text to show that the Source list is empty" - }, - "readerNavigationLayoutDefault": "", - "@readerNavigationLayoutDefault": { - "description": "Radio button text for Reader Navigation Layout - Default" - }, - "errorSomethingWentWrong": "", - "@errorSomethingWentWrong": { - "description": "Error Description to show that Something went wrong!" - }, - "scanlators": "", - "@scanlators": { - "description": "Title text for Scanlators" - }, - "errorFilePick": "", - "@errorFilePick": { - "description": "Error Description to show when user does not selected an file" - }, - "nameCountDisplay": "", - "@nameCountDisplay": { - "description": "Text pattern to display an name and count in a string", - "placeholders": { - "name": { - "example": "Downloaded", - "type": "String" - }, - "count": { - "example": "22", - "type": "int" - } - } - }, - "readerModeContinuousVertical": "", - "@readerModeContinuousVertical": { - "description": "Radio button text for Reader Mode Type - Continuous Vertical" - }, - "errorLaunchURL": "", - "@errorLaunchURL": { - "description": "Error Description to show when App failed to launch an URL and copied the URL to clipboard", - "placeholders": { - "url": { - "example": "http://sorayomi.suwayomi.org", - "type": "String" - } - } - }, - "globalUpdate": "", - "@globalUpdate": { - "description": "Button text of Global Manga Update" - }, - "installingExtension": "", - "@installingExtension": { - "description": "Toast text to show that the extension is installing" - }, - "readerModeWebtoon": "", - "@readerModeWebtoon": { - "description": "Radio button text for Reader Mode Type - Webtoon" - }, - "failed": "", - "@failed": { - "description": "Failed status Manga Group title in Update Summary Screen" - }, - "readerModeDefaultReader": "", - "@readerModeDefaultReader": { - "description": "Radio button text for Reader Mode Type - Default" - }, - "update": "", - "@update": { - "description": "Button text to update the extension" - }, - "resume": "", - "@resume": { - "description": "Button Text to resume Chapter reading/downloading" - }, - "findServer": "", - "@findServer": { - "description": "Button text of Find Server" - }, - "help": "", - "@help": { - "description": "Button text of help in about screen" - }, - "readerNavigationLayoutRightAndLeft": "", - "@readerNavigationLayoutRightAndLeft": { - "description": "Radio button text for Reader Navigation Layout - Right And Left" - }, - "readerMagnifierSize": "", - "@readerMagnifierSize": { - "description": "Slider title text for Reader Magnifier Size" - }, - "reset": "", - "@reset": { - "description": "Button text of reset button in source filters" - }, - "restoreBackupDescription": "", - "@restoreBackupDescription": { - "description": "Button text description to create backup" - }, - "restoreBackupTitle": "", - "@restoreBackupTitle": { - "description": "Button text to create backup" - }, - "restored": "", - "@restored": { - "description": "Toast Text to show that the backup has been restored" - }, - "restoring": "", - "@restoring": { - "description": "Toast Text to show that the backup is restoring" - }, - "serverPort": "", - "@serverPort": { - "description": "Popup title and Button text to update Server Port" - }, - "serverPortHintText": "", - "@serverPortHintText": { - "description": "Text Filed hint text to update Server Port" - }, - "source": "", - "@source": { - "description": "Screen title and Button text of source screen" - }, - "unread": "", - "@unread": { - "description": "Checkbox text to unread bookmarked manga/chapters across app" - }, - "updateCompleted": "", - "@updateCompleted": { - "description": "Button text to show that extension update is completed" - }, - "discord": "", - "@discord": { - "description": "Discord app title" - }, - "display": "", - "@display": { - "description": "Text for Display tab in Library screen drawer" - }, - "displayMode": "", - "@displayMode": { - "description": "Radio Group title to change manga Cover display in Library and Source Screens" - }, - "displayModeDescriptiveList": "", - "@displayModeDescriptiveList": { - "description": "Radio button text for Manga Cover display mode - Descriptive List" - }, - "displayModeGrid": "", - "@displayModeGrid": { - "description": "Radio button text for Manga Cover display mode - Grid" - }, - "displayModeList": "", - "@displayModeList": { - "description": "Radio button text for Manga Cover display mode - List" - }, - "extensionListEmpty": "", - "@extensionListEmpty": { - "description": "Description to show that Extension list is empty in Extension list tab of Browse screen" - }, - "extensions": "", - "@extensions": { - "description": "Extension list Tab title in Browse Screen" - }, - "filter": "", - "@filter": { - "description": "title of filter Tab across the app" - }, - "mangaStatusLicensed": "", - "@mangaStatusLicensed": { - "description": "Text to show Manga Status Licensed in Manga details screen" - }, - "mangaStatusOnHiatus": "", - "@mangaStatusOnHiatus": { - "description": "Text to show Manga Status On Hiatus in Manga details screen" - }, - "mangaStatusOngoing": "", - "@mangaStatusOngoing": { - "description": "Text to show Manga Status Ongoing in Manga details screen" - }, - "mangaStatusPublishingFinished": "", - "@mangaStatusPublishingFinished": { - "description": "Text to show Manga Status Publishing Finished in Manga details screen" - }, - "mangaStatusUnknown": "", - "@mangaStatusUnknown": { - "description": "Text to show Manga Status Unknown in Manga details screen" - }, - "missingExtension": "", - "@missingExtension": { - "description": "Group title to show the Missing Extensions when restoring Backup" - }, - "missingTrackers": "", - "@missingTrackers": { - "description": "Group title to show the Missing Trackers when restoring Backup" - }, - "more": "", - "@more": { - "description": "Screen title and Navigation text of More screen" - }, - "moveToBottom": "", - "@moveToBottom": { - "description": "Button text to move download/category to the bottom of list" - }, - "moveToTop": "", - "@moveToTop": { - "description": "Button text to move download/category to the top of list" - }, - "newUpdateAvailable": "", - "@newUpdateAvailable": { - "description": "Popup title to show that the App/Server has and update" - }, - "nsfwInfo": "", - "@nsfwInfo": { - "description": "Hint text to show that the nsfw switch cannot prevent incorrectly flagged extensions from surfacing" - }, - "numSelected": "", - "@numSelected": { - "description": "Title text to show the number of chapters selected in the Manga details screen and Updates screen", - "placeholders": { - "num": { - "example": "23", - "type": "int" - } - } - }, - "obsolete": "", - "@obsolete": { - "description": "Text to show that the extension has become Obsolete" - }, - "page": "", - "@page": { - "description": "Text to show the last read Page number of the chapter in Manga details screen", - "placeholders": { - "number": { - "example": "23", - "type": "int" - } - } - }, - "password": "", - "@password": { - "description": "Title text for password field" - }, - "pause": "", - "@pause": { - "description": "Button text to pause downloads" - }, - "pending": "", - "@pending": { - "description": "Pending status Manga Group title in Update Summary Screen" - }, - "reader": "", - "@reader": { - "description": "Screen title and Button text of Reader screen" - }, - "readerMode": "", - "@readerMode": { - "description": "Popup title and Button text of Reader Mode popup" - }, - "reddit": "", - "@reddit": { - "description": "Reddit app title" - }, - "serverUrlHintText": "", - "@serverUrlHintText": { - "description": "Text Filed hint text to update Server Url" - }, - "searchingForUpdates": "", - "@searchingForUpdates": { - "description": "Toast Text for searching for updates of the App/Server" - }, - "server": "", - "@server": { - "description": "Text title for the server in About screen" - }, - "serverUrl": "", - "@serverUrl": { - "description": "Popup title and Button text to update Server Url" - }, - "serverVersion": "", - "@serverVersion": { - "description": "Text title for the current version of the Server in About screen" - }, - "settings": "", - "@settings": { - "description": "Screen title and Button text of Settings screen" - }, - "sort": "", - "@sort": { - "description": "title of sort Tab across the app" - }, - "webUI": "", - "@webUI": { - "description": "Button text to open in web UI" - }, - "webView": "", - "@webView": { - "description": "Button text to open manga website" - }, - "whatsNew": "", - "@whatsNew": { - "description": "Button text to open whats new page of app in web" - } -} diff --git a/lib/src/l10n/app_en.arb b/lib/src/l10n/app_en.arb deleted file mode 100644 index 681db081..00000000 --- a/lib/src/l10n/app_en.arb +++ /dev/null @@ -1,920 +0,0 @@ -{ - "@@locale": "en", - "@about": { - "description": "Screen title and Button text of About screen" - }, - "@addCategory": { - "description": "Popup title and Button text to add new category in Edit Category Screen" - }, - "@addToLibrary": { - "description": "Button text to add Manga to Library in Manga Details Screen" - }, - "@allScanlators": { - "description": "Text for all Scanlators in manga description screen chapter filter" - }, - "@appLanguage": { - "description": "Popup title and Button text to change App Language" - }, - "@appTheme": { - "description": "Popup title and Button text to change App Theme Mode" - }, - "@appTitle": { - "description": "Name of the app (Tachidesk Sorayomi in native script)" - }, - "@appearance": { - "description": "Screen title and Button text of Appearance screen" - }, - "@authType": { - "description": "Popup title and Button text to change App Authentication" - }, - "@authTypeBasic": { - "description": "Radio button text for the Basic Authentication type" - }, - "@authTypeNone": { - "description": "Radio button text for no Authentication" - }, - "@backup": { - "description": "Screen title and Button text of Backup & Restore screen" - }, - "@badges": { - "description": "Checkbox Group title to enable Badges on manga Cover in Library Screen" - }, - "@bookmarked": { - "description": "Checkbox text to filter bookmarked manga chapters in Manga Details screen" - }, - "@browse": { - "description": "Screen title, Navigation Bar text and Button text of both Browse screen and Browse Settings Screen" - }, - "@buildTime": { - "description": "Text title to show build time of Server in About Screen" - }, - "@cacheCleared": { - "description": "Toast Text to show after clearing cache" - }, - "@cancel": { - "description": "Text for Cancel button in a Popup" - }, - "@categories": { - "description": "Button text of edit Categories screen in Library settings screen" - }, - "@categoryUpdate": { - "description": "Button text to update the mangas in the Category" - }, - "@channel": { - "description": "Text title to show Channel of the Server (Stable, preview) in About Screen" - }, - "@chapterNumber": { - "description": "Text title for Chapter name in chapter list", - "placeholders": { - "number": { - "example": "12.5", - "type": "double" - } - } - }, - "@chapterSortFetchedDate": { - "description": "Radio button text for sort by Fetched Date" - }, - "@chapterSortSource": { - "description": "Radio button text for sort by Source" - }, - "@chapterSortUploadDate": { - "description": "Radio button text for sort by Upload Date" - }, - "@checkForServerUpdates": { - "description": "Button text to check for Server updates" - }, - "@checkForUpdates": { - "description": "Button text to check for App Updates" - }, - "@clearCache": { - "description": "Button text for clear cache in General Settings screen" - }, - "@client": { - "description": "Text title for the name of the client in About screen" - }, - "@clientVersion": { - "description": "Text title for the current version of the client in About screen" - }, - "@close": { - "description": "Text for close button" - }, - "@completed": { - "description": "Checkbox text to filter Completed mangas in Library screen and Manga Grouping text in Update Summary screen" - }, - "@copyMsg": { - "description": "Toast text to show that the message has been copied", - "placeholders": { - "msg": { - "example": "Client : Tachidesk Sorayomi", - "type": "String" - } - } - }, - "@createBackupDescription": { - "description": "Button text description to create backup" - }, - "@createBackupTitle": { - "description": "Button text to create backup" - }, - "@credentials": { - "description": "Popup title and Button text to enter Authentication credentials" - }, - "@current": { - "description": "Text to show the currently reading chapter in Reader Screen" - }, - "@daysAgo": { - "description": "Days ago text to show the release date of manga" - }, - "@defaultCategory": { - "description": "Checkbox description when creating a Category to add manga to the Category by Default" - }, - "@delete": { - "description": "Text for delete button" - }, - "@deleteCategoryDescription": { - "description": "Popup description when deleting Category" - }, - "@deleteCategoryTitle": { - "description": "Popup title when deleting Category" - }, - "@discord": { - "description": "Discord app title" - }, - "@display": { - "description": "Text for Display tab in Library screen drawer" - }, - "@displayMode": { - "description": "Radio Group title to change manga Cover display in Library and Source Screens" - }, - "@displayModeDescriptiveList": { - "description": "Radio button text for Manga Cover display mode - Descriptive List" - }, - "@displayModeGrid": { - "description": "Radio button text for Manga Cover display mode - Grid" - }, - "@displayModeList": { - "description": "Radio button text for Manga Cover display mode - List" - }, - "@downloaded": { - "description": "Text to show downloaded chapters status in Filters " - }, - "@downloads": { - "description": "Screen title and Navigation text of Downloads screen" - }, - "@edit": { - "description": "Popup button text to edit Category in Edit category screen" - }, - "@editCategory": { - "description": "Screen title, Button text and of Downloads screen" - }, - "@emptyCategory": { - "description": "Description to show that category list is empty in Edit Category screen" - }, - "@errorExtension": { - "description": "Error Description to show when user selected unknown extension from list" - }, - "@errorFilePick": { - "description": "Error Description to show when user does not selected an file" - }, - "@errorFilePickUnknownExtension": { - "description": "Error Description to show when user selected unknown extension file" - }, - "@errorLaunchURL": { - "description": "Error Description to show when App failed to launch an URL and copied the URL to clipboard", - "placeholders": { - "url": { - "example": "http://sorayomi.suwayomi.org", - "type": "String" - } - } - }, - "@errorPassword": { - "description": "Error Description to show that password cannot be empty" - }, - "@errorSomethingWentWrong": { - "description": "Error Description to show that Something went wrong!" - }, - "@errorUserName": { - "description": "Error Description to show that UserName cannot be empty" - }, - "@extensionInstalled": { - "description": "Toast text to show that the Extension Installed successfully" - }, - "@extensionListEmpty": { - "description": "Description to show that Extension list is empty in Extension list tab of Browse screen" - }, - "@extensions": { - "description": "Extension list Tab title in Browse Screen" - }, - "@failed": { - "description": "Failed status Manga Group title in Update Summary Screen" - }, - "@filter": { - "description": "title of filter Tab across the app" - }, - "@findServer": { - "description": "Button text of Find Server" - }, - "@finished": { - "description": "Text to show the Currently Finished reading chapter in Reader Screen" - }, - "@general": { - "description": "Screen title and Button text of General setting screen" - }, - "@gitHub": { - "description": "GitHub app title" - }, - "@globalSearch": { - "description": "Screen title of Global Search screen" - }, - "@globalUpdate": { - "description": "Button text of Global Manga Update" - }, - "@help": { - "description": "Button text of help in about screen" - }, - "@inLibrary": { - "description": "Button and Chip text to show that the manga is in Library" - }, - "@install": { - "description": "Button text to install the extension" - }, - "@installing": { - "description": "Button text to show that the extension is installing" - }, - "@installingExtension": { - "description": "Toast text to show that the extension is installing" - }, - "@isTrueBlack": { - "description": "Switch title to enable {} black theme" - }, - "@languages": { - "description": "Popup title to filter extensions based on language" - }, - "@latest": { - "description": "Button text to take user to the latest tab of Source manga screen" - }, - "@library": { - "description": "Screen title and Button text of Library and Library Settings screen" - }, - "@manga": { - "description": "Screen title and Button text of Manga details screen" - }, - "@mangaGridSize": { - "description": "Popup title and Button text to change Manga Grid size" - }, - "@mangaMissingSources": { - "description": "Group title to show the Manga Missing Sources when restoring Backup" - }, - "@mangaSortAlphabetical": { - "description": "Radio button text for Manga sort Type - Alphabetical" - }, - "@mangaSortDateAdded": { - "description": "Radio button text for Manga sort Type - Date Added" - }, - "@mangaSortLastRead": { - "description": "Radio button text for Manga sort Type - Last Read" - }, - "@mangaSortUnread": { - "description": "Radio button text for Manga sort Type - Unread" - }, - "@mangaStatusCancelled": { - "description": "Text to show Manga Status Cancelled in Manga details screen" - }, - "@mangaStatusCompleted": { - "description": "Text to show Manga Status Completed in Manga details screen" - }, - "@mangaStatusLicensed": { - "description": "Text to show Manga Status Licensed in Manga details screen" - }, - "@mangaStatusOnHiatus": { - "description": "Text to show Manga Status On Hiatus in Manga details screen" - }, - "@mangaStatusOngoing": { - "description": "Text to show Manga Status Ongoing in Manga details screen" - }, - "@mangaStatusPublishingFinished": { - "description": "Text to show Manga Status Publishing Finished in Manga details screen" - }, - "@mangaStatusUnknown": { - "description": "Text to show Manga Status Unknown in Manga details screen" - }, - "@missingExtension": { - "description": "Group title to show the Missing Extensions when restoring Backup" - }, - "@missingTrackers": { - "description": "Group title to show the Missing Trackers when restoring Backup" - }, - "@more": { - "description": "Screen title and Navigation text of More screen" - }, - "@moveToBottom": { - "description": "Button text to move download/category to the bottom of list" - }, - "@moveToTop": { - "description": "Button text to move download/category to the top of list" - }, - "@nameCountDisplay": { - "description": "Text pattern to display an name and count in a string", - "placeholders": { - "count": { - "example": "22", - "type": "int" - }, - "name": { - "example": "Downloaded", - "type": "String" - } - } - }, - "@newUpdateAvailable": { - "description": "Popup title to show that the App/Server has and update" - }, - "@nextChapter": { - "description": "Text for Next Chapter button in Manga Reader Screen" - }, - "@noCategoriesFound": { - "description": "Hint text to add new Category when category list is empty" - }, - "@noCategoriesFoundAlt": { - "description": "Hint text to add new Category in Settings when category list is empty" - }, - "@noCategoryMangaFound": { - "description": "Hint text to check filter when manga list is empty in Category tab in Library" - }, - "@noChaptersFound": { - "description": "Text to show that the Chapter list is empty in Manga details Screen" - }, - "@noDownloads": { - "description": "Text to show that there is no active downloads in Downloads Screen" - }, - "@noMangaFound": { - "description": "Text to show that the Manga list is empty" - }, - "@noOfChapters": { - "description": "Title text to show the number of chapters in the Manga details screen", - "placeholders": { - "count": { - "example": "23", - "type": "int" - } - } - }, - "@noResultFound": { - "description": "Text to show that no results found for the given search query" - }, - "@noServerFound": { - "description": "Text to show that no Server found in locale network" - }, - "@noSourcesFound": { - "description": "Text to show that the Source list is empty" - }, - "@noUpdatesAvailable": { - "description": "Text to show that the user is using the latest version of the app" - }, - "@noUpdatesFound": { - "description": "Toast Text to show that there are no Updates available" - }, - "@nsfw": { - "description": "Switch text to show/hide the nsfw extensions" - }, - "@nsfw18": { - "description": "18+ tag Text to show in extensions list" - }, - "@nsfwInfo": { - "description": "Hint text to show that the nsfw switch cannot prevent incorrectly flagged extensions from surfacing" - }, - "@numSelected": { - "description": "Title text to show the number of chapters selected in the Manga details screen and Updates screen", - "placeholders": { - "num": { - "example": "23", - "type": "int" - } - } - }, - "@obsolete": { - "description": "Text to show that the extension has become Obsolete" - }, - "@page": { - "description": "Text to show the last read Page number of the chapter in Manga details screen", - "placeholders": { - "number": { - "example": "23", - "type": "int" - } - } - }, - "@password": { - "description": "Title text for password field" - }, - "@pause": { - "description": "Button text to pause downloads" - }, - "@pending": { - "description": "Pending status Manga Group title in Update Summary Screen" - }, - "@pinchToZoom": { - "description": "Switch title to enable pinch to zoom in reader screen" - }, - "@previousChapter": { - "description": "Text for Previous Chapter button in Manga Reader Screen" - }, - "@quickSearch": { - "description": "Screen title and Button text of Quick Search screen" - }, - "@quickSearchCategory": { - "description": "Quick Open Hint text for Category C with prefill '#C'" - }, - "@quickSearchCategoryManga": { - "description": "Quick Open Hint text for searching Manga M in Category C with prefill '#C/M'" - }, - "@quickSearchCategoryMangaChapter": { - "description": "Quick Open Hint text for searching Chapter name CN from Manga M in Source S with prefill '#C/M:CN'" - }, - "@quickSearchContext": { - "description": "Quick Open Hint text for query X" - }, - "@quickSearchShowAllCommandTip": { - "description": "Quick Open Tip text for showing all commands by entering '?'" - }, - "@quickSearchSource": { - "description": "Quick Open Hint text for Source S with prefill '@S'" - }, - "@quickSearchSourceManga": { - "description": "Quick Open Hint text for searching Manga M in Source S with prefill '@S/M'" - }, - "@reader": { - "description": "Screen title and Button text of Reader screen" - }, - "@readerMagnifierSize": { - "description": "Slider title text for Reader Magnifier Size" - }, - "@readerMode": { - "description": "Popup title and Button text of Reader Mode popup" - }, - "@readerModeContinuousHorizontalLTR": { - "description": "Radio button text for Reader Mode Type - Continuous Horizontal (LTR)" - }, - "@readerModeContinuousHorizontalRTL": { - "description": "Radio button text for Reader Mode Type - Continuous Horizontal (RTL)" - }, - "@readerModeContinuousVertical": { - "description": "Radio button text for Reader Mode Type - Continuous Vertical" - }, - "@readerModeDefaultReader": { - "description": "Radio button text for Reader Mode Type - Default" - }, - "@readerModeSingleHorizontalLTR": { - "description": "Radio button text for Reader Mode Type - Single Horizontal (LTR)" - }, - "@readerModeSingleHorizontalRTL": { - "description": "Radio button text for Reader Mode Type - Single Horizontal (RTL)" - }, - "@readerModeSingleVertical": { - "description": "Radio button text for Reader Mode Type - Single Vertical" - }, - "@readerModeWebtoon": { - "description": "Radio button text for Reader Mode Type - Webtoon" - }, - "@readerNavigationLayout": { - "description": "Popup title and Button text of Reader Navigation Layout popup" - }, - "@readerNavigationLayoutDefault": { - "description": "Radio button text for Reader Navigation Layout - Default" - }, - "@readerNavigationLayoutDisabled": { - "description": "Radio button text for Reader Navigation Layout - Disabled" - }, - "@readerNavigationLayoutEdge": { - "description": "Radio button text for Reader Navigation Layout - Edge" - }, - "@readerNavigationLayoutInvert": { - "description": "Switch title to invert Tap to scroll in reader screen" - }, - "@readerNavigationLayoutKindlish": { - "description": "Radio button text for Reader Navigation Layout - Kindle-ish" - }, - "@readerNavigationLayoutLShaped": { - "description": "Radio button text for Reader Navigation Layout - L Shaped" - }, - "@readerNavigationLayoutRightAndLeft": { - "description": "Radio button text for Reader Navigation Layout - Right And Left" - }, - "@readerOverlay": { - "description": "Toggle subtile text for Initial Reader Overlay" - }, - "@readerPadding": { - "description": "Slider title text for Reader Padding" - }, - "@readerScrollAnimation": { - "description": "Switch title to Disable scroll animation in reader screen" - }, - "@readerSwipeChapterToggle": { - "description": "Switch title to toggle `swipe to change chapter` in reader screen" - }, - "@readerSwipeChapterToggleDescription": { - "description": "Switch tile description for, toggle `swipe to change chapter` in reader screen" - }, - "@readerVolumeTap": { - "description": "Switch button text for Reader Page Navigation with Volume Tap" - }, - "@readerVolumeTapInvert": { - "description": "Switch button text to invert Volume Tap " - }, - "@readerVolumeTapSubtitle": { - "description": "Switch button Subtitle text for Reader Page Navigation with Volume Tap" - }, - "@reddit": { - "description": "Reddit app title" - }, - "@refresh": { - "description": "Refresh button text" - }, - "@reload": { - "description": "Reload button text" - }, - "@remove": { - "description": "Remove Button text" - }, - "@removeFromLibrary": { - "description": "Remove From Library Popup text" - }, - "@reset": { - "description": "Button text of reset button in source filters" - }, - "@restoreBackupDescription": { - "description": "Button text description to create backup" - }, - "@restoreBackupTitle": { - "description": "Button text to create backup" - }, - "@restored": { - "description": "Toast Text to show that the backup has been restored" - }, - "@restoring": { - "description": "Toast Text to show that the backup is restoring" - }, - "@resume": { - "description": "Button Text to resume Chapter reading/downloading" - }, - "@retry": { - "description": "Retry Button Text" - }, - "@running": { - "description": "Running status Manga Group title in Update Summary Screen" - }, - "@save": { - "description": "Save Button Text" - }, - "@scanlators": { - "description": "Title text for Scanlators" - }, - "@search": { - "description": "Search field hint Text" - }, - "@searchingForUpdates": { - "description": "Toast Text for searching for updates of the App/Server" - }, - "@selectInBetween": { - "description": "Toast Text for selecting chapters in between first and last Chapters" - }, - "@selectNext10": { - "description": "Toast Text for selecting next 10 chapters" - }, - "@selectUnread": { - "description": "Popup Text for selecting unread chapters" - }, - "@server": { - "description": "Text title for the server in About screen" - }, - "@serverPort": { - "description": "Popup title and Button text to update Server Port" - }, - "@serverPortHintText": { - "description": "Text Filed hint text to update Server Port" - }, - "@serverUrl": { - "description": "Popup title and Button text to update Server Url" - }, - "@serverUrlHintText": { - "description": "Text Filed hint text to update Server Url" - }, - "@serverVersion": { - "description": "Text title for the current version of the Server in About screen" - }, - "@settings": { - "description": "Screen title and Button text of Settings screen" - }, - "@sort": { - "description": "title of sort Tab across the app" - }, - "@source": { - "description": "Screen title and Button text of source screen" - }, - "@sourceTypeFilter": { - "description": "Tab text Filter for source screen type" - }, - "@sourceTypeLatest": { - "description": "Tab text Latest for source screen type" - }, - "@sourceTypePopular": { - "description": "Tab text Popular for source screen type" - }, - "@sources": { - "description": "title of Sources Tab in Browse Screen" - }, - "@start": { - "description": "Button text start reading the manga" - }, - "@themeModeDark": { - "description": "Radio button text for App theme - Dark" - }, - "@themeModeLight": { - "description": "Radio button text for App theme - Light" - }, - "@themeModeSystem": { - "description": "Radio button text for App theme - System" - }, - "@today": { - "description": "Today Text to show the release date of manga" - }, - "@uninstall": { - "description": "Button text to Uninstall the extension" - }, - "@uninstalling": { - "description": "Button text to show that the extension is uninstalling" - }, - "@unknownAuthor": { - "description": "Text to show unknown author in Manga details screen" - }, - "@unknownManga": { - "description": "Text to show unknown manga in Manga details screen" - }, - "@unknownSource": { - "description": "Text to show unknown Source in Manga details screen" - }, - "@unread": { - "description": "Checkbox text to unread bookmarked manga/chapters across app" - }, - "@update": { - "description": "Button text to update the extension" - }, - "@updateCompleted": { - "description": "Button text to show that extension update is completed" - }, - "@updates": { - "description": "Screen title and Button text of Updates screen" - }, - "@updatesSummary": { - "description": "Screen title and Button text of Updates Summary screen" - }, - "@updating": { - "description": "Button text to show that the extension is updating" - }, - "@userName": { - "description": "Title text for User Name field" - }, - "@versionAvailable": { - "description": "Text to show that there is an update to App/Server", - "placeholders": { - "app": { - "example": "Server", - "type": "String" - }, - "version": { - "example": "v0.4.2", - "type": "String" - } - } - }, - "@webUI": { - "description": "Button text to open in web UI" - }, - "@webView": { - "description": "Button text to open manga website" - }, - "@whatsNew": { - "description": "Button text to open whats new page of app in web" - }, - "@yesterday": { - "description": "Yesterday Text to show the release date of manga" - }, - "about": "About", - "addCategory": "Add Category", - "addToLibrary": "Add to Library", - "allScanlators": "All Scanlators", - "appLanguage": "App Language", - "appTheme": "App Theme Mode", - "appTitle": "Tachidesk Sorayomi", - "appearance": "Appearance", - "authType": "Authentication Type", - "authTypeBasic": "Basic Auth", - "authTypeNone": "None", - "backup": "Backup & Restore", - "badges": "Badges", - "bookmarked": "Bookmarked", - "browse": "Browse", - "buildTime": "Build time", - "cacheCleared": "Cache Cleared", - "cancel": "Cancel", - "categories": "Categories", - "categoryUpdate": "Category Update", - "channel": "Channel", - "chapterNumber": "Chapter {number}", - "chapterSortFetchedDate": "By Fetched Date", - "chapterSortSource": "By Source", - "chapterSortUploadDate": "By Upload Date", - "checkForServerUpdates": "Check for Server updates", - "checkForUpdates": "Check for updates", - "clearCache": "Clear Cache", - "client": "Client", - "clientVersion": "Client version", - "close": "Close", - "completed": "Completed", - "copyMsg": "'{msg}' Copied!", - "createBackupDescription": "Backup library as a Tachidesk backup", - "createBackupTitle": "Create Backup", - "credentials": "Credentials", - "current": "Current", - "daysAgo": "{days} days ago", - "defaultCategory": "Default category when adding new manga to library", - "delete": "Delete", - "deleteCategoryDescription": "This will merge all Mangas in this Category to Default!", - "deleteCategoryTitle": "Are you sure?", - "discord": "Discord", - "display": "Display", - "displayMode": "Display Mode", - "displayModeDescriptiveList": "Descriptive List", - "displayModeGrid": "Grid", - "displayModeList": "List", - "downloaded": "Downloaded", - "downloads": "Downloads", - "edit": "Edit", - "editCategory": "Edit Category", - "emptyCategory": "Category name can't be Empty", - "errorExtension": "Can't find the selected extension", - "errorFilePick": "File not selected!", - "errorFilePickUnknownExtension": "Please select a file with {extensionName} extension", - "errorLaunchURL": "Failed to open!\nCopying \"{url}\" to clipboard", - "errorPassword": "Password can't be empty", - "errorSomethingWentWrong": "Something went wrong!", - "errorUserName": "UserName can't be empty", - "extensionInstalled": "Extension Installed!", - "extensionListEmpty": "Extension list is Empty", - "extensions": "Extensions", - "failed": "Failed", - "filter": "Filter", - "findServer": "Find", - "finished": "Finished", - "general": "General", - "gitHub": "GitHub", - "globalSearch": "Global Search", - "globalUpdate": "Global Update", - "help": "Help", - "inLibrary": "In library", - "install": "Install", - "installing": "Installing", - "installingExtension": "Installing Extension", - "isTrueBlack": "True Black", - "languages": "Languages", - "latest": "Latest", - "library": "Library", - "manga": "Manga", - "mangaGridSize": "Manga Grid Size", - "mangaMissingSources": "Manga Missing Sources", - "mangaSortAlphabetical": "Alphabetical", - "mangaSortDateAdded": "Date Added", - "mangaSortLastRead": "Last Read", - "mangaSortUnread": "Unread", - "mangaStatusCancelled": "Cancelled", - "mangaStatusCompleted": "Completed", - "mangaStatusLicensed": "Licensed", - "mangaStatusOnHiatus": "On Hiatus", - "mangaStatusOngoing": "Ongoing", - "mangaStatusPublishingFinished": "Publishing Finished", - "mangaStatusUnknown": "Unknown", - "missingExtension": "Missing Extensions", - "missingTrackers": "Missing Trackers", - "more": "More", - "moveToBottom": "Move to Bottom", - "moveToTop": "Move to top", - "nameCountDisplay": "{name}: {count}", - "newUpdateAvailable": "New update available", - "nextChapter": "Next: {chapterTitle}", - "noCategoriesFound": "You don't have any Categories. \n(Tip: Tap the Plus button to create one for organizing your library)", - "noCategoriesFoundAlt": "You don't have any Categories. \nCreate one in settings for organizing your library", - "noCategoryMangaFound": "No manga found in this Category. \n(Tip: Check your search & filters!)", - "noChaptersFound": "No Chapters found", - "noDownloads": "No Downloads", - "noMangaFound": "No Mangas Found", - "noOfChapters": "{count} Chapters", - "noResultFound": "No results found", - "noServerFound": "No Server found in your local network", - "noSourcesFound": "No sources found", - "noUpdatesAvailable": "You're using the latest version", - "noUpdatesFound": "No updates found", - "nsfw": "Show NSFW extensions and sources", - "nsfw18": "18+", - "nsfwInfo": "This does not prevent unofficial or potentially incorrectly flagged extensions from surfacing NSFW(18+) content within app", - "numSelected": "{num} Selected", - "obsolete": "Obsolete", - "page": "Page: {number}", - "password": "Password", - "pause": "Pause", - "pending": "Pending", - "pinchToZoom": "Pinch to Zoom", - "previousChapter": "Previous: {chapterTitle}", - "quickSearch": "Quick Search", - "quickSearchCategory": "Go to Category 'C'", - "quickSearchCategoryManga": "Go to Manga 'M' in Category 'C'", - "quickSearchCategoryMangaChapter": "Go to Chapter Name 'CN' from Manga 'M' in Category 'C'", - "quickSearchContext": "Search for query X (Results are based on screen context)", - "quickSearchShowAllCommandTip": "Tip: Enter '?' to see all commands", - "quickSearchSource": "Go to Source 'S'", - "quickSearchSourceManga": "Search for Manga 'M' in Source 'S'", - "reader": "Reader", - "readerMagnifierSize": "Magnifier Size", - "readerMode": "Reading Mode", - "readerModeContinuousHorizontalLTR": "Continuous Horizontal (LTR)", - "readerModeContinuousHorizontalRTL": "Continuous Horizontal (RTL)", - "readerModeContinuousVertical": "Continuous Vertical", - "readerModeDefaultReader": "Default", - "readerModeSingleHorizontalLTR": "Single Horizontal (LTR)", - "readerModeSingleHorizontalRTL": "Single Horizontal (RTL)", - "readerModeSingleVertical": "Single Vertical", - "readerModeWebtoon": "Webtoon", - "readerNavigationLayout": "Navigation layout", - "readerNavigationLayoutDefault": "Default", - "readerNavigationLayoutDisabled": "Disabled", - "readerNavigationLayoutEdge": "Edge", - "readerNavigationLayoutInvert": "Invert tapping", - "readerNavigationLayoutKindlish": "Kindle-ish", - "readerNavigationLayoutLShaped": "L Shaped", - "readerNavigationLayoutRightAndLeft": "Right And Left", - "readerOverlay": "Reader initial overlay", - "readerOverlaySubtitle": "Shows title and quick settings when opening a chapter", - "readerPadding": "Reader Padding", - "readerScrollAnimation": "Scroll animation", - "readerSwipeChapterToggle": "Swipe toggle", - "readerSwipeChapterToggleDescription": "Swipe to change chapter in reader", - "readerVolumeTap": "Volume Keys", - "readerVolumeTapInvert": "Invert Volume Keys", - "readerVolumeTapSubtitle": "Navigate with Volume Keys", - "reddit": "Reddit", - "refresh": "Refresh", - "reload": "Reload", - "remove": "Remove", - "removeFromLibrary": "Remove from Library?", - "reset": "Reset", - "restoreBackupDescription": "Restore Tachidesk from backup", - "restoreBackupTitle": "Restore Backup", - "restored": "Backup restored!", - "restoring": "Restoring backup", - "resume": "Resume", - "retry": "Retry", - "running": "Running", - "save": "Save", - "scanlators": "Scanlators", - "search": "Search", - "searchingForUpdates": "Searching for updates", - "selectInBetween": "Select in between", - "selectNext10": "Select next 10", - "selectUnread": "Select Unread", - "server": "Server", - "serverPort": "Server Port", - "serverPortHintText": "Server port", - "serverUrl": "Server URL", - "serverUrlHintText": "Server url", - "serverVersion": "Server version", - "settings": "Settings", - "sort": "Sort", - "source": "Source", - "sourceTypeFilter": "Filter", - "sourceTypeLatest": "Latest", - "sourceTypePopular": "Popular", - "sources": "Sources", - "start": "Start", - "themeModeDark": "Dark", - "themeModeLight": "Light", - "themeModeSystem": "System", - "today": "Today", - "uninstall": "Uninstall", - "uninstalling": "Uninstalling", - "unknownAuthor": "Unknown Author", - "unknownManga": "Unknown Manga", - "unknownSource": "Unknown Source", - "unread": "Unread", - "update": "Update", - "updateCompleted": "Update Completed", - "updates": "Updates", - "updatesSummary": "Updates Summary", - "updating": "Updating", - "userName": "User Name", - "versionAvailable": "Version {version} available for {app}!!", - "webUI": "Open in WEB", - "webView": "Web View", - "whatsNew": "What's New?", - "yesterday": "Yesterday" -} diff --git a/lib/src/l10n/app_es.arb b/lib/src/l10n/app_es.arb deleted file mode 100644 index dff1580a..00000000 --- a/lib/src/l10n/app_es.arb +++ /dev/null @@ -1,509 +0,0 @@ -{ - "@@locale": "es", - "about": "Acerca de", - "@about": {}, - "addCategory": "Añadir categoría", - "@addCategory": {}, - "addToLibrary": "Añadir a la biblioteca", - "@addToLibrary": {}, - "appLanguage": "Idioma de la aplicación", - "@appLanguage": {}, - "appTheme": "Tema de la aplicación", - "@appTheme": {}, - "appTitle": "Tachidesk Sorayomi", - "@appTitle": {}, - "appearance": "Apariencia", - "@appearance": {}, - "authType": "Tipo de autenticación", - "@authType": {}, - "authTypeBasic": "Autenticación normal", - "@authTypeBasic": {}, - "authTypeNone": "Ninguna", - "@authTypeNone": {}, - "backup": "Copia de seguridad y restauración", - "@backup": {}, - "badges": "Insignias", - "@badges": {}, - "bookmarked": "Favoritos", - "@bookmarked": {}, - "browse": "Explorar", - "@browse": {}, - "buildTime": "Fecha de creación", - "@buildTime": {}, - "cancel": "Cancelar", - "@cancel": {}, - "categories": "Categorías", - "@categories": {}, - "category": "Categoría", - "@category": {}, - "categoryUpdate": "Actualizar categoría", - "@categoryUpdate": {}, - "channel": "Canal", - "@channel": {}, - "chapterNumber": "Capítulo {number}", - "@chapterNumber": {}, - "chapterSortFetchedDate": "Por fecha de búsqueda", - "@chapterSortFetchedDate": {}, - "chapterSortSource": "Por fuente", - "@chapterSortSource": {}, - "checkForServerUpdates": "Buscar actualización del servidor", - "@checkForServerUpdates": {}, - "checkForUpdates": "Buscar actualizaciones", - "@checkForUpdates": {}, - "client": "Cliente", - "@client": {}, - "clientVersion": "Versión del cliente", - "@clientVersion": {}, - "close": "Cerrar", - "@close": {}, - "completed": "Completado", - "@completed": {}, - "copyMsg": "'{msg}' ¡Copiado!", - "@copyMsg": {}, - "create": "Crear", - "@create": {}, - "createBackupDescription": "Copia de seguridad de biblioteca como copia de seguridad de Tachidesk", - "@createBackupDescription": {}, - "createBackupTitle": "Crear copia de seguridad", - "@createBackupTitle": {}, - "credentials": "Credenciales", - "@credentials": {}, - "current": "Actual", - "@current": {}, - "defaultCategory": "Categoría predeterminada al añadir un nuevo manga a la biblioteca", - "@defaultCategory": {}, - "delete": "Eliminar", - "@delete": {}, - "deleteCategoryDescription": "¡Esto quitará todos los mangas de esta categoría y los añadirá en predeterminado!", - "@deleteCategoryDescription": {}, - "deleteCategoryTitle": "¿Estás seguro?", - "@deleteCategoryTitle": {}, - "discord": "Discord", - "@discord": {}, - "display": "Vista", - "@display": {}, - "displayMode": "Modo de visualización", - "@displayMode": {}, - "displayModeDescriptiveList": "Lista descriptiva", - "@displayModeDescriptiveList": {}, - "displayModeGrid": "Cuadrícula", - "@displayModeGrid": {}, - "displayModeList": "Lista", - "@displayModeList": {}, - "downloaded": "Descargados", - "@downloaded": {}, - "downloads": "Descargas", - "@downloads": {}, - "edit": "Editar", - "@edit": {}, - "editCategory": "Editar categoría", - "@editCategory": {}, - "emptyCategory": "El nombre de la categoría no puede estar vacío", - "@emptyCategory": {}, - "errorExtension": "No se encontró la extensión seleccionada", - "@errorExtension": {}, - "errorFilePick": "¡Archivo no seleccionado!", - "@errorFilePick": {}, - "errorFilePickUnknownExtension": "¡Por favor, selecciona un archivo con la extensión {extensionName}", - "@errorFilePickUnknownExtension": {}, - "errorLaunchURL": "¡Error al abrir!\nCopiando \"{url}\" al portapapeles", - "@errorLaunchURL": {}, - "errorPassword": "La contraseña no puede estar en blanco", - "@errorPassword": {}, - "errorSomethingWentWrong": "¡Algo salió mal!", - "@errorSomethingWentWrong": {}, - "errorUserName": "El nombre de usuario no puede estar en blanco", - "@errorUserName": {}, - "extensionInstalled": "¡La extensión ha sido instalada!", - "@extensionInstalled": {}, - "extensionListEmpty": "La lista de extensiones está vacía", - "@extensionListEmpty": {}, - "extensions": "Extensiones", - "@extensions": {}, - "failed": "Fallido", - "@failed": {}, - "filter": "Filtro", - "@filter": {}, - "finished": "Finalizado", - "@finished": {}, - "general": "General", - "@general": {}, - "gitHub": "GitHub", - "@gitHub": {}, - "globalSearch": "Búsqueda global", - "@globalSearch": {}, - "globalUpdate": "Actualización global", - "@globalUpdate": {}, - "help": "Ayuda", - "@help": {}, - "inLibrary": "En biblioteca", - "@inLibrary": {}, - "install": "Instalar", - "@install": {}, - "installing": "Instalando", - "@installing": {}, - "installingExtension": "Instalando la extensión", - "@installingExtension": {}, - "languages": "Idioma", - "@languages": {}, - "latest": "Reciente", - "@latest": {}, - "library": "Biblioteca", - "@library": {}, - "manga": "Manga", - "@manga": {}, - "mangaMissingSources": "Fuentes del manga faltantes", - "@mangaMissingSources": {}, - "mangaSortAlphabetical": "Alfabético", - "@mangaSortAlphabetical": {}, - "mangaSortDateAdded": "Fecha añadida", - "@mangaSortDateAdded": {}, - "mangaSortUnread": "No leído", - "@mangaSortUnread": {}, - "mangaSortLastRead": "Última lectura", - "@mangaSortLastRead": {}, - "mangaStatusCancelled": "Cancelado", - "@mangaStatusCancelled": {}, - "mangaStatusCompleted": "Completado", - "@mangaStatusCompleted": {}, - "mangaStatusLicensed": "Con licencia", - "@mangaStatusLicensed": {}, - "mangaStatusOnHiatus": "En receso", - "@mangaStatusOnHiatus": {}, - "mangaStatusOngoing": "En publicación", - "@mangaStatusOngoing": {}, - "mangaStatusPublishingFinished": "Serie terminada", - "@mangaStatusPublishingFinished": {}, - "mangaStatusUnknown": "Desconocido", - "@mangaStatusUnknown": {}, - "missingExtension": "Extensiones faltantes", - "@missingExtension": {}, - "missingTrackers": "Rastreadores faltantes", - "@missingTrackers": {}, - "more": "Más", - "@more": {}, - "moveToBottom": "Mover al fondo", - "@moveToBottom": {}, - "moveToTop": "Mover al principio", - "@moveToTop": {}, - "nameCountDisplay": "{name}: {count}", - "@nameCountDisplay": {}, - "newUpdateAvailable": "Nueva actualización disponible", - "@newUpdateAvailable": {}, - "noCategoriesFound": "No tienes ninguna categoría.\n(Tip: Pulsa el botón Más para crear uno y organizar tu biblioteca)", - "@noCategoriesFound": {}, - "noCategoriesFoundAlt": "No tienes ninguna categoría.\nCrea uno en ajustes para organizar tu biblioteca", - "@noCategoriesFoundAlt": {}, - "noCategoryMangaFound": "No hay ningún manga en esta categoría.\n(Tip: ¡Comprueba tus búsquedas y filtros!)", - "@noCategoryMangaFound": {}, - "noChaptersFound": "No se encontraron capítulos", - "@noChaptersFound": {}, - "noDownloads": "No hay descargas", - "@noDownloads": {}, - "noMangaFound": "No se encontraron mangas", - "@noMangaFound": {}, - "noOfChapters": "{count} capítulos", - "@noOfChapters": {}, - "noResultFound": "Sin resultados", - "@noResultFound": {}, - "noSourcesFound": "No se encontraron fuentes", - "@noSourcesFound": {}, - "noUpdatesAvailable": "Estás usando la última versión", - "@noUpdatesAvailable": {}, - "noUpdatesFound": "Sin actualizaciones", - "@noUpdatesFound": {}, - "nsfw": "Mostrar fuentes y extensiones NSFW", - "@nsfw": {}, - "nsfw18": "18+", - "@nsfw18": {}, - "nsfwInfo": "Esto no evita que extensiones no oficiales o marcadas potencialmente de forma incorrecta muestren contenido para adultos (18+) en la aplicación", - "@nsfwInfo": {}, - "numSelected": "{num} seleccionado", - "@numSelected": {}, - "obsolete": "Obsoleta", - "@obsolete": {}, - "page": "Página: {number}", - "@page": {}, - "password": "Contraseña", - "@password": {}, - "pause": "Pausar", - "@pause": {}, - "pending": "Pendiente", - "@pending": {}, - "reader": "Lector", - "@reader": {}, - "readerMode": "Modo de lectura", - "@readerMode": {}, - "readerModeContinuousHorizontalLTR": "Horizontal continuo (IZQ-DER)", - "@readerModeContinuousHorizontalLTR": {}, - "readerModeContinuousHorizontalRTL": "Horizontal continuo (DER-IZQ)", - "@readerModeContinuousHorizontalRTL": {}, - "readerModeContinuousVertical": "Vertical continuo", - "@readerModeContinuousVertical": {}, - "readerModeDefaultReader": "Predeterminado", - "@readerModeDefaultReader": {}, - "readerModeSingleHorizontalLTR": "Horizontal individual (IZQ-DER)", - "@readerModeSingleHorizontalLTR": {}, - "readerModeSingleHorizontalRTL": "Horizontal individual (DER-IZQ)", - "@readerModeSingleHorizontalRTL": {}, - "readerModeSingleVertical": "Horizontal individual", - "@readerModeSingleVertical": {}, - "readerModeWebtoon": "Webtoon", - "@readerModeWebtoon": {}, - "readerNavigationLayout": "Tipo de navegación", - "@readerNavigationLayout": {}, - "readerNavigationLayoutDefault": "Predeterminado", - "@readerNavigationLayoutDefault": {}, - "readerNavigationLayoutDisabled": "Deshabilitado", - "@readerNavigationLayoutDisabled": {}, - "readerNavigationLayoutEdge": "Borde", - "@readerNavigationLayoutEdge": {}, - "readerNavigationLayoutInvert": "Invertir el toque", - "@readerNavigationLayoutInvert": {}, - "readerNavigationLayoutKindlish": "Estilo Kindle", - "@readerNavigationLayoutKindlish": {}, - "readerNavigationLayoutLShaped": "En forma de L", - "@readerNavigationLayoutLShaped": {}, - "readerNavigationLayoutRightAndLeft": "Derecha e Izquierda", - "@readerNavigationLayoutRightAndLeft": {}, - "reddit": "Reddit", - "@reddit": {}, - "refresh": "Refrescar", - "@refresh": {}, - "reset": "Restablecer", - "@reset": {}, - "restoreBackupDescription": "Restaurar Tachidesk desde copia de seguridad", - "@restoreBackupDescription": {}, - "restoreBackupTitle": "Restaurar copia de seguridad", - "@restoreBackupTitle": {}, - "restored": "¡Copia de seguridad restaurada!", - "@restored": {}, - "restoring": "Restaurando la copia de seguridad", - "@restoring": {}, - "resume": "Reanudar", - "@resume": {}, - "retry": "Reintentar", - "@retry": {}, - "running": "Ejecutando", - "@running": {}, - "save": "Guardar", - "@save": {}, - "search": "Buscar", - "@search": {}, - "searchingForUpdates": "Buscando actualizaciones", - "@searchingForUpdates": {}, - "server": "Servidor", - "@server": {}, - "serverUrl": "Enlace del servidor", - "@serverUrl": {}, - "serverUrlHintText": "Dirección Url del servidor", - "@serverUrlHintText": {}, - "serverVersion": "Versión del servidor", - "@serverVersion": {}, - "settings": "Ajustes", - "@settings": {}, - "sort": "Ordenar", - "@sort": {}, - "source": "Fuente", - "@source": {}, - "sourceTypeFilter": "Filtro", - "@sourceTypeFilter": {}, - "sourceTypeLatest": "Reciente", - "@sourceTypeLatest": {}, - "sourceTypePopular": "Popular", - "@sourceTypePopular": {}, - "sources": "Fuentes", - "@sources": {}, - "start": "Empezar", - "@start": {}, - "themeModeDark": "Oscuro", - "@themeModeDark": {}, - "themeModeLight": "Claro", - "@themeModeLight": {}, - "themeModeSystem": "Sistema", - "@themeModeSystem": {}, - "uninstall": "Desinstalar", - "@uninstall": {}, - "uninstalling": "Desinstalando", - "@uninstalling": {}, - "unknown": "Desconocido", - "@unknown": {}, - "unknownAuthor": "Autor desconocido", - "@unknownAuthor": {}, - "unknownManga": "Manga desconocido", - "@unknownManga": {}, - "unknownSource": "Fuente desconocida", - "@unknownSource": {}, - "unread": "Sin leer", - "@unread": {}, - "update": "Actualizar", - "@update": {}, - "updateCompleted": "Actualización completa", - "@updateCompleted": {}, - "updates": "Actualizaciones", - "@updates": {}, - "updatesSummary": "Resumen de actualizaciones", - "@updatesSummary": {}, - "updating": "Actualizando", - "@updating": {}, - "userName": "Nombre de usuario", - "@userName": {}, - "versionAvailable": "¡¡La versión {version} está disponible para {app}!!", - "@versionAvailable": {}, - "webUI": "Abrir en el navegador", - "@webUI": {}, - "webView": "WebView", - "@webView": {}, - "whatsNew": "¿Qué hay de nuevo?", - "@whatsNew": {}, - "readerPadding": "Anotaciones del lector", - "@readerPadding": { - "description": "Slider title text for Reader Padding" - }, - "mangaGridSize": "Tamaño de la cuadrícula del manga", - "@mangaGridSize": { - "description": "Popup title and Button text to change Manga Grid size" - }, - "cacheCleared": "Caché borrada", - "@cacheCleared": { - "description": "Toast Text to show after clearing cache" - }, - "chapterSortUploadDate": "Por fecha de subida", - "@chapterSortUploadDate": { - "description": "Radio button text for sort by Upload Date" - }, - "readerScrollAnimation": "Animación del desplazamiento", - "@readerScrollAnimation": { - "description": "Switch title to Disable scroll animation in reader screen" - }, - "readerMagnifierSize": "Tamaño de la lupa", - "@readerMagnifierSize": { - "description": "Slider title text for Reader Magnifier Size" - }, - "clearCache": "Borrar la caché", - "@clearCache": { - "description": "Button text for clear cache in General Settings screen" - }, - "findServer": "Encontrar", - "@findServer": { - "description": "Button text of Find Server" - }, - "serverPort": "Puerto del servidor", - "@serverPort": { - "description": "Popup title and Button text to update Server Port" - }, - "serverPortHintText": "Puerto del servidor", - "@serverPortHintText": { - "description": "Text Filed hint text to update Server Port" - }, - "noServerFound": "No se ha encontrado ningún servidor en tu red local", - "@noServerFound": { - "description": "Text to show that no Server found in locale network" - }, - "scanlators": "Scans", - "@scanlators": { - "description": "Title text for Scanlators" - }, - "quickSearchSource": "Ir a la fuente 'S'", - "@quickSearchSource": { - "description": "Quick Open Hint text for Source S with prefill '@S'" - }, - "allScanlators": "Todos los escáneres", - "@allScanlators": { - "description": "Text for all Scanlators in manga description screen chapter filter" - }, - "quickSearchCategoryManga": "Ir al manga 'M' en la categoría 'C'", - "@quickSearchCategoryManga": { - "description": "Quick Open Hint text for searching Manga M in Category C with prefill '#C/M'" - }, - "quickSearchCategoryMangaChapter": "Ir al capítulo \"CN\" del manga \"M\" en la categoría \"C\"", - "@quickSearchCategoryMangaChapter": { - "description": "Quick Open Hint text for searching Chapter name CN from Manga M in Source S with prefill '#C/M:CN'" - }, - "quickSearchCategory": "Ir a la categoría 'C'", - "@quickSearchCategory": { - "description": "Quick Open Hint text for Category C with prefill '#C'" - }, - "quickSearchContext": "Busca la consulta X (los resultados se basan en el contexto en pantalla)", - "@quickSearchContext": { - "description": "Quick Open Hint text for query X" - }, - "quickSearchSourceManga": "Buscar el manga 'M' en la fuente 'S'", - "@quickSearchSourceManga": { - "description": "Quick Open Hint text for searching Manga M in Source S with prefill '@S/M'" - }, - "today": "Hoy", - "@today": { - "description": "Today Text to show the release date of manga" - }, - "daysAgo": "Hace {days} días", - "@daysAgo": { - "description": "Days ago text to show the release date of manga" - }, - "readerSwipeChapterToggle": "Deslizar el dedo", - "@readerSwipeChapterToggle": { - "description": "Switch title to toggle `swipe to change chapter` in reader screen" - }, - "yesterday": "Ayer", - "@yesterday": { - "description": "Yesterday Text to show the release date of manga" - }, - "readerSwipeChapterToggleDescription": "Deslizar para cambiar de capítulo en el lector", - "@readerSwipeChapterToggleDescription": { - "description": "Switch tile description for, toggle `swipe to change chapter` in reader screen" - }, - "readerOverlay": "Superposición inicial del lector", - "@readerOverlay": { - "description": "Toggle tile text for Initial Reader Overlay" - }, - "reload": "Recargar", - "@reload": { - "description": "Reload button text" - }, - "previousChapter": "Anterior: {chapterTitle}", - "@previousChapter": { - "description": "Text for Previous Chapter button in Manga Reader Screen" - }, - "nextChapter": "Siguiente: {chapterTitle}", - "@nextChapter": { - "description": "Text for Next Chapter button in Manga Reader Screen" - }, - "selectInBetween": "Seleccionar entre", - "@selectInBetween": { - "description": "Toast Text for selecting chapters in between first and last Chapters" - }, - "readerOverlaySubtitle": "Muestra el título y los ajustes rápidos al abrir un capítulo", - "@readerOverlaySubtitle": {}, - "quickSearchShowAllCommandTip": "Consejo: Introduce '?' para ver todos los comandos", - "@quickSearchShowAllCommandTip": { - "description": "Quick Open Tip text for showing all commands by entering '?'" - }, - "selectNext10": "Seleccionar los 10 siguientes", - "@selectNext10": { - "description": "Toast Text for selecting next 10 chapters" - }, - "selectUnread": "Seleccionar los no leídos", - "@selectUnread": { - "description": "Popup Text for selecting unread chapters" - }, - "readerVolumeTapInvert": "Invertir los botones de volumen", - "@readerVolumeTapInvert": { - "description": "Switch button text to invert Volume Tap " - }, - "readerVolumeTap": "Botones de volumen", - "@readerVolumeTap": { - "description": "Switch button text for Reader Page Navigation with Volume Tap" - }, - "readerVolumeTapSubtitle": "Navegar con los botones de volumen", - "@readerVolumeTapSubtitle": { - "description": "Switch button Subtitle text for Reader Page Navigation with Volume Tap" - }, - "removeFromLibrary": "¿Quitar de la biblioteca?", - "@removeFromLibrary": { - "description": "Remove From Library Popup text" - }, - "remove": "Quitar", - "@remove": { - "description": "Remove Button text" - } -} diff --git a/lib/src/l10n/app_fr.arb b/lib/src/l10n/app_fr.arb deleted file mode 100644 index 4e7a9693..00000000 --- a/lib/src/l10n/app_fr.arb +++ /dev/null @@ -1,834 +0,0 @@ -{ - "bookmarked": "Marque-pages", - "@bookmarked": { - "description": "Checkbox text to filter bookmarked manga chapters in Manga Details screen" - }, - "cacheCleared": "Cache effacé", - "@cacheCleared": { - "description": "Toast Text to show after clearing cache" - }, - "finished": "Terminé", - "@finished": { - "description": "Text to show the Currently Finished reading chapter in Reader Screen" - }, - "languages": "Langues", - "@languages": { - "description": "Popup title to filter extensions based on language" - }, - "addCategory": "Ajouter une catégorie", - "@addCategory": { - "description": "Popup title and Button text to add new category in Edit Category Screen" - }, - "addToLibrary": "Ajouter à la bibliothèque", - "@addToLibrary": { - "description": "Button text to add Manga to Library in Manga Details Screen" - }, - "appTheme": "Thème de l'application", - "@appTheme": { - "description": "Popup title and Button text to change App Theme" - }, - "appTitle": "Tachidesk Sorayomi", - "@appTitle": { - "description": "Name of the app (Tachidesk Sorayomi in native script)" - }, - "browse": "Parcourir", - "@browse": { - "description": "Screen title, Navigation Bar text and Button text of both Browse screen and Browse Settings Screen" - }, - "cancel": "Annuler", - "@cancel": { - "description": "Text for Cancel button in a Popup" - }, - "categories": "Catégories", - "@categories": { - "description": "Button text of edit Categories screen in Library settings screen" - }, - "categoryUpdate": "Mise à jour de la catégorie", - "@categoryUpdate": { - "description": "Button text to update the mangas in the Category" - }, - "channel": "Canal", - "@channel": { - "description": "Text title to show Channel of the Server (Stable, preview) in About Screen" - }, - "chapterNumber": "Chapitre {number}", - "@chapterNumber": { - "description": "Text title for Chapter name in chapter list", - "placeholders": { - "number": { - "example": "12.5", - "type": "double" - } - } - }, - "chapterSortFetchedDate": "Par données récupérées", - "@chapterSortFetchedDate": { - "description": "Radio button text for sort by Fetched Date" - }, - "chapterSortSource": "Par source", - "@chapterSortSource": { - "description": "Radio button text for sort by Source" - }, - "chapterSortUploadDate": "Par date d'import", - "@chapterSortUploadDate": { - "description": "Radio button text for sort by Upload Date" - }, - "checkForServerUpdates": "Vérifier les mises à jour du serveur", - "@checkForServerUpdates": { - "description": "Button text to check for Server updates" - }, - "checkForUpdates": "Vérifier les mises à jour", - "@checkForUpdates": { - "description": "Button text to check for App Updates" - }, - "clearCache": "Effacer le cache", - "@clearCache": { - "description": "Button text for clear cache in General Settings screen" - }, - "client": "Client", - "@client": { - "description": "Text title for the name of the client in About screen" - }, - "clientVersion": "Version du client", - "@clientVersion": { - "description": "Text title for the current version of the client in About screen" - }, - "close": "Fermer", - "@close": { - "description": "Text for close button" - }, - "completed": "Terminé", - "@completed": { - "description": "Checkbox text to filter Completed mangas in Library screen and Manga Grouping text in Update Summary screen" - }, - "copyMsg": "« {msg} » copié !", - "@copyMsg": { - "description": "Toast text to show that the message has been copied", - "placeholders": { - "msg": { - "example": "Client : Tachidesk Sorayomi", - "type": "String" - } - } - }, - "createBackupDescription": "Sauvegarder la bibliothèque en tant que sauvegarde Tachidesk", - "@createBackupDescription": { - "description": "Button text description to create backup" - }, - "current": "En cours", - "@current": { - "description": "Text to show the currently reading chapter in Reader Screen" - }, - "delete": "Supprimer", - "@delete": { - "description": "Text for delete button" - }, - "deleteCategoryTitle": "Voulez-vous continuer ?", - "@deleteCategoryTitle": { - "description": "Popup title when deleting Category" - }, - "discord": "Discord", - "@discord": { - "description": "Discord app title" - }, - "display": "Affichage", - "@display": { - "description": "Text for Display tab in Library screen drawer" - }, - "downloaded": "Téléchargé", - "@downloaded": { - "description": "Text to show downloaded chapters status in Filters " - }, - "downloads": "Téléchargements", - "@downloads": { - "description": "Screen title and Navigation text of Downloads screen" - }, - "edit": "Modifier", - "@edit": { - "description": "Popup button text to edit Category in Edit category screen" - }, - "editCategory": "Modifier la catégorie", - "@editCategory": { - "description": "Screen title, Button text and of Downloads screen" - }, - "emptyCategory": "Le nom de la catégorie ne peut pas être vide", - "@emptyCategory": { - "description": "Description to show that category list is empty in Edit Category screen" - }, - "errorFilePick": "Aucun fichier sélectionné !", - "@errorFilePick": { - "description": "Error Description to show when user does not selected an file" - }, - "errorFilePickUnknownExtension": "Veuillez sélectionner un fichier avec l'extension {extensionName}", - "@errorFilePickUnknownExtension": { - "description": "Error Description to show when user selected unknown extension file" - }, - "errorLaunchURL": "Échec de l'ouverture !\nCopie de « {url} » dans le presse-papier", - "@errorLaunchURL": { - "description": "Error Description to show when App failed to launch an URL and copied the URL to clipboard", - "placeholders": { - "url": { - "example": "http://sorayomi.suwayomi.org", - "type": "String" - } - } - }, - "errorPassword": "Le mot de passe ne peut pas être vide", - "@errorPassword": { - "description": "Error Description to show that password cannot be empty" - }, - "errorSomethingWentWrong": "Une erreur s'est produite !", - "@errorSomethingWentWrong": { - "description": "Error Description to show that Something went wrong!" - }, - "errorUserName": "Le nom d'utilisateur ne peut pas être vide", - "@errorUserName": { - "description": "Error Description to show that UserName cannot be empty" - }, - "extensionInstalled": "Extension installée !", - "@extensionInstalled": { - "description": "Toast text to show that the Extension Installed successfully" - }, - "extensionListEmpty": "La liste des extensions est vide", - "@extensionListEmpty": { - "description": "Description to show that Extension list is empty in Extension list tab of Browse screen" - }, - "extensions": "Extensions", - "@extensions": { - "description": "Extension list Tab title in Browse Screen" - }, - "failed": "Échec", - "@failed": { - "description": "Failed status Manga Group title in Update Summary Screen" - }, - "filter": "Filtrer", - "@filter": { - "description": "title of filter Tab across the app" - }, - "general": "Général", - "@general": { - "description": "Screen title and Button text of General setting screen" - }, - "gitHub": "GitHub", - "@gitHub": { - "description": "GitHub app title" - }, - "globalSearch": "Recherche globale", - "@globalSearch": { - "description": "Screen title of Global Search screen" - }, - "deleteCategoryDescription": "Tous les mangas de cette catégorie seront ainsi ramenés à leur valeur par défaut !", - "@deleteCategoryDescription": { - "description": "Popup description when deleting Category" - }, - "globalUpdate": "Mise à jour globale", - "@globalUpdate": { - "description": "Button text of Global Manga Update" - }, - "help": "Aide", - "@help": { - "description": "Button text of help in about screen" - }, - "inLibrary": "Dans la bibliothèque", - "@inLibrary": { - "description": "Button and Chip text to show that the manga is in Library" - }, - "install": "Installer", - "@install": { - "description": "Button text to install the extension" - }, - "latest": "Le plus récent", - "@latest": { - "description": "Button text to take user to the latest tab of Source manga screen" - }, - "library": "Bibliothèque", - "@library": { - "description": "Screen title and Button text of Library and Library Settings screen" - }, - "manga": "Manga", - "@manga": { - "description": "Screen title and Button text of Manga details screen" - }, - "mangaSortUnread": "Non lu", - "@mangaSortUnread": { - "description": "Radio button text for Manga sort Type - Unread" - }, - "mangaSortLastRead": "Date de lecture", - "@mangaSortLastRead": { - "description": "Radio button text for Manga sort Type - Last Read" - }, - "mangaStatusLicensed": "Sous licence", - "@mangaStatusLicensed": { - "description": "Text to show Manga Status Licensed in Manga details screen" - }, - "mangaStatusOnHiatus": "En suspens", - "@mangaStatusOnHiatus": { - "description": "Text to show Manga Status On Hiatus in Manga details screen" - }, - "mangaStatusOngoing": "En cours", - "@mangaStatusOngoing": { - "description": "Text to show Manga Status Ongoing in Manga details screen" - }, - "mangaStatusPublishingFinished": "Publication terminée", - "@mangaStatusPublishingFinished": { - "description": "Text to show Manga Status Publishing Finished in Manga details screen" - }, - "mangaStatusUnknown": "Inconnu", - "@mangaStatusUnknown": { - "description": "Text to show Manga Status Unknown in Manga details screen" - }, - "missingExtension": "Extensions manquantes", - "@missingExtension": { - "description": "Group title to show the Missing Extensions when restoring Backup" - }, - "missingTrackers": "Pisteurs manquants", - "@missingTrackers": { - "description": "Group title to show the Missing Trackers when restoring Backup" - }, - "more": "Plus", - "@more": { - "description": "Screen title and Navigation text of More screen" - }, - "nameCountDisplay": "{name} : {count}", - "@nameCountDisplay": { - "description": "Text pattern to display an name and count in a string", - "placeholders": { - "name": { - "example": "Downloaded", - "type": "String" - }, - "count": { - "example": "22", - "type": "int" - } - } - }, - "newUpdateAvailable": "Nouvelle mise à jour disponible", - "@newUpdateAvailable": { - "description": "Popup title to show that the App/Server has and update" - }, - "noCategoriesFound": "Vous n'avez aucune catégorie. \n(Conseil : Appuyez sur le bouton Plus pour en créer une et organiser votre bibliothèque)", - "@noCategoriesFound": { - "description": "Hint text to add new Category when category list is empty" - }, - "noCategoriesFoundAlt": "Vous n'avez aucune catégorie. \nCréez-en une dans les paramètres pour organiser votre bibliothèque", - "@noCategoriesFoundAlt": { - "description": "Hint text to add new Category in Settings when category list is empty" - }, - "noCategoryMangaFound": "Aucun manga trouvé dans cette catégorie. \n(Conseil : Vérifiez votre recherche et vos filtres !)", - "@noCategoryMangaFound": { - "description": "Hint text to check filter when manga list is empty in Category tab in Library" - }, - "noChaptersFound": "Aucun chapitre trouvé", - "@noChaptersFound": { - "description": "Text to show that the Chapter list is empty in Manga details Screen" - }, - "noDownloads": "Aucun téléchargement", - "@noDownloads": { - "description": "Text to show that there is no active downloads in Downloads Screen" - }, - "noMangaFound": "Aucun manga trouvé", - "@noMangaFound": { - "description": "Text to show that the Manga list is empty" - }, - "noOfChapters": "{count} chapitres", - "@noOfChapters": { - "description": "Title text to show the number of chapters in the Manga details screen", - "placeholders": { - "count": { - "example": "23", - "type": "int" - } - } - }, - "noResultFound": "Aucun résultat trouvé", - "@noResultFound": { - "description": "Text to show that no results found for the given search query" - }, - "nsfw": "Afficher les extensions et les sources comportant du contenu explicite", - "@nsfw": { - "description": "Switch text to show/hide the nsfw extensions" - }, - "nsfw18": "18+", - "@nsfw18": { - "description": "18+ tag Text to show in extensions list" - }, - "nsfwInfo": "Cela n'empêche pas les extensions non officielles ou potentiellement signalées de manière incorrecte de faire apparaître du contenu explicite (18+) dans l'application", - "@nsfwInfo": { - "description": "Hint text to show that the nsfw switch cannot prevent incorrectly flagged extensions from surfacing" - }, - "readerModeContinuousHorizontalRTL": "Horizontal en continu (De droite à gauche)", - "@readerModeContinuousHorizontalRTL": { - "description": "Radio button text for Reader Mode Type - Continuous Horizontal (RTL)" - }, - "readerModeContinuousVertical": "Vertical en continu", - "@readerModeContinuousVertical": { - "description": "Radio button text for Reader Mode Type - Continuous Vertical" - }, - "readerModeDefaultReader": "Par défaut", - "@readerModeDefaultReader": { - "description": "Radio button text for Reader Mode Type - Default" - }, - "readerModeSingleHorizontalLTR": "Horizontal simple (De gauche à droite)", - "@readerModeSingleHorizontalLTR": { - "description": "Radio button text for Reader Mode Type - Single Horizontal (LTR)" - }, - "readerModeSingleHorizontalRTL": "Horizontal simple (De droite à gauche)", - "@readerModeSingleHorizontalRTL": { - "description": "Radio button text for Reader Mode Type - Single Horizontal (RTL)" - }, - "readerModeSingleVertical": "Vertical simple", - "@readerModeSingleVertical": { - "description": "Radio button text for Reader Mode Type - Single Vertical" - }, - "readerModeWebtoon": "Webtoon", - "@readerModeWebtoon": { - "description": "Radio button text for Reader Mode Type - Webtoon" - }, - "readerNavigationLayout": "Disposition de la navigation", - "@readerNavigationLayout": { - "description": "Popup title and Button text of Reader Navigation Layout popup" - }, - "readerNavigationLayoutDefault": "Par défaut", - "@readerNavigationLayoutDefault": { - "description": "Radio button text for Reader Navigation Layout - Default" - }, - "readerNavigationLayoutDisabled": "Désactivée", - "@readerNavigationLayoutDisabled": { - "description": "Radio button text for Reader Navigation Layout - Disabled" - }, - "readerScrollAnimation": "Animation de défilement", - "@readerScrollAnimation": { - "description": "Switch title to Disable scroll animation in reader screen" - }, - "readerNavigationLayoutKindlish": "Façon Kindle", - "@readerNavigationLayoutKindlish": { - "description": "Radio button text for Reader Navigation Layout - Kindle-ish" - }, - "readerNavigationLayoutLShaped": "En forme de L", - "@readerNavigationLayoutLShaped": { - "description": "Radio button text for Reader Navigation Layout - L Shaped" - }, - "readerNavigationLayoutRightAndLeft": "À droite et à gauche", - "@readerNavigationLayoutRightAndLeft": { - "description": "Radio button text for Reader Navigation Layout - Right And Left" - }, - "readerPadding": "Marges du lecteur", - "@readerPadding": { - "description": "Slider title text for Reader Padding" - }, - "readerMagnifierSize": "Taille de la loupe", - "@readerMagnifierSize": { - "description": "Slider title text for Reader Magnifier Size" - }, - "reddit": "Reddit", - "@reddit": { - "description": "Reddit app title" - }, - "refresh": "Actualiser", - "@refresh": { - "description": "Refresh button text" - }, - "reset": "Réinitialiser", - "@reset": { - "description": "Button text of reset button in source filters" - }, - "restoreBackupDescription": "Restaurer Tachidesk à partir d'une sauvegarde", - "@restoreBackupDescription": { - "description": "Button text description to create backup" - }, - "restoreBackupTitle": "Restaurer la sauvegarde", - "@restoreBackupTitle": { - "description": "Button text to create backup" - }, - "restored": "La sauvegarde a été restaurée !", - "@restored": { - "description": "Toast Text to show that the backup has been restored" - }, - "restoring": "Restauration de la sauvegarde", - "@restoring": { - "description": "Toast Text to show that the backup is restoring" - }, - "versionAvailable": "Version {version} disponible pour l'application {app} !", - "@versionAvailable": { - "description": "Text to show that there is an update to App/Server", - "placeholders": { - "app": { - "example": "Server", - "type": "String" - }, - "version": { - "example": "v0.4.2", - "type": "String" - } - } - }, - "webUI": "Ouvrir sur le Web", - "@webUI": { - "description": "Button text to open in web UI" - }, - "webView": "Vue Web", - "@webView": { - "description": "Button text to open manga website" - }, - "whatsNew": "Quoi de neuf ?", - "@whatsNew": { - "description": "Button text to open whats new page of app in web" - }, - "about": "À propos", - "@about": { - "description": "Screen title and Button text of About screen" - }, - "appLanguage": "Langue de l'application", - "@appLanguage": { - "description": "Popup title and Button text to change App Language" - }, - "createBackupTitle": "Créer une sauvegarde", - "@createBackupTitle": { - "description": "Button text to create backup" - }, - "credentials": "Identifiants", - "@credentials": { - "description": "Popup title and Button text to enter Authentication credentials" - }, - "defaultCategory": "Catégorie par défaut lors de l'ajout d'un nouveau manga à la bibliothèque", - "@defaultCategory": { - "description": "Checkbox description when creating a Category to add manga to the Category by Default" - }, - "displayMode": "Mode d'affichage", - "@displayMode": { - "description": "Radio Group title to change manga Cover display in Library and Source Screens" - }, - "authType": "Type d'authentification", - "@authType": { - "description": "Popup title and Button text to change App Authentication" - }, - "badges": "Badges", - "@badges": { - "description": "Checkbox Group title to enable Badges on manga Cover in Library Screen" - }, - "appearance": "Apparence", - "@appearance": { - "description": "Screen title and Button text of Appearance screen" - }, - "authTypeNone": "Aucune", - "@authTypeNone": { - "description": "Radio button text for no Authentication" - }, - "buildTime": "Temps d'exécution", - "@buildTime": { - "description": "Text title to show build time of Server in About Screen" - }, - "displayModeDescriptiveList": "Liste descriptive", - "@displayModeDescriptiveList": { - "description": "Radio button text for Manga Cover display mode - Descriptive List" - }, - "displayModeGrid": "Grille", - "@displayModeGrid": { - "description": "Radio button text for Manga Cover display mode - Grid" - }, - "displayModeList": "Liste", - "@displayModeList": { - "description": "Radio button text for Manga Cover display mode - List" - }, - "authTypeBasic": "Authentification simple", - "@authTypeBasic": { - "description": "Radio button text for the Basic Authentication type" - }, - "backup": "Sauvegarde et restauration", - "@backup": { - "description": "Screen title and Button text of Backup & Restore screen" - }, - "errorExtension": "Impossible de trouver l'extension sélectionnée", - "@errorExtension": { - "description": "Error Description to show when user selected unknown extension from list" - }, - "installing": "Installation", - "@installing": { - "description": "Button text to show that the extension is installing" - }, - "mangaStatusCompleted": "Terminé", - "@mangaStatusCompleted": { - "description": "Text to show Manga Status Completed in Manga details screen" - }, - "installingExtension": "Installation de l'extension", - "@installingExtension": { - "description": "Toast text to show that the extension is installing" - }, - "mangaGridSize": "Taille de la grille des mangas", - "@mangaGridSize": { - "description": "Popup title and Button text to change Manga Grid size" - }, - "mangaSortAlphabetical": "Ordre alphabétique", - "@mangaSortAlphabetical": { - "description": "Radio button text for Manga sort Type - Alphabetical" - }, - "mangaSortDateAdded": "Date d'ajout", - "@mangaSortDateAdded": { - "description": "Radio button text for Manga sort Type - Date Added" - }, - "mangaMissingSources": "Sources manquantes des mangas", - "@mangaMissingSources": { - "description": "Group title to show the Manga Missing Sources when restoring Backup" - }, - "mangaStatusCancelled": "Annulé", - "@mangaStatusCancelled": { - "description": "Text to show Manga Status Cancelled in Manga details screen" - }, - "moveToBottom": "Déplacer vers le bas", - "@moveToBottom": { - "description": "Button text to move download/category to the bottom of list" - }, - "moveToTop": "Déplacer vers le haut", - "@moveToTop": { - "description": "Button text to move download/category to the top of list" - }, - "password": "Mot de passe", - "@password": { - "description": "Title text for password field" - }, - "pending": "En attente", - "@pending": { - "description": "Pending status Manga Group title in Update Summary Screen" - }, - "noSourcesFound": "Aucune source trouvée", - "@noSourcesFound": { - "description": "Text to show that the Source list is empty" - }, - "noUpdatesFound": "Aucune mise à jour disponible", - "@noUpdatesFound": { - "description": "Toast Text to show that there are no Updates available" - }, - "pause": "Mettre en pause", - "@pause": { - "description": "Button text to pause downloads" - }, - "noUpdatesAvailable": "Vous utilisez la dernière version", - "@noUpdatesAvailable": { - "description": "Text to show that the user is using the latest version of the app" - }, - "numSelected": "{num} sélectionné", - "@numSelected": { - "description": "Title text to show the number of chapters selected in the Manga details screen and Updates screen", - "placeholders": { - "num": { - "example": "23", - "type": "int" - } - } - }, - "obsolete": "Obsolète", - "@obsolete": { - "description": "Text to show that the extension has become Obsolete" - }, - "page": "Page : {number}", - "@page": { - "description": "Text to show the last read Page number of the chapter in Manga details screen", - "placeholders": { - "number": { - "example": "23", - "type": "int" - } - } - }, - "readerMode": "Mode de lecture", - "@readerMode": { - "description": "Popup title and Button text of Reader Mode popup" - }, - "reader": "Lecteur", - "@reader": { - "description": "Screen title and Button text of Reader screen" - }, - "searchingForUpdates": "Recherche de mises à jour", - "@searchingForUpdates": { - "description": "Toast Text for searching for updates of the App/Server" - }, - "readerModeContinuousHorizontalLTR": "Horizontal en continu (De gauche à droite)", - "@readerModeContinuousHorizontalLTR": { - "description": "Radio button text for Reader Mode Type - Continuous Horizontal (LTR)" - }, - "settings": "Paramètres", - "@settings": { - "description": "Screen title and Button text of Settings screen" - }, - "updateCompleted": "Mise à jour terminée", - "@updateCompleted": { - "description": "Button text to show that extension update is completed" - }, - "resume": "Reprendre", - "@resume": { - "description": "Button Text to resume Chapter reading/downloading" - }, - "serverUrl": "URL du serveur", - "@serverUrl": { - "description": "Popup title and Button text to update Server Url" - }, - "retry": "Réessayer", - "@retry": { - "description": "Retry Button Text" - }, - "running": "En cours", - "@running": { - "description": "Running status Manga Group title in Update Summary Screen" - }, - "search": "Rechercher", - "@search": { - "description": "Search field hint Text" - }, - "server": "Serveur", - "@server": { - "description": "Text title for the server in About screen" - }, - "serverUrlHintText": "Saisissez l'URL du serveur", - "@serverUrlHintText": { - "description": "Text Filed hint text to update Server Url" - }, - "serverVersion": "Version du serveur", - "@serverVersion": { - "description": "Text title for the current version of the Server in About screen" - }, - "sourceTypeFilter": "Filtrer", - "@sourceTypeFilter": { - "description": "Tab text Filter for source screen type" - }, - "sourceTypeLatest": "Le plus récent", - "@sourceTypeLatest": { - "description": "Tab text Latest for source screen type" - }, - "start": "Commencer", - "@start": { - "description": "Button text start reading the manga" - }, - "unknownSource": "Source inconnue", - "@unknownSource": { - "description": "Text to show unknown Source in Manga details screen" - }, - "updates": "Mises à jour", - "@updates": { - "description": "Screen title and Button text of Updates screen" - }, - "updatesSummary": "Récapitulatif des mises à jour", - "@updatesSummary": { - "description": "Screen title and Button text of Updates Summary screen" - }, - "userName": "Nom d'utilisateur", - "@userName": { - "description": "Title text for User Name field" - }, - "save": "Enregistrer", - "@save": { - "description": "Save Button Text" - }, - "sort": "Trier", - "@sort": { - "description": "title of sort Tab across the app" - }, - "source": "Source", - "@source": { - "description": "Screen title and Button text of source screen" - }, - "sourceTypePopular": "Populaire", - "@sourceTypePopular": { - "description": "Tab text Popular for source screen type" - }, - "sources": "Sources", - "@sources": { - "description": "title of Sources Tab in Browse Screen" - }, - "uninstall": "Désinstaller", - "@uninstall": { - "description": "Button text to Uninstall the extension" - }, - "unknownAuthor": "Auteur inconnu", - "@unknownAuthor": { - "description": "Text to show unknown author in Manga details screen" - }, - "themeModeDark": "Sombre", - "@themeModeDark": { - "description": "Radio button text for App theme - Dark" - }, - "themeModeLight": "Clair", - "@themeModeLight": { - "description": "Radio button text for App theme - Light" - }, - "themeModeSystem": "Système", - "@themeModeSystem": { - "description": "Radio button text for App theme - System" - }, - "uninstalling": "Désinstallation", - "@uninstalling": { - "description": "Button text to show that the extension is uninstalling" - }, - "unknownManga": "Manga inconnu", - "@unknownManga": { - "description": "Text to show unknown manga in Manga details screen" - }, - "unread": "Non lu", - "@unread": { - "description": "Checkbox text to unread bookmarked manga/chapters across app" - }, - "updating": "Mise à jour en cours", - "@updating": { - "description": "Button text to show that the extension is updating" - }, - "update": "Mettre à jour", - "@update": { - "description": "Button text to update the extension" - }, - "quickSearchSource": "", - "@quickSearchSource": { - "description": "Quick Open Hint text for Source S with prefill '@S'" - }, - "quickSearchSourceManga": "", - "@quickSearchSourceManga": { - "description": "Quick Open Hint text for searching Manga M in Source S with prefill '@S/M'" - }, - "quickSearchCategoryMangaChapter": "", - "@quickSearchCategoryMangaChapter": { - "description": "Quick Open Hint text for searching Chapter name CN from Manga M in Source S with prefill '#C/M:CN'" - }, - "readerNavigationLayoutEdge": "", - "@readerNavigationLayoutEdge": { - "description": "Radio button text for Reader Navigation Layout - Edge" - }, - "readerNavigationLayoutInvert": "", - "@readerNavigationLayoutInvert": { - "description": "Switch title to invert Tap to scroll in reader screen" - }, - "serverPort": "", - "@serverPort": { - "description": "Popup title and Button text to update Server Port" - }, - "serverPortHintText": "", - "@serverPortHintText": { - "description": "Text Filed hint text to update Server Port" - }, - "noServerFound": "", - "@noServerFound": { - "description": "Text to show that no Server found in locale network" - }, - "findServer": "", - "@findServer": { - "description": "Button text of Find Server" - }, - "allScanlators": "", - "@allScanlators": { - "description": "Text for all Scanlators in manga description screen chapter filter" - }, - "quickSearchCategory": "", - "@quickSearchCategory": { - "description": "Quick Open Hint text for Category C with prefill '#C'" - }, - "quickSearchContext": "", - "@quickSearchContext": { - "description": "Quick Open Hint text for query X" - }, - "scanlators": "", - "@scanlators": { - "description": "Title text for Scanlators" - }, - "quickSearchCategoryManga": "", - "@quickSearchCategoryManga": { - "description": "Quick Open Hint text for searching Manga M in Category C with prefill '#C/M'" - } -} diff --git a/lib/src/l10n/app_ja.arb b/lib/src/l10n/app_ja.arb deleted file mode 100644 index 725bd4c2..00000000 --- a/lib/src/l10n/app_ja.arb +++ /dev/null @@ -1,14 +0,0 @@ -{ - "addCategory": "カテゴリーを追加", - "@addCategory": { - "description": "Popup title and Button text to add new category in Edit Category Screen" - }, - "addToLibrary": "ライブラリに追加", - "@addToLibrary": { - "description": "Button text to add Manga to Library in Manga Details Screen" - }, - "about": "このアプリについて", - "@about": { - "description": "Screen title and Button text of About screen" - } -} diff --git a/lib/src/l10n/app_ko.arb b/lib/src/l10n/app_ko.arb deleted file mode 100644 index f46f0a1c..00000000 --- a/lib/src/l10n/app_ko.arb +++ /dev/null @@ -1,142 +0,0 @@ -{ - "about": "정보", - "@about": { - "description": "Screen title and Button text of About screen" - }, - "appLanguage": "앱 언어", - "@appLanguage": { - "description": "Popup title and Button text to change App Language" - }, - "appTheme": "앱 테마", - "@appTheme": { - "description": "Popup title and Button text to change App Theme" - }, - "appTitle": "Tachidesk Sorayomi", - "@appTitle": { - "description": "Name of the app (Tachidesk Sorayomi in native script)" - }, - "appearance": "모양", - "@appearance": { - "description": "Screen title and Button text of Appearance screen" - }, - "authType": "인증 유형", - "@authType": { - "description": "Popup title and Button text to change App Authentication" - }, - "authTypeBasic": "기본 인증", - "@authTypeBasic": { - "description": "Radio button text for the Basic Authentication type" - }, - "channel": "버전", - "@channel": { - "description": "Text title to show Channel of the Server (Stable, preview) in About Screen" - }, - "chapterNumber": "챕터 {number}", - "@chapterNumber": { - "description": "Text title for Chapter name in chapter list", - "placeholders": { - "number": { - "example": "12.5", - "type": "double" - } - } - }, - "chapterSortFetchedDate": "회차 번호 기준", - "@chapterSortFetchedDate": { - "description": "Radio button text for sort by Fetched Date" - }, - "chapterSortSource": "소스 기준", - "@chapterSortSource": { - "description": "Radio button text for sort by Source" - }, - "checkForServerUpdates": "서버 업데이트 확인", - "@checkForServerUpdates": { - "description": "Button text to check for Server updates" - }, - "checkForUpdates": "업데이트 확인", - "@checkForUpdates": { - "description": "Button text to check for App Updates" - }, - "completed": "완료됨", - "@completed": { - "description": "Checkbox text to filter Completed mangas in Library screen and Manga Grouping text in Update Summary screen" - }, - "copyMsg": "'{msg}' 복사됨!", - "@copyMsg": { - "description": "Toast text to show that the message has been copied", - "placeholders": { - "msg": { - "example": "Client : Tachidesk Sorayomi", - "type": "String" - } - } - }, - "createBackupTitle": "백업 생성", - "@createBackupTitle": { - "description": "Button text to create backup" - }, - "credentials": "증명", - "@credentials": { - "description": "Popup title and Button text to enter Authentication credentials" - }, - "addCategory": "카테고리 추가", - "@addCategory": { - "description": "Popup title and Button text to add new category in Edit Category Screen" - }, - "authTypeNone": "없음", - "@authTypeNone": { - "description": "Radio button text for no Authentication" - }, - "bookmarked": "북마크 됨", - "@bookmarked": { - "description": "Checkbox text to filter bookmarked manga chapters in Manga Details screen" - }, - "addToLibrary": "라이브러리에 추가", - "@addToLibrary": { - "description": "Button text to add Manga to Library in Manga Details Screen" - }, - "backup": "백업 및 복원", - "@backup": { - "description": "Screen title and Button text of Backup & Restore screen" - }, - "buildTime": "만들어진 시간", - "@buildTime": { - "description": "Text title to show build time of Server in About Screen" - }, - "browse": "찾아보기", - "@browse": { - "description": "Screen title, Navigation Bar text and Button text of both Browse screen and Browse Settings Screen" - }, - "cancel": "취소", - "@cancel": { - "description": "Text for Cancel button in a Popup" - }, - "categoryUpdate": "카테고리 업데이트", - "@categoryUpdate": { - "description": "Button text to update the mangas in the Category" - }, - "cacheCleared": "캐시 정리", - "@cacheCleared": { - "description": "Toast Text to show after clearing cache" - }, - "categories": "카테고리", - "@categories": { - "description": "Button text of edit Categories screen in Library settings screen" - }, - "chapterSortUploadDate": "업로드 날짜 기준", - "@chapterSortUploadDate": { - "description": "Radio button text for sort by Upload Date" - }, - "close": "닫기", - "@close": { - "description": "Text for close button" - }, - "clearCache": "캐시 정리", - "@clearCache": { - "description": "Button text for clear cache in General Settings screen" - }, - "daysAgo": "{days} 일 지남", - "@daysAgo": { - "description": "Days ago text to show the release date of manga" - } -} diff --git a/lib/src/l10n/app_pt.arb b/lib/src/l10n/app_pt.arb deleted file mode 100644 index 5e74ca73..00000000 --- a/lib/src/l10n/app_pt.arb +++ /dev/null @@ -1,435 +0,0 @@ -{ - "@@locale": "pt", - "about": "Sobre", - "@about": {}, - "addCategory": "Adicionar Categoria", - "@addCategory": {}, - "addToLibrary": "Adicionar à biblioteca", - "@addToLibrary": {}, - "appLanguage": "Idioma da aplicação", - "@appLanguage": {}, - "appTheme": "Tema da Aplicação", - "@appTheme": {}, - "appTitle": "Tachidesk Sorayomi", - "@appTitle": {}, - "appearance": "Aparência", - "@appearance": {}, - "authType": "Tipo de autenticação", - "@authType": {}, - "authTypeBasic": "Autenticação Básica", - "@authTypeBasic": {}, - "authTypeNone": "Nenhum", - "@authTypeNone": {}, - "backup": "Cópia de segurança e restaurar", - "@backup": {}, - "badges": "Distintivos", - "@badges": {}, - "bookmarked": "Marcado", - "@bookmarked": {}, - "browse": "Procurar", - "@browse": {}, - "buildTime": "Tempo de compilação", - "@buildTime": {}, - "cancel": "Cancelar", - "@cancel": {}, - "categories": "Categorias", - "@categories": {}, - "category": "Categoria", - "@category": {}, - "categoryUpdate": "Atualização de categoria", - "@categoryUpdate": {}, - "channel": "Canal", - "@channel": {}, - "chapterNumber": "Capítulo {number}", - "@chapterNumber": {}, - "chapterSortFetchedDate": "Por dados recolhidos", - "@chapterSortFetchedDate": {}, - "chapterSortSource": "Por fonte", - "@chapterSortSource": {}, - "checkForServerUpdates": "Procurar atualizações do servidor", - "@checkForServerUpdates": {}, - "checkForUpdates": "Procurar atualizações", - "@checkForUpdates": {}, - "client": "Client", - "@client": {}, - "clientVersion": "Versão Client", - "@clientVersion": {}, - "close": "Fechar", - "@close": {}, - "completed": "Completo", - "@completed": {}, - "copyMsg": "'{msg}' Copiado para área de transferência!", - "@copyMsg": {}, - "create": "Criar", - "@create": {}, - "createBackupDescription": "Cópia da Biblioteca como cópia de segurança de Tachidesk", - "@createBackupDescription": {}, - "createBackupTitle": "Criar cópia de segurança", - "@createBackupTitle": {}, - "credentials": "Credenciais", - "@credentials": {}, - "current": "Atuais", - "@current": {}, - "defaultCategory": "Categoria predefinida quando um novo mangá é adicionado à biblioteca", - "@defaultCategory": {}, - "delete": "Remover", - "@delete": {}, - "deleteCategoryDescription": "Isto irá fundir todos os mangas desta categoria para predefinidos!", - "@deleteCategoryDescription": {}, - "deleteCategoryTitle": "Tem a certeza?", - "@deleteCategoryTitle": {}, - "discord": "Discord", - "@discord": {}, - "display": "Exibir", - "@display": {}, - "displayMode": "Modo de exibição", - "@displayMode": {}, - "displayModeDescriptiveList": "Lista descritiva", - "@displayModeDescriptiveList": {}, - "displayModeGrid": "Grelha", - "@displayModeGrid": {}, - "displayModeList": "Lista", - "@displayModeList": {}, - "downloaded": "Transferidos", - "@downloaded": {}, - "downloads": "Transferências", - "@downloads": {}, - "edit": "Editar", - "@edit": {}, - "editCategory": "Editar Categoria", - "@editCategory": {}, - "emptyCategory": "Nome da categoria não pode ficar em branco", - "@emptyCategory": {}, - "errorExtension": "Não foi possível encontrar a extensão selecionada", - "@errorExtension": {}, - "errorFilePick": "Arquivo não selecionado!", - "@errorFilePick": {}, - "errorFilePickUnknownExtension": "Por favor selecione um arquivo com {extensionName} extensão", - "@errorFilePickUnknownExtension": {}, - "errorLaunchURL": "Falha ao abrir!\nA Copiar \"{url}\" para a área de transferência", - "@errorLaunchURL": {}, - "errorPassword": "Senha não pode ficar em branco", - "@errorPassword": {}, - "errorSomethingWentWrong": "Algo correu mal!", - "@errorSomethingWentWrong": {}, - "errorUserName": "Nome de utilizador não pode ficar em branco", - "@errorUserName": {}, - "extensionInstalled": "Extensão instalada!", - "@extensionInstalled": {}, - "extensionListEmpty": "Lista de extensão está vazia", - "@extensionListEmpty": {}, - "extensions": "Extensões", - "@extensions": {}, - "failed": "Falha", - "@failed": {}, - "filter": "Filtro", - "@filter": {}, - "finished": "Concluído", - "@finished": {}, - "general": "Geral", - "@general": {}, - "gitHub": "GitHub", - "@gitHub": {}, - "globalSearch": "Procura global", - "@globalSearch": {}, - "globalUpdate": "Atualização global", - "@globalUpdate": {}, - "help": "Ajuda", - "@help": {}, - "inLibrary": "Na Biblioteca", - "@inLibrary": {}, - "install": "Instalar", - "@install": {}, - "installing": "A Instalar", - "@installing": {}, - "installingExtension": "Instalando extensão", - "@installingExtension": {}, - "languages": "Idiomas", - "@languages": {}, - "latest": "Mais recente", - "@latest": {}, - "library": "Biblioteca", - "@library": {}, - "manga": "Manga", - "@manga": {}, - "mangaMissingSources": "Fontes do manga em falta", - "@mangaMissingSources": {}, - "mangaSortAlphabetical": "Ordem alfabética", - "@mangaSortAlphabetical": {}, - "mangaSortDateAdded": "Data adicionada", - "@mangaSortDateAdded": {}, - "mangaSortUnread": "Não lido", - "@mangaSortUnread": {}, - "mangaSortLastRead": "Última leitura", - "@mangaSortLastRead": {}, - "mangaStatusCancelled": "Cancelado", - "@mangaStatusCancelled": {}, - "mangaStatusCompleted": "Completo", - "@mangaStatusCompleted": {}, - "mangaStatusLicensed": "Licenciado", - "@mangaStatusLicensed": {}, - "mangaStatusOnHiatus": "Em curso", - "@mangaStatusOnHiatus": {}, - "mangaStatusOngoing": "Em pausa", - "@mangaStatusOngoing": {}, - "mangaStatusPublishingFinished": "Publicação concluída", - "@mangaStatusPublishingFinished": {}, - "mangaStatusUnknown": "Desconhecido", - "@mangaStatusUnknown": {}, - "missingExtension": "Extensões em falta", - "@missingExtension": {}, - "missingTrackers": "Rasteadores em falta", - "@missingTrackers": {}, - "more": "Mais", - "@more": {}, - "moveToBottom": "Mover para baixo", - "@moveToBottom": {}, - "moveToTop": "Mover para cima", - "@moveToTop": {}, - "nameCountDisplay": "{name}: {count}", - "@nameCountDisplay": {}, - "newUpdateAvailable": "Nova atualização disponível", - "@newUpdateAvailable": {}, - "noCategoriesFound": "Não tem nenhuma categoria.\nToque no botão mais para criar uma categoria para organizar a sua biblioteca", - "@noCategoriesFound": {}, - "noCategoriesFoundAlt": "Não tem nenhuma categoria.\nCria uma nas definições para organizar a sua biblioteca", - "@noCategoriesFoundAlt": {}, - "noCategoryMangaFound": "Nenhum manga encontrado nesta categoria.\n(Dica: Verifique as suas pesquisas e filtros!)", - "@noCategoryMangaFound": {}, - "noChaptersFound": "Nenhum capítulo encontrado", - "@noChaptersFound": {}, - "noDownloads": "Nenhuma transferência", - "@noDownloads": {}, - "noMangaFound": "Nenhum manga encontrado", - "@noMangaFound": {}, - "noOfChapters": "{count} Capítulos", - "@noOfChapters": {}, - "noResultFound": "Nenhum resultado encontrado", - "@noResultFound": {}, - "noSourcesFound": "Nenhuma fonte encontrada", - "@noSourcesFound": {}, - "noUpdatesAvailable": "Está a usar a versão mais recente", - "@noUpdatesAvailable": {}, - "noUpdatesFound": "Nenhuma atualização encontrada", - "@noUpdatesFound": {}, - "nsfw": "Mostrar extensões e fontes NSFW", - "@nsfw": {}, - "nsfw18": "18+", - "@nsfw18": {}, - "nsfwInfo": "Isto não impede extensões não oficiais ou incorretamente marcadas de mostrarem conteúdo NSFW (18+) dentro da aplicação", - "@nsfwInfo": {}, - "numSelected": "{num} Selecionado", - "@numSelected": {}, - "obsolete": "Obsoleta", - "@obsolete": {}, - "page": "Página: {number}", - "@page": {}, - "password": "Senha", - "@password": {}, - "pause": "Pausa", - "@pause": {}, - "pending": "Pendente", - "@pending": {}, - "reader": "Leitor", - "@reader": {}, - "readerMode": "Modo de leitura", - "@readerMode": {}, - "readerModeContinuousHorizontalLTR": "Horizontal Contínuo (LTR)", - "@readerModeContinuousHorizontalLTR": {}, - "readerModeContinuousHorizontalRTL": "Horizontal Contínuo (RTL)", - "@readerModeContinuousHorizontalRTL": {}, - "readerModeContinuousVertical": "Vertical Contínuo", - "@readerModeContinuousVertical": {}, - "readerModeDefaultReader": "Predefinido", - "@readerModeDefaultReader": {}, - "readerModeSingleHorizontalLTR": "Horizontal único (LTR)", - "@readerModeSingleHorizontalLTR": {}, - "readerModeSingleHorizontalRTL": "Horizontal único (RTL)", - "@readerModeSingleHorizontalRTL": {}, - "readerModeSingleVertical": "Vertical único", - "@readerModeSingleVertical": {}, - "readerModeWebtoon": "Webtoon", - "@readerModeWebtoon": {}, - "readerNavigationLayout": "Disposição de Navegação", - "@readerNavigationLayout": {}, - "readerNavigationLayoutDefault": "Predefinido", - "@readerNavigationLayoutDefault": {}, - "readerNavigationLayoutDisabled": "Desativado", - "@readerNavigationLayoutDisabled": {}, - "readerNavigationLayoutEdge": "Borda", - "@readerNavigationLayoutEdge": {}, - "readerNavigationLayoutInvert": "Inverter toque", - "@readerNavigationLayoutInvert": {}, - "readerNavigationLayoutKindlish": "Formato Kindle-ish", - "@readerNavigationLayoutKindlish": {}, - "readerNavigationLayoutLShaped": "Formato L", - "@readerNavigationLayoutLShaped": {}, - "readerNavigationLayoutRightAndLeft": "Direita para Esquerda", - "@readerNavigationLayoutRightAndLeft": {}, - "reddit": "Reddit", - "@reddit": {}, - "refresh": "Recarregar", - "@refresh": {}, - "reset": "Reiniciar", - "@reset": {}, - "restoreBackupDescription": "Restaurar Tachidesk pela cópia de segurança", - "@restoreBackupDescription": {}, - "restoreBackupTitle": "Restaurar cópia de segurança", - "@restoreBackupTitle": {}, - "restored": "Cópia de segurança restaurada!", - "@restored": {}, - "restoring": "Restaurando backup", - "@restoring": {}, - "resume": "Continuar", - "@resume": {}, - "retry": "Tentar novamente", - "@retry": {}, - "running": "Em execução", - "@running": {}, - "save": "Guardar", - "@save": {}, - "search": "Procurar", - "@search": {}, - "searchingForUpdates": "Procurando por atualizações", - "@searchingForUpdates": {}, - "server": "Servidor", - "@server": {}, - "serverUrl": "URL do Server", - "@serverUrl": {}, - "serverUrlHintText": "URL do servidor", - "@serverUrlHintText": {}, - "serverVersion": "Versão do servidor", - "@serverVersion": {}, - "settings": "Definições", - "@settings": {}, - "sort": "Ordenar", - "@sort": {}, - "source": "Fonte", - "@source": {}, - "sourceTypeFilter": "Filtro", - "@sourceTypeFilter": {}, - "sourceTypeLatest": "Mais recentes", - "@sourceTypeLatest": {}, - "sourceTypePopular": "Popular", - "@sourceTypePopular": {}, - "sources": "Fontes", - "@sources": {}, - "start": "Inicio", - "@start": {}, - "themeModeDark": "Escuro", - "@themeModeDark": {}, - "themeModeLight": "Claro", - "@themeModeLight": {}, - "themeModeSystem": "Sistema", - "@themeModeSystem": {}, - "uninstall": "Desinstalar", - "@uninstall": {}, - "uninstalling": "A Desinstalar", - "@uninstalling": {}, - "unknown": "Desconhecido", - "@unknown": {}, - "unknownAuthor": "Autor Desconhecido", - "@unknownAuthor": {}, - "unknownManga": "Manga Desconhecido", - "@unknownManga": {}, - "unknownSource": "Fonte Desconhecida", - "@unknownSource": {}, - "unread": "Não lida", - "@unread": {}, - "update": "Atualização", - "@update": {}, - "updateCompleted": "Atualização Completa", - "@updateCompleted": {}, - "updates": "Atualizações", - "@updates": {}, - "updatesSummary": "Resumo de Atualizações", - "@updatesSummary": {}, - "updating": "Atualizando", - "@updating": {}, - "userName": "Nome de Utilizador", - "@userName": {}, - "versionAvailable": "Versão {version} disponivel para {app}!!", - "@versionAvailable": {}, - "webUI": "Abrir no WEB", - "@webUI": {}, - "webView": "WebView", - "@webView": {}, - "whatsNew": "O que há de Novo?", - "@whatsNew": {}, - "clearCache": "Limpar Cache", - "@clearCache": { - "description": "Button text for clear cache in General Settings screen" - }, - "cacheCleared": "Cache limpo", - "@cacheCleared": { - "description": "Toast Text to show after clearing cache" - }, - "serverPort": "Porta do servidor", - "@serverPort": { - "description": "Popup title and Button text to update Server Port" - }, - "serverPortHintText": "Porta do servidor", - "@serverPortHintText": { - "description": "Text Filed hint text to update Server Port" - }, - "findServer": "Procurar", - "@findServer": { - "description": "Button text of Find Server" - }, - "chapterSortUploadDate": "Por ordem de envio", - "@chapterSortUploadDate": { - "description": "Radio button text for sort by Upload Date" - }, - "readerScrollAnimation": "Animação de rolagem", - "@readerScrollAnimation": { - "description": "Switch title to Disable scroll animation in reader screen" - }, - "readerMagnifierSize": "Tamanho da Lupa", - "@readerMagnifierSize": { - "description": "Slider title text for Reader Magnifier Size" - }, - "quickSearchCategoryManga": "Pesquisa o Manga 'M' na categoria 'C'", - "@quickSearchCategoryManga": { - "description": "Quick Open Hint text for searching Manga M in Category C with prefill '#C/M'" - }, - "quickSearchCategory": "Vá para categoria 'C'", - "@quickSearchCategory": { - "description": "Quick Open Hint text for Category C with prefill '#C'" - }, - "quickSearchSource": "Pesquisa a fonte 'S'", - "@quickSearchSource": { - "description": "Quick Open Hint text for Source S with prefill '@S'" - }, - "quickSearchCategoryMangaChapter": "Pesquisa o capítulo 'CN' na manga 'M' na Categoria 'C'", - "@quickSearchCategoryMangaChapter": { - "description": "Quick Open Hint text for searching Chapter name CN from Manga M in Source S with prefill '#C/M:CN'" - }, - "noServerFound": "Servidor não encontrado em sua rede local", - "@noServerFound": { - "description": "Text to show that no Server found in locale network" - }, - "quickSearchContext": "Pesquisa padrão (Resultado baseado nas informações da tela)", - "@quickSearchContext": { - "description": "Quick Open Hint text for query X" - }, - "readerPadding": "Preenchimento do leitor", - "@readerPadding": { - "description": "Slider title text for Reader Padding" - }, - "quickSearchSourceManga": "Pesquisa o mangá 'M' na fonte 'S'", - "@quickSearchSourceManga": { - "description": "Quick Open Hint text for searching Manga M in Source S with prefill '@S/M'" - }, - "scanlators": "Scans", - "@scanlators": { - "description": "Title text for Scanlators" - }, - "allScanlators": "Todas as Scans", - "@allScanlators": { - "description": "Text for all Scanlators in manga description screen chapter filter" - }, - "mangaGridSize": "Tamanho da tela do mangá", - "@mangaGridSize": { - "description": "Popup title and Button text to change Manga Grid size" - } -} diff --git a/lib/src/l10n/app_pt_PT.arb b/lib/src/l10n/app_pt_PT.arb deleted file mode 100644 index ecd0b058..00000000 --- a/lib/src/l10n/app_pt_PT.arb +++ /dev/null @@ -1,509 +0,0 @@ -{ - "@@locale": "pt_PT", - "about": "Sobre", - "@about": {}, - "addCategory": "Adicionar Categoria", - "@addCategory": {}, - "addToLibrary": "Adicionar à biblioteca", - "@addToLibrary": {}, - "appLanguage": "Idioma da aplicação", - "@appLanguage": {}, - "appTheme": "Tema da Aplicação", - "@appTheme": {}, - "appTitle": "Tachidesk Sorayomi", - "@appTitle": {}, - "appearance": "Aparência", - "@appearance": {}, - "authType": "Tipo de autenticação", - "@authType": {}, - "authTypeBasic": "Autenticação Básica", - "@authTypeBasic": {}, - "authTypeNone": "Nenhum", - "@authTypeNone": {}, - "backup": "Cópia de segurança e restaurar", - "@backup": {}, - "badges": "Distintivos", - "@badges": {}, - "bookmarked": "Marcado", - "@bookmarked": {}, - "browse": "Procurar", - "@browse": {}, - "buildTime": "Tempo de compilação", - "@buildTime": {}, - "cancel": "Cancelar", - "@cancel": {}, - "categories": "Categorias", - "@categories": {}, - "category": "Categoria", - "@category": {}, - "categoryUpdate": "Atualização de categoria", - "@categoryUpdate": {}, - "channel": "Canal", - "@channel": {}, - "chapterNumber": "Capítulo {number}", - "@chapterNumber": {}, - "chapterSortFetchedDate": "Recolhidos por data", - "@chapterSortFetchedDate": {}, - "chapterSortSource": "Por fonte", - "@chapterSortSource": {}, - "checkForServerUpdates": "Procurar atualizações do servidor", - "@checkForServerUpdates": {}, - "checkForUpdates": "Procurar atualizações", - "@checkForUpdates": {}, - "client": "Client", - "@client": {}, - "clientVersion": "Versão Client", - "@clientVersion": {}, - "close": "Fechar", - "@close": {}, - "completed": "Completo", - "@completed": {}, - "copyMsg": "\"{msg}\" Copiado!", - "@copyMsg": {}, - "create": "Criar", - "@create": {}, - "createBackupDescription": "Cópia da Biblioteca como cópia de segurança de Tachidesk", - "@createBackupDescription": {}, - "createBackupTitle": "Criar cópia de segurança", - "@createBackupTitle": {}, - "credentials": "Credenciais", - "@credentials": {}, - "current": "Atuais", - "@current": {}, - "defaultCategory": "Categoria predefinida quando um novo mangá é adicionado à biblioteca", - "@defaultCategory": {}, - "delete": "Remover", - "@delete": {}, - "deleteCategoryDescription": "Isto irá fundir todos os mangas desta categoria para predefinidos!", - "@deleteCategoryDescription": {}, - "deleteCategoryTitle": "Tem a certeza?", - "@deleteCategoryTitle": {}, - "discord": "Discord", - "@discord": {}, - "display": "Exibir", - "@display": {}, - "displayMode": "Modo de exibição", - "@displayMode": {}, - "displayModeDescriptiveList": "Lista descritiva", - "@displayModeDescriptiveList": {}, - "displayModeGrid": "Grelha", - "@displayModeGrid": {}, - "displayModeList": "Lista", - "@displayModeList": {}, - "downloaded": "Transferidos", - "@downloaded": {}, - "downloads": "Transferências", - "@downloads": {}, - "edit": "Editar", - "@edit": {}, - "editCategory": "Editar Categoria", - "@editCategory": {}, - "emptyCategory": "Nome da categoria não pode ficar em branco", - "@emptyCategory": {}, - "errorExtension": "Não foi possível encontrar a extensão selecionada", - "@errorExtension": {}, - "errorFilePick": "Arquivo não selecionado!", - "@errorFilePick": {}, - "errorFilePickUnknownExtension": "Por favor selecione um arquivo com {extensionName} extensão", - "@errorFilePickUnknownExtension": {}, - "errorLaunchURL": "Falha ao abrir!\nA Copiar \"{url}\" para a área de transferência", - "@errorLaunchURL": {}, - "errorPassword": "Senha não pode ficar em branco", - "@errorPassword": {}, - "errorSomethingWentWrong": "Algo correu mal!", - "@errorSomethingWentWrong": {}, - "errorUserName": "Nome de utilizador não pode ficar em branco", - "@errorUserName": {}, - "extensionInstalled": "Extensão instalada!", - "@extensionInstalled": {}, - "extensionListEmpty": "Lista de extensão está vazia", - "@extensionListEmpty": {}, - "extensions": "Extensões", - "@extensions": {}, - "failed": "Falha", - "@failed": {}, - "filter": "Filtro", - "@filter": {}, - "finished": "Concluído", - "@finished": {}, - "general": "Geral", - "@general": {}, - "gitHub": "GitHub", - "@gitHub": {}, - "globalSearch": "Procura global", - "@globalSearch": {}, - "globalUpdate": "Atualização global", - "@globalUpdate": {}, - "help": "Ajuda", - "@help": {}, - "inLibrary": "Na Biblioteca", - "@inLibrary": {}, - "install": "Instalar", - "@install": {}, - "installing": "A Instalar", - "@installing": {}, - "installingExtension": "A instalar extensões", - "@installingExtension": {}, - "languages": "Idiomas", - "@languages": {}, - "latest": "Mais recente", - "@latest": {}, - "library": "Biblioteca", - "@library": {}, - "manga": "Manga", - "@manga": {}, - "mangaMissingSources": "Fontes do manga em falta", - "@mangaMissingSources": {}, - "mangaSortAlphabetical": "Ordem alfabética", - "@mangaSortAlphabetical": {}, - "mangaSortDateAdded": "Data adicionada", - "@mangaSortDateAdded": {}, - "mangaSortUnread": "Não lido", - "@mangaSortUnread": {}, - "mangaSortLastRead": "Última leitura", - "@mangaSortLastRead": {}, - "mangaStatusCancelled": "Cancelado", - "@mangaStatusCancelled": {}, - "mangaStatusCompleted": "Completo", - "@mangaStatusCompleted": {}, - "mangaStatusLicensed": "Licenciado", - "@mangaStatusLicensed": {}, - "mangaStatusOnHiatus": "Em curso", - "@mangaStatusOnHiatus": {}, - "mangaStatusOngoing": "Em pausa", - "@mangaStatusOngoing": {}, - "mangaStatusPublishingFinished": "Publicação concluída", - "@mangaStatusPublishingFinished": {}, - "mangaStatusUnknown": "Desconhecido", - "@mangaStatusUnknown": {}, - "missingExtension": "Extensões em falta", - "@missingExtension": {}, - "missingTrackers": "Rasteadores em falta", - "@missingTrackers": {}, - "more": "Mais", - "@more": {}, - "moveToBottom": "Mover para baixo", - "@moveToBottom": {}, - "moveToTop": "Mover para cima", - "@moveToTop": {}, - "nameCountDisplay": "{name}: {count}", - "@nameCountDisplay": {}, - "newUpdateAvailable": "Nova atualização disponível", - "@newUpdateAvailable": {}, - "noCategoriesFound": "Não tem nenhuma categoria.\n(Dica: Toque no botão mais para criar uma categoria para organizar a sua biblioteca)", - "@noCategoriesFound": {}, - "noCategoriesFoundAlt": "Não tem nenhuma categoria.\nCria uma nas definições para organizar a sua biblioteca", - "@noCategoriesFoundAlt": {}, - "noCategoryMangaFound": "Nenhum manga encontrado nesta categoria.\n(Dica: Verifique as suas pesquisas e filtros!)", - "@noCategoryMangaFound": {}, - "noChaptersFound": "Nenhum capítulo encontrado", - "@noChaptersFound": {}, - "noDownloads": "Nenhuma transferência", - "@noDownloads": {}, - "noMangaFound": "Nenhum manga encontrado", - "@noMangaFound": {}, - "noOfChapters": "{count} Capítulos", - "@noOfChapters": {}, - "noResultFound": "Nenhum resultado encontrado", - "@noResultFound": {}, - "noSourcesFound": "Nenhuma fonte encontrada", - "@noSourcesFound": {}, - "noUpdatesAvailable": "Está a usar a versão mais recente", - "@noUpdatesAvailable": {}, - "noUpdatesFound": "Nenhuma atualização encontrada", - "@noUpdatesFound": {}, - "nsfw": "Mostrar extensões e fontes NSFW", - "@nsfw": {}, - "nsfw18": "18+", - "@nsfw18": {}, - "nsfwInfo": "Isto não impede extensões não oficiais ou incorretamente marcadas de mostrarem conteúdo NSFW (18+) dentro da aplicação", - "@nsfwInfo": {}, - "numSelected": "{num} Selecionado", - "@numSelected": {}, - "obsolete": "Obsoleta", - "@obsolete": {}, - "page": "Página: {number}", - "@page": {}, - "password": "Senha", - "@password": {}, - "pause": "Pausa", - "@pause": {}, - "pending": "Pendente", - "@pending": {}, - "reader": "Leitor", - "@reader": {}, - "readerMode": "Modo de leitura", - "@readerMode": {}, - "readerModeContinuousHorizontalLTR": "Horizontal Contínuo (LTR)", - "@readerModeContinuousHorizontalLTR": {}, - "readerModeContinuousHorizontalRTL": "Horizontal Contínuo (RTL)", - "@readerModeContinuousHorizontalRTL": {}, - "readerModeContinuousVertical": "Vertical Contínuo", - "@readerModeContinuousVertical": {}, - "readerModeDefaultReader": "Predefinido", - "@readerModeDefaultReader": {}, - "readerModeSingleHorizontalLTR": "Horizontal único (LTR)", - "@readerModeSingleHorizontalLTR": {}, - "readerModeSingleHorizontalRTL": "Horizontal único (RTL)", - "@readerModeSingleHorizontalRTL": {}, - "readerModeSingleVertical": "Vertical único", - "@readerModeSingleVertical": {}, - "readerModeWebtoon": "Webtoon", - "@readerModeWebtoon": {}, - "readerNavigationLayout": "Disposição de Navegação", - "@readerNavigationLayout": {}, - "readerNavigationLayoutDefault": "Predefinido", - "@readerNavigationLayoutDefault": {}, - "readerNavigationLayoutDisabled": "Desativado", - "@readerNavigationLayoutDisabled": {}, - "readerNavigationLayoutEdge": "Borda", - "@readerNavigationLayoutEdge": {}, - "readerNavigationLayoutInvert": "Inverter toque", - "@readerNavigationLayoutInvert": {}, - "readerNavigationLayoutKindlish": "Kindle-ish", - "@readerNavigationLayoutKindlish": {}, - "readerNavigationLayoutLShaped": "Formato L", - "@readerNavigationLayoutLShaped": {}, - "readerNavigationLayoutRightAndLeft": "Direita para Esquerda", - "@readerNavigationLayoutRightAndLeft": {}, - "reddit": "Reddit", - "@reddit": {}, - "refresh": "Recarregar", - "@refresh": {}, - "reset": "Reiniciar", - "@reset": {}, - "restoreBackupDescription": "Restaurar Tachidesk pela cópia de segurança", - "@restoreBackupDescription": {}, - "restoreBackupTitle": "Restaurar cópia de segurança", - "@restoreBackupTitle": {}, - "restored": "Cópia de segurança restaurada!", - "@restored": {}, - "restoring": "A restaurar cópia de segurança", - "@restoring": {}, - "resume": "Continuar", - "@resume": {}, - "retry": "Tentar novamente", - "@retry": {}, - "running": "Em execução", - "@running": {}, - "save": "Guardar", - "@save": {}, - "search": "Procurar", - "@search": {}, - "searchingForUpdates": "À procura de atualizações", - "@searchingForUpdates": {}, - "server": "Servidor", - "@server": {}, - "serverUrl": "URL do Server", - "@serverUrl": {}, - "serverUrlHintText": "Url do server", - "@serverUrlHintText": {}, - "serverVersion": "Versão do servidor", - "@serverVersion": {}, - "settings": "Definições", - "@settings": {}, - "sort": "Ordenar", - "@sort": {}, - "source": "Fonte", - "@source": {}, - "sourceTypeFilter": "Filtro", - "@sourceTypeFilter": {}, - "sourceTypeLatest": "Mais recentes", - "@sourceTypeLatest": {}, - "sourceTypePopular": "Popular", - "@sourceTypePopular": {}, - "sources": "Fontes", - "@sources": {}, - "start": "Inicio", - "@start": {}, - "themeModeDark": "Escuro", - "@themeModeDark": {}, - "themeModeLight": "Claro", - "@themeModeLight": {}, - "themeModeSystem": "Sistema", - "@themeModeSystem": {}, - "uninstall": "Desinstalar", - "@uninstall": {}, - "uninstalling": "A Desinstalar", - "@uninstalling": {}, - "unknown": "Desconhecido", - "@unknown": {}, - "unknownAuthor": "Autor Desconhecido", - "@unknownAuthor": {}, - "unknownManga": "Manga Desconhecido", - "@unknownManga": {}, - "unknownSource": "Fonte Desconhecida", - "@unknownSource": {}, - "unread": "Não lida", - "@unread": {}, - "update": "Atualização", - "@update": {}, - "updateCompleted": "Atualização Completa", - "@updateCompleted": {}, - "updates": "Atualizações", - "@updates": {}, - "updatesSummary": "Resumo de Atualizações", - "@updatesSummary": {}, - "updating": "Atualizando", - "@updating": {}, - "userName": "Nome de Utilizador", - "@userName": {}, - "versionAvailable": "Versão {version} disponivel para {app}!!", - "@versionAvailable": {}, - "webUI": "Abrir no WEB", - "@webUI": {}, - "webView": "WebView", - "@webView": {}, - "whatsNew": "O que há de Novo?", - "@whatsNew": {}, - "mangaGridSize": "Tamanho do Manga na Grelha", - "@mangaGridSize": { - "description": "Popup title and Button text to change Manga Grid size" - }, - "serverPort": "Porta do Servidor", - "@serverPort": { - "description": "Popup title and Button text to update Server Port" - }, - "serverPortHintText": "Porta do Servidor", - "@serverPortHintText": { - "description": "Text Filed hint text to update Server Port" - }, - "allScanlators": "Todas Scans", - "@allScanlators": { - "description": "Text for all Scanlators in manga description screen chapter filter" - }, - "quickSearchSourceManga": "Procurar por manga 'M' na Fonte 'S'", - "@quickSearchSourceManga": { - "description": "Quick Open Hint text for searching Manga M in Source S with prefill '@S/M'" - }, - "readerScrollAnimation": "Animação do Scroll", - "@readerScrollAnimation": { - "description": "Switch title to Disable scroll animation in reader screen" - }, - "quickSearchContext": "", - "@quickSearchContext": { - "description": "Quick Open Hint text for query X" - }, - "quickSearchCategoryMangaChapter": "Ir para o Nome do Capitulo 'CN' Do Manga 'M' na Categoria 'C'", - "@quickSearchCategoryMangaChapter": { - "description": "Quick Open Hint text for searching Chapter name CN from Manga M in Source S with prefill '#C/M:CN'" - }, - "quickSearchCategory": "Ir para a Categoria 'C'", - "@quickSearchCategory": { - "description": "Quick Open Hint text for Category C with prefill '#C'" - }, - "quickSearchCategoryManga": "Ir para o Manga 'M' na Categoria 'C'", - "@quickSearchCategoryManga": { - "description": "Quick Open Hint text for searching Manga M in Category C with prefill '#C/M'" - }, - "scanlators": "Scanlators", - "@scanlators": { - "description": "Title text for Scanlators" - }, - "quickSearchSource": "Ir para a Fonte 'S'", - "@quickSearchSource": { - "description": "Quick Open Hint text for Source S with prefill '@S'" - }, - "chapterSortUploadDate": "Por Data de Upload", - "@chapterSortUploadDate": { - "description": "Radio button text for sort by Upload Date" - }, - "noServerFound": "Nenhum servidor encontrado em sua rede local, adicione manualmente", - "@noServerFound": { - "description": "Text to show that no Server found in locale network" - }, - "readerMagnifierSize": "Tamanho da lupa", - "@readerMagnifierSize": { - "description": "Slider title text for Reader Magnifier Size" - }, - "cacheCleared": "Cache limpo", - "@cacheCleared": { - "description": "Toast Text to show after clearing cache" - }, - "clearCache": "Limpar cache", - "@clearCache": { - "description": "Button text for clear cache in General Settings screen" - }, - "findServer": "Procurar", - "@findServer": { - "description": "Button text of Find Server" - }, - "readerPadding": "Preenchimento do Leitor", - "@readerPadding": { - "description": "Slider title text for Reader Padding" - }, - "daysAgo": "{days} dias atrás", - "@daysAgo": { - "description": "Days ago text to show the release date of manga" - }, - "nextChapter": "Próximo: {chapterTitle}", - "@nextChapter": { - "description": "Text for Next Chapter button in Manga Reader Screen" - }, - "previousChapter": "Anterior: {chapterTitle}", - "@previousChapter": { - "description": "Text for Previous Chapter button in Manga Reader Screen" - }, - "readerSwipeChapterToggleDescription": "Deslizar para mudar Capitulo no leitor", - "@readerSwipeChapterToggleDescription": { - "description": "Switch tile description for, toggle `swipe to change chapter` in reader screen" - }, - "quickSearchShowAllCommandTip": "Dica: Digite \"?\" Para ver todos os comandos", - "@quickSearchShowAllCommandTip": { - "description": "Quick Open Tip text for showing all commands by entering '?'" - }, - "readerSwipeChapterToggle": "Alternar deslize", - "@readerSwipeChapterToggle": { - "description": "Switch title to toggle `swipe to change chapter` in reader screen" - }, - "readerOverlay": "Overlay inicial do Leitor", - "@readerOverlay": { - "description": "Toggle subtile text for Initial Reader Overlay" - }, - "readerOverlaySubtitle": "Mostrar título e definições rápidas ao abrir o capítulo", - "@readerOverlaySubtitle": {}, - "reload": "recarregar", - "@reload": { - "description": "Reload button text" - }, - "selectUnread": "Selecionar os não lidos", - "@selectUnread": { - "description": "Popup Text for selecting unread chapters" - }, - "selectInBetween": "Selecionar no Meio", - "@selectInBetween": { - "description": "Toast Text for selecting chapters in between first and last Chapters" - }, - "today": "Hoje", - "@today": { - "description": "Today Text to show the release date of manga" - }, - "yesterday": "Ontem", - "@yesterday": { - "description": "Yesterday Text to show the release date of manga" - }, - "removeFromLibrary": "Remover da Biblioteca?", - "@removeFromLibrary": { - "description": "Remove From Library Popup text" - }, - "readerVolumeTap": "Teclas de volume", - "@readerVolumeTap": { - "description": "Switch button text for Reader Page Navigation with Volume Tap" - }, - "readerVolumeTapSubtitle": "Navegar com teclas de volume", - "@readerVolumeTapSubtitle": { - "description": "Switch button Subtitle text for Reader Page Navigation with Volume Tap" - }, - "readerVolumeTapInvert": "Inverter teclas de volume", - "@readerVolumeTapInvert": { - "description": "Switch button text to invert Volume Tap " - }, - "remove": "Remover", - "@remove": { - "description": "Remove Button text" - }, - "selectNext10": "Selecionar os Proximos 10", - "@selectNext10": { - "description": "Toast Text for selecting next 10 chapters" - } -} diff --git a/lib/src/l10n/app_uk.arb b/lib/src/l10n/app_uk.arb deleted file mode 100644 index caaa23c5..00000000 --- a/lib/src/l10n/app_uk.arb +++ /dev/null @@ -1,854 +0,0 @@ -{ - "allScanlators": "Всі Сканлейтори", - "@allScanlators": { - "description": "Text for all Scanlators in manga description screen chapter filter" - }, - "appLanguage": "Мова застосунку", - "@appLanguage": { - "description": "Popup title and Button text to change App Language" - }, - "appTheme": "Тема застосунку", - "@appTheme": { - "description": "Popup title and Button text to change App Theme" - }, - "appTitle": "Tachidesk Sorayomi", - "@appTitle": { - "description": "Name of the app (Tachidesk Sorayomi in native script)" - }, - "appearance": "Зовнішній вигляд", - "@appearance": { - "description": "Screen title and Button text of Appearance screen" - }, - "authType": "Тип автентифікації", - "@authType": { - "description": "Popup title and Button text to change App Authentication" - }, - "authTypeBasic": "Основна авторизація", - "@authTypeBasic": { - "description": "Radio button text for the Basic Authentication type" - }, - "backup": "Резервне копіювання та відновлення", - "@backup": { - "description": "Screen title and Button text of Backup & Restore screen" - }, - "badges": "Значки", - "@badges": { - "description": "Checkbox Group title to enable Badges on manga Cover in Library Screen" - }, - "browse": "Перегляд", - "@browse": { - "description": "Screen title, Navigation Bar text and Button text of both Browse screen and Browse Settings Screen" - }, - "cancel": "Скасувати", - "@cancel": { - "description": "Text for Cancel button in a Popup" - }, - "categoryUpdate": "Оновлення категорії", - "@categoryUpdate": { - "description": "Button text to update the mangas in the Category" - }, - "channel": "Канал", - "@channel": { - "description": "Text title to show Channel of the Server (Stable, preview) in About Screen" - }, - "chapterSortUploadDate": "За датою завантаження", - "@chapterSortUploadDate": { - "description": "Radio button text for sort by Upload Date" - }, - "checkForUpdates": "Перевірити наявність оновлень", - "@checkForUpdates": { - "description": "Button text to check for App Updates" - }, - "clearCache": "Очистити кеш", - "@clearCache": { - "description": "Button text for clear cache in General Settings screen" - }, - "client": "Клієнт", - "@client": { - "description": "Text title for the name of the client in About screen" - }, - "close": "Закрити", - "@close": { - "description": "Text for close button" - }, - "copyMsg": "'{msg}' Скопійовано!", - "@copyMsg": { - "description": "Toast text to show that the message has been copied", - "placeholders": { - "msg": { - "example": "Client : Tachidesk Sorayomi", - "type": "String" - } - } - }, - "createBackupDescription": "Резервна копія бібліотеки як резервна копія Tachidesk", - "@createBackupDescription": { - "description": "Button text description to create backup" - }, - "credentials": "Облікові дані", - "@credentials": { - "description": "Popup title and Button text to enter Authentication credentials" - }, - "current": "Поточний", - "@current": { - "description": "Text to show the currently reading chapter in Reader Screen" - }, - "delete": "Видалити", - "@delete": { - "description": "Text for delete button" - }, - "deleteCategoryTitle": "Ви впевнені?", - "@deleteCategoryTitle": { - "description": "Popup title when deleting Category" - }, - "discord": "Discord", - "@discord": { - "description": "Discord app title" - }, - "display": "Відображення", - "@display": { - "description": "Text for Display tab in Library screen drawer" - }, - "displayMode": "Режим відображення", - "@displayMode": { - "description": "Radio Group title to change manga Cover display in Library and Source Screens" - }, - "displayModeDescriptiveList": "Описовий список", - "@displayModeDescriptiveList": { - "description": "Radio button text for Manga Cover display mode - Descriptive List" - }, - "displayModeList": "Список", - "@displayModeList": { - "description": "Radio button text for Manga Cover display mode - List" - }, - "edit": "Редагувати", - "@edit": { - "description": "Popup button text to edit Category in Edit category screen" - }, - "editCategory": "Редагувати категорію", - "@editCategory": { - "description": "Screen title, Button text and of Downloads screen" - }, - "errorFilePick": "Файл не вибрано!", - "@errorFilePick": { - "description": "Error Description to show when user does not selected an file" - }, - "errorPassword": "Пароль не може бути порожнім", - "@errorPassword": { - "description": "Error Description to show that password cannot be empty" - }, - "errorSomethingWentWrong": "Щось пішло не так!", - "@errorSomethingWentWrong": { - "description": "Error Description to show that Something went wrong!" - }, - "errorUserName": "Ім’я користувача не може бути порожнім", - "@errorUserName": { - "description": "Error Description to show that UserName cannot be empty" - }, - "extensionInstalled": "Розширення встановлено!", - "@extensionInstalled": { - "description": "Toast text to show that the Extension Installed successfully" - }, - "extensions": "Розширення", - "@extensions": { - "description": "Extension list Tab title in Browse Screen" - }, - "failed": "Не вдалося", - "@failed": { - "description": "Failed status Manga Group title in Update Summary Screen" - }, - "filter": "Фільтр", - "@filter": { - "description": "title of filter Tab across the app" - }, - "general": "Загальні", - "@general": { - "description": "Screen title and Button text of General setting screen" - }, - "gitHub": "GitHub", - "@gitHub": { - "description": "GitHub app title" - }, - "globalSearch": "Глобальний пошук", - "@globalSearch": { - "description": "Screen title of Global Search screen" - }, - "help": "Допомога", - "@help": { - "description": "Button text of help in about screen" - }, - "inLibrary": "У бібліотеці", - "@inLibrary": { - "description": "Button and Chip text to show that the manga is in Library" - }, - "installingExtension": "Встановлення розширення", - "@installingExtension": { - "description": "Toast text to show that the extension is installing" - }, - "latest": "Останні", - "@latest": { - "description": "Button text to take user to the latest tab of Source manga screen" - }, - "manga": "Манґа", - "@manga": { - "description": "Screen title and Button text of Manga details screen" - }, - "mangaGridSize": "Розмір сітки манґи", - "@mangaGridSize": { - "description": "Popup title and Button text to change Manga Grid size" - }, - "mangaMissingSources": "Відсутні джерела манґи", - "@mangaMissingSources": { - "description": "Group title to show the Manga Missing Sources when restoring Backup" - }, - "mangaSortDateAdded": "Дата додавання", - "@mangaSortDateAdded": { - "description": "Radio button text for Manga sort Type - Date Added" - }, - "mangaStatusCancelled": "Скасовано", - "@mangaStatusCancelled": { - "description": "Text to show Manga Status Cancelled in Manga details screen" - }, - "mangaStatusCompleted": "Завершено", - "@mangaStatusCompleted": { - "description": "Text to show Manga Status Completed in Manga details screen" - }, - "mangaStatusOnHiatus": "На перерві", - "@mangaStatusOnHiatus": { - "description": "Text to show Manga Status On Hiatus in Manga details screen" - }, - "mangaStatusPublishingFinished": "Публікацію завершено", - "@mangaStatusPublishingFinished": { - "description": "Text to show Manga Status Publishing Finished in Manga details screen" - }, - "mangaStatusUnknown": "Невідомо", - "@mangaStatusUnknown": { - "description": "Text to show Manga Status Unknown in Manga details screen" - }, - "more": "Більше", - "@more": { - "description": "Screen title and Navigation text of More screen" - }, - "moveToBottom": "Перемістити вниз", - "@moveToBottom": { - "description": "Button text to move download/category to the bottom of list" - }, - "moveToTop": "Перемістити вгору", - "@moveToTop": { - "description": "Button text to move download/category to the top of list" - }, - "nameCountDisplay": "{name}: {count}", - "@nameCountDisplay": { - "description": "Text pattern to display an name and count in a string", - "placeholders": { - "name": { - "example": "Downloaded", - "type": "String" - }, - "count": { - "example": "22", - "type": "int" - } - } - }, - "noChaptersFound": "Не знайдено жодного розділу", - "@noChaptersFound": { - "description": "Text to show that the Chapter list is empty in Manga details Screen" - }, - "noDownloads": "Немає завантажень", - "@noDownloads": { - "description": "Text to show that there is no active downloads in Downloads Screen" - }, - "noMangaFound": "Манґи не знайдено", - "@noMangaFound": { - "description": "Text to show that the Manga list is empty" - }, - "noResultFound": "Нічого не знайдено", - "@noResultFound": { - "description": "Text to show that no results found for the given search query" - }, - "noSourcesFound": "Джерел не знайдено", - "@noSourcesFound": { - "description": "Text to show that the Source list is empty" - }, - "noUpdatesAvailable": "Ви використовуєте останню версію", - "@noUpdatesAvailable": { - "description": "Text to show that the user is using the latest version of the app" - }, - "noUpdatesFound": "Оновлень не знайдено", - "@noUpdatesFound": { - "description": "Toast Text to show that there are no Updates available" - }, - "nsfw": "Показати NSFW розширення та джерела", - "@nsfw": { - "description": "Switch text to show/hide the nsfw extensions" - }, - "nsfw18": "18+", - "@nsfw18": { - "description": "18+ tag Text to show in extensions list" - }, - "nsfwInfo": "Це не запобігає появі неофіційних або потенційно неправильно позначених розширень, які можуть містити NSFW(18+) вміст в застосунку", - "@nsfwInfo": { - "description": "Hint text to show that the nsfw switch cannot prevent incorrectly flagged extensions from surfacing" - }, - "obsolete": "Застаріле", - "@obsolete": { - "description": "Text to show that the extension has become Obsolete" - }, - "page": "Сторінка: {number}", - "@page": { - "description": "Text to show the last read Page number of the chapter in Manga details screen", - "placeholders": { - "number": { - "example": "23", - "type": "int" - } - } - }, - "pause": "Пауза", - "@pause": { - "description": "Button text to pause downloads" - }, - "quickSearchCategoryManga": "Перейти до манґи \"M\" у категорію \"C\"", - "@quickSearchCategoryManga": { - "description": "Quick Open Hint text for searching Manga M in Category C with prefill '#C/M'" - }, - "quickSearchCategoryMangaChapter": "Перейти до назви розділу \"CN\" з манґи \"M\" в категорію \"C\"", - "@quickSearchCategoryMangaChapter": { - "description": "Quick Open Hint text for searching Chapter name CN from Manga M in Source S with prefill '#C/M:CN'" - }, - "reader": "Читач", - "@reader": { - "description": "Screen title and Button text of Reader screen" - }, - "readerMode": "Режим читання", - "@readerMode": { - "description": "Popup title and Button text of Reader Mode popup" - }, - "readerModeContinuousHorizontalLTR": "Горизонтальний безперервний (зліва направо)", - "@readerModeContinuousHorizontalLTR": { - "description": "Radio button text for Reader Mode Type - Continuous Horizontal (LTR)" - }, - "readerModeDefaultReader": "За замовчуванням", - "@readerModeDefaultReader": { - "description": "Radio button text for Reader Mode Type - Default" - }, - "readerModeContinuousVertical": "Вертикальний безперервний", - "@readerModeContinuousVertical": { - "description": "Radio button text for Reader Mode Type - Continuous Vertical" - }, - "readerModeSingleHorizontalRTL": "Одиночний горизонтальний (справо наліво)", - "@readerModeSingleHorizontalRTL": { - "description": "Radio button text for Reader Mode Type - Single Horizontal (RTL)" - }, - "readerModeSingleHorizontalLTR": "Одиночний горизонтальний (зліва направо)", - "@readerModeSingleHorizontalLTR": { - "description": "Radio button text for Reader Mode Type - Single Horizontal (LTR)" - }, - "readerModeSingleVertical": "Одиночний вертикальний", - "@readerModeSingleVertical": { - "description": "Radio button text for Reader Mode Type - Single Vertical" - }, - "readerModeWebtoon": "Webtoon", - "@readerModeWebtoon": { - "description": "Radio button text for Reader Mode Type - Webtoon" - }, - "readerNavigationLayout": "Макет навігації", - "@readerNavigationLayout": { - "description": "Popup title and Button text of Reader Navigation Layout popup" - }, - "readerNavigationLayoutDefault": "За замовчуванням", - "@readerNavigationLayoutDefault": { - "description": "Radio button text for Reader Navigation Layout - Default" - }, - "readerNavigationLayoutDisabled": "Вимкнено", - "@readerNavigationLayoutDisabled": { - "description": "Radio button text for Reader Navigation Layout - Disabled" - }, - "readerNavigationLayoutEdge": "Край", - "@readerNavigationLayoutEdge": { - "description": "Radio button text for Reader Navigation Layout - Edge" - }, - "readerScrollAnimation": "Анімація прокрутки", - "@readerScrollAnimation": { - "description": "Switch title to Disable scroll animation in reader screen" - }, - "readerNavigationLayoutKindlish": "Kindle-ish", - "@readerNavigationLayoutKindlish": { - "description": "Radio button text for Reader Navigation Layout - Kindle-ish" - }, - "readerNavigationLayoutLShaped": "Форма L", - "@readerNavigationLayoutLShaped": { - "description": "Radio button text for Reader Navigation Layout - L Shaped" - }, - "readerNavigationLayoutRightAndLeft": "Праворуч і ліворуч", - "@readerNavigationLayoutRightAndLeft": { - "description": "Radio button text for Reader Navigation Layout - Right And Left" - }, - "readerPadding": "Заповнення читача", - "@readerPadding": { - "description": "Slider title text for Reader Padding" - }, - "reddit": "Reddit", - "@reddit": { - "description": "Reddit app title" - }, - "refresh": "Оновити", - "@refresh": { - "description": "Refresh button text" - }, - "reset": "Скинути", - "@reset": { - "description": "Button text of reset button in source filters" - }, - "restoreBackupDescription": "Відновити Tachidesk з резервної копії", - "@restoreBackupDescription": { - "description": "Button text description to create backup" - }, - "restored": "Резервну копію відновлено!", - "@restored": { - "description": "Toast Text to show that the backup has been restored" - }, - "restoring": "Відновлення резервної копії", - "@restoring": { - "description": "Toast Text to show that the backup is restoring" - }, - "resume": "Відновити", - "@resume": { - "description": "Button Text to resume Chapter reading/downloading" - }, - "retry": "Повторити", - "@retry": { - "description": "Retry Button Text" - }, - "save": "Зберегти", - "@save": { - "description": "Save Button Text" - }, - "scanlators": "Перекладачі", - "@scanlators": { - "description": "Title text for Scanlators" - }, - "search": "Пошук", - "@search": { - "description": "Search field hint Text" - }, - "searchingForUpdates": "Пошук оновлень", - "@searchingForUpdates": { - "description": "Toast Text for searching for updates of the App/Server" - }, - "server": "Сервер", - "@server": { - "description": "Text title for the server in About screen" - }, - "serverPortHintText": "Порт сервера", - "@serverPortHintText": { - "description": "Text Filed hint text to update Server Port" - }, - "settings": "Налаштування", - "@settings": { - "description": "Screen title and Button text of Settings screen" - }, - "source": "Джерело", - "@source": { - "description": "Screen title and Button text of source screen" - }, - "sourceTypeFilter": "Фільтр", - "@sourceTypeFilter": { - "description": "Tab text Filter for source screen type" - }, - "sourceTypeLatest": "Останні", - "@sourceTypeLatest": { - "description": "Tab text Latest for source screen type" - }, - "sourceTypePopular": "Популярне", - "@sourceTypePopular": { - "description": "Tab text Popular for source screen type" - }, - "start": "Почати", - "@start": { - "description": "Button text start reading the manga" - }, - "themeModeDark": "Темна", - "@themeModeDark": { - "description": "Radio button text for App theme - Dark" - }, - "themeModeLight": "Світла", - "@themeModeLight": { - "description": "Radio button text for App theme - Light" - }, - "uninstalling": "Видалення", - "@uninstalling": { - "description": "Button text to show that the extension is uninstalling" - }, - "updatesSummary": "Підсумок оновлень", - "@updatesSummary": { - "description": "Screen title and Button text of Updates Summary screen" - }, - "updating": "Оновлення", - "@updating": { - "description": "Button text to show that the extension is updating" - }, - "webUI": "Відкрити у Веб", - "@webUI": { - "description": "Button text to open in web UI" - }, - "whatsNew": "Що нового?", - "@whatsNew": { - "description": "Button text to open whats new page of app in web" - }, - "about": "Про застосунок", - "@about": { - "description": "Screen title and Button text of About screen" - }, - "addCategory": "Додати категорію", - "@addCategory": { - "description": "Popup title and Button text to add new category in Edit Category Screen" - }, - "cacheCleared": "Кеш очищено", - "@cacheCleared": { - "description": "Toast Text to show after clearing cache" - }, - "categories": "Категорії", - "@categories": { - "description": "Button text of edit Categories screen in Library settings screen" - }, - "addToLibrary": "Додати до бібліотеки", - "@addToLibrary": { - "description": "Button text to add Manga to Library in Manga Details Screen" - }, - "authTypeNone": "Немає", - "@authTypeNone": { - "description": "Radio button text for no Authentication" - }, - "chapterNumber": "Розділ {number}", - "@chapterNumber": { - "description": "Text title for Chapter name in chapter list", - "placeholders": { - "number": { - "example": "12.5", - "type": "double" - } - } - }, - "bookmarked": "Додано в закладки", - "@bookmarked": { - "description": "Checkbox text to filter bookmarked manga chapters in Manga Details screen" - }, - "buildTime": "Час збірки", - "@buildTime": { - "description": "Text title to show build time of Server in About Screen" - }, - "chapterSortFetchedDate": "За датою отримання", - "@chapterSortFetchedDate": { - "description": "Radio button text for sort by Fetched Date" - }, - "chapterSortSource": "За джерелом", - "@chapterSortSource": { - "description": "Radio button text for sort by Source" - }, - "checkForServerUpdates": "Перевірити наявність оновлень сервера", - "@checkForServerUpdates": { - "description": "Button text to check for Server updates" - }, - "clientVersion": "Версія клієнту", - "@clientVersion": { - "description": "Text title for the current version of the client in About screen" - }, - "completed": "Завершено", - "@completed": { - "description": "Checkbox text to filter Completed mangas in Library screen and Manga Grouping text in Update Summary screen" - }, - "createBackupTitle": "Створити резервну копію", - "@createBackupTitle": { - "description": "Button text to create backup" - }, - "missingExtension": "Відсутні розширення", - "@missingExtension": { - "description": "Group title to show the Missing Extensions when restoring Backup" - }, - "defaultCategory": "Категорія за замовчуванням при додаванні нової манґи до бібліотеки", - "@defaultCategory": { - "description": "Checkbox description when creating a Category to add manga to the Category by Default" - }, - "deleteCategoryDescription": "Це об'єднає всі манґи в цій категорії за замовчуванням!", - "@deleteCategoryDescription": { - "description": "Popup description when deleting Category" - }, - "displayModeGrid": "Сітка", - "@displayModeGrid": { - "description": "Radio button text for Manga Cover display mode - Grid" - }, - "emptyCategory": "Назва категорії не може бути порожньою", - "@emptyCategory": { - "description": "Description to show that category list is empty in Edit Category screen" - }, - "downloaded": "Завантажено", - "@downloaded": { - "description": "Text to show downloaded chapters status in Filters " - }, - "errorExtension": "Не вдається знайти вибране розширення", - "@errorExtension": { - "description": "Error Description to show when user selected unknown extension from list" - }, - "downloads": "Зааантаження", - "@downloads": { - "description": "Screen title and Navigation text of Downloads screen" - }, - "errorFilePickUnknownExtension": "Будь ласка, виберіть файл з розширенням {extensionName}", - "@errorFilePickUnknownExtension": { - "description": "Error Description to show when user selected unknown extension file" - }, - "errorLaunchURL": "Не вдалося відкрити!\nКопіювання \"{url}\" в буфер обміну", - "@errorLaunchURL": { - "description": "Error Description to show when App failed to launch an URL and copied the URL to clipboard", - "placeholders": { - "url": { - "example": "http://sorayomi.suwayomi.org", - "type": "String" - } - } - }, - "extensionListEmpty": "Список розширень порожній", - "@extensionListEmpty": { - "description": "Description to show that Extension list is empty in Extension list tab of Browse screen" - }, - "install": "Встановити", - "@install": { - "description": "Button text to install the extension" - }, - "globalUpdate": "Глобальне оновлення", - "@globalUpdate": { - "description": "Button text of Global Manga Update" - }, - "findServer": "Знайти", - "@findServer": { - "description": "Button text of Find Server" - }, - "finished": "Завершено", - "@finished": { - "description": "Text to show the Currently Finished reading chapter in Reader Screen" - }, - "mangaStatusOngoing": "Виходить", - "@mangaStatusOngoing": { - "description": "Text to show Manga Status Ongoing in Manga details screen" - }, - "languages": "Мови", - "@languages": { - "description": "Popup title to filter extensions based on language" - }, - "installing": "Встановлення", - "@installing": { - "description": "Button text to show that the extension is installing" - }, - "library": "Бібліотека", - "@library": { - "description": "Screen title and Button text of Library and Library Settings screen" - }, - "mangaSortUnread": "Не прочитано", - "@mangaSortUnread": { - "description": "Radio button text for Manga sort Type - Unread" - }, - "mangaSortAlphabetical": "За алфавітом", - "@mangaSortAlphabetical": { - "description": "Radio button text for Manga sort Type - Alphabetical" - }, - "mangaSortLastRead": "Останнє прочитане", - "@mangaSortLastRead": { - "description": "Radio button text for Manga sort Type - Last Read" - }, - "missingTrackers": "Відсутні трекери", - "@missingTrackers": { - "description": "Group title to show the Missing Trackers when restoring Backup" - }, - "mangaStatusLicensed": "Ліцензовано", - "@mangaStatusLicensed": { - "description": "Text to show Manga Status Licensed in Manga details screen" - }, - "newUpdateAvailable": "Доступне нове оновлення", - "@newUpdateAvailable": { - "description": "Popup title to show that the App/Server has and update" - }, - "noCategoriesFound": "У вас немає жодної категорії. \n(Порада: натисніть кнопку \"Плюс\", щоб створити категорію для впорядкування бібліотеки)", - "@noCategoriesFound": { - "description": "Hint text to add new Category when category list is empty" - }, - "noCategoriesFoundAlt": "У вас немає категорій. \nСтворіть їх у налаштуваннях для організації бібліотеки", - "@noCategoriesFoundAlt": { - "description": "Hint text to add new Category in Settings when category list is empty" - }, - "numSelected": "{num} Вибрано", - "@numSelected": { - "description": "Title text to show the number of chapters selected in the Manga details screen and Updates screen", - "placeholders": { - "num": { - "example": "23", - "type": "int" - } - } - }, - "noCategoryMangaFound": "У цій категорії не знайдено жодної манґи. \n(Порада: перевірте пошук та фільтри!)", - "@noCategoryMangaFound": { - "description": "Hint text to check filter when manga list is empty in Category tab in Library" - }, - "noOfChapters": "{count} Розділів", - "@noOfChapters": { - "description": "Title text to show the number of chapters in the Manga details screen", - "placeholders": { - "count": { - "example": "23", - "type": "int" - } - } - }, - "noServerFound": "У вашій локальній мережі не знайдено сервер", - "@noServerFound": { - "description": "Text to show that no Server found in locale network" - }, - "password": "Пароль", - "@password": { - "description": "Title text for password field" - }, - "quickSearchSourceManga": "Пошук манґи \"M\" у джерелі \"S\"", - "@quickSearchSourceManga": { - "description": "Quick Open Hint text for searching Manga M in Source S with prefill '@S/M'" - }, - "restoreBackupTitle": "Відновити резервну копію", - "@restoreBackupTitle": { - "description": "Button text to create backup" - }, - "pending": "В очікуванні", - "@pending": { - "description": "Pending status Manga Group title in Update Summary Screen" - }, - "quickSearchContext": "Пошук за запитом X (результати базуються на контексті екрана)", - "@quickSearchContext": { - "description": "Quick Open Hint text for query X" - }, - "readerModeContinuousHorizontalRTL": "Горизонтальний безперервний (справа наліво)", - "@readerModeContinuousHorizontalRTL": { - "description": "Radio button text for Reader Mode Type - Continuous Horizontal (RTL)" - }, - "quickSearchCategory": "Перейти до категорії \"C\"", - "@quickSearchCategory": { - "description": "Quick Open Hint text for Category C with prefill '#C'" - }, - "quickSearchSource": "Перейти до джерела \"S\"", - "@quickSearchSource": { - "description": "Quick Open Hint text for Source S with prefill '@S'" - }, - "readerNavigationLayoutInvert": "Інвертувати дотик", - "@readerNavigationLayoutInvert": { - "description": "Switch title to invert Tap to scroll in reader screen" - }, - "readerMagnifierSize": "Розмір екранної лупи", - "@readerMagnifierSize": { - "description": "Slider title text for Reader Magnifier Size" - }, - "running": "Запущено", - "@running": { - "description": "Running status Manga Group title in Update Summary Screen" - }, - "sources": "Джерела", - "@sources": { - "description": "title of Sources Tab in Browse Screen" - }, - "update": "Oновити", - "@update": { - "description": "Button text to update the extension" - }, - "serverUrl": "URL сервера", - "@serverUrl": { - "description": "Popup title and Button text to update Server Url" - }, - "themeModeSystem": "Системна", - "@themeModeSystem": { - "description": "Radio button text for App theme - System" - }, - "unknownManga": "Невідома манґа", - "@unknownManga": { - "description": "Text to show unknown manga in Manga details screen" - }, - "webView": "Web View", - "@webView": { - "description": "Button text to open manga website" - }, - "serverUrlHintText": "URL-адреса сервера", - "@serverUrlHintText": { - "description": "Text Filed hint text to update Server Url" - }, - "serverPort": "Порт сервера", - "@serverPort": { - "description": "Popup title and Button text to update Server Port" - }, - "serverVersion": "Версія сервера", - "@serverVersion": { - "description": "Text title for the current version of the Server in About screen" - }, - "sort": "Сортувати", - "@sort": { - "description": "title of sort Tab across the app" - }, - "uninstall": "Видалити", - "@uninstall": { - "description": "Button text to Uninstall the extension" - }, - "unread": "Не прочитано", - "@unread": { - "description": "Checkbox text to unread bookmarked manga/chapters across app" - }, - "updates": "Оновлення", - "@updates": { - "description": "Screen title and Button text of Updates screen" - }, - "unknownAuthor": "Невідомий автор", - "@unknownAuthor": { - "description": "Text to show unknown author in Manga details screen" - }, - "updateCompleted": "Оновлення завершено", - "@updateCompleted": { - "description": "Button text to show that extension update is completed" - }, - "unknownSource": "Невідоме джерело", - "@unknownSource": { - "description": "Text to show unknown Source in Manga details screen" - }, - "userName": "Ім'я користувача", - "@userName": { - "description": "Title text for User Name field" - }, - "versionAvailable": "Версія {version} доступна для {app}!!!", - "@versionAvailable": { - "description": "Text to show that there is an update to App/Server", - "placeholders": { - "app": { - "example": "Server", - "type": "String" - }, - "version": { - "example": "v0.4.2", - "type": "String" - } - } - }, - "daysAgo": "{days} днів тому", - "@daysAgo": { - "description": "Days ago text to show the release date of manga" - }, - "yesterday": "Вчора", - "@yesterday": { - "description": "Yesterday Text to show the release date of manga" - }, - "today": "Сьогодні", - "@today": { - "description": "Today Text to show the release date of manga" - }, - "readerSwipeChapterToggle": "Проведіть пальцем, щоб перегорнути", - "@readerSwipeChapterToggle": { - "description": "Switch title to toggle `swipe to change chapter` in reader screen" - }, - "readerSwipeChapterToggleDescription": "Проведіть пальцем, щоб змінити розділ в читачу", - "@readerSwipeChapterToggleDescription": { - "description": "Switch tile description for, toggle `swipe to change chapter` in reader screen" - } -} diff --git a/lib/src/l10n/app_zh.arb b/lib/src/l10n/app_zh.arb deleted file mode 100644 index 0f504ac9..00000000 --- a/lib/src/l10n/app_zh.arb +++ /dev/null @@ -1,908 +0,0 @@ -{ - "start": "开始阅读", - "@start": { - "description": "Button text start reading the manga" - }, - "themeModeSystem": "跟随系统", - "@themeModeSystem": { - "description": "Radio button text for App theme - System" - }, - "unknownAuthor": "未知作者", - "@unknownAuthor": { - "description": "Text to show unknown author in Manga details screen" - }, - "updates": "更新", - "@updates": { - "description": "Screen title and Button text of Updates screen" - }, - "updating": "更新中", - "@updating": { - "description": "Button text to show that the extension is updating" - }, - "whatsNew": "更新了什么?", - "@whatsNew": { - "description": "Button text to open whats new page of app in web" - }, - "uninstalling": "正在卸载", - "@uninstalling": { - "description": "Button text to show that the extension is uninstalling" - }, - "versionAvailable": "{app} 有更新可用 {version} !", - "@versionAvailable": { - "description": "Text to show that there is an update to App/Server", - "placeholders": { - "app": { - "example": "Server", - "type": "String" - }, - "version": { - "example": "v0.4.2", - "type": "String" - } - } - }, - "webView": "Web View", - "@webView": { - "description": "Button text to open manga website" - }, - "authTypeBasic": "基本认证", - "@authTypeBasic": { - "description": "Radio button text for the Basic Authentication type" - }, - "restoring": "正在还原", - "@restoring": { - "description": "Toast Text to show that the backup is restoring" - }, - "chapterNumber": "第 {number} 章", - "@chapterNumber": { - "description": "Text title for Chapter name in chapter list", - "placeholders": { - "number": { - "example": "12.5", - "type": "double" - } - } - }, - "errorFilePickUnknownExtension": "请选择插件 {extensionName}", - "@errorFilePickUnknownExtension": { - "description": "Error Description to show when user selected unknown extension file" - }, - "finished": "阅读过", - "@finished": { - "description": "Text to show the Currently Finished reading chapter in Reader Screen" - }, - "copyMsg": "'{msg}'已复制!", - "@copyMsg": { - "description": "Toast text to show that the message has been copied", - "placeholders": { - "msg": { - "example": "Client : Tachidesk Sorayomi", - "type": "String" - } - } - }, - "appearance": "外观", - "@appearance": { - "description": "Screen title and Button text of Appearance screen" - }, - "authType": "验证方式", - "@authType": { - "description": "Popup title and Button text to change App Authentication" - }, - "extensions": "插件", - "@extensions": { - "description": "Extension list Tab title in Browse Screen" - }, - "about": "关于", - "@about": { - "description": "Screen title and Button text of About screen" - }, - "appLanguage": "应用语言", - "@appLanguage": { - "description": "Popup title and Button text to change App Language" - }, - "appTheme": "应用主题", - "@appTheme": { - "description": "Popup title and Button text to change App Theme" - }, - "appTitle": "Sorayomi", - "@appTitle": { - "description": "Name of the app (Tachidesk Sorayomi in native script)" - }, - "addToLibrary": "添加到书架", - "@addToLibrary": { - "description": "Button text to add Manga to Library in Manga Details Screen" - }, - "authTypeNone": "无", - "@authTypeNone": { - "description": "Radio button text for no Authentication" - }, - "browse": "浏览", - "@browse": { - "description": "Screen title, Navigation Bar text and Button text of both Browse screen and Browse Settings Screen" - }, - "buildTime": "构建时间", - "@buildTime": { - "description": "Text title to show build time of Server in About Screen" - }, - "bookmarked": "已添加书签", - "@bookmarked": { - "description": "Checkbox text to filter bookmarked manga chapters in Manga Details screen" - }, - "categories": "分类", - "@categories": { - "description": "Button text of edit Categories screen in Library settings screen" - }, - "categoryUpdate": "更新分类", - "@categoryUpdate": { - "description": "Button text to update the mangas in the Category" - }, - "channel": "通道", - "@channel": { - "description": "Text title to show Channel of the Server (Stable, preview) in About Screen" - }, - "chapterSortFetchedDate": "按添加日期", - "@chapterSortFetchedDate": { - "description": "Radio button text for sort by Fetched Date" - }, - "chapterSortSource": "按来源", - "@chapterSortSource": { - "description": "Radio button text for sort by Source" - }, - "checkForUpdates": "检查更新", - "@checkForUpdates": { - "description": "Button text to check for App Updates" - }, - "client": "客户端", - "@client": { - "description": "Text title for the name of the client in About screen" - }, - "close": "关闭", - "@close": { - "description": "Text for close button" - }, - "completed": "阅读过", - "@completed": { - "description": "Checkbox text to filter Completed mangas in Library screen and Manga Grouping text in Update Summary screen" - }, - "credentials": "认证", - "@credentials": { - "description": "Popup title and Button text to enter Authentication credentials" - }, - "defaultCategory": "默认添加到此库", - "@defaultCategory": { - "description": "Checkbox description when creating a Category to add manga to the Category by Default" - }, - "delete": "删除", - "@delete": { - "description": "Text for delete button" - }, - "createBackupDescription": "可用于还原当前书架数据", - "@createBackupDescription": { - "description": "Button text description to create backup" - }, - "deleteCategoryDescription": "此分类下的漫画将迁移至默认分类!", - "@deleteCategoryDescription": { - "description": "Popup description when deleting Category" - }, - "deleteCategoryTitle": "确定?", - "@deleteCategoryTitle": { - "description": "Popup title when deleting Category" - }, - "discord": "DIscord", - "@discord": { - "description": "Discord app title" - }, - "display": "显示", - "@display": { - "description": "Text for Display tab in Library screen drawer" - }, - "displayMode": "显示模式", - "@displayMode": { - "description": "Radio Group title to change manga Cover display in Library and Source Screens" - }, - "displayModeGrid": "网格", - "@displayModeGrid": { - "description": "Radio button text for Manga Cover display mode - Grid" - }, - "displayModeList": "简单列表", - "@displayModeList": { - "description": "Radio button text for Manga Cover display mode - List" - }, - "downloads": "下载", - "@downloads": { - "description": "Screen title and Navigation text of Downloads screen" - }, - "editCategory": "编辑分类", - "@editCategory": { - "description": "Screen title, Button text and of Downloads screen" - }, - "errorFilePick": "未选择任何文件!", - "@errorFilePick": { - "description": "Error Description to show when user does not selected an file" - }, - "errorExtension": "所选插件不存在", - "@errorExtension": { - "description": "Error Description to show when user selected unknown extension from list" - }, - "errorLaunchURL": "打开失败\n详细记录{url}已经复制到剪贴板", - "@errorLaunchURL": { - "description": "Error Description to show when App failed to launch an URL and copied the URL to clipboard", - "placeholders": { - "url": { - "example": "http://sorayomi.suwayomi.org", - "type": "String" - } - } - }, - "errorPassword": "密码不能为空", - "@errorPassword": { - "description": "Error Description to show that password cannot be empty" - }, - "errorUserName": "用户名不能为空", - "@errorUserName": { - "description": "Error Description to show that UserName cannot be empty" - }, - "extensionListEmpty": "插件列表为空", - "@extensionListEmpty": { - "description": "Description to show that Extension list is empty in Extension list tab of Browse screen" - }, - "extensionInstalled": "插件安装完成!", - "@extensionInstalled": { - "description": "Toast text to show that the Extension Installed successfully" - }, - "general": "通用", - "@general": { - "description": "Screen title and Button text of General setting screen" - }, - "gitHub": "GitHub", - "@gitHub": { - "description": "GitHub app title" - }, - "globalSearch": "全局搜索", - "@globalSearch": { - "description": "Screen title of Global Search screen" - }, - "globalUpdate": "全局更新", - "@globalUpdate": { - "description": "Button text of Global Manga Update" - }, - "inLibrary": "在书架中", - "@inLibrary": { - "description": "Button and Chip text to show that the manga is in Library" - }, - "installing": "安装中", - "@installing": { - "description": "Button text to show that the extension is installing" - }, - "installingExtension": "正在安装", - "@installingExtension": { - "description": "Toast text to show that the extension is installing" - }, - "languages": "语言", - "@languages": { - "description": "Popup title to filter extensions based on language" - }, - "library": "书架", - "@library": { - "description": "Screen title and Button text of Library and Library Settings screen" - }, - "manga": "漫画", - "@manga": { - "description": "Screen title and Button text of Manga details screen" - }, - "mangaSortAlphabetical": "名称", - "@mangaSortAlphabetical": { - "description": "Radio button text for Manga sort Type - Alphabetical" - }, - "mangaSortUnread": "未阅读", - "@mangaSortUnread": { - "description": "Radio button text for Manga sort Type - Unread" - }, - "mangaMissingSources": "来源未安装", - "@mangaMissingSources": { - "description": "Group title to show the Manga Missing Sources when restoring Backup" - }, - "mangaSortLastRead": "最近阅读", - "@mangaSortLastRead": { - "description": "Radio button text for Manga sort Type - Last Read" - }, - "mangaStatusCancelled": "已取消", - "@mangaStatusCancelled": { - "description": "Text to show Manga Status Cancelled in Manga details screen" - }, - "mangaStatusCompleted": "已完成", - "@mangaStatusCompleted": { - "description": "Text to show Manga Status Completed in Manga details screen" - }, - "mangaStatusLicensed": "已认证", - "@mangaStatusLicensed": { - "description": "Text to show Manga Status Licensed in Manga details screen" - }, - "mangaStatusOngoing": "连载中", - "@mangaStatusOngoing": { - "description": "Text to show Manga Status Ongoing in Manga details screen" - }, - "missingExtension": "插件缺失", - "@missingExtension": { - "description": "Group title to show the Missing Extensions when restoring Backup" - }, - "more": "更多", - "@more": { - "description": "Screen title and Navigation text of More screen" - }, - "nameCountDisplay": "{name}:{count}", - "@nameCountDisplay": { - "description": "Text pattern to display an name and count in a string", - "placeholders": { - "name": { - "example": "Downloaded", - "type": "String" - }, - "count": { - "example": "22", - "type": "int" - } - } - }, - "newUpdateAvailable": "有可用更新", - "@newUpdateAvailable": { - "description": "Popup title to show that the App/Server has and update" - }, - "noCategoryMangaFound": "未找到匹配项\n提示:检查搜索或更改筛选条件", - "@noCategoryMangaFound": { - "description": "Hint text to check filter when manga list is empty in Category tab in Library" - }, - "noChaptersFound": "未找到章节", - "@noChaptersFound": { - "description": "Text to show that the Chapter list is empty in Manga details Screen" - }, - "noDownloads": "没有下载中的任务", - "@noDownloads": { - "description": "Text to show that there is no active downloads in Downloads Screen" - }, - "noMangaFound": "未找到漫画", - "@noMangaFound": { - "description": "Text to show that the Manga list is empty" - }, - "noResultFound": "未找到结果", - "@noResultFound": { - "description": "Text to show that no results found for the given search query" - }, - "noSourcesFound": "结果为空", - "@noSourcesFound": { - "description": "Text to show that the Source list is empty" - }, - "noUpdatesAvailable": "正在使用最新版", - "@noUpdatesAvailable": { - "description": "Text to show that the user is using the latest version of the app" - }, - "nsfw": "在图源和插件中显示", - "@nsfw": { - "description": "Switch text to show/hide the nsfw extensions" - }, - "nsfw18": "18+", - "@nsfw18": { - "description": "18+ tag Text to show in extensions list" - }, - "nsfwInfo": "这并不能防止非官方或可能被错误标记的插件在应用中显示 NSFW(18+) 内容", - "@nsfwInfo": { - "description": "Hint text to show that the nsfw switch cannot prevent incorrectly flagged extensions from surfacing" - }, - "numSelected": "已选择 {num} 章", - "@numSelected": { - "description": "Title text to show the number of chapters selected in the Manga details screen and Updates screen", - "placeholders": { - "num": { - "example": "23", - "type": "int" - } - } - }, - "obsolete": "废弃", - "@obsolete": { - "description": "Text to show that the extension has become Obsolete" - }, - "pause": "暂停", - "@pause": { - "description": "Button text to pause downloads" - }, - "pending": "等待中", - "@pending": { - "description": "Pending status Manga Group title in Update Summary Screen" - }, - "reader": "阅读器", - "@reader": { - "description": "Screen title and Button text of Reader screen" - }, - "readerModeDefaultReader": "默认", - "@readerModeDefaultReader": { - "description": "Radio button text for Reader Mode Type - Default" - }, - "readerModeContinuousHorizontalLTR": "从左到右(不分页)", - "@readerModeContinuousHorizontalLTR": { - "description": "Radio button text for Reader Mode Type - Continuous Horizontal (LTR)" - }, - "readerModeContinuousVertical": "从上到下(不分页)", - "@readerModeContinuousVertical": { - "description": "Radio button text for Reader Mode Type - Continuous Vertical" - }, - "readerModeSingleHorizontalLTR": "从左到右(分页)", - "@readerModeSingleHorizontalLTR": { - "description": "Radio button text for Reader Mode Type - Single Horizontal (LTR)" - }, - "readerModeSingleHorizontalRTL": "从右到左(分页)", - "@readerModeSingleHorizontalRTL": { - "description": "Radio button text for Reader Mode Type - Single Horizontal (RTL)" - }, - "readerModeWebtoon": "条漫", - "@readerModeWebtoon": { - "description": "Radio button text for Reader Mode Type - Webtoon" - }, - "readerNavigationLayoutDefault": "默认布局", - "@readerNavigationLayoutDefault": { - "description": "Radio button text for Reader Navigation Layout - Default" - }, - "readerNavigationLayout": "点按布局", - "@readerNavigationLayout": { - "description": "Popup title and Button text of Reader Navigation Layout popup" - }, - "readerNavigationLayoutEdge": "边缘模式", - "@readerNavigationLayoutEdge": { - "description": "Radio button text for Reader Navigation Layout - Edge" - }, - "readerNavigationLayoutInvert": "反转点按区域", - "@readerNavigationLayoutInvert": { - "description": "Switch title to invert Tap to scroll in reader screen" - }, - "readerNavigationLayoutLShaped": "L 样式", - "@readerNavigationLayoutLShaped": { - "description": "Radio button text for Reader Navigation Layout - L Shaped" - }, - "readerNavigationLayoutRightAndLeft": "左右样式", - "@readerNavigationLayoutRightAndLeft": { - "description": "Radio button text for Reader Navigation Layout - Right And Left" - }, - "reddit": "Reddit", - "@reddit": { - "description": "Reddit app title" - }, - "update": "更新", - "@update": { - "description": "Button text to update the extension" - }, - "refresh": "刷新", - "@refresh": { - "description": "Refresh button text" - }, - "reset": "重置", - "@reset": { - "description": "Button text of reset button in source filters" - }, - "readerPadding": "填充", - "@readerPadding": { - "description": "Slider title text for Reader Padding" - }, - "restoreBackupTitle": "还原备份", - "@restoreBackupTitle": { - "description": "Button text to create backup" - }, - "restored": "完成备份恢复!", - "@restored": { - "description": "Toast Text to show that the backup has been restored" - }, - "resume": "继续", - "@resume": { - "description": "Button Text to resume Chapter reading/downloading" - }, - "retry": "重试", - "@retry": { - "description": "Retry Button Text" - }, - "running": "运行中", - "@running": { - "description": "Running status Manga Group title in Update Summary Screen" - }, - "save": "保存", - "@save": { - "description": "Save Button Text" - }, - "search": "搜索", - "@search": { - "description": "Search field hint Text" - }, - "searchingForUpdates": "搜索更新中", - "@searchingForUpdates": { - "description": "Toast Text for searching for updates of the App/Server" - }, - "server": "服务器", - "@server": { - "description": "Text title for the server in About screen" - }, - "serverUrl": "服务器地址", - "@serverUrl": { - "description": "Popup title and Button text to update Server Url" - }, - "sort": "排序", - "@sort": { - "description": "title of sort Tab across the app" - }, - "sourceTypeFilter": "筛选", - "@sourceTypeFilter": { - "description": "Tab text Filter for source screen type" - }, - "sourceTypePopular": "常用", - "@sourceTypePopular": { - "description": "Tab text Popular for source screen type" - }, - "sources": "图源", - "@sources": { - "description": "title of Sources Tab in Browse Screen" - }, - "themeModeDark": "深色模式", - "@themeModeDark": { - "description": "Radio button text for App theme - Dark" - }, - "themeModeLight": "浅色模式", - "@themeModeLight": { - "description": "Radio button text for App theme - Light" - }, - "uninstall": "卸载", - "@uninstall": { - "description": "Button text to Uninstall the extension" - }, - "unknownManga": "未知漫画", - "@unknownManga": { - "description": "Text to show unknown manga in Manga details screen" - }, - "unknownSource": "未知图源", - "@unknownSource": { - "description": "Text to show unknown Source in Manga details screen" - }, - "unread": "未阅读", - "@unread": { - "description": "Checkbox text to unread bookmarked manga/chapters across app" - }, - "updateCompleted": "更新完成", - "@updateCompleted": { - "description": "Button text to show that extension update is completed" - }, - "updatesSummary": "更新摘要", - "@updatesSummary": { - "description": "Screen title and Button text of Updates Summary screen" - }, - "userName": "用户名", - "@userName": { - "description": "Title text for User Name field" - }, - "webUI": "在浏览器中打开", - "@webUI": { - "description": "Button text to open in web UI" - }, - "addCategory": "添加分类", - "@addCategory": { - "description": "Popup title and Button text to add new category in Edit Category Screen" - }, - "help": "帮助", - "@help": { - "description": "Button text of help in about screen" - }, - "failed": "更新失败", - "@failed": { - "description": "Failed status Manga Group title in Update Summary Screen" - }, - "filter": "筛选", - "@filter": { - "description": "title of filter Tab across the app" - }, - "latest": "最新", - "@latest": { - "description": "Button text to take user to the latest tab of Source manga screen" - }, - "install": "安装", - "@install": { - "description": "Button text to install the extension" - }, - "mangaGridSize": "网格大小", - "@mangaGridSize": { - "description": "Popup title and Button text to change Manga Grid size" - }, - "cancel": "取消", - "@cancel": { - "description": "Text for Cancel button in a Popup" - }, - "backup": "备份和恢复", - "@backup": { - "description": "Screen title and Button text of Backup & Restore screen" - }, - "badges": "徽标", - "@badges": { - "description": "Checkbox Group title to enable Badges on manga Cover in Library Screen" - }, - "createBackupTitle": "创建备份", - "@createBackupTitle": { - "description": "Button text to create backup" - }, - "checkForServerUpdates": "检查服务端更新", - "@checkForServerUpdates": { - "description": "Button text to check for Server updates" - }, - "clientVersion": "客户端版本", - "@clientVersion": { - "description": "Text title for the current version of the client in About screen" - }, - "displayModeDescriptiveList": "详细列表", - "@displayModeDescriptiveList": { - "description": "Radio button text for Manga Cover display mode - Descriptive List" - }, - "downloaded": "已下载", - "@downloaded": { - "description": "Text to show downloaded chapters status in Filters " - }, - "current": "最近阅读", - "@current": { - "description": "Text to show the currently reading chapter in Reader Screen" - }, - "edit": "编辑", - "@edit": { - "description": "Popup button text to edit Category in Edit category screen" - }, - "emptyCategory": "分类名不能为空", - "@emptyCategory": { - "description": "Description to show that category list is empty in Edit Category screen" - }, - "errorSomethingWentWrong": "发生错误!", - "@errorSomethingWentWrong": { - "description": "Error Description to show that Something went wrong!" - }, - "mangaSortDateAdded": "添加日期", - "@mangaSortDateAdded": { - "description": "Radio button text for Manga sort Type - Date Added" - }, - "moveToBottom": "移至底部", - "@moveToBottom": { - "description": "Button text to move download/category to the bottom of list" - }, - "moveToTop": "移至顶部", - "@moveToTop": { - "description": "Button text to move download/category to the top of list" - }, - "noCategoriesFound": "尚无任何分类。\n(提示:轻触加号按钮创建一个分类来管理你的书架)", - "@noCategoriesFound": { - "description": "Hint text to add new Category when category list is empty" - }, - "noCategoriesFoundAlt": "尚无任何分类。\n提示:轻触加号按钮创建一个分类来管理你的书架", - "@noCategoriesFoundAlt": { - "description": "Hint text to add new Category in Settings when category list is empty" - }, - "noOfChapters": "共 {count} 章", - "@noOfChapters": { - "description": "Title text to show the number of chapters in the Manga details screen", - "placeholders": { - "count": { - "example": "23", - "type": "int" - } - } - }, - "noUpdatesFound": "最近没有更新", - "@noUpdatesFound": { - "description": "Toast Text to show that there are no Updates available" - }, - "page": "第 {number} 页", - "@page": { - "description": "Text to show the last read Page number of the chapter in Manga details screen", - "placeholders": { - "number": { - "example": "23", - "type": "int" - } - } - }, - "readerMode": "阅读模式", - "@readerMode": { - "description": "Popup title and Button text of Reader Mode popup" - }, - "password": "密码", - "@password": { - "description": "Title text for password field" - }, - "readerModeContinuousHorizontalRTL": "从右到左(不分页)", - "@readerModeContinuousHorizontalRTL": { - "description": "Radio button text for Reader Mode Type - Continuous Horizontal (RTL)" - }, - "readerModeSingleVertical": "从上到下(分页)", - "@readerModeSingleVertical": { - "description": "Radio button text for Reader Mode Type - Single Vertical" - }, - "serverUrlHintText": "服务器地址", - "@serverUrlHintText": { - "description": "Text Filed hint text to update Server Url" - }, - "readerNavigationLayoutDisabled": "关闭", - "@readerNavigationLayoutDisabled": { - "description": "Radio button text for Reader Navigation Layout - Disabled" - }, - "serverVersion": "服务器版本", - "@serverVersion": { - "description": "Text title for the current version of the Server in About screen" - }, - "restoreBackupDescription": "从备份文件中还原", - "@restoreBackupDescription": { - "description": "Button text description to create backup" - }, - "source": "图源", - "@source": { - "description": "Screen title and Button text of source screen" - }, - "settings": "设置", - "@settings": { - "description": "Screen title and Button text of Settings screen" - }, - "readerNavigationLayoutKindlish": "Kindle 模式", - "@readerNavigationLayoutKindlish": { - "description": "Radio button text for Reader Navigation Layout - Kindle-ish" - }, - "sourceTypeLatest": "最近更新", - "@sourceTypeLatest": { - "description": "Tab text Latest for source screen type" - }, - "mangaStatusOnHiatus": "断更", - "@mangaStatusOnHiatus": { - "description": "Text to show Manga Status On Hiatus in Manga details screen" - }, - "mangaStatusPublishingFinished": "完结", - "@mangaStatusPublishingFinished": { - "description": "Text to show Manga Status Publishing Finished in Manga details screen" - }, - "mangaStatusUnknown": "未知", - "@mangaStatusUnknown": { - "description": "Text to show Manga Status Unknown in Manga details screen" - }, - "missingTrackers": "跟踪器缺失", - "@missingTrackers": { - "description": "Group title to show the Missing Trackers when restoring Backup" - }, - "chapterSortUploadDate": "按上传日期", - "@chapterSortUploadDate": { - "description": "Radio button text for sort by Upload Date" - }, - "readerScrollAnimation": "滚动动画", - "@readerScrollAnimation": { - "description": "Switch title to Disable scroll animation in reader screen" - }, - "readerMagnifierSize": "放大大小", - "@readerMagnifierSize": { - "description": "Slider title text for Reader Magnifier Size" - }, - "clearCache": "清除缓存", - "@clearCache": { - "description": "Button text for clear cache in General Settings screen" - }, - "cacheCleared": "已清除缓存", - "@cacheCleared": { - "description": "Toast Text to show after clearing cache" - }, - "noServerFound": "在本地网络中找不到服务器", - "@noServerFound": { - "description": "Text to show that no Server found in locale network" - }, - "findServer": "查找", - "@findServer": { - "description": "Button text of Find Server" - }, - "serverPortHintText": "服务器端口", - "@serverPortHintText": { - "description": "Text Filed hint text to update Server Port" - }, - "serverPort": "服务器端口", - "@serverPort": { - "description": "Popup title and Button text to update Server Port" - }, - "allScanlators": "所有过滤器", - "@allScanlators": { - "description": "Text for all Scanlators in manga description screen chapter filter" - }, - "quickSearchSourceManga": "在 'S' 源中搜索漫画 'M'", - "@quickSearchSourceManga": { - "description": "Quick Open Hint text for searching Manga M in Source S with prefill '@S/M'" - }, - "quickSearchCategoryManga": "在类别 'C' 中搜索漫画 'M'", - "@quickSearchCategoryManga": { - "description": "Quick Open Hint text for searching Manga M in Category C with prefill '#C/M'" - }, - "quickSearchCategoryMangaChapter": "在类别 'C' 中搜索漫画 'M' 的章节 'CN'", - "@quickSearchCategoryMangaChapter": { - "description": "Quick Open Hint text for searching Chapter name CN from Manga M in Source S with prefill '#C/M:CN'" - }, - "quickSearchCategory": "搜索类别 'C'", - "@quickSearchCategory": { - "description": "Quick Open Hint text for Category C with prefill '#C'" - }, - "scanlators": "扫描", - "@scanlators": { - "description": "Title text for Scanlators" - }, - "quickSearchSource": "搜索源 'S'", - "@quickSearchSource": { - "description": "Quick Open Hint text for Source S with prefill '@S'" - }, - "quickSearchContext": "搜索查询 X", - "@quickSearchContext": { - "description": "Quick Open Hint text for query X" - }, - "daysAgo": "{days} 天前", - "@daysAgo": { - "description": "Days ago text to show the release date of manga" - }, - "today": "今天", - "@today": { - "description": "Today Text to show the release date of manga" - }, - "yesterday": "昨天", - "@yesterday": { - "description": "Yesterday Text to show the release date of manga" - }, - "readerSwipeChapterToggle": "滑动切换", - "@readerSwipeChapterToggle": { - "description": "Switch title to toggle `swipe to change chapter` in reader screen" - }, - "readerSwipeChapterToggleDescription": "滑动切换章节", - "@readerSwipeChapterToggleDescription": { - "description": "Switch tile description for, toggle `swipe to change chapter` in reader screen" - }, - "readerOverlay": "阅读器初始覆盖层", - "@readerOverlay": { - "description": "Toggle subtile text for Initial Reader Overlay" - }, - "selectInBetween": "选取区间", - "@selectInBetween": { - "description": "Toast Text for selecting chapters in between first and last Chapters" - }, - "readerOverlaySubtitle": "打开章节时显示标题和设置", - "@readerOverlaySubtitle": {}, - "quickSearchShowAllCommandTip": "提示:输入 '?' 查看所有指令", - "@quickSearchShowAllCommandTip": { - "description": "Quick Open Tip text for showing all commands by entering '?'" - }, - "reload": "刷新", - "@reload": { - "description": "Reload button text" - }, - "previousChapter": "上章:{chapterTitle}", - "@previousChapter": { - "description": "Text for Previous Chapter button in Manga Reader Screen" - }, - "nextChapter": "下章:{chapterTitle}", - "@nextChapter": { - "description": "Text for Next Chapter button in Manga Reader Screen" - }, - "selectNext10": "选取下 10 个", - "@selectNext10": { - "description": "Toast Text for selecting next 10 chapters" - }, - "selectUnread": "选取未读", - "@selectUnread": { - "description": "Popup Text for selecting unread chapters" - }, - "readerVolumeTapInvert": "反转音量键", - "@readerVolumeTapInvert": { - "description": "Switch button text to invert Volume Tap " - }, - "readerVolumeTap": "音量键", - "@readerVolumeTap": { - "description": "Switch button text for Reader Page Navigation with Volume Tap" - }, - "readerVolumeTapSubtitle": "使用音量键操作", - "@readerVolumeTapSubtitle": { - "description": "Switch button Subtitle text for Reader Page Navigation with Volume Tap" - }, - "removeFromLibrary": "从书架中删除?", - "@removeFromLibrary": { - "description": "Remove From Library Popup text" - }, - "remove": "删除", - "@remove": { - "description": "Remove Button text" - } -} diff --git a/lib/src/l10n/app_zh_Hans.arb b/lib/src/l10n/app_zh_Hans.arb deleted file mode 100644 index d7ff0003..00000000 --- a/lib/src/l10n/app_zh_Hans.arb +++ /dev/null @@ -1,854 +0,0 @@ -{ - "start": "开始阅读", - "@start": { - "description": "Button text start reading the manga" - }, - "themeModeSystem": "跟随系统", - "@themeModeSystem": { - "description": "Radio button text for App theme - System" - }, - "unknownAuthor": "未知作者", - "@unknownAuthor": { - "description": "Text to show unknown author in Manga details screen" - }, - "updates": "更新", - "@updates": { - "description": "Screen title and Button text of Updates screen" - }, - "updating": "更新中", - "@updating": { - "description": "Button text to show that the extension is updating" - }, - "whatsNew": "更新了什么?", - "@whatsNew": { - "description": "Button text to open whats new page of app in web" - }, - "uninstalling": "正在卸载", - "@uninstalling": { - "description": "Button text to show that the extension is uninstalling" - }, - "versionAvailable": "{app} 有更新可用 {version} !", - "@versionAvailable": { - "description": "Text to show that there is an update to App/Server", - "placeholders": { - "app": { - "example": "Server", - "type": "String" - }, - "version": { - "example": "v0.4.2", - "type": "String" - } - } - }, - "webView": "Web View", - "@webView": { - "description": "Button text to open manga website" - }, - "authTypeBasic": "基本认证", - "@authTypeBasic": { - "description": "Radio button text for the Basic Authentication type" - }, - "restoring": "正在还原", - "@restoring": { - "description": "Toast Text to show that the backup is restoring" - }, - "chapterNumber": "第 {number} 章", - "@chapterNumber": { - "description": "Text title for Chapter name in chapter list", - "placeholders": { - "number": { - "example": "12.5", - "type": "double" - } - } - }, - "errorFilePickUnknownExtension": "请选择插件 {extensionName}", - "@errorFilePickUnknownExtension": { - "description": "Error Description to show when user selected unknown extension file" - }, - "finished": "阅读过", - "@finished": { - "description": "Text to show the Currently Finished reading chapter in Reader Screen" - }, - "copyMsg": "'{msg}'已复制!", - "@copyMsg": { - "description": "Toast text to show that the message has been copied", - "placeholders": { - "msg": { - "example": "Client : Tachidesk Sorayomi", - "type": "String" - } - } - }, - "appearance": "外观", - "@appearance": { - "description": "Screen title and Button text of Appearance screen" - }, - "authType": "验证方式", - "@authType": { - "description": "Popup title and Button text to change App Authentication" - }, - "extensions": "插件", - "@extensions": { - "description": "Extension list Tab title in Browse Screen" - }, - "about": "关于", - "@about": { - "description": "Screen title and Button text of About screen" - }, - "appLanguage": "应用语言", - "@appLanguage": { - "description": "Popup title and Button text to change App Language" - }, - "appTheme": "应用主题", - "@appTheme": { - "description": "Popup title and Button text to change App Theme" - }, - "appTitle": "Sorayomi", - "@appTitle": { - "description": "Name of the app (Tachidesk Sorayomi in native script)" - }, - "addToLibrary": "添加到书架", - "@addToLibrary": { - "description": "Button text to add Manga to Library in Manga Details Screen" - }, - "authTypeNone": "无", - "@authTypeNone": { - "description": "Radio button text for no Authentication" - }, - "browse": "浏览", - "@browse": { - "description": "Screen title, Navigation Bar text and Button text of both Browse screen and Browse Settings Screen" - }, - "buildTime": "构建时间", - "@buildTime": { - "description": "Text title to show build time of Server in About Screen" - }, - "bookmarked": "已添加书签", - "@bookmarked": { - "description": "Checkbox text to filter bookmarked manga chapters in Manga Details screen" - }, - "categories": "分类", - "@categories": { - "description": "Button text of edit Categories screen in Library settings screen" - }, - "categoryUpdate": "更新分类", - "@categoryUpdate": { - "description": "Button text to update the mangas in the Category" - }, - "channel": "通道", - "@channel": { - "description": "Text title to show Channel of the Server (Stable, preview) in About Screen" - }, - "chapterSortFetchedDate": "按添加日期", - "@chapterSortFetchedDate": { - "description": "Radio button text for sort by Fetched Date" - }, - "chapterSortSource": "按来源", - "@chapterSortSource": { - "description": "Radio button text for sort by Source" - }, - "checkForUpdates": "检查更新", - "@checkForUpdates": { - "description": "Button text to check for App Updates" - }, - "client": "客户端", - "@client": { - "description": "Text title for the name of the client in About screen" - }, - "close": "关闭", - "@close": { - "description": "Text for close button" - }, - "completed": "阅读过", - "@completed": { - "description": "Checkbox text to filter Completed mangas in Library screen and Manga Grouping text in Update Summary screen" - }, - "credentials": "认证", - "@credentials": { - "description": "Popup title and Button text to enter Authentication credentials" - }, - "defaultCategory": "默认添加到此库", - "@defaultCategory": { - "description": "Checkbox description when creating a Category to add manga to the Category by Default" - }, - "delete": "删除", - "@delete": { - "description": "Text for delete button" - }, - "createBackupDescription": "可用于还原当前书架数据", - "@createBackupDescription": { - "description": "Button text description to create backup" - }, - "deleteCategoryDescription": "此分类下的漫画将迁移至默认分类!", - "@deleteCategoryDescription": { - "description": "Popup description when deleting Category" - }, - "deleteCategoryTitle": "确定?", - "@deleteCategoryTitle": { - "description": "Popup title when deleting Category" - }, - "discord": "DIscord", - "@discord": { - "description": "Discord app title" - }, - "display": "显示", - "@display": { - "description": "Text for Display tab in Library screen drawer" - }, - "displayMode": "显示模式", - "@displayMode": { - "description": "Radio Group title to change manga Cover display in Library and Source Screens" - }, - "displayModeGrid": "网格", - "@displayModeGrid": { - "description": "Radio button text for Manga Cover display mode - Grid" - }, - "displayModeList": "简单列表", - "@displayModeList": { - "description": "Radio button text for Manga Cover display mode - List" - }, - "downloads": "下载", - "@downloads": { - "description": "Screen title and Navigation text of Downloads screen" - }, - "editCategory": "编辑分类", - "@editCategory": { - "description": "Screen title, Button text and of Downloads screen" - }, - "errorFilePick": "未选择任何文件!", - "@errorFilePick": { - "description": "Error Description to show when user does not selected an file" - }, - "errorExtension": "所选插件不存在", - "@errorExtension": { - "description": "Error Description to show when user selected unknown extension from list" - }, - "errorLaunchURL": "打开失败\n详细记录{url}已经复制到剪贴板", - "@errorLaunchURL": { - "description": "Error Description to show when App failed to launch an URL and copied the URL to clipboard", - "placeholders": { - "url": { - "example": "http://sorayomi.suwayomi.org", - "type": "String" - } - } - }, - "errorPassword": "密码不能为空", - "@errorPassword": { - "description": "Error Description to show that password cannot be empty" - }, - "errorUserName": "用户名不能为空", - "@errorUserName": { - "description": "Error Description to show that UserName cannot be empty" - }, - "extensionListEmpty": "插件列表为空", - "@extensionListEmpty": { - "description": "Description to show that Extension list is empty in Extension list tab of Browse screen" - }, - "extensionInstalled": "插件安装完成!", - "@extensionInstalled": { - "description": "Toast text to show that the Extension Installed successfully" - }, - "general": "通用", - "@general": { - "description": "Screen title and Button text of General setting screen" - }, - "gitHub": "GitHub", - "@gitHub": { - "description": "GitHub app title" - }, - "globalSearch": "全局搜索", - "@globalSearch": { - "description": "Screen title of Global Search screen" - }, - "globalUpdate": "全局更新", - "@globalUpdate": { - "description": "Button text of Global Manga Update" - }, - "inLibrary": "在书架中", - "@inLibrary": { - "description": "Button and Chip text to show that the manga is in Library" - }, - "installing": "安装中", - "@installing": { - "description": "Button text to show that the extension is installing" - }, - "installingExtension": "正在安装", - "@installingExtension": { - "description": "Toast text to show that the extension is installing" - }, - "languages": "语言", - "@languages": { - "description": "Popup title to filter extensions based on language" - }, - "library": "书架", - "@library": { - "description": "Screen title and Button text of Library and Library Settings screen" - }, - "manga": "漫画", - "@manga": { - "description": "Screen title and Button text of Manga details screen" - }, - "mangaSortAlphabetical": "名称", - "@mangaSortAlphabetical": { - "description": "Radio button text for Manga sort Type - Alphabetical" - }, - "mangaSortUnread": "未阅读", - "@mangaSortUnread": { - "description": "Radio button text for Manga sort Type - Unread" - }, - "mangaMissingSources": "来源未安装", - "@mangaMissingSources": { - "description": "Group title to show the Manga Missing Sources when restoring Backup" - }, - "mangaSortLastRead": "最近阅读", - "@mangaSortLastRead": { - "description": "Radio button text for Manga sort Type - Last Read" - }, - "mangaStatusCancelled": "已取消", - "@mangaStatusCancelled": { - "description": "Text to show Manga Status Cancelled in Manga details screen" - }, - "mangaStatusCompleted": "已完成", - "@mangaStatusCompleted": { - "description": "Text to show Manga Status Completed in Manga details screen" - }, - "mangaStatusLicensed": "已认证", - "@mangaStatusLicensed": { - "description": "Text to show Manga Status Licensed in Manga details screen" - }, - "mangaStatusOngoing": "连载中", - "@mangaStatusOngoing": { - "description": "Text to show Manga Status Ongoing in Manga details screen" - }, - "missingExtension": "插件缺失", - "@missingExtension": { - "description": "Group title to show the Missing Extensions when restoring Backup" - }, - "more": "更多", - "@more": { - "description": "Screen title and Navigation text of More screen" - }, - "nameCountDisplay": "{name}:{count}", - "@nameCountDisplay": { - "description": "Text pattern to display an name and count in a string", - "placeholders": { - "name": { - "example": "Downloaded", - "type": "String" - }, - "count": { - "example": "22", - "type": "int" - } - } - }, - "newUpdateAvailable": "有可用更新", - "@newUpdateAvailable": { - "description": "Popup title to show that the App/Server has and update" - }, - "noCategoryMangaFound": "未找到匹配项\n提示:检查搜索或更改筛选条件", - "@noCategoryMangaFound": { - "description": "Hint text to check filter when manga list is empty in Category tab in Library" - }, - "noChaptersFound": "未找到章节", - "@noChaptersFound": { - "description": "Text to show that the Chapter list is empty in Manga details Screen" - }, - "noDownloads": "没有下载中的任务", - "@noDownloads": { - "description": "Text to show that there is no active downloads in Downloads Screen" - }, - "noMangaFound": "未找到漫画", - "@noMangaFound": { - "description": "Text to show that the Manga list is empty" - }, - "noResultFound": "未找到结果", - "@noResultFound": { - "description": "Text to show that no results found for the given search query" - }, - "noSourcesFound": "结果为空", - "@noSourcesFound": { - "description": "Text to show that the Source list is empty" - }, - "noUpdatesAvailable": "正在使用最新版", - "@noUpdatesAvailable": { - "description": "Text to show that the user is using the latest version of the app" - }, - "nsfw": "在图源和插件中显示", - "@nsfw": { - "description": "Switch text to show/hide the nsfw extensions" - }, - "nsfw18": "18+", - "@nsfw18": { - "description": "18+ tag Text to show in extensions list" - }, - "nsfwInfo": "这并不能防止非官方或可能被错误标记的插件在应用中显示 NSFW(18+) 内容", - "@nsfwInfo": { - "description": "Hint text to show that the nsfw switch cannot prevent incorrectly flagged extensions from surfacing" - }, - "numSelected": "已选择 {num} 章", - "@numSelected": { - "description": "Title text to show the number of chapters selected in the Manga details screen and Updates screen", - "placeholders": { - "num": { - "example": "23", - "type": "int" - } - } - }, - "obsolete": "废弃", - "@obsolete": { - "description": "Text to show that the extension has become Obsolete" - }, - "pause": "暂停", - "@pause": { - "description": "Button text to pause downloads" - }, - "pending": "等待中", - "@pending": { - "description": "Pending status Manga Group title in Update Summary Screen" - }, - "reader": "阅读器", - "@reader": { - "description": "Screen title and Button text of Reader screen" - }, - "readerModeDefaultReader": "默认", - "@readerModeDefaultReader": { - "description": "Radio button text for Reader Mode Type - Default" - }, - "readerModeContinuousHorizontalLTR": "从左到右(不分页)", - "@readerModeContinuousHorizontalLTR": { - "description": "Radio button text for Reader Mode Type - Continuous Horizontal (LTR)" - }, - "readerModeContinuousVertical": "从上到下(不分页)", - "@readerModeContinuousVertical": { - "description": "Radio button text for Reader Mode Type - Continuous Vertical" - }, - "readerModeSingleHorizontalLTR": "从左到右(分页)", - "@readerModeSingleHorizontalLTR": { - "description": "Radio button text for Reader Mode Type - Single Horizontal (LTR)" - }, - "readerModeSingleHorizontalRTL": "从右到左(分页)", - "@readerModeSingleHorizontalRTL": { - "description": "Radio button text for Reader Mode Type - Single Horizontal (RTL)" - }, - "readerModeWebtoon": "条漫", - "@readerModeWebtoon": { - "description": "Radio button text for Reader Mode Type - Webtoon" - }, - "readerNavigationLayoutDefault": "默认布局", - "@readerNavigationLayoutDefault": { - "description": "Radio button text for Reader Navigation Layout - Default" - }, - "readerNavigationLayout": "点按布局", - "@readerNavigationLayout": { - "description": "Popup title and Button text of Reader Navigation Layout popup" - }, - "readerNavigationLayoutEdge": "边缘模式", - "@readerNavigationLayoutEdge": { - "description": "Radio button text for Reader Navigation Layout - Edge" - }, - "readerNavigationLayoutInvert": "反转点按区域", - "@readerNavigationLayoutInvert": { - "description": "Switch title to invert Tap to scroll in reader screen" - }, - "readerNavigationLayoutLShaped": "L 样式", - "@readerNavigationLayoutLShaped": { - "description": "Radio button text for Reader Navigation Layout - L Shaped" - }, - "readerNavigationLayoutRightAndLeft": "左右样式", - "@readerNavigationLayoutRightAndLeft": { - "description": "Radio button text for Reader Navigation Layout - Right And Left" - }, - "reddit": "Reddit", - "@reddit": { - "description": "Reddit app title" - }, - "update": "更新", - "@update": { - "description": "Button text to update the extension" - }, - "refresh": "刷新", - "@refresh": { - "description": "Refresh button text" - }, - "reset": "重置", - "@reset": { - "description": "Button text of reset button in source filters" - }, - "readerPadding": "填充", - "@readerPadding": { - "description": "Slider title text for Reader Padding" - }, - "restoreBackupTitle": "还原备份", - "@restoreBackupTitle": { - "description": "Button text to create backup" - }, - "restored": "完成备份恢复!", - "@restored": { - "description": "Toast Text to show that the backup has been restored" - }, - "resume": "继续", - "@resume": { - "description": "Button Text to resume Chapter reading/downloading" - }, - "retry": "重试", - "@retry": { - "description": "Retry Button Text" - }, - "running": "运行中", - "@running": { - "description": "Running status Manga Group title in Update Summary Screen" - }, - "save": "保存", - "@save": { - "description": "Save Button Text" - }, - "search": "搜索", - "@search": { - "description": "Search field hint Text" - }, - "searchingForUpdates": "搜索更新中", - "@searchingForUpdates": { - "description": "Toast Text for searching for updates of the App/Server" - }, - "server": "服务器", - "@server": { - "description": "Text title for the server in About screen" - }, - "serverUrl": "服务器地址", - "@serverUrl": { - "description": "Popup title and Button text to update Server Url" - }, - "sort": "排序", - "@sort": { - "description": "title of sort Tab across the app" - }, - "sourceTypeFilter": "筛选", - "@sourceTypeFilter": { - "description": "Tab text Filter for source screen type" - }, - "sourceTypePopular": "常用", - "@sourceTypePopular": { - "description": "Tab text Popular for source screen type" - }, - "sources": "图源", - "@sources": { - "description": "title of Sources Tab in Browse Screen" - }, - "themeModeDark": "深色模式", - "@themeModeDark": { - "description": "Radio button text for App theme - Dark" - }, - "themeModeLight": "浅色模式", - "@themeModeLight": { - "description": "Radio button text for App theme - Light" - }, - "uninstall": "卸载", - "@uninstall": { - "description": "Button text to Uninstall the extension" - }, - "unknownManga": "未知漫画", - "@unknownManga": { - "description": "Text to show unknown manga in Manga details screen" - }, - "unknownSource": "未知图源", - "@unknownSource": { - "description": "Text to show unknown Source in Manga details screen" - }, - "unread": "未阅读", - "@unread": { - "description": "Checkbox text to unread bookmarked manga/chapters across app" - }, - "updateCompleted": "更新完成", - "@updateCompleted": { - "description": "Button text to show that extension update is completed" - }, - "updatesSummary": "更新摘要", - "@updatesSummary": { - "description": "Screen title and Button text of Updates Summary screen" - }, - "userName": "用户名", - "@userName": { - "description": "Title text for User Name field" - }, - "webUI": "在浏览器中打开", - "@webUI": { - "description": "Button text to open in web UI" - }, - "addCategory": "添加分类", - "@addCategory": { - "description": "Popup title and Button text to add new category in Edit Category Screen" - }, - "help": "帮助", - "@help": { - "description": "Button text of help in about screen" - }, - "failed": "更新失败", - "@failed": { - "description": "Failed status Manga Group title in Update Summary Screen" - }, - "filter": "筛选", - "@filter": { - "description": "title of filter Tab across the app" - }, - "latest": "最新", - "@latest": { - "description": "Button text to take user to the latest tab of Source manga screen" - }, - "install": "安装", - "@install": { - "description": "Button text to install the extension" - }, - "mangaGridSize": "网格大小", - "@mangaGridSize": { - "description": "Popup title and Button text to change Manga Grid size" - }, - "cancel": "取消", - "@cancel": { - "description": "Text for Cancel button in a Popup" - }, - "backup": "备份和恢复", - "@backup": { - "description": "Screen title and Button text of Backup & Restore screen" - }, - "badges": "徽标", - "@badges": { - "description": "Checkbox Group title to enable Badges on manga Cover in Library Screen" - }, - "createBackupTitle": "创建备份", - "@createBackupTitle": { - "description": "Button text to create backup" - }, - "checkForServerUpdates": "检查服务端更新", - "@checkForServerUpdates": { - "description": "Button text to check for Server updates" - }, - "clientVersion": "客户端版本", - "@clientVersion": { - "description": "Text title for the current version of the client in About screen" - }, - "displayModeDescriptiveList": "详细列表", - "@displayModeDescriptiveList": { - "description": "Radio button text for Manga Cover display mode - Descriptive List" - }, - "downloaded": "已下载", - "@downloaded": { - "description": "Text to show downloaded chapters status in Filters " - }, - "current": "最近阅读", - "@current": { - "description": "Text to show the currently reading chapter in Reader Screen" - }, - "edit": "编辑", - "@edit": { - "description": "Popup button text to edit Category in Edit category screen" - }, - "emptyCategory": "分类名不能为空", - "@emptyCategory": { - "description": "Description to show that category list is empty in Edit Category screen" - }, - "errorSomethingWentWrong": "发生错误!", - "@errorSomethingWentWrong": { - "description": "Error Description to show that Something went wrong!" - }, - "mangaSortDateAdded": "添加日期", - "@mangaSortDateAdded": { - "description": "Radio button text for Manga sort Type - Date Added" - }, - "moveToBottom": "移至底部", - "@moveToBottom": { - "description": "Button text to move download/category to the bottom of list" - }, - "moveToTop": "移至顶部", - "@moveToTop": { - "description": "Button text to move download/category to the top of list" - }, - "noCategoriesFound": "尚无任何分类。\n(提示:轻触加号按钮创建一个分类来管理你的书架)", - "@noCategoriesFound": { - "description": "Hint text to add new Category when category list is empty" - }, - "noCategoriesFoundAlt": "尚无任何分类。\n提示:轻触加号按钮创建一个分类来管理你的书架", - "@noCategoriesFoundAlt": { - "description": "Hint text to add new Category in Settings when category list is empty" - }, - "noOfChapters": "共 {count} 章", - "@noOfChapters": { - "description": "Title text to show the number of chapters in the Manga details screen", - "placeholders": { - "count": { - "example": "23", - "type": "int" - } - } - }, - "noUpdatesFound": "最近没有更新", - "@noUpdatesFound": { - "description": "Toast Text to show that there are no Updates available" - }, - "page": "第 {number} 页", - "@page": { - "description": "Text to show the last read Page number of the chapter in Manga details screen", - "placeholders": { - "number": { - "example": "23", - "type": "int" - } - } - }, - "readerMode": "阅读模式", - "@readerMode": { - "description": "Popup title and Button text of Reader Mode popup" - }, - "password": "密码", - "@password": { - "description": "Title text for password field" - }, - "readerModeContinuousHorizontalRTL": "从右到左(不分页)", - "@readerModeContinuousHorizontalRTL": { - "description": "Radio button text for Reader Mode Type - Continuous Horizontal (RTL)" - }, - "readerModeSingleVertical": "从上到下(分页)", - "@readerModeSingleVertical": { - "description": "Radio button text for Reader Mode Type - Single Vertical" - }, - "serverUrlHintText": "服务器地址", - "@serverUrlHintText": { - "description": "Text Filed hint text to update Server Url" - }, - "readerNavigationLayoutDisabled": "关闭", - "@readerNavigationLayoutDisabled": { - "description": "Radio button text for Reader Navigation Layout - Disabled" - }, - "serverVersion": "服务器版本", - "@serverVersion": { - "description": "Text title for the current version of the Server in About screen" - }, - "restoreBackupDescription": "从备份文件中还原", - "@restoreBackupDescription": { - "description": "Button text description to create backup" - }, - "source": "图源", - "@source": { - "description": "Screen title and Button text of source screen" - }, - "settings": "设置", - "@settings": { - "description": "Screen title and Button text of Settings screen" - }, - "readerNavigationLayoutKindlish": "Kindle 模式", - "@readerNavigationLayoutKindlish": { - "description": "Radio button text for Reader Navigation Layout - Kindle-ish" - }, - "sourceTypeLatest": "最近更新", - "@sourceTypeLatest": { - "description": "Tab text Latest for source screen type" - }, - "mangaStatusOnHiatus": "断更", - "@mangaStatusOnHiatus": { - "description": "Text to show Manga Status On Hiatus in Manga details screen" - }, - "mangaStatusPublishingFinished": "完结", - "@mangaStatusPublishingFinished": { - "description": "Text to show Manga Status Publishing Finished in Manga details screen" - }, - "mangaStatusUnknown": "未知", - "@mangaStatusUnknown": { - "description": "Text to show Manga Status Unknown in Manga details screen" - }, - "missingTrackers": "跟踪器缺失", - "@missingTrackers": { - "description": "Group title to show the Missing Trackers when restoring Backup" - }, - "chapterSortUploadDate": "按上传日期", - "@chapterSortUploadDate": { - "description": "Radio button text for sort by Upload Date" - }, - "readerScrollAnimation": "滚动动画", - "@readerScrollAnimation": { - "description": "Switch title to Disable scroll animation in reader screen" - }, - "readerMagnifierSize": "放大大小", - "@readerMagnifierSize": { - "description": "Slider title text for Reader Magnifier Size" - }, - "clearCache": "清除缓存", - "@clearCache": { - "description": "Button text for clear cache in General Settings screen" - }, - "cacheCleared": "已清除缓存", - "@cacheCleared": { - "description": "Toast Text to show after clearing cache" - }, - "noServerFound": "在本地网络中找不到服务器", - "@noServerFound": { - "description": "Text to show that no Server found in locale network" - }, - "findServer": "查找", - "@findServer": { - "description": "Button text of Find Server" - }, - "serverPortHintText": "服务器端口", - "@serverPortHintText": { - "description": "Text Filed hint text to update Server Port" - }, - "serverPort": "服务器端口", - "@serverPort": { - "description": "Popup title and Button text to update Server Port" - }, - "allScanlators": "所有过滤器", - "@allScanlators": { - "description": "Text for all Scanlators in manga description screen chapter filter" - }, - "quickSearchSourceManga": "在 'S' 源中搜索漫画 'M'", - "@quickSearchSourceManga": { - "description": "Quick Open Hint text for searching Manga M in Source S with prefill '@S/M'" - }, - "quickSearchCategoryManga": "在类别 'C' 中搜索漫画 'M'", - "@quickSearchCategoryManga": { - "description": "Quick Open Hint text for searching Manga M in Category C with prefill '#C/M'" - }, - "quickSearchCategoryMangaChapter": "在类别 'C' 中搜索漫画 'M' 的章节 'CN'", - "@quickSearchCategoryMangaChapter": { - "description": "Quick Open Hint text for searching Chapter name CN from Manga M in Source S with prefill '#C/M:CN'" - }, - "quickSearchCategory": "搜索类别 'C'", - "@quickSearchCategory": { - "description": "Quick Open Hint text for Category C with prefill '#C'" - }, - "scanlators": "扫描", - "@scanlators": { - "description": "Title text for Scanlators" - }, - "quickSearchSource": "搜索源 'S'", - "@quickSearchSource": { - "description": "Quick Open Hint text for Source S with prefill '@S'" - }, - "quickSearchContext": "搜索查询 X", - "@quickSearchContext": { - "description": "Quick Open Hint text for query X" - }, - "daysAgo": "{days} 天前", - "@daysAgo": { - "description": "Days ago text to show the release date of manga" - }, - "today": "今天", - "@today": { - "description": "Today Text to show the release date of manga" - }, - "yesterday": "昨天", - "@yesterday": { - "description": "Yesterday Text to show the release date of manga" - }, - "readerSwipeChapterToggle": "滑动切换", - "@readerSwipeChapterToggle": { - "description": "Switch title to toggle `swipe to change chapter` in reader screen" - }, - "readerSwipeChapterToggleDescription": "滑动切换章节", - "@readerSwipeChapterToggleDescription": { - "description": "Switch tile description for, toggle `swipe to change chapter` in reader screen" - } -} diff --git a/lib/src/l10n/app_zh_Hant.arb b/lib/src/l10n/app_zh_Hant.arb deleted file mode 100644 index 34274fad..00000000 --- a/lib/src/l10n/app_zh_Hant.arb +++ /dev/null @@ -1,908 +0,0 @@ -{ - "updates": "更新", - "@updates": { - "description": "Screen title and Button text of Updates screen" - }, - "languages": "語言", - "@languages": { - "description": "Popup title to filter extensions based on language" - }, - "readerNavigationLayoutInvert": "反轉手勢區域", - "@readerNavigationLayoutInvert": { - "description": "Switch title to invert Tap to scroll in reader screen" - }, - "readerModeDefaultReader": "預設", - "@readerModeDefaultReader": { - "description": "Radio button text for Reader Mode Type - Default" - }, - "chapterSortFetchedDate": "按新增日期", - "@chapterSortFetchedDate": { - "description": "Radio button text for sort by Fetched Date" - }, - "readerSwipeChapterToggleDescription": "滑動切換章節", - "@readerSwipeChapterToggleDescription": { - "description": "Switch tile description for, toggle `swipe to change chapter` in reader screen" - }, - "displayModeList": "列表", - "@displayModeList": { - "description": "Radio button text for Manga Cover display mode - List" - }, - "categories": "分類", - "@categories": { - "description": "Button text of edit Categories screen in Library settings screen" - }, - "close": "關閉", - "@close": { - "description": "Text for close button" - }, - "current": "最近閱讀", - "@current": { - "description": "Text to show the currently reading chapter in Reader Screen" - }, - "save": "儲存", - "@save": { - "description": "Save Button Text" - }, - "restoring": "正在還原", - "@restoring": { - "description": "Toast Text to show that the backup is restoring" - }, - "filter": "篩選", - "@filter": { - "description": "title of filter Tab across the app" - }, - "allScanlators": "所有過濾器", - "@allScanlators": { - "description": "Text for all Scanlators in manga description screen chapter filter" - }, - "reset": "重設", - "@reset": { - "description": "Button text of reset button in source filters" - }, - "appLanguage": "應用程式語言", - "@appLanguage": { - "description": "Popup title and Button text to change App Language" - }, - "scanlators": "掃瞄", - "@scanlators": { - "description": "Title text for Scanlators" - }, - "quickSearchCategoryMangaChapter": "在分類 'C' 中搜索漫畫 'M' 的章節名 'CN'", - "@quickSearchCategoryMangaChapter": { - "description": "Quick Open Hint text for searching Chapter name CN from Manga M in Source S with prefill '#C/M:CN'" - }, - "password": "密碼", - "@password": { - "description": "Title text for password field" - }, - "noChaptersFound": "未找到章節", - "@noChaptersFound": { - "description": "Text to show that the Chapter list is empty in Manga details Screen" - }, - "addCategory": "新增分類", - "@addCategory": { - "description": "Popup title and Button text to add new category in Edit Category Screen" - }, - "readerNavigationLayoutRightAndLeft": "左右", - "@readerNavigationLayoutRightAndLeft": { - "description": "Radio button text for Reader Navigation Layout - Right And Left" - }, - "quickSearchCategoryManga": "在分類 'C' 中搜尋漫畫 'M'", - "@quickSearchCategoryManga": { - "description": "Quick Open Hint text for searching Manga M in Category C with prefill '#C/M'" - }, - "clientVersion": "用戶端版本", - "@clientVersion": { - "description": "Text title for the current version of the client in About screen" - }, - "missingExtension": "插件缺失", - "@missingExtension": { - "description": "Group title to show the Missing Extensions when restoring Backup" - }, - "appTheme": "應用程式主題", - "@appTheme": { - "description": "Popup title and Button text to change App Theme" - }, - "mangaStatusCancelled": "已取消", - "@mangaStatusCancelled": { - "description": "Text to show Manga Status Cancelled in Manga details screen" - }, - "noDownloads": "無下載", - "@noDownloads": { - "description": "Text to show that there is no active downloads in Downloads Screen" - }, - "deleteCategoryDescription": "此分類下的漫畫將合併至預設分類!", - "@deleteCategoryDescription": { - "description": "Popup description when deleting Category" - }, - "displayModeGrid": "網格", - "@displayModeGrid": { - "description": "Radio button text for Manga Cover display mode - Grid" - }, - "gitHub": "GitHub", - "@gitHub": { - "description": "GitHub app title" - }, - "displayMode": "顯示模式", - "@displayMode": { - "description": "Radio Group title to change manga Cover display in Library and Source Screens" - }, - "inLibrary": "在書架中", - "@inLibrary": { - "description": "Button and Chip text to show that the manga is in Library" - }, - "createBackupDescription": "以 Tachidesk 備份檔備份書架", - "@createBackupDescription": { - "description": "Button text description to create backup" - }, - "unread": "未閱讀", - "@unread": { - "description": "Checkbox text to unread bookmarked manga/chapters across app" - }, - "server": "伺服器", - "@server": { - "description": "Text title for the server in About screen" - }, - "bookmarked": "已新增書籤", - "@bookmarked": { - "description": "Checkbox text to filter bookmarked manga chapters in Manga Details screen" - }, - "manga": "漫畫", - "@manga": { - "description": "Screen title and Button text of Manga details screen" - }, - "numSelected": "已選擇 {num} 章", - "@numSelected": { - "description": "Title text to show the number of chapters selected in the Manga details screen and Updates screen", - "placeholders": { - "num": { - "example": "23", - "type": "int" - } - } - }, - "discord": "Discord", - "@discord": { - "description": "Discord app title" - }, - "noUpdatesAvailable": "正在使用最新版本", - "@noUpdatesAvailable": { - "description": "Text to show that the user is using the latest version of the app" - }, - "searchingForUpdates": "搜尋更新中", - "@searchingForUpdates": { - "description": "Toast Text for searching for updates of the App/Server" - }, - "addToLibrary": "新增至書架", - "@addToLibrary": { - "description": "Button text to add Manga to Library in Manga Details Screen" - }, - "readerModeSingleHorizontalLTR": "分頁左至右", - "@readerModeSingleHorizontalLTR": { - "description": "Radio button text for Reader Mode Type - Single Horizontal (LTR)" - }, - "globalSearch": "全域搜尋", - "@globalSearch": { - "description": "Screen title of Global Search screen" - }, - "pause": "暫停", - "@pause": { - "description": "Button text to pause downloads" - }, - "readerSwipeChapterToggle": "滑動切換", - "@readerSwipeChapterToggle": { - "description": "Switch title to toggle `swipe to change chapter` in reader screen" - }, - "mangaSortAlphabetical": "名稱", - "@mangaSortAlphabetical": { - "description": "Radio button text for Manga sort Type - Alphabetical" - }, - "installing": "安裝中", - "@installing": { - "description": "Button text to show that the extension is installing" - }, - "sourceTypeLatest": "最新", - "@sourceTypeLatest": { - "description": "Tab text Latest for source screen type" - }, - "serverUrlHintText": "伺服器網址", - "@serverUrlHintText": { - "description": "Text Filed hint text to update Server Url" - }, - "findServer": "搜尋", - "@findServer": { - "description": "Button text of Find Server" - }, - "edit": "編輯", - "@edit": { - "description": "Popup button text to edit Category in Edit category screen" - }, - "readerNavigationLayoutDefault": "預設", - "@readerNavigationLayoutDefault": { - "description": "Radio button text for Reader Navigation Layout - Default" - }, - "defaultCategory": "預設新增至此分類", - "@defaultCategory": { - "description": "Checkbox description when creating a Category to add manga to the Category by Default" - }, - "update": "更新", - "@update": { - "description": "Button text to update the extension" - }, - "themeModeDark": "深色", - "@themeModeDark": { - "description": "Radio button text for App theme - Dark" - }, - "restoreBackupTitle": "還原備份", - "@restoreBackupTitle": { - "description": "Button text to create backup" - }, - "client": "用戶端", - "@client": { - "description": "Text title for the name of the client in About screen" - }, - "mangaStatusCompleted": "已完成", - "@mangaStatusCompleted": { - "description": "Text to show Manga Status Completed in Manga details screen" - }, - "versionAvailable": "{app} 有更新可用 {version}!", - "@versionAvailable": { - "description": "Text to show that there is an update to App/Server", - "placeholders": { - "app": { - "example": "Server", - "type": "String" - }, - "version": { - "example": "v0.4.2", - "type": "String" - } - } - }, - "errorFilePickUnknownExtension": "請選擇含 {extensionName} 的插件", - "@errorFilePickUnknownExtension": { - "description": "Error Description to show when user selected unknown extension file" - }, - "appearance": "外觀", - "@appearance": { - "description": "Screen title and Button text of Appearance screen" - }, - "serverVersion": "伺服器版本", - "@serverVersion": { - "description": "Text title for the current version of the Server in About screen" - }, - "installingExtension": "正在安裝", - "@installingExtension": { - "description": "Toast text to show that the extension is installing" - }, - "downloads": "下載", - "@downloads": { - "description": "Screen title and Navigation text of Downloads screen" - }, - "deleteCategoryTitle": "確定?", - "@deleteCategoryTitle": { - "description": "Popup title when deleting Category" - }, - "resume": "繼續", - "@resume": { - "description": "Button Text to resume Chapter reading/downloading" - }, - "display": "顯示", - "@display": { - "description": "Text for Display tab in Library screen drawer" - }, - "readerModeSingleVertical": "分頁上至下", - "@readerModeSingleVertical": { - "description": "Radio button text for Reader Mode Type - Single Vertical" - }, - "help": "幫助", - "@help": { - "description": "Button text of help in about screen" - }, - "serverPortHintText": "伺服器埠", - "@serverPortHintText": { - "description": "Text Filed hint text to update Server Port" - }, - "errorUserName": "用戶名不能為空", - "@errorUserName": { - "description": "Error Description to show that UserName cannot be empty" - }, - "userName": "用戶名", - "@userName": { - "description": "Title text for User Name field" - }, - "mangaStatusPublishingFinished": "完結", - "@mangaStatusPublishingFinished": { - "description": "Text to show Manga Status Publishing Finished in Manga details screen" - }, - "delete": "移除", - "@delete": { - "description": "Text for delete button" - }, - "readerNavigationLayoutLShaped": "L 形", - "@readerNavigationLayoutLShaped": { - "description": "Radio button text for Reader Navigation Layout - L Shaped" - }, - "start": "開始閱讀", - "@start": { - "description": "Button text start reading the manga" - }, - "serverPort": "伺服器埠", - "@serverPort": { - "description": "Popup title and Button text to update Server Port" - }, - "mangaSortDateAdded": "新增日期", - "@mangaSortDateAdded": { - "description": "Radio button text for Manga sort Type - Date Added" - }, - "globalUpdate": "全域更新", - "@globalUpdate": { - "description": "Button text of Global Manga Update" - }, - "noSourcesFound": "未找到來源", - "@noSourcesFound": { - "description": "Text to show that the Source list is empty" - }, - "page": "第 {number} 頁", - "@page": { - "description": "Text to show the last read Page number of the chapter in Manga details screen", - "placeholders": { - "number": { - "example": "23", - "type": "int" - } - } - }, - "readerNavigationLayoutDisabled": "停用", - "@readerNavigationLayoutDisabled": { - "description": "Radio button text for Reader Navigation Layout - Disabled" - }, - "authType": "驗證方式", - "@authType": { - "description": "Popup title and Button text to change App Authentication" - }, - "appTitle": "Tachidesk Sorayomi", - "@appTitle": { - "description": "Name of the app (Tachidesk Sorayomi in native script)" - }, - "credentials": "認證", - "@credentials": { - "description": "Popup title and Button text to enter Authentication credentials" - }, - "checkForServerUpdates": "檢查伺服器更新", - "@checkForServerUpdates": { - "description": "Button text to check for Server updates" - }, - "chapterNumber": "第 {number} 章", - "@chapterNumber": { - "description": "Text title for Chapter name in chapter list", - "placeholders": { - "number": { - "example": "12.5", - "type": "double" - } - } - }, - "retry": "重試", - "@retry": { - "description": "Retry Button Text" - }, - "mangaStatusOnHiatus": "斷更", - "@mangaStatusOnHiatus": { - "description": "Text to show Manga Status On Hiatus in Manga details screen" - }, - "themeModeSystem": "系統", - "@themeModeSystem": { - "description": "Radio button text for App theme - System" - }, - "moveToTop": "移至頂部", - "@moveToTop": { - "description": "Button text to move download/category to the top of list" - }, - "nameCountDisplay": "{name}:{count}", - "@nameCountDisplay": { - "description": "Text pattern to display an name and count in a string", - "placeholders": { - "name": { - "example": "Downloaded", - "type": "String" - }, - "count": { - "example": "22", - "type": "int" - } - } - }, - "mangaStatusUnknown": "未知", - "@mangaStatusUnknown": { - "description": "Text to show Manga Status Unknown in Manga details screen" - }, - "noUpdatesFound": "無可用更新", - "@noUpdatesFound": { - "description": "Toast Text to show that there are no Updates available" - }, - "quickSearchContext": "搜尋查詢 X (結果基於顯示中內容)", - "@quickSearchContext": { - "description": "Quick Open Hint text for query X" - }, - "uninstall": "解除安裝", - "@uninstall": { - "description": "Button text to Uninstall the extension" - }, - "readerNavigationLayoutKindlish": "Kindle 模式", - "@readerNavigationLayoutKindlish": { - "description": "Radio button text for Reader Navigation Layout - Kindle-ish" - }, - "readerPadding": "填充", - "@readerPadding": { - "description": "Slider title text for Reader Padding" - }, - "chapterSortSource": "按來源", - "@chapterSortSource": { - "description": "Radio button text for sort by Source" - }, - "updateCompleted": "更新已完成", - "@updateCompleted": { - "description": "Button text to show that extension update is completed" - }, - "themeModeLight": "亮色", - "@themeModeLight": { - "description": "Radio button text for App theme - Light" - }, - "copyMsg": "'{msg}' 已複製!", - "@copyMsg": { - "description": "Toast text to show that the message has been copied", - "placeholders": { - "msg": { - "example": "Client : Tachidesk Sorayomi", - "type": "String" - } - } - }, - "reddit": "Reddit", - "@reddit": { - "description": "Reddit app title" - }, - "obsolete": "廢棄", - "@obsolete": { - "description": "Text to show that the extension has become Obsolete" - }, - "library": "書架", - "@library": { - "description": "Screen title and Button text of Library and Library Settings screen" - }, - "backup": "備份和恢復", - "@backup": { - "description": "Screen title and Button text of Backup & Restore screen" - }, - "browse": "瀏覽", - "@browse": { - "description": "Screen title, Navigation Bar text and Button text of both Browse screen and Browse Settings Screen" - }, - "authTypeBasic": "基本驗證", - "@authTypeBasic": { - "description": "Radio button text for the Basic Authentication type" - }, - "readerMode": "閱讀模式", - "@readerMode": { - "description": "Popup title and Button text of Reader Mode popup" - }, - "readerModeWebtoon": "條漫", - "@readerModeWebtoon": { - "description": "Radio button text for Reader Mode Type - Webtoon" - }, - "downloaded": "已下載", - "@downloaded": { - "description": "Text to show downloaded chapters status in Filters " - }, - "about": "關於", - "@about": { - "description": "Screen title and Button text of About screen" - }, - "emptyCategory": "分類名不能為空", - "@emptyCategory": { - "description": "Description to show that category list is empty in Edit Category screen" - }, - "nsfw18": "18+", - "@nsfw18": { - "description": "18+ tag Text to show in extensions list" - }, - "readerMagnifierSize": "放大大小", - "@readerMagnifierSize": { - "description": "Slider title text for Reader Magnifier Size" - }, - "chapterSortUploadDate": "按上傳日期", - "@chapterSortUploadDate": { - "description": "Radio button text for sort by Upload Date" - }, - "extensions": "插件", - "@extensions": { - "description": "Extension list Tab title in Browse Screen" - }, - "quickSearchCategory": "搜尋分類 'C'", - "@quickSearchCategory": { - "description": "Quick Open Hint text for Category C with prefill '#C'" - }, - "whatsNew": "更新了什麼?", - "@whatsNew": { - "description": "Button text to open whats new page of app in web" - }, - "noMangaFound": "未找到漫畫", - "@noMangaFound": { - "description": "Text to show that the Manga list is empty" - }, - "unknownAuthor": "未知作者", - "@unknownAuthor": { - "description": "Text to show unknown author in Manga details screen" - }, - "more": "更多", - "@more": { - "description": "Screen title and Navigation text of More screen" - }, - "updating": "更新中", - "@updating": { - "description": "Button text to show that the extension is updating" - }, - "cacheCleared": "已清除快取", - "@cacheCleared": { - "description": "Toast Text to show after clearing cache" - }, - "channel": "通道", - "@channel": { - "description": "Text title to show Channel of the Server (Stable, preview) in About Screen" - }, - "sources": "來源", - "@sources": { - "description": "title of Sources Tab in Browse Screen" - }, - "mangaStatusOngoing": "連載中", - "@mangaStatusOngoing": { - "description": "Text to show Manga Status Ongoing in Manga details screen" - }, - "errorPassword": "密碼不能為空", - "@errorPassword": { - "description": "Error Description to show that password cannot be empty" - }, - "readerModeContinuousHorizontalRTL": "連續右至左", - "@readerModeContinuousHorizontalRTL": { - "description": "Radio button text for Reader Mode Type - Continuous Horizontal (RTL)" - }, - "restoreBackupDescription": "從 Tachidesk 備份中還原", - "@restoreBackupDescription": { - "description": "Button text description to create backup" - }, - "errorSomethingWentWrong": "發生錯誤!", - "@errorSomethingWentWrong": { - "description": "Error Description to show that Something went wrong!" - }, - "cancel": "取消", - "@cancel": { - "description": "Text for Cancel button in a Popup" - }, - "yesterday": "昨天", - "@yesterday": { - "description": "Yesterday Text to show the release date of manga" - }, - "daysAgo": "{days} 天前", - "@daysAgo": { - "description": "Days ago text to show the release date of manga" - }, - "extensionListEmpty": "插件列表為空", - "@extensionListEmpty": { - "description": "Description to show that Extension list is empty in Extension list tab of Browse screen" - }, - "webUI": "在瀏覽器中打開", - "@webUI": { - "description": "Button text to open in web UI" - }, - "unknownManga": "未知漫畫", - "@unknownManga": { - "description": "Text to show unknown manga in Manga details screen" - }, - "restored": "備份還原已完成!", - "@restored": { - "description": "Toast Text to show that the backup has been restored" - }, - "noOfChapters": "共 {count} 章", - "@noOfChapters": { - "description": "Title text to show the number of chapters in the Manga details screen", - "placeholders": { - "count": { - "example": "23", - "type": "int" - } - } - }, - "reader": "閱讀器", - "@reader": { - "description": "Screen title and Button text of Reader screen" - }, - "refresh": "重新整理", - "@refresh": { - "description": "Refresh button text" - }, - "nsfwInfo": "這不能防止非官方或可能被錯誤標記的插件在應用程式中顯示 NSFW(18+) 內容", - "@nsfwInfo": { - "description": "Hint text to show that the nsfw switch cannot prevent incorrectly flagged extensions from surfacing" - }, - "newUpdateAvailable": "有可用更新", - "@newUpdateAvailable": { - "description": "Popup title to show that the App/Server has and update" - }, - "general": "一般", - "@general": { - "description": "Screen title and Button text of General setting screen" - }, - "readerModeContinuousVertical": "連續上至下", - "@readerModeContinuousVertical": { - "description": "Radio button text for Reader Mode Type - Continuous Vertical" - }, - "serverUrl": "伺服器網址", - "@serverUrl": { - "description": "Popup title and Button text to update Server Url" - }, - "displayModeDescriptiveList": "詳細列表", - "@displayModeDescriptiveList": { - "description": "Radio button text for Manga Cover display mode - Descriptive List" - }, - "quickSearchSourceManga": "在來源 'S' 中搜尋漫畫 'M'", - "@quickSearchSourceManga": { - "description": "Quick Open Hint text for searching Manga M in Source S with prefill '@S/M'" - }, - "completed": "已閱", - "@completed": { - "description": "Checkbox text to filter Completed mangas in Library screen and Manga Grouping text in Update Summary screen" - }, - "quickSearchSource": "搜尋來源 'S'", - "@quickSearchSource": { - "description": "Quick Open Hint text for Source S with prefill '@S'" - }, - "editCategory": "編輯分類", - "@editCategory": { - "description": "Screen title, Button text and of Downloads screen" - }, - "missingTrackers": "跟踪器缺失", - "@missingTrackers": { - "description": "Group title to show the Missing Trackers when restoring Backup" - }, - "readerNavigationLayout": "手勢佈局", - "@readerNavigationLayout": { - "description": "Popup title and Button text of Reader Navigation Layout popup" - }, - "mangaSortUnread": "未閱讀", - "@mangaSortUnread": { - "description": "Radio button text for Manga sort Type - Unread" - }, - "clearCache": "清除快取", - "@clearCache": { - "description": "Button text for clear cache in General Settings screen" - }, - "search": "搜尋", - "@search": { - "description": "Search field hint Text" - }, - "readerModeContinuousHorizontalLTR": "連續左至右", - "@readerModeContinuousHorizontalLTR": { - "description": "Radio button text for Reader Mode Type - Continuous Horizontal (LTR)" - }, - "finished": "已閱", - "@finished": { - "description": "Text to show the Currently Finished reading chapter in Reader Screen" - }, - "sort": "排序", - "@sort": { - "description": "title of sort Tab across the app" - }, - "mangaMissingSources": "漫畫來源缺失", - "@mangaMissingSources": { - "description": "Group title to show the Manga Missing Sources when restoring Backup" - }, - "sourceTypePopular": "熱門", - "@sourceTypePopular": { - "description": "Tab text Popular for source screen type" - }, - "nsfw": "在插件和來源中顯示 NSFW 內容", - "@nsfw": { - "description": "Switch text to show/hide the nsfw extensions" - }, - "checkForUpdates": "檢查更新", - "@checkForUpdates": { - "description": "Button text to check for App Updates" - }, - "webView": "Web View", - "@webView": { - "description": "Button text to open manga website" - }, - "running": "運作中", - "@running": { - "description": "Running status Manga Group title in Update Summary Screen" - }, - "createBackupTitle": "建立備份", - "@createBackupTitle": { - "description": "Button text to create backup" - }, - "mangaStatusLicensed": "已認證", - "@mangaStatusLicensed": { - "description": "Text to show Manga Status Licensed in Manga details screen" - }, - "readerModeSingleHorizontalRTL": "分頁右至左", - "@readerModeSingleHorizontalRTL": { - "description": "Radio button text for Reader Mode Type - Single Horizontal (RTL)" - }, - "settings": "設定", - "@settings": { - "description": "Screen title and Button text of Settings screen" - }, - "readerNavigationLayoutEdge": "邊緣", - "@readerNavigationLayoutEdge": { - "description": "Radio button text for Reader Navigation Layout - Edge" - }, - "pending": "等待中", - "@pending": { - "description": "Pending status Manga Group title in Update Summary Screen" - }, - "errorExtension": "所選插件不存在", - "@errorExtension": { - "description": "Error Description to show when user selected unknown extension from list" - }, - "noCategoriesFoundAlt": "尚未有任何分類。\n在設定內建立一個以管理你的書架", - "@noCategoriesFoundAlt": { - "description": "Hint text to add new Category in Settings when category list is empty" - }, - "updatesSummary": "更新概要", - "@updatesSummary": { - "description": "Screen title and Button text of Updates Summary screen" - }, - "noServerFound": "未在局域網內找到伺服器", - "@noServerFound": { - "description": "Text to show that no Server found in locale network" - }, - "install": "安裝", - "@install": { - "description": "Button text to install the extension" - }, - "noResultFound": "未找到結果", - "@noResultFound": { - "description": "Text to show that no results found for the given search query" - }, - "moveToBottom": "移至底部", - "@moveToBottom": { - "description": "Button text to move download/category to the bottom of list" - }, - "mangaGridSize": "網格大小", - "@mangaGridSize": { - "description": "Popup title and Button text to change Manga Grid size" - }, - "categoryUpdate": "更新分類", - "@categoryUpdate": { - "description": "Button text to update the mangas in the Category" - }, - "source": "來源", - "@source": { - "description": "Screen title and Button text of source screen" - }, - "mangaSortLastRead": "最近閱讀", - "@mangaSortLastRead": { - "description": "Radio button text for Manga sort Type - Last Read" - }, - "extensionInstalled": "插件安裝完成!", - "@extensionInstalled": { - "description": "Toast text to show that the Extension Installed successfully" - }, - "authTypeNone": "無", - "@authTypeNone": { - "description": "Radio button text for no Authentication" - }, - "unknownSource": "未知來源", - "@unknownSource": { - "description": "Text to show unknown Source in Manga details screen" - }, - "errorFilePick": "未選取任何文件!", - "@errorFilePick": { - "description": "Error Description to show when user does not selected an file" - }, - "buildTime": "構建時間", - "@buildTime": { - "description": "Text title to show build time of Server in About Screen" - }, - "noCategoriesFound": "尚未有任何分類。\n(提示:輕觸加號按鍵建立一個分類以管理你的書架)", - "@noCategoriesFound": { - "description": "Hint text to add new Category when category list is empty" - }, - "readerScrollAnimation": "滑動動畫", - "@readerScrollAnimation": { - "description": "Switch title to Disable scroll animation in reader screen" - }, - "uninstalling": "正在解除安裝", - "@uninstalling": { - "description": "Button text to show that the extension is uninstalling" - }, - "noCategoryMangaFound": "未在此分類找到漫畫\n(提示:檢查你的搜尋及篩選器!)", - "@noCategoryMangaFound": { - "description": "Hint text to check filter when manga list is empty in Category tab in Library" - }, - "badges": "徽章", - "@badges": { - "description": "Checkbox Group title to enable Badges on manga Cover in Library Screen" - }, - "sourceTypeFilter": "篩選", - "@sourceTypeFilter": { - "description": "Tab text Filter for source screen type" - }, - "today": "今天", - "@today": { - "description": "Today Text to show the release date of manga" - }, - "latest": "最新", - "@latest": { - "description": "Button text to take user to the latest tab of Source manga screen" - }, - "failed": "更新失敗", - "@failed": { - "description": "Failed status Manga Group title in Update Summary Screen" - }, - "errorLaunchURL": "打開失敗\n已複製 \"{url}\" 至剪貼簿", - "@errorLaunchURL": { - "description": "Error Description to show when App failed to launch an URL and copied the URL to clipboard", - "placeholders": { - "url": { - "example": "http://sorayomi.suwayomi.org", - "type": "String" - } - } - }, - "readerOverlay": "閱讀器起始覆蓋層", - "@readerOverlay": { - "description": "Toggle tile text for Initial Reader Overlay" - }, - "reload": "重新整理", - "@reload": { - "description": "Reload button text" - }, - "previousChapter": "上章:{chapterTitle}", - "@previousChapter": { - "description": "Text for Previous Chapter button in Manga Reader Screen" - }, - "nextChapter": "下章:{chapterTitle}", - "@nextChapter": { - "description": "Text for Next Chapter button in Manga Reader Screen" - }, - "selectInBetween": "選取區間", - "@selectInBetween": { - "description": "Toast Text for selecting chapters in between first and last Chapters" - }, - "readerOverlaySubtitle": "打開章節時顯示標題和設定", - "@readerOverlaySubtitle": {}, - "quickSearchShowAllCommandTip": "提示:輸入 '?' 以查看所有指令", - "@quickSearchShowAllCommandTip": { - "description": "Quick Open Tip text for showing all commands by entering '?'" - }, - "selectNext10": "選取下 10 個", - "@selectNext10": { - "description": "Toast Text for selecting next 10 chapters" - }, - "selectUnread": "選取未讀", - "@selectUnread": { - "description": "Popup Text for selecting unread chapters" - }, - "readerVolumeTapInvert": "反轉音量按鈕", - "@readerVolumeTapInvert": { - "description": "Switch button text to invert Volume Tap " - }, - "readerVolumeTap": "音量按鈕", - "@readerVolumeTap": { - "description": "Switch button text for Reader Page Navigation with Volume Tap" - }, - "readerVolumeTapSubtitle": "使用音量按鈕操作", - "@readerVolumeTapSubtitle": { - "description": "Switch button Subtitle text for Reader Page Navigation with Volume Tap" - }, - "removeFromLibrary": "從書架中移除?", - "@removeFromLibrary": { - "description": "Remove From Library Popup text" - }, - "remove": "移除", - "@remove": { - "description": "Remove Button text" - } -} diff --git a/lib/src/routes/router_config.dart b/lib/src/routes/router_config.dart deleted file mode 100644 index 25c0c269..00000000 --- a/lib/src/routes/router_config.dart +++ /dev/null @@ -1,411 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flex_color_scheme/flex_color_scheme.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter/services.dart'; -import 'package:go_router/go_router.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../constants/enum.dart'; -import '../features/about/presentation/about/about_screen.dart'; -import '../features/browse_center/domain/filter/filter_model.dart'; -import '../features/browse_center/presentation/browse/browse_screen.dart'; -import '../features/browse_center/presentation/global_search/global_search_screen.dart'; -import '../features/browse_center/presentation/source_manga_list/source_manga_list_screen.dart'; -import '../features/browse_center/presentation/source_preference/source_preference_screen.dart'; -import '../features/library/presentation/category/edit_category_screen.dart'; -import '../features/library/presentation/library/library_screen.dart'; -import '../features/manga_book/presentation/downloads/downloads_screen.dart'; -import '../features/manga_book/presentation/manga_details/manga_details_screen.dart'; -import '../features/manga_book/presentation/reader/reader_screen.dart'; -import '../features/manga_book/presentation/updates/updates_screen.dart'; -import '../features/manga_book/widgets/update_status_summary_sheet.dart'; -import '../features/quick_open/presentation/search_stack/search_stack_screen.dart'; -import '../features/settings/presentation/appearance/appearance_screen.dart'; -import '../features/settings/presentation/backup/backup_screen.dart'; -import '../features/settings/presentation/browse/browse_settings_screen.dart'; -import '../features/settings/presentation/general/general_screen.dart'; -import '../features/settings/presentation/library/library_settings_screen.dart'; -import '../features/settings/presentation/more/more_screen.dart'; -import '../features/settings/presentation/reader/reader_settings_screen.dart'; -import '../features/settings/presentation/server/server_screen.dart'; -import '../features/settings/presentation/settings/settings_screen.dart'; -import '../utils/extensions/custom_extensions.dart'; -import '../widgets/shell/shell_screen.dart'; - -part 'router_config.g.dart'; - -final GlobalKey _rootNavigatorKey = - GlobalKey(debugLabel: 'root'); - -final GlobalKey _quickOpenNavigatorKey = - GlobalKey(debugLabel: 'Quick Open'); - -final GlobalKey _shellNavigatorKey = - GlobalKey(debugLabel: 'shell'); - -abstract class Routes { - static const home = '/'; - static const library = '/library'; - static const librarySettings = 'library'; - static const updates = '/updates'; - static const browse = '/browse'; - static const downloads = '/downloads'; - static const more = '/more'; - static const about = '/about'; - static const appearanceSettings = 'appearance'; - static const generalSettings = 'general'; - static const backup = 'backup'; - static const settings = '/settings'; - static const browseSettings = 'browse'; - static const readerSettings = 'reader'; - static const reader = '/manga/:mangaId/chapter/:chapterIndex'; - static const serverSettings = 'server'; - static const editCategories = 'edit-categories'; - static const extensions = '/extensions'; - static const manga = '$mangaRoute:mangaId'; - static const mangaRoute = '/manga/'; - static const sourceManga = '/source/:sourceId/:sourceType'; - static const sourcePreference = '/source/:sourceId/preference'; - static const globalSearch = '/global-search'; - static const updateStatus = "/update-status"; -} - -@riverpod -GoRouter routerConfig(ref) { - return GoRouter( - routes: $appRoutes, - debugLogDiagnostics: true, - initialLocation: Routes.library, - navigatorKey: _rootNavigatorKey, - ); -} - -@TypedShellRoute( - routes: [ - TypedShellRoute( - routes: [ - TypedGoRoute(path: Routes.home), - TypedGoRoute(path: Routes.library), - TypedGoRoute(path: Routes.updates), - TypedGoRoute(path: Routes.browse), - TypedGoRoute(path: Routes.downloads), - TypedGoRoute(path: Routes.more), - ], - ), - TypedGoRoute(path: Routes.manga), - TypedGoRoute(path: Routes.updateStatus), - TypedGoRoute(path: Routes.globalSearch), - TypedGoRoute(path: Routes.sourcePreference), - TypedGoRoute(path: Routes.sourceManga), - TypedGoRoute(path: Routes.about), - TypedGoRoute(path: Routes.reader), - TypedGoRoute(path: Routes.settings, routes: [ - TypedGoRoute( - path: Routes.librarySettings, - routes: [ - TypedGoRoute(path: Routes.editCategories) - ], - ), - TypedGoRoute(path: Routes.serverSettings), - TypedGoRoute(path: Routes.readerSettings), - TypedGoRoute(path: Routes.appearanceSettings), - TypedGoRoute(path: Routes.generalSettings), - TypedGoRoute(path: Routes.browseSettings), - TypedGoRoute(path: Routes.backup), - ]) - ], -) -class QuickSearchRoute extends ShellRouteData { - const QuickSearchRoute(); - - static final $navigatorKey = _quickOpenNavigatorKey; - - @override - Widget builder(context, state, navigator) => - AnnotatedRegion( - value: FlexColorScheme.themedSystemNavigationBar( - context, - systemNavBarStyle: FlexSystemNavBarStyle.background, - useDivider: false, - opacity: 0.60, - ), - child: SearchStackScreen(child: navigator), - ); -} - -// Shell Routes -class ShellRoute extends ShellRouteData { - const ShellRoute(); - - static final $navigatorKey = _shellNavigatorKey; - - @override - Widget builder(context, state, navigator) => ShellScreen(child: navigator); -} - -class HomeRoute extends GoRouteData { - const HomeRoute(); - @override - FutureOr redirect(context, state) => Routes.library; -} - -class LibraryRoute extends GoRouteData { - const LibraryRoute({this.initialCategoryOrder}); - final int? initialCategoryOrder; - @override - Page buildPage(BuildContext context, GoRouterState state) => - NoTransitionPage( - child: LibraryScreen(initialCategoryOrder: initialCategoryOrder), - ); -} - -class UpdatesRoute extends GoRouteData { - const UpdatesRoute(); - @override - Page buildPage(BuildContext context, GoRouterState state) => - const NoTransitionPage(child: UpdatesScreen()); -} - -class BrowseRoute extends GoRouteData { - const BrowseRoute(); - @override - Page buildPage(BuildContext context, GoRouterState state) => - const NoTransitionPage(child: BrowseScreen()); -} - -class DownloadsRoute extends GoRouteData { - const DownloadsRoute(); - @override - Page buildPage(BuildContext context, GoRouterState state) => - const NoTransitionPage(child: DownloadsScreen()); -} - -class MoreRoute extends GoRouteData { - const MoreRoute(); - @override - Page buildPage(BuildContext context, GoRouterState state) => - const NoTransitionPage(child: MoreScreen()); -} - -// -class MangaRoute extends GoRouteData { - const MangaRoute({required this.mangaId, this.categoryId}); - final int mangaId; - final int? categoryId; - - static final $parentNavigatorKey = _quickOpenNavigatorKey; - - @override - Widget build(BuildContext context, GoRouterState state) => - MangaDetailsScreen(mangaId: mangaId, categoryId: categoryId); -} - -class UpdateStatusRoute extends GoRouteData { - const UpdateStatusRoute(); - - static final $parentNavigatorKey = _quickOpenNavigatorKey; - - @override - Widget build(BuildContext context, GoRouterState state) => - const UpdateStatusSummaryDialog(); -} - -class GlobalSearchRoute extends GoRouteData { - const GlobalSearchRoute({this.query}); - final String? query; - - static final $parentNavigatorKey = _quickOpenNavigatorKey; - - @override - Widget build(BuildContext context, GoRouterState state) => - GlobalSearchScreen(key: ValueKey(query), initialQuery: query); -} - -class SourceMangaRoute extends GoRouteData { - const SourceMangaRoute({ - required this.sourceId, - required this.sourceType, - this.query, - this.$extra, - }); - final String sourceId; - final SourceType sourceType; - final String? query; - final List? $extra; - - static final $parentNavigatorKey = _quickOpenNavigatorKey; - - @override - Widget build(BuildContext context, GoRouterState state) => - SourceMangaListScreen( - key: ValueKey(sourceId), - sourceId: sourceId, - sourceType: sourceType, - initialQuery: query, - initialFilter: $extra, - ); -} - -class SourcePreferenceRoute extends GoRouteData { - final String sourceId; - const SourcePreferenceRoute({required this.sourceId}); - - static final $parentNavigatorKey = _quickOpenNavigatorKey; - - @override - Widget build(BuildContext context, GoRouterState state) { - return SourcePreferenceScreen(sourceId: sourceId); - } -} - -class AboutRoute extends GoRouteData { - const AboutRoute(); - - static final $parentNavigatorKey = _quickOpenNavigatorKey; - - @override - Widget build(BuildContext context, GoRouterState state) => - const AboutScreen(); -} - -class ReaderRoute extends GoRouteData { - const ReaderRoute({ - required this.mangaId, - required this.chapterIndex, - this.transVertical, - this.toPrev, - this.showReaderLayoutAnimation = false, - }); - final int mangaId; - final int chapterIndex; - final bool? transVertical; - final bool? toPrev; - final bool showReaderLayoutAnimation; - - static final $parentNavigatorKey = _quickOpenNavigatorKey; - - @override - Page buildPage(BuildContext context, GoRouterState state) { - return CustomTransitionPage( - key: state.pageKey, - child: ReaderScreen( - mangaId: mangaId, - chapterIndex: chapterIndex, - showReaderLayoutAnimation: showReaderLayoutAnimation, - ), - transitionsBuilder: (context, animation, secondaryAnimation, child) { - Offset offset = Offset.zero; - offset += Offset( - transVertical.ifNull() ? 0 : 1, - transVertical.ifNull() ? 1 : 0, - ); - if (toPrev.ifNull()) { - offset *= -1; - } - - return SlideTransition( - position: Tween( - begin: offset, - end: Offset.zero, - ).animate(animation), - child: child, - ); - }, - ); - } -} - -class SettingsRoute extends GoRouteData { - const SettingsRoute(); - - static final $parentNavigatorKey = _quickOpenNavigatorKey; - - @override - Widget build(BuildContext context, GoRouterState state) => - const SettingsScreen(); -} - -class LibrarySettingsRoute extends GoRouteData { - const LibrarySettingsRoute(); - - static final $parentNavigatorKey = _quickOpenNavigatorKey; - - @override - Widget build(BuildContext context, GoRouterState state) => - const LibrarySettingsScreen(); -} - -class EditCategoriesRoute extends GoRouteData { - const EditCategoriesRoute(); - - static final $parentNavigatorKey = _quickOpenNavigatorKey; - - @override - Widget build(BuildContext context, GoRouterState state) => - const EditCategoryScreen(); -} - -class ServerSettingsRoute extends GoRouteData { - const ServerSettingsRoute(); - - static final $parentNavigatorKey = _quickOpenNavigatorKey; - - @override - Widget build(BuildContext context, GoRouterState state) => - const ServerScreen(); -} - -class ReaderSettingsRoute extends GoRouteData { - const ReaderSettingsRoute(); - - static final $parentNavigatorKey = _quickOpenNavigatorKey; - - @override - Widget build(BuildContext context, GoRouterState state) => - const ReaderSettingsScreen(); -} - -class AppearanceSettingsRoute extends GoRouteData { - const AppearanceSettingsRoute(); - - static final $parentNavigatorKey = _quickOpenNavigatorKey; - - @override - Widget build(BuildContext context, GoRouterState state) => - const AppearanceScreen(); -} - -class GeneralSettingsRoute extends GoRouteData { - const GeneralSettingsRoute(); - - static final $parentNavigatorKey = _quickOpenNavigatorKey; - - @override - Widget build(BuildContext context, GoRouterState state) => - const GeneralScreen(); -} - -class BrowseSettingsRoute extends GoRouteData { - const BrowseSettingsRoute(); - - static final $parentNavigatorKey = _quickOpenNavigatorKey; - - @override - Widget build(BuildContext context, GoRouterState state) => - const BrowseSettingsScreen(); -} - -class BackupRoute extends GoRouteData { - const BackupRoute(); - - static final $parentNavigatorKey = _quickOpenNavigatorKey; - - @override - Widget build(BuildContext context, GoRouterState state) => - const BackupScreen(); -} diff --git a/lib/src/routes/router_config.g.dart b/lib/src/routes/router_config.g.dart deleted file mode 100644 index 419a6622..00000000 --- a/lib/src/routes/router_config.g.dart +++ /dev/null @@ -1,629 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'router_config.dart'; - -// ************************************************************************** -// GoRouterGenerator -// ************************************************************************** - -List get $appRoutes => [ - $quickSearchRoute, - ]; - -RouteBase get $quickSearchRoute => ShellRouteData.$route( - navigatorKey: QuickSearchRoute.$navigatorKey, - factory: $QuickSearchRouteExtension._fromState, - routes: [ - ShellRouteData.$route( - navigatorKey: ShellRoute.$navigatorKey, - factory: $ShellRouteExtension._fromState, - routes: [ - GoRouteData.$route( - path: '/', - factory: $HomeRouteExtension._fromState, - ), - GoRouteData.$route( - path: '/library', - factory: $LibraryRouteExtension._fromState, - ), - GoRouteData.$route( - path: '/updates', - factory: $UpdatesRouteExtension._fromState, - ), - GoRouteData.$route( - path: '/browse', - factory: $BrowseRouteExtension._fromState, - ), - GoRouteData.$route( - path: '/downloads', - factory: $DownloadsRouteExtension._fromState, - ), - GoRouteData.$route( - path: '/more', - factory: $MoreRouteExtension._fromState, - ), - ], - ), - GoRouteData.$route( - path: '/manga/:mangaId', - parentNavigatorKey: MangaRoute.$parentNavigatorKey, - factory: $MangaRouteExtension._fromState, - ), - GoRouteData.$route( - path: '/update-status', - parentNavigatorKey: UpdateStatusRoute.$parentNavigatorKey, - factory: $UpdateStatusRouteExtension._fromState, - ), - GoRouteData.$route( - path: '/global-search', - parentNavigatorKey: GlobalSearchRoute.$parentNavigatorKey, - factory: $GlobalSearchRouteExtension._fromState, - ), - GoRouteData.$route( - path: '/source/:sourceId/preference', - parentNavigatorKey: SourcePreferenceRoute.$parentNavigatorKey, - factory: $SourcePreferenceRouteExtension._fromState, - ), - GoRouteData.$route( - path: '/source/:sourceId/:sourceType', - parentNavigatorKey: SourceMangaRoute.$parentNavigatorKey, - factory: $SourceMangaRouteExtension._fromState, - ), - GoRouteData.$route( - path: '/about', - parentNavigatorKey: AboutRoute.$parentNavigatorKey, - factory: $AboutRouteExtension._fromState, - ), - GoRouteData.$route( - path: '/manga/:mangaId/chapter/:chapterIndex', - parentNavigatorKey: ReaderRoute.$parentNavigatorKey, - factory: $ReaderRouteExtension._fromState, - ), - GoRouteData.$route( - path: '/settings', - parentNavigatorKey: SettingsRoute.$parentNavigatorKey, - factory: $SettingsRouteExtension._fromState, - routes: [ - GoRouteData.$route( - path: 'library', - parentNavigatorKey: LibrarySettingsRoute.$parentNavigatorKey, - factory: $LibrarySettingsRouteExtension._fromState, - routes: [ - GoRouteData.$route( - path: 'edit-categories', - parentNavigatorKey: EditCategoriesRoute.$parentNavigatorKey, - factory: $EditCategoriesRouteExtension._fromState, - ), - ], - ), - GoRouteData.$route( - path: 'server', - parentNavigatorKey: ServerSettingsRoute.$parentNavigatorKey, - factory: $ServerSettingsRouteExtension._fromState, - ), - GoRouteData.$route( - path: 'reader', - parentNavigatorKey: ReaderSettingsRoute.$parentNavigatorKey, - factory: $ReaderSettingsRouteExtension._fromState, - ), - GoRouteData.$route( - path: 'appearance', - parentNavigatorKey: AppearanceSettingsRoute.$parentNavigatorKey, - factory: $AppearanceSettingsRouteExtension._fromState, - ), - GoRouteData.$route( - path: 'general', - parentNavigatorKey: GeneralSettingsRoute.$parentNavigatorKey, - factory: $GeneralSettingsRouteExtension._fromState, - ), - GoRouteData.$route( - path: 'browse', - parentNavigatorKey: BrowseSettingsRoute.$parentNavigatorKey, - factory: $BrowseSettingsRouteExtension._fromState, - ), - GoRouteData.$route( - path: 'backup', - parentNavigatorKey: BackupRoute.$parentNavigatorKey, - factory: $BackupRouteExtension._fromState, - ), - ], - ), - ], - ); - -extension $QuickSearchRouteExtension on QuickSearchRoute { - static QuickSearchRoute _fromState(GoRouterState state) => - const QuickSearchRoute(); -} - -extension $ShellRouteExtension on ShellRoute { - static ShellRoute _fromState(GoRouterState state) => const ShellRoute(); -} - -extension $HomeRouteExtension on HomeRoute { - static HomeRoute _fromState(GoRouterState state) => const HomeRoute(); - - String get location => GoRouteData.$location( - '/', - ); - - void go(BuildContext context) => context.go(location); - - Future push(BuildContext context) => context.push(location); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location); - - void replace(BuildContext context) => context.replace(location); -} - -extension $LibraryRouteExtension on LibraryRoute { - static LibraryRoute _fromState(GoRouterState state) => LibraryRoute( - initialCategoryOrder: _$convertMapValue( - 'initial-category-order', state.uri.queryParameters, int.parse), - ); - - String get location => GoRouteData.$location( - '/library', - queryParams: { - if (initialCategoryOrder != null) - 'initial-category-order': initialCategoryOrder!.toString(), - }, - ); - - void go(BuildContext context) => context.go(location); - - Future push(BuildContext context) => context.push(location); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location); - - void replace(BuildContext context) => context.replace(location); -} - -extension $UpdatesRouteExtension on UpdatesRoute { - static UpdatesRoute _fromState(GoRouterState state) => const UpdatesRoute(); - - String get location => GoRouteData.$location( - '/updates', - ); - - void go(BuildContext context) => context.go(location); - - Future push(BuildContext context) => context.push(location); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location); - - void replace(BuildContext context) => context.replace(location); -} - -extension $BrowseRouteExtension on BrowseRoute { - static BrowseRoute _fromState(GoRouterState state) => const BrowseRoute(); - - String get location => GoRouteData.$location( - '/browse', - ); - - void go(BuildContext context) => context.go(location); - - Future push(BuildContext context) => context.push(location); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location); - - void replace(BuildContext context) => context.replace(location); -} - -extension $DownloadsRouteExtension on DownloadsRoute { - static DownloadsRoute _fromState(GoRouterState state) => - const DownloadsRoute(); - - String get location => GoRouteData.$location( - '/downloads', - ); - - void go(BuildContext context) => context.go(location); - - Future push(BuildContext context) => context.push(location); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location); - - void replace(BuildContext context) => context.replace(location); -} - -extension $MoreRouteExtension on MoreRoute { - static MoreRoute _fromState(GoRouterState state) => const MoreRoute(); - - String get location => GoRouteData.$location( - '/more', - ); - - void go(BuildContext context) => context.go(location); - - Future push(BuildContext context) => context.push(location); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location); - - void replace(BuildContext context) => context.replace(location); -} - -extension $MangaRouteExtension on MangaRoute { - static MangaRoute _fromState(GoRouterState state) => MangaRoute( - mangaId: int.parse(state.pathParameters['mangaId']!), - categoryId: _$convertMapValue( - 'category-id', state.uri.queryParameters, int.parse), - ); - - String get location => GoRouteData.$location( - '/manga/${Uri.encodeComponent(mangaId.toString())}', - queryParams: { - if (categoryId != null) 'category-id': categoryId!.toString(), - }, - ); - - void go(BuildContext context) => context.go(location); - - Future push(BuildContext context) => context.push(location); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location); - - void replace(BuildContext context) => context.replace(location); -} - -extension $UpdateStatusRouteExtension on UpdateStatusRoute { - static UpdateStatusRoute _fromState(GoRouterState state) => - const UpdateStatusRoute(); - - String get location => GoRouteData.$location( - '/update-status', - ); - - void go(BuildContext context) => context.go(location); - - Future push(BuildContext context) => context.push(location); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location); - - void replace(BuildContext context) => context.replace(location); -} - -extension $GlobalSearchRouteExtension on GlobalSearchRoute { - static GlobalSearchRoute _fromState(GoRouterState state) => GlobalSearchRoute( - query: state.uri.queryParameters['query'], - ); - - String get location => GoRouteData.$location( - '/global-search', - queryParams: { - if (query != null) 'query': query, - }, - ); - - void go(BuildContext context) => context.go(location); - - Future push(BuildContext context) => context.push(location); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location); - - void replace(BuildContext context) => context.replace(location); -} - -extension $SourcePreferenceRouteExtension on SourcePreferenceRoute { - static SourcePreferenceRoute _fromState(GoRouterState state) => - SourcePreferenceRoute( - sourceId: state.pathParameters['sourceId']!, - ); - - String get location => GoRouteData.$location( - '/source/${Uri.encodeComponent(sourceId)}/preference', - ); - - void go(BuildContext context) => context.go(location); - - Future push(BuildContext context) => context.push(location); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location); - - void replace(BuildContext context) => context.replace(location); -} - -extension $SourceMangaRouteExtension on SourceMangaRoute { - static SourceMangaRoute _fromState(GoRouterState state) => SourceMangaRoute( - sourceId: state.pathParameters['sourceId']!, - sourceType: - _$SourceTypeEnumMap._$fromName(state.pathParameters['sourceType']!), - query: state.uri.queryParameters['query'], - $extra: state.extra as List?, - ); - - String get location => GoRouteData.$location( - '/source/${Uri.encodeComponent(sourceId)}/${Uri.encodeComponent(_$SourceTypeEnumMap[sourceType]!)}', - queryParams: { - if (query != null) 'query': query, - }, - ); - - void go(BuildContext context) => context.go(location, extra: $extra); - - Future push(BuildContext context) => - context.push(location, extra: $extra); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location, extra: $extra); - - void replace(BuildContext context) => - context.replace(location, extra: $extra); -} - -const _$SourceTypeEnumMap = { - SourceType.latest: 'latest', - SourceType.popular: 'popular', - SourceType.filter: 'filter', -}; - -extension $AboutRouteExtension on AboutRoute { - static AboutRoute _fromState(GoRouterState state) => const AboutRoute(); - - String get location => GoRouteData.$location( - '/about', - ); - - void go(BuildContext context) => context.go(location); - - Future push(BuildContext context) => context.push(location); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location); - - void replace(BuildContext context) => context.replace(location); -} - -extension $ReaderRouteExtension on ReaderRoute { - static ReaderRoute _fromState(GoRouterState state) => ReaderRoute( - mangaId: int.parse(state.pathParameters['mangaId']!), - chapterIndex: int.parse(state.pathParameters['chapterIndex']!), - transVertical: _$convertMapValue( - 'trans-vertical', state.uri.queryParameters, _$boolConverter), - toPrev: _$convertMapValue( - 'to-prev', state.uri.queryParameters, _$boolConverter), - showReaderLayoutAnimation: _$convertMapValue( - 'show-reader-layout-animation', - state.uri.queryParameters, - _$boolConverter) ?? - false, - ); - - String get location => GoRouteData.$location( - '/manga/${Uri.encodeComponent(mangaId.toString())}/chapter/${Uri.encodeComponent(chapterIndex.toString())}', - queryParams: { - if (transVertical != null) - 'trans-vertical': transVertical!.toString(), - if (toPrev != null) 'to-prev': toPrev!.toString(), - if (showReaderLayoutAnimation != false) - 'show-reader-layout-animation': - showReaderLayoutAnimation.toString(), - }, - ); - - void go(BuildContext context) => context.go(location); - - Future push(BuildContext context) => context.push(location); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location); - - void replace(BuildContext context) => context.replace(location); -} - -extension $SettingsRouteExtension on SettingsRoute { - static SettingsRoute _fromState(GoRouterState state) => const SettingsRoute(); - - String get location => GoRouteData.$location( - '/settings', - ); - - void go(BuildContext context) => context.go(location); - - Future push(BuildContext context) => context.push(location); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location); - - void replace(BuildContext context) => context.replace(location); -} - -extension $LibrarySettingsRouteExtension on LibrarySettingsRoute { - static LibrarySettingsRoute _fromState(GoRouterState state) => - const LibrarySettingsRoute(); - - String get location => GoRouteData.$location( - '/settings/library', - ); - - void go(BuildContext context) => context.go(location); - - Future push(BuildContext context) => context.push(location); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location); - - void replace(BuildContext context) => context.replace(location); -} - -extension $EditCategoriesRouteExtension on EditCategoriesRoute { - static EditCategoriesRoute _fromState(GoRouterState state) => - const EditCategoriesRoute(); - - String get location => GoRouteData.$location( - '/settings/library/edit-categories', - ); - - void go(BuildContext context) => context.go(location); - - Future push(BuildContext context) => context.push(location); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location); - - void replace(BuildContext context) => context.replace(location); -} - -extension $ServerSettingsRouteExtension on ServerSettingsRoute { - static ServerSettingsRoute _fromState(GoRouterState state) => - const ServerSettingsRoute(); - - String get location => GoRouteData.$location( - '/settings/server', - ); - - void go(BuildContext context) => context.go(location); - - Future push(BuildContext context) => context.push(location); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location); - - void replace(BuildContext context) => context.replace(location); -} - -extension $ReaderSettingsRouteExtension on ReaderSettingsRoute { - static ReaderSettingsRoute _fromState(GoRouterState state) => - const ReaderSettingsRoute(); - - String get location => GoRouteData.$location( - '/settings/reader', - ); - - void go(BuildContext context) => context.go(location); - - Future push(BuildContext context) => context.push(location); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location); - - void replace(BuildContext context) => context.replace(location); -} - -extension $AppearanceSettingsRouteExtension on AppearanceSettingsRoute { - static AppearanceSettingsRoute _fromState(GoRouterState state) => - const AppearanceSettingsRoute(); - - String get location => GoRouteData.$location( - '/settings/appearance', - ); - - void go(BuildContext context) => context.go(location); - - Future push(BuildContext context) => context.push(location); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location); - - void replace(BuildContext context) => context.replace(location); -} - -extension $GeneralSettingsRouteExtension on GeneralSettingsRoute { - static GeneralSettingsRoute _fromState(GoRouterState state) => - const GeneralSettingsRoute(); - - String get location => GoRouteData.$location( - '/settings/general', - ); - - void go(BuildContext context) => context.go(location); - - Future push(BuildContext context) => context.push(location); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location); - - void replace(BuildContext context) => context.replace(location); -} - -extension $BrowseSettingsRouteExtension on BrowseSettingsRoute { - static BrowseSettingsRoute _fromState(GoRouterState state) => - const BrowseSettingsRoute(); - - String get location => GoRouteData.$location( - '/settings/browse', - ); - - void go(BuildContext context) => context.go(location); - - Future push(BuildContext context) => context.push(location); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location); - - void replace(BuildContext context) => context.replace(location); -} - -extension $BackupRouteExtension on BackupRoute { - static BackupRoute _fromState(GoRouterState state) => const BackupRoute(); - - String get location => GoRouteData.$location( - '/settings/backup', - ); - - void go(BuildContext context) => context.go(location); - - Future push(BuildContext context) => context.push(location); - - void pushReplacement(BuildContext context) => - context.pushReplacement(location); - - void replace(BuildContext context) => context.replace(location); -} - -T? _$convertMapValue( - String key, - Map map, - T Function(String) converter, -) { - final value = map[key]; - return value == null ? null : converter(value); -} - -extension on Map { - T _$fromName(String value) => - entries.singleWhere((element) => element.value == value).key; -} - -bool _$boolConverter(String value) { - switch (value) { - case 'true': - return true; - case 'false': - return false; - default: - throw UnsupportedError('Cannot convert "$value" into a bool.'); - } -} - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$routerConfigHash() => r'c9473ad31b2ecd6bf97eb8e0a2a4edf6683e5f6f'; - -/// See also [routerConfig]. -@ProviderFor(routerConfig) -final routerConfigProvider = AutoDisposeProvider.internal( - routerConfig, - name: r'routerConfigProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$routerConfigHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef RouterConfigRef = AutoDisposeProviderRef; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/sorayomi.dart b/lib/src/sorayomi.dart deleted file mode 100644 index d9b4827a..00000000 --- a/lib/src/sorayomi.dart +++ /dev/null @@ -1,56 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flex_color_scheme/flex_color_scheme.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; -import 'package:fluttertoast/fluttertoast.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import 'features/settings/presentation/appearance/widgets/app_theme_selector/app_theme_selector.dart'; -import 'features/settings/presentation/appearance/widgets/is_true_black/is_true_black_tile.dart'; -import 'features/settings/widgets/app_theme_mode_tile/app_theme_mode_tile.dart'; -import 'global_providers/global_providers.dart'; -import 'routes/router_config.dart'; -import 'utils/extensions/custom_extensions.dart'; - -class Sorayomi extends ConsumerWidget { - const Sorayomi({super.key}); - - @override - Widget build(BuildContext context, WidgetRef ref) { - final routes = ref.watch(routerConfigProvider); - final themeMode = ref.watch(appThemeModeProvider); - final appLocale = ref.watch(l10nProvider); - final appScheme = ref.watch(appSchemeProvider); - final isTrueBlack = ref.watch(isTrueBlackProvider); - return MaterialApp.router( - builder: FToastBuilder(), - onGenerateTitle: (context) => context.l10n!.appTitle, - debugShowCheckedModeBanner: false, - theme: FlexThemeData.light( - scheme: appScheme, - useMaterial3: true, - useMaterial3ErrorColors: true, - ).copyWith( - tabBarTheme: const TabBarTheme(tabAlignment: TabAlignment.center), - ), - darkTheme: FlexThemeData.dark( - scheme: appScheme, - useMaterial3: true, - useMaterial3ErrorColors: true, - darkIsTrueBlack: isTrueBlack.ifNull(), - ).copyWith( - tabBarTheme: const TabBarTheme(tabAlignment: TabAlignment.center), - ), - themeMode: themeMode ?? ThemeMode.system, - localizationsDelegates: AppLocalizations.localizationsDelegates, - supportedLocales: AppLocalizations.supportedLocales, - locale: appLocale, - routerConfig: routes, - ); - } -} diff --git a/lib/src/utils/extensions/cache_manager_extensions.dart b/lib/src/utils/extensions/cache_manager_extensions.dart deleted file mode 100644 index df46839c..00000000 --- a/lib/src/utils/extensions/cache_manager_extensions.dart +++ /dev/null @@ -1,39 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:io'; - -import 'package:flutter_cache_manager/flutter_cache_manager.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../constants/endpoints.dart'; -import '../../constants/enum.dart'; -import '../../features/settings/presentation/server/widget/credential_popup/credentials_popup.dart'; -import '../../features/settings/widgets/server_port_tile/server_port_tile.dart'; -import '../../features/settings/widgets/server_url_tile/server_url_tile.dart'; -import '../../global_providers/global_providers.dart'; -import 'custom_extensions.dart'; - -extension CacheManagerExtension on CacheManager { - Future getServerFile(WidgetRef ref, String url, - {bool appendApiToUrl = true}) async { - final authType = ref.read(authTypeKeyProvider); - final basicToken = ref.read(credentialsProvider); - final baseApi = "${Endpoints.baseApi( - baseUrl: ref.read(serverUrlProvider), - port: ref.read(serverPortProvider), - addPort: ref.read(serverPortToggleProvider).ifNull(), - appendApiToUrl: appendApiToUrl, - )}" - "$url"; - return await getSingleFile( - baseApi, - headers: authType == AuthType.basic && basicToken != null - ? {"Authorization": basicToken} - : null, - ); - } -} diff --git a/lib/src/utils/extensions/custom_extensions.dart b/lib/src/utils/extensions/custom_extensions.dart deleted file mode 100644 index 5cb7a22a..00000000 --- a/lib/src/utils/extensions/custom_extensions.dart +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:math'; - -import 'package:flutter/material.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; -import 'package:go_router/go_router.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:intl/intl.dart'; - -import '../../widgets/custom_circular_progress_indicator.dart'; -import '../../widgets/emoticons.dart'; -import '../misc/app_utils.dart'; -import '../misc/toast/toast.dart'; - -part 'custom_extensions/async_value_extensions.dart'; -part 'custom_extensions/bool_extensions.dart'; -part 'custom_extensions/context_extensions.dart'; -part 'custom_extensions/date_time_extensions.dart'; -part 'custom_extensions/double_extensions.dart'; -part 'custom_extensions/int_extensions.dart'; -part 'custom_extensions/iterable_extensions.dart'; -part 'custom_extensions/map_extensions.dart'; -part 'custom_extensions/string_extensions.dart'; diff --git a/lib/src/utils/extensions/custom_extensions/async_value_extensions.dart b/lib/src/utils/extensions/custom_extensions/async_value_extensions.dart deleted file mode 100644 index 83b34fae..00000000 --- a/lib/src/utils/extensions/custom_extensions/async_value_extensions.dart +++ /dev/null @@ -1,72 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -part of '../custom_extensions.dart'; - -extension AsyncValueExtensions on AsyncValue { - bool get isNotLoading => !isLoading; - - void _showToastOnError(Toast toast) { - if (!isRefreshing) { - whenOrNull( - error: (error, stackTrace) { - toast.close(); - toast.showError(error.toString()); - }, - ); - } - } - - void showToastOnError(Toast toast, {bool withMicrotask = false}) { - if (withMicrotask) { - Future.microtask(() => (this._showToastOnError(toast))); - } else { - this._showToastOnError(toast); - } - } - - T? valueOrToast(Toast toast, {bool withMicrotask = false}) => - (this..showToastOnError(toast, withMicrotask: withMicrotask)).valueOrNull; - - Widget showUiWhenData( - BuildContext context, - Widget Function(T data) data, { - VoidCallback? refresh, - Widget Function(Widget)? wrapper, - bool showGenericError = false, - bool addScaffoldWrapper = false, - }) { - if (addScaffoldWrapper) { - wrapper = (body) => Scaffold(appBar: AppBar(), body: body); - } - return when( - data: data, - skipError: true, - error: (error, trace) => AppUtils.wrapIf( - wrapper, - Emoticons( - text: showGenericError - ? context.l10n!.errorSomethingWentWrong - : error.toString(), - button: refresh != null - ? TextButton( - onPressed: refresh, - child: Text(context.l10n!.refresh), - ) - : null, - )), - loading: () => - AppUtils.wrapIf(wrapper, const CenterSorayomiShimmerIndicator()), - ); - } - - AsyncValue copyWithData(U Function(T) data) => when( - skipError: true, - data: (prev) => AsyncData(data(prev)), - error: (error, stackTrace) => AsyncError(error, stackTrace), - loading: () => AsyncLoading(), - ); -} diff --git a/lib/src/utils/extensions/custom_extensions/bool_extensions.dart b/lib/src/utils/extensions/custom_extensions/bool_extensions.dart deleted file mode 100644 index fb5b44ac..00000000 --- a/lib/src/utils/extensions/custom_extensions/bool_extensions.dart +++ /dev/null @@ -1,15 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -part of '../custom_extensions.dart'; - -extension BoolExtensions on bool? { - bool get isNull => this == null; - bool get isNotNull => !isNull; - bool ifNull([bool alternative = false]) => this ?? alternative; - int get toInt => this != null ? (this! ? 1 : 2) : 0; - int get toIntWithNegative => this != null ? (this! ? 1 : -1) : 0; -} diff --git a/lib/src/utils/extensions/custom_extensions/context_extensions.dart b/lib/src/utils/extensions/custom_extensions/context_extensions.dart deleted file mode 100644 index f252089b..00000000 --- a/lib/src/utils/extensions/custom_extensions/context_extensions.dart +++ /dev/null @@ -1,230 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -part of '../custom_extensions.dart'; - -/// Helper class for device related operations. -/// -extension ContextExtensions on BuildContext { - String get location { - GoRouter router = GoRouter.of(this); - final RouteMatch lastMatch = - router.routerDelegate.currentConfiguration.last; - final RouteMatchList matchList = lastMatch is ImperativeRouteMatch - ? lastMatch.matches - : router.routerDelegate.currentConfiguration; - return matchList.uri.toString(); - } - - /// - /// hides the keyboard if its already open - /// - get hideKeyboard => FocusScope.of(this).unfocus(); - - /// - /// accepts a double [scale] and returns scaled sized based on the screen - /// orientation - /// - - double get horizontal => - (MediaQuery.of(this).orientation == Orientation.portrait - ? MediaQuery.of(this).size.width - : MediaQuery.of(this).size.height); - double horizontalScale({double scale = 1}) => scale * horizontal; - - /// - /// accepts a double [scale] and returns scaled sized based on the screen - /// orientation - /// - double verticalScale({double scale = 1}) => scale * vertical; - double get vertical => - (MediaQuery.of(this).orientation == Orientation.landscape - ? MediaQuery.of(this).size.width - : MediaQuery.of(this).size.height); - - /// The same of [MediaQuery.of(context).size] - Size get mediaQuerySize => MediaQuery.of(this).size; - - /// The same of [MediaQuery.of(context).size.height] - /// Note: updates when you resize your screen (like on a browser or - /// desktop window) - double get height => mediaQuerySize.height; - - /// The same of [MediaQuery.of(context).size.width] - /// Note: updates when you resize your screen (like on a browser or - /// desktop window) - double get width => mediaQuerySize.width; - - /// - /// accepts a double [scale] and returns scaled sized based on the screen - /// width - /// - - double widthScale({double scale = 1}) => scale * width; - - /// - /// accepts a double [scale] and returns scaled sized based on the screen - /// height - /// - double heightScale({double scale = 1}) => scale * height; - - /// Gives you the power to get a portion of the height. - /// Useful for responsive applications. - /// - /// [dividedBy] is for when you want to have a portion of the value you - /// would get like for example: if you want a value that represents a third - /// of the screen you can set it to 3, and you will get a third of the height - /// - /// [reducedBy] is a percentage value of how much of the height you want - /// if you for example want 46% of the height, then you reduce it by 56%. - double heightTransformer({double dividedBy = 1, double reducedBy = 0.0}) => - (mediaQuerySize.height - ((mediaQuerySize.height / 100) * reducedBy)) / - dividedBy; - - /// Gives you the power to get a portion of the width. - /// Useful for responsive applications. - /// - /// [dividedBy] is for when you want to have a portion of the value you - /// would get like for example: if you want a value that represents a third - /// of the screen you can set it to 3, and you will get a third of the width - /// - /// [reducedBy] is a percentage value of how much of the width you want - /// if you for example want 46% of the width, then you reduce it by 56%. - double widthTransformer({double dividedBy = 1, double reducedBy = 0.0}) => - (mediaQuerySize.width - ((mediaQuerySize.width / 100) * reducedBy)) / - dividedBy; - - /// Divide the height proportionally by the given value - double ratio({ - double dividedBy = 1, - double reducedByW = 0.0, - double reducedByH = 0.0, - }) => - heightTransformer(dividedBy: dividedBy, reducedBy: reducedByH) / - widthTransformer(dividedBy: dividedBy, reducedBy: reducedByW); - - /// similar to [MediaQuery.of(context).padding] - ThemeData get theme => Theme.of(this); - - /// Check if dark mode theme is enable - bool get isDarkMode => (theme.brightness == Brightness.dark); - - /// give access to context.iconTheme.color - Color? get iconColor => theme.iconTheme.color; - - /// similar to [MediaQuery.of(context).padding] - TextTheme get textTheme => Theme.of(this).textTheme; - - /// similar to [MediaQuery.of(context).padding] - EdgeInsets get mediaQueryPadding => MediaQuery.of(this).padding; - - /// similar to [MediaQuery.of(context).padding] - MediaQueryData get mediaQuery => MediaQuery.of(this); - - /// similar to [MediaQuery.of(context).viewPadding] - EdgeInsets get mediaQueryViewPadding => MediaQuery.of(this).viewPadding; - - /// similar to [MediaQuery.of(context).viewInsets] - EdgeInsets get mediaQueryViewInsets => MediaQuery.of(this).viewInsets; - - /// similar to [MediaQuery.of(context).orientation] - Orientation get orientation => MediaQuery.of(this).orientation; - - /// check if device is on landscape mode - bool get isLandscape => orientation == Orientation.landscape; - - /// check if device is on portrait mode - bool get isPortrait => orientation == Orientation.portrait; - - /// similar to [MediaQuery.of(this).devicePixelRatio] - double get devicePixelRatio => MediaQuery.of(this).devicePixelRatio; - - /// similar to [MediaQuery.of(this).textScaleFactor] - TextScaler get textScaleFactor => MediaQuery.of(this).textScaler; - - /// get the shortestSide from screen - double get mediaQueryShortestSide => mediaQuerySize.shortestSide; - - /// True if width be larger than 800 - bool get showNavbar => (width > 800); - - /// True if the width is less than 600p - bool get isPhoneOrLess => width <= 600; - - /// True if the width is greater than 600p - bool get isPhoneOrWider => width >= 600; - - /// True if the shortestSide is greater than 600p - bool get isPhone => isPhoneOrWider; - - /// True if the width is less than 600p - bool get isSmallTabletOrLess => width <= 600; - - /// True if the width is greater than 600p - bool get isSmallTabletOrWider => width >= 600; - - /// True if the shortestSide is greater than 600p - bool get isSmallTablet => isSmallTabletOrWider; - - /// True if the width is less than 720p - bool get isLargeTabletOrLess => width <= 720; - - /// True if the width is greater than 720p - bool get isLargeTabletOrWider => width >= 720; - - /// True if the shortestSide is greater than 720p - bool get isLargeTablet => isLargeTabletOrWider; - - /// True if the current device is Tablet - bool get isTablet => isSmallTabletOrWider; - - /// True if the width is less than 1200p - bool get isDesktopOrLess => width <= 1200; - - /// True if the width is greater than 1200p - bool get isDesktopOrWider => width >= 1200; - - /// True if the width is greater than 1200p - bool get isDesktop => isDesktopOrWider; - - AppLocalizations? get l10n => AppLocalizations.of(this); - - Locale get currentLocale => Localizations.localeOf(this); - - ColorScheme get colorScheme => Theme.of(this).colorScheme; - - /// Returns a specific value according to the screen size - /// if the device width is greater than or equal to 1200 return - /// [desktop] value. if the device width is greater than or equal to 600 - /// and less than 1200 return [tablet] value. - /// if the device width is less than 300 return [watch] value. - /// in other cases return [mobile] value. - T responsiveValue({ - T? watch, - T? mobile, - T? tablet, - T? desktop, - }) { - assert( - watch != null || mobile != null || tablet != null || desktop != null); - - var deviceWidth = mediaQuerySize.width; - //big screen width can display less sizes - final strictValues = [ - if (deviceWidth >= 1200) desktop, //desktop is allowed - if (deviceWidth >= 600) tablet, //tablet is allowed - if (deviceWidth >= 300) mobile, //mobile is allowed - watch, //watch is allowed - ].whereType(); - final looseValues = [ - watch, - mobile, - tablet, - desktop, - ].whereType(); - return strictValues.firstOrNull ?? looseValues.first; - } -} diff --git a/lib/src/utils/extensions/custom_extensions/date_time_extensions.dart b/lib/src/utils/extensions/custom_extensions/date_time_extensions.dart deleted file mode 100644 index 30b50692..00000000 --- a/lib/src/utils/extensions/custom_extensions/date_time_extensions.dart +++ /dev/null @@ -1,117 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -part of '../custom_extensions.dart'; - -extension DateTimeExtensions on DateTime { - String get toDateString => DateFormat.yMMMd().format(this); - String get toMonthYearString => DateFormat.yMMM().format(this); - String get toDayMonthString => DateFormat.MMMd().format(this); - String get toDayString => DateFormat.E().format(this); - String get toMonthString => DateFormat.MMM().format(this); - DateTime copyWith({ - int? year, - int? month, - int? day, - int? hour, - int? minute, - int? second, - int? millisecond, - int? microsecond, - }) => - DateTime( - year ?? this.year, - month ?? this.month, - day ?? this.day, - hour ?? this.hour, - minute ?? this.minute, - second ?? this.second, - millisecond ?? this.millisecond, - microsecond ?? this.microsecond, - ); - -// ///////////////////////////////////////////////////////////////////////////// - - DateTime get startOfDay => DateTime(year, month, day); - - DateTime get endOfDay => copyWith( - hour: 23, - minute: 59, - second: 59, - millisecond: 999, - ); - - DateTimeRange get sameDayRange => DateTimeRange( - start: startOfDay, - end: endOfDay, - ); - - bool isSameDay(DateTime date) => - day == date.day && month == date.month && year == date.year; - -// ///////////////////////////////////////////////////////////////////////////// - - DateTime get firstDayOfWeek => subtract( - Duration(days: (weekday - 1)), - ).startOfDay; - - DateTime get lastDayOfWeek => add( - Duration(days: 7 - weekday), - ).endOfDay; - - DateTimeRange get sameWeekRange => DateTimeRange( - start: firstDayOfWeek, - end: lastDayOfWeek, - ); - -// ///////////////////////////////////////////////////////////////////////////// - - DateTime get firstDayOfMonth => DateTime(year, month); - - DateTime get lastDayOfMonth => DateTime(year, month + 1, 0).endOfDay; - - DateTimeRange get sameMonthRange => DateTimeRange( - start: firstDayOfMonth, - end: lastDayOfMonth, - ); - -// ///////////////////////////////////////////////////////////////////////////// - - DateTime get firstDayOfFinYear => DateTime( - month >= 4 ? year : year - 1, - 4, - ); - - DateTime get lastDayOfFinYear => DateTime( - month >= 4 ? year + 1 : year, - 3, - 31, - ).endOfDay; - - DateTimeRange get sameFinYearRange => DateTimeRange( - start: firstDayOfFinYear, - end: lastDayOfFinYear, - ); - -// ///////////////////////////////////////////////////////////////////////////// - - static DateTime max(DateTime a, DateTime b) => a.compareTo(b) > 0 ? a : b; - - String convertToDaysAgo(BuildContext context) { - Duration diff = DateTime.now().difference(this); - - if (diff.inDays < 1) { - return context.l10n!.today; - } else if (diff.inDays < 2) { - return context.l10n!.yesterday; - } else if (diff.inDays < 10) { - return context.l10n!.daysAgo(diff.inDays); - } else { - return DateFormat.yMMMd(context.currentLocale.toLanguageTag()) - .format(this); - } - } -} diff --git a/lib/src/utils/extensions/custom_extensions/double_extensions.dart b/lib/src/utils/extensions/custom_extensions/double_extensions.dart deleted file mode 100644 index ef7d2ac5..00000000 --- a/lib/src/utils/extensions/custom_extensions/double_extensions.dart +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -part of '../custom_extensions.dart'; - -extension DoubleExtensions on double? { - bool liesBetween({double lower = 0, double upper = 1}) => - this != null ? this! >= lower && this! <= upper : false; - bool get isZero => this != null ? this! == 0 : true; - bool get isNotZero => !isZero; -} diff --git a/lib/src/utils/extensions/custom_extensions/int_extensions.dart b/lib/src/utils/extensions/custom_extensions/int_extensions.dart deleted file mode 100644 index 8c36defc..00000000 --- a/lib/src/utils/extensions/custom_extensions/int_extensions.dart +++ /dev/null @@ -1,55 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. -part of '../custom_extensions.dart'; - -extension IntExtensions on int? { - bool get isNull => this == null; - bool get isZero => this != null ? this! == 0 : false; - bool liesBetween({int lower = 0, int upper = 1}) => - this != null ? this! >= lower && this! <= upper : false; - bool isGreaterThan(int i) => isNull ? false : this! > i; - bool isLessThan(int i) => isNull ? false : this! < i; - int getValueOnNullOrNegative([int i = 0]) => - isNull || this!.isNegative ? i : this!; - bool isNotEquals(List lst) => - isNull || lst.isBlank ? true : lst.every((e) => e != this); - - bool? get toBool => (this == null || this == 0) ? null : this == 1; - - String get toDateString { - if (isNull) return ""; - return DateFormat.yMMMd().format( - DateTime.fromMillisecondsSinceEpoch(this!), - ); - } - - String? padLeft([int width = 2, String padding = '0']) { - if (isNull) return null; - return toString().padLeft(width, padding); - } - - String get toDateStringFromSeconds { - if (isNull) return ""; - return DateTime.fromMillisecondsSinceEpoch(this! * 1000).toDateString; - } - - String toDaysAgoFromSeconds(BuildContext context) { - if (isNull) return ""; - return DateTime.fromMillisecondsSinceEpoch(this! * 1000) - .convertToDaysAgo(context); - } - - String toDaysAgo(context) { - if (isNull) return ""; - return DateTime.fromMillisecondsSinceEpoch(this!).convertToDaysAgo(context); - } - - bool isSameDayAs(int? anotherDate) { - if (isNull || anotherDate.isNull) return false; - return DateTime.fromMillisecondsSinceEpoch(this! * 1000) - .isSameDay(DateTime.fromMillisecondsSinceEpoch(anotherDate! * 1000)); - } -} diff --git a/lib/src/utils/extensions/custom_extensions/iterable_extensions.dart b/lib/src/utils/extensions/custom_extensions/iterable_extensions.dart deleted file mode 100644 index ff527ba6..00000000 --- a/lib/src/utils/extensions/custom_extensions/iterable_extensions.dart +++ /dev/null @@ -1,49 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -part of '../custom_extensions.dart'; - -extension IterableExtensions on Iterable? { - bool get isNull => this == null; - - bool get isBlank => isNull || this!.isEmpty; - - bool get isNotBlank => !isBlank; - - bool get isSingletonList => isNotBlank && this!.length == 1; - - T? get firstOrNull { - if (isNull) return null; - var iterator = this!.iterator; - if (iterator.moveNext()) return iterator.current; - return null; - } - - String get toPath => isNotBlank ? this!.join("/") : "/"; - - T? lastWhereOrNull(bool Function(T element) test, {T Function()? orElse}) { - if (isNull) return null; - try { - return this!.lastWhere(test, orElse: orElse); - } catch (e) { - return null; - } - } - - T? firstWhereOrNull(bool Function(T element) test, {T Function()? orElse}) { - if (isNull) return null; - try { - return this!.firstWhere(test, orElse: orElse); - } catch (e) { - return null; - } - } - - T? get getRandom => - isNull ? null : this!.elementAt(Random().nextInt(this!.length)); - - Iterable? get filterOutNulls => this?.where((element) => element != null); -} diff --git a/lib/src/utils/extensions/custom_extensions/map_extensions.dart b/lib/src/utils/extensions/custom_extensions/map_extensions.dart deleted file mode 100644 index 4884438e..00000000 --- a/lib/src/utils/extensions/custom_extensions/map_extensions.dart +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. -part of '../custom_extensions.dart'; - -extension MapExtensions on Map { - Map get filterOutNulls { - final Map filtered = {}; - forEach((K key, V value) { - if (value != null) filtered[key] = value; - }); - return filtered; - } - - Map toggleKey(K key, V value) { - if (containsKey(key)) { - return {...this}..remove(key); - } else { - return {...this, key: value}; - } - } -} - -extension NullableMapExtensions on Map? { - bool get isNull => this == null; - - bool get isBlank => isNull || this!.isEmpty; - - bool get isNotBlank => !isBlank; -} diff --git a/lib/src/utils/extensions/custom_extensions/string_extensions.dart b/lib/src/utils/extensions/custom_extensions/string_extensions.dart deleted file mode 100644 index c68a7c40..00000000 --- a/lib/src/utils/extensions/custom_extensions/string_extensions.dart +++ /dev/null @@ -1,103 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -part of '../custom_extensions.dart'; - -extension StringExtensions on String? { - bool get isNull => this == null; - - bool get isBlank => isNull || this!.isEmpty; - - bool get isNotBlank => !isBlank; - - bool get isInt => isNull ? false : int.tryParse(this!) != null; - - bool? get tryParseBool => isNull ? null : (this!).toLowerCase() == 'true'; - - double? get tryParseInt => isNull ? null : double.tryParse(this!); - - bool hasMatch(String pattern) => - (isNull) ? false : RegExp(pattern).hasMatch(this!); - - String? get capitalize { - if (isNull) return null; - if (this!.isEmpty) return this; - return this!.split(' ').map((e) => e.capitalizeFirst).join(' '); - } - - String? get capitalizeFirst { - if (isNull) return null; - if (this!.isEmpty) return this; - return this![0].toUpperCase() + this!.substring(1).toLowerCase(); - } - - /// Converts "dattatreya reddy" to "DR" - String? nameToLetters({int maxLength = 2}) { - if (isNull) return null; - return this! - .split(" ") - .take(maxLength) - .map((e) => e.isEmpty ? "" : e[0].toUpperCase()) - .join(); - } - - String get incrementZeroPaddedInt { - if (isNull) return "1"; - final valLen = this!.length; - final newVal = (int.tryParse(this!).getValueOnNullOrNegative()) + 1; - final noOfZeros = max(valLen - (newVal.toString()).length, 0); - return "0" * noOfZeros + newVal.toString(); - } - - /// Checks if this is phone number. - bool get isPhoneNumber { - if (isNull) return false; - if (this!.length != 10) return false; - return hasMatch(r'^[0-9]{10}$'); - } - - /// Checks if this is email. - bool get isEmail { - if (isNull) return false; - return this!.hasMatch( - r'^(([^<>[\]\\.,;:\s@\"]+(\.[^<>[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$'); - } - - bool query([String? query]) { - if (isNull) return false; - if (query.isBlank) return true; - return this!.toLowerCase().contains(query!.toLowerCase()); - } - - String? get toCamelCase { - if (isBlank) return null; - List separatedWords = - this!.split(RegExp(r'[!@#<>?":`~;[\]\\|=+)(*&^%-\s_]+')); - return separatedWords.fold( - "", - (value, word) => - value + word[0].toUpperCase() + word.substring(1).toLowerCase(), - ); - } - - String? get toStartCase { - if (isBlank) return null; - final separatedWords = - this!.split(RegExp(r'[!@#<>?":`~;[\]\\|=+)(*&^%-\s_]+')); - separatedWords[0] = separatedWords[0].capitalizeFirst!; - return separatedWords.reduce((value, e) => "$value ${e.capitalizeFirst!}"); - } - - String? get last10Digits { - if (isBlank) return null; - return this!.length > 10 ? this!.substring(this!.length - 10) : this; - } - - String? get toWebSocket { - if (isBlank) return null; - return this!.replaceFirst(RegExp('http', caseSensitive: false), 'ws'); - } -} diff --git a/lib/src/utils/freezed_converters/language_json_converter.dart b/lib/src/utils/freezed_converters/language_json_converter.dart deleted file mode 100644 index c3753d25..00000000 --- a/lib/src/utils/freezed_converters/language_json_converter.dart +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import '../../constants/language_list.dart'; -import '../../features/browse_center/domain/language/language_model.dart'; - -class LanguageJsonConverter { - static Language? fromJson(String? langCode) => langCode != null - ? languageMap[langCode.toLowerCase()] ?? - Language(code: langCode.toLowerCase()) - : null; - static String? toJson(Language? lang) => lang?.code; -} diff --git a/lib/src/utils/hooks/paging_controller_hook.dart b/lib/src/utils/hooks/paging_controller_hook.dart deleted file mode 100644 index 34ad63bd..00000000 --- a/lib/src/utils/hooks/paging_controller_hook.dart +++ /dev/null @@ -1,58 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:infinite_scroll_pagination/infinite_scroll_pagination.dart'; - -/// Creates [PagingController] that will be disposed automatically. -/// -/// See also: -/// - [PagingController] -PagingController - usePagingController( - {required PageKeyType firstPageKey, int? invisibleItemsThreshold}) { - return use>( - _PagingControllerHook( - firstPageKey: firstPageKey, - invisibleItemsThreshold: invisibleItemsThreshold, - ), - ); -} - -class _PagingControllerHook - extends Hook> { - const _PagingControllerHook( - {super.keys, required this.firstPageKey, this.invisibleItemsThreshold}); - - final PageKeyType firstPageKey; - final int? invisibleItemsThreshold; - - @override - HookState, - Hook>> - createState() => _PagingControllerHookState(); -} - -class _PagingControllerHookState extends HookState< - PagingController, - _PagingControllerHook> { - late final controller = PagingController( - firstPageKey: hook.firstPageKey, - invisibleItemsThreshold: hook.invisibleItemsThreshold, - ); - - @override - PagingController build(BuildContext context) => - controller; - - @override - void dispose() => controller.dispose(); - - @override - String get debugLabel => 'usePagingController'; -} diff --git a/lib/src/utils/launch_url_in_web.dart b/lib/src/utils/launch_url_in_web.dart deleted file mode 100644 index 8f2858f5..00000000 --- a/lib/src/utils/launch_url_in_web.dart +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter/services.dart'; -import 'package:url_launcher/url_launcher.dart'; - -import 'extensions/custom_extensions.dart'; -import 'misc/toast/toast.dart'; - -Future launchUrlInWeb(BuildContext context, String url, - [Toast? toast]) async { - if (!await launchUrl( - Uri.parse(url), - mode: LaunchMode.externalApplication, - webOnlyWindowName: "_blank", - )) { - await Clipboard.setData(ClipboardData(text: url)); - if (context.mounted) toast?.showError(context.l10n!.errorLaunchURL(url)); - } -} diff --git a/lib/src/utils/logger/provider_state_logger.dart b/lib/src/utils/logger/provider_state_logger.dart deleted file mode 100644 index 7dba6535..00000000 --- a/lib/src/utils/logger/provider_state_logger.dart +++ /dev/null @@ -1,30 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/rendering.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -/// Useful to log state change in our application -/// Read the logs and you'll better understand what's going on under the hood -class ProviderStateLogger extends ProviderObserver { - const ProviderStateLogger(); - @override - void didUpdateProvider( - ProviderBase provider, - Object? previousValue, - Object? newValue, - ProviderContainer container, - ) { - debugPrint(''' -{ - provider: ${provider.name ?? provider.runtimeType}, - oldValue: $previousValue, - newValue: $newValue -} -'''); - super.didUpdateProvider(provider, previousValue, newValue, container); - } -} diff --git a/lib/src/utils/misc/app_utils.dart b/lib/src/utils/misc/app_utils.dart deleted file mode 100644 index 76649063..00000000 --- a/lib/src/utils/misc/app_utils.dart +++ /dev/null @@ -1,10 +0,0 @@ -import 'package:flutter/material.dart'; - -abstract class AppUtils { - static Widget wrapIf(Widget Function(Widget)? wrapper, Widget child) { - if (wrapper != null) { - return wrapper(child); - } - return child; - } -} diff --git a/lib/src/utils/misc/material_color_generator.dart b/lib/src/utils/misc/material_color_generator.dart deleted file mode 100644 index 708639ab..00000000 --- a/lib/src/utils/misc/material_color_generator.dart +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:math'; - -import 'package:flutter/material.dart'; - -abstract class MaterialColorGenerator { - MaterialColorGenerator._(); - static MaterialColor generate({required Color color}) => - MaterialColor(color.value, { - 50: _tintColor(color, 0.9), - 100: _tintColor(color, 0.8), - 200: _tintColor(color, 0.6), - 300: _tintColor(color, 0.4), - 400: _tintColor(color, 0.2), - 500: color, - 600: _shadeColor(color, 0.1), - 700: _shadeColor(color, 0.2), - 800: _shadeColor(color, 0.3), - 900: _shadeColor(color, 0.4), - }); - - static int _tintValue(int value, double factor) => - max(0, min((value + ((255 - value) * factor)).round(), 255)); - - static Color _tintColor(Color color, double factor) => Color.fromRGBO( - _tintValue(color.red, factor), - _tintValue(color.green, factor), - _tintValue(color.blue, factor), - 1); - - static int _shadeValue(int value, double factor) => - max(0, min(value - (value * factor).round(), 255)); - - static Color _shadeColor(Color color, double factor) => Color.fromRGBO( - _shadeValue(color.red, factor), - _shadeValue(color.green, factor), - _shadeValue(color.blue, factor), - 1); -} diff --git a/lib/src/utils/misc/toast/toast.dart b/lib/src/utils/misc/toast/toast.dart deleted file mode 100644 index f576a286..00000000 --- a/lib/src/utils/misc/toast/toast.dart +++ /dev/null @@ -1,92 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:fluttertoast/fluttertoast.dart'; -import 'package:gap/gap.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../constants/app_sizes.dart'; - -part 'toast.g.dart'; - -class Toast { - Toast(this._context) { - _fToast = FToast().init(_context); - } - final BuildContext _context; - late FToast _fToast; - - void instantShow(String msg) { - close(); - show(msg); - } - - void show(String msg, {bool withMicrotask = false}) { - if (withMicrotask) { - Future.microtask(() => _fToast.showToast( - child: ToastWidget(text: msg), - gravity: ToastGravity.BOTTOM, - )); - } else { - _fToast.showToast( - child: ToastWidget(text: msg), - gravity: ToastGravity.BOTTOM, - ); - } - } - - void showError(String error) => _fToast.showToast( - child: ToastWidget( - text: error, - backgroundColor: Colors.red.shade400, - ), - gravity: ToastGravity.TOP, - ); - - void close() => _fToast.removeCustomToast(); -} - -class ToastWidget extends StatelessWidget { - const ToastWidget({ - super.key, - required this.text, - this.icon, - this.backgroundColor, - this.textColor, - }); - final String text; - final Widget? icon; - final Color? backgroundColor; - final Color? textColor; - @override - Widget build(BuildContext context) { - Widget textWidget = Text( - text, - style: TextStyle(color: textColor ?? Colors.white), - textAlign: TextAlign.center, - ); - return Container( - padding: KEdgeInsets.h16v8.size, - decoration: BoxDecoration( - borderRadius: KBorderRadius.r16.radius, - color: backgroundColor ?? Colors.black54, - ), - child: icon != null - ? Row( - children: [ - icon!, - const Gap(16), - textWidget, - ], - ) - : textWidget, - ); - } -} - -@riverpod -Toast toast(ToastRef ref, BuildContext context) => Toast(context); diff --git a/lib/src/utils/misc/toast/toast.g.dart b/lib/src/utils/misc/toast/toast.g.dart deleted file mode 100644 index 7cc4d9f1..00000000 --- a/lib/src/utils/misc/toast/toast.g.dart +++ /dev/null @@ -1,157 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'toast.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$toastHash() => r'6bc9df511e9180eea4d509e57fdd4eed4c062779'; - -/// Copied from Dart SDK -class _SystemHash { - _SystemHash._(); - - static int combine(int hash, int value) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + value); - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x0007ffff & hash) << 10)); - return hash ^ (hash >> 6); - } - - static int finish(int hash) { - // ignore: parameter_assignments - hash = 0x1fffffff & (hash + ((0x03ffffff & hash) << 3)); - // ignore: parameter_assignments - hash = hash ^ (hash >> 11); - return 0x1fffffff & (hash + ((0x00003fff & hash) << 15)); - } -} - -/// See also [toast]. -@ProviderFor(toast) -const toastProvider = ToastFamily(); - -/// See also [toast]. -class ToastFamily extends Family { - /// See also [toast]. - const ToastFamily(); - - /// See also [toast]. - ToastProvider call( - BuildContext context, - ) { - return ToastProvider( - context, - ); - } - - @override - ToastProvider getProviderOverride( - covariant ToastProvider provider, - ) { - return call( - provider.context, - ); - } - - static const Iterable? _dependencies = null; - - @override - Iterable? get dependencies => _dependencies; - - static const Iterable? _allTransitiveDependencies = null; - - @override - Iterable? get allTransitiveDependencies => - _allTransitiveDependencies; - - @override - String? get name => r'toastProvider'; -} - -/// See also [toast]. -class ToastProvider extends AutoDisposeProvider { - /// See also [toast]. - ToastProvider( - BuildContext context, - ) : this._internal( - (ref) => toast( - ref as ToastRef, - context, - ), - from: toastProvider, - name: r'toastProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') - ? null - : _$toastHash, - dependencies: ToastFamily._dependencies, - allTransitiveDependencies: ToastFamily._allTransitiveDependencies, - context: context, - ); - - ToastProvider._internal( - super._createNotifier, { - required super.name, - required super.dependencies, - required super.allTransitiveDependencies, - required super.debugGetCreateSourceHash, - required super.from, - required this.context, - }) : super.internal(); - - final BuildContext context; - - @override - Override overrideWith( - Toast Function(ToastRef provider) create, - ) { - return ProviderOverride( - origin: this, - override: ToastProvider._internal( - (ref) => create(ref as ToastRef), - from: from, - name: null, - dependencies: null, - allTransitiveDependencies: null, - debugGetCreateSourceHash: null, - context: context, - ), - ); - } - - @override - AutoDisposeProviderElement createElement() { - return _ToastProviderElement(this); - } - - @override - bool operator ==(Object other) { - return other is ToastProvider && other.context == context; - } - - @override - int get hashCode { - var hash = _SystemHash.combine(0, runtimeType.hashCode); - hash = _SystemHash.combine(hash, context.hashCode); - - return _SystemHash.finish(hash); - } -} - -mixin ToastRef on AutoDisposeProviderRef { - /// The parameter `context` of this provider. - BuildContext get context; -} - -class _ToastProviderElement extends AutoDisposeProviderElement - with ToastRef { - _ToastProviderElement(super.provider); - - @override - BuildContext get context => (origin as ToastProvider).context; -} -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/utils/mixin/shared_preferences_client_mixin.dart b/lib/src/utils/mixin/shared_preferences_client_mixin.dart deleted file mode 100644 index 8b631727..00000000 --- a/lib/src/utils/mixin/shared_preferences_client_mixin.dart +++ /dev/null @@ -1,135 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:convert'; - -import 'package:riverpod_annotation/riverpod_annotation.dart'; -import 'package:shared_preferences/shared_preferences.dart'; - -import '../../constants/db_keys.dart'; -import '../../global_providers/global_providers.dart'; -import '../extensions/custom_extensions.dart'; - -/// [SharedPreferenceClientMixin] is a mixin to add [_get] and [update] functions to -/// the provider. -/// -/// * Remember to use [ initialize ] function to assign [_key], [_client] -/// in [build] function of provider. -/// -/// * optionally provide [_initial] for giving initial value to the [_key]. -/// -/// * [T] should not be a Nullable Type. -mixin SharedPreferenceClientMixin { - late final String _key; - late final SharedPreferences _client; - late final T? _initial; - set state(T? newState); - T? get state; - late final dynamic Function(T)? _toJson; - late final T? Function(dynamic)? _fromJson; - AutoDisposeNotifierProviderRef get ref; - - T? initialize( - DBKeys key, { - T? initial, - dynamic Function(T)? toJson, - T? Function(dynamic)? fromJson, - }) { - _client = ref.watch(sharedPreferencesProvider); - _key = key.name; - _initial = initial ?? key.initial; - _toJson = toJson; - _fromJson = fromJson; - _persistenceRefreshLogic(ref); - return _get ?? _initial; - } - - void update(T? value) => state = value; - - void updateWithPreviousState(T? Function(T?) operation) => - state = operation(state); - - T? get _get { - final value = _client.get(_key); - if (_fromJson != null) { - return _fromJson!(jsonDecode(value.toString())); - } - if (value != null && value is List) { - // if value is List then the only possible type is List - // as SharedPreferences only saves List type. - // casting it to List and then to T? to - // avoid comparing List with T?. - return value.map((e) => e.toString()).toList() as T?; - } - return value is T? ? value : _initial; - } - - void _persistenceRefreshLogic(AutoDisposeNotifierProviderRef ref) => - ref.listenSelf((_, next) => _set(next)); - - Future _set(T? value) async { - if (value == null) return _client.remove(_key); - if (_toJson != null) { - _client.setString(_key, jsonEncode(_toJson!(value))); - } - if (value is bool) { - return await _client.setBool(_key, value); - } else if (value is double) { - return await _client.setDouble(_key, value); - } else if (value is int) { - return await _client.setInt(_key, value); - } else if (value is String) { - return await _client.setString(_key, value); - } else if (value is List) { - return await _client.setStringList(_key, value); - } - return false; - } -} - -/// [SharedPreferenceEnumClientMixin] is a mixin to add [get] and [update] functions to -/// the provider. -/// -/// * Remember to initialize [_key], [_client], [_enumList] in [build] function of provider -/// * optionally provide [_initial] for giving initial value to the [_key]. -mixin SharedPreferenceEnumClientMixin { - late String _key; - late SharedPreferences _client; - T? _initial; - late List _enumList; - set state(T? newState); - AutoDisposeNotifierProviderRef get ref; - - T? initialize(DBKeys key, {required List enumList}) { - _client = ref.watch(sharedPreferencesProvider); - _key = key.name; - _initial = key.initial; - _enumList = enumList; - _persistenceRefreshLogic(ref); - return _get; - } - - void update(T? value) => state = value; - - T? _getEnumFromIndex(int? value) => - value.liesBetween(upper: _enumList.length - 1) - ? _enumList[value!] - : _initial; - - T? get _get => _getEnumFromIndex(_client.getInt(_key)); - - Future _set(int? value) { - if (value == null) return _client.remove(_key); - return _client.setInt(_key, value); - } - - void _persistenceRefreshLogic(AutoDisposeNotifierProviderRef ref) => - ref.listenSelf( - (_, next) => _set( - next == null ? null : _enumList.indexOf(next), - ), - ); -} diff --git a/lib/src/utils/mixin/state_provider_mixin.dart b/lib/src/utils/mixin/state_provider_mixin.dart deleted file mode 100644 index 34e6aaed..00000000 --- a/lib/src/utils/mixin/state_provider_mixin.dart +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -mixin StateProviderMixin { - @protected - set state(State value); - - void update(State state) => this.state = state; -} diff --git a/lib/src/utils/storage/dio/dio_client.dart b/lib/src/utils/storage/dio/dio_client.dart deleted file mode 100644 index 538d4940..00000000 --- a/lib/src/utils/storage/dio/dio_client.dart +++ /dev/null @@ -1,216 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:dio/dio.dart'; -import 'package:flutter/foundation.dart'; - -import '../dio_error_util.dart'; - -typedef ResponseDecoderCallBack = DecoderType Function(dynamic); - -class DioClient { - final Dio dio; - DioClient({required this.dio}); - - /// Handy method to make http GET request - /// - ///{@template dioClient} - /// - [ReturnType] is the expected return type. - /// - [DecoderType] is the return Type of decoder - /// - /// for example: - /// 1. if [ReturnType] is User then [DecoderType] is User. - /// - /// 2. if [ReturnType] is List\ then [DecoderType] is User. - ///{@endtemplate} - /// - Future> get( - String url, { - Map? queryParameters, - ResponseDecoderCallBack? decoder, - Options? options, - CancelToken? cancelToken, - ProgressCallback? onReceiveProgress, - }) => - _handelDecoding( - sendRequest: () => dio.get( - url, - queryParameters: queryParameters, - options: options, - cancelToken: cancelToken, - onReceiveProgress: onReceiveProgress, - ), - decoder: decoder, - ); - - /// Handy method to make http POST request, - /// - /// {@macro dioClient} - Future> post( - String url, { - dynamic data, - Map? queryParameters, - ResponseDecoderCallBack? decoder, - Options? options, - CancelToken? cancelToken, - ProgressCallback? onSendProgress, - ProgressCallback? onReceiveProgress, - }) => - _handelDecoding( - sendRequest: () => dio.post( - url, - data: data, - queryParameters: queryParameters, - options: options, - cancelToken: cancelToken, - onSendProgress: onSendProgress, - onReceiveProgress: onReceiveProgress, - ), - decoder: decoder, - ); - - /// Handy method to make http PATCH request, - /// - /// {@macro dioClient} - Future> patch( - String url, { - dynamic data, - Map? queryParameters, - ResponseDecoderCallBack? decoder, - Options? options, - CancelToken? cancelToken, - ProgressCallback? onSendProgress, - ProgressCallback? onReceiveProgress, - }) => - _handelDecoding( - sendRequest: () => dio.patch( - url, - data: data, - queryParameters: queryParameters, - options: options, - cancelToken: cancelToken, - onSendProgress: onSendProgress, - onReceiveProgress: onReceiveProgress, - ), - decoder: decoder, - ); - - /// Handy method to make http PUT request, - /// - /// {@macro dioClient} - Future?> put( - String url, { - data, - Map? queryParameters, - ResponseDecoderCallBack? decoder, - Options? options, - CancelToken? cancelToken, - ProgressCallback? onSendProgress, - ProgressCallback? onReceiveProgress, - }) => - _handelDecoding( - sendRequest: () => dio.put( - url, - data: data, - queryParameters: queryParameters, - options: options, - cancelToken: cancelToken, - onSendProgress: onSendProgress, - onReceiveProgress: onReceiveProgress, - ), - decoder: decoder, - ); - - /// Handy method to make http DELETE request, - /// - /// {@macro dioClient} - Future> delete( - String url, { - data, - Map? queryParameters, - ResponseDecoderCallBack? decoder, - Options? options, - CancelToken? cancelToken, - }) => - _handelDecoding( - sendRequest: () => dio.delete( - url, - data: data, - queryParameters: queryParameters, - options: options, - cancelToken: cancelToken, - ), - decoder: decoder, - ); - - Future> _handelDecoding({ - required Future Function() sendRequest, - ResponseDecoderCallBack? decoder, - }) async { - try { - final Response response = await sendRequest(); - ReturnType? result; - - if (decoder != null) { - result = await _responseDecoder( - responseData: response.data, - decoder: decoder, - ); - } else if (response.data is ReturnType?) { - result = response.data; - } - - return response.copyWith(data: result); - } on DioException catch (e) { - if (kDebugMode) rethrow; - throw DioErrorUtil.handleError(e); - } catch (e) { - if (kDebugMode) rethrow; - throw "Unexpected error occurred"; - } - } - - Future _responseDecoder({ - required dynamic responseData, - required ResponseDecoderCallBack decoder, - }) async { - if (responseData is List) { - final result = await compute>( - (message) => [for (dynamic e in message) decoder(e)], - responseData, - ); - return result as ReturnType?; - } else { - return await compute, DecoderType>( - decoder, - responseData, - ) as ReturnType?; - } - } -} - -extension ResponseExtensions on Response { - Response copyWith({ - T? data, - Headers? headers, - RequestOptions? requestOptions, - bool? isRedirect, - int? statusCode, - String? statusMessage, - List? redirects, - Map? extra, - }) => - Response( - data: data ?? (this.data is T? ? this.data : null), - headers: headers ?? this.headers, - requestOptions: requestOptions ?? this.requestOptions, - isRedirect: isRedirect ?? this.isRedirect, - statusCode: statusCode ?? this.statusCode, - statusMessage: statusMessage ?? this.statusMessage, - redirects: redirects ?? this.redirects, - extra: extra ?? this.extra, - ); -} diff --git a/lib/src/utils/storage/dio/network_module.dart b/lib/src/utils/storage/dio/network_module.dart deleted file mode 100644 index 6c2d212e..00000000 --- a/lib/src/utils/storage/dio/network_module.dart +++ /dev/null @@ -1,94 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'dart:convert'; - -import 'package:dio/dio.dart'; -import 'package:dio_cache_interceptor/dio_cache_interceptor.dart'; -import 'package:dio_cache_interceptor_hive_store/dio_cache_interceptor_hive_store.dart'; -import 'package:flutter/foundation.dart'; -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../constants/endpoints.dart'; -import '../../../constants/enum.dart'; -import '../../extensions/custom_extensions.dart'; - -part 'network_module.g.dart'; - -// Must be top-level function -_parseAndDecode(String response) { - try { - return jsonDecode(response); - } catch (e) { - return response; - } -} - -parseJson(String text) => compute(_parseAndDecode, text); - -class DioNetworkModule { - Dio provideDio({ - required String baseUrl, - int? port, - bool addPort = true, - required AuthType authType, - HiveCacheStore? hiveCacheStore, - String? credentials, - }) { - final cacheOptions = CacheOptions( - store: hiveCacheStore, - policy: CachePolicy.refreshForceCache, - hitCacheOnErrorExcept: [401, 403], - priority: CachePriority.normal, - maxStale: const Duration(days: 14), - ); - final dio = Dio(); - (dio.transformer as BackgroundTransformer).jsonDecodeCallback = parseJson; - - dio - ..options.baseUrl = Endpoints.baseApi( - baseUrl: baseUrl, - port: port, - addPort: addPort, - ) - ..options.connectTimeout = Endpoints.connectionTimeout - ..options.receiveTimeout = Endpoints.receiveTimeout - ..options.contentType = Headers.jsonContentType - ..options.headers = {'Content-Type': 'application/json; charset=utf-8'} - ..interceptors.add(DioCacheInterceptor(options: cacheOptions)) - ..interceptors.add( - InterceptorsWrapper( - onRequest: (options, handler) { - if (authType == AuthType.basic) { - if (credentials.isNotBlank) { - options.headers.putIfAbsent( - "Authorization", - () => credentials, - ); - } else { - if (kDebugMode) { - debugPrint('credential is null'); - } - } - } - return handler.next(options); - }, - ), - ); - if (kDebugMode) { - dio.interceptors.add(LogInterceptor( - responseBody: true, - requestBody: true, - logPrint: (e) => debugPrint(e.toString()), - )); - } - - return dio; - } -} - -@riverpod -DioNetworkModule networkModule(ref) => DioNetworkModule(); diff --git a/lib/src/utils/storage/dio/network_module.g.dart b/lib/src/utils/storage/dio/network_module.g.dart deleted file mode 100644 index c3d8a442..00000000 --- a/lib/src/utils/storage/dio/network_module.g.dart +++ /dev/null @@ -1,25 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'network_module.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$networkModuleHash() => r'684a8cf88504e7b453fe8b38d8725a49b83d1e98'; - -/// See also [networkModule]. -@ProviderFor(networkModule) -final networkModuleProvider = AutoDisposeProvider.internal( - networkModule, - name: r'networkModuleProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$networkModuleHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef NetworkModuleRef = AutoDisposeProviderRef; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/utils/storage/dio_error_util.dart b/lib/src/utils/storage/dio_error_util.dart deleted file mode 100644 index 882b8fa5..00000000 --- a/lib/src/utils/storage/dio_error_util.dart +++ /dev/null @@ -1,34 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:dio/dio.dart'; - -class DioErrorUtil { - // general methods:------------------------------------------------------------ - /// Handles error for Dio Class - static String handleError(DioException? error) { - String errorDescription = ""; - if (error is DioException) { - errorDescription = switch (error.type) { - DioExceptionType.cancel => "Request cancelled", - DioExceptionType.connectionTimeout => "Connection timeout", - DioExceptionType.unknown => "Check your Internet Connection", - DioExceptionType.receiveTimeout => "Receive timeout", - DioExceptionType.badResponse => (error.response?.statusCode) != null - ? "Received invalid status code: ${error.response?.statusCode}" - : "Something went wrong!", - DioExceptionType.sendTimeout => "Send timeout", - DioExceptionType.badCertificate => - "Check your Internet Connection (Incorrect certificate )", - DioExceptionType.connectionError => - "Check your Internet Connection (Check server IP in settings)" - }; - } else { - errorDescription = "Unexpected error occurred"; - } - return errorDescription; - } -} diff --git a/lib/src/widgets/async_buttons/async_checkbox_list_tile.dart b/lib/src/widgets/async_buttons/async_checkbox_list_tile.dart deleted file mode 100644 index 5684a774..00000000 --- a/lib/src/widgets/async_buttons/async_checkbox_list_tile.dart +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; - -import '../../utils/extensions/custom_extensions.dart'; - -class AsyncCheckboxListTile extends HookWidget { - const AsyncCheckboxListTile({ - super.key, - required this.value, - this.onChanged, - required this.title, - }); - - final bool value; - final ValueChanged? onChanged; - final Widget title; - @override - Widget build(BuildContext context) { - final localValue = useState(value); - useEffect(() { - localValue.value = value; - return null; - }, [value]); - return CheckboxListTile( - value: localValue.value, - onChanged: onChanged != null - ? (val) { - localValue.value = (val.ifNull()); - onChanged!(val.ifNull()); - } - : null, - title: title, - ); - } -} diff --git a/lib/src/widgets/async_buttons/async_text_button.dart b/lib/src/widgets/async_buttons/async_text_button.dart deleted file mode 100644 index 4bddb8d3..00000000 --- a/lib/src/widgets/async_buttons/async_text_button.dart +++ /dev/null @@ -1,40 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/foundation.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; - -import '../custom_circular_progress_indicator.dart'; - -class AsyncTextButton extends HookWidget { - const AsyncTextButton({ - super.key, - required this.onPressed, - required this.child, - required this.icon, - }); - - final AsyncCallback? onPressed; - final Widget child; - final Widget icon; - - @override - Widget build(BuildContext context) { - final isLoading = useState(false); - return TextButton.icon( - onPressed: (!isLoading.value && onPressed != null) - ? () async { - isLoading.value = (true); - await onPressed!(); - isLoading.value = (false); - } - : null, - icon: isLoading.value ? const SizedBox.shrink() : icon, - label: isLoading.value ? const MiniCircularProgressIndicator() : child, - ); - } -} diff --git a/lib/src/widgets/async_buttons/async_text_button_icon.dart b/lib/src/widgets/async_buttons/async_text_button_icon.dart deleted file mode 100644 index bf7ec264..00000000 --- a/lib/src/widgets/async_buttons/async_text_button_icon.dart +++ /dev/null @@ -1,55 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; - -class AsyncTextButtonIcon extends HookWidget { - const AsyncTextButtonIcon({ - super.key, - required this.isPrimary, - this.onPressed, - required this.primaryIcon, - required this.primaryLabel, - this.primaryStyle, - this.secondaryIcon, - this.secondaryLabel, - this.secondaryStyle, - }); - - final bool isPrimary; - final VoidCallback? onPressed; - final Widget primaryIcon; - final Widget primaryLabel; - final Widget? secondaryIcon; - final Widget? secondaryLabel; - final ButtonStyle? primaryStyle; - final ButtonStyle? secondaryStyle; - - @override - Widget build(BuildContext context) { - final isLocalPrimary = useState(isPrimary); - useEffect(() { - isLocalPrimary.value = isPrimary; - return null; - }, [isPrimary]); - return TextButton.icon( - style: isLocalPrimary.value ? primaryStyle : secondaryStyle, - onPressed: onPressed != null - ? () { - isLocalPrimary.value = (!isLocalPrimary.value); - onPressed!(); - } - : null, - icon: (secondaryIcon != null && !isLocalPrimary.value) - ? secondaryIcon! - : primaryIcon, - label: (secondaryLabel != null && !isLocalPrimary.value) - ? secondaryLabel! - : primaryLabel, - ); - } -} diff --git a/lib/src/widgets/custom_checkbox_list_tile.dart b/lib/src/widgets/custom_checkbox_list_tile.dart deleted file mode 100644 index abf7c26c..00000000 --- a/lib/src/widgets/custom_checkbox_list_tile.dart +++ /dev/null @@ -1,38 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../utils/extensions/custom_extensions.dart'; - -class CustomCheckboxListTile> - extends ConsumerWidget { - const CustomCheckboxListTile({ - super.key, - required this.title, - required this.provider, - required this.onChanged, - this.tristate = true, - }); - final String title; - final AutoDisposeNotifierProvider provider; - final ValueChanged onChanged; - final bool tristate; - @override - Widget build(BuildContext context, WidgetRef ref) { - final val = ref.watch(provider); - return CheckboxListTile( - controlAffinity: ListTileControlAffinity.leading, - activeColor: context.theme.indicatorColor, - value: tristate ? val : val.ifNull(true), - title: Text(title), - tristate: tristate, - onChanged: onChanged, - ); - } -} diff --git a/lib/src/widgets/custom_circular_progress_indicator.dart b/lib/src/widgets/custom_circular_progress_indicator.dart deleted file mode 100644 index 93b9c542..00000000 --- a/lib/src/widgets/custom_circular_progress_indicator.dart +++ /dev/null @@ -1,63 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:shimmer/shimmer.dart'; - -import '../constants/app_sizes.dart'; -import '../constants/gen/assets.gen.dart'; -import '../utils/extensions/custom_extensions.dart'; - -class CenterSorayomiShimmerIndicator extends StatelessWidget { - const CenterSorayomiShimmerIndicator({super.key, this.value}); - - final double? value; - @override - Widget build(BuildContext context) => Center( - child: SizedBox( - height: context.height * .35, - width: context.width * .35, - child: const SorayomiShimmerIndicator(), - ), - ); -} - -class SorayomiShimmerIndicator extends StatelessWidget { - const SorayomiShimmerIndicator({super.key}); - - @override - Widget build(BuildContext context) { - return Shimmer.fromColors( - baseColor: context.colorScheme.background, - highlightColor: context.theme.indicatorColor, - child: ImageIcon(AssetImage(Assets.icons.darkIcon.path)), - ); - } -} - -class MiniCircularProgressIndicator extends StatelessWidget { - const MiniCircularProgressIndicator({ - super.key, - this.color, - this.value, - this.padding, - }); - final Color? color; - final double? value; - final EdgeInsetsGeometry? padding; - @override - Widget build(BuildContext context) => Padding( - padding: padding ?? KEdgeInsets.a8.size, - child: SizedBox.square( - dimension: 16, - child: CircularProgressIndicator( - strokeWidth: 3, - color: color, - value: value, - ), - ), - ); -} diff --git a/lib/src/widgets/emoticons.dart b/lib/src/widgets/emoticons.dart deleted file mode 100644 index 50900175..00000000 --- a/lib/src/widgets/emoticons.dart +++ /dev/null @@ -1,66 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:gap/gap.dart'; - -import '../constants/app_sizes.dart'; -import '../utils/extensions/custom_extensions.dart'; - -const errorFaces = [ - '(・o・;)', - 'Σ(ಠ_ಠ)', - 'ಥ_ಥ', - '(˘・_・˘)', - '(; ̄Д ̄)', - '(・Д・。', -]; - -class Emoticons extends HookWidget { - const Emoticons({ - super.key, - this.text, - this.button, - this.iconData, - }); - final String? text; - final IconData? iconData; - final Widget? button; - - @override - Widget build(BuildContext context) { - final errorFace = useMemoized(() => errorFaces.getRandom!); - return Padding( - padding: KEdgeInsets.a8.size, - child: Center( - child: Column( - mainAxisSize: MainAxisSize.min, - mainAxisAlignment: MainAxisAlignment.center, - children: [ - iconData != null - ? Icon(iconData, size: context.height * .2) - : Text( - errorFace, - textAlign: TextAlign.center, - style: context.textTheme.displayMedium, - ), - const Gap(16), - if (text.isNotBlank) - Text( - text!, - textAlign: TextAlign.center, - style: context.textTheme.titleMedium, - overflow: TextOverflow.ellipsis, - maxLines: 3, - ), - if (button != null) button!, - ], - ), - ), - ); - } -} diff --git a/lib/src/widgets/manga_cover/grid/manga_cover_grid_tile.dart b/lib/src/widgets/manga_cover/grid/manga_cover_grid_tile.dart deleted file mode 100644 index b7dced7a..00000000 --- a/lib/src/widgets/manga_cover/grid/manga_cover_grid_tile.dart +++ /dev/null @@ -1,124 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../../../constants/app_sizes.dart'; -import '../../../constants/gen/assets.gen.dart'; -import '../../../features/manga_book/domain/manga/manga_model.dart'; -import '../../../features/manga_book/presentation/manga_thumbnail_viewer/manga_thumbnail_viewer.dart'; -import '../../../utils/extensions/custom_extensions.dart'; -import '../../server_image.dart'; -import '../widgets/manga_badges.dart'; - -class MangaCoverGridTile extends StatelessWidget { - const MangaCoverGridTile({ - super.key, - required this.manga, - this.onPressed, - this.onLongPress, - this.showTitle = true, - this.showBadges = true, - this.showCountBadges = false, - this.showDarkOverlay = true, - }); - final Manga manga; - final VoidCallback? onPressed; - final VoidCallback? onLongPress; - final bool showCountBadges; - final bool showTitle; - final bool showBadges; - final bool showDarkOverlay; - @override - Widget build(BuildContext context) { - return InkResponse( - onTap: onPressed ?? - () => Navigator.push( - context, - PageRouteBuilder( - fullscreenDialog: true, - opaque: false, - pageBuilder: (context, _, __) => MangaThumbnailViewer( - imageUrl: manga.thumbnailUrl ?? "", - ), - transitionsBuilder: - (context, animation, secondaryAnimation, child) { - const begin = Offset(-1.0, 0.0); - const end = Offset.zero; - const curve = Curves.ease; - - final tween = Tween(begin: begin, end: end); - final curvedAnimation = CurvedAnimation( - parent: animation, - curve: curve, - ); - - return SlideTransition( - position: tween.animate(curvedAnimation), - child: child, - ); - }, - ), - ), - onLongPress: onLongPress, - child: Card( - clipBehavior: Clip.antiAlias, - shape: RoundedRectangleBorder(borderRadius: KBorderRadius.r12.radius), - child: GridTile( - header: showBadges - ? MangaBadgesRow(manga: manga, showCountBadges: showCountBadges) - : null, - footer: showTitle - ? ListTile( - contentPadding: const EdgeInsets.symmetric(horizontal: 8), - dense: true, - title: Text( - (manga.title ?? manga.author ?? ""), - overflow: TextOverflow.ellipsis, - maxLines: 2, - ), - ) - : null, - child: manga.thumbnailUrl.isNotBlank - ? Container( - foregroundDecoration: BoxDecoration( - border: Border.all( - width: 0, - color: context.theme.canvasColor, - ), - boxShadow: showDarkOverlay - ? [ - BoxShadow( - color: context.theme.canvasColor.withOpacity(.5), - ) - ] - : null, - gradient: showTitle - ? LinearGradient( - begin: Alignment.center, - end: Alignment.bottomCenter, - colors: [ - context.theme.canvasColor.withOpacity(0), - context.theme.canvasColor.withOpacity(0.4), - context.theme.canvasColor.withOpacity(0.9), - ], - ) - : null, - ), - child: ServerImage(imageUrl: manga.thumbnailUrl ?? ""), - ) - : SizedBox( - height: context.height * .3, - child: ImageIcon( - AssetImage(Assets.icons.darkIcon.path), - size: context.height * .2, - ), - ), - ), - ), - ); - } -} diff --git a/lib/src/widgets/manga_cover/list/manga_cover_descriptive_list_tile.dart b/lib/src/widgets/manga_cover/list/manga_cover_descriptive_list_tile.dart deleted file mode 100644 index 57d65aac..00000000 --- a/lib/src/widgets/manga_cover/list/manga_cover_descriptive_list_tile.dart +++ /dev/null @@ -1,142 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../../../constants/app_sizes.dart'; -import '../../../features/manga_book/domain/manga/manga_model.dart'; - -import '../../../utils/extensions/custom_extensions.dart'; -import '../grid/manga_cover_grid_tile.dart'; -import '../widgets/manga_badges.dart'; -import '../widgets/manga_chips.dart'; - -class MangaCoverDescriptiveListTile extends StatelessWidget { - const MangaCoverDescriptiveListTile({ - super.key, - required this.manga, - this.onPressed, - this.onLongPress, - this.onTitleClicked, - this.showBadges = true, - this.showCountBadges = true, - }); - final Manga manga; - final bool showBadges; - final bool showCountBadges; - final VoidCallback? onPressed; - final VoidCallback? onLongPress; - final ValueChanged? onTitleClicked; - @override - Widget build(BuildContext context) { - final sourceName = - " • ${manga.source?.displayName ?? context.l10n!.unknownSource}"; - return InkWell( - onTap: onPressed, - onLongPress: onLongPress, - child: Padding( - padding: const EdgeInsets.all(8.0), - child: Row( - crossAxisAlignment: CrossAxisAlignment.center, - children: [ - SizedBox( - width: 120, - height: 160, - child: MangaCoverGridTile( - manga: manga, - showBadges: false, - showTitle: false, - showDarkOverlay: false, - ), - ), - Expanded( - flex: 3, - child: Padding( - padding: const EdgeInsets.all(8.0), - child: Column( - mainAxisSize: MainAxisSize.min, - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - InkWell( - onTap: onTitleClicked != null - ? () => onTitleClicked!(manga.title) - : null, - child: Text( - (manga.title ?? context.l10n!.unknownManga), - style: context.textTheme.titleLarge, - overflow: TextOverflow.ellipsis, - maxLines: 2, - semanticsLabel: manga.title, - ), - ), - Padding( - padding: const EdgeInsets.symmetric(vertical: 2.0), - child: Text( - manga.author ?? context.l10n!.unknownAuthor, - overflow: TextOverflow.ellipsis, - style: context.textTheme.bodySmall, - ), - ), - Wrap( - crossAxisAlignment: WrapCrossAlignment.center, - children: [ - if (manga.status != null) ...[ - Icon( - manga.status!.icon, - size: 16, - color: context.textTheme.bodySmall?.color, - ), - Text( - " ${manga.status!.toLocale(context)}", - style: context.textTheme.bodySmall, - ), - ], - if (manga.source?.displayName != null) - Text( - sourceName, - style: context.textTheme.bodySmall, - ), - ], - ), - // if (showLastReadChapter) ...[ - // Padding( - // padding: const EdgeInsets.fromLTRB(0, 20, 0, 0), - // child: Text( - // manga.lastChapterRead?.name ?? "", - // overflow: TextOverflow.ellipsis, - // style: context.textTheme.bodySmall, - // ), - // ), - // Padding( - // padding: const EdgeInsets.symmetric(vertical: 2.0), - // child: Text( - // manga.lastReadAt.toDaysAgoFromSeconds ?? "", - // overflow: TextOverflow.ellipsis, - // style: context.textTheme.bodySmall, - // ), - // ), - // ], - if (showBadges) - context.isTablet - ? MangaChipsRow( - manga: manga, - showCountBadges: showCountBadges, - ) - : MangaBadgesRow( - padding: KEdgeInsets.v8.size, - manga: manga, - showCountBadges: showCountBadges, - ), - ], - ), - ), - ), - ], - ), - ), - ); - } -} diff --git a/lib/src/widgets/manga_cover/list/manga_cover_list_tile.dart b/lib/src/widgets/manga_cover/list/manga_cover_list_tile.dart deleted file mode 100644 index e8f7f729..00000000 --- a/lib/src/widgets/manga_cover/list/manga_cover_list_tile.dart +++ /dev/null @@ -1,62 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../../../constants/app_sizes.dart'; -import '../../../features/manga_book/domain/manga/manga_model.dart'; -import '../../server_image.dart'; -import '../widgets/manga_badges.dart'; - -class MangaCoverListTile extends StatelessWidget { - const MangaCoverListTile({ - super.key, - required this.manga, - this.onPressed, - this.onLongPress, - this.showBadges = true, - this.showCountBadges = false, - }); - - final Manga manga; - final VoidCallback? onPressed; - final VoidCallback? onLongPress; - final bool showCountBadges; - final bool showBadges; - @override - Widget build(BuildContext context) { - return InkWell( - onTap: onPressed, - onLongPress: onLongPress, - child: Row( - children: [ - Padding( - padding: KEdgeInsets.a8.size, - child: ClipRRect( - borderRadius: KBorderRadius.r8.radius, - child: ServerImage( - imageUrl: manga.thumbnailUrl ?? "", - size: const Size(60, 80), - ), - ), - ), - Expanded( - child: Padding( - padding: KEdgeInsets.h8.size, - child: Text( - (manga.title ?? manga.author ?? ""), - overflow: TextOverflow.ellipsis, - maxLines: 3, - ), - ), - ), - if (showBadges) - MangaBadgesRow(manga: manga, showCountBadges: showCountBadges), - ], - ), - ); - } -} diff --git a/lib/src/widgets/manga_cover/providers/manga_cover_providers.dart b/lib/src/widgets/manga_cover/providers/manga_cover_providers.dart deleted file mode 100644 index 18b4c5e7..00000000 --- a/lib/src/widgets/manga_cover/providers/manga_cover_providers.dart +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:riverpod_annotation/riverpod_annotation.dart'; - -import '../../../constants/db_keys.dart'; -import '../../../utils/mixin/shared_preferences_client_mixin.dart'; - -part 'manga_cover_providers.g.dart'; - -@riverpod -class DownloadedBadge extends _$DownloadedBadge - with SharedPreferenceClientMixin { - @override - bool? build() => initialize(DBKeys.downloadedBadge); -} - -@riverpod -class UnreadBadge extends _$UnreadBadge with SharedPreferenceClientMixin { - @override - bool? build() => initialize(DBKeys.unreadBadge); -} - -// @riverpod -// class LanguageBadge extends _$LanguageBadge -// with SharedPreferenceClient { -// @override -// bool? build() => initialize( -// -// key: DBKeys.languageBadge.name, -// initial: DBKeys.languageBadge.initial, -// ); -// } diff --git a/lib/src/widgets/manga_cover/providers/manga_cover_providers.g.dart b/lib/src/widgets/manga_cover/providers/manga_cover_providers.g.dart deleted file mode 100644 index c546e7f5..00000000 --- a/lib/src/widgets/manga_cover/providers/manga_cover_providers.g.dart +++ /dev/null @@ -1,41 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -part of 'manga_cover_providers.dart'; - -// ************************************************************************** -// RiverpodGenerator -// ************************************************************************** - -String _$downloadedBadgeHash() => r'c85ad3fe5957c545c2af94e393a463c7ed15a6b3'; - -/// See also [DownloadedBadge]. -@ProviderFor(DownloadedBadge) -final downloadedBadgeProvider = - AutoDisposeNotifierProvider.internal( - DownloadedBadge.new, - name: r'downloadedBadgeProvider', - debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') - ? null - : _$downloadedBadgeHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$DownloadedBadge = AutoDisposeNotifier; -String _$unreadBadgeHash() => r'e69869b4f8a68affd21a3bffccbb7d0577a83043'; - -/// See also [UnreadBadge]. -@ProviderFor(UnreadBadge) -final unreadBadgeProvider = - AutoDisposeNotifierProvider.internal( - UnreadBadge.new, - name: r'unreadBadgeProvider', - debugGetCreateSourceHash: - const bool.fromEnvironment('dart.vm.product') ? null : _$unreadBadgeHash, - dependencies: null, - allTransitiveDependencies: null, -); - -typedef _$UnreadBadge = AutoDisposeNotifier; -// ignore_for_file: type=lint -// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member diff --git a/lib/src/widgets/manga_cover/widgets/manga_badges.dart b/lib/src/widgets/manga_cover/widgets/manga_badges.dart deleted file mode 100644 index 256a2204..00000000 --- a/lib/src/widgets/manga_cover/widgets/manga_badges.dart +++ /dev/null @@ -1,111 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../constants/app_sizes.dart'; -import '../../../features/manga_book/domain/manga/manga_model.dart'; - -import '../../../utils/extensions/custom_extensions.dart'; -import '../providers/manga_cover_providers.dart'; - -class MangaBadgesRow extends ConsumerWidget { - const MangaBadgesRow({ - super.key, - required this.manga, - this.needSpacer = false, - this.showCountBadges = false, - this.padding, - }); - final Manga manga; - final bool needSpacer; - final bool showCountBadges; - final EdgeInsetsGeometry? padding; - @override - Widget build(BuildContext context, WidgetRef ref) { - final downloadedBadge = ref.watch(downloadedBadgeProvider).ifNull(true); - final unreadBadge = ref.watch(unreadBadgeProvider).ifNull(true); - // final languageBadge = ref.watch(languageBadgeProvider) .ifNull(); - return Padding( - padding: padding ?? KEdgeInsets.a8.size, - child: Row( - mainAxisSize: MainAxisSize.min, - children: [ - if (!showCountBadges && manga.inLibrary.ifNull()) - ClipRRect( - borderRadius: KBorderRadius.r8.radius, - child: MangaBadge( - icon: Icons.collections_bookmark_rounded, - color: context.theme.colorScheme.primary, - textColor: context.theme.colorScheme.onPrimary, - ), - ), - if (showCountBadges) ...[ - ClipRRect( - borderRadius: KBorderRadius.r8.radius, - child: Row( - mainAxisSize: MainAxisSize.min, - children: [ - if (manga.unreadCount.isGreaterThan(0) && unreadBadge) - MangaBadge( - text: "${manga.unreadCount.getValueOnNullOrNegative()}", - color: context.theme.colorScheme.primary, - textColor: context.theme.colorScheme.onPrimary, - ), - if (manga.downloadCount.isGreaterThan(0) && downloadedBadge) - MangaBadge( - text: "${manga.downloadCount.getValueOnNullOrNegative()}", - color: context.theme.colorScheme.tertiary, - textColor: context.theme.colorScheme.onTertiary, - ), - ], - ), - ), - if (needSpacer) const Spacer(), - // if ((manga.source?.lang?.code) != null && languageBadge) - // ClipRRect( - // borderRadius: KBorderRadius.r16.radius, - // child: Badge( - // text: manga.source!.lang!.code!, - // color: context.theme.colorScheme.tertiary, - // textColor: context.theme.colorScheme.onTertiary, - // ), - // ) - ], - ], - ), - ); - } -} - -class MangaBadge extends StatelessWidget { - const MangaBadge({ - super.key, - this.text, - this.icon, - required this.color, - required this.textColor, - }) : assert(text != null || icon != null); - final String? text; - final IconData? icon; - final Color color; - final Color textColor; - @override - Widget build(BuildContext context) { - return Card( - margin: EdgeInsets.zero, - color: color, - shape: const RoundedRectangleBorder(), - child: Padding( - padding: KEdgeInsets.a4.size, - child: text.isNotBlank - ? Text(text!, style: TextStyle(color: textColor)) - : Icon(icon, color: textColor, size: 16), - ), - ); - } -} diff --git a/lib/src/widgets/manga_cover/widgets/manga_chips.dart b/lib/src/widgets/manga_cover/widgets/manga_chips.dart deleted file mode 100644 index 78741d8c..00000000 --- a/lib/src/widgets/manga_cover/widgets/manga_chips.dart +++ /dev/null @@ -1,99 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../../../constants/app_sizes.dart'; -import '../../../features/manga_book/domain/manga/manga_model.dart'; -import '../../../utils/extensions/custom_extensions.dart'; -import '../providers/manga_cover_providers.dart'; - -class MangaChipsRow extends ConsumerWidget { - const MangaChipsRow({ - super.key, - required this.manga, - this.showCountBadges = false, - }); - final Manga manga; - final bool showCountBadges; - @override - Widget build(BuildContext context, WidgetRef ref) { - final downloadedBadge = ref.watch(downloadedBadgeProvider).ifNull(true); - final unreadBadge = ref.watch(unreadBadgeProvider).ifNull(true); - // final languageBadge = ref.watch(languageBadgeProvider) .ifNull())); - return Padding( - padding: KEdgeInsets.v8.size, - child: Wrap( - children: [ - if (!showCountBadges && (manga.inLibrary.ifNull())) - MangaChip( - text: context.l10n!.inLibrary, - color: context.theme.colorScheme.primary, - textColor: context.theme.colorScheme.onPrimary, - ), - if (showCountBadges) ...[ - Row( - mainAxisSize: MainAxisSize.min, - children: [ - if (manga.unreadCount.isGreaterThan(0) && unreadBadge) - MangaChip( - text: context.l10n!.nameCountDisplay( - manga.unreadCount.getValueOnNullOrNegative(), - context.l10n!.unread, - ), - color: context.theme.colorScheme.primary, - textColor: context.theme.colorScheme.onPrimary, - ), - if (manga.downloadCount.isGreaterThan(0) && downloadedBadge) - MangaChip( - text: context.l10n!.nameCountDisplay( - manga.downloadCount.getValueOnNullOrNegative(), - context.l10n!.downloaded, - ), - color: context.theme.colorScheme.tertiary, - textColor: context.theme.colorScheme.onTertiary, - ), - ], - ), - // if ((manga.source?.lang?.code) != null && languageBadge) - // ClipRRect( - // borderRadius: KBorderRadius.r16.radius, - // child: Badge( - // text: manga.source!.lang!.code!, - // color: context.theme.colorScheme.tertiary, - // textColor: context.theme.colorScheme.onTertiary, - // ), - // ) - ], - ], - ), - ); - } -} - -class MangaChip extends StatelessWidget { - const MangaChip({ - super.key, - required this.text, - required this.color, - required this.textColor, - }); - final String text; - final Color color; - final Color textColor; - @override - Widget build(BuildContext context) { - return Padding( - padding: KEdgeInsets.ol4.size, - child: Chip( - label: Text(text), - labelStyle: TextStyle(color: textColor), - backgroundColor: color, - ), - ); - } -} diff --git a/lib/src/widgets/multi_select_popup.dart b/lib/src/widgets/multi_select_popup.dart deleted file mode 100644 index ff88be4d..00000000 --- a/lib/src/widgets/multi_select_popup.dart +++ /dev/null @@ -1,138 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; - -import '../constants/app_sizes.dart'; -import '../utils/extensions/custom_extensions.dart'; -import 'pop_button.dart'; - -class MultiSelectPopup extends HookWidget { - const MultiSelectPopup({ - super.key, - required this.title, - required this.optionList, - required this.values, - required this.onChange, - this.getOptionTitle, - this.getOptionSubtitle, - }); - - final String title; - final List optionList; - final List values; - final ValueChanged> onChange; - final String Function(T)? getOptionTitle; - final String Function(T)? getOptionSubtitle; - - Map getSelectedValuesFromOptions() { - return { - for (var item in optionList) item: values.contains(item), - }; - } - - @override - Widget build(BuildContext context) { - final selectedValues = - useState>(getSelectedValuesFromOptions()); - useEffect(() { - selectedValues.value = (getSelectedValuesFromOptions()); - return null; - }, [values, optionList]); - return AlertDialog( - contentPadding: KEdgeInsets.v8.size, - title: Text(title), - content: CheckboxSelectList( - values: selectedValues.value, - onChange: (value) { - final multiSelectMap = selectedValues.value; - multiSelectMap[value.key] = value.value; - selectedValues.value = multiSelectMap; - }, - getTitle: getOptionTitle, - getSubtitle: getOptionSubtitle, - ), - actions: [ - const PopButton(), - ElevatedButton( - onPressed: () { - final multiSelectMap = selectedValues.value; - final selected = multiSelectMap.keys - .where((key) => multiSelectMap[key].ifNull()) - .toList(); - onChange(selected); - }, - child: Text(context.l10n!.save), - ) - ], - ); - } -} - -class CheckboxSelectList extends StatefulWidget { - const CheckboxSelectList({ - super.key, - required this.values, - required this.onChange, - this.getTitle, - this.getSubtitle, - }); - - final Map values; - final ValueChanged> onChange; - final String Function(T)? getTitle; - final String Function(T)? getSubtitle; - - @override - State> createState() => _CheckboxSelectListState(); -} - -class _CheckboxSelectListState extends State> { - Widget getCheckboxListTile( - BuildContext context, - MapEntry value, - ValueChanged onChange, - ) { - return CheckboxListTile( - key: Key(value.key.hashCode.toString()), - activeColor: context.theme.indicatorColor, - title: Text( - widget.getTitle?.call(value.key) ?? value.toString(), - ), - subtitle: widget.getSubtitle != null - ? Text(widget.getSubtitle!(value.key)) - : null, - value: value.value, - onChanged: (value) { - onChange(value.ifNull()); - }, - ); - } - - @override - Widget build(BuildContext context) { - return ConstrainedBox( - constraints: BoxConstraints(maxHeight: context.height * .7), - child: SingleChildScrollView( - child: Column( - mainAxisSize: MainAxisSize.min, - children: widget.values.entries - .map((e) => getCheckboxListTile( - context, - e, - (value) { - setState(() { - widget.onChange(MapEntry(e.key, value)); - }); - }, - )) - .toList(), - ), - ), - ); - } -} diff --git a/lib/src/widgets/pop_button.dart b/lib/src/widgets/pop_button.dart deleted file mode 100644 index eea34d55..00000000 --- a/lib/src/widgets/pop_button.dart +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../utils/extensions/custom_extensions.dart'; - -class PopButton extends StatelessWidget { - const PopButton({super.key, this.popText}); - final String? popText; - @override - Widget build(BuildContext context) { - return TextButton( - onPressed: () => Navigator.pop(context), - child: Text(popText ?? context.l10n!.cancel), - ); - } -} diff --git a/lib/src/widgets/radio_list_popup.dart b/lib/src/widgets/radio_list_popup.dart deleted file mode 100644 index 82e8a572..00000000 --- a/lib/src/widgets/radio_list_popup.dart +++ /dev/null @@ -1,94 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../constants/app_sizes.dart'; -import '../utils/extensions/custom_extensions.dart'; -import 'pop_button.dart'; - -class RadioListPopup extends StatelessWidget { - const RadioListPopup({ - super.key, - required this.title, - required this.optionList, - required this.value, - required this.onChange, - this.getOptionTitle, - this.getOptionSubtitle, - }); - - final String title; - final List optionList; - final T value; - final ValueChanged onChange; - final String Function(T)? getOptionTitle; - final String Function(T)? getOptionSubtitle; - - @override - Widget build(BuildContext context) { - return AlertDialog( - contentPadding: KEdgeInsets.v8.size, - title: Text(title), - content: RadioList( - optionList: optionList, - value: value, - onChange: onChange, - getTitle: getOptionTitle, - getSubtitle: getOptionSubtitle, - ), - actions: const [PopButton()], - ); - } -} - -class RadioList extends StatelessWidget { - const RadioList({ - super.key, - required this.optionList, - required this.value, - required this.onChange, - this.getTitle, - this.getSubtitle, - }); - - final List optionList; - final T value; - final ValueChanged onChange; - final String Function(T)? getTitle; - final String Function(T)? getSubtitle; - - Widget getRadioListTile(BuildContext context, T option) { - return RadioListTile( - activeColor: context.theme.indicatorColor, - title: Text( - getTitle?.call(option) ?? option.toString(), - ), - subtitle: getSubtitle != null ? (Text(getSubtitle!(option))) : null, - value: option, - groupValue: value, - onChanged: (value) { - if (value != null) { - onChange(value); - } - }, - ); - } - - @override - Widget build(BuildContext context) { - return ConstrainedBox( - constraints: BoxConstraints(maxHeight: context.height * .7), - child: SingleChildScrollView( - child: Column( - mainAxisSize: MainAxisSize.min, - children: - optionList.map((e) => getRadioListTile(context, e)).toList(), - ), - ), - ); - } -} diff --git a/lib/src/widgets/search_field.dart b/lib/src/widgets/search_field.dart deleted file mode 100644 index 4630118f..00000000 --- a/lib/src/widgets/search_field.dart +++ /dev/null @@ -1,65 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; - -import '../constants/app_sizes.dart'; - -import '../utils/extensions/custom_extensions.dart'; - -class SearchField extends HookWidget { - const SearchField({ - super.key, - this.onChanged, - this.onClose, - this.initialText, - this.onSubmitted, - this.hintText, - this.autofocus = true, - }); - final String? hintText; - final String? initialText; - final ValueChanged? onChanged; - final ValueChanged? onSubmitted; - final VoidCallback? onClose; - final bool autofocus; - - @override - Widget build(BuildContext context) { - final controller = useTextEditingController(text: initialText); - - final closeIcon = onClose != null - ? IconButton( - onPressed: () { - onClose?.call(); - onChanged?.call(null); - onSubmitted?.call(null); - }, - icon: const Icon(Icons.close_rounded), - ) - : null; - - return SizedBox( - width: context.isLargeTablet ? context.widthScale(scale: .3) : null, - child: Padding( - padding: KEdgeInsets.h16v8.size, - child: TextField( - onChanged: onChanged, - autofocus: autofocus, - controller: controller, - onSubmitted: onSubmitted, - decoration: InputDecoration( - isDense: true, - border: const OutlineInputBorder(), - labelText: hintText ?? context.l10n!.search, - suffixIcon: closeIcon, - ), - ), - ), - ); - } -} diff --git a/lib/src/widgets/server_image.dart b/lib/src/widgets/server_image.dart deleted file mode 100644 index 4a494e4a..00000000 --- a/lib/src/widgets/server_image.dart +++ /dev/null @@ -1,172 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:cached_network_image/cached_network_image.dart'; -import 'package:cached_network_image_platform_interface/cached_network_image_platform_interface.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter_cache_manager/flutter_cache_manager.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; -import 'package:gap/gap.dart'; -import 'package:hooks_riverpod/hooks_riverpod.dart'; - -import '../constants/app_sizes.dart'; -import '../constants/endpoints.dart'; -import '../constants/enum.dart'; -import '../features/settings/presentation/server/widget/credential_popup/credentials_popup.dart'; -import '../features/settings/widgets/server_port_tile/server_port_tile.dart'; -import '../features/settings/widgets/server_url_tile/server_url_tile.dart'; -import '../global_providers/global_providers.dart'; -import '../utils/extensions/custom_extensions.dart'; -import '../utils/misc/app_utils.dart'; -import 'custom_circular_progress_indicator.dart'; - -class ServerImage extends HookConsumerWidget { - const ServerImage({ - super.key, - required this.imageUrl, - this.size, - this.fit, - this.appendApiToUrl = false, - this.progressIndicatorBuilder, - this.wrapper, - this.showReloadButton = false, - }); - - final String imageUrl; - final Size? size; - final BoxFit? fit; - final bool appendApiToUrl; - final Widget Function(BuildContext, String, DownloadProgress)? - progressIndicatorBuilder; - final Widget Function(Widget child)? wrapper; - final bool showReloadButton; - - @override - Widget build(BuildContext context, WidgetRef ref) { - final key = useState(UniqueKey()); - // Providers - final authType = ref.watch(authTypeKeyProvider); - final basicToken = ref.watch(credentialsProvider); - - final baseApi = "${Endpoints.baseApi( - baseUrl: ref.watch(serverUrlProvider), - port: ref.watch(serverPortProvider), - addPort: ref.watch(serverPortToggleProvider).ifNull(), - appendApiToUrl: appendApiToUrl, - )}" - "$imageUrl"; - - final Map? httpHeaders = - (authType == AuthType.basic && basicToken != null) - ? ({"Authorization": basicToken}) - : null; - - final ImageRenderMethodForWeb renderMethod; - if (authType == AuthType.basic && basicToken != null) { - renderMethod = ImageRenderMethodForWeb.HttpGet; - } else { - renderMethod = ImageRenderMethodForWeb.HtmlImage; - } - - finalProgressIndicatorBuilder( - BuildContext context, String url, DownloadProgress progress) => - AppUtils.wrapIf( - wrapper, - progressIndicatorBuilder?.call(context, url, progress) ?? - const CenterSorayomiShimmerIndicator(), - ); - - Widget errorWidget(BuildContext context, String error, stackTrace) { - if (showReloadButton) { - return AppUtils.wrapIf( - wrapper, - Padding( - padding: KEdgeInsets.a8.size, - child: Center( - child: Column( - mainAxisSize: MainAxisSize.min, - mainAxisAlignment: MainAxisAlignment.center, - children: [ - const Icon( - Icons.broken_image_rounded, - color: Colors.grey, - ), - const Gap(32), - TextButton( - onPressed: () { - key.value = (UniqueKey()); - }, - child: Text(context.l10n!.reload), - ), - ], - ), - ), - ), - ); - } else { - return AppUtils.wrapIf( - wrapper, - const Icon( - Icons.broken_image_rounded, - color: Colors.grey, - ), - ); - } - } - - return CachedNetworkImage( - key: key.value, - imageUrl: baseApi, - height: size?.height, - cacheManager: DefaultCacheManager(), - httpHeaders: httpHeaders, - width: size?.width, - fit: fit ?? BoxFit.cover, - imageRenderMethodForWeb: renderMethod, - progressIndicatorBuilder: finalProgressIndicatorBuilder, - errorWidget: errorWidget, - ); - } -} - -class ServerImageWithCpi extends StatelessWidget { - const ServerImageWithCpi({ - super.key, - required this.url, - required this.outerSize, - required this.innerSize, - required this.isLoading, - }); - final bool isLoading; - final Size outerSize; - final Size innerSize; - final String url; - @override - Widget build(BuildContext context) { - if (isLoading) { - return SizedBox.fromSize( - size: outerSize, - child: Stack( - alignment: AlignmentDirectional.center, - children: [ - const Padding( - padding: EdgeInsets.all(4.0), - child: CircularProgressIndicator(strokeWidth: 2), - ), - ServerImage( - imageUrl: url, - size: innerSize, - progressIndicatorBuilder: (context, url, progress) => - const CenterSorayomiShimmerIndicator(), - ) - ], - ), - ); - } else { - return ServerImage(imageUrl: url, size: outerSize); - } - } -} diff --git a/lib/src/widgets/shell/big_screen_navigation_bar.dart b/lib/src/widgets/shell/big_screen_navigation_bar.dart deleted file mode 100644 index 51db62b5..00000000 --- a/lib/src/widgets/shell/big_screen_navigation_bar.dart +++ /dev/null @@ -1,70 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../../constants/gen/assets.gen.dart'; -import '../../constants/navigation_bar_data.dart'; -import '../../routes/router_config.dart'; -import '../../utils/extensions/custom_extensions.dart'; - -class BigScreenNavigationBar extends StatelessWidget { - const BigScreenNavigationBar({super.key, required this.selectedScreen}); - - final String selectedScreen; - - NavigationRailDestination getNavigationRailDestination( - BuildContext context, NavigationBarData data) { - return NavigationRailDestination( - icon: Icon(data.icon), - label: Text(data.label(context)), - selectedIcon: Icon(data.activeIcon), - ); - } - - @override - Widget build(BuildContext context) { - final Widget leadingIcon; - if (context.isDesktop) { - leadingIcon = TextButton.icon( - onPressed: () => const AboutRoute().push(context), - icon: ImageIcon( - AssetImage(Assets.icons.darkIcon.path), - size: 48, - ), - label: Text(context.l10n!.appTitle), - style: TextButton.styleFrom( - foregroundColor: context.textTheme.bodyLarge?.color, - ), - ); - } else { - leadingIcon = IconButton( - onPressed: () => const AboutRoute().push(context), - icon: ImageIcon( - AssetImage(Assets.icons.darkIcon.path), - size: 48, - ), - ); - } - - return NavigationRail( - useIndicator: true, - elevation: 5, - extended: context.isDesktop, - labelType: context.isDesktop - ? NavigationRailLabelType.none - : NavigationRailLabelType.all, - leading: leadingIcon, - destinations: NavigationBarData.navList - .map( - (e) => getNavigationRailDestination(context, e)) - .toList(), - selectedIndex: NavigationBarData.indexWherePathOrZero(selectedScreen), - onDestinationSelected: (value) => - NavigationBarData.navList[value].go(context), - ); - } -} diff --git a/lib/src/widgets/shell/shell_screen.dart b/lib/src/widgets/shell/shell_screen.dart deleted file mode 100644 index f3d4e66f..00000000 --- a/lib/src/widgets/shell/shell_screen.dart +++ /dev/null @@ -1,85 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; - -import 'package:hooks_riverpod/hooks_riverpod.dart'; -import 'package:pub_semver/pub_semver.dart'; - -import '../../features/about/data/about_repository.dart'; -import '../../features/about/presentation/about/controllers/about_controller.dart'; -import '../../features/about/presentation/about/widget/app_update_dialog.dart'; - -import '../../utils/extensions/custom_extensions.dart'; -import '../../utils/misc/toast/toast.dart'; -import 'big_screen_navigation_bar.dart'; -import 'small_screen_navigation_bar.dart'; - -class ShellScreen extends HookConsumerWidget { - const ShellScreen({ - super.key, - required this.child, - }); - final Widget child; - - Future checkForUpdate({ - required String? title, - required BuildContext context, - required Future> Function() updateCallback, - required Toast toast, - }) async { - final AsyncValue versionResult = await updateCallback(); - toast.close(); - if (context.mounted) { - versionResult.whenOrNull( - data: (version) { - if (version != null) { - appUpdateDialog( - title: title ?? context.l10n!.appTitle, - newRelease: "v${version.canonicalizedVersion}", - context: context, - toast: toast, - ); - } - }, - ); - } - return; - } - - @override - Widget build(BuildContext context, WidgetRef ref) { - useEffect(() { - Future.microtask( - () => checkForUpdate( - title: ref.read(packageInfoProvider).appName, - context: context, - updateCallback: ref.read(aboutRepositoryProvider).checkUpdate, - toast: ref.read(toastProvider(context)), - ), - ); - return; - }, []); - if (context.isTablet) { - return Scaffold( - body: Row( - children: [ - BigScreenNavigationBar(selectedScreen: context.location), - Expanded(child: child), - ], - ), - ); - } else { - return Scaffold( - body: child, - floatingActionButtonLocation: FloatingActionButtonLocation.centerFloat, - bottomNavigationBar: - SmallScreenNavigationBar(selectedScreen: context.location), - ); - } - } -} diff --git a/lib/src/widgets/shell/small_screen_navigation_bar.dart b/lib/src/widgets/shell/small_screen_navigation_bar.dart deleted file mode 100644 index e98a967b..00000000 --- a/lib/src/widgets/shell/small_screen_navigation_bar.dart +++ /dev/null @@ -1,46 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../../constants/navigation_bar_data.dart'; - -class SmallScreenNavigationBar extends StatelessWidget { - const SmallScreenNavigationBar({super.key, required this.selectedScreen}); - - final String selectedScreen; - - NavigationDestination getNavigationDestination( - BuildContext context, NavigationBarData data) { - return NavigationDestination( - icon: Icon(data.icon), - label: data.label(context), - selectedIcon: Icon(data.activeIcon), - tooltip: data.label(context), - ); - } - - @override - Widget build(BuildContext context) { - return NavigationBarTheme( - data: NavigationBarThemeData( - labelTextStyle: MaterialStateProperty.all( - const TextStyle(overflow: TextOverflow.ellipsis), - ), - ), - child: NavigationBar( - selectedIndex: NavigationBarData.indexWherePathOrZero(selectedScreen), - onDestinationSelected: (value) => - NavigationBarData.navList[value].go(context), - destinations: NavigationBarData.navList - .map( - (e) => getNavigationDestination(context, e), - ) - .toList(), - ), - ); - } -} diff --git a/lib/src/widgets/sort_list_tile.dart b/lib/src/widgets/sort_list_tile.dart deleted file mode 100644 index 307566d9..00000000 --- a/lib/src/widgets/sort_list_tile.dart +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright (c) 2022 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; - -import '../utils/extensions/custom_extensions.dart'; - -class SortListTile extends StatelessWidget { - const SortListTile({ - super.key, - required this.ascending, - required this.selected, - required this.onChanged, - required this.onSelected, - this.title, - this.subtitle, - }); - final bool ascending; - final bool selected; - final ValueChanged onChanged; - final VoidCallback onSelected; - final Widget? title; - final Widget? subtitle; - @override - Widget build(BuildContext context) { - IconData icon = - ascending ? Icons.arrow_upward_rounded : Icons.arrow_downward_rounded; - - return ListTile( - leading: selected - ? Icon(icon, color: context.theme.indicatorColor) - : SizedBox(width: context.theme.iconTheme.size), - title: title, - subtitle: subtitle, - onTap: () => selected ? onChanged(!ascending) : onSelected(), - ); - } -} diff --git a/lib/src/widgets/text_field_popup.dart b/lib/src/widgets/text_field_popup.dart deleted file mode 100644 index ab05d073..00000000 --- a/lib/src/widgets/text_field_popup.dart +++ /dev/null @@ -1,73 +0,0 @@ -// Copyright (c) 2023 Contributors to the Suwayomi project -// -// 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/. - -import 'package:flutter/material.dart'; -import 'package:flutter_hooks/flutter_hooks.dart'; - -import '../constants/app_sizes.dart'; -import '../utils/extensions/custom_extensions.dart'; -import 'pop_button.dart'; - -class TextFieldPopup extends HookWidget { - const TextFieldPopup({ - super.key, - required this.title, - required this.onChange, - this.subtitle, - this.initialValue, - }); - - final String title; - final String? subtitle; - final String? initialValue; - final ValueChanged onChange; - - @override - Widget build(BuildContext context) { - final textEditingController = useTextEditingController(text: initialValue); - return AlertDialog( - contentPadding: KEdgeInsets.a16.size, - title: Text(title), - content: Padding( - padding: KEdgeInsets.h8.size, - child: Column( - mainAxisSize: MainAxisSize.min, - children: [ - if (subtitle.isNotBlank) - Padding( - padding: KEdgeInsets.v4.size, - child: Text(subtitle!), - ), - Padding( - padding: KEdgeInsets.v16.size, - child: TextField( - autofocus: true, - onSubmitted: (value) { - onChange(value); - Navigator.pop(context); - }, - controller: textEditingController, - decoration: InputDecoration( - border: const OutlineInputBorder(), - hintText: title, - ), - ), - ), - ], - ), - ), - actions: [ - const PopButton(), - ElevatedButton( - onPressed: () { - onChange(textEditingController.text); - }, - child: Text(context.l10n!.save), - ) - ], - ); - } -} diff --git a/linux/.gitignore b/linux/.gitignore deleted file mode 100644 index d3896c98..00000000 --- a/linux/.gitignore +++ /dev/null @@ -1 +0,0 @@ -flutter/ephemeral diff --git a/linux/CMakeLists.txt b/linux/CMakeLists.txt deleted file mode 100644 index a8267ef2..00000000 --- a/linux/CMakeLists.txt +++ /dev/null @@ -1,138 +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 "tachidesk_sorayomi") -# The unique GTK application identifier for this application. See: -# https://wiki.gnome.org/HowDoI/ChooseApplicationID -set(APPLICATION_ID "com.suwayomi.tachidesk_sorayomi") - -# 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/linux/flutter/CMakeLists.txt b/linux/flutter/CMakeLists.txt deleted file mode 100644 index d5bd0164..00000000 --- a/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/linux/flutter/generated_plugin_registrant.cc b/linux/flutter/generated_plugin_registrant.cc deleted file mode 100644 index f6f23bfe..00000000 --- a/linux/flutter/generated_plugin_registrant.cc +++ /dev/null @@ -1,15 +0,0 @@ -// -// Generated file. Do not edit. -// - -// clang-format off - -#include "generated_plugin_registrant.h" - -#include - -void fl_register_plugins(FlPluginRegistry* registry) { - g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar = - fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin"); - url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar); -} diff --git a/linux/flutter/generated_plugin_registrant.h b/linux/flutter/generated_plugin_registrant.h deleted file mode 100644 index e0f0a47b..00000000 --- a/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/linux/flutter/generated_plugins.cmake b/linux/flutter/generated_plugins.cmake deleted file mode 100644 index f16b4c34..00000000 --- a/linux/flutter/generated_plugins.cmake +++ /dev/null @@ -1,24 +0,0 @@ -# -# Generated file, do not edit. -# - -list(APPEND FLUTTER_PLUGIN_LIST - url_launcher_linux -) - -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/linux/main.cc b/linux/main.cc deleted file mode 100644 index e7c5c543..00000000 --- a/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/linux/my_application.cc b/linux/my_application.cc deleted file mode 100644 index aec1c5ae..00000000 --- a/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, "Tachidesk Sorayomi"); - 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, "Tachidesk Sorayomi"); - } - - 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/linux/my_application.h b/linux/my_application.h deleted file mode 100644 index 72271d5e..00000000 --- a/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/macos/.gitignore b/macos/.gitignore deleted file mode 100644 index 746adbb6..00000000 --- a/macos/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -# Flutter-related -**/Flutter/ephemeral/ -**/Pods/ - -# Xcode-related -**/dgph -**/xcuserdata/ diff --git a/macos/Flutter/Flutter-Debug.xcconfig b/macos/Flutter/Flutter-Debug.xcconfig deleted file mode 100644 index 4b81f9b2..00000000 --- a/macos/Flutter/Flutter-Debug.xcconfig +++ /dev/null @@ -1,2 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" -#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/macos/Flutter/Flutter-Release.xcconfig b/macos/Flutter/Flutter-Release.xcconfig deleted file mode 100644 index 5caa9d15..00000000 --- a/macos/Flutter/Flutter-Release.xcconfig +++ /dev/null @@ -1,2 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" -#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/macos/Flutter/GeneratedPluginRegistrant.swift b/macos/Flutter/GeneratedPluginRegistrant.swift deleted file mode 100644 index 916bd8c6..00000000 --- a/macos/Flutter/GeneratedPluginRegistrant.swift +++ /dev/null @@ -1,22 +0,0 @@ -// -// Generated file. Do not edit. -// - -import FlutterMacOS -import Foundation - -import network_info_plus -import package_info_plus -import path_provider_foundation -import shared_preferences_foundation -import sqflite -import url_launcher_macos - -func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { - NetworkInfoPlusPlugin.register(with: registry.registrar(forPlugin: "NetworkInfoPlusPlugin")) - FPPPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FPPPackageInfoPlusPlugin")) - PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin")) - SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin")) - SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin")) - UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin")) -} diff --git a/macos/Podfile b/macos/Podfile deleted file mode 100644 index 04ed3562..00000000 --- a/macos/Podfile +++ /dev/null @@ -1,43 +0,0 @@ -platform :osx, '10.15' - -# CocoaPods analytics sends network stats synchronously affecting flutter build latency. -ENV['COCOAPODS_DISABLE_STATS'] = 'true' - -project 'Runner', { - 'Debug' => :debug, - 'Profile' => :release, - 'Release' => :release, -} - -def flutter_root - generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'ephemeral', 'Flutter-Generated.xcconfig'), __FILE__) - unless File.exist?(generated_xcode_build_settings_path) - raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure \"flutter pub get\" is executed first" - end - - File.foreach(generated_xcode_build_settings_path) do |line| - matches = line.match(/FLUTTER_ROOT\=(.*)/) - return matches[1].strip if matches - end - raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Flutter-Generated.xcconfig, then run \"flutter pub get\"" -end - -require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) - -flutter_macos_podfile_setup - -target 'Runner' do - use_frameworks! - use_modular_headers! - - flutter_install_all_macos_pods File.dirname(File.realpath(__FILE__)) -end - -post_install do |installer| - installer.pods_project.targets.each do |target| - flutter_additional_macos_build_settings(target) - target.build_configurations.each do |config| - config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '10.15' - end - end -end diff --git a/macos/Podfile.lock b/macos/Podfile.lock deleted file mode 100644 index 749bbfda..00000000 --- a/macos/Podfile.lock +++ /dev/null @@ -1,63 +0,0 @@ -PODS: - - FlutterMacOS (1.0.0) - - FMDB (2.7.5): - - FMDB/standard (= 2.7.5) - - FMDB/standard (2.7.5) - - network_info_plus (0.0.1): - - FlutterMacOS - - package_info_plus (0.0.1): - - FlutterMacOS - - path_provider_foundation (0.0.1): - - Flutter - - FlutterMacOS - - shared_preferences_foundation (0.0.1): - - Flutter - - FlutterMacOS - - sqflite (0.0.2): - - FlutterMacOS - - FMDB (>= 2.7.5) - - url_launcher_macos (0.0.1): - - FlutterMacOS - -DEPENDENCIES: - - FlutterMacOS (from `Flutter/ephemeral`) - - network_info_plus (from `Flutter/ephemeral/.symlinks/plugins/network_info_plus/macos`) - - package_info_plus (from `Flutter/ephemeral/.symlinks/plugins/package_info_plus/macos`) - - path_provider_foundation (from `Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin`) - - shared_preferences_foundation (from `Flutter/ephemeral/.symlinks/plugins/shared_preferences_foundation/darwin`) - - sqflite (from `Flutter/ephemeral/.symlinks/plugins/sqflite/macos`) - - url_launcher_macos (from `Flutter/ephemeral/.symlinks/plugins/url_launcher_macos/macos`) - -SPEC REPOS: - trunk: - - FMDB - -EXTERNAL SOURCES: - FlutterMacOS: - :path: Flutter/ephemeral - network_info_plus: - :path: Flutter/ephemeral/.symlinks/plugins/network_info_plus/macos - package_info_plus: - :path: Flutter/ephemeral/.symlinks/plugins/package_info_plus/macos - path_provider_foundation: - :path: Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin - shared_preferences_foundation: - :path: Flutter/ephemeral/.symlinks/plugins/shared_preferences_foundation/darwin - sqflite: - :path: Flutter/ephemeral/.symlinks/plugins/sqflite/macos - url_launcher_macos: - :path: Flutter/ephemeral/.symlinks/plugins/url_launcher_macos/macos - -SPEC CHECKSUMS: - FlutterMacOS: 8f6f14fa908a6fb3fba0cd85dbd81ec4b251fb24 - FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a - network_info_plus: f4fbc7877ab7b3294500d9441dfa53cd54972d05 - package_info_plus: 02d7a575e80f194102bef286361c6c326e4c29ce - path_provider_foundation: 3784922295ac71e43754bd15e0653ccfd36a147c - shared_preferences_foundation: b4c3b4cddf1c21f02770737f147a3f5da9d39695 - sqflite: a5789cceda41d54d23f31d6de539d65bb14100ea - url_launcher_macos: d2691c7dd33ed713bf3544850a623080ec693d95 - -PODFILE CHECKSUM: dac0ddf03d136db544afc27b87cc6c08492e67b9 - -COCOAPODS: 1.14.3 diff --git a/macos/Runner.xcodeproj/project.pbxproj b/macos/Runner.xcodeproj/project.pbxproj deleted file mode 100644 index c6d22fcc..00000000 --- a/macos/Runner.xcodeproj/project.pbxproj +++ /dev/null @@ -1,632 +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 */ - 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 */; }; - 4688A129176B4CAD9077EE5B /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F69CE2E65DD82F72C58A2E1D /* Pods_Runner.framework */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 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 */ - 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 /* Tachidesk Sorayomi.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Tachidesk Sorayomi.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 = ""; }; - 35303A7776566002C2574CCD /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; }; - 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; }; - 80717BAC3F5560B924C7C3E7 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; }; - 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; }; - C4C0864A133190F7D69BEF45 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; }; - F69CE2E65DD82F72C58A2E1D /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 33CC10EA2044A3C60003C045 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 4688A129176B4CAD9077EE5B /* Pods_Runner.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 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 */, - 33CC10EE2044A3C60003C045 /* Products */, - D73912EC22F37F3D000D13A0 /* Frameworks */, - 3617EF421E9461F56BE412D6 /* Pods */, - ); - sourceTree = ""; - }; - 33CC10EE2044A3C60003C045 /* Products */ = { - isa = PBXGroup; - children = ( - 33CC10ED2044A3C60003C045 /* Tachidesk Sorayomi.app */, - ); - 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 = ""; - }; - 3617EF421E9461F56BE412D6 /* Pods */ = { - isa = PBXGroup; - children = ( - 35303A7776566002C2574CCD /* Pods-Runner.debug.xcconfig */, - 80717BAC3F5560B924C7C3E7 /* Pods-Runner.release.xcconfig */, - C4C0864A133190F7D69BEF45 /* Pods-Runner.profile.xcconfig */, - ); - path = Pods; - sourceTree = ""; - }; - D73912EC22F37F3D000D13A0 /* Frameworks */ = { - isa = PBXGroup; - children = ( - F69CE2E65DD82F72C58A2E1D /* Pods_Runner.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 33CC10EC2044A3C60003C045 /* Runner */ = { - isa = PBXNativeTarget; - buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */; - buildPhases = ( - B2ABE0F0CD9BC8013F160CAD /* [CP] Check Pods Manifest.lock */, - 33CC10E92044A3C60003C045 /* Sources */, - 33CC10EA2044A3C60003C045 /* Frameworks */, - 33CC10EB2044A3C60003C045 /* Resources */, - 33CC110E2044A8840003C045 /* Bundle Framework */, - 3399D490228B24CF009A79C7 /* ShellScript */, - 35B95B845CB74EE50AE76911 /* [CP] Embed Pods Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 33CC11202044C79F0003C045 /* PBXTargetDependency */, - ); - name = Runner; - productName = Runner; - productReference = 33CC10ED2044A3C60003C045 /* Tachidesk Sorayomi.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 33CC10E52044A3C60003C045 /* Project object */ = { - isa = PBXProject; - attributes = { - LastSwiftUpdateCheck = 0920; - LastUpgradeCheck = 1430; - ORGANIZATIONNAME = ""; - TargetAttributes = { - 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 */, - 33CC111A2044C6BA0003C045 /* Flutter Assemble */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 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"; - }; - 35B95B845CB74EE50AE76911 /* [CP] Embed Pods Frameworks */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", - ); - name = "[CP] Embed Pods Frameworks"; - outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; - showEnvVarsInLog = 0; - }; - B2ABE0F0CD9BC8013F160CAD /* [CP] Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", - ); - name = "[CP] Check Pods Manifest.lock"; - outputFileListPaths = ( - ); - outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; - showEnvVarsInLog = 0; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 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 */ - 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 */ - 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.15; - 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.15; - 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.15; - 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 */ - 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/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d98100..00000000 --- a/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme deleted file mode 100644 index 50eff254..00000000 --- a/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/macos/Runner.xcworkspace/contents.xcworkspacedata b/macos/Runner.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 21a3cc14..00000000 --- a/macos/Runner.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d98100..00000000 --- a/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/macos/Runner/AppDelegate.swift b/macos/Runner/AppDelegate.swift deleted file mode 100644 index d53ef643..00000000 --- a/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/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index 96d3fee1..00000000 --- a/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "info": { - "version": 1, - "author": "xcode" - }, - "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" - } - ] -} \ No newline at end of file diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png deleted file mode 100644 index a0df7d3c..00000000 Binary files a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png and /dev/null differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png deleted file mode 100644 index ff2f5be9..00000000 Binary files a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png and /dev/null differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png deleted file mode 100644 index 809a51cd..00000000 Binary files a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png and /dev/null differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png deleted file mode 100644 index ae9bbd6d..00000000 Binary files a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png and /dev/null differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png deleted file mode 100644 index b2da70c2..00000000 Binary files a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png and /dev/null differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png deleted file mode 100644 index 73e7a69b..00000000 Binary files a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png and /dev/null differ diff --git a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png b/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png deleted file mode 100644 index 5b176e08..00000000 Binary files a/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png and /dev/null differ diff --git a/macos/Runner/Base.lproj/MainMenu.xib b/macos/Runner/Base.lproj/MainMenu.xib deleted file mode 100644 index 80e867a4..00000000 --- a/macos/Runner/Base.lproj/MainMenu.xib +++ /dev/null @@ -1,343 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/macos/Runner/Configs/AppInfo.xcconfig b/macos/Runner/Configs/AppInfo.xcconfig deleted file mode 100644 index 5a2fde6d..00000000 --- a/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 = Tachidesk Sorayomi - -// The application's bundle identifier -PRODUCT_BUNDLE_IDENTIFIER = com.suwayomi.tachideskSorayomi - -// The copyright displayed in application information -PRODUCT_COPYRIGHT = Copyright © 2022 com.suwayomi. All rights reserved. diff --git a/macos/Runner/Configs/Debug.xcconfig b/macos/Runner/Configs/Debug.xcconfig deleted file mode 100644 index 36b0fd94..00000000 --- a/macos/Runner/Configs/Debug.xcconfig +++ /dev/null @@ -1,2 +0,0 @@ -#include "../../Flutter/Flutter-Debug.xcconfig" -#include "Warnings.xcconfig" diff --git a/macos/Runner/Configs/Release.xcconfig b/macos/Runner/Configs/Release.xcconfig deleted file mode 100644 index dff4f495..00000000 --- a/macos/Runner/Configs/Release.xcconfig +++ /dev/null @@ -1,2 +0,0 @@ -#include "../../Flutter/Flutter-Release.xcconfig" -#include "Warnings.xcconfig" diff --git a/macos/Runner/Configs/Warnings.xcconfig b/macos/Runner/Configs/Warnings.xcconfig deleted file mode 100644 index 42bcbf47..00000000 --- a/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/macos/Runner/DebugProfile.entitlements b/macos/Runner/DebugProfile.entitlements deleted file mode 100644 index 08c3ab17..00000000 --- a/macos/Runner/DebugProfile.entitlements +++ /dev/null @@ -1,14 +0,0 @@ - - - - - com.apple.security.app-sandbox - - com.apple.security.cs.allow-jit - - com.apple.security.network.server - - com.apple.security.network.client - - - diff --git a/macos/Runner/Info.plist b/macos/Runner/Info.plist deleted file mode 100644 index 6b641fa9..00000000 --- a/macos/Runner/Info.plist +++ /dev/null @@ -1,46 +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 - CFBundleLocalizations - - ar - de - en - es - fr - pt - uk - ko - pt-pt - zh - zh-hans - - - diff --git a/macos/Runner/MainFlutterWindow.swift b/macos/Runner/MainFlutterWindow.swift deleted file mode 100644 index 2722837e..00000000 --- a/macos/Runner/MainFlutterWindow.swift +++ /dev/null @@ -1,15 +0,0 @@ -import Cocoa -import FlutterMacOS - -class MainFlutterWindow: NSWindow { - override func awakeFromNib() { - let flutterViewController = FlutterViewController.init() - let windowFrame = self.frame - self.contentViewController = flutterViewController - self.setFrame(windowFrame, display: true) - - RegisterGeneratedPlugins(registry: flutterViewController) - - super.awakeFromNib() - } -} diff --git a/macos/Runner/Release.entitlements b/macos/Runner/Release.entitlements deleted file mode 100644 index ee95ab7e..00000000 --- a/macos/Runner/Release.entitlements +++ /dev/null @@ -1,10 +0,0 @@ - - - - - com.apple.security.app-sandbox - - com.apple.security.network.client - - - diff --git a/main.dart.js b/main.dart.js new file mode 100644 index 00000000..f7a88440 --- /dev/null +++ b/main.dart.js @@ -0,0 +1,148166 @@ +(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;s4294967295)throw A.c(A.cT(a,0,4294967295,"length",null)) +return J.m1(new Array(a),b)}, +CW(a,b){if(a<0)throw A.c(A.bZ("Length must be a non-negative integer: "+a,null)) +return A.a(new Array(a),b.h("H<0>"))}, +oL(a,b){if(a<0)throw A.c(A.bZ("Length must be a non-negative integer: "+a,null)) +return A.a(new Array(a),b.h("H<0>"))}, +m1(a,b){return J.aHA(A.a(a,b.h("H<0>")))}, +aHA(a){a.fixed$length=Array +return a}, +bsl(a){a.fixed$length=Array +a.immutable$list=Array +return a}, +bJe(a,b){return J.AR(a,b)}, +bsm(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}}, +bsn(a,b){var s,r +for(s=a.length;b0;b=s){s=b-1 +r=a.charCodeAt(s) +if(r!==32&&r!==13&&!J.bsm(r))break}return b}, +hC(a){if(typeof a=="number"){if(Math.floor(a)==a)return J.CX.prototype +return J.Lf.prototype}if(typeof a=="string")return J.qG.prototype +if(a==null)return J.CY.prototype +if(typeof a=="boolean")return J.Ld.prototype +if(Array.isArray(a))return J.H.prototype +if(typeof a!="object"){if(typeof a=="function")return J.oM.prototype +if(typeof a=="symbol")return J.xO.prototype +if(typeof a=="bigint")return J.xN.prototype +return a}if(a instanceof A.C)return a +return J.arb(a)}, +bVk(a){if(typeof a=="number")return J.u1.prototype +if(typeof a=="string")return J.qG.prototype +if(a==null)return a +if(Array.isArray(a))return J.H.prototype +if(typeof a!="object"){if(typeof a=="function")return J.oM.prototype +if(typeof a=="symbol")return J.xO.prototype +if(typeof a=="bigint")return J.xN.prototype +return a}if(a instanceof A.C)return a +return J.arb(a)}, +aj(a){if(typeof a=="string")return J.qG.prototype +if(a==null)return a +if(Array.isArray(a))return J.H.prototype +if(typeof a!="object"){if(typeof a=="function")return J.oM.prototype +if(typeof a=="symbol")return J.xO.prototype +if(typeof a=="bigint")return J.xN.prototype +return a}if(a instanceof A.C)return a +return J.arb(a)}, +ct(a){if(a==null)return a +if(Array.isArray(a))return J.H.prototype +if(typeof a!="object"){if(typeof a=="function")return J.oM.prototype +if(typeof a=="symbol")return J.xO.prototype +if(typeof a=="bigint")return J.xN.prototype +return a}if(a instanceof A.C)return a +return J.arb(a)}, +bVl(a){if(typeof a=="number"){if(Math.floor(a)==a)return J.CX.prototype +return J.Lf.prototype}if(a==null)return a +if(!(a instanceof A.C))return J.pm.prototype +return a}, +bh8(a){if(typeof a=="number")return J.u1.prototype +if(a==null)return a +if(!(a instanceof A.C))return J.pm.prototype +return a}, +byM(a){if(typeof a=="number")return J.u1.prototype +if(typeof a=="string")return J.qG.prototype +if(a==null)return a +if(!(a instanceof A.C))return J.pm.prototype +return a}, +mM(a){if(typeof a=="string")return J.qG.prototype +if(a==null)return a +if(!(a instanceof A.C))return J.pm.prototype +return a}, +c4(a){if(a==null)return a +if(typeof a!="object"){if(typeof a=="function")return J.oM.prototype +if(typeof a=="symbol")return J.xO.prototype +if(typeof a=="bigint")return J.xN.prototype +return a}if(a instanceof A.C)return a +return J.arb(a)}, +f2(a){if(a==null)return a +if(!(a instanceof A.C))return J.pm.prototype +return a}, +bpn(a,b){if(typeof a=="number"&&typeof b=="number")return a+b +return J.bVk(a).U(a,b)}, +j(a,b){if(a==null)return b==null +if(typeof a!="object")return b!=null&&a===b +return J.hC(a).k(a,b)}, +bE1(a,b){if(typeof a=="number"&&typeof b=="number")return a*b +return J.byM(a).av(a,b)}, +bE2(a,b){if(typeof a=="number"&&typeof b=="number")return a-b +return J.bh8(a).a4(a,b)}, +b7(a,b){if(typeof b==="number")if(Array.isArray(a)||typeof a=="string"||A.byY(a,a[v.dispatchPropertyName]))if(b>>>0===b&&b>>0===b&&b0?1:a<0?-1:a +return J.bVl(a).gOv(a)}, +Xh(a){return J.ct(a).gaV(a)}, +bpv(a){return J.c4(a).gq(a)}, +bpw(a){return J.c4(a).gfS(a)}, +bjc(a){return J.c4(a).gaP(a)}, +bpx(a){return J.f2(a).gw4(a)}, +bEp(a){return J.c4(a).gadC(a)}, +bjd(a){return J.c4(a).ghm(a)}, +bpy(a){return J.c4(a).gGD(a)}, +j7(a){return J.c4(a).gis(a)}, +bEq(a){return J.c4(a).gGP(a)}, +lS(a){return J.c4(a).gj(a)}, +bje(a){return J.c4(a).gbp(a)}, +bEr(a,b,c){return J.ct(a).BZ(a,b,c)}, +bjf(a,b){return J.f2(a).cl(a,b)}, +bpz(a,b){return J.f2(a).yk(a,b)}, +bEs(a,b){return J.aj(a).eZ(a,b)}, +bEt(a,b){return J.ct(a).xy(a,b)}, +bjg(a,b,c){return J.ct(a).fB(a,b,c)}, +bEu(a){return J.f2(a).Fu(a)}, +bpA(a){return J.ct(a).q4(a)}, +AS(a,b){return J.ct(a).ck(a,b)}, +bpB(a,b,c){return J.ct(a).q5(a,b,c)}, +bEv(a,b){return J.f2(a).aM9(a,b)}, +cx(a,b,c){return J.ct(a).ik(a,b,c)}, +Xi(a,b,c,d){return J.ct(a).qZ(a,b,c,d)}, +bEw(a,b,c){return J.ct(a).r_(a,b,c)}, +bpC(a,b,c){return J.mM(a).r2(a,b,c)}, +bEx(a,b){return J.hC(a).C(a,b)}, +bEy(a){return J.f2(a).Wp(a)}, +bEz(a){return J.f2(a).ack(a)}, +bEA(a){return J.f2(a).acm(a)}, +bEB(a,b,c,d,e){return J.c4(a).rg(a,b,c,d,e)}, +I2(a,b,c){return J.c4(a).cK(a,b,c)}, +bEC(a){return J.c4(a).i3(a)}, +bED(a,b,c){return J.c4(a).acZ(a,b,c)}, +bEE(a){return J.f2(a).jp(a)}, +bpD(a,b){return J.f2(a).vJ(a,b)}, +I3(a){return J.ct(a).en(a)}, +pW(a,b){return J.ct(a).E(a,b)}, +bEF(a,b,c,d){return J.c4(a).ad6(a,b,c,d)}, +bEG(a){return J.ct(a).h5(a)}, +bEH(a,b){return J.c4(a).H(a,b)}, +bEI(a,b,c,d){return J.aj(a).iM(a,b,c,d)}, +bEJ(a,b){return J.c4(a).aP_(a,b)}, +bEK(a){return J.f2(a).iN(a)}, +bpE(a,b){return J.f2(a).c0(a,b)}, +bEL(a,b){return J.aj(a).st(a,b)}, +eW(a,b){return J.c4(a).sd0(a,b)}, +bEM(a,b,c,d,e){return J.ct(a).cv(a,b,c,d,e)}, +Xj(a,b){return J.f2(a).rK(a,b)}, +bpF(a,b,c){return J.f2(a).Z2(a,b,c)}, +arS(a,b){return J.ct(a).lX(a,b)}, +arT(a,b){return J.ct(a).fw(a,b)}, +bjh(a,b){return J.mM(a).rL(a,b)}, +bpG(a,b){return J.mM(a).cc(a,b)}, +bEN(a){return J.f2(a).Ze(a)}, +bpH(a,b){return J.mM(a).cm(a,b)}, +bpI(a,b){return J.ct(a).qa(a,b)}, +bEO(a){return J.bh8(a).au(a)}, +fg(a){return J.ct(a).fO(a)}, +bEP(a,b){return J.ct(a).hn(a,b)}, +bEQ(a){return J.mM(a).By(a)}, +bER(a,b){return J.bh8(a).of(a,b)}, +bES(a){return J.ct(a).kI(a)}, +cU(a){return J.hC(a).l(a)}, +bpJ(a){return J.mM(a).dn(a)}, +bET(a){return J.mM(a).aQ8(a)}, +bpK(a,b){return J.c4(a).bZ(a,b)}, +bpL(a,b){return J.f2(a).aed(a,b)}, +lT(a,b){return J.ct(a).jw(a,b)}, +bEU(a,b){return J.ct(a).NQ(a,b)}, +CT:function CT(){}, +Ld:function Ld(){}, +CY:function CY(){}, +k:function k(){}, +u6:function u6(){}, +a7d:function a7d(){}, +pm:function pm(){}, +oM:function oM(){}, +xN:function xN(){}, +xO:function xO(){}, +H:function H(a){this.$ti=a}, +aHF:function aHF(a){this.$ti=a}, +cI:function cI(a,b,c){var _=this +_.a=a +_.b=b +_.c=0 +_.d=null +_.$ti=c}, +u1:function u1(){}, +CX:function CX(){}, +Lf:function Lf(){}, +qG:function qG(){}},A={ +bTw(){var s=$.dD() +return s}, +bUo(a,b){if(a==="Google Inc.")return B.dA +else if(a==="Apple Computer, Inc.")return B.al +else if(B.c.p(b,"Edg/"))return B.dA +else if(a===""&&B.c.p(b,"firefox"))return B.cX +A.t4("WARNING: failed to detect current browser engine. Assuming this is a Chromium-compatible browser.") +return B.dA}, +bUq(){var s,r,q,p=null,o=self.window +o=o.navigator.platform +if(o==null)o=p +o.toString +s=o +o=self.window +r=o.navigator.userAgent +if(B.c.cc(s,"Mac")){o=self.window +o=o.navigator.maxTouchPoints +if(o==null)o=p +o=o==null?p:B.e.au(o) +q=o +if((q==null?0:q)>2)return B.bG +return B.d7}else if(B.c.p(s.toLowerCase(),"iphone")||B.c.p(s.toLowerCase(),"ipad")||B.c.p(s.toLowerCase(),"ipod"))return B.bG +else if(B.c.p(r,"Android"))return B.kZ +else if(B.c.cc(s,"Linux"))return B.oA +else if(B.c.cc(s,"Win"))return B.JH +else return B.aoe}, +bVS(){var s=$.fV() +return B.pe.p(0,s)}, +bVU(){var s=$.fV() +return s===B.bG&&B.c.p(self.window.navigator.userAgent,"OS 15_")}, +HM(){var s,r=A.WL(1,1) +if(A.qd(r,"webgl2",null)!=null){s=$.fV() +if(s===B.bG)return 1 +return 2}if(A.qd(r,"webgl",null)!=null)return 1 +return-1}, +bye(){return self.Intl.v8BreakIterator!=null&&self.Intl.Segmenter!=null}, +aZ(){return $.d2.cB()}, +bYG(a){return a===B.jw?$.d2.cB().FilterMode.Nearest:$.d2.cB().FilterMode.Linear}, +bMp(a){var s=a.encodeToBytes() +return s==null?null:s}, +bMr(a,b){return a.setColorInt(b)}, +bzD(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}, +bnU(a){var s,r,q,p=new Float32Array(9) +for(s=a.length,r=0;r<9;++r){q=B.zE[r] +if(q>>16&255)/255 +s[1]=(b.gj(b)>>>8&255)/255 +s[2]=(b.gj(b)&255)/255 +s[3]=(b.gj(b)>>>24&255)/255 +return s}, +is(a){var s=new Float32Array(4) +s[0]=a.a +s[1]=a.b +s[2]=a.c +s[3]=a.d +return s}, +bnr(a){return new A.L(a[0],a[1],a[2],a[3])}, +X0(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}, +bYE(a){var s,r=a.length,q=new Uint32Array(r) +for(s=0;s"))}, +bTz(a,b){return b+a}, +ar8(){var s=0,r=A.y(t.e),q,p,o +var $async$ar8=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:s=3 +return A.t(A.bfa(A.bQJ()),$async$ar8) +case 3:p=t.e +s=4 +return A.t(A.lP(self.window.CanvasKitInit(p.a({locateFile:A.cH(A.bRl())})),p),$async$ar8) +case 4:o=b +if(A.bu7(o.ParagraphBuilder)&&!A.bye())throw A.c(A.d8("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$ar8,r)}, +bfa(a){var s=0,r=A.y(t.H),q,p,o,n +var $async$bfa=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:p=a.$ti,o=new A.c2(a,a.gt(a),p.h("c2")),p=p.h("av.E") +case 3:if(!o.v()){s=4 +break}n=o.d +s=5 +return A.t(A.bRe(n==null?p.a(n):n),$async$bfa) +case 5:if(c){s=1 +break}s=3 +break +case 4:throw A.c(A.d8("Failed to download any of the following CanvasKit URLs: "+a.l(0))) +case 1:return A.w(q,r)}}) +return A.x($async$bfa,r)}, +bRe(a){var s,r,q,p,o,n=$.ed +n=(n==null?$.ed=A.jP(self.window.flutterConfiguration):n).b +n=n==null?null:A.bkK(n) +s=A.c8(self.document,"script") +if(n!=null)s.nonce=n +s.src=A.bUb(a) +n=new A.a7($.ac,t.tq) +r=new A.aD(n,t.VY) +q=A.b6("loadCallback") +p=A.b6("errorCallback") +o=t.e +q.sdQ(o.a(A.cH(new A.bf9(s,r)))) +p.sdQ(o.a(A.cH(new A.bf8(s,r)))) +A.dV(s,"load",q.aH(),null) +A.dV(s,"error",p.aH(),null) +self.document.head.appendChild(s) +return n}, +aIT(a){var s="ColorFilter",r=new A.a3L(a),q=new A.js(s,t.gA) +q.pA(r,a.Rp(),s,t.e) +r.b!==$&&A.ck() +r.b=q +return r}, +bQS(){var s,r=new Float32Array(20) +for(s=0;s<4;++s)r[B.a8D[s]]=1 +return $.bRV=r}, +bUa(a,b){var s +if((a.gj(a)>>>24&255)/255===0)return $.d2.cB().ColorFilter.MakeMatrix($.bCE()) +s=$.d2.cB().ColorFilter.MakeBlend(A.bfR($.arD(),a),$.boE()[b.a]) +if(s==null)throw A.c(A.bZ("Invalid parameters for blend mode ColorFilter",null)) +return s}, +bFP(a){return new A.J5(a)}, +bU1(a){switch(0){case 0:return new A.J3(a.a,a.b)}}, +bl6(a){var s=null +return new A.nk(B.an5,s,s,s,a,s)}, +bHE(){var s=t.qN +return new A.a1k(A.a([],s),A.a([],s))}, +bUt(a,b){var s,r,q,p,o +if(a.length===0||b.length===0)return null +s=new A.bgy(a,b) +r=new A.bgx(a,b) +q=B.b.eZ(a,B.b.gO(b)) +p=B.b.vx(a,B.b.gX(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}, +btE(a,b,c){var s=new self.window.flutterCanvasKit.Font(c),r=A.a([0],t.t) +s.getGlyphBounds(r,null,null) +return new A.yY(b,a,c)}, +bY3(a,b,c){var s="encoded image bytes" +if($.boN()&&b==null&&c==null)return A.Z3(a,s) +else return A.bqn(a,s,c,b)}, +tU(a){return new A.a2P(a)}, +bi5(a,b){var s=0,r=A.y(t.hP),q,p +var $async$bi5=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:s=3 +return A.t(A.ara(a,b),$async$bi5) +case 3:p=d +if($.boN()){q=A.Z3(p,a) +s=1 +break}else{q=A.bqn(p,a,null,null) +s=1 +break}case 1:return A.w(q,r)}}) +return A.x($async$bi5,r)}, +ara(a,b){return A.bV_(a,b)}, +bV_(a,b){var s=0,r=A.y(t.R),q,p=2,o,n,m,l,k,j +var $async$ara=A.u(function(c,d){if(c===1){o=d +s=p}while(true)switch(s){case 0:p=4 +s=7 +return A.t(A.AH(a),$async$ara) +case 7:n=d +m=n.gaGQ() +if(!n.gM_()){l=A.tU(u.O+a+"\nServer response code: "+J.bjc(n)) +throw A.c(l)}s=m!=null?8:10 +break +case 8:l=A.bhW(n.gBg(),m,b) +q=l +s=1 +break +s=9 +break +case 10:s=11 +return A.t(A.aGI(n),$async$ara) +case 11:l=d +q=l +s=1 +break +case 9:p=2 +s=6 +break +case 4:p=3 +j=o +if(A.ak(j) instanceof A.KY)throw A.c(A.tU(u.O+a+"\nTrying to load an image from another domain? Find answers at:\nhttps://flutter.dev/docs/development/platform-integration/web-images")) +else throw j +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$ara,r)}, +bhW(a,b,c){return A.bXa(a,b,c)}, +bXa(a,b,c){var s=0,r=A.y(t.R),q,p,o,n +var $async$bhW=A.u(function(d,e){if(d===1)return A.v(e,r) +while(true)switch(s){case 0:p={} +o=t.R +n=o.a(new self.Uint8Array(b)) +p.a=p.b=0 +s=3 +return A.t(a.ae(0,new A.bhX(p,c,b,n),o),$async$bhW) +case 3:q=n +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$bhW,r)}, +awW(a,b){var s=new A.Bv($,b),r=A.bG6(a,s,"SkImage",t.XY,t.e) +s.b!==$&&A.ck() +s.b=r +s.a_h() +return s}, +bqn(a,b,c,d){var s,r,q,p,o,n,m,l,k=new A.Z2(b,a,d,c),j=$.d2.cB().MakeAnimatedImageFromEncoded(a) +if(j==null)A.r(A.tU("Failed to decode image data.\nImage source: "+b)) +s=d==null +if(!s||c!=null)if(j.getFrameCount()>1)$.hf().$1("targetWidth and targetHeight for multi-frame images not supported") +else{r=j.makeImageAtCurrentFrame() +if(!s&&d<=0)d=null +if(c!=null&&c<=0)c=null +s=d==null +if(s&&c!=null)d=B.e.bg(c*(r.width()/r.height())) +else if(c==null&&!s)c=B.f.i9(d,r.width()/r.height()) +q=new A.tn() +p=q.E3(B.ib) +o=A.J6() +s=A.awW(r,null) +n=r.width() +m=r.height() +d.toString +c.toString +p.tv(s,new A.L(0,0,0+n,0+m),new A.L(0,0,d,c),o) +m=o.b +m===$&&A.b() +m.m() +m=q.EM().aPG(d,c).b +m===$&&A.b() +m=m.a +m===$&&A.b() +m=m.a +m.toString +l=A.bMp(m) +if(l==null)A.r(A.tU("Failed to re-size image")) +j=$.d2.cB().MakeAnimatedImageFromEncoded(l) +if(j==null)A.r(A.tU("Failed to decode re-sized image data.\nImage source: "+b))}k.d=B.e.au(j.getFrameCount()) +k.e=B.e.au(j.getRepetitionCount()) +s=new A.js("Codec",t.gA) +s.pA(k,j,"Codec",t.e) +k.a!==$&&A.ck() +k.a=s +return k}, +bFO(a,b,c){return new A.J4(a,b,c,new A.I4(new A.av1()))}, +Z3(a,b){var s=0,r=A.y(t.Lh),q,p,o +var $async$Z3=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:o=A.bUp(a) +if(o==null)throw A.c(A.tU("Failed to detect image file format using the file header.\nFile header was "+(!B.M.gak(a)?"["+A.bTy(B.M.cT(a,0,Math.min(10,a.length)))+"]":"empty")+".\nImage source: "+b)) +p=A.bFO(o,a,b) +s=3 +return A.t(p.z2(),$async$Z3) +case 3:q=p +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Z3,r)}, +bG6(a,b,c,d,e){var s=new A.Zw(A.aW(d),d.h("@<0>").V(e).h("Zw<1,2>")),r=new A.js(c,e.h("js<0>")) +r.pA(s,a,c,e) +s.a!==$&&A.ck() +s.a=r +return s}, +J6(){var s,r=new self.window.flutterCanvasKit.Paint(),q=new A.Bw(r,B.dz,B.bj,B.e9,B.lz,B.jw) +r.setAntiAlias(!0) +r.setColorInt(4278190080) +s=new A.js("Paint",t.gA) +s.pA(q,r,"Paint",t.e) +q.b!==$&&A.ck() +q.b=s +return q}, +bqo(a,b){var s=new A.J7(b),r=new A.js("Path",t.gA) +r.pA(s,a,"Path",t.e) +s.a!==$&&A.ck() +s.a=r +return s}, +pg(){var s,r,q,p=$.bur +if(p==null){p=$.ed +p=(p==null?$.ed=A.jP(self.window.flutterConfiguration):p).b +if(p==null)p=null +else{p=p.canvasKitMaximumSurfaces +if(p==null)p=null +p=p==null?null:B.e.au(p)}if(p==null)p=8 +s=A.c8(self.document,"flt-canvas-container") +r=t.y1 +q=A.a([],r) +r=A.a([],r) +r=$.bur=new A.aax(new A.pf(s),Math.max(p,1),q,r) +p=r}return p}, +bFQ(a,b){var s,r,q,p=null +t.S3.a(a) +s=t.e.a({}) +r=A.bmX(a.a,a.b) +s.fontFamilies=r +r=a.c +if(r!=null)s.fontSize=r +r=a.d +if(r!=null)s.heightMultiplier=r +q=a.x +q=b==null?p:b.c +switch(q){case null:case void 0:break +case B.X:A.bu9(s,!0) +break +case B.pF:A.bu9(s,!1) +break}r=a.f +if(r!=null||!1)s.fontStyle=A.bnT(r,a.r) +r=a.w +if(r!=null)s.forceStrutHeight=r +s.strutEnabled=!0 +return s}, +bjE(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){return new A.J9(b,c,d,e,f,m,k,a0,g,h,j,q,a1,o,p,r,a,n,s,i,l)}, +bnT(a,b){var s=t.e.a({}) +if(a!=null)s.weight=$.bDd()[a.a] +return s}, +bmX(a,b){var s=A.a([],t.s) +if(a!=null)s.push(a) +if(b!=null&&!B.b.EO(b,new A.bfx(a)))B.b.I(s,b) +B.b.I(s,$.au().gF8().gVn().as) +return s}, +bM6(a,b){var s=b.length +if(s<=B.Np.b)return a.c +if(s<=B.Nq.b)return a.b +if(s<=B.Nr.b)return a.a +return null}, +byG(a,b){var s,r=new A.a12(t.e.a($.bCG().i(0,b).segment(a)[self.Symbol.iterator]()),t.yN),q=A.a([],t.t) +for(;r.v();){s=r.b +s===$&&A.b() +q.push(B.e.au(s.index))}q.push(a.length) +return new Uint32Array(A.mI(q))}, +bVa(a){var s,r,q,p,o=A.byd(a,a,$.bDw()),n=o.length,m=new Uint32Array((n+1)*2) +m[0]=0 +m[1]=0 +for(s=0;s>>16&255)/255 +s[1]=(a.gj(a)>>>8&255)/255 +s[2]=(a.gj(a)&255)/255 +s[3]=(a.gj(a)>>>24&255)/255 +return s}, +bjM(){return self.window.navigator.clipboard!=null?new A.axb():new A.aC3()}, +blg(){var s=$.dD() +return s===B.cX||self.window.navigator.clipboard==null?new A.aC4():new A.axc()}, +byj(){var s=$.ed +return s==null?$.ed=A.jP(self.window.flutterConfiguration):s}, +jP(a){var s=new A.aDp() +if(a!=null){s.a=!0 +s.b=a}return s}, +bkK(a){var s=a.nonce +return s==null?null:s}, +bLV(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}}, +bra(a){var s=a.innerHeight +return s==null?null:s}, +brb(a,b){return a.matchMedia(b)}, +bke(a,b){return a.getComputedStyle(b)}, +bHc(a){return new A.azr(a)}, +bHh(a){return a.userAgent}, +bHg(a){var s=a.languages +if(s==null)s=null +else{s=J.cx(s,new A.azt(),t.N) +s=A.a8(s,!0,A.l(s).h("av.E"))}return s}, +c8(a,b){return a.createElement(b)}, +dV(a,b,c,d){if(c!=null)if(d==null)a.addEventListener(b,c) +else a.addEventListener(b,c,d)}, +i3(a,b,c,d){if(c!=null)if(d==null)a.removeEventListener(b,c) +else a.removeEventListener(b,c,d)}, +bU4(a){return t.e.a(A.cH(a))}, +jK(a){var s=a.timeStamp +return s==null?null:s}, +br3(a,b){a.textContent=b +return b}, +azu(a,b){return a.cloneNode(b)}, +bU3(a){return A.c8(self.document,a)}, +bHe(a){return a.tagName}, +bqS(a,b,c){var s=A.b1(c) +if(s==null)s=t.K.a(s) +return a.setAttribute(b,s)}, +bHd(a){var s +for(;a.firstChild!=null;){s=a.firstChild +s.toString +a.removeChild(s)}}, +bH9(a,b){return A.Q(a,"width",b)}, +bH4(a,b){return A.Q(a,"height",b)}, +bqN(a,b){return A.Q(a,"position",b)}, +bH7(a,b){return A.Q(a,"top",b)}, +bH5(a,b){return A.Q(a,"left",b)}, +bH8(a,b){return A.Q(a,"visibility",b)}, +bH6(a,b){return A.Q(a,"overflow",b)}, +Q(a,b,c){a.setProperty(b,c,"")}, +bka(a){var s=a.src +return s==null?null:s}, +bqT(a,b){a.src=b +return b}, +byq(a){var s=A.c8(self.document,"style") +if(a!=null)s.nonce=a +return s}, +WL(a,b){var s +$.byv=$.byv+1 +s=A.c8(self.window.document,"canvas") +if(b!=null)A.C2(s,b) +if(a!=null)A.C1(s,a) +return s}, +C2(a,b){a.width=b +return b}, +C1(a,b){a.height=b +return b}, +qd(a,b,c){var s +if(c==null)return a.getContext(b) +else{s=A.b1(c) +if(s==null)s=t.K.a(s) +return a.getContext(b,s)}}, +bHb(a){var s=A.qd(a,"2d",null) +s.toString +return t.e.a(s)}, +bHa(a,b){var s +if(b===1){s=A.qd(a,"webgl",null) +s.toString +return t.e.a(s)}s=A.qd(a,"webgl2",null) +s.toString +return t.e.a(s)}, +azp(a,b){var s=b +a.fillStyle=s +return s}, +bqQ(a,b){a.lineWidth=b +return b}, +azq(a,b){var s=b +a.strokeStyle=s +return s}, +azo(a,b){if(b==null)a.fill() +else a.fill(b)}, +bqO(a,b,c,d){a.fillText(b,c,d)}, +bqP(a,b,c,d,e,f,g){return A.cj(a,"setTransform",[b,c,d,e,f,g])}, +bqR(a,b,c,d,e,f,g){return A.cj(a,"transform",[b,c,d,e,f,g])}, +azn(a,b){if(b==null)a.clip() +else a.clip(b)}, +bk6(a,b){a.filter=b +return b}, +bk8(a,b){a.shadowOffsetX=b +return b}, +bk9(a,b){a.shadowOffsetY=b +return b}, +bk7(a,b){a.shadowColor=b +return b}, +AH(a){return A.bVD(a)}, +bVD(a){var s=0,r=A.y(t.Lk),q,p=2,o,n,m,l,k +var $async$AH=A.u(function(b,c){if(b===1){o=c +s=p}while(true)switch(s){case 0:p=4 +s=7 +return A.t(A.lP(self.window.fetch(a),t.e),$async$AH) +case 7:n=c +q=new A.a2L(a,n) +s=1 +break +p=2 +s=6 +break +case 4:p=3 +k=o +m=A.ak(k) +throw A.c(new A.KY(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$AH,r)}, +bhc(a){var s=0,r=A.y(t.pI),q +var $async$bhc=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=3 +return A.t(A.AH(a),$async$bhc) +case 3:q=c.gBg().wP() +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$bhc,r)}, +aGI(a){var s=0,r=A.y(t.R),q,p +var $async$aGI=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:p=A +s=3 +return A.t(a.gBg().wP(),$async$aGI) +case 3:q=p.eO(c,0,null) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$aGI,r)}, +bU5(a,b,c){var s,r +if(c==null)return new self.FontFace(a,b) +else{s=self.FontFace +r=A.b1(c) +if(r==null)r=t.K.a(r) +return new s(a,b,r)}}, +br7(a){var s=a.height +return s==null?null:s}, +br0(a,b){var s=b==null?null:b +a.value=s +return s}, +bqZ(a){var s=a.selectionStart +return s==null?null:s}, +bqY(a){var s=a.selectionEnd +return s==null?null:s}, +br_(a){var s=a.value +return s==null?null:s}, +wY(a){var s=a.code +return s==null?null:s}, +oy(a){var s=a.key +return s==null?null:s}, +br1(a){var s=a.state +if(s==null)s=null +else{s=A.bnl(s) +s.toString}return s}, +bU2(a){var s=self +return new s.Blob(a)}, +bHf(a){return a.matches}, +br2(a){var s=a.matches +return s==null?null:s}, +n3(a){var s=a.buttons +return s==null?null:s}, +br4(a){var s=a.pointerId +return s==null?null:s}, +bkd(a){var s=a.pointerType +return s==null?null:s}, +br5(a){var s=a.tiltX +return s==null?null:s}, +br6(a){var s=a.tiltY +return s==null?null:s}, +br8(a){var s=a.wheelDeltaX +return s==null?null:s}, +br9(a){var s=a.wheelDeltaY +return s==null?null:s}, +bHj(a){var s=a.identifier +return s==null?null:s}, +azs(a,b){a.type=b +return b}, +bqX(a,b){var s=b==null?null:b +a.value=s +return s}, +bkc(a){var s=a.value +return s==null?null:s}, +bkb(a){var s=a.disabled +return s==null?null:s}, +bqW(a,b){a.disabled=b +return b}, +bqV(a){var s=a.selectionStart +return s==null?null:s}, +bqU(a){var s=a.selectionEnd +return s==null?null:s}, +bHi(a,b,c){var s=A.b1(c) +if(s==null)s=t.K.a(s) +return a.getContext(b,s)}, +ox(a,b,c){return a.insertRule(b,c)}, +eK(a,b,c){var s=t.e.a(A.cH(c)) +a.addEventListener(b,s) +return new A.a13(b,a,s)}, +bU6(a){return new self.ResizeObserver(A.cH(new A.bgs(a)))}, +bUb(a){if(self.window.trustedTypes!=null)return $.bDt().createScriptURL(a) +return a}, +byr(a){var s,r +if(self.Intl.Segmenter==null)throw A.c(A.d1("Intl.Segmenter() is not supported.")) +s=self.Intl.Segmenter +r=t.N +r=A.b1(A.am(["granularity",a],r,r)) +if(r==null)r=t.K.a(r) +return new s([],r)}, +byu(){var s,r +if(self.Intl.v8BreakIterator==null)throw A.c(A.d1("v8BreakIterator is not supported.")) +s=self.Intl.v8BreakIterator +r=A.b1(B.ak5) +if(r==null)r=t.K.a(r) +return new s([],r)}, +bV8(){var s=$.hB +s.toString +return s}, +ari(a,b){var s +if(b.k(0,B.i))return a +s=new A.dp(new Float32Array(16)) +s.c6(a) +s.bi(0,b.a,b.b) +return s}, +byy(a,b,c){var s=a.aPF() +if(c!=null)A.bnO(s,A.ari(c,b).a) +return s}, +bnM(){var s=0,r=A.y(t.z) +var $async$bnM=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:if(!$.bmU){$.bmU=!0 +self.window.requestAnimationFrame(A.cH(new A.bi2()))}return A.w(null,r)}}) +return A.x($async$bnM,r)}, +bIq(a,b){var s=t.S,r=A.cR(null,t.H),q=A.a(["Roboto"],t.s) +s=new A.aDH(a,A.aW(s),A.aW(s),b,B.b.pw(b,new A.aDI()),B.b.pw(b,new A.aDJ()),B.b.pw(b,new A.aDK()),B.b.pw(b,new A.aDL()),B.b.pw(b,new A.aDM()),B.b.pw(b,new A.aDN()),r,q,A.aW(s)) +q=t.Te +s.b=new A.a1H(s,A.aW(q),A.I(t.N,q)) +return s}, +bPV(a,b,c){var s,r,q,p,o,n,m,l=A.a([],t.t),k=A.a([],c.h("H<0>")) +for(s=a.length,r=0,q=0,p=1,o=0;o"))}, +ar9(a){return A.bUZ(a)}, +bUZ(a){var s=0,r=A.y(t.jU),q,p,o,n,m,l +var $async$ar9=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:n={} +l=t.Lk +s=3 +return A.t(A.AH(a.ya("FontManifest.json")),$async$ar9) +case 3:m=l.a(c) +if(!m.gM_()){$.hf().$1("Font manifest does not exist at `"+m.a+"` - ignoring.") +q=new A.KF(A.a([],t.z8)) +s=1 +break}p=B.de.ahF(B.yd,t.X) +n.a=null +o=p.kf(new A.amN(new A.bgV(n),[],t.kW)) +s=4 +return A.t(m.gBg().ae(0,new A.bgW(o),t.R),$async$ar9) +case 4:o.ah(0) +n=n.a +if(n==null)throw A.c(A.mQ(u.i)) +n=J.cx(t.j.a(n),new A.bgX(),t.VW) +q=new A.KF(A.a8(n,!0,A.l(n).h("av.E"))) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$ar9,r)}, +bIp(a,b){return new A.KD(a)}, +by9(a,b,c){var s,r,q,p,o,n,m,l=a.sheet +l.toString +s=l +l=" "+b +q=t.e +p=t.qr +o=p.h("z.E") +A.ox(s,l+" flt-scene-host {\n font: "+c+";\n }\n ",J.b3(A.dF(new A.hX(s.cssRules,p),o,q).a)) +n=$.dD() +if(n===B.al)A.ox(s," "+b+" * {\n -webkit-tap-highlight-color: transparent;\n }\n ",J.b3(A.dF(new A.hX(s.cssRules,p),o,q).a)) +if(n===B.cX)A.ox(s," "+b+" flt-paragraph,\n "+b+" flt-span {\n line-height: 100%;\n }\n ",J.b3(A.dF(new A.hX(s.cssRules,p),o,q).a)) +A.ox(s,l+" 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.b3(A.dF(new A.hX(s.cssRules,p),o,q).a)) +if(n===B.al)A.ox(s," "+b+" flt-semantics input[type=range]::-webkit-slider-thumb {\n -webkit-appearance: none;\n }\n ",J.b3(A.dF(new A.hX(s.cssRules,p),o,q).a)) +A.ox(s,l+" input::selection {\n background-color: transparent;\n }\n ",J.b3(A.dF(new A.hX(s.cssRules,p),o,q).a)) +A.ox(s,l+" textarea::selection {\n background-color: transparent;\n }\n ",J.b3(A.dF(new A.hX(s.cssRules,p),o,q).a)) +A.ox(s,l+" flt-semantics input,\n "+b+" flt-semantics textarea,\n "+b+' flt-semantics [contentEditable="true"] {\n caret-color: transparent;\n }\n ',J.b3(A.dF(new A.hX(s.cssRules,p),o,q).a)) +A.ox(s,l+" .flt-text-editing::placeholder {\n opacity: 0;\n }\n ",J.b3(A.dF(new A.hX(s.cssRules,p),o,q).a)) +if(n!==B.dA)l=n===B.al +else l=!0 +if(l)A.ox(s," "+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.b3(A.dF(new A.hX(s.cssRules,p),o,q).a)) +if(B.c.p(self.window.navigator.userAgent,"Edg/"))try{A.ox(s," "+b+" input::-ms-reveal {\n display: none;\n }\n ",J.b3(A.dF(new A.hX(s.cssRules,p),o,q).a))}catch(m){l=A.ak(m) +if(q.b(l)){r=l +self.window.console.warn(J.cU(r))}else throw m}}, +bFk(a,b,c){var s,r,q,p,o,n,m,l=A.c8(self.document,"flt-canvas"),k=A.a([],t.A) +$.dn() +s=self.window.devicePixelRatio +if(s===0)s=1 +r=a.a +q=a.c-r +p=A.aut(q) +o=a.b +n=a.d-o +m=A.aus(n) +n=new A.avL(A.aut(q),A.aus(n),c,A.a([],t.vj),A.fL()) +s=new A.q_(a,l,n,k,p,m,s,c,b) +A.Q(l.style,"position","absolute") +s.z=B.e.eC(r)-1 +s.Q=B.e.eC(o)-1 +s.a6M() +n.z=l +s.a5a() +return s}, +aut(a){var s +$.dn() +s=self.window.devicePixelRatio +if(s===0)s=1 +return B.e.eV((a+1)*s)+2}, +aus(a){var s +$.dn() +s=self.window.devicePixelRatio +if(s===0)s=1 +return B.e.eV((a+1)*s)+2}, +bFl(a){a.remove()}, +bgb(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.c(A.d1("Flutter Web does not support the blend mode: "+a.l(0)))}}, +bgc(a){switch(a.a){case 0:return B.arz +case 3:return B.arA +case 5:return B.arB +case 7:return B.arD +case 9:return B.arE +case 4:return B.arF +case 6:return B.arG +case 8:return B.arH +case 10:return B.arI +case 12:return B.arJ +case 1:return B.arK +case 11:return B.arC +case 24:case 13:return B.arT +case 14:return B.arU +case 15:return B.arX +case 16:return B.arV +case 17:return B.arW +case 18:return B.arY +case 19:return B.arZ +case 20:return B.as_ +case 21:return B.arM +case 22:return B.arN +case 23:return B.arO +case 25:return B.arP +case 26:return B.arQ +case 27:return B.arR +case 28:return B.arS +default:return B.arL}}, +bzC(a){if(a==null)return null +switch(a.a){case 0:return"butt" +case 1:return"round" +case 2:default:return"square"}}, +bYk(a){switch(a.a){case 1:return"round" +case 2:return"bevel" +case 0:default:return"miter"}}, +bmN(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.A,a2=A.a([],a1),a3=a4.length +for(s=null,r=null,q=0;q>>16&255)/255,0,0,0,0,(o>>>8&255)/255,0,0,0,0,(p&255)/255,0,0,0,1,0],t.up),"recolor") +s.vY("recolor",k,1,0,0,0,6,l) +q=s.aO() +break +case 15:r=A.bgc(B.qy) +r.toString +q=A.bwY(a,r,!0) +break +case 26:case 18:case 19:case 25:case 27:case 28:case 24:case 14:case 16:case 17:case 20:case 21:case 22:case 23:r=A.bgc(b) +r.toString +q=A.bwY(a,r,!1) +break +case 1:case 2:case 6:case 8:case 4:case 0:case 3:throw A.c(A.d1("Blend mode not supported in HTML renderer: "+b.l(0))) +default:q=null}return q}, +kN(){var s,r=A.azu($.bp0(),!1),q=self.document.createElementNS("http://www.w3.org/2000/svg","filter"),p=$.but+1 +$.but=p +p="_fcf"+p +q.id=p +s=q.filterUnits +s.toString +A.aSf(s,2) +s=q.x.baseVal +s.toString +A.aSh(s,"0%") +s=q.y.baseVal +s.toString +A.aSh(s,"0%") +s=q.width.baseVal +s.toString +A.aSh(s,"100%") +s=q.height.baseVal +s.toString +A.aSh(s,"100%") +return new A.aYx(p,r,q)}, +bYr(a){var s=A.kN() +s.Hp(a,"comp") +return s.aO()}, +bwY(a,b,c){var s="flood",r="SourceGraphic",q=A.kN(),p=A.fd(a.gj(a)) +q.ys(p,"1",s) +p=b.b +if(c)q.Ho(r,s,p) +else q.Ho(s,r,p) +return q.aO()}, +WG(a,b){var s,r,q,p,o=a.a,n=a.c,m=Math.min(o,n),l=a.b,k=a.d,j=Math.min(l,k) +n-=o +s=Math.abs(n) +k-=l +r=Math.abs(k) +q=b.b +p=b.c +if(p==null)p=0 +if(q===B.ai&&p>0){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.L(m,j,m+s,j+r) +return a}, +WH(a,b,c,d){var s,r,q,p,o,n,m,l,k,j=A.c8(self.document,c),i=b.b===B.ai,h=b.c +if(h==null)h=0 +if(d.Fu(0)){s=a.a +r=a.b +q="translate("+A.i(s)+"px, "+A.i(r)+"px)"}else{s=new Float32Array(16) +p=new A.dp(s) +p.c6(d) +r=a.a +o=a.b +p.bi(0,r,o) +q=A.mL(s) +s=r +r=o}n=j.style +A.Q(n,"position","absolute") +A.Q(n,"transform-origin","0 0 0") +A.Q(n,"transform",q) +m=A.fd(b.r) +o=b.x +if(o!=null){l=o.b +o=$.dD() +if(o===B.al&&!i){A.Q(n,"box-shadow","0px 0px "+A.i(l*2)+"px "+m) +o=b.r +m=A.fd(((B.e.bg((1-Math.min(Math.sqrt(l)/6.283185307179586,1))*(o>>>24&255))&255)<<24|o&16777215)>>>0)}else A.Q(n,"filter","blur("+A.i(l)+"px)")}A.Q(n,"width",A.i(a.c-s)+"px") +A.Q(n,"height",A.i(a.d-r)+"px") +if(i)A.Q(n,"border",A.rU(h)+" solid "+m) +else{A.Q(n,"background-color",m) +k=A.bRJ(b.w,a) +A.Q(n,"background-image",k!==""?"url('"+k+"'":"")}return j}, +bRJ(a,b){if(a!=null)if(a instanceof A.CE)return A.bm(a.Uq(b,1,!0)) +return""}, +bya(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.Q(a,"border-radius",A.rU(b.z)) +return}A.Q(a,"border-top-left-radius",A.rU(q)+" "+A.rU(b.f)) +A.Q(a,"border-top-right-radius",A.rU(p)+" "+A.rU(b.w)) +A.Q(a,"border-bottom-left-radius",A.rU(b.z)+" "+A.rU(b.Q)) +A.Q(a,"border-bottom-right-radius",A.rU(b.x)+" "+A.rU(b.y))}, +rU(a){return B.e.aF(a===0?1:a,3)+"px"}, +bjH(a,b,c){var s,r,q,p,o,n,m +if(0===b){c.push(new A.m(a.c,a.d)) +c.push(new A.m(a.e,a.f)) +return}s=new A.af8() +a.a0h(s) +r=s.a +r.toString +q=s.b +q.toString +p=a.b +o=a.f +if(A.hq(p,a.d,o)){n=r.f +if(!A.hq(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}, +bQO(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}, +byA(a,b,c,d,e){return(((d+3*(b-c)-a)*e+3*(c-b-b+a))*e+3*(b-a))*e+a}, +blI(){var s=new A.v4(A.blh(),B.d8) +s.a4q() +return s}, +bQp(a,b,c){var s +if(0===c)s=0===b||360===b +else s=!1 +if(s)return new A.m(a.c,a.gbM().b) +return null}, +beX(a,b,c,d){var s=a+b +if(s<=c)return d +return Math.min(c/s,d)}, +btj(a,b){var s=new A.aN6(a,!0,a.w) +if(a.Q)a.PY() +if(!a.as)s.z=a.w +return s}, +blh(){var s=new Float32Array(16) +s=new A.DM(s,new Uint8Array(8)) +s.e=s.c=8 +s.CW=172 +return s}, +bKC(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}, +arj(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}, +bVV(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}, +bu8(a,b,c,d,e,f){return new A.aVd(e-2*c+a,f-2*d+b,2*(c-a),2*(d-b),a,b)}, +aN8(a,b,c,d,e,f){if(d===f)return A.hq(c,a,e)&&a!==e +else return a===c&&b===d}, +bKD(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.arj(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}, +bYv(a,b,c,d){var s,r,q,p,o=a[1],n=a[3] +if(!A.hq(o,c,n))return +s=a[0] +r=a[2] +if(!A.hq(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.m(q,p))}, +bYw(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.hq(i,c,h)&&!A.hq(h,c,g))return +s=a[0] +r=a[2] +q=a[4] +if(!A.hq(s,b,r)&&!A.hq(r,b,q))return +p=new A.r1() +o=p.vn(i-2*h+g,2*(h-i),i-c) +for(n=q-2*r+s,m=2*(r-s),l=0;l30)B.b.k0($.rY,0).d.m()}else a.d.m()}}, +aNd(a,b){if(a<=0)return b*0.1 +else return Math.min(Math.max(b*0.5,a*10),b)}, +bQV(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.e.eV(a6/2)*2) +s=a8*a9 +if(s*a6*a6>4194304&&a6>2)a6=3355443.2/s}else a6=Math.max(2/B.e.eC(2/a6),0.0001) +return a6}, +HN(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}, +bYs(a,b,c,d){var s,r,q,p="comp",o="destalpha",n="image",m="SourceGraphic" +switch(b.a){case 1:s=A.kN() +s.vZ(d,a,p,c) +r=s.aO() +break +case 5:case 9:s=A.kN() +s.Hp(B.A2,o) +s.vZ(d,a,n,c) +s.vY(n,o,1,0,0,0,6,p) +r=s.aO() +break +case 7:s=A.kN() +s.vZ(d,a,n,c) +s.Cd(n,m,3,p) +r=s.aO() +break +case 11:s=A.kN() +s.vZ(d,a,n,c) +s.Cd(n,m,5,p) +r=s.aO() +break +case 12:s=A.kN() +s.vZ(d,a,n,c) +s.vY(n,m,0,1,1,0,6,p) +r=s.aO() +break +case 13:s=A.kN() +s.vZ(d,a,n,c) +s.vY(n,m,1,0,0,0,6,p) +r=s.aO() +break +case 15:q=A.bgc(B.qy) +q.toString +r=A.bwZ(a,q,c,d,!0) +break +case 26:case 18:case 19:case 25:case 27:case 28:case 24:case 14:case 16:case 17:case 20:case 21:case 22:case 23:q=A.bgc(b) +q.toString +r=A.bwZ(a,q,c,d,!1) +break +case 2:case 10:case 6:case 8:case 4:case 0:case 3:throw A.c(A.aa("Invalid svg filter request for blend-mode "+b.l(0))) +default:r=null}return r}, +bwZ(a,b,c,d,e){var s,r="image",q="SourceGraphic",p=A.kN() +p.vZ(d,a,r,c) +s=b.b +if(e)p.Ho(q,r,s) +else p.Ho(r,q,s) +return p.aO()}, +bKs(a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1 +if(a3==null)a3=B.a8C +s=a2.length +r=B.b.fa(a2,new A.aMl()) +q=!J.j(a3[0],0) +p=!J.j(B.b.gX(a3),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.cE(n,4) +j=new Float32Array(4*(k+1)) +if(q){i=a2[0] +m[0]=(i.gj(i)>>>16&255)/255 +m[1]=(i.gj(i)>>>8&255)/255 +m[2]=(i.gj(i)&255)/255 +m[3]=(i.gj(i)>>>24&255)/255 +j[0]=0 +h=4 +g=1}else{h=0 +g=0}for(k=a2.length,f=0;f>>16&255)/255 +h=e+1 +m[e]=(d.gj(i)>>>8&255)/255 +e=h+1 +m[h]=(d.gj(i)&255)/255 +h=e+1 +m[e]=(d.gj(i)>>>24&255)/255}for(k=a3.length,f=0;f>>16&255)/255 +h=e+1 +m[e]=(i.gj(i)>>>8&255)/255 +m[h]=(i.gj(i)&255)/255 +m[h+1]=(i.gj(i)>>>24&255)/255 +j[g]=1}b=4*n +for(a=0;a>>2 +l[a]=(m[a+4]-m[a])/(j[g+1]-j[g])}l[b]=0 +l[b+1]=0 +l[b+2]=0 +l[b+3]=0 +for(a=0;a 1.0) {") +m.push(" "+a.gaar().a+" = vec4(0, 0, 0, 0);") +m.push(" return;") +m.push("}")}return o}, +bU7(a){if(a==null)return null +switch(0){case 0:return new A.M9(a.a,a.b)}}, +bMh(a){switch(a){case 0:return"bool" +case 1:return"int" +case 2:return"float" +case 3:return"bvec2" +case 4:return"bvec3" +case 5:return"bvec4" +case 6:return"ivec2" +case 7:return"ivec3" +case 8:return"ivec4" +case 9:return"vec2" +case 10:return"vec3" +case 11:return"vec4" +case 12:return"mat2" +case 13:return"mat3" +case 14:return"mat4" +case 15:return"sampler1D" +case 16:return"sampler2D" +case 17:return"sampler3D" +case 18:return"void"}throw A.c(A.bZ(null,null))}, +bTL(a){var s,r,q,p=$.bhE,o=p.length +if(o!==0)try{if(o>1)B.b.fw(p,new A.bgn()) +for(p=$.bhE,o=p.length,r=0;r=s)return!1 +if(a[n]!==o.charCodeAt(p))continue $label0$0}return!0}return!1}, +bzv(a){$.vU.push(a)}, +bhg(a){return A.bVJ(a)}, +bVJ(a){var s=0,r=A.y(t.H),q,p,o,n +var $async$bhg=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:n={} +if($.WB!==B.v4){s=1 +break}$.WB=B.a1p +p=$.ed +if(p==null)p=$.ed=A.jP(self.window.flutterConfiguration) +if(a!=null)p.b=a +A.bXm("ext.flutter.disassemble",new A.bhi()) +n.a=!1 +$.bzy=new A.bhj(n) +n=$.ed +n=(n==null?$.ed=A.jP(self.window.flutterConfiguration):n).b +if(n==null)n=null +else{n=n.assetBase +if(n==null)n=null}o=new A.asK(n) +A.bSL(o) +s=3 +return A.t(A.qv(A.a([new A.bhk().$0(),A.aqX()],t.mo),t.H),$async$bhg) +case 3:$.WB=B.v5 +case 1:return A.w(q,r)}}) +return A.x($async$bhg,r)}, +bnx(){var s=0,r=A.y(t.H),q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a +var $async$bnx=A.u(function(a0,a1){if(a0===1)return A.v(a1,r) +while(true)switch(s){case 0:if($.WB!==B.v5){s=1 +break}$.WB=B.a1q +p=$.fV() +if($.blp==null)$.blp=A.bLn(p===B.d7) +if($.hB==null){o=$.ed +o=(o==null?$.ed=A.jP(self.window.flutterConfiguration):o).b +o=o==null?null:o.hostElement +n=A.bHF(o) +m=new A.a2_(n) +l=$.eA() +l.r=A.bGR(o) +o=$.au() +k=t.N +n.ab6(0,A.am(["flt-renderer",o.gade()+" (auto-selected)","flt-build-mode","release","spellcheck","false"],k,k)) +j=m.f=A.c8(self.document,"flutter-view") +i=m.r=A.c8(self.document,"flt-glass-pane") +n.a7M(j) +j.appendChild(i) +if(i.attachShadow==null)A.r(A.aa("ShadowDOM is not supported in this browser.")) +n=A.b1(A.am(["mode","open","delegatesFocus",!1],k,t.z)) +if(n==null)n=t.K.a(n) +n=m.w=i.attachShadow(n) +i=$.ed +k=(i==null?$.ed=A.jP(self.window.flutterConfiguration):i).b +h=A.byq(k==null?null:A.bkK(k)) +h.id="flt-internals-stylesheet" +n.appendChild(h) +A.by9(h,"","normal normal 14px sans-serif") +k=$.ed +k=(k==null?$.ed=A.jP(self.window.flutterConfiguration):k).b +k=k==null?null:A.bkK(k) +g=A.c8(self.document,"flt-text-editing-host") +f=A.byq(k) +f.id="flt-text-editing-stylesheet" +j.appendChild(f) +A.by9(f,"flutter-view","normal normal 14px sans-serif") +j.appendChild(g) +m.x=g +j=A.c8(self.document,"flt-scene-host") +A.Q(j.style,"pointer-events","none") +m.b=j +o.adm(0,m) +e=A.c8(self.document,"flt-semantics-host") +o=e.style +A.Q(o,"position","absolute") +A.Q(o,"transform-origin","0 0 0") +m.d=e +m.aea() +o=$.hL +d=(o==null?$.hL=A.qj():o).w.a.acB() +c=A.c8(self.document,"flt-announcement-host") +b=A.bpM(B.me) +a=A.bpM(B.mf) +c.append(b) +c.append(a) +m.y=new A.as9(b,a) +n.append(d) +o=m.b +o.toString +n.append(o) +n.append(c) +m.f.appendChild(e) +o=$.ed +if((o==null?$.ed=A.jP(self.window.flutterConfiguration):o).gaHX())A.Q(m.b.style,"opacity","0.3") +o=$.aHR +if(o==null)o=$.aHR=A.bJl() +n=m.f +o=o.gCM() +if($.btl==null){o=new A.a7i(n,new A.aNu(A.I(t.S,t.mm)),o) +n=$.dD() +if(n===B.al)p=p===B.bG +else p=!1 +if(p)$.bBi().aQB() +o.e=o.apI() +$.btl=o}p=l.r +p.gacl(p).B1(m.gax8()) +$.hB=m}$.WB=B.a1r +case 1:return A.w(q,r)}}) +return A.x($async$bnx,r)}, +bSL(a){if(a===$.vS)return +$.vS=a}, +aqX(){var s=0,r=A.y(t.H),q,p,o +var $async$aqX=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:p=$.au() +p.gF8().ab(0) +s=$.vS!=null?2:3 +break +case 2:p=p.gF8() +q=$.vS +q.toString +o=p +s=5 +return A.t(A.ar9(q),$async$aqX) +case 5:s=4 +return A.t(o.tO(b),$async$aqX) +case 4:case 3:return A.w(null,r)}}) +return A.x($async$aqX,r)}, +bIj(a,b){return t.e.a({initializeEngine:A.cH(new A.aDq(b)),autoStart:A.cH(new A.aDr(a))})}, +bIi(a){return t.e.a({runApp:A.cH(new A.aDo(a))})}, +bns(a,b){var s=A.cH(new A.bh5(a,b)) +return new self.Promise(s)}, +bmS(a){var s=B.e.au(a) +return A.dW(B.e.au((a-s)*1000),s,0)}, +bQC(a,b){var s={} +s.a=null +return new A.beN(s,a,b)}, +bJl(){var s=new A.a3i(A.I(t.N,t.e)) +s.amG() +return s}, +bJn(a){switch(a.a){case 0:case 4:return new A.LA(A.bnW("M,2\u201ew\u2211wa2\u03a9q\u2021qb2\u02dbx\u2248xc3 c\xd4j\u2206jd2\xfee\xb4ef2\xfeu\xa8ug2\xfe\xff\u02c6ih3 h\xce\xff\u2202di3 i\xc7c\xe7cj2\xd3h\u02d9hk2\u02c7\xff\u2020tl5 l@l\xfe\xff|l\u02dcnm1~mn3 n\u0131\xff\u222bbo2\xaer\u2030rp2\xacl\xd2lq2\xc6a\xe6ar3 r\u03c0p\u220fps3 s\xd8o\xf8ot2\xa5y\xc1yu3 u\xa9g\u02ddgv2\u02dak\uf8ffkw2\xc2z\xc5zx2\u0152q\u0153qy5 y\xcff\u0192f\u02c7z\u03a9zz5 z\xa5y\u2021y\u2039\xff\u203aw.2\u221av\u25cav;4\xb5m\xcds\xd3m\xdfs/2\xb8z\u03a9z")) +case 3:return new A.LA(A.bnW(';b1{bc1&cf1[fg1]gm2y')) +case 1:case 2:case 5:return new A.LA(A.bnW("8a2@q\u03a9qk1&kq3@q\xc6a\xe6aw2xy2\xa5\xff\u2190\xffz51)s.push(new A.di(B.b.gO(o),null,B.b.gX(o))) +else s.push(new A.di(p,null,null))}return s}, +bRR(a,b){var s=a.oV(b),r=A.ar7(A.bm(s.b)) +switch(s.a){case"setDevicePixelRatio":$.dn().d=r +$.bO().r.$0() +return!0}return!1}, +t_(a,b){if(a==null)return +if(b===$.ac)a.$0() +else b.Gq(a)}, +WQ(a,b,c){if(a==null)return +if(b===$.ac)a.$1(c) +else b.y4(a,c)}, +bVP(a,b,c,d){if(b===$.ac)a.$2(c,d) +else b.Gq(new A.bhm(a,c,d))}, +bV3(){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.bzf(A.bke(self.window,p).getPropertyValue("font-size")) +return(q==null?16:q)/16}, +bKI(a,b,c,d,e,f,g,h){return new A.a7e(a,!1,f,e,h,d,c,g)}, +bxc(a,b){b.toString +t.pE.a(b) +return A.c8(self.document,A.bm(J.b7(b,"tagName")))}, +bTT(a){switch(a){case 0:return 1 +case 1:return 4 +case 2:return 2 +default:return B.f.yt(1,a)}}, +A4(a){var s=B.e.au(a) +return A.dW(B.e.au((a-s)*1000),s,0)}, +bni(a,b){var s,r,q,p,o=$.hL +if((o==null?$.hL=A.qj():o).x&&a.offsetX===0&&a.offsetY===0)return A.bQU(a,b) +o=$.hB.x +o===$&&A.b() +s=a.target +s.toString +if(o.contains(s)){o=$.arP() +r=o.goD().w +if(r!=null){a.target.toString +o.goD().c.toString +q=new A.dp(r.c).G5(a.offsetX,a.offsetY,0) +return new A.m(q.a,q.b)}}if(!J.j(a.target,b)){p=b.getBoundingClientRect() +return new A.m(a.clientX-p.x,a.clientY-p.y)}return new A.m(a.offsetX,a.offsetY)}, +bQU(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.m(q,p)}, +bil(a,b){var s=b.$0() +return s}, +bVc(){if($.bO().ch==null)return +$.bna=A.WE()}, +bVb(){if($.bO().ch==null)return +$.bmM=A.WE()}, +byH(){if($.bO().ch==null)return +$.bmL=A.WE()}, +byJ(){if($.bO().ch==null)return +$.bn3=A.WE()}, +byI(){var s,r,q=$.bO() +if(q.ch==null)return +s=$.bxH=A.WE() +$.bmV.push(new A.tN(A.a([$.bna,$.bmM,$.bmL,$.bn3,s,s,0,0,0,0,1],t.t))) +$.bxH=$.bn3=$.bmL=$.bmM=$.bna=-1 +if(s-$.bCB()>1e5){$.bRz=s +r=$.bmV +A.WQ(q.ch,q.CW,r) +$.bmV=A.a([],t.no)}}, +WE(){return B.e.au(self.window.performance.now()*1000)}, +bLn(a){var s=new A.aOW(A.I(t.N,t.qe),a) +s.amM(a) +return s}, +bSv(a){}, +bnt(a,b){return a[b]}, +bzf(a){var s=self.window.parseFloat(a) +if(s==null||isNaN(s))return null +return s}, +bWJ(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.bzf(A.bke(self.window,a).getPropertyValue("font-size")):q}, +bYO(a,b){var s,r=self.document.createElement("CANVAS") +if(r==null)return null +try{A.C2(r,a) +A.C1(r,b)}catch(s){return null}return r}, +bt9(){var s,r=$.bt8 +if(r==null){r=$.dD() +s=$.bt8=r!==B.al&&"OffscreenCanvas" in self.window +r=s}return r}, +bpM(a){var s=a===B.mf?"assertive":"polite",r=A.c8(self.document,"flt-announcement-"+s),q=r.style +A.Q(q,"position","fixed") +A.Q(q,"overflow","hidden") +A.Q(q,"transform","translate(-99999px, -99999px)") +A.Q(q,"width","1px") +A.Q(q,"height","1px") +q=A.b1(s) +if(q==null)q=t.K.a(q) +r.setAttribute("aria-live",q) +return r}, +bQM(a){var s=a.a +if((s&256)!==0)return B.aBs +else if((s&65536)!==0)return B.aBt +else return B.aBr}, +bIV(a){var s=new A.aHi(A.c8(self.document,"input"),new A.AU(a.k1),B.Nl,a) +s.amE(a) +return s}, +bHH(a){return new A.aBs(a)}, +aTX(a){var s=a.style +s.removeProperty("transform-origin") +s.removeProperty("transform") +s=$.fV() +if(s!==B.bG)s=s===B.d7 +else s=!0 +if(s){s=a.style +A.Q(s,"top","0px") +A.Q(s,"left","0px")}else{s=a.style +s.removeProperty("top") +s.removeProperty("left")}}, +qj(){var s=t.S,r=t.UF,q=A.a([],t.Qo),p=A.a([],t.qj),o=$.fV() +o=B.pe.p(0,o)?new A.ayv():new A.aKD() +o=new A.aBN(B.O5,A.I(s,r),A.I(s,r),q,p,new A.aBR(),new A.aTT(o),B.eo,A.a([],t.sQ)) +o.amy() +return o}, +bz2(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.aX(s,0,!1,t.S) +l=h[s] +for(r=s-1;r>=0;--r){m[r]=l +l=i[l]}return m}, +bMa(a){var s,r=$.On +if(r!=null)s=r.a===a +else s=!1 +if(s){r.toString +return r}return $.On=new A.aU3(a,A.a([],t.Up),$,$,$,null)}, +bm4(){var s=new Uint8Array(0),r=new DataView(new ArrayBuffer(8)) +return new A.b0T(new A.abg(s,0),r,A.eO(r.buffer,0,null))}, +byi(a){if(a===0)return B.i +return new A.m(200*a/600,400*a/600)}, +bTO(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.L(r-o,p-n,s+o,q+n).dq(A.byi(b)).e6(20)}, +bTQ(a,b){if(b===0)return null +return new A.aYu(Math.min(b*((800+(a.c-a.a)*0.5)/600),b*((800+(a.d-a.b)*0.5)/600)),A.byi(b))}, +bys(){var s=self.document.createElementNS("http://www.w3.org/2000/svg","svg"),r=A.b1("1.1") +if(r==null)r=t.K.a(r) +s.setAttribute("version",r) +return s}, +aSh(a,b){a.valueAsString=b +return b}, +aSf(a,b){a.baseVal=b +return b}, +uO(a,b){a.baseVal=b +return b}, +aSg(a,b){a.baseVal=b +return b}, +bkN(a,b,c,d,e,f,g,h){return new A.nd($,$,$,$,$,$,$,$,0,c,d,e,f,g,h,a,b)}, +bsu(a,b,c,d,e,f){var s=new A.aIx(d,f,a,b,e,c) +s.Dp() +return s}, +byz(){var s=$.bfJ +if(s==null){s=t.jQ +s=$.bfJ=new A.rp(A.bn9(u.K,937,B.zd,s),B.cl,A.I(t.S,s),t.MX)}return s}, +bJz(a){if(self.Intl.v8BreakIterator!=null)return new A.b0B(A.byu(),a) +return new A.aCr(a)}, +byd(a,b,c){var s,r,q,p,o,n,m,l,k=A.a([],t._f) +c.adoptText(b) +c.first() +for(s=a.length,r=0;c.next()!==-1;r=q){q=B.e.au(c.current()) +for(p=r,o=0,n=0;p0){k.push(new A.u8(B.er,o,n,r,p)) +r=p +o=0 +n=0}}if(o>0)l=B.dO +else l=q===s?B.dP:B.er +k.push(new A.u8(l,o,n,r,q))}if(k.length===0||B.b.gX(k).c===B.dO)k.push(new A.u8(B.dP,0,0,s,s)) +return k}, +bQT(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._f) +a.a=a.b=null +s=A.WP(a1,0) +r=A.byz().AI(s) +a.c=a.d=a.e=a.f=0 +q=new A.beW(a,a1,a0) +q.$2(B.U,2) +p=++a.f +for(o=a1.length,n=t.jQ,m=t.S,l=t.MX,k=B.cl,j=0;p<=o;p=++a.f){a.b=a.a +a.a=r +if(s!=null&&s>65535){q.$2(B.U,-1) +p=++a.f}s=A.WP(a1,p) +p=$.bfJ +r=(p==null?$.bfJ=new A.rp(A.bn9(u.K,937,B.zd,n),B.cl,A.I(m,n),l):p).AI(s) +i=a.a +j=i===B.jN?j+1:0 +if(i===B.hE||i===B.jL){q.$2(B.dO,5) +continue}if(i===B.jP){if(r===B.hE)q.$2(B.U,5) +else q.$2(B.dO,5) +continue}if(r===B.hE||r===B.jL||r===B.jP){q.$2(B.U,6) +continue}p=a.f +if(p>=o)break +if(r===B.fp||r===B.nH){q.$2(B.U,7) +continue}if(i===B.fp){q.$2(B.er,18) +continue}if(i===B.nH){q.$2(B.er,8) +continue}if(i===B.nI){q.$2(B.U,8) +continue}h=i!==B.nC +if(h&&!0)k=i==null?B.cl:i +if(r===B.nC||r===B.nI){if(k!==B.fp){if(k===B.jN)--j +q.$2(B.U,9) +r=k +continue}r=B.cl}if(!h||!1){a.a=k +h=k}else h=i +if(r===B.nK||h===B.nK){q.$2(B.U,11) +continue}if(h===B.nF){q.$2(B.U,12) +continue}g=h!==B.fp +if(!(!g||h===B.jI||h===B.hD)&&r===B.nF){q.$2(B.U,12) +continue}if(g)g=r===B.nE||r===B.hC||r===B.yi||r===B.jJ||r===B.nD +else g=!1 +if(g){q.$2(B.U,13) +continue}if(h===B.hB){q.$2(B.U,14) +continue}g=h===B.nN +if(g&&r===B.hB){q.$2(B.U,15) +continue}f=h!==B.nE +if((!f||h===B.hC)&&r===B.nG){q.$2(B.U,16) +continue}if(h===B.nJ&&r===B.nJ){q.$2(B.U,17) +continue}if(g||r===B.nN){q.$2(B.U,19) +continue}if(h===B.nM||r===B.nM){q.$2(B.er,20) +continue}if(r===B.jI||r===B.hD||r===B.nG||h===B.yg){q.$2(B.U,21) +continue}if(a.b===B.ck)g=h===B.hD||h===B.jI +else g=!1 +if(g){q.$2(B.U,21) +continue}g=h===B.nD +if(g&&r===B.ck){q.$2(B.U,21) +continue}if(r===B.yh){q.$2(B.U,22) +continue}e=h!==B.cl +if(!((!e||h===B.ck)&&r===B.dQ))if(h===B.dQ)d=r===B.cl||r===B.ck +else d=!1 +else d=!0 +if(d){q.$2(B.U,23) +continue}d=h===B.jQ +if(d)c=r===B.nL||r===B.jM||r===B.jO +else c=!1 +if(c){q.$2(B.U,23) +continue}if((h===B.nL||h===B.jM||h===B.jO)&&r===B.es){q.$2(B.U,23) +continue}c=!d +if(!c||h===B.es)b=r===B.cl||r===B.ck +else b=!1 +if(b){q.$2(B.U,24) +continue}if(!e||h===B.ck)b=r===B.jQ||r===B.es +else b=!1 +if(b){q.$2(B.U,24) +continue}if(!f||h===B.hC||h===B.dQ)f=r===B.es||r===B.jQ +else f=!1 +if(f){q.$2(B.U,25) +continue}f=h!==B.es +if((!f||d)&&r===B.hB){q.$2(B.U,25) +continue}if((!f||!c||h===B.hD||h===B.jJ||h===B.dQ||g)&&r===B.dQ){q.$2(B.U,25) +continue}g=h===B.jK +if(g)f=r===B.jK||r===B.hF||r===B.hH||r===B.hI +else f=!1 +if(f){q.$2(B.U,26) +continue}f=h!==B.hF +if(!f||h===B.hH)c=r===B.hF||r===B.hG +else c=!1 +if(c){q.$2(B.U,26) +continue}c=h!==B.hG +if((!c||h===B.hI)&&r===B.hG){q.$2(B.U,26) +continue}if((g||!f||!c||h===B.hH||h===B.hI)&&r===B.es){q.$2(B.U,27) +continue}if(d)g=r===B.jK||r===B.hF||r===B.hG||r===B.hH||r===B.hI +else g=!1 +if(g){q.$2(B.U,27) +continue}if(!e||h===B.ck)g=r===B.cl||r===B.ck +else g=!1 +if(g){q.$2(B.U,28) +continue}if(h===B.jJ)g=r===B.cl||r===B.ck +else g=!1 +if(g){q.$2(B.U,29) +continue}if(!e||h===B.ck||h===B.dQ)if(r===B.hB){g=a1.charCodeAt(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.U,30) +continue}if(h===B.hC){p=a1.charCodeAt(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.cl||r===B.ck||r===B.dQ +else p=!1}else p=!1 +if(p){q.$2(B.U,30) +continue}if(r===B.jN){if((j&1)===1)q.$2(B.U,30) +else q.$2(B.er,30) +continue}if(h===B.jM&&r===B.jO){q.$2(B.U,30) +continue}q.$2(B.er,31)}q.$2(B.dP,3) +return a0}, +w_(a,b,c,d,e){var s,r,q,p +if(c===d)return 0 +s=a.font +if(c===$.bxz&&d===$.bxy&&b===$.bxA&&s===$.bxx)r=$.bxB +else{q=c===0&&d===b.length?b:B.c.S(b,c,d) +p=a.measureText(q).width +if(p==null)p=null +p.toString +r=p}$.bxz=c +$.bxy=d +$.bxA=b +$.bxx=s +$.bxB=r +if(e==null)e=0 +return B.e.bg((e!==0?r+e*(d-c):r)*100)/100}, +brq(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.Kf(b,c,d,e,f,m,k,a1,!s,r,h,i,l,j,p,a2,o,q,a,n,a0)}, +byE(a){if(a==null)return null +return A.byD(a.a)}, +byD(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""}, +bSM(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.j +r=$.boK().AI(q) +if(r!=null)return r +return null}, +bmY(a,b){var s=A.WP(a,b) +s.toString +if(s>=48&&s<=57)return B.jA +if(s>=1632&&s<=1641)return B.xr +switch($.boK().AI(s)){case B.j:return B.xq +case B.ab:return B.xr +case null:case void 0:return B.ns}}, +WP(a,b){var s,r +if(b<0||b>=a.length)return null +s=a.charCodeAt(b) +if((s&63488)===55296&&b>>6&31)+1<<16|(r&63)<<10|a.charCodeAt(b+1)&1023}return s}, +bNH(a,b,c){return new A.rp(a,b,A.I(t.S,c),c.h("rp<0>"))}, +bNI(a,b,c,d,e){return new A.rp(A.bn9(a,b,c,e),d,A.I(t.S,e),e.h("rp<0>"))}, +bn9(a,b,c,d){var s,r,q,p,o,n=A.a([],d.h("H>")),m=a.length +for(s=d.h("eE<0>"),r=0;r=0&&q<=r))break +q+=s +if(A.bO3(b,q))break}return A.vV(q,0,r)}, +bO3(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((a.charCodeAt(s)&63488)===55296)return!1 +r=$.Xe().LK(0,a,b) +q=$.Xe().LK(0,a,s) +if(q===B.lK&&r===B.lL)return!1 +if(A.hW(q,B.q_,B.lK,B.lL,j,j))return!0 +if(A.hW(r,B.q_,B.lK,B.lL,j,j))return!0 +if(q===B.pZ&&r===B.pZ)return!1 +if(A.hW(r,B.iE,B.iF,B.iD,j,j))return!1 +for(p=0;A.hW(q,B.iE,B.iF,B.iD,j,j);){++p +s=b-p-1 +if(s<0)return!0 +o=$.Xe() +n=A.WP(a,s) +q=n==null?o.b:o.AI(n)}if(A.hW(q,B.cU,B.bP,j,j,j)&&A.hW(r,B.cU,B.bP,j,j,j))return!1 +m=0 +do{++m +l=$.Xe().LK(0,a,b+m)}while(A.hW(l,B.iE,B.iF,B.iD,j,j)) +do{++p +k=$.Xe().LK(0,a,b-p-1)}while(A.hW(k,B.iE,B.iF,B.iD,j,j)) +if(A.hW(q,B.cU,B.bP,j,j,j)&&A.hW(r,B.pX,B.iC,B.h1,j,j)&&A.hW(l,B.cU,B.bP,j,j,j))return!1 +if(A.hW(k,B.cU,B.bP,j,j,j)&&A.hW(q,B.pX,B.iC,B.h1,j,j)&&A.hW(r,B.cU,B.bP,j,j,j))return!1 +s=q===B.bP +if(s&&r===B.h1)return!1 +if(s&&r===B.pW&&l===B.bP)return!1 +if(k===B.bP&&q===B.pW&&r===B.bP)return!1 +s=q===B.du +if(s&&r===B.du)return!1 +if(A.hW(q,B.cU,B.bP,j,j,j)&&r===B.du)return!1 +if(s&&A.hW(r,B.cU,B.bP,j,j,j))return!1 +if(k===B.du&&A.hW(q,B.pY,B.iC,B.h1,j,j)&&r===B.du)return!1 +if(s&&A.hW(r,B.pY,B.iC,B.h1,j,j)&&l===B.du)return!1 +if(q===B.iG&&r===B.iG)return!1 +if(A.hW(q,B.cU,B.bP,B.du,B.iG,B.lJ)&&r===B.lJ)return!1 +if(q===B.lJ&&A.hW(r,B.cU,B.bP,B.du,B.iG,j))return!1 +return!0}, +hW(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}, +bHK(a){switch(a){case"TextInputAction.continueAction":case"TextInputAction.next":return B.Ss +case"TextInputAction.previous":return B.Sz +case"TextInputAction.done":return B.S2 +case"TextInputAction.go":return B.Se +case"TextInputAction.newline":return B.S9 +case"TextInputAction.search":return B.SM +case"TextInputAction.send":return B.SN +case"TextInputAction.emergencyCall":case"TextInputAction.join":case"TextInputAction.none":case"TextInputAction.route":case"TextInputAction.unspecified":default:return B.St}}, +bro(a,b){switch(a){case"TextInputType.number":return b?B.RY:B.Su +case"TextInputType.phone":return B.Sy +case"TextInputType.emailAddress":return B.S6 +case"TextInputType.url":return B.T4 +case"TextInputType.multiline":return B.Sr +case"TextInputType.none":return B.qU +case"TextInputType.text":default:return B.T0}}, +bN_(a){var s +if(a==="TextCapitalization.words")s=B.OT +else if(a==="TextCapitalization.characters")s=B.OV +else s=a==="TextCapitalization.sentences"?B.OU:B.pC +return new A.Pk(s)}, +bRg(a){}, +ar2(a,b,c,d){var s,r="transparent",q="none",p=a.style +A.Q(p,"white-space","pre-wrap") +A.Q(p,"align-content","center") +A.Q(p,"padding","0") +A.Q(p,"opacity","1") +A.Q(p,"color",r) +A.Q(p,"background-color",r) +A.Q(p,"background",r) +A.Q(p,"outline",q) +A.Q(p,"border",q) +A.Q(p,"resize",q) +A.Q(p,"text-shadow",r) +A.Q(p,"transform-origin","0 0 0") +if(b){A.Q(p,"top","-9999px") +A.Q(p,"left","-9999px")}if(d){A.Q(p,"width","0") +A.Q(p,"height","0")}if(c)A.Q(p,"pointer-events",q) +s=$.dD() +if(s!==B.dA)s=s===B.al +else s=!0 +if(s)a.classList.add("transparentTextEditing") +A.Q(p,"caret-color",r)}, +bHI(a6,a7){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==null)return a5 +s=t.N +r=A.I(s,t.e) +q=A.I(s,t.M1) +p=A.c8(self.document,"form") +o=$.arP().goD() instanceof A.a8L +p.noValidate=!0 +p.method="post" +p.action="#" +A.dV(p,"submit",$.bj0(),a5) +A.ar2(p,!1,o,!0) +n=J.CW(0,s) +m=A.bju(a6,B.OS) +if(a7!=null)for(s=t.a,l=J.j6(a7,s),k=A.l(l),l=new A.c2(l,l.gt(l),k.h("c2")),j=m.b,k=k.h("ae.E"),i=!o,h=a5,g=!1;l.v();){f=l.d +if(f==null)f=k.a(f) +e=J.aj(f) +d=s.a(e.i(f,"autofill")) +c=A.bm(e.i(f,"textCapitalization")) +if(c==="TextCapitalization.words")c=B.OT +else if(c==="TextCapitalization.characters")c=B.OV +else c=c==="TextCapitalization.sentences"?B.OU:B.pC +b=A.bju(d,new A.Pk(c)) +c=b.b +n.push(c) +if(c!==j){a=A.bro(A.bm(J.b7(s.a(e.i(f,"inputType")),"name")),!1).Up() +b.a.jK(a) +b.jK(a) +A.ar2(a,!1,o,i) +q.n(0,c,b) +r.n(0,c,a) +p.append(a) +if(g){h=a +g=!1}}else g=!0}else{n.push(m.b) +h=a5}B.b.lY(n) +for(s=n.length,a0=0,l="";a00?l+"*":l)+a1}a2=l.charCodeAt(0)==0?l:l +a3=$.WO.i(0,a2) +if(a3!=null)a3.remove() +a4=A.c8(self.document,"input") +A.ar2(a4,!0,!1,!0) +a4.className="submitBtn" +A.azs(a4,"submit") +p.append(a4) +return new A.aBt(p,r,q,h==null?a4:h,a2)}, +bju(a,b){var s,r=J.aj(a),q=A.bm(r.i(a,"uniqueIdentifier")),p=t.kc.a(r.i(a,"hints")),o=p==null||J.cf(p)?null:A.bm(J.jD(p)),n=A.brk(t.a.a(r.i(a,"editingValue"))) +if(o!=null){s=$.bAm().a.i(0,o) +if(s==null)s=o}else s=null +return new A.Y5(n,q,s,A.af(r.i(a,"hintText")))}, +bn4(a,b,c){var s=c.a,r=c.b,q=Math.min(s,r) +r=Math.max(s,r) +return B.c.S(a,0,q)+b+B.c.cm(a,r)}, +bN0(a1,a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h=a3.a,g=a3.b,f=a3.c,e=a3.d,d=a3.e,c=a3.f,b=a3.r,a=a3.w,a0=new A.Fl(h,g,f,e,d,c,b,a) +d=a2==null +c=d?null:a2.b +s=c==(d?null:a2.c) +c=g.length +r=c===0 +q=r&&e!==-1 +r=!r +p=r&&!s +if(q){o=h.length-a1.a.length +f=a1.b +if(f!==(d?null:a2.b)){f=e-o +a0.c=f}else{a0.c=f +e=f+o +a0.d=e}}else if(p){f=a2.b +d=a2.c +if(f>d)f=d +a0.c=f}n=b!=null&&b!==a +if(r&&s&&n){b.toString +f=a0.c=b}if(!(f===-1&&f===e)){m=A.bn4(h,g,new A.dl(f,e)) +f=a1.a +f.toString +if(m!==f){l=B.c.p(g,".") +for(e=A.bE(A.arg(g),!0,!1,!1).t9(0,f),e=new A.ru(e.a,e.b,e.c),d=t.Qz,b=h.length;e.v();){k=e.d +a=(k==null?d.a(k):k).b +r=a.index +if(!(r>=0&&r+a[0].length<=b)){j=r+c-1 +i=A.bn4(h,g,new A.dl(r,j))}else{j=l?r+a[0].length-1:r+a[0].length +i=A.bn4(h,g,new A.dl(r,j))}if(i===f){a0.c=r +a0.d=j +break}}}}a0.e=a1.b +a0.f=a1.c +return a0}, +K7(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.Cd(e,r,Math.max(0,s),b,c)}, +brk(a){var s=J.aj(a),r=A.af(s.i(a,"text")),q=B.e.au(A.oa(s.i(a,"selectionBase"))),p=B.e.au(A.oa(s.i(a,"selectionExtent"))),o=A.bkM(a,"composingBase"),n=A.bkM(a,"composingExtent") +s=o==null?-1:o +return A.K7(q,s,n==null?-1:n,p,r)}, +brj(a){var s,r,q,p=null,o=globalThis.HTMLInputElement +if(o!=null&&a instanceof o){s=a.selectionDirection +if((s==null?p:s)==="backward"){s=A.bkc(a) +r=A.bqU(a) +r=r==null?p:B.e.au(r) +q=A.bqV(a) +return A.K7(r,-1,-1,q==null?p:B.e.au(q),s)}else{s=A.bkc(a) +r=A.bqV(a) +r=r==null?p:B.e.au(r) +q=A.bqU(a) +return A.K7(r,-1,-1,q==null?p:B.e.au(q),s)}}else{o=globalThis.HTMLTextAreaElement +if(o!=null&&a instanceof o){s=a.selectionDirection +if((s==null?p:s)==="backward"){s=A.br_(a) +r=A.bqY(a) +r=r==null?p:B.e.au(r) +q=A.bqZ(a) +return A.K7(r,-1,-1,q==null?p:B.e.au(q),s)}else{s=A.br_(a) +r=A.bqZ(a) +r=r==null?p:B.e.au(r) +q=A.bqY(a) +return A.K7(r,-1,-1,q==null?p:B.e.au(q),s)}}else throw A.c(A.aa("Initialized with unsupported input type"))}}, +bsf(a){var s,r,q,p,o,n="inputType",m="autofill",l=J.aj(a),k=t.a,j=A.bm(J.b7(k.a(l.i(a,n)),"name")),i=A.cN(J.b7(k.a(l.i(a,n)),"decimal")) +j=A.bro(j,i===!0) +i=A.af(l.i(a,"inputAction")) +if(i==null)i="TextInputAction.done" +s=A.cN(l.i(a,"obscureText")) +r=A.cN(l.i(a,"readOnly")) +q=A.cN(l.i(a,"autocorrect")) +p=A.bN_(A.bm(l.i(a,"textCapitalization"))) +k=l.aq(a,m)?A.bju(k.a(l.i(a,m)),B.OS):null +o=A.bHI(t.nA.a(l.i(a,m)),t.kc.a(l.i(a,"fields"))) +l=A.cN(l.i(a,"enableDeltaModel")) +return new A.aHo(j,i,r===!0,s===!0,q!==!1,l===!0,k,o,p)}, +bIG(a){return new A.a2n(a,A.a([],t.Up),$,$,$,null)}, +bXT(){$.WO.al(0,new A.bi0())}, +bTG(){var s,r,q +for(s=$.WO.gbp($.WO),r=A.l(s),r=r.h("@<1>").V(r.z[1]),s=new A.bT(J.al(s.a),s.b,r.h("bT<1,2>")),r=r.z[1];s.v();){q=s.a +if(q==null)q=r.a(q) +q.remove()}$.WO.ab(0)}, +bHu(a){var s=J.aj(a),r=A.hl(J.cx(t.j.a(s.i(a,"transform")),new A.aAr(),t.z),!0,t.i) +return new A.aAq(A.oa(s.i(a,"width")),A.oa(s.i(a,"height")),new Float32Array(A.mI(r)))}, +bnO(a,b){var s=a.style +A.Q(s,"transform-origin","0 0 0") +A.Q(s,"transform",A.mL(b))}, +mL(a){var s=A.bim(a) +if(s===B.Pf)return"matrix("+A.i(a[0])+","+A.i(a[1])+","+A.i(a[4])+","+A.i(a[5])+","+A.i(a[12])+","+A.i(a[13])+")" +else if(s===B.lG)return A.bV7(a) +else return"none"}, +bim(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.lG +if(a[0]===1&&a[1]===0&&a[4]===0&&a[5]===1&&a[12]===0&&a[13]===0)return B.Pe +else return B.Pf}, +bV7(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.i(a[12])+"px, "+A.i(a[13])+"px, 0px)" +else return"matrix3d("+A.i(s)+","+A.i(a[1])+","+A.i(a[2])+","+A.i(a[3])+","+A.i(a[4])+","+A.i(a[5])+","+A.i(a[6])+","+A.i(a[7])+","+A.i(a[8])+","+A.i(a[9])+","+A.i(a[10])+","+A.i(a[11])+","+A.i(a[12])+","+A.i(a[13])+","+A.i(a[14])+","+A.i(a[15])+")"}, +bin(a,b){var s=$.bDr() +s[0]=b.a +s[1]=b.b +s[2]=b.c +s[3]=b.d +A.bnV(a,s) +return new A.L(s[0],s[1],s[2],s[3])}, +bnV(a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=$.boJ() +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=$.bDq().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}, +bzt(a,b){return a.a<=b.a&&a.b<=b.b&&a.c>=b.c&&a.d>=b.d}, +fd(a){var s,r +if(a===4278190080)return"#000000" +if((a&4278190080)>>>0===4278190080){s=B.f.of(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.l(a>>>16&255)+","+B.f.l(a>>>8&255)+","+B.f.l(a&255)+","+B.e.l((a>>>24&255)/255)+")" +return r.charCodeAt(0)==0?r:r}}, +bTJ(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.e.aF(d/255,2)+")"}, +bxl(){if(A.bVU())return"BlinkMacSystemFont" +var s=$.fV() +if(s!==B.bG)s=s===B.d7 +else s=!0 +if(s)return"-apple-system, BlinkMacSystemFont" +return"Arial"}, +bgh(a){var s +if(B.aqv.p(0,a))return a +s=$.fV() +if(s!==B.bG)s=s===B.d7 +else s=!0 +if(s)if(a===".SF Pro Text"||a===".SF Pro Display"||a===".SF UI Text"||a===".SF UI Display")return A.bxl() +return'"'+A.i(a)+'", '+A.bxl()+", sans-serif"}, +vV(a,b,c){if(ac)return c +else return a}, +vZ(a,b){var s +if(a==null)return b==null +if(b==null||a.length!==b.length)return!1 +for(s=0;s")).ck(0," ")}, +fF(a,b,c){A.Q(a.style,b,c)}, +bzA(a){var s=self.document.querySelector("#flutterweb-theme") +if(a!=null){if(s==null){s=A.c8(self.document,"meta") +s.id="flutterweb-theme" +s.name="theme-color" +self.document.head.append(s)}s.content=A.fd(a.a)}else if(s!=null)s.remove()}, +WN(a,b,c,d,e,f,g,h,i){var s=$.bxe +if(s==null?$.bxe=a.ellipse!=null:s)A.cj(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.cj(a,"arc",[0,0,1,g,h,i]) +a.restore()}}, +bnJ(a){var s +for(;a.lastChild!=null;){s=a.lastChild +if(s.parentNode!=null)s.parentNode.removeChild(s)}}, +bkT(a,b,c){var s=b.h("@<0>").V(c),r=new A.Ac(s.h("Ac<+key,value(1,2)>")) +r.a=r +r.b=r +return new A.a3I(a,new A.wZ(r,s.h("wZ<+key,value(1,2)>")),A.I(b,s.h("brc<+key,value(1,2)>")),s.h("a3I<1,2>"))}, +fL(){var s=new Float32Array(16) +s[15]=1 +s[0]=1 +s[5]=1 +s[10]=1 +return new A.dp(s)}, +bK4(a){return new A.dp(a)}, +bK7(a){var s=new A.dp(new Float32Array(16)) +if(s.j6(a)===0)return null +return s}, +X_(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}, +bGr(a){var s=new A.a0u(a,new A.lI(null,null,t.Qh)) +s.amw(a) +return s}, +bGR(a){var s,r +if(a!=null)return A.bGr(a) +else{s=new A.a2b(new A.lI(null,null,t.pA)) +r=self.window.visualViewport +if(r==null)r=self.window +s.a=A.eK(r,"resize",s.gayF()) +return s}}, +bHF(a){if(a!=null){A.bHd(a) +return new A.aya(a)}else return new A.aEi()}, +bHJ(a,b){var s=new A.a1q(a,b,A.cR(null,t.H),B.iB) +s.amx(a,b) +return s}, +I4:function I4(a){var _=this +_.a=a +_.d=_.c=_.b=null}, +asu:function asu(a,b){this.a=a +this.b=b}, +asw:function asw(a){this.a=a}, +asx:function asx(a){this.a=a}, +asv:function asv(a){this.a=a}, +IL:function IL(a,b){this.a=a +this.b=b}, +qP:function qP(a,b){this.a=a +this.b=b}, +avL:function avL(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}, +axE:function axE(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}, +am9:function am9(){}, +l7:function l7(a){this.a=a}, +awV:function awV(a,b,c){this.a=a +this.b=b +this.c=c}, +beR:function beR(){}, +bf9:function bf9(a,b){this.a=a +this.b=b}, +bf8:function bf8(a,b){this.a=a +this.b=b}, +avH:function avH(a){this.a=a}, +a3L:function a3L(a){this.a=a +this.b=$}, +Z4:function Z4(){}, +J3:function J3(a,b){this.a=a +this.b=b}, +J5:function J5(a){this.a=a}, +Bu:function Bu(a,b){this.a=a +this.b=b}, +a2I:function a2I(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}, +aGu:function aGu(){}, +aGv:function aGv(a){this.a=a}, +aGr:function aGr(){}, +aGs:function aGs(a){this.a=a}, +aGt:function aGt(a){this.a=a}, +un:function un(a,b){this.a=a +this.b=b}, +yj:function yj(a,b){this.a=a +this.b=b}, +nk:function nk(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +Me:function Me(a){this.a=a}, +a1k:function a1k(a,b){this.a=a +this.b=b}, +pn:function pn(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +bgy:function bgy(a,b){this.a=a +this.b=b}, +bgx:function bgx(a,b){this.a=a +this.b=b}, +a9x:function a9x(a,b,c,d,e){var _=this +_.a=a +_.b=$ +_.c=b +_.d=c +_.e=d +_.f=e +_.w=_.r=null}, +aVf:function aVf(){}, +aVg:function aVg(){}, +aVh:function aVh(a){this.a=a}, +aVi:function aVi(a){this.a=a}, +aVj:function aVj(){}, +yY:function yY(a,b,c){this.a=a +this.b=b +this.c=c}, +ve:function ve(a,b,c){this.a=a +this.b=b +this.c=c}, +xl:function xl(a,b,c){this.a=a +this.b=b +this.c=c}, +aVe:function aVe(a){this.a=a}, +a2P:function a2P(a){this.a=a}, +bhX:function bhX(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Bv:function Bv(a,b){var _=this +_.a=$ +_.b=a +_.c=b +_.d=!1}, +Z6:function Z6(){}, +QX:function QX(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=$}, +QY:function QY(a,b){this.a=a +this.b=b +this.d=$}, +Z2:function Z2(a,b,c,d){var _=this +_.a=$ +_.b=a +_.c=b +_.d=0 +_.e=-1 +_.f=c +_.r=d +_.w=!1}, +J4:function J4(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.e=_.d=$ +_.f=!1 +_.r=0 +_.w=null +_.x=d}, +iI:function iI(){}, +aNL:function aNL(a){this.c=a}, +aN_:function aN_(a,b){this.a=a +this.b=b}, +BL:function BL(){}, +a8A:function a8A(a,b){this.c=a +this.a=null +this.b=b}, +Yb:function Yb(a,b,c,d){var _=this +_.f=a +_.r=b +_.c=c +_.a=null +_.b=d}, +Ze:function Ze(a,b,c,d){var _=this +_.f=a +_.r=b +_.c=c +_.a=null +_.b=d}, +Zh:function Zh(a,b,c,d){var _=this +_.f=a +_.r=b +_.c=c +_.a=null +_.b=d}, +Zg:function Zg(a,b,c,d){var _=this +_.f=a +_.r=b +_.c=c +_.a=null +_.b=d}, +a6x:function a6x(a,b,c,d){var _=this +_.f=a +_.r=b +_.c=c +_.a=null +_.b=d}, +PL:function PL(a,b,c){var _=this +_.f=a +_.c=b +_.a=null +_.b=c}, +a6v:function a6v(a,b,c){var _=this +_.f=a +_.c=b +_.a=null +_.b=c}, +a2Q:function a2Q(a,b,c,d){var _=this +_.f=a +_.r=b +_.c=c +_.a=null +_.b=d}, +aGZ:function aGZ(a,b){this.a=a +this.b=b}, +a9i:function a9i(a,b,c,d,e,f){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.c=e +_.a=null +_.b=f}, +a7a:function a7a(a,b,c){var _=this +_.c=a +_.d=b +_.a=null +_.b=c}, +a3r:function a3r(a){this.a=a}, +aI6:function aI6(a){this.a=a +this.b=$}, +aI7:function aI7(a,b){this.a=a +this.b=b}, +aE6:function aE6(a,b,c){this.a=a +this.b=b +this.c=c}, +aEd:function aEd(a,b,c){this.a=a +this.b=b +this.c=c}, +aEe:function aEe(a,b,c){this.a=a +this.b=b +this.c=c}, +axv:function axv(){}, +awX:function awX(a,b){this.a=a +this.b=b +this.c=$}, +Z8:function Z8(a){this.a=a}, +bfj:function bfj(){}, +aLI:function aLI(){}, +js:function js(a,b){this.a=null +this.b=a +this.$ti=b}, +Zw:function Zw(a,b){var _=this +_.a=$ +_.b=1 +_.c=a +_.$ti=b}, +Bw:function Bw(a,b,c,d,e,f){var _=this +_.a=a +_.b=$ +_.c=null +_.d=b +_.e=c +_.f=0 +_.r=d +_.w=e +_.x=!0 +_.y=4278190080 +_.z=!1 +_.ax=_.at=_.as=_.Q=null +_.ay=f +_.CW=_.ch=null}, +awY:function awY(a){this.a=a}, +J7:function J7(a){this.a=$ +this.b=a}, +Zb:function Zb(){this.a=$ +this.b=!1 +this.c=null}, +tn:function tn(){this.b=this.a=null}, +aOS:function aOS(a,b){this.a=a +this.b=b}, +Bk:function Bk(a,b){this.a=a +this.b=b}, +YK:function YK(){var _=this +_.a=null +_.b=$ +_.c=null +_.d=$}, +avI:function avI(a){this.a=a}, +a9o:function a9o(){}, +Z5:function Z5(a,b,c,d,e,f){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.a=$}, +P4:function P4(a,b){this.a=a +this.b=b}, +pf:function pf(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}, +aYv:function aYv(a){this.a=a}, +Zc:function Zc(a,b){this.a=a +this.b=b +this.c=!1}, +aax:function aax(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=$ +_.d=c +_.e=d}, +Za:function Za(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +J9:function J9(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=$}, +ax_:function ax_(a){this.a=a}, +J8:function J8(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}, +Z9:function Z9(a){var _=this +_.a=$ +_.b=-1/0 +_.c=a +_.d=0 +_.e=!1 +_.z=_.y=_.x=_.w=_.r=_.f=0 +_.Q=$ +_.as=!1}, +Z7:function Z7(a){this.a=a}, +awZ:function awZ(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=0 +_.d=c +_.e=d}, +bfx:function bfx(a){this.a=a}, +Lc:function Lc(a,b){this.a=a +this.b=b}, +YJ:function YJ(a){this.a=a}, +Jd:function Jd(a,b){this.a=a +this.b=b}, +axk:function axk(a,b){this.a=a +this.b=b}, +axl:function axl(a,b){this.a=a +this.b=b}, +axf:function axf(a){this.a=a}, +axg:function axg(a,b){this.a=a +this.b=b}, +axe:function axe(a){this.a=a}, +axi:function axi(a){this.a=a}, +axj:function axj(a){this.a=a}, +axh:function axh(a){this.a=a}, +axb:function axb(){}, +axc:function axc(){}, +aC3:function aC3(){}, +aC4:function aC4(){}, +axs:function axs(a,b){this.a=a +this.b=b}, +aBx:function aBx(a,b){this.a=a +this.b=b}, +aDp:function aDp(){this.a=!1 +this.b=null}, +a1p:function a1p(a,b){this.a=a +this.b=b +this.d=null}, +aSX:function aSX(){}, +azr:function azr(a){this.a=a}, +azt:function azt(){}, +a2L:function a2L(a,b){this.a=a +this.b=b}, +aGH:function aGH(a){this.a=a}, +a2K:function a2K(a,b){this.a=a +this.b=b}, +KY:function KY(a,b){this.a=a +this.b=b}, +a13:function a13(a,b,c){this.a=a +this.b=b +this.c=c}, +JU:function JU(a,b){this.a=a +this.b=b}, +bgs:function bgs(a){this.a=a}, +bfZ:function bfZ(){}, +agd:function agd(a,b){this.a=a +this.b=-1 +this.$ti=b}, +hX:function hX(a,b){this.a=a +this.$ti=b}, +agi:function agi(a,b){this.a=a +this.b=-1 +this.$ti=b}, +rA:function rA(a,b){this.a=a +this.$ti=b}, +a12:function a12(a,b){this.a=a +this.b=$ +this.$ti=b}, +a2_:function a2_(a){var _=this +_.a=a +_.e=_.d=_.c=_.b=null +_.y=_.x=_.w=_.r=_.f=$}, +aBw:function aBw(){}, +a8N:function a8N(a,b){this.a=a +this.b=b}, +z9:function z9(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +am8:function am8(a,b){this.a=a +this.b=b}, +aSl:function aSl(){}, +bi2:function bi2(){}, +bi1:function bi1(){}, +aDH:function aDH(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.a=a +_.b=$ +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.w=g +_.x=h +_.y=i +_.z=j +_.Q=k +_.as=l +_.at=m +_.ax=!1 +_.ch=_.ay=$}, +aDI:function aDI(){}, +aDJ:function aDJ(){}, +aDK:function aDK(){}, +aDL:function aDL(){}, +aDM:function aDM(){}, +aDN:function aDN(){}, +aDP:function aDP(a){this.a=a}, +aDQ:function aDQ(){}, +aDO:function aDO(a){this.a=a}, +aoK:function aoK(a,b,c){this.a=a +this.b=b +this.$ti=c}, +a1H:function a1H(a,b,c){var _=this +_.a=a +_.c=b +_.d=c +_.f=null}, +aCv:function aCv(a,b,c){this.a=a +this.b=b +this.c=c}, +Cu:function Cu(a,b){this.a=a +this.b=b}, +xm:function xm(a,b){this.a=a +this.b=b}, +KF:function KF(a){this.a=a}, +bgV:function bgV(a){this.a=a}, +bgW:function bgW(a){this.a=a}, +bgX:function bgX(){}, +bgU:function bgU(){}, +i9:function i9(){}, +a26:function a26(a){this.a=a}, +KD:function KD(a){this.a=a}, +KE:function KE(a){this.a=a}, +Iq:function Iq(){}, +jQ:function jQ(a,b){this.a=a +this.$ti=b}, +Zx:function Zx(a){this.b=this.a=null +this.$ti=a}, +G8:function G8(a,b,c){this.a=a +this.b=b +this.$ti=c}, +MP:function MP(a,b,c,d){var _=this +_.CW=a +_.dx=_.db=_.cy=_.cx=null +_.dy=$ +_.fr=null +_.x=b +_.a=c +_.b=-1 +_.c=d +_.w=_.r=_.f=_.e=_.d=null}, +q_:function q_(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}, +eo:function eo(a){this.b=a}, +aYp:function aYp(a){this.a=a}, +Ro:function Ro(){}, +MR:function MR(a,b,c,d,e,f){var _=this +_.CW=a +_.cx=b +_.lj$=c +_.x=d +_.a=e +_.b=-1 +_.c=f +_.w=_.r=_.f=_.e=_.d=null}, +a74:function a74(a,b,c,d,e,f){var _=this +_.CW=a +_.cx=b +_.lj$=c +_.x=d +_.a=e +_.b=-1 +_.c=f +_.w=_.r=_.f=_.e=_.d=null}, +MQ:function MQ(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}, +aYx:function aYx(a,b,c){this.a=a +this.b=b +this.c=c}, +aYw:function aYw(a,b){this.a=a +this.b=b}, +azm:function azm(a,b,c,d){var _=this +_.a=a +_.aa7$=b +_.F2$=c +_.tC$=d}, +MS:function MS(a,b,c,d,e){var _=this +_.CW=a +_.cx=b +_.dx=_.db=_.cy=null +_.x=c +_.a=d +_.b=-1 +_.c=e +_.w=_.r=_.f=_.e=_.d=null}, +MT:function MT(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}, +MU:function MU(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}, +Fa:function Fa(a){this.a=a +this.b=!1}, +aay:function aay(){var _=this +_.e=_.d=_.c=_.b=_.a=null +_.f=!0 +_.r=4278190080 +_.z=_.y=_.x=_.w=null}, +kv:function kv(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +aOw:function aOw(){var _=this +_.d=_.c=_.b=_.a=0}, +axx:function axx(){var _=this +_.d=_.c=_.b=_.a=0}, +af8:function af8(){this.b=this.a=null}, +ay_:function ay_(){var _=this +_.d=_.c=_.b=_.a=0}, +v4:function v4(a,b){var _=this +_.a=a +_.b=b +_.c=0 +_.e=_.d=-1}, +aN6:function aN6(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=!1 +_.e=0 +_.f=-1 +_.Q=_.z=_.y=_.x=_.w=_.r=0}, +DM:function DM(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}, +uu:function uu(a){var _=this +_.a=a +_.b=-1 +_.e=_.d=_.c=0}, +r1:function r1(){this.b=this.a=null}, +aVd:function aVd(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +aN7:function aN7(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.e=_.d=0 +_.f=d}, +uq:function uq(a,b){this.a=a +this.b=b}, +a77:function a77(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}, +aNc:function aNc(a){this.a=a}, +aQh:function aQh(a,b,c){var _=this +_.a=a +_.b=null +_.c=b +_.d=c +_.f=_.e=!1 +_.r=1}, +fa:function fa(){}, +K1:function K1(){}, +MI:function MI(){}, +a6W:function a6W(){}, +a7_:function a7_(a,b){this.a=a +this.b=b}, +a6Y:function a6Y(a,b){this.a=a +this.b=b}, +a6X:function a6X(a){this.a=a}, +a6Z:function a6Z(a){this.a=a}, +a6K:function a6K(a,b){var _=this +_.f=a +_.r=b +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +a6J:function a6J(a){var _=this +_.f=a +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +a6I:function a6I(a){var _=this +_.f=a +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +a6O:function a6O(a,b,c){var _=this +_.f=a +_.r=b +_.w=c +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +a6Q:function a6Q(a){var _=this +_.f=a +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +a6U:function a6U(a,b){var _=this +_.f=a +_.r=b +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +a6T:function a6T(a,b){var _=this +_.f=a +_.r=b +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +a6M:function a6M(a,b,c){var _=this +_.f=a +_.r=b +_.w=c +_.x=null +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +a6P:function a6P(a,b){var _=this +_.f=a +_.r=b +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +a6L:function a6L(a,b,c){var _=this +_.f=a +_.r=b +_.w=c +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +a6S:function a6S(a,b){var _=this +_.f=a +_.r=b +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +a6V:function a6V(a,b,c,d){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +a6N:function a6N(a,b,c,d){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +a6R:function a6R(a,b){var _=this +_.f=a +_.r=b +_.a=!1 +_.c=_.b=-1/0 +_.e=_.d=1/0}, +b9m:function b9m(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}, +aRo:function aRo(){var _=this +_.d=_.c=_.b=_.a=!1}, +bek:function bek(){}, +aGp:function aGp(){this.b=this.a=$}, +aGq:function aGq(){}, +Fb:function Fb(a){this.a=a}, +MV:function MV(a,b,c){var _=this +_.CW=null +_.x=a +_.a=b +_.b=-1 +_.c=c +_.w=_.r=_.f=_.e=_.d=null}, +aYq:function aYq(a){this.a=a}, +aYs:function aYs(a){this.a=a}, +aYt:function aYt(a){this.a=a}, +MW:function MW(a,b,c,d,e,f,g){var _=this +_.CW=null +_.cx=a +_.cy=b +_.db=c +_.dy=null +_.fr=d +_.x=e +_.a=f +_.b=-1 +_.c=g +_.w=_.r=_.f=_.e=_.d=null}, +aMk:function aMk(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aMl:function aMl(){}, +aUy:function aUy(){this.a=null +this.b=!1}, +aBA:function aBA(){}, +CE:function CE(a,b,c,d,e,f){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f}, +aFw:function aFw(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +qi:function qi(){}, +QF:function QF(a,b,c){this.a=a +this.b=b +this.c=c}, +SJ:function SJ(a,b){this.a=a +this.b=b}, +a1r:function a1r(){}, +M9:function M9(a,b){this.b=a +this.c=b +this.a=null}, +aK2:function aK2(){}, +a9h:function a9h(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.e=null +_.w=_.r=_.f=0 +_.y=d +_.z=e +_.Q=null +_.as=f}, +Oq:function Oq(a,b){this.b=a +this.c=b +this.d=1}, +zn:function zn(a,b,c){this.a=a +this.b=b +this.c=c}, +bgn:function bgn(){}, +yw:function yw(a,b){this.a=a +this.b=b}, +fm:function fm(){}, +a76:function a76(){}, +h7:function h7(){}, +aNb:function aNb(){}, +vH:function vH(a,b,c){this.a=a +this.b=b +this.c=c}, +aNM:function aNM(){this.b=0}, +MX:function MX(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}, +KW:function KW(a,b){this.a=a +this.b=b}, +aGj:function aGj(a,b,c){this.a=a +this.b=b +this.c=c}, +aGk:function aGk(a,b){this.a=a +this.b=b}, +aGh:function aGh(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aGi:function aGi(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +a2G:function a2G(a,b){this.a=a +this.b=b}, +Oy:function Oy(a){this.a=a}, +a2H:function a2H(a,b,c){var _=this +_.a=a +_.c=_.b=!1 +_.d=b +_.e=c}, +YE:function YE(){}, +av1:function av1(){}, +av2:function av2(a){this.a=a}, +I6:function I6(a,b){this.a=a +this.b=b}, +qE:function qE(a,b){this.a=a +this.b=b}, +wO:function wO(a,b){this.a=a +this.b=b}, +bhi:function bhi(){}, +bhj:function bhj(a){this.a=a}, +bhh:function bhh(a){this.a=a}, +bhk:function bhk(){}, +aDq:function aDq(a){this.a=a}, +aDr:function aDr(a){this.a=a}, +aDo:function aDo(a){this.a=a}, +bh5:function bh5(a,b){this.a=a +this.b=b}, +bh3:function bh3(a,b){this.a=a +this.b=b}, +bh4:function bh4(a){this.a=a}, +bfA:function bfA(){}, +bfB:function bfB(){}, +bfC:function bfC(){}, +bfD:function bfD(){}, +bfE:function bfE(){}, +bfF:function bfF(){}, +bfG:function bfG(){}, +bfH:function bfH(){}, +beN:function beN(a,b,c){this.a=a +this.b=b +this.c=c}, +a3i:function a3i(a){this.a=$ +this.b=a}, +aHO:function aHO(a){this.a=a}, +aHP:function aHP(a){this.a=a}, +aHQ:function aHQ(a){this.a=a}, +aHS:function aHS(a){this.a=a}, +oF:function oF(a){this.a=a}, +aHT:function aHT(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=null +_.e=!1 +_.f=d +_.r=e}, +aHZ:function aHZ(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aI_:function aI_(a){this.a=a}, +aI0:function aI0(a,b,c){this.a=a +this.b=b +this.c=c}, +aI1:function aI1(a,b){this.a=a +this.b=b}, +aHV:function aHV(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aHW:function aHW(a,b,c){this.a=a +this.b=b +this.c=c}, +aHX:function aHX(a,b){this.a=a +this.b=b}, +aHY:function aHY(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aHU:function aHU(a,b,c){this.a=a +this.b=b +this.c=c}, +aI2:function aI2(a,b){this.a=a +this.b=b}, +axC:function axC(a){this.a=a +this.b=!0}, +aKS:function aKS(a){this.a=a}, +bhH:function bhH(){}, +auL:function auL(){}, +Md:function Md(a){var _=this +_.d=a +_.a=_.e=$ +_.c=_.b=!1}, +aLa:function aLa(){}, +Ox:function Ox(a,b){var _=this +_.d=a +_.e=b +_.f=null +_.a=$ +_.c=_.b=!1}, +aUZ:function aUZ(){}, +aV_:function aV_(){}, +qN:function qN(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=0 +_.f=e}, +Kk:function Kk(a){this.a=a +this.b=$ +this.c=0}, +aCu:function aCu(){}, +a1t:function a1t(){this.a=null +this.b=$ +this.c=!1}, +a1s:function a1s(a){this.a=!1 +this.b=a}, +a2y:function a2y(a,b){this.a=a +this.b=b +this.c=$}, +a1u:function a1u(a,b,c,d,e,f){var _=this +_.a=a +_.d=b +_.e=c +_.f=d +_.k1=_.id=_.go=_.fy=_.fx=_.fr=_.db=_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=_.y=_.x=_.w=_.r=null +_.k2=e +_.R8=_.p4=_.p3=_.ok=_.k4=_.k3=null +_.RG=f +_.to=null}, +aBL:function aBL(a,b,c){this.a=a +this.b=b +this.c=c}, +aBK:function aBK(a,b){this.a=a +this.b=b}, +aBG:function aBG(a,b){this.a=a +this.b=b}, +aBH:function aBH(a,b){this.a=a +this.b=b}, +aBI:function aBI(){}, +aBJ:function aBJ(a,b){this.a=a +this.b=b}, +aBF:function aBF(a){this.a=a}, +aBE:function aBE(a){this.a=a}, +aBD:function aBD(a){this.a=a}, +aBM:function aBM(a,b){this.a=a +this.b=b}, +bhm:function bhm(a,b,c){this.a=a +this.b=b +this.c=c}, +abJ:function abJ(){}, +a7e:function a7e(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}, +aNo:function aNo(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aNp:function aNp(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aNq:function aNq(a,b){this.b=a +this.c=b}, +aSj:function aSj(){}, +aSk:function aSk(){}, +a7i:function a7i(a,b,c){var _=this +_.a=a +_.c=b +_.d=c +_.e=$}, +aNC:function aNC(){}, +SA:function SA(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +b2r:function b2r(){}, +b2s:function b2s(a){this.a=a}, +ap2:function ap2(){}, +pE:function pE(a,b){this.a=a +this.b=b}, +A6:function A6(){this.a=0}, +b9p:function b9p(a,b,c,d,e,f){var _=this +_.w=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=null +_.r=!1}, +b9r:function b9r(){}, +b9q:function b9q(a,b,c){this.a=a +this.b=b +this.c=c}, +b9s:function b9s(a){this.a=a}, +b9t:function b9t(a){this.a=a}, +b9u:function b9u(a){this.a=a}, +b9v:function b9v(a){this.a=a}, +b9w:function b9w(a){this.a=a}, +b9x:function b9x(a){this.a=a}, +bdS:function bdS(a,b,c,d,e,f){var _=this +_.w=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=null +_.r=!1}, +bdT:function bdT(a,b,c){this.a=a +this.b=b +this.c=c}, +bdU:function bdU(a){this.a=a}, +bdV:function bdV(a){this.a=a}, +bdW:function bdW(a){this.a=a}, +bdX:function bdX(a){this.a=a}, +b8s:function b8s(a,b,c,d,e,f){var _=this +_.w=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=null +_.r=!1}, +b8t:function b8t(a,b,c){this.a=a +this.b=b +this.c=c}, +b8u:function b8u(a){this.a=a}, +b8v:function b8v(a){this.a=a}, +b8w:function b8w(a){this.a=a}, +b8x:function b8x(a){this.a=a}, +b8y:function b8y(a){this.a=a}, +H2:function H2(a,b){this.a=null +this.b=a +this.c=b}, +aNu:function aNu(a){this.a=a +this.b=0}, +aNv:function aNv(a,b){this.a=a +this.b=b}, +bll:function bll(){}, +aOW:function aOW(a,b){var _=this +_.a=a +_.c=_.b=null +_.d=0 +_.e=b}, +aOX:function aOX(a){this.a=a}, +aOY:function aOY(a){this.a=a}, +aOZ:function aOZ(a){this.a=a}, +aP0:function aP0(a,b,c){this.a=a +this.b=b +this.c=c}, +aP1:function aP1(a){this.a=a}, +a2i:function a2i(a){this.a=a}, +a2h:function a2h(a){var _=this +_.a=a +_.fx=_.fr=_.dy=_.CW=_.ch=_.ay=_.ax=_.w=_.r=_.f=_.e=_.d=_.c=null}, +aMv:function aMv(a,b){var _=this +_.b=_.a=null +_.c=a +_.d=b}, +Ip:function Ip(a,b){this.a=a +this.b=b}, +as9:function as9(a,b){this.a=a +this.b=b}, +asa:function asa(a){this.a=a}, +QU:function QU(a,b){this.a=a +this.b=b}, +awU:function awU(a,b,c){var _=this +_.e=a +_.a=b +_.b=c +_.c=null}, +a0W:function a0W(a,b){this.a=a +this.b=b +this.c=null}, +Ep:function Ep(a,b){var _=this +_.d=null +_.a=a +_.b=b +_.c=!1}, +aS8:function aS8(a){this.a=a}, +Ct:function Ct(a,b,c){var _=this +_.d=a +_.a=b +_.b=c +_.c=!1}, +AU:function AU(a){this.a=a +this.b=null}, +asc:function asc(a){this.a=a}, +asd:function asd(a){this.a=a}, +asb:function asb(a,b,c){this.a=a +this.b=b +this.c=c}, +aH9:function aH9(a,b){var _=this +_.e=null +_.a=a +_.b=b +_.c=null}, +aHi:function aHi(a,b,c,d){var _=this +_.e=a +_.f=b +_.r=1 +_.w=null +_.x=!1 +_.a=c +_.b=d +_.c=null}, +aHj:function aHj(a,b){this.a=a +this.b=b}, +aHk:function aHk(a){this.a=a}, +Ln:function Ln(a,b){this.a=a +this.b=b +this.c=!1}, +y4:function y4(a,b){var _=this +_.d=null +_.a=a +_.b=b +_.c=!1}, +aNs:function aNs(a,b){this.a=a +this.b=b +this.c=null}, +aTb:function aTb(a,b,c){var _=this +_.e=null +_.f=a +_.r=null +_.w=0 +_.a=b +_.b=c +_.c=null}, +aTi:function aTi(a){this.a=a}, +aTj:function aTj(a){this.a=a}, +aTk:function aTk(a){this.a=a}, +Ch:function Ch(a){this.a=a}, +aBs:function aBs(a){this.a=a}, +a9a:function a9a(a){this.a=a}, +a98:function a98(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}, +nt:function nt(a,b){this.a=a +this.b=b}, +z7:function z7(a,b){this.a=a +this.b=b}, +a7m:function a7m(){}, +aEK:function aEK(a,b){this.a=a +this.b=b +this.c=null}, +r5:function r5(){}, +zj:function zj(a,b,c){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 +_.p2=_.p1=_.ok=_.k4=null +_.p4=_.p3=0}, +aTY:function aTY(a){this.a=a}, +ase:function ase(a,b){this.a=a +this.b=b}, +xp:function xp(a,b){this.a=a +this.b=b}, +Oo:function Oo(a,b){this.a=a +this.b=b}, +aBN:function aBN(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=null +_.r=f +_.w=g +_.x=!1 +_.z=h +_.Q=null +_.as=i}, +aBO:function aBO(a){this.a=a}, +aBP:function aBP(a,b){this.a=a +this.b=b}, +aBR:function aBR(){}, +aBQ:function aBQ(a){this.a=a}, +Kc:function Kc(a,b){this.a=a +this.b=b}, +aTT:function aTT(a){this.a=a}, +aTP:function aTP(){}, +ayv:function ayv(){this.a=null}, +ayw:function ayw(a){this.a=a}, +aKD:function aKD(){var _=this +_.b=_.a=null +_.c=0 +_.d=!1}, +aKF:function aKF(a){this.a=a}, +aKE:function aKE(a){this.a=a}, +av7:function av7(a,b){this.a=a +this.b=b +this.c=null}, +Pg:function Pg(a,b){var _=this +_.d=null +_.a=a +_.b=b +_.c=!1}, +aYU:function aYU(a){this.a=a}, +aU3:function aU3(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 +_.a$=c +_.b$=d +_.c$=e +_.d$=f}, +aZ0:function aZ0(a,b){var _=this +_.f=_.e=null +_.a=a +_.b=b +_.c=null}, +aZ3:function aZ3(a){this.a=a}, +aZ4:function aZ4(a){this.a=a}, +aZ5:function aZ5(a){this.a=a}, +aZ6:function aZ6(a,b){this.a=a +this.b=b}, +aZ7:function aZ7(a){this.a=a}, +aZ8:function aZ8(a){this.a=a}, +aZ9:function aZ9(a){this.a=a}, +pL:function pL(){}, +ahZ:function ahZ(){}, +abg:function abg(a,b){this.a=a +this.b=b}, +m6:function m6(a,b){this.a=a +this.b=b}, +aHB:function aHB(){}, +aHD:function aHD(){}, +aXF:function aXF(){}, +aXH:function aXH(a,b){this.a=a +this.b=b}, +aXJ:function aXJ(){}, +b0T:function b0T(a,b,c){var _=this +_.a=!1 +_.b=a +_.c=b +_.d=c}, +a7G:function a7G(a){this.a=a +this.b=0}, +aYu:function aYu(a,b){this.a=a +this.b=b}, +YL:function YL(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=!1 +_.f=null +_.w=_.r=$ +_.x=null +_.y=!1}, +avK:function avK(){}, +yv:function yv(a,b,c){this.a=a +this.b=b +this.c=c}, +DP:function DP(a,b,c,d,e,f,g){var _=this +_.f=a +_.r=b +_.w=c +_.a=d +_.b=e +_.c=f +_.d=g}, +F8:function F8(){}, +YZ:function YZ(a,b){this.b=a +this.c=b +this.a=null}, +a8C:function a8C(a){this.b=a +this.a=null}, +avJ:function avJ(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=0 +_.r=f +_.w=!0}, +aGl:function aGl(){}, +aGm:function aGm(a,b,c){this.a=a +this.b=b +this.c=c}, +aGn:function aGn(a){this.a=a}, +aGo:function aGo(a){this.a=a}, +aZd:function aZd(){}, +aZc:function aZc(){}, +aIa:function aIa(a,b){this.b=a +this.a=b}, +b3K:function b3K(){}, +nd:function nd(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this +_.vd$=a +_.AB$=b +_.kr$=c +_.qN$=d +_.va$=e +_.vb$=f +_.vc$=g +_.iB$=h +_.iC$=i +_.c=j +_.d=k +_.e=l +_.f=m +_.r=n +_.w=o +_.a=p +_.b=q}, +b68:function b68(){}, +b69:function b69(){}, +b67:function b67(){}, +a1j:function a1j(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this +_.vd$=a +_.AB$=b +_.kr$=c +_.qN$=d +_.va$=e +_.vb$=f +_.vc$=g +_.iB$=h +_.iC$=i +_.c=j +_.d=k +_.e=l +_.f=m +_.r=n +_.w=o +_.a=p +_.b=q}, +v8:function v8(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=$}, +aIx:function aIx(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}, +aah:function aah(a){this.a=a +this.c=this.b=null}, +u9:function u9(a,b){this.a=a +this.b=b}, +aCr:function aCr(a){this.a=a}, +b0B:function b0B(a,b){this.b=a +this.a=b}, +u8:function u8(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.a=d +_.b=e}, +beW:function beW(a,b,c){this.a=a +this.b=b +this.c=c}, +a8J:function a8J(a){this.a=a}, +aZC:function aZC(a){this.a=a}, +oB:function oB(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}, +p2:function p2(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}, +Kd:function Kd(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}, +Kf:function Kf(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=$}, +Ke:function Ke(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}, +aN4:function aN4(){}, +Pp:function Pp(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=$}, +aYX:function aYX(a){this.a=a +this.b=null}, +aaS:function aaS(a,b,c){var _=this +_.a=a +_.b=b +_.d=_.c=$ +_.e=c +_.r=_.f=$}, +Cw:function Cw(a,b){this.a=a +this.b=b}, +wk:function wk(a,b,c,d){var _=this +_.c=a +_.d=b +_.a=c +_.b=d}, +QZ:function QZ(a,b){this.a=a +this.b=b}, +eE:function eE(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.$ti=d}, +rp:function rp(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.$ti=d}, +agW:function agW(a,b,c){this.c=a +this.a=b +this.b=c}, +auH:function auH(a){this.a=a}, +Zn:function Zn(){}, +aBB:function aBB(){}, +aMf:function aMf(){}, +aBS:function aBS(){}, +azv:function azv(){}, +aFg:function aFg(){}, +aMd:function aMd(){}, +aNN:function aNN(){}, +aTn:function aTn(){}, +aU5:function aU5(){}, +aBC:function aBC(){}, +aMh:function aMh(){}, +aZt:function aZt(){}, +aMt:function aMt(){}, +ayl:function ayl(){}, +aNe:function aNe(){}, +aBl:function aBl(){}, +b0t:function b0t(){}, +a6a:function a6a(){}, +Fj:function Fj(a,b){this.a=a +this.b=b}, +Pk:function Pk(a){this.a=a}, +aBt:function aBt(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aBu:function aBu(a,b){this.a=a +this.b=b}, +aBv:function aBv(a,b,c){this.a=a +this.b=b +this.c=c}, +Y5:function Y5(a,b,c,d){var _=this +_.a=a +_.b=b +_.d=c +_.e=d}, +Fl:function Fl(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}, +Cd:function Cd(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aHo:function aHo(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}, +a2n:function a2n(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 +_.a$=c +_.b$=d +_.c$=e +_.d$=f}, +a8L:function a8L(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 +_.a$=c +_.b$=d +_.c$=e +_.d$=f}, +aSi:function aSi(a){this.a=a}, +JL:function JL(){}, +ayq:function ayq(a){this.a=a}, +ayr:function ayr(){}, +ays:function ays(){}, +ayt:function ayt(){}, +aGN:function aGN(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 +_.a$=c +_.b$=d +_.c$=e +_.d$=f}, +aGQ:function aGQ(a){this.a=a}, +aGR:function aGR(a,b){this.a=a +this.b=b}, +aGO:function aGO(a){this.a=a}, +aGP:function aGP(a){this.a=a}, +asp:function asp(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 +_.a$=c +_.b$=d +_.c$=e +_.d$=f}, +asq:function asq(a){this.a=a}, +aD7:function aD7(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 +_.a$=c +_.b$=d +_.c$=e +_.d$=f}, +aD9:function aD9(a){this.a=a}, +aDa:function aDa(a){this.a=a}, +aD8:function aD8(a){this.a=a}, +aZg:function aZg(){}, +aZn:function aZn(a,b){this.a=a +this.b=b}, +aZu:function aZu(){}, +aZp:function aZp(a){this.a=a}, +aZs:function aZs(){}, +aZo:function aZo(a){this.a=a}, +aZr:function aZr(a){this.a=a}, +aZe:function aZe(){}, +aZk:function aZk(){}, +aZq:function aZq(){}, +aZm:function aZm(){}, +aZl:function aZl(){}, +aZj:function aZj(a){this.a=a}, +bi0:function bi0(){}, +aYY:function aYY(a){this.a=a}, +aYZ:function aYZ(a){this.a=a}, +aGK:function aGK(){var _=this +_.a=$ +_.b=null +_.c=!1 +_.d=null +_.f=$}, +aGM:function aGM(a){this.a=a}, +aGL:function aGL(a){this.a=a}, +aBa:function aBa(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aAq:function aAq(a,b,c){this.a=a +this.b=b +this.c=c}, +aAr:function aAr(){}, +PM:function PM(a,b){this.a=a +this.b=b}, +bgg:function bgg(){}, +a3I:function a3I(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.$ti=d}, +dp:function dp(a){this.a=a}, +aCw:function aCw(a){this.a=a +this.c=this.b=0}, +a0u:function a0u(a,b){this.a=a +this.b=$ +this.c=b}, +ay9:function ay9(a){this.a=a}, +ay8:function ay8(){}, +ayA:function ayA(){}, +a2b:function a2b(a){this.a=$ +this.b=a}, +aya:function aya(a){this.b=a +this.a=null}, +ayb:function ayb(a){this.a=a}, +aBm:function aBm(){}, +aEi:function aEi(){this.a=null}, +aEj:function aEj(a){this.a=a}, +a1q:function a1q(a,b,c,d){var _=this +_.a=a +_.b=b +_.d=_.c=$ +_.e=null +_.f=c +_.r=$ +_.w=d +_.x=null}, +aBy:function aBy(a){this.a=a}, +aBz:function aBz(a,b){this.a=a +this.b=b}, +abK:function abK(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +afZ:function afZ(){}, +agc:function agc(){}, +aij:function aij(){}, +aik:function aik(){}, +ail:function ail(){}, +ajY:function ajY(){}, +ajZ:function ajZ(){}, +apN:function apN(){}, +apT:function apT(){}, +bkJ:function bkJ(a){this.a=a}, +bkD(a,b){return new A.KX(a,b)}, +bP1(a){var s,r,q,p=a.length +if(p===0)return!1 +for(s=0;s32)if(r<127){q=a[s] +q=A.arh('"(),/:;<=>?@[]{}',q,0)}else q=!0 +else q=!0 +if(q)return!1}return!0}, +KX:function KX(a,b){this.a=a +this.b=b}, +b6v:function b6v(){}, +b6E:function b6E(a){this.a=a}, +b6w:function b6w(a,b){this.a=a +this.b=b}, +b6D:function b6D(a,b,c){this.a=a +this.b=b +this.c=c}, +b6C:function b6C(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +b6x:function b6x(a,b,c){this.a=a +this.b=b +this.c=c}, +b6y:function b6y(a,b,c){this.a=a +this.b=b +this.c=c}, +b6z:function b6z(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}, +b6A:function b6A(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +b6B:function b6B(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +b3P:function b3P(){var _=this +_.a=_.e=_.d="" +_.b=null}, +bU9(){return $}, +bFC(a,b,c){return new A.IT(a,b.h("@<0>").V(c).h("IT<1,2>"))}, +dF(a,b,c){if(b.h("ao<0>").b(a))return new A.RE(a,b.h("@<0>").V(c).h("RE<1,2>")) +return new A.wu(a,b.h("@<0>").V(c).h("wu<1,2>"))}, +qI(a){return new A.lm("Field '"+a+"' has not been initialized.")}, +iH(a){return new A.lm("Local '"+a+"' has not been initialized.")}, +qJ(a){return new A.lm("Local '"+a+"' has already been initialized.")}, +bFY(a){return new A.i2(a)}, +bhb(a){var s,r=a^48 +if(r<=9)return r +s=a|32 +if(97<=s&&s<=102)return s-87 +return-1}, +bWK(a,b){var s=A.bhb(a.charCodeAt(b)),r=A.bhb(a.charCodeAt(b+1)) +return s*16+r-(r&256)}, +a0(a,b){a=a+b&536870911 +a=a+((a&524287)<<10)&536870911 +return a^a>>>6}, +hV(a){a=a+((a&67108863)<<3)&536870911 +a^=a>>>11 +return a+((a&16383)<<15)&536870911}, +buw(a,b,c){return A.hV(A.a0(A.a0(c,a),b))}, +bMV(a,b,c,d,e){return A.hV(A.a0(A.a0(A.a0(A.a0(e,a),b),c),d))}, +fu(a,b,c){return a}, +bnz(a){var s,r +for(s=$.AK.length,r=0;rc)A.r(A.cT(b,0,c,"start",null))}return new A.kb(a,b,c,d.h("kb<0>"))}, +oT(a,b,c,d){if(t.Ee.b(a))return new A.qh(a,b,c.h("@<0>").V(d).h("qh<1,2>")) +return new A.eu(a,b,c.h("@<0>").V(d).h("eu<1,2>"))}, +aYN(a,b,c){var s="takeCount" +A.bi(b,s) +A.fN(b,s) +if(t.Ee.b(a))return new A.K9(a,b,c.h("K9<0>")) +return new A.zF(a,b,c.h("zF<0>"))}, +blA(a,b,c){var s="count" +if(t.Ee.b(a)){A.bi(b,s) +A.fN(b,s) +return new A.Ce(a,b,c.h("Ce<0>"))}A.bi(b,s) +A.fN(b,s) +return new A.ra(a,b,c.h("ra<0>"))}, +brG(a,b,c){if(c.h("ao<0>").b(b))return new A.K8(a,b,c.h("K8<0>")) +return new A.qt(a,b,c.h("qt<0>"))}, +ch(){return new A.iU("No element")}, +na(){return new A.iU("Too many elements")}, +bsj(){return new A.iU("Too few elements")}, +a9T(a,b,c,d){if(c-b<=32)A.bMA(a,b,c,d) +else A.bMz(a,b,c,d)}, +bMA(a,b,c,d){var s,r,q,p,o +for(s=b+1,r=J.aj(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.n(a,p,r.i(a,o)) +p=o}r.n(a,p,q)}}, +bMz(a3,a4,a5,a6){var s,r,q,p,o,n,m,l,k,j,i=B.f.cE(a5-a4+1,6),h=a4+i,g=a5-i,f=B.f.cE(a4+a5,2),e=f-i,d=f+i,c=J.aj(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.n(a3,h,b) +c.n(a3,f,a0) +c.n(a3,g,a2) +c.n(a3,e,c.i(a3,a4)) +c.n(a3,d,c.i(a3,a5)) +r=a4+1 +q=a5-1 +if(J.j(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.n(a3,p,c.i(a3,r)) +c.n(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.n(a3,p,c.i(a3,r)) +l=r+1 +c.n(a3,r,c.i(a3,q)) +c.n(a3,q,o) +q=m +r=l +break}else{c.n(a3,p,c.i(a3,q)) +c.n(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.n(a3,p,c.i(a3,r)) +c.n(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.j(a6.$2(c.i(a3,r),a),0);)++r +for(;J.j(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.n(a3,p,c.i(a3,r)) +c.n(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),l=m.length,k=0 +while(!0){if(!(k").V(c).h("a2<1,2>")) +n.$keys=m +return n}return new A.wC(A.bkP(a,b,c),b.h("@<0>").V(c).h("wC<1,2>"))}, +bjJ(){throw A.c(A.aa("Cannot modify unmodifiable Map"))}, +bjK(){throw A.c(A.aa("Cannot modify constant Set"))}, +bVL(a,b){var s=new A.cr(a,b.h("cr<0>")) +s.amF(a) +return s}, +bzF(a){var s=v.mangledGlobalNames[a] +if(s!=null)return s +return"minified:"+a}, +byY(a,b){var s +if(b!=null){s=b.x +if(s!=null)return s}return t.dC.b(a)}, +i(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.cU(a) +return s}, +E(a,b,c,d,e,f){return new A.Le(a,c,d,e,f)}, +c4j(a,b,c,d,e,f){return new A.Le(a,c,d,e,f)}, +cS(a){var s,r=$.btt +if(r==null)r=$.btt=Symbol("identityHashCode") +s=a[r] +if(s==null){s=Math.random()*0x3fffffff|0 +a[r]=s}return s}, +me(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.c(A.cT(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)}, +btv(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.c.dn(a) +if(r==="NaN"||r==="+NaN"||r==="-NaN")return s +return null}return s}, +aNT(a){return A.bL3(a)}, +bL3(a){var s,r,q,p +if(a instanceof A.C)return A.kZ(A.cq(a),null) +s=J.hC(a) +if(s===B.a7G||s===B.a83||t.ZJ.b(a)){r=B.yc(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.kZ(A.cq(a),null)}, +btw(a){if(a==null||typeof a=="number"||A.jA(a))return J.cU(a) +if(typeof a=="string")return JSON.stringify(a) +if(a instanceof A.tr)return a.l(0) +if(a instanceof A.rJ)return a.a62(!0) +return"Instance of '"+A.aNT(a)+"'"}, +bL6(){return Date.now()}, +bL7(){var s,r +if($.aNU!==0)return +$.aNU=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 +$.aNU=1e6 +$.N5=new A.aNS(r)}, +bL5(){if(!!self.location)return self.location.href +return null}, +bts(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.bL8(a)}return A.bts(a)}, +bL9(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.c(A.cT(a,0,1114111,null,null))}, +aNV(a,b,c,d,e,f,g,h){var s,r=b-1 +if(0<=a&&a<100){a+=400 +r-=4800}s=h?Date.UTC(a,r,c,d,e,f,g):new Date(a,r,c,d,e,f,g).valueOf() +if(isNaN(s)||s<-864e13||s>864e13)return null +return s}, +jo(a){if(a.date===void 0)a.date=new Date(a.a) +return a.date}, +E0(a){return a.b?A.jo(a).getUTCFullYear()+0:A.jo(a).getFullYear()+0}, +kG(a){return a.b?A.jo(a).getUTCMonth()+1:A.jo(a).getMonth()+1}, +yM(a){return a.b?A.jo(a).getUTCDate()+0:A.jo(a).getDate()+0}, +r_(a){return a.b?A.jo(a).getUTCHours()+0:A.jo(a).getHours()+0}, +aNQ(a){return a.b?A.jo(a).getUTCMinutes()+0:A.jo(a).getMinutes()+0}, +aNR(a){return a.b?A.jo(a).getUTCSeconds()+0:A.jo(a).getSeconds()+0}, +btu(a){return a.b?A.jo(a).getUTCMilliseconds()+0:A.jo(a).getMilliseconds()+0}, +a7n(a){return B.f.aJ((a.b?A.jo(a).getUTCDay()+0:A.jo(a).getDay()+0)+6,7)+1}, +uC(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.al(0,new A.aNP(q,r,s)) +return J.bEx(a,new A.Le(B.as2,0,s,r,0))}, +bL4(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.bL2(a,b,c)}, +bL2(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g=Array.isArray(b)?b:A.a8(b,!0,t.z),f=g.length,e=a.$R +if(fn)return A.uC(a,g,null) +if(fe)return A.uC(a,g,c) +if(g===b)g=A.a8(g,!0,t.z) +l=Object.keys(q) +if(c==null)for(r=l.length,k=0;k=s)return A.f8(b,s,a,null,r) +return A.aOQ(b,r)}, +bUr(a,b,c){if(a<0||a>c)return A.cT(a,0,c,"start",null) +if(b!=null)if(bc)return A.cT(b,a,c,"end",null) +return new A.l3(!0,b,"end",null)}, +pQ(a){return new A.l3(!0,a,null,null)}, +l_(a){return a}, +c(a){return A.byR(new Error(),a)}, +byR(a,b){var s +if(b==null)b=new A.rm() +a.dartException=b +s=A.bYI +if("defineProperty" in Object){Object.defineProperty(a,"message",{get:s}) +a.name=""}else a.toString=s +return a}, +bYI(){return J.cU(this.dartException)}, +r(a){throw A.c(a)}, +bik(a,b){throw A.byR(b,a)}, +Z(a){throw A.c(A.cJ(a))}, +rn(a){var s,r,q,p,o,n +a=A.arg(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.b_M(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)}, +b_N(a){return function($expr$){var $argumentsExpr$="$arguments$" +try{$expr$.$method$($argumentsExpr$)}catch(s){return s.message}}(a)}, +buU(a){return function($expr$){try{$expr$.$method$}catch(s){return s.message}}(a)}, +bkL(a,b){var s=b==null,r=s?null:b.method +return new A.a3a(a,r,s?null:b.receiver)}, +ak(a){if(a==null)return new A.a6q(a) +if(a instanceof A.Ki)return A.w0(a,a.a) +if(typeof a!=="object")return a +if("dartException" in a)return A.w0(a,a.dartException) +return A.bT1(a)}, +w0(a,b){if(t.Lt.b(b))if(b.$thrownJsError==null)b.$thrownJsError=a +return b}, +bT1(a){var s,r,q,p,o,n,m,l,k,j,i,h,g +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.dr(r,16)&8191)===10)switch(q){case 438:return A.w0(a,A.bkL(A.i(s)+" (Error "+q+")",null)) +case 445:case 5007:A.i(s) +return A.w0(a,new A.Mu())}}if(a instanceof TypeError){p=$.bBx() +o=$.bBy() +n=$.bBz() +m=$.bBA() +l=$.bBD() +k=$.bBE() +j=$.bBC() +$.bBB() +i=$.bBG() +h=$.bBF() +g=p.r3(s) +if(g!=null)return A.w0(a,A.bkL(s,g)) +else{g=o.r3(s) +if(g!=null){g.method="call" +return A.w0(a,A.bkL(s,g))}else if(n.r3(s)!=null||m.r3(s)!=null||l.r3(s)!=null||k.r3(s)!=null||j.r3(s)!=null||m.r3(s)!=null||i.r3(s)!=null||h.r3(s)!=null)return A.w0(a,new A.Mu())}return A.w0(a,new A.abp(typeof s=="string"?s:""))}if(a instanceof RangeError){if(typeof s=="string"&&s.indexOf("call stack")!==-1)return new A.OV() +s=function(b){try{return String(b)}catch(f){}return null}(a) +return A.w0(a,new A.l3(!1,null,null,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.OV() +return a}, +aJ(a){var s +if(a instanceof A.Ki)return a.b +if(a==null)return new A.Uq(a) +s=a.$cachedTrace +if(s!=null)return s +s=new A.Uq(a) +if(typeof a==="object")a.$cachedTrace=s +return s}, +t3(a){if(a==null)return J.T(a) +if(typeof a=="object")return A.cS(a) +return J.T(a)}, +bTS(a){if(typeof a=="number")return B.e.gu(a) +if(a instanceof A.UZ)return A.cS(a) +if(a instanceof A.rJ)return a.gu(a) +if(a instanceof A.rf)return a.gu(a) +return A.t3(a)}, +byC(a,b){var s,r,q,p=a.length +for(s=0;s")) +s.c=a.e +return s}, +c4o(a,b,c){Object.defineProperty(a,b,{value:c,enumerable:false,writable:true,configurable:true})}, +bWb(a){var s,r,q,p,o,n=$.byP.$1(a),m=$.bgz[n] +if(m!=null){Object.defineProperty(a,v.dispatchPropertyName,{value:m,enumerable:false,writable:true,configurable:true}) +return m.i}s=$.bhl[n] +if(s!=null)return s +r=v.interceptorsByTag[n] +if(r==null){q=$.by6.$2(a,n) +if(q!=null){m=$.bgz[q] +if(m!=null){Object.defineProperty(a,v.dispatchPropertyName,{value:m,enumerable:false,writable:true,configurable:true}) +return m.i}s=$.bhl[q] +if(s!=null)return s +r=v.interceptorsByTag[q] +n=q}}if(r==null)return null +s=r.prototype +p=n[0] +if(p==="!"){m=A.bhw(s) +$.bgz[n]=m +Object.defineProperty(a,v.dispatchPropertyName,{value:m,enumerable:false,writable:true,configurable:true}) +return m.i}if(p==="~"){$.bhl[n]=s +return s}if(p==="-"){o=A.bhw(s) +Object.defineProperty(Object.getPrototypeOf(a),v.dispatchPropertyName,{value:o,enumerable:false,writable:true,configurable:true}) +return o.i}if(p==="+")return A.bzg(a,s) +if(p==="*")throw A.c(A.d1(n)) +if(v.leafTags[n]===true){o=A.bhw(s) +Object.defineProperty(Object.getPrototypeOf(a),v.dispatchPropertyName,{value:o,enumerable:false,writable:true,configurable:true}) +return o.i}else return A.bzg(a,s)}, +bzg(a,b){var s=Object.getPrototypeOf(a) +Object.defineProperty(s,v.dispatchPropertyName,{value:J.bnB(b,s,null,null),enumerable:false,writable:true,configurable:true}) +return b}, +bhw(a){return J.bnB(a,!1,null,!!a.$icF)}, +bWd(a,b,c){var s=b.prototype +if(v.leafTags[a]===true)return A.bhw(s) +else return J.bnB(s,c,null,null)}, +bVH(){if(!0===$.bnw)return +$.bnw=!0 +A.bVI()}, +bVI(){var s,r,q,p,o,n,m,l +$.bgz=Object.create(null) +$.bhl=Object.create(null) +A.bVG() +s=v.interceptorsByTag +r=Object.getOwnPropertyNames(s) +if(typeof window!="undefined"){window +q=function(){} +for(p=0;p=0 +else if(b instanceof A.nb){s=B.c.cm(a,c) +return b.b.test(s)}else{s=J.arQ(b,B.c.cm(a,c)) +return!s.gak(s)}}, +bno(a){if(a.indexOf("$",0)>=0)return a.replace(/\$/g,"$$$$") +return a}, +bYo(a,b,c,d){var s=b.Qt(a,d) +if(s==null)return a +return A.bnR(a,s.b.index,s.gcg(s),c)}, +arg(a){if(/[[\]{}()*+?.\\^$|]/.test(a))return a.replace(/[[\]{}()*+?.\\^$|]/g,"\\$&") +return a}, +eF(a,b,c){var s +if(typeof b=="string")return A.bYm(a,b,c) +if(b instanceof A.nb){s=b.ga3p() +s.lastIndex=0 +return a.replace(s,A.bno(c))}return A.bYl(a,b,c)}, +bYl(a,b,c){var s,r,q,p +for(s=J.arQ(b,a),s=s.gam(s),r=0,q="";s.v();){p=s.gG(s) +q=q+a.substring(r,p.gc2(p))+c +r=p.gcg(p)}s=q+a.substring(r) +return s.charCodeAt(0)==0?s:s}, +bYm(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.arg(b),"g"),A.bno(c))}, +bxW(a){return a}, +bnQ(a,b,c,d){var s,r,q,p,o,n,m +for(s=b.t9(0,a),s=new A.ru(s.a,s.b,s.c),r=t.Qz,q=0,p="";s.v();){o=s.d +if(o==null)o=r.a(o) +n=o.b +m=n.index +p=p+A.i(A.bxW(B.c.S(a,q,m)))+A.i(c.$1(o)) +q=m+n[0].length}s=p+A.i(A.bxW(B.c.cm(a,q))) +return s.charCodeAt(0)==0?s:s}, +bYp(a,b,c,d){var s,r,q,p +if(typeof b=="string"){s=a.indexOf(b,d) +if(s<0)return a +return A.bnR(a,s,s+b.length,c)}if(b instanceof A.nb)return d===0?a.replace(b.b,A.bno(c)):A.bYo(a,b,c,d) +r=J.bE5(b,a,d) +q=r.gam(r) +if(!q.v())return a +p=q.gG(q) +return B.c.iM(a,p.gc2(p),p.gcg(p),c)}, +bYn(a,b,c,d){var s,r,q=b.DW(0,a,d),p=new A.ru(q.a,q.b,q.c) +if(!p.v())return a +s=p.d +if(s==null)s=t.Qz.a(s) +r=A.i(c.$1(s)) +return B.c.iM(a,s.b.index,s.gcg(s),r)}, +bnR(a,b,c,d){return a.substring(0,b)+d+a.substring(c)}, +eT:function eT(a,b){this.a=a +this.b=b}, +H6:function H6(a,b){this.a=a +this.b=b}, +Tn:function Tn(a,b){this.a=a +this.b=b}, +al4:function al4(a,b){this.a=a +this.b=b}, +al5:function al5(a,b){this.a=a +this.b=b}, +al6:function al6(a,b){this.a=a +this.b=b}, +al7:function al7(a,b){this.a=a +this.b=b}, +al8:function al8(a,b,c){this.a=a +this.b=b +this.c=c}, +al9:function al9(a,b,c){this.a=a +this.b=b +this.c=c}, +ala:function ala(a,b,c){this.a=a +this.b=b +this.c=c}, +To:function To(a,b,c){this.a=a +this.b=b +this.c=c}, +Tp:function Tp(a){this.a=a}, +wC:function wC(a,b){this.a=a +this.$ti=b}, +BJ:function BJ(){}, +axy:function axy(a,b,c){this.a=a +this.b=b +this.c=c}, +a2:function a2(a,b,c){this.a=a +this.b=b +this.$ti=c}, +Ah:function Ah(a,b){this.a=a +this.$ti=b}, +vx:function vx(a,b,c){var _=this +_.a=a +_.b=b +_.c=0 +_.d=null +_.$ti=c}, +dg:function dg(a,b){this.a=a +this.$ti=b}, +Ji:function Ji(){}, +kw:function kw(a,b,c){this.a=a +this.b=b +this.$ti=c}, +h0:function h0(a,b){this.a=a +this.$ti=b}, +a32:function a32(){}, +cr:function cr(a,b){this.a=a +this.$ti=b}, +Le:function Le(a,b,c,d,e){var _=this +_.a=a +_.c=b +_.d=c +_.e=d +_.f=e}, +aNS:function aNS(a){this.a=a}, +aNP:function aNP(a,b,c){this.a=a +this.b=b +this.c=c}, +b_M:function b_M(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +Mu:function Mu(){}, +a3a:function a3a(a,b,c){this.a=a +this.b=b +this.c=c}, +abp:function abp(a){this.a=a}, +a6q:function a6q(a){this.a=a}, +Ki:function Ki(a,b){this.a=a +this.b=b}, +Uq:function Uq(a){this.a=a +this.b=null}, +tr:function tr(){}, +Zl:function Zl(){}, +Zm:function Zm(){}, +aaK:function aaK(){}, +aan:function aan(){}, +Bc:function Bc(a,b){this.a=a +this.b=b}, +afN:function afN(a){this.a=a}, +a8K:function a8K(a){this.a=a}, +bbd:function bbd(){}, +jh:function jh(a){var _=this +_.a=0 +_.f=_.e=_.d=_.c=_.b=null +_.r=0 +_.$ti=a}, +aHI:function aHI(a){this.a=a}, +aHH:function aHH(a,b){this.a=a +this.b=b}, +aHG:function aHG(a){this.a=a}, +aIz:function aIz(a,b){var _=this +_.a=a +_.b=b +_.d=_.c=null}, +cl:function cl(a,b){this.a=a +this.$ti=b}, +Db:function Db(a,b,c){var _=this +_.a=a +_.b=b +_.d=_.c=null +_.$ti=c}, +Lh:function Lh(a){var _=this +_.a=0 +_.f=_.e=_.d=_.c=_.b=null +_.r=0 +_.$ti=a}, +xQ:function xQ(a){var _=this +_.a=0 +_.f=_.e=_.d=_.c=_.b=null +_.r=0 +_.$ti=a}, +bhd:function bhd(a){this.a=a}, +bhe:function bhe(a){this.a=a}, +bhf:function bhf(a){this.a=a}, +rJ:function rJ(){}, +al1:function al1(){}, +al2:function al2(){}, +al3:function al3(){}, +nb:function nb(a,b){var _=this +_.a=a +_.b=b +_.d=_.c=null}, +GP:function GP(a){this.b=a}, +adS:function adS(a,b,c){this.a=a +this.b=b +this.c=c}, +ru:function ru(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=null}, +F6:function F6(a,b){this.a=a +this.c=b}, +anm:function anm(a,b,c){this.a=a +this.b=b +this.c=c}, +bcF:function bcF(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=null}, +bYC(a){A.bik(new A.lm("Field '"+a+u.W),new Error())}, +b(){A.bik(new A.lm("Field '' has not been initialized."),new Error())}, +ck(){A.bik(new A.lm("Field '' has already been initialized."),new Error())}, +aq(){A.bik(new A.lm("Field '' has been assigned during initialization."),new Error())}, +b6(a){var s=new A.b3l(a) +return s.b=s}, +bM(a,b){var s=new A.b72(a,b) +return s.b=s}, +b3l:function b3l(a){this.a=a +this.b=null}, +b72:function b72(a,b){this.a=a +this.b=null +this.c=b}, +aqT(a,b,c){}, +mI(a){var s,r,q +if(t.RP.b(a))return a +s=J.aj(a) +r=A.aX(s.gt(a),null,!1,t.z) +for(q=0;q>>0!==a||a>=c)throw A.c(A.HQ(b,a))}, +vT(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.c(A.bUr(a,b,c)) +if(b==null)return c +return b}, +yk:function yk(){}, +hm:function hm(){}, +Mf:function Mf(){}, +Dx:function Dx(){}, +uk:function uk(){}, +lr:function lr(){}, +Mg:function Mg(){}, +a6c:function a6c(){}, +a6d:function a6d(){}, +Mh:function Mh(){}, +a6e:function a6e(){}, +a6f:function a6f(){}, +Mi:function Mi(){}, +Mj:function Mj(){}, +yl:function yl(){}, +SS:function SS(){}, +ST:function ST(){}, +SU:function SU(){}, +SV:function SV(){}, +btT(a,b){var s=b.c +return s==null?b.c=A.bmF(a,b.y,!0):s}, +blu(a,b){var s=b.c +return s==null?b.c=A.V3(a,"S",[b.y]):s}, +bLQ(a){var s=a.d +if(s!=null)return s +return a.d=new Map()}, +btU(a){var s=a.x +if(s===6||s===7||s===8)return A.btU(a.y) +return s===12||s===13}, +bLP(a){return a.at}, +bWI(a,b){var s,r=b.length +for(s=0;s") +for(r=1;r=0)p+=" "+r[q];++q}return p+"})"}, +bxn(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.ub,m="<",l="",p=0;p0){a0+=a1+"[" +for(a1="",p=0;p0){a0+=a1+"{" +for(a1="",p=0;p "+a}, +kZ(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.kZ(a.y,b) +return s}if(m===7){r=a.y +s=A.kZ(r,b) +q=r.x +return(q===12||q===13?"("+s+")":s)+"?"}if(m===8)return"FutureOr<"+A.kZ(a.y,b)+">" +if(m===9){p=A.bT0(a.y) +o=a.z +return o.length>0?p+("<"+A.bxN(o,b)+">"):p}if(m===11)return A.bSE(a,b) +if(m===12)return A.bxn(a,b,null) +if(m===13)return A.bxn(a.y,b,a.z) +if(m===14){n=a.y +return b[b.length-1-n]}return"?"}, +bT0(a){var s=v.mangledGlobalNames[a] +if(s!=null)return s +return"minified:"+a}, +bQ5(a,b){var s=a.tR[b] +for(;typeof s=="string";)s=a.tR[s] +return s}, +bQ4(a,b){var s,r,q,p,o,n=a.eT,m=n[b] +if(m==null)return A.aoO(a,b,!1) +else if(typeof m=="number"){s=m +r=A.V4(a,5,"#") +q=A.bed(s) +for(p=0;p0)p+="<"+A.V2(c)+">" +s=a.eC.get(p) +if(s!=null)return s +r=new A.mi(null,null) +r.x=9 +r.y=b +r.z=c +if(c.length>0)r.c=c[0] +r.at=p +q=A.rQ(a,r) +a.eC.set(p,q) +return q}, +bmD(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.V2(r)+">") +p=a.eC.get(q) +if(p!=null)return p +o=new A.mi(null,null) +o.x=10 +o.y=s +o.z=r +o.at=q +n=A.rQ(a,o) +a.eC.set(q,n) +return n}, +bQ1(a,b,c){var s,r,q="+"+(b+"("+A.V2(c)+")"),p=a.eC.get(q) +if(p!=null)return p +s=new A.mi(null,null) +s.x=11 +s.y=b +s.z=c +s.at=q +r=A.rQ(a,s) +a.eC.set(q,r) +return r}, +bwy(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.V2(m) +if(j>0){s=l>0?",":"" +g+=s+"["+A.V2(k)+"]"}if(h>0){s=l>0?",":"" +g+=s+"{"+A.bPW(i)+"}"}r=n+(g+")") +q=a.eC.get(r) +if(q!=null)return q +p=new A.mi(null,null) +p.x=12 +p.y=b +p.z=c +p.at=r +o=A.rQ(a,p) +a.eC.set(r,o) +return o}, +bmE(a,b,c,d){var s,r=b.at+("<"+A.V2(c)+">"),q=a.eC.get(r) +if(q!=null)return q +s=A.bPY(a,b,c,r,d) +a.eC.set(r,s) +return s}, +bPY(a,b,c,d,e){var s,r,q,p,o,n,m,l +if(e){s=c.length +r=A.bed(s) +for(q=0,p=0;p0){n=A.rZ(a,b,r,0) +m=A.WF(a,c,r,0) +return A.bmE(a,n,m,c!==m)}}l=new A.mi(null,null) +l.x=13 +l.y=b +l.z=c +l.at=d +return A.rQ(a,l)}, +bw4(a,b,c,d){return{u:a,e:b,r:c,s:[],p:0,n:d}}, +bw6(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.bPr(r+1,q,l,k) +else if((((q|32)>>>0)-97&65535)<26||q===95||q===36||q===124)r=A.bw5(a,r,l,k,!1) +else if(q===46)r=A.bw5(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.vG(a.u,a.e,k.pop())) +break +case 94:k.push(A.bQ0(a.u,k.pop())) +break +case 35:k.push(A.V4(a.u,5,"#")) +break +case 64:k.push(A.V4(a.u,2,"@")) +break +case 126:k.push(A.V4(a.u,3,"~")) +break +case 60:k.push(a.p) +a.p=k.length +break +case 62:A.bPt(a,k) +break +case 38:A.bPs(a,k) +break +case 42:p=a.u +k.push(A.bwA(p,A.vG(p,a.e,k.pop()),a.n)) +break +case 63:p=a.u +k.push(A.bmF(p,A.vG(p,a.e,k.pop()),a.n)) +break +case 47:p=a.u +k.push(A.bwz(p,A.vG(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.bPq(a,k) +break +case 91:k.push(a.p) +a.p=k.length +break +case 93:o=k.splice(a.p) +A.bw7(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.bPv(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.vG(a.u,a.e,m)}, +bPr(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}, +bw5(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.bQ5(s,o.y)[p] +if(n==null)A.r('No "'+p+'" in "'+A.bLP(o)+'"') +d.push(A.V5(s,o,n))}else d.push(p) +return m}, +bPt(a,b){var s,r=a.u,q=A.bw3(a,b),p=b.pop() +if(typeof p=="string")b.push(A.V3(r,p,q)) +else{s=A.vG(r,a.e,p) +switch(s.x){case 12:b.push(A.bmE(r,s,q,a.n)) +break +default:b.push(A.bmD(r,s,q)) +break}}}, +bPq(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.bw3(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.vG(m,a.e,l) +o=new A.ahl() +o.a=q +o.b=s +o.c=r +b.push(A.bwy(m,p,o)) +return +case-4:b.push(A.bQ1(m,b.pop(),q)) +return +default:throw A.c(A.mQ("Unexpected state under `()`: "+A.i(l)))}}, +bPs(a,b){var s=b.pop() +if(0===s){b.push(A.V4(a.u,1,"0&")) +return}if(1===s){b.push(A.V4(a.u,4,"1&")) +return}throw A.c(A.mQ("Unexpected extended operation "+A.i(s)))}, +bw3(a,b){var s=b.splice(a.p) +A.bw7(a.u,a.e,s) +a.p=b.pop() +return s}, +vG(a,b,c){if(typeof c=="string")return A.V3(a,c,a.sEA) +else if(typeof c=="number"){b.toString +return A.bPu(a,b,c)}else return c}, +bw7(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}, +mi:function mi(a,b){var _=this +_.a=a +_.b=b +_.w=_.r=_.e=_.d=_.c=null +_.x=0 +_.at=_.as=_.Q=_.z=_.y=null}, +ahl:function ahl(){this.c=this.b=this.a=null}, +UZ:function UZ(a){this.a=a}, +agF:function agF(){}, +V_:function V_(a){this.a=a}, +bVz(a,b){var s,r +if(B.c.cc(a,"Digit"))return a.charCodeAt(5) +s=b.charCodeAt(0) +if(b.length<=1)r=!(s>=32&&s<=127) +else r=!0 +if(r){r=B.or.i(0,a) +return r==null?null:r.charCodeAt(0)}if(!(s>=$.bCR()&&s<=$.bCS()))r=s>=$.bD0()&&s<=$.bD1() +else r=!0 +if(r)return b.toLowerCase().charCodeAt(0) +return null}, +bPP(a){var s=B.or.gdX(B.or) +return new A.bcH(a,A.bsH(s.ik(s,new A.bcI(),t.q9),t.S,t.N))}, +bT_(a){var s,r,q,p,o=a.acU(),n=A.I(t.N,t.S) +for(s=a.a,r=0;r=2)return null +return a.toLowerCase().charCodeAt(0)}, +bcH:function bcH(a,b){this.a=a +this.b=b +this.c=0}, +bcI:function bcI(){}, +LA:function LA(a){this.a=a}, +d5:function d5(a,b){this.a=a +this.b=b}, +fC:function fC(a,b){this.a=a +this.b=b}, +bOo(){var s,r,q={} +if(self.scheduleImmediate!=null)return A.bTj() +if(self.MutationObserver!=null&&self.document!=null){s=self.document.createElement("div") +r=self.document.createElement("span") +q.a=null +new self.MutationObserver(A.pR(new A.b2b(q),1)).observe(s,{childList:true}) +return new A.b2a(q,s,r)}else if(self.setImmediate!=null)return A.bTk() +return A.bTl()}, +bOp(a){self.scheduleImmediate(A.pR(new A.b2c(a),0))}, +bOq(a){self.setImmediate(A.pR(new A.b2d(a),0))}, +bOr(a){A.blR(B.B,a)}, +blR(a,b){var s=B.f.cE(a.a,1000) +return A.bPR(s<0?0:s,b)}, +buL(a,b){var s=B.f.cE(a.a,1000) +return A.bPS(s<0?0:s,b)}, +bPR(a,b){var s=new A.UT(!0) +s.an1(a,b) +return s}, +bPS(a,b){var s=new A.UT(!1) +s.an2(a,b) +return s}, +y(a){return new A.Qp(new A.a7($.ac,a.h("a7<0>")),a.h("Qp<0>"))}, +x(a,b){a.$2(0,null) +b.b=!0 +return b.a}, +t(a,b){A.bwX(a,b)}, +w(a,b){b.cU(0,a)}, +v(a,b){b.fc(A.ak(a),A.aJ(a))}, +bwX(a,b){var s,r,q=new A.beK(b),p=new A.beL(b) +if(a instanceof A.a7)a.a5W(q,p,t.z) +else{s=t.z +if(t.L0.b(a))a.fj(q,p,s) +else{r=new A.a7($.ac,t.LR) +r.a=8 +r.c=a +r.a5W(q,p,s)}}}, +u(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 $.ac.Gi(new A.bg1(s))}, +hY(a,b,c){var s,r,q,p +if(b===0){s=c.c +if(s!=null)s.we(null) +else{s=c.a +s===$&&A.b() +s.ah(0)}return}else if(b===1){s=c.c +if(s!=null)s.iz(A.ak(a),A.aJ(a)) +else{s=A.ak(a) +r=A.aJ(a) +q=c.a +q===$&&A.b() +q.dP(s,r) +c.a.ah(0)}return}if(a instanceof A.Ss){if(c.c!=null){b.$2(2,null) +return}s=a.b +if(s===0){s=a.a +r=c.a +r===$&&A.b() +r.F(0,s) +A.fE(new A.beI(c,b)) +return}else if(s===1){p=a.a +s=c.a +s===$&&A.b() +s.aFl(0,p,!1).be(new A.beJ(c,b),t.P) +return}}A.bwX(a,b)}, +bn7(a){var s=a.a +s===$&&A.b() +return new A.d6(s,A.l(s).h("d6<1>"))}, +bOs(a,b){var s=new A.aed(b.h("aed<0>")) +s.amU(a,b) +return s}, +bn1(a,b){return A.bOs(a,b)}, +bPa(a){return new A.Ss(a,1)}, +bmn(a){return new A.Ss(a,0)}, +bwi(a,b,c){return 0}, +asP(a,b){var s=A.fu(a,"error",t.K) +return new A.XY(s,b==null?A.ol(a):b)}, +ol(a){var s +if(t.Lt.b(a)){s=a.gke() +if(s!=null)return s}return B.ql}, +Cx(a,b){var s=new A.a7($.ac,b.h("a7<0>")) +A.d0(B.B,new A.aEz(s,a)) +return s}, +tO(a,b){var s=new A.a7($.ac,b.h("a7<0>")) +A.fE(new A.aEy(s,a)) +return s}, +cR(a,b){var s=a==null?b.a(a):a,r=new A.a7($.ac,b.h("a7<0>")) +r.m2(s) +return r}, +oG(a,b,c){var s +A.fu(a,"error",t.K) +$.ac!==B.b6 +if(b==null)b=A.ol(a) +s=new A.a7($.ac,c.h("a7<0>")) +s.yR(a,b) +return s}, +xo(a,b,c){var s,r +if(b==null)s=!c.b(null) +else s=!1 +if(s)throw A.c(A.fh(null,"computation","The type parameter is not nullable")) +r=new A.a7($.ac,c.h("a7<0>")) +A.d0(a,new A.aEx(b,r,c)) +return r}, +qv(a,b){var s,r,q,p,o,n,m,l,k,j,i={},h=null,g=!1,f=new A.a7($.ac,b.h("a7>")) +i.a=null +i.b=0 +s=A.b6("error") +r=A.b6("stackTrace") +q=new A.aEF(i,h,g,f,s,r) +try{for(l=J.al(a),k=t.P;l.v();){p=l.gG(l) +o=i.b +p.fj(new A.aEE(i,o,f,h,g,s,r,b),q,k);++i.b}l=i.b +if(l===0){l=f +l.we(A.a([],b.h("H<0>"))) +return l}i.a=A.aX(l,null,!1,b.h("0?"))}catch(j){n=A.ak(j) +m=A.aJ(j) +if(i.b===0||g)return A.oG(n,m,b.h("f<0>")) +else{s.b=n +r.b=m}}return f}, +bIC(a,b){var s,r,q,p=new A.AB(new A.a7($.ac,b.h("a7<0>")),b.h("AB<0>")),o=new A.aEB(p,b),n=new A.aEA(p) +for(s=a.length,r=t.H,q=0;q")),b))}, +bIB(a){return!0}, +bID(a){var s=$.ac,r=new A.a7(s,t.b),q=A.b6("nextIteration") +q.b=s.Kz(new A.aEC(a,r,q),t.y) +q.aH().$1(!0) +return r}, +bIA(a,b,c,d){var s,r,q=new A.aEl(d,null,b,c) +if(a instanceof A.a7){s=$.ac +r=new A.a7(s,c.h("a7<0>")) +if(s!==B.b6)q=s.Gi(q) +a.yQ(new A.mD(r,2,null,q,a.$ti.h("@<1>").V(c).h("mD<1,2>"))) +return r}return a.fj(new A.aEk(c),q,c)}, +KM(a,b){if(b.h("a7<0>").b(a))a.a|=1 +else a.fj(A.byb(),A.byb(),t.H)}, +brO(a,b){}, +bG2(a){return new A.aD(new A.a7($.ac,a.h("a7<0>")),a.h("aD<0>"))}, +aqV(a,b,c){if(c==null)c=A.ol(b) +a.iz(b,c)}, +bOZ(a,b,c){var s=new A.a7(b,c.h("a7<0>")) +s.a=8 +s.c=a +return s}, +kU(a,b){var s=new A.a7($.ac,b.h("a7<0>")) +s.a=8 +s.c=a +return s}, +bmi(a,b){var s,r +for(;s=a.a,(s&4)!==0;)a=a.c +if((s&24)!==0){r=b.Jk() +b.I9(a) +A.Gy(b,r)}else{r=b.c +b.a5_(a) +a.S8(r)}}, +bP_(a,b){var s,r,q={},p=q.a=a +for(;s=p.a,(s&4)!==0;){p=p.c +q.a=p}if((s&24)===0){r=b.c +b.a5_(p) +q.a.S8(r) +return}if((s&16)===0&&b.c==null){b.I9(p) +return}b.a^=2 +A.pP(null,null,b.b,new A.b6f(q,b))}, +Gy(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f={},e=f.a=a +for(s=t.L0;!0;){r={} +q=e.a +p=(q&16)===0 +o=!p +if(b==null){if(o&&(q&1)===0){e=e.c +A.lN(e.a,e.b)}return}r.a=b +n=b.a +for(e=b;n!=null;e=n,n=m){e.a=null +A.Gy(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.lN(l.a,l.b) +return}i=$.ac +if(i!==j)$.ac=j +else i=null +e=e.c +if((e&15)===8)new A.b6m(r,f,o).$0() +else if(p){if((e&1)!==0)new A.b6l(r,l).$0()}else if((e&2)!==0)new A.b6k(f,r).$0() +if(i!=null)$.ac=i +e=r.c +if(s.b(e)){q=r.a.$ti +q=q.h("S<2>").b(e)||!q.z[1].b(e)}else q=!1 +if(q){h=r.a.b +if(e instanceof A.a7)if((e.a&24)!==0){g=h.c +h.c=null +b=h.Jp(g) +h.a=e.a&30|h.a&1 +h.c=e.c +f.a=e +continue}else A.bmi(e,h) +else h.PF(e) +return}}h=r.a.b +g=h.c +h.c=null +b=h.Jp(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}}, +bxI(a,b){if(t.Hg.b(a))return b.Gi(a) +if(t.C_.b(a))return a +throw A.c(A.fh(a,"onError",u.l))}, +bSo(){var s,r +for(s=$.HO;s!=null;s=$.HO){$.WD=null +r=s.b +$.HO=r +if(r==null)$.WC=null +s.a.$0()}}, +bSP(){$.bn0=!0 +try{A.bSo()}finally{$.WD=null +$.bn0=!1 +if($.HO!=null)$.bog().$1(A.byc())}}, +bxS(a){var s=new A.aec(a),r=$.WC +if(r==null){$.HO=$.WC=s +if(!$.bn0)$.bog().$1(A.byc())}else $.WC=r.b=s}, +bSK(a){var s,r,q,p=$.HO +if(p==null){A.bxS(a) +$.WD=$.WC +return}s=new A.aec(a) +r=$.WD +if(r==null){s.b=p +$.HO=$.WD=s}else{q=r.b +s.b=q +$.WD=r.b=s +if(q==null)$.WC=s}}, +fE(a){var s,r=null,q=$.ac +if(B.b6===q){A.pP(r,r,B.b6,a) +return}s=!1 +if(s){A.pP(r,r,q,a) +return}A.pP(r,r,q,q.TQ(a))}, +blH(a,b){var s=null,r=b.h("mx<0>"),q=new A.mx(s,s,s,s,r) +q.oF(0,a) +q.CI() +return new A.d6(q,r.h("d6<1>"))}, +bML(a,b,c){var s,r,q=null +A.fu(a,"error",t.K) +s=c.h("mx<0>") +r=new A.mx(q,q,q,q,s) +r.kg(a,b==null?A.ol(a):b) +r.CI() +return new A.d6(r,s.h("d6<1>"))}, +bMM(a,b){var s=null,r=b.h("pI<0>"),q=new A.pI(s,s,s,s,r) +a.fj(new A.aXZ(q,b),new A.aY_(q),t.P) +return new A.d6(q,r.h("d6<1>"))}, +buo(a,b){return new A.Am(!1,new A.aY1(a,b),b.h("Am<0>"))}, +c0z(a,b){return new A.o8(A.fu(a,"stream",t.K),b.h("o8<0>"))}, +lE(a,b,c,d,e){return d?new A.pI(b,null,c,a,e.h("pI<0>")):new A.mx(b,null,c,a,e.h("mx<0>"))}, +ar1(a){var s,r,q +if(a==null)return +try{a.$0()}catch(q){s=A.ak(q) +r=A.aJ(q) +A.lN(s,r)}}, +bOI(a,b,c,d,e,f){var s=$.ac,r=e?1:0,q=A.aeC(s,b),p=A.aeD(s,c),o=d==null?A.bg9():d +return new A.vs(a,q,p,o,s,r,f.h("vs<0>"))}, +bOn(a){return new A.b1L(a)}, +aeC(a,b){return b==null?A.bTm():b}, +aeD(a,b){if(b==null)b=A.bTn() +if(t.hK.b(b))return a.Gi(b) +if(t.mX.b(b))return b +throw A.c(A.bZ(u.y,null))}, +bSx(a){}, +bSz(a,b){A.lN(a,b)}, +bSy(){}, +bmh(a,b){var s=new A.Gg($.ac,b.h("Gg<0>")) +A.fE(s.ga3D()) +if(a!=null)s.c=a +return s}, +bxO(a,b,c){var s,r,q,p,o,n +try{b.$1(a.$0())}catch(n){s=A.ak(n) +r=A.aJ(n) +q=null +if(q==null)c.$2(s,r) +else{p=J.bEi(q) +o=q.gke() +c.$2(p,o)}}}, +bQI(a,b,c,d){var s=a.aI(0),r=$.t6() +if(s!==r)s.fu(new A.beP(b,c,d)) +else b.iz(c,d)}, +bx1(a,b){return new A.beO(a,b)}, +bx2(a,b,c){var s=a.aI(0),r=$.t6() +if(s!==r)s.fu(new A.beQ(b,c)) +else b.oK(c)}, +bPO(a,b,c){return new A.Uv(new A.bcD(a,null,null,c,b),b.h("@<0>").V(c).h("Uv<1,2>"))}, +d0(a,b){var s=$.ac +if(s===B.b6)return A.blR(a,b) +return A.blR(a,s.TQ(b))}, +buK(a,b){var s=$.ac +if(s===B.b6)return A.buL(a,b) +return A.buL(a,s.Kz(b,t.qe))}, +lN(a,b){A.bSK(new A.bfS(a,b))}, +bxK(a,b,c,d){var s,r=$.ac +if(r===c)return d.$0() +$.ac=c +s=r +try{r=d.$0() +return r}finally{$.ac=s}}, +bxM(a,b,c,d,e){var s,r=$.ac +if(r===c)return d.$1(e) +$.ac=c +s=r +try{r=d.$1(e) +return r}finally{$.ac=s}}, +bxL(a,b,c,d,e,f){var s,r=$.ac +if(r===c)return d.$2(e,f) +$.ac=c +s=r +try{r=d.$2(e,f) +return r}finally{$.ac=s}}, +pP(a,b,c,d){if(B.b6!==c)d=c.TQ(d) +A.bxS(d)}, +b2b:function b2b(a){this.a=a}, +b2a:function b2a(a,b,c){this.a=a +this.b=b +this.c=c}, +b2c:function b2c(a){this.a=a}, +b2d:function b2d(a){this.a=a}, +UT:function UT(a){this.a=a +this.b=null +this.c=0}, +bdO:function bdO(a,b){this.a=a +this.b=b}, +bdN:function bdN(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Qp:function Qp(a,b){this.a=a +this.b=!1 +this.$ti=b}, +beK:function beK(a){this.a=a}, +beL:function beL(a){this.a=a}, +bg1:function bg1(a){this.a=a}, +beI:function beI(a,b){this.a=a +this.b=b}, +beJ:function beJ(a,b){this.a=a +this.b=b}, +aed:function aed(a){var _=this +_.a=$ +_.b=!1 +_.c=null +_.$ti=a}, +b2f:function b2f(a){this.a=a}, +b2g:function b2g(a){this.a=a}, +b2i:function b2i(a){this.a=a}, +b2j:function b2j(a,b){this.a=a +this.b=b}, +b2h:function b2h(a,b){this.a=a +this.b=b}, +b2e:function b2e(a){this.a=a}, +Ss:function Ss(a,b){this.a=a +this.b=b}, +pH:function pH(a,b){var _=this +_.a=a +_.e=_.d=_.c=_.b=null +_.$ti=b}, +kl:function kl(a,b){this.a=a +this.$ti=b}, +XY:function XY(a,b){this.a=a +this.b=b}, +j_:function j_(a,b){this.a=a +this.$ti=b}, +A5:function A5(a,b,c,d,e,f,g){var _=this +_.ay=0 +_.CW=_.ch=null +_.w=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.r=_.f=null +_.$ti=g}, +mz:function mz(){}, +o9:function o9(a,b,c){var _=this +_.a=a +_.b=b +_.c=0 +_.r=_.f=_.e=_.d=null +_.$ti=c}, +bcW:function bcW(a,b){this.a=a +this.b=b}, +bcY:function bcY(a,b,c){this.a=a +this.b=b +this.c=c}, +bcX:function bcX(a){this.a=a}, +lI:function lI(a,b,c){var _=this +_.a=a +_.b=b +_.c=0 +_.r=_.f=_.e=_.d=null +_.$ti=c}, +G2:function G2(a,b,c){var _=this +_.ax=null +_.a=a +_.b=b +_.c=0 +_.r=_.f=_.e=_.d=null +_.$ti=c}, +aEz:function aEz(a,b){this.a=a +this.b=b}, +aEy:function aEy(a,b){this.a=a +this.b=b}, +aEx:function aEx(a,b,c){this.a=a +this.b=b +this.c=c}, +aEF:function aEF(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +aEE:function aEE(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}, +aEB:function aEB(a,b){this.a=a +this.b=b}, +aEA:function aEA(a){this.a=a}, +aED:function aED(a,b){this.a=a +this.b=b}, +aEC:function aEC(a,b,c){this.a=a +this.b=b +this.c=c}, +aEl:function aEl(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aEk:function aEk(a){this.a=a}, +A8:function A8(){}, +aD:function aD(a,b){this.a=a +this.$ti=b}, +AB:function AB(a,b){this.a=a +this.$ti=b}, +mD:function mD(a,b,c,d,e){var _=this +_.a=null +_.b=a +_.c=b +_.d=c +_.e=d +_.$ti=e}, +a7:function a7(a,b){var _=this +_.a=0 +_.b=a +_.c=null +_.$ti=b}, +b6c:function b6c(a,b){this.a=a +this.b=b}, +b6j:function b6j(a,b){this.a=a +this.b=b}, +b6g:function b6g(a){this.a=a}, +b6h:function b6h(a){this.a=a}, +b6i:function b6i(a,b,c){this.a=a +this.b=b +this.c=c}, +b6f:function b6f(a,b){this.a=a +this.b=b}, +b6e:function b6e(a,b){this.a=a +this.b=b}, +b6d:function b6d(a,b,c){this.a=a +this.b=b +this.c=c}, +b6m:function b6m(a,b,c){this.a=a +this.b=b +this.c=c}, +b6n:function b6n(a){this.a=a}, +b6l:function b6l(a,b){this.a=a +this.b=b}, +b6k:function b6k(a,b){this.a=a +this.b=b}, +aec:function aec(a){this.a=a +this.b=null}, +bz:function bz(){}, +aXZ:function aXZ(a,b){this.a=a +this.b=b}, +aY_:function aY_(a){this.a=a}, +aY1:function aY1(a,b){this.a=a +this.b=b}, +aY2:function aY2(a,b,c){this.a=a +this.b=b +this.c=c}, +aY0:function aY0(a,b,c){this.a=a +this.b=b +this.c=c}, +aY4:function aY4(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aY5:function aY5(a,b){this.a=a +this.b=b}, +aY3:function aY3(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}, +aYi:function aYi(a){this.a=a}, +aYe:function aYe(a){this.a=a}, +aYf:function aYf(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aYc:function aYc(a,b){this.a=a +this.b=b}, +aYd:function aYd(){}, +aYg:function aYg(a,b){this.a=a +this.b=b}, +aYh:function aYh(a,b){this.a=a +this.b=b}, +aYj:function aYj(a,b){this.a=a +this.b=b}, +aYk:function aYk(a,b){this.a=a +this.b=b}, +aYa:function aYa(a){this.a=a}, +aYb:function aYb(a,b,c){this.a=a +this.b=b +this.c=c}, +aY8:function aY8(a,b){this.a=a +this.b=b}, +aY9:function aY9(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aY6:function aY6(a,b){this.a=a +this.b=b}, +aY7:function aY7(a,b,c){this.a=a +this.b=b +this.c=c}, +zA:function zA(){}, +aar:function aar(){}, +vN:function vN(){}, +bcC:function bcC(a){this.a=a}, +bcB:function bcB(a){this.a=a}, +anv:function anv(){}, +Qq:function Qq(){}, +mx:function mx(a,b,c,d,e){var _=this +_.a=null +_.b=0 +_.c=null +_.d=a +_.e=b +_.f=c +_.r=d +_.$ti=e}, +pI:function pI(a,b,c,d,e){var _=this +_.a=null +_.b=0 +_.c=null +_.d=a +_.e=b +_.f=c +_.r=d +_.$ti=e}, +d6:function d6(a,b){this.a=a +this.$ti=b}, +vs:function vs(a,b,c,d,e,f,g){var _=this +_.w=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.r=_.f=null +_.$ti=g}, +Ay:function Ay(a,b){this.a=a +this.$ti=b}, +adR:function adR(){}, +b1L:function b1L(a){this.a=a}, +b1K:function b1K(a){this.a=a}, +Uu:function Uu(a,b,c,d){var _=this +_.c=a +_.a=b +_.b=c +_.$ti=d}, +hx:function hx(){}, +b2K:function b2K(a,b,c){this.a=a +this.b=b +this.c=c}, +b2J:function b2J(a){this.a=a}, +Hs:function Hs(){}, +ag1:function ag1(){}, +j0:function j0(a,b){this.b=a +this.a=null +this.$ti=b}, +Ab:function Ab(a,b){this.b=a +this.c=b +this.a=null}, +b4B:function b4B(){}, +pC:function pC(a){var _=this +_.a=0 +_.c=_.b=null +_.$ti=a}, +b9n:function b9n(a,b){this.a=a +this.b=b}, +Gg:function Gg(a,b){var _=this +_.a=1 +_.b=a +_.c=null +_.$ti=b}, +G1:function G1(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.f=_.e=null +_.$ti=e}, +vp:function vp(a,b){this.a=a +this.$ti=b}, +o8:function o8(a,b){var _=this +_.a=null +_.b=a +_.c=!1 +_.$ti=b}, +RH:function RH(a){this.$ti=a}, +Am:function Am(a,b,c){this.a=a +this.b=b +this.$ti=c}, +b8A:function b8A(a,b){this.a=a +this.b=b}, +SQ:function SQ(a,b,c,d,e){var _=this +_.a=null +_.b=0 +_.c=null +_.d=a +_.e=b +_.f=c +_.r=d +_.$ti=e}, +beP:function beP(a,b,c){this.a=a +this.b=b +this.c=c}, +beO:function beO(a,b){this.a=a +this.b=b}, +beQ:function beQ(a,b){this.a=a +this.b=b}, +RW:function RW(){}, +Gw:function Gw(a,b,c,d,e,f,g){var _=this +_.w=a +_.x=null +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.r=_.f=null +_.$ti=g}, +o5:function o5(a,b,c){this.b=a +this.a=b +this.$ti=c}, +RJ:function RJ(a,b){this.a=a +this.$ti=b}, +Hk:function Hk(a,b,c,d,e,f){var _=this +_.w=$ +_.x=null +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.r=_.f=null +_.$ti=f}, +Uw:function Uw(){}, +QJ:function QJ(a,b,c){this.a=a +this.b=b +this.$ti=c}, +GB:function GB(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.$ti=e}, +Uv:function Uv(a,b){this.a=a +this.$ti=b}, +bcD:function bcD(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +bes:function bes(){}, +bfS:function bfS(a,b){this.a=a +this.b=b}, +am_:function am_(){}, +bbh:function bbh(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +bbi:function bbi(a,b){this.a=a +this.b=b}, +bbj:function bbj(a,b,c){this.a=a +this.b=b +this.c=c}, +cA(a,b,c,d,e){if(c==null)if(b==null){if(a==null)return new A.rD(d.h("@<0>").V(e).h("rD<1,2>")) +b=A.bng()}else{if(A.byo()===b&&A.byn()===a)return new A.vw(d.h("@<0>").V(e).h("vw<1,2>")) +if(a==null)a=A.bnf()}else{if(b==null)b=A.bng() +if(a==null)a=A.bnf()}return A.bOJ(a,b,c,d,e)}, +bmj(a,b){var s=a[b] +return s===a?null:s}, +bml(a,b,c){if(c==null)a[b]=a +else a[b]=c}, +bmk(){var s=Object.create(null) +A.bml(s,"",s) +delete s[""] +return s}, +bOJ(a,b,c,d,e){var s=c!=null?c:new A.b4f(d) +return new A.Rj(a,b,s,d.h("@<0>").V(e).h("Rj<1,2>"))}, +lo(a,b,c,d){if(b==null){if(a==null)return new A.jh(c.h("@<0>").V(d).h("jh<1,2>")) +b=A.bng()}else{if(A.byo()===b&&A.byn()===a)return new A.Lh(c.h("@<0>").V(d).h("Lh<1,2>")) +if(a==null)a=A.bnf()}return A.bPg(a,b,null,c,d)}, +am(a,b,c){return A.byC(a,new A.jh(b.h("@<0>").V(c).h("jh<1,2>")))}, +I(a,b){return new A.jh(a.h("@<0>").V(b).h("jh<1,2>"))}, +bPg(a,b,c,d,e){return new A.Sy(a,b,new A.b7K(d),d.h("@<0>").V(e).h("Sy<1,2>"))}, +dI(a){return new A.pA(a.h("pA<0>"))}, +bmm(){var s=Object.create(null) +s[""]=s +delete s[""] +return s}, +m4(a){return new A.kW(a.h("kW<0>"))}, +aW(a){return new A.kW(a.h("kW<0>"))}, +f9(a,b){return A.bV1(a,new A.kW(b.h("kW<0>")))}, +bmo(){var s=Object.create(null) +s[""]=s +delete s[""] +return s}, +dS(a,b,c){var s=new A.vy(a,b,c.h("vy<0>")) +s.c=a.e +return s}, +bR7(a,b){return J.j(a,b)}, +bR8(a){return J.T(a)}, +bIK(a,b,c){var s=A.cA(null,null,null,b,c) +a.al(0,new A.aFF(s,b,c)) +return s}, +bkB(a,b){var s,r,q=A.dI(b) +for(s=a.length,r=0;r"))}, +bJE(a,b){var s=t.b8 +return J.AR(s.a(a),s.a(b))}, +a4_(a){var s,r={} +if(A.bnz(a))return"{...}" +s=new A.d_("") +try{$.AK.push(a) +s.a+="{" +r.a=!0 +J.it(a,new A.aJR(r,s)) +s.a+="}"}finally{$.AK.pop()}r=s.a +return r.charCodeAt(0)==0?r:r}, +bJS(a,b,c,d){var s,r,q +for(s=b.length,r=0;r"))}, +bJF(a){if(a==null||a<8)return 8 +else if((a&a-1)>>>0!==0)return A.bsx(a) +return a}, +bsx(a){var s +a=(a<<1>>>0)-1 +for(;!0;a=s){s=(a&a-1)>>>0 +if(s===0)return a}}, +bRf(a,b){return J.AR(a,b)}, +bxb(a){if(a.h("n(0,0)").b(A.byl()))return A.byl() +return A.bTI()}, +blF(a,b){var s=A.bxb(a) +return new A.OS(s,new A.aXy(a),a.h("@<0>").V(b).h("OS<1,2>"))}, +aaj(a,b,c){var s=a==null?A.bxb(c):a,r=b==null?new A.aXB(c):b +return new A.F0(s,r,c.h("F0<0>"))}, +rD:function rD(a){var _=this +_.a=0 +_.e=_.d=_.c=_.b=null +_.$ti=a}, +b6u:function b6u(a){this.a=a}, +b6t:function b6t(a){this.a=a}, +vw:function vw(a){var _=this +_.a=0 +_.e=_.d=_.c=_.b=null +_.$ti=a}, +Rj:function Rj(a,b,c,d){var _=this +_.f=a +_.r=b +_.w=c +_.a=0 +_.e=_.d=_.c=_.b=null +_.$ti=d}, +b4f:function b4f(a){this.a=a}, +rE:function rE(a,b){this.a=a +this.$ti=b}, +GC:function GC(a,b,c){var _=this +_.a=a +_.b=b +_.c=0 +_.d=null +_.$ti=c}, +Sy:function Sy(a,b,c,d){var _=this +_.w=a +_.x=b +_.y=c +_.a=0 +_.f=_.e=_.d=_.c=_.b=null +_.r=0 +_.$ti=d}, +b7K:function b7K(a){this.a=a}, +pA:function pA(a){var _=this +_.a=0 +_.e=_.d=_.c=_.b=null +_.$ti=a}, +mF:function mF(a,b,c){var _=this +_.a=a +_.b=b +_.c=0 +_.d=null +_.$ti=c}, +kW:function kW(a){var _=this +_.a=0 +_.f=_.e=_.d=_.c=_.b=null +_.r=0 +_.$ti=a}, +b7L:function b7L(a){this.a=a +this.c=this.b=null}, +vy:function vy(a,b,c){var _=this +_.a=a +_.b=b +_.d=_.c=null +_.$ti=c}, +zT:function zT(a,b){this.a=a +this.$ti=b}, +aFF:function aFF(a,b,c){this.a=a +this.b=b +this.c=c}, +aIA:function aIA(a,b,c){this.a=a +this.b=b +this.c=c}, +jU:function jU(a){var _=this +_.b=_.a=0 +_.c=null +_.$ti=a}, +GL:function GL(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=null +_.d=c +_.e=!1 +_.$ti=d}, +ji:function ji(){}, +ae:function ae(){}, +bo:function bo(){}, +aJQ:function aJQ(a){this.a=a}, +aJR:function aJR(a,b){this.a=a +this.b=b}, +SC:function SC(a,b){this.a=a +this.$ti=b}, +aj_:function aj_(a,b,c){var _=this +_.a=a +_.b=b +_.c=null +_.$ti=c}, +HD:function HD(){}, +yd:function yd(){}, +mu:function mu(a,b){this.a=a +this.$ti=b}, +Rq:function Rq(){}, +rB:function rB(a,b,c){var _=this +_.c=a +_.d=b +_.b=_.a=null +_.$ti=c}, +Ac:function Ac(a){this.b=this.a=null +this.$ti=a}, +wZ:function wZ(a,b){this.a=a +this.b=0 +this.$ti=b}, +agk:function agk(a,b,c){var _=this +_.a=a +_.b=b +_.c=null +_.$ti=c}, +Lv:function Lv(a,b){var _=this +_.a=a +_.d=_.c=_.b=0 +_.$ti=b}, +aiE:function aiE(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=null +_.$ti=e}, +ml:function ml(){}, +Hh:function Hh(){}, +ang:function ang(){}, +kk:function kk(a,b){var _=this +_.a=a +_.c=_.b=null +_.$ti=b}, +jx:function jx(a,b,c){var _=this +_.d=a +_.a=b +_.c=_.b=null +_.$ti=c}, +anf:function anf(){}, +OS:function OS(a,b,c){var _=this +_.d=null +_.e=a +_.f=b +_.c=_.b=_.a=0 +_.$ti=c}, +aXy:function aXy(a){this.a=a}, +pF:function pF(){}, +rM:function rM(a,b){this.a=a +this.$ti=b}, +Ax:function Ax(a,b){this.a=a +this.$ti=b}, +Ul:function Ul(a,b){this.a=a +this.$ti=b}, +rN:function rN(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=null +_.d=c +_.$ti=d}, +Up:function Up(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=null +_.d=c +_.$ti=d}, +Aw:function Aw(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=null +_.d=c +_.$ti=d}, +F0:function F0(a,b,c){var _=this +_.d=null +_.e=a +_.f=b +_.c=_.b=_.a=0 +_.$ti=c}, +aXB:function aXB(a){this.a=a}, +aXA:function aXA(a,b){this.a=a +this.b=b}, +aXz:function aXz(a,b){this.a=a +this.b=b}, +Um:function Um(){}, +Un:function Un(){}, +Uo:function Uo(){}, +V6:function V6(){}, +bfQ(a,b){var s,r,q,p=null +try{p=JSON.parse(a)}catch(r){s=A.ak(r) +q=A.cn(String(s),null,null) +throw A.c(q)}if(b==null)return A.bf_(p) +else return A.bQY(p,b)}, +bQY(a,b){return b.$2(null,new A.bf0(b).$1(a))}, +bf_(a){var s +if(a==null)return null +if(typeof a!="object")return a +if(Object.getPrototypeOf(a)!==Array.prototype)return new A.Su(a,Object.create(null)) +for(s=0;s=0)return null +return r}return null}, +bNU(a,b,c,d){var s=a?$.bBK():$.bBJ() +if(s==null)return null +if(0===c&&d===b.length)return A.bv2(s,b) +return A.bv2(s,b.subarray(c,A.dJ(c,d,b.length,null,null)))}, +bv2(a,b){var s,r +try{s=a.decode(b) +return s}catch(r){}return null}, +bpZ(a,b,c,d,e,f){if(B.f.aJ(f,4)!==0)throw A.c(A.cn("Invalid base64 padding, padded length must be multiple of four, is "+f,a,c)) +if(d+e!==f)throw A.c(A.cn("Invalid base64 padding, '=' not at the end",a,b)) +if(e>2)throw A.c(A.cn("Invalid base64 padding, more than two '=' characters",a,b))}, +bOx(a,b,c,d,e,f,g,h){var s,r,q,p,o,n,m=h>>>2,l=3-(h&3) +for(s=J.aj(b),r=c,q=0;r>>0 +m=(m<<8|p)&16777215;--l +if(l===0){o=g+1 +f[g]=a.charCodeAt(m>>>18&63) +g=o+1 +f[o]=a.charCodeAt(m>>>12&63) +o=g+1 +f[g]=a.charCodeAt(m>>>6&63) +g=o+1 +f[o]=a.charCodeAt(m&63) +m=0 +l=3}}if(q>=0&&q<=255){if(e&&l<3){o=g+1 +n=o+1 +if(3-l===1){f[g]=a.charCodeAt(m>>>2&63) +f[o]=a.charCodeAt(m<<4&63) +f[n]=61 +f[n+1]=61}else{f[g]=a.charCodeAt(m>>>10&63) +f[o]=a.charCodeAt(m>>>4&63) +f[n]=a.charCodeAt(m<<2&63) +f[n+1]=61}return 0}return(m<<2|3-l)>>>0}for(r=c;r255)break;++r}throw A.c(A.fh(b,"Not a byte value at index "+r+": 0x"+J.bER(s.i(b,r),16),null))}, +bOw(a,b,c,d,e,f){var s,r,q,p,o,n,m="Invalid encoding before padding",l="Invalid character",k=B.f.dr(f,2),j=f&3,i=$.boh() +for(s=b,r=0;s=0){k=(k<<6|p)&16777215 +j=j+1&3 +if(j===0){o=e+1 +d[e]=k>>>16&255 +e=o+1 +d[o]=k>>>8&255 +o=e+1 +d[e]=k&255 +e=o +k=0}continue}else if(p===-1&&j>1){if(r>127)break +if(j===3){if((k&3)!==0)throw A.c(A.cn(m,a,s)) +d[e]=k>>>10 +d[e+1]=k>>>2}else{if((k&15)!==0)throw A.c(A.cn(m,a,s)) +d[e]=k>>>4}n=(3-j)*3 +if(q===37)n+=2 +return A.bvD(a,s+1,c,-n-1)}throw A.c(A.cn(l,a,s))}if(r>=0&&r<=127)return(k<<2|j)>>>0 +for(s=b;s127)break +throw A.c(A.cn(l,a,s))}, +bOu(a,b,c,d){var s=A.bOv(a,b,c),r=(d&3)+(s-b),q=B.f.dr(r,2)*3,p=r&3 +if(p!==0&&s0)return new Uint8Array(q) +return $.bBS()}, +bOv(a,b,c){var s,r=c,q=r,p=0 +while(!0){if(!(q>b&&p<2))break +c$0:{--q +s=a.charCodeAt(q) +if(s===61){++p +r=q +break c$0}if((s|32)===100){if(q===b)break;--q +s=a.charCodeAt(q)}if(s===51){if(q===b)break;--q +s=a.charCodeAt(q)}if(s===37){++p +r=q +break c$0}break}}return r}, +bvD(a,b,c,d){var s,r +if(b===c)return d +s=-d-1 +for(;s>0;){r=a.charCodeAt(b) +if(s===3){if(r===61){s-=3;++b +break}if(r===37){--s;++b +if(b===c)break +r=a.charCodeAt(b)}else break}if((s>3?s-3:s)===2){if(r!==51)break;++b;--s +if(b===c)break +r=a.charCodeAt(b)}if((r|32)!==100)break;++b;--s +if(b===c)break}if(b!==c)throw A.c(A.cn("Invalid padding character",a,b)) +return-s-1}, +bHG(a){return $.bAC().i(0,a.toLowerCase())}, +bsp(a,b,c){return new A.CZ(a,b)}, +bz_(a,b){return B.az.xe(a,b)}, +byZ(a,b){return B.az.v1(0,a,b)}, +bJh(a){return null}, +bRa(a){return a.bf()}, +bPb(a,b){var s=b==null?A.bnj():b +return new A.b7x(a,[],s)}, +b7y(a,b,c){var s,r=new A.d_("") +A.bw_(a,r,b,c) +s=r.a +return s.charCodeAt(0)==0?s:s}, +bw_(a,b,c,d){var s=A.bPb(b,c) +s.vO(a)}, +bPc(a,b,c){var s=new Uint8Array(b),r=a==null?A.bnj():a +return new A.aia(b,c,s,[],r)}, +bPd(a,b,c,d,e){var s,r,q +if(b!=null){s=new Uint8Array(d) +r=c==null?A.bnj():c +q=new A.b7B(b,0,d,e,s,[],r)}else q=A.bPc(c,d,e) +q.vO(a) +s=q.f +if(s>0)q.d.$3(q.e,0,s) +q.e=new Uint8Array(0) +q.f=0}, +bPe(a,b,c){var s,r,q +for(s=J.aj(a),r=b,q=0;r>>0 +if(q>=0&&q<=255)return +A.bPf(a,b,c)}, +bPf(a,b,c){var s,r,q +for(s=J.aj(a),r=b;r255)throw A.c(A.cn("Source contains non-Latin-1 characters.",a,r))}}, +bwR(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""}}, +bQh(a,b,c){var s,r,q,p=c-b,o=new Uint8Array(p) +for(s=J.aj(a),r=0;r>>0!==0?255:q}return o}, +bf0:function bf0(a){this.a=a}, +Su:function Su(a,b){this.a=a +this.b=b +this.c=null}, +b7u:function b7u(a){this.a=a}, +ai8:function ai8(a){this.a=a}, +St:function St(a,b,c){this.b=a +this.c=b +this.a=c}, +b0y:function b0y(){}, +b0x:function b0x(){}, +XQ:function XQ(){}, +aoM:function aoM(){}, +XS:function XS(a){this.a=a}, +aoN:function aoN(a,b){this.a=a +this.b=b}, +aoL:function aoL(){}, +XR:function XR(a,b){this.a=a +this.b=b}, +b52:function b52(a){this.a=a}, +bcj:function bcj(a){this.a=a}, +Yf:function Yf(){}, +Yh:function Yh(){}, +QB:function QB(a){this.a=0 +this.b=a}, +b2I:function b2I(a){this.c=null +this.a=0 +this.b=a}, +b2q:function b2q(){}, +b26:function b26(a,b){this.a=a +this.b=b}, +bea:function bea(a,b){this.a=a +this.b=b}, +Yg:function Yg(){}, +aen:function aen(){this.a=0}, +aeo:function aeo(a,b){this.a=a +this.b=b}, +IP:function IP(){}, +QM:function QM(a){this.a=a}, +QN:function QN(a,b){this.a=a +this.b=b +this.c=0}, +Z0:function Z0(){}, +amN:function amN(a,b,c){this.a=a +this.b=b +this.$ti=c}, +n_:function n_(){}, +cm:function cm(){}, +RX:function RX(a,b,c){this.a=a +this.b=b +this.$ti=c}, +n5:function n5(){}, +CZ:function CZ(a,b){this.a=a +this.b=b}, +a3c:function a3c(a,b){this.a=a +this.b=b}, +a3b:function a3b(){}, +a3e:function a3e(a){this.b=a}, +b7t:function b7t(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=!1}, +ai9:function ai9(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=!1}, +a3d:function a3d(a){this.a=a}, +b7z:function b7z(){}, +b7A:function b7A(a,b){this.a=a +this.b=b}, +b7v:function b7v(){}, +b7w:function b7w(a,b){this.a=a +this.b=b}, +b7x:function b7x(a,b,c){this.c=a +this.a=b +this.b=c}, +aia:function aia(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=0 +_.a=d +_.b=e}, +b7B:function b7B(a,b,c,d,e,f,g){var _=this +_.x=a +_.ax$=b +_.c=c +_.d=d +_.e=e +_.f=0 +_.a=f +_.b=g}, +a3m:function a3m(){}, +a3o:function a3o(a){this.a=a}, +a3n:function a3n(a,b){this.a=a +this.b=b}, +aih:function aih(a){this.a=a}, +b7C:function b7C(a){this.a=a}, +nJ:function nJ(){}, +b3I:function b3I(a,b){this.a=a +this.b=b}, +bcG:function bcG(a,b){this.a=a +this.b=b}, +Hu:function Hu(){}, +Az:function Az(a){this.a=a}, +bec:function bec(a,b,c){this.a=a +this.b=b +this.c=c}, +beb:function beb(a,b,c){this.a=a +this.b=b +this.c=c}, +abA:function abA(){}, +abB:function abB(){}, +aoU:function aoU(a){this.b=this.a=0 +this.c=a}, +Ve:function Ve(a,b){var _=this +_.d=a +_.b=_.a=0 +_.c=b}, +PQ:function PQ(a){this.a=a}, +Vd:function Vd(a){this.a=a +this.b=16 +this.c=0}, +apE:function apE(){}, +aqP:function aqP(){}, +bOB(a,b){var s,r,q=$.t7(),p=a.length,o=4-p%4 +if(o===4)o=0 +for(s=0,r=0;r=16)return null +r=r*16+o}n=h-1 +i[h]=r +for(;s=16)return null +r=r*16+o}m=n-1 +i[n]=r}if(j===1&&i[0]===0)return $.t7() +l=A.my(j,i) +return new A.iZ(l===0?!1:c,i,l)}, +bOE(a,b){var s,r,q,p,o +if(a==="")return null +s=$.bBT().lm(a) +if(s==null)return null +r=s.b +q=r[1]==="-" +p=r[4] +o=r[3] +if(p!=null)return A.bOB(p,q) +if(o!=null)return A.bOC(o,2,q) +return null}, +my(a,b){while(!0){if(!(a>0&&b[a-1]===0))break;--a}return a}, +bmc(a,b,c,d){var s,r=new Uint16Array(d),q=c-b +for(s=0;s=0;--s)d[s+c]=a[s] +for(s=c-1;s>=0;--s)d[s]=0 +return b+c}, +bOA(a,b,c,d){var s,r,q,p=B.f.cE(c,16),o=B.f.aJ(c,16),n=16-o,m=B.f.yt(1,n)-1 +for(s=b-1,r=0;s>=0;--s){q=a[s] +d[s+p+1]=(B.f.JC(q,n)|r)>>>0 +r=B.f.yt((q&m)>>>0,o)}d[p]=r}, +bvF(a,b,c,d){var s,r,q,p=B.f.cE(c,16) +if(B.f.aJ(c,16)===0)return A.bmd(a,b,p,d) +s=b+p+1 +A.bOA(a,b,c,d) +for(r=p;--r,r>=0;)d[r]=0 +q=s-1 +return d[q]===0?q:s}, +bOD(a,b,c,d){var s,r,q=B.f.cE(c,16),p=B.f.aJ(c,16),o=16-p,n=B.f.yt(1,p)-1,m=B.f.JC(a[q],p),l=b-q-1 +for(s=0;s>>0,o)|m)>>>0 +m=B.f.JC(r,p)}d[l]=m}, +b2v(a,b,c,d){var s,r=b-d +if(r===0)for(s=b-1;s>=0;--s){r=a[s]-c[s] +if(r!==0)return r}return r}, +bOy(a,b,c,d,e){var s,r +for(s=0,r=0;r>>16}for(r=d;r>>16}e[b]=s}, +aes(a,b,c,d,e){var s,r +for(s=0,r=0;r=0;e=p,c=r){r=c+1 +q=a*b[c]+d[e]+s +p=e+1 +d[e]=q&65535 +s=B.f.cE(q,65536)}for(;s!==0;e=p){o=d[e]+s +p=e+1 +d[e]=o&65535 +s=B.f.cE(o,65536)}}, +bOz(a,b,c){var s,r=b[c] +if(r===a)return 65535 +s=B.f.i9((r<<16|b[c-1])>>>0,a) +if(s>65535)return 65535 +return s}, +bVF(a){return A.t3(a)}, +brN(a,b){return A.bL4(a,b,null)}, +a1C(a,b){return new A.Ck(new WeakMap(),a,b.h("Ck<0>"))}, +ql(a){if(A.jA(a)||typeof a=="number"||typeof a=="string"||a instanceof A.rJ)A.bkl(a)}, +bkl(a){throw A.c(A.fh(a,"object","Expandos are not allowed on strings, numbers, bools, records or null"))}, +eq(a,b,c){var s=A.me(a,c) +if(s!=null)return s +if(b!=null)return b.$1(a) +throw A.c(A.cn(a,null,null))}, +ar7(a){var s=A.btv(a) +if(s!=null)return s +throw A.c(A.cn("Invalid double",a,null))}, +bHS(a,b){a=A.c(a) +a.stack=b.l(0) +throw a +throw A.c("unreachable")}, +n1(a,b){var s=new A.dx(a,b) +s.HT(a,b) +return s}, +aX(a,b,c,d){var s,r=c?J.CW(a,d):J.a39(a,d) +if(a!==0&&b!=null)for(s=0;s")) +for(s=J.al(a);s.v();)r.push(s.gG(s)) +if(b)return r +return J.aHA(r)}, +a8(a,b,c){var s +if(b)return A.bsA(a,c) +s=J.aHA(A.bsA(a,c)) +return s}, +bsA(a,b){var s,r +if(Array.isArray(a))return A.a(a.slice(0),b.h("H<0>")) +s=A.a([],b.h("H<0>")) +for(r=J.al(a);r.v();)s.push(r.gG(r)) +return s}, +bJH(a,b,c){var s,r=J.CW(a,c) +for(s=0;s0||c>>4]&1<<(o&15))!==0)p+=A.el(o) +else p=d&&o===32?p+"+":p+"%"+n[o>>>4&15]+n[o&15]}return p.charCodeAt(0)==0?p:p}, +ik(){return A.aJ(new Error())}, +bG1(a,b){return J.AR(a,b)}, +bGC(){return new A.dx(Date.now(),!1)}, +bjT(a,b){var s=new A.dx(a,b) +s.HT(a,b) +return s}, +bGD(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}, +bGE(a){if(a>=100)return""+a +if(a>=10)return"0"+a +return"00"+a}, +a0A(a){if(a>=10)return""+a +return"0"+a}, +dW(a,b,c){return new A.bj(a+1000*b+1e6*c)}, +bHL(a,b){var s,r +for(s=0;s<3;++s){r=a[s] +if(r.b===b)return r}throw A.c(A.fh(b,"name","No enum value with that name"))}, +x4(a){if(typeof a=="number"||A.jA(a)||a==null)return J.cU(a) +if(typeof a=="string")return JSON.stringify(a) +return A.btw(a)}, +bki(a,b){A.fu(a,"error",t.K) +A.fu(b,"stackTrace",t.Km) +A.bHS(a,b)}, +mQ(a){return new A.wf(a)}, +bZ(a,b){return new A.l3(!1,null,b,a)}, +fh(a,b,c){return new A.l3(!0,a,b,c)}, +bi(a,b){return a}, +cb(a){var s=null +return new A.E7(s,s,!1,s,s,a)}, +aOQ(a,b){return new A.E7(null,null,!0,a,b,"Value not in range")}, +cT(a,b,c,d,e){return new A.E7(b,c,!0,a,d,"Invalid value")}, +aOR(a,b,c,d){if(ac)throw A.c(A.cT(a,b,c,d,null)) +return a}, +bLl(a,b,c,d){return A.bkG(a,d==null?b.gt(b):d,b,null,c)}, +dJ(a,b,c,d,e){if(0>a||a>c)throw A.c(A.cT(a,0,c,d==null?"start":d,null)) +if(b!=null){if(a>b||b>c)throw A.c(A.cT(b,a,c,e==null?"end":e,null)) +return b}return c}, +fN(a,b){if(a<0)throw A.c(A.cT(a,0,null,b,null)) +return a}, +a2Y(a,b,c,d,e){var s=e==null?b.gt(b):e +return new A.L3(s,!0,a,c,"Index out of range")}, +f8(a,b,c,d,e){return new A.L3(b,!0,a,e,"Index out of range")}, +bkG(a,b,c,d,e){if(0>a||a>=b)throw A.c(A.f8(a,b,c,d,e==null?"index":e)) +return a}, +aa(a){return new A.abr(a)}, +d1(a){return new A.zR(a)}, +R(a){return new A.iU(a)}, +cJ(a){return new A.Zo(a)}, +d8(a){return new A.RK(a)}, +cn(a,b,c){return new A.lh(a,b,c)}, +bJd(a,b,c){if(a<=0)return new A.jM(c.h("jM<0>")) +return new A.RY(a,b,c.h("RY<0>"))}, +bsk(a,b,c){var s,r +if(A.bnz(a)){if(b==="("&&c===")")return"(...)" +return b+"..."+c}s=A.a([],t.s) +$.AK.push(a) +try{A.bSe(a,s)}finally{$.AK.pop()}r=A.aas(b,s,", ")+c +return r.charCodeAt(0)==0?r:r}, +xM(a,b,c){var s,r +if(A.bnz(a))return b+"..."+c +s=new A.d_(b) +$.AK.push(a) +try{r=s +r.a=A.aas(r.a,a,", ")}finally{$.AK.pop()}s.a+=c +r=s.a +return r.charCodeAt(0)==0?r:r}, +bSe(a,b){var s,r,q,p,o,n,m,l=J.al(a),k=0,j=0 +while(!0){if(!(k<80||j<3))break +if(!l.v())return +s=A.i(l.gG(l)) +b.push(s) +k+=s.length+2;++j}if(!l.v()){if(j<=5)return +r=b.pop() +q=b.pop()}else{p=l.gG(l);++j +if(!l.v()){if(j<=4){b.push(A.i(p)) +return}r=A.i(p) +q=b.pop() +k+=r.length+2}else{o=l.gG(l);++j +for(;l.v();p=o,o=n){n=l.gG(l);++j +if(j>100){while(!0){if(!(k>75&&j>3))break +k-=b.pop().length+2;--j}b.push("...") +return}}q=A.i(p) +r=A.i(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)}, +bl_(a,b,c,d,e){return new A.wv(a,b.h("@<0>").V(c).V(d).V(e).h("wv<1,2,3,4>"))}, +bsH(a,b,c){var s=A.I(b,c) +s.a7l(s,a) +return s}, +X(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.buw(J.T(a),J.T(b),$.hD()) +if(B.a===d){s=J.T(a) +b=J.T(b) +c=J.T(c) +return A.hV(A.a0(A.a0(A.a0($.hD(),s),b),c))}if(B.a===e)return A.bMV(J.T(a),J.T(b),J.T(c),J.T(d),$.hD()) +if(B.a===f){s=J.T(a) +b=J.T(b) +c=J.T(c) +d=J.T(d) +e=J.T(e) +return A.hV(A.a0(A.a0(A.a0(A.a0(A.a0($.hD(),s),b),c),d),e))}if(B.a===g){s=J.T(a) +b=J.T(b) +c=J.T(c) +d=J.T(d) +e=J.T(e) +f=J.T(f) +return A.hV(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0($.hD(),s),b),c),d),e),f))}if(B.a===h){s=J.T(a) +b=J.T(b) +c=J.T(c) +d=J.T(d) +e=J.T(e) +f=J.T(f) +g=J.T(g) +return A.hV(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0($.hD(),s),b),c),d),e),f),g))}if(B.a===i){s=J.T(a) +b=J.T(b) +c=J.T(c) +d=J.T(d) +e=J.T(e) +f=J.T(f) +g=J.T(g) +h=J.T(h) +return A.hV(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0($.hD(),s),b),c),d),e),f),g),h))}if(B.a===j){s=J.T(a) +b=J.T(b) +c=J.T(c) +d=J.T(d) +e=J.T(e) +f=J.T(f) +g=J.T(g) +h=J.T(h) +i=J.T(i) +return A.hV(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0($.hD(),s),b),c),d),e),f),g),h),i))}if(B.a===k){s=J.T(a) +b=J.T(b) +c=J.T(c) +d=J.T(d) +e=J.T(e) +f=J.T(f) +g=J.T(g) +h=J.T(h) +i=J.T(i) +j=J.T(j) +return A.hV(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0($.hD(),s),b),c),d),e),f),g),h),i),j))}if(B.a===l){s=J.T(a) +b=J.T(b) +c=J.T(c) +d=J.T(d) +e=J.T(e) +f=J.T(f) +g=J.T(g) +h=J.T(h) +i=J.T(i) +j=J.T(j) +k=J.T(k) +return A.hV(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0($.hD(),s),b),c),d),e),f),g),h),i),j),k))}if(B.a===m){s=J.T(a) +b=J.T(b) +c=J.T(c) +d=J.T(d) +e=J.T(e) +f=J.T(f) +g=J.T(g) +h=J.T(h) +i=J.T(i) +j=J.T(j) +k=J.T(k) +l=J.T(l) +return A.hV(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0($.hD(),s),b),c),d),e),f),g),h),i),j),k),l))}if(B.a===n){s=J.T(a) +b=J.T(b) +c=J.T(c) +d=J.T(d) +e=J.T(e) +f=J.T(f) +g=J.T(g) +h=J.T(h) +i=J.T(i) +j=J.T(j) +k=J.T(k) +l=J.T(l) +m=J.T(m) +return A.hV(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0($.hD(),s),b),c),d),e),f),g),h),i),j),k),l),m))}if(B.a===o){s=J.T(a) +b=J.T(b) +c=J.T(c) +d=J.T(d) +e=J.T(e) +f=J.T(f) +g=J.T(g) +h=J.T(h) +i=J.T(i) +j=J.T(j) +k=J.T(k) +l=J.T(l) +m=J.T(m) +n=J.T(n) +return A.hV(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0($.hD(),s),b),c),d),e),f),g),h),i),j),k),l),m),n))}if(B.a===p){s=J.T(a) +b=J.T(b) +c=J.T(c) +d=J.T(d) +e=J.T(e) +f=J.T(f) +g=J.T(g) +h=J.T(h) +i=J.T(i) +j=J.T(j) +k=J.T(k) +l=J.T(l) +m=J.T(m) +n=J.T(n) +o=J.T(o) +return A.hV(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0($.hD(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o))}if(B.a===q){s=J.T(a) +b=J.T(b) +c=J.T(c) +d=J.T(d) +e=J.T(e) +f=J.T(f) +g=J.T(g) +h=J.T(h) +i=J.T(i) +j=J.T(j) +k=J.T(k) +l=J.T(l) +m=J.T(m) +n=J.T(n) +o=J.T(o) +p=J.T(p) +return A.hV(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0($.hD(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p))}if(B.a===r){s=J.T(a) +b=J.T(b) +c=J.T(c) +d=J.T(d) +e=J.T(e) +f=J.T(f) +g=J.T(g) +h=J.T(h) +i=J.T(i) +j=J.T(j) +k=J.T(k) +l=J.T(l) +m=J.T(m) +n=J.T(n) +o=J.T(o) +p=J.T(p) +q=J.T(q) +return A.hV(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0($.hD(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q))}if(B.a===a0){s=J.T(a) +b=J.T(b) +c=J.T(c) +d=J.T(d) +e=J.T(e) +f=J.T(f) +g=J.T(g) +h=J.T(h) +i=J.T(i) +j=J.T(j) +k=J.T(k) +l=J.T(l) +m=J.T(m) +n=J.T(n) +o=J.T(o) +p=J.T(p) +q=J.T(q) +r=J.T(r) +return A.hV(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0($.hD(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q),r))}if(B.a===a1){s=J.T(a) +b=J.T(b) +c=J.T(c) +d=J.T(d) +e=J.T(e) +f=J.T(f) +g=J.T(g) +h=J.T(h) +i=J.T(i) +j=J.T(j) +k=J.T(k) +l=J.T(l) +m=J.T(m) +n=J.T(n) +o=J.T(o) +p=J.T(p) +q=J.T(q) +r=J.T(r) +a0=J.T(a0) +return A.hV(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0($.hD(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q),r),a0))}s=J.T(a) +b=J.T(b) +c=J.T(c) +d=J.T(d) +e=J.T(e) +f=J.T(f) +g=J.T(g) +h=J.T(h) +i=J.T(i) +j=J.T(j) +k=J.T(k) +l=J.T(l) +m=J.T(m) +n=J.T(n) +o=J.T(o) +p=J.T(p) +q=J.T(q) +r=J.T(r) +a0=J.T(a0) +a1=J.T(a1) +return A.hV(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0(A.a0($.hD(),s),b),c),d),e),f),g),h),i),j),k),l),m),n),o),p),q),r),a0),a1))}, +dj(a){var s,r=$.hD() +for(s=J.al(a);s.v();)r=A.a0(r,J.T(s.gG(s))) +return A.hV(r)}, +bKu(a){var s,r,q,p,o +for(s=a.gam(a),r=0,q=0;s.v();){p=J.T(s.gG(s)) +o=((p^B.f.dr(p,16))>>>0)*2146121005>>>0 +o=((o^o>>>15)>>>0)*2221713035>>>0 +r=r+((o^o>>>16)>>>0)&1073741823;++q}return A.buw(r,q,0)}, +t4(a){A.bzq(A.i(a))}, +aUo(a,b,c,d){return new A.q7(a,b,c.h("@<0>").V(d).h("q7<1,2>"))}, +bun(){$.kp() +return new A.k9()}, +bQQ(a,b){return 65536+((a&1023)<<10)+(b&1023)}, +buX(a){var s,r=null,q=new A.d_(""),p=A.a([-1],t.t) +A.bNO(r,r,r,q,p) +p.push(q.a.length) +q.a+="," +A.bNM(B.hM,B.ce.pQ(a),q) +s=q.a +return new A.abw(s.charCodeAt(0)==0?s:s,p,r).gho()}, +dR(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=null +a5=a3.length +s=a4+5 +if(a5>=s){r=((a3.charCodeAt(a4+4)^58)*3|a3.charCodeAt(a4)^100|a3.charCodeAt(a4+1)^97|a3.charCodeAt(a4+2)^116|a3.charCodeAt(a4+3)^97)>>>0 +if(r===0)return A.buW(a4>0||a5=14)q[7]=a5 +o=q[1] +if(o>=a4)if(A.bxR(a3,a4,o,20,q)===20)q[7]=o +n=q[2]+1 +m=q[3] +l=q[4] +k=q[5] +j=q[6] +if(jo+3){h=a2 +i=!1}else{p=m>a4 +if(p&&m+1===l){h=a2 +i=!1}else{if(!B.c.eJ(a3,"\\",l))if(n>a4)g=B.c.eJ(a3,"\\",n-1)||B.c.eJ(a3,"\\",n-2) +else g=!1 +else g=!0 +if(g){h=a2 +i=!1}else{if(!(kl+2&&B.c.eJ(a3,"/..",k-3) +else g=!0 +if(g){h=a2 +i=!1}else{if(o===a4+4)if(B.c.eJ(a3,"file",a4)){if(n<=a4){if(!B.c.eJ(a3,"/",l)){f="file:///" +r=3}else{f="file://" +r=2}a3=f+B.c.S(a3,l,a5) +o-=a4 +s=r-a4 +k+=s +j+=s +a5=a3.length +a4=0 +n=7 +m=7 +l=7}else if(l===k)if(a4===0&&!0){a3=B.c.iM(a3,l,k,"/");++k;++j;++a5}else{a3=B.c.S(a3,a4,l)+"/"+B.c.S(a3,k,a5) +o-=a4 +n-=a4 +m-=a4 +l-=a4 +s=1-a4 +k+=s +j+=s +a5=a3.length +a4=0}h="file"}else if(B.c.eJ(a3,"http",a4)){if(p&&m+3===l&&B.c.eJ(a3,"80",m+1))if(a4===0&&!0){a3=B.c.iM(a3,m,l,"") +l-=3 +k-=3 +j-=3 +a5-=3}else{a3=B.c.S(a3,a4,m)+B.c.S(a3,l,a5) +o-=a4 +n-=a4 +m-=a4 +s=3+a4 +l-=s +k-=s +j-=s +a5=a3.length +a4=0}h="http"}else h=a2 +else if(o===s&&B.c.eJ(a3,"https",a4)){if(p&&m+4===l&&B.c.eJ(a3,"443",m+1))if(a4===0&&!0){a3=B.c.iM(a3,m,l,"") +l-=4 +k-=4 +j-=4 +a5-=3}else{a3=B.c.S(a3,a4,m)+B.c.S(a3,l,a5) +o-=a4 +n-=a4 +m-=a4 +s=4+a4 +l-=s +k-=s +j-=s +a5=a3.length +a4=0}h="https"}else h=a2 +i=!0}}}}else h=a2 +if(i){if(a4>0||a5a4)h=A.bwJ(a3,a4,o) +else{if(o===a4)A.HF(a3,a4,"Invalid empty scheme") +h=""}if(n>a4){e=o+3 +d=e9)j.$2("invalid character",s)}else{if(q===3)j.$2(l,s) +o=A.eq(B.c.S(a,r,s),m,m) +if(o>255)j.$2(k,r) +n=q+1 +i[q]=o +r=s+1 +q=n}}if(q!==3)j.$2(l,c) +o=A.eq(B.c.S(a,r,c),m,m) +if(o>255)j.$2(k,r) +i[q]=o +return i}, +bv0(a,b,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=null,d=new A.b0q(a),c=new A.b0r(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;ro)A.r(A.cT(0,0,p.gt(q),null,null)) +if(A.arh(q,"/",0)){s=A.aa("Illegal path character "+A.i(q)) +throw A.c(s)}}}, +Va(a,b,c){var s,r,q,p,o,n=null +for(s=A.fQ(a,c,n,A.ab(a).c),r=s.$ti,s=new A.c2(s,s.gt(s),r.h("c2")),r=r.h("av.E");s.v();){q=s.d +if(q==null)q=r.a(q) +p=A.bE('["*/:<>?\\\\|]',!0,!1,!1) +o=q.length +if(A.arh(q,p,0))if(b)throw A.c(A.bZ("Illegal character in path",n)) +else throw A.c(A.aa("Illegal character in path: "+q))}}, +bwD(a,b){var s,r="Illegal drive letter " +if(!(65<=a&&a<=90))s=97<=a&&a<=122 +else s=!0 +if(s)return +if(b)throw A.c(A.bZ(r+A.aav(a),null)) +else throw A.c(A.aa(r+A.aav(a)))}, +bQd(a,b){var s=null,r=A.a(a.split("/"),t.s) +if(B.c.cc(a,"/"))return A.fc(s,s,s,r,s,"file") +else return A.fc(s,s,s,r,s,s)}, +bQe(a,b){var s,r,q,p,o="\\",n=null,m="file" +if(B.c.cc(a,"\\\\?\\"))if(B.c.eJ(a,"UNC\\",4))a=B.c.iM(a,0,7,o) +else{a=B.c.cm(a,4) +if(a.length<3||a.charCodeAt(1)!==58||a.charCodeAt(2)!==92)throw A.c(A.fh(a,"path","Windows paths with \\\\?\\ prefix must be absolute"))}else a=A.eF(a,"/",o) +s=a.length +if(s>1&&a.charCodeAt(1)===58){A.bwD(a.charCodeAt(0),!0) +if(s===2||a.charCodeAt(2)!==92)throw A.c(A.fh(a,"path","Windows paths with drive letter must be absolute")) +r=A.a(a.split(o),t.s) +A.Va(r,!0,1) +return A.fc(n,n,n,r,n,m)}if(B.c.cc(a,o))if(B.c.eJ(a,o,1)){q=B.c.h3(a,o,2) +s=q<0 +p=s?B.c.cm(a,2):B.c.S(a,2,q) +r=A.a((s?"":B.c.cm(a,q+1)).split(o),t.s) +A.Va(r,!0,0) +return A.fc(n,p,n,r,n,m)}else{r=A.a(a.split(o),t.s) +A.Va(r,!0,0) +return A.fc(n,n,n,r,n,m)}else{r=A.a(a.split(o),t.s) +A.Va(r,!0,0) +return A.fc(n,n,n,r,n,n)}}, +bQa(a){var s +if(a.length===0)return B.Jg +s=A.bwP(a) +s.ae5(s,A.bym()) +return A.bjI(s,t.N,t.yp)}, +bmH(a,b){if(a!=null&&a===A.bwE(b))return null +return a}, +bwI(a,b,c,d){var s,r,q,p,o,n +if(a==null)return null +if(b===c)return"" +if(a.charCodeAt(b)===91){s=c-1 +if(a.charCodeAt(s)!==93)A.HF(a,b,"Missing end `]` to match `[` in host") +r=b+1 +q=A.bQ9(a,r,s) +if(q=b&&q=b&&s>>4]&1<<(p&15))!==0){if(q&&65<=p&&90>=p){if(i==null)i=new A.d_("") +if(r>>4]&1<<(o&15))!==0){if(p&&65<=o&&90>=o){if(q==null)q=new A.d_("") +if(r>>4]&1<<(o&15))!==0)A.HF(a,s,"Invalid character") +else{if((o&64512)===55296&&s+1>>4]&1<<(q&15))!==0))A.HF(a,s,"Illegal scheme character") +if(65<=q&&q<=90)r=!0}a=B.c.S(a,b,c) +return A.bQ7(r?a.toLowerCase():a)}, +bQ7(a){if(a==="http")return"http" +if(a==="file")return"file" +if(a==="https")return"https" +if(a==="package")return"package" +return a}, +bwK(a,b,c){if(a==null)return"" +return A.Vb(a,b,c,B.ad0,!1,!1)}, +be4(a,b,c,d,e,f){var s,r=e==="file",q=r||f +if(a==null){if(d==null)return r?"/":"" +s=new A.ad(d,new A.be5(),A.ab(d).h("ad<1,h>")).ck(0,"/")}else if(d!=null)throw A.c(A.bZ("Both path and pathSegments specified",null)) +else s=A.Vb(a,b,c,B.Bs,!0,!0) +if(s.length===0){if(r)return"/"}else if(q&&!B.c.cc(s,"/"))s="/"+s +return A.bwN(s,e,f)}, +bwN(a,b,c){var s=b.length===0 +if(s&&!c&&!B.c.cc(a,"/")&&!B.c.cc(a,"\\"))return A.bmJ(a,!s||c) +return A.rR(a)}, +be6(a,b,c,d){var s,r={} +if(a!=null){if(d!=null)throw A.c(A.bZ("Both query and queryParameters specified",null)) +return A.Vb(a,b,c,B.hM,!0,!1)}if(d==null)return null +s=new A.d_("") +r.a="" +d.al(0,new A.be7(new A.be8(r,s))) +r=s.a +return r.charCodeAt(0)==0?r:r}, +bwH(a,b,c){if(a==null)return null +return A.Vb(a,b,c,B.hM,!0,!1)}, +bmI(a,b,c){var s,r,q,p,o,n=b+2 +if(n>=a.length)return"%" +s=a.charCodeAt(b+1) +r=a.charCodeAt(n) +q=A.bhb(s) +p=A.bhb(r) +if(q<0||p<0)return"%" +o=q*16+p +if(o<127&&(B.fv[B.f.dr(o,4)]&1<<(o&15))!==0)return A.el(c&&65<=o&&90>=o?(o|32)>>>0:o) +if(s>=97||r>=97)return B.c.S(a,b,b+3).toUpperCase() +return null}, +bmG(a){var s,r,q,p,o,n="0123456789ABCDEF" +if(a<128){s=new Uint8Array(3) +s[0]=37 +s[1]=n.charCodeAt(a>>>4) +s[2]=n.charCodeAt(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.JC(a,6*q)&63|r +s[p]=37 +s[p+1]=n.charCodeAt(o>>>4) +s[p+2]=n.charCodeAt(o&15) +p+=3}}return A.jq(s,0,null)}, +Vb(a,b,c,d,e,f){var s=A.bwM(a,b,c,d,e,f) +return s==null?B.c.S(a,b,c):s}, +bwM(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.bmI(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.Bz[o>>>4]&1<<(o&15))!==0){A.HF(a,r,"Invalid character") +m=i +n=m}else{if((o&64512)===55296){l=r+1 +if(l=2&&A.bwG(a.charCodeAt(0)))for(s=1;s127||(B.At[r>>>4]&1<<(r&15))===0)break}return a}, +bQg(a,b){if(a.Fv("package")&&a.c==null)return A.bxU(b,0,b.length) +return-1}, +bwQ(a){var s,r,q,p=a.gxS(),o=p.length +if(o>0&&J.b3(p[0])===2&&J.bja(p[0],1)===58){A.bwD(J.bja(p[0],0),!1) +A.Va(p,!1,1) +s=!0}else{A.Va(p,!1,0) +s=!1}r=a.gLZ()&&!s?""+"\\":"" +if(a.gFb()){q=a.gpZ(a) +if(q.length!==0)r=r+"\\"+q+"\\"}r=A.aas(r,p,"\\") +o=s&&o===1?r+"\\":r +return o.charCodeAt(0)==0?o:o}, +bQb(){return A.a([],t.s)}, +bwP(a){var s,r,q,p,o,n=A.I(t.N,t.yp),m=new A.be9(a,B.a_,n) +for(s=a.length,r=0,q=0,p=-1;r127)throw A.c(A.bZ("Illegal percent encoding in URI",null)) +if(r===37){if(o+3>q)throw A.c(A.bZ("Truncated URI",null)) +p.push(A.bQc(a,o+1)) +o+=2}else if(e&&r===43)p.push(32) +else p.push(r)}}return d.ha(0,p)}, +bwG(a){var s=a|32 +return 97<=s&&s<=122}, +bNO(a,b,c,d,e){var s,r +if(!0)d.a=d.a +else{s=A.bNN("") +if(s<0)throw A.c(A.fh("","mimeType","Invalid MIME type")) +r=d.a+=A.kn(B.Eb,B.c.S("",0,s),B.a_,!1) +d.a=r+"/" +d.a+=A.kn(B.Eb,B.c.cm("",s+1),B.a_,!1)}}, +bNN(a){var s,r,q +for(s=a.length,r=-1,q=0;qb)throw A.c(A.cn(k,a,r)) +for(;p!==44;){j.push(r);++r +for(o=-1;r=0)j.push(o) +else{n=B.b.gX(j) +if(p!==44||r!==n+7||!B.c.eJ(a,"base64",n+1))throw A.c(A.cn("Expecting '='",a,r)) +break}}j.push(r) +m=r+1 +if((j.length&1)===1)a=B.qK.aMU(0,a,m,s) +else{l=A.bwM(a,m,s,B.hM,!0,!1) +if(l!=null)a=B.c.iM(a,m,s,l)}return new A.abw(a,j,c)}, +bNM(a,b,c){var s,r,q,p,o="0123456789ABCDEF" +for(s=b.length,r=0,q=0;q>>4]&1<<(p&15))!==0)c.a+=A.el(p) +else{c.a+=A.el(37) +c.a+=A.el(o.charCodeAt(p>>>4)) +c.a+=A.el(o.charCodeAt(p&15))}}if((r&4294967040)!==0)for(q=0;q255)throw A.c(A.fh(p,"non-byte value",null))}}, +bR0(){var s,r,q,p,o,n="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-._~!$&'()*+,;=",m=".",l=":",k="/",j="\\",i="?",h="#",g="/\\",f=J.oL(22,t.R) +for(s=0;s<22;++s)f[s]=new Uint8Array(96) +r=new A.bf3(f) +q=new A.bf4() +p=new A.bf5() +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}, +bxR(a,b,c,d,e){var s,r,q,p,o=$.bDa() +for(s=b;s95?31:q] +d=p&31 +e[p>>>5]=s}return d}, +bwh(a){if(a.b===7&&B.c.cc(a.a,"package")&&a.c<=0)return A.bxU(a.a,a.e,a.f) +return-1}, +bSY(a,b){return A.hN(b,t.N)}, +bxU(a,b,c){var s,r,q +for(s=b,r=0;s")) +return t.lU.a(s.gaV(s))}, +Ka(a){var s,r,q="element tag unavailable" +try{s=a.tagName +s.toString +q=s}catch(r){}return q}, +bOO(a,b){return document.createElement(a)}, +bJ0(a){var s,r=document.createElement("input"),q=t.R_.a(r) +try{q.type=a}catch(s){}return q}, +bO1(a,b){var s=new WebSocket(a) +s.toString +return s}, +ju(a,b,c,d,e){var s=c==null?null:A.by4(new A.b54(c),t.I3) +s=new A.Go(a,b,s,!1,e.h("Go<0>")) +s.T_() +return s}, +bvZ(a){var s=document.createElement("a") +s.toString +s=new A.bbz(s,window.location) +s=new A.GE(s) +s.amW(a) +return s}, +bP7(a,b,c,d){return!0}, +bP8(a,b,c,d){var s,r,q,p=d.a,o=p.a +o.href=c +s=o.hostname +p=p.b +if(s==p.hostname){r=o.port +q=p.port +q.toString +if(r===q){r=o.protocol +p=p.protocol +p.toString +p=r===p}else p=!1}else p=!1 +if(!p)if(s==="")if(o.port===""){p=o.protocol +p=p===":"||p===""}else p=!1 +else p=!1 +else p=!0 +return p}, +bwt(){var s=t.N,r=A.qK(B.zx,s),q=A.a(["TEMPLATE"],t.s) +s=new A.anK(r,A.m4(s),A.m4(s),A.m4(s),null) +s.an0(null,new A.ad(B.zx,new A.bdb(),t.a4),q,null) +return s}, +bQZ(a){if(t.VF.b(a))return a +return new A.o_([],[]).tl(a,!0)}, +by4(a,b){var s=$.ac +if(s===B.b6)return a +return s.Kz(a,b)}, +bzs(a){return document.querySelector(a)}, +bc:function bc(){}, +Xm:function Xm(){}, +Xt:function Xt(){}, +XP:function XP(){}, +Ba:function Ba(){}, +th:function th(){}, +wl:function wl(){}, +oq:function oq(){}, +tq:function tq(){}, +Zy:function Zy(){}, +dM:function dM(){}, +wH:function wH(){}, +axZ:function axZ(){}, +jH:function jH(){}, +n0:function n0(){}, +Zz:function Zz(){}, +ZA:function ZA(){}, +a0w:function a0w(){}, +qc:function qc(){}, +a11:function a11(){}, +JV:function JV(){}, +JW:function JW(){}, +JX:function JX(){}, +a14:function a14(){}, +aeZ:function aeZ(a,b){this.a=a +this.b=b}, +cO:function cO(){}, +aBb:function aBb(){}, +b0:function b0(){}, +aL:function aL(){}, +i6:function i6(){}, +Cn:function Cn(){}, +Kl:function Kl(){}, +a1M:function a1M(){}, +a25:function a25(){}, +a27:function a27(){}, +jR:function jR(){}, +a2z:function a2z(){}, +xu:function xu(){}, +xv:function xv(){}, +xw:function xw(){}, +CM:function CM(){}, +xG:function xG(){}, +Lu:function Lu(){}, +a3H:function a3H(){}, +a5V:function a5V(){}, +ui:function ui(){}, +Du:function Du(){}, +a5Y:function a5Y(){}, +aKz:function aKz(a){this.a=a}, +aKA:function aKA(a){this.a=a}, +a5Z:function a5Z(){}, +aKB:function aKB(a){this.a=a}, +aKC:function aKC(a){this.a=a}, +jX:function jX(){}, +a6_:function a6_(){}, +ip:function ip(a){this.a=a}, +bs:function bs(){}, +Mr:function Mr(){}, +a6n:function a6n(){}, +jZ:function jZ(){}, +a7g:function a7g(){}, +lw:function lw(){}, +a8I:function a8I(){}, +aSc:function aSc(a){this.a=a}, +aSd:function aSd(a){this.a=a}, +O1:function O1(){}, +a90:function a90(){}, +EN:function EN(){}, +k3:function k3(){}, +a9U:function a9U(){}, +k6:function k6(){}, +aai:function aai(){}, +k7:function k7(){}, +aao:function aao(){}, +aXT:function aXT(a){this.a=a}, +aXU:function aXU(a){this.a=a}, +iV:function iV(){}, +Pa:function Pa(){}, +aaE:function aaE(){}, +aaF:function aaF(){}, +Fh:function Fh(){}, +kd:function kd(){}, +iW:function iW(){}, +ab0:function ab0(){}, +ab1:function ab1(){}, +ab4:function ab4(){}, +ke:function ke(){}, +ab9:function ab9(){}, +aba:function aba(){}, +aby:function aby(){}, +abH:function abH(){}, +FN:function FN(){}, +vk:function vk(){}, +po:function po(){}, +G3:function G3(){}, +afu:function afu(){}, +Rp:function Rp(){}, +ahm:function ahm(){}, +SR:function SR(){}, +ane:function ane(){}, +anq:function anq(){}, +aee:function aee(){}, +RF:function RF(a){this.a=a}, +bkj:function bkj(a,b){this.a=a +this.$ti=b}, +kT:function kT(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.$ti=d}, +RG:function RG(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.$ti=d}, +Go:function Go(a,b,c,d,e){var _=this +_.a=0 +_.b=a +_.c=b +_.d=c +_.e=d +_.$ti=e}, +b54:function b54(a){this.a=a}, +b56:function b56(a){this.a=a}, +GE:function GE(a){this.a=a}, +bH:function bH(){}, +Ms:function Ms(a){this.a=a}, +aMj:function aMj(a){this.a=a}, +aMi:function aMi(a,b,c){this.a=a +this.b=b +this.c=c}, +Uf:function Uf(){}, +bck:function bck(){}, +bcl:function bcl(){}, +anK:function anK(a,b,c,d,e){var _=this +_.e=a +_.a=b +_.b=c +_.c=d +_.d=e}, +bdb:function bdb(){}, +anr:function anr(){}, +Co:function Co(a,b,c){var _=this +_.a=a +_.b=b +_.c=-1 +_.d=null +_.$ti=c}, +bbz:function bbz(a,b){this.a=a +this.b=b}, +aoV:function aoV(a){this.a=a +this.b=0}, +bee:function bee(a){this.a=a}, +afv:function afv(){}, +age:function age(){}, +agf:function agf(){}, +agg:function agg(){}, +agh:function agh(){}, +agN:function agN(){}, +agO:function agO(){}, +ahE:function ahE(){}, +ahF:function ahF(){}, +ajf:function ajf(){}, +ajg:function ajg(){}, +ajh:function ajh(){}, +aji:function aji(){}, +ajA:function ajA(){}, +ajB:function ajB(){}, +ak3:function ak3(){}, +ak4:function ak4(){}, +am7:function am7(){}, +Uj:function Uj(){}, +Uk:function Uk(){}, +anc:function anc(){}, +and:function and(){}, +ank:function ank(){}, +ao6:function ao6(){}, +ao7:function ao7(){}, +UQ:function UQ(){}, +UR:function UR(){}, +aoi:function aoi(){}, +aoj:function aoj(){}, +apn:function apn(){}, +apo:function apo(){}, +apx:function apx(){}, +apy:function apy(){}, +apP:function apP(){}, +apQ:function apQ(){}, +aqp:function aqp(){}, +aqq:function aqq(){}, +aqs:function aqs(){}, +aqt:function aqt(){}, +bx6(a){var s,r,q +if(a==null)return a +if(typeof a=="string"||typeof a=="number"||A.jA(a))return a +if(A.byX(a))return A.mJ(a) +s=Array.isArray(a) +s.toString +if(s){r=[] +q=0 +while(!0){s=a.length +s.toString +if(!(q")),r=new A.AB(s,b.h("AB<0>")),q=t.I3 +A.ju(a,"success",new A.beV(a,r),!1,q) +A.ju(a,"error",r.gKO(),!1,q) +return s}, +bKt(a,b,c){var s=A.lE(null,null,null,!0,c),r=t.I3 +A.ju(a,"error",s.gwK(),!1,r) +A.ju(a,"success",new A.aMu(a,s,!0),!1,r) +return new A.d6(s,A.l(s).h("d6<1>"))}, +JB:function JB(){}, +ov:function ov(){}, +wN:function wN(){}, +L0:function L0(){}, +beV:function beV(a,b){this.a=a +this.b=b}, +D0:function D0(){}, +Mv:function Mv(){}, +aMu:function aMu(a,b,c){this.a=a +this.b=b +this.c=c}, +vi:function vi(){}, +bOT(a,b){throw A.c(A.aa("File._exists"))}, +bOU(a,b){throw A.c(A.aa("File._lengthFromPath"))}, +bw0(){throw A.c(A.aa("_Namespace"))}, +bPj(){throw A.c(A.aa("_Namespace"))}, +bPz(a){throw A.c(A.aa("RandomAccessFile"))}, +bPw(){throw A.c(A.aa("Platform._operatingSystem"))}, +bLa(a,b){throw A.c(A.aa("Process.run"))}, +Wz(a,b,c){var s +if(t.Dn.b(a)&&!J.j(J.b7(a,0),0)){s=J.aj(a) +switch(s.i(a,0)){case 1:throw A.c(A.bZ(b+": "+c,null)) +case 2:throw A.c(A.bI3(new A.qO(A.bm(s.i(a,2)),A.ep(s.i(a,1))),b,c)) +case 3:throw A.c(A.brs("File closed",c,null)) +default:throw A.c(A.mQ("Unknown error"))}}}, +brt(a){var s +A.bIS() +A.bi(a,"path") +s=A.bI2(B.aV.cV(a)) +return new A.RN(a,s)}, +brs(a,b,c){return new A.jc(a,b,c)}, +bI3(a,b,c){if($.biC())switch(a.b){case 5:case 16:case 19:case 24:case 32:case 33:case 65:case 108:return new A.MM(b,c,a) +case 80:case 183:return new A.MN(b,c,a) +case 2:case 3:case 15:case 18:case 53:case 67:case 161:case 206:return new A.MO(b,c,a) +default:return new A.jc(b,c,a)}else switch(a.b){case 1:case 13:return new A.MM(b,c,a) +case 17:return new A.MN(b,c,a) +case 2:return new A.MO(b,c,a) +default:return new A.jc(b,c,a)}}, +bOV(){return A.bPj()}, +bvS(a,b){b[0]=A.bOV()}, +bPy(a,b){return new A.Ar(b,A.bPz(a))}, +bI2(a){var s,r,q=a.length +if(q!==0)s=!B.M.gak(a)&&!J.j(B.M.gX(a),0) +else s=!0 +if(s){r=new Uint8Array(q+1) +B.M.di(r,0,q,a) +return r}else return a}, +bIS(){$.bCI() +return null}, +bPx(){return A.bPw()}, +qO:function qO(a,b){this.a=a +this.b=b}, +xc:function xc(a){this.a=a}, +jc:function jc(a,b,c){this.a=a +this.b=b +this.c=c}, +MM:function MM(a,b,c){this.a=a +this.b=b +this.c=c}, +MN:function MN(a,b,c){this.a=a +this.b=b +this.c=c}, +MO:function MO(a,b,c){this.a=a +this.b=b +this.c=c}, +agQ:function agQ(a,b,c,d){var _=this +_.a=$ +_.b=a +_.c=null +_.d=b +_.e=c +_.f=d +_.r=!1 +_.w=!0 +_.y=_.x=!1}, +b5t:function b5t(a){this.a=a}, +b5m:function b5m(a){this.a=a}, +b5n:function b5n(a){this.a=a}, +b5o:function b5o(a){this.a=a}, +b5r:function b5r(a){this.a=a}, +b5p:function b5p(a,b){this.a=a +this.b=b}, +b5q:function b5q(a){this.a=a}, +b5s:function b5s(a){this.a=a}, +RN:function RN(a,b){this.a=a +this.b=b}, +b5v:function b5v(a){this.a=a}, +b5u:function b5u(a){this.a=a}, +b5B:function b5B(){}, +b5C:function b5C(a,b,c){this.a=a +this.b=b +this.c=c}, +b5D:function b5D(a,b,c){this.a=a +this.b=b +this.c=c}, +b5y:function b5y(){}, +b5z:function b5z(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +b5A:function b5A(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +b5x:function b5x(a,b){this.a=a +this.b=b}, +b5w:function b5w(a,b,c){this.a=a +this.b=b +this.c=c}, +Ar:function Ar(a,b){var _=this +_.a=a +_.b=!1 +_.c=$ +_.d=b +_.e=!1}, +ba0:function ba0(a){this.a=a}, +ba3:function ba3(a){this.a=a}, +ba2:function ba2(a,b,c){this.a=a +this.b=b +this.c=c}, +ba4:function ba4(a){this.a=a}, +ba1:function ba1(a){this.a=a}, +Kn:function Kn(a){this.a=a}, +aCR:function aCR(){}, +aaB:function aaB(){}, +bQE(a,b,c,d){var s,r +if(b){s=[c] +B.b.I(s,d) +d=s}r=t.z +return A.bmP(A.brN(a,A.hl(J.cx(d,A.bVZ(),r),!0,r)))}, +bJg(a,b,c){var s=null +if(a<0||a>c)throw A.c(A.cT(a,0,c,s,s)) +if(bc)throw A.c(A.cT(b,a,c,s,s))}, +bmR(a,b,c){var s +try{if(Object.isExtensible(a)&&!Object.prototype.hasOwnProperty.call(a,b)){Object.defineProperty(a,b,{value:c}) +return!0}}catch(s){}return!1}, +bxq(a,b){if(Object.prototype.hasOwnProperty.call(a,b))return a[b] +return null}, +bmP(a){if(a==null||typeof a=="string"||typeof a=="number"||A.jA(a))return a +if(a instanceof A.qH)return a.a +if(A.byV(a))return a +if(t.e2.b(a))return a +if(a instanceof A.dx)return A.jo(a) +if(t._8.b(a))return A.bxp(a,"$dart_jsFunction",new A.bf1()) +return A.bxp(a,"_$dart_jsObject",new A.bf2($.bos()))}, +bxp(a,b,c){var s=A.bxq(a,b) +if(s==null){s=c.$1(a) +A.bmR(a,b,s)}return s}, +bmO(a){if(a==null||typeof a=="string"||typeof a=="number"||typeof a=="boolean")return a +else if(a instanceof Object&&A.byV(a))return a +else if(a instanceof Object&&t.e2.b(a))return a +else if(a instanceof Date)return A.n1(a.getTime(),!1) +else if(a.constructor===$.bos())return a.o +else return A.by2(a)}, +by2(a){if(typeof a=="function")return A.bmW(a,$.arp(),new A.bg2()) +if(a instanceof Array)return A.bmW(a,$.boo(),new A.bg3()) +return A.bmW(a,$.boo(),new A.bg4())}, +bmW(a,b,c){var s=A.bxq(a,b) +if(s==null||!(a instanceof Object)){s=c.$1(a) +A.bmR(a,b,s)}return s}, +bf1:function bf1(){}, +bf2:function bf2(a){this.a=a}, +bg2:function bg2(){}, +bg3:function bg3(){}, +bg4:function bg4(){}, +qH:function qH(a){this.a=a}, +Lg:function Lg(a){this.a=a}, +xP:function xP(a,b){this.a=a +this.$ti=b}, +GJ:function GJ(){}, +bQX(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.bQF,a) +s[$.arp()]=a +a.$dart_jsFunction=s +return s}, +bQF(a,b){return A.brN(a,b)}, +cH(a){if(typeof a=="function")return a +else return A.bQX(a)}, +bxF(a){return a==null||A.jA(a)||typeof a=="number"||typeof a=="string"||t.pT.b(a)||t.R.b(a)||t.Po.b(a)||t.JZ.b(a)||t.w7.b(a)||t.XO.b(a)||t.rd.b(a)||t.s4.b(a)||t.OE.b(a)||t.pI.b(a)||t.V4.b(a)}, +b1(a){if(A.bxF(a))return a +return new A.bhn(new A.vw(t.Fy)).$1(a)}, +a1(a,b){return a[b]}, +WA(a,b){return a[b]}, +cj(a,b,c){return a[b].apply(a,c)}, +bQG(a,b){return a[b]()}, +bx0(a,b,c){return a[b](c)}, +bQH(a,b,c,d){return a[b](c,d)}, +bx_(a){return new a()}, +bQD(a,b){return new a(b)}, +lP(a,b){var s=new A.a7($.ac,b.h("a7<0>")),r=new A.aD(s,b.h("aD<0>")) +a.then(A.pR(new A.bhR(r),1),A.pR(new A.bhS(r),1)) +return s}, +bxE(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}, +bnl(a){if(A.bxE(a))return a +return new A.bgv(new A.vw(t.Fy)).$1(a)}, +bhn:function bhn(a){this.a=a}, +bhR:function bhR(a){this.a=a}, +bhS:function bhS(a){this.a=a}, +bgv:function bgv(a){this.a=a}, +a6p:function a6p(a){this.a=a}, +bz8(a,b){return Math.max(a,b)}, +WS(a){return Math.log(a)}, +bX2(a,b){return Math.pow(a,b)}, +bLk(a){var s +if(a==null)s=B.hc +else{s=new A.ba_() +s.amZ(a)}return s}, +btz(){return $.bB5()}, +b7q:function b7q(){}, +ba_:function ba_(){this.b=this.a=0}, +b7r:function b7r(a){this.a=a}, +ln:function ln(){}, +a3w:function a3w(){}, +lt:function lt(){}, +a6s:function a6s(){}, +a7h:function a7h(){}, +Ex:function Ex(){}, +aat:function aat(){}, +bh:function bh(){}, +lF:function lF(){}, +abc:function abc(){}, +ain:function ain(){}, +aio:function aio(){}, +ajK:function ajK(){}, +ajL:function ajL(){}, +ann:function ann(){}, +ano:function ano(){}, +aoo:function aoo(){}, +aop:function aop(){}, +bFw(a,b){return A.lq(a,b,null)}, +avb(a){var s=a.BYTES_PER_ELEMENT,r=A.dJ(0,null,B.f.i9(a.byteLength,s),null,null) +return A.lq(a.buffer,a.byteOffset+0*s,(r-0)*s)}, +abi(a,b,c){var s=J.bEh(a) +c=A.dJ(b,c,B.f.i9(a.byteLength,s),null,null) +return A.eO(a.buffer,a.byteOffset+b*s,(c-b)*s)}, +a1o:function a1o(){}, +mb(a,b,c){if(b==null)if(a==null)return null +else return a.av(0,1-c) +else if(a==null)return b.av(0,c) +else return new A.m(A.pO(a.a,b.a,c),A.pO(a.b,b.b,c))}, +bMo(a,b){return new A.U(a,b)}, +aVc(a,b,c){if(b==null)if(a==null)return null +else return a.av(0,1-c) +else if(a==null)return b.av(0,c) +else return new A.U(A.pO(a.a,b.a,c),A.pO(a.b,b.b,c))}, +nx(a,b){var s=a.a,r=b*2/2,q=a.b +return new A.L(s-r,q-r,s+r,q+r)}, +aQi(a,b,c){var s=a.a,r=c/2,q=a.b,p=b/2 +return new A.L(s-r,q-p,s+r,q+p)}, +uE(a,b){var s=a.a,r=b.a,q=a.b,p=b.b +return new A.L(Math.min(s,r),Math.min(q,p),Math.max(s,r),Math.max(q,p))}, +btC(a,b,c){var s,r,q,p,o +if(b==null)if(a==null)return null +else{s=1-c +return new A.L(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.L(r*c,q*c,p*c,o*c) +else return new A.L(A.pO(a.a,r,c),A.pO(a.b,q,c),A.pO(a.c,p,c),A.pO(a.d,o,c))}}, +Ng(a,b,c){var s,r,q +if(b==null)if(a==null)return null +else{s=1-c +return new A.b8(a.a*s,a.b*s)}else{r=b.a +q=b.b +if(a==null)return new A.b8(r*c,q*c) +else return new A.b8(A.pO(a.a,r,c),A.pO(a.b,q,c))}}, +bLg(a,b,c,d,e,f){return new A.lx(a,b,c,d,e,f,e,f,e,f,e,f,e===f)}, +mg(a,b){var s=b.a,r=b.b +return new A.lx(a.a,a.b,a.c,a.d,s,r,s,r,s,r,s,r,s===r)}, +Ne(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.lx(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)}, +a7B(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.lx(a.a,a.b,a.c,a.d,s,r,q,p,m,l,o,n,k)}, +bJj(a){switch(a.a){case 1:return"up" +case 0:return"down" +case 2:return"repeat"}}, +ag(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}, +pO(a,b,c){return a*(1-c)+b*c}, +bfI(a,b,c){return a*(1-c)+b*c}, +V(a,b,c){if(ac)return c +if(isNaN(a))return c +return a}, +bxQ(a,b){return A.K(A.vV(B.e.bg((a.gj(a)>>>24&255)*b),0,255),a.gj(a)>>>16&255,a.gj(a)>>>8&255,a.gj(a)&255)}, +bqq(a){return new A.e(a>>>0)}, +K(a,b,c,d){return new A.e(((a&255)<<24|(b&255)<<16|(c&255)<<8|d&255)>>>0)}, +bFZ(a,b,c,d){return new A.e(((B.e.cE(d*255,1)&255)<<24|(a&255)<<16|(b&255)<<8|c&255)>>>0)}, +bjF(a){if(a<=0.03928)return a/12.92 +return Math.pow((a+0.055)/1.055,2.4)}, +W(a,b,c){if(b==null)if(a==null)return null +else return A.bxQ(a,1-c) +else if(a==null)return A.bxQ(b,c) +else return A.K(A.vV(B.e.au(A.bfI(a.gj(a)>>>24&255,b.gj(b)>>>24&255,c)),0,255),A.vV(B.e.au(A.bfI(a.gj(a)>>>16&255,b.gj(b)>>>16&255,c)),0,255),A.vV(B.e.au(A.bfI(a.gj(a)>>>8&255,b.gj(b)>>>8&255,c)),0,255),A.vV(B.e.au(A.bfI(a.gj(a)&255,b.gj(b)&255,c)),0,255))}, +BG(a,b){var s,r,q,p=a.gj(a)>>>24&255 +if(p===0)return b +s=255-p +r=b.gj(b)>>>24&255 +if(r===255)return A.K(255,B.f.cE(p*(a.gj(a)>>>16&255)+s*(b.gj(b)>>>16&255),255),B.f.cE(p*(a.gj(a)>>>8&255)+s*(b.gj(b)>>>8&255),255),B.f.cE(p*(a.gj(a)&255)+s*(b.gj(b)&255),255)) +else{r=B.f.cE(r*s,255) +q=p+r +return A.K(q,B.f.i9((a.gj(a)>>>16&255)*p+(b.gj(b)>>>16&255)*r,q),B.f.i9((a.gj(a)>>>8&255)*p+(b.gj(b)>>>8&255)*r,q),B.f.i9((a.gj(a)&255)*p+(b.gj(b)&255)*r,q))}}, +bkA(a,b,c,d,e,f){return $.au().a96(0,a,b,c,d,e,null)}, +bs9(a,b){return $.au().a97(a,b)}, +arc(a,b){return A.bVM(a,b)}, +bVM(a,b){var s=0,r=A.y(t.hP),q,p=2,o,n=[],m,l,k,j,i,h,g,f +var $async$arc=A.u(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=$.au() +g=a.a +g.toString +q=h.VT(g) +s=1 +break +s=4 +break +case 5:h=$.au() +g=a.a +g.toString +s=6 +return A.t(h.VT(g),$async$arc) +case 6:m=d +p=7 +s=10 +return A.t(m.pt(),$async$arc) +case 10:l=d +try{g=J.bjb(l) +k=g.gf6(g) +g=J.bjb(l) +j=g.gdC(g) +i=b.$2(k,j) +g=a.a +g.toString +f=i.a +f=h.tH(g,!1,i.b,f) +q=f +n=[1] +s=8 +break}finally{J.bjb(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$arc,r)}, +bMi(a){return a>0?a*0.57735+0.5:0}, +bMj(a,b,c){var s,r,q=A.W(a.a,b.a,c) +q.toString +s=A.mb(a.b,b.b,c) +s.toString +r=A.pO(a.c,b.c,c) +return new A.uU(q,s,r)}, +bMk(a,b,c){var s,r,q,p=a==null +if(p&&b==null)return null +if(p)a=A.a([],t.b5) +if(b==null)b=A.a([],t.b5) +s=A.a([],t.b5) +r=Math.min(a.length,b.length) +for(q=0;q=0;q=d,b=p)s=s+q+B.c.S(a,b,p) +s=s+e+B.c.cm(a,c) +return s.charCodeAt(0)==0?s:s}, +bRX(a,b,c,d){var s,r,q,p=b.length +if(p===0)return c +s=d-p +if(s=0}else q=!1 +if(!q)break +if(r>s)return-1 +if(A.bny(a,c,d,r)&&A.bny(a,c,d,r+p))return r +c=r+1}return-1}return A.bRC(a,b,c,d)}, +bRC(a,b,c,d){var s,r,q,p=new A.mW(a,d,c,0) +for(s=b.length;r=p.ly(),r>=0;){q=r+s +if(q>d)break +if(B.c.eJ(a,b,r)&&A.bny(a,c,d,q))return r}return-1}, +fq:function fq(a){this.a=a}, +F5:function F5(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=null}, +bhs(a,b,c,d){if(d===208)return A.bz4(a,b,c) +if(d===224){if(A.bz3(a,b,c)>=0)return 145 +return 64}throw A.c(A.R("Unexpected state: "+B.f.of(d,16)))}, +bz4(a,b,c){var s,r,q,p,o +for(s=c,r=0;q=s-2,q>=b;s=q){p=a.charCodeAt(s-1) +if((p&64512)!==56320)break +o=a.charCodeAt(q) +if((o&64512)!==55296)break +if(A.pT(o,p)!==6)break +r^=1}if(r===0)return 193 +else return 144}, +bz3(a,b,c){var s,r,q,p,o +for(s=c;s>b;){--s +r=a.charCodeAt(s) +if((r&64512)!==56320)q=A.AI(r) +else{if(s>b){--s +p=a.charCodeAt(s) +o=(p&64512)===55296}else{p=0 +o=!1}if(o)q=A.pT(p,r) +else break}if(q===7)return s +if(q!==4)break}return-1}, +bny(a,b,c,d){var s,r,q,p,o,n,m,l,k,j=u.q +if(b=c)return!0 +n=a.charCodeAt(o) +if((n&64512)!==56320)return!0 +p=A.pT(s,n)}else return(q&64512)!==55296 +if((q&64512)!==56320){m=A.AI(q) +d=r}else{d-=2 +if(b<=d){l=a.charCodeAt(d) +if((l&64512)!==55296)return!0 +m=A.pT(l,q)}else return!0}k=j.charCodeAt(j.charCodeAt(p|176)&240|m) +return((k>=208?A.bhs(a,b,d,k):k)&1)===0}return b!==c}, +bX3(a,b,c,d){var s,r,q,p,o,n +if(d===b||d===c)return d +s=a.charCodeAt(d) +if((s&63488)!==55296){r=A.AI(s) +q=d}else if((s&64512)===55296){p=d+1 +if(pb){o=s-1 +n=a.charCodeAt(o) +if((n&64512)===55296){q=A.pT(n,r) +s=o}else q=2}else q=2 +if(q===6)m=A.bz4(a,b,s)!==144?160:48 +else{l=q===1 +if(l||q===4)if(A.bz3(a,b,s)>=0)m=l?144:128 +else m=48 +else m=u.S.charCodeAt(q|176)}return new A.mW(a,a.length,d,m).ly()}, +mW:function mW(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +B7:function B7(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +axn:function axn(){}, +cW:function cW(){}, +avA:function avA(a){this.a=a}, +avB:function avB(a){this.a=a}, +avC:function avC(a,b){this.a=a +this.b=b}, +avD:function avD(a){this.a=a}, +avE:function avE(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +avF:function avF(a,b,c){this.a=a +this.b=b +this.c=c}, +avG:function avG(a){this.a=a}, +a0H:function a0H(a){this.$ti=a}, +xK:function xK(a,b){this.a=a +this.$ti=b}, +y1:function y1(a,b){this.a=a +this.$ti=b}, +vO:function vO(){}, +FH:function FH(a,b){this.a=a +this.$ti=b}, +EL:function EL(a,b){this.a=a +this.$ti=b}, +GO:function GO(a,b,c){this.a=a +this.b=b +this.c=c}, +yc:function yc(a,b,c){this.a=a +this.b=b +this.$ti=c}, +a0F:function a0F(a){this.b=a}, +a2x:function a2x(a,b,c){var _=this +_.a=a +_.b=b +_.d=_.c=0 +_.$ti=c}, +bRT(a){var s,r,q,p,o="0123456789abcdef",n=a.length,m=new Uint8Array(n*2) +for(s=0,r=0;s>>4&15) +r=p+1 +m[p]=o.charCodeAt(q&15)}return A.jq(m,0,null)}, +wW:function wW(a){this.a=a}, +ayz:function ayz(){this.a=null}, +a2w:function a2w(){}, +aFG:function aFG(){}, +amA:function amA(){}, +bcd:function bcd(a,b,c,d,e){var _=this +_.w=a +_.x=b +_.a=c +_.c=d +_.d=0 +_.e=e +_.f=!1}, +z4:function z4(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.f=e +_.r=f}, +auM:function auM(a){this.a=a}, +auO:function auO(a){this.a=a}, +auP:function auP(a,b,c){this.a=a +this.b=b +this.c=c}, +auN:function auN(){}, +auQ:function auQ(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +auR:function auR(a){this.a=a}, +auZ:function auZ(a,b){this.a=a +this.b=b}, +av_:function av_(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +av0:function av0(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +auS:function auS(a,b,c){this.a=a +this.b=b +this.c=c}, +auT:function auT(a,b,c){this.a=a +this.b=b +this.c=c}, +auU:function auU(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +auV:function auV(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +auW:function auW(a){this.a=a}, +auX:function auX(a){this.a=a}, +auY:function auY(a,b){this.a=a +this.b=b}, +i0:function i0(a){this.a=a +this.c=this.b=null}, +ayH:function ayH(a,b,c,d,e){var _=this +_.Lz$=a +_.aIW$=b +_.aa2$=c +_.aa3$=d +_.aR6$=e}, +ag6:function ag6(){}, +bON(a){switch(a.a){case 0:return"connection timeout" +case 1:return"send timeout" +case 2:return"receive timeout" +case 3:return"bad certificate" +case 4:return"bad response" +case 5:return"request cancelled" +case 6:return"connection error" +case 7:return"unknown"}}, +BY(a,b,c,d,e,f){var s +if(e===B.ql){s=c.ch +if(s==null)s=A.ik()}else{s=e==null?c.ch:e +if(s==null)s=A.ik()}return new A.hJ(c,d,f,a,s,b)}, +bqE(a,b){return A.BY(null,"The request connection took longer than "+b.l(0)+" and it was aborted. To get rid of this exception, try raising the RequestOptions.connectTimeout above the duration of "+b.l(0)+u.v,a,null,null,B.a1E)}, +bqF(a,b){return A.BY(null,"The request took longer than "+b.l(0)+" to receive data. It was aborted. To get rid of this exception, try raising the RequestOptions.receiveTimeout above the duration of "+b.l(0)+u.v,a,null,null,B.a1F)}, +bGT(a,b){return A.BY(null,"The connection errored: "+a+" This indicates an error which most likely cannot be solved by the library.",b,null,null,B.a1H)}, +ty:function ty(a,b){this.a=a +this.b=b}, +hJ:function hJ(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +bk0(a,b,c){var s=A.a([],c.h("H>")) +if(a!=null)s.push(a.a.a.be(new A.ayY(),c)) +s.push(b) +return A.bIC(s,c)}, +a0X(a,b){b=A.bKw() +b.a=a +return b}, +bk_(a,b){if(a instanceof A.hJ)return a +return A.BY(a,null,b,null,null,B.a1I)}, +bqG(a,b,c){var s,r,q,p,o=null +if(!(a instanceof A.fy))return A.a8w(c.a(a),o,o,!1,B.C8,b,o,o,c) +else if(!c.h("fy<0>").b(a)){s=c.h("0?").a(a.a) +if(s instanceof A.z4){r=s.f +q=b.c +q===$&&A.b() +p=A.brY(r,q)}else p=a.e +return A.a8w(s,a.w,p,a.f,a.r,a.b,a.c,a.d,c)}return a}, +ayI:function ayI(){}, +ayS:function ayS(a){this.a=a}, +ayU:function ayU(a,b){this.a=a +this.b=b}, +ayT:function ayT(a,b){this.a=a +this.b=b}, +ayV:function ayV(a){this.a=a}, +ayX:function ayX(a,b){this.a=a +this.b=b}, +ayW:function ayW(a,b){this.a=a +this.b=b}, +ayP:function ayP(a){this.a=a}, +ayQ:function ayQ(a,b){this.a=a +this.b=b}, +ayR:function ayR(a,b){this.a=a +this.b=b}, +ayL:function ayL(a){this.a=a}, +ayM:function ayM(a,b,c){this.a=a +this.b=b +this.c=c}, +ayJ:function ayJ(a){this.a=a}, +ayK:function ayK(a){this.a=a}, +ayN:function ayN(a,b){this.a=a +this.b=b}, +ayO:function ayO(a,b){this.a=a +this.b=b}, +ayY:function ayY(){}, +CU:function CU(a,b){this.a=a +this.b=b}, +fx:function fx(a,b,c){this.a=a +this.b=b +this.$ti=c}, +b2t:function b2t(){}, +z3:function z3(a){this.a=a}, +z5:function z5(a){this.a=a}, +x3:function x3(a){this.a=a}, +kA:function kA(){}, +ai2:function ai2(){}, +a35:function a35(a,b,c,d){var _=this +_.a=a +_.aR7$=b +_.aR8$=c +_.aR9$=d}, +a34:function a34(a){this.a=a}, +ai3:function ai3(){}, +Cv(a){var s=new A.KI(A.bE("\\r\\n|\\r|\\n",!0,!1,!1),A.a([],t.Iq),A.a([],t.cS)) +s.amz(a,B.jR,!1) +return s}, +KI:function KI(a,b,c){var _=this +_.a=$ +_.b=a +_.c=b +_.d=c +_.e=!1}, +aDU:function aDU(a){this.a=a}, +aDV:function aDV(a){this.a=a}, +aDZ:function aDZ(a){this.a=a}, +aE0:function aE0(a){this.a=a}, +aE_:function aE_(a){this.a=a}, +aDX:function aDX(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aDW:function aDW(a){this.a=a}, +aDY:function aDY(a,b,c){this.a=a +this.b=b +this.c=c}, +brY(a,b){var s=t.yp +return new A.KU(A.WI(a.qZ(a,new A.aFL(),t.N,s),s))}, +KU:function KU(a){this.b=a}, +aFL:function aFL(){}, +aFM:function aFM(){}, +aFN:function aFN(a){this.a=a}, +L2:function L2(){}, +bKh(a,b){var s=A.WI(null,t.yp),r=A.bl2("application","octet-stream",null) +return new A.uj(a.length,b,s,r,new A.aLH(a))}, +uj:function uj(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=!1}, +aLH:function aLH(a){this.a=a}, +bKw(){return new A.aMz()}, +btN(a,b,c,d,e,f,g,h,i,j,k,l,m,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1){var s=k==null?"GET":k,r=i==null?B.jR:i,q=f==null?A.I(t.N,t.z):f,p=j==null?5:j,o=b1==null?A.bzd():b1,n=a8==null?B.fS:a8 +r=new A.lB(e,a0,b,l,m,$,$,null,s,a2===!0,a9,a5,n,o,a4!==!1,q,g!==!1,p,a1!==!1,a6,a7,r) +r.a_e(d,f,g,h,i,j,k,a1,a2,a4,a5,a6,a7,a8,a9,b1) +r.ch=b0==null?A.ik():b0 +r.EY$=a3==null?A.I(t.N,t.z):a3 +r.ve$=a==null?"":a +r.sUa(c) +return r}, +bRb(a){return a>=200&&a<300}, +Em:function Em(a,b){this.a=a +this.b=b}, +a3E:function a3E(a,b){this.a=a +this.b=b}, +a6y:function a6y(){}, +atT:function atT(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this +_.ve$=a +_.EY$=b +_.Ly$=c +_.a=d +_.b=$ +_.c=e +_.d=f +_.e=g +_.f=null +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m +_.as=n +_.at=o +_.ax=p +_.ay=q}, +aMz:function aMz(){this.a=null}, +lB:function lB(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){var _=this +_.ch=null +_.CW=a +_.cx=b +_.cy=c +_.db=d +_.dx=e +_.ve$=f +_.EY$=g +_.Ly$=h +_.a=i +_.b=$ +_.c=j +_.d=k +_.e=l +_.f=null +_.r=m +_.w=n +_.x=o +_.y=p +_.z=q +_.Q=r +_.as=s +_.at=a0 +_.ax=a1 +_.ay=a2}, +bbc:function bbc(){}, +aep:function aep(){}, +alP:function alP(){}, +bTb(a,b,c){if(t.NP.b(a))return a +return A.bSZ(a,b,c,t.Cm).td(a)}, +bSZ(a,b,c,d){return A.bPO(new A.bfY(c,d),d,t.R)}, +bfY:function bfY(a,b){this.a=a +this.b=b}, +a8w(a,b,c,d,e,f,g,h,i){var s,r +if(c==null){f.c===$&&A.b() +s=new A.KU(A.WI(null,t.yp))}else s=c +r=b==null?A.I(t.N,t.z):b +return new A.fy(a,f,g,h,s,d,e,r,i.h("fy<0>"))}, +fy:function fy(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 +_.$ti=i}, +bNC(a,b){return A.bnn(a,new A.b_F(),!0,!1,b)}, +bND(a,b){return A.bnn(a,new A.b_G(),!0,!0,b)}, +buS(a){var s,r,q +if(a==null)return!1 +s=A.bsQ(a) +r=s.b +q=s.a+"/"+r +return q==="application/json"||q==="text/json"||B.c.hT(r,"+json")}, +b_E:function b_E(){}, +b_F:function b_F(){}, +b_G:function b_G(){}, +bR5(a){if(a.length<51200)return B.az.v1(0,a,null) +return A.bTR().$2$2(A.bTW(),a,t.N,t.z)}, +atE:function atE(a){this.a=a}, +aYz:function aYz(){}, +aYA:function aYA(a,b,c){this.a=a +this.b=b +this.c=c}, +aYC:function aYC(a){this.a=a}, +aYB:function aYB(a){this.a=a}, +aYD:function aYD(a){this.a=a}, +bYW(a,b){var s=new A.a7($.ac,t.LR) +a.fN(b.gjH(b),new A.bir(new A.aD(s,t.zh)),b.gwK()) +return s}, +bnn(a,b,c,d,e){var s,r,q,p,o={},n=new A.d_("") +o.a=!0 +s=!d +r=!s||!c?"[":"%5B" +q=!s||!c?"]":"%5D" +p=c?A.bTZ():new A.bgD() +new A.bgF(o,e,d,new A.bgE(d,p),r,q,p,b,n).$2(a,"") +o=n.a +return o.charCodeAt(0)==0?o:o}, +bRP(a,b){switch(a.a){case 0:return"," +case 1:return b?"%20":" " +case 2:return"\\t" +case 3:return"|" +default:return""}}, +WI(a,b){var s=A.lo(new A.bgi(),new A.bgj(),t.N,b) +if(a!=null&&a.a!==0)s.I(0,a) +return s}, +bir:function bir(a){this.a=a}, +bgD:function bgD(){}, +bgE:function bgE(a,b){this.a=a +this.b=b}, +bgF:function bgF(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}, +bgG:function bgG(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +bgi:function bgi(){}, +bgj:function bgj(){}, +JP:function JP(a,b){this.a=a +this.b=b}, +bjy(a){var s,r,q,p,o,n,m,l,k,j=new A.ave() +if(a==null)a=A.a([],t.s) +s=t.N +r=A.I(s,s) +q=A.a([],t.s) +for(s=J.al(a);s.v();){p=s.gG(s) +if(p.length!==0){o=A.buq(p) +j.$3(o,r,q) +p=o.b +while(!0){n=o.d=B.c.r2(",",p,o.c) +o.e=o.c +m=n!=null +if(m)o.e=o.c=n.gcg(n) +if(!m)break +j.$3(o,r,q)}o.a9Z()}}s=r.i(0,"max-age") +s=A.me(s==null?"":s,null) +if(s==null)s=-1 +p=r.i(0,"max-stale") +p=A.me(p==null?"":p,null) +if(p==null)p=-1 +n=r.i(0,"min-fresh") +n=A.me(n==null?"":n,null) +if(n==null)n=-1 +l=r.aq(0,"must-revalidate") +k=r.i(0,"public") +if(k==null)k=r.i(0,"private") +return new A.tk(s,k,r.aq(0,"no-cache"),r.aq(0,"no-store"),p,n,l,q)}, +tk:function tk(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}, +ave:function ave(){}, +avk(a){var s +$.bAn() +s=a.gho().l(0) +return new A.b0A(null).aeZ("6ba7b811-9dad-11d1-80b4-00c04fd430c8",s,null)}, +Bj:function Bj(a,b){this.a=a +this.b=b}, +avj:function avj(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.d=c +_.e=d +_.f=e}, +ws:function ws(a,b){this.a=a +this.b=b}, +bjz(a,a0,a1){var s=0,r=A.y(t.JS),q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b +var $async$bjz=A.u(function(a3,a4){if(a3===1)return A.v(a4,r) +while(true)switch(s){case 0:e=a1.e.b +d=e.i(0,B.c.dn("date")) +c=d==null?null:J.AS(d,",") +b=null +if(c!=null)try{b=A.bkC(c)}catch(a2){}d=e.i(0,B.c.dn("expires")) +p=d==null?null:J.AS(d,",") +o=null +if(p!=null)try{o=A.bkC(p)}catch(a2){m=new A.dx(0,!0) +m.HT(0,!0) +o=m}d=A.bjy(e.i(0,B.c.dn("cache-control"))) +l=b +k=e.i(0,B.c.dn("etag")) +k=k==null?null:J.AS(k,",") +j=o +i=B.aV.cV(B.az.xe(e,null)) +e=e.i(0,B.c.dn("last-modified")) +e=e==null?null:J.AS(e,",") +h=new A.dx(Date.now(),!1).NC().F(0,a0.d) +g=a1.b +f=g.y +f===$&&A.b() +q=new A.q4(d,null,l,k,j,i,a,e,h,a0.e,f.i(0,"@requestSentDate@"),new A.dx(Date.now(),!1).NC(),g.gho().l(0)) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$bjz,r)}, +q4:function q4(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}, +avl:function avl(a){this.a=a}, +wt:function wt(a,b){this.a=a +this.b=b}, +YI:function YI(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +avn:function avn(){}, +bkC(a){var s,r,q,p,o,n,m,l,k,j,i,h=" ",g={} +g.a=0 +g.b=null +s=new A.aGC(g,a) +r=new A.aGE(g,a) +q=new A.aGF(g,a) +p=new A.aGG(g,a,2,0,1).$0() +if(p===2){o=r.$1(h) +s=g.a +if(a.charCodeAt(s)===32)g.a=s+1 +n=q.$1(h) +m=q.$1(":") +l=q.$1(":") +k=q.$1(h) +j=q.$1("")}else{s.$1(h) +i=p===0 +n=q.$1(i?h:"-") +o=r.$1(i?h:"-") +j=q.$1(h) +m=q.$1(":") +l=q.$1(":") +k=q.$1(h) +s.$1("GMT")}new A.aGD(g,a).$0() +g=A.aNV(j,o+1,n,m,l,k,0,!0) +if(!A.j2(g))A.r(A.pQ(g)) +return new A.dx(g,!0)}, +aGC:function aGC(a,b){this.a=a +this.b=b}, +aGG:function aGG(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aGE:function aGE(a,b){this.a=a +this.b=b}, +aGF:function aGF(a,b){this.a=a +this.b=b}, +aGD:function aGD(a,b){this.a=a +this.b=b}, +btO(a,b){var s +if(b==null)return +s=new A.aRy(b,a) +s.$1("cache-control") +s.$1("date") +s.$1("etag") +s.$1("last-modified") +s.$1("expires") +s.$1("content-location") +s.$1("vary")}, +bLH(a){var s,r,q,p,o=a.b.r +o===$&&A.b() +if(o===B.p_)return!0 +o=a.e.b.i(0,B.c.dn("content-disposition")) +if(o!=null)for(o=J.al(o);o.v();)for(s=o.gG(o).split(";"),r=s.length,q=0;q>") +return A.qv(A.a8(new A.eu(new A.ba(a,new A.bgY(),s.h("ba<1>")),new A.bgZ(!1,!1),r),!0,r.h("z.E")),t.hD)}, +bgt(a,b,c){var s=0,r=A.y(t.hD),q,p,o +var $async$bgt=A.u(function(d,e){if(d===1)return A.v(e,r) +while(true)switch(s){case 0:p=a.a +o=A.p3(p,$.HX().a).gTN() +q=new A.lv(p,o,b,c,a.Lr()?a.aM1():0,null) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$bgt,r)}, +WV(a,b){var s=0,r=A.y(t.v) +var $async$WV=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:s=2 +return A.t(A.bLa(a,b),$async$WV) +case 2:return A.w(null,r)}}) +return A.x($async$WV,r)}, +HR(a){var s=0,r=A.y(t.N),q,p +var $async$HR=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=3 +return A.t(A.WV("which",A.a([a],t.s)),$async$HR) +case 3:p=c +if(p==null)throw A.c(A.d8("Couldn't find the executable "+a+" in the path.")) +q=p +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$HR,r)}, +bgY:function bgY(){}, +bgZ:function bgZ(a,b){this.a=a +this.b=b}, +a1R:function a1R(){}, +ah_:function ah_(){}, +bI7(a,b){var s,r +switch(a.a){case 0:case 9:s=b*2 +return new A.qr(b,s,b,s,b,s,b,s,b,s,b,b,b,b) +case 1:s=b*2 +return new A.qr(b,s,b,s,b,s,b,s,b,s,b,b,B.f.cE(b*3,2),b/2|0) +case 2:s=b*2 +r=B.f.cE(b*3,2) +return new A.qr(b,s,b,s,b,s,b,s,r,B.f.cE(r*3,2),r,r,b,b/2|0) +case 3:s=b*2 +r=b/2|0 +return new A.qr(b,s,b,s,b,s,b,s,r,r*2,r,r,b,b*3) +case 4:s=b*2 +r=b*3 +return new A.qr(b,s,b,s,b,s,b,s,b,s,b,b,B.f.cE(r,2),r) +case 5:case 7:s=b*2 +return new A.qr(b,s,b,s,b,s,b,s,b,s,b,b,b,b/2|0) +case 6:case 8:s=b*2 +r=b/2|0 +return new A.qr(b,s,b,s,b,s,b,s,r,r*2,r,r,r,b*3)}}, +qr:function qr(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}, +brA(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){return new A.a1S(g,f,a6,a7,b0,b1,b7,b8,i,b4,d,a9,h,a,p,q,r,s,a1,a2,a0,n,o,b5,b6,b,e,!1,!0,c4,b9,a8,k,l,a3,m,a4,b2,a5,c2,!0,b3,!0,j)}, +bI9(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){var s,r,q,p,o,n,m,l=null,k=B.Je.i(0,e0==null?B.hw:e0).c,j=k.a9_(l,l,l,l,l,l,l,l),i=A.brB(j,g0,B.a2,!1,!1),h=i.a,g=A.brD(new A.jN(h,h,h,h,h,h),b2,B.a2,i,l,B.nl,1),f=g.a,e=g.b,d=g.e,c=i.b,b=i.c,a=i.d,a0=i.e,a1=i.gjt(),a2=g.c,a3=A.bks(d,0,i.w,0,i.x,0,a2,0,l,l,l,l,l,l,l,l,l,l,l,l,h,0,c,0,b,0,a,0,f,0,e,0,a0,0,a1,0),a4=g.f,a5=g.d +a1=a3.a +s=i.gjt() +r=a3.y +q=A.Ku(B.a2,r,45) +p=A.Ku(B.a2,r,75) +o=A.bkr(B.a2,h,f) +n=A.Jf(d,B.a2,B.bw,B.bx,o,a2,r,B.l,B.Vs,a3.x,a1,a3.b,a3.c,a3.d,a3.r,a3.w,a3.e,a3.f,q,p,h,c,B.o,b,a,B.o,f,h,e,a0,s) +switch(a9){case B.vz:m=A.K(255,h.gj(h)>>>16&255,h.gj(h)>>>8&255,h.gj(h)&255) +break +case B.vA:m=A.K(255,255,255,255) +break +case B.vB:m=A.K(255,f.gj(f)>>>16&255,f.gj(f)>>>8&255,f.gj(f)&255) +break +case B.vC:m=A.K(255,d.gj(d)>>>16&255,d.gj(d)>>>8&255,d.gj(d)&255) +break +case B.vD:m=A.K(255,a4.gj(a4)>>>16&255,a4.gj(a4)>>>8&255,a4.gj(a4)&255) +break +case B.vE:s=i.r +s=A.K(255,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255) +m=s +if(m==null)m=A.K(255,h.gj(h)>>>16&255,h.gj(h)>>>8&255,h.gj(h)&255) +break +case null:case void 0:m=l +break +default:m=l}s=i.gjt() +return A.brA(m,a7,!0,d,b3,B.a2,n,a5,B.bw,b8,b9,c0,c3,a3.y,B.l,a1,a3.b,a3.c,a3.d,a3.r,a3.e,a3.f,d3,d4,d5,h,c,d8,a4,b,a,e3,e4,f,e7,f0,a0,s,f3,!1,!0,f7,!0,g1)}, +bI8(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){var s,r,q,p,o,n,m,l,k,j,i=null,h=B.Je.i(0,e3==null?B.hw:e3).d,g=h.a9_(i,i,i,i,i,i,i,i),f=A.brB(g,g3,B.S,!1,!1),e=f.a,d=A.brD(new A.jN(e,e,e,e,e,e),b5,B.S,f,i,B.nl,1),c=d.a,b=d.b,a=d.e,a0=f.b,a1=f.c,a2=f.d,a3=f.e,a4=f.gjt(),a5=d.c,a6=A.bks(a,0,f.w,0,f.x,0,a5,0,i,i,i,i,i,i,i,i,i,i,i,i,e,0,a0,0,a1,0,a2,0,c,0,b,0,a3,0,a4,0),a7=b9?A.i7(c,5):c,a8=b9?A.i7(b,5):b +if(b9)a5=A.xf(a5,5) +s=b9?A.i7(a,5):a +r=b9?B.o:d.f +if(b9)q=A.i7(d.d,5) +else q=d.d +a4=a6.a +p=f.gjt() +o=a6.y +n=A.Ku(B.S,o,45) +m=A.Ku(B.S,o,75) +l=A.bkr(B.S,e,a7) +k=A.Jf(s,B.S,B.br,B.bA,l,a5,o,B.ty,B.br,a6.x,a4,a6.b,a6.c,a6.d,a6.r,a6.w,a6.e,a6.f,n,m,e,a0,B.o,a1,a2,B.o,a7,e,a8,a3,p) +switch(b2){case B.vz:j=A.K(255,e.gj(e)>>>16&255,e.gj(e)>>>8&255,e.gj(e)&255) +break +case B.vA:j=A.K(255,18,18,18) +break +case B.vB:j=A.K(255,a7.gj(a7)>>>16&255,a7.gj(a7)>>>8&255,a7.gj(a7)&255) +break +case B.vC:j=A.K(255,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255) +break +case B.vD:j=A.K(255,r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255) +break +case B.vE:p=f.r +p=A.K(255,p.gj(p)>>>16&255,p.gj(p)>>>8&255,p.gj(p)&255) +j=p +if(j==null)j=A.K(255,e.gj(e)>>>16&255,e.gj(e)>>>8&255,e.gj(e)&255) +break +case null:case void 0:j=i +break +default:j=i}p=f.gjt() +return A.brA(j,b0,!0,s,b6,B.S,k,q,B.br,c2,c3,c4,c6,a6.y,B.ty,a4,a6.b,a6.c,a6.d,a6.r,a6.e,a6.f,d6,d7,d8,e,a0,e1,r,a1,a2,e6,e7,a7,f0,f3,a3,p,f6,!1,!0,g0,!0,g4)}, +bkr(a,b,c){if(a===B.a2)return A.xf(A.dX(b,40),10) +else return A.dA(A.dX(b,5),c,153)}, +Ku(a,b,c){if(a===B.a2)return A.xf(b,c) +else return A.i7(b,c)}, +tI:function tI(a,b){this.a=a +this.b=b}, +aDi:function aDi(a,b){this.a=a +this.b=b}, +a1S:function a1S(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){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}, +aDd:function aDd(){}, +aDe:function aDe(a){this.a=a}, +aDc:function aDc(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aDf:function aDf(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aDg:function aDg(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}, +ah0:function ah0(){}, +bG:function bG(a,b){this.a=a +this.b=b}, +bIa(a,b,c,d,e,f,g,h){var s=f,r=h,q=g +return new A.aM(c,d,e,s,g,r,q,a,b,!1)}, +brB(a,b,c,d,e){var s,r,q,p,o,n,m,l,k +if(e){s=a.gjt() +r=a.aHE(a.e,s,a.c,a.d)}else r=a +if(c===B.a2){s=r.a +if(b>2&&b!==7)q=r.b +else q=A.iE(A.xf(s,20),B.l,60) +p=b>1 +o=p||b===7?r.c:A.dX(A.i7(s,10),20) +if(b>3&&b!==7)p=r.d +else p=p?A.iE(A.dX(r.c,14),B.l,50):A.iE(A.dX(A.i7(s,10),20),B.l,60) +n=b>4 +if(n||b===7)m=r.e +else m=A.dX(s,15) +if(b>5&&b!==7)n=r.gjt() +else if(n)n=A.iE(A.dX(r.e,18),B.l,50) +else n=A.iE(A.xf(A.dX(s,15),20),B.l,60) +l=a.w +k=a.x +if(k==null)k=A.iE(A.dX(l,25),B.l,80) +return r.En(a.r,l,k,s,q,o,p,m,n)}else{s=r.a +if(c===B.S){if(b>2&&b!==7)q=r.b +else q=A.iE(A.i7(s,5),B.o,55) +p=b>1 +o=p||b===7?r.c:A.dX(A.i7(s,10),20) +if(b>3&&b!==7)p=r.d +else p=p?A.iE(A.i7(r.c,25),B.o,50):A.iE(A.dX(A.i7(s,10),20),B.o,40) +n=b>4 +if(n||b===7)m=r.e +else m=A.dX(s,15) +if(b>5&&b!==7)n=r.gjt() +else if(n)n=A.iE(A.i7(r.e,15),B.o,60) +else n=A.iE(A.i7(A.dX(s,15),20),B.o,30) +l=a.w +k=a.x +if(k==null)k=A.i7(l,15) +return r.En(a.r,l,k,s,q,o,p,m,n)}else{if(b>2&&b!==7)q=r.b +else q=A.i7(s,10) +p=b>1 +o=p||b===7?r.c:A.i7(s,5) +if(b>3&&b!==7)p=r.d +else p=p?A.i7(r.c,10):A.i7(s,14) +n=b>4 +if(n||b===7)m=r.e +else m=A.xf(s,10) +if(b>5&&b!==7)n=r.gjt() +else if(n)n=A.xf(r.e,14) +else n=A.xf(A.dX(s,10),14) +return r.En(a.r,a.w,a.x,s,q,o,p,m,n)}}}, +aM:function aM(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}, +ah1:function ah1(){}, +c6:function c6(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +ah2:function ah2(){}, +bks(a,b,c,d,e,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){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=null +if(a7==null)s=A.iX(b5)===B.S?A.dA(B.l,A.dX(b5,20),b6):A.dA(B.o,A.dX(b5,20),b6) +else s=a7 +if(a8==null){r=A.iX(b7)===B.S?A.dA(B.l,A.dX(b7,22),b8):A.dA(B.o,A.dX(b7,8),b8) +q=r}else q=a8 +if(a9==null)p=A.iX(b9)===B.S?A.dA(B.l,A.dX(b9,20),c0):A.dA(B.o,A.dX(b9,20),c0) +else p=a9 +if(b0==null){r=A.iX(c1)===B.S?A.dA(B.l,A.dX(c1,22),c2):A.dA(B.o,A.dX(c1,8),c2) +o=r}else o=b0 +if(b3==null){r=A.iX(c7)===B.S?A.dA(B.l,A.dX(c7,20),c8):A.dA(B.o,A.dX(c7,20),c8) +n=r}else n=b3 +if(b4==null){r=A.iX(c9)===B.S?A.dA(B.l,A.dX(c9,22),d0):A.dA(B.o,A.dX(c9,8),d0) +m=r}else m=b4 +if(b1==null)l=A.iX(c3)===B.S?A.dA(B.l,c3,c4):A.dA(B.o,c3,c4) +else l=b1 +if(b2==null)if(A.iX(c5)===B.S){r=A.dA(B.l,c5,c6) +k=r}else{r=A.dA(B.o,c5,c6) +k=r}else k=b2 +if(a6==null)j=A.iX(a1)===B.S?A.dA(B.l,a1,a2):A.dA(B.o,a1,a2) +else j=a6 +if(a3==null)i=A.iX(a)===B.S?A.dA(B.l,a,b):A.dA(B.o,a,b) +else i=a3 +if(a4==null)h=A.brC(c)===B.S?A.dA(B.l,A.dX(c,20),d):A.dA(B.o,A.dX(c,20),d) +else h=a4 +if(a5==null){r=e==null +if(A.brC(r?c:e)===B.S){r=r?f:A.dX(e,22) +r=A.dA(B.l,r==null?A.dX(c,20):r,a0) +g=r}else{r=r?f:A.dX(e,8) +r=A.dA(B.o,r==null?A.dX(c,20):r,a0) +g=r}}else g=a5 +return new A.a1U(s,q,p,o,n,m,l,k,j,i,h,g)}, +brC(a){if(a.k(0,B.a5))return B.a2 +if(a.k(0,B.tO))return B.a2 +if(a.k(0,B.as))return B.S +if(a.k(0,B.cf))return B.S +return A.iX(a)}, +a1U:function a1U(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}, +ah3:function ah3(){}, +brD(a,b,c,d,e,f,g){var s,r,q,p,o=b>40?0:b,n=c===B.a2,m=f===B.a50 +if(m||f===B.xi)s=new A.jN(a.a,a.b,a.c,d.e,a.e,a.f) +else s=a +r=e==null +if(r)q=n?B.jx:B.jy +else q=e +if(f===B.a4W||f===B.a4X||f===B.a4Z)if(o===0)if(n)q=r?B.jx:e +else q=r?B.jy:e +else if(n)q=r?B.a4T:e +else q=r?B.a4S:e +if(f===B.a4V||f===B.a4Y||f===B.a5_||m)if(o===0)if(n)q=r?B.jx:e +else q=r?B.jy:e +else if(n)q=r?B.a4Q:e +else q=r?B.a4O:e +if(f===B.nl||f===B.xi)if(o===0)if(n)q=r?B.jx:e +else q=r?B.jy:e +else if(n)q=r?B.a4R:e +else q=r?B.a4P:e +p=A.bI7(f,o) +m=A.dA(q.a,s.a,p.x) +r=A.dA(q.b,s.b,B.f.i9(p.y,g)) +return new A.jN(m,r,A.dA(q.c,s.c,p.z),A.dA(q.d,s.d,p.Q),A.dA(q.e,s.e,p.as),A.dA(q.f,s.f,p.at))}, +jN:function jN(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +ah4:function ah4(){}, +bId(a,b){var s +switch(a.a){case 0:return b.b +case 1:return b.c +case 2:s=b.d +return s==null?b.b:s +case 3:s=b.e +return s==null?b.c:s +case 4:return b.f +case 5:return b.r +case 6:s=b.w +return s==null?b.f:s +case 7:s=b.x +return s==null?b.r:s +case 8:s=b.y +return s==null?b.f:s +case 9:s=b.z +return s==null?b.r:s +case 10:s=b.Q +if(s==null){s=b.y +if(s==null)s=b.f}return s +case 11:s=b.as +if(s==null){s=b.z +if(s==null)s=b.r}return s +case 12:return b.at +case 13:return b.ax +case 14:s=b.ay +return s==null?b.at:s +case 15:s=b.ch +return s==null?b.ax:s +case 16:return b.CW +case 17:return b.cx +case 18:return b.cy +case 19:return b.db +case 20:s=b.dx +return s==null?b.cy:s +case 21:s=b.dy +return s==null?b.db:s +case 22:s=b.fr +return s==null?b.cx:s +case 23:s=b.fx +return s==null?b.cx:s +case 24:s=b.fy +return s==null?B.o:s +case 25:s=b.go +return s==null?B.o:s +case 26:s=b.id +return s==null?b.db:s +case 27:s=b.k1 +return s==null?b.cy:s +case 28:s=b.k2 +return s==null?b.c:s +case 29:s=b.k3 +return s==null?b.b:s}}, +bIb(a,b,c,d,e,f,g,h,i,j,k){var s=null +return A.bpT(a,b,c,e,f,g,h,i,B.cS,j,k,s,s,s,s)}, +bIc(a,b,c,d,e,f){var s=null,r=A.bId(B.apD,b) +return new A.Bb(f===!0?s:r,c,s,s,e,d,s)}, +bIe(a,b,c,d,e,f,g,h,i,j,k,l){var s=null,r=new A.bt(new A.aDh(g,!0,a),t.U) +return new A.v5(s,c,B.lA,b,s,g,s,h,i,j,r,s,s,s)}, +aSW:function aSW(a,b){this.a=a +this.b=b}, +aDh:function aDh(a,b,c){this.a=a +this.b=b +this.c=c}, +a1V:function a1V(){}, +ah5:function ah5(){}, +n6:function n6(a,b){this.a=a +this.b=b}, +Kv:function Kv(a,b,c,d,e,f,g,h,i,j){var _=this +_.c=a +_.x=b +_.y=c +_.ay=d +_.ch=e +_.CW=f +_.cx=g +_.db=h +_.dx=i +_.a=j}, +ah6:function ah6(a){var _=this +_.d=$ +_.f=_.e=0 +_.a=null +_.b=a +_.c=null}, +b5S:function b5S(a){this.a=a}, +Av:function Av(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f}, +oi:function oi(a,b){this.a=a +this.b=b}, +bV:function bV(){}, +bx(a,b,c,d,e,f,g,h){var s=new A.mP(d,f,b,a,c,e,B.aN,B.R,new A.bd(A.a([],t.x8),t.jc),new A.bd(A.a([],t.qj),t.fy)) +s.r=h.A2(s.gPo()) +s.IO(g==null?d:g) +return s}, +bjp(a,b,c){var s=new A.mP(-1/0,1/0,a,B.PT,null,null,B.aN,B.R,new A.bd(A.a([],t.x8),t.jc),new A.bd(A.a([],t.qj),t.fy)) +s.r=c.A2(s.gPo()) +s.IO(b) +return s}, +G_:function G_(a,b){this.a=a +this.b=b}, +Xw:function Xw(a,b){this.a=a +this.b=b}, +mP:function mP(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 +_.ej$=i +_.dw$=j}, +b7p:function b7p(a,b,c,d,e){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.a=e}, +bbb:function bbb(a,b,c,d,e,f,g){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.a=g}, +ae3:function ae3(){}, +ae4:function ae4(){}, +ae5:function ae5(){}, +mf(a){var s=new A.N9(new A.bd(A.a([],t.x8),t.jc),new A.bd(A.a([],t.qj),t.fy),0) +s.c=a +if(a==null){s.a=B.R +s.b=0}return s}, +c5(a,b,c){var s=new A.wL(b,a,c) +s.JZ(b.gaP(b)) +b.f8(s.gJY()) +return s}, +blT(a,b,c){var s,r,q=new A.zN(a,b,c,new A.bd(A.a([],t.x8),t.jc),new A.bd(A.a([],t.qj),t.fy)) +if(J.j(a.gj(a),b.gj(b))){q.a=b +q.b=null +s=b}else{if(a.gj(a)>b.gj(b))q.c=B.aCT +else q.c=B.aCS +s=a}s.f8(q.gzv()) +s=q.gTg() +q.a.P(0,s) +r=q.b +if(r!=null)r.P(0,s) +return q}, +bpS(a,b,c){return new A.Ih(a,b,new A.bd(A.a([],t.x8),t.jc),new A.bd(A.a([],t.qj),t.fy),0,c.h("Ih<0>"))}, +adT:function adT(){}, +adU:function adU(){}, +wb:function wb(a,b){this.a=a +this.$ti=b}, +tc:function tc(){}, +N9:function N9(a,b,c){var _=this +_.c=_.b=_.a=null +_.ej$=a +_.dw$=b +_.vg$=c}, +k_:function k_(a,b,c){this.a=a +this.ej$=b +this.vg$=c}, +wL:function wL(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=null}, +aon:function aon(a,b){this.a=a +this.b=b}, +zN:function zN(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=null +_.d=c +_.f=_.e=null +_.ej$=d +_.dw$=e}, +BI:function BI(){}, +Ih:function Ih(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.d=_.c=null +_.ej$=c +_.dw$=d +_.vg$=e +_.$ti=f}, +R_:function R_(){}, +R0:function R0(){}, +R1:function R1(){}, +afM:function afM(){}, +akF:function akF(){}, +akG:function akG(){}, +akH:function akH(){}, +alV:function alV(){}, +alW:function alW(){}, +aok:function aok(){}, +aol:function aol(){}, +aom:function aom(){}, +ML:function ML(){}, +jJ:function jJ(){}, +Sx:function Sx(){}, +NX:function NX(a){this.a=a}, +dZ:function dZ(a,b,c){this.a=a +this.b=b +this.c=c}, +PA:function PA(a){this.a=a}, +f7:function f7(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Pz:function Pz(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +jO:function jO(a){this.a=a}, +afR:function afR(){}, +Ig:function Ig(){}, +If:function If(){}, +wc:function wc(){}, +tb:function tb(){}, +hu(a,b,c){return new A.aR(a,b,c.h("aR<0>"))}, +bG0(a,b){return new A.dG(a,b)}, +ja(a){return new A.eI(a)}, +aC:function aC(){}, +ax:function ax(a,b,c){this.a=a +this.b=b +this.$ti=c}, +dz:function dz(a,b,c){this.a=a +this.b=b +this.$ti=c}, +aR:function aR(a,b,c){this.a=a +this.b=b +this.$ti=c}, +NT:function NT(a,b,c,d){var _=this +_.c=a +_.a=b +_.b=c +_.$ti=d}, +dG:function dG(a,b){this.a=a +this.b=b}, +a9v:function a9v(a,b){this.a=a +this.b=b}, +uF:function uF(a,b){this.a=a +this.b=b}, +u_:function u_(a,b){this.a=a +this.b=b}, +qa:function qa(a,b,c){this.a=a +this.b=b +this.$ti=c}, +eI:function eI(a){this.a=a}, +VL:function VL(){}, +b_L(a,b){var s=new A.PN(A.a([],b.h("H>")),A.a([],t.mz),b.h("PN<0>")) +s.amT(a,b) +return s}, +buT(a,b,c){return new A.hv(a,b,c.h("hv<0>"))}, +PN:function PN(a,b,c){this.a=a +this.b=b +this.$ti=c}, +hv:function hv(a,b,c){this.a=a +this.b=b +this.$ti=c}, +ai4:function ai4(a,b){this.a=a +this.b=b}, +bG8(a,b){return new A.Jl(a,b)}, +Jl:function Jl(a,b){this.c=a +this.a=b}, +afx:function afx(a,b,c){var _=this +_.d=$ +_.ff$=a +_.c3$=b +_.a=null +_.b=c +_.c=null}, +afw:function afw(a,b,c,d,e,f){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.a=f}, +VT:function VT(){}, +ZB(a,b,c,d,e,f,g,h,i){return new A.Jm(c,h,d,e,g,f,i,b,a,null)}, +Jm:function Jm(a,b,c,d,e,f,g,h,i,j){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.a=j}, +R6:function R6(a,b,c,d){var _=this +_.d=a +_.f=_.e=$ +_.r=!1 +_.ff$=b +_.c3$=c +_.a=null +_.b=d +_.c=null}, +b3S:function b3S(a,b){this.a=a +this.b=b}, +VU:function VU(){}, +Jn:function Jn(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.c=a +_.d=b +_.e=c +_.r=d +_.w=e +_.x=f +_.y=g +_.z=h +_.Q=i +_.as=j +_.a=k}, +R7:function R7(a,b,c,d,e,f,g){var _=this +_.d=a +_.e=null +_.f=!1 +_.xk$=b +_.Vh$=c +_.LD$=d +_.dL$=e +_.b7$=f +_.a=null +_.b=g +_.c=null}, +aeV:function aeV(a){var _=this +_.f=_.e=_.d=_.c=_.b=_.a=_.ch=_.ay=_.ax=_.at=_.as=null +_.k4$=0 +_.ok$=a +_.p2$=_.p1$=0 +_.p3$=!1}, +VV:function VV(){}, +app:function app(){}, +wJ(a,b){if(a==null)return null +return a instanceof A.eh?a.eH(b):a}, +eh:function eh(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}, +ay1:function ay1(a){this.a=a}, +afA:function afA(){}, +afz:function afz(){}, +ay0:function ay0(){}, +apq:function apq(){}, +ZC:function ZC(a,b,c){this.c=a +this.d=b +this.a=c}, +bGa(a,b){return new A.wI(a,b,null)}, +wI:function wI(a,b,c){this.c=a +this.f=b +this.a=c}, +R8:function R8(a){var _=this +_.d=!1 +_.a=null +_.b=a +_.c=null}, +b3T:function b3T(a){this.a=a}, +b3U:function b3U(a){this.a=a}, +bqs(a,b,c,d,e,f,g,h){return new A.ZE(g,b,h,c,e,a,d,f)}, +ZE:function ZE(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}, +afB:function afB(){}, +afC:function afC(){}, +a0G:function a0G(){}, +JA:function JA(a,b,c){this.d=a +this.w=b +this.a=c}, +Rc:function Rc(a,b,c,d){var _=this +_.d=a +_.e=0 +_.r=_.f=$ +_.ff$=b +_.c3$=c +_.a=null +_.b=d +_.c=null}, +b45:function b45(a){this.a=a}, +b44:function b44(){}, +b43:function b43(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a0m:function a0m(a,b,c){this.r=a +this.w=b +this.a=c}, +VY:function VY(){}, +bvT(a,b,c,d){return new A.agZ(b,d,c,a,c,null)}, +by3(a,b,c,d,e){var s,r,q,p,o,n=null +if(e){s=a.a8u() +r=s<0.179?B.S:B.a2 +switch(r.a){case 0:q=B.OL +break +case 1:q=B.OM +break +default:q=n}p=A.bjq(d,new A.mp(n,n,n,n,q.e,q.f,q.r,q.w),t.lu)}else p=d +o=A.wP(p,new A.dU(a,n,b,n,n,n,B.aK),B.dH) +if((a.gj(a)>>>24&255)===255)return o +return A.to(A.atA(o,$.au().Eo(10,10,B.cT)),B.C)}, +bPn(a,b,c,d,e){var s,r,q=null +if(d instanceof A.jY){if(!d.gAN()){s=d.hB$ +s=s!=null&&s.length!==0}else s=!0 +s=s&&d.gpY()}else s=!1 +r=s?A.ZB(B.a7,B.bv,B.axt,q,B.ji,44,new A.b8J(d),B.a8,0.4):q +if(r==null)return q +return new A.iG(new A.b4(new A.fk(16,0,0,0),A.oI(r,B.a6F),q),b)}, +bPk(a,b,c,d){var s +if(c!=null){if(!c.gAN()){s=c.hB$ +s=s!=null&&s.length!==0}else s=!0 +if(s)s=c instanceof A.jY&&c.gpY() +else s=!0}else s=!0 +if(s)return null +return new A.iG(B.aBq,b)}, +bPl(a,b,c,d,e){var s +if(d!=null){if(!d.gAN()){s=d.hB$ +s=s!=null&&s.length!==0}else s=!0 +if(s)s=d instanceof A.jY&&d.gpY() +else s=!0}else s=!0 +if(s)return null +return new A.iG(new A.QA(c,d,null),b)}, +bPo(a,b,c,d,e,f){var s=f +return new A.iG(s,c)}, +bPp(a,b,c){return null}, +bPm(a,b,c,d,e){return null}, +bw1(a,b,c){var s,r=b.gBp() +r=r.gq(r) +s=c.gBp() +return new A.ajw(a,c,b,new A.aR(r.b,s.gq(s).b,t.Y),new A.dG(b.d,c.d),new A.Yv(b.w,c.w),null)}, +bSh(a,b){var s=a.c,r=a.a,q=a.d,p=a.b,o=b.c,n=b.a,m=b.d,l=b.b +o=Math.max(s-r,o-n) +m=Math.max(q-p,m-l) +return new A.uF(new A.L(r,p,r+o,p+m),new A.L(n,l,n+o,l+m))}, +bSu(a,b,c){return new A.FM(c,!1,!0,!0,!0,!1,!1,null)}, +bSt(a,b,c,d,e){var s,r,q=t.rA,p=q.a(d.gbc()),o=q.a(e.gbc()) +q=t.yW +s=q.a(p.e) +r=q.a(o.e) +switch(c.a){case 0:return A.bw1(b,s,r) +case 1:return A.bw1(b,r,s)}}, +S5:function S5(a){this.a=a}, +agZ:function agZ(a,b,c,d,e,f){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.c=e +_.a=f}, +Jw:function Jw(a){this.a=a}, +afD:function afD(a){var _=this +_.d=$ +_.a=null +_.b=a +_.c=null}, +b3Z:function b3Z(a,b,c){this.a=a +this.b=b +this.c=c}, +ak_:function ak_(a,b,c){this.c=a +this.d=b +this.a=c}, +b8I:function b8I(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +b8H:function b8H(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +b8J:function b8J(a){this.a=a}, +a0n:function a0n(a,b,c){this.f=a +this.r=b +this.a=c}, +ay3:function ay3(a,b){this.a=a +this.b=b}, +aej:function aej(a){this.a=a}, +QA:function QA(a,b,c){this.c=a +this.d=b +this.a=c}, +UY:function UY(a,b,c,d,e,f,g,h,i,j){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.a=j}, +ajw:function ajw(a,b,c,d,e,f,g){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.a=g}, +b8K:function b8K(a){this.a=a}, +b8B:function b8B(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}, +Jx:function Jx(a,b,c){this.c=a +this.d=b +this.a=c}, +R9:function R9(a){this.a=null +this.b=a +this.c=null}, +BO:function BO(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 +_.z=g +_.Q=h +_.as=i +_.a=j +_.$ti=k}, +Gb:function Gb(a,b,c,d,e,f,g,h){var _=this +_.d=a +_.e=!1 +_.xk$=b +_.Vh$=c +_.LD$=d +_.dL$=e +_.b7$=f +_.a=null +_.b=g +_.c=null +_.$ti=h}, +akM:function akM(a){var _=this +_.at=_.as=null +_.ax=!1 +_.f=_.e=_.d=_.c=_.b=_.a=null +_.k4$=0 +_.ok$=a +_.p2$=_.p1$=0 +_.p3$=!1}, +HI:function HI(){}, +VW:function VW(){}, +bGj(a){var s +if(a.gMh())return!1 +s=a.hB$ +if(s!=null&&s.length!==0)return!1 +if(a.k1.length!==0||a.gvE()===B.fT)return!1 +if(a.gpY())return!1 +s=a.go +if(s.gaP(s)!==B.a9)return!1 +s=a.id +if(s.gaP(s)!==B.R)return!1 +if(a.a.cx.a)return!1 +return!0}, +bqv(a,b,c,d,e,f){var s,r,q,p,o,n,m=null,l=a.a.cx.a +if(a.gpY()){s=A.c5(B.fe,c,new A.jO(B.fe)) +r=$.bCJ() +q=t.m +q.a(s) +l=l?d:A.c5(B.fe,d,B.v0) +p=$.boA() +return new A.ZD(new A.ax(s,r,r.$ti.h("ax")),new A.ax(q.a(l),p,p.$ti.h("ax")),e,m)}else{s=l?c:A.c5(B.Pc,c,new A.jO(B.Pc)) +r=$.bD_() +q=t.m +q.a(s) +p=l?d:A.c5(B.fe,d,B.v0) +o=$.boA() +q.a(p) +l=l?c:A.c5(B.fe,c,m) +n=$.bBW() +return new A.a0o(new A.ax(s,r,r.$ti.h("ax")),new A.ax(p,o,o.$ti.h("ax")),new A.ax(q.a(l),n,A.l(n).h("ax")),new A.G9(e,new A.ay4(a),new A.ay5(a,f),m,f.h("G9<0>")),m)}}, +b3V(a,b,c){var s,r,q,p,o +if(a==b)return a +if(a==null){s=b.a +if(s==null)s=b +else{r=A.ab(s).h("ad<1,e>") +r=new A.o2(A.a8(new A.ad(s,new A.b3W(c),r),!0,r.h("av.E"))) +s=r}return s}if(b==null){s=a.a +if(s==null)s=a +else{r=A.ab(s).h("ad<1,e>") +r=new A.o2(A.a8(new A.ad(s,new A.b3X(c),r),!0,r.h("av.E"))) +s=r}return s}s=A.a([],t.t_) +for(r=b.a,q=a.a,p=0;p"))) +return new A.xh(r)}, +Cr(a){return new A.xh(a)}, +bIl(a){return a}, +bku(a,b){if(a.r&&!0)return +if($.bkt===0||!1)A.bUg(J.cU(a.a),100,a.b) +else A.bnI().$1("Another exception was thrown: "+a.gahj().l(0)) +$.bkt=$.bkt+1}, +bIm(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=A.am(["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.bMH(J.AS(a,"\n")) +for(s=0,r=0;q=d.length,r0)q.push(h.a)}B.b.lY(q) +if(s===1)j.push("(elided one frame from "+B.b.gaV(q)+")") +else if(s>1){l=q.length +if(l>1)q[l-1]="and "+B.b.gX(q) +l="(elided "+s +if(q.length>2)j.push(l+" frames from "+B.b.ck(q,", ")+")") +else j.push(l+" frames from "+B.b.ck(q," ")+")")}return j}, +e6(a){var s=$.jB() +if(s!=null)s.$1(a)}, +bUg(a,b,c){var s,r +A.bnI().$1(a) +s=A.a(B.c.XI(J.cU(c==null?A.ik():A.bIl(c))).split("\n"),t.s) +r=s.length +s=J.bpI(r!==0?new A.zs(s,new A.bgw(),t.Ws):s,b) +A.bnI().$1(B.b.ck(A.bIm(s),"\n"))}, +bOW(a,b,c){return new A.ah9(c,a,!0,!0,null,b)}, +vu:function vu(){}, +Ci:function Ci(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}, +a1y:function a1y(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}, +a1w:function a1w(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}, +cg:function cg(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.f=e +_.r=f}, +aDs:function aDs(a){this.a=a}, +xh:function xh(a){this.a=a}, +aDt:function aDt(){}, +aDu:function aDu(){}, +aDv:function aDv(){}, +bgw:function bgw(){}, +ah9:function ah9(a,b,c,d,e,f){var _=this +_.f=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f}, +ahb:function ahb(){}, +aha:function aha(){}, +Ys:function Ys(){}, +aur:function aur(a){this.a=a}, +bNW(a,b){return new A.bF(a,$.aH(),b.h("bF<0>"))}, +at:function at(){}, +PR:function PR(){}, +i1:function i1(a){var _=this +_.k4$=0 +_.ok$=a +_.p2$=_.p1$=0 +_.p3$=!1}, +awF:function awF(a){this.a=a}, +vA:function vA(a){this.a=a}, +bF:function bF(a,b,c){var _=this +_.a=a +_.k4$=0 +_.ok$=b +_.p2$=_.p1$=0 +_.p3$=!1 +_.$ti=c}, +bGN(a,b,c){var s=null +return A.lb("",s,b,B.bq,a,!1,s,s,B.aW,s,!1,!1,!0,c,s,t.H)}, +lb(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.hI(e,!1,c,s,g,o,k,b,d,i,a,m,l,j,n,p.h("hI<0>"))}, +bjZ(a,b,c){return new A.a0T(c,a,!0,!0,null,b)}, +br(a){return B.c.eP(B.f.of(J.T(a)&1048575,16),5,"0")}, +bGM(a,b,c,d,e,f,g){return new A.a0U(b,d,"",g,a,c,!0,!0,null,f)}, +JN:function JN(a,b){this.a=a +this.b=b}, +ow:function ow(a,b){this.a=a +this.b=b}, +b8V:function b8V(){}, +h_:function h_(){}, +hI:function hI(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}, +wV:function wV(){}, +a0T:function a0T(a,b,c,d,e,f){var _=this +_.f=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f}, +aI:function aI(){}, +a0S:function a0S(){}, +n2:function n2(){}, +a0U:function a0U(a,b,c,d,e,f,g,h,i,j){var _=this +_.f=a +_.r=b +_.x=c +_.y=d +_.z=e +_.a=f +_.b=g +_.c=h +_.d=i +_.e=j}, +ag4:function ag4(){}, +bNJ(){return new A.kR()}, +id:function id(){}, +jV:function jV(){}, +kR:function kR(){}, +bS:function bS(a,b){this.a=a +this.$ti=b}, +bmC:function bmC(a){this.$ti=a}, +m3:function m3(){}, +Ls:function Ls(){}, +Mw(a){return new A.bd(A.a([],a.h("H<0>")),a.h("bd<0>"))}, +bd:function bd(a,b){var _=this +_.a=a +_.b=!1 +_.c=$ +_.$ti=b}, +CG:function CG(a,b){this.a=a +this.$ti=b}, +bSm(a){return A.aX(a,null,!1,t.X)}, +DN:function DN(a,b){this.a=a +this.$ti=b}, +bdZ:function bdZ(){}, +ahk:function ahk(a){this.a=a}, +vr:function vr(a,b){this.a=a +this.b=b}, +S2:function S2(a,b){this.a=a +this.b=b}, +ha:function ha(a,b){this.a=a +this.b=b}, +b0V(a){var s=new DataView(new ArrayBuffer(8)),r=A.eO(s.buffer,0,null) +return new A.b0U(new Uint8Array(a),s,r)}, +b0U:function b0U(a,b,c){var _=this +_.a=a +_.b=0 +_.c=!1 +_.d=b +_.e=c}, +Nn:function Nn(a){this.a=a +this.b=0}, +bMH(a){var s=t.ZK +return A.a8(new A.fb(new A.eu(new A.ba(A.a(B.c.dn(a).split("\n"),t.s),new A.aXD(),t.gD),A.bYi(),t.C9),s),!0,s.h("z.E"))}, +bMG(a){var s,r,q="",p=$.bBu().lm(a) +if(p==null)return null +s=A.a(p.b[1].split("."),t.s) +r=s.length>1?B.b.gO(s):q +return new A.nI(a,-1,q,q,q,-1,-1,r,s.length>1?A.fQ(s,1,null,t.N).ck(0,"."):B.b.gaV(s))}, +bMI(a){var s,r,q,p,o,n,m,l,k,j,i=null,h="" +if(a==="")return B.arx +else if(a==="...")return B.arw +if(!B.c.cc(a,"#"))return A.bMG(a) +s=A.bE("^#(\\d+) +(.+) \\((.+?):?(\\d+){0,1}:?(\\d+){0,1}\\)$",!0,!1,!1).lm(a).b +r=s[2] +r.toString +q=A.eF(r,".","") +if(B.c.cc(q,"new")){p=q.split(" ").length>1?q.split(" ")[1]:h +if(B.c.p(p,".")){o=p.split(".") +p=o[0] +q=o[1]}else q=""}else if(B.c.p(q,".")){o=q.split(".") +p=o[0] +q=o[1]}else p="" +r=s[3] +r.toString +n=A.dR(r,0,i) +m=n.gdT(n) +if(n.gfk()==="dart"||n.gfk()==="package"){l=n.gxS()[0] +m=B.c.vM(n.gdT(n),A.i(n.gxS()[0])+"/","")}else l=h +r=s[1] +r.toString +r=A.eq(r,i,i) +k=n.gfk() +j=s[4] +if(j==null)j=-1 +else{j=j +j.toString +j=A.eq(j,i,i)}s=s[5] +if(s==null)s=-1 +else{s=s +s.toString +s=A.eq(s,i,i)}return new A.nI(a,r,k,l,m,j,s,p,q)}, +nI:function nI(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}, +aXD:function aXD(){}, +cC:function cC(a,b){this.a=a +this.$ti=b}, +aYE:function aYE(a){this.a=a}, +a2e:function a2e(a,b){this.a=a +this.b=b}, +eY:function eY(){}, +Cz:function Cz(a,b,c){this.a=a +this.b=b +this.c=c}, +Gz:function Gz(a){var _=this +_.a=a +_.b=!0 +_.d=_.c=!1 +_.e=null}, +b6o:function b6o(a){this.a=a}, +aEL:function aEL(a){this.a=a}, +aEN:function aEN(a,b){this.a=a +this.b=b}, +aEM:function aEM(a,b,c){this.a=a +this.b=b +this.c=c}, +bIk(a,b,c,d,e,f,g){return new A.Kz(c,g,f,a,e,!1)}, +bbe:function bbe(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}, +CA:function CA(){}, +aEQ:function aEQ(a){this.a=a}, +aER:function aER(a,b){this.a=a +this.b=b}, +Kz:function Kz(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.f=e +_.r=f}, +bxZ(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}}, +bKO(a,b){var s=A.ab(a) +return new A.fb(new A.eu(new A.ba(a,new A.aNw(),s.h("ba<1>")),new A.aNx(b),s.h("eu<1,c9?>")),t.FI)}, +aNw:function aNw(){}, +aNx:function aNx(a){this.a=a}, +qf:function qf(a){this.a=a}, +oz:function oz(a,b,c){this.a=a +this.b=b +this.d=c}, +oA:function oA(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +jL:function jL(a,b){this.a=a +this.b=b}, +N0(a,b){var s,r +if(a==null)return b +s=new A.de(new Float64Array(3)) +s.h7(b.a,b.b,0) +r=a.N8(s).a +return new A.m(r[0],r[1])}, +yB(a,b,c,d){if(a==null)return c +if(b==null)b=A.N0(a,d) +return b.a4(0,A.N0(a,d.a4(0,c)))}, +bli(a){var s,r,q=new Float64Array(4),p=new A.nO(q) +p.Ht(0,0,1,0) +s=new Float64Array(16) +r=new A.bQ(s) +r.c6(a) +s[11]=q[3] +s[10]=q[2] +s[9]=q[1] +s[8]=q[0] +r.Oo(2,p) +return r}, +bKL(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){return new A.yz(o,d,n,0,e,a,h,B.i,0,!1,!1,0,j,i,b,c,0,0,0,l,k,g,m,0,!1,null,null)}, +bKV(a,b,c,d,e,f,g,h,i,j,k,l){return new A.yF(l,c,k,0,d,a,f,B.i,0,!1,!1,0,h,g,0,b,0,0,0,j,i,0,0,0,!1,null,null)}, +bKQ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){return new A.qX(a1,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)}, +bKN(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){return new A.uw(a3,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)}, +bKP(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){return new A.ux(a3,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)}, +bKM(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){return new A.qW(a0,d,s,h,e,b,i,B.i,a,!0,!1,j,l,k,0,c,q,m,p,o,n,g,r,0,!1,null,null)}, +bKR(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){return new A.yC(a3,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)}, +bKZ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){return new A.yJ(a1,e,a0,i,f,b,j,B.i,a,!1,!1,k,m,l,c,d,r,n,q,p,o,h,s,0,!1,null,null)}, +bKX(a,b,c,d,e,f,g){return new A.yH(e,g,b,f,0,c,a,d,B.i,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,!1,null,null)}, +bKY(a,b,c,d,e,f){return new A.yI(f,b,e,0,c,a,d,B.i,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,!1,null,null)}, +bKW(a,b,c,d,e,f,g){return new A.yG(e,g,b,f,0,c,a,d,B.i,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,!1,null,null)}, +bKT(a,b,c,d,e,f,g){return new A.qY(g,b,f,c,B.bM,a,d,B.i,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,e,null,null)}, +bKU(a,b,c,d,e,f,g,h,i,j,k){return new A.yE(c,d,h,g,k,b,j,e,B.bM,a,f,B.i,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,i,null,null)}, +bKS(a,b,c,d,e,f,g){return new A.yD(g,b,f,c,B.bM,a,d,B.i,0,!1,!1,1,1,1,0,0,0,0,0,0,0,0,0,0,e,null,null)}, +btm(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){return new A.yA(a0,e,s,i,f,b,j,B.i,a,!1,!1,0,l,k,c,d,q,m,p,o,n,h,r,0,!1,null,null)}, +vW(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}}, +bgp(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}}, +bTP(a){switch(a.a){case 1:return 1 +case 2:case 3:case 5:case 0:case 4:return 18}}, +c9:function c9(){}, +hc:function hc(){}, +adM:function adM(){}, +aou:function aou(){}, +afc:function afc(){}, +yz:function yz(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 +_.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}, +aoq:function aoq(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +afm:function afm(){}, +yF:function yF(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 +_.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}, +aoB:function aoB(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +afh:function afh(){}, +qX:function qX(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 +_.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}, +aow:function aow(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +aff:function aff(){}, +uw:function uw(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 +_.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}, +aot:function aot(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +afg:function afg(){}, +ux:function ux(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 +_.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}, +aov:function aov(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +afe:function afe(){}, +qW:function qW(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 +_.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}, +aos:function aos(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +afi:function afi(){}, +yC:function yC(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 +_.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}, +aox:function aox(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +afq:function afq(){}, +yJ:function yJ(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 +_.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}, +aoF:function aoF(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +jn:function jn(){}, +afo:function afo(){}, +yH:function yH(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){var _=this +_.B=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 +_.go=a8}, +aoD:function aoD(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +afp:function afp(){}, +yI:function yI(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 +_.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}, +aoE:function aoE(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +afn:function afn(){}, +yG:function yG(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){var _=this +_.B=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 +_.go=a8}, +aoC:function aoC(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +afk:function afk(){}, +qY:function qY(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 +_.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}, +aoz:function aoz(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +afl:function afl(){}, +yE:function yE(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){var _=this +_.id=a +_.k1=b +_.k2=c +_.k3=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 +_.go=b1}, +aoA:function aoA(a,b){var _=this +_.d=_.c=$ +_.e=a +_.f=b +_.b=_.a=$}, +afj:function afj(){}, +yD:function yD(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 +_.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}, +aoy:function aoy(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +afd:function afd(){}, +yA:function yA(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 +_.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}, +aor:function aor(a,b){var _=this +_.c=a +_.d=b +_.b=_.a=$}, +ak5:function ak5(){}, +ak6:function ak6(){}, +ak7:function ak7(){}, +ak8:function ak8(){}, +ak9:function ak9(){}, +aka:function aka(){}, +akb:function akb(){}, +akc:function akc(){}, +akd:function akd(){}, +ake:function ake(){}, +akf:function akf(){}, +akg:function akg(){}, +akh:function akh(){}, +aki:function aki(){}, +akj:function akj(){}, +akk:function akk(){}, +akl:function akl(){}, +akm:function akm(){}, +akn:function akn(){}, +ako:function ako(){}, +akp:function akp(){}, +akq:function akq(){}, +akr:function akr(){}, +aks:function aks(){}, +akt:function akt(){}, +aku:function aku(){}, +akv:function akv(){}, +akw:function akw(){}, +akx:function akx(){}, +aky:function aky(){}, +akz:function akz(){}, +aqy:function aqy(){}, +aqz:function aqz(){}, +aqA:function aqA(){}, +aqB:function aqB(){}, +aqC:function aqC(){}, +aqD:function aqD(){}, +aqE:function aqE(){}, +aqF:function aqF(){}, +aqG:function aqG(){}, +aqH:function aqH(){}, +aqI:function aqI(){}, +aqJ:function aqJ(){}, +aqK:function aqK(){}, +aqL:function aqL(){}, +aqM:function aqM(){}, +aqN:function aqN(){}, +aqO:function aqO(){}, +brI(a,b){var s=t.S,r=A.dI(s) +return new A.n7(B.q5,A.I(s,t.SP),r,a,b,A.HT(),A.I(s,t.Au))}, +brJ(a,b,c){var s=(c-a)/(b-a) +return!isNaN(s)?A.V(s,0,1):s}, +Af:function Af(a,b){this.a=a +this.b=b}, +xn:function xn(a){this.a=a}, +n7:function n7(a,b,c,d,e,f,g){var _=this +_.ch=_.ay=_.ax=_.at=null +_.dx=_.db=$ +_.dy=a +_.f=b +_.r=c +_.w=null +_.a=d +_.b=null +_.c=e +_.d=f +_.e=g}, +aDT:function aDT(a,b){this.a=a +this.b=b}, +aDR:function aDR(a){this.a=a}, +aDS:function aDS(a){this.a=a}, +a0R:function a0R(a){this.a=a}, +aGe(){var s=A.a([],t.om),r=new A.bQ(new Float64Array(16)) +r.fQ() +return new A.qz(s,A.a([r],t.Ji),A.a([],t.cR))}, +lj:function lj(a,b){this.a=a +this.b=null +this.$ti=b}, +HC:function HC(){}, +SK:function SK(a){this.a=a}, +GX:function GX(a){this.a=a}, +qz:function qz(a,b,c){this.a=a +this.b=b +this.c=c}, +aII(a,b,c){var s=b==null?B.bD:b,r=t.S,q=A.dI(r),p=A.bz1() +return new A.kD(s,null,B.dM,A.I(r,t.SP),q,a,c,p,A.I(r,t.Au))}, +bJJ(a){return a===1||a===2||a===4}, +Dh:function Dh(a,b){this.a=a +this.b=b}, +LD:function LD(a,b,c){this.a=a +this.b=b +this.c=c}, +Dg:function Dg(a,b){this.b=a +this.c=b}, +kD:function kD(a,b,c,d,e,f,g,h,i){var _=this +_.k2=!1 +_.ct=_.cp=_.c_=_.b6=_.aK=_.co=_.bL=_.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 +_.w=null +_.a=f +_.b=null +_.c=g +_.d=h +_.e=i}, +aIL:function aIL(a,b){this.a=a +this.b=b}, +aIK:function aIK(a,b){this.a=a +this.b=b}, +aIJ:function aIJ(a,b){this.a=a +this.b=b}, +rS:function rS(a,b,c){this.a=a +this.b=b +this.c=c}, +bmr:function bmr(a,b){this.a=a +this.b=b}, +aND:function aND(a){this.a=a +this.b=$}, +aNE:function aNE(){}, +a3u:function a3u(a,b,c){this.a=a +this.b=b +this.c=c}, +bHn(a){var s=a.gdR(a) +$.kp() +return new A.kf(s,new A.k9(),A.aX(20,null,!1,t.av))}, +bHo(a){return a===1}, +bm_(a,b){var s=t.S,r=A.dI(s),q=A.bnD() +return new A.nP(B.D,A.bnC(),B.eV,A.I(s,t.GY),A.aW(s),A.I(s,t.SP),r,a,b,q,A.I(s,t.Au))}, +a2F(a,b){var s=t.S,r=A.dI(s),q=A.bnD() +return new A.n9(B.D,A.bnC(),B.eV,A.I(s,t.GY),A.aW(s),A.I(s,t.SP),r,a,b,q,A.I(s,t.Au))}, +bth(a,b){var s=t.S,r=A.dI(s),q=A.bnD() +return new A.np(B.D,A.bnC(),B.eV,A.I(s,t.GY),A.aW(s),A.I(s,t.SP),r,a,b,q,A.I(s,t.Au))}, +Rr:function Rr(a,b){this.a=a +this.b=b}, +K_:function K_(){}, +azZ:function azZ(a,b){this.a=a +this.b=b}, +aA3:function aA3(a,b){this.a=a +this.b=b}, +aA4:function aA4(a,b){this.a=a +this.b=b}, +aA_:function aA_(){}, +aA0:function aA0(a,b){this.a=a +this.b=b}, +aA1:function aA1(a){this.a=a}, +aA2:function aA2(a,b){this.a=a +this.b=b}, +nP:function nP(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=!1 +_.fr=b +_.fx=c +_.go=_.fy=$ +_.k2=_.k1=_.id=null +_.k3=$ +_.k4=!1 +_.ok=d +_.p1=e +_.f=f +_.r=g +_.w=null +_.a=h +_.b=null +_.c=i +_.d=j +_.e=k}, +n9:function n9(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=!1 +_.fr=b +_.fx=c +_.go=_.fy=$ +_.k2=_.k1=_.id=null +_.k3=$ +_.k4=!1 +_.ok=d +_.p1=e +_.f=f +_.r=g +_.w=null +_.a=h +_.b=null +_.c=i +_.d=j +_.e=k}, +np:function np(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=!1 +_.fr=b +_.fx=c +_.go=_.fy=$ +_.k2=_.k1=_.id=null +_.k3=$ +_.k4=!1 +_.ok=d +_.p1=e +_.f=f +_.r=g +_.w=null +_.a=h +_.b=null +_.c=i +_.d=j +_.e=k}, +bHk(a){return a===1}, +afs:function afs(){this.a=!1}, +Hx:function Hx(a,b,c,d,e){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=!1}, +n4:function n4(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}, +aNy:function aNy(a,b){this.a=a +this.b=b}, +aNA:function aNA(){}, +aNz:function aNz(a,b,c){this.a=a +this.b=b +this.c=c}, +aNB:function aNB(){this.b=this.a=null}, +bIF(a){return!0}, +a1a:function a1a(a,b){this.a=a +this.b=b}, +eN:function eN(){}, +My:function My(){}, +KN:function KN(a,b){this.a=a +this.b=b}, +DY:function DY(){}, +aNO:function aNO(a,b){this.a=a +this.b=b}, +jk:function jk(a,b){this.a=a +this.b=b}, +ahn:function ahn(){}, +bLT(a,b,c,d,e,f,g,h){return new A.O_(b,a,d,g,c,h,f,e)}, +He:function He(a,b){this.a=a +this.b=b}, +Ao:function Ao(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +NZ:function NZ(a,b,c){this.a=a +this.b=b +this.c=c}, +O_:function O_(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}, +Ew:function Ew(a,b,c){this.a=a +this.b=b +this.c=c}, +aiz:function aiz(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +nB:function nB(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.at=a +_.ch=_.ay=_.ax=null +_.CW=b +_.cx=null +_.cy=!1 +_.db=c +_.dx=$ +_.dy=null +_.k2=_.k1=_.id=_.go=_.fy=_.fx=_.fr=$ +_.k4=_.k3=null +_.ok=d +_.p1=e +_.p2=f +_.p3=null +_.p4=$ +_.R8=g +_.RG=1 +_.rx=0 +_.f=h +_.r=i +_.w=null +_.a=j +_.b=null +_.c=k +_.d=l +_.e=m}, +aSJ:function aSJ(){}, +aSK:function aSK(){}, +aSL:function aSL(a,b){this.a=a +this.b=b}, +aSM:function aSM(a){this.a=a}, +aSH:function aSH(a){this.a=a}, +aSI:function aSI(a){this.a=a}, +aSN:function aSN(){}, +aSO:function aSO(){}, +aaH(a,b){var s=t.S,r=A.dI(s) +return new A.kO(B.aX,18,B.dM,A.I(s,t.SP),r,a,b,A.HT(),A.I(s,t.Au))}, +Fg:function Fg(a,b){this.a=a +this.c=b}, +v6:function v6(){}, +Yn:function Yn(){}, +kO:function kO(a,b,c,d,e,f,g,h,i){var _=this +_.aN=_.ao=_.an=_.a6=_.W=_.B=_.ct=_.cp=_.c_=_.b6=_.aK=null +_.k3=_.k2=!1 +_.ok=_.k4=null +_.at=a +_.ay=b +_.ch=c +_.cx=_.CW=null +_.cy=!1 +_.db=null +_.f=d +_.r=e +_.w=null +_.a=f +_.b=null +_.c=g +_.d=h +_.e=i}, +aYO:function aYO(a,b){this.a=a +this.b=b}, +aYP:function aYP(a,b){this.a=a +this.b=b}, +aYQ:function aYQ(a,b){this.a=a +this.b=b}, +aYR:function aYR(a,b){this.a=a +this.b=b}, +aYS:function aYS(a){this.a=a}, +Rs:function Rs(a,b){this.a=a +this.b=b}, +Pb:function Pb(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Pe:function Pe(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Pd:function Pd(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +Pf:function Pf(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=b +_.d=c +_.e=d +_.f=e +_.r=f +_.w=g +_.x=h}, +Pc:function Pc(a,b){this.b=a +this.c=b}, +UG:function UG(){}, +IA:function IA(){}, +au5:function au5(a){this.a=a}, +au6:function au6(a,b){this.a=a +this.b=b}, +au3:function au3(a,b){this.a=a +this.b=b}, +au4:function au4(a,b){this.a=a +this.b=b}, +au1:function au1(a,b){this.a=a +this.b=b}, +au2:function au2(a,b){this.a=a +this.b=b}, +au0:function au0(a,b){this.a=a +this.b=b}, +pi:function pi(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var _=this +_.at=a +_.dx=_.db=_.cy=_.cx=_.CW=_.ch=null +_.fx=_.fr=_.dy=!1 +_.go=_.fy=null +_.k1=b +_.k2=null +_.ok=_.k4=_.k3=$ +_.p3=_.p2=_.p1=null +_.p4=c +_.tA$=d +_.AF$=e +_.qR$=f +_.LE$=g +_.F0$=h +_.xm$=i +_.F1$=j +_.LF$=k +_.LG$=l +_.f=m +_.r=n +_.w=null +_.a=o +_.b=null +_.c=p +_.d=q +_.e=r}, +pj:function pj(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var _=this +_.at=a +_.dx=_.db=_.cy=_.cx=_.CW=_.ch=null +_.fx=_.fr=_.dy=!1 +_.go=_.fy=null +_.k1=b +_.k2=null +_.ok=_.k4=_.k3=$ +_.p3=_.p2=_.p1=null +_.p4=c +_.tA$=d +_.AF$=e +_.qR$=f +_.LE$=g +_.F0$=h +_.xm$=i +_.F1$=j +_.LF$=k +_.LG$=l +_.f=m +_.r=n +_.w=null +_.a=o +_.b=null +_.c=p +_.d=q +_.e=r}, +QC:function QC(){}, +anF:function anF(){}, +anG:function anG(){}, +anH:function anH(){}, +anI:function anI(){}, +anJ:function anJ(){}, +af6:function af6(a,b){this.a=a +this.b=b}, +A7:function A7(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=!1 +_.f=_.e=null}, +aEO:function aEO(a){this.a=a}, +aEP:function aEP(a,b){this.a=a +this.b=b}, +bIT(a){var s=t.av,r=A.aX(20,null,!1,s) +$.kp() +return new A.xx(r,a,new A.k9(),A.aX(20,null,!1,s))}, +kS:function kS(a){this.a=a}, +vh:function vh(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Tc:function Tc(a,b){this.a=a +this.b=b}, +kf:function kf(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=0}, +xx:function xx(a,b,c,d){var _=this +_.e=a +_.a=b +_.b=c +_.c=d +_.d=0}, +Di:function Di(a,b,c,d){var _=this +_.e=a +_.a=b +_.b=c +_.c=d +_.d=0}, +adN:function adN(){}, +b1H:function b1H(a,b){this.a=a +this.b=b}, +A1:function A1(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +Y9:function Y9(a){this.a=a}, +atx:function atx(){}, +aty:function aty(){}, +atz:function atz(){}, +Y7:function Y7(a,b,c,d){var _=this +_.c=a +_.d=b +_.f=c +_.a=d}, +Zk:function Zk(a){this.a=a}, +axp:function axp(){}, +axq:function axq(){}, +axr:function axr(){}, +Zj:function Zj(a,b,c,d){var _=this +_.c=a +_.d=b +_.f=c +_.a=d}, +a1e:function a1e(a){this.a=a}, +aA6:function aA6(){}, +aA7:function aA7(){}, +aA8:function aA8(){}, +a1d:function a1d(a,b,c,d){var _=this +_.c=a +_.d=b +_.f=c +_.a=d}, +a1n:function a1n(a){this.a=a}, +aBo:function aBo(){}, +aBp:function aBp(){}, +aBq:function aBq(){}, +a1m:function a1m(a,b,c,d){var _=this +_.c=a +_.d=b +_.f=c +_.a=d}, +bEW(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.AV(r,q,p,n)}, +AV:function AV(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +adP:function adP(){}, +bjl(a){return new A.Xp(a.gaGS(),a.gaGR(),null)}, +bjm(a,b){var s=b.c +if(s!=null)return s +switch(A.B(a).r.a){case 2:case 4:return A.bqx(a,b) +case 0:case 1:case 3:case 5:s=A.A(a,B.aC,t.D) +s.toString +switch(b.b.a){case 0:return s.ga_() +case 1:return s.gZ() +case 2:return s.ga0() +case 3:return s.gM() +case 4:return s.gaY().toUpperCase() +case 5:return s.gK() +case 6:return s.ga1() +case 7:return s.ga1() +case 8:return s.gaT() +case 9:return""}break}}, +bEY(a,b){var s,r,q,p,o,n,m,l=null +switch(A.B(a).r.a){case 2:return new A.ad(b,new A.asm(),A.ab(b).h("ad<1,d>")) +case 1:case 0:s=A.a([],t.p) +for(r=0;q=b.length,r")) +case 4:return new A.ad(b,new A.aso(a),A.ab(b).h("ad<1,d>"))}}, +Xp:function Xp(a,b,c){this.c=a +this.e=b +this.a=c}, +asm:function asm(){}, +asn:function asn(a){this.a=a}, +aso:function aso(a){this.a=a}, +bsI(){return new A.xs(new A.aJU(),A.I(t.K,t.Qu))}, +ht:function ht(a,b){this.a=a +this.b=b}, +Do:function Do(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.ch=a +_.CW=b +_.cy=c +_.db=d +_.dx=e +_.fx=f +_.k1=g +_.k2=h +_.ok=i +_.R8=j +_.a=k}, +aJU:function aJU(){}, +aJY:function aJY(){}, +SD:function SD(a){var _=this +_.d=$ +_.a=null +_.b=a +_.c=null}, +b7S:function b7S(a,b){this.a=a +this.b=b}, +b7T:function b7T(){}, +eB(a,b,c,d,e,f,g){var s=c==null?null:c.d.b +return new A.Il(f,g,a,c,e,b,d,new A.Tg(null,s,1/0,56+(s==null?0:s)),null)}, +bF3(a,b){var s,r +if(b instanceof A.Tg&&!0){s=A.B(a).RG.Q +if(s==null)s=56 +r=b.f +return s+(r==null?0:r)}return b.b}, +bdP:function bdP(a){this.b=a}, +Tg:function Tg(a,b,c,d){var _=this +_.e=a +_.f=b +_.a=c +_.b=d}, +Il:function Il(a,b,c,d,e,f,g,h,i){var _=this +_.c=a +_.e=b +_.f=c +_.w=d +_.x=e +_.ax=f +_.cy=g +_.fx=h +_.a=i}, +ast:function ast(a,b){this.a=a +this.b=b}, +Qo:function Qo(a){var _=this +_.d=null +_.e=!1 +_.a=null +_.b=a +_.c=null}, +b25:function b25(){}, +ae8:function ae8(a,b){this.c=a +this.a=b}, +alg:function alg(a,b,c,d){var _=this +_.D=null +_.ac=a +_.az=b +_.k3$=c +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +b24:function b24(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}, +bpT(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){return new A.B_(b==null?null:b,e,d,g,h,j,i,f,a,c,l,n,o,m,k)}, +bF2(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.W(a.a,b.a,c) +r=A.W(a.b,b.b,c) +q=A.ag(a.c,b.c,c) +p=A.ag(a.d,b.d,c) +o=A.W(a.e,b.e,c) +n=A.W(a.f,b.f,c) +m=A.fo(a.r,b.r,c) +l=A.qC(a.w,b.w,c) +k=A.qC(a.x,b.x,c) +j=c<0.5 +if(j)i=a.y +else i=b.y +h=A.ag(a.z,b.z,c) +g=A.ag(a.Q,b.Q,c) +f=A.c7(a.as,b.as,c) +e=A.c7(a.at,b.at,c) +if(j)j=a.ax +else j=b.ax +return A.bpT(k,s,i,q,r,l,p,o,m,n,j,h,e,g,f)}, +B_:function B_(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}, +ae7:function ae7(){}, +bSn(a,b){var s,r,q,p,o=A.b6("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.aH()}, +LZ:function LZ(a,b){var _=this +_.c=!0 +_.r=_.f=_.e=_.d=null +_.a=a +_.b=b}, +aJW:function aJW(a,b){this.a=a +this.b=b}, +G7:function G7(a,b){this.a=a +this.b=b}, +rz:function rz(a,b){this.a=a +this.b=b}, +Dr:function Dr(a,b){var _=this +_.e=!0 +_.r=_.f=$ +_.a=a +_.b=b}, +aJX:function aJX(a,b){this.a=a +this.b=b}, +bFi(a,b,c){var s,r,q,p,o,n,m +if(a===b&&!0)return a +s=A.W(a.a,b.a,c) +r=A.W(a.b,b.b,c) +q=A.ag(a.c,b.c,c) +p=A.ag(a.d,b.d,c) +o=A.c7(a.e,b.e,c) +n=A.fJ(a.f,b.f,c) +m=A.AX(a.r,b.r,c) +return new A.Iv(s,r,q,p,o,n,m,A.mb(a.w,b.w,c))}, +Iv:function Iv(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}, +aem:function aem(){}, +LQ:function LQ(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}, +aj0:function aj0(){}, +bFm(a,b,c){var s,r,q,p,o,n +if(a===b&&!0)return a +s=A.W(a.a,b.a,c) +r=A.ag(a.b,b.b,c) +if(c<0.5)q=a.c +else q=b.c +p=A.ag(a.d,b.d,c) +o=A.W(a.e,b.e,c) +n=A.W(a.f,b.f,c) +return new A.Bb(s,r,q,p,o,n,A.fJ(a.r,b.r,c))}, +Bb:function Bb(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +aex:function aex(){}, +bFn(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.W(a.a,b.a,c) +r=A.ag(a.b,b.b,c) +q=A.qC(a.c,b.c,c) +p=A.qC(a.d,b.d,c) +o=A.W(a.e,b.e,c) +n=A.W(a.f,b.f,c) +m=A.c7(a.r,b.r,c) +l=A.c7(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.IF(s,r,q,p,o,n,m,l,j,i,h,g,f,k)}, +IF:function IF(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}, +aey:function aey(){}, +bq2(a,b,c,d,e,f,g,h,i,j,k,l){return new A.IG(a,h,c,g,l,j,i,b,f,k,d,e,null)}, +bnP(a,b,c,d,e){var s,r,q,p,o,n,m,l,k,j=null,i=A.du(c,!1),h=A.A(c,B.aC,t.D) +h.toString +s=i.c +s.toString +s=A.L5(c,s) +r=h.gaU() +h=h.YF(h.gb8()) +q=A.B(c) +p=$.aH() +o=A.a([],t.Zt) +n=$.ac +m=A.mf(B.bV) +l=A.a([],t.wi) +k=$.ac +return i.Bj(new A.M8(a,s,!1,0.5625,j,j,d,b,j,q.x2.e,!0,!0,j,j,j,!1,h,new A.bF(B.a8,p,t.Tt),r,j,j,o,A.aW(t.kj),new A.bq(j,e.h("bq>")),new A.bq(j,t.C),new A.p1(),j,0,new A.aD(new A.a7(n,e.h("a7<0?>")),e.h("aD<0?>")),m,l,B.fU,new A.bF(j,p,t.XR),new A.aD(new A.a7(k,e.h("a7<0?>")),e.h("aD<0?>")),e.h("M8<0>")),e)}, +bme(a){var s=null +return new A.b2A(a,s,s,1,s,s,s,1,B.apy,s,s,s,s,B.qH)}, +IG:function IG(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.y=f +_.z=g +_.Q=h +_.at=i +_.ax=j +_.ay=k +_.ch=l +_.a=m}, +QI:function QI(a,b,c){var _=this +_.d=a +_.e=b +_.a=null +_.b=c +_.c=null}, +b2F:function b2F(a){this.a=a}, +b2D:function b2D(a){this.a=a}, +b2E:function b2E(a,b){this.a=a +this.b=b}, +agp:function agp(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f}, +b4G:function b4G(a){this.a=a}, +b4H:function b4H(a){this.a=a}, +aez:function aez(a,b,c,d,e,f){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.c=e +_.a=f}, +Tr:function Tr(a,b,c,d,e,f,g){var _=this +_.D=a +_.ac=b +_.az=c +_.cr=d +_.eB=e +_.k3$=f +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +Ak:function Ak(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 +_.a=k +_.$ti=l}, +GT:function GT(a,b,c){var _=this +_.d=a +_.a=null +_.b=b +_.c=null +_.$ti=c}, +b8l:function b8l(a,b){this.a=a +this.b=b}, +b8k:function b8k(a,b){this.a=a +this.b=b}, +b8j:function b8j(a){this.a=a}, +M8:function M8(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){var _=this +_.dY=a +_.cq=b +_.dM=c +_.dj=d +_.D=e +_.ac=f +_.az=g +_.cr=h +_.eB=i +_.ek=j +_.jh=k +_.hX=l +_.hf=m +_.hY=n +_.hZ=o +_.ed=p +_.iE=q +_.lk=r +_.kt=s +_.hc=null +_.fr=a0 +_.fx=a1 +_.fy=!1 +_.id=_.go=null +_.k1=a2 +_.k2=a3 +_.k3=a4 +_.k4=a5 +_.ok=a6 +_.p1=$ +_.p2=null +_.p3=$ +_.hB$=a7 +_.mY$=a8 +_.y=a9 +_.z=null +_.Q=!1 +_.at=_.as=null +_.ax=b0 +_.ay=!0 +_.CW=_.ch=null +_.e=b1 +_.a=null +_.b=b2 +_.c=b3 +_.d=b4 +_.$ti=b5}, +aKI:function aKI(a){this.a=a}, +b2G:function b2G(a,b){this.a=a +this.b=b}, +QH:function QH(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +b2B:function b2B(a){this.a=a}, +b2C:function b2C(a){this.a=a}, +b2A:function b2A(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.at=a +_.ax=$ +_.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}, +bFo(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h +if(a===b)return a +s=A.W(a.a,b.a,c) +r=A.W(a.b,b.b,c) +q=A.ag(a.c,b.c,c) +p=A.W(a.d,b.d,c) +o=A.W(a.e,b.e,c) +n=A.W(a.f,b.f,c) +m=A.ag(a.r,b.r,c) +l=A.fo(a.w,b.w,c) +k=c<0.5 +if(k)j=a.x +else j=b.x +i=A.W(a.y,b.y,c) +h=A.aVc(a.z,b.z,c) +if(k)k=a.Q +else k=b.Q +return new A.wn(s,r,q,p,o,n,m,l,j,i,h,k,A.wp(a.as,b.as,c))}, +wn:function wn(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}, +aeA:function aeA(){}, +Nm:function Nm(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}, +akT:function akT(a,b){var _=this +_.qQ$=a +_.a=null +_.b=b +_.c=null}, +ahX:function ahX(a,b,c){this.e=a +this.c=b +this.a=c}, +TB:function TB(a,b,c){var _=this +_.D=a +_.k3$=b +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +baN:function baN(a,b){this.a=a +this.b=b}, +apY:function apY(){}, +bFt(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.ag(a.d,b.d,c) +n=A.ag(a.e,b.e,c) +m=A.fJ(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.IM(r,q,p,o,n,m,l,k,s)}, +IM:function IM(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}, +aeE:function aeE(){}, +av9(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.cy(a1,c,g,m,o,s,d,n,k,f,j,h,i,q,p,l,a2,a0,b,e,a,r)}, +op(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.bK(r,p,a8,A.WZ(),t.p8) +r=s?a5:a6.b +o=q?a5:a7.b +n=t.MH +o=A.bK(r,o,a8,A.ds(),n) +r=s?a5:a6.c +r=A.bK(r,q?a5:a7.c,a8,A.ds(),n) +m=s?a5:a6.d +m=A.bK(m,q?a5:a7.d,a8,A.ds(),n) +l=s?a5:a6.e +l=A.bK(l,q?a5:a7.e,a8,A.ds(),n) +k=s?a5:a6.f +k=A.bK(k,q?a5:a7.f,a8,A.ds(),n) +j=s?a5:a6.r +i=q?a5:a7.r +h=t.PM +i=A.bK(j,i,a8,A.X2(),h) +j=s?a5:a6.w +g=q?a5:a7.w +g=A.bK(j,g,a8,A.bnm(),t.pc) +j=s?a5:a6.x +f=q?a5:a7.x +e=t.tW +f=A.bK(j,f,a8,A.X1(),e) +j=s?a5:a6.y +j=A.bK(j,q?a5:a7.y,a8,A.X1(),e) +d=s?a5:a6.z +e=A.bK(d,q?a5:a7.z,a8,A.X1(),e) +d=s?a5:a6.Q +n=A.bK(d,q?a5:a7.Q,a8,A.ds(),n) +d=s?a5:a6.as +h=A.bK(d,q?a5:a7.as,a8,A.X2(),h) +d=s?a5:a6.at +d=A.bFu(d,q?a5:a7.at,a8) +c=s?a5:a6.ax +b=q?a5:a7.ax +b=A.bK(c,b,a8,A.bnc(),t.KX) +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.AX(a4,q?a5:a7.db,a8) +if(c)s=s?a5:a6.dx +else s=q?a5:a7.dx +return A.av9(a4,a2,o,i,a3,j,r,n,h,e,f,a,m,g,l,b,d,s,k,a1,p,a0)}, +bFu(a,b,c){if(a==null&&b==null)return null +return new A.aip(a,b,c)}, +cy:function cy(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}, +aip:function aip(a,b,c){this.a=a +this.b=b +this.c=c}, +aeG:function aeG(){}, +IO(a,b,c,d){var s +$label0$0:{if(d<=1){s=a +break $label0$0}if(d<2){s=A.fJ(a,b,d-1) +s.toString +break $label0$0}if(d<3){s=A.fJ(b,c,d-2) +s.toString +break $label0$0}s=c +break $label0$0}return s}, +IN:function IN(){}, +QL:function QL(a,b,c){var _=this +_.r=_.f=_.e=_.d=null +_.dL$=a +_.b7$=b +_.a=null +_.b=c +_.c=null}, +b3d:function b3d(){}, +b3a:function b3a(a,b,c){this.a=a +this.b=b +this.c=c}, +b3b:function b3b(a,b){this.a=a +this.b=b}, +b3c:function b3c(a,b,c){this.a=a +this.b=b +this.c=c}, +b2O:function b2O(){}, +b2P:function b2P(){}, +b2Q:function b2Q(){}, +b30:function b30(){}, +b33:function b33(){}, +b34:function b34(){}, +b35:function b35(){}, +b36:function b36(){}, +b37:function b37(){}, +b38:function b38(){}, +b39:function b39(){}, +b2R:function b2R(){}, +b2S:function b2S(){}, +b2T:function b2T(){}, +b31:function b31(a){this.a=a}, +b2M:function b2M(a){this.a=a}, +b32:function b32(a){this.a=a}, +b2L:function b2L(a){this.a=a}, +b2U:function b2U(){}, +b2V:function b2V(){}, +b2W:function b2W(){}, +b2X:function b2X(){}, +b2Y:function b2Y(){}, +b2Z:function b2Z(){}, +b3_:function b3_(a){this.a=a}, +b2N:function b2N(){}, +ajl:function ajl(a){this.a=a}, +ahY:function ahY(a,b,c){this.e=a +this.c=b +this.a=c}, +TC:function TC(a,b,c){var _=this +_.D=a +_.k3$=b +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +baO:function baO(a,b){this.a=a +this.b=b}, +VO:function VO(){}, +bqe(a){var s,r,q,p,o +a.aj(t.Xj) +s=A.B(a) +r=s.y1 +if(r.at==null){q=r.at +if(q==null)q=s.ax +p=r.gdD(r) +o=r.gcH(r) +r=A.bqd(!1,r.w,q,r.x,r.y,r.b,r.Q,r.z,r.d,r.ax,r.a,p,o,r.as,r.c)}r.toString +return r}, +bqd(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){return new A.YF(k,f,o,i,l,m,!1,b,d,e,h,g,n,c,j)}, +ava:function ava(a,b){this.a=a +this.b=b}, +av8:function av8(a,b){this.a=a +this.b=b}, +YF:function YF(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}, +aeH:function aeH(){}, +q5(a,b,c,d,e){return new A.YN(c,e,b,d,a,null)}, +YN:function YN(a,b,c,d,e,f){var _=this +_.c=a +_.r=b +_.x=c +_.y=d +_.Q=e +_.a=f}, +b3h:function b3h(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}, +bFA(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.W(a.b,b.b,c) +q=A.W(a.c,b.c,c) +p=A.W(a.d,b.d,c) +o=A.ag(a.e,b.e,c) +n=A.fJ(a.f,b.f,c) +return new A.Bl(s,r,q,p,o,n,A.fo(a.r,b.r,c))}, +Bl:function Bl(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +aeJ:function aeJ(){}, +b3z:function b3z(a,b){this.a=a +this.b=b}, +J1:function J1(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.as=i +_.at=j +_.ax=k +_.ch=l +_.CW=m +_.cx=n +_.cy=o +_.db=p +_.dx=q +_.a=r}, +aeW:function aeW(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this +_.d=a +_.e=null +_.ks$=b +_.mZ$=c +_.p0$=d +_.vh$=e +_.vi$=f +_.ty$=g +_.vj$=h +_.tz$=i +_.F_$=j +_.qP$=k +_.pV$=l +_.pW$=m +_.dL$=n +_.b7$=o +_.a=null +_.b=p +_.c=null}, +b3x:function b3x(a){this.a=a}, +b3y:function b3y(a,b){this.a=a +this.b=b}, +aeU:function aeU(a){var _=this +_.at=_.as=_.Q=_.z=_.y=_.x=_.w=_.r=_.f=_.e=_.d=_.c=_.b=_.a=_.fy=_.fx=_.fr=_.dy=_.dx=_.db=null +_.k4$=0 +_.ok$=a +_.p2$=_.p1$=0 +_.p3$=!1}, +b3o:function b3o(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.y=a +_.z=b +_.a=c +_.b=d +_.c=e +_.d=f +_.e=g +_.f=h +_.r=i +_.w=j +_.x=k}, +b3s:function b3s(a){this.a=a}, +b3q:function b3q(a){this.a=a}, +b3p:function b3p(a){this.a=a}, +b3r:function b3r(a){this.a=a}, +VQ:function VQ(){}, +VR:function VR(){}, +Bo(a,b,c,d,e,f,g,h,i){return new A.J2(i,e,a,g,f,c,b,h,d)}, +b3A:function b3A(a,b){this.a=a +this.b=b}, +J2:function J2(a,b,c,d,e,f,g,h,i){var _=this +_.c=a +_.d=b +_.f=c +_.cy=d +_.db=e +_.fr=f +_.fy=g +_.id=h +_.a=i}, +bFH(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.MH +p=A.bK(a.b,b.b,c,A.ds(),q) +o=A.bK(a.c,b.c,c,A.ds(),q) +q=A.bK(a.d,b.d,c,A.ds(),q) +n=A.ag(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.KX.a(A.fo(a.w,b.w,c)) +return new A.Bq(r,p,o,q,n,m,s,l,A.bFG(a.x,b.x,c))}, +bFG(a,b,c){if(a==null||b==null)return null +if(a===b)return a +return A.bp(a,b,c)}, +bqi(a){var s +a.aj(t.ES) +s=A.B(a) +return s.bL}, +Bq:function Bq(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}, +aeX:function aeX(){}, +bjC(a,b,c){return new A.Bs(b,c,a,null)}, +btA(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){return new A.Nj(h,b,q,s,r,B.a7m,a1,k,i,a2,a4,a5,p,l,a6,b4,b1,a9,f,n,!1,g,d,a3,b5,a0,m,a8,b2,o,a7,b0,e,c,b3,null)}, +bmu(a){var s,r,q +if(a==null)s=B.W +else{s=a.b +s.toString +s=t.q.a(s).a +r=a.gq(a) +q=s.a +s=s.b +r=new A.L(q,s,q+r.a,s+r.b) +s=r}return s}, +bRU(a,b,c,d,e,f){var s,r,q,p=a.a-d.gdI() +d.gcC(d) +d.gcD(d) +s=e.a4(0,new A.m(d.a,d.b)) +r=b.a +q=Math.min(p*0.499,Math.min(c.c+r,24+r/2)) +switch(f.a){case 1:return s.a>=p-q +case 0:return s.a<=q}}, +Bs:function Bs(a,b,c,d){var _=this +_.d=a +_.e=b +_.as=c +_.a=d}, +Nj:function Nj(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 +_.at=k +_.ax=l +_.ay=m +_.ch=n +_.CW=o +_.cx=p +_.cy=q +_.db=r +_.dx=s +_.dy=a0 +_.fr=a1 +_.fx=a2 +_.fy=a3 +_.go=a4 +_.id=a5 +_.k1=a6 +_.k2=a7 +_.k3=a8 +_.k4=a9 +_.ok=b0 +_.p1=b1 +_.p2=b2 +_.p3=b3 +_.p4=b4 +_.R8=b5 +_.a=b6}, +Tk:function Tk(a,b,c,d){var _=this +_.Q=_.z=_.y=_.x=_.w=_.r=_.f=_.e=_.d=$ +_.as=!1 +_.dL$=a +_.b7$=b +_.qQ$=c +_.a=null +_.b=d +_.c=null}, +ba6:function ba6(a){this.a=a}, +ba5:function ba5(a){this.a=a}, +ba7:function ba7(a){this.a=a}, +ba9:function ba9(a){this.a=a}, +baa:function baa(a){this.a=a}, +bab:function bab(a){this.a=a}, +ba8:function ba8(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +ahT:function ahT(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +af_:function af_(a,b,c){this.e=a +this.c=b +this.a=c}, +alh:function alh(a,b,c){var _=this +_.D=a +_.k3$=b +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +bal:function bal(a,b){this.a=a +this.b=b}, +af1:function af1(a,b,c,d,e,f,g,h,i){var _=this +_.d=a +_.e=b +_.f=c +_.r=d +_.w=e +_.x=f +_.y=g +_.z=h +_.a=i}, +pz:function pz(a,b){this.a=a +this.b=b}, +af0:function af0(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}, +Tt:function Tt(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.B=a +_.W=b +_.an=_.a6=$ +_.ao=c +_.aN=d +_.aZ=e +_.bt=f +_.Y=g +_.b3=h +_.bd=i +_.eM=j +_.eA=k +_.d9$=l +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=m +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null}, +bao:function bao(a,b){this.a=a +this.b=b}, +bap:function bap(a,b){this.a=a +this.b=b}, +bam:function bam(a){this.a=a}, +ban:function ban(a){this.a=a}, +b3C:function b3C(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +b3B:function b3B(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 +_.dx=a +_.dy=b +_.fx=_.fr=$ +_.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}, +apX:function apX(){}, +Wi:function Wi(){}, +aq0:function aq0(){}, +bql(a){var s +a.aj(t.aL) +s=A.B(a) +return s.co}, +bFK(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){return new A.Bt(d,a,e,f,o,n,q,a1,p,s,c,i,k,a0,r,j,m,b,g,l,h)}, +bFN(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(a3===a4)return a3 +s=A.bK(a3.a,a4.a,a5,A.ds(),t.MH) +r=A.W(a3.b,a4.b,a5) +q=A.W(a3.c,a4.c,a5) +p=A.W(a3.d,a4.d,a5) +o=A.W(a3.e,a4.e,a5) +n=A.W(a3.f,a4.f,a5) +m=A.W(a3.r,a4.r,a5) +l=A.W(a3.w,a4.w,a5) +k=A.W(a3.x,a4.x,a5) +j=a5<0.5 +if(j)i=a3.y!==!1 +else i=a4.y!==!1 +h=A.W(a3.z,a4.z,a5) +g=A.fJ(a3.Q,a4.Q,a5) +f=A.fJ(a3.as,a4.as,a5) +e=A.bFM(a3.at,a4.at,a5) +d=A.bFL(a3.ax,a4.ax,a5) +c=A.c7(a3.ay,a4.ay,a5) +b=A.c7(a3.ch,a4.ch,a5) +if(j){j=a3.CW +if(j==null)j=B.a2}else{j=a4.CW +if(j==null)j=B.a2}a=A.ag(a3.cx,a4.cx,a5) +a0=A.ag(a3.cy,a4.cy,a5) +a1=a3.db +if(a1==null)a2=a4.db!=null +else a2=!0 +if(a2)a1=A.qC(a1,a4.db,a5) +else a1=null +return A.bFK(r,j,h,s,q,p,a,a1,g,c,f,a0,b,n,o,k,m,d,i,e,l)}, +bFM(a,b,c){var s=a==null +if(s&&b==null)return null +if(s){s=b.a +return A.bp(new A.be(A.K(0,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255),0,B.I,-1),b,c)}if(b==null){s=a.a +return A.bp(new A.be(A.K(0,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255),0,B.I,-1),a,c)}return A.bp(a,b,c)}, +bFL(a,b,c){if(a==null&&b==null)return null +return t.KX.a(A.fo(a,b,c))}, +Bt:function Bt(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}, +af2:function af2(){}, +b3D:function b3D(a,b){this.a=a +this.b=b}, +Z_:function Z_(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.r=c +_.x=d +_.a=e}, +b3E:function b3E(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 +_.go=_.fy=$ +_.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}, +b3F:function b3F(a){this.a=a}, +Jf(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){return new A.wz(b,a1,k,a2,l,a4,m,a5,n,b0,q,b1,r,c,h,d,i,a,g,a7,o,a9,p,s,a0,a6,a3,f,j,e,a8)}, +bG_(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,b3,b4,b5,b6 +if(b7===b8)return b7 +s=b9<0.5?b7.a:b8.a +r=b7.b +q=b8.b +p=A.W(r,q,b9) +p.toString +o=b7.c +n=b8.c +m=A.W(o,n,b9) +m.toString +l=b7.d +if(l==null)l=r +k=b8.d +l=A.W(l,k==null?q:k,b9) +k=b7.e +if(k==null)k=o +j=b8.e +k=A.W(k,j==null?n:j,b9) +j=b7.f +i=b8.f +h=A.W(j,i,b9) +h.toString +g=b7.r +f=b8.r +e=A.W(g,f,b9) +e.toString +d=b7.w +if(d==null)d=j +c=b8.w +d=A.W(d,c==null?i:c,b9) +c=b7.x +if(c==null)c=g +b=b8.x +c=A.W(c,b==null?f:b,b9) +b=b7.y +a=b==null +a0=a?j:b +a1=b8.y +a2=a1==null +a0=A.W(a0,a2?i:a1,b9) +a3=b7.z +a4=a3==null +a5=a4?g:a3 +a6=b8.z +a7=a6==null +a5=A.W(a5,a7?f:a6,b9) +a8=b7.Q +if(a8==null)j=a?j:b +else j=a8 +b=b8.Q +if(b==null)i=a2?i:a1 +else i=b +i=A.W(j,i,b9) +j=b7.as +if(j==null)j=a4?g:a3 +g=b8.as +if(g==null)g=a7?f:a6 +g=A.W(j,g,b9) +j=b7.at +f=b8.at +b=A.W(j,f,b9) +b.toString +a=b7.ax +a1=b8.ax +a2=A.W(a,a1,b9) +a2.toString +a3=b7.ay +j=a3==null?j:a3 +a3=b8.ay +j=A.W(j,a3==null?f:a3,b9) +f=b7.ch +if(f==null)f=a +a=b8.ch +f=A.W(f,a==null?a1:a,b9) +a=A.W(b7.CW,b8.CW,b9) +a.toString +a1=b7.cx +a3=b8.cx +a4=A.W(a1,a3,b9) +a4.toString +a6=b7.cy +a7=b8.cy +a8=A.W(a6,a7,b9) +a8.toString +a9=b7.db +b0=b8.db +b1=A.W(a9,b0,b9) +b1.toString +b2=b7.dx +if(b2==null)b2=a6 +b3=b8.dx +b2=A.W(b2,b3==null?a7:b3,b9) +b3=b7.dy +if(b3==null)b3=a9 +b4=b8.dy +b3=A.W(b3,b4==null?b0:b4,b9) +b4=b7.fr +if(b4==null)b4=a1 +b5=b8.fr +b4=A.W(b4,b5==null?a3:b5,b9) +b5=b7.fx +a1=b5==null?a1:b5 +b5=b8.fx +a1=A.W(a1,b5==null?a3:b5,b9) +a3=b7.fy +if(a3==null)a3=B.o +b5=b8.fy +a3=A.W(a3,b5==null?B.o:b5,b9) +b5=b7.go +if(b5==null)b5=B.o +b6=b8.go +b5=A.W(b5,b6==null?B.o:b6,b9) +b6=b7.id +a9=b6==null?a9:b6 +b6=b8.id +a9=A.W(a9,b6==null?b0:b6,b9) +b0=b7.k1 +a6=b0==null?a6:b0 +b0=b8.k1 +a6=A.W(a6,b0==null?a7:b0,b9) +a7=b7.k2 +o=a7==null?o:a7 +a7=b8.k2 +o=A.W(o,a7==null?n:a7,b9) +n=b7.k3 +r=n==null?r:n +n=b8.k3 +return A.Jf(a,s,b,j,o,a9,a4,a2,f,a6,m,k,e,c,b1,b3,a5,g,b4,a1,p,l,b5,h,d,a3,a8,A.W(r,n==null?q:n,b9),b2,a0,i)}, +wz:function wz(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){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}, +af5:function af5(){}, +Dp:function Dp(a,b){this.b=a +this.a=b}, +a40:function a40(a,b){this.b=a +this.a=b}, +bGu(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.aym(a.a,b.a,c) +r=t.MH +q=A.bK(a.b,b.b,c,A.ds(),r) +p=A.ag(a.c,b.c,c) +o=A.ag(a.d,b.d,c) +n=A.c7(a.e,b.e,c) +r=A.bK(a.f,b.f,c,A.ds(),r) +m=A.ag(a.r,b.r,c) +l=A.c7(a.w,b.w,c) +k=A.ag(a.x,b.x,c) +j=A.ag(a.y,b.y,c) +i=A.ag(a.z,b.z,c) +h=A.ag(a.Q,b.Q,c) +g=c<0.5 +f=g?a.as:b.as +g=g?a.at:b.at +return new A.JH(s,q,p,o,n,r,m,l,k,j,i,h,f,g)}, +JH:function JH(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}, +afO:function afO(){}, +bGz(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){return new A.JI(a,i,a6,a8,a7,j,k,l,m,b2,g,e,d,f,b1,a9,b0,b6,b4,b3,b5,o,p,a1,a3,a2,q,r,s,a0,a4,a5,h,n,b,c)}, +bGB(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,b4,b5 +if(b6===b7&&!0)return b6 +s=A.W(b6.a,b7.a,b8) +r=A.ag(b6.b,b7.b,b8) +q=A.W(b6.c,b7.c,b8) +p=A.W(b6.d,b7.d,b8) +o=A.fo(b6.e,b7.e,b8) +n=A.W(b6.f,b7.f,b8) +m=A.W(b6.r,b7.r,b8) +l=A.c7(b6.w,b7.w,b8) +k=A.c7(b6.x,b7.x,b8) +j=A.c7(b6.y,b7.y,b8) +i=A.c7(b6.z,b7.z,b8) +h=t.MH +g=A.bK(b6.Q,b7.Q,b8,A.ds(),h) +f=A.bK(b6.as,b7.as,b8,A.ds(),h) +e=A.bK(b6.at,b7.at,b8,A.ds(),h) +d=A.bK(b6.ax,b7.ax,b8,A.ds(),h) +c=A.bK(b6.ay,b7.ay,b8,A.ds(),h) +b=A.bGA(b6.ch,b7.ch,b8) +a=A.c7(b6.CW,b7.CW,b8) +a0=A.bK(b6.cx,b7.cx,b8,A.ds(),h) +a1=A.bK(b6.cy,b7.cy,b8,A.ds(),h) +a2=A.bK(b6.db,b7.db,b8,A.ds(),h) +a3=A.W(b6.dx,b7.dx,b8) +a4=A.ag(b6.dy,b7.dy,b8) +a5=A.W(b6.fr,b7.fr,b8) +a6=A.W(b6.fx,b7.fx,b8) +a7=A.fo(b6.fy,b7.fy,b8) +a8=A.W(b6.go,b7.go,b8) +a9=A.W(b6.id,b7.id,b8) +b0=A.c7(b6.k1,b7.k1,b8) +b1=A.c7(b6.k2,b7.k2,b8) +b2=A.W(b6.k3,b7.k3,b8) +h=A.bK(b6.k4,b7.k4,b8,A.ds(),h) +b3=A.W(b6.ok,b7.ok,b8) +if(b8<0.5)b4=b6.p1 +else b4=b7.p1 +b5=A.op(b6.p2,b7.p2,b8) +return A.bGz(s,b5,A.op(b6.p3,b7.p3,b8),f,g,e,i,b3,r,n,m,l,k,b4,a3,a4,a8,a9,b0,b1,a5,a7,a6,b2,h,q,o,p,c,b,d,j,a1,a0,a2,a)}, +bGA(a,b,c){var s +if(a==b)return a +if(a==null){s=b.a +return A.bp(new A.be(A.K(0,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255),0,B.I,-1),b,c)}s=a.a +return A.bp(a,new A.be(A.K(0,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255),0,B.I,-1),c)}, +JI:function JI(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 +_.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}, +afQ:function afQ(){}, +ag2:function ag2(){}, +ayx:function ayx(){}, +apr:function apr(){}, +a0P:function a0P(a,b,c){this.c=a +this.d=b +this.a=c}, +bGL(a,b,c){var s=null +return new A.BW(b,A.P(c,s,B.ad,s,s,B.P7.cM(A.B(a).ax.a===B.S?B.l:B.af),s,s),s)}, +BW:function BW(a,b,c){this.c=a +this.d=b +this.a=c}, +l2(a,b,c,d){return new A.AW(d,b,c,a,null)}, +bQy(a,b,c,d){return new A.cY(A.c5(B.d_,b,null),!1,d,null)}, +fe(a,b,c){var s,r=A.du(b,!0).c +r.toString +s=A.L5(b,r) +r=A.du(b,!0) +return r.Bj(A.bGP(null,B.aa,!0,null,a,b,null,s,B.pJ,!0,c),c)}, +bGP(a,b,c,d,e,f,g,h,i,j,k){var s,r,q,p,o,n,m=null,l=A.A(f,B.aC,t.D) +l.toString +l=l.gaM() +s=A.a([],t.Zt) +r=$.ac +q=A.mf(B.bV) +p=A.a([],t.wi) +o=$.aH() +n=$.ac +return new A.JO(new A.ayy(e,h,!0),!0,l,b,B.d0,A.bUs(),a,m,i,s,A.aW(t.kj),new A.bq(m,k.h("bq>")),new A.bq(m,t.C),new A.p1(),m,0,new A.aD(new A.a7(r,k.h("a7<0?>")),k.h("aD<0?>")),q,p,B.fU,new A.bF(m,o,t.XR),new A.aD(new A.a7(n,k.h("a7<0?>")),k.h("aD<0?>")),k.h("JO<0>"))}, +bvO(a){var s=null +return new A.b4D(a,s,6,s,s,B.NA,B.a7,s,s,s,s)}, +a0V:function a0V(a,b,c,d,e,f,g,h,i,j){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.x=e +_.y=f +_.z=g +_.Q=h +_.as=i +_.a=j}, +AW:function AW(a,b,c,d,e){var _=this +_.f=a +_.x=b +_.y=c +_.Q=d +_.a=e}, +JO:function JO(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 +_.cq=b +_.dM=c +_.dj=d +_.D=e +_.ac=f +_.az=g +_.fr=h +_.fx=i +_.fy=!1 +_.id=_.go=null +_.k1=j +_.k2=k +_.k3=l +_.k4=m +_.ok=n +_.p1=$ +_.p2=null +_.p3=$ +_.hB$=o +_.mY$=p +_.y=q +_.z=null +_.Q=!1 +_.at=_.as=null +_.ax=r +_.ay=!0 +_.CW=_.ch=null +_.e=s +_.a=null +_.b=a0 +_.c=a1 +_.d=a2 +_.$ti=a3}, +ayy:function ayy(a,b,c){this.a=a +this.b=b +this.c=c}, +b4D:function b4D(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.z=a +_.as=_.Q=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k}, +bGQ(a,b,c){var s,r,q,p,o,n,m,l,k +if(a===b&&!0)return a +s=A.W(a.a,b.a,c) +r=A.ag(a.b,b.b,c) +q=A.W(a.c,b.c,c) +p=A.W(a.d,b.d,c) +o=A.fo(a.e,b.e,c) +n=A.AX(a.f,b.f,c) +m=A.W(a.y,b.y,c) +l=A.c7(a.r,b.r,c) +k=A.c7(a.w,b.w,c) +return new A.BX(s,r,q,p,o,n,l,k,A.fJ(a.x,b.x,c),m)}, +BX:function BX(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}, +ag5:function ag5(){}, +bqL(a,b,c){var s,r,q,p,o=A.bk5(a) +A.B(a) +s=A.bmg(a) +r=o.a +q=r +if(q==null)q=s==null?null:s.gaf(s) +p=c +if(q==null)return new A.be(B.o,p,B.I,-1) +return new A.be(q,p,B.I,-1)}, +bmg(a){return new A.b4F(a,null,16,1,0,0)}, +C_:function C_(a,b){this.c=a +this.a=b}, +abG:function abG(a){this.a=a}, +b4F:function b4F(a,b,c,d,e,f){var _=this +_.f=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f}, +bH1(a,b,c){var s,r,q,p +if(a===b&&!0)return a +s=A.W(a.a,b.a,c) +r=A.ag(a.b,b.b,c) +q=A.ag(a.c,b.c,c) +p=A.ag(a.d,b.d,c) +return new A.C0(s,r,q,p,A.ag(a.e,b.e,c))}, +bk5(a){var s +a.aj(t.Jj) +s=A.B(a) +return s.cp}, +C0:function C0(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +agb:function agb(){}, +bkf(a,b,c){return new A.K2(b,c,a,null)}, +a1c:function a1c(a,b){this.a=a +this.b=b}, +K2:function K2(a,b,c,d){var _=this +_.r=a +_.w=b +_.x=c +_.a=d}, +Rt:function Rt(a,b,c){this.f=a +this.b=b +this.a=c}, +K3:function K3(a,b,c,d,e,f,g,h,i){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.a=i}, +C4:function C4(a,b,c,d,e,f){var _=this +_.d=null +_.e=a +_.f=$ +_.r=b +_.w=!1 +_.x=$ +_.y=c +_.ff$=d +_.c3$=e +_.a=null +_.b=f +_.c=null}, +aA9:function aA9(){}, +b4I:function b4I(a,b,c,d,e,f,g,h,i){var _=this +_.x=a +_.y=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i}, +Ru:function Ru(){}, +bHr(a,b,c){var s,r,q,p,o,n,m +if(a===b)return a +s=A.W(a.a,b.a,c) +r=A.W(a.b,b.b,c) +q=A.ag(a.c,b.c,c) +p=A.W(a.d,b.d,c) +o=A.W(a.e,b.e,c) +n=A.fo(a.f,b.f,c) +m=A.fo(a.r,b.r,c) +return new A.C5(s,r,q,p,o,n,m,A.ag(a.w,b.w,c))}, +brf(a){var s +a.aj(t.ty) +s=A.B(a) +return s.ct}, +C5:function C5(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}, +agr:function agr(){}, +ags:function ags(a,b,c,d,e,f,g,h){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.w=g +_.a=h}, +Gk:function Gk(a,b,c,d,e,f,g,h,i){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.a=h +_.$ti=i}, +Gl:function Gl(a,b){var _=this +_.a=null +_.b=a +_.c=null +_.$ti=b}, +Gj:function Gj(a,b,c,d,e,f,g,h,i,j){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.a=i +_.$ti=j}, +Rw:function Rw(a,b){var _=this +_.e=_.d=$ +_.a=null +_.b=a +_.c=null +_.$ti=b}, +b4Q:function b4Q(a){this.a=a}, +agt:function agt(a,b,c,d){var _=this +_.b=a +_.c=b +_.d=c +_.$ti=d}, +lJ:function lJ(a,b){this.a=a +this.$ti=b}, +b8i:function b8i(a,b,c){this.a=a +this.c=b +this.d=c}, +Rx:function Rx(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 +_.dY=a +_.cq=b +_.dM=c +_.dj=d +_.D=e +_.ac=f +_.az=g +_.cr=h +_.eB=i +_.ek=j +_.jh=k +_.hX=l +_.hf=m +_.hY=n +_.fr=o +_.fx=p +_.fy=!1 +_.id=_.go=null +_.k1=q +_.k2=r +_.k3=s +_.k4=a0 +_.ok=a1 +_.p1=$ +_.p2=null +_.p3=$ +_.hB$=a2 +_.mY$=a3 +_.y=a4 +_.z=null +_.Q=!1 +_.at=_.as=null +_.ax=a5 +_.ay=!0 +_.CW=_.ch=null +_.e=a6 +_.a=null +_.b=a7 +_.c=a8 +_.d=a9 +_.$ti=b0}, +b4S:function b4S(a){this.a=a}, +b4T:function b4T(){}, +b4U:function b4U(){}, +Ad:function Ad(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.c=a +_.d=b +_.f=c +_.r=d +_.w=e +_.y=f +_.Q=g +_.as=h +_.at=i +_.a=j +_.$ti=k}, +Ry:function Ry(a,b){var _=this +_.d=$ +_.a=null +_.b=a +_.c=null +_.$ti=b}, +b4R:function b4R(a,b,c){this.a=a +this.b=b +this.c=c}, +GS:function GS(a,b,c,d,e){var _=this +_.e=a +_.f=b +_.c=c +_.a=d +_.$ti=e}, +alu:function alu(a,b,c){var _=this +_.D=a +_.k3$=b +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +Rv:function Rv(a,b,c){this.c=a +this.d=b +this.a=c}, +qg:function qg(a,b,c,d,e){var _=this +_.r=a +_.c=b +_.d=c +_.a=d +_.$ti=e}, +K4:function K4(a,b){this.b=a +this.a=b}, +C6:function C6(a,b,c,d,e,f,g,h){var _=this +_.c=a +_.d=b +_.e=c +_.r=d +_.as=e +_.CW=f +_.a=g +_.$ti=h}, +Gi:function Gi(a,b){var _=this +_.r=_.f=_.e=_.d=null +_.w=$ +_.a=null +_.b=a +_.c=null +_.$ti=b}, +b4O:function b4O(a){this.a=a}, +b4P:function b4P(a){this.a=a}, +b4M:function b4M(a){this.a=a}, +b4K:function b4K(a,b){this.a=a +this.b=b}, +b4L:function b4L(a){this.a=a}, +b4N:function b4N(a){this.a=a}, +W0:function W0(){}, +bHs(a,b,c){var s,r +if(a===b&&!0)return a +s=A.c7(a.a,b.a,c) +if(c<0.5)r=a.b +else r=b.b +return new A.K5(s,r,A.bl3(a.c,b.c,c))}, +K5:function K5(a,b,c){this.a=a +this.b=b +this.c=c}, +agu:function agu(){}, +x2(a,b,c,d,e,f,g,h,i,j,k){return new A.Cf(i,h,g,f,k,c,d,!1,j,!0,b,e)}, +bSI(a){var s +A.B(a) +s=A.d9(a,B.bz) +s=s==null?null:s.gdU() +if(s==null)s=B.aw +return A.IO(new A.aK(24,0,24,0),new A.aK(12,0,12,0),new A.aK(6,0,6,0),s.a)}, +bOP(a,b,c){var s=null +return new A.agD(c,s,s,s,s,B.n,s,!1,s,!0,new A.agE(b,a,s),s)}, +Cf:function Cf(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}, +agD:function agD(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}, +agE:function agE(a,b,c){this.c=a +this.d=b +this.a=c}, +agB:function agB(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 +_.fr=$ +_.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}, +b4V:function b4V(a){this.a=a}, +b4X:function b4X(a){this.a=a}, +b4Z:function b4Z(a){this.a=a}, +b4W:function b4W(){}, +b4Y:function b4Y(){}, +bHC(a,b,c){if(a===b)return a +return new A.Kb(A.op(a.a,b.a,c))}, +Kb:function Kb(a){this.a=a}, +agC:function agC(){}, +brn(a,b,c){if(b!=null&&!b.k(0,B.E))return A.BG(A.K(B.e.bg(255*A.bHD(c)),b.gj(b)>>>16&255,b.gj(b)>>>8&255,b.gj(b)&255),a) +return a}, +bHD(a){var s,r,q,p,o,n +if(a<0)return 0 +for(s=0;r=B.Ay[s],q=r.a,a>=q;){if(a===q||s+1===6)return r.b;++s}p=B.Ay[s-1] +o=p.a +n=p.b +return n+(a-o)/(q-o)*(r.b-n)}, +rC:function rC(a,b){this.a=a +this.b=b}, +bkm(a,b,c,d,e,f){return new A.Kj(f,a,c,b,e,d,null)}, +bvR(a){var s=null +return new A.b58(a,s,s,s,s,s,s,s,s,s,s,s)}, +aC5:function aC5(){this.a=null}, +Kj:function Kj(a,b,c,d,e,f,g){var _=this +_.d=a +_.r=b +_.z=c +_.ch=d +_.cx=e +_.db=f +_.a=g}, +RL:function RL(a,b,c,d,e,f,g){var _=this +_.d=a +_.e=b +_.f=c +_.r=d +_.at=_.as=_.Q=_.z=_.y=_.x=_.w=$ +_.ax=!1 +_.ay=$ +_.ff$=e +_.c3$=f +_.a=null +_.b=g +_.c=null}, +b5b:function b5b(a){this.a=a}, +b5a:function b5a(a){this.a=a}, +b59:function b59(){}, +b58:function b58(a,b,c,d,e,f,g,h,i,j,k,l){var _=this +_.as=a +_.ax=_.at=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l}, +W1:function W1(){}, +bHU(a,b,c,d,e,f,g,h,i,j,k){return new A.Cl(a,c,k,g,b,h,d,j,f,i,e)}, +bHV(a,b,c){var s,r,q,p,o,n,m,l,k,j +if(a===b)return a +s=A.W(a.a,b.a,c) +r=A.W(a.b,b.b,c) +q=A.fJ(a.c,b.c,c) +p=A.AX(a.d,b.d,c) +o=A.fJ(a.e,b.e,c) +n=A.W(a.f,b.f,c) +m=A.W(a.r,b.r,c) +l=A.W(a.w,b.w,c) +k=A.W(a.x,b.x,c) +j=A.fo(a.y,b.y,c) +return A.bHU(s,o,r,m,A.fo(a.z,b.z,c),k,p,n,j,l,q)}, +aC6(a){var s +a.aj(t.o6) +s=A.B(a) +return s.a6}, +Cl:function Cl(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}, +agH:function agH(){}, +bkp(a,b){var s=null +return new A.a1N(b,s,s,s,s,B.n,s,!1,s,!0,a,s)}, +bSG(a){var s +A.B(a) +s=A.d9(a,B.bz) +s=s==null?null:s.gdU() +if(s==null)s=B.aw +return A.IO(new A.aK(24,0,24,0),new A.aK(12,0,12,0),new A.aK(6,0,6,0),s.a)}, +b5J:function b5J(a,b){this.a=a +this.b=b}, +a1N:function a1N(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}, +agR:function agR(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 +_.fr=$ +_.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}, +b5E:function b5E(a){this.a=a}, +b5G:function b5G(a){this.a=a}, +b5I:function b5I(a){this.a=a}, +b5F:function b5F(){}, +b5H:function b5H(){}, +bI5(a,b,c){if(a===b)return a +return new A.Ko(A.op(a.a,b.a,c))}, +Ko:function Ko(a){this.a=a}, +agS:function agS(){}, +Kw:function Kw(a,b,c,d,e,f,g,h){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.y=e +_.z=f +_.b=g +_.a=h}, +a1W(a,b,c,d){return new A.xg(a,d,B.cy,b,B.Pz,c,null)}, +b4r:function b4r(){}, +ah8:function ah8(a,b){this.a=a +this.b=b}, +xg:function xg(a,b,c,d,e,f,g){var _=this +_.c=a +_.z=b +_.Q=c +_.db=d +_.k1=e +_.k2=f +_.a=g}, +agz:function agz(a,b){this.a=a +this.b=b}, +aeY:function aeY(a,b){this.c=a +this.a=b}, +Ts:function Ts(a,b,c,d){var _=this +_.D=null +_.ac=a +_.az=b +_.k3$=c +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +b5c:function b5c(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}, +bMJ(a,b){return a.r.a-16-a.e.c-a.a.a+b}, +bvC(a,b,c,d,e){return new A.Qn(c,d,a,b,new A.bd(A.a([],t.x8),t.jc),new A.bd(A.a([],t.qj),t.fy),0,e.h("Qn<0>"))}, +aDm:function aDm(){}, +aXE:function aXE(){}, +a1G:function a1G(){}, +aCs:function aCs(){}, +aCt:function aCt(){}, +b3m:function b3m(){}, +b50:function b50(){}, +aDl:function aDl(){}, +bbC:function bbC(){}, +Qn:function Qn(a,b,c,d,e,f,g,h){var _=this +_.w=a +_.x=b +_.a=c +_.b=d +_.d=_.c=null +_.ej$=e +_.dw$=f +_.vg$=g +_.$ti=h}, +apj:function apj(){}, +apk:function apk(){}, +apu:function apu(){}, +apv:function apv(){}, +bIf(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){return new A.Cq(k,a,i,m,a1,c,j,n,b,l,r,d,o,s,a0,p,g,e,f,h,q)}, +bIg(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.W(a2.a,a3.a,a4) +r=A.W(a2.b,a3.b,a4) +q=A.W(a2.c,a3.c,a4) +p=A.W(a2.d,a3.d,a4) +o=A.W(a2.e,a3.e,a4) +n=A.ag(a2.f,a3.f,a4) +m=A.ag(a2.r,a3.r,a4) +l=A.ag(a2.w,a3.w,a4) +k=A.ag(a2.x,a3.x,a4) +j=A.ag(a2.y,a3.y,a4) +i=A.fo(a2.z,a3.z,a4) +h=a4<0.5 +if(h)g=a2.Q +else g=a3.Q +f=A.ag(a2.as,a3.as,a4) +e=A.wp(a2.at,a3.at,a4) +d=A.wp(a2.ax,a3.ax,a4) +c=A.wp(a2.ay,a3.ay,a4) +b=A.wp(a2.ch,a3.ch,a4) +a=A.ag(a2.CW,a3.CW,a4) +a0=A.fJ(a2.cx,a3.cx,a4) +a1=A.c7(a2.cy,a3.cy,a4) +if(h)h=a2.db +else h=a3.db +return A.bIf(r,k,n,g,a,a0,b,a1,q,m,s,j,p,l,f,c,h,i,e,d,o)}, +Cq:function Cq(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}, +ah7:function ah7(){}, +a2s:function a2s(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +dh(a,b,c,d,e,f,g,h,i,j){return new A.xy(d,j,f,g,c,a,e,i,b,h,null)}, +xz(a,b,c,d,e,f,g,h,i,j,k,l,a0,a1){var s,r,q,p,o=null,n=g==null,m=n&&!0?o:new A.ahG(g,b) +if(n)n=!0 +else n=!1 +s=n?o:new A.ahI(g,f,i,h) +n=a0==null?o:new A.cG(a0,t.Ak) +r=l==null?o:new A.cG(l,t.iL) +q=k==null?o:new A.cG(k,t.iL) +p=j==null?o:new A.cG(j,t.QL) +return A.av9(a,o,o,o,d,o,m,o,p,q,r,new A.ahH(e,c),s,n,o,o,o,o,o,o,o,a1)}, +b6R:function b6R(a,b){this.a=a +this.b=b}, +xy:function xy(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.c=a +_.d=b +_.e=c +_.r=d +_.w=e +_.z=f +_.ax=g +_.cx=h +_.cy=i +_.dx=j +_.a=k}, +U6:function U6(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}, +amm:function amm(a){var _=this +_.d=$ +_.a=null +_.b=a +_.c=null}, +ahK:function ahK(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.ax=a +_.ay=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.as=m +_.a=n}, +b6Q:function b6Q(a){this.a=a}, +ahG:function ahG(a,b){this.a=a +this.b=b}, +ahI:function ahI(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +ahH:function ahH(a,b){this.a=a +this.b=b}, +ahJ:function ahJ(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}, +b6N:function b6N(a){this.a=a}, +b6P:function b6P(a){this.a=a}, +b6O:function b6O(){}, +agT:function agT(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}, +b5K:function b5K(a){this.a=a}, +b5L:function b5L(a){this.a=a}, +b5N:function b5N(a){this.a=a}, +b5M:function b5M(){}, +agU:function agU(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}, +b5O:function b5O(a){this.a=a}, +b5P:function b5P(a){this.a=a}, +b5R:function b5R(a){this.a=a}, +b5Q:function b5Q(){}, +ajQ:function ajQ(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}, +b91:function b91(a){this.a=a}, +b92:function b92(a){this.a=a}, +b94:function b94(a){this.a=a}, +b95:function b95(a){this.a=a}, +b93:function b93(){}, +apC:function apC(){}, +bIU(a,b,c){if(a===b)return a +return new A.qB(A.op(a.a,b.a,c))}, +a2N(a,b){return new A.KZ(b,a,null)}, +bs6(a){var s=a.aj(t.g5),r=s==null?null:s.w +return r==null?A.B(a).aN:r}, +qB:function qB(a){this.a=a}, +KZ:function KZ(a,b,c){this.w=a +this.b=b +this.a=c}, +ahL:function ahL(){}, +bsd(a,b){return new A.xE(a,b,null)}, +xE:function xE(a,b,c){this.c=a +this.e=b +this.a=c}, +Sl:function Sl(a,b){var _=this +_.d=a +_.a=_.e=null +_.b=b +_.c=null}, +L6:function L6(a,b,c,d){var _=this +_.f=_.e=null +_.r=!0 +_.w=a +_.a=b +_.b=c +_.c=d +_.d=!1}, +tY:function tY(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}, +bRL(a,b,c){if(c!=null)return c +if(b)return new A.bfw(a) +return null}, +bfw:function bfw(a){this.a=a}, +b7a:function b7a(){}, +L7:function L7(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}, +bRK(a,b,c){if(c!=null)return c +if(b)return new A.bfv(a) +return null}, +bRQ(a,b,c,d){var s,r,q,p,o,n +if(b){if(c!=null){s=c.$0() +r=new A.U(s.c-s.a,s.d-s.b)}else r=a.gq(a) +q=d.a4(0,B.i).ge9() +p=d.a4(0,new A.m(0+r.a,0)).ge9() +o=d.a4(0,new A.m(0,0+r.b)).ge9() +n=d.a4(0,r.E5(0,B.i)).ge9() +return Math.ceil(Math.max(Math.max(q,p),Math.max(o,n)))}return 35}, +bfv:function bfv(a){this.a=a}, +b7b:function b7b(){}, +L8:function L8(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}, +bIZ(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){return new A.CR(d,a6,a8,a9,a7,q,a1,a2,a4,a5,a3,s,a0,p,e,l,b1,b,f,i,m,k,b0,b2,b3,g,!1,r,a,j,c,b4,n,o)}, +jg(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,a0,a1,a2,a3,a4){var s=null +return new A.a30(d,p,r,s,q,s,o,s,s,s,s,m,n,k,!0,B.aK,a1,b,e,g,j,i,a0,a2,a3,f!==!1,!1,l,a,h,c,a4,s,s)}, +u0:function u0(){}, +CS:function CS(){}, +T9:function T9(a,b,c){this.f=a +this.b=b +this.a=c}, +CR:function CR(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){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 +_.a=b4}, +Sk:function Sk(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){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 +_.R8=b6 +_.a=b7}, +vv:function vv(a,b){this.a=a +this.b=b}, +Sj:function Sj(a,b,c,d){var _=this +_.e=_.d=null +_.f=!1 +_.r=a +_.w=$ +_.x=null +_.y=b +_.z=null +_.Q=!1 +_.mX$=c +_.a=null +_.b=d +_.c=null}, +b78:function b78(){}, +b74:function b74(a){this.a=a}, +b77:function b77(){}, +b79:function b79(a,b){this.a=a +this.b=b}, +b73:function b73(a,b){this.a=a +this.b=b}, +b76:function b76(a){this.a=a}, +b75:function b75(a,b){this.a=a +this.b=b}, +a30:function a30(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){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 +_.a=b4}, +W6:function W6(){}, +m0:function m0(){}, +nM:function nM(a,b){this.b=a +this.a=b}, +mc:function mc(a,b,c){this.b=a +this.c=b +this.a=c}, +bIh(a){if(a===-1)return"FloatingLabelAlignment.start" +if(a===0)return"FloatingLabelAlignment.center" +return"FloatingLabelAlignment(x: "+B.f.aF(a,1)+")"}, +bJ_(a,b,c,d,e,f,g,h,i){return new A.xF(c,a,h,i,f,g,!1,e,b,null)}, +tZ(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){return new A.L9(b3,b4,b7,b9,b8,a0,a6,a5,a4,b0,a9,b1,a8,a7,k,o,n,m,s,r,b6,d,b5,c1,c3,c0,c5,c4,c2,c8,c7,d2,d1,c9,d0,g,e,f,q,p,a1,b2,l,a2,a3,h,j,b,!0,c6,a,c)}, +Sm:function Sm(a){var _=this +_.a=null +_.k4$=_.b=0 +_.ok$=a +_.p2$=_.p1$=0 +_.p3$=!1}, +Sn:function Sn(a,b){this.a=a +this.b=b}, +ahV:function ahV(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 +_.a=i}, +QG:function QG(a,b,c,d,e,f,g){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.a=g}, +aev:function aev(a,b,c){var _=this +_.x=_.w=_.r=_.f=_.e=_.d=$ +_.dL$=a +_.b7$=b +_.a=null +_.b=c +_.c=null}, +amB:function amB(a,b,c){this.e=a +this.c=b +this.a=c}, +S3:function S3(a,b,c,d,e,f,g,h,i){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.a=i}, +S4:function S4(a,b,c){var _=this +_.d=$ +_.f=_.e=null +_.ff$=a +_.c3$=b +_.a=null +_.b=c +_.c=null}, +b6F:function b6F(){}, +Ky:function Ky(a,b){this.a=a +this.b=b}, +a1X:function a1X(){}, +iq:function iq(a,b){this.a=a +this.b=b}, +afS:function afS(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}, +baG:function baG(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +Tw:function Tw(a,b,c,d,e,f,g,h,i){var _=this +_.B=a +_.W=b +_.a6=c +_.an=d +_.ao=e +_.aN=f +_.aZ=g +_.bt=null +_.d9$=h +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +baK:function baK(a){this.a=a}, +baJ:function baJ(a,b){this.a=a +this.b=b}, +baI:function baI(a,b){this.a=a +this.b=b}, +baH:function baH(a,b,c){this.a=a +this.b=b +this.c=c}, +afV:function afV(a,b,c,d,e,f,g){var _=this +_.d=a +_.e=b +_.f=c +_.r=d +_.w=e +_.x=f +_.a=g}, +xF:function xF(a,b,c,d,e,f,g,h,i,j){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.a=j}, +So:function So(a,b,c,d){var _=this +_.f=_.e=_.d=$ +_.r=a +_.w=null +_.dL$=b +_.b7$=c +_.a=null +_.b=d +_.c=null}, +b7n:function b7n(){}, +L9:function L9(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){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 +_.bL=c8 +_.co=c9 +_.aK=d0 +_.b6=d1 +_.c_=d2}, +La:function La(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}, +b7c:function b7c(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){var _=this +_.p1=a +_.p3=_.p2=$ +_.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 +_.go=a8 +_.id=a9 +_.k1=b0 +_.k2=b1 +_.k3=b2 +_.k4=b3 +_.ok=b4}, +b7i:function b7i(a){this.a=a}, +b7f:function b7f(a){this.a=a}, +b7d:function b7d(a){this.a=a}, +b7k:function b7k(a){this.a=a}, +b7l:function b7l(a){this.a=a}, +b7m:function b7m(a){this.a=a}, +b7j:function b7j(a){this.a=a}, +b7g:function b7g(a){this.a=a}, +b7h:function b7h(a){this.a=a}, +b7e:function b7e(a){this.a=a}, +ahW:function ahW(){}, +VN:function VN(){}, +W5:function W5(){}, +W7:function W7(){}, +aq2:function aq2(){}, +bI(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2,a3){return new A.qL(j,a1,s,a2,h,c,a3,q,o,r,b,e,m,l,k,n,g,f,!1,a0,p,d,i)}, +baP(a,b){if(a==null)return B.y +a.cS(b,!0) +return a.gq(a)}, +aIB:function aIB(a,b){this.a=a +this.b=b}, +Lw:function Lw(a,b){this.a=a +this.b=b}, +aID:function aID(a,b){this.a=a +this.b=b}, +qL:function qL(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 +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.ch=j +_.CW=k +_.cx=l +_.cy=m +_.db=n +_.dx=o +_.fr=p +_.fy=q +_.id=r +_.k1=s +_.k2=a0 +_.k3=a1 +_.k4=a2 +_.a=a3}, +aIE:function aIE(a){this.a=a}, +ahS:function ahS(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +o4:function o4(a,b){this.a=a +this.b=b}, +aiF:function aiF(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){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 +_.ch=n +_.a=o}, +TF:function TF(a,b,c,d,e,f,g,h,i,j,k,l){var _=this +_.B=a +_.W=b +_.a6=c +_.an=d +_.ao=e +_.aN=f +_.aZ=g +_.bt=h +_.Y=i +_.b3=j +_.d9$=k +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +baR:function baR(a,b){this.a=a +this.b=b}, +baQ:function baQ(a,b,c){this.a=a +this.b=b +this.c=c}, +b7M:function b7M(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){var _=this +_.cy=a +_.dy=_.dx=_.db=$ +_.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}, +aq7:function aq7(){}, +bkQ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s){return new A.Dc(b,l,m,j,e,o,r,n,f,a,p,k,d,h,g,c,i,s,q)}, +bJG(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.fo(a0.b,a1.b,a2) +if(s)p=a0.c +else p=a1.c +o=A.W(a0.d,a1.d,a2) +n=A.W(a0.e,a1.e,a2) +m=A.W(a0.f,a1.f,a2) +l=A.c7(a0.r,a1.r,a2) +k=A.c7(a0.w,a1.w,a2) +j=A.c7(a0.x,a1.x,a2) +i=A.fJ(a0.y,a1.y,a2) +h=A.W(a0.z,a1.z,a2) +g=A.W(a0.Q,a1.Q,a2) +f=A.ag(a0.as,a1.as,a2) +e=A.ag(a0.at,a1.at,a2) +d=A.ag(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.bkQ(i,r,c,f,n,j,d,e,b,o,g,q,p,k,m,h,s,l,a)}, +bsy(a,b,c){return new A.y2(b,a,c)}, +bsz(a){var s=a.aj(t.NJ),r=s==null?null:s.gEq(s) +return r==null?A.B(a).aZ:r}, +bkR(a,b,c,d,e,f){var s=null +return new A.e4(new A.aIC(s,s,s,d,s,c,e,f,s,s,b,s,s,s,s,s,s,s,s,s,a),s)}, +Dc:function Dc(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}, +y2:function y2(a,b,c){this.w=a +this.b=b +this.a=c}, +aIC:function aIC(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}, +aiG:function aiG(){}, +Pr:function Pr(a,b){this.c=a +this.a=b}, +aZB:function aZB(){}, +UL:function UL(a,b){var _=this +_.e=_.d=null +_.f=a +_.a=null +_.b=b +_.c=null}, +bdx:function bdx(a){this.a=a}, +bdw:function bdw(a){this.a=a}, +bdy:function bdy(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a3J:function a3J(a,b){this.c=a +this.a=b}, +h5(a,b,c,d,e,f,g,h,i,j,k,l,m){return new A.LP(d,m,g,f,i,k,l,j,!0,e,a,c,h)}, +bIY(a,b){var s,r,q,p,o,n,m,l,k,j,i=t.TT,h=A.a([a],i),g=A.a([b],i) +for(s=b,r=a;r!==s;){q=r.c +p=s.c +if(q>=p){o=r.gbP(r) +if(!(o instanceof A.J)||!o.xQ(r))return null +h.push(o) +r=o}if(q<=p){n=s.gbP(s) +if(!(n instanceof A.J)||!n.xQ(s))return null +g.push(n) +s=n}}m=new A.bQ(new Float64Array(16)) +m.fQ() +l=new A.bQ(new Float64Array(16)) +l.fQ() +for(k=g.length-1;k>0;k=j){j=k-1 +g[k].eL(g[j],m)}for(k=h.length-1;k>0;k=j){j=k-1 +h[k].eL(h[j],l)}if(l.j6(l)!==0){l.eN(0,m) +i=l}else i=null +return i}, +uf:function uf(a,b){this.a=a +this.b=b}, +LP:function LP(a,b,c,d,e,f,g,h,i,j,k,l,m){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 +_.a=m}, +aj5:function aj5(a,b,c,d){var _=this +_.d=a +_.dL$=b +_.b7$=c +_.a=null +_.b=d +_.c=null}, +b89:function b89(a){this.a=a}, +TA:function TA(a,b,c,d,e){var _=this +_.D=a +_.ac=b +_.az=c +_.cr=null +_.k3$=d +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +ahU:function ahU(a,b,c,d,e){var _=this +_.e=a +_.f=b +_.r=c +_.c=d +_.a=e}, +oK:function oK(){}, +uW:function uW(a,b){this.a=a +this.b=b}, +SE:function SE(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}, +aj1:function aj1(a,b,c){var _=this +_.db=_.cy=_.cx=_.CW=null +_.e=_.d=$ +_.ff$=a +_.c3$=b +_.a=null +_.b=c +_.c=null}, +b7U:function b7U(){}, +b7V:function b7V(){}, +b7W:function b7W(){}, +b7X:function b7X(){}, +Uc:function Uc(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +amC:function amC(a,b,c){this.b=a +this.c=b +this.a=c}, +apL:function apL(){}, +aj2:function aj2(){}, +a0I:function a0I(){}, +aj6(a){return new A.GR(a,J.lS(a.$1(B.eL)))}, +bmq(a){return new A.SF(a,B.o,1,B.I,-1)}, +SG(a){var s=null +return new A.aj7(a,!0,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +ce(a,b,c){if(c.h("ca<0>").b(a))return a.L(b) +return a}, +bK(a,b,c,d,e){if(a==null&&b==null)return null +return new A.Sw(a,b,c,d,e.h("Sw<0>"))}, +bl0(a){var s=A.aW(t.ui) +if(a!=null)s.I(0,a) +return new A.a5P(s,$.aH())}, +dy:function dy(a,b){this.a=a +this.b=b}, +a5M:function a5M(){}, +GR:function GR(a,b){this.c=a +this.a=b}, +a5N:function a5N(){}, +RI:function RI(a,b){this.a=a +this.c=b}, +a5L:function a5L(){}, +SF:function SF(a,b,c,d,e){var _=this +_.x=a +_.a=b +_.b=c +_.c=d +_.d=e}, +a5O:function a5O(){}, +aj7:function aj7(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 +_.cp=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}, +ca:function ca(){}, +Sw:function Sw(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.$ti=e}, +bt:function bt(a,b){this.a=a +this.$ti=b}, +cG:function cG(a,b){this.a=a +this.$ti=b}, +a5P:function a5P(a,b){var _=this +_.a=a +_.k4$=0 +_.ok$=b +_.p2$=_.p1$=0 +_.p3$=!1}, +M0:function M0(){}, +aK0:function aK0(a,b,c){this.a=a +this.b=b +this.c=c}, +aJZ:function aJZ(){}, +aK_:function aK_(){}, +bK8(a,b,c){if(a===b)return a +return new A.a5W(A.bl3(a.a,b.a,c))}, +a5W:function a5W(a){this.a=a}, +bK9(a,b,c){if(a===b)return a +return new A.M6(A.op(a.a,b.a,c))}, +M6:function M6(a){this.a=a}, +ajb:function ajb(){}, +bl3(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.MH +p=A.bK(r,p,c,A.ds(),o) +r=s?d:a.b +r=A.bK(r,q?d:b.b,c,A.ds(),o) +n=s?d:a.c +o=A.bK(n,q?d:b.c,c,A.ds(),o) +n=s?d:a.d +m=q?d:b.d +m=A.bK(n,m,c,A.X2(),t.PM) +n=s?d:a.e +l=q?d:b.e +l=A.bK(n,l,c,A.bnm(),t.pc) +n=s?d:a.f +k=q?d:b.f +j=t.tW +k=A.bK(n,k,c,A.X1(),j) +n=s?d:a.r +n=A.bK(n,q?d:b.r,c,A.X1(),j) +i=s?d:a.w +j=A.bK(i,q?d:b.w,c,A.X1(),j) +i=s?d:a.x +h=q?d:b.x +g=s?d:a.y +f=q?d:b.y +f=A.bK(g,f,c,A.bnc(),t.KX) +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.a5X(p,r,o,m,l,k,n,j,new A.air(i,h,c),f,e,g,A.AX(s,q?d:b.as,c))}, +a5X:function a5X(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}, +air:function air(a,b,c){this.a=a +this.b=b +this.c=c}, +ajd:function ajd(){}, +bKa(a,b,c){if(a===b)return a +return new A.Dt(A.bl3(a.a,b.a,c))}, +Dt:function Dt(a){this.a=a}, +aje:function aje(){}, +bl8(a,b,c,d,e,f){return new A.a6i(a,c,f,d,b,e,null)}, +bms(a){var s=null +return new A.b8C(a,80,s,3,s,s,s,s,s,s,B.ana,s)}, +a6g:function a6g(a,b,c,d){var _=this +_.d=a +_.e=b +_.f=c +_.a=d}, +aLR:function aLR(a,b){this.a=a +this.b=b}, +aLS:function aLS(a,b,c){this.a=a +this.b=b +this.c=c}, +aLT:function aLT(a,b){this.a=a +this.b=b}, +yn:function yn(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +aLV:function aLV(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aLU:function aLU(a,b,c){this.a=a +this.b=b +this.c=c}, +aLW:function aLW(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +SW:function SW(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f}, +ajx:function ajx(a,b){var _=this +_.d=a +_.a=null +_.b=b +_.c=null}, +Sd:function Sd(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){var _=this +_.p4=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.w=g +_.x=h +_.y=i +_.z=j +_.Q=k +_.as=l +_.at=m +_.ax=n +_.ay=o +_.ch=p +_.CW=q +_.cx=r +_.cy=s +_.db=a0 +_.dx=a1 +_.dy=a2 +_.fr=a3 +_.fx=a4 +_.fy=a5 +_.go=a6 +_.id=a7 +_.k1=a8 +_.k2=a9 +_.k3=b0 +_.k4=b1 +_.ok=b2 +_.p1=b3 +_.p2=b4 +_.a=b5}, +b70:function b70(a,b){this.a=a +this.b=b}, +An:function An(a,b,c,d,e,f,g,h,i,j){var _=this +_.f=a +_.w=b +_.x=c +_.y=d +_.z=e +_.Q=f +_.as=g +_.at=h +_.b=i +_.a=j}, +a6i:function a6i(a,b,c,d,e,f,g){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.a=g}, +aLY:function aLY(a){this.a=a}, +aLZ:function aLZ(a){this.a=a}, +aLX:function aLX(a){this.a=a}, +ajs:function ajs(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +b8F:function b8F(a){this.a=a}, +ag3:function ag3(a,b){this.c=a +this.a=b}, +b4C:function b4C(a){this.a=a}, +ajt:function ajt(a,b){this.c=a +this.a=b}, +b8G:function b8G(a){this.a=a}, +aju:function aju(a,b,c){this.c=a +this.d=b +this.a=c}, +b8L:function b8L(a,b){var _=this +_.d=a +_.a=b +_.c=_.b=null}, +b8N:function b8N(){}, +b8M:function b8M(){}, +Hr:function Hr(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +vL:function vL(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +aml:function aml(a,b,c){var _=this +_.d=$ +_.ff$=a +_.c3$=b +_.a=null +_.b=c +_.c=null}, +Rh:function Rh(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +Ri:function Ri(a){var _=this +_.d=$ +_.a=_.e=null +_.b=a +_.c=null}, +b4c:function b4c(a,b){this.a=a +this.b=b}, +b4d:function b4d(a){this.a=a}, +b4e:function b4e(a,b){this.a=a +this.b=b}, +b8C:function b8C(a,b,c,d,e,f,g,h,i,j,k,l){var _=this +_.Q=a +_.at=_.as=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l}, +b8D:function b8D(a){this.a=a}, +b8E:function b8E(a){this.a=a}, +Wp:function Wp(){}, +bKm(a,b,c){var s,r,q,p,o,n,m,l,k,j +if(a===b)return a +s=A.ag(a.a,b.a,c) +r=A.W(a.b,b.b,c) +q=A.ag(a.c,b.c,c) +p=A.W(a.d,b.d,c) +o=A.W(a.e,b.e,c) +n=A.W(a.f,b.f,c) +m=A.fo(a.r,b.r,c) +l=A.bK(a.w,b.w,c,A.WZ(),t.p8) +k=A.bK(a.x,b.x,c,A.byQ(),t.lF) +if(c<0.5)j=a.y +else j=b.y +return new A.ym(s,r,q,p,o,n,m,l,k,j,A.bK(a.z,b.z,c,A.ds(),t.MH))}, +bt_(a,b){return new A.Ml(b,a,null)}, +bl7(a){var s=a.aj(t.XD),r=s==null?null:s.w +return r==null?A.B(a).bd:r}, +ym:function ym(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}, +Ml:function Ml(a,b,c){this.w=a +this.b=b +this.a=c}, +ajv:function ajv(){}, +bKn(a,b,c){var s,r,q,p,o,n,m,l,k +if(a===b)return a +s=A.ag(a.a,b.a,c) +r=A.W(a.b,b.b,c) +q=A.ag(a.c,b.c,c) +p=A.W(a.d,b.d,c) +o=A.W(a.e,b.e,c) +n=A.W(a.f,b.f,c) +m=A.fo(a.r,b.r,c) +l=a.w +l=A.aVc(l,l,c) +k=A.bK(a.x,b.x,c,A.WZ(),t.p8) +return new A.Mm(s,r,q,p,o,n,m,l,k,A.bK(a.y,b.y,c,A.byQ(),t.lF))}, +Mm:function Mm(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}, +ajy:function ajy(){}, +bw2(a){var s=null +return new A.b8O(A.B(a),A.B(a).ax,s,0,s,s,s,s,-1,B.ow,!1,s,s,72,256)}, +Mn:function Mn(a,b,c,d,e,f,g,h,i){var _=this +_.d=a +_.e=b +_.r=c +_.w=d +_.x=e +_.y=f +_.Q=g +_.cx=h +_.a=i}, +SX:function SX(a,b,c){var _=this +_.r=_.f=_.e=_.d=$ +_.dL$=a +_.b7$=b +_.a=null +_.b=c +_.c=null}, +b8T:function b8T(a,b){this.a=a +this.b=b}, +b8Q:function b8Q(){}, +b8R:function b8R(a){this.a=a}, +b8S:function b8S(){}, +akO:function akO(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s){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 +_.a=s}, +Sc:function Sc(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){var _=this +_.p4=a +_.R8=b +_.RG=c +_.rx=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 +_.dy=a5 +_.fr=a6 +_.fx=a7 +_.fy=a8 +_.go=a9 +_.id=b0 +_.k1=b1 +_.k2=b2 +_.k3=b3 +_.k4=b4 +_.ok=b5 +_.p1=b6 +_.p2=b7 +_.a=b8}, +b7_:function b7_(a,b){this.a=a +this.b=b}, +FZ:function FZ(a,b,c,d,e,f,g){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.a=g}, +a6j:function a6j(a,b){this.a=a +this.b=b}, +Dy:function Dy(a,b,c){this.a=a +this.b=b +this.e=c}, +agI:function agI(a,b,c){this.f=a +this.b=b +this.a=c}, +b8O:function b8O(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.at=a +_.ax=b +_.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}, +b8P:function b8P(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.at=a +_.ay=_.ax=$ +_.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}, +Wc:function Wc(){}, +bKp(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h +if(a===b)return a +s=A.W(a.a,b.a,c) +r=A.ag(a.b,b.b,c) +q=A.c7(a.c,b.c,c) +p=A.c7(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.qC(o,b.e,c) +n=a.f +if(n==null)m=b.f==null +else m=!1 +if(m)n=null +else n=A.qC(n,b.f,c) +m=A.ag(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.W(a.y,b.y,c) +i=A.fo(a.z,b.z,c) +h=A.ag(a.Q,b.Q,c) +return new A.Dz(s,r,q,p,o,n,m,k,l,j,i,h,A.ag(a.as,b.as,c))}, +Dz:function Dz(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}, +ajz:function ajz(){}, +bSH(a){var s +A.B(a) +s=A.d9(a,B.bz) +s=s==null?null:s.gdU() +if(s==null)s=B.aw +return A.IO(new A.aK(24,0,24,0),new A.aK(12,0,12,0),new A.aK(6,0,6,0),s.a)}, +a6B:function a6B(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}, +ajO:function ajO(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 +_.fr=$ +_.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}, +b8Y:function b8Y(a){this.a=a}, +b9_:function b9_(a){this.a=a}, +b90:function b90(a){this.a=a}, +b8Z:function b8Z(){}, +bKy(a,b,c){if(a===b)return a +return new A.MA(A.op(a.a,b.a,c))}, +MA:function MA(a){this.a=a}, +ajP:function ajP(){}, +M_:function M_(){}, +nf:function nf(a,b,c,d,e,f){var _=this +_.r=a +_.c=b +_.d=c +_.a=d +_.b=e +_.$ti=f}, +T5:function T5(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s){var _=this +_.cp=a +_.ct=b +_.B=c +_.fr=d +_.fx=e +_.fy=!1 +_.id=_.go=null +_.k1=f +_.k2=g +_.k3=h +_.k4=i +_.ok=j +_.p1=$ +_.p2=null +_.p3=$ +_.hB$=k +_.mY$=l +_.y=m +_.z=null +_.Q=!1 +_.at=_.as=null +_.ax=n +_.ay=!0 +_.CW=_.ch=null +_.e=o +_.a=null +_.b=p +_.c=q +_.d=r +_.$ti=s}, +Wg:function Wg(){}, +by0(a,b,c){var s,r +a.fQ() +if(b===1)return +a.iT(0,b,b) +s=c.a +r=c.b +a.bi(0,-((s*b-s)/2),-((r*b-r)/2))}, +bwU(a,b,c,d){var s=new A.Vq(c,a,d,b,new A.bQ(new Float64Array(16)),A.ay(t.o0),A.ay(t.bq),$.aH()),r=s.geO() +a.P(0,r) +a.f8(s.gDi()) +d.a.P(0,r) +b.P(0,r) +return s}, +bwV(a,b,c,d){var s=new A.Vr(c,d,b,a,new A.bQ(new Float64Array(16)),A.ay(t.o0),A.ay(t.bq),$.aH()),r=s.geO() +d.a.P(0,r) +b.P(0,r) +a.f8(s.gDi()) +return s}, +apb:function apb(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f}, +bev:function bev(a){this.a=a}, +bew:function bew(a){this.a=a}, +bex:function bex(a){this.a=a}, +bey:function bey(a){this.a=a}, +vQ:function vQ(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +ap9:function ap9(a,b,c,d){var _=this +_.d=$ +_.vk$=a +_.tB$=b +_.vl$=c +_.a=null +_.b=d +_.c=null}, +vR:function vR(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +apa:function apa(a,b,c,d){var _=this +_.d=$ +_.vk$=a +_.tB$=b +_.vl$=c +_.a=null +_.b=d +_.c=null}, +qR:function qR(){}, +adA:function adA(){}, +a0p:function a0p(){}, +a6G:function a6G(){}, +aMN:function aMN(a){this.a=a}, +HH:function HH(){}, +Vq:function Vq(a,b,c,d,e,f,g,h){var _=this +_.r=a +_.w=b +_.x=c +_.y=d +_.z=e +_.Q=f +_.as=g +_.k4$=0 +_.ok$=h +_.p2$=_.p1$=0 +_.p3$=!1}, +bet:function bet(a,b){this.a=a +this.b=b}, +Vr:function Vr(a,b,c,d,e,f,g,h){var _=this +_.r=a +_.w=b +_.x=c +_.y=d +_.z=e +_.Q=f +_.as=g +_.k4$=0 +_.ok$=h +_.p2$=_.p1$=0 +_.p3$=!1}, +beu:function beu(a,b){this.a=a +this.b=b}, +ajV:function ajV(){}, +Wx:function Wx(){}, +Wy:function Wy(){}, +nr(a,b,c){return new A.uz(b,a,null,c.h("uz<0>"))}, +bY1(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 +switch(A.B(d).r.a){case 2:case 4:s=h +break +case 0:case 1:case 3:case 5:r=A.A(d,B.aC,t.D) +r.toString +s=r.gba() +break +default:s=h}q=A.du(d,!1) +r=A.A(d,B.aC,t.D) +r.toString +r=r.gaR() +p=q.c +p.toString +p=A.L5(d,p) +o=A.aX(J.b3(g),h,!1,t.tW) +n=A.a([],t.Zt) +m=$.ac +l=A.mf(B.bV) +k=A.a([],t.wi) +j=$.aH() +i=$.ac +return q.Bj(new A.Te(a0,g,o,f,e,a3,a1,s,a2,b,p,c,a,r,h,B.pJ,n,A.aW(t.kj),new A.bq(h,a4.h("bq>")),new A.bq(h,t.C),new A.p1(),h,0,new A.aD(new A.a7(m,a4.h("a7<0?>")),a4.h("aD<0?>")),l,k,B.fU,new A.bF(h,j,t.XR),new A.aD(new A.a7(i,a4.h("a7<0?>")),a4.h("aD<0?>")),a4.h("Te<0>")),a4)}, +aNH(a,b,c,d){return new A.DS(b,a,c,null,d.h("DS<0>"))}, +bw9(a){var s=null +return new A.b9y(a,s,s,3,s,s,s,s,s,s,s,s,s)}, +N1:function N1(){}, +ajc:function ajc(a,b,c){this.e=a +this.c=b +this.a=c}, +alv:function alv(a,b,c){var _=this +_.D=a +_.k3$=b +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +uz:function uz(a,b,c,d){var _=this +_.e=a +_.Q=b +_.a=c +_.$ti=d}, +DU:function DU(a,b){var _=this +_.a=null +_.b=a +_.c=null +_.$ti=b}, +Td:function Td(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e +_.$ti=f}, +b9C:function b9C(a,b){this.a=a +this.b=b}, +b9D:function b9D(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +b9A:function b9A(a,b,c,d,e,f){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f}, +Te:function Te(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 +_.dY=a +_.cq=b +_.dM=c +_.dj=d +_.D=e +_.ac=f +_.az=g +_.cr=h +_.eB=i +_.ek=j +_.jh=k +_.hX=l +_.hf=m +_.hY=n +_.fr=o +_.fx=p +_.fy=!1 +_.id=_.go=null +_.k1=q +_.k2=r +_.k3=s +_.k4=a0 +_.ok=a1 +_.p1=$ +_.p2=null +_.p3=$ +_.hB$=a2 +_.mY$=a3 +_.y=a4 +_.z=null +_.Q=!1 +_.at=_.as=null +_.ax=a5 +_.ay=!0 +_.CW=_.ch=null +_.e=a6 +_.a=null +_.b=a7 +_.c=a8 +_.d=a9 +_.$ti=b0}, +b9B:function b9B(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +DS:function DS(a,b,c,d,e){var _=this +_.c=a +_.ax=b +_.CW=c +_.a=d +_.$ti=e}, +DT:function DT(a,b){var _=this +_.a=null +_.b=a +_.c=null +_.$ti=b}, +aNI:function aNI(a){this.a=a}, +agA:function agA(a,b){this.a=a +this.b=b}, +b9y:function b9y(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.as=a +_.ay=_.ax=_.at=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j +_.y=k +_.z=l +_.Q=m}, +b9z:function b9z(a){this.a=a}, +bL0(a,b,c){var s,r,q,p,o,n,m,l,k,j,i +if(a===b)return a +s=A.W(a.a,b.a,c) +r=A.fo(a.b,b.b,c) +q=A.ag(a.c,b.c,c) +p=A.W(a.d,b.d,c) +o=A.W(a.e,b.e,c) +n=A.c7(a.f,b.f,c) +m=A.bK(a.r,b.r,c,A.WZ(),t.p8) +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 +i=A.W(a.z,b.z,c) +return new A.DV(s,r,q,p,o,n,m,k,j,l,i,A.ag(a.Q,b.Q,c))}, +a7j(a){var s +a.aj(t.xF) +s=A.B(a) +return s.dG}, +DV:function DV(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}, +akB:function akB(){}, +bOH(a,b,c,d,e,f,g,h,i,j){var s=i!=null,r=s?-1.5707963267948966:-1.5707963267948966+h*3/2*3.141592653589793+d*3.141592653589793*2+c*0.5*3.141592653589793 +return new A.G5(a,j,i,b,h,c,d,g,e,r,s?A.V(i,0,1)*6.282185307179586:Math.max(b*3/2*3.141592653589793-h*3/2*3.141592653589793,0.001),f,null)}, +bqm(a,b,c,d,e,f,g,h,i,j){return new A.mZ(h,f,g,i,a,b,j,d,e,c)}, +b1J:function b1J(a,b){this.a=a +this.b=b}, +a7q:function a7q(){}, +aiA:function aiA(a,b,c,d,e,f,g){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.a=g}, +b7I:function b7I(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Lt:function Lt(a,b,c,d,e,f,g){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.a=g}, +aiB:function aiB(a,b,c){var _=this +_.d=$ +_.ff$=a +_.c3$=b +_.a=null +_.b=c +_.c=null}, +b7J:function b7J(a,b){this.a=a +this.b=b}, +G5:function G5(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.w=g +_.x=h +_.y=i +_.z=j +_.Q=k +_.as=l +_.a=m}, +mZ:function mZ(a,b,c,d,e,f,g,h,i,j){var _=this +_.z=a +_.Q=b +_.as=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.a=j}, +QW:function QW(a,b,c){var _=this +_.d=$ +_.ff$=a +_.c3$=b +_.a=null +_.b=c +_.c=null}, +b3H:function b3H(a){this.a=a}, +alb:function alb(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.ax=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 +_.a=n}, +Np:function Np(a,b,c,d,e,f,g,h,i,j){var _=this +_.z=a +_.Q=b +_.as=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.a=j}, +alc:function alc(a,b,c){var _=this +_.z=_.y=$ +_.Q=null +_.d=$ +_.ff$=a +_.c3$=b +_.a=null +_.b=c +_.c=null}, +bak:function bak(a){this.a=a}, +b3G:function b3G(a,b,c,d,e,f){var _=this +_.f=a +_.r=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f}, +b7H:function b7H(a,b,c,d,e,f){var _=this +_.f=a +_.r=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f}, +VS:function VS(){}, +W9:function W9(){}, +bLc(a,b,c){var s,r,q,p +if(a===b)return a +s=A.W(a.a,b.a,c) +r=A.W(a.b,b.b,c) +q=A.ag(a.c,b.c,c) +p=A.W(a.d,b.d,c) +return new A.E1(s,r,q,p,A.W(a.e,b.e,c))}, +aNX(a){var s +a.aj(t.C0) +s=A.B(a) +return s.fo}, +E1:function E1(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +akE:function akE(){}, +b9Y:function b9Y(a,b){this.a=a +this.b=b}, +E5:function E5(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.as=i +_.at=j +_.ax=k +_.ch=l +_.CW=m +_.cx=n +_.a=o +_.$ti=p}, +H4:function H4(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this +_.d=a +_.ks$=b +_.mZ$=c +_.p0$=d +_.vh$=e +_.vi$=f +_.ty$=g +_.vj$=h +_.tz$=i +_.F_$=j +_.qP$=k +_.pV$=l +_.pW$=m +_.dL$=n +_.b7$=o +_.a=null +_.b=p +_.c=null +_.$ti=q}, +b9W:function b9W(a){this.a=a}, +b9X:function b9X(a,b){this.a=a +this.b=b}, +akL:function akL(a){var _=this +_.at=_.as=_.Q=_.z=_.y=_.x=_.w=_.r=_.f=_.e=_.d=_.c=_.b=_.a=null +_.k4$=0 +_.ok$=a +_.p2$=_.p1$=0 +_.p3$=!1}, +b9T:function b9T(a,b,c,d,e,f,g){var _=this +_.r=a +_.x=_.w=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g}, +b9U:function b9U(a){this.a=a}, +b9V:function b9V(a){this.a=a}, +HJ:function HJ(){}, +HK:function HK(){}, +bln(a,b,c,d,e,f,g){return new A.Nf(f,b,c,a,e,d,null,g.h("Nf<0>"))}, +b9Z:function b9Z(a,b){this.a=a +this.b=b}, +Nf:function Nf(a,b,c,d,e,f,g,h){var _=this +_.c=a +_.d=b +_.e=c +_.w=d +_.at=e +_.ax=f +_.a=g +_.$ti=h}, +aON:function aON(a){this.a=a}, +bLi(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.MH +p=A.bK(a.b,b.b,c,A.ds(),q) +if(s)o=a.e +else o=b.e +q=A.bK(a.c,b.c,c,A.ds(),q) +n=A.ag(a.d,b.d,c) +if(s)s=a.f +else s=b.f +return new A.E6(r,p,q,n,o,s)}, +bty(a){var s +a.aj(t.FL) +s=A.B(a) +return s.de}, +E6:function E6(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +akN:function akN(){}, +r2(a,b){return new A.yX(a,b,null)}, +vI:function vI(a,b){this.a=a +this.b=b}, +aQr:function aQr(a,b){this.a=a +this.b=b}, +b71:function b71(a,b){this.a=a +this.b=b}, +yX:function yX(a,b,c){this.c=a +this.f=b +this.a=c}, +No:function No(a,b,c){var _=this +_.x=_.w=_.r=_.f=_.e=_.d=$ +_.as=_.Q=_.y=null +_.at=$ +_.dL$=a +_.b7$=b +_.a=null +_.b=c +_.c=null}, +aQm:function aQm(a){this.a=a}, +aQk:function aQk(a,b){this.a=a +this.b=b}, +aQl:function aQl(a){this.a=a}, +aQp:function aQp(a,b){this.a=a +this.b=b}, +aQn:function aQn(a){this.a=a}, +aQo:function aQo(a,b){this.a=a +this.b=b}, +aQq:function aQq(a,b){this.a=a +this.b=b}, +Tq:function Tq(){}, +e9(a,b,c,d,e,f,g,h,i,j,k){return new A.nA(h,i,a,c,j,k,f,b,d,e,g,null)}, +pa(a){var s=a.F4(t.Np) +if(s!=null)return s +throw A.c(A.Cr(A.a([A.tC("Scaffold.of() called with a context that does not contain a Scaffold."),A.c0("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.a1x('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'),A.a1x("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.aIa("The context used was")],t.F)))}, +kY:function kY(a,b){this.a=a +this.b=b}, +NY:function NY(a,b){this.c=a +this.a=b}, +a8P:function a8P(a,b,c,d,e,f){var _=this +_.d=a +_.e=b +_.r=c +_.y=_.x=null +_.dL$=d +_.b7$=e +_.a=null +_.b=f +_.c=null}, +aSm:function aSm(a,b,c){this.a=a +this.b=b +this.c=c}, +TT:function TT(a,b,c){this.f=a +this.b=b +this.a=c}, +aSn:function aSn(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 +_.y=i}, +bdY:function bdY(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a8O:function a8O(a,b){this.a=a +this.b=b}, +ama:function ama(a,b,c){var _=this +_.a=a +_.b=null +_.c=b +_.k4$=0 +_.ok$=c +_.p2$=_.p1$=0 +_.p3$=!1}, +G4:function G4(a,b,c,d,e,f,g){var _=this +_.e=a +_.f=b +_.r=c +_.a=d +_.b=e +_.c=f +_.d=g}, +aeu:function aeu(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +b2z:function b2z(a){this.a=a}, +bbA:function bbA(a,b,c,d,e,f,g,h,i,j,k,l,m,n){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 +_.a=n +_.c=_.b=null}, +RO:function RO(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f}, +RP:function RP(a,b,c){var _=this +_.x=_.w=_.r=_.f=_.e=_.d=$ +_.y=null +_.dL$=a +_.b7$=b +_.a=null +_.b=c +_.c=null}, +b5T:function b5T(a,b){this.a=a +this.b=b}, +nA:function nA(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 +_.at=g +_.ch=h +_.CW=i +_.cx=j +_.fx=k +_.a=l}, +Ev:function Ev(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 +_.cX$=i +_.je$=j +_.xj$=k +_.hd$=l +_.jf$=m +_.dL$=n +_.b7$=o +_.a=null +_.b=p +_.c=null}, +aSw:function aSw(a,b){this.a=a +this.b=b}, +aSE:function aSE(a,b){this.a=a +this.b=b}, +aSC:function aSC(a,b){this.a=a +this.b=b}, +aSz:function aSz(a){this.a=a}, +aSA:function aSA(a,b){this.a=a +this.b=b}, +aSy:function aSy(a,b){this.a=a +this.b=b}, +aSx:function aSx(a){this.a=a}, +aSD:function aSD(){}, +aSv:function aSv(a,b){this.a=a +this.b=b}, +aSs:function aSs(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}, +aSt:function aSt(a){this.a=a}, +aSu:function aSu(a,b,c){this.a=a +this.b=b +this.c=c}, +aSp:function aSp(a,b,c){this.a=a +this.b=b +this.c=c}, +aSq:function aSq(a,b){this.a=a +this.b=b}, +aSo:function aSo(a,b){this.a=a +this.b=b}, +aSr:function aSr(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aSB:function aSB(a,b,c){this.a=a +this.b=b +this.c=c}, +aSG:function aSG(a,b,c){this.a=a +this.b=b +this.c=c}, +aSF:function aSF(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +ag8:function ag8(a,b){this.e=a +this.a=b +this.b=null}, +Eu:function Eu(){}, +b2H:function b2H(a,b){this.a=a +this.b=b}, +vM:function vM(a,b,c,d,e,f,g,h,i,j,k,l,m){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 +_.a=m}, +Hn:function Hn(a,b){var _=this +_.d=a +_.a=null +_.b=b +_.c=null}, +bcv:function bcv(a){this.a=a}, +MY:function MY(a,b,c,d,e){var _=this +_.e=a +_.a=b +_.b=c +_.c=d +_.$ti=e}, +amb:function amb(a,b,c){this.f=a +this.b=b +this.a=c}, +bbB:function bbB(){}, +TU:function TU(){}, +TV:function TV(){}, +TW:function TW(){}, +W3:function W3(){}, +btW(a,b,c){return new A.a8Z(a,b,c,null)}, +a8Z:function a8Z(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +GQ:function GQ(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.fy=a +_.c=b +_.d=c +_.e=d +_.r=e +_.w=f +_.Q=g +_.ay=h +_.ch=i +_.CW=j +_.cx=k +_.cy=l +_.db=m +_.a=n}, +aj4:function aj4(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=$ +_.dL$=b +_.b7$=c +_.a=null +_.b=d +_.c=null}, +b82:function b82(a){this.a=a}, +b8_:function b8_(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +b81:function b81(a,b,c){this.a=a +this.b=b +this.c=c}, +b80:function b80(a,b,c){this.a=a +this.b=b +this.c=c}, +b7Z:function b7Z(a){this.a=a}, +b88:function b88(a){this.a=a}, +b87:function b87(a){this.a=a}, +b86:function b86(a){this.a=a}, +b84:function b84(a){this.a=a}, +b85:function b85(a){this.a=a}, +b83:function b83(a){this.a=a}, +bM1(a,b,c){var s,r,q,p,o,n,m,l,k,j,i +if(a===b&&!0)return a +s=t.u +r=A.bK(a.a,b.a,c,A.bzz(),s) +q=A.bK(a.b,b.b,c,A.X2(),t.PM) +s=A.bK(a.c,b.c,c,A.bzz(),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 +n=A.Ng(a.f,b.f,c) +m=t.MH +l=A.bK(a.r,b.r,c,A.ds(),m) +k=A.bK(a.w,b.w,c,A.ds(),m) +m=A.bK(a.x,b.x,c,A.ds(),m) +j=A.ag(a.y,b.y,c) +i=A.ag(a.z,b.z,c) +return new A.Ob(r,q,s,p,o,n,l,k,m,j,i,A.ag(a.Q,b.Q,c))}, +bSg(a,b,c){return c<0.5?a:b}, +Ob:function Ob(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}, +amg:function amg(){}, +bM3(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h +if(a===b)return a +s=A.bK(a.a,b.a,c,A.X2(),t.PM) +r=t.MH +q=A.bK(a.b,b.b,c,A.ds(),r) +p=A.bK(a.c,b.c,c,A.ds(),r) +o=A.bK(a.d,b.d,c,A.ds(),r) +r=A.bK(a.e,b.e,c,A.ds(),r) +n=A.bM2(a.f,b.f,c) +m=A.bK(a.r,b.r,c,A.bnc(),t.KX) +l=A.bK(a.w,b.w,c,A.bnm(),t.pc) +k=t.p8 +j=A.bK(a.x,b.x,c,A.WZ(),k) +k=A.bK(a.y,b.y,c,A.WZ(),k) +i=A.wp(a.z,b.z,c) +if(c<0.5)h=a.Q +else h=b.Q +return new A.Oc(s,q,p,o,r,n,m,l,j,k,i,h)}, +bM2(a,b,c){if(a==b)return a +return new A.aiq(a,b,c)}, +Oc:function Oc(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}, +aiq:function aiq(a,b,c){this.a=a +this.b=b +this.c=c}, +amh:function amh(){}, +bM5(a,b,c){var s,r,q,p,o,n,m,l +if(a===b)return a +s=A.W(a.a,b.a,c) +r=A.ag(a.b,b.b,c) +q=A.W(a.c,b.c,c) +p=A.bM4(a.d,b.d,c) +o=A.bta(a.e,b.e,c) +n=a.f +m=b.f +l=A.c7(n,m,c) +n=A.c7(n,m,c) +m=A.wp(a.w,b.w,c) +return new A.Od(s,r,q,p,o,l,n,m,A.W(a.x,b.x,c))}, +bM4(a,b,c){if(a==null||b==null)return null +if(a===b)return a +return A.bp(a,b,c)}, +Od:function Od(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}, +ami:function ami(){}, +bM7(a,b,c){var s,r +if(a===b&&!0)return a +s=A.op(a.a,b.a,c) +if(c<0.5)r=a.b +else r=b.b +return new A.Oe(s,r)}, +Oe:function Oe(a,b){this.a=a +this.b=b}, +amj:function amj(){}, +bww(a){var s=a.Gx(!1) +return new A.ao3(a,new A.eQ(s,B.iw,B.ca),$.aH())}, +bM8(a,b){return A.bjl(b)}, +ao3:function ao3(a,b,c){var _=this +_.ax=a +_.a=b +_.k4$=0 +_.ok$=c +_.p2$=_.p1$=0 +_.p3$=!1}, +amn:function amn(a,b){var _=this +_.x=a +_.a=b +_.b=!0 +_.c=!1 +_.e=_.d=0 +_.r=_.f=null +_.w=!1}, +Of:function Of(a,b){this.c=a +this.a=b}, +U7:function U7(a,b){var _=this +_.d=$ +_.e=null +_.f=!1 +_.w=_.r=$ +_.x=a +_.a=null +_.b=b +_.c=null}, +bc2:function bc2(a,b){this.a=a +this.b=b}, +bc1:function bc1(a,b){this.a=a +this.b=b}, +bc3:function bc3(a){this.a=a}, +bue(a,b,c,d,e,f){return new A.OA(f,e,d,c,a,b,null)}, +bPE(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,a0){var s=null,r=new A.H9(o,A.Fr(s,s,s,s,s,B.b2,s,s,B.aw,B.at),a0,l,j,m,b,f,n,q,k,i,h,g,p,d,e,a,!1,A.ay(t.T)) +r.b4() +r.an_(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,a0) +return r}, +bcu:function bcu(a,b){this.a=a +this.b=b}, +a9A:function a9A(a,b){this.a=a +this.b=b}, +OA:function OA(a,b,c,d,e,f,g){var _=this +_.c=a +_.e=b +_.w=c +_.x=d +_.y=e +_.z=f +_.a=g}, +Uh:function Uh(a,b,c,d,e){var _=this +_.r=_.f=_.e=_.d=$ +_.w=null +_.x=a +_.y=$ +_.z=null +_.Q=!1 +_.as=null +_.ax=_.at=!1 +_.ay=b +_.ch=null +_.dL$=c +_.b7$=d +_.a=null +_.b=e +_.c=null}, +bcr:function bcr(a,b){this.a=a +this.b=b}, +bcs:function bcs(a,b){this.a=a +this.b=b}, +bcp:function bcp(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +bcq:function bcq(a){this.a=a}, +bco:function bco(a){this.a=a}, +bct:function bct(a){this.a=a}, +amR:function amR(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=d +_.w=e +_.x=f +_.y=g +_.z=h +_.Q=i +_.as=j +_.at=k +_.ax=l +_.ay=m +_.ch=n +_.CW=o +_.a=p}, +H9:function H9(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){var _=this +_.B=a +_.an=_.a6=_.W=$ +_.ao=b +_.aZ=_.aN=$ +_.bt=!1 +_.Y=0 +_.b3=null +_.bd=c +_.eM=d +_.eA=e +_.h1=f +_.dG=g +_.fo=h +_.de=i +_.he=j +_.bm=k +_.dA=l +_.eY=m +_.dH=n +_.cY=o +_.e5=p +_.hC=q +_.fp=!1 +_.jT=r +_.AA$=s +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=a0 +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null}, +bb_:function bb_(a){this.a=a}, +baY:function baY(){}, +baX:function baX(){}, +baZ:function baZ(a){this.a=a}, +bb0:function bb0(a,b){this.a=a +this.b=b}, +o0:function o0(a){this.a=a}, +Hl:function Hl(a,b){this.a=a +this.b=b}, +aoW:function aoW(a,b){this.d=a +this.a=b}, +alK:function alK(a,b,c){var _=this +_.B=$ +_.W=a +_.AA$=b +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +bcm:function bcm(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 +_.k4=a +_.ok=$ +_.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 +_.go=a8 +_.id=a9 +_.k1=b0 +_.k2=b1 +_.k3=b2}, +bcn:function bcn(a){this.a=a}, +Wl:function Wl(){}, +Wn:function Wn(){}, +Wu:function Wu(){}, +buf(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){return new A.ES(a7,b,k,a1,e,h,g,a,j,d,f,a3,n,i,o,a9,p,a6,a5,a8,b0,r,q,s,a0,a2,b1,l,a4,m,c)}, +bMt(b2,b3,b4){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 +if(b2===b3)return b2 +s=A.ag(b2.a,b3.a,b4) +r=A.W(b2.b,b3.b,b4) +q=A.W(b2.c,b3.c,b4) +p=A.W(b2.d,b3.d,b4) +o=A.W(b2.e,b3.e,b4) +n=A.W(b2.r,b3.r,b4) +m=A.W(b2.f,b3.f,b4) +l=A.W(b2.w,b3.w,b4) +k=A.W(b2.x,b3.x,b4) +j=A.W(b2.y,b3.y,b4) +i=A.W(b2.z,b3.z,b4) +h=A.W(b2.Q,b3.Q,b4) +g=A.W(b2.as,b3.as,b4) +f=A.W(b2.at,b3.at,b4) +e=A.W(b2.ax,b3.ax,b4) +d=A.W(b2.ay,b3.ay,b4) +c=b4<0.5 +b=c?b2.ch:b3.ch +a=c?b2.CW:b3.CW +a0=c?b2.cx:b3.cx +a1=c?b2.cy:b3.cy +a2=c?b2.db:b3.db +a3=c?b2.dx:b3.dx +a4=c?b2.dy:b3.dy +a5=c?b2.fr:b3.fr +a6=c?b2.fx:b3.fx +a7=c?b2.fy:b3.fy +a8=A.c7(b2.go,b3.go,b4) +a9=A.ag(b2.id,b3.id,b4) +b0=c?b2.k1:b3.k1 +b1=c?b2.k2:b3.k2 +return A.buf(l,r,c?b2.k3:b3.k3,j,o,i,n,m,f,k,q,a9,b1,g,e,b,a4,a3,a5,a6,p,a7,h,b0,a0,a,s,a1,d,a2,a8)}, +aUT:function aUT(a,b){this.a=a +this.b=b}, +ES:function ES(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){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}, +aVk:function aVk(){}, +aVn:function aVn(){}, +aVo:function aVo(){}, +atX:function atX(){}, +aRR:function aRR(){}, +aRQ:function aRQ(){}, +aRP:function aRP(){}, +aRO:function aRO(){}, +aQj:function aQj(){}, +aAa:function aAa(){}, +b4J:function b4J(){}, +am0:function am0(){}, +amS:function amS(){}, +OE:function OE(a,b){this.a=a +this.b=b}, +bMx(a,b,c,d,e,f,g,h,i,j,k,l,m){return new A.OF(d,c,i,g,j,l,e,m,k,f,b,a,h)}, +bMy(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h +if(a===b&&!0)return a +s=A.W(a.a,b.a,c) +r=A.W(a.b,b.b,c) +q=A.W(a.c,b.c,c) +p=A.c7(a.d,b.d,c) +o=A.ag(a.e,b.e,c) +n=A.fo(a.f,b.f,c) +if(c<0.5)m=a.r +else m=b.r +l=A.ag(a.w,b.w,c) +k=A.C8(a.x,b.x,c) +j=A.W(a.z,b.z,c) +i=A.ag(a.Q,b.Q,c) +h=A.W(a.as,b.as,c) +return A.bMx(h,i,r,s,m,j,p,A.W(a.at,b.at,c),q,o,k,n,l)}, +OF:function OF(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}, +an0:function an0(){}, +buu(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){return new A.aaA(a1,l,a,c,f,h,b,k,g,n,q,s,a0,r,i,B.aCP,!1,e,j,o,p,m,!1,null)}, +bcV:function bcV(a,b){this.a=a +this.b=b}, +aaA:function aaA(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 +_.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 +_.ch=n +_.CW=o +_.cx=p +_.cy=q +_.db=r +_.dx=s +_.fx=a0 +_.fy=a1 +_.id=a2 +_.k1=a3 +_.a=a4}, +SH:function SH(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 +_.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 +_.cx=p +_.cy=q +_.db=r +_.dx=s +_.dy=a0 +_.fr=a1 +_.fx=a2 +_.fy=a3 +_.go=a4 +_.id=a5 +_.a=a6}, +SI:function SI(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this +_.d=a +_.e=!1 +_.ks$=b +_.mZ$=c +_.p0$=d +_.vh$=e +_.vi$=f +_.ty$=g +_.vj$=h +_.tz$=i +_.F_$=j +_.qP$=k +_.pV$=l +_.pW$=m +_.dL$=n +_.b7$=o +_.a=null +_.b=p +_.c=null}, +b8b:function b8b(a){this.a=a}, +b8c:function b8c(a){this.a=a}, +b8a:function b8a(a){this.a=a}, +b8d:function b8d(a,b){this.a=a +this.b=b}, +UA:function UA(a){var _=this +_.aK=_.co=_.bL=_.y2=_.y1=_.xr=_.x2=_.x1=_.to=_.ry=_.rx=_.RG=_.R8=_.p4=_.p3=_.p2=_.p1=_.ok=_.k4=_.k3=_.k2=_.k1=_.id=_.go=_.fy=_.fx=_.fr=_.dy=_.dx=_.db=null +_.B=_.ct=_.cp=_.c_=_.b6=null +_.a6=_.W=!1 +_.at=_.as=_.Q=_.z=_.y=_.x=_.w=_.r=_.f=_.e=_.d=_.c=_.b=_.a=_.ao=_.an=null +_.k4$=0 +_.ok$=a +_.p2$=_.p1$=0 +_.p3$=!1}, +bcU:function bcU(a,b,c){this.a=a +this.b=b +this.c=c}, +bcM:function bcM(){}, +bcO:function bcO(a,b,c,d,e,f,g,h,i,j){var _=this +_.y=a +_.z=$ +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g +_.r=h +_.w=i +_.x=j}, +bcQ:function bcQ(a){this.a=a}, +bcR:function bcR(a){this.a=a}, +bcS:function bcS(a){this.a=a}, +bcP:function bcP(a){this.a=a}, +ant:function ant(a,b){this.a=a +this.b=b}, +bcN:function bcN(a){this.a=a}, +Wa:function Wa(){}, +Wb:function Wb(){}, +aqu:function aqu(){}, +re(a,b,c,d,e,f,g){return new A.Fc(g,c,f,e,d,a,b)}, +bcT:function bcT(a,b){this.a=a +this.b=b}, +Fc:function Fc(a,b,c,d,e,f,g){var _=this +_.c=a +_.d=b +_.fy=c +_.go=d +_.id=e +_.p1=f +_.a=g}, +aYy:function aYy(a){this.a=a}, +bMU(a,b,c){var s,r,q,p,o,n,m,l,k +if(a===b&&!0)return a +s=t.MH +r=A.bK(a.a,b.a,c,A.ds(),s) +q=A.bK(a.b,b.b,c,A.ds(),s) +p=A.bK(a.c,b.c,c,A.ds(),s) +o=A.bK(a.d,b.d,c,A.X2(),t.PM) +n=c<0.5 +if(n)m=a.e +else m=b.e +if(n)l=a.f +else l=b.f +s=A.bK(a.r,b.r,c,A.ds(),s) +k=A.ag(a.w,b.w,c) +if(n)n=a.x +else n=b.x +return new A.Fd(r,q,p,o,m,l,s,k,n)}, +blJ(a){var s +a.aj(t.OK) +s=A.B(a) +return s.cY}, +Fd:function Fd(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}, +anu:function anu(){}, +bMW(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.aym(a.a,b.a,c) +r=A.W(a.b,b.b,c) +q=c<0.5 +p=q?a.c:b.c +o=A.W(a.d,b.d,c) +n=q?a.e:b.e +m=A.W(a.f,b.f,c) +l=A.fJ(a.r,b.r,c) +k=A.c7(a.w,b.w,c) +j=A.W(a.x,b.x,c) +i=A.c7(a.y,b.y,c) +h=A.bK(a.z,b.z,c,A.ds(),t.MH) +g=q?a.Q:b.Q +f=q?a.as:b.as +return new A.v5(s,r,p,o,n,m,l,k,j,i,h,g,f,q?a.at:b.at)}, +v5:function v5(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}, +anA:function anA(){}, +buy(a,b,c,d){return new A.rg(A.bjp(null,b,d),B.bC,c,b,b,$.aH())}, +bjV(a,b,c){return new A.JK(c,b,a,null)}, +bjW(a){var s=a.aj(t.oq) +return s==null?null:s.f}, +rg:function rg(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.k4$=_.f=0 +_.ok$=f +_.p2$=_.p1$=0 +_.p3$=!1}, +aYM:function aYM(a){this.a=a}, +UF:function UF(a,b,c,d){var _=this +_.f=a +_.r=b +_.b=c +_.a=d}, +JK:function JK(a,b,c,d){var _=this +_.c=a +_.d=b +_.f=c +_.a=d}, +afY:function afY(a,b,c){var _=this +_.d=$ +_.ff$=a +_.c3$=b +_.a=null +_.b=c +_.c=null}, +W_:function W_(){}, +vc:function vc(a,b,c){this.a=a +this.b=b +this.c=c}, +be3:function be3(a,b,c){this.b=a +this.c=b +this.a=c}, +zE(a){return new A.zD(a,null)}, +bws(a,b,c,d,e,f,g,h,i){return new A.anE(g,i,e,f,h,c,b,a,null)}, +bRW(a){var s,r,q=a.geq(a).x +q===$&&A.b() +s=a.e +r=a.d +if(a.f===0)return A.V(Math.abs(r-q),0,1) +return Math.abs(q-r)/Math.abs(r-s)}, +aYJ(a,b,c,d){return new A.P8(d,a,c,b,null)}, +aYL(a,b,c){return new A.P9(b,a,c)}, +aYK:function aYK(a,b){this.a=a +this.b=b}, +Ff:function Ff(a,b){this.a=a +this.b=b}, +zD:function zD(a,b){this.c=a +this.a=b}, +anE:function anE(a,b,c,d,e,f,g,h,i){var _=this +_.e=a +_.f=b +_.r=c +_.x=d +_.y=e +_.z=f +_.Q=g +_.c=h +_.a=i}, +bd8:function bd8(a,b){this.a=a +this.b=b}, +anD:function anD(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this +_.kt=a +_.B=b +_.W=c +_.a6=d +_.an=e +_.ao=f +_.aN=g +_.aZ=h +_.bt=0 +_.Y=i +_.b3=j +_.aa5$=k +_.aIX$=l +_.d8$=m +_.a2$=n +_.dF$=o +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=p +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null}, +anC:function anC(a,b,c,d,e,f,g,h,i,j){var _=this +_.ax=a +_.e=b +_.f=c +_.r=d +_.w=e +_.x=f +_.y=g +_.z=h +_.c=i +_.a=j}, +aga:function aga(a,b,c){this.b=a +this.c=b +this.a=c}, +Se:function Se(a,b,c,d,e,f,g,h,i,j){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.w=g +_.x=h +_.y=i +_.at=_.as=_.Q=_.z=null +_.ax=!1 +_.a=j}, +aeO:function aeO(a){this.a=a}, +Gh:function Gh(a,b){this.a=a +this.b=b}, +UB:function UB(a,b,c,d,e,f,g,h){var _=this +_.an=a +_.ao=!1 +_.aN=!0 +_.k3=0 +_.k4=b +_.ok=null +_.r=c +_.w=d +_.x=e +_.y=f +_.Q=_.z=null +_.as=0 +_.ax=_.at=null +_.ay=!1 +_.ch=!0 +_.CW=!1 +_.cx=null +_.cy=!1 +_.dx=_.db=null +_.dy=g +_.fr=null +_.k4$=0 +_.ok$=h +_.p2$=_.p1$=0 +_.p3$=!1}, +anz:function anz(a,b,c,d,e){var _=this +_.as=a +_.a=b +_.b=c +_.f=d +_.k4$=0 +_.ok$=e +_.p2$=_.p1$=0 +_.p3$=!1}, +P8:function P8(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.as=d +_.a=e}, +UC:function UC(a){var _=this +_.r=_.f=_.e=_.d=null +_.y=_.x=_.w=$ +_.z=!1 +_.a=null +_.b=a +_.c=null}, +bd4:function bd4(){}, +bd0:function bd0(){}, +bd1:function bd1(a,b){this.a=a +this.b=b}, +bd2:function bd2(a,b){this.a=a +this.b=b}, +bd3:function bd3(a,b){this.a=a +this.b=b}, +P9:function P9(a,b,c){this.c=a +this.d=b +this.a=c}, +UD:function UD(a){var _=this +_.e=_.d=null +_.f=$ +_.r=null +_.x=_.w=0 +_.y=!1 +_.a=null +_.b=a +_.c=null}, +bd5:function bd5(a){this.a=a}, +bd6:function bd6(a,b,c){this.a=a +this.b=b +this.c=c}, +bd7:function bd7(a){this.a=a}, +bd9:function bd9(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var _=this +_.ax=a +_.ch=_.ay=$ +_.CW=b +_.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}, +bda:function bda(a){this.a=a}, +apl:function apl(){}, +apt:function apt(){}, +eP(a,b,c,d,e,f,g,h,i,j,k){return new A.Fi(i,h,g,f,k,c,d,!1,j,!0,b,e)}, +aaM(a,b,c,d,e,f,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2){var s,r,q,p,o,n,m,l,k,j,i,h=null,g=a3==null?h:a3 +if(e==null)s=h +else s=e +r=g==null +q=r&&s==null?h:new A.UI(g,s) +p=c==null +if(p&&d==null)o=h +else if(d==null){p=p?h:new A.cG(c,t.Il) +o=p}else{p=new A.UI(c,d) +o=p}n=r?h:new A.anM(g) +r=b1==null?h:new A.cG(b1,t.XL) +p=a7==null?h:new A.cG(a7,t.h9) +m=a0==null?h:new A.cG(a0,t.QL) +l=a6==null?h:new A.cG(a6,t.Ak) +k=a5==null?h:new A.cG(a5,t.iL) +j=a4==null?h:new A.cG(a4,t.iL) +i=a8==null?h:new A.cG(a8,t.kU) +return A.av9(a,b,o,m,a1,h,q,h,h,j,k,new A.anL(a2,f),n,l,p,i,h,a9,h,b0,r,b2)}, +bSJ(a){var s +A.B(a) +s=A.d9(a,B.bz) +s=s==null?null:s.gdU() +return A.IO(B.vg,B.bW,B.dL,(s==null?B.aw:s).a)}, +bdf(a,b,c,d){var s=null +return new A.anP(c,s,s,s,d,B.n,s,!1,s,!0,new A.anQ(b,a,s),s)}, +Fi:function Fi(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}, +UI:function UI(a,b){this.a=a +this.b=b}, +anM:function anM(a){this.a=a}, +anL:function anL(a,b){this.a=a +this.b=b}, +anP:function anP(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}, +anQ:function anQ(a,b,c){this.c=a +this.d=b +this.a=c}, +anN:function anN(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 +_.fr=$ +_.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}, +bdc:function bdc(a){this.a=a}, +bde:function bde(a){this.a=a}, +bdd:function bdd(){}, +aqv:function aqv(){}, +bMZ(a,b,c){if(a===b)return a +return new A.Pj(A.op(a.a,b.a,c))}, +Pj:function Pj(a){this.a=a}, +anO:function anO(){}, +Fm(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,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){var s,r,q,p +if(d4==null)s=b6?B.pq:B.pr +else s=d4 +if(d5==null)r=b6?B.ps:B.pt +else r=d5 +if(a9==null)q=b3===1?B.P0:B.pE +else q=a9 +if(a2==null)p=!0 +else p=a2 +return new A.Pm(b0,i,a6,o,q,e3,e1,d8,d7,d9,e0,e2,c,b7,b6,!0,s,r,!0,b3,b4,!1,!1,e4,d3,b1,b2,b9,c0,c1,b8,a7,a4,n,k,m,l,j,d1,d2,a8,c8,p,d0,a0,c2,c3,b5,d,c9,c7,b,f,c5,!0,!0,g,h,!0,e5,d6,null)}, +bN2(a,b){return A.bjl(b)}, +bN3(a){return B.is}, +bSl(a){return A.SG(new A.bfN(a))}, +anT:function anT(a,b){var _=this +_.x=a +_.a=b +_.b=!0 +_.c=!1 +_.e=_.d=0 +_.r=_.f=null +_.w=!1}, +Pm:function Pm(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){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 +_.R8=b6 +_.RG=b7 +_.rx=b8 +_.ry=b9 +_.to=c0 +_.x1=c1 +_.x2=c2 +_.xr=c3 +_.y1=c4 +_.y2=c5 +_.bL=c6 +_.co=c7 +_.aK=c8 +_.b6=c9 +_.c_=d0 +_.cp=d1 +_.ct=d2 +_.B=d3 +_.W=d4 +_.a6=d5 +_.an=d6 +_.ao=d7 +_.aN=d8 +_.aZ=d9 +_.bt=e0 +_.Y=e1 +_.a=e2}, +UJ:function UJ(a,b,c,d,e,f,g){var _=this +_.e=_.d=null +_.r=_.f=!1 +_.x=_.w=$ +_.y=a +_.cX$=b +_.je$=c +_.xj$=d +_.hd$=e +_.jf$=f +_.a=null +_.b=g +_.c=null}, +bdh:function bdh(){}, +bdj:function bdj(a,b){this.a=a +this.b=b}, +bdi:function bdi(a,b){this.a=a +this.b=b}, +bdl:function bdl(a){this.a=a}, +bdm:function bdm(a){this.a=a}, +bdn:function bdn(a){this.a=a}, +bdo:function bdo(a){this.a=a}, +bdp:function bdp(a){this.a=a}, +bdq:function bdq(a){this.a=a}, +bdr:function bdr(a,b,c){this.a=a +this.b=b +this.c=c}, +bdt:function bdt(a){this.a=a}, +bdu:function bdu(a){this.a=a}, +bds:function bds(a,b){this.a=a +this.b=b}, +bdk:function bdk(a){this.a=a}, +bfN:function bfN(a){this.a=a}, +beE:function beE(){}, +Ww:function Ww(){}, +buA(a,b,c,d){var s=null,r=a.a.a +return new A.Pn(a,d,new A.aZa(b,s,s,s,s,s,s,s,B.b2,s,s,B.eb,!1,s,!1,s,"\u2022",c,!0,s,s,!0,s,1,s,!1,s,s,s,s,s,s,s,2,s,s,s,B.dK,s,s,s,s,s,s,s,!0,s,A.bYy(),s,s,s,s,s,B.cd,B.bS,B.D,s,B.C,!0,!0),r,!0,B.qx,s,s)}, +bN4(a,b){return A.bjl(b)}, +Pn:function Pn(a,b,c,d,e,f,g,h){var _=this +_.z=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.a=h}, +aZa:function aZa(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){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 +_.bL=c8 +_.co=c9 +_.aK=d0 +_.b6=d1 +_.c_=d2 +_.cp=d3 +_.ct=d4 +_.B=d5 +_.W=d6 +_.a6=d7 +_.an=d8 +_.ao=d9 +_.aN=e0}, +aZb:function aZb(a,b){this.a=a +this.b=b}, +Hy:function Hy(a,b,c,d,e,f,g,h){var _=this +_.ax=null +_.d=$ +_.e=a +_.f=b +_.cX$=c +_.je$=d +_.xj$=e +_.hd$=f +_.jf$=g +_.a=null +_.b=h +_.c=null}, +a5Q:function a5Q(){}, +aK1:function aK1(){}, +anU:function anU(a,b){this.b=a +this.a=b}, +aj8:function aj8(){}, +bN6(a,b,c){var s,r +if(a===b)return a +s=A.W(a.a,b.a,c) +r=A.W(a.b,b.b,c) +return new A.Pw(s,r,A.W(a.c,b.c,c))}, +Pw:function Pw(a,b,c){this.a=a +this.b=b +this.c=c}, +anW:function anW(){}, +bN7(a,b,c){return new A.aaY(a,b,c,null)}, +bNe(a,b){return new A.anX(b,null)}, +bPQ(a){var s,r=null,q=a.a.a +switch(q){case 1:s=A.Py(r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r).ax.cy===a.cy +break +case 0:s=A.Py(r,r,r,r,r,B.S,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r).ax.cy===a.cy +break +default:s=r}if(!s)return a.cy +switch(q){case 1:q=B.l +break +case 0:q=B.dk +break +default:q=r}return q}, +aaY:function aaY(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +UO:function UO(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +ao0:function ao0(a,b,c,d){var _=this +_.d=!1 +_.e=a +_.dL$=b +_.b7$=c +_.a=null +_.b=d +_.c=null}, +bdL:function bdL(a){this.a=a}, +bdK:function bdK(a){this.a=a}, +ao1:function ao1(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +ao2:function ao2(a,b,c,d){var _=this +_.D=null +_.ac=a +_.az=b +_.k3$=c +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +bdM:function bdM(a,b,c){this.a=a +this.b=b +this.c=c}, +anY:function anY(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +anZ:function anZ(a,b,c){var _=this +_.k4=$ +_.ok=a +_.c=_.b=_.a=_.ch=_.ax=null +_.d=$ +_.e=b +_.f=null +_.r=c +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1}, +alJ:function alJ(a,b,c,d,e,f){var _=this +_.B=-1 +_.W=a +_.a6=b +_.d8$=c +_.a2$=d +_.dF$=e +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +bb1:function bb1(a,b,c){this.a=a +this.b=b +this.c=c}, +bb2:function bb2(a,b,c){this.a=a +this.b=b +this.c=c}, +bb4:function bb4(a,b){this.a=a +this.b=b}, +bb3:function bb3(a,b,c){this.a=a +this.b=b +this.c=c}, +bb5:function bb5(a){this.a=a}, +anX:function anX(a,b){this.c=a +this.a=b}, +ao_:function ao_(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +aqb:function aqb(){}, +aqw:function aqw(){}, +bNb(a){if(a===B.PN||a===B.qm)return 14.5 +return 9.5}, +bNd(a){if(a===B.PO||a===B.qm)return 14.5 +return 9.5}, +bNc(a,b){if(a===0)return b===1?B.qm:B.PN +if(a===b-1)return B.PO +return B.aCQ}, +bNa(a){var s,r=null,q=a.a.a +switch(q){case 1:s=A.Py(r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r).ax.db===a.db +break +case 0:s=A.Py(r,r,r,r,r,B.S,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r).ax.db===a.db +break +default:s=r}if(!s)return a.db +switch(q){case 1:q=B.o +break +case 0:q=B.l +break +default:q=r}return q}, +HA:function HA(a,b){this.a=a +this.b=b}, +ab_:function ab_(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +blO(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.eR(r,q,p,a0,o,n,m,l,k,j,i,h,g,a4,a5==null?s:a5)}, +Ft(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.c7(a.a,b.a,c) +r=A.c7(a.b,b.b,c) +q=A.c7(a.c,b.c,c) +p=A.c7(a.d,b.d,c) +o=A.c7(a.e,b.e,c) +n=A.c7(a.f,b.f,c) +m=A.c7(a.r,b.r,c) +l=A.c7(a.w,b.w,c) +k=A.c7(a.x,b.x,c) +j=A.c7(a.y,b.y,c) +i=A.c7(a.z,b.z,c) +h=A.c7(a.Q,b.Q,c) +g=A.c7(a.as,b.as,c) +f=A.c7(a.at,b.at,c) +return A.blO(j,i,h,s,r,q,p,o,n,g,f,A.c7(a.ax,b.ax,c),m,l,k)}, +eR:function eR(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}, +ao5:function ao5(){}, +B(a){var s,r=a.aj(t.Nr),q=A.A(a,B.aC,t.D),p=q==null?null:q.gbD() +if(p==null)p=B.N +s=r==null?null:r.w.c +if(s==null)s=$.bBw() +return A.bNj(s,s.p4.af1(p))}, +Fu:function Fu(a,b,c){this.c=a +this.d=b +this.a=c}, +Si:function Si(a,b,c){this.w=a +this.b=b +this.a=c}, +zH:function zH(a,b){this.a=a +this.b=b}, +Id:function Id(a,b,c,d,e,f){var _=this +_.r=a +_.w=b +_.c=c +_.d=d +_.e=e +_.a=f}, +ae1:function ae1(a,b,c){var _=this +_.CW=null +_.e=_.d=$ +_.ff$=a +_.c3$=b +_.a=null +_.b=c +_.c=null}, +b23:function b23(){}, +Py(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){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=null +c7=A.a([],t.a5) +if(d7==null)d7=B.a7E +if(e9==null)e9=A.c3() +switch(e9.a){case 0:case 1:case 2:d9=B.amR +break +case 3:case 4:case 5:d9=B.kW +break}h3=A.bNY(e9) +h2=h2!==!1 +if(h2)g2=B.Td +else g2=B.Te +if(b0==null){s=b7==null?a4:b7.a +r=s}else r=b0 +if(r==null)r=B.a2 +q=r===B.S +if(h2){if(b7==null)b7=q?B.TI:B.TH +p=q?b7.cy:b7.b +o=q?b7.db:b7.c +if(f1==null)f1=p +if(b2==null)b2=b7.CW +if(f6==null)f6=b7.CW +n=b7.cy +if(b3==null)b3=n +if(c2==null){c2=b7.fr +if(c2==null)c2=b7.cx}m=b7.CW +if(b9==null)b9=m +if(d6==null)d6=o +l=b7.at +if(a6==null)a6=b0===B.S}else{l=a4 +n=l +m=n}if(f1==null)f1=q?B.rN:B.hY +k=A.iX(f1) +if(f3==null)f3=q?B.tR:B.u8 +if(f2==null)f2=q?B.o:B.rG +j=k===B.S +if(q)i=B.tx +else{s=b7==null?a4:b7.f +i=s==null?B.my:s}if(d0==null)d0=q?A.K(31,255,255,255):A.K(31,0,0,0) +if(d4==null)d4=q?A.K(10,255,255,255):A.K(10,0,0,0) +if(b2==null)b2=q?B.mA:B.uI +if(f6==null)f6=b2 +if(b3==null)b3=q?B.dk:B.l +if(c2==null)c2=q?B.a0d:B.cE +if(b7==null){h=q?B.tx:B.mz +s=q?B.eg:B.hn +g=A.iX(B.hY)===B.S +f=A.iX(h) +e=g?B.l:B.o +f=f===B.S?B.l:B.o +d=q?B.l:B.o +c=g?B.l:B.o +b7=A.Jf(s,r,B.uk,a4,a4,a4,c,q?B.o:B.l,a4,a4,e,a4,f,a4,d,a4,a4,a4,a4,a4,B.hY,a4,a4,h,a4,a4,b3,a4,a4,a4,a4)}b=q?B.ap:B.aa +if(f7==null)f7=q?B.eg:B.up +if(b9==null)b9=q?B.dk:B.l +if(d6==null){d6=b7.f +if(d6.k(0,f1))d6=B.l}a=q?B.TT:A.K(153,0,0,0) +if(b1==null)b1=A.bqd(!1,q?B.my:B.jd,b7,c1,d0,36,d3,d4,B.Rm,d9,88,a4,a4,g1,B.Ro) +if(c1==null)c1=q?B.TO:B.TN +if(d3==null)d3=q?B.re:B.mv +if(g1==null)g1=q?B.re:B.TQ +if(h1==null)h1=h2?A.blW(b7,e9):A.bNE(e9) +a0=q?h1.b:h1.a +a1=j?h1.b:h1.a +g7=a0.cI(g7) +f4=a1.cI(f4) +a2=q?new A.d4(a4,a4,a4,a4,a4,$.boX(),a4,a4):new A.d4(a4,a4,a4,a4,a4,$.boW(),a4,a4) +a3=j?B.a6H:B.a6G +if(a5==null)a5=B.PU +if(a7==null)a7=B.Qp +if(a8==null)a8=B.Qq +if(a9==null)a9=B.Qr +if(b4==null)b4=B.Tv +if(b5==null)b5=B.Tz +if(b6==null)b6=B.TA +if(b8==null)b8=B.a1o +if(c0==null)c0=B.a1D +if(c3==null)c3=B.a1L +if(c4==null)c4=B.a1S +if(c5==null)c5=B.a1U +if(c6==null)c6=B.a2G +if(c8==null)c8=B.a34 +if(c9==null)c9=B.a51 +if(d5==null)d5=B.a5f +if(d8==null)d8=B.yk +if(e0==null)e0=B.amU +if(e1==null)e1=B.amV +if(e2==null)e2=B.amW +if(e3==null)e3=B.an9 +if(e4==null)e4=B.anb +if(e5==null)e5=B.ane +if(e6==null)e6=B.aok +if(f0==null)f0=B.apd +if(f5==null)f5=B.aph +if(f8==null)f8=B.apR +if(f9==null)f9=B.arl +if(g0==null)g0=B.aro +if(g3==null)g3=B.as1 +if(g4==null)g4=B.as9 +if(g5==null)g5=B.asa +if(g6==null)g6=B.ass +if(g8==null)g8=B.axy +if(g9==null)g9=B.axB +if(h0==null)h0=B.axG +if(l==null)l=B.uk +if(m==null)m=q?B.eg:B.hn +if(n==null)n=q?B.dk:B.l +return A.blP(a4,a5,a6===!0,m,B.Q2,B.amN,n,a7,a8,a9,B.Rn,b1,b2,b3,b4,b5,b6,b7,a4,B.a1n,b8,b9,c0,c1,c2,c3,c4,c5,c6,l,B.a2M,A.bNh(c7),c8,c9,d0,d3,a,d4,d5,a2,d6,d7,d8,d9,e0,e1,e2,e3,e4,e5,e6,B.Sw,e9,f0,f1,f2,f3,a3,f4,B.apf,f5,f6,B.apO,B.apP,B.apQ,f7,f8,B.uB,B.o,f9,g0,g1,g2,g3,g4,g5,g6,g7,g8,g9,i,h0,h1,b,h2,h3)}, +blP(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){return new A.mt(c,s,b2,c2,c4,d2,d3,e3,f3,!0,g6,g,m,n,r,a2,a4,a5,b5,b6,b7,b8,c1,d5,d6,d7,e2,e6,e8,e9,f2,g4,c0,d8,d9,f8,g3,a,b,e,f,h,i,j,k,l,o,p,q,a0,a1,a3,a6,a7,a8,a9,b1,b3,b4,b9,c3,c5,c6,c7,c8,c9,d0,d1,d4,e0,e1,e4,e5,e7,f0,f1,f4,f5,f6,f7,f9,g0,g2,b0,d,g1)}, +bNf(){var s=null +return A.Py(s,s,s,s,s,B.a2,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +bNj(a,b){return $.bBv().cK(0,new A.GF(a,b),new A.b_1(a,b))}, +iX(a){var s=a.a8u()+0.05 +if(s*s>0.15)return B.a2 +return B.S}, +bNg(a,b,c){var s=a.c,r=s.qZ(s,new A.b__(b,c),t.K,t.Ag) +s=b.c +s=s.gdX(s) +r.a7l(r,s.jw(s,new A.b_0(a))) +return r}, +bNh(a){var s,r,q=t.K,p=t.ZF,o=A.I(q,p) +for(s=0;!1;++s){r=a[s] +o.n(0,r.giO(r),p.a(r))}return A.bjI(o,q,t.Ag)}, +bNi(h4,h5,h6){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 +if(h4===h5)return h4 +s=h6<0.5 +r=s?h4.a:h5.a +q=s?h4.b:h5.b +p=A.bNg(h4,h5,h6) +o=s?h4.d:h5.d +n=s?h4.e:h5.e +m=s?h4.f:h5.f +l=s?h4.r:h5.r +k=A.bM1(h4.w,h5.w,h6) +j=s?h4.x:h5.x +i=A.bNZ(h4.z,h5.z,h6) +h=A.W(h4.as,h5.as,h6) +h.toString +g=A.W(h4.at,h5.at,h6) +g.toString +f=A.bG_(h4.ax,h5.ax,h6) +e=A.W(h4.ay,h5.ay,h6) +e.toString +d=A.W(h4.ch,h5.ch,h6) +d.toString +c=A.W(h4.CW,h5.CW,h6) +c.toString +b=A.W(h4.cx,h5.cx,h6) +b.toString +a=A.W(h4.cy,h5.cy,h6) +a.toString +a0=A.W(h4.db,h5.db,h6) +a0.toString +a1=A.W(h4.dx,h5.dx,h6) +a1.toString +a2=A.W(h4.dy,h5.dy,h6) +a2.toString +a3=A.W(h4.fr,h5.fr,h6) +a3.toString +a4=A.W(h4.fx,h5.fx,h6) +a4.toString +a5=A.W(h4.fy,h5.fy,h6) +a5.toString +a6=A.W(h4.go,h5.go,h6) +a6.toString +a7=A.W(h4.id,h5.id,h6) +a7.toString +a8=A.W(h4.k2,h5.k2,h6) +a8.toString +a9=A.W(h4.k3,h5.k3,h6) +a9.toString +b0=A.W(h4.k4,h5.k4,h6) +b0.toString +b1=A.qC(h4.ok,h5.ok,h6) +b2=A.qC(h4.p1,h5.p1,h6) +b3=A.Ft(h4.p2,h5.p2,h6) +b4=A.Ft(h4.p3,h5.p3,h6) +b5=A.bNG(h4.p4,h5.p4,h6) +b6=A.bEW(h4.R8,h5.R8,h6) +b7=A.bF2(h4.RG,h5.RG,h6) +b8=A.bFi(h4.rx,h5.rx,h6) +b9=h4.ry +c0=h5.ry +c1=A.W(b9.a,c0.a,h6) +c2=A.W(b9.b,c0.b,h6) +c3=A.W(b9.c,c0.c,h6) +c4=A.W(b9.d,c0.d,h6) +c5=A.c7(b9.e,c0.e,h6) +c6=A.ag(b9.f,c0.f,h6) +c7=A.fJ(b9.r,c0.r,h6) +b9=A.fJ(b9.w,c0.w,h6) +c0=A.bFm(h4.to,h5.to,h6) +c8=A.bFn(h4.x1,h5.x1,h6) +c9=A.bFo(h4.x2,h5.x2,h6) +d0=A.bFt(h4.xr,h5.xr,h6) +s=s?h4.y1:h5.y1 +d1=A.bFA(h4.y2,h5.y2,h6) +d2=A.bFH(h4.bL,h5.bL,h6) +d3=A.bFN(h4.co,h5.co,h6) +d4=A.bGu(h4.aK,h5.aK,h6) +d5=A.bGB(h4.b6,h5.b6,h6) +d6=A.bGQ(h4.c_,h5.c_,h6) +d7=A.bH1(h4.cp,h5.cp,h6) +d8=A.bHr(h4.ct,h5.ct,h6) +d9=A.bHs(h4.B,h5.B,h6) +e0=A.bHC(h4.W,h5.W,h6) +e1=A.bHV(h4.a6,h5.a6,h6) +e2=A.bI5(h4.an,h5.an,h6) +e3=A.bIg(h4.ao,h5.ao,h6) +e4=A.bIU(h4.aN,h5.aN,h6) +e5=A.bJG(h4.aZ,h5.aZ,h6) +e6=A.bK8(h4.bt,h5.bt,h6) +e7=A.bK9(h4.Y,h5.Y,h6) +e8=A.bKa(h4.b3,h5.b3,h6) +e9=A.bKm(h4.bd,h5.bd,h6) +f0=A.bKn(h4.eM,h5.eM,h6) +f1=A.bKp(h4.eA,h5.eA,h6) +f2=A.bKy(h4.h1,h5.h1,h6) +f3=A.bL0(h4.dG,h5.dG,h6) +f4=A.bLc(h4.fo,h5.fo,h6) +f5=A.bLi(h4.de,h5.de,h6) +f6=A.bM3(h4.he,h5.he,h6) +f7=A.bM5(h4.bm,h5.bm,h6) +f8=A.bM7(h4.dA,h5.dA,h6) +f9=A.bMt(h4.eY,h5.eY,h6) +g0=A.bMy(h4.dH,h5.dH,h6) +g1=A.bMU(h4.cY,h5.cY,h6) +g2=A.bMW(h4.e5,h5.e5,h6) +g3=A.bMZ(h4.hC,h5.hC,h6) +g4=A.bN6(h4.fp,h5.fp,h6) +g5=A.bNl(h4.jT,h5.jT,h6) +g6=A.bNn(h4.dY,h5.dY,h6) +g7=A.bNq(h4.cq,h5.cq,h6) +g8=h4.D +g8.toString +g9=h5.D +g9.toString +g9=A.W(g8,g9,h6) +g8=h4.k1 +g8.toString +h0=h5.k1 +h0.toString +h0=A.W(g8,h0,h6) +g8=h4.dM +g8.toString +h1=h5.dM +h1.toString +h1=A.W(g8,h1,h6) +g8=h4.dj +g8.toString +h2=h5.dj +h2.toString +h2=A.W(g8,h2,h6) +g8=h4.Q +g8.toString +h3=h5.Q +h3.toString +return A.blP(b6,b7,r,h2,b8,new A.LQ(c1,c2,c3,c4,c5,c6,c7,b9),A.W(g8,h3,h6),c0,c8,c9,d0,s,h,g,d1,d2,d3,f,q,d4,d5,e,d6,d,c,d7,d8,d9,e0,h1,e1,p,e2,e3,b,a,a0,a1,e4,b1,a2,o,e5,n,e6,e7,e8,e9,f0,f1,f2,m,l,f3,a3,a4,a5,b2,b3,f4,f5,a6,k,f6,f7,a7,f8,h0,a8,f9,g0,a9,j,g1,g2,g3,g4,b4,g5,g6,g9,g7,b5,b0,!0,i)}, +bJW(a,b){return new A.a41(a,b,B.q3,b.a,b.b,b.c,b.d,b.e,b.f,b.r)}, +bNY(a){switch(a.a){case 0:case 2:case 1:break +case 3:case 4:case 5:return B.eT}return B.h0}, +bNZ(a,b,c){var s,r +if(a===b)return a +s=A.ag(a.a,b.a,c) +s.toString +r=A.ag(a.b,b.b,c) +r.toString +return new A.rr(s,r)}, +yg:function yg(a,b){this.a=a +this.b=b}, +mt:function mt(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){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 +_.bL=c8 +_.co=c9 +_.aK=d0 +_.b6=d1 +_.c_=d2 +_.cp=d3 +_.ct=d4 +_.B=d5 +_.W=d6 +_.a6=d7 +_.an=d8 +_.ao=d9 +_.aN=e0 +_.aZ=e1 +_.bt=e2 +_.Y=e3 +_.b3=e4 +_.bd=e5 +_.eM=e6 +_.eA=e7 +_.h1=e8 +_.dG=e9 +_.fo=f0 +_.de=f1 +_.he=f2 +_.bm=f3 +_.dA=f4 +_.eY=f5 +_.dH=f6 +_.cY=f7 +_.e5=f8 +_.hC=f9 +_.fp=g0 +_.jT=g1 +_.dY=g2 +_.cq=g3 +_.dM=g4 +_.dj=g5 +_.D=g6}, +b_1:function b_1(a,b){this.a=a +this.b=b}, +b__:function b__(a,b){this.a=a +this.b=b}, +b_0:function b_0(a){this.a=a}, +a41:function a41(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}, +GF:function GF(a,b){this.a=a +this.b=b}, +agM:function agM(a,b,c){this.a=a +this.b=b +this.$ti=c}, +rr:function rr(a,b){this.a=a +this.b=b}, +ao9:function ao9(){}, +aoZ:function aoZ(){}, +bNk(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.PC(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2)}, +bNl(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.bp(s,r,a4)}}r=A.W(a2.a,a3.a,a4) +q=A.op(a2.b,a3.b,a4) +p=A.op(a2.c,a3.c,a4) +o=A.W(a2.e,a3.e,a4) +n=t.KX.a(A.fo(a2.f,a3.f,a4)) +m=A.W(a2.r,a3.r,a4) +l=A.c7(a2.w,a3.w,a4) +k=A.W(a2.x,a3.x,a4) +j=A.W(a2.y,a3.y,a4) +i=A.W(a2.z,a3.z,a4) +h=A.c7(a2.Q,a3.Q,a4) +g=A.ag(a2.as,a3.as,a4) +f=A.W(a2.at,a3.at,a4) +e=A.c7(a2.ax,a3.ax,a4) +d=A.W(a2.ay,a3.ay,a4) +c=A.fo(a2.ch,a3.ch,a4) +b=A.W(a2.CW,a3.CW,a4) +a=A.c7(a2.cx,a3.cx,a4) +if(a4<0.5)a0=a2.cy +else a0=a3.cy +a1=A.fJ(a2.db,a3.db,a4) +return A.bNk(r,q,p,s,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,A.fo(a2.dx,a3.dx,a4))}, +PC:function PC(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}, +aoc:function aoc(){}, +bNm(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){return new A.PH(o,e,d,m,g,h,i,j,n,k,a,l,f,c,b)}, +bNn(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.c7(a.a,b.a,c) +r=A.wp(a.b,b.b,c) +q=A.W(a.c,b.c,c) +p=A.W(a.d,b.d,c) +o=A.W(a.e,b.e,c) +n=A.W(a.f,b.f,c) +m=A.W(a.r,b.r,c) +l=A.W(a.w,b.w,c) +k=A.W(a.y,b.y,c) +j=A.W(a.x,b.x,c) +i=A.W(a.z,b.z,c) +h=A.W(a.Q,b.Q,c) +g=A.W(a.as,b.as,c) +f=A.mU(a.ax,b.ax,c) +return A.bNm(i,f,A.ag(a.at,b.at,c),q,r,g,o,n,m,l,k,h,p,j,s)}, +PH:function PH(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}, +aof:function aof(){}, +zL:function zL(){}, +b_a:function b_a(a,b){this.a=a +this.b=b}, +b_c:function b_c(a){this.a=a}, +b_7:function b_7(a,b){this.a=a +this.b=b}, +b_9:function b_9(a,b){this.a=a +this.b=b}, +Fw:function Fw(){}, +bvQ(a,b,c){return new A.agG(b,null,c,B.cD,a,null)}, +b_e(a,b,c,d,e){return new A.PJ(c,e,d,b,a,null)}, +bNr(){var s,r,q +if($.zM.length!==0){s=A.a($.zM.slice(0),A.ab($.zM)) +for(r=s.length,q=0;q>>16&255,r.gj(r)>>>8&255,r.gj(r)&255) +break +default:p=null}switch(q.a){case 1:o=b.a +break +case 0:r=b.a +o=A.K(0,r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255) +break +default:o=null}r=a.d +q=b.d +if(r!==q){n=A.W(p,o,c) +n.toString +q=A.ag(r,q,c) +q.toString +return new A.be(n,s,B.I,q)}q=A.W(p,o,c) +q.toString +return new A.be(q,s,B.I,r)}, +fo(a,b,c){var s,r +if(a==b)return a +s=b!=null?b.f0(a,c):null +if(s==null&&a!=null)s=a.f1(b,c) +if(s==null)r=c<0.5?a:b +else r=s +return r}, +bta(a,b,c){var s,r +if(a==b)return a +s=b!=null?b.f0(a,c):null +if(s==null&&a!=null)s=a.f1(b,c) +if(s==null)r=c<0.5?a:b +else r=s +return r}, +bvM(a,b,c){var s,r,q,p,o,n,m=a instanceof A.mB?a.a:A.a([a],t.Fi),l=b instanceof A.mB?b.a:A.a([b],t.Fi),k=A.a([],t.N_),j=Math.max(m.length,l.length) +for(s=1-c,r=0;ro/m?new A.U(o*p/m,p):new A.U(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.U(o,o*p/q):new A.U(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.U(o,o*p/q) +s=c}else{s=new A.U(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.U(o*p/m,p) +r=b}else{r=new A.U(m*q/p,m) +s=c}break +case 5:r=new A.U(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.U(q*n,q):b +m=c.a +if(s.a>m)s=new A.U(m,m/n) +r=b +break +default:r=null +s=null}return new A.a1Q(r,s)}, +wq:function wq(a,b){this.a=a +this.b=b}, +a1Q:function a1Q(a,b){this.a=a +this.b=b}, +bFs(a,b,c){var s,r,q,p,o +if(a===b)return a +s=A.W(a.a,b.a,c) +s.toString +r=A.mb(a.b,b.b,c) +r.toString +q=A.ag(a.c,b.c,c) +q.toString +p=A.ag(a.d,b.d,c) +p.toString +o=a.e +return new A.cd(p,o===B.a4?b.e:o,s,r,q)}, +bjx(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.c) +if(b==null)b=A.a([],t.c) +s=Math.min(a.length,b.length) +r=A.a([],t.c) +for(q=0;q>>16&255)/255,o=(a.gj(a)>>>8&255)/255,n=(a.gj(a)&255)/255,m=Math.max(p,Math.max(o,n)),l=Math.min(p,Math.min(o,n)),k=m-l,j=a.gj(a),i=A.b6("hue") +if(m===0)i.b=0 +else if(m===p)i.b=60*B.e.aJ((o-n)/k,6) +else if(m===o)i.b=60*((n-p)/k+2) +else if(m===n)i.b=60*((p-o)/k+4) +i.b=isNaN(i.aH())?0:i.aH() +s=i.aH() +r=(m+l)/2 +q=r===1?0:A.V(k/(1-Math.abs(2*r-1)),0,1) +return new A.n8((j>>>24&255)/255,s,q,r)}, +n8:function n8(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +os:function os(){}, +aym(a,b,c){var s,r=null +if(a==b)return a +if(a==null){s=b.f0(r,c) +return s==null?b:s}if(b==null){s=a.f1(r,c) +return s==null?a:s}if(c===0)return a +if(c===1)return b +s=b.f0(a,c) +if(s==null)s=a.f1(b,c) +if(s==null)if(c<0.5){s=a.f1(r,c*2) +if(s==null)s=a}else{s=b.f0(r,(c-0.5)*2) +if(s==null)s=b}return s}, +la:function la(){}, +Yz:function Yz(){}, +afU:function afU(){}, +bjU(a,b,c){if(a==b||c===0)return a +if(c===1)return b +return new A.aet(a,b,c)}, +bWH(a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0 +if(b4.gak(b4))return +s=b4.a +r=b4.c-s +q=b4.b +p=b4.d-q +o=new A.U(r,p) +n=b0.gf6(b0) +m=b0.gdC(b0) +if(a8==null)a8=B.qI +l=A.bTf(a8,new A.U(n,m).i7(0,b6),o) +k=l.a.av(0,b6) +j=l.b +if(b5!==B.fn&&j.k(0,o))b5=B.fn +i=$.au().bk() +i.sMf(!1) +if(a5!=null)i.sa8p(a5) +i.saf(0,A.bFZ(0,0,0,A.V(b3,0,1))) +i.svm(a7) +i.sMb(b1) +i.suR(a2) +h=j.a +g=(r-h)/2 +f=j.b +e=(p-f)/2 +p=a1.a +p=s+(g+(a9?-p:p)*g) +q+=e+a1.b*e +d=new A.L(p,q,p+h,q+f) +c=b5!==B.fn||a9 +if(c)a3.eo(0) +q=b5===B.fn +if(!q)a3.uV(b4) +if(a9){b=-(s+r/2) +a3.bi(0,-b,0) +a3.iT(0,-1,1) +a3.bi(0,b,0)}a=a1.aLb(k,new A.L(0,0,n,m)) +if(q)a3.tv(b0,a,d,i) +else for(s=A.bRH(b4,d,b5),r=s.length,a0=0;a0=B.b.gX(b))return B.b.gX(a) +s=B.b.abL(b,new A.bfT(c)) +r=a[s] +q=s+1 +p=a[q] +o=b[s] +o=A.W(r,p,(c-o)/(b[q]-o)) +o.toString +return o}, +bS2(a,b,c,d,e){var s,r,q=A.aaj(null,null,t.i) +q.I(0,b) +q.I(0,d) +s=A.a8(q,!1,q.$ti.c) +r=A.ab(s).h("ad<1,e>") +return new A.b3J(A.a8(new A.ad(s,new A.bfz(a,b,c,d,e),r),!1,r.h("av.E")),s)}, +brW(a,b,c){var s +if(a==b)return a +s=b!=null?b.f0(a,c):null +if(s==null&&a!=null)s=a.f1(b,c) +if(s!=null)return s +return c<0.5?a.c0(0,1-c*2):b.c0(0,(c-0.5)*2)}, +bsv(a,b,c){var s,r,q,p +if(a==b)return a +if(a==null)return b.c0(0,c) +if(b==null)return a.c0(0,1-c) +s=A.bS2(a.a,a.Rn(),b.a,b.Rn(),c) +r=A.AX(a.d,b.d,c) +r.toString +q=A.AX(a.e,b.e,c) +q.toString +p=c<0.5?a.f:b.f +return new A.ub(r,q,p,s.a,s.b,null)}, +b3J:function b3J(a,b){this.a=a +this.b=b}, +bfT:function bfT(a){this.a=a}, +bfz:function bfz(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aFv:function aFv(){}, +ub:function ub(a,b,c,d,e,f){var _=this +_.d=a +_.e=b +_.f=c +_.a=d +_.b=e +_.c=f}, +aIy:function aIy(a){this.a=a}, +bPh(a,b){var s=new A.GN(a,null,a.ii()) +s.amY(a,b,null) +return s}, +aGT:function aGT(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.f=0}, +aGW:function aGW(a,b,c){this.a=a +this.b=b +this.c=c}, +aGV:function aGV(a,b){this.a=a +this.b=b}, +aGX:function aGX(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +aeI:function aeI(){}, +b3f:function b3f(a){this.a=a}, +QR:function QR(a,b,c){this.a=a +this.b=b +this.c=c}, +GN:function GN(a,b,c){var _=this +_.d=$ +_.a=a +_.b=b +_.c=c}, +b7O:function b7O(a,b){this.a=a +this.b=b}, +ajX:function ajX(a,b){this.a=a +this.b=b}, +bvB(){return new A.adL(A.a([],t.XZ),A.a([],t.SM),A.a([],t.qj))}, +bLG(a,b,c){return c}, +xC:function xC(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +jT:function jT(){}, +aH7:function aH7(a,b,c){this.a=a +this.b=b +this.c=c}, +aH8:function aH8(a,b,c){this.a=a +this.b=b +this.c=c}, +aH4:function aH4(a,b){this.a=a +this.b=b}, +aH3:function aH3(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aH5:function aH5(a){this.a=a}, +aH6:function aH6(a,b){this.a=a +this.b=b}, +adL:function adL(a,b,c){var _=this +_.a=a +_.b=b +_.e=_.d=_.c=null +_.r=_.f=!1 +_.w=0 +_.x=!1 +_.y=c}, +ok:function ok(a,b,c){this.a=a +this.b=b +this.c=c}, +XV:function XV(){}, +b53:function b53(a,b,c){var _=this +_.a=a +_.b=b +_.e=_.d=_.c=null +_.r=_.f=!1 +_.w=0 +_.x=!1 +_.y=c}, +mR:function mR(a,b,c){this.a=a +this.b=b +this.c=c}, +asI:function asI(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +asJ:function asJ(a){this.a=a}, +bsT(a,b,c,d){var s=new A.a66(d,c,A.a([],t.XZ),A.a([],t.SM),A.a([],t.qj)) +s.amI(null,a,b,c,d) +return s}, +lk:function lk(a,b,c){this.a=a +this.b=b +this.c=c}, +ll:function ll(a,b,c){this.a=a +this.b=b +this.c=c}, +jS:function jS(a,b){this.a=a +this.b=b}, +aHa:function aHa(){this.b=this.a=null}, +aHb:function aHb(a){this.a=a}, +xD:function xD(){}, +aHc:function aHc(){}, +aHd:function aHd(){}, +a66:function a66(a,b,c,d,e){var _=this +_.Q=_.z=null +_.as=a +_.at=b +_.ax=null +_.ay=$ +_.ch=null +_.CW=0 +_.cx=null +_.cy=!1 +_.a=c +_.b=d +_.e=_.d=_.c=null +_.r=_.f=!1 +_.w=0 +_.x=!1 +_.y=e}, +aLc:function aLc(a,b){this.a=a +this.b=b}, +aLb:function aLb(a){this.a=a}, +ahN:function ahN(){}, +ahP:function ahP(){}, +ahO:function ahO(){}, +bse(a,b,c,d){return new A.qF(a,c,b,!1,!1,d)}, +bnh(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=A.a([],t.O_),e=t.oU,d=A.a([],e) +for(s=a.length,r="",q="",p=0;p0){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.b96(r,q,b-p,p)}o=Math.sqrt(k-m)/(2*l) +s=-(n/2*l) +return new A.be2(o,s,b,(c-s*b)/o)}, +aXC:function aXC(a,b,c){this.a=a +this.b=b +this.c=c}, +OU:function OU(a,b){this.a=a +this.b=b}, +OT:function OT(a,b,c){this.b=a +this.c=b +this.a=c}, +uQ:function uQ(a,b,c){this.b=a +this.c=b +this.a=c}, +b3Q:function b3Q(a,b,c){this.a=a +this.b=b +this.c=c}, +b96:function b96(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +be2:function be2(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +PI:function PI(a,b){this.a=a +this.c=b}, +bLx(a,b,c,d,e,f,g){var s=null,r=new A.a7X(new A.a9v(s,s),B.Nt,b,g,A.ay(t.O5),a,f,s,A.ay(t.T)) +r.b4() +r.sbN(s) +r.amN(a,s,b,c,d,e,f,g) +return r}, +Eg:function Eg(a,b){this.a=a +this.b=b}, +a7X:function a7X(a,b,c,d,e,f,g,h,i){var _=this +_.ei=_.dt=$ +_.dd=a +_.ea=$ +_.fe=null +_.jd=b +_.pT=c +_.Lw=d +_.EV=e +_.D=null +_.ac=f +_.az=g +_.k3$=h +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +aQu:function aQu(a){this.a=a}, +bOL(a){}, +Ek:function Ek(){}, +aRu:function aRu(a){this.a=a}, +aRw:function aRw(a){this.a=a}, +aRv:function aRv(a){this.a=a}, +aRt:function aRt(a){this.a=a}, +aRs:function aRs(a){this.a=a}, +QE:function QE(a,b){var _=this +_.a=a +_.k4$=0 +_.ok$=b +_.p2$=_.p1$=0 +_.p3$=!1}, +afX:function afX(a,b,c,d,e,f,g,h){var _=this +_.b=a +_.c=b +_.d=c +_.e=null +_.f=!1 +_.r=d +_.y=_.x=_.w=!1 +_.z=e +_.Q=f +_.as=!1 +_.at=null +_.ax=0 +_.ay=!1 +_.ch=g +_.CW=h +_.cx=null}, +alU:function alU(a,b,c,d){var _=this +_.B=!1 +_.fx=a +_.fy=null +_.go=b +_.k1=null +_.k3$=c +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +Be(a){var s=a.a,r=a.b +return new A.aN(s,s,r,r)}, +jE(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.aN(p,q,r,s?1/0:a)}, +jF(a,b){var s,r,q=b!==1/0,p=q?b:0 +q=q?b:1/0 +s=a!==1/0 +r=s?a:0 +return new A.aN(p,q,r,s?a:1/0)}, +Bd(a){return new A.aN(0,a.a,0,a.b)}, +wp(a,b,c){var s,r,q,p +if(a==b)return a +if(a==null)return b.av(0,c) +if(b==null)return a.av(0,1-c) +s=a.a +if(isFinite(s)){s=A.ag(s,b.a,c) +s.toString}else s=1/0 +r=a.b +if(isFinite(r)){r=A.ag(r,b.b,c) +r.toString}else r=1/0 +q=a.c +if(isFinite(q)){q=A.ag(q,b.c,c) +q.toString}else q=1/0 +p=a.d +if(isFinite(p)){p=A.ag(p,b.d,c) +p.toString}else p=1/0 +return new A.aN(s,r,q,p)}, +bjw(a){return new A.q3(a.a,a.b,a.c)}, +aN:function aN(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aux:function aux(){}, +q3:function q3(a,b,c){this.a=a +this.b=b +this.c=c}, +wr:function wr(a,b){this.c=a +this.a=b +this.b=null}, +iy:function iy(a){this.a=a}, +Jk:function Jk(){}, +GI:function GI(a,b){this.a=a +this.b=b}, +Sr:function Sr(a,b){this.a=a +this.b=b}, +O:function O(){}, +aQw:function aQw(a,b){this.a=a +this.b=b}, +aQy:function aQy(a,b){this.a=a +this.b=b}, +aQx:function aQx(a,b){this.a=a +this.b=b}, +e_:function e_(){}, +aQv:function aQv(a,b,c){this.a=a +this.b=b +this.c=c}, +R3:function R3(){}, +m8:function m8(a,b,c){var _=this +_.e=null +_.ds$=a +_.a3$=b +_.a=c}, +aL8:function aL8(){}, +Nw:function Nw(a,b,c,d,e){var _=this +_.B=a +_.d8$=b +_.a2$=c +_.dF$=d +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +Tv:function Tv(){}, +all:function all(){}, +btJ(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.nZ +s=J.aj(a) +r=s.gt(a)-1 +q=A.aX(0,e,!1,t.Ej) +p=0<=r +while(!0){if(!!1)break +s.i(a,0) +o=b[0] +o.gn6(o) +break}while(!0){if(!!1)break +s.i(a,r) +n=b[-1] +n.gn6(n) +break}m=A.b6("oldKeyedChildren") +if(p){m.sdQ(A.I(t.D2,t.bu)) +for(l=m.a,k=0;k<=r;){j=s.i(a,k) +i=j.a +if(i!=null){h=m.b +if(h===m)A.r(A.iH(l)) +J.j5(h,i,j)}++k}p=!0}else k=0 +for(l=m.a,g=0;!1;){o=d.a[g] +if(p){f=o.gn6(o) +i=m.b +if(i===m)A.r(A.iH(l)) +j=J.b7(i,f) +if(j!=null){o.gn6(o) +j=e}}else j=e +q[g]=A.btI(j,o);++g}s.gt(a) +while(!0){if(!!1)break +q[g]=A.btI(s.i(a,k),d.a[g]);++g;++k}return new A.iz(q,A.ab(q).h("iz<1,ea>"))}, +btI(a,b){var s,r=a==null?A.Ok(b.gn6(b),null):a,q=b.gacF(),p=A.pc() +q.gah3() +p.k2=q.gah3() +p.e=!0 +q.gaGh(q) +s=q.gaGh(q) +p.c8(B.lq,!0) +p.c8(B.NW,s) +q.gaMJ() +s=q.gaMJ() +p.c8(B.lq,!0) +p.c8(B.NY,s) +q.gag7(q) +p.c8(B.O_,q.gag7(q)) +q.gaG2(q) +p.c8(B.O3,q.gaG2(q)) +q.gaIQ(q) +s=q.gaIQ(q) +p.c8(B.aqa,!0) +p.c8(B.aq6,s) +q.gxE() +p.c8(B.aq9,q.gxE()) +q.gaPz() +p.c8(B.NS,q.gaPz()) +q.gagY() +p.c8(B.O2,q.gagY()) +q.gaLT() +p.c8(B.aq7,q.gaLT()) +q.gXd(q) +p.c8(B.NQ,q.gXd(q)) +q.gaJe() +p.c8(B.NU,q.gaJe()) +q.gaJf(q) +p.c8(B.pc,q.gaJf(q)) +q.gAr(q) +s=q.gAr(q) +p.c8(B.lr,!0) +p.c8(B.lp,s) +q.gaKY() +p.c8(B.NV,q.gaKY()) +q.gFW() +p.c8(B.NP,q.gFW()) +q.gaMO(q) +p.c8(B.O1,q.gaMO(q)) +q.gaKG(q) +p.c8(B.ls,q.gaKG(q)) +q.gaKE() +p.c8(B.O0,q.gaKE()) +q.gag_() +p.c8(B.NT,q.gag_()) +q.gaMR() +p.c8(B.NZ,q.gaMR()) +q.gaMb() +p.c8(B.NX,q.gaMb()) +q.gMu() +p.sMu(q.gMu()) +q.gL3() +p.sL3(q.gL3()) +q.gaPV() +s=q.gaPV() +p.c8(B.pd,!0) +p.c8(B.pb,s) +q.glp(q) +p.c8(B.NR,q.glp(q)) +q.gW7(q) +p.RG=new A.dT(q.gW7(q),B.aS) +p.e=!0 +q.gj(q) +p.rx=new A.dT(q.gj(q),B.aS) +p.e=!0 +q.gaL6() +p.ry=new A.dT(q.gaL6(),B.aS) +p.e=!0 +q.gaI0() +p.to=new A.dT(q.gaI0(),B.aS) +p.e=!0 +q.gaKN(q) +p.x1=new A.dT(q.gaKN(q),B.aS) +p.e=!0 +q.gcz() +p.bL=q.gcz() +p.e=!0 +q.gtU() +p.stU(q.gtU()) +q.gvB() +p.svB(q.gvB()) +q.gMS() +p.sMS(q.gMS()) +q.gMT() +p.sMT(q.gMT()) +q.gMU() +p.sMU(q.gMU()) +q.gMR() +p.sMR(q.gMR()) +q.gMK() +p.sMK(q.gMK()) +q.gMG() +p.sMG(q.gMG()) +q.gME(q) +p.sME(0,q.gME(q)) +q.gMF(q) +p.sMF(0,q.gMF(q)) +q.gMP(q) +p.sMP(0,q.gMP(q)) +q.gMN() +p.sMN(q.gMN()) +q.gML() +p.sML(q.gML()) +q.gMO() +p.sMO(q.gMO()) +q.gMM() +p.sMM(q.gMM()) +q.gMV() +p.sMV(q.gMV()) +q.gMW() +p.sMW(q.gMW()) +q.gMH() +p.sMH(q.gMH()) +q.gMI() +p.sMI(q.gMI()) +q.gMJ() +p.sMJ(q.gMJ()) +r.ua(0,B.nZ,p) +r.scw(0,b.gcw(b)) +r.sd4(0,b.gd4(b)) +r.dy=b.gaRj() +return r}, +a0v:function a0v(){}, +Nx:function Nx(a,b,c,d,e,f,g){var _=this +_.D=a +_.ac=b +_.az=c +_.cr=d +_.eB=e +_.hf=_.hX=_.jh=_.ek=null +_.k3$=f +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +ayj:function ayj(){}, +bwb(a){var s=new A.alm(a,A.ay(t.T)) +s.b4() +return s}, +bwu(){return new A.UK($.au().bk(),B.cd,B.bS,$.aH())}, +zG:function zG(a,b){this.a=a +this.b=b}, +b0G:function b0G(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=!0 +_.r=f}, +yZ:function yZ(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 +_.an=_.a6=_.W=_.B=null +_.ao=$ +_.aN=a +_.aZ=b +_.bd=_.b3=_.Y=_.bt=null +_.eM=c +_.eA=d +_.h1=e +_.dG=f +_.fo=g +_.de=h +_.he=i +_.bm=j +_.eY=_.dA=null +_.dH=k +_.cY=l +_.e5=m +_.hC=n +_.fp=o +_.jT=p +_.dY=q +_.cq=r +_.dM=s +_.dj=a0 +_.D=a1 +_.ac=a2 +_.az=a3 +_.cr=a4 +_.ek=!1 +_.jh=$ +_.hX=a5 +_.hf=0 +_.hY=a6 +_.iE=_.ed=_.hZ=null +_.kt=_.lk=$ +_.ib=_.Ax=_.hc=null +_.jR=$ +_.tw=null +_.h_=a7 +_.jS=null +_.hU=_.Az=_.Ay=_.pS=!1 +_.ic=null +_.jc=a8 +_.d8$=a9 +_.a2$=b0 +_.dF$=b1 +_.AA$=b2 +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=b3 +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null}, +aQC:function aQC(a){this.a=a}, +aQB:function aQB(){}, +aQA:function aQA(a,b){this.a=a +this.b=b}, +aQD:function aQD(){}, +aQz:function aQz(){}, +alm:function alm(a,b){var _=this +_.B=a +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +uI:function uI(){}, +UK:function UK(a,b,c,d){var _=this +_.r=a +_.x=_.w=null +_.y=b +_.z=c +_.k4$=0 +_.ok$=d +_.p2$=_.p1$=0 +_.p3$=!1}, +QS:function QS(a,b,c){var _=this +_.r=!0 +_.w=!1 +_.x=a +_.y=$ +_.Q=_.z=null +_.as=b +_.ax=_.at=null +_.k4$=0 +_.ok$=c +_.p2$=_.p1$=0 +_.p3$=!1}, +G6:function G6(a,b){var _=this +_.r=a +_.k4$=0 +_.ok$=b +_.p2$=_.p1$=0 +_.p3$=!1}, +Tx:function Tx(){}, +Ty:function Ty(){}, +aln:function aln(){}, +Nz:function Nz(a,b){var _=this +_.B=a +_.W=$ +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +bxV(a,b,c){switch(a.a){case 0:switch(b){case B.j:return!0 +case B.ab:return!1 +case null:case void 0:return null}break +case 1:switch(c){case B.cz:return!0 +case B.pV:return!1 +case null:case void 0:return null}break}}, +bLy(a,b,c,d,e,f,g,h){var s=null,r=new A.uJ(c,d,e,b,g,h,f,a,A.ay(t.O5),A.aX(4,A.Fr(s,s,s,s,s,B.b2,B.j,s,B.aw,B.at),!1,t.mi),!0,0,s,s,A.ay(t.T)) +r.b4() +r.I(0,s) +return r}, +a1T:function a1T(a,b){this.a=a +this.b=b}, +i8:function i8(a,b,c){var _=this +_.f=_.e=null +_.ds$=a +_.a3$=b +_.a=c}, +a3K:function a3K(a,b){this.a=a +this.b=b}, +ud:function ud(a,b){this.a=a +this.b=b}, +wG:function wG(a,b){this.a=a +this.b=b}, +uJ:function uJ(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.B=a +_.W=b +_.a6=c +_.an=d +_.ao=e +_.aN=f +_.aZ=g +_.bt=0 +_.Y=h +_.b3=i +_.aa5$=j +_.aIX$=k +_.d8$=l +_.a2$=m +_.dF$=n +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +aQH:function aQH(){}, +aQF:function aQF(){}, +aQG:function aQG(){}, +aQE:function aQE(){}, +b7G:function b7G(a,b,c){this.a=a +this.b=b +this.c=c}, +alp:function alp(){}, +alq:function alq(){}, +Tz:function Tz(){}, +NC:function NC(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var _=this +_.W=_.B=null +_.a6=a +_.an=b +_.ao=c +_.aN=d +_.aZ=e +_.bt=null +_.Y=f +_.b3=g +_.bd=h +_.eM=i +_.eA=j +_.h1=k +_.dG=l +_.fo=m +_.de=n +_.he=o +_.bm=p +_.dA=q +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +ay(a){return new A.a3q(a.h("a3q<0>"))}, +bKE(a){return new A.a7b(a,A.I(t.S,t.Q),A.ay(t.kd))}, +bKv(a){return new A.nm(a,A.I(t.S,t.Q),A.ay(t.kd))}, +buR(a){return new A.zP(a,B.i,A.I(t.S,t.Q),A.ay(t.kd))}, +blb(){return new A.Mz(B.i,A.I(t.S,t.Q),A.ay(t.kd))}, +bpY(a){return new A.Iu(a,B.dz,A.I(t.S,t.Q),A.ay(t.kd))}, +bkO(a,b){return new A.Lr(a,b,A.I(t.S,t.Q),A.ay(t.kd))}, +brH(a){var s,r,q=new A.bQ(new Float64Array(16)) +q.fQ() +for(s=a.length-1;s>0;--s){r=a[s] +if(r!=null)r.zF(a[s-1],q)}return q}, +aDG(a,b,c,d){var s,r +if(a==null||b==null)return null +if(a===b)return a +s=a.z +r=b.z +if(sr){c.push(a.r) +return A.aDG(a.r,b,c,d)}c.push(a.r) +d.push(b.r) +return A.aDG(a.r,b.r,c,d)}, +Ik:function Ik(a,b,c){this.a=a +this.b=b +this.$ti=c}, +Xy:function Xy(a,b){this.a=a +this.$ti=b}, +h4:function h4(){}, +aI8:function aI8(a,b){this.a=a +this.b=b}, +aI9:function aI9(a,b){this.a=a +this.b=b}, +a3q:function a3q(a){this.a=null +this.$ti=a}, +a7b:function a7b(a,b,c){var _=this +_.ax=a +_.ay=null +_.CW=_.ch=!1 +_.a=b +_.b=0 +_.d=_.c=!1 +_.e=c +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.at=_.as=_.Q=null}, +hH:function hH(){}, +nm:function nm(a,b,c){var _=this +_.k3=a +_.ay=_.ax=null +_.a=b +_.b=0 +_.d=_.c=!1 +_.e=c +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.at=_.as=_.Q=null}, +BD:function BD(a,b,c){var _=this +_.k3=null +_.k4=a +_.ay=_.ax=null +_.a=b +_.b=0 +_.d=_.c=!1 +_.e=c +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.at=_.as=_.Q=null}, +BB:function BB(a,b,c){var _=this +_.k3=null +_.k4=a +_.ay=_.ax=null +_.a=b +_.b=0 +_.d=_.c=!1 +_.e=c +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.at=_.as=_.Q=null}, +BA:function BA(a,b,c){var _=this +_.k3=null +_.k4=a +_.ay=_.ax=null +_.a=b +_.b=0 +_.d=_.c=!1 +_.e=c +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.at=_.as=_.Q=null}, +L1:function L1(a,b,c,d){var _=this +_.bL=a +_.k3=b +_.ay=_.ax=null +_.a=c +_.b=0 +_.d=_.c=!1 +_.e=d +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.at=_.as=_.Q=null}, +zP:function zP(a,b,c,d){var _=this +_.bL=a +_.aK=_.co=null +_.b6=!0 +_.k3=b +_.ay=_.ax=null +_.a=c +_.b=0 +_.d=_.c=!1 +_.e=d +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.at=_.as=_.Q=null}, +Mz:function Mz(a,b,c){var _=this +_.bL=null +_.k3=a +_.ay=_.ax=null +_.a=b +_.b=0 +_.d=_.c=!1 +_.e=c +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.at=_.as=_.Q=null}, +Op:function Op(a,b){var _=this +_.ay=_.ax=_.ok=_.k4=_.k3=null +_.a=a +_.b=0 +_.d=_.c=!1 +_.e=b +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.at=_.as=_.Q=null}, +Iu:function Iu(a,b,c,d){var _=this +_.k3=a +_.k4=b +_.ay=_.ax=null +_.a=c +_.b=0 +_.d=_.c=!1 +_.e=d +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.at=_.as=_.Q=null}, +D4:function D4(){var _=this +_.b=_.a=null +_.c=!1 +_.d=null}, +Lr:function Lr(a,b,c,d){var _=this +_.k3=a +_.k4=b +_.ay=_.ax=null +_.a=c +_.b=0 +_.d=_.c=!1 +_.e=d +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.at=_.as=_.Q=null}, +KC:function KC(a,b,c,d,e,f){var _=this +_.k3=a +_.k4=b +_.ok=c +_.p1=d +_.p4=_.p3=_.p2=null +_.R8=!0 +_.ay=_.ax=null +_.a=e +_.b=0 +_.d=_.c=!1 +_.e=f +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.at=_.as=_.Q=null}, +Ij:function Ij(a,b,c,d,e,f){var _=this +_.k3=a +_.k4=b +_.ok=c +_.ay=_.ax=null +_.a=d +_.b=0 +_.d=_.c=!1 +_.e=e +_.f=0 +_.r=null +_.w=!0 +_.y=_.x=null +_.z=0 +_.at=_.as=_.Q=null +_.$ti=f}, +aii:function aii(){}, +oO:function oO(a,b,c){this.ds$=a +this.a3$=b +this.a=c}, +NF:function NF(a,b,c,d,e){var _=this +_.B=a +_.d8$=b +_.a2$=c +_.dF$=d +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +aQX:function aQX(a){this.a=a}, +aQY:function aQY(a){this.a=a}, +aQT:function aQT(a){this.a=a}, +aQU:function aQU(a){this.a=a}, +aQV:function aQV(a){this.a=a}, +aQW:function aQW(a){this.a=a}, +aQR:function aQR(a){this.a=a}, +aQS:function aQS(a){this.a=a}, +alr:function alr(){}, +als:function als(){}, +bKd(a,b){var s +if(a==null)return!0 +s=a.b +if(t.ks.b(b))return!1 +return t.ge.b(s)||t.PB.b(b)||!s.gcJ(s).k(0,b.gcJ(b))}, +bKc(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,a4=a5.d +if(a4==null)a4=a5.c +s=a5.a +r=a5.b +q=a4.gBI() +p=a4.gk8(a4) +o=a4.gcu() +n=a4.gdR(a4) +m=a4.goW(a4) +l=a4.gcJ(a4) +k=a4.gA9() +j=a4.gfV(a4) +a4.gFW() +i=a4.gNd() +h=a4.gG9() +g=a4.ge9() +f=a4.gUT() +e=a4.gq(a4) +d=a4.gX5() +c=a4.gX8() +b=a4.gX7() +a=a4.gX6() +a0=a4.gBd(a4) +a1=a4.gXx() +s.al(0,new A.aKU(r,A.bKP(j,k,m,g,f,a4.gLl(),0,n,!1,a0,o,l,h,i,d,a,b,c,e,a4.gw9(),a1,p,q).cQ(a4.gd4(a4)),s)) +q=A.l(r).h("cl<1>") +p=q.h("ba") +a2=A.a8(new A.ba(new A.cl(r,q),new A.aKV(s),p),!0,p.h("z.E")) +p=a4.gBI() +q=a4.gk8(a4) +a1=a4.gcu() +e=a4.gdR(a4) +c=a4.goW(a4) +b=a4.gcJ(a4) +a=a4.gA9() +d=a4.gfV(a4) +a4.gFW() +i=a4.gNd() +h=a4.gG9() +l=a4.ge9() +o=a4.gUT() +a0=a4.gq(a4) +n=a4.gX5() +f=a4.gX8() +g=a4.gX7() +m=a4.gX6() +k=a4.gBd(a4) +j=a4.gXx() +a3=A.bKN(d,a,c,l,o,a4.gLl(),0,e,!1,k,a1,b,h,i,n,m,g,f,a0,a4.gw9(),j,q,p).cQ(a4.gd4(a4)) +for(q=A.ab(a2).h("da<1>"),p=new A.da(a2,q),p=new A.c2(p,p.gt(p),q.h("c2")),q=q.h("av.E");p.v();){o=p.d +if(o==null)o=q.a(o) +if(o.gXV()&&o.gWu(o)!=null){n=o.gWu(o) +n.toString +n.$1(a3.cQ(r.i(0,o)))}}}, +ajn:function ajn(a,b){this.a=a +this.b=b}, +ajo:function ajo(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a63:function a63(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=!1 +_.k4$=0 +_.ok$=d +_.p2$=_.p1$=0 +_.p3$=!1}, +aKW:function aKW(){}, +aKZ:function aKZ(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aKY:function aKY(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aKX:function aKX(a){this.a=a}, +aKU:function aKU(a,b,c){this.a=a +this.b=b +this.c=c}, +aKV:function aKV(a){this.a=a}, +apO:function apO(){}, +btg(a,b,c){var s,r,q=a.ch,p=t.dJ.a(q.a) +if(p==null){s=a.BH(null) +q.sb2(0,s) +q=s}else{p.Xj() +a.BH(p) +q=p}a.db=!1 +r=new A.DK(q,a.gr7()) +b=r +a.S3(b,B.i) +b.HA()}, +bKB(a){var s=a.ch.a +s.toString +a.BH(t.gY.a(s)) +a.db=!1}, +bKG(a,b,c){var s=t.TT +return new A.qT(a,c,b,A.a([],s),A.a([],s),A.a([],s),A.aW(t.I9),A.aW(t.sv))}, +bLB(a){a.a0i()}, +bLC(a){a.azP()}, +bwg(a,b){if(a==null)return null +if(a.gak(a)||b.abH())return B.W +return A.bsN(b,a)}, +bPM(a,b,c,d){var s,r,q=b.gbP(b) +q.toString +for(s=q;s!==a;s=q,b=r){s.eL(b,c) +q=s.gbP(s) +q.toString +r=b.gbP(b) +r.toString}a.eL(b,c) +a.eL(b,d)}, +bwf(a,b){if(a==null)return b +if(b==null)return a +return a.hh(b)}, +dP:function dP(){}, +DK:function DK(a,b){var _=this +_.a=a +_.b=b +_.e=_.d=_.c=null}, +aN2:function aN2(a,b,c){this.a=a +this.b=b +this.c=c}, +aN1:function aN1(a,b,c){this.a=a +this.b=b +this.c=c}, +aN0:function aN0(a,b,c){this.a=a +this.b=b +this.c=c}, +axz:function axz(){}, +qT:function qT(a,b,c,d,e,f,g,h){var _=this +_.b=a +_.c=b +_.d=c +_.e=null +_.f=!1 +_.r=d +_.y=_.x=_.w=!1 +_.z=e +_.Q=f +_.as=!1 +_.at=null +_.ax=0 +_.ay=!1 +_.ch=g +_.CW=h +_.cx=null}, +aNg:function aNg(){}, +aNf:function aNf(){}, +aNh:function aNh(){}, +aNi:function aNi(){}, +J:function J(){}, +aR1:function aR1(a){this.a=a}, +aR4:function aR4(a,b,c){this.a=a +this.b=b +this.c=c}, +aR2:function aR2(a){this.a=a}, +aR3:function aR3(){}, +aQZ:function aQZ(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}, +aR_:function aR_(a,b,c){this.a=a +this.b=b +this.c=c}, +aR0:function aR0(a,b){this.a=a +this.b=b}, +b5:function b5(){}, +fj:function fj(){}, +ar:function ar(){}, +uH:function uH(){}, +aQt:function aQt(a){this.a=a}, +bc7:function bc7(){}, +afb:function afb(a,b,c){this.b=a +this.c=b +this.a=c}, +kh:function kh(){}, +alZ:function alZ(a,b,c){var _=this +_.e=a +_.b=b +_.c=null +_.a=c}, +Sb:function Sb(a,b,c){var _=this +_.e=a +_.b=b +_.c=null +_.a=c}, +AA:function AA(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}, +amt:function amt(){var _=this +_.b=_.a=null +_.d=_.c=$ +_.e=!1}, +ak1:function ak1(){}, +alw:function alw(){}, +bLz(a,b,c){var s,r,q,p,o=a.b +o.toString +s=t.ot.a(o).b +if(s==null)o=B.ap8 +else{o=c.$2(a,new A.aN(0,b,0,1/0)) +r=s.b +q=s.c +$label0$0:{if(B.l5===r||B.l6===r||B.e3===r||B.l8===r||B.l7===r){p=null +break $label0$0}if(B.l4===r){q.toString +p=a.vR(q) +break $label0$0}p=null}q=new A.DO(o,r,p,q) +o=q}return o}, +bmz(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.aT?1:-1}}, +qU:function qU(a,b){this.b=a +this.a=b}, +ms:function ms(a,b){var _=this +_.b=_.a=null +_.ds$=a +_.a3$=b}, +a87:function a87(){}, +aQP:function aQP(a){this.a=a}, +NJ:function NJ(a,b,c,d,e,f,g,h,i){var _=this +_.B=a +_.ao=_.an=_.a6=_.W=null +_.aN=b +_.aZ=c +_.bt=d +_.Y=null +_.b3=!1 +_.h1=_.eA=_.eM=_.bd=null +_.AA$=e +_.d8$=f +_.a2$=g +_.dF$=h +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +aR9:function aR9(){}, +aRa:function aRa(){}, +aR8:function aR8(){}, +aR7:function aR7(){}, +aR5:function aR5(){}, +aR6:function aR6(a,b){this.a=a +this.b=b}, +rK:function rK(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.e=_.d=null +_.f=!1 +_.w=_.r=null +_.x=$ +_.y=null +_.k4$=0 +_.ok$=d +_.p2$=_.p1$=0 +_.p3$=!1}, +TG:function TG(){}, +alx:function alx(){}, +aly:function aly(){}, +UM:function UM(){}, +aqe:function aqe(){}, +aqf:function aqf(){}, +btH(a){var s=new A.Eh(a,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +aQQ(a,b){if(b==null)return a +return B.e.eV(a/b)*b}, +bLA(a,b,c,d,e,f){var s=b==null?B.bE:b +s=new A.NG(!0,c,e,d,a,s,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +a8g:function a8g(){}, +ih:function ih(){}, +KV:function KV(a,b){this.a=a +this.b=b}, +NK:function NK(){}, +Eh:function Eh(a,b,c){var _=this +_.D=a +_.k3$=b +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +a89:function a89(a,b,c,d){var _=this +_.D=a +_.ac=b +_.k3$=c +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +NE:function NE(a,b,c,d){var _=this +_.D=a +_.ac=b +_.k3$=c +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +a8b:function a8b(a,b,c,d,e){var _=this +_.D=a +_.ac=b +_.az=c +_.k3$=d +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +Nt:function Nt(){}, +Ns:function Ns(a,b,c,d,e,f){var _=this +_.AC$=a +_.Ve$=b +_.vf$=c +_.Vf$=d +_.k3$=e +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +a7Y:function a7Y(a,b,c,d){var _=this +_.D=a +_.ac=b +_.k3$=c +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +JD:function JD(){}, +uV:function uV(a,b){this.b=a +this.c=b}, +H7:function H7(){}, +a81:function a81(a,b,c,d){var _=this +_.D=a +_.ac=null +_.az=b +_.eB=_.cr=null +_.k3$=c +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +a80:function a80(a,b,c,d,e,f){var _=this +_.dd=a +_.ea=b +_.D=c +_.ac=null +_.az=d +_.eB=_.cr=null +_.k3$=e +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +a8_:function a8_(a,b,c,d){var _=this +_.D=a +_.ac=null +_.az=b +_.eB=_.cr=null +_.k3$=c +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +TH:function TH(){}, +a8c:function a8c(a,b,c,d,e,f,g,h,i){var _=this +_.vd=a +_.Vc=b +_.dd=c +_.ea=d +_.fe=e +_.D=f +_.ac=null +_.az=g +_.eB=_.cr=null +_.k3$=h +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +aRb:function aRb(a,b){this.a=a +this.b=b}, +a8d:function a8d(a,b,c,d,e,f,g){var _=this +_.dd=a +_.ea=b +_.fe=c +_.D=d +_.ac=null +_.az=e +_.eB=_.cr=null +_.k3$=f +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +aRc:function aRc(a,b){this.a=a +this.b=b}, +a0D:function a0D(a,b){this.a=a +this.b=b}, +a82:function a82(a,b,c,d,e){var _=this +_.D=null +_.ac=a +_.az=b +_.cr=c +_.k3$=d +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +a8t:function a8t(a,b,c){var _=this +_.az=_.ac=_.D=null +_.cr=a +_.ek=_.eB=null +_.k3$=b +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +aRp:function aRp(a){this.a=a}, +a85:function a85(a,b,c,d){var _=this +_.D=a +_.ac=b +_.k3$=c +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +aQJ:function aQJ(a){this.a=a}, +a8e:function a8e(a,b,c,d,e,f,g,h,i,j,k,l){var _=this +_.a3=a +_.h0=b +_.dt=c +_.ei=d +_.dd=e +_.ea=f +_.fe=g +_.jd=h +_.pT=i +_.D=j +_.k3$=k +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +NG:function NG(a,b,c,d,e,f,g,h){var _=this +_.a3=a +_.h0=b +_.dt=c +_.ei=d +_.dd=e +_.ea=!0 +_.D=f +_.k3$=g +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +a8h:function a8h(a,b){var _=this +_.ac=_.D=0 +_.k3$=a +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +NB:function NB(a,b,c,d){var _=this +_.D=a +_.ac=b +_.k3$=c +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +NH:function NH(a,b,c){var _=this +_.D=a +_.k3$=b +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +Nr:function Nr(a,b,c,d){var _=this +_.D=a +_.ac=b +_.k3$=c +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +r3:function r3(a,b,c){var _=this +_.dd=_.ei=_.dt=_.h0=_.a3=null +_.D=a +_.k3$=b +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +NL:function NL(a,b,c,d,e,f,g,h){var _=this +_.D=a +_.ac=b +_.az=c +_.cr=d +_.eB=e +_.hY=_.hf=_.hX=_.jh=_.ek=null +_.hZ=f +_.k3$=g +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +a7Z:function a7Z(a,b,c){var _=this +_.D=a +_.k3$=b +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +a8a:function a8a(a,b){var _=this +_.k3$=a +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +a83:function a83(a,b,c){var _=this +_.D=a +_.k3$=b +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +a86:function a86(a,b,c){var _=this +_.D=a +_.k3$=b +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +a88:function a88(a,b,c){var _=this +_.D=a +_.ac=null +_.k3$=b +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +a84:function a84(a,b,c,d,e,f,g){var _=this +_.D=a +_.ac=b +_.az=c +_.cr=d +_.eB=e +_.k3$=f +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +aQI:function aQI(a){this.a=a}, +Nu:function Nu(a,b,c,d,e){var _=this +_.D=a +_.ac=b +_.k3$=c +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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 +_.$ti=e}, +alf:function alf(){}, +TI:function TI(){}, +TJ:function TJ(){}, +aTG(a,b){var s +if(a.p(0,b))return B.bJ +s=b.b +if(sa.d)return B.bI +return b.a>=a.c?B.bI:B.c0}, +bu_(a,b,c){var s,r +if(a.p(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.j?new A.m(a.a,r):new A.m(a.c,r) +else{s=a.d +return c===B.j?new A.m(a.c,s):new A.m(a.a,s)}}, +btY(a,b){return new A.Og(a,b==null?B.pD:b,B.apS)}, +btX(a,b){return new A.Og(a,b==null?B.pD:b,B.ie)}, +uS:function uS(a,b){this.a=a +this.b=b}, +hR:function hR(){}, +a94:function a94(){}, +Oh:function Oh(a,b){this.a=a +this.b=b}, +Fo:function Fo(a,b){this.a=a +this.b=b}, +aTA:function aTA(){}, +Jb:function Jb(a){this.a=a}, +Og:function Og(a,b,c){this.b=a +this.c=b +this.a=c}, +ED:function ED(a,b){this.a=a +this.b=b}, +Oi:function Oi(a,b){this.a=a +this.b=b}, +uR:function uR(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +zh:function zh(a,b,c){this.a=a +this.b=b +this.c=c}, +Pv:function Pv(a,b){this.a=a +this.b=b}, +amp:function amp(){}, +z_:function z_(){}, +aRd:function aRd(a,b,c){this.a=a +this.b=b +this.c=c}, +NI:function NI(a,b,c,d){var _=this +_.D=null +_.ac=a +_.az=b +_.k3$=c +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +a7W:function a7W(){}, +a8f:function a8f(a,b,c,d,e,f){var _=this +_.dt=a +_.ei=b +_.D=null +_.ac=c +_.az=d +_.k3$=e +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +aUX:function aUX(){}, +Ny:function Ny(a,b,c){var _=this +_.D=a +_.k3$=b +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +TL:function TL(){}, +oc(a,b){switch(b.a){case 0:return a +case 1:return A.bnp(a)}}, +bTg(a,b){switch(b.a){case 0:return a +case 1:return A.bV6(a)}}, +kK(a,b,c,d,e,f,g,h,i,j,k){var s=d==null?g:d,r=c==null?g:c,q=a==null?d:a +if(q==null)q=g +return new A.a9G(i,h,g,s,e,f,r,k==null?g>0:k,b,j,q)}, +a9I:function a9I(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a2u:function a2u(a,b){this.a=a +this.b=b}, +v_:function v_(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}, +a9G:function a9G(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}, +EV:function EV(a,b,c){this.a=a +this.b=b +this.c=c}, +a9H:function a9H(a,b,c){var _=this +_.c=a +_.d=b +_.a=c +_.b=null}, +rb:function rb(){}, +pd:function pd(a,b){this.ds$=a +this.a3$=b +this.a=null}, +pe:function pe(a){this.a=a}, +k2:function k2(a,b,c){this.ds$=a +this.a3$=b +this.a=c}, +dk:function dk(){}, +a8o:function a8o(){}, +aRe:function aRe(a,b){this.a=a +this.b=b}, +a8r:function a8r(){}, +a8s:function a8s(a,b){var _=this +_.k3$=a +_.fx=null +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +alF:function alF(){}, +alG:function alG(){}, +amW:function amW(){}, +amX:function amX(){}, +an_:function an_(){}, +a8k:function a8k(a,b,c,d,e,f,g){var _=this +_.a2=a +_.dY=$ +_.aK=b +_.b6=c +_.c_=$ +_.cp=!0 +_.d8$=d +_.a2$=e +_.dF$=f +_.fx=null +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +a8j:function a8j(a,b){var _=this +_.k3$=a +_.fx=null +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +a8l:function a8l(){}, +a8m:function a8m(a,b,c,d,e,f,g){var _=this +_.a2=a +_.dY=$ +_.aK=b +_.b6=c +_.c_=$ +_.cp=!0 +_.d8$=d +_.a2$=e +_.dF$=f +_.fx=null +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +aVs:function aVs(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aVt:function aVt(){}, +aVu:function aVu(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +aVq:function aVq(){}, +aVr:function aVr(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +EU:function EU(a,b,c){var _=this +_.b=_.w=null +_.c=!1 +_.AD$=a +_.ds$=b +_.a3$=c +_.a=null}, +a8n:function a8n(a,b,c,d,e,f,g){var _=this +_.dY=a +_.aK=b +_.b6=c +_.c_=$ +_.cp=!0 +_.d8$=d +_.a2$=e +_.dF$=f +_.fx=null +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +a8p:function a8p(a,b,c,d,e,f){var _=this +_.aK=a +_.b6=b +_.c_=$ +_.cp=!0 +_.d8$=c +_.a2$=d +_.dF$=e +_.fx=null +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +aRf:function aRf(a,b,c){this.a=a +this.b=b +this.c=c}, +nc:function nc(){}, +aRj:function aRj(){}, +hr:function hr(a,b,c){var _=this +_.b=null +_.c=!1 +_.AD$=a +_.ds$=b +_.a3$=c +_.a=null}, +p8:function p8(){}, +aRg:function aRg(a,b,c){this.a=a +this.b=b +this.c=c}, +aRi:function aRi(a,b){this.a=a +this.b=b}, +aRh:function aRh(){}, +TN:function TN(){}, +alD:function alD(){}, +alE:function alE(){}, +amY:function amY(){}, +amZ:function amZ(){}, +NM:function NM(){}, +a8q:function a8q(a,b,c,d){var _=this +_.dH=null +_.cY=a +_.e5=b +_.k3$=c +_.fx=null +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +alB:function alB(){}, +btF(a,b){return new A.lz(a.a-b.a,a.b-b.b,b.c-a.c,b.d-a.d)}, +bLw(a,b,c){var s,r,q,p,o +if(a==b)return a +if(a==null)return new A.lz(b.a*c,b.b*c,b.c*c,b.d*c) +if(b==null){s=1-c +return new A.lz(b.a.av(0,s),b.b.av(0,s),b.c.av(0,s),b.d.av(0,s))}r=A.ag(a.a,b.a,c) +r.toString +q=A.ag(a.b,b.b,c) +q.toString +p=A.ag(a.c,b.c,c) +p.toString +o=A.ag(a.d,b.d,c) +o.toString +return new A.lz(r,q,p,o)}, +bLD(a,b,c,d,e){var s=new A.Ei(a,e,d,c,A.ay(t.O5),0,null,null,A.ay(t.T)) +s.b4() +s.I(0,b) +return s}, +z0(a,b){var s,r,q,p +for(s=t.Qv,r=a,q=0;r!=null;){p=r.b +p.toString +s.a(p) +if(!p.gMi())q=Math.max(q,A.l_(b.$1(r))) +r=p.a3$}return q}, +btK(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.f3.Gv(c.a-s-n)}else{n=b.x +r=n!=null?B.f3.Gv(n):B.f3}n=b.e +if(n!=null&&b.r!=null){s=b.r +s.toString +n.toString +r=r.NA(c.b-s-n)}else{n=b.y +if(n!=null)r=r.NA(n)}a.cS(r,!0) +q=b.w +if(!(q!=null)){n=b.f +q=n!=null?c.a-n-a.gq(a).a:d.wO(t.EP.a(c.a4(0,a.gq(a)))).a}p=(q<0||q+a.gq(a).a>c.a)&&!0 +o=b.e +if(!(o!=null)){n=b.r +o=n!=null?c.b-n-a.gq(a).b:d.wO(t.EP.a(c.a4(0,a.gq(a)))).b}if(o<0||o+a.gq(a).b>c.b)p=!0 +b.sc5(0,new A.m(q,o)) +return p}, +lz:function lz(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +fP:function fP(a,b,c){var _=this +_.y=_.x=_.w=_.r=_.f=_.e=null +_.ds$=a +_.a3$=b +_.a=c}, +aak:function aak(a,b){this.a=a +this.b=b}, +Ei:function Ei(a,b,c,d,e,f,g,h,i){var _=this +_.B=!1 +_.W=null +_.a6=a +_.an=b +_.ao=c +_.aN=d +_.aZ=e +_.d8$=f +_.a2$=g +_.dF$=h +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +aRn:function aRn(a){this.a=a}, +aRl:function aRl(a){this.a=a}, +aRm:function aRm(a){this.a=a}, +aRk:function aRk(a){this.a=a}, +ND:function ND(a,b,c,d,e,f,g,h,i,j){var _=this +_.hY=a +_.B=!1 +_.W=null +_.a6=b +_.an=c +_.ao=d +_.aN=e +_.aZ=f +_.d8$=g +_.a2$=h +_.dF$=i +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=j +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null}, +aQO:function aQO(a,b,c){this.a=a +this.b=b +this.c=c}, +alH:function alH(){}, +alI:function alI(){}, +PS:function PS(a,b){this.a=a +this.b=b}, +z1:function z1(){}, +alL:function alL(){}, +btG(a){var s +for(s=t.NW;a!=null;){if(s.b(a))return a +a=a.gbP(a)}return null}, +bLI(a,b,c){var s=b.aq.a)return q +else if(a0)return a.aQR(0,1e5) +return!0}, +Gx:function Gx(a){this.a=a +this.b=null}, +za:function za(a,b){this.a=a +this.b=b}, +aN9:function aN9(a){this.a=a}, +ij:function ij(){}, +aSR:function aSR(a){this.a=a}, +aST:function aST(a){this.a=a}, +aSU:function aSU(a,b){this.a=a +this.b=b}, +aSV:function aSV(a){this.a=a}, +aSQ:function aSQ(a){this.a=a}, +aSS:function aSS(a){this.a=a}, +blQ(){var s=new A.zJ(new A.aD(new A.a7($.ac,t.b),t.gR)) +s.a5Z() +return s}, +zI:function zI(a,b){var _=this +_.a=null +_.b=!1 +_.c=null +_.d=a +_.e=null +_.f=b +_.r=$}, +zJ:function zJ(a){this.a=a +this.c=this.b=null}, +b_2:function b_2(a){this.a=a}, +PB:function PB(a){this.a=a}, +a95:function a95(){}, +aTS:function aTS(a){this.a=a}, +ayc(a){var s=$.bjO.i(0,a) +if(s==null){s=$.bqz +$.bqz=s+1 +$.bjO.n(0,a,s) +$.bqy.n(0,s,a)}return s}, +bM9(a,b){var s +if(a.length!==b.length)return!1 +for(s=0;s=0){q.S(r,0,p).split("\n") +q.cm(r,p+2) +n.push(new A.Ls())}else n.push(new A.Ls())}return n}, +bMf(a){switch(a){case"AppLifecycleState.resumed":return B.iQ +case"AppLifecycleState.inactive":return B.mc +case"AppLifecycleState.hidden":return B.md +case"AppLifecycleState.paused":return B.iR +case"AppLifecycleState.detached":return B.h7}return null}, +EK:function EK(){}, +aUn:function aUn(a){this.a=a}, +aUm:function aUm(a){this.a=a}, +b4n:function b4n(){}, +b4o:function b4o(a){this.a=a}, +b4p:function b4p(a){this.a=a}, +auK:function auK(){}, +BF(a){var s=0,r=A.y(t.H) +var $async$BF=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=2 +return A.t(B.bs.e_("Clipboard.setData",A.am(["text",a.a],t.N,t.z),t.H),$async$BF) +case 2:return A.w(null,r)}}) +return A.x($async$BF,r)}, +axm(a){var s=0,r=A.y(t.VE),q,p +var $async$axm=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=3 +return A.t(B.bs.e_("Clipboard.getData",a,t.a),$async$axm) +case 3:p=c +if(p==null){q=null +s=1 +break}q=new A.tp(A.bm(J.b7(p,"text"))) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$axm,r)}, +tp:function tp(a){this.a=a}, +bJk(a){var s,r,q=a.c,p=B.ak_.i(0,q) +if(p==null)p=new A.M(q) +q=a.d +s=B.ake.i(0,q) +if(s==null)s=new A.o(q) +r=a.a +switch(a.b.a){case 0:return new A.xR(p,s,a.e,r,a.f) +case 1:return new A.u4(p,s,null,r,a.f) +case 2:return new A.Lm(p,s,a.e,r,!1)}}, +D1:function D1(a,b,c){this.c=a +this.a=b +this.b=c}, +u2:function u2(){}, +xR:function xR(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +u4:function u4(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +Lm:function Lm(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aFE:function aFE(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=!1 +_.e=null}, +a3g:function a3g(a,b){this.a=a +this.b=b}, +Ll:function Ll(a,b){this.a=a +this.b=b}, +a3h:function a3h(a,b,c,d){var _=this +_.a=null +_.b=a +_.c=b +_.d=null +_.e=c +_.f=d}, +aib:function aib(){}, +aI3:function aI3(a,b,c){this.a=a +this.b=b +this.c=c}, +aI4:function aI4(){}, +o:function o(a){this.a=a}, +M:function M(a){this.a=a}, +aid:function aid(){}, +a7f(a,b,c,d){return new A.yy(a,c,b,d)}, +bl5(a){return new A.M7(a)}, +oU:function oU(a,b){this.a=a +this.b=b}, +yy:function yy(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +M7:function M7(a){this.a=a}, +aYm:function aYm(){}, +aHC:function aHC(){}, +aHE:function aHE(){}, +aXG:function aXG(){}, +aXI:function aXI(a,b){this.a=a +this.b=b}, +aXK:function aXK(){}, +bOM(a){var s,r,q +for(s=A.l(a),s=s.h("@<1>").V(s.z[1]),r=new A.bT(J.al(a.a),a.b,s.h("bT<1,2>")),s=s.z[1];r.v();){q=r.a +if(q==null)q=s.a(q) +if(!q.k(0,B.cD))return q}return null}, +aKT:function aKT(a,b){this.a=a +this.b=b}, +Ma:function Ma(){}, +ev:function ev(){}, +ag0:function ag0(){}, +any:function any(a,b){this.a=a +this.b=b}, +ph:function ph(a){this.a=a}, +ajm:function ajm(){}, +bKb(a,b,c){return new A.m7(a,b,c)}, +tg:function tg(a,b,c){this.a=a +this.b=b +this.$ti=c}, +au7:function au7(a,b){this.a=a +this.b=b}, +m7:function m7(a,b,c){this.a=a +this.b=b +this.c=c}, +aKy:function aKy(a,b){this.a=a +this.b=b}, +nn:function nn(a,b,c){this.a=a +this.b=b +this.c=c}, +aC_:function aC_(a){this.a=a}, +aC1:function aC1(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aC0:function aC0(a,b){this.a=a +this.b=b}, +aC2:function aC2(a,b,c){this.a=a +this.b=b +this.c=c}, +bLm(a){var s,r,q,p,o={} +o.a=null +s=new A.aOV(o,a).$0() +r=$.biD().d +q=A.l(r).h("cl<1>") +p=A.iJ(new A.cl(r,q),q.h("z.E")).p(0,s.gq7()) +q=J.b7(a,"type") +q.toString +A.bm(q) +switch(q){case"keydown":return new A.p6(o.a,p,s) +case"keyup":return new A.E9(null,!1,s) +default:throw A.c(A.qs("Unknown key event type: "+q))}}, +xS:function xS(a,b){this.a=a +this.b=b}, +lp:function lp(a,b){this.a=a +this.b=b}, +Nl:function Nl(){}, +nw:function nw(){}, +aOV:function aOV(a,b){this.a=a +this.b=b}, +p6:function p6(a,b,c){this.a=a +this.b=b +this.c=c}, +E9:function E9(a,b,c){this.a=a +this.b=b +this.c=c}, +aP_:function aP_(a,b){this.a=a +this.d=b}, +f1:function f1(a,b){this.a=a +this.b=b}, +akS:function akS(){}, +akR:function akR(){}, +a7F:function a7F(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +NS:function NS(a,b){var _=this +_.b=_.a=null +_.f=_.e=_.d=_.c=!1 +_.r=a +_.k4$=0 +_.ok$=b +_.p2$=_.p1$=0 +_.p3$=!1}, +aRE:function aRE(a){this.a=a}, +aRF:function aRF(a){this.a=a}, +fz:function fz(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}, +aRB:function aRB(){}, +aRC:function aRC(){}, +aRA:function aRA(){}, +aRD:function aRD(){}, +bGH(a,b){var s,r,q,p,o=A.a([],t.bt),n=J.aj(a),m=0,l=0 +while(!0){if(!(m1 +if(a1===0)m=0===a1 +else m=!1 +l=n&&a3a +q=!l +i=q&&!m&&sd||!q||k +if(c===o)return new A.Fk(c,p,r) +else if((!h||i)&&s)return new A.aaN(new A.dl(!n?a-1:b,a),c,p,r) +else if((b===a||j)&&s)return new A.aaO(B.c.S(a0,d,d+(a1-d)),a,c,p,r) +else if(e)return new A.aaP(a0,new A.dl(b,a),c,p,r) +return new A.Fk(c,p,r)}, +v7:function v7(){}, +aaO:function aaO(a,b,c,d,e){var _=this +_.d=a +_.e=b +_.a=c +_.b=d +_.c=e}, +aaN:function aaN(a,b,c,d){var _=this +_.d=a +_.a=b +_.b=c +_.c=d}, +aaP:function aaP(a,b,c,d,e){var _=this +_.d=a +_.e=b +_.a=c +_.b=d +_.c=e}, +Fk:function Fk(a,b,c){this.a=a +this.b=b +this.c=c}, +anS:function anS(){}, +bss(a,b){var s,r,q,p,o=a.a,n=new A.F5(o,0,0) +o=o.length===0?B.c1:new A.fq(o) +if(o.gt(o)>b)n.HZ(b,0) +s=n.gG(n) +o=a.b +r=s.length +o=o.Eh(Math.min(o.a,r),Math.min(o.b,r)) +q=a.c +p=q.a +q=q.b +return new A.eQ(s,o,p!==q&&r>p?new A.dl(p,Math.min(q,r)):B.ca)}, +a5U:function a5U(a,b){this.a=a +this.b=b}, +ri:function ri(){}, +ajq:function ajq(a,b){this.a=a +this.b=b}, +bdg:function bdg(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=!1}, +Kp:function Kp(a,b,c){this.a=a +this.b=b +this.c=c}, +aD6:function aD6(a,b,c){this.a=a +this.b=b +this.c=c}, +a3v:function a3v(a,b){this.a=a +this.b=b}, +buB(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){return new A.aZh(i,l,k,!0,c,m,n,!0,f,h,o,j,!0,a,!1)}, +bSV(a){switch(a){case"TextAffinity.downstream":return B.t +case"TextAffinity.upstream":return B.aT}return null}, +buz(a){var s,r,q,p,o=J.aj(a),n=A.bm(o.i(a,"text")),m=A.bw(o.i(a,"selectionBase")) +if(m==null)m=-1 +s=A.bw(o.i(a,"selectionExtent")) +if(s==null)s=-1 +r=A.bSV(A.af(o.i(a,"selectionAffinity"))) +if(r==null)r=B.t +q=A.cN(o.i(a,"selectionIsDirectional")) +p=A.dq(r,m,s,q===!0) +m=A.bw(o.i(a,"composingBase")) +if(m==null)m=-1 +o=A.bw(o.i(a,"composingExtent")) +return new A.eQ(n,p,new A.dl(m,o==null?-1:o))}, +buC(a){var s=A.a([],t.u1),r=$.buD +$.buD=r+1 +return new A.aZi(s,r,a)}, +bSX(a){switch(a){case"TextInputAction.none":return B.asf +case"TextInputAction.unspecified":return B.asg +case"TextInputAction.go":return B.asj +case"TextInputAction.search":return B.ask +case"TextInputAction.send":return B.asl +case"TextInputAction.next":return B.asm +case"TextInputAction.previous":return B.asn +case"TextInputAction.continueAction":return B.aso +case"TextInputAction.join":return B.asp +case"TextInputAction.route":return B.ash +case"TextInputAction.emergencyCall":return B.asi +case"TextInputAction.done":return B.P_ +case"TextInputAction.newline":return B.OZ}throw A.c(A.Cr(A.a([A.tC("Unknown text input action: "+a)],t.F)))}, +bSW(a){switch(a){case"FloatingCursorDragState.start":return B.xk +case"FloatingCursorDragState.update":return B.nm +case"FloatingCursorDragState.end":return B.nn}throw A.c(A.Cr(A.a([A.tC("Unknown text cursor action: "+a)],t.F)))}, +a9M:function a9M(a,b){this.a=a +this.b=b}, +a9N:function a9N(a,b){this.a=a +this.b=b}, +Fp:function Fp(a,b,c){this.a=a +this.b=b +this.c=c}, +kc:function kc(a,b){this.a=a +this.b=b}, +aYV:function aYV(a,b){this.a=a +this.b=b}, +aZh:function aZh(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 +_.z=j +_.Q=k +_.as=l +_.at=m +_.ax=n +_.ay=o}, +Kx:function Kx(a,b){this.a=a +this.b=b}, +aOU:function aOU(a,b){this.a=a +this.b=b}, +eQ:function eQ(a,b,c){this.a=a +this.b=b +this.c=c}, +aZ_:function aZ_(a,b){this.a=a +this.b=b}, +mk:function mk(a,b){this.a=a +this.b=b}, +aZS:function aZS(){}, +aZf:function aZf(){}, +zi:function zi(a,b,c){this.a=a +this.b=b +this.c=c}, +aZi:function aZi(a,b,c){var _=this +_.d=_.c=_.b=_.a=null +_.e=a +_.f=b +_.r=c}, +aaT:function aaT(a,b,c){var _=this +_.a=a +_.b=b +_.c=$ +_.d=null +_.e=$ +_.f=c +_.w=_.r=!1}, +aZy:function aZy(a){this.a=a}, +aZw:function aZw(){}, +aZv:function aZv(a,b){this.a=a +this.b=b}, +aZx:function aZx(a){this.a=a}, +aZz:function aZz(a){this.a=a}, +Pq:function Pq(){}, +ak2:function ak2(){}, +b9o:function b9o(){}, +apS:function apS(){}, +abm:function abm(a,b){this.a=a +this.b=b}, +abn:function abn(){this.a=$ +this.b=null}, +b_S:function b_S(){}, +bRO(a){var s=A.b6("parent") +a.uc(new A.bfy(s)) +return s.aH()}, +pY(a,b){return new A.pX(a,b,null)}, +Xo(a,b){var s,r,q=t.L1,p=a.ou(q) +for(;s=p!=null,s;p=r){if(b.$1(p))break +s=A.bRO(p).x +r=s==null?null:s.i(0,A.cs(q))}return s}, +bji(a){var s={} +s.a=null +A.Xo(a,new A.ash(s)) +return B.RK}, +bjk(a,b,c){var s={} +s.a=null +if((b==null?null:A.p(b))==null)A.cs(c) +A.Xo(a,new A.ask(s,b,a,c)) +return s.a}, +bjj(a,b){var s={} +s.a=null +A.cs(b) +A.Xo(a,new A.asi(s,null,b)) +return s.a}, +asg(a,b,c){var s,r=b==null?null:A.p(b) +if(r==null)r=A.cs(c) +s=a.r.i(0,r) +if(c.h("cc<0>?").b(s))return s +else return null}, +w9(a,b,c){var s={} +s.a=null +A.Xo(a,new A.asj(s,b,a,c)) +return s.a}, +bEX(a,b,c){var s={} +s.a=null +A.Xo(a,new A.asl(s,b,a,c)) +return s.a}, +aDF(a,b,c,d,e,f,g,h,i,j){return new A.xk(d,e,!1,a,j,h,i,g,f,c,null)}, +bqM(a){return new A.JS(a,new A.bd(A.a([],t.h),t.o))}, +bfy:function bfy(a){this.a=a}, +bA:function bA(){}, +cc:function cc(){}, +f6:function f6(){}, +cz:function cz(a,b,c){var _=this +_.c=a +_.a=b +_.b=null +_.$ti=c}, +asf:function asf(){}, +pX:function pX(a,b,c){this.d=a +this.e=b +this.a=c}, +ash:function ash(a){this.a=a}, +ask:function ask(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +asi:function asi(a,b,c){this.a=a +this.b=b +this.c=c}, +asj:function asj(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +asl:function asl(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Qj:function Qj(a,b,c){var _=this +_.d=a +_.e=b +_.a=null +_.b=c +_.c=null}, +b1I:function b1I(a){this.a=a}, +Qi:function Qi(a,b,c,d,e){var _=this +_.f=a +_.r=b +_.w=c +_.b=d +_.a=e}, +xk:function xk(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.c=a +_.d=b +_.e=c +_.w=d +_.x=e +_.y=f +_.z=g +_.Q=h +_.as=i +_.ax=j +_.a=k}, +RT:function RT(a,b){var _=this +_.f=_.e=_.d=!1 +_.r=a +_.a=null +_.b=b +_.c=null}, +b65:function b65(a){this.a=a}, +b63:function b63(a){this.a=a}, +b5Z:function b5Z(a){this.a=a}, +b6_:function b6_(a){this.a=a}, +b5Y:function b5Y(a,b){this.a=a +this.b=b}, +b62:function b62(a){this.a=a}, +b60:function b60(a){this.a=a}, +b61:function b61(a,b){this.a=a +this.b=b}, +b64:function b64(a,b){this.a=a +this.b=b}, +abN:function abN(a){this.a=a +this.b=null}, +JS:function JS(a,b){this.c=a +this.a=b +this.b=null}, +ta:function ta(){}, +tj:function tj(){}, +kx:function kx(){}, +a1_:function a1_(){}, +r0:function r0(){}, +a7o:function a7o(a){var _=this +_.f=_.e=$ +_.a=a +_.b=null}, +H_:function H_(){}, +T2:function T2(a,b,c,d,e,f,g,h){var _=this +_.e=a +_.f=b +_.aIY$=c +_.aIZ$=d +_.aJ_$=e +_.aJ0$=f +_.a=g +_.b=null +_.$ti=h}, +T3:function T3(a,b,c,d,e,f,g,h){var _=this +_.e=a +_.f=b +_.aIY$=c +_.aIZ$=d +_.aJ_$=e +_.aJ0$=f +_.a=g +_.b=null +_.$ti=h}, +R4:function R4(a,b,c,d){var _=this +_.c=a +_.d=b +_.a=c +_.b=null +_.$ti=d}, +adQ:function adQ(){}, +adO:function adO(){}, +ai0:function ai0(){}, +Wd:function Wd(){}, +We:function We(){}, +bpQ(a,b,c){return new A.Ib(a,b,c,null)}, +Ib:function Ib(a,b,c,d){var _=this +_.c=a +_.e=b +_.f=c +_.a=d}, +ae0:function ae0(a,b,c){var _=this +_.ff$=a +_.c3$=b +_.a=null +_.b=c +_.c=null}, +ae_:function ae_(a,b,c,d,e,f,g,h){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.x=e +_.y=f +_.c=g +_.a=h}, +apd:function apd(){}, +bpR(a,b,c,d,e,f,g){return new A.Ic(a,b,d,e,f,g,c,null)}, +bF1(a,b){return new A.cY(b,!1,a,new A.bS(a.a,t.Ll))}, +bF0(a,b){var s=A.a8(b,!0,t.l7) +if(a!=null)s.push(a) +return A.fp(B.a7,s,B.C,B.aJ,null)}, +vq:function vq(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +Ic:function Ic(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}, +Ql:function Ql(a,b,c,d,e){var _=this +_.d=null +_.e=a +_.f=b +_.r=0 +_.dL$=c +_.b7$=d +_.a=null +_.b=e +_.c=null}, +b20:function b20(a,b,c){this.a=a +this.b=b +this.c=c}, +b2_:function b2_(a,b){this.a=a +this.b=b}, +b21:function b21(){}, +b22:function b22(a){this.a=a}, +VM:function VM(){}, +bjq(a,b,c){return new A.Ii(b,a,null,c.h("Ii<0>"))}, +Ii:function Ii(a,b,c,d){var _=this +_.e=a +_.c=b +_.a=c +_.$ti=d}, +bTr(a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0=null +if(a1==null||a1.length===0)return B.b.gO(a2) +s=t.N +r=t.da +q=A.cA(a0,a0,a0,s,r) +p=A.cA(a0,a0,a0,s,r) +o=A.cA(a0,a0,a0,s,r) +n=A.cA(a0,a0,a0,s,r) +m=A.cA(a0,a0,a0,t.v,r) +for(l=0;l<13;++l){k=a2[l] +s=k.a +r=B.cQ.i(0,s) +if(r==null)r=s +j=A.i(k.b) +i=k.c +h=B.dr.i(0,i) +if(h==null)h=i +h=r+"_"+j+"_"+A.i(h) +if(q.i(0,h)==null)q.n(0,h,k) +r=B.cQ.i(0,s) +r=(r==null?s:r)+"_"+j +if(o.i(0,r)==null)o.n(0,r,k) +r=B.cQ.i(0,s) +if(r==null)r=s +j=B.dr.i(0,i) +if(j==null)j=i +j=r+"_"+A.i(j) +if(p.i(0,j)==null)p.n(0,j,k) +r=B.cQ.i(0,s) +s=r==null?s:r +if(n.i(0,s)==null)n.n(0,s,k) +s=B.dr.i(0,i) +if(s==null)s=i +if(m.i(0,s)==null)m.n(0,s,k)}for(g=a0,f=g,e=0;e")),new A.azl(),r.h("eu<1,L>"))}, +bGZ(a,b){var s,r,q,p,o=B.b.gO(a),n=A.bqI(b,o) +for(s=a.length,r=0;rr)return a.a4(0,new A.m(p,r)).ge9() +else return p-q}}else{p=b.c +if(q>p){s=a.b +r=b.b +if(sr)return a.a4(0,new A.m(p,r)).ge9() +else return q-p}}else{q=a.b +p=b.b +if(qp)return q-p +else return 0}}}}, +bqK(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=t.AO,g=A.a([a],h) +for(s=b.gam(b);s.v();g=q){r=s.gG(s) +q=A.a([],h) +for(p=g.length,o=r.a,n=r.b,m=r.d,r=r.c,l=0;l=n&&k.d<=m){i=k.a +if(ir)q.push(new A.L(r,j,r+(i-r),j+(k.d-j)))}else{i=k.a +if(i>=o&&k.c<=r){if(jm)q.push(new A.L(i,m,i+(k.c-i),m+(j-m)))}else q.push(k)}}}return g}, +bGY(a,b){var s,r=a.a +if(r>=0)if(r<=b.a){s=a.b +s=s>=0&&s<=b.b}else s=!1 +else s=!1 +if(s)return a +else return new A.m(Math.min(Math.max(0,r),b.a),Math.min(Math.max(0,a.b),b.b))}, +JR:function JR(a,b,c){this.c=a +this.d=b +this.a=c}, +azk:function azk(){}, +azl:function azl(){}, +a10:function a10(a,b){this.a=a +this.$ti=b}, +bHp(a){var s=a.aj(t.tM) +return s.aQZ()}, +K0:function K0(a,b){this.c=a +this.a=b}, +agq:function agq(a,b){var _=this +_.d=a +_.a=null +_.b=b +_.c=null}, +Hb:function Hb(a){var _=this +_.k4$=0 +_.ok$=a +_.p2$=_.p1$=0 +_.p3$=!1}, +Sh:function Sh(a,b,c){this.f=a +this.b=b +this.a=c}, +C7:function C7(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +Rz:function Rz(a,b,c){var _=this +_.d=$ +_.e=a +_.f=b +_.a=null +_.b=c +_.c=null}, +bri(a,b,c,d,e,f,g,h,i,j,k,l,m,n,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){var s,r,q,p,o +if(e0==null)s=b7?B.pq:B.pr +else s=e0 +if(e1==null)r=b7?B.ps:B.pt +else r=e1 +if(t.qY.b(d5)&&!0)q=B.pI +else if(b7)q=c7?B.pI:B.axD +else q=c7?B.axE:B.axF +p=b2==null?A.bHw(d,b4):b2 +if(b4===1){o=A.a([$.bAG()],t.VS) +B.b.I(o,a9==null?B.S8:a9)}else o=a9 +return new A.Cc(j,a7,b8,b7,e8,f1,c7,a8,q,d9,d8==null?!c7:d8,!0,s,r,!0,e4,f3,e3,e5,e7,e6,f0,k,b,f,b4,b5,!1,e,d4,d5,p,e9,c0,c1,c4,b9,c2,c3,c5,o,b6,!0,a1,l,a0,n,m,c6,d6,d7,b1,d2,a4,a2,d1,d3,!0,d,c,g,c9,!0,h,i,e2,b3,b0)}, +bHw(a,b){return b===1?B.P0:B.pE}, +bHv(a){var s,r=a==null,q=r?null:a.a,p=r||a.k(0,B.is) +r=q==null +if(r){$.ap.toString +$.bO() +s=!1}else s=!0 +if(p||!s)return B.is +if(r){r=new A.ayp() +r.b=B.aoi}else r=q +return a.aHb(r)}, +vP(a,b,c,d,e,f,g){return new A.V7(a,e,f,d,b,c,new A.bd(A.a([],t.h),t.o),g.h("V7<0>"))}, +af7:function af7(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +ali:function ali(a,b,c,d){var _=this +_.D=a +_.ac=null +_.az=b +_.k3$=c +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +rh:function rh(a,b){var _=this +_.a=a +_.k4$=0 +_.ok$=b +_.p2$=_.p1$=0 +_.p3$=!1}, +Fy:function Fy(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +kV:function kV(a,b){this.a=a +this.b=b}, +b4E:function b4E(a,b,c){var _=this +_.b=a +_.c=b +_.d=0 +_.a=c}, +Cc:function Cc(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){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 +_.fy=a2 +_.go=a3 +_.id=a4 +_.k1=a5 +_.k2=a6 +_.k3=a7 +_.k4=a8 +_.ok=a9 +_.p1=b0 +_.p2=b1 +_.p3=b2 +_.p4=b3 +_.R8=b4 +_.RG=b5 +_.rx=b6 +_.ry=b7 +_.to=b8 +_.x1=b9 +_.x2=c0 +_.xr=c1 +_.y1=c2 +_.y2=c3 +_.bL=c4 +_.co=c5 +_.aK=c6 +_.b6=c7 +_.c_=c8 +_.cp=c9 +_.ct=d0 +_.B=d1 +_.W=d2 +_.a6=d3 +_.an=d4 +_.ao=d5 +_.aN=d6 +_.aZ=d7 +_.bt=d8 +_.Y=d9 +_.b3=e0 +_.bd=e1 +_.eM=e2 +_.h1=e3 +_.dG=e4 +_.fo=e5 +_.de=e6 +_.he=e7 +_.a=e8}, +tA:function tA(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.e=_.d=null +_.f=$ +_.r=a +_.w=b +_.x=c +_.Q=_.z=null +_.as=d +_.at=null +_.ax=e +_.ay=f +_.ch=g +_.CW=!1 +_.cx=null +_.db=_.cy=$ +_.fr=_.dy=_.dx=null +_.fx=!0 +_.k2=_.k1=_.id=_.go=_.fy=null +_.k3=0 +_.p1=_.ok=_.k4=!1 +_.p2=$ +_.p3=0 +_.R8=_.p4=null +_.RG=$ +_.rx=-1 +_.ry=null +_.y1=_.xr=_.x2=_.x1=_.to=$ +_.dL$=h +_.b7$=i +_.mX$=j +_.a=null +_.b=k +_.c=null}, +aAx:function aAx(){}, +aB1:function aB1(a){this.a=a}, +aB6:function aB6(a){this.a=a}, +aAQ:function aAQ(a){this.a=a}, +aAR:function aAR(a){this.a=a}, +aAS:function aAS(a){this.a=a}, +aAT:function aAT(a){this.a=a}, +aAU:function aAU(a){this.a=a}, +aAV:function aAV(a){this.a=a}, +aAW:function aAW(a){this.a=a}, +aAX:function aAX(a){this.a=a}, +aAY:function aAY(a){this.a=a}, +aAZ:function aAZ(a){this.a=a}, +aB_:function aB_(a){this.a=a}, +aB0:function aB0(a){this.a=a}, +aB2:function aB2(a){this.a=a}, +aB4:function aB4(a){this.a=a}, +aAt:function aAt(a,b){this.a=a +this.b=b}, +aAB:function aAB(a,b){this.a=a +this.b=b}, +aB3:function aB3(a){this.a=a}, +aAv:function aAv(a){this.a=a}, +aAF:function aAF(a){this.a=a}, +aAy:function aAy(){}, +aAz:function aAz(a){this.a=a}, +aAA:function aAA(a){this.a=a}, +aAu:function aAu(){}, +aAw:function aAw(a){this.a=a}, +aAG:function aAG(a){this.a=a}, +aAI:function aAI(a){this.a=a}, +aAH:function aAH(a){this.a=a}, +aB9:function aB9(a){this.a=a}, +aB5:function aB5(a){this.a=a}, +aB7:function aB7(a){this.a=a}, +aB8:function aB8(a,b,c){this.a=a +this.b=b +this.c=c}, +aAC:function aAC(a,b){this.a=a +this.b=b}, +aAD:function aAD(a,b){this.a=a +this.b=b}, +aAE:function aAE(a,b){this.a=a +this.b=b}, +aAs:function aAs(a){this.a=a}, +aAK:function aAK(a){this.a=a}, +aAM:function aAM(a){this.a=a}, +aAL:function aAL(a){this.a=a}, +aAO:function aAO(a){this.a=a}, +aAN:function aAN(a){this.a=a}, +aAP:function aAP(a,b,c){this.a=a +this.b=b +this.c=c}, +aAJ:function aAJ(a){this.a=a}, +RA:function RA(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){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.x=e +_.y=f +_.z=g +_.Q=h +_.as=i +_.at=j +_.ax=k +_.ay=l +_.ch=m +_.CW=n +_.cx=o +_.cy=p +_.db=q +_.dx=r +_.dy=s +_.fr=a0 +_.fx=a1 +_.fy=a2 +_.go=a3 +_.id=a4 +_.k1=a5 +_.k2=a6 +_.k3=a7 +_.k4=a8 +_.ok=a9 +_.p1=b0 +_.p2=b1 +_.p3=b2 +_.p4=b3 +_.R8=b4 +_.RG=b5 +_.rx=b6 +_.ry=b7 +_.to=b8 +_.c=b9 +_.a=c0}, +bbD:function bbD(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}, +TX:function TX(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f}, +amc:function amc(a,b){var _=this +_.d=a +_.a=null +_.b=b +_.c=null}, +bbE:function bbE(a){this.a=a}, +o6:function o6(a,b,c,d,e){var _=this +_.x=a +_.e=b +_.b=c +_.c=d +_.a=e}, +af4:function af4(a){this.a=a}, +ry:function ry(a,b,c,d,e){var _=this +_.e=a +_.f=b +_.r=c +_.a=d +_.b=null +_.$ti=e}, +V7:function V7(a,b,c,d,e,f,g,h){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.x=e +_.y=f +_.a=g +_.b=null +_.$ti=h}, +V8:function V8(a,b,c){var _=this +_.e=a +_.r=_.f=null +_.a=b +_.b=null +_.$ti=c}, +amk:function amk(a,b){this.e=a +this.a=b +this.b=null}, +afr:function afr(a,b){this.e=a +this.a=b +this.b=null}, +ahs:function ahs(a,b){this.a=a +this.b=b}, +ap1:function ap1(a,b,c){var _=this +_.ay=a +_.w=!1 +_.a=b +_.k4$=0 +_.ok$=c +_.p2$=_.p1$=0 +_.p3$=!1}, +RB:function RB(){}, +agv:function agv(){}, +RC:function RC(){}, +agw:function agw(){}, +agx:function agx(){}, +bTK(a){var s,r,q +for(s=a.length,r=!1,q=0;q>"),n=new A.ad(a,new A.bae(),o) +for(s=new A.c2(n,n.gt(n),o.h("c2")),o=o.h("av.E"),r=null;s.v();){q=s.d +p=q==null?o.a(q):q +r=(r==null?p:r).AU(0,p)}if(r.gak(r))return B.b.gO(a).a +return B.b.F5(B.b.gO(a).ga9C(),r.gtk(r)).w}, +bwa(a,b){A.t2(a,new A.bag(b),t.zP)}, +bPA(a,b){A.t2(a,new A.bad(b),t.h7)}, +blq(){return new A.aQd(A.I(t.l5,t.UJ),A.bV9())}, +brE(a,b){return new A.KB(b==null?A.blq():b,a,null)}, +aDB(a){var s +for(;s=a.Q,s!=null;a=s){if(a.e==null)return null +if(a instanceof A.RS)return a}return null}, +xj(a){var s,r=A.bkw(a,!1,!0) +if(r==null)return null +s=A.aDB(r) +return s==null?null:s.dy}, +bfu:function bfu(a){this.a=a}, +Gu:function Gu(a,b){this.b=a +this.c=b}, +zQ:function zQ(a,b){this.a=a +this.b=b}, +abf:function abf(a,b){this.a=a +this.b=b}, +a23:function a23(){}, +aDC:function aDC(){}, +aDE:function aDE(a,b){this.a=a +this.b=b}, +aDD:function aDD(a){this.a=a}, +Gf:function Gf(a,b){this.a=a +this.b=b}, +ag7:function ag7(a){this.a=a}, +az0:function az0(){}, +bah:function bah(a){this.a=a}, +az8:function az8(a,b){this.a=a +this.b=b}, +aza:function aza(a){this.a=a}, +az9:function az9(a){this.a=a}, +azb:function azb(a){this.a=a}, +azc:function azc(a){this.a=a}, +az2:function az2(a){this.a=a}, +az3:function az3(a){this.a=a}, +az4:function az4(){}, +az5:function az5(a){this.a=a}, +az6:function az6(a){this.a=a}, +az7:function az7(){}, +az1:function az1(a,b,c){this.a=a +this.b=b +this.c=c}, +azd:function azd(a){this.a=a}, +aze:function aze(a){this.a=a}, +azf:function azf(a){this.a=a}, +azg:function azg(a){this.a=a}, +hd:function hd(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=null}, +bae:function bae(){}, +bag:function bag(a){this.a=a}, +baf:function baf(){}, +pD:function pD(a){this.a=a +this.b=null}, +bac:function bac(){}, +bad:function bad(a){this.a=a}, +aQd:function aQd(a,b){this.EZ$=a +this.a=b}, +aQe:function aQe(){}, +aQf:function aQf(){}, +aQg:function aQg(a){this.a=a}, +KB:function KB(a,b,c){this.c=a +this.f=b +this.a=c}, +RS:function RS(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 +_.y=_.x=_.w=null +_.z=!1 +_.Q=null +_.as=h +_.ax=_.at=null +_.ay=!1 +_.k4$=0 +_.ok$=i +_.p2$=_.p1$=0 +_.p3$=!1}, +ahi:function ahi(a){var _=this +_.d=$ +_.a=null +_.b=a +_.c=null}, +a8v:function a8v(a){this.a=a +this.b=null}, +yo:function yo(){}, +a6k:function a6k(a){this.a=a +this.b=null}, +yL:function yL(){}, +a7l:function a7l(a){this.a=a +this.b=null}, +tz:function tz(a){this.a=a}, +JQ:function JQ(a,b){this.c=a +this.a=b +this.b=null}, +ahj:function ahj(){}, +al0:function al0(){}, +apZ:function apZ(){}, +aq_:function aq_(){}, +bky(a){var s=a.aj(t.Jp) +return s==null?null:s.f}, +bOY(a,b,c){return new A.RV(b,c,a,null)}, +bIr(a){var s=null,r=$.aH() +return new A.lg(new A.NR(s,r),new A.z6(!1,r),s,A.I(t.yb,t.Q),s,!0,s,B.m,a.h("lg<0>"))}, +KH:function KH(a,b,c){this.c=a +this.w=b +this.a=c}, +KJ:function KJ(a,b){var _=this +_.d=0 +_.e=!1 +_.f=a +_.a=null +_.b=b +_.c=null}, +aE3:function aE3(){}, +aE4:function aE4(a){this.a=a}, +aE5:function aE5(a,b){this.a=a +this.b=b}, +RV:function RV(a,b,c,d){var _=this +_.f=a +_.r=b +_.b=c +_.a=d}, +qu:function qu(){}, +lg:function lg(a,b,c,d,e,f,g,h,i){var _=this +_.d=$ +_.e=a +_.f=b +_.cX$=c +_.je$=d +_.xj$=e +_.hd$=f +_.jf$=g +_.a=null +_.b=h +_.c=null +_.$ti=i}, +aE2:function aE2(a){this.a=a}, +aE1:function aE1(a,b){this.a=a +this.b=b}, +atv:function atv(a,b){this.a=a +this.b=b}, +b66:function b66(){}, +Gv:function Gv(){}, +aFb(a,b){return new A.bq(a,b.h("bq<0>"))}, +bP9(a){a.fd() +a.ci(A.bh2())}, +bHz(a,b){var s,r,q,p=a.d +p===$&&A.b() +s=b.d +s===$&&A.b() +r=p-s +if(r!==0)return r +q=b.Q +if(a.Q!==q)return q?-1:1 +return 0}, +bHA(a,b){var s=A.ab(b).h("ad<1,h_>") +return A.bGM(!0,A.a8(new A.ad(b,new A.aBe(),s),!0,s.h("av.E")),a,B.af7,!0,B.a1C,null)}, +bHy(a){a.cf() +a.ci(A.byL())}, +Kh(a){var s=a.a,r=s instanceof A.xh?s:null +return new A.a1z("",r,new A.kR())}, +bMK(a){var s=a.a8(),r=new A.il(s,a,B.an) +s.c=r +s.a=a +return r}, +bIW(a){return new A.jf(A.cA(null,null,null,t.E,t.X),a,B.an)}, +bKe(a){return new A.kF(A.dI(t.E),a,B.an)}, +bn5(a,b,c,d){var s=new A.cg(b,c,"widgets library",a,d,!1) +A.e6(s) +return s}, +hM:function hM(){}, +bq:function bq(a,b){this.a=a +this.$ti=b}, +tP:function tP(a,b){this.a=a +this.$ti=b}, +d:function d(){}, +a4:function a4(){}, +N:function N(){}, +bcx:function bcx(a,b){this.a=a +this.b=b}, +a9:function a9(){}, +b2:function b2(){}, +ho:function ho(){}, +bf:function bf(){}, +aG:function aG(){}, +a3t:function a3t(){}, +bv:function bv(){}, +fM:function fM(){}, +Gm:function Gm(a,b){this.a=a +this.b=b}, +ahQ:function ahQ(a){this.a=!1 +this.b=a}, +b6Z:function b6Z(a,b){this.a=a +this.b=b}, +av5:function av5(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}, +av6:function av6(a,b,c){this.a=a +this.b=b +this.c=c}, +Mt:function Mt(){}, +b8W:function b8W(a,b){this.a=a +this.b=b}, +bD:function bD(){}, +aBh:function aBh(a){this.a=a}, +aBf:function aBf(a){this.a=a}, +aBe:function aBe(){}, +aBi:function aBi(a){this.a=a}, +aBj:function aBj(a){this.a=a}, +aBk:function aBk(a){this.a=a}, +aBc:function aBc(a){this.a=a}, +aBg:function aBg(){}, +aBd:function aBd(a){this.a=a}, +a1z:function a1z(a,b,c){this.d=a +this.e=b +this.a=c}, +Jh:function Jh(){}, +axt:function axt(){}, +axu:function axu(){}, +F2:function F2(a,b){var _=this +_.c=_.b=_.a=_.ax=null +_.d=$ +_.e=a +_.f=null +_.r=b +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1}, +il:function il(a,b,c){var _=this +_.k3=a +_.k4=!1 +_.c=_.b=_.a=_.ax=null +_.d=$ +_.e=b +_.f=null +_.r=c +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1}, +Na:function Na(){}, +us:function us(a,b,c){var _=this +_.c=_.b=_.a=_.ax=null +_.d=$ +_.e=a +_.f=null +_.r=b +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1 +_.$ti=c}, +aN5:function aN5(a){this.a=a}, +jf:function jf(a,b,c){var _=this +_.y2=a +_.c=_.b=_.a=_.ax=null +_.d=$ +_.e=b +_.f=null +_.r=c +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1}, +bR:function bR(){}, +aRK:function aRK(){}, +a3s:function a3s(a,b){var _=this +_.c=_.b=_.a=_.ch=_.ax=null +_.d=$ +_.e=a +_.f=null +_.r=b +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1}, +Ow:function Ow(a,b){var _=this +_.c=_.b=_.a=_.ch=_.ax=_.k4=null +_.d=$ +_.e=a +_.f=null +_.r=b +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1}, +kF:function kF(a,b,c){var _=this +_.k4=$ +_.ok=a +_.c=_.b=_.a=_.ch=_.ax=null +_.d=$ +_.e=b +_.f=null +_.r=c +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1}, +aL9:function aL9(a){this.a=a}, +a8u:function a8u(){}, +tW:function tW(a,b,c){this.a=a +this.b=b +this.$ti=c}, +ajD:function ajD(a,b){var _=this +_.c=_.b=_.a=null +_.d=$ +_.e=a +_.f=null +_.r=b +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1}, +ajI:function ajI(a){this.a=a}, +anh:function anh(){}, +dY(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){return new A.a2d(b,a8,a9,a6,a7,a2,a4,a5,a3,f,l,o,n,m,b0,h,j,k,i,g,p,r,q,a0,a1,s,a,d,c,!1,b2,e)}, +xq:function xq(){}, +dH:function dH(a,b,c){this.a=a +this.b=b +this.$ti=c}, +a2d:function a2d(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 +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.ay=j +_.cy=k +_.db=l +_.dx=m +_.fr=n +_.to=o +_.x2=p +_.xr=q +_.y1=r +_.y2=s +_.bL=a0 +_.co=a1 +_.b6=a2 +_.c_=a3 +_.ct=a4 +_.B=a5 +_.W=a6 +_.aZ=a7 +_.bt=a8 +_.Y=a9 +_.bd=b0 +_.eM=b1 +_.a=b2}, +aES:function aES(a){this.a=a}, +aET:function aET(a,b){this.a=a +this.b=b}, +aEU:function aEU(a){this.a=a}, +aF_:function aF_(a,b){this.a=a +this.b=b}, +aF0:function aF0(a){this.a=a}, +aF1:function aF1(a,b){this.a=a +this.b=b}, +aF2:function aF2(a){this.a=a}, +aF3:function aF3(a,b){this.a=a +this.b=b}, +aF4:function aF4(a){this.a=a}, +aF5:function aF5(a,b){this.a=a +this.b=b}, +aF6:function aF6(a){this.a=a}, +aEV:function aEV(a,b){this.a=a +this.b=b}, +aEW:function aEW(a){this.a=a}, +aEX:function aEX(a,b){this.a=a +this.b=b}, +aEY:function aEY(a){this.a=a}, +aEZ:function aEZ(a,b){this.a=a +this.b=b}, +nv:function nv(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +E8:function E8(a,b){var _=this +_.d=a +_.a=_.e=null +_.b=b +_.c=null}, +aho:function aho(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +aTR:function aTR(){}, +b4s:function b4s(a){this.a=a}, +b4x:function b4x(a){this.a=a}, +b4w:function b4w(a){this.a=a}, +b4t:function b4t(a){this.a=a}, +b4u:function b4u(a){this.a=a}, +b4v:function b4v(a,b){this.a=a +this.b=b}, +b4y:function b4y(a){this.a=a}, +b4z:function b4z(a){this.a=a}, +b4A:function b4A(a,b){this.a=a +this.b=b}, +brZ(a,b,c,d,e,f){return new A.qy(e,b,a,c,d,f,null)}, +bs0(a,b,c){var s=A.I(t.K,t.U3) +a.ci(new A.aFS(c,new A.aFR(s,b))) +return s}, +bvX(a,b){var s,r=a.ga7() +r.toString +t.x.a(r) +s=r.cl(0,b==null?null:b.ga7()) +r=r.gq(r) +return A.jj(s,new A.L(0,0,0+r.a,0+r.b))}, +CH:function CH(a,b){this.a=a +this.b=b}, +qy:function qy(a,b,c,d,e,f,g){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.a=g}, +aFR:function aFR(a,b){this.a=a +this.b=b}, +aFS:function aFS(a,b){this.a=a +this.b=b}, +GD:function GD(a,b){var _=this +_.d=a +_.e=null +_.f=!0 +_.a=null +_.b=b +_.c=null}, +b6K:function b6K(a,b){this.a=a +this.b=b}, +b6J:function b6J(){}, +b6G:function b6G(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=$}, +rF:function rF(a,b){var _=this +_.a=a +_.b=$ +_.c=null +_.d=b +_.f=_.e=$ +_.r=null +_.x=_.w=!1}, +b6H:function b6H(a){this.a=a}, +b6I:function b6I(a,b){this.a=a +this.b=b}, +xs:function xs(a,b){this.a=a +this.b=b}, +aFQ:function aFQ(){}, +aFP:function aFP(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aFO:function aFO(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +h3(a,b,c,d){return new A.bB(a,d,b,c,null)}, +bB:function bB(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.x=c +_.z=d +_.a=e}, +aO:function aO(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +xB(a,b,c){return new A.xA(b,a,c)}, +oI(a,b){return new A.e4(new A.aGS(null,b,a),null)}, +a2O(a){var s,r,q,p,o,n,m=A.bs7(a).L(a),l=m.a,k=l==null +if(!k&&m.b!=null&&m.c!=null&&m.d!=null&&m.e!=null&&m.f!=null&&m.gi_(m)!=null)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.o +o=m.gi_(m) +if(o==null)o=B.nx.gi_(B.nx) +n=m.w +l=m.Em(p,k,r,o,q,n==null?null:n,l,s)}return l}, +bs7(a){var s=a.aj(t.Oh),r=s==null?null:s.w +return r==null?B.nx:r}, +xA:function xA(a,b,c){this.w=a +this.b=b +this.a=c}, +aGS:function aGS(a,b,c){this.a=a +this.b=b +this.c=c}, +qC(a,b,c){var s,r,q,p,o,n,m,l,k,j=null +if(a==b&&a!=null)return a +s=a==null +r=s?j:a.a +q=b==null +r=A.ag(r,q?j:b.a,c) +p=s?j:a.b +p=A.ag(p,q?j:b.b,c) +o=s?j:a.c +o=A.ag(o,q?j:b.c,c) +n=s?j:a.d +n=A.ag(n,q?j:b.d,c) +m=s?j:a.e +m=A.ag(m,q?j:b.e,c) +l=s?j:a.f +l=A.W(l,q?j:b.f,c) +k=s?j:a.gi_(a) +k=A.ag(k,q?j:b.gi_(b),c) +s=s?j:a.w +return new A.d4(r,p,o,n,m,l,k,A.bMk(s,q?j:b.w,c))}, +d4:function d4(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}, +ahM:function ahM(){}, +WM(a,b){var s,r +a.aj(t.l4) +s=$.arN() +r=A.d9(a,B.dh) +r=r==null?null:r.b +if(r==null)r=1 +return new A.xC(s,r,A.LC(a),A.eJ(a),b,A.c3())}, +bs8(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){return new A.CL(j,h,l,d,o,i,b,f,c,g,a,n,!1,e,k)}, +CL:function CL(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.z=h +_.Q=i +_.as=j +_.at=k +_.ax=l +_.ch=m +_.cy=n +_.a=o}, +Sa:function Sa(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}, +b6T:function b6T(a){this.a=a}, +b6S:function b6S(a,b,c){this.a=a +this.b=b +this.c=c}, +b6V:function b6V(a,b,c){this.a=a +this.b=b +this.c=c}, +b6U:function b6U(a,b){this.a=a +this.b=b}, +b6W:function b6W(a){this.a=a}, +b6X:function b6X(a){this.a=a}, +b6Y:function b6Y(a){this.a=a}, +apD:function apD(){}, +CN(a,b,c){return new A.a2S(a,c,b,null)}, +a2S:function a2S(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +bpP(a,b,c,d,e){return new A.Ia(a,d,e,b,c,null,null)}, +bpO(a,b,c,d){return new A.I7(a,d,b,c,null,null)}, +AY(a,b,c,d){return new A.I5(a,d,b,c,null,null)}, +a0E:function a0E(a,b){this.a=a +this.b=b}, +K6:function K6(a,b){this.a=a +this.b=b}, +x1:function x1(a,b){this.a=a +this.b=b}, +wm:function wm(a,b){this.a=a +this.b=b}, +Yv:function Yv(a,b){this.a=a +this.b=b}, +pk:function pk(a,b){this.a=a +this.b=b}, +a2W:function a2W(){}, +CP:function CP(){}, +aHh:function aHh(a){this.a=a}, +aHg:function aHg(a){this.a=a}, +aHf:function aHf(a,b){this.a=a +this.b=b}, +AZ:function AZ(){}, +asr:function asr(){}, +I8:function I8(a,b,c,d,e,f){var _=this +_.r=a +_.w=b +_.c=c +_.d=d +_.e=e +_.a=f}, +adX:function adX(a,b,c){var _=this +_.CW=null +_.e=_.d=$ +_.ff$=a +_.c3$=b +_.a=null +_.b=c +_.c=null}, +b1O:function b1O(){}, +Ia:function Ia(a,b,c,d,e,f,g){var _=this +_.r=a +_.w=b +_.x=c +_.c=d +_.d=e +_.e=f +_.a=g}, +adZ:function adZ(a,b,c){var _=this +_.dy=_.dx=_.db=_.cy=_.cx=_.CW=null +_.e=_.d=$ +_.ff$=a +_.c3$=b +_.a=null +_.b=c +_.c=null}, +b1T:function b1T(){}, +b1U:function b1U(){}, +b1V:function b1V(){}, +b1W:function b1W(){}, +b1X:function b1X(){}, +b1Y:function b1Y(){}, +I7:function I7(a,b,c,d,e,f){var _=this +_.r=a +_.w=b +_.c=c +_.d=d +_.e=e +_.a=f}, +adW:function adW(a,b,c){var _=this +_.z=null +_.e=_.d=_.Q=$ +_.ff$=a +_.c3$=b +_.a=null +_.b=c +_.c=null}, +b1N:function b1N(){}, +I5:function I5(a,b,c,d,e,f){var _=this +_.r=a +_.w=b +_.c=c +_.d=d +_.e=e +_.a=f}, +adV:function adV(a,b,c){var _=this +_.CW=null +_.e=_.d=$ +_.ff$=a +_.c3$=b +_.a=null +_.b=c +_.c=null}, +b1M:function b1M(){}, +I9:function I9(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}, +adY:function adY(a,b,c){var _=this +_.db=_.cy=_.cx=_.CW=null +_.e=_.d=$ +_.ff$=a +_.c3$=b +_.a=null +_.b=c +_.c=null}, +b1P:function b1P(){}, +b1Q:function b1Q(){}, +b1R:function b1R(){}, +b1S:function b1S(){}, +GG:function GG(){}, +bIX(a,b,c,d){var s,r=a.ou(d) +if(r==null)return +c.push(r) +s=r.e +s.toString +d.a(s) +return}, +aY(a,b,c){var s,r,q,p,o,n +if(b==null)return a.aj(c) +s=A.a([],t.Fa) +A.bIX(a,b,s,c) +if(s.length===0)return null +r=B.b.gX(s) +for(q=s.length,p=0;pMath.abs(s.a))s=new A.m(n,s.b) +if(Math.abs(o)>Math.abs(s.b))s=new A.m(s.a,o)}return A.bn6(s)}, +bn6(a){return new A.m(A.ar7(B.e.aF(a.a,9)),A.ar7(B.e.aF(a.b,9)))}, +bRN(a,b){if(a.k(0,b))return null +return Math.abs(b.a-a.a)>Math.abs(b.b-a.b)?B.ar:B.H}, +Lb:function Lb(a,b,c){this.x=a +this.ax=b +this.a=c}, +Sp:function Sp(a,b,c,d,e){var _=this +_.d=null +_.e=a +_.f=b +_.w=_.r=null +_.z=_.y=_.x=$ +_.at=_.as=_.Q=null +_.ay=_.ax=0 +_.ch=null +_.dL$=c +_.b7$=d +_.a=null +_.b=e +_.c=null}, +b7o:function b7o(){}, +ai1:function ai1(a,b,c,d,e,f,g){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.a=g}, +abd:function abd(a,b){var _=this +_.a=a +_.k4$=0 +_.ok$=b +_.p2$=_.p1$=0 +_.p3$=!1}, +RZ:function RZ(a,b){this.a=a +this.b=b}, +aN3:function aN3(a,b){this.a=a +this.b=b}, +W8:function W8(){}, +bxJ(a,b,c,d){var s=new A.cg(b,c,"widgets library",a,d,!1) +A.e6(s) +return s}, +tt:function tt(){}, +GK:function GK(a,b,c){var _=this +_.c=_.b=_.a=_.ch=_.ax=_.k4=null +_.d=$ +_.e=a +_.f=null +_.r=b +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1 +_.$ti=c}, +b7D:function b7D(a,b){this.a=a +this.b=b}, +b7E:function b7E(){}, +b7F:function b7F(){}, +lA:function lA(){}, +D5:function D5(a,b){this.c=a +this.a=b}, +TD:function TD(a,b,c,d,e){var _=this +_.Vg$=a +_.LC$=b +_.aa6$=c +_.k3$=d +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +aq5:function aq5(){}, +aq6:function aq6(){}, +bSi(a,b){var s,r,q,p,o,n,m,l,k={},j=t.n,i=t.z,h=A.I(j,i) +k.a=null +s=A.aW(j) +r=A.a([],t.a9) +for(j=b.length,q=0;q>")),i).be(new A.bfM(k,h),t.e3)}, +LC(a){var s=a.aj(t.Gk) +return s==null?null:s.r.f}, +A(a,b,c){var s=a.aj(t.Gk) +return s==null?null:c.h("0?").a(J.b7(s.r.e,b))}, +H1:function H1(a,b){this.a=a +this.b=b}, +bfK:function bfK(a){this.a=a}, +bfL:function bfL(){}, +bfM:function bfM(a,b){this.a=a +this.b=b}, +fK:function fK(){}, +ap5:function ap5(){}, +a0N:function a0N(){}, +SB:function SB(a,b,c,d){var _=this +_.r=a +_.w=b +_.b=c +_.a=d}, +LB:function LB(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +aiI:function aiI(a,b,c){var _=this +_.d=a +_.e=b +_.a=_.f=null +_.b=c +_.c=null}, +b7Q:function b7Q(a){this.a=a}, +b7R:function b7R(a,b){this.a=a +this.b=b}, +b7P:function b7P(a,b,c){this.a=a +this.b=b +this.c=c}, +bJK(a,b){var s,r +a.aj(t.bS) +s=A.bJL(a,b) +if(s==null)return null +a.OO(s,null) +r=s.e +r.toString +return b.a(r)}, +bJL(a,b){var s,r,q,p=a.ou(b) +if(p==null)return null +s=a.ou(t.bS) +if(s!=null){r=s.d +r===$&&A.b() +q=p.d +q===$&&A.b() +q=r>q +r=q}else r=!1 +if(r)return null +return p}, +bkS(a,b){var s={} +s.a=null +a.uc(new A.aIP(s,b)) +s=s.a +if(s==null)s=null +else{s=s.k3 +s.toString}return b.h("0?").a(s)}, +aIQ(a,b){var s={} +s.a=null +a.uc(new A.aIR(s,b)) +s=s.a +if(s==null)s=null +else{s=s.k3 +s.toString}return b.h("0?").a(s)}, +aIN(a,b){var s={} +s.a=null +a.uc(new A.aIO(s,b)) +s=s.a +s=s==null?null:s.ga7() +return b.h("0?").a(s)}, +aIP:function aIP(a,b){this.a=a +this.b=b}, +aIR:function aIR(a,b){this.a=a +this.b=b}, +aIO:function aIO(a,b){this.a=a +this.b=b}, +bsD(a,b){var s,r=b.a,q=a.a +if(rq?B.i.U(0,new A.m(q-r,0)):B.i}r=b.b +q=a.b +if(rq)s=s.U(0,new A.m(0,q-r))}return b.dq(s)}, +bsE(a,b,c){return new A.Dj(a,null,null,null,b,c)}, +oR:function oR(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aaV:function aaV(a,b){this.a=a +this.b=b}, +aZA:function aZA(){}, +y5:function y5(){this.b=this.a=null}, +aIS:function aIS(a,b){this.a=a +this.b=b}, +Dj:function Dj(a,b,c,d,e,f){var _=this +_.f=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f}, +Ea:function Ea(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f}, +aiK:function aiK(a,b,c){this.c=a +this.d=b +this.a=c}, +agj:function agj(a,b){this.b=a +this.c=b}, +aiJ:function aiJ(a,b,c,d,e){var _=this +_.e=a +_.f=b +_.r=c +_.c=d +_.a=e}, +alt:function alt(a,b,c,d,e){var _=this +_.D=a +_.ac=b +_.az=c +_.k3$=d +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +ni(a,b,c){return new A.nh(b,a,c)}, +aK9(a,b,c,d,e,f){return A.ni(a,A.aY(b,null,t.l).w.Xl(c,d,e,f),null)}, +bsP(a){return new A.e4(new A.aKb(a),null)}, +bsO(a,b){return new A.e4(new A.aKa(0,b,a),null)}, +d9(a,b){var s=A.aY(a,b,t.l) +return s==null?null:s.w}, +a6z:function a6z(a,b){this.a=a +this.b=b}, +hy:function hy(a,b){this.a=a +this.b=b}, +M1:function M1(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){var _=this +_.a=a +_.b=b +_.d=c +_.e=d +_.f=e +_.r=f +_.w=g +_.x=h +_.y=i +_.z=j +_.Q=k +_.as=l +_.at=m +_.ax=n +_.ay=o +_.ch=p +_.CW=q +_.cx=r}, +aK8:function aK8(a){this.a=a}, +nh:function nh(a,b,c){this.w=a +this.b=b +this.a=c}, +aKb:function aKb(a){this.a=a}, +aKa:function aKa(a,b,c){this.a=a +this.b=b +this.c=c}, +aM_:function aM_(a,b){this.a=a +this.b=b}, +SL:function SL(a,b,c){this.c=a +this.e=b +this.a=c}, +aj9:function aj9(a){var _=this +_.a=_.e=_.d=null +_.b=a +_.c=null}, +b8e:function b8e(a,b){this.a=a +this.b=b}, +apM:function apM(){}, +aKG(a,b,c,d,e,f,g){return new A.a61(c,d,e,!0,f,b,g,null)}, +bpN(a,b,c,d,e,f){return new A.Xv(d,e,!0,b,f,c,null)}, +amq:function amq(a,b,c){this.e=a +this.c=b +this.a=c}, +alA:function alA(a,b,c){var _=this +_.D=a +_.k3$=b +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +a61:function a61(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}, +aKH:function aKH(a,b){this.a=a +this.b=b}, +Xv:function Xv(a,b,c,d,e,f,g){var _=this +_.e=a +_.f=b +_.r=c +_.x=d +_.y=e +_.c=f +_.a=g}, +G0:function G0(a,b,c,d,e,f,g,h,i){var _=this +_.aK=null +_.k3=_.k2=!1 +_.ok=_.k4=null +_.at=a +_.ay=b +_.ch=c +_.cx=_.CW=null +_.cy=!1 +_.db=null +_.f=d +_.r=e +_.w=null +_.a=f +_.b=null +_.c=g +_.d=h +_.e=i}, +ae6:function ae6(a){this.a=a}, +ajk:function ajk(a,b,c){this.c=a +this.d=b +this.a=c}, +Mo:function Mo(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f}, +UW:function UW(a,b){this.a=a +this.b=b}, +bdQ:function bdQ(a,b,c,d){var _=this +_.d=a +_.e=b +_.f=c +_.a=d +_.c=_.b=null}, +bs_(a,b){return new A.xt(b,a,null)}, +bt0(a,b,c,d,e,f,g,h,i,j,k){return new A.Mp(i,g,b,f,h,d,k,e,j,a,c)}, +aMa(a){return A.du(a,!1).aMA(null)}, +du(a,b){var s,r,q +if(a instanceof A.il){s=a.k3 +s.toString +s=s instanceof A.ls}else s=!1 +if(s){s=a.k3 +s.toString +t.uK.a(s) +r=s}else r=null +if(b){q=a.aJ6(t.uK) +r=q==null?r:q +s=r}else{if(r==null)r=a.F4(t.uK) +s=r}s.toString +return s}, +bt2(a){var s,r=a.k3 +r.toString +if(r instanceof A.ls)s=r +else s=null +if(s==null)s=a.F4(t.uK) +return s}, +bKq(a,b){var s,r,q,p,o,n,m,l=null,k=A.a([],t.ny) +if(B.c.cc(b,"/")&&b.length>1){b=B.c.cm(b,1) +s=t.z +k.push(a.Jr("/",!0,l,s)) +r=b.split("/") +if(b.length!==0)for(q=r.length,p=0,o="";p=3}, +bPK(a){return a.gaei()}, +bmy(a){return new A.bbo(a)}, +bt1(a,b){var s,r,q,p +for(s=a.a,r=s.gMY(),q=r.length,p=0;p2?s[2]:null,B.qf) +case 1:s=s.fH(a,1)[1] +s.toString +t.pO.a(A.bKJ(new A.avz(A.ep(s)))) +return null}}, +Eq:function Eq(a,b){this.a=a +this.b=b}, +dd:function dd(){}, +aSa:function aSa(a){this.a=a}, +aS9:function aS9(a){this.a=a}, +k0:function k0(a,b){this.a=a +this.b=b}, +hn:function hn(){}, +oY:function oY(){}, +xt:function xt(a,b,c){this.f=a +this.b=b +this.a=c}, +r6:function r6(){}, +abe:function abe(){}, +a0M:function a0M(a){this.$ti=a}, +ayu:function ayu(a,b,c){this.a=a +this.b=b +this.c=c}, +Mp:function Mp(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.c=a +_.d=b +_.f=c +_.r=d +_.w=e +_.x=f +_.y=g +_.Q=h +_.as=i +_.at=j +_.a=k}, +aM9:function aM9(){}, +ir:function ir(a,b){this.a=a +this.b=b}, +ajC:function ajC(a,b,c){var _=this +_.a=null +_.b=a +_.c=b +_.d=c}, +hA:function hA(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}, +bbn:function bbn(a,b){this.a=a +this.b=b}, +bbl:function bbl(){}, +bbm:function bbm(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +bbk:function bbk(a,b){this.a=a +this.b=b}, +bbo:function bbo(a){this.a=a}, +vC:function vC(){}, +GW:function GW(a,b){this.a=a +this.b=b}, +GV:function GV(a,b){this.a=a +this.b=b}, +SY:function SY(a,b){this.a=a +this.b=b}, +SZ:function SZ(a,b){this.a=a +this.b=b}, +ahy:function ahy(a,b){var _=this +_.a=a +_.k4$=0 +_.ok$=b +_.p2$=_.p1$=0 +_.p3$=!1}, +ls:function ls(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var _=this +_.d=$ +_.e=a +_.f=b +_.r=c +_.w=d +_.x=e +_.y=f +_.z=!1 +_.Q=null +_.as=$ +_.at=g +_.ax=null +_.ch=_.ay=!1 +_.CW=0 +_.cx=h +_.cy=i +_.cX$=j +_.je$=k +_.xj$=l +_.hd$=m +_.jf$=n +_.dL$=o +_.b7$=p +_.a=null +_.b=q +_.c=null}, +aM2:function aM2(a,b){this.a=a +this.b=b}, +aM8:function aM8(a){this.a=a}, +aM1:function aM1(){}, +aM3:function aM3(){}, +aM4:function aM4(a){this.a=a}, +aM5:function aM5(){}, +aM6:function aM6(){}, +aM0:function aM0(a){this.a=a}, +aM7:function aM7(a,b){this.a=a +this.b=b}, +TR:function TR(a,b){this.a=a +this.b=b}, +alS:function alS(){}, +ajr:function ajr(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d +_.b=null}, +bm7:function bm7(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d +_.b=null}, +ahz:function ahz(a){var _=this +_.y=null +_.a=!1 +_.c=_.b=null +_.k4$=0 +_.ok$=a +_.p2$=_.p1$=0 +_.p3$=!1}, +b6M:function b6M(){}, +ul:function ul(a){this.a=a}, +b8U:function b8U(){}, +T_:function T_(){}, +T0:function T0(){}, +apA:function apA(){}, +a6o:function a6o(){}, +dB:function dB(a,b,c,d){var _=this +_.d=a +_.b=b +_.a=c +_.$ti=d}, +T1:function T1(a,b,c){var _=this +_.c=_.b=_.a=_.ax=null +_.d=$ +_.e=a +_.f=null +_.r=b +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1 +_.$ti=c}, +m2:function m2(){}, +apR:function apR(){}, +bKz(a,b,c,d,e,f){return new A.a6C(f,a,e,c,d,b,null)}, +a6D:function a6D(a,b){this.a=a +this.b=b}, +a6C:function a6C(a,b,c,d,e,f,g){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.x=e +_.c=f +_.a=g}, +pB:function pB(a,b,c){this.ds$=a +this.a3$=b +this.a=c}, +H8:function H8(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.B=a +_.W=b +_.a6=c +_.an=d +_.ao=e +_.aN=f +_.aZ=g +_.d8$=h +_.a2$=i +_.dF$=j +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=k +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null}, +baS:function baS(a,b){this.a=a +this.b=b}, +aq8:function aq8(){}, +aq9:function aq9(){}, +p0(a,b){return new A.qQ(a,b,new A.bF(null,$.aH(),t.ft),new A.bq(null,t.af))}, +bPG(a){return a.ap(0)}, +bPF(a,b){var s,r=a.aj(t.Ap) +if(r!=null)return r +s=A.a([A.tC("No Overlay widget found."),A.c0(A.p(a.gbc()).l(0)+" widgets require an Overlay widget ancestor.\nAn overlay lets widgets float on top of other widget children."),A.a1x("To introduce an Overlay widget, you can either directly include one, or use a widget that contains an Overlay itself, such as a Navigator, WidgetApp, MaterialApp, or CupertinoApp.")],t.F) +B.b.I(s,a.aIb(B.ayd)) +throw A.c(A.Cr(s))}, +qQ:function qQ(a,b,c,d){var _=this +_.a=a +_.b=!1 +_.c=b +_.d=c +_.e=null +_.f=d +_.r=!1}, +aMA:function aMA(a){this.a=a}, +rG:function rG(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +GY:function GY(a){var _=this +_.d=$ +_.e=null +_.r=_.f=$ +_.a=null +_.b=a +_.c=null}, +b97:function b97(){}, +yr:function yr(a,b,c){this.c=a +this.d=b +this.a=c}, +DF:function DF(a,b,c,d){var _=this +_.d=a +_.dL$=b +_.b7$=c +_.a=null +_.b=d +_.c=null}, +aMF:function aMF(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aME:function aME(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aMG:function aMG(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aMD:function aMD(){}, +aMC:function aMC(){}, +US:function US(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +ao8:function ao8(a,b,c){var _=this +_.k4=$ +_.ok=a +_.c=_.b=_.a=_.ch=_.ax=null +_.d=$ +_.e=b +_.f=null +_.r=c +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1}, +Au:function Au(){}, +bb6:function bb6(a){this.a=a}, +HB:function HB(a,b,c){var _=this +_.y=_.x=_.w=_.r=_.f=_.e=_.at=null +_.ds$=a +_.a3$=b +_.a=c}, +vK:function vK(a,b,c,d,e,f,g,h){var _=this +_.B=null +_.W=a +_.a6=b +_.an=c +_.ao=!1 +_.aN=d +_.d8$=e +_.a2$=f +_.dF$=g +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +bba:function bba(a){this.a=a}, +bb8:function bb8(a){this.a=a}, +bb9:function bb9(a){this.a=a}, +bb7:function bb7(a){this.a=a}, +aMB:function aMB(){this.b=this.a=null}, +MB:function MB(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +ajS:function ajS(a){var _=this +_.d=null +_.e=!0 +_.a=_.f=null +_.b=a +_.c=null}, +b98:function b98(a,b){this.a=a +this.b=b}, +b9a:function b9a(a,b){this.a=a +this.b=b}, +b99:function b99(a){this.a=a}, +vE:function vE(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.jc$=_.ic$=_.hU$=_.e=_.d=null}, +At:function At(a,b,c,d){var _=this +_.f=a +_.r=b +_.b=c +_.a=d}, +GZ:function GZ(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +ajR:function ajR(a,b){var _=this +_.c=_.b=_.a=_.ch=_.ax=_.ok=_.k4=null +_.d=$ +_.e=a +_.f=null +_.r=b +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1}, +ag_:function ag_(a,b){this.c=a +this.a=b}, +vJ:function vJ(a,b,c){var _=this +_.D=a +_.ac=!1 +_.az=!0 +_.eB=_.cr=!1 +_.jc$=_.ic$=_.hU$=null +_.k3$=b +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +baL:function baL(a){this.a=a}, +baM:function baM(a){this.a=a}, +TE:function TE(a,b){var _=this +_.D=null +_.k3$=a +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +ajT:function ajT(){}, +aq3:function aq3(){}, +aq4:function aq4(){}, +Wm:function Wm(){}, +aqc:function aqc(){}, +brQ(a,b,c){return new A.KQ(a,c,b,null)}, +bvW(a,b,c){var s,r,q=null,p=t.Y,o=new A.aR(0,0,p),n=new A.aR(0,0,p),m=new A.S_(B.lS,o,n,b,a,$.aH()),l=A.bx(B.A,q,q,0,q,1,q,c) +l.cF() +s=l.ej$ +s.b=!0 +s.a.push(m.gPG()) +m.b!==$&&A.ck() +m.b=l +r=A.c5(B.dC,l,q) +r.a.P(0,m.geO()) +t.m.a(r) +p=p.h("ax") +m.r!==$&&A.ck() +m.r=new A.ax(r,o,p) +m.x!==$&&A.ck() +m.x=new A.ax(r,n,p) +p=c.A2(m.gaDj()) +m.y!==$&&A.ck() +m.y=p +return m}, +KQ:function KQ(a,b,c,d){var _=this +_.e=a +_.f=b +_.w=c +_.a=d}, +S0:function S0(a,b,c,d){var _=this +_.r=_.f=_.e=_.d=null +_.w=a +_.dL$=b +_.b7$=c +_.a=null +_.b=d +_.c=null}, +GA:function GA(a,b){this.a=a +this.b=b}, +S_:function S_(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 +_.k4$=0 +_.ok$=f +_.p2$=_.p1$=0 +_.p3$=!1}, +b6r:function b6r(a){this.a=a}, +ahr:function ahr(a,b,c,d){var _=this +_.b=a +_.c=b +_.d=c +_.a=d}, +anl:function anl(a,b){this.a=a +this.b=b}, +P0:function P0(a,b,c,d){var _=this +_.c=a +_.e=b +_.f=c +_.a=d}, +Uy:function Uy(a,b,c){var _=this +_.d=$ +_.f=_.e=null +_.r=0 +_.w=!0 +_.dL$=a +_.b7$=b +_.a=null +_.b=c +_.c=null}, +bcE:function bcE(a,b,c){this.a=a +this.b=b +this.c=c}, +Ht:function Ht(a,b){this.a=a +this.b=b}, +Ux:function Ux(a,b,c,d){var _=this +_.b=_.a=$ +_.c=a +_.d=b +_.e=0 +_.f=c +_.k4$=0 +_.ok$=d +_.p2$=_.p1$=0 +_.p3$=!1}, +uo:function uo(a,b){this.a=a +this.c=!0 +this.jg$=b}, +T4:function T4(){}, +W4:function W4(){}, +Wv:function Wv(){}, +btc(a,b){var s=a.gbc() +return!(s instanceof A.DH)}, +yu(a){var s=a.xo(t.Mf) +return s==null?null:s.d}, +Us:function Us(a){this.a=a}, +p1:function p1(){this.a=null}, +aMM:function aMM(a){this.a=a}, +DH:function DH(a,b,c){this.c=a +this.d=b +this.a=c}, +bld(a,b,c){return new A.yt(a,!0,c,0,!0,A.a([],t.ZP),$.aH())}, +yt:function yt(a,b,c,d,e,f,g){var _=this +_.as=a +_.at=b +_.ax=c +_.a=d +_.b=e +_.f=f +_.k4$=0 +_.ok$=g +_.p2$=_.p1$=0 +_.p3$=!1}, +a6E:function a6E(a,b,c,d,e,f,g){var _=this +_.r=a +_.a=b +_.b=c +_.c=d +_.d=e +_.e=f +_.f=g}, +vF:function vF(a,b,c,d,e,f,g,h,i){var _=this +_.ao=a +_.aN=null +_.aZ=b +_.k3=0 +_.k4=c +_.ok=null +_.r=d +_.w=e +_.x=f +_.y=g +_.Q=_.z=null +_.as=0 +_.ax=_.at=null +_.ay=!1 +_.ch=!0 +_.CW=!1 +_.cx=null +_.cy=!1 +_.dx=_.db=null +_.dy=h +_.fr=null +_.k4$=0 +_.ok$=i +_.p2$=_.p1$=0 +_.p3$=!1}, +RU:function RU(a,b){this.b=a +this.a=b}, +DG:function DG(a){this.a=a}, +DI:function DI(a,b,c,d,e,f,g,h,i){var _=this +_.c=a +_.e=b +_.f=c +_.r=d +_.w=e +_.z=f +_.Q=g +_.as=h +_.a=i}, +ajW:function ajW(a){var _=this +_.d=0 +_.a=null +_.b=a +_.c=null}, +b9b:function b9b(a){this.a=a}, +b9c:function b9c(a,b){this.a=a +this.b=b}, +jY:function jY(){}, +MD:function MD(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1,a2){var _=this +_.dj=a +_.D=b +_.cr=c +_.cp=d +_.ct=e +_.B=f +_.fr=g +_.fx=h +_.fy=!1 +_.id=_.go=null +_.k1=i +_.k2=j +_.k3=k +_.k4=l +_.ok=m +_.p1=$ +_.p2=null +_.p3=$ +_.hB$=n +_.mY$=o +_.y=p +_.z=null +_.Q=!1 +_.at=_.as=null +_.ax=q +_.ay=!0 +_.CW=_.ch=null +_.e=r +_.a=null +_.b=s +_.c=a0 +_.d=a1 +_.$ti=a2}, +aKt:function aKt(){}, +aNn:function aNn(){}, +a0J:function a0J(a,b){this.a=a +this.d=b}, +DR:function DR(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +akA:function akA(a){var _=this +_.d=null +_.e=$ +_.a=null +_.b=a +_.c=null}, +uB:function uB(a,b,c){this.c=a +this.d=b +this.a=c}, +btp(a,b){return new A.DZ(b,B.H,B.aqi,a,null)}, +btq(a){return new A.DZ(null,null,B.aqt,a,null)}, +btr(a,b){var s,r=a.xo(t.bb) +if(r==null)return!1 +s=A.uP(a).rz(a) +if(r.w.p(0,s))return r.r===b +return!1}, +E_(a){var s=a.aj(t.bb) +return s==null?null:s.f}, +DZ:function DZ(a,b,c,d,e){var _=this +_.f=a +_.r=b +_.w=c +_.b=d +_.a=e}, +uM(a){var s=a.aj(t.lQ) +return s==null?null:s.f}, +PP(a,b){return new A.zS(a,b,null)}, +uL:function uL(a,b,c){this.c=a +this.d=b +this.a=c}, +alT:function alT(a,b,c,d,e,f){var _=this +_.cX$=a +_.je$=b +_.xj$=c +_.hd$=d +_.jf$=e +_.a=null +_.b=f +_.c=null}, +zS:function zS(a,b,c){this.f=a +this.b=b +this.a=c}, +NV:function NV(a,b,c){this.c=a +this.d=b +this.a=c}, +TQ:function TQ(a){var _=this +_.d=null +_.e=!1 +_.r=_.f=null +_.w=!1 +_.a=null +_.b=a +_.c=null}, +bbg:function bbg(a){this.a=a}, +bbf:function bbf(a,b){this.a=a +this.b=b}, +h8:function h8(){}, +mh:function mh(){}, +aRG:function aRG(a,b){this.a=a +this.b=b}, +beB:function beB(){}, +aqd:function aqd(){}, +dv:function dv(){}, +lK:function lK(){}, +TO:function TO(){}, +NQ:function NQ(a,b,c){var _=this +_.cy=a +_.y=null +_.a=!1 +_.c=_.b=null +_.k4$=0 +_.ok$=b +_.p2$=_.p1$=0 +_.p3$=!1 +_.$ti=c}, +z6:function z6(a,b){var _=this +_.cy=a +_.y=null +_.a=!1 +_.c=_.b=null +_.k4$=0 +_.ok$=b +_.p2$=_.p1$=0 +_.p3$=!1}, +NR:function NR(a,b){var _=this +_.cy=a +_.y=null +_.a=!1 +_.c=_.b=null +_.k4$=0 +_.ok$=b +_.p2$=_.p1$=0 +_.p3$=!1}, +bLJ(){return new A.a8z(new A.bd(A.a([],t.Zt),t.CT))}, +beC:function beC(){}, +lC:function lC(a,b,c){this.a=a +this.b=b +this.c=c}, +Er:function Er(a,b,c,d,e,f,g){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f +_.$ti=g}, +aS0:function aS0(a,b){this.a=a +this.b=b}, +Hc:function Hc(a,b,c,d,e,f,g,h){var _=this +_.e=_.d=null +_.f=a +_.r=$ +_.w=!1 +_.cX$=b +_.je$=c +_.xj$=d +_.hd$=e +_.jf$=f +_.a=null +_.b=g +_.c=null +_.$ti=h}, +bbx:function bbx(a){this.a=a}, +bby:function bby(a){this.a=a}, +bbw:function bbw(a){this.a=a}, +bbu:function bbu(a,b,c){this.a=a +this.b=b +this.c=c}, +bbr:function bbr(a){this.a=a}, +bbs:function bbs(a,b){this.a=a +this.b=b}, +bbv:function bbv(){}, +bbt:function bbt(){}, +am6:function am6(a,b,c,d,e,f,g){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.y=e +_.b=f +_.a=g}, +mA:function mA(){}, +b3g:function b3g(a){this.a=a}, +Y8:function Y8(){}, +atw:function atw(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a8z:function a8z(a){this.b=$ +this.a=a}, +a8E:function a8E(){}, +Es:function Es(){}, +a8F:function a8F(){}, +alQ:function alQ(a){var _=this +_.y=null +_.a=!1 +_.c=_.b=null +_.k4$=0 +_.ok$=a +_.p2$=_.p1$=0 +_.p3$=!1}, +alY:function alY(){}, +HL:function HL(){}, +oV(a,b){var s=a.aj(t.Fe),r=s==null?null:s.x +return b.h("ek<0>?").a(r)}, +DE:function DE(){}, +fr:function fr(){}, +b_K:function b_K(a,b,c){this.a=a +this.b=b +this.c=c}, +b_I:function b_I(a,b,c){this.a=a +this.b=b +this.c=c}, +b_J:function b_J(a,b,c){this.a=a +this.b=b +this.c=c}, +b_H:function b_H(a,b){this.a=a +this.b=b}, +Lz:function Lz(a,b){this.a=a +this.b=null +this.c=b}, +a3F:function a3F(){}, +aIF:function aIF(a){this.a=a}, +ag9:function ag9(a,b){this.e=a +this.a=b +this.b=null}, +SO:function SO(a,b,c,d,e,f){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.b=e +_.a=f}, +GU:function GU(a,b,c){this.c=a +this.a=b +this.$ti=c}, +kX:function kX(a,b,c,d){var _=this +_.d=null +_.e=$ +_.f=a +_.r=b +_.a=null +_.b=c +_.c=null +_.$ti=d}, +b8m:function b8m(a){this.a=a}, +b8q:function b8q(a){this.a=a}, +b8r:function b8r(a){this.a=a}, +b8p:function b8p(a){this.a=a}, +b8n:function b8n(a){this.a=a}, +b8o:function b8o(a){this.a=a}, +ek:function ek(){}, +aKL:function aKL(a,b){this.a=a +this.b=b}, +aKM:function aKM(){}, +aKJ:function aKJ(a,b){this.a=a +this.b=b}, +aKK:function aKK(){}, +N2:function N2(){}, +Nk:function Nk(){}, +Al:function Al(){}, +z8(a,b,c,d,e,f){return new A.a8M(c,f,e,a,d,b,null)}, +a8M:function a8M(a,b,c,d,e,f,g){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.x=f +_.a=g}, +a8R:function a8R(){}, +tT:function tT(a){this.a=a +this.b=!1}, +aGg:function aGg(a,b){this.c=a +this.a=b +this.b=!1}, +aT3:function aT3(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}, +aA5:function aA5(a,b){this.c=a +this.a=b +this.b=!1}, +Ye:function Ye(a,b){var _=this +_.c=$ +_.d=a +_.a=b +_.b=!1}, +a1f:function a1f(a){var _=this +_.d=_.c=$ +_.a=a +_.b=!1}, +O3:function O3(a,b,c){this.a=a +this.b=b +this.$ti=c}, +aT_:function aT_(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aSZ:function aSZ(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +a8T(a,b){return new A.O4(a,b,null)}, +uP(a){var s=a.aj(t.Cy),r=s==null?null:s.f +return r==null?B.SL:r}, +a8S:function a8S(){}, +aT0:function aT0(){}, +aT1:function aT1(){}, +aT2:function aT2(){}, +ber:function ber(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +O4:function O4(a,b,c){this.f=a +this.b=b +this.a=c}, +Ey(a,b){return new A.zb(a,b,A.a([],t.ZP),$.aH())}, +zb:function zb(a,b,c,d){var _=this +_.a=a +_.b=b +_.f=c +_.k4$=0 +_.ok$=d +_.p2$=_.p1$=0 +_.p3$=!1}, +bxu(a,b){return b}, +bug(a,b,c,d){return new A.a9C(!0,!0,!0,a,A.am([null,0],t.E5,t.S))}, +uZ:function uZ(){}, +Hd:function Hd(a){this.a=a}, +kJ:function kJ(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.r=f +_.w=g}, +a9C:function a9C(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.f=d +_.r=e}, +Hf:function Hf(a,b){this.c=a +this.a=b}, +Ua:function Ua(a,b){var _=this +_.f=_.e=_.d=null +_.r=!1 +_.mX$=a +_.a=null +_.b=b +_.c=null}, +bc6:function bc6(a,b){this.a=a +this.b=b}, +aqh:function aqh(){}, +mj:function mj(){}, +Kt:function Kt(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +agY:function agY(){}, +blv(a,b,c,d,e){var s=new A.kI(c,e,d,a,0) +if(b!=null)s.jg$=b +return s}, +bUk(a){return a.jg$===0}, +kg:function kg(){}, +abL:function abL(){}, +k1:function k1(){}, +Ez:function Ez(a,b,c,d){var _=this +_.d=a +_.a=b +_.b=c +_.jg$=d}, +kI:function kI(a,b,c,d,e){var _=this +_.d=a +_.e=b +_.a=c +_.b=d +_.jg$=e}, +no:function no(a,b,c,d,e,f){var _=this +_.d=a +_.e=b +_.f=c +_.a=d +_.b=e +_.jg$=f}, +pb:function pb(a,b,c,d){var _=this +_.d=a +_.a=b +_.b=c +_.jg$=d}, +abz:function abz(a,b,c,d){var _=this +_.d=a +_.a=b +_.b=c +_.jg$=d}, +U_:function U_(){}, +TZ:function TZ(a,b,c){this.f=a +this.b=b +this.a=c}, +vz:function vz(a){var _=this +_.a=a +_.jc$=_.ic$=_.hU$=null}, +O6:function O6(a,b){this.c=a +this.a=b}, +O7:function O7(a,b){var _=this +_.d=a +_.a=null +_.b=b +_.c=null}, +aT4:function aT4(a){this.a=a}, +aT5:function aT5(a){this.a=a}, +aT6:function aT6(a){this.a=a}, +bFp(a,b,c){var s,r +if(a>0){s=a/c +if(b"))}, +bmZ(a,b){var s=$.ap.Y$.z.i(0,a).ga7() +s.toString +return t.x.a(s).jy(b)}, +Oa:function Oa(a,b){this.a=a +this.b=b}, +EB:function EB(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 +_.k4$=0 +_.ok$=o +_.p2$=_.p1$=0 +_.p3$=!1}, +aTl:function aTl(){}, +Eb:function Eb(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.c=a +_.d=b +_.e=c +_.r=d +_.w=e +_.Q=f +_.ay=g +_.ch=h +_.CW=i +_.cx=j +_.cy=k +_.db=l +_.a=m}, +p7:function p7(a,b,c,d,e){var _=this +_.w=_.r=_.f=_.e=_.d=null +_.y=_.x=$ +_.z=a +_.as=_.Q=!1 +_.at=$ +_.dL$=b +_.b7$=c +_.a=null +_.b=d +_.c=null +_.$ti=e}, +aP9:function aP9(a){this.a=a}, +aP5:function aP5(a){this.a=a}, +aP6:function aP6(a){this.a=a}, +aP2:function aP2(a){this.a=a}, +aP3:function aP3(a){this.a=a}, +aP4:function aP4(a){this.a=a}, +aP7:function aP7(a){this.a=a}, +aP8:function aP8(a){this.a=a}, +aPa:function aPa(a){this.a=a}, +aPb:function aPb(a){this.a=a}, +pJ:function pJ(a,b,c,d,e,f,g,h,i,j){var _=this +_.de=a +_.k2=!1 +_.ct=_.cp=_.c_=_.b6=_.aK=_.co=_.bL=_.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 +_.w=null +_.a=g +_.b=null +_.c=h +_.d=i +_.e=j}, +pK:function pK(a,b,c,d,e,f,g,h,i,j){var _=this +_.jT=a +_.aN=_.ao=_.an=_.a6=_.W=_.B=_.ct=_.cp=_.c_=_.b6=_.aK=null +_.k3=_.k2=!1 +_.ok=_.k4=null +_.at=b +_.ay=c +_.ch=d +_.cx=_.CW=null +_.cy=!1 +_.db=null +_.f=e +_.r=f +_.w=null +_.a=g +_.b=null +_.c=h +_.d=i +_.e=j}, +H5:function H5(){}, +bKg(a,b){var s,r=a.b,q=b.b,p=r-q +if(!(p<3&&a.d-b.d>-3))s=q-r<3&&b.d-a.d>-3 +else s=!0 +if(s)return 0 +if(Math.abs(p)>3)return r>q?1:-1 +return a.d>b.d?1:-1}, +bKf(a,b){var s=a.a,r=b.a,q=s-r +if(q<1e-10&&a.c-b.c>-1e-10){if(a.c-b.c>1e-10)return 1 +return-1}if(r-s<1e-10&&b.c-a.c>-1e-10){if(b.c-a.c>1e-10)return-1 +return 1}if(Math.abs(q)>1e-10)return s>r?1:-1 +return a.c>b.c?1:-1}, +Dw:function Dw(){}, +aLC:function aLC(a){this.a=a}, +aLD:function aLD(a,b,c){this.a=a +this.b=b +this.c=c}, +aLE:function aLE(){}, +aLA:function aLA(a,b){this.a=a +this.b=b}, +aLB:function aLB(a){this.a=a}, +aLF:function aLF(a,b){this.a=a +this.b=b}, +aLG:function aLG(a){this.a=a}, +aLr:function aLr(a){this.a=a}, +aLs:function aLs(a){this.a=a}, +aLt:function aLt(a){this.a=a}, +aLu:function aLu(a){this.a=a}, +aLv:function aLv(a){this.a=a}, +aLw:function aLw(a){this.a=a}, +aLx:function aLx(a){this.a=a}, +aLy:function aLy(a){this.a=a}, +aLz:function aLz(a){this.a=a}, +ajp:function ajp(){}, +a92(a){var s=a.aj(t.Wu) +return s==null?null:s.f}, +btZ(a,b){return new A.EE(b,a,null)}, +EC:function EC(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +amo:function amo(a,b,c,d){var _=this +_.d=a +_.AE$=b +_.xl$=c +_.a=null +_.b=d +_.c=null}, +EE:function EE(a,b,c){this.f=a +this.b=b +this.a=c}, +a91:function a91(){}, +aqg:function aqg(){}, +Wq:function Wq(){}, +Or:function Or(a,b){this.c=a +this.a=b}, +amE:function amE(a){var _=this +_.d=$ +_.a=null +_.b=a +_.c=null}, +amF:function amF(a,b,c){this.x=a +this.b=b +this.a=c}, +hU(a,b,c,d,e){return new A.bl(a,c,e,b,d)}, +bMm(a){var s=A.I(t.oD,t.JF) +a.al(0,new A.aUQ(s)) +return s}, +Ov(a,b,c){return new A.zq(null,c,a,b,null)}, +bu3(a,b){return new A.zq(b,B.kQ,a,null,null)}, +bl:function bl(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +A2:function A2(a,b){this.a=a +this.b=b}, +zp:function zp(a,b){var _=this +_.b=a +_.c=null +_.k4$=0 +_.ok$=b +_.p2$=_.p1$=0 +_.p3$=!1}, +aUQ:function aUQ(a){this.a=a}, +aUP:function aUP(){}, +aUR:function aUR(a){this.a=a}, +aUS:function aUS(a){this.a=a}, +zq:function zq(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +Ue:function Ue(a){var _=this +_.a=_.d=null +_.b=a +_.c=null}, +Ou:function Ou(a,b){var _=this +_.c=a +_.k4$=0 +_.ok$=b +_.p2$=_.p1$=0 +_.p3$=!1}, +Ot:function Ot(a,b){this.c=a +this.a=b}, +Ud:function Ud(a,b,c){var _=this +_.d=a +_.e=b +_.a=null +_.b=c +_.c=null}, +amK:function amK(a,b,c){this.f=a +this.b=b +this.a=c}, +amI:function amI(){}, +amJ:function amJ(){}, +amL:function amL(){}, +amO:function amO(){}, +amP:function amP(){}, +apc:function apc(){}, +nG(a,b,c,d,e,f){return new A.a9q(f,d,b,e,a,c,null)}, +a9q:function a9q(a,b,c,d,e,f,g){var _=this +_.c=a +_.e=b +_.f=c +_.w=d +_.x=e +_.y=f +_.a=g}, +aUY:function aUY(a,b,c){this.a=a +this.b=b +this.c=c}, +Hj:function Hj(a,b,c,d,e){var _=this +_.e=a +_.f=b +_.r=c +_.c=d +_.a=e}, +amQ:function amQ(a,b){var _=this +_.c=_.b=_.a=_.ch=_.ax=_.k4=null +_.d=$ +_.e=a +_.f=null +_.r=b +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1}, +TM:function TM(a,b,c,d,e,f){var _=this +_.B=a +_.W=b +_.a6=c +_.an=d +_.k3$=e +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +baW:function baW(a,b){this.a=a +this.b=b}, +baV:function baV(a,b){this.a=a +this.b=b}, +Wk:function Wk(){}, +aqi:function aqi(){}, +aqj:function aqj(){}, +bMu(a,b){return new A.a9F(b,a,null)}, +aVp(a,b){return new A.ET(b,a,null)}, +buh(a,b){return new A.EW(b,A.blF(t.S,t.Dv),a,B.an)}, +bMv(a,b,c,d,e){if(b===e-1)return d +return d+(d-c)/(b-a+1)*(e-b-1)}, +bJi(a,b){return new A.Li(b,a,null)}, +a9J:function a9J(){}, +kL:function kL(){}, +mm:function mm(a,b){this.d=a +this.a=b}, +a9F:function a9F(a,b,c){this.f=a +this.d=b +this.a=c}, +ET:function ET(a,b,c){this.f=a +this.d=b +this.a=c}, +EW:function EW(a,b,c,d){var _=this +_.k4=a +_.ok=b +_.p2=_.p1=null +_.p3=!1 +_.c=_.b=_.a=_.ch=_.ax=null +_.d=$ +_.e=c +_.f=null +_.r=d +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1}, +aVy:function aVy(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aVw:function aVw(){}, +aVx:function aVx(a,b){this.a=a +this.b=b}, +aVv:function aVv(a,b,c){this.a=a +this.b=b +this.c=c}, +aVz:function aVz(a,b){this.a=a +this.b=b}, +Li:function Li(a,b,c){this.f=a +this.b=b +this.a=c}, +a9E:function a9E(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +amU:function amU(a,b,c){this.f=a +this.d=b +this.a=c}, +amV:function amV(a,b,c){this.e=a +this.c=b +this.a=c}, +alC:function alC(a,b,c){var _=this +_.dH=null +_.cY=a +_.e5=null +_.k3$=b +_.fx=null +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +a9D:function a9D(a,b,c){this.c=a +this.d=b +this.a=c}, +amT:function amT(a,b){this.c=a +this.a=b}, +OC:function OC(){}, +iT:function iT(){}, +mn:function mn(){}, +OD:function OD(a,b,c,d,e){var _=this +_.k4=a +_.ok=b +_.c=_.b=_.a=_.ch=_.ax=_.p1=null +_.d=$ +_.e=c +_.f=null +_.r=d +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1 +_.$ti=e}, +Ui:function Ui(){}, +bui(a,b,c,d,e){return new A.a9Q(c,d,!0,e,b,null)}, +a9O:function a9O(a,b){this.a=a +this.b=b}, +OG:function OG(a){var _=this +_.a=!1 +_.k4$=0 +_.ok$=a +_.p2$=_.p1$=0 +_.p3$=!1}, +a9Q:function a9Q(a,b,c,d,e,f){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.c=e +_.a=f}, +Ha:function Ha(a,b,c,d,e,f,g){var _=this +_.D=a +_.ac=b +_.az=c +_.cr=d +_.eB=e +_.jh=_.ek=null +_.hX=!1 +_.hf=null +_.k3$=f +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +a9P:function a9P(){}, +Rm:function Rm(){}, +aag:function aag(a){this.a=a}, +bR_(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=A.a([],t.bt) +for(s=J.aj(c),r=0,q=0,p=0;r=0){g=p+k +f=g+(n-m) +p=f+1 +q=g-m +e.push(new A.v3(new A.dl(g,f),o.b))}++r}return e}, +bTx(a,b,c,d,e){var s=e.b,r=e.a,q=a.a +if(r!==q)s=A.bR_(q,r,s) +if(A.c3()===B.bO)return A.dr(A.bQz(s,a,c,d,b),c,null) +return A.dr(A.bQA(s,a,c,d,a.b.c),c,null)}, +bQA(a,b,c,d,e){var s,r,q,p,o=A.a([],t.Ne),n=b.a,m=c.cI(d),l=n.length,k=J.aj(a),j=0,i=0 +while(!0){if(!(jj){r=r=e?c:m +o.push(A.dr(null,s,B.c.S(n,r,p)));++i +j=p}}k=n.length +if(je){r=r=e&&g<=r&&f){o.push(A.dr(p,c,B.c.S(n,e,j))) +o.push(A.dr(p,l,B.c.S(n,j,g))) +o.push(A.dr(p,c,B.c.S(n,g,r)))}else o.push(A.dr(p,c,B.c.S(n,e,r))) +e=r}else{q=s.b +q=q=j&&q<=g&&f?l:k +o.push(A.dr(p,s,B.c.S(n,r,q)));++d +e=q}}j=n.length +if(ea/2 +n=s?o:o+B.b.gO(c).a.a +r=m.b +q=B.b.gO(c) +o=s?m.c:o+B.b.gX(c).a.a +p=B.b.gX(c) +n+=(o-n)/2 +o=m.d +return new A.Px(new A.m(n,A.V(r+q.a.b-d,r,o)),new A.m(n,A.V(r+p.a.b,r,o)))}, +Px:function Px(a,b){this.a=a +this.b=b}, +bN9(a,b,c){var s=b/2,r=a-s +if(r<0)return 0 +if(a+s>c)return c-b +return r}, +aaZ:function aaZ(a,b,c){this.b=a +this.c=b +this.d=c}, +ab2(a){var s=a.aj(t.l3),r=s==null?null:s.f +return r!==!1}, +buJ(a){var s=a.O1(t.l3),r=s==null?null:s.r +return r==null?B.T6:r}, +zK:function zK(a,b,c){this.c=a +this.d=b +this.a=c}, +aoa:function aoa(a,b){var _=this +_.d=!0 +_.e=a +_.a=null +_.b=b +_.c=null}, +RD:function RD(a,b,c,d){var _=this +_.f=a +_.r=b +_.b=c +_.a=d}, +fO:function fO(){}, +dQ:function dQ(){}, +ap4:function ap4(a,b,c){var _=this +_.w=a +_.a=null +_.b=!1 +_.c=null +_.d=b +_.e=null +_.f=c +_.r=$}, +R2:function R2(a){this.$ti=a}, +Fv:function Fv(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +Oz(a,b,c,d){return new A.ER(c,d,a,b,null)}, +aSP(a,b){return new A.a8Q(A.bYN(),B.a7,null,a,b,null)}, +bLS(a){return A.ug(a,a,1)}, +aRN(a,b){return new A.a8D(A.bYM(),B.a7,null,a,b,null)}, +bLK(a){var s,r,q=a*3.141592653589793*2,p=new Float64Array(16) +p[15]=1 +s=Math.cos(q) +r=Math.sin(q) +p[0]=s +p[1]=r +p[2]=0 +p[4]=-r +p[5]=s +p[6]=0 +p[8]=0 +p[9]=0 +p[10]=1 +p[3]=0 +p[7]=0 +p[11]=0 +return new A.bQ(p)}, +bqD(a,b,c,d){return new A.a0L(c,b,a,d,null)}, +hg(a,b,c){return new A.Xu(b,c,a,null)}, +Ie:function Ie(){}, +Qk:function Qk(a){this.a=null +this.b=a +this.c=null}, +b1Z:function b1Z(){}, +ER:function ER(a,b,c,d,e){var _=this +_.e=a +_.f=b +_.r=c +_.c=d +_.a=e}, +a5S:function a5S(){}, +a8Q:function a8Q(a,b,c,d,e,f){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.c=e +_.a=f}, +a8D:function a8D(a,b,c,d,e,f){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.c=e +_.a=f}, +a9u:function a9u(a,b,c,d){var _=this +_.f=a +_.r=b +_.c=c +_.a=d}, +cY:function cY(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +Ee:function Ee(a,b){this.a=a +this.b=b}, +N4:function N4(a,b,c){this.e=a +this.c=b +this.a=c}, +a0C:function a0C(a,b,c,d){var _=this +_.e=a +_.r=b +_.c=c +_.a=d}, +a0L:function a0L(a,b,c,d,e){var _=this +_.r=a +_.w=b +_.x=c +_.c=d +_.a=e}, +Lx:function Lx(){}, +Xu:function Xu(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +bSS(a,b,c){var s={} +s.a=null +return new A.bfX(s,A.b6("arg"),a,b,c)}, +FC:function FC(a,b,c,d,e,f,g,h){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.a=g +_.$ti=h}, +FD:function FD(a,b,c){var _=this +_.d=a +_.e=$ +_.f=null +_.r=!1 +_.a=_.x=_.w=null +_.b=b +_.c=null +_.$ti=c}, +b_R:function b_R(a){this.a=a}, +FE:function FE(a,b){this.a=a +this.b=b}, +PO:function PO(a,b,c,d){var _=this +_.w=a +_.x=b +_.a=c +_.k4$=0 +_.ok$=d +_.p2$=_.p1$=0 +_.p3$=!1}, +aoJ:function aoJ(a,b){this.a=a +this.b=-1 +this.$ti=b}, +bfX:function bfX(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +bfW:function bfW(a,b,c){this.a=a +this.b=b +this.c=c}, +V1:function V1(){}, +bv8(a,b,c){return new A.FK(b,a,null,c.h("FK<0>"))}, +FK:function FK(a,b,c,d){var _=this +_.c=a +_.d=b +_.a=c +_.$ti=d}, +HG:function HG(a,b){var _=this +_.d=$ +_.a=null +_.b=a +_.c=null +_.$ti=b}, +bef:function bef(a){this.a=a}, +PT(a){var s=A.bJK(a,t._l) +return s==null?null:s.f}, +bvd(a){var s=a.aj(t.Ln) +s=s==null?null:s.f +if(s==null){s=$.z2.fy$ +s===$&&A.b()}return s}, +abI:function abI(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +b0H:function b0H(a){this.a=a}, +Tm:function Tm(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +akU:function akU(a,b){var _=this +_.co=$ +_.c=_.b=_.a=_.ch=_.ax=_.b6=_.aK=null +_.d=$ +_.e=a +_.f=null +_.r=b +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1}, +AD:function AD(a,b,c){this.f=a +this.b=b +this.a=c}, +Ta:function Ta(a,b,c){this.f=a +this.b=b +this.a=c}, +Rn:function Rn(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.$ti=d}, +bve(a,b,c,d,e,f,g,h,i,j){return new A.rq(b,g,a,i,e,c,d,f,j,h)}, +abM(a,b){var s +switch(b.a){case 0:s=a.aj(t.I) +s.toString +return A.bih(s.w) +case 1:return B.ak +case 2:s=a.aj(t.I) +s.toString +return A.bih(s.w) +case 3:return B.ak}}, +rq:function rq(a,b,c,d,e,f,g,h,i,j){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.x=e +_.y=f +_.z=g +_.Q=h +_.c=i +_.a=j}, +aoX:function aoX(a,b,c){var _=this +_.b6=!1 +_.c_=null +_.k4=$ +_.ok=a +_.c=_.b=_.a=_.ch=_.ax=null +_.d=$ +_.e=b +_.f=null +_.r=c +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1}, +a9n:function a9n(a,b,c,d,e){var _=this +_.e=a +_.r=b +_.w=c +_.c=d +_.a=e}, +aqQ:function aqQ(){}, +aqR:function aqR(){}, +bNX(a,b){return new A.FM(a,b,!0,!0,!0,!0,!0,null)}, +bvf(a){var s,r,q,p,o={} +o.a=a +s=t.ps +r=a.ou(s) +q=!0 +while(!0){if(!(q&&r!=null))break +q=s.a(a.UD(r)).f +r.uc(new A.b0I(o)) +p=o.a.x +r=p==null?null:p.i(0,A.cs(s))}return q}, +FM:function FM(a,b,c,d,e,f,g,h){var _=this +_.c=a +_.e=b +_.f=c +_.r=d +_.w=e +_.x=f +_.y=g +_.a=h}, +b0I:function b0I(a){this.a=a}, +Vh:function Vh(a,b,c){this.f=a +this.b=b +this.a=c}, +aoY:function aoY(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +alM:function alM(a,b,c,d){var _=this +_.D=a +_.ac=b +_.k3$=c +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +bvg(a,b){var s={},r=A.a([],t.p),q=A.a([14],t.up) +s.a=0 +new A.b0O(s,q,b,r).$1(a) +return r}, +FO:function FO(){}, +b0O:function b0O(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +ap3:function ap3(a,b,c){this.f=a +this.b=b +this.a=c}, +aeh:function aeh(a,b,c,d){var _=this +_.e=a +_.f=b +_.c=c +_.a=d}, +TK:function TK(a,b,c,d,e){var _=this +_.B=a +_.W=b +_.a6=c +_.k3$=d +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +baU:function baU(a){this.a=a}, +baT:function baT(a){this.a=a}, +aqa:function aqa(){}, +Q3:function Q3(a,b,c){this.c=a +this.d=b +this.a=c}, +ap7:function ap7(a){var _=this +_.a=_.d=null +_.b=a +_.c=null}, +aDn:function aDn(){}, +qx:function qx(a,b){this.a=a +this.b=b}, +avh:function avh(){}, +avi:function avi(){}, +wQ:function wQ(a,b,c){var _=this +_.aRa$=a +_.a=b +_.b=c +_.c=$}, +afW:function afW(){}, +aGU:function aGU(){}, +bFx(a){var s=t.N,r=Date.now() +return new A.avm(A.I(s,t.f8),A.I(s,t.LE),a.b,a,a.a.r6(0).be(new A.avp(a),t.Pt),new A.dx(r,!1))}, +avm:function avm(a,b,c,d,e,f){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.w=null}, +avp:function avp(a){this.a=a}, +avq:function avq(a,b,c){this.a=a +this.b=b +this.c=c}, +avo:function avo(a){this.a=a}, +axw:function axw(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.d=c +_.e=d +_.f=e}, +avg:function avg(){}, +lc:function lc(a,b){this.b=a +this.c=b}, +a1K:function a1K(a,b){this.a=a +this.b=b}, +oD:function oD(a,b,c){this.b=a +this.c=b +this.d=c}, +lf:function lf(){}, +a6m:function a6m(){}, +bqg(a,b,c,d,e,f,g,h){return new A.lV(c,a,d,f,h,b,e,g)}, +lV:function lV(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}, +aKf:function aKf(a){this.a=a}, +bIR(){A.bzJ() +var s=new A.IK(A.aW(t.e)) +return new A.aGJ(s)}, +aCP:function aCP(){}, +aGJ:function aGJ(a){this.b=a}, +a2M:function a2M(a,b){this.a=a +this.b=b}, +a7u:function a7u(a,b,c){this.a=a +this.b=b +this.c=c}, +b0J:function b0J(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=0}, +b0K:function b0K(a,b,c){this.a=a +this.b=b +this.c=c}, +b0L:function b0L(a,b){this.a=a +this.b=b}, +a2J:function a2J(a,b){this.a=a +this.b=b}, +XK(a){return A.A(a,B.h,t.J)}, +bWc(a){switch(a.ge0(a)){case"zh":switch(a.b){case"Hans":A.j3("zh_Hans") +return new A.XI() +case"Hant":A.j3("zh_Hant") +return new A.XJ()}break}switch(a.ge0(a)){case"pt":switch(a.geW()){case"PT":A.j3("pt_PT") +return new A.XG()}break}switch(a.ge0(a)){case"ar":A.j3("ar") +return new A.Xz() +case"de":A.j3("de") +return new A.XA() +case"en":A.j3("en") +return new A.XB() +case"es":A.j3("es") +return new A.XC() +case"fr":A.j3("fr") +return new A.XD() +case"ja":A.j3("ja") +return new A.XE() +case"ko":A.j3("ko") +return new A.XF() +case"pt":A.j3("pt") +return new A.In() +case"uk":A.j3("uk") +return new A.XH() +case"zh":A.j3("zh") +return new A.Io()}throw A.c(A.qs('AppLocalizations.delegate failed to load unsupported locale "'+a.l(0)+'". This is likely an issue with the localizations generation tool. Please file an issue on GitHub with a reproducible sample app and the gen-l10n configuration that was used.'))}, +fW:function fW(){}, +ae9:function ae9(){}, +Xz:function Xz(){}, +XA:function XA(){}, +XB:function XB(){}, +XC:function XC(){}, +XD:function XD(){}, +XE:function XE(){}, +XF:function XF(){}, +In:function In(){}, +XG:function XG(){}, +XH:function XH(){}, +Io:function Io(){}, +XI:function XI(){}, +XJ:function XJ(){}, +bIP(a,b){var s,r,q,p,o=a.a,n=b.a,m=J.hC(o) +if(m.k(o,n))return!0 +if(o==null||n==null||m.gt(o)!==J.b3(n))return!1 +s=m.gam(o) +r=J.al(n) +for(;!0;){if(!s.v()||!r.v())return!0 +q=s.gG(s) +p=r.gG(r) +if(typeof q=="number"&&typeof p=="number"){if(isNaN(q)&&isNaN(p))continue +m=J.hC(q) +if(m.k(q,0)&&p===0){m=m.k(q,0)?1/q<0:q<0 +if(m!==(p===0?1/p<0:p<0))return!1 +continue}}if(!J.j(q,p))return!1}}, +bxh(a,b){var s=b.a8() +s.a=a +s.c=b +s.M6() +return s}, +bmT(a){var s,r +if(a.ib$!=null){if(a.h_$==null)a.h_$=new A.jU(t.n_) +for(;s=a.ib$,s!=null;){a.ib$=s.gnt(s) +r=s.hU$ +r.toString +r.T2(s.$ti.h("ji.E").a(s)) +r=a.h_$ +r.z8(r.c,s,!1)}}}, +ia:function ia(){}, +ib:function ib(){}, +mC:function mC(a,b){var _=this +_.a=a +_.jc$=_.ic$=_.hU$=null +_.$ti=b}, +a2D:function a2D(){}, +beD:function beD(){}, +a2E:function a2E(){}, +anj:function anj(a,b,c,d,e,f,g,h,i,j){var _=this +_.ib$=a +_.jR$=b +_.tw$=c +_.h_$=d +_.jS$=e +_.pS$=f +_.Ay$=g +_.Az$=h +_.c=_.b=_.a=_.ax=null +_.d=$ +_.e=i +_.f=null +_.r=j +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1}, +ahC:function ahC(){}, +ahB:function ahB(){}, +aqr:function aqr(){}, +bzH(a){return $.bb.bz(B.aCJ,t.qb)}, +bnX(a,b){return $.bb.bz(new A.hz(new A.biq(a,b),B.cM,b.h("hz>")),b.h("yp<0>"))}, +w1(a,b,c){return $.bb.bz(new A.hz(new A.bip(a,c),b,c.h("hz<0>")),c)}, +Vc:function Vc(a,b,c){this.b=a +this.a=b +this.$ti=c}, +aoT:function aoT(){this.c=this.b=this.a=null}, +Qm:function Qm(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 +_.a=i}, +ae2:function ae2(){var _=this +_.d=$ +_.c=_.b=_.a=null}, +Ug:function Ug(a){this.a=a}, +aob:function aob(){var _=this +_.c=_.b=_.a=_.d=null}, +RR:function RR(a,b,c,d,e,f,g){var _=this +_.b=a +_.c=b +_.d=c +_.e=d +_.f=e +_.r=f +_.a=g}, +ahe:function ahe(){var _=this +_.d=$ +_.c=_.b=_.a=null}, +Aj:function Aj(a,b){this.b=a +this.a=b}, +GM:function GM(){this.c=this.b=this.a=null}, +b7N:function b7N(){}, +T6:function T6(a,b,c,d){var _=this +_.b=a +_.c=b +_.d=c +_.a=d}, +ajU:function ajU(){var _=this +_.d=$ +_.c=_.b=_.a=null}, +yp:function yp(a,b){this.a=a +this.$ti=b}, +biq:function biq(a,b){this.a=a +this.b=b}, +bip:function bip(a,b){this.a=a +this.b=b}, +hz:function hz(a,b,c){this.b=a +this.a=b +this.$ti=c}, +SM:function SM(a){var _=this +_.d=$ +_.c=_.b=_.a=null +_.$ti=a}, +dK:function dK(a,b){this.b=a +this.a=b}, +agy:function agy(){var _=this +_.c=_.b=_.a=_.d=null}, +dc:function dc(a,b,c){this.b=a +this.a=b +this.$ti=c}, +Hq:function Hq(a){var _=this +_.d=$ +_.c=_.b=_.a=null +_.$ti=a}, +bcw:function bcw(){}, +UE:function UE(a,b,c,d){var _=this +_.b=a +_.c=b +_.d=c +_.a=d}, +anB:function anB(){var _=this +_.d=$ +_.c=_.b=_.a=null}, +mH:function mH(a,b){this.b=a +this.a=b}, +anR:function anR(){var _=this +_.d=$ +_.c=_.b=_.a=null}, +a2j:function a2j(){}, +ahq:function ahq(){}, +b6p:function b6p(a){this.a=a}, +b6q:function b6q(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}, +bGb(a,b,c,d,e,f,g,h,i){return new A.Jo()}, +bGc(a,b,c,d,e,f,g,h,i){return new A.Jp()}, +bGd(a,b,c,d,e,f,g,h,i){return new A.Jq()}, +bGe(a,b,c,d,e,f,g,h,i){return new A.Jr()}, +bGf(a,b,c,d,e,f,g,h,i){return new A.Js()}, +bGg(a,b,c,d,e,f,g,h,i){return new A.Jt()}, +bGh(a,b,c,d,e,f,g,h,i){return new A.Ju()}, +bGi(a,b,c,d,e,f,g,h,i){return new A.Jv()}, +bqt(a,b,c,d,e,f,g,h){return new A.a0j()}, +bqu(a,b,c,d,e,f,g,h){return new A.a0k()}, +bVj(a,b,c,d,e,f,g,h,i){switch(a.ge0(a)){case"af":return new A.ZF() +case"am":return new A.ZG() +case"ar":return new A.ZH() +case"as":return new A.ZI() +case"az":return new A.ZJ() +case"be":return new A.ZK() +case"bg":return new A.ZL() +case"bn":return new A.ZM() +case"bs":return new A.ZN() +case"ca":return new A.ZO() +case"cs":return new A.ZP() +case"cy":return new A.ZQ() +case"da":return new A.ZR() +case"de":switch(a.geW()){case"CH":return new A.ZS()}return A.bGb(c,i,g,b,"de",d,e,f,h) +case"el":return new A.ZT() +case"en":switch(a.geW()){case"AU":return new A.ZU() +case"CA":return new A.ZV() +case"GB":return new A.ZW() +case"IE":return new A.ZX() +case"IN":return new A.ZY() +case"NZ":return new A.ZZ() +case"SG":return new A.a__() +case"ZA":return new A.a_0()}return A.bGc(c,i,g,b,"en",d,e,f,h) +case"es":switch(a.geW()){case"419":return new A.a_1() +case"AR":return new A.a_2() +case"BO":return new A.a_3() +case"CL":return new A.a_4() +case"CO":return new A.a_5() +case"CR":return new A.a_6() +case"DO":return new A.a_7() +case"EC":return new A.a_8() +case"GT":return new A.a_9() +case"HN":return new A.a_a() +case"MX":return new A.a_b() +case"NI":return new A.a_c() +case"PA":return new A.a_d() +case"PE":return new A.a_e() +case"PR":return new A.a_f() +case"PY":return new A.a_g() +case"SV":return new A.a_h() +case"US":return new A.a_i() +case"UY":return new A.a_j() +case"VE":return new A.a_k()}return A.bGd(c,i,g,b,"es",d,e,f,h) +case"et":return new A.a_l() +case"eu":return new A.a_m() +case"fa":return new A.a_n() +case"fi":return new A.a_o() +case"fil":return new A.a_p() +case"fr":switch(a.geW()){case"CA":return new A.a_q()}return A.bGe(c,i,g,b,"fr",d,e,f,h) +case"gl":return new A.a_r() +case"gsw":return new A.a_s() +case"gu":return new A.a_t() +case"he":return new A.a_u() +case"hi":return new A.a_v() +case"hr":return new A.a_w() +case"hu":return new A.a_x() +case"hy":return new A.a_y() +case"id":return new A.a_z() +case"is":return new A.a_A() +case"it":return new A.a_B() +case"ja":return new A.a_C() +case"ka":return new A.a_D() +case"kk":return new A.a_E() +case"km":return new A.a_F() +case"kn":return new A.a_G() +case"ko":return new A.a_H() +case"ky":return new A.a_I() +case"lo":return new A.a_J() +case"lt":return new A.a_K() +case"lv":return new A.a_L() +case"mk":return new A.a_M() +case"ml":return new A.a_N() +case"mn":return new A.a_O() +case"mr":return new A.a_P() +case"ms":return new A.a_Q() +case"my":return new A.a_R() +case"nb":return new A.a_S() +case"ne":return new A.a_T() +case"nl":return new A.a_U() +case"no":return new A.a_V() +case"or":return new A.a_W() +case"pa":return new A.a_X() +case"pl":return new A.a_Y() +case"pt":switch(a.geW()){case"PT":return new A.a_Z()}return A.bGf(c,i,g,b,"pt",d,e,f,h) +case"ro":return new A.a0_() +case"ru":return new A.a00() +case"si":return new A.a01() +case"sk":return new A.a02() +case"sl":return new A.a03() +case"sq":return new A.a04() +case"sr":switch(a.b){case"Cyrl":return new A.a05() +case"Latn":return new A.a06()}return A.bGg(c,i,g,b,"sr",d,e,f,h) +case"sv":return new A.a07() +case"sw":return new A.a08() +case"ta":return new A.a09() +case"te":return new A.a0a() +case"th":return new A.a0b() +case"tl":return new A.a0c() +case"tr":return new A.a0d() +case"uk":return new A.a0e() +case"ur":return new A.a0f() +case"uz":return new A.a0g() +case"vi":return new A.a0h() +case"zh":switch(a.b){case"Hans":return new A.a0i() +case"Hant":switch(a.geW()){case"HK":return A.bqt(c,i,g,b,d,e,f,h) +case"TW":return A.bqu(c,i,g,b,d,e,f,h)}return A.bGi(c,i,g,b,"zh_Hant",d,e,f,h)}switch(a.geW()){case"HK":return A.bqt(c,i,g,b,d,e,f,h) +case"TW":return A.bqu(c,i,g,b,d,e,f,h)}return A.bGh(c,i,g,b,"zh",d,e,f,h) +case"zu":return new A.a0l()}return null}, +ZF:function ZF(){}, +ZG:function ZG(){}, +ZH:function ZH(){}, +ZI:function ZI(){}, +ZJ:function ZJ(){}, +ZK:function ZK(){}, +ZL:function ZL(){}, +ZM:function ZM(){}, +ZN:function ZN(){}, +ZO:function ZO(){}, +ZP:function ZP(){}, +ZQ:function ZQ(){}, +ZR:function ZR(){}, +Jo:function Jo(){}, +ZS:function ZS(){}, +ZT:function ZT(){}, +Jp:function Jp(){}, +ZU:function ZU(){}, +ZV:function ZV(){}, +ZW:function ZW(){}, +ZX:function ZX(){}, +ZY:function ZY(){}, +ZZ:function ZZ(){}, +a__:function a__(){}, +a_0:function a_0(){}, +Jq:function Jq(){}, +a_1:function a_1(){}, +a_2:function a_2(){}, +a_3:function a_3(){}, +a_4:function a_4(){}, +a_5:function a_5(){}, +a_6:function a_6(){}, +a_7:function a_7(){}, +a_8:function a_8(){}, +a_9:function a_9(){}, +a_a:function a_a(){}, +a_b:function a_b(){}, +a_c:function a_c(){}, +a_d:function a_d(){}, +a_e:function a_e(){}, +a_f:function a_f(){}, +a_g:function a_g(){}, +a_h:function a_h(){}, +a_i:function a_i(){}, +a_j:function a_j(){}, +a_k:function a_k(){}, +a_l:function a_l(){}, +a_m:function a_m(){}, +a_n:function a_n(){}, +a_o:function a_o(){}, +a_p:function a_p(){}, +Jr:function Jr(){}, +a_q:function a_q(){}, +a_r:function a_r(){}, +a_s:function a_s(){}, +a_t:function a_t(){}, +a_u:function a_u(){}, +a_v:function a_v(){}, +a_w:function a_w(){}, +a_x:function a_x(){}, +a_y:function a_y(){}, +a_z:function a_z(){}, +a_A:function a_A(){}, +a_B:function a_B(){}, +a_C:function a_C(){}, +a_D:function a_D(){}, +a_E:function a_E(){}, +a_F:function a_F(){}, +a_G:function a_G(){}, +a_H:function a_H(){}, +a_I:function a_I(){}, +a_J:function a_J(){}, +a_K:function a_K(){}, +a_L:function a_L(){}, +a_M:function a_M(){}, +a_N:function a_N(){}, +a_O:function a_O(){}, +a_P:function a_P(){}, +a_Q:function a_Q(){}, +a_R:function a_R(){}, +a_S:function a_S(){}, +a_T:function a_T(){}, +a_U:function a_U(){}, +a_V:function a_V(){}, +a_W:function a_W(){}, +a_X:function a_X(){}, +a_Y:function a_Y(){}, +Js:function Js(){}, +a_Z:function a_Z(){}, +a0_:function a0_(){}, +a00:function a00(){}, +a01:function a01(){}, +a02:function a02(){}, +a03:function a03(){}, +a04:function a04(){}, +Jt:function Jt(){}, +a05:function a05(){}, +a06:function a06(){}, +a07:function a07(){}, +a08:function a08(){}, +a09:function a09(){}, +a0a:function a0a(){}, +a0b:function a0b(){}, +a0c:function a0c(){}, +a0d:function a0d(){}, +a0e:function a0e(){}, +a0f:function a0f(){}, +a0g:function a0g(){}, +a0h:function a0h(){}, +Ju:function Ju(){}, +a0i:function a0i(){}, +Jv:function Jv(){}, +a0j:function a0j(){}, +a0k:function a0k(){}, +a0l:function a0l(){}, +bJX(a,b,c,d,e,f,g,h,i,j){return new A.LR(d,b)}, +bJY(a,b,c,d,e,f,g,h,i,j){return new A.LS(d,b)}, +bJZ(a,b,c,d,e,f,g,h,i,j){return new A.LT(d,b)}, +bK_(a,b,c,d,e,f,g,h,i,j){return new A.LU(d,b)}, +bK0(a,b,c,d,e,f,g,h,i,j){return new A.LV(d,b)}, +bK1(a,b,c,d,e,f,g,h,i,j){return new A.LW(d,b)}, +bK2(a,b,c,d,e,f,g,h,i,j){return new A.LX(d,b)}, +bK3(a,b,c,d,e,f,g,h,i,j){return new A.LY(d,b)}, +bsJ(a,b,c,d,e,f,g,h,i){return new A.a5I("zh_Hant_HK",b)}, +bsK(a,b,c,d,e,f,g,h,i){return new A.a5J("zh_Hant_TW",b)}, +bVn(a,b,c,d,e,f,g,h,i,j){switch(a.ge0(a)){case"af":return new A.a42("af",i) +case"am":return new A.a43("am",i) +case"ar":return new A.a44("ar",i) +case"as":return new A.a45("as",i) +case"az":return new A.a46("az",i) +case"be":return new A.a47("be",i) +case"bg":return new A.a48("bg",i) +case"bn":return new A.a49("bn",i) +case"bs":return new A.a4a("bs",i) +case"ca":return new A.a4b("ca",i) +case"cs":return new A.a4c("cs",i) +case"cy":return new A.a4d("cy",i) +case"da":return new A.a4e("da",i) +case"de":switch(a.geW()){case"CH":return new A.a4f("de_CH",i)}return A.bJX(c,i,b,"de",f,e,d,h,j,g) +case"el":return new A.a4g("el",i) +case"en":switch(a.geW()){case"AU":return new A.a4h("en_AU",i) +case"CA":return new A.a4i("en_CA",i) +case"GB":return new A.a4j("en_GB",i) +case"IE":return new A.a4k("en_IE",i) +case"IN":return new A.a4l("en_IN",i) +case"NZ":return new A.a4m("en_NZ",i) +case"SG":return new A.a4n("en_SG",i) +case"ZA":return new A.a4o("en_ZA",i)}return A.bJY(c,i,b,"en",f,e,d,h,j,g) +case"es":switch(a.geW()){case"419":return new A.a4p("es_419",i) +case"AR":return new A.a4q("es_AR",i) +case"BO":return new A.a4r("es_BO",i) +case"CL":return new A.a4s("es_CL",i) +case"CO":return new A.a4t("es_CO",i) +case"CR":return new A.a4u("es_CR",i) +case"DO":return new A.a4v("es_DO",i) +case"EC":return new A.a4w("es_EC",i) +case"GT":return new A.a4x("es_GT",i) +case"HN":return new A.a4y("es_HN",i) +case"MX":return new A.a4z("es_MX",i) +case"NI":return new A.a4A("es_NI",i) +case"PA":return new A.a4B("es_PA",i) +case"PE":return new A.a4C("es_PE",i) +case"PR":return new A.a4D("es_PR",i) +case"PY":return new A.a4E("es_PY",i) +case"SV":return new A.a4F("es_SV",i) +case"US":return new A.a4G("es_US",i) +case"UY":return new A.a4H("es_UY",i) +case"VE":return new A.a4I("es_VE",i)}return A.bJZ(c,i,b,"es",f,e,d,h,j,g) +case"et":return new A.a4J("et",i) +case"eu":return new A.a4K("eu",i) +case"fa":return new A.a4L("fa",i) +case"fi":return new A.a4M("fi",i) +case"fil":return new A.a4N("fil",i) +case"fr":switch(a.geW()){case"CA":return new A.a4O("fr_CA",i)}return A.bK_(c,i,b,"fr",f,e,d,h,j,g) +case"gl":return new A.a4P("gl",i) +case"gsw":return new A.a4Q("gsw",i) +case"gu":return new A.a4R("gu",i) +case"he":return new A.a4S("he",i) +case"hi":return new A.a4T("hi",i) +case"hr":return new A.a4U("hr",i) +case"hu":return new A.a4V("hu",i) +case"hy":return new A.a4W("hy",i) +case"id":return new A.a4X("id",i) +case"is":return new A.a4Y("is",i) +case"it":return new A.a4Z("it",i) +case"ja":return new A.a5_("ja",i) +case"ka":return new A.a50("ka",i) +case"kk":return new A.a51("kk",i) +case"km":return new A.a52("km",i) +case"kn":return new A.a53("kn",i) +case"ko":return new A.a54("ko",i) +case"ky":return new A.a55("ky",i) +case"lo":return new A.a56("lo",i) +case"lt":return new A.a57("lt",i) +case"lv":return new A.a58("lv",i) +case"mk":return new A.a59("mk",i) +case"ml":return new A.a5a("ml",i) +case"mn":return new A.a5b("mn",i) +case"mr":return new A.a5c("mr",i) +case"ms":return new A.a5d("ms",i) +case"my":return new A.a5e("my",i) +case"nb":return new A.a5f("nb",i) +case"ne":return new A.a5g("ne",i) +case"nl":return new A.a5h("nl",i) +case"no":return new A.a5i("no",i) +case"or":return new A.a5j("or",i) +case"pa":return new A.a5k("pa",i) +case"pl":return new A.a5l("pl",i) +case"ps":return new A.a5m("ps",i) +case"pt":switch(a.geW()){case"PT":return new A.a5n("pt_PT",i)}return A.bK0(c,i,b,"pt",f,e,d,h,j,g) +case"ro":return new A.a5o("ro",i) +case"ru":return new A.a5p("ru",i) +case"si":return new A.a5q("si",i) +case"sk":return new A.a5r("sk",i) +case"sl":return new A.a5s("sl",i) +case"sq":return new A.a5t("sq",i) +case"sr":switch(a.b){case"Cyrl":return new A.a5u("sr_Cyrl",i) +case"Latn":return new A.a5v("sr_Latn",i)}return A.bK1(c,i,b,"sr",f,e,d,h,j,g) +case"sv":return new A.a5w("sv",i) +case"sw":return new A.a5x("sw",i) +case"ta":return new A.a5y("ta",i) +case"te":return new A.a5z("te",i) +case"th":return new A.a5A("th",i) +case"tl":return new A.a5B("tl",i) +case"tr":return new A.a5C("tr",i) +case"uk":return new A.a5D("uk",i) +case"ur":return new A.a5E("ur",i) +case"uz":return new A.a5F("uz",i) +case"vi":return new A.a5G("vi",i) +case"zh":switch(a.b){case"Hans":return new A.a5H("zh_Hans",i) +case"Hant":switch(a.geW()){case"HK":return A.bsJ(c,i,b,f,e,d,h,j,g) +case"TW":return A.bsK(c,i,b,f,e,d,h,j,g)}return A.bK3(c,i,b,"zh_Hant",f,e,d,h,j,g)}switch(a.geW()){case"HK":return A.bsJ(c,i,b,f,e,d,h,j,g) +case"TW":return A.bsK(c,i,b,f,e,d,h,j,g)}return A.bK2(c,i,b,"zh",f,e,d,h,j,g) +case"zu":return new A.a5K("zu",i)}return null}, +a42:function a42(a,b){this.a=a +this.x=b}, +a43:function a43(a,b){this.a=a +this.x=b}, +a44:function a44(a,b){this.a=a +this.x=b}, +a45:function a45(a,b){this.a=a +this.x=b}, +a46:function a46(a,b){this.a=a +this.x=b}, +a47:function a47(a,b){this.a=a +this.x=b}, +a48:function a48(a,b){this.a=a +this.x=b}, +a49:function a49(a,b){this.a=a +this.x=b}, +a4a:function a4a(a,b){this.a=a +this.x=b}, +a4b:function a4b(a,b){this.a=a +this.x=b}, +a4c:function a4c(a,b){this.a=a +this.x=b}, +a4d:function a4d(a,b){this.a=a +this.x=b}, +a4e:function a4e(a,b){this.a=a +this.x=b}, +LR:function LR(a,b){this.a=a +this.x=b}, +a4f:function a4f(a,b){this.a=a +this.x=b}, +a4g:function a4g(a,b){this.a=a +this.x=b}, +LS:function LS(a,b){this.a=a +this.x=b}, +a4h:function a4h(a,b){this.a=a +this.x=b}, +a4i:function a4i(a,b){this.a=a +this.x=b}, +a4j:function a4j(a,b){this.a=a +this.x=b}, +a4k:function a4k(a,b){this.a=a +this.x=b}, +a4l:function a4l(a,b){this.a=a +this.x=b}, +a4m:function a4m(a,b){this.a=a +this.x=b}, +a4n:function a4n(a,b){this.a=a +this.x=b}, +a4o:function a4o(a,b){this.a=a +this.x=b}, +LT:function LT(a,b){this.a=a +this.x=b}, +a4p:function a4p(a,b){this.a=a +this.x=b}, +a4q:function a4q(a,b){this.a=a +this.x=b}, +a4r:function a4r(a,b){this.a=a +this.x=b}, +a4s:function a4s(a,b){this.a=a +this.x=b}, +a4t:function a4t(a,b){this.a=a +this.x=b}, +a4u:function a4u(a,b){this.a=a +this.x=b}, +a4v:function a4v(a,b){this.a=a +this.x=b}, +a4w:function a4w(a,b){this.a=a +this.x=b}, +a4x:function a4x(a,b){this.a=a +this.x=b}, +a4y:function a4y(a,b){this.a=a +this.x=b}, +a4z:function a4z(a,b){this.a=a +this.x=b}, +a4A:function a4A(a,b){this.a=a +this.x=b}, +a4B:function a4B(a,b){this.a=a +this.x=b}, +a4C:function a4C(a,b){this.a=a +this.x=b}, +a4D:function a4D(a,b){this.a=a +this.x=b}, +a4E:function a4E(a,b){this.a=a +this.x=b}, +a4F:function a4F(a,b){this.a=a +this.x=b}, +a4G:function a4G(a,b){this.a=a +this.x=b}, +a4H:function a4H(a,b){this.a=a +this.x=b}, +a4I:function a4I(a,b){this.a=a +this.x=b}, +a4J:function a4J(a,b){this.a=a +this.x=b}, +a4K:function a4K(a,b){this.a=a +this.x=b}, +a4L:function a4L(a,b){this.a=a +this.x=b}, +a4M:function a4M(a,b){this.a=a +this.x=b}, +a4N:function a4N(a,b){this.a=a +this.x=b}, +LU:function LU(a,b){this.a=a +this.x=b}, +a4O:function a4O(a,b){this.a=a +this.x=b}, +a4P:function a4P(a,b){this.a=a +this.x=b}, +a4Q:function a4Q(a,b){this.a=a +this.x=b}, +a4R:function a4R(a,b){this.a=a +this.x=b}, +a4S:function a4S(a,b){this.a=a +this.x=b}, +a4T:function a4T(a,b){this.a=a +this.x=b}, +a4U:function a4U(a,b){this.a=a +this.x=b}, +a4V:function a4V(a,b){this.a=a +this.x=b}, +a4W:function a4W(a,b){this.a=a +this.x=b}, +a4X:function a4X(a,b){this.a=a +this.x=b}, +a4Y:function a4Y(a,b){this.a=a +this.x=b}, +a4Z:function a4Z(a,b){this.a=a +this.x=b}, +a5_:function a5_(a,b){this.a=a +this.x=b}, +a50:function a50(a,b){this.a=a +this.x=b}, +a51:function a51(a,b){this.a=a +this.x=b}, +a52:function a52(a,b){this.a=a +this.x=b}, +a53:function a53(a,b){this.a=a +this.x=b}, +a54:function a54(a,b){this.a=a +this.x=b}, +a55:function a55(a,b){this.a=a +this.x=b}, +a56:function a56(a,b){this.a=a +this.x=b}, +a57:function a57(a,b){this.a=a +this.x=b}, +a58:function a58(a,b){this.a=a +this.x=b}, +a59:function a59(a,b){this.a=a +this.x=b}, +a5a:function a5a(a,b){this.a=a +this.x=b}, +a5b:function a5b(a,b){this.a=a +this.x=b}, +a5c:function a5c(a,b){this.a=a +this.x=b}, +a5d:function a5d(a,b){this.a=a +this.x=b}, +a5e:function a5e(a,b){this.a=a +this.x=b}, +a5f:function a5f(a,b){this.a=a +this.x=b}, +a5g:function a5g(a,b){this.a=a +this.x=b}, +a5h:function a5h(a,b){this.a=a +this.x=b}, +a5i:function a5i(a,b){this.a=a +this.x=b}, +a5j:function a5j(a,b){this.a=a +this.x=b}, +a5k:function a5k(a,b){this.a=a +this.x=b}, +a5l:function a5l(a,b){this.a=a +this.x=b}, +a5m:function a5m(a,b){this.a=a +this.x=b}, +LV:function LV(a,b){this.a=a +this.x=b}, +a5n:function a5n(a,b){this.a=a +this.x=b}, +a5o:function a5o(a,b){this.a=a +this.x=b}, +a5p:function a5p(a,b){this.a=a +this.x=b}, +a5q:function a5q(a,b){this.a=a +this.x=b}, +a5r:function a5r(a,b){this.a=a +this.x=b}, +a5s:function a5s(a,b){this.a=a +this.x=b}, +a5t:function a5t(a,b){this.a=a +this.x=b}, +LW:function LW(a,b){this.a=a +this.x=b}, +a5u:function a5u(a,b){this.a=a +this.x=b}, +a5v:function a5v(a,b){this.a=a +this.x=b}, +a5w:function a5w(a,b){this.a=a +this.x=b}, +a5x:function a5x(a,b){this.a=a +this.x=b}, +a5y:function a5y(a,b){this.a=a +this.x=b}, +a5z:function a5z(a,b){this.a=a +this.x=b}, +a5A:function a5A(a,b){this.a=a +this.x=b}, +a5B:function a5B(a,b){this.a=a +this.x=b}, +a5C:function a5C(a,b){this.a=a +this.x=b}, +a5D:function a5D(a,b){this.a=a +this.x=b}, +a5E:function a5E(a,b){this.a=a +this.x=b}, +a5F:function a5F(a,b){this.a=a +this.x=b}, +a5G:function a5G(a,b){this.a=a +this.x=b}, +LX:function LX(a,b){this.a=a +this.x=b}, +a5H:function a5H(a,b){this.a=a +this.x=b}, +LY:function LY(a,b){this.a=a +this.x=b}, +a5I:function a5I(a,b){this.a=a +this.x=b}, +a5J:function a5J(a,b){this.a=a +this.x=b}, +a5K:function a5K(a,b){this.a=a +this.x=b}, +bVq(a){switch(a.ge0(a)){case"af":return B.azx +case"am":return B.azy +case"ar":return B.azz +case"as":return B.azA +case"az":return B.azB +case"be":return B.azC +case"bg":return B.azD +case"bn":return B.azE +case"bs":return B.azF +case"ca":return B.azG +case"cs":return B.azH +case"cy":return B.azI +case"da":return B.azJ +case"de":switch(a.geW()){case"CH":return B.azK}return B.azL +case"el":return B.azM +case"en":switch(a.geW()){case"AU":return B.azN +case"CA":return B.azO +case"GB":return B.azP +case"IE":return B.azQ +case"IN":return B.azR +case"NZ":return B.azS +case"SG":return B.azT +case"ZA":return B.azU}return B.azV +case"es":switch(a.geW()){case"419":return B.azW +case"AR":return B.azX +case"BO":return B.azY +case"CL":return B.azZ +case"CO":return B.aA_ +case"CR":return B.aA0 +case"DO":return B.aA1 +case"EC":return B.aA2 +case"GT":return B.aA3 +case"HN":return B.aA4 +case"MX":return B.aA5 +case"NI":return B.aA6 +case"PA":return B.aA7 +case"PE":return B.aA8 +case"PR":return B.aA9 +case"PY":return B.aAa +case"SV":return B.aAb +case"US":return B.aAc +case"UY":return B.aAd +case"VE":return B.aAe}return B.aAf +case"et":return B.aAg +case"eu":return B.aAh +case"fa":return B.aAi +case"fi":return B.aAj +case"fil":return B.aAk +case"fr":switch(a.geW()){case"CA":return B.aAl}return B.aAm +case"gl":return B.aAn +case"gsw":return B.aAo +case"gu":return B.aAp +case"he":return B.aAq +case"hi":return B.aAr +case"hr":return B.aAs +case"hu":return B.aAt +case"hy":return B.aAu +case"id":return B.aAv +case"is":return B.aAw +case"it":return B.aAx +case"ja":return B.aAy +case"ka":return B.aAz +case"kk":return B.aAA +case"km":return B.aAB +case"kn":return B.aAC +case"ko":return B.aAD +case"ky":return B.aAE +case"lo":return B.aAF +case"lt":return B.aAG +case"lv":return B.aAH +case"mk":return B.aAI +case"ml":return B.aAJ +case"mn":return B.aAK +case"mr":return B.aAL +case"ms":return B.aAM +case"my":return B.aAN +case"nb":return B.aAO +case"ne":return B.aAP +case"nl":return B.aAQ +case"no":return B.aAR +case"or":return B.aAS +case"pa":return B.aAT +case"pl":return B.aAU +case"ps":return B.aAV +case"pt":switch(a.geW()){case"PT":return B.aAW}return B.aAX +case"ro":return B.aAY +case"ru":return B.aAZ +case"si":return B.aB_ +case"sk":return B.aB0 +case"sl":return B.aB1 +case"sq":return B.aB2 +case"sr":switch(a.b){case"Cyrl":return B.aB3 +case"Latn":return B.aB4}return B.aB5 +case"sv":return B.aB6 +case"sw":return B.aB7 +case"ta":return B.aB8 +case"te":return B.aB9 +case"th":return B.aBa +case"tl":return B.aBb +case"tr":return B.aBc +case"uk":return B.aBd +case"ur":return B.aBe +case"uz":return B.aBf +case"vi":return B.aBg +case"zh":switch(a.b){case"Hans":return B.aBh +case"Hant":switch(a.geW()){case"HK":return B.Pn +case"TW":return B.Po}return B.aBi}switch(a.geW()){case"HK":return B.Pn +case"TW":return B.Po}return B.aBj +case"zu":return B.aBk}return null}, +abP:function abP(a){this.a=a}, +abQ:function abQ(a){this.a=a}, +abR:function abR(a){this.a=a}, +abS:function abS(a){this.a=a}, +abT:function abT(a){this.a=a}, +abU:function abU(a){this.a=a}, +abV:function abV(a){this.a=a}, +abW:function abW(a){this.a=a}, +abX:function abX(a){this.a=a}, +abY:function abY(a){this.a=a}, +abZ:function abZ(a){this.a=a}, +ac_:function ac_(a){this.a=a}, +ac0:function ac0(a){this.a=a}, +PW:function PW(a){this.a=a}, +ac1:function ac1(a){this.a=a}, +ac2:function ac2(a){this.a=a}, +PX:function PX(a){this.a=a}, +ac3:function ac3(a){this.a=a}, +ac4:function ac4(a){this.a=a}, +ac5:function ac5(a){this.a=a}, +ac6:function ac6(a){this.a=a}, +ac7:function ac7(a){this.a=a}, +ac8:function ac8(a){this.a=a}, +ac9:function ac9(a){this.a=a}, +aca:function aca(a){this.a=a}, +PY:function PY(a){this.a=a}, +acb:function acb(a){this.a=a}, +acc:function acc(a){this.a=a}, +acd:function acd(a){this.a=a}, +ace:function ace(a){this.a=a}, +acf:function acf(a){this.a=a}, +acg:function acg(a){this.a=a}, +ach:function ach(a){this.a=a}, +aci:function aci(a){this.a=a}, +acj:function acj(a){this.a=a}, +ack:function ack(a){this.a=a}, +acl:function acl(a){this.a=a}, +acm:function acm(a){this.a=a}, +acn:function acn(a){this.a=a}, +aco:function aco(a){this.a=a}, +acp:function acp(a){this.a=a}, +acq:function acq(a){this.a=a}, +acr:function acr(a){this.a=a}, +acs:function acs(a){this.a=a}, +act:function act(a){this.a=a}, +acu:function acu(a){this.a=a}, +acv:function acv(a){this.a=a}, +acw:function acw(a){this.a=a}, +acx:function acx(a){this.a=a}, +acy:function acy(a){this.a=a}, +acz:function acz(a){this.a=a}, +PZ:function PZ(a){this.a=a}, +acA:function acA(a){this.a=a}, +acB:function acB(a){this.a=a}, +acC:function acC(a){this.a=a}, +acD:function acD(a){this.a=a}, +acE:function acE(a){this.a=a}, +acF:function acF(a){this.a=a}, +acG:function acG(a){this.a=a}, +acH:function acH(a){this.a=a}, +acI:function acI(a){this.a=a}, +acJ:function acJ(a){this.a=a}, +acK:function acK(a){this.a=a}, +acL:function acL(a){this.a=a}, +acM:function acM(a){this.a=a}, +acN:function acN(a){this.a=a}, +acO:function acO(a){this.a=a}, +acP:function acP(a){this.a=a}, +acQ:function acQ(a){this.a=a}, +acR:function acR(a){this.a=a}, +acS:function acS(a){this.a=a}, +acT:function acT(a){this.a=a}, +acU:function acU(a){this.a=a}, +acV:function acV(a){this.a=a}, +acW:function acW(a){this.a=a}, +acX:function acX(a){this.a=a}, +acY:function acY(a){this.a=a}, +acZ:function acZ(a){this.a=a}, +ad_:function ad_(a){this.a=a}, +ad0:function ad0(a){this.a=a}, +ad1:function ad1(a){this.a=a}, +ad2:function ad2(a){this.a=a}, +ad3:function ad3(a){this.a=a}, +ad4:function ad4(a){this.a=a}, +ad5:function ad5(a){this.a=a}, +ad6:function ad6(a){this.a=a}, +ad7:function ad7(a){this.a=a}, +ad8:function ad8(a){this.a=a}, +Q_:function Q_(a){this.a=a}, +ad9:function ad9(a){this.a=a}, +ada:function ada(a){this.a=a}, +adb:function adb(a){this.a=a}, +adc:function adc(a){this.a=a}, +add:function add(a){this.a=a}, +ade:function ade(a){this.a=a}, +adf:function adf(a){this.a=a}, +Q0:function Q0(a){this.a=a}, +adg:function adg(a){this.a=a}, +adh:function adh(a){this.a=a}, +adi:function adi(a){this.a=a}, +adj:function adj(a){this.a=a}, +adk:function adk(a){this.a=a}, +adl:function adl(a){this.a=a}, +adm:function adm(a){this.a=a}, +adn:function adn(a){this.a=a}, +ado:function ado(a){this.a=a}, +adp:function adp(a){this.a=a}, +adq:function adq(a){this.a=a}, +adr:function adr(a){this.a=a}, +ads:function ads(a){this.a=a}, +Q1:function Q1(a){this.a=a}, +adt:function adt(a){this.a=a}, +Q2:function Q2(a){this.a=a}, +adu:function adu(a){this.a=a}, +adv:function adv(a){this.a=a}, +adw:function adw(a){this.a=a}, +a2k:function a2k(){}, +aj3:function aj3(){}, +b7Y:function b7Y(a){this.a=a}, +bz0(){if(!$.bx9){$.bDE().al(0,new A.bhr()) +$.bx9=!0}}, +bhr:function bhr(){}, +a2m:function a2m(){}, +ap6:function ap6(){}, +beq:function beq(a){this.a=a}, +a1Z:function a1Z(){}, +bG5(a){var s=A.a([],t.ha),r=a.a8() +s=new A.BK(A.I(t.o8,t.I0),s,r,a,B.an) +r.c=s +r.a=a +return s}, +wD:function wD(){}, +afa:function afa(a){var _=this +_.d=$ +_.a=null +_.b=a +_.c=null}, +Zp:function Zp(){}, +Jj:function Jj(){}, +BK:function BK(a,b,c,d,e){var _=this +_.co=$ +_.aK=a +_.b6=null +_.c_=b +_.cp=null +_.k3=c +_.k4=!1 +_.c=_.b=_.a=_.ax=null +_.d=$ +_.e=d +_.f=null +_.r=e +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1}, +axB:function axB(a,b,c){this.a=a +this.b=b +this.c=c}, +axA:function axA(a,b){this.a=a +this.b=b}, +aOs(a,b){var s,r=t.F9 +if(b)s=a.aj(r) +else{r=a.ou(r) +if(r==null)r=null +else{r=r.e +r.toString}t.MQ.a(r) +s=r}if(s==null)throw A.c(A.R("No ProviderScope found")) +return s.f}, +N8:function N8(a,b,c){this.d=a +this.f=b +this.a=c}, +a7s:function a7s(a){var _=this +_.d=$ +_.e=null +_.f=!1 +_.a=null +_.b=a +_.c=null}, +FB:function FB(a,b,c){this.f=a +this.b=b +this.a=c}, +V0:function V0(a,b,c){var _=this +_.b3=null +_.bd=!0 +_.y2=a +_.c=_.b=_.a=_.ax=null +_.d=$ +_.e=b +_.f=null +_.r=c +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1}, +be1:function be1(a){this.a=a}, +a7V:function a7V(){}, +aQs:function aQs(a){this.a=a}, +aNt:function aNt(a){this.a=a}, +bHY(){return new A.aCn()}, +PE:function PE(a,b){this.a=a +this.b=b}, +aCm:function aCm(a){var _=this +_.b=_.a=null +_.c=a +_.e=_.d=null}, +aCp:function aCp(a,b){this.a=a +this.b=b}, +aCo:function aCo(a){this.a=a}, +aCq:function aCq(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aCn:function aCn(){}, +Gq:function Gq(a,b){this.c=a +this.a=b}, +b5d:function b5d(a){this.a=a}, +aod:function aod(a,b,c){this.a=a +this.b=b +this.c=c}, +UU:function UU(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f}, +ab6:function ab6(a,b,c){var _=this +_.d=null +_.e=$ +_.f=null +_.ff$=a +_.c3$=b +_.a=null +_.b=c +_.c=null}, +b_5:function b_5(a){this.a=a}, +b_4:function b_4(a){this.a=a}, +UV:function UV(){}, +a20:function a20(){}, +L_:function L_(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +cX:function cX(a,b,c){this.b=a +this.a=b +this.$ti=c}, +oC:function oC(a,b,c){this.c=a +this.a=b +this.$ti=c}, +aEf:function aEf(){}, +NA:function NA(a,b,c,d,e){var _=this +_.B=a +_.W=b +_.a6=c +_.an=d +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +aQN:function aQN(a,b){this.a=a +this.b=b}, +aQL:function aQL(a,b){this.a=a +this.b=b}, +aQM:function aQM(a,b){this.a=a +this.b=b}, +aQK:function aQK(a,b){this.a=a +this.b=b}, +qw:function qw(a,b){this.c=a +this.a=b}, +akQ:function akQ(a,b,c,d,e){var _=this +_.d=a +_.e=b +_.f=c +_.r=d +_.a=e}, +bvN(a,b,c,d,e,f,g,h,i,j){return new A.Aa(g,i,f,e,a,j,h,b,c,d)}, +aRS:function aRS(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.r=f +_.w=g}, +Aa:function Aa(a,b,c,d,e,f,g,h,i,j){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.a=j}, +Rk:function Rk(a,b){var _=this +_.d=null +_.e=$ +_.f=a +_.a=_.x=_.w=_.r=null +_.b=b +_.c=null}, +b4g:function b4g(a,b){this.a=a +this.b=b}, +b4h:function b4h(a,b,c){this.a=a +this.b=b +this.c=c}, +b4i:function b4i(a,b,c){this.a=a +this.b=b +this.c=c}, +b4j:function b4j(){}, +b4k:function b4k(){}, +b4l:function b4l(){}, +b4m:function b4m(){}, +aRT:function aRT(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aRW:function aRW(a,b,c){this.a=a +this.b=b +this.c=c}, +aRX:function aRX(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aRZ:function aRZ(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aRY:function aRY(a){this.a=a}, +aRV:function aRV(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aRU:function aRU(){}, +brU(a,b,c){var s +if(a<0)return new A.cC(!0,t.d9) +s=A.brU(a-1,b,c) +return s}, +KS:function KS(a,b,c,d){var _=this +_.a=$ +_.b=a +_.c=b +_.d=c +_.k4$=0 +_.ok$=d +_.p2$=_.p1$=0 +_.p3$=!1}, +aFp:function aFp(a){this.a=a}, +aFq:function aFq(a){this.a=a}, +aFr:function aFr(){}, +aFs:function aFs(a,b){this.a=a +this.b=b}, +ahv:function ahv(){}, +Mk:function Mk(a,b){this.a=a +this.b=b}, +nz:function nz(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.$ti=e}, +KR:function KR(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.k4$=0 +_.ok$=d +_.p2$=_.p1$=0 +_.p3$=!1}, +aht:function aht(){}, +ahu:function ahu(){}, +bXY(a){var s=$.bxY +if(s!=null)s.aI(0) +$.ob=!0 +$.bxY=$.mO().a21().B1(new A.bi3())}, +bi3:function bi3(){}, +blt(a,b,c,d,e,f,g){var s,r +if(e instanceof A.zo)s=A.bLM(a,b,c,d,e,f,g) +else if(e instanceof A.oH)s=A.bLL(a,b,c,d,e,f,g) +else return B.kR +if(s.aq(0,f)){r=s.E(0,f) +r.toString +J.w7(s.cK(0,null,new A.aS4()),r)}return s}, +bLM(a,b,c,d,e,f,g){var s,r,q,p,o,n,m,l=null,k=e.b +if(k===f)k=l +s=A.b6("navigatorKeyUsed") +for(r=e.a,q=r.length,p=e.w,o=l,n=0;n")),q=!1;s.v();){p=r.gG(r) +if(q)n.a+="/" +if(p instanceof A.h9)o=p.a.d +else if(p instanceof A.jp)o=A.Eo(p.d) +else continue +n.a+=o +if(o.length!==0)q=q||o!=="/" +else q=!1}s=n.a +return s.charCodeAt(0)==0?s:s}, +btR(a,b,c){var s,r,q=J.fg(a),p=J.ct(b) +if(p.gX(b) instanceof A.jp&&q.length!==0&&p.gX(b).gNw()===B.b.gX(q).gNw()){s=t.UD +r=s.a(B.b.h5(q)) +B.b.F(q,r.wZ(A.btR(r.d,s.a(p.gX(b)).d,c))) +return q}B.b.F(q,A.btQ(p.gX(b),c)) +return q}, +btQ(a,b){if(a instanceof A.jp)return a.wZ(A.a([A.btQ(J.ks(a.d),b)],t.K1)) +return b}, +btS(a,b){var s,r,q,p,o,n +for(s=J.aj(a),r=s.gt(a)-1;r>=0;--r){q=s.i(a,r) +if(q.k(0,b)){for(;r>0;){s.i(a,r-1) instanceof A.h9 +break}return s.cT(a,0,r)}if(q instanceof A.jp){p=q.d +o=A.btS(p,b) +n=J.hC(o) +if(n.k(o,p))continue +p=A.a8(s.cT(a,0,r),!0,t._W) +if(n.gd2(o))p.push(q.wZ(o)) +return p}}return a}, +a8H(a,b){var s,r +for(s=J.al(a);s.v();){r=s.gG(s) +if(!b.$1(r))return!1 +if(r instanceof A.jp&&!A.a8H(r.d,b))return!1}return!0}, +iQ:function iQ(){}, +aS4:function aS4(){}, +aS3:function aS3(){}, +aS1:function aS1(){}, +aS2:function aS2(){}, +h9:function h9(a,b,c){this.a=a +this.b=b +this.c=c}, +jp:function jp(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +ic:function ic(a,b,c,d,e){var _=this +_.d=a +_.e=b +_.a=c +_.b=d +_.c=e}, +aHe:function aHe(){}, +ex:function ex(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +aS5:function aS5(){}, +aS7:function aS7(a){this.a=a}, +aS6:function aS6(){}, +a8G:function a8G(a,b){this.a=a +this.b=b}, +am4:function am4(a){this.a=a}, +bbp:function bbp(a){this.a=a}, +bbq:function bbq(a){this.a=a}, +am3:function am3(a){this.a=a}, +am2:function am2(){}, +am5:function am5(){}, +Cj:function Cj(a,b){this.c=a +this.a=b}, +aBZ:function aBZ(a){this.a=a}, +QK:function QK(a,b,c){this.c=a +this.d=b +this.a=c}, +aeF:function aeF(a){var _=this +_.d=$ +_.a=null +_.b=a +_.c=null}, +brR(a){return new A.a2o(a)}, +brS(a){return new A.CB(a)}, +a2o:function a2o(a){this.a=a}, +CB:function CB(a){this.a=a}, +bII(a){return new A.aFt(a)}, +aFt:function aFt(a){this.a=a}, +tX:function tX(a,b,c){this.f=a +this.b=b +this.a=c}, +bWF(a,b,c,d,e){return new A.jI(b,c,e,d,a,t.gF)}, +BN:function BN(a,b){this.c=a +this.a=b}, +ay2:function ay2(a){this.a=a}, +bGt(a,b,c,d,e,f,g,h,i){return new A.iC(b,g,f,h,c,e,d,a,i.h("iC<0>"))}, +bt4(a,b,c,d,e,f){return new A.ma(b,B.B,B.B,A.ar6(),c,e,d,a,f.h("ma<0>"))}, +bKr(a,b,c,d){return d}, +iC:function iC(a,b,c,d,e,f,g,h,i){var _=this +_.r=a +_.w=b +_.x=c +_.ay=d +_.c=e +_.d=f +_.a=g +_.b=h +_.$ti=i}, +Rl:function Rl(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s){var _=this +_.cp=a +_.ct=b +_.B=c +_.fr=d +_.fx=e +_.fy=!1 +_.id=_.go=null +_.k1=f +_.k2=g +_.k3=h +_.k4=i +_.ok=j +_.p1=$ +_.p2=null +_.p3=$ +_.hB$=k +_.mY$=l +_.y=m +_.z=null +_.Q=!1 +_.at=_.as=null +_.ax=n +_.ay=!0 +_.CW=_.ch=null +_.e=o +_.a=null +_.b=p +_.c=q +_.d=r +_.$ti=s}, +ma:function ma(a,b,c,d,e,f,g,h,i){var _=this +_.r=a +_.w=b +_.x=c +_.ay=d +_.c=e +_.d=f +_.a=g +_.b=h +_.$ti=i}, +bWG(a,b,c,d,e){return new A.nf(b,c,e,d,a,t.sS)}, +Dq:function Dq(a,b){this.c=a +this.a=b}, +aJV:function aJV(a){this.a=a}, +aFl:function aFl(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aFm:function aFm(a,b){this.a=a +this.b=b}, +aFn:function aFn(a,b,c){this.a=a +this.b=b +this.c=c}, +bzj(a,b){var s,r,q,p,o,n,m,l,k +for(s=$.boC().t9(0,a),s=new A.ru(s.a,s.b,s.c),r=t.Qz,q=0,p="^";s.v();){o=s.d +n=(o==null?r.a(o):o).b +m=n.index +if(m>q)p+=A.arg(B.c.S(a,q,m)) +l=n[1] +l.toString +k=n[2] +p+=k!=null?A.bRo(k,l):"(?<"+l+">[^/]+)" +b.push(l) +q=m+n[0].length}s=q"+s+")"}, +bzi(a,b){var s,r,q,p,o,n,m,l +for(s=$.boC().t9(0,a),s=new A.ru(s.a,s.b,s.c),r=t.Qz,q=0,p="";s.v();p=l){o=s.d +n=(o==null?r.a(o):o).b +m=n.index +if(m>q)p+=B.c.S(a,q,m) +l=n[1] +l.toString +l=p+A.i(b.i(0,l)) +q=m+n[0].length}s=q")),q=A.aX(12,s,!1,t.gJ),p=A.aX(12,0,!1,t.S) +return new A.a3j(a,b,new A.a2Z(new A.vD(s,s,q,p,t.C2),B.hc,c,t.nT),r,d.h("a3j<0>"))}, +a3j:function a3j(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=0 +_.f=-1 +_.$ti=e}, +D7:function D7(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=$ +_.f=!0 +_.$ti=e}, +aGf:function aGf(a,b,c,d){var _=this +_.b=a +_.c=b +_.d=null +_.e=c +_.f=null +_.a=d}, +a2A:function a2A(){}, +CI:function CI(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.e=_.d=null +_.r=_.f=!1 +_.$ti=d}, +S6:function S6(){}, +S7:function S7(){}, +S8:function S8(){}, +NP:function NP(a,b,c){this.a=a +this.b=b +this.$ti=c}, +b8X:function b8X(){}, +b_O:function b_O(){}, +a0O:function a0O(){}, +a2Z:function a2Z(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=1 +_.e=0 +_.$ti=d}, +vD:function vD(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.$ti=e}, +ai7:function ai7(){}, +aic:function aic(a,b){this.a=a +this.$ti=b}, +Sv:function Sv(a,b){this.a=a +this.$ti=b}, +bP6(a){var s=A.a([],t.ha),r=a.a8() +s=new A.ahA(null,new A.jU(t.n_),new A.jU(t.gL),null,!1,null,!1,!1,A.I(t.o8,t.I0),s,r,a,B.an) +r.c=s +r.a=a +return s}, +beA:function beA(){}, +a2C:function a2C(){}, +ahA:function ahA(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.ib$=a +_.jR$=b +_.tw$=c +_.h_$=d +_.jS$=e +_.pS$=f +_.Ay$=g +_.Az$=h +_.co=$ +_.aK=i +_.b6=null +_.c_=j +_.cp=null +_.k3=k +_.k4=!1 +_.c=_.b=_.a=_.ax=null +_.d=$ +_.e=l +_.f=null +_.r=m +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1}, +apB:function apB(){}, +bVh(a){return A.bg0(new A.bha(a,null),t.Wd)}, +bg0(a,b){return A.bT3(a,b,b)}, +bT3(a,b,c){var s=0,r=A.y(c),q,p=2,o,n=[],m,l +var $async$bg0=A.u(function(d,e){if(d===1){o=e +s=p}while(true)switch(s){case 0:A.bzJ() +m=new A.IK(A.aW(t.e)) +p=3 +s=6 +return A.t(a.$1(m),$async$bg0) +case 6:l=e +q=l +n=[1] +s=4 +break +n.push(5) +s=4 +break +case 3:n=[2] +case 4:p=2 +J.I1(m) +s=n.pop() +break +case 5:case 1:return A.w(q,r) +case 2:return A.v(o,r)}}) +return A.x($async$bg0,r)}, +bha:function bha(a,b){this.a=a +this.b=b}, +Yi:function Yi(){}, +Yj:function Yj(){}, +atU:function atU(){}, +atV:function atV(){}, +atW:function atW(){}, +bxi(a){var s,r,q,p,o,n,m=t.N,l=A.I(m,m),k=a.getAllResponseHeaders().split("\r\n") +for(m=k.length,s=0;s")),b.h("IS<0>")) +s.I(0,a) +return s}, +IS:function IS(a,b,c){this.a=a +this.c=b +this.$ti=c}, +avM:function avM(){}, +bsQ(a){return A.bYV("media type",a,new A.aKc(a))}, +bl2(a,b,c){var s=t.N +s=c==null?A.I(s,s):A.bFB(c,s) +return new A.M2(a.toLowerCase(),b.toLowerCase(),new A.mu(s,t.G5))}, +M2:function M2(a,b,c){this.a=a +this.b=b +this.c=c}, +aKc:function aKc(a){this.a=a}, +aKe:function aKe(a){this.a=a}, +aKd:function aKd(){}, +bUJ(a){var s +a.a9Y($.bD8(),"quoted string") +s=a.gB0().i(0,0) +return A.bnQ(B.c.S(s,1,s.length-1),$.bD7(),new A.bgH(),null)}, +bgH:function bgH(){}, +ble(a,b,c,d,e,f){return new A.a6H(c,a,b,d,e,f.h("a6H<0>"))}, +a6H:function a6H(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.d=c +_.e=d +_.f=e +_.$ti=f}, +qS:function qS(a,b,c,d,e,f,g){var _=this +_.w=a +_.x=b +_.y=c +_.z=d +_.a=e +_.k4$=0 +_.ok$=f +_.p2$=_.p1$=0 +_.p3$=!1 +_.$ti=g}, +aMZ:function aMZ(a,b){this.a=a +this.b=b}, +aMY:function aMY(a,b){this.a=a +this.b=b}, +jl:function jl(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.$ti=d}, +lu:function lu(a,b){this.a=a +this.b=b}, +bpU(a,b,c,d,e,f,g){var s=d==null,r=s?e:new A.asF(f,d,e) +s=s?f:f+1 +return new A.XO(r,s,!0,!0,!0,g==null?new A.asG():g,null)}, +XO:function XO(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.r=f +_.w=g}, +asF:function asF(a,b,c){this.a=a +this.b=b +this.c=c}, +asG:function asG(){}, +Ly:function Ly(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +Sz:function Sz(a){this.a=null +this.b=a +this.c=null}, +KG:function KG(a,b){this.c=a +this.a=b}, +DA:function DA(a,b){this.c=a +this.a=b}, +DB:function DB(a){this.a=a}, +bte(a,b,c,d,e,f,g,h,i){return new A.DJ(f,a,e,c,b,!1,d,null,h.h("@<0>").V(i).h("DJ<1,2>"))}, +bfc(a){var s=a.a.a +s=s==null?null:s.length +return s==null?0:s}, +aMO:function aMO(a,b){this.a=a +this.b=b}, +DJ:function DJ(a,b,c,d,e,f,g,h,i){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.a=h +_.$ti=i}, +T7:function T7(a,b){var _=this +_.d=!1 +_.a=null +_.b=a +_.c=null +_.$ti=b}, +b9e:function b9e(a){this.a=a}, +b9f:function b9f(){}, +b9k:function b9k(a){this.a=a}, +b9l:function b9l(a){this.a=a}, +b9g:function b9g(a,b){this.a=a +this.b=b}, +b9h:function b9h(a,b){this.a=a +this.b=b}, +b9i:function b9i(a,b){this.a=a +this.b=b}, +b9j:function b9j(a){this.a=a}, +b9d:function b9d(a){this.a=a}, +Gs:function Gs(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +ME:function ME(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0,a1){var _=this +_.p3=a +_.p4=b +_.R8=c +_.cx=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 +_.a=a0 +_.$ti=a1}, +btf(a,b,c,d){var s=null,r=!0 +r=r?B.dx:s +return new A.MF(b,a,s,B.H,!1,s,s,r,s,!1,s,0,s,s,B.D,B.eK,s,B.C,s,c.h("@<0>").V(d).h("MF<1,2>"))}, +MF:function MF(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,a0){var _=this +_.p3=a +_.p4=b +_.cx=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 +_.a=s +_.$ti=a0}, +bm8(a,b,c,d,e,f,g,h){return new A.vn(e,f,h,!0,d,!0,!0,!0,null)}, +MG:function MG(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 +_.a=k +_.$ti=l}, +aMS:function aMS(a){this.a=a}, +aMR:function aMR(a){this.a=a}, +aMU:function aMU(a){this.a=a}, +aMP:function aMP(a){this.a=a}, +aMT:function aMT(a){this.a=a}, +aMQ:function aMQ(a){this.a=a}, +vn:function vn(a,b,c,d,e,f,g,h,i){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.a=i}, +MH:function MH(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 +_.y=g +_.z=h +_.Q=i +_.a=j +_.$ti=k}, +aMV:function aMV(a){this.a=a}, +aMX:function aMX(a){this.a=a}, +aMW:function aMW(a){this.a=a}, +b_(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.BS(i,e,d,j,q,h,p,m,s,a3,a1,o,a0,r,n,l,a,a5)}, +BS:function BS(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){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 +_.ax=n +_.ay=o +_.ch=p +_.CW=q +_.fy=r}, +bJ6(a,b,c,d,e,f,g,h){var s,r +A.bi(f,"other") +A.bi(a,"howMany") +s=B.f.au(a) +if(s===a)a=s +if(a===0&&h!=null)return h +if(a===1&&e!=null)return e +if(a===2&&g!=null)return g +switch(A.bJ5(c,a,null).$0().a){case 0:return h==null?f:h +case 1:return e==null?f:e +case 2:r=g==null?b:g +return r==null?f:r +case 3:return b==null?f:b +case 4:return d==null?f:d +case 5:return f +default:throw A.c(A.fh(a,"howMany","Invalid plural argument"))}}, +bJ5(a,b,c){var s,r,q,p,o +$.ez=b +s=$.bSC=c +$.eU=B.f.bg(b) +r=""+b +q=B.c.eZ(r,".") +s=q===-1?0:r.length-q-1 +s=Math.min(s,3) +$.ft=s +p=A.ep(Math.pow(10,s)) +s=B.f.aJ(B.f.eC(b*p),p) +$.rW=s +A.bT2($.ft,s) +o=A.lQ(a,A.bX0(),new A.aHz()) +if($.bsg==o){s=$.bsh +s.toString +return s}else{s=$.bpb().i(0,o) +$.bsh=s +$.bsg=o +s.toString +return s}}, +aHz:function aHz(){}, +aF(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){return new A.um(i,c,f,k,p,n,h,e,m,g,j,b,d)}, +um:function um(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 +_.ay=m}, +bqA(a,b){var s=A.lQ(b,A.pS(),null) +s.toString +s=new A.hj(new A.l9(),s) +s.mf(a) +return s}, +bGv(a){var s=A.lQ(a,A.pS(),null) +s.toString +s=new A.hj(new A.l9(),s) +s.mf("d") +return s}, +bjP(a){var s=A.lQ(a,A.pS(),null) +s.toString +s=new A.hj(new A.l9(),s) +s.mf("MMMd") +return s}, +aye(a){var s=A.lQ(a,A.pS(),null) +s.toString +s=new A.hj(new A.l9(),s) +s.mf("MMMEd") +return s}, +ayf(a){var s=A.lQ(a,A.pS(),null) +s.toString +s=new A.hj(new A.l9(),s) +s.mf("y") +return s}, +bjS(a){var s=A.lQ(a,A.pS(),null) +s.toString +s=new A.hj(new A.l9(),s) +s.mf("yMd") +return s}, +a0x(a){var s=A.lQ(a,A.pS(),null) +s.toString +s=new A.hj(new A.l9(),s) +s.mf("yMMMd") +return s}, +bjQ(a){var s=A.lQ(a,A.pS(),null) +s.toString +s=new A.hj(new A.l9(),s) +s.mf("yMMMM") +return s}, +bjR(a){var s=A.lQ(a,A.pS(),null) +s.toString +s=new A.hj(new A.l9(),s) +s.mf("yMMMMEEEEd") +return s}, +bGw(a){var s=A.lQ(a,A.pS(),null) +s.toString +s=new A.hj(new A.l9(),s) +s.mf("m") +return s}, +bGx(a){var s=A.lQ(a,A.pS(),null) +s.toString +s=new A.hj(new A.l9(),s) +s.mf("s") +return s}, +a0y(a){return J.jC($.X8(),a)}, +bGy(){return A.a([new A.ayg(),new A.ayh(),new A.ayi()],t.xf)}, +bOK(a){var s,r +if(a==="''")return"'" +else{s=B.c.S(a,1,a.length-1) +r=$.bBX() +return A.eF(s,r,"'")}}, +hj:function hj(a,b){var _=this +_.a=a +_.c=b +_.x=_.w=_.f=_.e=_.d=null}, +l9:function l9(){}, +ayg:function ayg(){}, +ayh:function ayh(){}, +ayi:function ayi(){}, +vt:function vt(){}, +Gc:function Gc(a,b){this.a=a +this.b=b}, +Ge:function Ge(a,b,c){this.d=a +this.a=b +this.b=c}, +Gd:function Gd(a,b){this.a=a +this.b=b}, +bl9(a,b){return A.bt6(b,new A.aMr(a))}, +aMp(a){return A.bt6(a,new A.aMq())}, +bt6(a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1=A.lQ(a2,A.bWC(),null) +a1.toString +s=t.zr.a($.bpa().i(0,a1)) +r=$.biO() +q=s.ay +p=a3.$1(s) +o=s.r +if(p==null)o=new A.a6r(o,null) +else{o=new A.a6r(o,null) +new A.aMo(s,new A.aYn(p),!1,q,q,o).axI()}n=o.b +m=o.a +l=o.d +k=o.c +j=o.e +i=B.e.bg(Math.log(j)/$.bD4()) +h=o.ax +g=o.f +f=o.r +e=o.w +d=o.x +c=o.y +b=o.z +a=o.Q +a0=o.at +return new A.aMn(m,n,k,l,b,a,o.as,a0,h,!1,f,e,d,c,g,j,i,p,a1,s,o.ay,new A.d_(""),s.e.charCodeAt(0)-r)}, +bla(a){return $.bpa().aq(0,a)}, +bt7(a){var s +a.toString +s=Math.abs(a) +if(s<10)return 1 +if(s<100)return 2 +if(s<1000)return 3 +if(s<1e4)return 4 +if(s<1e5)return 5 +if(s<1e6)return 6 +if(s<1e7)return 7 +if(s<1e8)return 8 +if(s<1e9)return 9 +if(s<1e10)return 10 +if(s<1e11)return 11 +if(s<1e12)return 12 +if(s<1e13)return 13 +if(s<1e14)return 14 +if(s<1e15)return 15 +if(s<1e16)return 16 +if(s<1e17)return 17 +if(s<1e18)return 18 +return 19}, +aMn:function aMn(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 +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g +_.w=h +_.x=i +_.y=j +_.z=k +_.Q=l +_.at=m +_.ay=n +_.ch=o +_.dx=p +_.dy=q +_.fr=r +_.fx=s +_.fy=a0 +_.k1=a1 +_.k2=a2 +_.k4=a3}, +aMr:function aMr(a){this.a=a}, +aMq:function aMq(){}, +aMs:function aMs(a,b,c){this.a=a +this.b=b +this.c=c}, +a6r:function a6r(a,b){var _=this +_.a=a +_.d=_.c=_.b="" +_.e=1 +_.f=0 +_.r=40 +_.w=1 +_.x=3 +_.y=0 +_.Q=_.z=3 +_.ax=_.at=_.as=!1 +_.ay=b}, +aMo:function aMo(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.w=_.r=!1 +_.x=-1 +_.Q=_.z=_.y=0 +_.as=-1}, +aYn:function aYn(a){this.a=a +this.b=0}, +buV(a,b,c){return new A.FF(a,b,A.a([],t.s),c.h("FF<0>"))}, +bxT(a){var s,r=a.length +if(r<3)return-1 +s=a[2] +if(s==="-"||s==="_")return 2 +if(r<4)return-1 +r=a[3] +if(r==="-"||r==="_")return 3 +return-1}, +j3(a){var s,r,q +if(a==="C")return"en_ISO" +if(a.length<5)return a +s=A.bxT(a) +if(s===-1)return a +r=B.c.S(a,0,s) +q=B.c.cm(a,s+1) +if(q.length<=3)q=q.toUpperCase() +return r+"_"+q}, +lQ(a,b,c){var s,r,q +if(a==null){if(A.byx()==null)$.bxd="en_US" +s=A.byx() +s.toString +return A.lQ(s,b,c)}if(b.$1(a))return a +for(s=[A.j3(a),A.bY_(a),"fallback"],r=0;r<3;++r){q=s[r] +if(b.$1(q))return q}return(c==null?A.bVN():c).$1(a)}, +bST(a){throw A.c(A.bZ('Invalid locale "'+a+'"',null))}, +bY_(a){var s,r +if(a==="invalid")return"in" +s=a.length +if(s<2)return a +r=A.bxT(a) +if(r===-1)if(s<4)return a.toLowerCase() +else return a +return B.c.S(a,0,r).toLowerCase()}, +FF:function FF(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.$ti=d}, +a3G:function a3G(a){this.a=a}, +bRd(){return B.av}, +bT2(a,b){if(b===0){$.bfU=0 +return}for(;B.f.aJ(b,10)===0;){b=B.e.eC(b/10);--a}$.bfU=b}, +bQs(){if($.eU===1&&$.ft===0)return B.ax +return B.av}, +bQl(){if($.ez===1)return B.ax +return B.av}, +bQn(){if($.eU===0||$.ez===1)return B.ax +return B.av}, +bQo(){var s,r,q=$.ez +if(q===0)return B.oE +if(q===1)return B.ax +if(q===2)return B.eD +if(B.b.p(A.a([3,4,5,6,7,8,9,10],t.t),B.f.aJ($.ez,100)))return B.c8 +s=J.oL(89,t.S) +for(r=0;r<89;++r)s[r]=r+11 +if(B.b.p(s,B.f.aJ($.ez,100)))return B.bZ +return B.av}, +bQv(){var s,r=$.ez,q=B.f.aJ(r,10) +if(q===1&&B.f.aJ(r,100)!==11)return B.ax +if(q===2||q===3||q===4){s=B.f.aJ(r,100) +s=!(s===12||s===13||s===14)}else s=!1 +if(s)return B.c8 +if(q!==0)if(q!==5)if(q!==6)if(q!==7)if(q!==8)if(q!==9){r=B.f.aJ(r,100) +r=r===11||r===12||r===13||r===14}else r=!0 +else r=!0 +else r=!0 +else r=!0 +else r=!0 +else r=!0 +if(r)return B.bZ +return B.av}, +bQw(){var s,r=$.ez,q=B.f.aJ(r,10) +if(q===1){s=B.f.aJ(r,100) +s=!(s===11||s===71||s===91)}else s=!1 +if(s)return B.ax +if(q===2){r=B.f.aJ(r,100) +r=!(r===12||r===72||r===92)}else r=!1 +if(r)return B.eD +if(q===3||q===4||q===9){r=t.t +r=!(B.b.p(A.a([10,11,12,13,14,15,16,17,18,19],r),B.f.aJ($.ez,100))||B.b.p(A.a([70,71,72,73,74,75,76,77,78,79],r),B.f.aJ($.ez,100))||B.b.p(A.a([90,91,92,93,94,95,96,97,98,99],r),B.f.aJ($.ez,100)))}else r=!1 +if(r)return B.c8 +r=$.ez +if(r!==0&&B.f.aJ(r,1e6)===0)return B.bZ +return B.av}, +bQx(){var s,r=$.ft===0 +if(r){s=$.eU +s=B.f.aJ(s,10)===1&&B.f.aJ(s,100)!==11}else s=!1 +if(!s){s=$.rW +s=B.f.aJ(s,10)===1&&B.f.aJ(s,100)!==11}else s=!0 +if(s)return B.ax +if(r){r=$.eU +s=B.f.aJ(r,10) +if(s===2||s===3||s===4){r=B.f.aJ(r,100) +r=!(r===12||r===13||r===14)}else r=!1}else r=!1 +if(!r){r=$.rW +s=B.f.aJ(r,10) +if(s===2||s===3||s===4){r=B.f.aJ(r,100) +r=!(r===12||r===13||r===14)}else r=!1}else r=!0 +if(r)return B.c8 +return B.av}, +bQB(){var s=$.eU +if(s===1&&$.ft===0)return B.ax +if(s!==0&&B.f.aJ(s,1e6)===0&&$.ft===0)return B.bZ +return B.av}, +bR1(){var s=$.eU +if(s===1&&$.ft===0)return B.ax +if((s===2||s===3||s===4)&&$.ft===0)return B.c8 +if($.ft!==0)return B.bZ +return B.av}, +bR2(){var s=$.ez +if(s===0)return B.oE +if(s===1)return B.ax +if(s===2)return B.eD +if(s===3)return B.c8 +if(s===6)return B.bZ +return B.av}, +bR3(){if($.ez!==1)if($.bfU!==0){var s=$.eU +s=s===0||s===1}else s=!1 +else s=!0 +if(s)return B.ax +return B.av}, +bRn(){if($.ez===1)return B.ax +var s=$.eU +if(s!==0&&B.f.aJ(s,1e6)===0&&$.ft===0)return B.bZ +return B.av}, +bQK(){var s,r=$.ft===0 +if(r){s=$.eU +s=s===1||s===2||s===3}else s=!1 +if(!s){if(r){s=B.f.aJ($.eU,10) +s=!(s===4||s===6||s===9)}else s=!1 +if(!s)if(!r){r=B.f.aJ($.rW,10) +r=!(r===4||r===6||r===9)}else r=!1 +else r=!0}else r=!0 +if(r)return B.ax +return B.av}, +bRy(){var s=$.eU,r=s!==0 +if(!r||s===1)return B.ax +if(r&&B.f.aJ(s,1e6)===0&&$.ft===0)return B.bZ +return B.av}, +bRB(){var s=$.ez +if(s===1)return B.ax +if(s===2)return B.eD +if(s===3||s===4||s===5||s===6)return B.c8 +if(s===7||s===8||s===9||s===10)return B.bZ +return B.av}, +bRS(){var s,r=$.eU +if(!(r===1&&$.ft===0))s=r===0&&$.ft!==0 +else s=!0 +if(s)return B.ax +if(r===2&&$.ft===0)return B.eD +return B.av}, +bRu(){var s=$.eU +if(s===0||s===1)return B.ax +return B.av}, +bSd(){var s,r=$.bfU +if(r===0){s=$.eU +s=B.f.aJ(s,10)===1&&B.f.aJ(s,100)!==11}else s=!1 +if(!s)r=B.f.aJ(r,10)===1&&B.f.aJ(r,100)!==11 +else r=!0 +if(r)return B.ax +return B.av}, +bQm(){var s=$.ez +if(s===0||s===1)return B.ax +return B.av}, +bSj(){if(B.f.aJ($.ez,10)===1&&!B.b.p(A.a([11,12,13,14,15,16,17,18,19],t.t),B.f.aJ($.ez,100)))return B.ax +var s=t.t +if(B.b.p(A.a([2,3,4,5,6,7,8,9],s),B.f.aJ($.ez,10))&&!B.b.p(A.a([11,12,13,14,15,16,17,18,19],s),B.f.aJ($.ez,100)))return B.c8 +if($.rW!==0)return B.bZ +return B.av}, +bSk(){var s,r +if(B.f.aJ($.ez,10)!==0){s=t.t +if(!B.b.p(A.a([11,12,13,14,15,16,17,18,19],s),B.f.aJ($.ez,100)))s=$.ft===2&&B.b.p(A.a([11,12,13,14,15,16,17,18,19],s),B.f.aJ($.rW,100)) +else s=!0}else s=!0 +if(s)return B.oE +s=$.ez +if(!(B.f.aJ(s,10)===1&&B.f.aJ(s,100)!==11)){s=$.ft===2 +if(s){r=$.rW +r=B.f.aJ(r,10)===1&&B.f.aJ(r,100)!==11}else r=!1 +if(!r)s=!s&&B.f.aJ($.rW,10)===1 +else s=!0}else s=!0 +if(s)return B.ax +return B.av}, +bSp(){if($.ft===0){var s=$.eU +s=B.f.aJ(s,10)===1&&B.f.aJ(s,100)!==11}else s=!1 +if(!s){s=$.rW +s=B.f.aJ(s,10)===1&&B.f.aJ(s,100)!==11}else s=!0 +if(s)return B.ax +return B.av}, +bSs(){var s=$.ez +if(s===1)return B.ax +if(s===2)return B.eD +if(s===0||B.b.p(A.a([3,4,5,6,7,8,9,10],t.t),B.f.aJ($.ez,100)))return B.c8 +if(B.b.p(A.a([11,12,13,14,15,16,17,18,19],t.t),B.f.aJ($.ez,100)))return B.bZ +return B.av}, +bSB(){var s,r,q=$.eU,p=q===1 +if(p&&$.ft===0)return B.ax +s=$.ft===0 +if(s){r=B.f.aJ(q,10) +if(r===2||r===3||r===4){r=B.f.aJ(q,100) +r=!(r===12||r===13||r===14)}else r=!1}else r=!1 +if(r)return B.c8 +if(s)if(!p){p=B.f.aJ(q,10) +p=p===0||p===1}else p=!1 +else p=!1 +if(!p){if(s){p=B.f.aJ(q,10) +p=p===5||p===6||p===7||p===8||p===9}else p=!1 +if(!p)if(s){q=B.f.aJ(q,100) +q=q===12||q===13||q===14}else q=!1 +else q=!0}else q=!0 +if(q)return B.bZ +return B.av}, +bSD(){var s=$.eU,r=s!==0 +if(!r||s===1)return B.ax +if(r&&B.f.aJ(s,1e6)===0&&$.ft===0)return B.bZ +return B.av}, +bSq(){var s,r,q,p +if($.eU===1&&$.ft===0)return B.ax +if($.ft===0){s=$.ez +if(s!==0)if(s!==1){r=J.oL(19,t.S) +for(q=0;q<19;q=p){p=q+1 +r[q]=p}s=B.b.p(r,B.f.aJ($.ez,100))}else s=!1 +else s=!0}else s=!0 +if(s)return B.c8 +return B.av}, +bSF(){var s,r,q=$.ft===0 +if(q){s=$.eU +s=B.f.aJ(s,10)===1&&B.f.aJ(s,100)!==11}else s=!1 +if(s)return B.ax +if(q){s=$.eU +r=B.f.aJ(s,10) +if(r===2||r===3||r===4){s=B.f.aJ(s,100) +s=!(s===12||s===13||s===14)}else s=!1}else s=!1 +if(s)return B.c8 +if(!(q&&B.f.aJ($.eU,10)===0)){if(q){s=B.f.aJ($.eU,10) +s=s===5||s===6||s===7||s===8||s===9}else s=!1 +if(!s)if(q){q=B.f.aJ($.eU,100) +q=q===11||q===12||q===13||q===14}else q=!1 +else q=!0}else q=!0 +if(q)return B.bZ +return B.av}, +bSN(){var s=$.ez +if(s!==0)if(s!==1)s=$.eU===0&&$.rW===1 +else s=!0 +else s=!0 +if(s)return B.ax +return B.av}, +bSO(){var s,r=$.ft===0 +if(r&&B.f.aJ($.eU,100)===1)return B.ax +if(r&&B.f.aJ($.eU,100)===2)return B.eD +if(r){s=B.f.aJ($.eU,100) +s=s===3||s===4}else s=!1 +if(s||!r)return B.c8 +return B.av}, +bWa(a){return $.bpb().aq(0,a)}, +nq:function nq(a,b){this.a=a +this.b=b}, +xU:function xU(a,b){this.a=a +this.b=b}, +De:function De(a,b,c,d,e,f,g,h){var _=this +_.a=a +_.b=b +_.d=c +_.e=d +_.f=e +_.r=f +_.w=g +_.x=h}, +aIG(a){return $.bJI.cK(0,a,new A.aIH(a))}, +Df:function Df(a,b,c){var _=this +_.a=a +_.b=b +_.c=null +_.d=c +_.f=null}, +aIH:function aIH(a){this.a=a}, +aMc:function aMc(){}, +aMb:function aMb(){}, +Xx:function Xx(a,b){this.a=a +this.b=b}, +tG:function tG(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +RM:function RM(a,b,c){var _=this +_.f=_.e=_.d=$ +_.ff$=a +_.c3$=b +_.a=null +_.b=c +_.c=null}, +b5e:function b5e(a,b){this.a=a +this.b=b}, +W2:function W2(){}, +Mx:function Mx(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 +_.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 +_.a=a1}, +ajM:function ajM(a){var _=this +_.d=null +_.e=$ +_.a=null +_.b=a +_.c=null}, +bsa(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,a0,a1){var s=new A.a2R(m,a1,l,k,a,a0,!1,c,d,j,n,p,r,e,q,i,h,g,f,b) +s.z=s.aq6() +return s}, +Tb:function Tb(a,b){this.a=a +this.b=b}, +a2R:function a2R(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=$ +_.Q=k +_.as=l +_.at=m +_.ax=n +_.ay=o +_.ch=p +_.CW=q +_.cx=r +_.cy=s +_.db=a0 +_.dy=_.dx=!1}, +aMK(){var s=0,r=A.y(t.A9),q,p,o +var $async$aMK=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:o=$.btb +if(o!=null){q=o +s=1 +break}s=3 +return A.t($.bB0().jx(0),$async$aMK) +case 3:p=b +q=$.btb=new A.ys(p.a,p.b,p.c,p.d,p.e,p.f) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$aMK,r)}, +ys:function ys(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +bQ6(a){if(a.Fv("chrome-extension"))return a.gfk()+"://"+a.gpZ(a) +return a.gBe(a)}, +aMI:function aMI(){}, +aMJ:function aMJ(){}, +aKu:function aKu(){}, +MC:function MC(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +aMH:function aMH(){}, +bjL(a,b){if(a==null)a="." +return new A.Zr(b,a)}, +bn2(a){if(t.Xu.b(a))return a +throw A.c(A.fh(a,"uri","Value must be a String or a Uri"))}, +by1(a,b){var s,r,q,p,o,n,m,l +for(s=b.length,r=1;r=1;s=q){q=s-1 +if(b[q]!=null)break}p=new A.d_("") +o=""+(a+"(") +p.a=o +n=A.ab(b) +m=n.h("kb<1>") +l=new A.kb(b,0,s,m) +l.Cy(b,0,s,n.c) +m=o+new A.ad(l,new A.bg_(),m.h("ad")).ck(0,", ") +p.a=m +p.a=m+("): part "+(r-1)+" was null, but part "+r+" was not.") +throw A.c(A.bZ(p.l(0),null))}}, +Zr:function Zr(a,b){this.a=a +this.b=b}, +axF:function axF(){}, +axG:function axG(){}, +bg_:function bg_(){}, +aHy:function aHy(){}, +p3(a,b){var s,r,q,p,o,n=b.afK(a),m=b.vw(a) +if(n!=null)a=B.c.cm(a,n.length) +s=t.s +r=A.a([],s) +q=A.a([],s) +s=a.length +if(s!==0&&b.qW(a.charCodeAt(0))){q.push(a[0]) +p=1}else{q.push("") +p=0}for(o=p;o>").V(b).h("nu<1,2>"))}, +bQt(a,b){return new A.nu(a,new A.beG(b),b.h("@>").V(b.h("S<0>")).h("nu<1,2>"))}, +bFd(a,b,c,d,e,f,g,h){return new A.fw(a,c,e,null,f,d,b,g.h("@<0>").V(h).h("fw<1,2>"))}, +bFc(a,b,c){var s=null,r=t.B +return new A.on(s,!1,new A.ci(A.aX(0,s,!1,b.h("e3<0>?")),b.h("ci<0>")),new A.ci(A.aX(0,s,!1,c.h("e3>?")),c.h("ci>")),s,s,s,s,a,A.a([],c.h("H>>")),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K),b.h("@<0>").V(c).h("on<1,2>"))}, +brP(a,b){var s=a.gjV(),r=b.gjV() +if(s||r)return s!==r +return!0}, +bRs(a,b,c,d){var s={},r=A.b6("subscription"),q=new A.a7($.ac,d.h("a7<0>")) +s.a=null +r.b=a.fN(new A.bff(s,d),new A.bfg(s,new A.aD(q,d.h("aD<0>")),c,d),new A.bfh(s,d)) +b.$2(q,J.bEd(r.aH()))}, +bpX(a,b,c,d,e,f,g){return new A.Is(a,c,null,null,e,d,b,f.h("@<0>").V(g).h("Is<1,2>"))}, +hh:function hh(){}, +beH:function beH(a,b){this.a=a +this.b=b}, +beG:function beG(a){this.a=a}, +pZ:function pZ(){}, +i_:function i_(){}, +B3:function B3(){}, +fw:function fw(a,b,c,d,e,f,g,h){var _=this +_.CW=_.ch=$ +_.y=a +_.d=b +_.e=c +_.f=d +_.a=e +_.b=f +_.c=g +_.$ti=h}, +on:function on(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.dK$=a +_.eX$=b +_.go=c +_.iD$=d +_.ie$=e +_.ig$=f +_.hV$=g +_.hW$=h +_.a=null +_.b=!1 +_.c=$ +_.d=i +_.e=$ +_.f=j +_.r=k +_.w=l +_.x=m +_.y=n +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null +_.$ti=o}, +c1:function c1(){}, +aEv:function aEv(a,b){this.a=a +this.b=b}, +aEu:function aEu(a){this.a=a}, +aEs:function aEs(a,b){this.a=a +this.b=b}, +aEt:function aEt(a){this.a=a}, +aEq:function aEq(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aEr:function aEr(a,b,c){this.a=a +this.b=b +this.c=c}, +aEm:function aEm(a,b){this.a=a +this.b=b}, +aEo:function aEo(a,b){this.a=a +this.b=b}, +aEp:function aEp(a){this.a=a}, +aEn:function aEn(a){this.a=a}, +b28:function b28(a){this.a=a}, +b29:function b29(){}, +mS:function mS(){}, +f4:function f4(){}, +asX:function asX(a,b){this.a=a +this.b=b}, +asZ:function asZ(a,b){this.a=a +this.b=b}, +asY:function asY(a,b,c){this.a=a +this.b=b +this.c=c}, +asW:function asW(a,b,c){this.a=a +this.b=b +this.c=c}, +bff:function bff(a,b){this.a=a +this.b=b}, +bfh:function bfh(a,b){this.a=a +this.b=b}, +bfg:function bfg(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +bfd:function bfd(a,b){this.a=a +this.b=b}, +bfe:function bfe(a,b){this.a=a +this.b=b}, +F3:function F3(){}, +mX:function mX(){}, +wi:function wi(){}, +Is:function Is(a,b,c,d,e,f,g,h){var _=this +_.y=a +_.d=b +_.e=c +_.f=d +_.a=e +_.b=f +_.c=g +_.$ti=h}, +B4:function B4(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var _=this +_.dK$=a +_.eX$=b +_.go=c +_.iD$=d +_.ie$=e +_.ig$=f +_.hV$=g +_.hW$=h +_.a=null +_.b=!1 +_.c=$ +_.d=i +_.e=$ +_.f=j +_.r=k +_.w=l +_.x=m +_.y=n +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null +_.$ti=o}, +P_:function P_(){}, +aXW:function aXW(a,b){this.a=a +this.b=b}, +aXY:function aXY(a,b){this.a=a +this.b=b}, +aXX:function aXX(a,b,c){this.a=a +this.b=b +this.c=c}, +aXV:function aXV(a,b,c){this.a=a +this.b=b +this.c=c}, +hw:function hw(){}, +Qr:function Qr(){}, +Qs:function Qs(){}, +Qx:function Qx(){}, +Qy:function Qy(){}, +bjs(a,b,c,d){var s=a.fy,r=s==null?null:s.gjs() +if(r==null)a.ad(b) +else a.ad(b.PD(d).zZ(r,c))}, +dE(a,b){return A.bFa(a,b,b.h("F<0>"))}, +bFa(a,b,c){var s=0,r=A.y(c),q,p=2,o,n,m,l,k,j,i +var $async$dE=A.u(function(d,e){if(d===1){o=e +s=p}while(true)switch(s){case 0:p=4 +i=A +s=7 +return A.t(a.$0(),$async$dE) +case 7:l=i.XX(e,b) +q=l +s=1 +break +p=2 +s=6 +break +case 4:p=3 +j=o +n=A.ak(j) +m=A.aJ(j) +l=A.Ir(n,m,b) +q=l +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$dE,r)}, +XX(a,b){return new A.fX(a,!1,null,null,b.h("fX<0>"))}, +bjr(a){return new A.f3(!1,null,null,null,a.h("f3<0>"))}, +Ir(a,b,c){return new A.eC(!1,!1,null,a,b,c.h("eC<0>"))}, +bF8(a){var s,r +if(a.gpa()){s=a.gj(a) +return s}if(a.ghz(a)!=null){s=a.ghz(a) +s.toString +r=a.gke() +r.toString +A.bii(s,r)}throw A.c(A.R("Tried to call `requireValue` on an `AsyncValue` that has no value: "+a.l(0)))}, +c_(a){if(a.gpa())return a.gj(a) +return null}, +bpW(a){var s +if(a.gjV())s=(a.gpa()||a.ghz(a)!=null)&&!(a instanceof A.f3) +else s=!1 +return s}, +bF7(a,b){return a.vz(0,new A.atf(b),new A.atg(b),new A.ath(b))}, +bF9(a,b,c,d){return a.vz(0,new A.ati(b,c,d),new A.atj(c,d),new A.atk(c,d))}, +bjt(a,b,c,d,e,f,g){var s,r,q +if(a.gjV()){if(A.bpW(a))s=!0 +else{if(!a.gpa())a.ghz(a) +s=!1}if(!s)return d.$0()}if(a.ghz(a)!=null)r=!a.gpa()||!e +else r=!1 +if(r){r=a.ghz(a) +r.toString +q=a.gke() +q.toString +return c.$2(r,q)}return b.$1(A.bF8(a))}, +wg(a,b,c,d,e){var s=b==null?new A.atl(d):b,r=c==null?new A.atm():c +return A.bjt(a,s,r,new A.atn(),!1,!0,!1)}, +F:function F(){}, +fX:function fX(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.$ti=e}, +f3:function f3(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.$ti=e}, +asQ:function asQ(a){this.a=a}, +asR:function asR(a){this.a=a}, +asS:function asS(a){this.a=a}, +asT:function asT(a){this.a=a}, +asU:function asU(a){this.a=a}, +asV:function asV(a){this.a=a}, +eC:function eC(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.$ti=f}, +atf:function atf(a){this.a=a}, +atg:function atg(a){this.a=a}, +ath:function ath(a){this.a=a}, +ati:function ati(a,b,c){this.a=a +this.b=b +this.c=c}, +atj:function atj(a,b){this.a=a +this.b=b}, +atk:function atk(a,b){this.a=a +this.b=b}, +atl:function atl(a){this.a=a}, +atm:function atm(){}, +atn:function atn(){}, +bLd(a,b,c){var s,r,q=null,p=A.a([],t.NK),o=t.WK,n=A.cA(q,q,q,o,o),m=A.cA(q,q,q,t.gw,t.pz),l=c==null,k=l?0:c.d+1,j=A.a([],t.BF),i=!l +if(i)B.b.I(j,c.z) +o=A.I(o,t.w4) +if(i)for(i=c.y,i=i.gdX(i),i=i.gam(i);i.v();){s=i.gG(i) +r=s.b +if(!r.d)o.n(0,s.a,r)}l=l?q:c.e +p=new A.E2(3,k,l==null?c:l,c,p,n,m,o,j) +p.amL(a,b,c) +return p}, +bRc(a){A.Cx(a,t.H)}, +blZ(a,b){var s=null +return new A.zX(a,s,s,s,s,s,s,b.h("zX<0>"))}, +Xr:function Xr(){}, +Xq:function Xq(){}, +B2:function B2(){}, +df:function df(){}, +a3f:function a3f(){}, +rO:function rO(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=null}, +bcy:function bcy(a){this.a=a}, +bcz:function bcz(a){this.a=a}, +E2:function E2(a,b,c,d,e,f,g,h,i){var _=this +_.a=a +_.c=$ +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.z=i +_.as=!1}, +aNY:function aNY(a,b){this.a=a +this.b=b}, +aNZ:function aNZ(a,b){this.a=a +this.b=b}, +aO_:function aO_(a){this.a=a}, +aO1:function aO1(a,b){this.a=a +this.b=b}, +aO2:function aO2(a,b,c){this.a=a +this.b=b +this.c=c}, +aO0:function aO0(a,b,c){this.a=a +this.b=b +this.c=c}, +aO3:function aO3(){}, +E3:function E3(a,b){this.a=a +this.b=b}, +Z1:function Z1(){}, +aU:function aU(){}, +aOi:function aOi(a){this.a=a}, +aOg:function aOg(a){this.a=a}, +aOh:function aOh(a){this.a=a}, +aOe:function aOe(){}, +aOf:function aOf(){}, +aO7:function aO7(){}, +aO8:function aO8(a,b){this.a=a +this.b=b}, +aO9:function aO9(a){this.a=a}, +aOa:function aOa(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aOb:function aOb(a,b,c){this.a=a +this.b=b +this.c=c}, +aOc:function aOc(a){this.a=a}, +aOd:function aOd(a,b){this.a=a +this.b=b}, +aO5:function aO5(){}, +aO6:function aO6(){}, +aOj:function aOj(a,b){this.a=a +this.b=b}, +aOk:function aOk(a){this.a=a}, +aOl:function aOl(a,b){this.a=a +this.b=b}, +aO4:function aO4(a,b){this.a=a +this.b=b}, +e5:function e5(){}, +aOp:function aOp(){}, +bk:function bk(){}, +kH:function kH(){}, +bg:function bg(){}, +e2:function e2(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=!1 +_.$ti=d}, +Ap:function Ap(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.$ti=e}, +e8:function e8(){}, +H3:function H3(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.$ti=d}, +nu:function nu(a,b,c){this.a=a +this.b=b +this.$ti=c}, +aOo:function aOo(a,b){this.a=a +this.b=b}, +aOm:function aOm(a){this.a=a}, +aOn:function aOn(){}, +a7r:function a7r(a,b,c){var _=this +_.a=!1 +_.b=a +_.c=b +_.d=c +_.e=null}, +aOq:function aOq(a){this.a=a}, +aOr:function aOr(a,b){this.a=a +this.b=b}, +rI:function rI(a,b,c){this.a=a +this.b=b +this.$ti=c}, +b9L:function b9L(a){this.a=a}, +b9M:function b9M(a){this.a=a}, +b9J:function b9J(a,b,c){this.a=a +this.b=b +this.c=c}, +b9K:function b9K(a,b){this.a=a +this.b=b}, +b9Q:function b9Q(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +b9P:function b9P(a,b){this.a=a +this.b=b}, +b9R:function b9R(a,b){this.a=a +this.b=b}, +b9N:function b9N(a){this.a=a}, +b9O:function b9O(a){this.a=a}, +Hg:function Hg(a,b,c){var _=this +_.a=a +_.b=b +_.c=!1 +_.$ti=c}, +zX:function zX(a,b,c,d,e,f,g,h){var _=this +_.y=a +_.d=b +_.e=c +_.f=d +_.a=e +_.b=f +_.c=g +_.$ti=h}, +FL:function FL(a,b,c,d,e,f,g){var _=this +_.a=null +_.b=!1 +_.c=$ +_.d=a +_.e=$ +_.f=b +_.r=c +_.w=d +_.x=e +_.y=f +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null +_.$ti=g}, +Th:function Th(){}, +Ti:function Ti(){}, +Tj:function Tj(){}, +Vg:function Vg(){}, +Wh:function Wh(){}, +bRA(a,b){return new A.nu(a,new A.bft(b),b.h("@>").V(b.h("S<0>")).h("nu<1,2>"))}, +atu(a,b,c,d,e,f,g){return new A.fY(a,c,e,null,f,d,b,g.h("fY<0>"))}, +bFe(a,b){var s=null,r=t.B +return new A.lU(s,!1,new A.ci(A.aX(0,s,!1,b.h("e3>?")),b.h("ci>")),s,s,s,s,a,A.a([],b.h("H>>")),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K),b.h("lU<0>"))}, +b6a:function b6a(a){this.a=a}, +b6b:function b6b(){}, +bft:function bft(a){this.a=a}, +mE:function mE(){}, +fY:function fY(a,b,c,d,e,f,g,h){var _=this +_.ay=a +_.ch=$ +_.d=b +_.e=c +_.f=d +_.a=e +_.b=f +_.c=g +_.$ti=h}, +lU:function lU(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.dK$=a +_.eX$=b +_.iD$=c +_.ie$=d +_.ig$=e +_.hV$=f +_.hW$=g +_.a=null +_.b=!1 +_.c=$ +_.d=h +_.e=$ +_.f=i +_.r=j +_.w=k +_.x=l +_.y=m +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null +_.$ti=n}, +hk:function hk(){}, +aEw:function aEw(a,b){this.a=a +this.b=b}, +Qu:function Qu(){}, +Qt:function Qt(){}, +fT:function fT(){}, +e3:function e3(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.$ti=d}, +ci:function ci(a,b){var _=this +_.f=null +_.a=0 +_.b=a +_.d=_.c=0 +_.e=!1 +_.$ti=b}, +aOt:function aOt(a,b){this.a=a +this.b=b}, +Vf:function Vf(){}, +bei:function bei(a,b){this.a=a +this.b=b}, +beh:function beh(a,b,c){this.a=a +this.b=b +this.c=c}, +beg:function beg(a,b,c){this.a=a +this.b=b +this.c=c}, +bej:function bej(a){this.a=a}, +bSw(a,b,c){return new A.nu(a,new A.bfP(b,c),c.h("@<0>").V(b).h("nu<1,2>"))}, +cV(a,b,c,d,e,f,g,h){return new A.f5(a,c,e,null,f,d,b,g.h("@<0>").V(h).h("f5<1,2>"))}, +bFf(a,b,c){var s=null,r=t.B +return new A.mT(s,!1,new A.ci(A.aX(0,s,!1,b.h("e3<0>?")),b.h("ci<0>")),a,A.a([],c.h("H>")),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K),b.h("@<0>").V(c).h("mT<1,2>"))}, +bX:function bX(){}, +bfP:function bfP(a,b){this.a=a +this.b=b}, +p_:function p_(){}, +aQ:function aQ(){}, +cu:function cu(){}, +f5:function f5(a,b,c,d,e,f,g,h){var _=this +_.ch=$ +_.y=a +_.d=b +_.e=c +_.f=d +_.a=e +_.b=f +_.c=g +_.$ti=h}, +mT:function mT(a,b,c,d,e,f,g,h,i,j){var _=this +_.dK$=a +_.eX$=b +_.go=c +_.a=null +_.b=!1 +_.c=$ +_.d=d +_.e=$ +_.f=e +_.r=f +_.w=g +_.x=h +_.y=i +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null +_.$ti=j}, +fl:function fl(){}, +aMm:function aMm(a,b){this.a=a +this.b=b}, +Qv:function Qv(){}, +fi(a,b,c,d,e,f,g){return new A.eg(a,c,e,null,f,d,b,g.h("eg<0>"))}, +bFg(a,b){var s=null,r=t.B +return new A.ix(s,!1,a,A.a([],b.h("H>")),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K),b.h("ix<0>"))}, +iF:function iF(){}, +eg:function eg(a,b,c,d,e,f,g,h){var _=this +_.ay=a +_.d=b +_.e=c +_.f=d +_.a=e +_.b=f +_.c=g +_.$ti=h}, +ix:function ix(a,b,c,d,e,f,g,h,i){var _=this +_.dK$=a +_.eX$=b +_.a=null +_.b=!1 +_.c=$ +_.d=c +_.e=$ +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null +_.$ti=i}, +ew:function ew(){}, +Qw:function Qw(){}, +Sq:function Sq(){}, +aRH(a,b){var s,r,q,p +try{q=a.$0() +return new A.em(q,b.h("em<0>"))}catch(p){s=A.ak(p) +r=A.aJ(p) +return new A.fA(s,r,b.h("fA<0>"))}}, +em:function em(a,b){this.a=a +this.$ti=b}, +fA:function fA(a,b,c){this.a=a +this.b=b +this.$ti=c}, +bii(a,b){var s=A.a([A.bNv()],t.ch) +B.b.I(s,A.bFE(b).gXD()) +A.bki(a,new A.abD(new A.iA(A.hN(s,t.f3)).aJg(new A.bij()).BA().a))}, +bij:function bij(){}, +bGK(a,b,c){return new A.JM(a,!0,c.h("JM<0>"))}, +JM:function JM(a,b,c){this.a=a +this.b=b +this.$ti=c}, +bFj(a,b,c,d){return new A.au8(a,b,d)}, +IB:function IB(a,b,c,d){var _=this +_.e=a +_.b=b +_.c=!1 +_.a=c +_.$ti=d}, +au8:function au8(a,b,c){this.a=a +this.b=b +this.c=c}, +ap8:function ap8(a,b){var _=this +_.a=!1 +_.b=a +_.c=null +_.$ti=b}, +vo:function vo(a,b){this.a=a +this.$ti=b}, +F9:function F9(){}, +Hv:function Hv(a,b){this.a=a +this.$ti=b}, +Hp:function Hp(a,b){this.b=a +this.a=null +this.$ti=b}, +aam:function aam(a,b){this.a=a +this.$ti=b}, +aXM:function aXM(a){this.a=a}, +Ho:function Ho(a,b,c){var _=this +_.b=a +_.c=b +_.a=null +_.$ti=c}, +aal:function aal(a,b,c){this.a=a +this.b=b +this.$ti=c}, +aXL:function aXL(a){this.a=a}, +b5_:function b5_(){}, +a1v:function a1v(a,b){this.a=a +this.b=b}, +KK:function KK(){}, +byF(a,b,c,d){var s +if(a.gfM())s=A.bRx(a,b,c,d) +else s=A.bRw(a,b,c,d) +return s}, +bRx(a,b,c,d){return new A.Am(!0,new A.bfl(b,a,d),d.h("Am<0>"))}, +bRw(a,b,c,d){var s,r,q=null,p={} +if(a.gfM())s=new A.o9(q,q,d.h("o9<0>")) +else s=A.lE(q,q,q,!0,d) +p.a=null +p.b=!1 +r=A.bM("sink",new A.bfp(b,c,d)) +s.sWB(new A.bfq(p,a,r,s)) +s.sWo(0,new A.bfr(p,r)) +return s.gw4(s)}, +bfl:function bfl(a,b,c){this.a=a +this.b=b +this.c=c}, +bfm:function bfm(a,b,c){this.a=a +this.b=b +this.c=c}, +bfk:function bfk(a,b){this.a=a +this.b=b}, +bfp:function bfp(a,b,c){this.a=a +this.b=b +this.c=c}, +bfq:function bfq(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +bfs:function bfs(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +bfn:function bfn(a,b){this.a=a +this.b=b}, +bfo:function bfo(a,b){this.a=a +this.b=b}, +bfr:function bfr(a,b){this.a=a +this.b=b}, +SP:function SP(a,b){this.a=a +this.$ti=b}, +Nq:function Nq(a,b,c){this.c=a +this.d=b +this.a=c}, +a7U:function a7U(a,b){this.b=a +this.a=b}, +ale:function ale(a,b){var _=this +_.d=a +_.a=null +_.b=b +_.c=null}, +Sg:function Sg(a,b,c){this.f=a +this.b=b +this.a=c}, +ald:function ald(a,b){var _=this +_.y2=$ +_.c=_.b=_.a=_.ax=null +_.d=$ +_.e=a +_.f=null +_.r=b +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1}, +kB:function kB(a,b,c){this.a=a +this.b=b +this.c=c}, +CV:function CV(a){this.a=a}, +bto(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){return new A.N3(h,g,p,f,i,l,d,n,m,!1,k,e,o,!0,j,!0,!0,null)}, +N3:function N3(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){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 +_.a=r}, +Tf:function Tf(a,b,c){var _=this +_.d=a +_.e=b +_.f=$ +_.r=!1 +_.a=null +_.b=c +_.c=null}, +b9F:function b9F(a){this.a=a}, +b9G:function b9G(a){this.a=a}, +b9H:function b9H(a){this.a=a}, +b9E:function b9E(a){this.a=a}, +DX:function DX(a,b,c){this.c=a +this.d=b +this.a=c}, +akC:function akC(a,b){var _=this +_.c=_.b=_.a=_.ax=null +_.d=$ +_.e=a +_.f=null +_.r=b +_.y=_.x=null +_.z=!1 +_.Q=!0 +_.at=_.as=!1}, +abj:function abj(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s){var _=this +_.p3=a +_.p4=b +_.cx=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 +_.a=s}, +bPL(){var s=t.zX,r=A.a([],s),q=$.aH(),p=t.HR +return new A.U0(new A.aiD(new A.CV(new A.bF(r,q,p)),A.Ey(0,!1),B.azp),new A.aiD(new A.CV(new A.bF(A.a([],s),q,p)),A.Ey(0,!1),B.azq),A.mf(B.qq),new A.bbX(),null,null,B.m)}, +O9:function O9(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.x=f +_.y=g +_.Q=h +_.as=i +_.db=j +_.a=k}, +xJ:function xJ(){this.a=null}, +U0:function U0(a,b,c,d,e,f,g){var _=this +_.d=a +_.e=b +_.f=c +_.r=d +_.w=!1 +_.x=null +_.y=0 +_.dL$=e +_.b7$=f +_.a=null +_.b=g +_.c=null}, +bbX:function bbX(){}, +bbW:function bbW(a){this.a=a}, +bbT:function bbT(a){this.a=a}, +bbU:function bbU(a){this.a=a}, +bbV:function bbV(a){this.a=a}, +bbS:function bbS(a){this.a=a}, +bbR:function bbR(a){this.a=a}, +bbP:function bbP(a){this.a=a}, +bbQ:function bbQ(){}, +bbF:function bbF(a,b,c){this.a=a +this.b=b +this.c=c}, +bbG:function bbG(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +bbJ:function bbJ(a){this.a=a}, +bbK:function bbK(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}, +bbI:function bbI(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}, +bbH:function bbH(){}, +bbL:function bbL(a,b,c){this.a=a +this.b=b +this.c=c}, +bbM:function bbM(a){this.a=a}, +bbN:function bbN(){}, +bbO:function bbO(){}, +aiD:function aiD(a,b,c){var _=this +_.a=a +_.b=b +_.d=_.c=0 +_.e=c}, +Wo:function Wo(){}, +abl:function abl(a,b,c,d,e,f,g,h,i,j,k){var _=this +_.ax=a +_.e=b +_.f=c +_.r=d +_.w=e +_.x=f +_.y=g +_.z=h +_.Q=i +_.c=j +_.a=k}, +abk:function abk(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.xi=a +_.EX=_.EW=$ +_.Lx=!1 +_.qM=null +_.hZ=b +_.ed=c +_.lk=_.iE=$ +_.kt=!1 +_.B=d +_.W=e +_.a6=f +_.an=g +_.ao=null +_.aN=h +_.aZ=i +_.bt=j +_.d8$=k +_.a2$=l +_.dF$=m +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.z=!0 +_.Q=null +_.as=!1 +_.at=null +_.ax=!1 +_.ay=$ +_.ch=n +_.CW=!1 +_.cx=$ +_.cy=!0 +_.db=!1 +_.dx=null +_.dy=!0 +_.fr=null}, +JF:function JF(){}, +aUH(){var s=0,r=A.y(t.cZ),q,p=2,o,n,m,l,k,j,i +var $async$aUH=A.u(function(a,b){if(a===1){o=b +s=p}while(true)switch(s){case 0:s=$.aUF==null?3:4 +break +case 3:n=new A.aD(new A.a7($.ac,t.Gl),t.Iy) +$.aUF=n +p=6 +s=9 +return A.t(A.aUG(),$async$aUH) +case 9:m=b +J.bE7(n,new A.uX(m)) +p=2 +s=8 +break +case 6:p=5 +i=o +l=A.ak(i) +n.kn(l) +k=n.a +$.aUF=null +q=k +s=1 +break +s=8 +break +case 5:s=2 +break +case 8:case 4:q=$.aUF.a +s=1 +break +case 1:return A.w(q,r) +case 2:return A.v(o,r)}}) +return A.x($async$aUH,r)}, +aUG(){var s=0,r=A.y(t.nf),q,p,o,n,m,l,k,j +var $async$aUG=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:n=t.N +m=t.K +l=A.I(n,m) +k=J +j=l +s=3 +return A.t($.biF().jx(0),$async$aUG) +case 3:k.w7(j,b) +p=A.I(n,m) +for(n=l,n=A.ie(n,n.r,A.cq(n).c);n.v();){m=n.d +o=B.c.cm(m,8) +m=J.b7(l,m) +m.toString +p.n(0,o,m)}q=p +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$aUG,r)}, +uX:function uX(a){this.a=a}, +aKv:function aKv(){}, +aUE:function aUE(){}, +aNK:function aNK(a,b){this.a=a +this.b=b}, +aF7:function aF7(a){this.a=a}, +aUC:function aUC(){}, +aUD:function aUD(a,b){this.a=a +this.b=b}, +bu2(a,b,c){return new A.Os(b,new A.ub(B.f1,B.dw,B.cT,A.a([a,a,c,a,a],t.t_),B.ahK,null),null)}, +EP:function EP(a,b){this.a=a +this.b=b}, +Os:function Os(a,b,c){this.c=a +this.f=b +this.a=c}, +amH:function amH(a,b,c){var _=this +_.d=$ +_.e=0 +_.ff$=a +_.c3$=b +_.a=null +_.b=c +_.c=null}, +bci:function bci(a){this.a=a}, +bch:function bch(a){this.a=a}, +Hi:function Hi(a,b,c,d,e){var _=this +_.e=a +_.f=b +_.r=c +_.c=d +_.a=e}, +amG:function amG(a,b,c,d,e){var _=this +_.D=a +_.ac=b +_.az=c +_.k3$=d +_.fy=_.fx=null +_.go=!1 +_.k1=_.id=null +_.k2=0 +_.a=!1 +_.b=null +_.c=0 +_.e=_.d=null +_.r=_.f=!1 +_.w=null +_.x=!1 +_.y=null +_.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}, +Wt:function Wt(){}, +bko(a,b){if(b<0)A.r(A.cb("Offset may not be negative, was "+b+".")) +else if(b>a.c.length)A.r(A.cb("Offset "+b+u.D+a.gt(a)+".")) +return new A.a1J(a,b)}, +aVP:function aVP(a,b,c){var _=this +_.a=a +_.b=b +_.c=c +_.d=null}, +a1J:function a1J(a,b){this.a=a +this.b=b}, +Gr:function Gr(a,b,c){this.a=a +this.b=b +this.c=c}, +bIL(a,b){var s=A.bIM(A.a([A.bP2(a,!0)],t._Y)),r=new A.aGc(b).$0(),q=B.f.l(B.b.gX(s).b+1),p=A.bIN(s)?0:3,o=A.ab(s) +return new A.aFT(s,r,null,1+Math.max(q.length,p),new A.ad(s,new A.aFV(),o.h("ad<1,n>")).lF(0,B.iX),!A.bVQ(new A.ad(s,new A.aFW(),o.h("ad<1,C?>"))),new A.d_(""))}, +bIN(a){var s,r,q +for(s=0;s").V(r.z[1]),s=new A.bT(J.al(s.a),s.b,r.h("bT<1,2>")),r=r.z[1];s.v();){q=s.a +if(q==null)q=r.a(q) +J.arT(q,new A.aFZ())}s=p.gdX(p) +r=A.l(s).h("iD") +return A.a8(new A.iD(s,new A.aG_(),r),!0,r.h("z.E"))}, +bP2(a,b){var s=new A.b6L(a).$0() +return new A.jv(s,!0,null)}, +bP4(a){var s,r,q,p,o,n,m=a.gef(a) +if(!B.c.p(m,"\r\n"))return a +s=a.gcg(a) +r=s.gc5(s) +for(s=m.length-1,q=0;q")),A.bYL(),r.h("eu<1,e0>")),t.f3))}if(!B.c.p(a,q))return new A.iA(A.hN(A.a([A.buQ(a)],t.ch),t.f3)) +return new A.iA(A.hN(new A.ad(A.a(a.split(q),t.s),A.bYK(),t.B5),t.f3))}, +iA:function iA(a){this.a=a}, +awv:function awv(a){this.a=a}, +aww:function aww(){}, +awx:function awx(a,b){this.a=a +this.b=b}, +awy:function awy(a){this.a=a}, +awD:function awD(){}, +awC:function awC(){}, +awA:function awA(){}, +awB:function awB(a){this.a=a}, +awz:function awz(a){this.a=a}, +bIz(a){return A.brL(a)}, +brL(a){return A.a29(a,new A.aEc(a))}, +bIy(a){return A.bIv(a)}, +bIv(a){return A.a29(a,new A.aEa(a))}, +bIs(a){return A.a29(a,new A.aE7(a))}, +bIw(a){return A.bIt(a)}, +bIt(a){return A.a29(a,new A.aE8(a))}, +bIx(a){return A.bIu(a)}, +bIu(a){return A.a29(a,new A.aE9(a))}, +bkz(a){if(B.c.p(a,$.bAI()))return A.dR(a,0,null) +else if(B.c.p(a,$.bAJ()))return A.bwC(a,!0) +else if(B.c.cc(a,"/"))return A.bwC(a,!1) +if(B.c.p(a,"\\"))return $.bE0().adS(a) +return A.dR(a,0,null)}, +a29(a,b){var s,r,q=null +try{s=b.$0() +return s}catch(r){if(t.bE.b(A.ak(r)))return new A.nN(A.fc(q,q,"unparsed",q,q,q),a) +else throw r}}, +e7:function e7(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aEc:function aEc(a){this.a=a}, +aEa:function aEa(a){this.a=a}, +aEb:function aEb(a){this.a=a}, +aE7:function aE7(a){this.a=a}, +aE8:function aE8(a){this.a=a}, +aE9:function aE9(a){this.a=a}, +Lq:function Lq(a){this.a=a +this.b=$}, +xT:function xT(a){this.a=a +this.b=$}, +aIb:function aIb(a,b,c){this.a=a +this.b=b +this.c=c}, +bNv(){return new A.xT(new A.b_y(A.bNw(A.ik()),0))}, +bNw(a){if(t.f3.b(a))return a +if(t.Uc.b(a))return a.BA() +return new A.xT(new A.b_z(a))}, +buQ(a){var s,r,q +try{if(a.length===0){r=A.b_t(A.a([],t.sR),null) +return r}if(B.c.p(a,$.bDx())){r=A.bNu(a) +return r}if(B.c.p(a,"\tat ")){r=A.bNt(a) +return r}if(B.c.p(a,$.bCz())||B.c.p(a,$.bCx())){r=A.bNs(a) +return r}if(B.c.p(a,u.C)){r=A.bqh(a).BA() +return r}if(B.c.p(a,$.bCD())){r=A.buO(a) +return r}r=A.buP(a) +return r}catch(q){r=A.ak(q) +if(t.bE.b(r)){s=r +throw A.c(A.cn(J.bpu(s)+"\nStack trace:\n"+a,null,null))}else throw q}}, +bNy(a){return A.buP(a)}, +buP(a){var s=A.hN(A.bNz(a),t.OP) +return new A.e0(s,new A.pG(a))}, +bNz(a){var s,r=B.c.dn(a),q=$.bpl(),p=t.gD,o=new A.ba(A.a(A.eF(r,q,"").split("\n"),t.s),new A.b_A(),p) +if(!o.gam(o).v())return A.a([],t.sR) +r=A.aYN(o,o.gt(o)-1,p.h("z.E")) +r=A.oT(r,A.bVf(),A.l(r).h("z.E"),t.OP) +s=A.a8(r,!0,A.l(r).h("z.E")) +if(!J.bE9(o.gX(o),".da"))B.b.F(s,A.brL(o.gX(o))) +return s}, +bNu(a){var s=A.fQ(A.a(a.split("\n"),t.s),1,null,t.N).ai1(0,new A.b_x()),r=t.OP +r=A.hN(A.oT(s,A.byK(),s.$ti.h("z.E"),r),r) +return new A.e0(r,new A.pG(a))}, +bNt(a){var s=A.hN(new A.eu(new A.ba(A.a(a.split("\n"),t.s),new A.b_w(),t.gD),A.byK(),t.tN),t.OP) +return new A.e0(s,new A.pG(a))}, +bNs(a){var s=A.hN(new A.eu(new A.ba(A.a(B.c.dn(a).split("\n"),t.s),new A.b_u(),t.gD),A.bVd(),t.tN),t.OP) +return new A.e0(s,new A.pG(a))}, +bNx(a){return A.buO(a)}, +buO(a){var s=a.length===0?A.a([],t.sR):new A.eu(new A.ba(A.a(B.c.dn(a).split("\n"),t.s),new A.b_v(),t.gD),A.bVe(),t.tN) +s=A.hN(s,t.OP) +return new A.e0(s,new A.pG(a))}, +b_t(a,b){var s=A.hN(a,t.OP) +return new A.e0(s,new A.pG(b==null?"":b))}, +e0:function e0(a,b){this.a=a +this.b=b}, +b_y:function b_y(a,b){this.a=a +this.b=b}, +b_z:function b_z(a){this.a=a}, +b_A:function b_A(){}, +b_x:function b_x(){}, +b_w:function b_w(){}, +b_u:function b_u(){}, +b_v:function b_v(){}, +b_C:function b_C(){}, +b_B:function b_B(a){this.a=a}, +nN:function nN(a,b){this.a=a +this.w=b}, +abD:function abD(a){this.a=a}, +b0D:function b0D(a){this.a=a}, +b0C:function b0C(){}, +brX(a,b,c,d){var s,r={} +r.a=a +s=new A.a2v(d.h("a2v<0>")) +s.amC(b,c,r,d) +return s}, +a2v:function a2v(a){var _=this +_.b=_.a=$ +_.c=null +_.d=!1 +_.$ti=a}, +aFA:function aFA(a,b){this.a=a +this.b=b}, +aFz:function aFz(a){this.a=a}, +S1:function S1(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.e=_.d=!1 +_.r=_.f=null +_.w=d +_.$ti=e}, +b6s:function b6s(){}, +aap:function aap(a){this.b=this.a=$ +this.$ti=a}, +aaq:function aaq(){}, +aau:function aau(a,b,c){this.c=a +this.a=b +this.b=c}, +buq(a){return new A.P2(null,a)}, +P2:function P2(a,b){var _=this +_.a=a +_.b=b +_.c=0 +_.e=_.d=null}, +bho(a){var s=A.ab(a).h("ad<1,n>") +return new A.U(1/0,64*B.b.p6(A.a8(new A.ad(a,new A.bhp(),s),!0,s.h("av.E")),0,new A.bhq()))}, +bz5(a){return new A.aVr(a==null?192:a,2,2,0.75)}, +bhp:function bhp(){}, +bhq:function bhq(){}, +d3:function d3(a,b,c){this.c=a +this.a=b +this.b=c}, +hG:function hG(a,b){this.a=a +this.b=b}, +f_:function f_(a,b){this.a=a +this.b=b}, +fn:function fn(a,b){this.a=a +this.b=b}, +kE:function kE(a,b){this.a=a +this.b=b}, +l6:function l6(a,b){this.a=a +this.b=b}, +et:function et(a,b,c){this.c=a +this.a=b +this.b=c}, +m5:function m5(a,b,c,d){var _=this +_.c=a +_.d=b +_.a=c +_.b=d}, +zz:function zz(a,b,c,d){var _=this +_.c=a +_.d=b +_.a=c +_.b=d}, +bsZ(a){var s=B.b.xv($.X4(),new A.aLL(a)) +return s>0?s:0}, +a6h(a,b,c,d,e){return new A.oX(e,c,d,a,b)}, +oX:function oX(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aLL:function aLL(a){this.a=a}, +aLK:function aLK(a){this.a=a}, +aLM:function aLM(){}, +aLN:function aLN(){}, +aLO:function aLO(){}, +aLP:function aLP(){}, +aLQ:function aLQ(){}, +m9:function m9(){}, +nl:function nl(){}, +md:function md(){}, +ns:function ns(){}, +tS:function tS(){}, +bT6(a){return new A.w8(a.y7($.w6()),a.y7($.arL()))}, +w8:function w8(a,b){this.a=a +this.b=b}, +arX:function arX(){}, +arU:function arU(){}, +arV:function arV(a,b){this.a=a +this.b=b}, +arW:function arW(a){this.a=a}, +l1:function l1(){}, +b1m:function b1m(){}, +Q4:function Q4(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +adK:function adK(){}, +hS:function hS(){}, +b1A:function b1A(){}, +A_:function A_(a,b,c){this.a=a +this.b=b +this.c=c}, +amy:function amy(){}, +Xk:function Xk(a){this.a=a}, +as6:function as6(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +as4:function as4(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +as2:function as2(a){this.a=a}, +as3:function as3(){}, +as5:function as5(a,b){this.a=a +this.b=b}, +as7:function as7(a,b,c){this.a=a +this.b=b +this.c=c}, +as8:function as8(a,b){this.a=a +this.b=b}, +arY:function arY(a,b){this.a=a +this.b=b}, +as1:function as1(a){this.a=a}, +arZ:function arZ(a,b,c){this.a=a +this.b=b +this.c=c}, +as_:function as_(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +as0:function as0(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +bnb(a,b,c,d,e){return A.fe(new A.bg8(c,b,e,d),a,t.z)}, +bg8:function bg8(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +bg6:function bg6(a){this.a=a}, +bg7:function bg7(a,b,c){this.a=a +this.b=b +this.c=c}, +Jc(a,b){return new A.Zi(a,b,null)}, +Zi:function Zi(a,b,c){this.e=a +this.f=b +this.a=c}, +axd:function axd(a,b,c){this.a=a +this.b=b +this.c=c}, +Ds:function Ds(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +aK6:function aK6(a,b){this.a=a +this.b=b}, +aK7:function aK7(a,b){this.a=a +this.b=b}, +bUP(a){return new A.tF(a.N($.w6(),t.w6))}, +tF:function tF(a){this.a=a}, +aCf:function aCf(){}, +bY8(a){return new A.EY(a.y7($.w6()))}, +EY:function EY(a){this.a=a}, +aXm:function aXm(){}, +aXj:function aXj(){}, +aXk:function aXk(){}, +aXi:function aXi(){}, +aXn:function aXn(){}, +aXl:function aXl(){}, +cE:function cE(){}, +b1u:function b1u(){}, +FV:function FV(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}, +agL:function agL(){}, +bry(a,b){var s=J.aj(a),r=s.i(a,"filter"),q=A.I(t.N,t.z) +q.n(0,"type",s.i(a,"type")) +if(t.a.b(r))q.I(0,r) +return q}, +brz(a){var s,r,q,p=A.a([],t.H7) +for(s=J.aj(a),r=0;r")),!0,s) +B.b.lY(s) +return s}, +bHW(){return new A.xa($,$,$,$,$)}, +bUN(a){var s,r,q,p,o=t.N,n=t.h1,m=A.I(o,n),l=a.N($.boR(),t.yG) +n=A.I(o,n) +o=A.c_(l) +if(o!=null)n.I(0,o) +o=A.a([],t.s) +s=a.N($.arI(),t.Xb) +if(s!=null)B.b.I(o,s) +for(s=o.length,r=0;r>>6}, +bwq(a){a=a+((a&67108863)<<3)&536870911 +a^=a>>>11 +return a+((a&16383)<<15)&536870911}, +blE(a,b){var s=null +return new A.ON(a,b,new A.aXh(a,b),s,B.SU,s,"sourceQuickSearchMangaListProvider",s,s)}, +blm(a){var s=null +return new A.Nc(a,new A.aOG(a),s,B.SC,s,"quickSearchResultsProvider",s,s)}, +big:function big(a,b,c){this.a=a +this.b=b +this.c=c}, +bhT:function bhT(){}, +bhU:function bhU(a){this.a=a}, +aaa:function aaa(){}, +ON:function ON(a,b,c,d,e,f,g,h,i){var _=this +_.fr=a +_.fx=b +_.ay=c +_.ch=$ +_.d=d +_.e=e +_.f=f +_.a=g +_.b=h +_.c=i}, +aXh:function aXh(a,b){this.a=a +this.b=b}, +OO:function OO(){}, +ana:function ana(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.dK$=a +_.eX$=b +_.iD$=c +_.ie$=d +_.ig$=e +_.hV$=f +_.hW$=g +_.a=null +_.b=!1 +_.c=$ +_.d=h +_.e=$ +_.f=i +_.r=j +_.w=k +_.x=l +_.y=m +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +a7x:function a7x(){}, +Nc:function Nc(a,b,c,d,e,f,g,h){var _=this +_.dy=a +_.ay=b +_.d=c +_.e=d +_.f=e +_.a=f +_.b=g +_.c=h}, +aOG:function aOG(a){this.a=a}, +Nd:function Nd(){}, +akJ:function akJ(a,b,c,d,e,f,g,h){var _=this +_.dK$=a +_.eX$=b +_.a=null +_.b=!1 +_.c=$ +_.d=c +_.e=$ +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +apV:function apV(){}, +aqo:function aqo(){}, +a2l:function a2l(a,b){this.f=a +this.a=b}, +aFe:function aFe(a){this.a=a}, +aFf:function aFf(a,b,c){this.a=a +this.b=b +this.c=c}, +aFc:function aFc(a){this.a=a}, +aFd:function aFd(a,b){this.a=a +this.b=b}, +aac:function aac(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +aXv:function aXv(a,b){this.a=a +this.b=b}, +aXw:function aXw(a){this.a=a}, +aXu:function aXu(a,b){this.a=a +this.b=b}, +bi7(a){return A.bY4(a)}, +bY4(a){var s=0,r=A.y(t.s5),q,p,o +var $async$bi7=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:o=new A.i0(new A.aD(new A.a7($.ac,t.Ic),t.L4)) +a.jX(o.gdJ(o)) +s=3 +return A.t(a.N($.AP(),t.v4).Hf(o),$async$bi7) +case 3:p=c +a.ii() +q=p +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$bi7,r)}, +bY5(a){var s,r,q,p,o=A.I(t.N,t.iW),n=a.N($.bj5(),t.uU),m=a.N($.arO(),t.v),l=t.wb,k=A.a([],l),j=A.c_(n) +if(j!=null)B.b.I(k,j) +j=k.length +s=0 +for(;s") +return A.a8(new A.iD(s,new A.bid(b),r),!0,r.h("z.E"))}s=s.gbp(s) +r=A.l(s).h("iD") +return A.a8(new A.iD(s,new A.bie(),r),!0,r.h("z.E"))}, +bMD(){return new A.zx($,$,$,$,$)}, +bME(){return new A.zy($,$,$,$,$)}, +bwk(a,b){a=a+b&536870911 +a=a+((a&524287)<<10)&536870911 +return a^a>>>6}, +blD(a){var s=null +return new A.OL(a,new A.aXg(a),s,B.ST,s,"sourceQueryProvider",s,s)}, +bi9:function bi9(a){this.a=a}, +bia:function bia(a){this.a=a}, +bib:function bib(a){this.a=a}, +zw:function zw(){this.a=$}, +aVQ:function aVQ(a){this.a=a}, +aVR:function aVR(a){this.a=a}, +aVS:function aVS(a){this.a=a}, +bi8:function bi8(a){this.a=a}, +bid:function bid(a){this.a=a}, +bic:function bic(a){this.a=a}, +bie:function bie(){}, +zx:function zx(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +zy:function zy(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +aa9:function aa9(){}, +OL:function OL(a,b,c,d,e,f,g,h){var _=this +_.dy=a +_.ay=b +_.d=c +_.e=d +_.f=e +_.a=f +_.b=g +_.c=h}, +aXg:function aXg(a){this.a=a}, +OM:function OM(){}, +an9:function an9(a,b,c,d,e,f,g,h){var _=this +_.dK$=a +_.eX$=b +_.a=null +_.b=!1 +_.c=$ +_.d=c +_.e=$ +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +an3:function an3(){}, +an4:function an4(){}, +aqn:function aqn(){}, +aab:function aab(a){this.a=a}, +aXt:function aXt(a){this.a=a}, +aXq:function aXq(a,b){this.a=a +this.b=b}, +aXr:function aXr(a,b,c){this.a=a +this.b=b +this.c=c}, +aXs:function aXs(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +aXo:function aXo(a){this.a=a}, +aXp:function aXp(a,b){this.a=a +this.b=b}, +a9W:function a9W(a){this.a=a}, +aVV:function aVV(a,b){this.a=a +this.b=b}, +aVU:function aVU(a){this.a=a}, +aVW:function aVW(a,b,c){this.a=a +this.b=b +this.c=c}, +aVT:function aVT(a,b){this.a=a +this.b=b}, +rc:function rc(a,b){this.e=a +this.a=b}, +aVY:function aVY(a,b,c){this.a=a +this.b=b +this.c=c}, +aVX:function aVX(a,b,c){this.a=a +this.b=b +this.c=c}, +bi6(a,b){var s=0,r=A.y(t.FO),q,p,o +var $async$bi6=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:o=new A.i0(new A.aD(new A.a7($.ac,t.Ic),t.L4)) +a.jX(o.gdJ(o)) +s=3 +return A.t(a.N($.AP(),t.v4).He(o,b),$async$bi6) +case 3:p=d +a.ii() +q=p +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$bi6,r)}, +bga(a,b){var s=0,r=A.y(t.uS),q,p,o +var $async$bga=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:o=new A.i0(new A.aD(new A.a7($.ac,t.Ic),t.L4)) +a.jX(o.gdJ(o)) +s=3 +return A.t(a.N($.AP(),t.v4).H8(b),$async$bga) +case 3:p=d +a.ii() +q=p +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$bga,r)}, +bMB(){return new A.zv($,$,null,$)}, +Hw(a,b){a=a+b&536870911 +a=a+((a&524287)<<10)&536870911 +return a^a>>>6}, +bmB(a){a=a+((a&67108863)<<3)&536870911 +a^=a>>>11 +return a+((a&16383)<<15)&536870911}, +aa8(a){var s=null +return new A.OK(a,new A.aXe(a),s,B.SQ,s,"sourceProvider",s,s)}, +Yl(a){var s=null +return new A.Iw(a,new A.atY(a),s,B.RQ,s,"baseSourceMangaFilterListProvider",s,s)}, +blB(a,b){var s=null +return new A.OI(a,b,new A.aW8(a,b),s,B.SR,s,"sourceMangaFilterListProvider",s,s)}, +k4:function k4(){this.a=this.c=this.b=$}, +aWa:function aWa(a){this.a=a}, +zv:function zv(a,b,c,d){var _=this +_.oZ$=a +_.p_$=b +_.qO$=c +_.pU$=d +_.a=$}, +a9V:function a9V(){}, +OK:function OK(a,b,c,d,e,f,g,h){var _=this +_.fr=a +_.ay=b +_.ch=$ +_.d=c +_.e=d +_.f=e +_.a=f +_.b=g +_.c=h}, +aXe:function aXe(a){this.a=a}, +OP:function OP(){}, +an8:function an8(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.dK$=a +_.eX$=b +_.iD$=c +_.ie$=d +_.ig$=e +_.hV$=f +_.hW$=g +_.a=null +_.b=!1 +_.c=$ +_.d=h +_.e=$ +_.f=i +_.r=j +_.w=k +_.x=l +_.y=m +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +Yk:function Yk(){}, +Iw:function Iw(a,b,c,d,e,f,g,h){var _=this +_.fr=a +_.ay=b +_.ch=$ +_.d=c +_.e=d +_.f=e +_.a=f +_.b=g +_.c=h}, +atY:function atY(a){this.a=a}, +Ix:function Ix(){}, +aeq:function aeq(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.dK$=a +_.eX$=b +_.iD$=c +_.ie$=d +_.ig$=e +_.hV$=f +_.hW$=g +_.a=null +_.b=!1 +_.c=$ +_.d=h +_.e=$ +_.f=i +_.r=j +_.w=k +_.x=l +_.y=m +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +adH:function adH(){}, +aa1:function aa1(){}, +OI:function OI(a,b,c,d,e,f,g,h,i){var _=this +_.fx=a +_.fy=b +_.ch=$ +_.y=c +_.d=d +_.e=e +_.f=f +_.a=g +_.b=h +_.c=i}, +aW8:function aW8(a,b){this.a=a +this.b=b}, +aW9:function aW9(){}, +an5:function an5(a,b,c,d,e,f,g,h,i){var _=this +_.dK$=a +_.eX$=b +_.go=c +_.a=null +_.b=!1 +_.c=$ +_.d=d +_.e=$ +_.f=e +_.r=f +_.w=g +_.x=h +_.y=i +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +an2:function an2(){}, +ape:function ape(){}, +aqk:function aqk(){}, +aqm:function aqm(){}, +aa3:function aa3(a,b,c,d,e){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.a=e}, +aWq:function aWq(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aWr:function aWr(a,b){this.a=a +this.b=b}, +aWo:function aWo(a,b){this.a=a +this.b=b}, +aWp:function aWp(a){this.a=a}, +aWJ:function aWJ(a,b){this.a=a +this.b=b}, +aWI:function aWI(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aWE:function aWE(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +aWD:function aWD(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +aWF:function aWF(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}, +aWu:function aWu(a){this.a=a}, +aWv:function aWv(a,b){this.a=a +this.b=b}, +aWw:function aWw(a,b){this.a=a +this.b=b}, +aWx:function aWx(a,b){this.a=a +this.b=b}, +aWy:function aWy(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aWt:function aWt(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +aWs:function aWs(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aWA:function aWA(a){this.a=a}, +aWz:function aWz(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aWB:function aWB(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aWC:function aWC(a){this.a=a}, +aWG:function aWG(a,b){this.a=a +this.b=b}, +aWH:function aWH(a){this.a=a}, +xe:function xe(a,b,c){this.c=a +this.d=b +this.a=c}, +aCV:function aCV(a,b){this.a=a +this.b=b}, +aCW:function aCW(a,b){this.a=a +this.b=b}, +aCX:function aCX(a,b){this.a=a +this.b=b}, +aCT:function aCT(a){this.a=a}, +aCY:function aCY(a,b){this.a=a +this.b=b}, +aCZ:function aCZ(a,b,c){this.a=a +this.b=b +this.c=c}, +aCU:function aCU(a){this.a=a}, +aD_:function aD_(a,b){this.a=a +this.b=b}, +aD0:function aD0(a,b){this.a=a +this.b=b}, +aD1:function aD1(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a9Z:function a9Z(a){this.a=a}, +aW1:function aW1(a,b,c){this.a=a +this.b=b +this.c=c}, +aW0:function aW0(a,b){this.a=a +this.b=b}, +aVZ:function aVZ(a){this.a=a}, +aW_:function aW_(a,b){this.a=a +this.b=b}, +aa_:function aa_(a,b,c){this.e=a +this.f=b +this.a=c}, +aW2:function aW2(a,b){this.a=a +this.b=b}, +aW5:function aW5(a,b){this.a=a +this.b=b}, +aW3:function aW3(a){this.a=a}, +aW4:function aW4(a,b){this.a=a +this.b=b}, +aW6:function aW6(a,b){this.a=a +this.b=b}, +aW7:function aW7(a,b){this.a=a +this.b=b}, +aa0:function aa0(a,b,c,d,e){var _=this +_.d=a +_.e=b +_.f=c +_.r=d +_.a=e}, +aWc:function aWc(a,b){this.a=a +this.b=b}, +aWd:function aWd(a,b){this.a=a +this.b=b}, +aWe:function aWe(a,b){this.a=a +this.b=b}, +aWb:function aWb(a,b,c){this.a=a +this.b=b +this.c=c}, +aa2:function aa2(a,b,c,d){var _=this +_.e=a +_.f=b +_.r=c +_.a=d}, +aWk:function aWk(){}, +aWm:function aWm(){}, +aWj:function aWj(a){this.a=a}, +aWi:function aWi(a){this.a=a}, +aWn:function aWn(a){this.a=a}, +aWf:function aWf(a){this.a=a}, +aWl:function aWl(a){this.a=a}, +aWg:function aWg(a,b,c){this.a=a +this.b=b +this.c=c}, +aWh:function aWh(a,b){this.a=a +this.b=b}, +aa4:function aa4(a,b,c,d){var _=this +_.e=a +_.f=b +_.r=c +_.a=d}, +aWP:function aWP(){}, +aWR:function aWR(){}, +aWO:function aWO(a){this.a=a}, +aWN:function aWN(a){this.a=a}, +aWS:function aWS(a){this.a=a}, +aWK:function aWK(a){this.a=a}, +aWQ:function aWQ(a){this.a=a}, +aWL:function aWL(a,b,c){this.a=a +this.b=b +this.c=c}, +aWM:function aWM(a,b){this.a=a +this.b=b}, +v1:function v1(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +bd_(a,b){a=a+b&536870911 +a=a+((a&524287)<<10)&536870911 +return a^a>>>6}, +bwr(a){a=a+((a&67108863)<<3)&536870911 +a^=a>>>11 +return a+((a&16383)<<15)&536870911}, +atZ(a){var s=null +return new A.Iy(a,new A.au_(a),s,B.RR,s,"baseSourcePreferenceListProvider",s,s)}, +blC(a){var s=null +return new A.OJ(a,new A.aWT(a),s,B.SS,s,"sourcePreferenceListProvider",s,s)}, +k5:function k5(){this.a=this.b=$}, +Ym:function Ym(){}, +Iy:function Iy(a,b,c,d,e,f,g,h){var _=this +_.fr=a +_.ay=b +_.ch=$ +_.d=c +_.e=d +_.f=e +_.a=f +_.b=g +_.c=h}, +au_:function au_(a){this.a=a}, +Iz:function Iz(){}, +aer:function aer(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.dK$=a +_.eX$=b +_.iD$=c +_.ie$=d +_.ig$=e +_.hV$=f +_.hW$=g +_.a=null +_.b=!1 +_.c=$ +_.d=h +_.e=$ +_.f=i +_.r=j +_.w=k +_.x=l +_.y=m +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +adI:function adI(){}, +aa5:function aa5(){}, +OJ:function OJ(a,b,c,d,e,f,g,h){var _=this +_.fx=a +_.ch=$ +_.y=b +_.d=c +_.e=d +_.f=e +_.a=f +_.b=g +_.c=h}, +aWT:function aWT(a){this.a=a}, +aWU:function aWU(){}, +an6:function an6(a,b,c,d,e,f,g,h,i){var _=this +_.dK$=a +_.eX$=b +_.go=c +_.a=null +_.b=!1 +_.c=$ +_.d=d +_.e=$ +_.f=e +_.r=f +_.w=g +_.x=h +_.y=i +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +apf:function apf(){}, +aql:function aql(){}, +aa6:function aa6(a,b){this.f=a +this.a=b}, +aWX:function aWX(a,b,c){this.a=a +this.b=b +this.c=c}, +aWW:function aWW(a,b,c){this.a=a +this.b=b +this.c=c}, +aWV:function aWV(a,b,c){this.a=a +this.b=b +this.c=c}, +aa7:function aa7(a,b,c){this.c=a +this.d=b +this.a=c}, +aX7:function aX7(a,b){this.a=a +this.b=b}, +aX8:function aX8(a,b){this.a=a +this.b=b}, +aX9:function aX9(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aX4:function aX4(a,b,c){this.a=a +this.b=b +this.c=c}, +aX1:function aX1(a,b,c){this.a=a +this.b=b +this.c=c}, +aX0:function aX0(a){this.a=a}, +aXa:function aXa(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aX3:function aX3(a,b,c){this.a=a +this.b=b +this.c=c}, +aWZ:function aWZ(a,b,c){this.a=a +this.b=b +this.c=c}, +aX_:function aX_(a){this.a=a}, +aX5:function aX5(a){this.a=a}, +aX6:function aX6(a){this.a=a}, +aXb:function aXb(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aX2:function aX2(a,b,c){this.a=a +this.b=b +this.c=c}, +aWY:function aWY(a,b,c){this.a=a +this.b=b +this.c=c}, +bTB(a){return new A.tm(a.N($.w6(),t.w6))}, +tm:function tm(a){this.a=a}, +awl:function awl(){}, +awm:function awm(){}, +bvy(a){return a}, +bvj(a){var s=J.aj(a) +return new A.lH(A.bw(s.i(a,"id")),A.af(s.i(a,"name")),A.bw(s.i(a,"order")),A.cN(s.i(a,"default")))}, +aT:function aT(){}, +b1o:function b1o(){}, +FS:function FS(){}, +Vs:function Vs(a,b,c){this.a=a +this.b=b +this.$ti=c}, +lH:function lH(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aeN:function aeN(){}, +bFD(){return new A.ww()}, +bTA(a,b){var s,r=A.c_(a.N($.kr(),t.Pa)) +if(r==null)s=null +else{s=J.lT(r,new A.bgk(b)) +s=A.a8(s,!0,s.$ti.h("z.E"))}return s}, +bwl(a,b){a=a+b&536870911 +a=a+((a&524287)<<10)&536870911 +return a^a>>>6}, +bjA(a){var s=null +return new A.IU(a,new A.avW(a),s,B.RT,s,"categoryListQueryProvider",s,s)}, +ww:function ww(){this.a=$}, +avQ:function avQ(a,b){this.a=a +this.b=b}, +avR:function avR(a,b,c){this.a=a +this.b=b +this.c=c}, +avS:function avS(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +bgk:function bgk(a){this.a=a}, +YQ:function YQ(){}, +IU:function IU(a,b,c,d,e,f,g,h){var _=this +_.dy=a +_.ay=b +_.d=c +_.e=d +_.f=e +_.a=f +_.b=g +_.c=h}, +avW:function avW(a){this.a=a}, +IV:function IV(){}, +aeK:function aeK(a,b,c,d,e,f,g,h){var _=this +_.dK$=a +_.eX$=b +_.a=null +_.b=!1 +_.c=$ +_.d=c +_.e=$ +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +apg:function apg(){}, +a1h:function a1h(a){this.a=a}, +aAj:function aAj(a,b,c){this.a=a +this.b=b +this.c=c}, +aAk:function aAk(a,b){this.a=a +this.b=b}, +aAg:function aAg(a){this.a=a}, +aAh:function aAh(a,b){this.a=a +this.b=b}, +aAi:function aAi(a){this.a=a}, +aAl:function aAl(a){this.a=a}, +YP:function YP(a){this.a=a}, +avV:function avV(a,b,c){this.a=a +this.b=b +this.c=c}, +avU:function avU(a,b){this.a=a +this.b=b}, +avT:function avT(a,b){this.a=a +this.b=b}, +YT:function YT(a,b,c){this.f=a +this.r=b +this.a=c}, +awr:function awr(a,b){this.a=a +this.b=b}, +aws:function aws(a,b){this.a=a +this.b=b}, +awt:function awt(a,b,c){this.a=a +this.b=b +this.c=c}, +awq:function awq(a,b){this.a=a +this.b=b}, +awo:function awo(a){this.a=a}, +awu:function awu(a,b,c){this.a=a +this.b=b +this.c=c}, +awp:function awp(a,b){this.a=a +this.b=b}, +awn:function awn(a,b,c){this.a=a +this.b=b +this.c=c}, +brg(a,b){return new A.Ca(a,b,null)}, +Ca:function Ca(a,b,c){this.f=a +this.r=b +this.a=c}, +aAd:function aAd(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aAe:function aAe(a){this.a=a}, +aAf:function aAf(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +wx:function wx(a,b){this.f=a +this.a=b}, +awj:function awj(a,b){this.a=a +this.b=b}, +awh:function awh(a,b){this.a=a +this.b=b}, +awi:function awi(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +awd:function awd(a,b,c){this.a=a +this.b=b +this.c=c}, +awc:function awc(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +awb:function awb(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aw6:function aw6(a,b){this.a=a +this.b=b}, +awe:function awe(a,b,c){this.a=a +this.b=b +this.c=c}, +aw9:function aw9(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aw5:function aw5(a,b){this.a=a +this.b=b}, +awa:function awa(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +awf:function awf(a,b,c){this.a=a +this.b=b +this.c=c}, +aw8:function aw8(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aw7:function aw7(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aw4:function aw4(a,b){this.a=a +this.b=b}, +awg:function awg(a){this.a=a}, +bgl(a,b){var s=0,r=A.y(t.aQ),q,p,o +var $async$bgl=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:o=new A.i0(new A.aD(new A.a7($.ac,t.Ic),t.L4)) +a.jX(o.gdJ(o)) +s=3 +return A.t(a.N($.Xa(),t.ad).H9(o,b),$async$bgl) +case 3:p=d +a.ii() +q=p +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$bgl,r)}, +bJy(){return new A.y0()}, +bJu(){return new A.xX($,$,$,$,$)}, +bJv(){return new A.xY($,$,$,$,$)}, +bJt(){return new A.xW($,$,$,$,$)}, +bJx(){return new A.xZ($,$,null,$)}, +bJw(){return new A.y_($,$,$,$,$)}, +bJs(){return new A.xV($,$,null,$)}, +bcZ(a,b){a=a+b&536870911 +a=a+((a&524287)<<10)&536870911 +return a^a>>>6}, +bwp(a){a=a+((a&67108863)<<3)&536870911 +a^=a>>>11 +return a+((a&16383)<<15)&536870911}, +IX(a){var s=null +return new A.IW(a,new A.avX(a),s,B.RU,s,"categoryMangaListProvider",s,s)}, +bjB(a){var s=null +return new A.IZ(a,new A.avY(a),s,B.RV,s,"categoryMangaListWithQueryAndFilterProvider",s,s)}, +kt:function kt(){this.a=this.b=$}, +aw_:function aw_(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aw0:function aw0(a,b){this.a=a +this.b=b}, +aw1:function aw1(a,b){this.a=a +this.b=b}, +aw2:function aw2(){}, +aw3:function aw3(){}, +y0:function y0(){this.a=$}, +xX:function xX(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +xY:function xY(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +xW:function xW(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +xZ:function xZ(a,b,c,d){var _=this +_.oZ$=a +_.p_$=b +_.qO$=c +_.pU$=d +_.a=$}, +y_:function y_(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +xV:function xV(a,b,c,d){var _=this +_.oZ$=a +_.p_$=b +_.qO$=c +_.pU$=d +_.a=$}, +YR:function YR(){}, +IW:function IW(a,b,c,d,e,f,g,h){var _=this +_.fr=a +_.ay=b +_.ch=$ +_.d=c +_.e=d +_.f=e +_.a=f +_.b=g +_.c=h}, +avX:function avX(a){this.a=a}, +IY:function IY(){}, +aeL:function aeL(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.dK$=a +_.eX$=b +_.iD$=c +_.ie$=d +_.ig$=e +_.hV$=f +_.hW$=g +_.a=null +_.b=!1 +_.c=$ +_.d=h +_.e=$ +_.f=i +_.r=j +_.w=k +_.x=l +_.y=m +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +adC:function adC(){}, +YS:function YS(){}, +IZ:function IZ(a,b,c,d,e,f,g,h){var _=this +_.fx=a +_.ch=$ +_.y=b +_.d=c +_.e=d +_.f=e +_.a=f +_.b=g +_.c=h}, +avY:function avY(a){this.a=a}, +avZ:function avZ(){}, +aeM:function aeM(a,b,c,d,e,f,g,h,i){var _=this +_.dK$=a +_.eX$=b +_.go=c +_.a=null +_.b=!1 +_.c=$ +_.d=d +_.e=$ +_.f=e +_.r=f +_.w=g +_.x=h +_.y=i +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +ais:function ais(){}, +ait:function ait(){}, +aiu:function aiu(){}, +aiv:function aiv(){}, +aix:function aix(){}, +aiw:function aiw(){}, +aiy:function aiy(){}, +aph:function aph(){}, +api:function api(){}, +a3A:function a3A(a,b){this.f=a +this.a=b}, +aIs:function aIs(a,b){this.a=a +this.b=b}, +aIt:function aIt(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aIj:function aIj(a){this.a=a}, +aIk:function aIk(){}, +aIl:function aIl(a){this.a=a}, +aIm:function aIm(a){this.a=a}, +aIn:function aIn(a){this.a=a}, +aIo:function aIo(){}, +aIi:function aIi(a){this.a=a}, +aIg:function aIg(){}, +aIp:function aIp(a){this.a=a}, +aIh:function aIh(a,b){this.a=a +this.b=b}, +aIq:function aIq(a){this.a=a}, +aIr:function aIr(){}, +aIu:function aIu(a){this.a=a}, +aIv:function aIv(a){this.a=a}, +a3x:function a3x(a){this.a=a}, +aId:function aId(a){this.a=a}, +aIc:function aIc(a){this.a=a}, +a3y:function a3y(a){this.a=a}, +D8:function D8(a){this.a=a}, +a3z:function a3z(a,b){this.e=a +this.a=b}, +aIe:function aIe(a,b){this.a=a +this.b=b}, +aIf:function aIf(a,b){this.a=a +this.b=b}, +bUy(a){return new A.qe(a.N($.w6(),t.w6))}, +bHm(){return new A.x0()}, +bUx(a){var s,r,q,p=a.N($.biR(),t.rv),o=A.I(t.S,t.b6),n=A.a([],t.mt),m=A.c_(p) +m=m==null?null:m.gBm() +if(m!=null)B.b.I(n,m) +m=n.length +s=0 +for(;s")),t.fC)}, +bUv(a){return J.fg(J.iu(a.N($.boQ(),t.yy)))}, +bUz(a){var s=$.biR() +return a.N(new A.rI(s,new A.bgC(),s.$ti.h("rI>")),t.TX)}, +bY0(a){var s=a.N($.biR(),t.rv),r=A.c_(s) +r=r==null?null:r.gBm() +if(!(r==null||J.cf(r))){r=A.c_(s).gBm() +r.toString +r=J.bE6(r,new A.bi4())}else r=!1 +return r}, +bwn(a,b){a=a+b&536870911 +a=a+((a&524287)<<10)&536870911 +return a^a>>>6}, +azS(a){var s=null +return new A.JY(a,new A.azT(a),s,B.S3,s,"downloadsFromIdProvider",s,s)}, +qe:function qe(a){this.a=a}, +azV:function azV(){}, +azU:function azU(){}, +x0:function x0(){this.a=$}, +bgA:function bgA(a){this.a=a}, +bgC:function bgC(){}, +bgB:function bgB(){}, +bi4:function bi4(){}, +a18:function a18(){}, +JY:function JY(a,b,c,d,e,f,g,h){var _=this +_.dy=a +_.ay=b +_.d=c +_.e=d +_.f=e +_.a=f +_.b=g +_.c=h}, +azT:function azT(a){this.a=a}, +JZ:function JZ(){}, +agm:function agm(a,b,c,d,e,f,g,h){var _=this +_.dK$=a +_.eX$=b +_.a=null +_.b=!1 +_.c=$ +_.d=c +_.e=$ +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +aps:function aps(){}, +bWf(a){return new A.ue(a.N($.w6(),t.w6))}, +ue:function ue(a){this.a=a}, +aIX:function aIX(){}, +aIV:function aIV(){}, +aIU:function aIU(){}, +aIW:function aIW(){}, +bYQ(a){return new A.vg(a.N($.w6(),t.w6))}, +bio(a){return A.bYP(a)}, +bYP(a){var s=0,r=A.y(t.YO),q,p +var $async$bio=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:p=new A.i0(new A.aD(new A.a7($.ac,t.Ic),t.L4)) +a.jX(p.gdJ(p)) +s=3 +return A.t(a.N($.I0(),t.BA).HE(p),$async$bio) +case 3:q=c +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$bio,r)}, +bNL(){return new A.zW()}, +vg:function vg(a){this.a=a}, +b02:function b02(){}, +b05:function b05(){}, +b04:function b04(){}, +b03:function b03(){}, +zW:function zW(){this.a=$}, +bvo(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){return new A.Q9(f,a,b,c,d,e,g,h,i,j,l,m,n,o,p,q,r,k)}, +adB(a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=J.aj(a0),d=A.bw(e.i(a0,"id")),c=A.cN(e.i(a0,"bookmarked")),b=A.bw(e.i(a0,"chapterCount")),a=A.beF(e.i(a0,"chapterNumber")) +if(a==null)a=null +s=A.cN(e.i(a0,"downloaded")) +r=A.bw(e.i(a0,"fetchedAt")) +q=A.bw(e.i(a0,"index")) +p=A.bw(e.i(a0,"lastPageRead")) +o=A.bw(e.i(a0,"lastReadAt")) +n=A.bw(e.i(a0,"mangaId")) +m=A.af(e.i(a0,"name")) +l=A.bw(e.i(a0,"pageCount")) +k=A.cN(e.i(a0,"read")) +j=A.af(e.i(a0,"realUrl")) +i=A.af(e.i(a0,"scanlator")) +h=A.bw(e.i(a0,"uploadDate")) +g=A.af(e.i(a0,"url")) +e=t.nA.a(e.i(a0,"meta")) +if(e==null)e=null +else{f=t.N +f=J.Xi(e,new A.b0Z(),f,f) +e=f}return A.bvo(c,b,a,s,r,d,q,p,o,n,e,m,l,k,j,i,h,g)}, +a5:function a5(){}, +b1p:function b1p(){}, +Q9:function Q9(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r){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}, +aeP:function aeP(){}, +b0Z:function b0Z(){}, +aeT:function aeT(){}, +bO5(a){var s=a.gU_(),r=a.b +return A.am(["chapterIds",s,"change",r==null?null:A.bvk(r)],t.N,t.z)}, +bvk(a){return A.am(["isRead",a.a,"isBookmarked",a.b,"lastPageRead",a.c,"delete",a.d],t.N,t.z)}, +Q8:function Q8(a,b){this.a=a +this.b=b}, +rs:function rs(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +bvz(a){return a}, +bO6(a){var s=J.aj(a),r=A.cN(s.i(a,"hasNextPage")) +s=t.kc.a(s.i(a,"page")) +if(s==null)s=null +else{s=J.cx(s,new A.b1_(),t.dA) +s=A.a8(s,!0,A.l(s).h("av.E"))}return new A.Qa(r,s)}, +bO7(a){var s=a.gjY(a) +if(s==null)s=null +else{s=J.cx(s,new A.b10(),t.a) +s=A.a8(s,!0,A.l(s).h("av.E"))}return A.am(["hasNextPage",a.a,"page",s],t.N,t.z)}, +l5:function l5(){}, +ku:function ku(){}, +b1q:function b1q(){}, +FT:function FT(){}, +Vt:function Vt(a,b,c){this.a=a +this.b=b +this.$ti=c}, +pq:function pq(a,b){this.a=a +this.b=b}, +b1r:function b1r(){}, +Qa:function Qa(a,b){this.a=a +this.b=b}, +b1_:function b1_(){}, +b10:function b10(){}, +aeQ:function aeQ(){}, +aeR:function aeR(){}, +bO8(a){return A.am(["read",a.a,"bookmarked",a.b,"markPrevRead",a.c,"lastPageRead",a.d],t.N,t.z)}, +FU:function FU(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +bO9(a){var s=J.aj(a),r=t.kc.a(s.i(a,"queue")) +if(r==null)r=null +else{r=J.cx(r,new A.b11(),t.b6) +r=A.a8(r,!0,A.l(r).h("av.E"))}return new A.Qb(r,A.af(s.i(a,"status")))}, +bOa(a){var s=a.gBm() +if(s==null)s=null +else{s=J.cx(s,new A.b12(),t.a) +s=A.a8(s,!0,A.l(s).h("av.E"))}return A.am(["queue",s,"status",a.b],t.N,t.z)}, +i4:function i4(){}, +b1s:function b1s(){}, +Qb:function Qb(a,b){this.a=a +this.b=b}, +b11:function b11(){}, +b12:function b12(){}, +ago:function ago(){}, +cK:function cK(){}, +b1t:function b1t(){}, +Qc:function Qc(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +agn:function agn(){}, +bvA(a){return a}, +bm6(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.rt(a,b,e,f,c,o,m,g,h,j,i,k,l,q,r,s,a0,a1,a2,a3,a4,n,d,a5,p)}, +vl(b4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2="lastChapterRead",a3=null,a4=J.aj(b4),a5=A.af(a4.i(b4,"artist")),a6=A.af(a4.i(b4,"author")),a7=A.af(a4.i(b4,"description")),a8=A.bw(a4.i(b4,"downloadCount")),a9=A.bw(a4.i(b4,"chapterCount")),b0=A.bw(a4.i(b4,"lastReadAt")),b1=a4.i(b4,a2)==null?a3:A.adB(t.a.a(a4.i(b4,a2))),b2=A.cN(a4.i(b4,"freshData")),b3=t.kc.a(a4.i(b4,"genre")) +if(b3==null)b3=a3 +else{b3=J.cx(b3,new A.b18(),t.N) +b3=A.a8(b3,!0,A.l(b3).h("av.E"))}s=A.cN(a4.i(b4,"inLibrary")) +r=A.bw(a4.i(b4,"id")) +q=A.bw(a4.i(b4,"inLibraryAt")) +p=A.cN(a4.i(b4,"initialized")) +o=A.af(a4.i(b4,"realUrl")) +n=a4.i(b4,"source")==null?a3:A.bm5(t.a.a(a4.i(b4,"source"))) +m=A.af(a4.i(b4,"sourceId")) +l=A.bm(a4.i(b4,"status")) +l=$.bAX().i(0,l) +if(l==null)l=B.Ja +k=A.af(a4.i(b4,"thumbnailUrl")) +j=A.bw(a4.i(b4,"thumbnailUrlLastFetched")) +i=A.af(a4.i(b4,"title")) +h=A.bw(a4.i(b4,"unreadCount")) +g=A.bw(a4.i(b4,"lastFetchedAt")) +f=A.bw(a4.i(b4,"chaptersLastFetchedAt")) +e=A.af(a4.i(b4,"url")) +if(a4.i(b4,"meta")==null)a4=a3 +else{a4=t.a.a(a4.i(b4,"meta")) +d=J.aj(a4) +c=d.i(a4,"flutter_readerNavigationLayoutInvert") +c=c!=null&&typeof c=="string"?B.c.bO(c.toLowerCase(),String(!0))===0:a3 +b=t.N +a=A.bo0(B.Jb,d.i(a4,"flutter_readerNavigationLayout"),t.lR,b) +b=A.bo0(B.Jc,d.i(a4,"flutter_readerMode"),t.uM,b) +a0=d.i(a4,"flutter_readerPadding") +a0=a0!=null&&typeof a0=="string"?A.ar7(a0):a3 +a1=d.i(a4,"flutter_readerMagnifierSize") +a1=a1!=null&&typeof a1=="string"?A.ar7(a1):a3 +a4=new A.Qd(c,a,b,a0,a1,A.af(d.i(a4,"flutter_scanlator")))}return A.bm6(a5,a6,a9,f,a7,a8,b2,b3,r,s,q,p,b1,g,b0,a4,o,n,m,l,k,j,i,h,e)}, +a3:function a3(){}, +aJO:function aJO(){}, +aJP:function aJP(){}, +LL:function LL(){}, +b1x:function b1x(){}, +vm:function vm(){}, +VG:function VG(a,b,c){this.a=a +this.b=b +this.$ti=c}, +rt:function rt(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 +_.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}, +aiL:function aiL(){}, +b1y:function b1y(){}, +Qd:function Qd(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +b18:function b18(){}, +aiZ:function aiZ(){}, +aiV:function aiV(){}, +bvn(a){var s,r,q=null,p=J.aj(a),o=t.kc,n=o.a(p.i(a,"PENDING")) +if(n==null)n=q +else{n=J.cx(n,new A.b1e(),t.nn) +n=A.a8(n,!0,A.l(n).h("av.E"))}s=o.a(p.i(a,"RUNNING")) +if(s==null)s=q +else{s=J.cx(s,new A.b1f(),t.nn) +s=A.a8(s,!0,A.l(s).h("av.E"))}r=o.a(p.i(a,"COMPLETE")) +if(r==null)r=q +else{r=J.cx(r,new A.b1g(),t.nn) +r=A.a8(r,!0,A.l(r).h("av.E"))}p=o.a(p.i(a,"FAILED")) +if(p==null)p=q +else{p=J.cx(p,new A.b1h(),t.nn) +p=A.a8(p,!0,A.l(p).h("av.E"))}return new A.Qh(n,s,r,p)}, +bOi(a){var s,r,q,p=null,o=a.gi1(a) +if(o==null)o=p +else{o=J.cx(o,new A.b1i(),t.a) +o=A.a8(o,!0,A.l(o).h("av.E"))}s=a.gi6() +if(s==null)s=p +else{s=J.cx(s,new A.b1j(),t.a) +s=A.a8(s,!0,A.l(s).h("av.E"))}r=a.gh9(a) +if(r==null)r=p +else{r=J.cx(r,new A.b1k(),t.a) +r=A.a8(r,!0,A.l(r).h("av.E"))}q=a.ghA() +if(q==null)q=p +else{q=J.cx(q,new A.b1l(),t.a) +q=A.a8(q,!0,A.l(q).h("av.E"))}return A.am(["PENDING",o,"RUNNING",s,"COMPLETE",r,"FAILED",q],t.N,t.z)}, +eS:function eS(){}, +b1E:function b1E(){}, +Qh:function Qh(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aoR:function aoR(){}, +b1e:function b1e(){}, +b1f:function b1f(){}, +b1g:function b1g(){}, +b1h:function b1h(){}, +b1i:function b1i(){}, +b1j:function b1j(){}, +b1k:function b1k(){}, +b1l:function b1l(){}, +aoS:function aoS(){}, +a19:function a19(a){this.a=a}, +azX:function azX(a){this.a=a}, +azY:function azY(a,b,c){this.a=a +this.b=b +this.c=c}, +azW:function azW(a,b,c){this.a=a +this.b=b +this.c=c}, +a15:function a15(a,b,c,d,e){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.a=e}, +azF:function azF(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +azA:function azA(a,b){this.a=a +this.b=b}, +azB:function azB(a,b){this.a=a +this.b=b}, +azC:function azC(a,b,c){this.a=a +this.b=b +this.c=c}, +azD:function azD(a,b,c){this.a=a +this.b=b +this.c=c}, +azE:function azE(a,b,c){this.a=a +this.b=b +this.c=c}, +azw:function azw(a,b,c){this.a=a +this.b=b +this.c=c}, +azx:function azx(a,b,c){this.a=a +this.b=b +this.c=c}, +azy:function azy(a,b){this.a=a +this.b=b}, +azz:function azz(a,b,c){this.a=a +this.b=b +this.c=c}, +a17:function a17(a,b){this.e=a +this.a=b}, +azQ:function azQ(a,b){this.a=a +this.b=b}, +azR:function azR(a,b){this.a=a +this.b=b}, +bWh(a,b){var s=A.aW(t.N) +A.bF9(a.N(A.Dl(b),t.uV),new A.bhA(s),t.U_,t.P) +return s}, +bWg(a,b){var s,r=a.N(A.Dl(b),t.uV),q=t.u,p=a.N($.bp8(),q),o=a.N($.bp7(),q),n=a.N($.bp6(),q),m=a.N($.biZ(),t.cu) +if(m==null)m=!1 +q=a.N($.Xc(),q) +s=t.U_ +return A.om(r,new A.bhz(new A.bhx(p,o,n,a.N(A.LG(b),t.N)),new A.bhy(q!==!1,m)),s,s)}, +bV4(a,b){var s,r=a.N($.Xc(),t.u) +if(r==null)r=!1 +s=A.c_(a.N(A.a3S(b),t.uV)) +if(s==null)return null +else if(r)return A.bJa(s,new A.bh0()) +else return A.bJc(s,new A.bh1())}, +bVo(a,b,c,d){var s,r,q,p,o,n=a.N($.Xc(),t.u) +if(n==null)n=!1 +s=A.c_(a.N(A.a3S(c),t.uV)) +if(s==null)return null +else{r=J.ct(s) +q=r.xv(s,new A.bh9(b)) +p=q>0?r.i(s,q-1):null +o=q>>6}, +AC(a){a=a+((a&67108863)<<3)&536870911 +a^=a>>>11 +return a+((a&16383)<<15)&536870911}, +bkY(a){var s=null +return new A.LM(a,new A.aJJ(a),s,B.So,s,"mangaScanlatorListProvider",s,s)}, +a3S(a){var s=null +return new A.LI(a,new A.aJ8(a),s,B.Sn,s,"mangaChapterListWithFilterProvider",s,s)}, +bkq(a){var s=null +return new A.Kq(a,new A.aDb(a),s,B.Sa,s,"firstUnreadInFilteredChapterListProvider",s,s)}, +aF8(a,b,c){var s=null +return new A.KO(b,a,c,new A.aF9(b,a,c),s,B.Sd,s,"getNextAndPreviousChaptersProvider",s,s)}, +oS(a){var s=null +return new A.LO(a,new A.aJL(a),s,B.Sp,s,"mangaWithIdProvider",s,s)}, +Dl(a){var s=null +return new A.LH(a,new A.aJ6(a),s,B.Sm,s,"mangaChapterListProvider",s,s)}, +LG(a){var s=null +return new A.LF(a,new A.aJ1(a),s,B.Sl,s,"mangaChapterFilterScanlatorProvider",s,s)}, +bkV(a){var s=null +return new A.LE(a,new A.aIY(a),s,B.Sk,s,"mangaCategoryListProvider",s,s)}, +iP:function iP(){this.a=this.b=$}, +aJN:function aJN(a,b,c){this.a=a +this.b=b +this.c=c}, +iM:function iM(){this.a=this.b=$}, +aJ9:function aJ9(a,b,c){this.a=a +this.b=b +this.c=c}, +bhA:function bhA(a){this.a=a}, +jW:function jW(){this.a=this.b=$}, +aJ3:function aJ3(a,b){this.a=a +this.b=b}, +bhx:function bhx(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +bhy:function bhy(a,b){this.a=a +this.b=b}, +bhz:function bhz(a,b){this.a=a +this.b=b}, +bh0:function bh0(){}, +bh1:function bh1(){}, +bh9:function bh9(a){this.a=a}, +ya:function ya(a,b,c,d){var _=this +_.oZ$=a +_.p_$=b +_.qO$=c +_.pU$=d +_.a=$}, +yb:function yb(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +y7:function y7(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +y8:function y8(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +y6:function y6(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +iL:function iL(){this.a=this.b=$}, +aJ_:function aJ_(a){this.a=a}, +aJ0:function aJ0(){}, +a3Y:function a3Y(){}, +LM:function LM(a,b,c,d,e,f,g,h){var _=this +_.dy=a +_.ay=b +_.d=c +_.e=d +_.f=e +_.a=f +_.b=g +_.c=h}, +aJJ:function aJJ(a){this.a=a}, +LN:function LN(){}, +aiX:function aiX(a,b,c,d,e,f,g,h){var _=this +_.dK$=a +_.eX$=b +_.a=null +_.b=!1 +_.c=$ +_.d=c +_.e=$ +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +a3R:function a3R(){}, +LI:function LI(a,b,c,d,e,f,g,h){var _=this +_.dy=a +_.ay=b +_.d=c +_.e=d +_.f=e +_.a=f +_.b=g +_.c=h}, +aJ8:function aJ8(a){this.a=a}, +LJ:function LJ(){}, +aiS:function aiS(a,b,c,d,e,f,g,h){var _=this +_.dK$=a +_.eX$=b +_.a=null +_.b=!1 +_.c=$ +_.d=c +_.e=$ +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +a1P:function a1P(){}, +Kq:function Kq(a,b,c,d,e,f,g,h){var _=this +_.dy=a +_.ay=b +_.d=c +_.e=d +_.f=e +_.a=f +_.b=g +_.c=h}, +aDb:function aDb(a){this.a=a}, +Kr:function Kr(){}, +agX:function agX(a,b,c,d,e,f,g,h){var _=this +_.dK$=a +_.eX$=b +_.a=null +_.b=!1 +_.c=$ +_.d=c +_.e=$ +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +a2g:function a2g(){}, +KO:function KO(a,b,c,d,e,f,g,h,i,j){var _=this +_.dy=a +_.fr=b +_.fx=c +_.ay=d +_.d=e +_.e=f +_.f=g +_.a=h +_.b=i +_.c=j}, +aF9:function aF9(a,b,c){this.a=a +this.b=b +this.c=c}, +KP:function KP(){}, +ahp:function ahp(a,b,c,d,e,f,g,h){var _=this +_.dK$=a +_.eX$=b +_.a=null +_.b=!1 +_.c=$ +_.d=c +_.e=$ +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +adG:function adG(){}, +a3Z:function a3Z(){}, +LO:function LO(a,b,c,d,e,f,g,h){var _=this +_.fy=a +_.CW=_.ch=$ +_.y=b +_.d=c +_.e=d +_.f=e +_.a=f +_.b=g +_.c=h}, +aJL:function aJL(a){this.a=a}, +aJM:function aJM(){}, +aiY:function aiY(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.dK$=a +_.eX$=b +_.go=c +_.iD$=d +_.ie$=e +_.ig$=f +_.hV$=g +_.hW$=h +_.a=null +_.b=!1 +_.c=$ +_.d=i +_.e=$ +_.f=j +_.r=k +_.w=l +_.x=m +_.y=n +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +adF:function adF(){}, +a3Q:function a3Q(){}, +LH:function LH(a,b,c,d,e,f,g,h){var _=this +_.fy=a +_.CW=_.ch=$ +_.y=b +_.d=c +_.e=d +_.f=e +_.a=f +_.b=g +_.c=h}, +aJ6:function aJ6(a){this.a=a}, +aJ7:function aJ7(){}, +aiR:function aiR(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.dK$=a +_.eX$=b +_.go=c +_.iD$=d +_.ie$=e +_.ig$=f +_.hV$=g +_.hW$=h +_.a=null +_.b=!1 +_.c=$ +_.d=i +_.e=$ +_.f=j +_.r=k +_.w=l +_.x=m +_.y=n +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +adE:function adE(){}, +a3P:function a3P(){}, +LF:function LF(a,b,c,d,e,f,g,h){var _=this +_.fx=a +_.ch=$ +_.y=b +_.d=c +_.e=d +_.f=e +_.a=f +_.b=g +_.c=h}, +aJ1:function aJ1(a){this.a=a}, +aJ2:function aJ2(){}, +aiP:function aiP(a,b,c,d,e,f,g,h,i){var _=this +_.dK$=a +_.eX$=b +_.go=c +_.a=null +_.b=!1 +_.c=$ +_.d=d +_.e=$ +_.f=e +_.r=f +_.w=g +_.x=h +_.y=i +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +adD:function adD(){}, +a3N:function a3N(){}, +LE:function LE(a,b,c,d,e,f,g,h){var _=this +_.fy=a +_.CW=_.ch=$ +_.y=b +_.d=c +_.e=d +_.f=e +_.a=f +_.b=g +_.c=h}, +aIY:function aIY(a){this.a=a}, +aIZ:function aIZ(){}, +aiM:function aiM(a,b,c,d,e,f,g,h,i,j,k,l,m,n){var _=this +_.dK$=a +_.eX$=b +_.go=c +_.iD$=d +_.ie$=e +_.ig$=f +_.hV$=g +_.hW$=h +_.a=null +_.b=!1 +_.c=$ +_.d=i +_.e=$ +_.f=j +_.r=k +_.w=l +_.x=m +_.y=n +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +aiN:function aiN(){}, +aiO:function aiO(){}, +aiQ:function aiQ(){}, +aiU:function aiU(){}, +aiT:function aiT(){}, +apw:function apw(){}, +apz:function apz(){}, +apF:function apF(){}, +apG:function apG(){}, +apH:function apH(){}, +apI:function apI(){}, +apJ:function apJ(){}, +apK:function apK(){}, +a3X:function a3X(a,b,c){this.f=a +this.r=b +this.a=c}, +aJC:function aJC(a,b){this.a=a +this.b=b}, +aJD:function aJD(a,b){this.a=a +this.b=b}, +aJE:function aJE(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aJF:function aJF(a,b,c){this.a=a +this.b=b +this.c=c}, +aJI:function aJI(a,b){this.a=a +this.b=b}, +aJG:function aJG(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}, +aJu:function aJu(a){this.a=a}, +aJv:function aJv(a,b){this.a=a +this.b=b}, +aJw:function aJw(a,b){this.a=a +this.b=b}, +aJx:function aJx(a){this.a=a}, +aJy:function aJy(a,b){this.a=a +this.b=b}, +aJt:function aJt(a){this.a=a}, +aJz:function aJz(a){this.a=a}, +aJs:function aJs(a,b){this.a=a +this.b=b}, +aJp:function aJp(a){this.a=a}, +aJA:function aJA(a,b){this.a=a +this.b=b}, +aJq:function aJq(a,b){this.a=a +this.b=b}, +aJo:function aJo(a,b){this.a=a +this.b=b}, +aJn:function aJn(a){this.a=a}, +aJr:function aJr(a){this.a=a}, +aJB:function aJB(a,b,c){this.a=a +this.b=b +this.c=c}, +aJH:function aJH(a){this.a=a}, +a68:function a68(a,b,c){this.c=a +this.d=b +this.a=c}, +aLm:function aLm(a){this.a=a}, +aLj:function aLj(a){this.a=a}, +aLi:function aLi(a){this.a=a}, +aLk:function aLk(a){this.a=a}, +aLl:function aLl(a){this.a=a}, +aLg:function aLg(a){this.a=a}, +aLh:function aLh(a){this.a=a}, +Yp:function Yp(a,b,c,d,e,f,g,h){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.x=e +_.y=f +_.z=g +_.a=h}, +aui:function aui(a){this.a=a}, +auf:function auf(a,b){this.a=a +this.b=b}, +aud:function aud(a,b){this.a=a +this.b=b}, +aue:function aue(a){this.a=a}, +aug:function aug(a,b,c){this.a=a +this.b=b +this.c=c}, +aub:function aub(a,b){this.a=a +this.b=b}, +au9:function au9(a){this.a=a}, +aua:function aua(a){this.a=a}, +auc:function auc(a){this.a=a}, +auh:function auh(a){this.a=a}, +wy:function wy(a,b,c,d,e,f,g){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.a=g}, +awM:function awM(a){this.a=a}, +awJ:function awJ(a){this.a=a}, +awK:function awK(a,b){this.a=a +this.b=b}, +awL:function awL(a){this.a=a}, +a1i(a,b){return new A.Cb(a,b,null)}, +Cb:function Cb(a,b,c){this.f=a +this.r=b +this.a=c}, +aAp:function aAp(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aAo:function aAo(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aAn:function aAn(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aAm:function aAm(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +a3O:function a3O(a,b){this.e=a +this.a=b}, +aJ4:function aJ4(a,b){this.a=a +this.b=b}, +aJ5:function aJ5(a,b){this.a=a +this.b=b}, +y9:function y9(a,b){this.c=a +this.a=b}, +a3T:function a3T(a){this.a=a}, +a3U:function a3U(a,b){this.e=a +this.a=b}, +aJa:function aJa(a,b){this.a=a +this.b=b}, +aJb:function aJb(a,b){this.a=a +this.b=b}, +bsG(a,b,c,d){return new A.a3W(b,c,d,a,null)}, +a3W:function a3W(a,b,c,d,e){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.a=e}, +aJh:function aJh(a){this.a=a}, +aJi:function aJi(a,b,c){this.a=a +this.b=b +this.c=c}, +aJg:function aJg(a){this.a=a}, +aJj:function aJj(a,b,c){this.a=a +this.b=b +this.c=c}, +aJk:function aJk(a){this.a=a}, +aJl:function aJl(){}, +aJm:function aJm(){}, +a9K:function a9K(a,b,c,d,e,f,g){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.x=e +_.z=f +_.a=g}, +aVK:function aVK(a){this.a=a}, +aVF:function aVF(a){this.a=a}, +aVG:function aVG(a,b){this.a=a +this.b=b}, +aVE:function aVE(a,b){this.a=a +this.b=b}, +aVH:function aVH(a,b,c){this.a=a +this.b=b +this.c=c}, +aVC:function aVC(a,b){this.a=a +this.b=b}, +aVA:function aVA(a){this.a=a}, +aVB:function aVB(a){this.a=a}, +aVD:function aVD(a){this.a=a}, +aVI:function aVI(a){this.a=a}, +aVJ:function aVJ(a){this.a=a}, +Dn:function Dn(a,b){this.c=a +this.a=b}, +aJK:function aJK(a){this.a=a}, +bgm(a,b,c){var s=0,r=A.y(t.ep),q,p,o +var $async$bgm=A.u(function(d,e){if(d===1)return A.v(e,r) +while(true)switch(s){case 0:o=new A.i0(new A.aD(new A.a7($.ac,t.Ic),t.L4)) +a.jX(o.gdJ(o)) +s=3 +return A.t(a.N($.fv(),t.W).H5(b,c),$async$bgm) +case 3:p=e +a.ii() +q=p +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$bgm,r)}, +bmA(a,b){a=a+b&536870911 +a=a+((a&524287)<<10)&536870911 +return a^a>>>6}, +YW(a,b){var s=null +return new A.J_(b,a,new A.awR(b,a),s,B.RW,s,"chapterProvider",s,s)}, +YU:function YU(){}, +J_:function J_(a,b,c,d,e,f,g,h,i){var _=this +_.fr=a +_.fx=b +_.ay=c +_.ch=$ +_.d=d +_.e=e +_.f=f +_.a=g +_.b=h +_.c=i}, +awR:function awR(a,b){this.a=a +this.b=b}, +J0:function J0(){}, +aeS:function aeS(a,b,c,d,e,f,g,h,i,j,k,l,m){var _=this +_.dK$=a +_.eX$=b +_.iD$=c +_.ie$=d +_.ig$=e +_.hV$=f +_.hW$=g +_.a=null +_.b=!1 +_.c=$ +_.d=h +_.e=$ +_.f=i +_.r=j +_.w=k +_.x=l +_.y=m +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +apm:function apm(){}, +a7O:function a7O(a,b,c,d){var _=this +_.f=a +_.r=b +_.w=c +_.a=d}, +aPu:function aPu(a,b,c){this.a=a +this.b=b +this.c=c}, +aPs:function aPs(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aPt:function aPt(a,b,c){this.a=a +this.b=b +this.c=c}, +aPr:function aPr(a,b){this.a=a +this.b=b}, +aPv:function aPv(){}, +aPq:function aPq(){}, +aPy:function aPy(a,b,c){this.a=a +this.b=b +this.c=c}, +aPw:function aPw(a,b,c,d,e,f,g){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f +_.r=g}, +aPo:function aPo(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aPp:function aPp(a,b){this.a=a +this.b=b}, +aPx:function aPx(a,b){this.a=a +this.b=b}, +YX:function YX(a,b,c,d){var _=this +_.e=a +_.f=b +_.r=c +_.a=d}, +awS:function awS(a,b){this.a=a +this.b=b}, +awT:function awT(a,b){this.a=a +this.b=b}, +a6F:function a6F(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +aML:function aML(a){this.a=a}, +Zv(a,b,c,d,e,f,g){return new A.Zu(b,a,g,c,e,d,f,null)}, +Zu:function Zu(a,b,c,d,e,f,g,h){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.y=e +_.z=f +_.Q=g +_.a=h}, +axM:function axM(){}, +axN:function axN(){}, +axO:function axO(a,b){this.a=a +this.b=b}, +axP:function axP(a,b){this.a=a +this.b=b}, +axV:function axV(a,b){this.a=a +this.b=b}, +axK:function axK(){}, +axL:function axL(){}, +axJ:function axJ(a,b){this.a=a +this.b=b}, +axS:function axS(a){this.a=a}, +axU:function axU(a,b,c){this.a=a +this.b=b +this.c=c}, +axT:function axT(a,b,c){this.a=a +this.b=b +this.c=c}, +axR:function axR(a){this.a=a}, +axQ:function axQ(a){this.a=a}, +axH:function axH(){}, +axI:function axI(a,b){this.a=a +this.b=b}, +bly(a,b,c,d,e,f){return new A.a9r(b,a,c,d,e,f,null)}, +a9r:function a9r(a,b,c,d,e,f,g){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.y=e +_.z=f +_.a=g}, +aV2:function aV2(){}, +aV3:function aV3(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aV4:function aV4(a,b){this.a=a +this.b=b}, +aV9:function aV9(a,b){this.a=a +this.b=b}, +aV1:function aV1(a,b){this.a=a +this.b=b}, +aV6:function aV6(a){this.a=a}, +aV8:function aV8(a,b){this.a=a +this.b=b}, +aV7:function aV7(a,b){this.a=a +this.b=b}, +aV5:function aV5(a){this.a=a}, +aV0:function aV0(){}, +a1g:function a1g(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +a3k:function a3k(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +a3l:function a3l(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +a8y:function a8y(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +a7M:function a7M(a,b,c,d,e){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.a=e}, +aPl:function aPl(a){this.a=a}, +btB(a,b,c,d,e,f,g,h,i){return new A.a7S(b,d,a,e,g,f,c,h,i,null)}, +a7S:function a7S(a,b,c,d,e,f,g,h,i,j){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.y=e +_.z=f +_.Q=g +_.as=h +_.at=i +_.a=j}, +aPT:function aPT(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aPS:function aPS(a,b,c){this.a=a +this.b=b +this.c=c}, +aPK:function aPK(a){this.a=a}, +aPL:function aPL(a,b,c){this.a=a +this.b=b +this.c=c}, +aPH:function aPH(a,b,c){this.a=a +this.b=b +this.c=c}, +aPU:function aPU(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aPR:function aPR(a,b,c){this.a=a +this.b=b +this.c=c}, +aPI:function aPI(a){this.a=a}, +aPJ:function aPJ(a,b,c){this.a=a +this.b=b +this.c=c}, +aPG:function aPG(a,b,c){this.a=a +this.b=b +this.c=c}, +aPV:function aPV(a){this.a=a}, +aQ5:function aQ5(a,b,c){this.a=a +this.b=b +this.c=c}, +aPP:function aPP(a,b){this.a=a +this.b=b}, +aPQ:function aPQ(a){this.a=a}, +aQ6:function aQ6(a,b,c){this.a=a +this.b=b +this.c=c}, +aQ7:function aQ7(a,b){this.a=a +this.b=b}, +aQ8:function aQ8(a,b){this.a=a +this.b=b}, +aQ9:function aQ9(a,b){this.a=a +this.b=b}, +aPO:function aPO(a,b,c){this.a=a +this.b=b +this.c=c}, +aQa:function aQa(a,b){this.a=a +this.b=b}, +aPN:function aPN(a,b,c){this.a=a +this.b=b +this.c=c}, +aQb:function aQb(a,b,c){this.a=a +this.b=b +this.c=c}, +aQc:function aQc(a){this.a=a}, +aPW:function aPW(a,b,c){this.a=a +this.b=b +this.c=c}, +aPX:function aPX(a,b){this.a=a +this.b=b}, +aPY:function aPY(a){this.a=a}, +aPZ:function aPZ(){}, +aPM:function aPM(a){this.a=a}, +aQ_:function aQ_(a,b){this.a=a +this.b=b}, +aQ0:function aQ0(a,b){this.a=a +this.b=b}, +aQ1:function aQ1(a,b,c){this.a=a +this.b=b +this.c=c}, +aQ2:function aQ2(a,b,c){this.a=a +this.b=b +this.c=c}, +aQ3:function aQ3(a){this.a=a}, +aQ4:function aQ4(a){this.a=a}, +a7R:function a7R(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 +_.a=m}, +aPE:function aPE(a,b){this.a=a +this.b=b}, +aPF:function aPF(a,b){this.a=a +this.b=b}, +aPC:function aPC(a,b){this.a=a +this.b=b}, +aPA:function aPA(a,b){this.a=a +this.b=b}, +aPB:function aPB(a){this.a=a}, +aPz:function aPz(a,b,c){this.a=a +this.b=b +this.c=c}, +aPD:function aPD(a,b,c){this.a=a +this.b=b +this.c=c}, +abu:function abu(a){this.a=a}, +b08:function b08(a,b){this.a=a +this.b=b}, +b09:function b09(a,b){this.a=a +this.b=b}, +b06:function b06(a,b){this.a=a +this.b=b}, +b07:function b07(a){this.a=a}, +b0f:function b0f(){}, +b0g:function b0g(a,b,c){this.a=a +this.b=b +this.c=c}, +b0e:function b0e(a,b,c){this.a=a +this.b=b +this.c=c}, +b0h:function b0h(a,b,c){this.a=a +this.b=b +this.c=c}, +b0i:function b0i(a){this.a=a}, +b0j:function b0j(a){this.a=a}, +b0o:function b0o(a,b){this.a=a +this.b=b}, +b0l:function b0l(){}, +b0k:function b0k(a){this.a=a}, +b0d:function b0d(a){this.a=a}, +b0n:function b0n(a){this.a=a}, +b0a:function b0a(a){this.a=a}, +b0m:function b0m(a,b,c){this.a=a +this.b=b +this.c=c}, +b0b:function b0b(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +b0c:function b0c(a){this.a=a}, +YV:function YV(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f}, +awN:function awN(a){this.a=a}, +awO:function awO(a,b){this.a=a +this.b=b}, +awP:function awP(a,b){this.a=a +this.b=b}, +awQ:function awQ(a){this.a=a}, +Mc(a,b,c,d){return new A.a64(b,a,d,c,null)}, +a64:function a64(a,b,c,d,e){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.a=e}, +aL0:function aL0(a,b,c){this.a=a +this.b=b +this.c=c}, +aL_:function aL_(a,b){this.a=a +this.b=b}, +bsR(a,b,c){return new A.a65(c,a,b,null)}, +a65:function a65(a,b,c,d){var _=this +_.f=a +_.r=b +_.w=c +_.a=d}, +aL7:function aL7(a){this.a=a}, +aL1:function aL1(){}, +aL2:function aL2(){}, +aL3:function aL3(){}, +aL4:function aL4(){}, +aL5:function aL5(){}, +aL6:function aL6(){}, +bu4(a,b,c,d,e,f){return new A.a9p(a,e,b,f,c,d,null)}, +a9p:function a9p(a,b,c,d,e,f,g){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.x=e +_.y=f +_.a=g}, +aUW:function aUW(a,b,c){this.a=a +this.b=b +this.c=c}, +aUV:function aUV(a,b){this.a=a +this.b=b}, +bre(a,b,c,d){return new A.a16(d,a,c,b,null)}, +a16:function a16(a,b,c,d,e){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.a=e}, +azP:function azP(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +azK:function azK(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +azJ:function azJ(a,b,c){this.a=a +this.b=b +this.c=c}, +azG:function azG(a){this.a=a}, +azL:function azL(a,b,c){this.a=a +this.b=b +this.c=c}, +azM:function azM(a,b,c){this.a=a +this.b=b +this.c=c}, +azN:function azN(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +azH:function azH(a,b){this.a=a +this.b=b}, +azI:function azI(a){this.a=a}, +azO:function azO(a,b,c){this.a=a +this.b=b +this.c=c}, +abs:function abs(a){this.a=a}, +b_V:function b_V(a,b,c){this.a=a +this.b=b +this.c=c}, +vf:function vf(a,b,c){this.e=a +this.f=b +this.a=c}, +b_Z:function b_Z(a,b){this.a=a +this.b=b}, +b_W:function b_W(a,b){this.a=a +this.b=b}, +b_X:function b_X(a){this.a=a}, +b_Y:function b_Y(a){this.a=a}, +abt:function abt(a){this.a=a}, +b00:function b00(a,b){this.a=a +this.b=b}, +b0_:function b0_(a){this.a=a}, +b01:function b01(a){this.a=a}, +zV:function zV(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +b_U:function b_U(a){this.a=a}, +b_T:function b_T(a,b){this.a=a +this.b=b}, +pt:function pt(a,b,c){this.a=a +this.b=b +this.c=c}, +Qf:function Qf(a){this.a=a}, +Qg:function Qg(a,b){this.a=a +this.b=b}, +Q7:function Q7(a){this.a=a}, +Q6:function Q6(a,b){this.a=a +this.b=b}, +Q5:function Q5(a,b,c){this.a=a +this.b=b +this.c=c}, +bLe(){return new A.yN()}, +bX5(a,b){var s,r,q,p,o,n,m,l,k=null,j=a.N($.bpc(),t.v) +if(j==null)j="" +if(B.c.cc(j,"?")){s=t.J +return A.a([new A.pt("@S","@",A.A(b,B.h,s).gnN()),new A.pt("@S/M","@/",A.A(b,B.h,s).gnO()),new A.pt("#C","#",A.A(b,B.h,s).gnJ()),new A.pt("#C/M","#/",A.A(b,B.h,s).gnK()),new A.pt("#C/M:CN","#/:",A.A(b,B.h,s).gnL()),new A.pt("X",k,A.A(b,B.h,s).gnM())],t.RI)}if(B.c.cc(j,"@")){r=B.c.cm(j,1) +q=A.a(r.split("/"),t.s) +p=a.N(A.blD(A.xL(q)),t.s5) +if(q.length>1){if(p==null)s=k +else{s=J.cx(p,new A.bhL(q),t.WM) +s=A.a8(s,!0,A.l(s).h("av.E"))}return s}else{if(p==null)s=k +else{s=J.cx(p,new A.bhM(),t.WM) +s=A.a8(s,!0,A.l(s).h("av.E"))}return s}}s=new A.bhI(a) +o=new A.bhN(a,s) +if(!B.c.cc(j,"#"))n=B.c.p(A.Zs(b),"/library") +else n=!0 +if(n)return o.$1(j) +n=B.c.cc(A.Zs(b),"/manga/") +if(n){n=A.xL(A.a(B.c.cm(A.Zs(b),7).split("/"),t.s)) +n=n==null?k:A.xL(J.bjh(n,"?")) +m=A.me(n==null?"":n,k) +if(m!=null){l=A.c_(a.N(A.oS(m),t.ms)) +if(l!=null)return s.$2$query(l,j)}}return o.$1(j)}, +bwj(a,b){a=a+b&536870911 +a=a+((a&524287)<<10)&536870911 +return a^a>>>6}, +blk(a){var s=null +return new A.N6(a,new A.aNW(a),s,B.SB,s,"processesQuickSearchProvider",s,s)}, +yN:function yN(){this.a=$}, +bhL:function bhL(a){this.a=a}, +bhM:function bhM(){}, +bhI:function bhI(a){this.a=a}, +bhJ:function bhJ(a){this.a=a}, +bhK:function bhK(a,b){this.a=a +this.b=b}, +bhN:function bhN(a,b){this.a=a +this.b=b}, +bhO:function bhO(a){this.a=a}, +bhP:function bhP(a){this.a=a}, +bhQ:function bhQ(){}, +a7p:function a7p(){}, +N6:function N6(a,b,c,d,e,f,g,h){var _=this +_.dy=a +_.ay=b +_.d=c +_.e=d +_.f=e +_.a=f +_.b=g +_.c=h}, +aNW:function aNW(a){this.a=a}, +N7:function N7(){}, +akD:function akD(a,b,c,d,e,f,g,h){var _=this +_.dK$=a +_.eX$=b +_.a=null +_.b=!1 +_.c=$ +_.d=c +_.e=$ +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +akI:function akI(){}, +apU:function apU(){}, +a7y:function a7y(a,b){this.d=a +this.a=b}, +aOI:function aOI(a){this.a=a}, +aOH:function aOH(a){this.a=a}, +lW:function lW(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +awk:function awk(a,b){this.a=a +this.b=b}, +a7v:function a7v(a,b,c){this.e=a +this.f=b +this.a=c}, +aOz:function aOz(a){this.a=a}, +a7w:function a7w(a,b){this.f=a +this.a=b}, +aOC:function aOC(a){this.a=a}, +aOB:function aOB(a){this.a=a}, +aOD:function aOD(a,b){this.a=a +this.b=b}, +aOF:function aOF(a,b){this.a=a +this.b=b}, +aOA:function aOA(a,b){this.a=a +this.b=b}, +aOE:function aOE(a){this.a=a}, +zg:function zg(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +aTu:function aTu(a,b){this.a=a +this.b=b}, +aTo:function aTo(a,b){this.a=a +this.b=b}, +aTw:function aTw(a){this.a=a}, +aTx:function aTx(a){this.a=a}, +aTp:function aTp(a){this.a=a}, +aTq:function aTq(a){this.a=a}, +aTr:function aTr(a){this.a=a}, +aTv:function aTv(){}, +aTs:function aTs(){}, +aTt:function aTt(){}, +bul(a,b,c){return new A.v0(c,b,a,null)}, +v0:function v0(a,b,c,d){var _=this +_.e=a +_.f=b +_.r=c +_.a=d}, +aXf:function aXf(a,b,c){this.a=a +this.b=b +this.c=c}, +uY:function uY(){}, +tR:function tR(){}, +a9_:function a9_(a,b){this.f=a +this.a=b}, +aTz:function aTz(a){this.a=a}, +aTy:function aTy(a){this.a=a}, +a7z:function a7z(a,b,c){this.c=a +this.d=b +this.a=c}, +aOJ:function aOJ(a){this.a=a}, +aOK:function aOK(a){this.a=a}, +aOL:function aOL(a){this.a=a}, +bTp(a){return new A.te(a.N($.w6(),t.w6))}, +te:function te(a){this.a=a}, +atL:function atL(){}, +bO4(a){var s,r=J.aj(a),q=t.kc,p=q.a(r.i(a,"missingSources")) +if(p==null)p=null +else{p=J.cx(p,new A.b0W(),t.N) +p=A.a8(p,!0,A.l(p).h("av.E"))}s=q.a(r.i(a,"missingTrackers")) +if(s==null)s=null +else{s=J.cx(s,new A.b0X(),t.N) +s=A.a8(s,!0,A.l(s).h("av.E"))}r=q.a(r.i(a,"mangasMissingSources")) +if(r==null)r=null +else{r=J.cx(r,new A.b0Y(),t.N) +r=A.a8(r,!0,A.l(r).h("av.E"))}return new A.FR(p,s,r)}, +l4:function l4(){}, +atI:function atI(){}, +atJ:function atJ(){}, +atK:function atK(){}, +b1n:function b1n(){}, +FR:function FR(a,b,c){this.a=a +this.b=b +this.c=c}, +aek:function aek(){}, +b0W:function b0W(){}, +b0X:function b0X(){}, +b0Y:function b0Y(){}, +ael:function ael(){}, +XN:function XN(a){this.a=a}, +bF4(){return new A.wd($,$,null,$)}, +wd:function wd(a,b,c,d){var _=this +_.oZ$=a +_.p_$=b +_.qO$=c +_.pU$=d +_.a=$}, +XM:function XM(a){this.a=a}, +asD:function asD(){}, +asE:function asE(a,b,c){this.a=a +this.b=b +this.c=c}, +asC:function asC(a,b,c){this.a=a +this.b=b +this.c=c}, +aea:function aea(){}, +bIJ(){return new A.xr($,$,$,$,$)}, +xr:function xr(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +a2r:function a2r(a){this.a=a}, +aFx:function aFx(){}, +aFy:function aFy(a){this.a=a}, +ahw:function ahw(){}, +bJ8(){return new A.xI($,$,$,$,$)}, +xI:function xI(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +a37:function a37(a){this.a=a}, +ai6:function ai6(){}, +Yd:function Yd(a){this.a=a}, +atQ:function atQ(a){this.a=a}, +atN:function atN(a,b,c){this.a=a +this.b=b +this.c=c}, +atP:function atP(a,b,c){this.a=a +this.b=b +this.c=c}, +atO:function atO(a,b){this.a=a +this.b=b}, +atM:function atM(a){this.a=a}, +atR:function atR(a,b){this.a=a +this.b=b}, +atS:function atS(a,b,c){this.a=a +this.b=b +this.c=c}, +B8:function B8(a,b){this.c=a +this.a=b}, +atF:function atF(){}, +atG:function atG(){}, +atH:function atH(){}, +YD:function YD(a){this.a=a}, +bMn(){return new A.zr($,$,$,$,$)}, +zr:function zr(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +a9m:function a9m(a){this.a=a}, +amM:function amM(){}, +a2c:function a2c(a){this.a=a}, +aEI:function aEI(a,b){this.a=a +this.b=b}, +aEH:function aEH(a){this.a=a}, +aEG:function aEG(a,b){this.a=a +this.b=b}, +aEJ:function aEJ(a,b){this.a=a +this.b=b}, +bLf(){return new A.yO($,$,$,$,$)}, +yO:function yO(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +a7A:function a7A(a){this.a=a}, +akK:function akK(){}, +a3B:function a3B(a){this.a=a}, +aIw:function aIw(a){this.a=a}, +a62:function a62(a){this.a=a}, +aKN:function aKN(a){this.a=a}, +aKO:function aKO(a){this.a=a}, +aKP:function aKP(a){this.a=a}, +aKQ:function aKQ(a){this.a=a}, +aKR:function aKR(a,b){this.a=a +this.b=b}, +a7Q:function a7Q(a){this.a=a}, +bLq(){return new A.yR($,$,$,$,$)}, +yR:function yR(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +a7H:function a7H(a){this.a=a}, +akV:function akV(){}, +bJ7(){return new A.xH($,$,$,$,$)}, +xH:function xH(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +a7I:function a7I(a){this.a=a}, +ai5:function ai5(){}, +bLr(){return new A.yS($,$,$,$,$)}, +yS:function yS(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +a7J:function a7J(a){this.a=a}, +aPc:function aPc(){}, +XZ:function XZ(a,b,c){this.f=a +this.r=b +this.a=c}, +at1:function at1(a,b){this.a=a +this.b=b}, +at_:function at_(a,b){this.a=a +this.b=b}, +at0:function at0(){}, +akW:function akW(){}, +bLs(){return new A.yT($,$,null,$)}, +yT:function yT(a,b,c,d){var _=this +_.oZ$=a +_.p_$=b +_.qO$=c +_.pU$=d +_.a=$}, +a7K:function a7K(a){this.a=a}, +aPg:function aPg(a,b,c){this.a=a +this.b=b +this.c=c}, +aPf:function aPf(a,b){this.a=a +this.b=b}, +aPd:function aPd(a){this.a=a}, +aPe:function aPe(a,b){this.a=a +this.b=b}, +akX:function akX(){}, +bLt(){return new A.yU($,$,null,$)}, +yU:function yU(a,b,c,d){var _=this +_.oZ$=a +_.p_$=b +_.qO$=c +_.pU$=d +_.a=$}, +a7L:function a7L(a){this.a=a}, +aPk:function aPk(a,b,c){this.a=a +this.b=b +this.c=c}, +aPj:function aPj(a,b){this.a=a +this.b=b}, +aPh:function aPh(a){this.a=a}, +aPi:function aPi(a,b){this.a=a +this.b=b}, +akY:function akY(){}, +bLu(){return new A.yV($,$,$,$,$)}, +yV:function yV(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +a7N:function a7N(a){this.a=a}, +aPm:function aPm(){}, +Y_:function Y_(a,b,c){this.f=a +this.r=b +this.a=c}, +at4:function at4(a,b){this.a=a +this.b=b}, +at2:function at2(a,b){this.a=a +this.b=b}, +at3:function at3(){}, +akZ:function akZ(){}, +bKF(){return new A.yx($,$,$,$,$)}, +yx:function yx(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +ak0:function ak0(){}, +bLv(){return new A.yW($,$,$,$,$)}, +yW:function yW(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +a7P:function a7P(a){this.a=a}, +al_:function al_(){}, +bMS(){return new A.zB($,$,$,$,$)}, +zB:function zB(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +aaz:function aaz(a){this.a=a}, +ans:function ans(){}, +bO_(){return new A.zZ($,$,$,$,$)}, +zZ:function zZ(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +ap_:function ap_(){}, +bO0(){return new A.zY($,$,$,$,$)}, +zY:function zY(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +ap0:function ap0(){}, +a9e:function a9e(a){this.a=a}, +aUh:function aUh(a){this.a=a}, +aUg:function aUg(){}, +Y4:function Y4(a){this.a=a}, +att:function att(a,b,c){this.a=a +this.b=b +this.c=c}, +ats:function ats(a,b){this.a=a +this.b=b}, +atq:function atq(a){this.a=a}, +atr:function atr(a,b){this.a=a +this.b=b}, +bG7(){return new A.wF($,$,$,$,$)}, +wF:function wF(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +BM:function BM(a){this.a=a}, +axW:function axW(a){this.a=a}, +axX:function axX(a){this.a=a}, +axY:function axY(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aft:function aft(){}, +a9g:function a9g(a){this.a=a}, +aUp:function aUp(a){this.a=a}, +aUq:function aUq(a){this.a=a}, +aUr:function aUr(a){this.a=a}, +aUs:function aUs(a){this.a=a}, +aUt:function aUt(a){this.a=a}, +aUu:function aUu(a){this.a=a}, +aUv:function aUv(a){this.a=a}, +bF5(){return new A.we($,$,null,$)}, +buI(a,b){var s +switch(a.a){case 0:s=A.A(b,B.h,t.J).goe() +break +case 1:s=A.A(b,B.h,t.J).god() +break +case 2:s=A.A(b,B.h,t.J).goc() +break +default:s=null}return s}, +we:function we(a,b,c,d){var _=this +_.oZ$=a +_.p_$=b +_.qO$=c +_.pU$=d +_.a=$}, +XL:function XL(a){this.a=a}, +asB:function asB(a,b,c){this.a=a +this.b=b +this.c=c}, +asA:function asA(a,b){this.a=a +this.b=b}, +asy:function asy(a){this.a=a}, +asz:function asz(a,b){this.a=a +this.b=b}, +aeb:function aeb(){}, +bMc(){return new A.zk($,$,$,$,$)}, +bMb(){return new A.zl($,$,$,$,$)}, +zk:function zk(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +zl:function zl(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +a9d:function a9d(a){this.a=a}, +aUe:function aUe(a){this.a=a}, +aUf:function aUf(a,b){this.a=a +this.b=b}, +aUd:function aUd(a){this.a=a}, +EH:function EH(a,b){this.f=a +this.a=b}, +aUb:function aUb(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aUc:function aUc(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +amx:function amx(){}, +amw:function amw(){}, +bMd(){return new A.zm($,$,$,$,$)}, +zm:function zm(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +a9f:function a9f(a){this.a=a}, +aUl:function aUl(a,b){this.a=a +this.b=b}, +aUk:function aUk(a){this.a=a}, +EJ:function EJ(a,b){this.f=a +this.a=b}, +aUi:function aUi(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +aUj:function aUj(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +amz:function amz(){}, +a9B(a,b,c,d,e,f,g,h,i){return new A.OB(g,c,h,f,e,a,d,b,null,i.h("OB<0>"))}, +OB:function OB(a,b,c,d,e,f,g,h,i,j){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.a=i +_.$ti=j}, +aVl:function aVl(a){this.a=a}, +aVm:function aVm(a){this.a=a}, +bUu(a){var s,r,q,p=a.N($.bDM(),t.lm),o=t.v,n=a.N($.I_(),o) +if(n==null)n="http://127.0.0.1" +s=a.N($.AO(),t.bo) +r=a.N($.HZ(),t.u) +q=a.N($.w5(),t.Wr) +if(q==null)q=B.ec +return new A.tx(p.aOa(r===!0,q,n,a.N($.HY(),o),a.N($.boT(),t.Wm),s))}, +bFb(){return new A.wh($,$,null,$)}, +bJr(){return new A.u5($,$,$,$,$)}, +bXZ(a){return A.r(A.d1(null))}, +bTc(a){return A.r(A.d1(null))}, +bVA(a){var s,r,q=a.N($.boM(),t.je) +q=q==null?null:J.bEo(q) +s=new A.qA() +if(q!=null){r=$.arq() +r.f=q +switch(0){}r.d=new A.Yc()}q=$.arq() +if(!q.VZ(93))q.Xh(new A.QQ(),t.JS) +if(!q.VZ(94))q.Xh(new A.QO(),t.M8) +if(!q.VZ(95))q.Xh(new A.QP(),t.PL) +s.zR(!0) +return s}, +bX9(a,b){var s=new A.eZ(A.a([],t.F1),B.bD,3,A.a([],t.LU),A.aW(t.S)) +a.jX(new A.bhV(s)) +return s}, +bwo(a,b){a=a+b&536870911 +a=a+((a&524287)<<10)&536870911 +return a^a>>>6}, +blo(a){var s=null +return new A.Nh(a,new A.aOT(a),s,B.SE,s,"rateLimitQueueProvider",s,s)}, +wh:function wh(a,b,c,d){var _=this +_.oZ$=a +_.p_$=b +_.qO$=c +_.pU$=d +_.a=$}, +u5:function u5(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +bhV:function bhV(a){this.a=a}, +a7D:function a7D(){}, +Nh:function Nh(a,b,c,d,e,f,g,h){var _=this +_.dy=a +_.ay=b +_.d=c +_.e=d +_.f=e +_.a=f +_.b=g +_.c=h}, +aOT:function aOT(a){this.a=a}, +Ni:function Ni(){}, +akP:function akP(a,b,c,d,e,f,g,h){var _=this +_.dK$=a +_.eX$=b +_.a=null +_.b=!1 +_.c=$ +_.d=c +_.e=$ +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +aeg:function aeg(){}, +aie:function aie(){}, +apW:function apW(){}, +bXo(a){var s,r=null,q="/library",p=t.yo +p=A.a([A.bu1(A.bXE(),$.bB4(),A.a([A.bu1(A.bXJ(),$.bBq(),A.a([A.h1(A.bXz(),r,"/",B.b8,t.Ae),A.h1(A.bXA(),r,q,B.b8,t.BH),A.h1(A.bXN(),r,"/updates",B.b8,t.wR),A.h1(A.bXt(),r,"/browse",B.b8,t.i4),A.h1(A.bXv(),r,"/downloads",B.b8,t.g7),A.h1(A.bXD(),r,"/more",B.b8,t.Ig)],p),t.ti),A.h1(A.bXC(),$.bAW(),"/manga/:mangaId",B.b8,t.sy),A.h1(A.bXM(),$.bBH(),"/update-status",B.b8,t.kg),A.h1(A.bXy(),$.bAM(),"/global-search",B.b8,t.Ul),A.h1(A.bXL(),$.bBs(),"/source/:sourceId/preference",B.b8,t.GP),A.h1(A.bXK(),$.bBr(),"/source/:sourceId/:sourceType",B.b8,t.xy),A.h1(A.bXq(),$.bAh(),"/about",B.b8,t.uY),A.h1(A.bXF(),$.bB8(),"/manga/:mangaId/chapter/:chapterIndex",B.b8,t.gy),A.h1(A.bXI(),$.bBo(),"/settings",A.a([A.h1(A.bXB(),$.bAV(),"library",A.a([A.h1(A.bXw(),$.bAB(),"edit-categories",B.b8,t.NA)],p),t.Fs),A.h1(A.bXH(),$.bBn(),"server",B.b8,t.yc),A.h1(A.bXG(),$.bB9(),"reader",B.b8,t.N7),A.h1(A.bXr(),$.bAi(),"appearance",B.b8,t.Ao),A.h1(A.bXx(),$.bAL(),"general",B.b8,t.RQ),A.h1(A.bXu(),$.bAl(),"browse",B.b8,t.y7),A.h1(A.bXs(),$.bAj(),"backup",B.b8,t.kk)],p),t.G2)],p),t.hN)],p) +s=$.bD9() +return A.bIH(!0,r,r,r,r,q,s,r,r,!1,r,!0,r,!1,new A.af9(new A.aSb(p,A.bXp(),5)))}, +bA4(a){return B.SD}, +bAa(a){return B.SP}, +bzX(a){return B.Sg}, +bzY(a){return new A.u7(A.adJ("initial-category-order",a.b.gri(),A.byp()))}, +bis(a){var s=A.I(t.N,t.z),r=a.a +if(r!=null)s.n(0,"initial-category-order",B.f.l(r)) +return A.ej("/library",s)}, +bzZ(a){return new A.arm(a)}, +bAe(a){return B.mo}, +bAg(a){return A.ej("/updates",null)}, +bAf(a){return new A.aro(a)}, +bzN(a){return B.mj}, +bzP(a){return A.ej("/browse",null)}, +bzO(a){return new A.ark(a)}, +bzR(a){return B.mk}, +bzT(a){return A.ej("/downloads",null)}, +bzS(a){return new A.arl(a)}, +bA1(a){return B.ml}, +bA3(a){return A.ej("/more",null)}, +bA2(a){return new A.arn(a)}, +bA0(a){var s=a.r.i(0,"mangaId") +s.toString +return new A.iO(A.eq(s,null,null),A.adJ("category-id",a.b.gri(),A.byp()))}, +oe(a){var s=A.kn(B.fA,B.f.l(a.a),B.a_,!1),r=A.I(t.N,t.z),q=a.b +if(q!=null)r.n(0,"category-id",B.f.l(q)) +return A.ej("/manga/"+s,r)}, +bAd(a){return B.T3}, +bzW(a){return new A.tQ(a.b.gri().i(0,"query"))}, +bo_(a){var s=A.I(t.N,t.z),r=a.a +if(r!=null)s.n(0,"query",r) +return A.ej("/global-search",s)}, +bAc(a){var s=a.r.i(0,"sourceId") +s.toString +return new A.EX(s)}, +bAb(a){var s=a.r,r=s.i(0,"sourceId") +r.toString +s=s.i(0,"sourceType") +s.toString +return new A.kM(r,A.bRt(B.Jd,s,t.IU),a.b.gri().i(0,"query"),t.uS.a(a.w))}, +w2(a){var s,r,q=A.kn(B.fA,a.a,B.a_,!1),p=B.Jd.i(0,a.b) +p.toString +p=A.kn(B.fA,p,B.a_,!1) +s=A.I(t.N,t.z) +r=a.c +if(r!=null)s.n(0,"query",r) +return A.ej("/source/"+q+"/"+p,s)}, +bzK(a){return B.RJ}, +bA5(a){var s,r,q,p=null,o=a.r,n=o.i(0,"mangaId") +n.toString +n=A.eq(n,p,p) +o=o.i(0,"chapterIndex") +o.toString +o=A.eq(o,p,p) +s=a.b +r=A.adJ("trans-vertical",s.gri(),A.bnL()) +q=A.adJ("to-prev",s.gri(),A.bnL()) +s=A.adJ("show-reader-layout-animation",s.gri(),A.bnL()) +return new A.ig(n,o,r,q,s==null?!1:s)}, +mN(a){var s=A.kn(B.fA,B.f.l(a.a),B.a_,!1),r=A.kn(B.fA,B.f.l(a.b),B.a_,!1),q=A.I(t.N,t.z),p=a.c +if(p!=null)q.n(0,"trans-vertical",B.b7.l(p)) +p=a.d +if(p!=null)q.n(0,"to-prev",B.b7.l(p)) +if(a.e)q.n(0,"show-reader-layout-animation",B.b7.l(!0)) +return A.ej("/manga/"+s+"/chapter/"+r,q)}, +bA8(a){return B.r_}, +bA9(a){return A.ej("/settings",null)}, +bA_(a){return B.Sj}, +bzU(a){return B.S5}, +bA7(a){return B.SO}, +bA6(a){return B.SF}, +bzL(a){return B.RM}, +bzV(a){return B.Sc}, +bzQ(a){return B.RS}, +bzM(a){return B.RN}, +adJ(a,b,c){var s=b.i(0,a) +return s==null?null:c.$1(s)}, +bRt(a,b,c){var s=a.gdX(a) +return s.pw(s,new A.bfi(b,c)).a}, +bOm(a){switch(a){case"true":return!0 +case"false":return!1 +default:throw A.c(A.aa('Cannot convert "'+a+'" into a bool.'))}}, +E4:function E4(){}, +EO:function EO(){}, +CJ:function CJ(){}, +u7:function u7(a){this.a=a}, +FJ:function FJ(){}, +Bg:function Bg(){}, +C3:function C3(){}, +Dv:function Dv(){}, +iO:function iO(a,b){this.a=a +this.b=b}, +FI:function FI(){}, +tQ:function tQ(a){this.a=a}, +kM:function kM(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +EX:function EX(a){this.a=a}, +AT:function AT(){}, +ig:function ig(a,b,c,d,e){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e}, +aPn:function aPn(a){this.a=a}, +EM:function EM(){}, +D9:function D9(){}, +C9:function C9(){}, +EI:function EI(){}, +Ec:function Ec(){}, +B1:function B1(){}, +Cy:function Cy(){}, +Bh:function Bh(){}, +B9:function B9(){}, +arm:function arm(a){this.a=a}, +aro:function aro(a){this.a=a}, +ark:function ark(a){this.a=a}, +arl:function arl(a){this.a=a}, +arn:function arn(a){this.a=a}, +bfi:function bfi(a,b){this.a=a +this.b=b}, +a9R:function a9R(a){this.a=a}, +aVN:function aVN(){}, +bpV(a,b,c){if(!A.bpW(a))A.wg(a,null,new A.at7(b),c,t.P)}, +hF(a,b,c,d){if(c)A.tO(new A.atb(a,b,d),t.H) +else A.bpV(a,b,d)}, +iw(a,b,c,d,e,f,g){var s={} +s.a=g +if(d)s.a=new A.atc() +return A.bjt(a,c,new A.atd(s,f,b,e),new A.ate(s),!0,!0,!1)}, +om(a,b,c,d){return A.bjt(a,new A.at8(b,c,d),new A.at9(d),new A.ata(d),!0,!0,!1)}, +Zs(a){var s,r,q=A.bP(a).c +q===$&&A.b() +s=q.d +r=s.gX(s) +return(r instanceof A.ic?r.d:q.d).c.l(0)}, +bqC(a,b){var s=B.f.cE(A.dW(0,Date.now()-a.a,0).a,864e8) +if(s<1)return A.A(b,B.h,t.J).gog() +else if(s<2)return A.A(b,B.h,t.J).gos() +else if(s<10)return A.A(b,B.h,t.J).mH(s) +else return A.a0x(b.aj(t.Gk).r.f.t5("-")).tD(a)}, +bkH(a){return B.c.eP(B.f.l(a),2,"0")}, +bJ3(a,b){if(a==null)return"" +return A.bqC(A.n1(a*1000,!1),b)}, +bJ2(a,b){return A.bqC(A.n1(a,!1),b)}, +bJ1(a,b){var s,r +if(a==null||b==null)return!1 +a.toString +s=A.n1(a*1000,!1) +r=A.n1(b*1000,!1) +return A.yM(s)===A.yM(r)&&A.kG(s)===A.kG(r)&&A.E0(s)===A.E0(r)}, +xL(a){var s +if(a==null)return null +s=J.al(a) +if(s.v())return s.gG(s) +return null}, +bJc(a,b){var s,r,q=null +try{s=J.bpB(a,b,q) +return s}catch(r){return null}}, +bJa(a,b){var s,r,q=null +try{s=J.bps(a,b,q) +return s}catch(r){return null}}, +aJS(a,b,c){var s=A.I(b,c) +a.al(0,new A.aJT(s,b,c)) +return s}, +bkZ(a,b,c,d,e){var s +if(J.jC(a,b)){s=A.oN(a,d,e) +s.E(0,b) +return s}else{s=A.oN(a,d,e) +s.n(0,b,c) +return s}}, +P1(a,b){if(a==null)return!1 +if(b==null||b.length===0)return!0 +return B.c.p(a.toLowerCase(),b.toLowerCase())}, +bup(a){if(a.length===0)return null +return B.c.vM(a,A.bE("http",!1,!1,!1),"ws")}, +at7:function at7(a){this.a=a}, +atb:function atb(a,b,c){this.a=a +this.b=b +this.c=c}, +atc:function atc(){}, +atd:function atd(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +ate:function ate(a){this.a=a}, +at8:function at8(a,b,c){this.a=a +this.b=b +this.c=c}, +at9:function at9(a){this.a=a}, +ata:function ata(a){this.a=a}, +aJT:function aJT(a,b,c){this.a=a +this.b=b +this.c=c}, +bzG(a,b,c){return $.bb.bz(new A.H0(a,null,null,b.h("@<0>").V(c).h("H0<1,2>")),b.h("@<0>").V(c).h("qS<1,2>"))}, +H0:function H0(a,b,c,d){var _=this +_.b=a +_.c=b +_.a=c +_.$ti=d}, +T8:function T8(a){var _=this +_.d=$ +_.c=_.b=_.a=null +_.$ti=a}, +blS(a,b){return new A.ab7(b,a,null)}, +bwm(a,b){a=a+b&536870911 +a=a+((a&524287)<<10)&536870911 +return a^a>>>6}, +eD(a){var s=null +return new A.PF(a,new A.b_3(a),s,B.T2,s,"toastProvider",s,s)}, +ey:function ey(a){this.a=a +this.b=$}, +b_6:function b_6(a,b){this.a=a +this.b=b}, +ab7:function ab7(a,b,c){this.c=a +this.e=b +this.a=c}, +ab5:function ab5(){}, +PF:function PF(a,b,c,d,e,f,g,h){var _=this +_.dy=a +_.ay=b +_.d=c +_.e=d +_.f=e +_.a=f +_.b=g +_.c=h}, +b_3:function b_3(a){this.a=a}, +PG:function PG(){}, +aoe:function aoe(a,b,c,d,e,f,g,h){var _=this +_.dK$=a +_.eX$=b +_.a=null +_.b=!1 +_.c=$ +_.d=c +_.e=$ +_.f=d +_.r=e +_.w=f +_.x=g +_.y=h +_.CW=_.ch=_.ay=_.ax=_.at=_.as=_.Q=_.z=null +_.fx=_.fr=_.dy=_.dx=_.db=_.cy=_.cx=!1 +_.fy=null}, +aqx:function aqx(){}, +aV:function aV(){}, +aUz:function aUz(){}, +aUA:function aUA(a){this.a=a}, +eb:function eb(){}, +aUB:function aUB(a){this.a=a}, +F1:function F1(){}, +tx:function tx(a){this.a=a}, +ayD:function ayD(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +ayF:function ayF(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}, +ayE:function ayE(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}, +ayG:function ayG(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}, +ayC:function ayC(a,b,c,d,e,f){var _=this +_.a=a +_.b=b +_.c=c +_.d=d +_.e=e +_.f=f}, +ayB:function ayB(a,b){this.a=a +this.b=b}, +bSA(a){var s,r +try{s=B.az.v1(0,a,null) +return s}catch(r){return a}}, +bWL(a){return A.WJ(A.bWy(),a,null,t.N,t.z)}, +bWx(a){return new A.BZ()}, +BZ:function BZ(){}, +az_:function az_(a,b){this.a=a +this.b=b}, +ayZ:function ayZ(a){this.a=a}, +XW:function XW(a,b,c,d){var _=this +_.d=a +_.e=b +_.f=c +_.a=d}, +asN:function asN(a,b){this.a=a +this.b=b}, +asO:function asO(a,b){this.a=a +this.b=b}, +Y0:function Y0(a,b,c,d,e,f,g,h){var _=this +_.d=a +_.e=b +_.f=c +_.r=d +_.w=e +_.x=f +_.z=g +_.a=h}, +at5:function at5(a,b){this.a=a +this.b=b}, +at6:function at6(a,b){this.a=a +this.b=b}, +wM(a,b,c,d,e){return new A.JC(c,b,a,d,null,e.h("JC<0>"))}, +JC:function JC(a,b,c,d,e,f){var _=this +_.e=a +_.f=b +_.r=c +_.w=d +_.a=e +_.$ti=f}, +bl4(a,b){return new A.a60(a,b,null)}, +q8:function q8(a,b){this.c=a +this.a=b}, +a9S:function a9S(a){this.a=a}, +a60:function a60(a,b,c){this.c=a +this.d=b +this.a=c}, +i5(a,b){return new A.Cg(b,a,null)}, +Cg:function Cg(a,b,c){this.d=a +this.f=b +this.a=c}, +aBn:function aBn(){}, +bkW(a,b,c,d,e,f,g){return new A.qM(a,c,b,e,g,d,f,null)}, +qM:function qM(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}, +aJf:function aJf(a,b){this.a=a +this.b=b}, +aJd:function aJd(a){this.a=a}, +aJe:function aJe(){}, +bsF(a,b,c,d,e){return new A.Dm(a,e,c,b,d,null)}, +Dm:function Dm(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.f=c +_.r=d +_.w=e +_.a=f}, +aJc:function aJc(a){this.a=a}, +bkX(a,b,c,d){return new A.ne(a,c,b,d,null)}, +ne:function ne(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +bHl(){return new A.x_($,$,$,$,$)}, +bNK(){return new A.zU($,$,$,$,$)}, +x_:function x_(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +zU:function zU(a,b,c,d,e){var _=this +_.du$=a +_.dv$=b +_.e4$=c +_.eb$=d +_.ec$=e +_.a=$}, +agl:function agl(){}, +aoP:function aoP(){}, +bkU(a,b,c){return new A.a3M(a,c,b,null)}, +a3M:function a3M(a,b,c,d){var _=this +_.e=a +_.r=b +_.w=c +_.a=d}, +Dk:function Dk(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +a3V:function a3V(a,b,c){this.e=a +this.f=b +this.a=c}, +LK:function LK(a,b,c,d){var _=this +_.c=a +_.d=b +_.e=c +_.a=d}, +yi:function yi(a,b,c,d,e,f,g){var _=this +_.d=a +_.e=b +_.f=c +_.r=d +_.w=e +_.a=f +_.$ti=g}, +aLo:function aLo(a,b){this.a=a +this.b=b}, +aLq:function aLq(a,b){this.a=a +this.b=b}, +aLp:function aLp(a,b){this.a=a +this.b=b}, +aLn:function aLn(a,b){this.a=a +this.b=b}, +Bp:function Bp(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e +_.$ti=f}, +QV:function QV(a,b){var _=this +_.a=null +_.b=a +_.c=null +_.$ti=b}, +b3w:function b3w(a){this.a=a}, +b3v:function b3v(a,b){this.a=a +this.b=b}, +b3u:function b3u(a,b){this.a=a +this.b=b}, +b3t:function b3t(a,b,c){this.a=a +this.b=b +this.c=c}, +uy:function uy(a,b){this.c=a +this.a=b}, +aNF:function aNF(a){this.a=a}, +uD(a,b,c,d,e,f,g){return new A.hP(e,d,f,c,b,a,null,g.h("hP<0>"))}, +hP:function hP(a,b,c,d,e,f,g,h){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.w=f +_.a=g +_.$ti=h}, +yP:function yP(a,b,c,d,e,f,g){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f +_.$ti=g}, +aOP:function aOP(a){this.a=a}, +aOO:function aOO(a,b){this.a=a +this.b=b}, +r8:function r8(a,b,c,d,e,f,g){var _=this +_.d=a +_.e=b +_.f=c +_.r=d +_.w=e +_.x=f +_.a=g}, +aTm:function aTm(a){this.a=a}, +nF(a,b,c,d,e,f,g){return new A.a9b(c,f,b,a,d,g,e,null)}, +a9b:function a9b(a,b,c,d,e,f,g,h){var _=this +_.f=a +_.r=b +_.w=c +_.x=d +_.y=e +_.z=f +_.Q=g +_.a=h}, +aUa:function aUa(a){this.a=a}, +aU8:function aU8(a,b){this.a=a +this.b=b}, +aU9:function aU9(a){this.a=a}, +a9c:function a9c(a,b,c,d,e){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.a=e}, +aU7:function aU7(){}, +Yq:function Yq(a,b){this.c=a +this.a=b}, +auj:function auj(a){this.a=a}, +auk:function auk(a){this.a=a}, +aul:function aul(a,b){this.a=a +this.b=b}, +aum:function aum(a){this.a=a}, +a9l:function a9l(a,b){this.f=a +this.a=b}, +aUO:function aUO(a,b,c){this.a=a +this.b=b +this.c=c}, +aUN:function aUN(a,b,c){this.a=a +this.b=b +this.c=c}, +aUM:function aUM(a,b,c){this.a=a +this.b=b +this.c=c}, +a9L:function a9L(a,b){this.c=a +this.a=b}, +aVM:function aVM(a){this.a=a}, +aVL:function aVL(a,b){this.a=a +this.b=b}, +buj(a,b,c,d,e,f){return new A.OH(a,e,c,d,f,b)}, +OH:function OH(a,b,c,d,e,f){var _=this +_.c=a +_.d=b +_.e=c +_.f=d +_.r=e +_.a=f}, +aVO:function aVO(a){this.a=a}, +Fn:function Fn(a,b,c,d,e){var _=this +_.d=a +_.e=b +_.f=c +_.r=d +_.a=e}, +aZ1:function aZ1(a,b){this.a=a +this.b=b}, +aZ2:function aZ2(a,b){this.a=a +this.b=b}, +ro:function ro(){}, +ai_:function ai_(){}, +abh:function abh(a,b){this.a=a +this.b=b}, +D3:function D3(a,b){this.a=a +this.b=b}, +b0N:function b0N(){}, +aKw:function aKw(){}, +aKx:function aKx(){}, +yK:function yK(a,b){this.a=a +this.b=b}, +a2X:function a2X(a,b,c){this.a=a +this.b=b +this.c=c}, +a3p:function a3p(a,b,c){this.a=a +this.b=b +this.d=c}, +b0u:function b0u(){}, +b0v:function b0v(a){this.a=a +this.b=!1}, +abE:function abE(a,b){this.a=a +this.b=b}, +aOM:function aOM(){}, +a5R:function a5R(){}, +abC:function abC(){}, +b0z:function b0z(a){this.a=a}, +b0A:function b0A(a){this.a=a}, +yh(a){var s=new A.bQ(new Float64Array(16)) +if(s.j6(a)===0)return null +return s}, +bK5(){return new A.bQ(new Float64Array(16))}, +bK6(){var s=new A.bQ(new Float64Array(16)) +s.fQ() +return s}, +ng(a,b,c){var s=new Float64Array(16),r=new A.bQ(s) +r.fQ() +s[14]=c +s[13]=b +s[12]=a +return r}, +ug(a,b,c){var s=new Float64Array(16) +s[15]=1 +s[10]=c +s[5]=b +s[0]=a +return new A.bQ(s)}, +bQ:function bQ(a){this.a=a}, +a7t:function a7t(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.d=d}, +de:function de(a){this.a=a}, +nO:function nO(a){this.a=a}, +bOQ(a,b,c,d,e){var s +if(c==null)s=null +else{s=A.by5(new A.b55(c),t.e) +s=s==null?null:A.cH(s)}s=new A.Gp(a,b,s,!1,e.h("Gp<0>")) +s.SM() +return s}, +by5(a,b){var s=$.ac +if(s===B.b6)return a +return s.Kz(a,b)}, +bkk:function bkk(a,b){this.a=a +this.$ti=b}, +Gn:function Gn(a,b,c,d){var _=this +_.a=a +_.b=b +_.c=c +_.$ti=d}, +Gp:function Gp(a,b,c,d,e){var _=this +_.a=0 +_.b=a +_.c=b +_.d=c +_.e=d +_.$ti=e}, +b55:function b55(a){this.a=a}, +b57:function b57(a){this.a=a}, +bs4(a,b){var s,r,q,p,o,n,m=null,l=A.bO1(a.l(0),b) +l.binaryType="arraybuffer" +s=new A.aap(t.Z5) +r=t.z +q=A.lE(m,m,m,!0,r) +p=A.lE(m,m,m,!0,r) +o=A.l(p) +n=A.l(q) +s.a=A.brX(new A.d6(p,o.h("d6<1>")),new A.Ay(q,n.h("Ay<1>")),!0,r) +s.b=A.brX(new A.d6(q,n.h("d6<1>")),new A.Ay(p,o.h("Ay<1>")),!1,r) +s=new A.aGw(l,s) +s.amD(l) +return s}, +aGw:function aGw(a,b){var _=this +_.a=a +_.e=_.d=null +_.f=$ +_.r=b +_.w=$}, +aGy:function aGy(a){this.a=a}, +aGz:function aGz(a){this.a=a}, +aGA:function aGA(a){this.a=a}, +aGB:function aGB(a){this.a=a}, +aGx:function aGx(a){this.a=a}, +S9:function S9(a,b){this.b=a +this.a=b}, +bm1:function bm1(a,b){this.a=a +this.b=b}, +PU:function PU(a){this.a=a}, +bht(){var s=0,r=A.y(t.H) +var $async$bht=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:s=2 +return A.t(A.bgd(new A.bhu(),new A.bhv()),$async$bht) +case 2:return A.w(null,r)}}) +return A.x($async$bht,r)}, +bhv:function bhv(){}, +bhu:function bhu(){}, +bGq(a){a.aj(t.H5) +return null}, +bs1(a,b){var s,r +a.a4o() +s=a.gt_() +r=a.gt_().i(0,b) +s.n(0,b,r+1)}, +bs2(a,b){var s=a.gt_().i(0,b),r=a.gt_(),q=s.a4(0,1) +r.n(0,b,q) +if(q.aQV(0,0))a.gt_().E(0,b)}, +bIO(a,b){return a.gt_().aq(0,b)}, +bzJ(){return null}, +bJC(a){return $.bJB.i(0,a).gaQY()}, +byV(a){return t.jj.b(a)||t.I3.b(a)||t.M2.b(a)||t.J2.b(a)||t.iy.b(a)||t.BJ.b(a)||t.oL.b(a)}, +bzq(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)}, +brM(a){return A.cH(a)}, +brd(a){return a}, +bJf(a){return a}, +bMP(a){return a}, +AI(a){var s=u.ba.charCodeAt(a>>>6)+(a&63),r=s&1,q=u.I.charCodeAt(s>>>1) +return q>>>4&-r|q&15&r-1}, +pT(a,b){var s=(a&1023)<<10|b&1023,r=u.ba.charCodeAt(1024+(s>>>9))+(s&511),q=r&1,p=u.I.charCodeAt(r>>>1) +return p>>>4&-q|p&15&q-1}, +bnS(){return new A.dx(Date.now(),!1)}, +byh(){$.bCq() +return B.RX}, +bVy(a,b,c,d){var s,r,q,p,o,n=A.I(d,c.h("f<0>")) +for(s=c.h("H<0>"),r=0;r<1;++r){q=a[r] +p=b.$1(q) +o=n.i(0,p) +if(o==null){o=A.a([],s) +n.n(0,p,o) +p=o}else p=o +J.ff(p,q)}return n}, +bJ9(a,b){var s,r +for(s=J.al(a);s.v();){r=s.gG(s) +if(b.$1(r))return r}return null}, +WK(a,b,c,d,e){return A.bTN(a,b,c,d,e,e)}, +bTN(a,b,c,d,e,f){var s=0,r=A.y(f),q,p +var $async$WK=A.u(function(g,h){if(g===1)return A.v(h,r) +while(true)switch(s){case 0:p=A.kU(null,t.P) +s=3 +return A.t(p,$async$WK) +case 3:q=a.$1(b) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$WK,r)}, +bqf(a,b){return A.cR(b,t.z7)}, +avd(a,b){return A.cR(b,t.z7)}, +bnN(a,b){var s=0,r=A.y(t.z7),q +var $async$bnN=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)$async$outer:switch(s){case 0:if(b==null){q=null +s=1 +break}switch(a.a){case 3:q=b +s=1 +break $async$outer +case 2:q=B.aV.cV(b) +s=1 +break $async$outer +case 0:q=B.aV.cV(B.az.xe(b,null)) +s=1 +break $async$outer +default:throw A.c(A.aa("Response type not supported : "+a.l(0)+"."))}case 1:return A.w(q,r)}}) +return A.x($async$bnN,r)}, +bUn(a,b){switch(a.a){case 3:return b +case 2:return b!=null?B.a_.ha(0,b):null +case 0:return b!=null?B.az.v1(0,B.a_.ha(0,b),null):null +default:throw A.c(A.aa("Response type not supported : "+a.l(0)+"."))}}, +bLF(a,b){var s,r=a.b +r===$&&A.b() +s=r.i(0,b) +if(t.yp.b(s))return s +if(typeof s=="string")return A.a(s.split(","),t.s) +return s}, +bGO(a){a=a.toLowerCase() +if(B.c.hT(a,"kdialog"))return new A.aHJ() +else if(B.c.hT(a,"qarma")||B.c.hT(a,"zenity"))return new A.aOu() +throw A.c(A.d1("DialogHandler for executable "+a+" has not been implemented"))}, +bV0(){return A.r(A.d1("Unsupported"))}, +dX(a,b){var s,r,q +if(b<=0)return a +if(b>100)return B.l +s=a.gj(a) +r=a.gj(a) +q=B.e.bg(255*-(b/100)) +return A.K(s>>>24&255,Math.max(0,Math.min(255,(r>>>16&255)-q)),Math.max(0,Math.min(255,(a.gj(a)>>>8&255)-q)),Math.max(0,Math.min(255,(a.gj(a)&255)-q)))}, +xf(a,b){var s,r +if(b<=0)return a +if(b>100)return B.l +if(a.k(0,B.o)){s=A.CF(a) +r=new A.n8(s.a,s.b,0,s.d)}else r=A.CF(a) +return new A.n8(r.a,r.b,r.c,Math.min(1,Math.max(0,r.d+b/100))).Bx()}, +i7(a,b){var s +if(b<=0)return a +if(b>100)return B.o +s=A.CF(a) +return new A.n8(s.a,s.b,s.c,Math.min(1,Math.max(0,s.d-b/100))).Bx()}, +iE(a,b,c){if(c<=0)return a +if(c>=100)return b +return A.BG(A.K(B.f.cE(255*c,100),b.gj(b)>>>16&255,b.gj(b)>>>8&255,b.gj(b)&255),a)}, +dA(a,b,c){if(c<=0)return a +if(c>=255)return b +return A.BG(A.K(c,b.gj(b)>>>16&255,b.gj(b)>>>8&255,b.gj(b)&255),a)}, +bGk(a){return B.is}, +bgo(a,b,c,d,e){return A.bTM(a,b,c,d,e,e)}, +bTM(a,b,c,d,e,f){var s=0,r=A.y(f),q,p +var $async$bgo=A.u(function(g,h){if(g===1)return A.v(h,r) +while(true)switch(s){case 0:p=A.kU(null,t.P) +s=3 +return A.t(p,$async$bgo) +case 3:q=a.$1(b) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$bgo,r)}, +WW(a,b){var s +if(a==null)return b==null +if(b==null||a.gt(a)!==b.gt(b))return!1 +if(a===b)return!0 +for(s=a.gam(a);s.v();)if(!b.p(0,s.gG(s)))return!1 +return!0}, +ee(a,b){var s,r,q +if(a==null)return b==null +if(b==null||J.b3(a)!==J.b3(b))return!1 +if(a===b)return!0 +for(s=J.aj(a),r=J.aj(b),q=0;q1e6){if(q.b==null)q.b=$.N5.$0() +q.iN(0) +$.aqW=0}while(!0){if($.aqW<12288){q=$.arx() +q=!q.gak(q)}else q=r +if(!q)break +s=$.arx().Bn() +$.aqW=$.aqW+s.length +A.bzq(s)}r=$.arx() +if(!r.gak(r)){$.bmQ=!0 +$.aqW=0 +A.d0(B.ei,A.bX4()) +if($.bf7==null)$.bf7=new A.aD(new A.a7($.ac,t.b),t.gR)}else{$.bot().rM(0) +r=$.bf7 +if(r!=null)r.fm(0) +$.bf7=null}}, +aCy(a){var s=0,r=A.y(t.H),q +var $async$aCy=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)$async$outer:switch(s){case 0:a.ga7().Ca(B.pz) +switch(A.B(a).r.a){case 0:case 1:q=A.aaD(B.as3) +s=1 +break $async$outer +case 2:case 3:case 4:case 5:q=A.cR(null,t.H) +s=1 +break $async$outer}case 1:return A.w(q,r)}}) +return A.x($async$aCy,r)}, +aCx(a){a.ga7().Ca(B.ajK) +switch(A.B(a).r.a){case 0:case 1:return A.aFD() +case 2:case 3:case 4:case 5:return A.cR(null,t.H)}}, +bKH(){switch(A.c3().a){case 0:case 1:case 3:case 5:return!1 +case 2:case 4:return!0}}, +bX1(a,b,c,d,e){var s,r,q=d.b,p=q+e,o=a.b,n=c.b-10,m=p+o<=n +o=q-e-o +s=(o>=10===m?b:m)?Math.min(p,n):Math.max(o,10) +q=a.a +r=c.a-q +return new A.m(r<=20?r/2:A.V(d.a-q/2,10,r-10),s)}, +aK5(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.m(s[12],s[13]) +return null}, +bl1(a,b){var s,r,q +if(a==b)return!0 +if(a==null){b.toString +return A.a5T(b)}if(b==null)return A.a5T(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]}, +a5T(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}, +cL(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.m(p,o) +else return new A.m(p/n,o/n)}, +aK3(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=$.biz() +s[2]=q +s[0]=q +s[3]=p +s[1]=p}else{s=$.biz() +if(qs[2])s[2]=q +if(p>s[3])s[3]=p}}, +jj(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.aK3(a4,a5,a6,!0,s) +A.aK3(a4,a7,a6,!1,s) +A.aK3(a4,a5,a9,!1,s) +A.aK3(a4,a7,a9,!1,s) +a7=$.biz() +return new A.L(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.L(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.L(A.bsM(f,d,a0,a2),A.bsM(e,b,a1,a3),A.bsL(f,d,a0,a2),A.bsL(e,b,a1,a3))}}, +bsM(a,b,c,d){var s=ab?a:b,r=c>d?c:d +return s>r?s:r}, +bsN(a,b){var s +if(A.a5T(a))return b +s=new A.bQ(new Float64Array(16)) +s.c6(a) +s.j6(s) +return A.jj(s,b)}, +aK4(a){var s,r=new A.bQ(new Float64Array(16)) +r.fQ() +s=new A.nO(new Float64Array(4)) +s.Ht(0,0,0,a.a) +r.Oo(0,s) +s=new A.nO(new Float64Array(4)) +s.Ht(0,0,0,a.b) +r.Oo(1,s) +return r}, +WU(a,b,c){if(a==null||!1)return a===b +return a>b-c&&a60&&b/a>0.15}, +bUi(a,b){if(A.j2(a))if(A.j2(b))if(a>b)return 1 +else if(a>>0 +q=(a0[4]|a0[5]<<8|a0[6]<<16|a0[7]<<24)>>>0 +p=(a0[8]|a0[9]<<8|a0[10]<<16|a0[11]<<24)>>>0 +o=(a0[12]|a0[13]<<8|a0[14]<<16|a0[15]<<24)>>>0 +n=(a0[16]|a0[17]<<8|a0[18]<<16|a0[19]<<24)>>>0 +m=(a0[20]|a0[21]<<8|a0[22]<<16|a0[23]<<24)>>>0 +l=(a0[24]|a0[25]<<8|a0[26]<<16|a0[27]<<24)>>>0 +k=(a0[28]|a0[29]<<8|a0[30]<<16|a0[31]<<24)>>>0 +j=a[0] +j[0]=r +j[1]=q +j[2]=p +j[3]=o +j=a[1] +j[0]=n +j[1]=m +j[2]=l +j[3]=k +for(i=1,h=2;h<14;h+=2,i=g){j=k>>>8|(k&255)<<24 +g=i<<1 +r=(r^(B.aA[j&255]|B.aA[j>>>8&255]<<8|B.aA[j>>>16&255]<<16|B.aA[j>>>24&255]<<24)^i)>>>0 +j=a[h] +j[0]=r +q=(q^r)>>>0 +j[1]=q +p=(p^q)>>>0 +j[2]=p +o=(o^p)>>>0 +j[3]=o +n=(n^(B.aA[o&255]|B.aA[o>>>8&255]<<8|B.aA[o>>>16&255]<<16|B.aA[o>>>24&255]<<24))>>>0 +j=a[h+1] +j[0]=n +m=(m^n)>>>0 +j[1]=m +l=(l^m)>>>0 +j[2]=l +k=(k^l)>>>0 +j[3]=k}n=k>>>8|(k&255)<<24 +r=(r^(B.aA[n&255]|B.aA[n>>>8&255]<<8|B.aA[n>>>16&255]<<16|B.aA[n>>>24&255]<<24)^i)>>>0 +n=a[14] +n[0]=r +q=(q^r)>>>0 +n[1]=q +p=(p^q)>>>0 +n[2]=p +n[3]=(o^p)>>>0 +if(!a1)for(f=1;f<14;++f)for(h=0;h<4;++h){q=a[f] +p=q[h] +e=(p&2139062143)<<1^(p>>>7&16843009)*27 +d=(e&2139062143)<<1^(e>>>7&16843009)*27 +c=(d&2139062143)<<1^(d>>>7&16843009)*27 +b=p^c +p=e^b +o=d^b +q[h]=(e^d^c^(p>>>8|(p&255)<<24)^(o>>>16|(o&65535)<<16)^(b>>>24|b<<8))>>>0}return a}, +bZ5(a,b,c,d,e){var s,r,q,p,o,n,m,l,k=b[c],j=b[c+1],i=b[c+2],h=b[c+3],g=a[0],f=(k|j<<8|i<<16|h<<24)^g[0] +h=c+4 +s=(b[h]|b[h+1]<<8|b[h+2]<<16|b[h+3]<<24)^g[1] +h=c+8 +r=(b[h]|b[h+1]<<8|b[h+2]<<16|b[h+3]<<24)^g[2] +h=c+12 +q=(b[h]|b[h+1]<<8|b[h+2]<<16|b[h+3]<<24)^g[3] +for(p=1;p<13;){k=B.cp[f&255] +j=B.cn[s>>>8&255] +i=B.cq[r>>>16&255] +h=B.cr[q>>>24&255] +g=a[p] +o=k^j^i^h^g[0] +n=B.cp[s&255]^B.cn[r>>>8&255]^B.cq[q>>>16&255]^B.cr[f>>>24&255]^g[1] +m=B.cp[r&255]^B.cn[q>>>8&255]^B.cq[f>>>16&255]^B.cr[s>>>24&255]^g[2] +l=B.cp[q&255]^B.cn[f>>>8&255]^B.cq[s>>>16&255]^B.cr[r>>>24&255]^g[3];++p +g=B.cp[o&255] +h=B.cn[n>>>8&255] +i=B.cq[m>>>16&255] +j=B.cr[l>>>24&255] +k=a[p] +f=g^h^i^j^k[0] +s=B.cp[n&255]^B.cn[m>>>8&255]^B.cq[l>>>16&255]^B.cr[o>>>24&255]^k[1] +r=B.cp[m&255]^B.cn[l>>>8&255]^B.cq[o>>>16&255]^B.cr[n>>>24&255]^k[2] +q=B.cp[l&255]^B.cn[o>>>8&255]^B.cq[n>>>16&255]^B.cr[m>>>24&255]^k[3];++p}k=B.cp[f&255] +j=B.cn[s>>>8&255] +i=B.cq[r>>>16&255] +h=B.cr[q>>>24&255] +g=a[p] +o=k^j^i^h^g[0] +n=B.cp[s&255]^B.cn[r>>>8&255]^B.cq[q>>>16&255]^B.cr[f>>>24&255]^g[1] +m=B.cp[r&255]^B.cn[q>>>8&255]^B.cq[f>>>16&255]^B.cr[s>>>24&255]^g[2] +l=B.cp[q&255]^B.cn[f>>>8&255]^B.cq[s>>>16&255]^B.cr[r>>>24&255]^g[3] +g=B.aA[o&255] +h=B.aA[n>>>8&255] +i=B.aA[m>>>16&255] +j=B.aA[l>>>24&255] +k=a[p+1] +f=(g&255^h<<8^i<<16^j<<24^k[0])>>>0 +s=(B.aA[n&255]&255^B.aA[m>>>8&255]<<8^B.aA[l>>>16&255]<<16^B.aA[o>>>24&255]<<24^k[1])>>>0 +r=(B.aA[m&255]&255^B.aA[l>>>8&255]<<8^B.aA[o>>>16&255]<<16^B.aA[n>>>24&255]<<24^k[2])>>>0 +q=(B.aA[l&255]&255^B.aA[o>>>8&255]<<8^B.aA[n>>>16&255]<<16^B.aA[m>>>24&255]<<24^k[3])>>>0 +d[e]=f +d[e+1]=f>>>8 +d[e+2]=f>>>16 +d[e+3]=f>>>24 +k=e+4 +d[k]=s +d[k+1]=s>>>8 +d[k+2]=s>>>16 +d[k+3]=s>>>24 +k=e+8 +d[k]=r +d[k+1]=r>>>8 +d[k+2]=r>>>16 +d[k+3]=r>>>24 +k=e+12 +d[k]=q +d[k+1]=q>>>8 +d[k+2]=q>>>16 +d[k+3]=q>>>24}, +bZ4(a,b,c,d,e){var s,r,q,p,o,n,m,l,k=b[c],j=b[c+1],i=b[c+2],h=b[c+3],g=a[14],f=(k|j<<8|i<<16|h<<24)^g[0] +h=c+4 +s=(b[h]|b[h+1]<<8|b[h+2]<<16|b[h+3]<<24)^g[1] +h=c+8 +r=(b[h]|b[h+1]<<8|b[h+2]<<16|b[h+3]<<24)^g[2] +h=c+12 +q=(b[h]|b[h+1]<<8|b[h+2]<<16|b[h+3]<<24)^g[3] +for(p=13;p>1;){k=B.cs[f&255] +j=B.ct[q>>>8&255] +i=B.cm[r>>>16&255] +h=B.co[s>>>24&255] +g=a[p] +o=k^j^i^h^g[0] +n=B.cs[s&255]^B.ct[f>>>8&255]^B.cm[q>>>16&255]^B.co[r>>>24&255]^g[1] +m=B.cs[r&255]^B.ct[s>>>8&255]^B.cm[f>>>16&255]^B.co[q>>>24&255]^g[2] +l=B.cs[q&255]^B.ct[r>>>8&255]^B.cm[s>>>16&255]^B.co[f>>>24&255]^g[3];--p +g=B.cs[o&255] +h=B.ct[l>>>8&255] +i=B.cm[m>>>16&255] +j=B.co[n>>>24&255] +k=a[p] +f=g^h^i^j^k[0] +s=B.cs[n&255]^B.ct[o>>>8&255]^B.cm[l>>>16&255]^B.co[m>>>24&255]^k[1] +r=B.cs[m&255]^B.ct[n>>>8&255]^B.cm[o>>>16&255]^B.co[l>>>24&255]^k[2] +q=B.cs[l&255]^B.ct[m>>>8&255]^B.cm[n>>>16&255]^B.co[o>>>24&255]^k[3];--p}k=B.cs[f&255] +j=B.ct[q>>>8&255] +i=B.cm[r>>>16&255] +h=B.co[s>>>24&255] +g=a[p] +o=k^j^i^h^g[0] +n=B.cs[s&255]^B.ct[f>>>8&255]^B.cm[q>>>16&255]^B.co[r>>>24&255]^g[1] +m=B.cs[r&255]^B.ct[s>>>8&255]^B.cm[f>>>16&255]^B.co[q>>>24&255]^g[2] +l=B.cs[q&255]^B.ct[r>>>8&255]^B.cm[s>>>16&255]^B.co[f>>>24&255]^g[3] +g=B.bF[o&255] +h=B.bF[l>>>8&255] +i=B.bF[m>>>16&255] +j=B.bF[n>>>24&255] +k=a[0] +f=(g^h<<8^i<<16^j<<24^k[0])>>>0 +s=(B.bF[n&255]&255^B.bF[o>>>8&255]<<8^B.bF[l>>>16&255]<<16^B.bF[m>>>24&255]<<24^k[1])>>>0 +r=(B.bF[m&255]&255^B.bF[n>>>8&255]<<8^B.bF[o>>>16&255]<<16^B.bF[l>>>24&255]<<24^k[2])>>>0 +q=(B.bF[l&255]&255^B.bF[m>>>8&255]<<8^B.bF[n>>>16&255]<<16^B.bF[o>>>24&255]<<24^k[3])>>>0 +d[e]=f +d[e+1]=f>>>8 +d[e+2]=f>>>16 +d[e+3]=f>>>24 +k=e+4 +d[k]=s +d[k+1]=s>>>8 +d[k+2]=s>>>16 +d[k+3]=s>>>24 +k=e+8 +d[k]=r +d[k+1]=r>>>8 +d[k+2]=r>>>16 +d[k+3]=r>>>24 +k=e+12 +d[k]=q +d[k+1]=q>>>8 +d[k+2]=q>>>16 +d[k+3]=q>>>24}, +bLj(a,b){var s,r=new Uint8Array(b) +for(s=0;s=65&&a<=90))s=a>=97&&a<=122 +else s=!0 +return s}, +byW(a,b){var s=a.length,r=b+2 +if(s")),q=q.h("av.E");r.v();){p=r.d +if(!J.j(p==null?q.a(p):p,s))return!1}return!0}, +bXn(a,b){var s=B.b.eZ(a,null) +if(s<0)throw A.c(A.bZ(A.i(a)+" contains no null elements.",null)) +a[s]=b}, +bzw(a,b){var s=B.b.eZ(a,b) +if(s<0)throw A.c(A.bZ(A.i(a)+" contains no elements matching "+b.l(0)+".",null)) +a[s]=null}, +bU0(a,b){var s,r,q,p +for(s=new A.i2(a),r=t.Hz,s=new A.c2(s,s.gt(s),r.h("c2")),r=r.h("ae.E"),q=0;s.v();){p=s.d +if((p==null?r.a(p):p)===b)++q}return q}, +bh_(a,b,c){var s,r,q +if(b.length===0)for(s=0;!0;){r=B.c.h3(a,"\n",s) +if(r===-1)return a.length-s>=c?s:null +if(r-s>=c)return s +s=r+1}r=B.c.eZ(a,b) +for(;r!==-1;){q=r===0?0:B.c.B_(a,"\n",r-1)+1 +if(c===r-q)return q +r=B.c.h3(a,b,r+1)}return null}, +are(){var s=0,r=A.y(t.H),q,p,o,n,m,l,k,j,i +var $async$are=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:if($.ap==null)A.bm3() +$.ap.toString +s=2 +return A.t(A.aMK(),$async$are) +case 2:q=b +s=3 +return A.t(A.aUH(),$async$are) +case 3:p=b +A.aYG(B.aeJ) +$.brV=!0 +o=$.arL() +n=A.blZ(q,o.$ti.h("e8.0")) +m=$.bj3() +l=A.blZ(p,m.$ti.h("e8.0")) +k=$.boM() +k=A.a([new A.E3(o,n),new A.E3(m,l),new A.E3(k,A.blZ(null,k.$ti.h("e8.0")))],t.AT) +if($.ap==null)A.bm3() +o=$.ap +o.toString +n=$.bO().e +m=n.i(0,0) +m.toString +l=o.gN9() +j=o.fx$ +if(j===$){n=n.i(0,0) +n.toString +i=new A.alU(B.y,n,null,A.ay(t.T)) +i.b4() +i.sbN(null) +o.fx$!==$&&A.aq() +o.fx$=i +j=i}o.afX(new A.abI(m,new A.N8(B.arp,k,null),l,j,null)) +o.YE() +return A.w(null,r)}}) +return A.x($async$are,r)}, +aBr(a,b,c,d){var s=c==null?"http://127.0.0.1":c,r=d!=null&&a?":"+A.i(d):"",q=b?"/api/v1":"" +return s+r+q}, +byO(a){var s,r=a.t5("-").toLowerCase(),q=$.lR() +if(q.i(0,r)!=null){q=q.i(0,r) +s=q.ghb(q)}else if(q.i(0,a.ge0(a).toLowerCase())!=null){q=q.i(0,a.ge0(a).toLowerCase()) +s=q.ghb(q)}else s=null +return s==null?a.t5("-"):s}, +bVm(a){var s,r=a.t5("-").toLowerCase(),q=$.lR() +if(q.i(0,r)!=null)s=q.i(0,r).b +else s=q.i(0,a.ge0(a).toLowerCase())!=null?q.i(0,a.ge0(a).toLowerCase()).b:null +return s==null?a.t5("-"):s}, +bg5(a){return A.bT5(a)}, +bT5(a){var s=0,r=A.y(t.ly),q,p,o +var $async$bg5=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:o=new A.i0(new A.aD(new A.a7($.ac,t.Ic),t.L4)) +a.jX(o.gdJ(o)) +s=3 +return A.t(a.N($.arE(),t.JC).H1(o),$async$bg5) +case 3:p=c +a.ii() +q=p +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$bg5,r)}, +bWE(a){return A.r(A.d1(null))}, +IQ(a,b,c){var s=0,r=A.y(t.lC),q,p,o,n,m,l +var $async$IQ=A.u(function(d,e){if(d===1)return A.v(e,r) +while(true)switch(s){case 0:n=b.ae(0,$.w5(),t.Wr) +m=t.v +l=b.ae(0,$.HY(),m) +m=b.ae(0,$.I_(),m) +p=b.ae(0,$.AO(),t.bo) +o=b.ae(0,$.HZ(),t.u) +m=A.aBr(o===!0,!0,m,p) +if(n===B.iS&&l!=null){p=t.N +p=A.am(["Authorization",l],p,p)}else p=null +s=3 +return A.t(a.C1(m+c,p),$async$IQ) +case 3:q=e +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$IQ,r)}, +bsq(a){var s +if(a!=null){s=$.lR().i(0,a.toLowerCase()) +if(s==null)s=new A.FX(a.toLowerCase(),null,null)}else s=null +return s}, +od(a,b,c){var s=0,r=A.y(t.H) +var $async$od=A.u(function(d,e){if(d===1)return A.v(e,r) +while(true)switch(s){case 0:s=4 +return A.t(A.bnA(A.dR(b,0,null),B.a8g,"_blank"),$async$od) +case 4:s=!e?2:3 +break +case 2:s=5 +return A.t(A.BF(new A.tp(b)),$async$od) +case 5:if(a.e!=null)if(c!=null)c.Hx(A.A(a,B.h,t.J).mR(b)) +case 3:return A.w(null,r)}}) +return A.x($async$od,r)}, +B0(a,b){if(a!=null)return a.$1(b) +return b}, +bGS(a){var s,r,q +switch(a.c.a){case 5:s="Request cancelled" +break +case 0:s="Connection timeout" +break +case 7:s="Check your Internet Connection" +break +case 2:s="Receive timeout" +break +case 4:s=a.b +r=s==null +if((r?null:s.c)!=null)s="Received invalid status code: "+A.i(r?null:s.c) +else s="Something went wrong!" +break +case 1:s="Send timeout" +break +case 3:s="Check your Internet Connection (Incorrect certificate )" +break +case 6:s="Check your Internet Connection (Check server IP in settings)" +break +default:s=null}q=s +return q}, +bTV(a){switch(a.a){case 0:return B.oI +case 2:return B.Nj +case 1:return B.Ni +case 3:return B.ape +case 4:return B.Nk}}, +bnA(a,b,c){var s=0,r=A.y(t.y),q,p +var $async$bnA=A.u(function(d,e){if(d===1)return A.v(e,r) +while(true)switch(s){case 0:if(b===B.a8e||b===B.a8f)p=!(a.gfk()==="https"||a.gfk()==="http") +else p=!1 +if(p)throw A.c(A.fh(a,"url","To use an in-app web view, you must provide an http(s) URL.")) +q=$.bBI().FB(a.l(0),new A.a3p(A.bTV(b),new A.a2X(!0,!0,B.fD),c)) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$bnA,r)}, +bNV(a){var s,r,q,p,o,n,m,l,k,j=null,i=A.bv3(j,a,!1,B.azm) +if(!i){s=A.bv3(j,a,!1,B.azl) +if(s)A.r(A.cn("The provided UUID is not RFC4122 compliant. It seems you might be using a Microsoft GUID. Try setting `validationMode = ValidationMode.nonStrict`",a,j)) +A.r(A.cn("The provided UUID is invalid.",a,j))}r=new Uint8Array(16) +for(q=A.bE("[0-9a-f]{2}",!0,!1,!1).t9(0,a.toLowerCase()),q=new A.ru(q.a,q.b,q.c),p=t.Qz,o=0;q.v();){n=q.d +if(n==null)n=p.a(n) +if(o<16){m=n.b +l=m.index +k=o+1 +r[o]=A.eq(B.c.S(a.toLowerCase(),l,l+m[0].length),j,16) +o=k}}for(;o<16;o=k){k=o+1 +r[o]=0}return r}, +blX(a){var s=a.length +if(s-0<16)throw A.c(A.cb("buffer too small: need 16: length="+s)) +s=$.bBL() +return s[a[0]]+s[a[1]]+s[a[2]]+s[a[3]]+"-"+s[a[4]]+s[a[5]]+"-"+s[a[6]]+s[a[7]]+"-"+s[a[8]]+s[a[9]]+"-"+s[a[10]]+s[a[11]]+s[a[12]]+s[a[13]]+s[a[14]]+s[a[15]]}, +bv3(a,b,c,d){var s +if(b==="00000000-0000-0000-0000-000000000000")return!0 +if(b.length!==36)return!1 +switch(d.a){case 1:s=A.bE("^[0-9a-f]{8}-[0-9a-f]{4}-[0-8][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$",!1,!0,!1) +return s.b.test(b.toLowerCase()) +case 0:s=A.bE("^[0-9a-f]{8}-[0-9a-f]{4}-[0-8][0-9a-f]{3}-[0-9a-f]{4}-[0-9a-f]{12}$",!1,!0,!1) +return s.b.test(b.toLowerCase()) +default:throw A.c(A.d8("`"+d.l(0)+"` is an invalid ValidationMode."))}}},B={} +var w=[A,J,B] +var $={} +A.I4.prototype={ +sUy(a){var s,r,q,p=this +if(J.j(a,p.c))return +if(a==null){p.PC() +p.c=null +return}s=p.a.$0() +r=a.a +q=s.a +if(rr){p.PC() +p.b=A.d0(A.dW(0,r-q,0),p.gST())}p.c=a}, +PC(){var s=this.b +if(s!=null)s.aI(0) +this.b=null}, +aDl(){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.d0(A.dW(0,q-p,0),s.gST())}} +A.asu.prototype={ +zJ(){var s=0,r=A.y(t.H),q=this,p +var $async$zJ=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:s=2 +return A.t(q.a.$0(),$async$zJ) +case 2:p=q.b.$0() +s=3 +return A.t(t.L0.b(p)?p:A.kU(p,t.z),$async$zJ) +case 3:return A.w(null,r)}}) +return A.x($async$zJ,r)}, +aO9(){return A.bIj(new A.asw(this),new A.asx(this))}, +azM(){return A.bIi(new A.asv(this))}} +A.asw.prototype={ +$0(){var s=0,r=A.y(t.e),q,p=this +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:s=3 +return A.t(p.a.zJ(),$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:935} +A.asx.prototype={ +$1(a){return this.aer(a)}, +$0(){return this.$1(null)}, +aer(a){var s=0,r=A.y(t.e),q,p=this,o +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:o=p.a +s=3 +return A.t(o.a.$1(a),$async$$1) +case 3:q=o.azM() +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$$1,r)}, +$S:327} +A.asv.prototype={ +$1(a){return this.aeq(a)}, +$0(){return this.$1(null)}, +aeq(a){var s=0,r=A.y(t.e),q,p=this,o +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:o=p.a.b.$0() +s=3 +return A.t(t.L0.b(o)?o:A.kU(o,t.z),$async$$1) +case 3:q=t.e.a({}) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$$1,r)}, +$S:327} +A.IL.prototype={ +J(){return"BrowserEngine."+this.b}} +A.qP.prototype={ +J(){return"OperatingSystem."+this.b}} +A.avL.prototype={ +gc9(a){var s=this.d +if(s==null){this.a0I() +s=this.d}s.toString +return s}, +gew(){if(this.y==null)this.a0I() +var s=this.e +s.toString +return s}, +a0I(){var s,r,q,p,o,n,m,l,k=this,j=!1,i=null,h=k.y +if(h!=null){A.C2(h,0) +h=k.y +h.toString +A.C1(h,0) +k.y=null}h=k.x +if(h!=null&&h.length!==0){h.toString +s=B.b.k0(h,0) +k.y=s +i=s +j=!0 +r=!0}else{h=k.f +$.dn() +q=self.window.devicePixelRatio +if(q===0)q=1 +p=k.r +o=self.window.devicePixelRatio +if(o===0)o=1 +i=k.a_A(h,p) +n=i +k.y=n +if(n==null){A.bzu() +i=k.a_A(h,p)}n=i.style +A.Q(n,"position","absolute") +A.Q(n,"width",A.i(h/q)+"px") +A.Q(n,"height",A.i(p/o)+"px") +r=!1}if(!J.j(k.z.lastChild,i))k.z.append(i) +try{if(j)i.style.removeProperty("z-index") +h=A.qd(i,"2d",null) +h.toString +k.d=t.e.a(h)}catch(m){}h=k.d +if(h==null){A.bzu() +h=A.qd(i,"2d",null) +h.toString +h=k.d=t.e.a(h)}q=k.as +k.e=new A.axE(h,k,q,B.dz,B.e9,B.lz) +l=k.gc9(k) +l.save();++k.Q +A.bqP(l,1,0,0,1,0,0) +if(r)l.clearRect(0,0,k.f*q,k.r*q) +$.dn() +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.aAq()}, +a_A(a,b){var s=this.as +return A.bYO(B.e.eV(a*s),B.e.eV(b*s))}, +ab(a){var s,r,q,p,o,n=this +n.akR(0) +if(n.y!=null){s=n.d +if(s!=null)try{s.font=""}catch(q){r=A.ak(q) +if(!J.j(r.name,"NS_ERROR_FAILURE"))throw q}}if(n.y!=null){n.St() +n.e.iN(0) +p=n.w +if(p==null)p=n.w=A.a([],t.A) +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}, +a4m(a,b,c,d){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.gc9(i) +if(d!=null)for(s=d.length,r=i.as,q=t.Ci;a>>16&255,p>>>8&255,p&255).a)) +s.translate(-5e4,0) +l=new Float32Array(2) +$.eA() +p=$.dn().d +if(p==null){p=self.window.devicePixelRatio +if(p===0)p=1}l[0]=5e4*p +p=i.b +p.c.ae0(l) +k=l[0] +j=l[1] +l[1]=0 +l[0]=0 +p.c.ae0(l) +A.bk8(s,k-l[0]) +A.bk9(s,j-l[1])}}, +u4(){var s=this,r=s.z +if((r==null?null:r.x)!=null){r=$.dD() +r=r===B.al||!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}}, +kC(a){var s=this.a +if(a===B.ai)s.stroke() +else A.azo(s,null)}, +iN(a){var s,r=this,q=r.a +A.azp(q,"") +s=q.fillStyle +r.r=s==null?null:s +A.azq(q,"") +s=q.strokeStyle +r.w=s==null?null:s +q.shadowBlur=0 +A.bk7(q,"none") +A.bk8(q,0) +A.bk9(q,0) +q.globalCompositeOperation="source-over" +r.d=B.dz +A.bqQ(q,1) +r.x=1 +q.lineCap="butt" +r.e=B.e9 +q.lineJoin="miter" +r.f=B.lz +r.Q=null}} +A.am9.prototype={ +ab(a){B.b.ab(this.a) +this.b=null +this.c=A.fL()}, +eo(a){var s=this.c,r=new A.dp(new Float32Array(16)) +r.c6(s) +s=this.b +s=s==null?null:A.hl(s,!0,t.Sv) +this.a.push(new A.a8N(r,s))}, +dg(a){var s,r=this.a +if(r.length===0)return +s=r.pop() +this.c=s.a +this.b=s.b}, +bi(a,b,c){this.c.bi(0,b,c)}, +iT(a,b,c){this.c.iT(0,b,c)}, +u3(a,b){this.c.ady(0,B.Ns,b)}, +a5(a,b){this.c.eN(0,new A.dp(b))}, +uV(a){var s,r,q=this.b +if(q==null)q=this.b=A.a([],t.CK) +s=this.c +r=new A.dp(new Float32Array(16)) +r.c6(s) +q.push(new A.z9(a,null,null,r))}, +wV(a){var s,r,q=this.b +if(q==null)q=this.b=A.a([],t.CK) +s=this.c +r=new A.dp(new Float32Array(16)) +r.c6(s) +q.push(new A.z9(null,a,null,r))}, +oT(a,b){var s,r,q=this.b +if(q==null)q=this.b=A.a([],t.CK) +s=this.c +r=new A.dp(new Float32Array(16)) +r.c6(s) +q.push(new A.z9(null,null,b,r))}} +A.l7.prototype={ +tv(a,b,c,d){var s,r,q,p,o=d.ay,n=this.a,m=a.b +if(o===B.nk){m===$&&A.b() +m=m.a +m===$&&A.b() +m=m.a +m.toString +A.cj(n,"drawImageRectCubic",[m,A.is(b),A.is(c),0.3333333333333333,0.3333333333333333,d.a])}else{m===$&&A.b() +m=m.a +m===$&&A.b() +m=m.a +m.toString +s=A.is(b) +r=A.is(c) +q=A.bYG(o) +p=o===B.vy?$.d2.cB().MipmapMode.Linear:$.d2.cB().MipmapMode.None +A.cj(n,"drawImageRectOptions",[m,s,r,q,p,d.a])}}, +kb(a,b){var s=b==null?null:b.a +A.blz(this.a,s,A.is(a),null,null)}, +Oe(a,b,c){t.p1.a(b) +b.VL(new A.awV(this,c,a))}} +A.awV.prototype={ +$1(a){A.blz(this.a.a,this.b.a,A.is(this.c),a,0)}, +$S:3} +A.beR.prototype={ +$1(a){var s=$.ed +s=(s==null?$.ed=A.jP(self.window.flutterConfiguration):s).b +if(s==null)s=null +else{s=s.canvasKitBaseUrl +if(s==null)s=null}return(s==null?"https://www.gstatic.com/flutter-canvaskit/4a585b79294e830fa89c24924d58a27cc8fbf406/":s)+a}, +$S:18} +A.bf9.prototype={ +$1(a){this.a.remove() +this.b.cU(0,!0)}, +$S:3} +A.bf8.prototype={ +$1(a){this.a.remove() +this.b.cU(0,!1)}, +$S:3} +A.avH.prototype={ +eo(a){B.e.au(this.a.a.save())}, +kb(a,b){var s=t.qo,r=this.a +if(a==null){s.a(b) +A.blz(r.a,b.a,null,null,null)}else r.kb(a,s.a(b))}, +dg(a){this.a.a.restore()}, +bi(a,b,c){this.a.a.translate(b,c)}, +iT(a,b,c){var s=c==null?b:c +this.a.a.scale(b,s) +return null}, +u3(a,b){this.a.a.rotate(b*180/3.141592653589793,0,0)}, +a5(a,b){this.a.a.concat(A.bzD(A.X_(b)))}, +E9(a,b,c){this.a.a.clipRect(A.is(a),$.boF()[b.a],c)}, +uV(a){return this.E9(a,B.f7,!0)}, +a8n(a,b){return this.E9(a,B.f7,b)}, +KN(a,b){this.a.a.clipRRect(A.X0(a),$.arw(),b)}, +wV(a){return this.KN(a,!0)}, +KM(a,b,c){var s=t.E_.a(b).a +s===$&&A.b() +s=s.a +s.toString +this.a.a.clipPath(s,$.arw(),c)}, +oT(a,b){return this.KM(a,b,!0)}, +j8(a,b,c){A.cj(this.a.a,"drawLine",[a.a,a.b,b.a,b.b,t.qo.a(c).a])}, +Ap(a){this.a.a.drawPaint(t.qo.a(a).a)}, +ey(a,b){t.qo.a(b) +this.a.a.drawRect(A.is(a),b.a)}, +d5(a,b){t.qo.a(b) +this.a.a.drawRRect(A.X0(a),b.a)}, +An(a,b,c){t.qo.a(c) +this.a.a.drawDRRect(A.X0(a),A.X0(b),c.a)}, +Ao(a,b){t.qo.a(b) +this.a.a.drawOval(A.is(a),b.a)}, +fZ(a,b,c){this.a.a.drawCircle(a.a,a.b,b,t.qo.a(c).a)}, +UV(a,b,c,d,e){t.qo.a(e) +A.cj(this.a.a,"drawArc",[A.is(a),b*57.29577951308232,c*57.29577951308232,!1,e.a])}, +e3(a,b){var s +t.E_.a(a) +t.qo.a(b) +s=a.a +s===$&&A.b() +s=s.a +s.toString +this.a.a.drawPath(s,b.a)}, +tv(a,b,c,d){this.a.tv(t.XY.a(a),b,c,t.qo.a(d))}, +v6(a,b){var s=t.tG.a(a).a +s===$&&A.b() +s=s.a +s.toString +this.a.a.drawParagraph(s,b.a,b.b)}, +xc(a,b,c,d){var s,r,q,p,o,n,m,l +t.E_.a(a) +$.eA() +s=$.dn().d +if(s==null){s=self.window.devicePixelRatio +if(s===0)s=1}r=d?5:4 +q=A.K(B.e.bg((b.gj(b)>>>24&255)*0.039),b.gj(b)>>>16&255,b.gj(b)>>>8&255,b.gj(b)&255) +p=A.K(B.e.bg((b.gj(b)>>>24&255)*0.25),b.gj(b)>>>16&255,b.gj(b)>>>8&255,b.gj(b)&255) +o=t.e.a({ambient:A.HS(q),spot:A.HS(p)}) +n=$.d2.cB().computeTonalColors(o) +m=a.a +m===$&&A.b() +m=m.a +m.toString +l=new Float32Array(3) +l[2]=s*c +s=new Float32Array(3) +s[0]=0 +s[1]=-1 +s[2]=1 +A.cj(this.a.a,"drawShadow",[m,l,s,1.3333333333333333,n.ambient,n.spot,r|4])}} +A.a3L.prototype={ +gu(a){var s=this.a +return s.gu(s)}, +k(a,b){if(b==null)return!1 +if(A.p(this)!==J.a_(b))return!1 +return b instanceof A.a3L&&b.a.k(0,this.a)}, +l(a){return this.a.l(0)}} +A.Z4.prototype={$iq9:1} +A.J3.prototype={ +Rp(){return A.bUa(this.a,this.b)}, +gu(a){return A.X(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(A.p(this)!==J.a_(b))return!1 +return b instanceof A.J3&&b.a.k(0,this.a)&&b.b===this.b}, +l(a){return"ColorFilter.mode("+this.a.l(0)+", "+this.b.l(0)+")"}} +A.J5.prototype={ +gaxE(){var s,r,q=new Float32Array(20) +for(s=this.a,r=0;r<20;++r)if(B.b.p(B.a9L,r))q[r]=s[r]/255 +else q[r]=s[r] +return q}, +Rp(){return $.d2.cB().ColorFilter.MakeMatrix(this.gaxE())}, +gu(a){return A.dj(this.a)}, +k(a,b){if(b==null)return!1 +return A.p(this)===J.a_(b)&&b instanceof A.J5&&A.vZ(this.a,b.a)}, +l(a){return"ColorFilter.matrix("+A.i(this.a)+")"}} +A.Bu.prototype={ +Rp(){var s,r=$.d2.cB().ColorFilter,q=this.a.b +q===$&&A.b() +q=q.a +q.toString +s=this.b.b +s===$&&A.b() +s=s.a +s.toString +return r.MakeCompose(q,s)}, +k(a,b){if(b==null)return!1 +if(!(b instanceof A.Bu))return!1 +return b.a.k(0,this.a)&&b.b.k(0,this.b)}, +gu(a){return A.X(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)}, +l(a){return"ColorFilter.compose("+this.a.l(0)+", "+this.b.l(0)+")"}} +A.a2I.prototype={ +afA(){var s=this.b.a +return new A.ad(s,new A.aGu(),A.ab(s).h("ad<1,l7>"))}, +ap3(a){var s,r,q,p,o,n,m=this.Q +if(m.aq(0,a)){s=null.querySelector("#sk_path_defs") +s.toString +r=A.a([],t.A) +q=m.i(0,a) +q.toString +for(p=t.qr,p=A.dF(new A.hX(s.children,p),p.h("z.E"),t.e),s=J.al(p.a),p=A.l(p),p=p.h("@<1>").V(p.z[1]).z[1];s.v();){o=p.a(s.gG(s)) +if(q.p(0,o.id))r.push(o)}for(s=r.length,n=0;n") +a2.a9H(A.iJ(new A.ba(m,new A.aGv(a4),k),k.h("z.E"))) +B.b.I(a3,s) +h.ad4(s) +a3=a4.c +if(a3){m=a4.d +m.toString +m=a2.d.i(0,m) +g=m.gy3(m)}else g=null +for(m=a4.b,k=m.length,f=a2.d,e=$.fZ.a,j=0;j") +q=A.a8(new A.ad(s,new A.aGr(),r),!0,r.h("av.E")) +if(q.length>A.pg().b-1)B.b.h5(q) +r=m.gavS() +p=m.e +if(l){l=A.pg() +o=l.d +B.b.I(l.e,o) +B.b.ab(o) +p.ab(0) +B.b.al(q,r)}else{l=A.l(p).h("cl<1>") +n=A.a8(new A.cl(p,l),!0,l.h("z.E")) +new A.ba(n,new A.aGs(q),A.ab(n).h("ba<1>")).al(0,m.gaAb()) +new A.ba(q,new A.aGt(m),A.ab(q).h("ba<1>")).al(0,r)}}, +afB(a){var s,r,q,p,o,n,m,l,k=A.pg().b-1 +if(k===0)return B.afd +s=A.a([],t.jT) +r=t.t +q=new A.un(A.a([],r),!1) +for(p=0;p") +s=new A.da(s,r) +return new A.c2(s,s.gt(s),r.h("c2"))}} +A.a1k.prototype={} +A.pn.prototype={} +A.bgy.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.j(r[p],s[s.length-1-q]))return o +if(q===s.length-1){s=r.length +if(a===s-1)return new A.pn(B.b.cT(r,0,s-q-1),B.hL,!1,o) +else if(a===q)return new A.pn(B.b.fH(r,a+1),B.hL,!1,o) +else return o}}return new A.pn(B.b.fH(r,a+1),B.b.cT(s,0,s.length-1-a),!0,B.b.gO(r))}, +$S:325} +A.a9x.prototype={ +gVn(){var s,r=this.b +if(r===$){s=$.ed +s=(s==null?$.ed=A.jP(self.window.flutterConfiguration):s).b +if(s==null)s=null +else{s=s.useColorEmoji +if(s==null)s=null}s=s===!0 +r=this.b=A.bIq(new A.aVe(this),A.a([A.an("Noto Sans","notosans/v30/o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A.ttf",!0),A.an("Noto Color Emoji","notocoloremoji/v25/Yq6P-KqIXTD0t4D9z1ESnKM3-HpFab5s79iz64w.ttf",s),A.an("Noto Emoji","notoemoji/v39/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-r0jwvS-FGJCMY.ttf",!s),A.an("Noto Sans Symbols","notosanssymbols/v40/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ8gavVFRkzrbQ.ttf",!0),A.an("Noto Sans Symbols 2","notosanssymbols2/v21/I_uyMoGduATTei9eI8daxVHDyfisHr71ypPqfX71-AI.ttf",!0),A.an("Noto Sans Adlam","notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufnv0TGnBZLwhuvk.ttf",!0),A.an("Noto Sans Anatolian Hieroglyphs","notosansanatolianhieroglyphs/v16/ijw9s4roRME5LLRxjsRb8A0gKPSWq4BbDmHHu6j2pEtUJzZWXybIymc5QYo.ttf",!0),A.an("Noto Sans Arabic","notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyGyvu3CBFQLaig.ttf",!0),A.an("Noto Sans Armenian","notosansarmenian/v42/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxb60iYy6zF3Eg.ttf",!0),A.an("Noto Sans Avestan","notosansavestan/v20/bWti7ejKfBziStx7lIzKOLQZKhIJkyu9SASLji8U.ttf",!0),A.an("Noto Sans Balinese","notosansbalinese/v24/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov7fdhE5Vd222PPY.ttf",!0),A.an("Noto Sans Bamum","notosansbamum/v26/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEddO-_gLykxEkxA.ttf",!0),A.an("Noto Sans Bassa Vah","notosansbassavah/v17/PN_bRee-r3f7LnqsD5sax12gjZn7mBpL5YwUpA2MBdcFn4MaAc6p34gH-GD7.ttf",!0),A.an("Noto Sans Batak","notosansbatak/v16/gok2H6TwAEdtF9N8-mdTCQvT-Zdgo4_PHuk74A.ttf",!0),A.an("Noto Sans Bengali","notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolLudCk8izI0lc.ttf",!0),A.an("Noto Sans Bhaiksuki","notosansbhaiksuki/v15/UcC63EosKniBH4iELXATsSBWdvUHXxhj8rLUdU4wh9U.ttf",!0),A.an("Noto Sans Brahmi","notosansbrahmi/v18/vEFK2-VODB8RrNDvZSUmQQIIByV18tK1W77HtMo.ttf",!0),A.an("Noto Sans Buginese","notosansbuginese/v18/esDM30ldNv-KYGGJpKGk18phe_7Da6_gtfuEXLmNtw.ttf",!0),A.an("Noto Sans Buhid","notosansbuhid/v18/Dxxy8jiXMW75w3OmoDXVWJD7YwzAe6tgnaFoGA.ttf",!0),A.an("Noto Sans Canadian Aboriginal","notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLn_yAsg0q0uhQ.ttf",!0),A.an("Noto Sans Carian","notosanscarian/v16/LDIpaoiONgYwA9Yc6f0gUILeMIOgs7ob9yGLmfI.ttf",!0),A.an("Noto Sans Caucasian Albanian","notosanscaucasianalbanian/v16/nKKA-HM_FYFRJvXzVXaANsU0VzsAc46QGOkWytlTs-TXrYDmoVmRSZo.ttf",!0),A.an("Noto Sans Chakma","notosanschakma/v17/Y4GQYbJ8VTEp4t3MKJSMjg5OIzhi4JjTQhYBeYo.ttf",!0),A.an("Noto Sans Cham","notosanscham/v27/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcERwcv7GykboaLg.ttf",!0),A.an("Noto Sans Cherokee","notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5PDkm5rAffjl0.ttf",!0),A.an("Noto Sans Coptic","notosanscoptic/v17/iJWfBWmUZi_OHPqn4wq6kgqumOEd78u_VG0xR4Y.ttf",!0),A.an("Noto Sans Cuneiform","notosanscuneiform/v17/bMrrmTWK7YY-MF22aHGGd7H8PhJtvBDWgb9JlRQueeQ.ttf",!0),A.an("Noto Sans Cypriot","notosanscypriot/v15/8AtzGta9PYqQDjyp79a6f8Cj-3a3cxIsK5MPpahF.ttf",!0),A.an("Noto Sans Deseret","notosansdeseret/v17/MwQsbgPp1eKH6QsAVuFb9AZM6MMr2Vq9ZnJSZtQG.ttf",!0),A.an("Noto Sans Devanagari","notosansdevanagari/v25/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQly-AzoFoW4Ow.ttf",!0),A.an("Noto Sans Duployan","notosansduployan/v17/gokzH7nwAEdtF9N8-mdTDx_X9JM5wsvrFsIn6WYDvA.ttf",!0),A.an("Noto Sans Egyptian Hieroglyphs","notosansegyptianhieroglyphs/v28/vEF42-tODB8RrNDvZSUmRhcQHzx1s7y_F9-j3qSzEcbEYindSVK8xRg7iw.ttf",!0),A.an("Noto Sans Elbasan","notosanselbasan/v16/-F6rfiZqLzI2JPCgQBnw400qp1trvHdlre4dFcFh.ttf",!0),A.an("Noto Sans Elymaic","notosanselymaic/v15/UqyKK9YTJW5liNMhTMqe9vUFP65ZD4AjWOT0zi2V.ttf",!0),A.an("Noto Sans Georgian","notosansgeorgian/v42/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzFj-f5WK0OQV.ttf",!0),A.an("Noto Sans Glagolitic","notosansglagolitic/v17/1q2ZY4-BBFBst88SU_tOj4J-4yuNF_HI4ERK4Amu7nM1.ttf",!0),A.an("Noto Sans Gothic","notosansgothic/v16/TuGKUUVzXI5FBtUq5a8bj6wRbzxTFMX40kFQRx0.ttf",!0),A.an("Noto Sans Grantha","notosansgrantha/v17/3y976akwcCjmsU8NDyrKo3IQfQ4o-r8cFeulHc6N.ttf",!0),A.an("Noto Sans Gujarati","notosansgujarati/v23/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFwPM_OdiEH0s.ttf",!0),A.an("Noto Sans Gunjala Gondi","notosansgunjalagondi/v17/bWto7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5hcVXYMTK4q1.ttf",!0),A.an("Noto Sans Gurmukhi","notosansgurmukhi/v26/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1OenbxZ_trdp7h.ttf",!0),A.an("Noto Sans HK","notosanshk/v31/nKKF-GM_FYFRJvXzVXaAPe97P1KHynJFP716qHB--oWTiYjNvVA.ttf",!0),A.an("Noto Sans Hanunoo","notosanshanunoo/v17/f0Xs0fCv8dxkDWlZSoXOj6CphMloFsEsEpgL_ix2.ttf",!0),A.an("Noto Sans Hatran","notosanshatran/v16/A2BBn4Ne0RgnVF3Lnko-0sOBIfL_mM83r1nwzDs.ttf",!0),A.an("Noto Sans Hebrew","notosanshebrew/v43/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4qtoiJltutR2g.ttf",!0),A.an("Noto Sans Imperial Aramaic","notosansimperialaramaic/v16/a8IMNpjwKmHXpgXbMIsbTc_kvks91LlLetBr5itQrtdml3YfPNno.ttf",!0),A.an("Noto Sans Indic Siyaq Numbers","notosansindicsiyaqnumbers/v16/6xK5dTJFKcWIu4bpRBjRZRpsIYHabOeZ8UZLubTzpXNHKx2WPOpVd5Iu.ttf",!0),A.an("Noto Sans Inscriptional Pahlavi","notosansinscriptionalpahlavi/v16/ll8UK3GaVDuxR-TEqFPIbsR79Xxz9WEKbwsjpz7VklYlC7FCVtqVOAYK0QA.ttf",!0),A.an("Noto Sans Inscriptional Parthian","notosansinscriptionalparthian/v16/k3k7o-IMPvpLmixcA63oYi-yStDkgXuXncL7dzfW3P4TAJ2yklBJ2jNkLlLr.ttf",!0),A.an("Noto Sans JP","notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEj75vY0rw-oME.ttf",!0),A.an("Noto Sans Javanese","notosansjavanese/v21/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxJnkFFliZYWj4O8.ttf",!0),A.an("Noto Sans KR","notosanskr/v36/PbyxFmXiEBPT4ITbgNA5Cgms3VYcOA-vvnIzzuoyeLTq8H4hfeE.ttf",!0),A.an("Noto Sans Kaithi","notosanskaithi/v18/buEtppS9f8_vkXadMBJJu0tWjLwjQi0KdoZIKlo.ttf",!0),A.an("Noto Sans Kannada","notosanskannada/v26/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvNzSIMLsPKrkY.ttf",!0),A.an("Noto Sans Kayah Li","notosanskayahli/v20/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WCc3CZH4EXLuKVM.ttf",!0),A.an("Noto Sans Kharoshthi","notosanskharoshthi/v16/Fh4qPiLjKS30-P4-pGMMXCCfvkc5Vd7KE5z4rFyx5mR1.ttf",!0),A.an("Noto Sans Khmer","notosanskhmer/v23/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAJz4kAbrddiA.ttf",!0),A.an("Noto Sans Khojki","notosanskhojki/v16/-nFnOHM29Oofr2wohFbTuPPKVWpmK_d709jy92k.ttf",!0),A.an("Noto Sans Khudawadi","notosanskhudawadi/v18/fdNi9t6ZsWBZ2k5ltHN73zZ5hc8HANlHIjRnVVXz9MY.ttf",!0),A.an("Noto Sans Lao","notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccbdf5MK3riB2w.ttf",!0),A.an("Noto Sans Lepcha","notosanslepcha/v16/0QI7MWlB_JWgA166SKhu05TekNS32AJstqBXgd4.ttf",!0),A.an("Noto Sans Limbu","notosanslimbu/v22/3JnlSDv90Gmq2mrzckOBBRRoNJVj0MF3OHRDnA.ttf",!0),A.an("Noto Sans Linear A","notosanslineara/v18/oPWS_l16kP4jCuhpgEGmwJOiA18FZj22zmHQAGQicw.ttf",!0),A.an("Noto Sans Linear B","notosanslinearb/v17/HhyJU4wt9vSgfHoORYOiXOckKNB737IV3BkFTq4EPw.ttf",!0),A.an("Noto Sans Lisu","notosanslisu/v25/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP2Vwt29IlxkVdig.ttf",!0),A.an("Noto Sans Lycian","notosanslycian/v15/QldVNSNMqAsHtsJ7UmqxBQA9r8wA5_naCJwn00E.ttf",!0),A.an("Noto Sans Lydian","notosanslydian/v17/c4m71mVzGN7s8FmIukZJ1v4ZlcPReUPXMoIjEQI.ttf",!0),A.an("Noto Sans Mahajani","notosansmahajani/v17/-F6sfiVqLzI2JPCgQBnw60Agp0JrvD5Fh8ARHNh4zg.ttf",!0),A.an("Noto Sans Malayalam","notosansmalayalam/v26/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuD9BFzEr6HxEA.ttf",!0),A.an("Noto Sans Mandaic","notosansmandaic/v16/cIfnMbdWt1w_HgCcilqhKQBo_OsMI5_A_gMk0izH.ttf",!0),A.an("Noto Sans Manichaean","notosansmanichaean/v17/taiVGntiC4--qtsfi4Jp9-_GkPZZCcrfekqCNTtFCtdX.ttf",!0),A.an("Noto Sans Marchen","notosansmarchen/v19/aFTO7OZ_Y282EP-WyG6QTOX_C8WZMHhPk652ZaHk.ttf",!0),A.an("Noto Sans Masaram Gondi","notosansmasaramgondi/v17/6xK_dThFKcWIu4bpRBjRYRV7KZCbUq6n_1kPnuGe7RI9WSWX.ttf",!0),A.an("Noto Sans Math","notosansmath/v15/7Aump_cpkSecTWaHRlH2hyV5UHkG-V048PW0.ttf",!0),A.an("Noto Sans Mayan Numerals","notosansmayannumerals/v16/PlIuFk25O6RzLfvNNVSivR09_KqYMwvvDKYjfIiE68oo6eepYQ.ttf",!0),A.an("Noto Sans Medefaidrin","notosansmedefaidrin/v22/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmErWlT318e5A3rw.ttf",!0),A.an("Noto Sans Meetei Mayek","notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ_vTW5PgeFYVa.ttf",!0),A.an("Noto Sans Meroitic","notosansmeroitic/v17/IFS5HfRJndhE3P4b5jnZ3ITPvC6i00UDgDhTiKY9KQ.ttf",!0),A.an("Noto Sans Miao","notosansmiao/v17/Dxxz8jmXMW75w3OmoDXVV4zyZUjgUYVslLhx.ttf",!0),A.an("Noto Sans Modi","notosansmodi/v20/pe03MIySN5pO62Z5YkFyT7jeav5qWVAgVol-.ttf",!0),A.an("Noto Sans Mongolian","notosansmongolian/v17/VdGCAYADGIwE0EopZx8xQfHlgEAMsrToxLsg6-av1x0.ttf",!0),A.an("Noto Sans Mro","notosansmro/v18/qWcsB6--pZv9TqnUQMhe9b39WDzRtjkho4M.ttf",!0),A.an("Noto Sans Multani","notosansmultani/v20/9Bty3ClF38_RfOpe1gCaZ8p30BOFO1A0pfCs5Kos.ttf",!0),A.an("Noto Sans Myanmar","notosansmyanmar/v20/AlZq_y1ZtY3ymOryg38hOCSdOnFq0En23OU4o1AC.ttf",!0),A.an("Noto Sans NKo","notosansnko/v2/esDX31ZdNv-KYGGJpKGk2_RpMpCMHMLBrdA.ttf",!0),A.an("Noto Sans Nabataean","notosansnabataean/v16/IFS4HfVJndhE3P4b5jnZ34DfsjO330dNoBJ9hK8kMK4.ttf",!0),A.an("Noto Sans New Tai Lue","notosansnewtailue/v20/H4cKBW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wqaLy-OJgU3p_pdeXAYUbghFPKzeY.ttf",!0),A.an("Noto Sans Newa","notosansnewa/v16/7r3fqXp6utEsO9pI4f8ok8sWg8n_qN4R5lNU.ttf",!0),A.an("Noto Sans Nushu","notosansnushu/v19/rnCw-xRQ3B7652emAbAe_Ai1IYaFWFAMArZKqQ.ttf",!0),A.an("Noto Sans Ogham","notosansogham/v17/kmKlZqk1GBDGN0mY6k5lmEmww4hrt5laQxcoCA.ttf",!0),A.an("Noto Sans Ol Chiki","notosansolchiki/v21/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALWk267I6gVrz5gQ.ttf",!0),A.an("Noto Sans Old Hungarian","notosansoldhungarian/v16/E213_cD6hP3GwCJPEUssHEM0KqLaHJXg2PiIgRfjbg5nCYXt.ttf",!0),A.an("Noto Sans Old Italic","notosansolditalic/v16/TuGOUUFzXI5FBtUq5a8bh68BJxxEVam7tWlRdRhtCC4d.ttf",!0),A.an("Noto Sans Old North Arabian","notosansoldnortharabian/v16/esDF30BdNv-KYGGJpKGk2tNiMt7Jar6olZDyNdr81zBQmUo_xw4ABw.ttf",!0),A.an("Noto Sans Old Permic","notosansoldpermic/v17/snf1s1q1-dF8pli1TesqcbUY4Mr-ElrwKLdXgv_dKYB5.ttf",!0),A.an("Noto Sans Old Persian","notosansoldpersian/v16/wEOjEAbNnc5caQTFG18FHrZr9Bp6-8CmIJ_tqOlQfx9CjA.ttf",!0),A.an("Noto Sans Old Sogdian","notosansoldsogdian/v16/3JnjSCH90Gmq2mrzckOBBhFhdrMst48aURt7neIqM-9uyg.ttf",!0),A.an("Noto Sans Old South Arabian","notosansoldsoutharabian/v16/3qT5oiOhnSyU8TNFIdhZTice3hB_HWKsEnF--0XCHiKx1OtDT9HwTA.ttf",!0),A.an("Noto Sans Old Turkic","notosansoldturkic/v16/yMJNMJVya43H0SUF_WmcGEQVqoEMKDKbsE2RjEw-Vyws.ttf",!0),A.an("Noto Sans Oriya","notosansoriya/v27/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0f6_c6LhHBRe-.ttf",!0),A.an("Noto Sans Osage","notosansosage/v18/oPWX_kB6kP4jCuhpgEGmw4mtAVtXRlaSxkrMCQ.ttf",!0),A.an("Noto Sans Osmanya","notosansosmanya/v18/8vIS7xs32H97qzQKnzfeWzUyUpOJmz6kR47NCV5Z.ttf",!0),A.an("Noto Sans Pahawh Hmong","notosanspahawhhmong/v18/bWtp7e_KfBziStx7lIzKKaMUOBEA3UPQDW7krzc_c48aMpM.ttf",!0),A.an("Noto Sans Palmyrene","notosanspalmyrene/v16/ZgNPjOdKPa7CHqq0h37c_ASCWvH93SFCPnK5ZpdNtcA.ttf",!0),A.an("Noto Sans Pau Cin Hau","notosanspaucinhau/v20/x3d-cl3IZKmUqiMg_9wBLLtzl22EayN7ehIdjEWqKMxsKw.ttf",!0),A.an("Noto Sans Phags Pa","notosansphagspa/v15/pxiZyoo6v8ZYyWh5WuPeJzMkd4SrGChkqkSsrvNXiA.ttf",!0),A.an("Noto Sans Phoenician","notosansphoenician/v17/jizFRF9Ksm4Bt9PvcTaEkIHiTVtxmFtS5X7Jot-p5561.ttf",!0),A.an("Noto Sans Psalter Pahlavi","notosanspsalterpahlavi/v16/rP2Vp3K65FkAtHfwd-eISGznYihzggmsicPfud3w1G3KsUQBct4.ttf",!0),A.an("Noto Sans Rejang","notosansrejang/v18/Ktk2AKuMeZjqPnXgyqrib7DIogqwN4O3WYZB_sU.ttf",!0),A.an("Noto Sans Runic","notosansrunic/v17/H4c_BXWPl9DZ0Xe_nHUaus7W68WWaxpvHtgIYg.ttf",!0),A.an("Noto Sans SC","notosanssc/v36/k3kCo84MPvpLmixcA63oeAL7Iqp5IZJF9bmaG9_FnYxNbPzS5HE.ttf",!0),A.an("Noto Sans Saurashtra","notosanssaurashtra/v19/ea8GacQ0Wfz_XKWXe6OtoA8w8zvmYwTef9ndjhPTSIx9.ttf",!0),A.an("Noto Sans Sharada","notosanssharada/v16/gok0H7rwAEdtF9N8-mdTGALG6p0kwoXLPOwr4H8a.ttf",!0),A.an("Noto Sans Shavian","notosansshavian/v17/CHy5V_HZE0jxJBQlqAeCKjJvQBNF4EFQSplv2Cwg.ttf",!0),A.an("Noto Sans Siddham","notosanssiddham/v17/OZpZg-FwqiNLe9PELUikxTWDoCCeGqndk3Ic92ZH.ttf",!0),A.an("Noto Sans Sinhala","notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2a5lgLpJwbQRM.ttf",!0),A.an("Noto Sans Sogdian","notosanssogdian/v16/taiQGn5iC4--qtsfi4Jp6eHPnfxQBo--Pm6KHidM.ttf",!0),A.an("Noto Sans Sora Sompeng","notosanssorasompeng/v24/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHR818DpZXJQd4Mu.ttf",!0),A.an("Noto Sans Soyombo","notosanssoyombo/v17/RWmSoL-Y6-8q5LTtXs6MF6q7xsxgY0FrIFOcK25W.ttf",!0),A.an("Noto Sans Sundanese","notosanssundanese/v24/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxpNNHCizv7fQES.ttf",!0),A.an("Noto Sans Syloti Nagri","notosanssylotinagri/v20/uU9eCAQZ75uhfF9UoWDRiY3q7Sf_VFV3m4dGFVfxN87gsj0.ttf",!0),A.an("Noto Sans Syriac","notosanssyriac/v16/Ktk7AKuMeZjqPnXgyqribqzQqgW0LYiVqV7dXcP0C-VD9MaJyZfUL_FC.ttf",!0),A.an("Noto Sans TC","notosanstc/v35/-nFuOG829Oofr2wohFbTp9ifNAn722rq0MXz76Cy_CpOtma3uNQ.ttf",!0),A.an("Noto Sans Tagalog","notosanstagalog/v18/J7aFnoNzCnFcV9ZI-sUYuvote1R0wwEAA8jHexnL.ttf",!0),A.an("Noto Sans Tagbanwa","notosanstagbanwa/v18/Y4GWYbB8VTEp4t3MKJSMmQdIKjRtt_nZRjQEaYpGoQ.ttf",!0),A.an("Noto Sans Tai Le","notosanstaile/v17/vEFK2-VODB8RrNDvZSUmVxEATwR58tK1W77HtMo.ttf",!0),A.an("Noto Sans Tai Tham","notosanstaitham/v19/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBCUbPgquyaRGKMw.ttf",!0),A.an("Noto Sans Tai Viet","notosanstaiviet/v16/8QIUdj3HhN_lv4jf9vsE-9GMOLsaSPZr644fWsRO9w.ttf",!0),A.an("Noto Sans Takri","notosanstakri/v23/TuGJUVpzXI5FBtUq5a8bnKIOdTwQNO_W3khJXg.ttf",!0),A.an("Noto Sans Tamil","notosanstamil/v27/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGo70RqKDt_EvT.ttf",!0),A.an("Noto Sans Tamil Supplement","notosanstamilsupplement/v21/DdTz78kEtnooLS5rXF1DaruiCd_bFp_Ph4sGcn7ax_vsAeMkeq1x.ttf",!0),A.an("Noto Sans Telugu","notosanstelugu/v25/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezbqQUbf-3v37w.ttf",!0),A.an("Noto Sans Thaana","notosansthaana/v23/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbhLhnu4-tbNu.ttf",!0),A.an("Noto Sans Thai","notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RtpzF-QRvzzXg.ttf",!0),A.an("Noto Sans Tifinagh","notosanstifinagh/v17/I_uzMoCduATTei9eI8dawkHIwvmhCvbn6rnEcXfs4Q.ttf",!0),A.an("Noto Sans Tirhuta","notosanstirhuta/v16/t5t6IQYRNJ6TWjahPR6X-M-apUyby7uGUBsTrn5P.ttf",!0),A.an("Noto Sans Ugaritic","notosansugaritic/v16/3qTwoiqhnSyU8TNFIdhZVCwbjCpkAXXkMhoIkiazfg.ttf",!0),A.an("Noto Sans Vai","notosansvai/v17/NaPecZTSBuhTirw6IaFn_UrURMTsDIRSfr0.ttf",!0),A.an("Noto Sans Wancho","notosanswancho/v17/zrf-0GXXyfn6Fs0lH9P4cUubP0GBqAPopiRfKp8.ttf",!0),A.an("Noto Sans Warang Citi","notosanswarangciti/v17/EYqtmb9SzL1YtsZSScyKDXIeOv3w-zgsNvKRpeVCCXzdgA.ttf",!0),A.an("Noto Sans Yi","notosansyi/v19/sJoD3LFXjsSdcnzn071rO3apxVDJNVgSNg.ttf",!0),A.an("Noto Sans Zanabazar Square","notosanszanabazarsquare/v16/Cn-jJsuGWQxOjaGwMQ6fOicyxLBEMRfDtkzl4uagQtJxOCEgN0Gc.ttf",!0)],t.Qg))}return r}, +aA9(){var s,r,q,p,o,n=this,m=n.r +if(m!=null){m.delete() +n.r=null +m=n.w +if(m!=null)m.delete() +n.w=null}n.r=$.d2.cB().TypefaceFontProvider.Make() +m=$.d2.cB().FontCollection.Make() +n.w=m +m.enableFontFallback() +n.w.setDefaultFontManager(n.r) +m=n.f +m.ab(0) +for(s=n.d,r=s.length,q=0;q"),s=new A.da(s,r),s=new A.c2(s,s.gt(s),r.h("c2")),r=r.h("av.E"),q=B.ib;s.v();){p=s.d +if(p==null)p=r.a(p) +switch(p.a.a){case 0:p=p.b +p.toString +o=p +break +case 1:p=p.c +o=new A.L(p.a,p.b,p.c,p.d) +break +case 2:p=p.d.a +p===$&&A.b() +p=p.a.getBounds() +o=new A.L(p[0],p[1],p[2],p[3]) +break +default:continue $label0$1}q=q.hh(o)}return q}} +A.aN_.prototype={} +A.BL.prototype={ +rd(a,b){this.b=this.vF(a,b)}, +vF(a,b){var s,r,q,p,o,n +for(s=this.c,r=s.length,q=B.W,p=0;p=q.c||q.b>=q.d)q=o.b +else{n=o.b +if(!(n.a>=n.c||n.b>=n.d))q=q.oY(n)}}return q}, +r8(a){var s,r,q,p,o +for(s=this.c,r=s.length,q=0;q=o.c||o.b>=o.d))p.kC(a)}}} +A.a8A.prototype={ +kC(a){this.r8(a)}} +A.Yb.prototype={ +rd(a,b){this.b=this.vF(a,b).oY(a.gaHP())}, +kC(a){var s,r,q=this,p=A.J6() +p.suR(q.r) +s=a.a +s.Oe(q.b,q.f,p) +r=p.b +r===$&&A.b() +r.m() +q.r8(a) +s.dg(0)}, +$iatB:1} +A.Ze.prototype={ +rd(a,b){var s,r,q=null,p=this.f,o=a.c.a +o.push(new A.nk(B.an4,q,q,p,q,q)) +s=this.vF(a,b) +p=p.a +p===$&&A.b() +r=A.bnr(p.a.getBounds()) +if(s.G1(r))this.b=s.hh(r) +o.pop()}, +kC(a){var s,r=this,q=a.a +q.eo(0) +s=r.r +q.aGu(0,r.f,s!==B.C) +s=s===B.f8 +if(s)q.kb(r.b,null) +r.r8(a) +if(s)q.dg(0) +q.dg(0)}, +$iax7:1} +A.Zh.prototype={ +rd(a,b){var s,r=null,q=this.f,p=a.c.a +p.push(new A.nk(B.an2,q,r,r,r,r)) +s=this.vF(a,b) +if(s.G1(q))this.b=s.hh(q) +p.pop()}, +kC(a){var s,r,q=a.a +q.eo(0) +s=this.f +r=this.r +q.aGy(s,B.f7,r!==B.C) +r=r===B.f8 +if(r)q.kb(s,null) +this.r8(a) +if(r)q.dg(0) +q.dg(0)}, +$iaxa:1} +A.Zg.prototype={ +rd(a,b){var s,r,q,p,o=null,n=this.f,m=a.c.a +m.push(new A.nk(B.an3,o,n,o,o,o)) +s=this.vF(a,b) +r=n.a +q=n.b +p=n.c +n=n.d +if(s.G1(new A.L(r,q,p,n)))this.b=s.hh(new A.L(r,q,p,n)) +m.pop()}, +kC(a){var s,r=this,q=a.a +q.eo(0) +s=r.r +q.aGw(r.f,s!==B.C) +s=s===B.f8 +if(s)q.kb(r.b,null) +r.r8(a) +if(s)q.dg(0) +q.dg(0)}, +$iax9:1} +A.a6x.prototype={ +rd(a,b){var s,r,q,p,o=this,n=null,m=new A.dp(new Float32Array(16)) +m.c6(b) +s=o.r +r=s.a +s=s.b +m.bi(0,r,s) +q=A.fL() +q.rH(r,s,0) +p=a.c.a +p.push(A.bl6(q)) +p.push(new A.nk(B.an6,n,n,n,n,o.f)) +o.ahC(a,m) +p.pop() +p.pop() +o.b=o.b.bi(0,r,s)}, +kC(a){var s,r,q,p=this,o=A.J6() +o.saf(0,A.K(p.f,0,0,0)) +s=a.a +s.eo(0) +r=p.r +q=r.a +r=r.b +s.bi(0,q,r) +s.kb(p.b.dq(new A.m(-q,-r)),o) +r=o.b +r===$&&A.b() +r.m() +p.r8(a) +s.dg(0) +s.dg(0)}, +$iaMy:1} +A.PL.prototype={ +rd(a,b){var s=this.f,r=b.Mz(s),q=a.c.a +q.push(A.bl6(s)) +this.b=A.bin(s,this.vF(a,r)) +q.pop()}, +kC(a){var s=a.a +s.eo(0) +s.a5(0,this.f.a) +this.r8(a) +s.dg(0)}, +$iabb:1} +A.a6v.prototype={$iaMw:1} +A.a2Q.prototype={ +rd(a,b){var s,r,q,p,o=this,n=new A.dp(new Float32Array(16)) +n.c6(b) +s=o.f +r=s.a +s=s.b +n.bi(0,r,s) +q=A.fL() +q.rH(r,s,0) +s=a.c.a +s.push(A.bl6(q)) +p=o.vF(a,n) +q=t.p1.a(o.r).d +q===$&&A.b() +q=q.a +q.toString +new A.aGZ(o,p).$1(q) +s.pop()}, +kC(a){var s,r,q=this,p=a.a +p.eo(0) +s=q.f +p.bi(0,s.a,s.b) +r=A.J6() +r.saKV(q.r) +p.kb(q.b,r) +s=r.b +s===$&&A.b() +s.m() +q.r8(a) +p.dg(0) +p.dg(0)}, +$iaGY:1} +A.aGZ.prototype={ +$1(a){var s=a.getOutputBounds(A.is(this.b)) +this.a.b=new A.L(s[0],s[1],s[2],s[3])}, +$S:3} +A.a9i.prototype={ +kC(a){var s,r,q,p,o,n=this,m=a.a +m.kb(n.b,null) +n.r8(a) +s=A.J6() +s.sCh(n.f) +s.suR(n.w) +s.svm(n.x) +r=a.b.a +B.e.au(r.save()) +q=n.r +p=q.a +o=q.b +r.translate(p,o) +r.drawRect(A.is(new A.L(0,0,0+(q.c-p),0+(q.d-o))),s.a) +o=s.b +o===$&&A.b() +o.m() +r.restore() +m.dg(0)}, +$iaUw:1} +A.a7a.prototype={ +rd(a,b){var s=this.c.a +s===$&&A.b() +this.b=A.bnr(s.a.cullRect()).dq(this.d)}, +kC(a){var s,r=a.b.a +B.e.au(r.save()) +s=this.d +r.translate(s.a,s.b) +s=this.c.a +s===$&&A.b() +s=s.a +s.toString +r.drawPicture(s) +r.restore()}} +A.a3r.prototype={ +m(){}} +A.aI6.prototype={ +a7p(a,b,c,d){var s,r=this.b +r===$&&A.b() +s=new A.a7a(t.Bn.a(b),a,B.W) +s.a=r +r.c.push(s)}, +a7r(a){var s=this.b +s===$&&A.b() +t.L6.a(a) +a.a=s +s.c.push(a)}, +aO(){return new A.a3r(new A.aI7(this.a,$.eA().gnG()))}, +i2(){var s=this.b +s===$&&A.b() +if(s===this.a)return +s=s.a +s.toString +this.b=s}, +acJ(a,b,c){return this.tY(new A.Yb(a,b,A.a([],t.k5),B.W))}, +acK(a,b,c){return this.tY(new A.Ze(t.E_.a(a),b,A.a([],t.k5),B.W))}, +acL(a,b,c){return this.tY(new A.Zg(a,b,A.a([],t.k5),B.W))}, +acM(a,b,c){return this.tY(new A.Zh(a,b,A.a([],t.k5),B.W))}, +acN(a,b,c){return this.tY(new A.a2Q(b,a,A.a([],t.k5),B.W))}, +X3(a,b,c){var s=A.fL() +s.rH(a,b,0) +return this.tY(new A.a6v(s,A.a([],t.k5),B.W))}, +acO(a,b,c){return this.tY(new A.a6x(a,b,A.a([],t.k5),B.W))}, +acP(a,b,c,d){return this.tY(new A.a9i(a,b,c,B.hv,A.a([],t.k5),B.W))}, +Ga(a,b){return this.tY(new A.PL(new A.dp(A.X_(a)),A.a([],t.k5),B.W))}, +aOf(a){var s=this.b +s===$&&A.b() +a.a=s +s.c.push(a) +return this.b=a}, +tY(a){return this.aOf(a,t.vn)}} +A.aI7.prototype={} +A.aE6.prototype={ +aOk(a,b){A.bil("preroll_frame",new A.aEd(this,a,!0)) +A.bil("apply_frame",new A.aEe(this,a,!0)) +return!0}} +A.aEd.prototype={ +$0(){var s=this.b.a +s.b=s.vF(new A.aNL(new A.Me(A.a([],t.YE))),A.fL())}, +$S:0} +A.aEe.prototype={ +$0(){var s=this.a,r=A.a([],t.SJ),q=new A.Z8(r),p=s.a +r.push(p) +s.c.afA().al(0,q.gaFc()) +s=this.b.a +r=s.b +if(!r.gak(r))s.r8(new A.aN_(q,p))}, +$S:0} +A.axv.prototype={} +A.awX.prototype={} +A.Z8.prototype={ +aFd(a){this.a.push(a)}, +eo(a){var s,r,q +for(s=this.a,r=0,q=0;q0))p.ax=null +else{r=a.a +q=new A.awX(r,s) +s=$.d2.cB().MaskFilter.MakeBlur($.bDc()[r.a],s,!0) +s.toString +r=new A.js(o,t.gA) +r.pA(q,s,o,t.e) +q.c!==$&&A.ck() +q.c=r +p.ax=q}s=p.ax +if(s==null)s=null +else{s=s.c +s===$&&A.b() +s=s.a +s.toString}p.a.setMaskFilter(s)}, +svm(a){var s,r=this +if(r.ay===a)return +r.ay=a +s=r.as +s=s==null?null:s.Yp(a) +r.a.setShader(s)}, +sa8p(a){var s,r=this +if(r.ch===a)return +r.ch=a +r.Q=null +s=A.bU1(a) +s.toString +s=r.CW=A.aIT(s) +if(r.z){r.Q=s +s=r.CW=A.aIT(new A.Bu($.biG(),s))}s=s.b +s===$&&A.b() +s=s.a +s.toString +r.a.setColorFilter(s)}, +saKV(a){if(J.j(this.c,a))return +t.fz.a(a) +a.VL(new A.awY(this)) +this.c=a}, +$iup:1} +A.awY.prototype={ +$1(a){this.a.a.setImageFilter(a)}, +$S:3} +A.J7.prototype={ +gAG(){return this.b}, +sAG(a){var s +if(this.b===a)return +this.b=a +s=this.a +s===$&&A.b() +s=s.a +s.toString +s.setFillType($.biM()[a.a])}, +wJ(a,b,c){var s=this.a +s===$&&A.b() +s=s.a +s.toString +s.addArc(A.is(a),b*57.29577951308232,c*57.29577951308232)}, +wL(a){var s=this.a +s===$&&A.b() +s=s.a +s.toString +s.addOval(A.is(a),!1,1)}, +Tw(a,b,c){var s,r,q=A.fL() +q.rH(c.a,c.b,0) +s=A.bnU(q.a) +t.E_.a(b) +q=this.a +q===$&&A.b() +q=q.a +q.toString +r=b.a +r===$&&A.b() +r=r.a +r.toString +A.cj(q,"addPath",[r,s[0],s[1],s[2],s[3],s[4],s[5],s[6],s[7],s[8],!1])}, +fT(a){var s=this.a +s===$&&A.b() +s=s.a +s.toString +s.addRRect(A.X0(a),!1)}, +qA(a){var s=this.a +s===$&&A.b() +s=s.a +s.toString +s.addRect(A.is(a))}, +uP(a,b,c,d,e){var s=this.a +s===$&&A.b() +s=s.a +s.toString +s.arcToOval(A.is(b),c*57.29577951308232,d*57.29577951308232,e)}, +a7C(a,b){var s=this.a +s===$&&A.b() +s=s.a +s.toString +A.cj(s,"arcToRotated",[b.a,b.b,0,!0,!1,a.a,a.b])}, +ah(a){var s=this.a +s===$&&A.b() +s.a.close()}, +p(a,b){var s=this.a +s===$&&A.b() +return s.a.contains(b.a,b.b)}, +kO(a){var s=this.a +s===$&&A.b() +return A.bnr(s.a.getBounds())}, +d_(a,b,c){var s=this.a +s===$&&A.b() +s.a.lineTo(b,c)}, +fh(a,b,c){var s=this.a +s===$&&A.b() +s.a.moveTo(b,c)}, +iN(a){var s +this.b=B.d8 +s=this.a +s===$&&A.b() +s.a.reset()}, +dq(a){var s,r=this.a +r===$&&A.b() +s=r.a.copy() +A.cj(s,"transform",[1,0,a.a,0,1,a.b,0,0,1]) +r=this.b +s.setFillType($.biM()[r.a]) +return A.bqo(s,r)}, +$iDL:1} +A.Zb.prototype={ +m(){this.b=!0 +var s=this.a +s===$&&A.b() +s.m()}, +aPG(a,b){var s,r,q,p,o=A.pg(),n=o.c +if(n===$){s=A.c8(self.document,"flt-canvas-container") +o.c!==$&&A.aq() +n=o.c=new A.pf(s)}o=n.Ur(new A.U(a,b)).a +s=o.getCanvas() +s.clear(A.bfR($.arD(),B.E)) +r=this.a +r===$&&A.b() +r=r.a +r.toString +s.drawPicture(r) +q=o.makeImageSnapshot() +o=$.d2.cB().AlphaType.Premul +r=$.d2.cB().ColorType.RGBA_8888 +p=A.bMq(o,self.window.flutterCanvasKit.ColorSpace.SRGB,r,b,a) +r=q.readPixels(0,0,p) +r=$.d2.cB().MakeImage(p,r,4*a) +if(r==null)throw A.c(A.R("Unable to convert image pixels into SkImage.")) +return A.awW(r,null)}} +A.tn.prototype={ +E3(a){var s=new self.window.flutterCanvasKit.PictureRecorder() +this.a=s +return this.b=new A.l7(s.beginRecording(A.is(a),!0))}, +EM(){var s,r,q,p=this.a +if(p==null)throw A.c(A.R("PictureRecorder is not recording")) +s=p.finishRecordingAsPicture() +p.delete() +this.a=null +r=new A.Zb() +q=new A.js("Picture",t.gA) +q.pA(r,s,"Picture",t.e) +r.a!==$&&A.ck() +r.a=q +return r}, +gabA(){return this.a!=null}} +A.aOS.prototype={ +aIr(a){var s,r,q,p +try{p=a.b +if(p.gak(p))return +s=A.pg().a.a7k(p) +$.bix().x=p +r=new A.l7(s.a.a.getCanvas()) +r.a.clear(A.bfR($.arD(),B.E)) +q=new A.aE6(r,null,$.bix()) +q.aOk(a,!0) +p=A.pg().a +if(!p.ax)$.fZ.cB().c.prepend(p.x) +p.ax=!0 +J.bEN(s) +$.bix().ahh(0)}finally{this.aAU()}}, +aAU(){var s,r +for(s=this.b,r=0;!1;++r)s[r].$0() +for(s=$.lO,r=0;rq.a||a.b>q.b +else r=!1 +if(r){p=a.av(0,1.4) +r=j.a +if(r!=null)r.m() +j.a=null +r=j.y +r.toString +o=p.a +A.C2(r,o) +r=j.y +r.toString +n=p.b +A.C1(r,n) +j.ay=p +j.z=B.e.eV(o) +j.Q=B.e.eV(n) +j.K_()}}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.i3(r,i,j.e,!1) +r=j.y +r.toString +A.i3(r,h,j.d,!1) +j.y.remove() +j.d=j.e=null}j.z=B.e.eV(a.a) +r=B.e.eV(a.b) +j.Q=r +m=j.y=A.WL(r,j.z) +r=A.b1("true") +if(r==null)r=t.K.a(r) +m.setAttribute("aria-hidden",r) +A.Q(m.style,"position","absolute") +j.K_() +r=t.e +j.e=r.a(A.cH(j.gapz())) +o=r.a(A.cH(j.gapx())) +j.d=o +A.dV(m,h,o,!1) +A.dV(m,i,j.e,!1) +j.c=j.b=!1 +o=$.lM +if((o==null?$.lM=A.HM():o)!==-1){o=$.ed +o=!(o==null?$.ed=A.jP(self.window.flutterConfiguration):o).ga8d()}else o=!1 +if(o){o=$.d2.cB() +n=$.lM +if(n==null)n=$.lM=A.HM() +l=j.r=B.e.au(o.GetWebGLContext(m,r.a({antialias:0,majorVersion:n}))) +if(l!==0){j.f=$.d2.cB().MakeGrContext(l) +if(j.as===-1||j.at===-1){r=j.y +r.toString +o=$.lM +k=A.bHa(r,o==null?$.lM=A.HM():o) +j.as=B.e.au(k.getParameter(B.e.au(k.SAMPLES))) +j.at=B.e.au(k.getParameter(B.e.au(k.STENCIL_BITS)))}j.a5y()}}j.x.append(m) +j.ay=a}else{$.eA() +r=$.dn().d +if(r==null){r=self.window.devicePixelRatio +if(r===0)r=1}if(r!==j.CW)j.K_()}$.eA() +r=$.dn().d +if(r==null){r=self.window.devicePixelRatio +if(r===0)r=1}j.CW=r +j.ch=a +j.a6d() +r=j.a +if(r!=null)r.m() +return j.a=j.apP(a)}, +K_(){var s,r,q,p,o=this.z +$.eA() +s=$.dn() +r=s.d +if(r==null){r=self.window.devicePixelRatio +if(r===0)r=1}q=this.Q +s=s.d +if(s==null){s=self.window.devicePixelRatio +if(s===0)s=1}p=this.y.style +A.Q(p,"width",A.i(o/r)+"px") +A.Q(p,"height",A.i(q/s)+"px")}, +a6d(){var s,r=B.e.eV(this.ch.b),q=this.Q +$.eA() +s=$.dn().d +if(s==null){s=self.window.devicePixelRatio +if(s===0)s=1}A.Q(this.y.style,"transform","translate(0, -"+A.i((q-r)/s)+"px)")}, +apA(a){this.c=!1 +$.bO().VY() +a.stopPropagation() +a.preventDefault()}, +apy(a){var s=this,r=A.pg() +s.c=!0 +if(r.aLE(s)){s.b=!0 +a.preventDefault()}else s.m()}, +apP(a){var s,r=this,q=$.lM +if((q==null?$.lM=A.HM():q)===-1){q=r.y +q.toString +return r.IW(q,"WebGL support not detected")}else{q=$.ed +if((q==null?$.ed=A.jP(self.window.flutterConfiguration):q).ga8d()){q=r.y +q.toString +return r.IW(q,"CPU rendering forced by application")}else if(r.r===0){q=r.y +q.toString +return r.IW(q,"Failed to initialize WebGL context")}else{q=$.d2.cB() +s=r.f +s.toString +s=A.cj(q,"MakeOnScreenGLSurface",[s,B.e.Gp(a.a),B.e.Gp(a.b),self.window.flutterCanvasKit.ColorSpace.SRGB,r.as,r.at]) +if(s==null){q=r.y +q.toString +return r.IW(q,"Failed to initialize WebGL surface")}return new A.Zc(s,r.r)}}}, +IW(a,b){if(!$.bus){$.hf().$1("WARNING: Falling back to CPU-only rendering. "+b+".") +$.bus=!0}return new A.Zc($.d2.cB().MakeSWCanvasSurface(a),null)}, +m(){var s=this,r=s.y +if(r!=null)A.i3(r,"webglcontextlost",s.d,!1) +r=s.y +if(r!=null)A.i3(r,"webglcontextrestored",s.e,!1) +s.e=s.d=null +s.x.remove() +r=s.a +if(r!=null)r.m()}} +A.aYv.prototype={ +$2(a,b){this.a.a.a.flush() +return!0}, +$S:429} +A.Zc.prototype={ +m(){if(this.c)return +this.a.dispose() +this.c=!0}} +A.aax.prototype={ +afR(){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.e.au($.d2.cB().OverlineDecoration))>>>0 +if((s|4)===s)r=(r|B.e.au($.d2.cB().LineThroughDecoration))>>>0 +b0.decoration=r}if(b!=null)b0.decorationThickness=b +if(d!=null){s=A.HS(d) +b0.decorationColor=s}if(c!=null)b0.decorationStyle=$.bDl()[c.a] +if(a0!=null)b0.textBaseline=$.boG()[a0.a] +if(a1!=null)A.bub(b0,a1) +if(a2!=null)b0.letterSpacing=a2 +if(a3!=null)b0.wordSpacing=a3 +if(a4!=null)A.bud(b0,a4) +switch(g.ax){case null:case void 0:break +case B.X:A.buc(b0,!0) +break +case B.pF:A.buc(b0,!1) +break}q=g.dx +if(q===$){p=A.bmX(g.x,g.y) +g.dx!==$&&A.aq() +g.dx=p +q=p}A.bua(b0,q) +if(a!=null||!1)b0.fontStyle=A.bnT(a,g.r) +if(a6!=null){g=A.HS(new A.e(a6.y)) +b0.foregroundColor=g}if(a7!=null){o=A.a([],t.A) +for(g=a7.length,n=0;n")),r=r.h("ae.E");p.v();){q=p.d +if(q==null)q=r.a(q) +if(s>=q.startIndex&&s<=q.endIndex)return new A.dl(B.e.au(q.startIndex),B.e.au(q.endIndex))}return B.ca}, +zU(){var s,r,q,p=this.a +p===$&&A.b() +p=J.j6(p.a.getLineMetrics(),t.e) +s=A.a([],t.ER) +for(r=A.l(p),p=new A.c2(p,p.gt(p),r.h("c2")),r=r.h("ae.E");p.v();){q=p.d +s.push(new A.Z7(q==null?r.a(q):q))}return s}, +m(){var s=this.a +s===$&&A.b() +s.m() +this.as=!0}} +A.Z7.prototype={ +ga7J(){return this.a.ascent}, +gUE(){return this.a.descent}, +gae4(){return this.a.ascent}, +gaaP(){return this.a.isHardBreak}, +gqD(){return this.a.baseline}, +gdC(a){var s=this.a +return B.e.bg(s.ascent+s.descent)}, +gpd(a){return this.a.left}, +gf6(a){return this.a.width}, +gWb(a){return B.e.au(this.a.lineNumber)}, +$iua:1} +A.awZ.prototype={ +Kn(a,b,c,d,e){var s;++this.c +this.d.push(1) +s=e==null?b:e +A.cj(this.a,"addPlaceholder",[a,b,$.bDf()[c.a],$.boG()[0],s])}, +a7q(a,b,c){return this.Kn(a,b,c,null,null)}, +DU(a){var s=A.a([],t.s),r=B.b.gX(this.e),q=r.x +if(q!=null)s.push(q) +q=r.y +if(q!=null)B.b.I(s,q) +$.au().gF8().gVn().aIF(a,s) +this.a.addText(a)}, +aO(){var s,r,q,p,o,n,m,l,k,j="Paragraph" +if($.bCp()){s=this.a +r=B.a_.ha(0,new A.i2(s.getText())) +q=A.bM6($.bDS(),r) +p=q==null +o=p?null:q.i(0,r) +if(o!=null)n=o +else{m=A.byG(r,B.ya) +l=A.byG(r,B.y9) +n=new A.al9(A.bVa(r),l,m)}if(!p){p=q.c +k=p.i(0,r) +if(k==null)q.a_f(0,r,n) +else{m=k.d +if(!J.j(m.b,n)){k.en(0) +q.a_f(0,r,n)}else{k.en(0) +l=q.b +l.Kk(m) +l=l.a.b.I2() +l.toString +p.n(0,r,l)}}}s.setWordsUtf16(n.c) +s.setGraphemeBreaksUtf16(n.b) +s.setLineBreaksUtf16(n.a)}s=this.a +n=s.build() +s.delete() +s=new A.Z9(this.b) +r=new A.js(j,t.gA) +r.pA(s,n,j,t.e) +s.a!==$&&A.ck() +s.a=r +return s}, +gacy(){return this.c}, +i2(){var s=this.e +if(s.length<=1)return +s.pop() +this.a.pop()}, +Bl(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.gX(a2) +t.BQ.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.bjE(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.a +if(a0==null){a0=$.bAp() +a2=a.a +a2=a2==null?null:a2.gj(a2) +if(a2==null)a2=4278190080 +a0.setColorInt(a2)}a2=a.ch +a1=a2==null?null:a2.a +if(a1==null)a1=$.bAo() +this.a.pushPaintStyle(a.gZ7(),a0,a1)}else this.a.pushStyle(a.gZ7())}} +A.bfx.prototype={ +$1(a){return this.a===a}, +$S:11} +A.Lc.prototype={ +J(){return"IntlSegmenterGranularity."+this.b}} +A.YJ.prototype={ +l(a){return"CanvasKitError: "+this.a}} +A.Jd.prototype={ +ago(a,b){var s={} +s.a=!1 +this.a.Cc(0,A.af(J.b7(a.b,"text"))).be(new A.axk(s,b),t.P).mp(new A.axl(s,b))}, +afg(a){this.b.BQ(0).be(new A.axf(a),t.P).mp(new A.axg(this,a))}, +aKC(a){this.b.BQ(0).be(new A.axi(a),t.P).mp(new A.axj(a))}} +A.axk.prototype={ +$1(a){var s=this.b +if(a){s.toString +s.$1(B.aH.dW([!0]))}else{s.toString +s.$1(B.aH.dW(["copy_fail","Clipboard.setData failed",null])) +this.a.a=!0}}, +$S:106} +A.axl.prototype={ +$1(a){var s +if(!this.a.a){s=this.b +s.toString +s.$1(B.aH.dW(["copy_fail","Clipboard.setData failed",null]))}}, +$S:37} +A.axf.prototype={ +$1(a){var s=A.am(["text",a],t.N,t.z),r=this.a +r.toString +r.$1(B.aH.dW([s]))}, +$S:321} +A.axg.prototype={ +$1(a){var s +if(a instanceof A.zR){A.xo(B.B,null,t.H).be(new A.axe(this.b),t.P) +return}s=this.b +A.t4("Could not get text from clipboard: "+A.i(a)) +s.toString +s.$1(B.aH.dW(["paste_fail","Clipboard.getData failed",null]))}, +$S:37} +A.axe.prototype={ +$1(a){var s=this.a +if(s!=null)s.$1(null)}, +$S:19} +A.axi.prototype={ +$1(a){var s=A.am(["value",a.length!==0],t.N,t.z),r=this.a +r.toString +r.$1(B.aH.dW([s]))}, +$S:321} +A.axj.prototype={ +$1(a){var s,r +if(a instanceof A.zR){A.xo(B.B,null,t.H).be(new A.axh(this.a),t.P) +return}s=A.am(["value",!1],t.N,t.z) +r=this.a +r.toString +r.$1(B.aH.dW([s]))}, +$S:37} +A.axh.prototype={ +$1(a){var s=this.a +if(s!=null)s.$1(null)}, +$S:19} +A.axb.prototype={ +Cc(a,b){return this.agn(0,b)}, +agn(a,b){var s=0,r=A.y(t.y),q,p=2,o,n,m,l,k +var $async$Cc=A.u(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.t(A.lP(m.writeText(b),t.z),$async$Cc) +case 7:p=2 +s=6 +break +case 4:p=3 +k=o +n=A.ak(k) +A.t4("copy is not successful "+A.i(n)) +m=A.cR(!1,t.y) +q=m +s=1 +break +s=6 +break +case 3:s=2 +break +case 6:q=A.cR(!0,t.y) +s=1 +break +case 1:return A.w(q,r) +case 2:return A.v(o,r)}}) +return A.x($async$Cc,r)}} +A.axc.prototype={ +BQ(a){var s=0,r=A.y(t.N),q +var $async$BQ=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:q=A.lP(self.window.navigator.clipboard.readText(),t.N) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$BQ,r)}} +A.aC3.prototype={ +Cc(a,b){return A.cR(this.aBR(b),t.y)}, +aBR(a){var s,r,q,p,o="-99999px",n="transparent",m=A.c8(self.document,"textarea"),l=m.style +A.Q(l,"position","absolute") +A.Q(l,"top",o) +A.Q(l,"left",o) +A.Q(l,"opacity","0") +A.Q(l,"color",n) +A.Q(l,"background-color",n) +A.Q(l,"background",n) +self.document.body.append(m) +s=m +A.br0(s,a) +s.focus() +s.select() +r=!1 +try{r=self.document.execCommand("copy") +if(!r)A.t4("copy is not successful")}catch(p){q=A.ak(p) +A.t4("copy is not successful "+A.i(q))}finally{s.remove()}return r}} +A.aC4.prototype={ +BQ(a){return A.oG(new A.zR("Paste is not implemented for this browser."),null,t.N)}} +A.axs.prototype={ +J(){return"ColorFilterType."+this.b}} +A.aBx.prototype={ +l(a){switch(0){case 0:return"ColorFilter.mode("+this.a.l(0)+", "+this.b.l(0)+")"}}} +A.aDp.prototype={ +ga8d(){var s=this.b +if(s==null)s=null +else{s=s.canvasKitForceCpuOnly +if(s==null)s=null}return s===!0}, +gaHX(){var s=this.b +if(s==null)s=null +else{s=s.debugShowSemanticsNodes +if(s==null)s=null}return s===!0}, +gadl(){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}} +A.a1p.prototype={} +A.aSX.prototype={ +Hr(a){return this.agv(a)}, +agv(a){var s=0,r=A.y(t.y),q,p=2,o,n,m,l,k,j,i +var $async$Hr=A.u(function(b,c){if(b===1){o=c +s=p}while(true)switch(s){case 0:j=self.window.screen +s=j!=null?3:4 +break +case 3:n=j.orientation +s=n!=null?5:6 +break +case 5:l=J.aj(a) +s=l.gak(a)?7:9 +break +case 7:n.unlock() +q=!0 +s=1 +break +s=8 +break +case 9:m=A.bLV(A.af(l.gO(a))) +s=m!=null?10:11 +break +case 10:p=13 +s=16 +return A.t(A.lP(n.lock(m),t.z),$async$Hr) +case 16:q=!0 +s=1 +break +p=2 +s=15 +break +case 13:p=12 +i=o +l=A.cR(!1,t.y) +q=l +s=1 +break +s=15 +break +case 12:s=2 +break +case 15:case 11:case 8:case 6:case 4:q=!1 +s=1 +break +case 1:return A.w(q,r) +case 2:return A.v(o,r)}}) +return A.x($async$Hr,r)}} +A.azr.prototype={ +$1(a){return this.a.warn(a)}, +$S:12} +A.azt.prototype={ +$1(a){a.toString +return A.bm(a)}, +$S:340} +A.a2L.prototype={ +gaP(a){return A.ep(this.b.status)}, +gaGQ(){var s=this.b.headers,r=s.get("Content-Length") +if(r==null)r=null +if(r==null)return null +return A.me(r,null)}, +gM_(){var s=this.b,r=A.ep(s.status)>=200&&A.ep(s.status)<300,q=A.ep(s.status),p=A.ep(s.status),o=A.ep(s.status)>307&&A.ep(s.status)<400 +return r||q===0||p===304||o}, +gBg(){var s=this +if(!s.gM_())throw A.c(new A.a2K(s.a,s.gaP(s))) +return new A.aGH(s.b)}, +$ibs5:1} +A.aGH.prototype={ +ae(a,b,c){var s=0,r=A.y(t.H),q=this,p,o,n +var $async$ae=A.u(function(d,e){if(d===1)return A.v(e,r) +while(true)switch(s){case 0:n=q.a.body.getReader() +p=t.e +case 2:if(!!0){s=3 +break}s=4 +return A.t(A.lP(n.read(),p),$async$ae) +case 4:o=e +if(o.done){s=3 +break}b.$1(c.a(o.value)) +s=2 +break +case 3:return A.w(null,r)}}) +return A.x($async$ae,r)}, +wP(){var s=0,r=A.y(t.pI),q,p=this,o +var $async$wP=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:s=3 +return A.t(A.lP(p.a.arrayBuffer(),t.X),$async$wP) +case 3:o=b +o.toString +q=t.pI.a(o) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$wP,r)}} +A.a2K.prototype={ +l(a){return'Flutter Web engine failed to fetch "'+this.a+'". HTTP request succeeded, but the server responded with HTTP status '+this.b+"."}, +$icv:1} +A.KY.prototype={ +l(a){return'Flutter Web engine failed to complete HTTP request to fetch "'+this.a+'": '+A.i(this.b)}, +$icv:1} +A.a13.prototype={} +A.JU.prototype={} +A.bgs.prototype={ +$2(a,b){this.a.$2(J.j6(a,t.e),b)}, +$S:372} +A.bfZ.prototype={ +$1(a){var s=A.dR(a,0,null) +if(B.aqr.p(0,B.b.gX(s.gxS())))return s.l(0) +self.window.console.error("URL rejected by TrustedTypes policy flutter-engine: "+a+"(download prevented)") +return null}, +$S:378} +A.agd.prototype={ +v(){var s=++this.b,r=this.a +if(s>r.length)throw A.c(A.R("Iterator out of bounds")) +return s"))}, +gt(a){return B.e.au(this.a.length)}} +A.agi.prototype={ +v(){var s=++this.b,r=this.a +if(s>r.length)throw A.c(A.R("Iterator out of bounds")) +return s"))}, +gt(a){return B.e.au(this.a.length)}} +A.a12.prototype={ +gG(a){var s=this.b +s===$&&A.b() +return s}, +v(){var s=this.a.next() +if(s.done)return!1 +this.b=this.$ti.c.a(s.value) +return!0}} +A.a2_.prototype={ +a7t(a){var s,r=this +if(!J.j(a,r.e)){s=r.e +if(s!=null)s.remove() +r.e=a +s=r.b +s.toString +a.toString +s.append(a)}}, +gasu(){var s=this.w +s===$&&A.b() +return s}, +aea(){var s,r=this.d.style +$.eA() +s=$.dn().d +if(s==null){s=self.window.devicePixelRatio +if(s===0)s=1}A.Q(r,"transform","scale("+A.i(1/s)+")")}, +ax9(a){var s +this.aea() +s=$.fV() +if(!B.pe.p(0,s)&&!$.eA().aLI()&&$.arP().c){$.eA().a8w(!0) +$.bO().VY()}else{s=$.eA() +s.wY() +s.a8w(!1) +$.bO().VY()}}, +aFj(a){var s,r=this,q=$.dD(),p=r.c +if(p==null){s=A.c8(self.document,"flt-svg-filters") +A.Q(s.style,"visibility","hidden") +if(q===B.al){q=r.f +q===$&&A.b() +r.a.a7N(s,q)}else{q=r.w +q===$&&A.b() +q.insertBefore(s,q.firstChild)}r.c=s +q=s}else q=p +q.append(a)}, +Bo(a){if(a==null)return +a.remove()}} +A.aBw.prototype={} +A.a8N.prototype={} +A.z9.prototype={} +A.am8.prototype={} +A.aSl.prototype={ +eo(a){var s,r,q=this,p=q.F2$ +p=p.length===0?q.a:B.b.gX(p) +s=q.tC$ +r=new A.dp(new Float32Array(16)) +r.c6(s) +q.aa7$.push(new A.am8(p,r))}, +dg(a){var s,r,q,p=this,o=p.aa7$ +if(o.length===0)return +s=o.pop() +p.tC$=s.b +o=p.F2$ +r=s.a +q=p.a +while(!0){if(!!J.j(o.length===0?q:B.b.gX(o),r))break +o.pop()}}, +bi(a,b,c){this.tC$.bi(0,b,c)}, +iT(a,b,c){this.tC$.iT(0,b,c)}, +u3(a,b){this.tC$.ady(0,B.Ns,b)}, +a5(a,b){this.tC$.eN(0,new A.dp(b))}} +A.bi2.prototype={ +$1(a){$.bmU=!1 +$.bO().q_("flutter/system",$.bCA(),new A.bi1())}, +$S:47} +A.bi1.prototype={ +$1(a){}, +$S:46} +A.aDH.prototype={ +aIF(a,b){var s,r,q,p,o,n=this,m=A.aW(t.S) +for(s=new A.aSe(a),r=n.d,q=n.c;s.v();){p=s.d +if(!(p<160||r.p(0,p)||q.p(0,p)))m.F(0,p)}if(m.a===0)return +o=A.a8(m,!0,m.$ti.c) +if(n.a.afw(o,b).length!==0)n.aFg(o)}, +aFg(a){var s=this +s.at.I(0,a) +if(!s.ax){s.ax=!0 +s.Q=A.xo(B.B,new A.aDP(s),t.H)}}, +aqY(){var s,r +this.ax=!1 +s=this.at +if(s.a===0)return +r=A.a8(s,!0,A.l(s).c) +s.ab(0) +this.aJ4(r)}, +aJ4(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=A.a([],t.t),d=A.a([],t.XS),c=t.Qg,b=A.a([],c) +for(s=a.length,r=t.Ie,q=0;qr){B.b.ab(k) +k.push(o) +r=o.e +q=o}else if(n===r){k.push(o) +if(o.d1)if(B.b.EO(k,new A.aDO(l))){s=self.window.navigator.language +if(s==="zh-Hans"||s==="zh-CN"||s==="zh-SG"||s==="zh-MY"){m=l.f +if(B.b.p(k,m))q=m}else if(s==="zh-Hant"||s==="zh-TW"||s==="zh-MO"){m=l.r +if(B.b.p(k,m))q=m}else if(s==="zh-HK"){m=l.w +if(B.b.p(k,m))q=m}else if(s==="ja"){m=l.x +if(B.b.p(k,m))q=m}else if(s==="ko"){m=l.y +if(B.b.p(k,m))q=m}else{m=l.f +if(B.b.p(k,m))q=m}}else{m=l.z +if(B.b.p(k,m))q=m +else{m=l.f +if(B.b.p(k,m))q=m}}q.toString +return q}, +apW(a){var s,r,q,p=A.a([],t.XS) +for(s=a.split(","),r=s.length,q=0;q=q[r])s=r+1 +else p=r}}} +A.a1H.prototype={ +aQz(){var s=this.f +if(s==null)return A.cR(null,t.H) +else return s.a}, +F(a,b){var s,r,q=this +if(q.c.p(0,b)||q.d.aq(0,b.b))return +s=q.d +r=s.a +s.n(0,b.b,b) +if(q.f==null)q.f=new A.aD(new A.a7($.ac,t.b),t.gR) +if(r===0)A.d0(B.B,q.gOy())}, +um(){var s=0,r=A.y(t.H),q=this,p,o,n,m,l,k,j,i +var $async$um=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:j=A.I(t.N,t.uz) +i=A.a([],t.s) +for(p=q.d,o=p.gbp(p),n=A.l(o),n=n.h("@<1>").V(n.z[1]),o=new A.bT(J.al(o.a),o.b,n.h("bT<1,2>")),m=t.H,n=n.z[1];o.v();){l=o.a +if(l==null)l=n.a(l) +j.n(0,l.b,A.Cx(new A.aCv(q,l,i),m))}s=2 +return A.t(A.qv(j.gbp(j),m),$async$um) +case 2:B.b.lY(i) +for(o=i.length,n=q.a,m=n.as,k=0;k").V(s.z[1]),o=new A.bT(J.al(o.a),o.b,s.h("bT<1,2>")),s=s.z[1];o.v();){r=o.a +for(r=J.al(r==null?s.a(r):r);r.v();){q=r.gG(r) +q.b.$1(q.a)}}p.b=p.a +p.a=null}, +a_r(a,b){var s,r=this,q=r.a +if(q==null)q=r.a=A.I(t.N,r.$ti.h("f>")) +s=q.i(0,a) +if(s==null){s=A.a([],r.$ti.h("H>")) +q.n(0,a,s) +q=s}else q=s +q.push(b)}, +aPi(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).k0(s,0) +this.a_r(a,r) +return r.a}} +A.G8.prototype={} +A.MP.prototype={ +gkm(){return this.cx}, +wM(a){var s=this +s.Ct(a) +s.cx=a.cx +s.cy=a.cy +s.db=a.db +a.cx=null}, +bI(a){var s,r=this,q="transform-origin",p=r.tq("flt-backdrop") +A.Q(p.style,q,"0 0 0") +s=A.c8(self.document,"flt-backdrop-interior") +r.cx=s +A.Q(s.style,"position","absolute") +s=r.tq("flt-backdrop-filter") +r.cy=s +A.Q(s.style,q,"0 0 0") +s=r.cy +s.toString +p.append(s) +s=r.cx +s.toString +p.append(s) +return p}, +oX(){var s=this +s.yI() +$.hB.Bo(s.db) +s.cy=s.cx=s.db=null}, +hu(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=t.m1.a(g.CW) +$.hB.Bo(g.db) +g.db=null +s=g.fr +r=g.f +if(s!=r){r.toString +q=new A.dp(new Float32Array(16)) +if(q.j6(r)===0)A.r(A.fh(r,"other","Matrix cannot be inverted")) +g.dy=q +g.fr=g.f}s=$.eA() +p=$.dn().d +if(p==null){r=self.window.devicePixelRatio +p=r===0?1:r}r=g.dy +r===$&&A.b() +o=A.bin(r,new A.L(0,0,s.gnG().a*p,s.gnG().b*p)) +n=o.a +m=o.b +l=o.c-n +k=o.d-m +j=g.e +for(;j!=null;){if(j.gFs()){i=g.dx=j.w +n=i.a +m=i.b +l=i.c-n +k=i.d-m +break}j=j.e}h=g.cy.style +A.Q(h,"position","absolute") +A.Q(h,"left",A.i(n)+"px") +A.Q(h,"top",A.i(m)+"px") +A.Q(h,"width",A.i(l)+"px") +A.Q(h,"height",A.i(k)+"px") +s=$.dD() +if(s===B.cX){A.Q(h,"background-color","#000") +A.Q(h,"opacity","0.2")}else{if(s===B.al){s=g.cy +s.toString +A.fF(s,"-webkit-backdrop-filter",f.gLJ())}s=g.cy +s.toString +A.fF(s,"backdrop-filter",f.gLJ())}}, +bZ(a,b){var s=this +s.rQ(0,b) +if(!s.CW.k(0,b.CW))s.hu() +else s.a07()}, +a07(){var s=this.e +for(;s!=null;){if(s.gFs()){if(!J.j(s.w,this.dx))this.hu() +break}s=s.e}}, +ro(){this.aiB() +this.a07()}, +$iatB:1} +A.q_.prototype={ +ste(a,b){var s,r,q=this +q.a=b +s=B.e.eC(b.a)-1 +r=B.e.eC(q.a.b)-1 +if(q.z!==s||q.Q!==r){q.z=s +q.Q=r +q.a6M()}}, +a6M(){A.Q(this.c.style,"transform","translate("+this.z+"px, "+this.Q+"px)")}, +a5a(){var s=this,r=s.a,q=r.a +r=r.b +s.d.bi(0,-q+(q-1-s.z)+1,-r+(r-1-s.Q)+1)}, +a9I(a,b){return this.r>=A.aut(a.c-a.a)&&this.w>=A.aus(a.d-a.b)&&this.ay===b}, +ab(a){var s,r,q,p,o,n=this +n.at=!1 +n.d.ab(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.WN(b,a,n+i,k,i,0,4.71238898038469,6.283185307179586,!1) +a=m-d +b.lineTo(o,a) +A.WN(b,o-f,a,f,d,0,0,1.5707963267948966,!1) +a=p+g +b.lineTo(a,m) +A.WN(b,a,m-e,g,e,0,1.5707963267948966,3.141592653589793,!1) +a=n+h +b.lineTo(p,a) +A.WN(b,p+j,a,j,h,0,3.141592653589793,4.71238898038469,!1) +a1.gew().kC(c) +a1.gew().u4()}}, +Ao(a,b){var s,r,q,p,o,n,m=this.d +if(this.K5(b)){a=A.WG(a,b) +s=A.WH(a,b,"draw-oval",m.c) +m=a.a +r=a.b +this.CP(s,new A.m(m,r),b) +A.Q(s.style,"border-radius",A.i((a.c-m)/2)+"px / "+A.i((a.d-r)/2)+"px")}else{m.gew().rI(b,a) +r=b.b +m.gc9(m).beginPath() +q=m.gew().Q +p=q==null +o=p?a.gbM().a:a.gbM().a-q.a +n=p?a.gbM().b:a.gbM().b-q.b +A.WN(m.gc9(m),o,n,(a.c-a.a)/2,(a.d-a.b)/2,0,0,6.283185307179586,!1) +m.gew().kC(r) +m.gew().u4()}}, +fZ(a,b,c){var s,r,q,p,o,n,m,l,k=this +if(k.Te(c)){s=A.WG(A.nx(a,b),c) +r=A.WH(s,c,"draw-circle",k.d.c) +k.CP(r,new A.m(s.a,s.b),c) +A.Q(r.style,"border-radius","50%")}else{q=c.w!=null?A.nx(a,b):null +p=k.d +p.gew().rI(c,q) +q=c.b +p.gc9(p).beginPath() +o=p.gew().Q +n=o==null +m=a.a +m=n?m:m-o.a +l=a.b +l=n?l:l-o.b +A.WN(p.gc9(p),m,l,b,b,0,0,6.283185307179586,!1) +p.gew().kC(q) +p.gew().u4()}}, +e3(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=this +if(h.K5(b)){s=h.d +r=s.c +t.Ci.a(a) +q=a.a.Yn() +if(q!=null){h.ey(q,b) +return}p=a.a +o=p.ax?p.a1V():null +if(o!=null){h.d5(o,b) +return}n=A.bys() +p=A.b1("visible") +if(p==null)p=t.K.a(p) +n.setAttribute("overflow",p) +p=self.document.createElementNS("http://www.w3.org/2000/svg","path") +n.append(p) +m=b.b +if(m!==B.ai)if(m!==B.bj){m=b.c +m=m!==0&&m!=null}else m=!1 +else m=!0 +l=b.r +if(m){m=A.b1(A.fd(l)) +if(m==null)m=t.K.a(m) +p.setAttribute("stroke",m) +m=b.c +m=A.b1(A.i(m==null?1:m)) +if(m==null)m=t.K.a(m) +p.setAttribute("stroke-width",m) +m=b.d +if(m!=null){m=A.b1(A.i(A.bzC(m))) +if(m==null)m=t.K.a(m) +p.setAttribute("stroke-linecap",m)}m=A.b1("none") +if(m==null)m=t.K.a(m) +p.setAttribute("fill",m)}else{m=A.b1(A.fd(l)) +if(m==null)m=t.K.a(m) +p.setAttribute("fill",m)}if(a.b===B.fI){m=A.b1("evenodd") +if(m==null)m=t.K.a(m) +p.setAttribute("fill-rule",m)}m=A.b1(A.bzh(a.a,0,0)) +if(m==null)m=t.K.a(m) +p.setAttribute("d",m) +if(s.b==null){k=n.style +A.Q(k,"position","absolute") +if(!r.Fu(0)){A.Q(k,"transform",A.mL(r.a)) +A.Q(k,"transform-origin","0 0 0")}}if(b.x!=null){s=b.b +j=A.fd(b.r) +i=b.x.b +p=$.dD() +if(p===B.al&&s!==B.ai)A.Q(n.style,"box-shadow","0px 0px "+A.i(i*2)+"px "+j) +else A.Q(n.style,"filter","blur("+A.i(i)+"px)")}h.CP(n,B.i,b)}else{s=b.w!=null?a.kO(0):null +p=h.d +p.gew().rI(b,s) +s=b.b +if(s==null&&b.c!=null)p.e3(a,B.ai) +else p.e3(a,s) +p.gew().u4()}}, +xc(a,b,c,d){var s,r,q,p,o,n=this.d,m=A.bTQ(a.kO(0),c) +if(m!=null){s=(B.e.bg(0.3*(b.gj(b)>>>24&255))&255)<<24|b.gj(b)&16777215 +r=A.bTJ(s>>>16&255,s>>>8&255,s&255,255) +n.gc9(n).save() +q=n.gc9(n) +q.globalAlpha=(s>>>24&255)/255 +if(d){s=$.dD() +s=s!==B.al}else s=!1 +q=m.b +p=m.a +o=q.a +q=q.b +if(s){n.gc9(n).translate(o,q) +A.bk6(n.gc9(n),A.bz6(new A.ye(B.a4,p))) +A.azq(n.gc9(n),"") +A.azp(n.gc9(n),r)}else{A.bk6(n.gc9(n),"none") +A.azq(n.gc9(n),"") +A.azp(n.gc9(n),r) +n.gc9(n).shadowBlur=p +A.bk7(n.gc9(n),r) +A.bk8(n.gc9(n),o) +A.bk9(n.gc9(n),q)}n.zl(n.gc9(n),a) +A.azo(n.gc9(n),null) +n.gc9(n).restore()}}, +Su(a){var s,r,q,p=a.a,o=A.bka(p) +o.toString +s=this.b +if(s!=null){r=s.aPi(o) +if(r!=null)return r}if(!a.b){a.b=!0 +A.Q(p.style,"position","absolute")}q=A.azu(p,!0) +p=this.b +if(p!=null)p.a_r(o,new A.G8(q,A.bRj(),p.$ti.h("G8<1>"))) +return q}, +a15(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h=this +t.gc.a(a) +s=c.a +r=A.bU7(c.z) +if(r instanceof A.M9)q=h.apO(a,r.b,r.c,c) +else if(r instanceof A.aK2){p=A.bYr(r.b) +o=p.b +h.c.append(o) +h.f.push(o) +q=h.Su(a) +A.Q(q.style,"filter","url(#"+p.a+")")}else q=h.Su(a) +o=q.style +n=A.bgb(s) +A.Q(o,"mix-blend-mode",n==null?"":n) +if(h.ax&&!0){o=h.d +o.gew().rI(c,null) +o.gc9(o).drawImage(q,b.a,b.b) +o.gew().u4()}else{o=h.d +if(o.b!=null){n=q.style +n.removeProperty("width") +n.removeProperty("height") +n=o.b +n.toString +m=A.bmN(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.gX(s) instanceof A.MI)s.pop() +else s.push(B.Sx);--q.r}, +bi(a,b,c){var s=this.a,r=s.a +if(b!==0||c!==0)r.x=!1 +r.y.bi(0,b,c) +s.c.push(new A.a7_(b,c))}, +iT(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.rC(0,b,s,1) +r.c.push(new A.a6Y(b,s)) +return null}, +u3(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.a6X(b))}, +a5(a,b){var s=A.X_(b),r=this.a,q=r.a +q.y.eN(0,new A.dp(s)) +q.x=q.y.Fu(0) +r.c.push(new A.a6Z(s))}, +E9(a,b,c){this.a.tj(a,b)}, +uV(a){return this.E9(a,B.f7,!0)}, +a8n(a,b){return this.E9(a,B.f7,b)}, +KN(a,b){var s=this.a,r=new A.a6J(a) +s.a.tj(new A.L(a.a,a.b,a.c,a.d),r) +s.d.c=!0 +s.c.push(r)}, +wV(a){return this.KN(a,!0)}, +KM(a,b,c){var s,r=this.a +t.Ci.a(b) +s=new A.a6I(b) +r.a.tj(b.kO(0),s) +r.d.c=!0 +r.c.push(s)}, +oT(a,b){return this.KM(a,b,!0)}, +j8(a,b,c){var s,r,q,p,o,n,m=this.a +t.Vh.a(c) +s=Math.max(A.HN(c),1) +c.b=!0 +r=new A.a6O(a,b,c.a) +q=a.a +p=b.a +o=a.b +n=b.b +m.a.yl(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)}, +Ap(a){var s,r,q=this.a +t.Vh.a(a) +a.b=q.e=q.d.c=!0 +s=new A.a6Q(a.a) +r=q.a +r.ug(r.a,s) +q.c.push(s)}, +ey(a,b){this.a.ey(a,t.Vh.a(b))}, +d5(a,b){this.a.d5(a,t.Vh.a(b))}, +An(a,b,c){this.a.An(a,b,t.Vh.a(c))}, +Ao(a,b){var s,r,q,p=this.a +t.Vh.a(b) +p.e=p.d.c=!0 +s=A.HN(b) +b.b=!0 +r=new A.a6P(a,b.a) +q=p.a +if(s!==0)q.ug(a.e6(s),r) +else q.ug(a,r) +p.c.push(r)}, +fZ(a,b,c){var s,r,q,p,o,n=this.a +t.Vh.a(c) +n.e=n.d.c=!0 +s=A.HN(c) +c.b=!0 +r=new A.a6L(a,b,c.a) +q=b+s +p=a.a +o=a.b +n.a.yl(p-q,o-q,p+q,o+q,r) +n.c.push(r)}, +UV(a,b,c,d,e){var s,r=$.au().d1() +if(c<=-6.283185307179586){r.uP(0,a,b,-3.141592653589793,!0) +b-=3.141592653589793 +r.uP(0,a,b,-3.141592653589793,!1) +b-=3.141592653589793 +c+=6.283185307179586 +s=!1}else s=!0 +for(;c>=6.283185307179586;s=!1){r.uP(0,a,b,3.141592653589793,s) +b+=3.141592653589793 +r.uP(0,a,b,3.141592653589793,!1) +b+=3.141592653589793 +c-=6.283185307179586}r.uP(0,a,b,c,s) +this.a.e3(r,t.Vh.a(e))}, +e3(a,b){this.a.e3(a,t.Vh.a(b))}, +tv(a,b,c,d){var s,r,q=this.a +t.Vh.a(d) +s=q.d +d.b=q.e=s.a=s.c=!0 +r=new A.a6N(a,b,c,d.a) +q.a.ug(c,r) +q.c.push(r)}, +v6(a,b){this.a.v6(a,b)}, +xc(a,b,c,d){var s,r,q=this.a +q.e=q.d.c=!0 +s=A.bTO(a.kO(0),c) +r=new A.a6V(t.Ci.a(a),b,c,d) +q.a.ug(s,r) +q.c.push(r)}} +A.Ro.prototype={ +gkm(){return this.lj$}, +bI(a){var s=this.tq("flt-clip"),r=A.c8(self.document,"flt-clip-interior") +this.lj$=r +A.Q(r.style,"position","absolute") +r=this.lj$ +r.toString +s.append(r) +return s}, +a7A(a,b){var s +if(b!==B.n){s=a.style +A.Q(s,"overflow","hidden") +A.Q(s,"z-index","0")}}} +A.MR.prototype={ +pm(){var s=this +s.f=s.e.f +if(s.CW!==B.n)s.w=s.cx +else s.w=null +s.r=null}, +bI(a){var s=this.a_5(0),r=A.b1("rect") +if(r==null)r=t.K.a(r) +s.setAttribute("clip-type",r) +return s}, +hu(){var s,r=this,q=r.d.style,p=r.cx,o=p.a +A.Q(q,"left",A.i(o)+"px") +s=p.b +A.Q(q,"top",A.i(s)+"px") +A.Q(q,"width",A.i(p.c-o)+"px") +A.Q(q,"height",A.i(p.d-s)+"px") +p=r.d +p.toString +r.a7A(p,r.CW) +p=r.lj$.style +A.Q(p,"left",A.i(-o)+"px") +A.Q(p,"top",A.i(-s)+"px")}, +bZ(a,b){var s=this +s.rQ(0,b) +if(!s.cx.k(0,b.cx)||s.CW!==b.CW){s.w=null +s.hu()}}, +gFs(){return!0}, +$iaxa:1} +A.a74.prototype={ +pm(){var s,r=this +r.f=r.e.f +if(r.cx!==B.n){s=r.CW +r.w=new A.L(s.a,s.b,s.c,s.d)}else r.w=null +r.r=null}, +bI(a){var s=this.a_5(0),r=A.b1("rrect") +if(r==null)r=t.K.a(r) +s.setAttribute("clip-type",r) +return s}, +hu(){var s,r=this,q=r.d.style,p=r.CW,o=p.a +A.Q(q,"left",A.i(o)+"px") +s=p.b +A.Q(q,"top",A.i(s)+"px") +A.Q(q,"width",A.i(p.c-o)+"px") +A.Q(q,"height",A.i(p.d-s)+"px") +A.Q(q,"border-top-left-radius",A.i(p.e)+"px") +A.Q(q,"border-top-right-radius",A.i(p.r)+"px") +A.Q(q,"border-bottom-right-radius",A.i(p.x)+"px") +A.Q(q,"border-bottom-left-radius",A.i(p.z)+"px") +p=r.d +p.toString +r.a7A(p,r.cx) +p=r.lj$.style +A.Q(p,"left",A.i(-o)+"px") +A.Q(p,"top",A.i(-s)+"px")}, +bZ(a,b){var s=this +s.rQ(0,b) +if(!s.CW.k(0,b.CW)||s.cx!==b.cx){s.w=null +s.hu()}}, +gFs(){return!0}, +$iax9:1} +A.MQ.prototype={ +bI(a){return this.tq("flt-clippath")}, +pm(){var s=this +s.aiA() +if(s.cx!==B.n){if(s.w==null)s.w=s.CW.kO(0)}else s.w=null}, +hu(){var s=this,r=s.cy +if(r!=null)r.remove() +r=s.d +r.toString +r=A.byt(r,s.CW) +s.cy=r +s.d.append(r)}, +bZ(a,b){var s,r=this +r.rQ(0,b) +if(b.CW!==r.CW){r.w=null +s=b.cy +if(s!=null)s.remove() +r.hu()}else r.cy=b.cy +b.cy=null}, +oX(){var s=this.cy +if(s!=null)s.remove() +this.cy=null +this.yI()}, +gFs(){return!0}, +$iax7:1} +A.aYx.prototype={ +Hp(a,b){var s,r,q,p,o=self.document.createElementNS("http://www.w3.org/2000/svg","feColorMatrix"),n=o.type +n.toString +A.aSf(n,1) +n=o.result +n.toString +A.uO(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)}, +ys(a,b,c){var s=self.document.createElementNS("http://www.w3.org/2000/svg","feFlood"),r=A.b1(a) +if(r==null)r=t.K.a(r) +s.setAttribute("flood-color",r) +r=A.b1(b) +if(r==null)r=t.K.a(r) +s.setAttribute("flood-opacity",r) +r=s.result +r.toString +A.uO(r,c) +this.c.append(s)}, +Ho(a,b,c){var s=self.document.createElementNS("http://www.w3.org/2000/svg","feBlend"),r=s.in1 +r.toString +A.uO(r,a) +r=s.in2 +r.toString +A.uO(r,b) +r=s.mode +r.toString +A.aSf(r,c) +this.c.append(s)}, +vY(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.uO(r,a) +r=s.in2 +r.toString +A.uO(r,b) +r=s.operator +r.toString +A.aSf(r,g) +if(c!=null){r=s.k1 +r.toString +A.aSg(r,c)}if(d!=null){r=s.k2 +r.toString +A.aSg(r,d)}if(e!=null){r=s.k3 +r.toString +A.aSg(r,e)}if(f!=null){r=s.k4 +r.toString +A.aSg(r,f)}r=s.result +r.toString +A.uO(r,h) +this.c.append(s)}, +Cd(a,b,c,d){return this.vY(a,b,null,null,null,null,c,d)}, +vZ(a,b,c,d){var s=self.document.createElementNS("http://www.w3.org/2000/svg","feImage"),r=s.href +r.toString +A.uO(r,b) +r=s.result +r.toString +A.uO(r,c) +r=$.dD() +if(r!==B.al){s.x.baseVal.newValueSpecifiedUnits(1,0) +s.y.baseVal.newValueSpecifiedUnits(1,0) +s.width.baseVal.newValueSpecifiedUnits(1,d) +s.height.baseVal.newValueSpecifiedUnits(1,a)}this.c.append(s)}, +aO(){var s=this.b +s.append(this.c) +return new A.aYw(this.a,s)}} +A.aYw.prototype={} +A.azm.prototype={ +tj(a,b){throw A.c(A.d1(null))}, +wV(a){throw A.c(A.d1(null))}, +oT(a,b){throw A.c(A.d1(null))}, +j8(a,b,c){throw A.c(A.d1(null))}, +Ap(a){throw A.c(A.d1(null))}, +ey(a,b){var s +a=A.WG(a,b) +s=this.F2$ +s=s.length===0?this.a:B.b.gX(s) +s.append(A.WH(a,b,"draw-rect",this.tC$))}, +d5(a,b){var s,r=A.WH(A.WG(new A.L(a.a,a.b,a.c,a.d),b),b,"draw-rrect",this.tC$) +A.bya(r.style,a) +s=this.F2$ +s=s.length===0?this.a:B.b.gX(s) +s.append(r)}, +Ao(a,b){throw A.c(A.d1(null))}, +fZ(a,b,c){throw A.c(A.d1(null))}, +e3(a,b){throw A.c(A.d1(null))}, +xc(a,b,c,d){throw A.c(A.d1(null))}, +tv(a,b,c,d){throw A.c(A.d1(null))}, +v6(a,b){var s=A.byy(a,b,this.tC$),r=this.F2$ +r=r.length===0?this.a:B.b.gX(r) +r.append(s)}, +At(){}} +A.MS.prototype={ +pm(){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.dp(new Float32Array(16)) +s.c6(o) +p.f=s +s.bi(0,r,q)}p.r=null}, +gB2(){var s,r=this.cy +if(r==null){r=this.cx +s=A.fL() +s.rH(-r.a,-r.b,0) +this.cy=s +r=s}return r}, +gkm(){return this.dx}, +wM(a){this.Ct(a) +this.db=a.db +this.dx=a.dx +a.dx=a.db=null}, +oX(){var s=this +s.yI() +$.hB.Bo(s.db) +s.dx=s.db=null}, +bI(a){var s="position",r="absolute",q="transform-origin",p=this.tq("flt-image-filter"),o=this.tq("flt-image-filter-interior") +A.fF(o,s,r) +A.fF(o,q,"0 0 0") +A.fF(p,s,r) +A.fF(p,q,"0 0 0") +this.dx=o +p.appendChild(o) +return p}, +hu(){var s,r,q=this,p=t.m1.a(q.CW) +$.hB.Bo(q.db) +q.db=null +A.Q(q.dx.style,"filter",p.gLJ()) +A.Q(q.dx.style,"transform",p.gaQ1()) +s=q.d.style +r=q.cx +A.Q(s,"left",A.i(r.a)+"px") +A.Q(s,"top",A.i(r.b)+"px")}, +bZ(a,b){var s=this +s.rQ(0,b) +if(!b.CW.k(0,s.CW)||!b.cx.k(0,s.cx))s.hu()}, +$iaGY:1} +A.MT.prototype={ +pm(){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.dp(new Float32Array(16)) +r.c6(p) +q.f=r +r.bi(0,s,q.cx)}q.r=null}, +gB2(){var s=this,r=s.cy +if(r==null){r=A.fL() +r.rH(-s.CW,-s.cx,0) +s.cy=r}return r}, +bI(a){var s=A.c8(self.document,"flt-offset") +A.fF(s,"position","absolute") +A.fF(s,"transform-origin","0 0 0") +return s}, +hu(){A.Q(this.d.style,"transform","translate("+A.i(this.CW)+"px, "+A.i(this.cx)+"px)")}, +bZ(a,b){var s=this +s.rQ(0,b) +if(b.CW!==s.CW||b.cx!==s.cx)s.hu()}, +$iaMw:1} +A.MU.prototype={ +pm(){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.dp(new Float32Array(16)) +s.c6(o) +p.f=s +s.bi(0,r,q)}p.r=null}, +gB2(){var s,r=this.cy +if(r==null){r=this.cx +s=A.fL() +s.rH(-r.a,-r.b,0) +this.cy=s +r=s}return r}, +bI(a){var s=A.c8(self.document,"flt-opacity") +A.fF(s,"position","absolute") +A.fF(s,"transform-origin","0 0 0") +return s}, +hu(){var s,r=this.d +r.toString +A.fF(r,"opacity",A.i(this.CW/255)) +s=this.cx +A.Q(r.style,"transform","translate("+A.i(s.a)+"px, "+A.i(s.b)+"px)")}, +bZ(a,b){var s=this +s.rQ(0,b) +if(s.CW!==b.CW||!s.cx.k(0,b.cx))s.hu()}, +$iaMy:1} +A.Fa.prototype={ +suR(a){var s=this +if(s.b){s.a=s.a.hx(0) +s.b=!1}s.a.a=a}, +gcA(a){var s=this.a.b +return s==null?B.bj:s}, +scA(a,b){var s=this +if(s.b){s.a=s.a.hx(0) +s.b=!1}s.a.b=b}, +geu(){var s=this.a.c +return s==null?0:s}, +seu(a){var s=this +if(s.b){s.a=s.a.hx(0) +s.b=!1}s.a.c=a}, +sw5(a){var s=this +if(s.b){s.a=s.a.hx(0) +s.b=!1}s.a.d=a}, +sOE(a){var s=this +if(s.b){s.a=s.a.hx(0) +s.b=!1}s.a.e=a}, +sMf(a){var s=this +if(s.b){s.a=s.a.hx(0) +s.b=!1}s.a.f=!1}, +gaf(a){return new A.e(this.a.r)}, +saf(a,b){var s=this +if(s.b){s.a=s.a.hx(0) +s.b=!1}s.a.r=b.gj(b)}, +sMb(a){}, +sCh(a){var s=this +if(s.b){s.a=s.a.hx(0) +s.b=!1}s.a.w=a}, +sMs(a){var s=this +if(s.b){s.a=s.a.hx(0) +s.b=!1}s.a.x=a}, +svm(a){var s=this +if(s.b){s.a=s.a.hx(0) +s.b=!1}s.a.y=a}, +sa8p(a){var s=this +if(s.b){s.a=s.a.hx(0) +s.b=!1}s.a.z=a}, +l(a){var s,r,q=""+"Paint(",p=this.a.b,o=p==null +if((o?B.bj:p)===B.ai){q+=(o?B.bj:p).l(0) +p=this.a +o=p.c +s=o==null +if((s?0:o)!==0)q+=" "+A.i(s?0:o) +else q+=" hairline" +p=p.d +o=p==null +if((o?B.e9:p)!==B.e9)q+=" "+(o?B.e9:p).l(0) +r="; "}else r="" +p=this.a +if(!p.f){q+=r+"antialias off" +r="; "}p=p.r +q=(p!==4278190080?q+(r+new A.e(p).l(0)):q)+")" +return q.charCodeAt(0)==0?q:q}, +$iup:1} +A.aay.prototype={ +hx(a){var s=this,r=new A.aay() +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}, +l(a){return this.e2(0)}} +A.kv.prototype={ +XB(){var s,r,q,p,o,n,m,l,k,j=this,i=A.a([],t.yv),h=j.apt(0.25),g=B.f.aC4(1,h) +i.push(new A.m(j.a,j.b)) +if(h===5){s=new A.af8() +j.a0h(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.m(p,r.d) +i.push(o) +i.push(o) +i.push(o) +i.push(new A.m(q.e,q.f)) +g=2 +n=!0}else n=!1}else n=!1 +if(!n)A.bjH(j,h,i) +m=2*g+1 +k=0 +while(!0){if(!(k=0)s.c=-r +s.e=s.d=-1}, +qA(a){this.Ko(a,0,0)}, +IJ(){var s,r=this.a,q=r.w +for(r=r.r,s=0;s359){j=c4<0?-0.001953125:0.001953125 +i=p +do{i-=j +m=Math.cos(i) +l=Math.sin(i)}while(o===m&&n===l)}}h=c4>0?0:1 +g=c0/2 +f=(c2.d-c2.b)/2 +e=c2.gbM().a+g*Math.cos(p) +d=c2.gbM().b+f*Math.sin(p) +if(o===m&&n===l){if(c5)b9.fh(0,e,d) +else b9.Ry(e,d) +return}c=o*m+n*l +b=o*l-n*m +if(Math.abs(b)<=0.000244140625)if(c>0)if(!(b>=0&&h===0))c0=b<=0&&h===1 +else c0=!0 +else c0=!1 +else c0=!1 +if(c0){if(c5)b9.fh(0,e,d) +else b9.Ry(e,d) +return}c0=h===1 +if(c0)b=-b +if(0===b)a=2 +else if(0===c)a=b>0?1:3 +else{r=b<0 +a=r?2:0 +if(c<0!==r)++a}a0=A.a([],t.td) +for(a1=0;a11){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.d_(0,n,m) +return}a8=B.e.eV(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.e.eC(l)===l&&B.e.eC(k)===k&&B.e.eC(n)===n&&B.e.eC(m)===m +for(b3=a6,b4=0;b4=6.283185307179586||c<=-6.283185307179586){s=b/1.5707963267948966 +r=Math.floor(s+0.5) +if(Math.abs(s-r-0)<0.000244140625){q=r+1 +if(q<0)q+=4 +p=c>0?0:1 +this.Ph(a,p,B.e.au(q)) +return}}this.uP(0,a,b,c,!0)}, +fT(a1){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=g.IJ(),e=a1.a,d=a1.b,c=a1.c,b=a1.d,a=new A.L(e,d,c,b),a0=a1.e +if(a0===0||a1.f===0)if(a1.r===0||a1.w===0)if(a1.z===0||a1.Q===0)s=a1.x===0||a1.y===0 +else s=!1 +else s=!1 +else s=!1 +if(s||e>=c||d>=b)g.Ko(a,0,3) +else if(A.bVV(a1))g.Ph(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.beX(j,i,q,A.beX(l,k,q,A.beX(n,m,r,A.beX(p,o,r,1)))) +a0=b-h*j +g.fh(0,e,a0) +g.d_(0,e,d+h*l) +g.ko(e,d,e+h*p,d,0.707106781) +g.d_(0,c-h*o,d) +g.ko(c,d,c,d+h*k,0.707106781) +g.d_(0,c,b-h*i) +g.ko(c,b,c-h*m,b,0.707106781) +g.d_(0,e+h*n,b) +g.ko(e,b,e,a0,0.707106781) +g.ah(0) +g.e=f?0:-1 +e=g.a +e.ax=f +e.ch=!1 +e.CW=6}}, +Tw(a,b,c){this.aFh(b,c.a,c.b,null,0)}, +aFh(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.Ci.a(b4) +s=b4.a +if(s.w===0)return +if(s.k(0,b3.a)){s=A.blh() +r=b3.a +q=r.w +p=r.d +o=r.z +s.Q=!0 +s.cx=0 +s.Oz() +s.Sp(p) +s.Sq(q) +s.So(o) +B.M.qi(s.r,0,r.r) +B.i2.qi(s.f,0,r.f) +n=r.y +if(n==null)s.y=null +else{m=s.y +m.toString +B.i2.qi(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.v4(s,B.d8) +l.Q2(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.Kv(0,n) +else{j=new A.uu(n) +j.yO(n) +i=new Float32Array(8) +for(s=b7==null,h=2*(k-1),g=h+1,r=k===0,f=!0;e=j.fs(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.D2() +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.d_(0,i[0],i[1])}else{a3=b3.a.ov(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.d_(0,i[2],i[3]) +break +case 2:m=i[2] +c=i[3] +a=i[4] +a0=i[5] +a3=b3.a.ov(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.ko(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.D2() +a3=b3.a.ov(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.ah(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.aN7(p,r,q,new Float32Array(18)) +o.aEP() +n=B.fI===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.btj(a3.a,!0) +j=new Float32Array(18) +i=A.a([],t.yv) +p=k.a +h=!1 +do{g=i.length +switch(k.fs(0,j)){case 0:case 5:break +case 1:A.bYv(j,r,q,i) +break +case 2:A.bYw(j,r,q,i) +break +case 3:f=k.f +A.bYt(j,r,q,p.y[f],i) +break +case 4:A.bYu(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.k0(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.k0(i,e) +if(a!==i.length)i[a]=a2 +break}}}}while(!h) +return i.length!==0}, +dq(a){var s,r=a.a,q=a.b,p=this.a,o=A.bKC(p,r,q),n=p.e,m=new Uint8Array(n) +B.M.qi(m,0,p.r) +o=new A.DM(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.i2.qi(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.bi(0,r,q) +n=p.b +o.b=n==null?null:n.bi(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.v4(o,B.d8) +r.Q2(this) +return r}, +kO(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.kO(0) +if(!e1.Q&&e1.b!=null){e1=e1.b +e1.toString +return e1}r=new A.uu(e1) +r.yO(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.aMT(),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.aOw() +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.axx() +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.r1() +c1=a4-a +c2=s*(a2-a) +if(c0.vn(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.vn(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.ay_() +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.L(o,n,m,l):B.W +e0.a.kO(0) +return e0.a.b=d9}, +l(a){return this.e2(0)}, +$iDL:1} +A.aN6.prototype={ +Pr(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}}, +Id(){var s,r,q=this +if(q.e===1){q.e=2 +return new A.m(q.x,q.y)}s=q.a.f +r=q.Q +return new A.m(s[r-2],s[r-1])}, +fs(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.Pr(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.Pr(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.Id() +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.Id() +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.Id() +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.Id() +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.Pr(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.c(A.cn("Unsupport Path verb "+r,null,null))}return r}} +A.DM.prototype={ +oz(a,b,c){var s=a*2,r=this.f +r[s]=b +r[s+1]=c}, +mj(a){var s=this.f,r=a*2 +return new A.m(s[r],s[r+1])}, +Yn(){var s=this +if(s.ay)return new A.L(s.mj(0).a,s.mj(0).b,s.mj(1).a,s.mj(2).b) +else return s.w===4?s.aq7():null}, +kO(a){var s +if(this.Q)this.PY() +s=this.a +s.toString +return s}, +aq7(){var s,r,q,p,o,n,m,l,k=this,j=null,i=k.mj(0).a,h=k.mj(0).b,g=k.mj(1).a,f=k.mj(1).b +if(k.r[1]!==1||f!==h)return j +s=g-i +r=k.mj(2).a +q=k.mj(2).b +if(k.r[2]!==1||r!==g)return j +p=q-f +o=k.mj(3) +n=k.mj(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.L(m,l,m+Math.abs(s),l+Math.abs(p))}, +afQ(){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.L(r,q,p,o) +return null}, +a1V(){var s,r,q,p,o,n,m,l,k,j,i,h={},g=this.kO(0),f=A.a([],t.kG),e=new A.uu(this) +e.yO(this) +s=new Float32Array(8) +h.a=e.fs(0,s) +h.b=0 +for(;r=h.a=e.fs(0,s),r!==6;)if(3===r){q=s[2] +p=s[3] +o=q-s[0] +n=p-s[1] +m=s[4] +l=s[5] +if(o!==0){k=Math.abs(o) +j=Math.abs(l-p)}else{j=Math.abs(n) +k=n!==0?Math.abs(m-q):Math.abs(o)}f.push(new A.b8(k,j));++h.b}m=f[0] +l=f[1] +i=f[2] +return A.a7B(g,f[3],i,m,l)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.DM&&this.aII(b)}, +gu(a){var s=this +return A.X(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)}, +aII(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.i2.qi(r,0,q.f) +q.f=r}q.d=a}, +Sq(a){var s,r,q=this +if(a>q.e){s=a+8 +q.e=s +r=new Uint8Array(s) +B.M.qi(r,0,q.r) +q.r=r}q.w=a}, +So(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.i2.qi(r,0,s) +q.y=r}q.z=a}, +Kv(a,b){var s,r,q,p,o,n,m,l,k,j,i=this,h=b.d,g=i.d+h +i.Oz() +i.Sp(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.Sq(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.aVd.prototype={ +a9W(a){return(this.a*a+this.c)*a+this.e}, +a9X(a){return(this.b*a+this.d)*a+this.f}} +A.aN7.prototype={ +aEP(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=e.a,c=A.btj(d,!0) +for(s=e.f,r=t.td;q=c.fs(0,s),q!==6;)switch(q){case 0:case 5:break +case 1:e.app() +break +case 2:p=!A.btk(s)?A.bKD(s):0 +o=e.a0z(s[0],s[1],s[2],s[3],s[4],s[5]) +e.d+=p>0?o+e.a0z(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.btk(s) +f=A.a([],r) +new A.kv(m,l,k,j,i,h,n).aGl(f) +e.a0y(f[0]) +if(!g&&f.length===2)e.a0y(f[1]) +break +case 4:e.apl() +break}}, +app(){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.aN8(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.bLR(o)===q)q=0 +n.d+=q}, +a0z(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.aN8(o,p,a,b,e,f)){++k.e +return 0}if(p===s)return 0 +n=new A.r1() +if(0===n.vn(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 mg){s=h +r=g +q=-1}else{s=g +r=h +q=1}p=i.c +if(ps)return +o=i.b +if(A.aN8(o,p,a.a,h,a.e,g)){++i.e +return}if(p===s)return +n=a.r +m=a.d*n-p*n+p +l=new A.r1() +if(0===l.vn(g+(h-2*m),2*(m-h),h-p))k=q===1?a.a:a.e +else{j=l.a +j.toString +k=A.bG4(a.a,a.c,a.e,n,j)/A.bG3(n,j)}if(Math.abs(k-o)<0.000244140625)if(o!==a.e||p!==a.f){++i.e +return}p=i.d +i.d=p+(kq){p=b +o=q +n=-1}else{p=q +o=b +n=1}m=g.c +if(mp)return +l=g.b +if(A.aN8(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.byg(f,a0,m) +if(i==null)return +h=A.byA(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<$.rY.length;++m){l=$.rY[m] +$.dn() +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.e.eV(s*(g===0?1:g))+2){g=self.window.devicePixelRatio +f=l.w>=B.e.eV(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.E($.rY,o) +o.ste(0,a0) +o.b=c.fx +return o}d=A.bFk(a0,c.cy.b.d,c.dy) +d.b=c.fx +return d}, +a_H(){A.Q(this.d.style,"transform","translate("+A.i(this.CW)+"px, "+A.i(this.cx)+"px)")}, +hu(){this.a_H() +this.I1(null)}, +aO(){this.PZ(null) +this.fr=!0 +this.ZF()}, +bZ(a,b){var s,r,q=this +q.ZJ(0,b) +q.fx=b.fx +if(b!==q)b.fx=null +if(q.CW!==b.CW||q.cx!==b.cx)q.a_H() +q.PZ(b) +if(q.cy===b.cy){s=q.ch +r=s instanceof A.q_&&q.dy!==s.ay +if(q.fr||r)q.I1(b) +else q.ch=b.ch}else q.I1(b)}, +ro(){var s=this +s.ZI() +s.PZ(s) +if(s.fr)s.I1(s)}, +oX(){A.ar0(this.ch) +this.ch=null +this.ZG()}} +A.aNc.prototype={ +$0(){var s,r=this.a,q=r.fy +q.toString +s=r.ch=r.aru(q) +s.b=r.fx +q=r.d +q.toString +A.bnJ(q) +r.d.append(s.c) +s.ab(0) +q=r.cy.b +q.toString +r=r.fy +r.toString +q.TG(s,r) +s.At()}, +$S:0} +A.aQh.prototype={ +TG(a,b){var s,r,q,p,o,n,m,l,k,j +try{m=this.b +m.toString +m=A.bzt(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.HN(b2) +b2.b=!0 +a0=new A.a6M(b0,b1,b2.a) +q=$.au().d1() +q.sAG(B.fI) +q.fT(b0) +q.fT(b1) +q.ah(0) +a0.x=q +a1=Math.min(a5,a7) +a2=Math.max(a5,a7) +a3.a.yl(a1-a,Math.min(a6,a8)-a,a2+a,Math.max(a6,a8)+a,a0) +a3.c.push(a0)}, +e3(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.Ci.a(a) +s=a.a.Yn() +if(s!=null){b.ey(s,a0) +return}r=a.a +q=r.ax?r.a1V():null +if(q!=null){b.d5(q,a0) +return}p=a.a.afQ() +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.scA(0,B.bj) +b.ey(new A.L(n,k,n+g,k+h),a0) +return}}t.Ci.a(a) +if(a.a.w!==0){b.e=b.d.c=!0 +f=a.kO(0) +e=A.HN(a0) +if(e!==0)f=f.e6(e) +r=a.a +o=new A.DM(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.v4(o,B.d8) +d.Q2(a) +a0.b=!0 +c=new A.a6S(d,a0.a) +b.a.ug(f,c) +d.b=a.b +b.c.push(c)}}, +v6(a,b){var s,r,q,p,o=this +t.zI.a(a) +if(!a.e)return +o.e=!0 +s=o.d +s.c=!0 +s.b=!0 +r=new A.a6R(a,b) +q=a.gjC().z +s=b.a +p=b.b +o.a.yl(s+q.a,p+q.b,s+q.c,p+q.d,r) +o.c.push(r)}} +A.fa.prototype={} +A.K1.prototype={ +aLD(a){var s=this +if(s.a)return!0 +return s.ea.d||s.da.c}} +A.MI.prototype={ +hv(a){a.eo(0)}, +l(a){return this.e2(0)}} +A.a6W.prototype={ +hv(a){a.dg(0)}, +l(a){return this.e2(0)}} +A.a7_.prototype={ +hv(a){a.bi(0,this.a,this.b)}, +l(a){return this.e2(0)}} +A.a6Y.prototype={ +hv(a){a.iT(0,this.a,this.b)}, +l(a){return this.e2(0)}} +A.a6X.prototype={ +hv(a){a.u3(0,this.a)}, +l(a){return this.e2(0)}} +A.a6Z.prototype={ +hv(a){a.a5(0,this.a)}, +l(a){return this.e2(0)}} +A.a6K.prototype={ +hv(a){a.tj(this.f,this.r)}, +l(a){return this.e2(0)}} +A.a6J.prototype={ +hv(a){a.wV(this.f)}, +l(a){return this.e2(0)}} +A.a6I.prototype={ +hv(a){a.oT(0,this.f)}, +l(a){return this.e2(0)}} +A.a6O.prototype={ +hv(a){a.j8(this.f,this.r,this.w)}, +l(a){return this.e2(0)}} +A.a6Q.prototype={ +hv(a){a.Ap(this.f)}, +l(a){return this.e2(0)}} +A.a6U.prototype={ +hv(a){a.ey(this.f,this.r)}, +l(a){return this.e2(0)}} +A.a6T.prototype={ +hv(a){a.d5(this.f,this.r)}, +l(a){return this.e2(0)}} +A.a6M.prototype={ +hv(a){var s=this.w +if(s.b==null)s.b=B.bj +a.e3(this.x,s)}, +l(a){return this.e2(0)}} +A.a6P.prototype={ +hv(a){a.Ao(this.f,this.r)}, +l(a){return this.e2(0)}} +A.a6L.prototype={ +hv(a){a.fZ(this.f,this.r,this.w)}, +l(a){return this.e2(0)}} +A.a6S.prototype={ +hv(a){a.e3(this.f,this.r)}, +l(a){return this.e2(0)}} +A.a6V.prototype={ +hv(a){var s=this +a.xc(s.f,s.r,s.w,s.x)}, +l(a){return this.e2(0)}} +A.a6N.prototype={ +hv(a){var s=this +a.tv(s.f,s.r,s.w,s.x)}, +l(a){return this.e2(0)}} +A.a6R.prototype={ +hv(a){a.v6(this.f,this.r)}, +l(a){return this.e2(0)}} +A.b9m.prototype={ +tj(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=$.boq() +s[0]=n +s[1]=m +s[2]=l +s[3]=k +A.bnV(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}}, +ug(a,b){this.yl(a.a,a.b,a.c,a.d,b)}, +yl(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=$.boq() +s[0]=a +s[1]=b +s[2]=c +s[3]=d +A.bnV(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}, +Of(){var s=this,r=s.y,q=new A.dp(new Float32Array(16)) +q.c6(r) +s.r.push(q) +r=s.z?new A.L(s.Q,s.as,s.at,s.ax):null +s.w.push(r)}, +aGI(){var s,r,q,p,o,n,m,l,k,j,i=this +if(!i.b)return B.W +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.IF.a(B.b.gO(s)).xV(new A.aNM())}, +$S:0} +A.aYt.prototype={ +$0(){var s,r,q=t.IF,p=this.a.a +if($.aYr==null)q.a(B.b.gO(p)).aO() +else{s=q.a(B.b.gO(p)) +r=$.aYr +r.toString +s.bZ(0,r)}A.bTL(q.a(B.b.gO(p))) +$.aYr=q.a(B.b.gO(p)) +return new A.Fb(q.a(B.b.gO(p)).d)}, +$S:680} +A.MW.prototype={ +wM(a){this.Ct(a) +this.CW=a.CW +this.dy=a.dy +a.dy=a.CW=null}, +gkm(){return this.CW}, +oX(){var s=this +s.yI() +$.hB.Bo(s.dy) +s.CW=s.dy=null}, +xV(a){++a.b +this.aiz(a);--a.b}, +bI(a){var s=this.tq("flt-shader-mask"),r=A.c8(self.document,"flt-mask-interior") +A.Q(r.style,"position","absolute") +this.CW=r +s.append(r) +return s}, +hu(){var s,r,q,p,o,n=this +$.hB.Bo(n.dy) +n.dy=null +s=n.d +s=s.style +r=n.cy +q=r.a +A.Q(s,"left",A.i(q)+"px") +p=r.b +A.Q(s,"top",A.i(p)+"px") +o=r.c-q +A.Q(s,"width",A.i(o)+"px") +r=r.d-p +A.Q(s,"height",A.i(r)+"px") +s=n.CW.style +A.Q(s,"left",A.i(-q)+"px") +A.Q(s,"top",A.i(-p)+"px") +if(o>0&&r>0)n.anA() +return}, +anA(){var s,r,q,p,o,n,m,l=this,k="filter",j=l.cx +if(j instanceof A.CE){s=l.cy +r=s.a +q=s.b +p=A.bm(j.Uq(s.bi(0,-r,-q),1,!0)) +o=l.db +switch(o.a){case 0:case 8:case 7:j=l.CW +if(j!=null)A.Q(j.style,"visibility","hidden") +return +case 2:case 6:A.Q(l.d.style,k,"") +return +case 3:o=B.iT +break +case 1:case 4:case 5:case 9:case 10:case 11:case 12:case 13:case 14:case 15:case 16:case 17:case 18:case 19:case 20:case 21:case 22:case 23:case 24:case 25:case 26:case 27:case 28:break}n=A.bYs(p,o,s.c-r,s.d-q) +l.dy=n.b +j="url(#"+n.a +if(l.fr)A.Q(l.CW.style,k,j+")") +else A.Q(l.d.style,k,j+")") +m=$.hB +m.toString +j=l.dy +j.toString +m.aFj(j)}}, +bZ(a,b){var s=this +s.rQ(0,b) +if(s.cx!==b.cx||!s.cy.k(0,b.cy)||s.db!==b.db)s.hu()}, +$iaUw:1} +A.aMk.prototype={ +agC(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this +for(s=f.d,r=f.c,q=a.a,p=f.b,o=b.a,n=0;n>>24&255)<1}, +$S:318} +A.aUy.prototype={} +A.aBA.prototype={} +A.CE.prototype={ +aHK(a,b,c){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.f +if(h===B.cT||h===B.pG){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.ae_(0,n-l,p-k) +p=s.b +n=s.c +s.ae_(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.bQj(j,i.d,i.e,h===B.pG) +return j}else{h=a.createPattern(i.Uq(b,c,!1),"no-repeat") +h.toString +return h}}, +Uq(c7,c8,c9){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="premultipliedAlpha",c2="u_resolution",c3="m_gradient",c4="attachShader",c5=c7.c,c6=c7.a +c5-=c6 +s=B.e.eV(c5) +r=c7.d +q=c7.b +r-=q +p=B.e.eV(r) +if($.bnv==null)$.bnv=new A.bek() +o=$.boD() +o.b=!0 +n=o.a +if(n==null){n=new A.aMv(s,p) +if(A.bt9())n.a=new self.OffscreenCanvas(s,p) +else{m=n.b=A.WL(p,s) +m.className="gl-canvas" +n.a6m(m)}o.a=n}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.C2(m,s) +m=n.b +m.toString +A.C1(m,p) +m=n.b +m.toString +n.a6m(m)}}}o=o.a +o.toString +if(A.bt9()){o=o.a +o.toString +n=t.N +m=A.bHi(o,"webgl2",A.am([c1,!1],n,t.z)) +m.toString +l=new A.a2h(m) +$.aFa.b=A.I(n,t.eS) +l.dy=o +o=$.aFa}else{o=o.b +o.toString +n=$.lM +n=(n==null?$.lM=A.HM():n)===1?"webgl":"webgl2" +m=t.N +n=A.qd(o,n,A.am([c1,!1],m,t.z)) +n.toString +l=new A.a2h(n) +$.aFa.b=A.I(m,t.eS) +l.dy=o +o=$.aFa}l.fr=s +l.fx=p +k=A.bKs(c0.d,c0.e) +n=$.bvc +if(n==null){n=$.lM +if(n==null)n=$.lM=A.HM() +m=A.a([],t.vU) +j=A.a([],t.fe) +i=new A.a9h(n,m,j,n===2,!1,new A.d_("")) +i.Tu(11,"position") +i.Tu(11,"color") +i.uN(14,"u_ctransform") +i.uN(11,"u_scale") +i.uN(11,"u_shift") +m.push(new A.zn("v_color",11,3)) +n=A.a([],t.s) +j.push(new A.Oq("main",n)) +n.push("gl_Position = ((u_ctransform * position) * u_scale) + u_shift;") +n.push("v_color = color.zyxw;") +n=$.bvc=i.aO()}m=c0.f +j=$.lM +if(j==null)j=$.lM=A.HM() +h=A.a([],t.vU) +g=A.a([],t.fe) +i=new A.a9h(j,h,g,j===2,!0,new A.d_("")) +i.e=1 +i.Tu(11,"v_color") +i.uN(9,c2) +i.uN(14,c3) +f=i.gaar() +j=A.a([],t.s) +e=new A.Oq("main",j) +g.push(e) +j.push("vec4 localCoord = m_gradient * vec4(gl_FragCoord.x, u_resolution.y - gl_FragCoord.y, 0, 1);") +j.push("float st = localCoord.x;") +j.push(f.a+" = "+A.bT4(i,e,k,m)+" * scale + bias;") +d=i.aO() +c=n+"||"+d +b=J.b7(o.cB(),c) +if(b==null){a=l.a8q(0,"VERTEX_SHADER",n) +a0=l.a8q(0,"FRAGMENT_SHADER",d) +n=l.a +j=n.createProgram() +A.cj(n,c4,[j,a]) +A.cj(n,c4,[j,a0]) +A.cj(n,"linkProgram",[j]) +h=l.ay +if(!A.cj(n,"getProgramParameter",[j,h==null?l.ay=n.LINK_STATUS:h]))A.r(A.d8(A.cj(n,"getProgramInfoLog",[j]))) +b=new A.a2i(j) +J.j5(o.cB(),c,b)}o=l.a +n=b.a +A.cj(o,"useProgram",[n]) +j=c0.b +a1=j.a +a2=j.b +j=c0.c +a3=j.a +a4=j.b +a5=a3-a1 +a6=a4-a2 +a7=Math.sqrt(a5*a5+a6*a6) +j=a7<11920929e-14 +a8=j?0:-a6/a7 +a9=j?1:a5/a7 +b0=m!==B.cT +b1=b0?c5/2:(a1+a3)/2-c6 +b2=b0?r/2:(a2+a4)/2-q +b3=A.fL() +b3.rH(-b1,-b2,0) +b4=A.fL() +b5=b4.a +b5[0]=a9 +b5[1]=a8 +b5[4]=-a8 +b5[5]=a9 +b6=A.fL() +b6.aQ5(0,0.5) +if(a7>11920929e-14)b6.c0(0,1/a7) +c5=c0.r +if(c5!=null){b7=new A.dp(new Float32Array(16)) +b7.j6(new A.dp(c5.a)) +b8=c7.gbM() +c5=b8.a +c6=b8.b +b6.bi(0,-c5,-c6) +b6.eN(0,b7) +b6.bi(0,c5,c6)}b6.eN(0,b4) +b6.eN(0,b3) +k.agC(l,b) +A.cj(o,"uniformMatrix4fv",[l.yj(0,n,c3),!1,b6.a]) +A.cj(o,"uniform2f",[l.yj(0,n,c2),s,p]) +b9=new A.aFw(c9,c7,l,b,k,s,p).$0() +$.boD().b=!1 +return b9}} +A.aFw.prototype={ +$0(){var s,r,q,p=this,o="bindBuffer",n=$.bnv,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.a9M(new A.L(0,0,0+(g-f),0+(e-m)),l,k,j,i,h) +n=l.fr +r=A.WL(l.fx,n) +n=A.qd(r,"2d",null) +n.toString +l.a9L(0,t.e.a(n),0,0) +n=r.toDataURL("image/png") +A.C2(r,0) +A.C1(r,0) +A.cj(s,o,[l.gAX(),null]) +A.cj(s,o,[l.gMl(),null]) +return n}else{n.a9M(new A.L(0,0,0+(g-f),0+(e-m)),l,k,j,i,h) +q=l.aOx(j.e) +A.cj(s,o,[l.gAX(),null]) +A.cj(s,o,[l.gMl(),null]) +q.toString +return q}}, +$S:316} +A.qi.prototype={ +gLJ(){return""}} +A.QF.prototype={ +gLJ(){return"blur("+A.i((this.a+this.b)*0.5)+"px)"}, +k(a,b){var s=this +if(b==null)return!1 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.QF&&b.c===s.c&&b.a===s.a&&b.b===s.b}, +gu(a){return A.X(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)}, +l(a){return"ImageFilter.blur("+this.a+", "+this.b+", "+this.c.l(0)+")"}} +A.SJ.prototype={ +gaQ1(){return A.mL(this.a)}, +k(a,b){if(b==null)return!1 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.SJ&&b.b===this.b&&A.vZ(b.a,this.a)}, +gu(a){return A.X(A.dj(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)}, +l(a){return"ImageFilter.matrix("+A.i(this.a)+", "+this.b.l(0)+")"}} +A.a1r.prototype={$iqi:1} +A.M9.prototype={} +A.aK2.prototype={} +A.a9h.prototype={ +gaar(){var s=this.Q +if(s==null)s=this.Q=new A.zn(this.y?"gFragColor":"gl_FragColor",11,3) +return s}, +Tu(a,b){var s=new A.zn(b,a,1) +this.b.push(s) +return s}, +uN(a,b){var s=new A.zn(b,a,2) +this.b.push(s) +return s}, +a7h(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.bMh(b.b)+" "+b.a +if(o===0)o=s.a=r+" = " +else o=r +s.a=o+";\n"}, +aO(){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.a7h(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.eZ(a,r)!==-1&&B.b.p(m,r) +n=s[r].d +n.toString +if(!o)if(p==null)q.append(n) +else q.insertBefore(n,p)}}, +awU(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.cD) +for(s=0;s1&&e.charCodeAt(0)<127&&e.charCodeAt(1)<127) +o=A.bQC(new A.aHV(h,e,a,p,q),t.S) +if(f.type!=="keydown")if(h.b){r=A.wY(f) +r.toString +r=r==="CapsLock" +n=r}else n=!1 +else n=!0 +if(h.b){r=A.wY(f) +r.toString +r=r==="CapsLock"}else r=!1 +if(r){h.a4z(B.B,new A.aHW(s,q,o),new A.aHX(h,q)) +m=B.d2}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.a88 +else{l=h.d +l.toString +l.$1(new A.kC(s,B.cj,q,o.$0(),g,!0)) +r.E(0,q) +m=B.d2}}else m=B.d2}else{if(h.f.i(0,q)==null){f.preventDefault() +return}m=B.cj}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.E(0,q) +else r.n(0,q,j) +$.bCO().al(0,new A.aHY(h,o,a,s)) +if(p)if(!l)h.aCu(q,o.$0(),s) +else{r=h.r.E(0,q) +if(r!=null)r.$0()}if(p)i=e +else i=g +e=k==null?o.$0():k +r=m===B.cj?g:i +if(h.d.$1(new A.kC(s,m,q,e,r,!1)))f.preventDefault()}, +ku(a){var s=this,r={} +r.a=!1 +s.d=new A.aI2(r,s) +try{s.atj(a)}finally{if(!r.a)s.d.$1(B.a87) +s.d=null}}, +P4(a,b,c,d,e){var s=this,r=$.bCU(),q=$.bCV(),p=$.bow() +s.JM(r,q,p,a?B.d2:B.cj,e) +r=$.boZ() +q=$.bp_() +p=$.box() +s.JM(r,q,p,b?B.d2:B.cj,e) +r=$.bCW() +q=$.bCX() +p=$.boy() +s.JM(r,q,p,c?B.d2:B.cj,e) +r=$.bCY() +q=$.bCZ() +p=$.boz() +s.JM(r,q,p,d?B.d2:B.cj,e)}, +JM(a,b,c,d,e){var s,r=this,q=r.f,p=q.aq(0,a),o=q.aq(0,b),n=p||o,m=d===B.d2&&!n,l=d===B.cj&&n +if(m){r.a.$1(new A.kC(A.bmS(e),B.d2,a,c,null,!0)) +q.n(0,a,c)}if(l&&p){s=q.i(0,a) +s.toString +r.a5B(e,a,s)}if(l&&o){q=q.i(0,b) +q.toString +r.a5B(e,b,q)}}, +a5B(a,b,c){this.a.$1(new A.kC(A.bmS(a),B.cj,b,c,null,!0)) +this.f.E(0,b)}} +A.aHZ.prototype={ +$1(a){var s=this +if(!s.a.a&&!s.b.e){s.c.$0() +s.b.a.$1(s.d.$0())}}, +$S:19} +A.aI_.prototype={ +$0(){this.a.a=!0}, +$S:0} +A.aI0.prototype={ +$0(){return new A.kC(new A.bj(this.a.a+2e6),B.cj,this.b,this.c,null,!0)}, +$S:302} +A.aI1.prototype={ +$0(){this.a.f.E(0,this.b)}, +$S:0} +A.aHV.prototype={ +$0(){var s,r,q,p,o,n=this,m=n.b,l=B.ak8.i(0,m) +if(l!=null)return l +s=n.c.a +if(B.Jp.aq(0,A.oy(s))){m=A.oy(s) +m.toString +m=B.Jp.i(0,m) +r=m==null?null:m[B.e.au(s.location)] +r.toString +return r}if(n.d){q=n.a.c.afn(A.wY(s),A.oy(s),B.e.au(s.keyCode)) +if(q!=null)return q}if(m==="Dead"){m=s.altKey +p=s.ctrlKey +o=s.shiftKey +s=s.metaKey +m=m?1073741824:0 +p=p?268435456:0 +o=o?536870912:0 +s=s?2147483648:0 +return n.e+(m+p+o+s)+98784247808}return B.c.gu(m)+98784247808}, +$S:67} +A.aHW.prototype={ +$0(){return new A.kC(this.a,B.cj,this.b,this.c.$0(),null,!0)}, +$S:302} +A.aHX.prototype={ +$0(){this.a.f.E(0,this.b)}, +$S:0} +A.aHY.prototype={ +$2(a,b){var s,r,q=this +if(J.j(q.b.$0(),a))return +s=q.a +r=s.f +if(r.aGP(0,a)&&!b.$1(q.c))r.Nn(r,new A.aHU(s,a,q.d))}, +$S:438} +A.aHU.prototype={ +$2(a,b){var s=this.b +if(b!==s)return!1 +this.a.d.$1(new A.kC(this.c,B.cj,a,s,null,!0)) +return!0}, +$S:301} +A.aI2.prototype={ +$1(a){this.a.a=!0 +return this.b.a.$1(a)}, +$S:157} +A.axC.prototype={ +mK(a){if(!this.b)return +this.b=!1 +A.dV(this.a,"contextmenu",$.bj0(),null)}, +aIw(a){if(this.b)return +this.b=!0 +A.i3(this.a,"contextmenu",$.bj0(),null)}} +A.aKS.prototype={} +A.bhH.prototype={ +$1(a){a.preventDefault()}, +$S:3} +A.auL.prototype={ +gaDZ(){var s=this.a +s===$&&A.b() +return s}, +m(){var s=this +if(s.c||s.gvN()==null)return +s.c=!0 +s.aE_()}, +ER(){var s=0,r=A.y(t.H),q=this +var $async$ER=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:s=q.gvN()!=null?2:3 +break +case 2:s=4 +return A.t(q.rr(),$async$ER) +case 4:s=5 +return A.t(q.gvN().yk(0,-1),$async$ER) +case 5:case 3:return A.w(null,r)}}) +return A.x($async$ER,r)}, +gtp(){var s=this.gvN() +s=s==null?null:s.afD() +return s==null?"/":s}, +gR(){var s=this.gvN() +return s==null?null:s.Ys(0)}, +aE_(){return this.gaDZ().$0()}} +A.Md.prototype={ +amH(a){var s,r=this,q=r.d +if(q==null)return +r.a=q.Tx(r.gWF(r)) +if(!r.Rk(r.gR())){s=t.z +q.xZ(0,A.am(["serialCount",0,"state",r.gR()],s,s),"flutter",r.gtp())}r.e=r.gQ7()}, +gQ7(){if(this.Rk(this.gR())){var s=this.gR() +s.toString +return B.e.au(A.pN(J.b7(t.f.a(s),"serialCount")))}return 0}, +Rk(a){return t.f.b(a)&&J.b7(a,"serialCount")!=null}, +Hs(a,b,c){var s,r,q=this.d +if(q!=null){s=t.z +r=this.e +if(b){r===$&&A.b() +s=A.am(["serialCount",r,"state",c],s,s) +a.toString +q.xZ(0,s,"flutter",a)}else{r===$&&A.b();++r +this.e=r +s=A.am(["serialCount",r,"state",c],s,s) +a.toString +q.acQ(0,s,"flutter",a)}}}, +YY(a){return this.Hs(a,!1,null)}, +WG(a,b){var s,r,q,p,o=this +if(!o.Rk(b)){s=o.d +s.toString +r=o.e +r===$&&A.b() +q=t.z +s.xZ(0,A.am(["serialCount",r+1,"state",b],q,q),"flutter",o.gtp())}o.e=o.gQ7() +s=$.bO() +r=o.gtp() +t.Xx.a(b) +q=b==null?null:J.b7(b,"state") +p=t.z +s.q_("flutter/navigation",B.bT.pR(new A.m6("pushRouteInformation",A.am(["location",r,"state",q],p,p))),new A.aLa())}, +rr(){var s=0,r=A.y(t.H),q,p=this,o,n,m +var $async$rr=A.u(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.gQ7() +s=o>0?3:4 +break +case 3:s=5 +return A.t(p.d.yk(0,-o),$async$rr) +case 5:case 4:n=p.gR() +n.toString +t.f.a(n) +m=p.d +m.toString +m.xZ(0,J.b7(n,"state"),"flutter",p.gtp()) +case 1:return A.w(q,r)}}) +return A.x($async$rr,r)}, +gvN(){return this.d}} +A.aLa.prototype={ +$1(a){}, +$S:46} +A.Ox.prototype={ +amQ(a){var s,r=this,q=r.d +if(q==null)return +r.a=q.Tx(r.gWF(r)) +s=r.gtp() +if(!A.blx(A.br1(self.window.history))){q.xZ(0,A.am(["origin",!0,"state",r.gR()],t.N,t.z),"origin","") +r.aC2(q,s)}}, +Hs(a,b,c){var s=this.d +if(s!=null)this.SE(s,a,!0)}, +YY(a){return this.Hs(a,!1,null)}, +WG(a,b){var s,r=this,q="flutter/navigation" +if(A.bu6(b)){s=r.d +s.toString +r.aC1(s) +$.bO().q_(q,B.bT.pR(B.amX),new A.aUZ())}else if(A.blx(b)){s=r.f +s.toString +r.f=null +$.bO().q_(q,B.bT.pR(new A.m6("pushRoute",s)),new A.aV_())}else{r.f=r.gtp() +r.d.yk(0,-1)}}, +SE(a,b,c){var s +if(b==null)b=this.gtp() +s=this.e +if(c)a.xZ(0,s,"flutter",b) +else a.acQ(0,s,"flutter",b)}, +aC2(a,b){return this.SE(a,b,!1)}, +aC1(a){return this.SE(a,null,!1)}, +rr(){var s=0,r=A.y(t.H),q,p=this,o,n +var $async$rr=A.u(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.t(o.yk(0,-1),$async$rr) +case 3:n=p.gR() +n.toString +o.xZ(0,J.b7(t.f.a(n),"state"),"flutter",p.gtp()) +case 1:return A.w(q,r)}}) +return A.x($async$rr,r)}, +gvN(){return this.d}} +A.aUZ.prototype={ +$1(a){}, +$S:46} +A.aV_.prototype={ +$1(a){}, +$S:46} +A.qN.prototype={} +A.Kk.prototype={ +gPb(){var s,r,q=this,p=q.b +if(p===$){s=q.a +r=A.hN(new A.ba(s,new A.aCu(),A.ab(s).h("ba<1>")),t.Te) +q.b!==$&&A.aq() +q.b=r +p=r}return p}} +A.aCu.prototype={ +$1(a){return a.c}, +$S:50} +A.a1t.prototype={ +E3(a){var s +this.b=a +this.c=!0 +s=A.a([],t.EO) +return this.a=new A.aQh(new A.b9m(a,A.a([],t.Xr),A.a([],t.cA),A.fL()),s,new A.aRo())}, +gabA(){return this.c}, +EM(){var s,r=this +if(!r.c)r.E3(B.ib) +r.c=!1 +s=r.a +s.b=s.a.aGI() +s.f=!0 +s=r.a +r.b===$&&A.b() +return new A.a1s(s)}} +A.a1s.prototype={ +m(){this.a=!0}} +A.a2y.prototype={ +ga3B(){var s,r=this,q=r.c +if(q===$){s=t.e.a(A.cH(r.gay7())) +r.c!==$&&A.aq() +r.c=s +q=s}return q}, +ay8(a){var s,r,q,p=A.br2(a) +p.toString +for(s=this.a,r=s.length,q=0;q>>0)) +f.jr(c,B.aH.dW([!0])) +return +case"SystemChrome.setSystemUIOverlayStyle":l=A.bw(J.b7(t.xE.a(s.b),"statusBarColor")) +A.bzA(l==null?null:new A.e(l>>>0)) +f.jr(c,B.aH.dW([!0])) +return +case"SystemChrome.setPreferredOrientations":B.SK.Hr(t.j.a(s.b)).be(new A.aBH(f,c),t.P) +return +case"SystemSound.play":f.jr(c,B.aH.dW([!0])) +return +case"Clipboard.setData":new A.Jd(A.bjM(),A.blg()).ago(s,c) +return +case"Clipboard.getData":new A.Jd(A.bjM(),A.blg()).afg(c) +return +case"Clipboard.hasStrings":new A.Jd(A.bjM(),A.blg()).aKC(c) +return}break +case"flutter/service_worker":q=self.window +k=self.document.createEvent("Event") +k.initEvent("flutter-first-frame",!0,!0) +q.dispatchEvent(k) +return +case"flutter/textinput":q=$.arP() +q.gfW(q).aKw(b,c) +return +case"flutter/contextmenu":switch(B.bT.oV(b).a){case"enableContextMenu":f.e.i(0,0).ga8B().aIw(0) +f.jr(c,B.aH.dW([!0])) +return +case"disableContextMenu":f.e.i(0,0).ga8B().mK(0) +f.jr(c,B.aH.dW([!0])) +return}return +case"flutter/mousecursor":s=B.f4.oV(b) +o=t.f.a(s.b) +switch(s.a){case"activateSystemCursor":q=f.e.i(0,0) +j=q.c +if(j===$){k=$.hB.f +k===$&&A.b() +j!==$&&A.aq() +j=q.c=new A.aKS(k)}q=A.af(J.b7(o,"kind")) +k=j.a.style +q=B.ak4.i(0,q) +A.Q(k,"cursor",q==null?"default":q) +break}return +case"flutter/web_test_e2e":f.jr(c,B.aH.dW([A.bRR(B.bT,b)])) +return +case"flutter/platform_views":q=f.db +if(q==null)q=f.db=new A.aNq($.biB(),new A.aBI()) +c.toString +q.aK6(b,c) +return +case"flutter/accessibility":q=$.hB.y +q===$&&A.b() +k=t.f +i=k.a(J.b7(k.a(B.dB.kp(b)),"data")) +h=A.af(J.b7(i,"message")) +if(h!=null&&h.length!==0){g=A.bkM(i,"assertiveness") +q.a7x(h,B.aaR[g==null?0:g])}f.jr(c,B.dB.dW(!0)) +return +case"flutter/navigation":f.e.i(0,0).Vv(b).be(new A.aBJ(f,c),t.P) +f.to="/" +return}q=$.bzk +if(q!=null){q.$3(a,b,c) +return}f.jr(c,null)}, +D0(a,b){return this.atm(a,b)}, +atm(a,b){var s=0,r=A.y(t.H),q=1,p,o=this,n,m,l,k,j,i +var $async$D0=A.u(function(c,d){if(c===1){p=d +s=q}while(true)switch(s){case 0:q=3 +i=t.Lk +s=6 +return A.t(A.AH($.vS.ya(a)),$async$D0) +case 6:n=i.a(d) +s=7 +return A.t(n.gBg().wP(),$async$D0) +case 7:m=d +o.jr(b,A.lq(m,0,null)) +q=1 +s=5 +break +case 3:q=2 +j=p +l=A.ak(j) +$.hf().$1("Error while trying to load an asset: "+A.i(l)) +o.jr(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$D0,r)}, +as6(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}}, +rE(){var s=$.bzy +if(s==null)throw A.c(A.d8("scheduleFrameCallback must be initialized first.")) +s.$0()}, +anh(){var s=this +if(s.fr!=null)return +s.a=s.a.a8J(A.bkh()) +s.fr=A.eK(self.window,"languagechange",new A.aBF(s))}, +and(){var s,r,q,p=new self.MutationObserver(A.cH(new A.aBE(this))) +this.go=p +s=self.document.documentElement +s.toString +r=A.a(["style"],t.s) +q=A.I(t.N,t.z) +q.n(0,"attributes",!0) +q.n(0,"attributeFilter",r) +r=A.b1(q) +if(r==null)r=t.K.a(r) +p.observe(s,r)}, +a6H(a){var s=this,r=s.a +if(r.d!==a){s.a=r.aH9(a) +A.t_(null,null) +A.t_(s.k4,s.ok)}}, +aE8(a){var s=this.a,r=s.a +if((r.a&32)!==0!==a){this.a=s.a8C(r.aH6(a)) +A.t_(null,null)}}, +an8(){var s,r=this,q=r.k2 +r.a6H(q.matches?B.S:B.a2) +s=t.e.a(A.cH(new A.aBD(r))) +r.k3=s +q.addListener(s)}, +q0(a,b,c){A.WQ(this.R8,this.RG,new A.EF(b,0,a,c))}, +gL8(){var s=this.to +return s==null?this.to=this.e.i(0,0).gKA().gtp():s}, +jr(a,b){A.xo(B.B,null,t.H).be(new A.aBM(a,b),t.P)}} +A.aBL.prototype={ +$0(){return this.a.$1(this.b.$1(this.c))}, +$S:0} +A.aBK.prototype={ +$1(a){this.a.y4(this.b,a)}, +$S:46} +A.aBG.prototype={ +$1(a){this.a.jr(this.b,B.aH.dW([!0]))}, +$S:19} +A.aBH.prototype={ +$1(a){this.a.jr(this.b,B.aH.dW([a]))}, +$S:106} +A.aBI.prototype={ +$1(a){var s=$.hB.r +s===$&&A.b() +s.append(a)}, +$S:3} +A.aBJ.prototype={ +$1(a){var s=this.b +if(a)this.a.jr(s,B.aH.dW([!0])) +else if(s!=null)s.$1(null)}, +$S:106} +A.aBF.prototype={ +$1(a){var s=this.a +s.a=s.a.a8J(A.bkh()) +A.t_(s.fx,s.fy)}, +$S:3} +A.aBE.prototype={ +$2(a,b){var s,r,q,p,o,n,m,l=null +for(s=J.al(a),r=t.e,q=this.a;s.v();){p=s.gG(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.bWJ(o) +m=(n==null?16:n)/16 +o=q.a +if(o.e!==m){q.a=o.aHd(m) +A.t_(l,l) +A.t_(q.id,q.k1)}}}}, +$S:461} +A.aBD.prototype={ +$1(a){var s=A.br2(a) +s.toString +s=s?B.S:B.a2 +this.a.a6H(s)}, +$S:3} +A.aBM.prototype={ +$1(a){var s=this.a +if(s!=null)s.$1(this.b)}, +$S:19} +A.bhm.prototype={ +$0(){this.a.$2(this.b,this.c)}, +$S:0} +A.abJ.prototype={ +l(a){return A.p(this).l(0)+"[view: null, geometry: "+B.W.l(0)+"]"}} +A.a7e.prototype={ +El(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.a7e(r,!1,q,p,o,n,s.r,s.w)}, +a8C(a){return this.El(a,null,null,null,null)}, +a8J(a){return this.El(null,a,null,null,null)}, +aHd(a){return this.El(null,null,null,null,a)}, +aH9(a){return this.El(null,null,a,null,null)}, +aHa(a){return this.El(null,null,null,a,null)}} +A.aNo.prototype={ +Xi(a,b,c){var s=this.a +if(s.aq(0,a))return!1 +s.n(0,a,b) +if(!c)this.c.F(0,a) +return!0}, +aOH(a,b){return this.Xi(a,b,!0)}, +aOU(a,b,c){this.d.n(0,b,a) +return this.b.cK(0,b,new A.aNp(this,b,"flt-pv-slot-"+b,a,c))}, +aAX(a){var s,r,q +if(a==null)return +s=$.dD() +if(s!==B.al){a.remove() +return}s=a.getAttribute("slot") +r="tombstone-"+A.i(s==null?null:s) +q=A.c8(self.document,"slot") +A.Q(q.style,"display","none") +s=A.b1(r) +if(s==null)s=t.K.a(s) +q.setAttribute("name",s) +s=$.hB.w +s===$&&A.b() +s.append(q) +s=A.b1(r) +if(s==null)s=t.K.a(s) +a.setAttribute("slot",s) +a.remove() +q.remove()}} +A.aNp.prototype={ +$0(){var s,r,q,p,o=this,n=A.c8(self.document,"flt-platform-view"),m=o.b +n.id="flt-pv-"+m +s=A.b1(o.c) +if(s==null)s=t.K.a(s) +n.setAttribute("slot",s) +s=o.d +r=o.a.a.i(0,s) +r.toString +q=t.e +if(t._a.b(r))p=q.a(r.$2$params(m,o.e)) +else{t.xA.a(r) +p=q.a(r.$1(m))}if(p.style.getPropertyValue("height").length===0){$.hf().$1("Height of Platform View type: ["+s+"] may not be set. Defaulting to `height: 100%`.\nSet `style.height` to any appropriate value to stop this message.") +A.Q(p.style,"height","100%")}if(p.style.getPropertyValue("width").length===0){$.hf().$1("Width of Platform View type: ["+s+"] may not be set. Defaulting to `width: 100%`.\nSet `style.width` to any appropriate value to stop this message.") +A.Q(p.style,"width","100%")}n.append(p) +return n}, +$S:166} +A.aNq.prototype={ +apS(a,b){var s=t.f.a(a.b),r=J.aj(s),q=B.e.au(A.oa(r.i(s,"id"))),p=A.bm(r.i(s,"viewType")),o=r.i(s,"params") +r=this.b +if(!r.a.aq(0,p)){b.$1(B.f4.xf("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.aq(0,q)){b.$1(B.f4.xf("recreating_view","view id: "+q,"trying to create an already created view")) +return}this.c.$1(r.aOU(p,q,o)) +b.$1(B.f4.EK(null))}, +aK6(a,b){var s,r=B.f4.oV(a) +switch(r.a){case"create":this.apS(r,b) +return +case"dispose":s=this.b +s.aAX(s.b.E(0,A.ep(r.b))) +b.$1(B.f4.EK(null)) +return}b.$1(null)}} +A.aSj.prototype={ +aQB(){A.dV(self.document,"touchstart",t.e.a(A.cH(new A.aSk())),null)}} +A.aSk.prototype={ +$1(a){}, +$S:3} +A.a7i.prototype={ +apI(){var s,r=this +if("PointerEvent" in self.window){s=new A.b9p(A.I(t.S,t.ZW),A.a([],t.he),r.a,r.gRZ(),r.c,r.d) +s.Cg() +return s}if("TouchEvent" in self.window){s=new A.bdS(A.aW(t.S),A.a([],t.he),r.a,r.gRZ(),r.c,r.d) +s.Cg() +return s}if("MouseEvent" in self.window){s=new A.b8s(new A.A6(),A.a([],t.he),r.a,r.gRZ(),r.c,r.d) +s.Cg() +return s}throw A.c(A.aa("This browser does not support pointer, touch, or mouse events."))}, +ayg(a){var s=A.a(a.slice(0),A.ab(a)),r=$.bO() +A.WQ(r.as,r.at,new A.N_(s))}} +A.aNC.prototype={ +l(a){return"pointers:"+("PointerEvent" in self.window)+", touch:"+("TouchEvent" in self.window)+", mouse:"+("MouseEvent" in self.window)}} +A.SA.prototype={} +A.b2r.prototype={ +Tt(a,b,c,d,e){var s=t.e.a(A.cH(new A.b2s(d))) +A.dV(b,c,s,e) +this.a.push(new A.SA(c,b,s,e,!1))}, +zz(a,b,c,d){return this.Tt(a,b,c,d,!0)}} +A.b2s.prototype={ +$1(a){var s=$.hL +if((s==null?$.hL=A.qj():s).acX(a))this.a.$1(a)}, +$S:3} +A.ap2.prototype={ +a2T(a,b){if(b==null)return!1 +return Math.abs(b- -3*a)>1}, +awf(a){var s,r,q,p,o,n=this,m=$.dD() +if(m===B.cX)return!1 +if(n.a2T(a.deltaX,A.br8(a))||n.a2T(a.deltaY,A.br9(a)))return!1 +if(!(B.e.aJ(a.deltaX,120)===0&&B.e.aJ(a.deltaY,120)===0)){m=A.br8(a) +if(B.e.aJ(m==null?1:m,120)===0){m=A.br9(a) +m=B.e.aJ(m==null?1:m,120)===0}else m=!1}else m=!0 +if(m){m=a.deltaX +s=n.f +r=s==null +q=r?null:s.deltaX +p=Math.abs(m-(q==null?0:q)) +m=a.deltaY +q=r?null:s.deltaY +o=Math.abs(m-(q==null?0:q)) +if(!r)if(!(p===0&&o===0))m=!(p<20&&o<20) +else m=!0 +else m=!0 +if(m){if(A.jK(a)!=null)m=(r?null:A.jK(s))!=null +else m=!1 +if(m){m=A.jK(a) +m.toString +s.toString +s=A.jK(s) +s.toString +if(m-s<50&&n.r)return!0}return!1}}return!0}, +apE(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this +if(d.awf(a)){s=B.bM +r=-2}else{s=B.c9 +r=-1}q=a.deltaX +p=a.deltaY +switch(B.e.au(a.deltaMode)){case 1:o=$.bwT +if(o==null){n=A.c8(self.document,"div") +o=n.style +A.Q(o,"font-size","initial") +A.Q(o,"display","none") +self.document.body.append(n) +o=A.bke(self.window,n).getPropertyValue("font-size") +if(B.c.p(o,"px"))m=A.btv(A.eF(o,"px","")) +else m=null +n.remove() +o=$.bwT=m==null?16:m/4}q*=o +p*=o +break +case 2:o=$.eA() +q*=o.gnG().a +p*=o.gnG().b +break +case 0:o=$.fV() +if(o===B.d7){o=$.dD() +if(o!==B.al)o=o===B.cX +else o=!0}else o=!1 +if(o){$.eA() +o=$.dn() +l=o.d +if(l==null){l=self.window.devicePixelRatio +if(l===0)l=1}q*=l +o=o.d +if(o==null){o=self.window.devicePixelRatio +if(o===0)o=1}p*=o}break +default:break}k=A.a([],t.D9) +j=A.bni(a,d.b) +o=$.fV() +if(o===B.d7){o=$.aHR +o=o==null?null:o.gCM().f.aq(0,$.boZ()) +if(o!==!0){o=$.aHR +o=o==null?null:o.gCM().f.aq(0,$.bp_()) +i=o===!0}else i=!0}else i=!1 +o=a.ctrlKey&&!i +l=d.d +h=j.a +if(o){o=A.jK(a) +o.toString +o=A.A4(o) +$.eA() +g=$.dn() +f=g.d +if(f==null){f=self.window.devicePixelRatio +if(f===0)f=1}g=g.d +if(g==null){g=self.window.devicePixelRatio +if(g===0)g=1}e=A.n3(a) +e.toString +l.aGV(k,B.e.au(e),B.eE,r,s,h*f,j.b*g,1,1,Math.exp(-p/200),B.apb,o)}else{o=A.jK(a) +o.toString +o=A.A4(o) +$.eA() +g=$.dn() +f=g.d +if(f==null){f=self.window.devicePixelRatio +if(f===0)f=1}g=g.d +if(g==null){g=self.window.devicePixelRatio +if(g===0)g=1}e=A.n3(a) +e.toString +l.aGX(k,B.e.au(e),B.eE,r,s,h*f,j.b*g,1,1,q,p,B.apa,o)}d.f=a +d.r=s===B.bM +return k}, +a_t(a){var s=this.b,r=t.e.a(A.cH(a)),q=t.K,p=A.b1(A.am(["capture",!1,"passive",!1],t.N,q)) +q=p==null?q.a(p):p +s.addEventListener("wheel",r,q) +this.a.push(new A.SA("wheel",s,r,!1,!0))}, +a2z(a){this.c.$1(this.apE(a)) +a.preventDefault()}} +A.pE.prototype={ +l(a){return A.p(this).l(0)+"(change: "+this.a.l(0)+", buttons: "+this.b+")"}} +A.A6.prototype={ +Yx(a,b){var s +if(this.a!==0)return this.Od(b) +s=(b===0&&a>-1?A.bTT(a):b)&1073741823 +this.a=s +return new A.pE(B.Nh,s)}, +Od(a){var s=a&1073741823,r=this.a +if(r===0&&s!==0)return new A.pE(B.eE,r) +this.a=s +return new A.pE(s===0?B.eE:B.i9,s)}, +Hh(a){if(this.a!==0&&(a&1073741823)===0){this.a=0 +return new A.pE(B.oH,0)}return null}, +Yy(a){if((a&1073741823)===0){this.a=0 +return new A.pE(B.eE,0)}return null}, +YA(a){var s +if(this.a===0)return null +s=this.a=(a==null?0:a)&1073741823 +if(s===0)return new A.pE(B.oH,s) +else return new A.pE(B.i9,s)}} +A.b9p.prototype={ +Qq(a){return this.w.cK(0,a,new A.b9r())}, +a4k(a){if(A.bkd(a)==="touch")this.w.E(0,A.br4(a))}, +Pk(a,b,c,d,e){this.Tt(0,a,b,new A.b9q(this,d,c),e)}, +Pj(a,b,c){return this.Pk(a,b,c,!0,!0)}, +ani(a,b,c,d){return this.Pk(a,b,c,d,!0)}, +Cg(){var s=this,r=s.b +s.Pj(r,"pointerdown",new A.b9s(s)) +s.Pj(self.window,"pointermove",new A.b9t(s)) +s.Pk(r,"pointerleave",new A.b9u(s),!1,!1) +s.Pj(self.window,"pointerup",new A.b9v(s)) +s.ani(r,"pointercancel",new A.b9w(s),!1) +s.a_t(new A.b9x(s))}, +kY(a,b,c){var s,r,q,p,o,n,m,l,k=this,j=A.bkd(c) +j.toString +s=k.a4_(j) +j=A.br5(c) +j.toString +r=A.br6(c) +r.toString +j=Math.abs(j)>Math.abs(r)?A.br5(c):A.br6(c) +j.toString +r=A.jK(c) +r.toString +q=A.A4(r) +p=c.pressure +if(p==null)p=null +o=A.bni(c,k.b) +r=k.z4(c) +$.eA() +n=$.dn() +m=n.d +if(m==null){m=self.window.devicePixelRatio +if(m===0)m=1}n=n.d +if(n==null){n=self.window.devicePixelRatio +if(n===0)n=1}l=p==null?0:p +k.d.aGW(a,b.b,b.a,r,s,o.a*m,o.b*n,l,1,B.fP,j/180*3.141592653589793,q)}, +ar6(a){var s,r +if("getCoalescedEvents" in a){s=t.e +r=J.j6(a.getCoalescedEvents(),s).kl(0,s) +if(!r.gak(r))return r}return A.a([a],t.A)}, +a4_(a){switch(a){case"mouse":return B.c9 +case"pen":return B.cx +case"touch":return B.be +default:return B.d9}}, +z4(a){var s=A.bkd(a) +s.toString +if(this.a4_(s)===B.c9)s=-1 +else{s=A.br4(a) +s.toString +s=B.e.au(s)}return s}} +A.b9r.prototype={ +$0(){return new A.A6()}, +$S:475} +A.b9q.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.jK(a) +o.toString +this.a.e.P4(s,r,q,p,o)}this.c.$1(a)}, +$S:3} +A.b9s.prototype={ +$1(a){var s,r,q=this.a,p=q.z4(a),o=A.a([],t.D9),n=q.Qq(p),m=A.n3(a) +m.toString +s=n.Hh(B.e.au(m)) +if(s!=null)q.kY(o,s,a) +m=B.e.au(a.button) +r=A.n3(a) +r.toString +q.kY(o,n.Yx(m,B.e.au(r)),a) +q.c.$1(o)}, +$S:23} +A.b9t.prototype={ +$1(a){var s,r,q,p,o=this.a,n=o.Qq(o.z4(a)),m=A.a([],t.D9) +for(s=J.al(o.ar6(a));s.v();){r=s.gG(s) +q=r.buttons +if(q==null)q=null +q.toString +p=n.Hh(B.e.au(q)) +if(p!=null)o.kY(m,p,r) +q=r.buttons +if(q==null)q=null +q.toString +o.kY(m,n.Od(B.e.au(q)),r)}o.c.$1(m)}, +$S:23} +A.b9u.prototype={ +$1(a){var s,r=this.a,q=r.Qq(r.z4(a)),p=A.a([],t.D9),o=A.n3(a) +o.toString +s=q.Yy(B.e.au(o)) +if(s!=null){r.kY(p,s,a) +r.c.$1(p)}}, +$S:23} +A.b9v.prototype={ +$1(a){var s,r,q,p=this.a,o=p.z4(a),n=p.w +if(n.aq(0,o)){s=A.a([],t.D9) +n=n.i(0,o) +n.toString +r=A.n3(a) +q=n.YA(r==null?null:B.e.au(r)) +p.a4k(a) +if(q!=null){p.kY(s,q,a) +p.c.$1(s)}}}, +$S:23} +A.b9w.prototype={ +$1(a){var s,r=this.a,q=r.z4(a),p=r.w +if(p.aq(0,q)){s=A.a([],t.D9) +p=p.i(0,q) +p.toString +p.a=0 +r.a4k(a) +r.kY(s,new A.pE(B.oF,0),a) +r.c.$1(s)}}, +$S:23} +A.b9x.prototype={ +$1(a){this.a.a2z(a)}, +$S:3} +A.bdS.prototype={ +HX(a,b,c){this.zz(0,a,b,new A.bdT(this,!0,c))}, +Cg(){var s=this,r=s.b +s.HX(r,"touchstart",new A.bdU(s)) +s.HX(r,"touchmove",new A.bdV(s)) +s.HX(r,"touchend",new A.bdW(s)) +s.HX(r,"touchcancel",new A.bdX(s))}, +If(a,b,c,d,e){var s,r,q,p,o,n=A.bHj(e) +n.toString +n=B.e.au(n) +s=e.clientX +$.eA() +r=$.dn() +q=r.d +if(q==null){q=self.window.devicePixelRatio +if(q===0)q=1}p=e.clientY +r=r.d +if(r==null){r=self.window.devicePixelRatio +if(r===0)r=1}o=c?1:0 +this.d.aGT(b,o,a,n,s*q,p*r,1,1,B.fP,d)}} +A.bdT.prototype={ +$1(a){var s=a.altKey,r=a.ctrlKey,q=a.metaKey,p=a.shiftKey,o=A.jK(a) +o.toString +this.a.e.P4(s,r,q,p,o) +this.c.$1(a)}, +$S:3} +A.bdU.prototype={ +$1(a){var s,r,q,p,o,n,m,l=A.jK(a) +l.toString +s=A.A4(l) +r=A.a([],t.D9) +for(l=t.e,q=t.VA,q=A.dF(new A.rA(a.changedTouches,q),q.h("z.E"),l),l=A.dF(q.a,A.l(q).c,l),q=J.al(l.a),l=A.l(l),l=l.h("@<1>").V(l.z[1]).z[1],p=this.a;q.v();){o=l.a(q.gG(q)) +n=o.identifier +if(n==null)n=null +n.toString +m=p.w +if(!m.p(0,B.e.au(n))){n=o.identifier +if(n==null)n=null +n.toString +m.F(0,B.e.au(n)) +p.If(B.Nh,r,!0,s,o)}}p.c.$1(r)}, +$S:23} +A.bdV.prototype={ +$1(a){var s,r,q,p,o,n,m +a.preventDefault() +s=A.jK(a) +s.toString +r=A.A4(s) +q=A.a([],t.D9) +for(s=t.e,p=t.VA,p=A.dF(new A.rA(a.changedTouches,p),p.h("z.E"),s),s=A.dF(p.a,A.l(p).c,s),p=J.al(s.a),s=A.l(s),s=s.h("@<1>").V(s.z[1]).z[1],o=this.a;p.v();){n=s.a(p.gG(p)) +m=n.identifier +if(m==null)m=null +m.toString +if(o.w.p(0,B.e.au(m)))o.If(B.i9,q,!0,r,n)}o.c.$1(q)}, +$S:23} +A.bdW.prototype={ +$1(a){var s,r,q,p,o,n,m,l +a.preventDefault() +s=A.jK(a) +s.toString +r=A.A4(s) +q=A.a([],t.D9) +for(s=t.e,p=t.VA,p=A.dF(new A.rA(a.changedTouches,p),p.h("z.E"),s),s=A.dF(p.a,A.l(p).c,s),p=J.al(s.a),s=A.l(s),s=s.h("@<1>").V(s.z[1]).z[1],o=this.a;p.v();){n=s.a(p.gG(p)) +m=n.identifier +if(m==null)m=null +m.toString +l=o.w +if(l.p(0,B.e.au(m))){m=n.identifier +if(m==null)m=null +m.toString +l.E(0,B.e.au(m)) +o.If(B.oH,q,!1,r,n)}}o.c.$1(q)}, +$S:23} +A.bdX.prototype={ +$1(a){var s,r,q,p,o,n,m,l=A.jK(a) +l.toString +s=A.A4(l) +r=A.a([],t.D9) +for(l=t.e,q=t.VA,q=A.dF(new A.rA(a.changedTouches,q),q.h("z.E"),l),l=A.dF(q.a,A.l(q).c,l),q=J.al(l.a),l=A.l(l),l=l.h("@<1>").V(l.z[1]).z[1],p=this.a;q.v();){o=l.a(q.gG(q)) +n=o.identifier +if(n==null)n=null +n.toString +m=p.w +if(m.p(0,B.e.au(n))){n=o.identifier +if(n==null)n=null +n.toString +m.E(0,B.e.au(n)) +p.If(B.oF,r,!1,s,o)}}p.c.$1(r)}, +$S:23} +A.b8s.prototype={ +a_o(a,b,c,d){this.Tt(0,a,b,new A.b8t(this,!0,c),d)}, +Pf(a,b,c){return this.a_o(a,b,c,!0)}, +Cg(){var s=this,r=s.b +s.Pf(r,"mousedown",new A.b8u(s)) +s.Pf(self.window,"mousemove",new A.b8v(s)) +s.a_o(r,"mouseleave",new A.b8w(s),!1) +s.Pf(self.window,"mouseup",new A.b8x(s)) +s.a_t(new A.b8y(s))}, +kY(a,b,c){var s,r,q=A.bni(c,this.b),p=A.jK(c) +p.toString +p=A.A4(p) +$.eA() +s=$.dn() +r=s.d +if(r==null){r=self.window.devicePixelRatio +if(r===0)r=1}s=s.d +if(s==null){s=self.window.devicePixelRatio +if(s===0)s=1}this.d.aGU(a,b.b,b.a,-1,B.c9,q.a*r,q.b*s,1,1,B.fP,p)}} +A.b8t.prototype={ +$1(a){var s=a.getModifierState("Alt"),r=a.getModifierState("Control"),q=a.getModifierState("Meta"),p=a.getModifierState("Shift"),o=A.jK(a) +o.toString +this.a.e.P4(s,r,q,p,o) +this.c.$1(a)}, +$S:3} +A.b8u.prototype={ +$1(a){var s,r,q=A.a([],t.D9),p=this.a,o=p.w,n=A.n3(a) +n.toString +s=o.Hh(B.e.au(n)) +if(s!=null)p.kY(q,s,a) +n=B.e.au(a.button) +r=A.n3(a) +r.toString +p.kY(q,o.Yx(n,B.e.au(r)),a) +p.c.$1(q)}, +$S:23} +A.b8v.prototype={ +$1(a){var s,r=A.a([],t.D9),q=this.a,p=q.w,o=A.n3(a) +o.toString +s=p.Hh(B.e.au(o)) +if(s!=null)q.kY(r,s,a) +o=A.n3(a) +o.toString +q.kY(r,p.Od(B.e.au(o)),a) +q.c.$1(r)}, +$S:23} +A.b8w.prototype={ +$1(a){var s,r=A.a([],t.D9),q=this.a,p=A.n3(a) +p.toString +s=q.w.Yy(B.e.au(p)) +if(s!=null){q.kY(r,s,a) +q.c.$1(r)}}, +$S:23} +A.b8x.prototype={ +$1(a){var s,r=A.a([],t.D9),q=this.a,p=A.n3(a) +p=p==null?null:B.e.au(p) +s=q.w.YA(p) +if(s!=null){q.kY(r,s,a) +q.c.$1(r)}}, +$S:23} +A.b8y.prototype={ +$1(a){this.a.a2z(a)}, +$S:3} +A.H2.prototype={} +A.aNu.prototype={ +Il(a,b,c){return this.a.cK(0,a,new A.aNv(b,c))}, +wl(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.btn(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)}, +RF(a,b,c){var s=this.a.i(0,a) +s.toString +return s.b!==b||s.c!==c}, +uH(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.btn(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.fP,a5,!0,a6,a7)}, +Ee(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o){var s,r,q,p=this +if(m===B.fP)switch(c.a){case 1:p.Il(d,f,g) +a.push(p.wl(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.aq(0,d) +p.Il(d,f,g) +if(!s)a.push(p.uH(b,B.oG,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.wl(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.aq(0,d) +p.Il(d,f,g).a=$.bw8=$.bw8+1 +if(!s)a.push(p.uH(b,B.oG,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,0,n,o)) +if(p.RF(d,f,g))a.push(p.uH(0,B.eE,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.wl(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.wl(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.oF){f=q.b +g=q.c}if(p.RF(d,f,g))a.push(p.uH(p.b,B.i9,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.wl(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.be){a.push(p.uH(0,B.ap9,d,0,0,e,!1,0,f,g,0,0,i,0,0,0,0,0,j,k,l,0,n,o)) +r.E(0,d)}break +case 2:r=p.a +q=r.i(0,d) +q.toString +a.push(p.wl(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.E(0,d) +break +case 7:case 8:case 9:break}else switch(m.a){case 1:case 2:case 3:s=p.a.aq(0,d) +p.Il(d,f,g) +if(!s)a.push(p.uH(b,B.oG,d,0,0,e,!1,0,f,g,0,h,i,0,0,0,0,0,j,k,l,0,n,o)) +if(p.RF(d,f,g))if(b!==0)a.push(p.uH(b,B.i9,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.uH(b,B.eE,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.wl(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}}, +aGV(a,b,c,d,e,f,g,h,i,j,k,l){return this.Ee(a,b,c,d,e,f,g,h,i,j,0,0,k,0,l)}, +aGX(a,b,c,d,e,f,g,h,i,j,k,l,m){return this.Ee(a,b,c,d,e,f,g,h,i,1,j,k,l,0,m)}, +aGU(a,b,c,d,e,f,g,h,i,j,k){return this.Ee(a,b,c,d,e,f,g,h,i,1,0,0,j,0,k)}, +aGT(a,b,c,d,e,f,g,h,i,j){return this.Ee(a,b,c,d,B.be,e,f,g,h,1,0,0,i,0,j)}, +aGW(a,b,c,d,e,f,g,h,i,j,k,l){return this.Ee(a,b,c,d,e,f,g,h,i,1,0,0,j,k,l)}} +A.aNv.prototype={ +$0(){return new A.H2(this.a,this.b)}, +$S:489} +A.bll.prototype={} +A.aOW.prototype={ +amM(a){var s=this,r=t.e +s.b=r.a(A.cH(new A.aOX(s))) +A.dV(self.window,"keydown",s.b,null) +s.c=r.a(A.cH(new A.aOY(s))) +A.dV(self.window,"keyup",s.c,null) +$.vU.push(new A.aOZ(s))}, +m(){var s,r,q=this +A.i3(self.window,"keydown",q.b,null) +A.i3(self.window,"keyup",q.c,null) +for(s=q.a,r=A.ie(s,s.r,A.l(s).c);r.v();)s.i(0,r.d).aI(0) +s.ab(0) +$.blp=q.c=q.b=null}, +a2n(a){var s,r,q,p,o,n,m=this,l=globalThis.KeyboardEvent +if(!(l!=null&&a instanceof l))return +s=new A.oF(a) +r=A.wY(a) +r.toString +if(a.type==="keydown"&&A.oy(a)==="Tab"&&a.isComposing)return +q=A.oy(a) +q.toString +if(!(q==="Meta"||q==="Shift"||q==="Alt"||q==="Control")&&m.e){q=m.a +p=q.i(0,r) +if(p!=null)p.aI(0) +if(a.type==="keydown")p=a.ctrlKey||a.shiftKey||a.altKey||a.metaKey +else p=!1 +if(p)q.n(0,r,A.d0(B.ej,new A.aP0(m,r,s))) +else q.E(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 +m.d=o +if(a.type==="keydown")if(A.oy(a)==="CapsLock"){r=o|32 +m.d=r}else if(A.wY(a)==="NumLock"){r=o|16 +m.d=r}else if(A.oy(a)==="ScrollLock"){r=o|64 +m.d=r}else{if(A.oy(a)==="Meta"){r=$.fV() +r=r===B.oA}else r=!1 +if(r){r=o|8 +m.d=r}else r=o}else r=o +n=A.am(["type",a.type,"keymap","web","code",A.wY(a),"key",A.oy(a),"location",B.e.au(a.location),"metaState",r,"keyCode",B.e.au(a.keyCode)],t.N,t.z) +$.bO().q_("flutter/keyevent",B.aH.dW(n),new A.aP1(s))}} +A.aOX.prototype={ +$1(a){this.a.a2n(a)}, +$S:3} +A.aOY.prototype={ +$1(a){this.a.a2n(a)}, +$S:3} +A.aOZ.prototype={ +$0(){this.a.m()}, +$S:0} +A.aP0.prototype={ +$0(){var s,r,q=this.a +q.a.E(0,this.b) +s=this.c.a +r=A.am(["type","keyup","keymap","web","code",A.wY(s),"key",A.oy(s),"location",B.e.au(s.location),"metaState",q.d,"keyCode",B.e.au(s.keyCode)],t.N,t.z) +$.bO().q_("flutter/keyevent",B.aH.dW(r),A.bRk())}, +$S:0} +A.aP1.prototype={ +$1(a){if(a==null)return +if(A.AE(J.b7(t.a.a(B.aH.kp(a)),"handled")))this.a.a.preventDefault()}, +$S:46} +A.a2i.prototype={} +A.a2h.prototype={ +a9L(a,b,c,d){var s=this.dy,r=this.fr,q=this.fx +A.cj(b,"drawImage",[s,0,0,r,q,c,d,r,q])}, +a8q(a,b,c){var s,r=this.a,q=r.createShader(r[b]) +if(q==null)throw A.c(A.d8(A.bQG(r,"getError"))) +A.cj(r,"shaderSource",[q,c]) +A.cj(r,"compileShader",[q]) +s=this.c +if(!A.cj(r,"getShaderParameter",[q,s==null?this.c=r.COMPILE_STATUS:s]))throw A.c(A.d8("Shader compilation failed: "+A.i(A.cj(r,"getShaderInfoLog",[q])))) +return q}, +gAX(){var s=this.d +return s==null?this.d=this.a.ARRAY_BUFFER:s}, +gMl(){var s=this.e +return s==null?this.e=this.a.ELEMENT_ARRAY_BUFFER:s}, +gW6(){var s=this.f +return s==null?this.f=this.a.STATIC_DRAW:s}, +yj(a,b,c){var s=A.cj(this.a,"getUniformLocation",[b,c]) +if(s==null)throw A.c(A.d8(c+" not found")) +else return s}, +aOx(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.WL(q.fx,s) +s=A.qd(r,"2d",null) +s.toString +q.a9L(0,t.e.a(s),0,0) +return r}}} +A.aMv.prototype={ +a6m(a){var s,r,q,p,o=this.c +$.dn() +s=self.window.devicePixelRatio +if(s===0)s=1 +r=this.d +q=self.window.devicePixelRatio +if(q===0)q=1 +p=a.style +A.Q(p,"position","absolute") +A.Q(p,"width",A.i(o/s)+"px") +A.Q(p,"height",A.i(r/q)+"px")}} +A.Ip.prototype={ +J(){return"Assertiveness."+this.b}} +A.as9.prototype={ +aFF(a){switch(a.a){case 0:return this.a +case 1:return this.b}}, +a7x(a,b){var s=this.aFF(b),r=A.c8(self.document,"div") +A.br3(r,a) +s.append(r) +A.d0(B.bC,new A.asa(r))}} +A.asa.prototype={ +$0(){return this.a.remove()}, +$S:0} +A.QU.prototype={ +J(){return"_CheckableKind."+this.b}} +A.awU.prototype={ +it(a){var s,r,q,p,o=this,n="true" +o.rR(0) +s=o.b +if((s.k3&1)!==0){switch(o.e.a){case 0:r=A.b1("checkbox") +if(r==null)r=t.K.a(r) +s.k2.setAttribute("role",r) +break +case 1:r=A.b1("radio") +if(r==null)r=t.K.a(r) +s.k2.setAttribute("role",r) +break +case 2:r=A.b1("switch") +if(r==null)r=t.K.a(r) +s.k2.setAttribute("role",r) +break}if(s.V0()===B.jq){q=s.k2 +r=A.b1(n) +if(r==null)r=t.K.a(r) +q.setAttribute("aria-disabled",r) +r=A.b1(n) +if(r==null)r=t.K.a(r) +q.setAttribute("disabled",r)}else o.a4g() +r=s.a +p=A.b1((r&2)!==0||(r&131072)!==0?n:"false") +r=p==null?t.K.a(p):p +s.k2.setAttribute("aria-checked",r)}}, +m(){this.Cu() +this.a4g()}, +a4g(){var s=this.b.k2 +s.removeAttribute("aria-disabled") +s.removeAttribute("disabled")}} +A.a0W.prototype={ +it(a){var s,r,q +this.rR(0) +s=this.b +if((s.a&4096)!==0){r=s.z +s=s.k2 +q=A.b1(r==null?"":r) +if(q==null)q=t.K.a(q) +s.setAttribute("aria-label",q) +q=A.b1("dialog") +if(q==null)q=t.K.a(q) +s.setAttribute("role",q)}}, +a9v(a){var s,r=this.b +if((r.a&4096)!==0)return +r=r.k2 +s=A.b1("dialog") +if(s==null)s=t.K.a(s) +r.setAttribute("role",s) +s=A.b1(a.b.k2.id) +if(s==null)s=t.K.a(s) +r.setAttribute("aria-describedby",s)}} +A.Ep.prototype={ +it(a){var s,r=this,q=r.b +if((q.a&4096)===0)return +if((q.k3&1024)!==0){s=r.d +if(s!=null)s.a9v(r) +else q.k1.e.push(new A.aS8(r))}}, +awL(){var s,r,q=this.b.ok +while(!0){s=q!=null +if(s){r=q.p2 +r=(r==null?null:r.a)!==B.l9}else r=!1 +if(!r)break +q=q.ok}if(s){s=q.p2 +s=(s==null?null:s.a)===B.l9}else s=!1 +if(s){s=q.p2 +s.toString +this.d=t.JX.a(s)}}} +A.aS8.prototype={ +$0(){var s,r=this.a +if(!r.c){r.awL() +s=r.d +if(s!=null)s.a9v(r)}}, +$S:0} +A.Ct.prototype={ +it(a){var s,r=this.b +if((r.a&2097152)!==0){s=this.d +if(s.b==null)s.abW(r.id,r.k2) +r=r.a +if((r&32)!==0)r=(r&64)===0||(r&128)!==0 +else r=!1 +s.a8f(r)}else this.d.OD()}} +A.AU.prototype={ +abW(a,b){var s,r,q=this,p=q.b,o=p==null +if(b===(o?null:p.a[2])){o=p.a +if(a===o[3])return +s=o[2] +r=o[1] +q.b=new A.Tp([o[0],r,s,a]) +return}if(!o)q.OD() +o=t.e +s=o.a(A.cH(new A.asc(q))) +s=[o.a(A.cH(new A.asd(q))),s,b,a] +q.b=new A.Tp(s) +b.tabIndex=0 +A.dV(b,"focus",s[1],null) +A.dV(b,"blur",s[0],null)}, +OD(){var s,r=this.b +this.b=null +if(r==null)return +s=r.a +A.i3(s[2],"focus",s[1],null) +A.i3(s[2],"blur",s[0],null) +s[2].blur()}, +a51(a){var s,r,q=this.b +if(q==null)return +s=$.bO() +r=q.a[3] +s.q0(r,a?B.p9:B.pa,null)}, +a8f(a){var s=this.b +if(s==null)return +this.a.e.push(new A.asb(this,s,a))}} +A.asc.prototype={ +$1(a){return this.a.a51(!0)}, +$S:3} +A.asd.prototype={ +$1(a){return this.a.a51(!1)}, +$S:3} +A.asb.prototype={ +$0(){var s=this.b +if(!J.j(this.a.b,s))return +s=s.a +if(this.c)s[2].focus() +else s[2].blur()}, +$S:0} +A.aH9.prototype={ +it(a){var s,r,q,p=this +p.rR(0) +s=p.b +if(s.gW4()){r=s.dy +r=r!=null&&!B.i3.gak(r)}else r=!1 +if(r){if(p.e==null){p.e=A.c8(self.document,"flt-semantics-img") +r=s.dy +if(r!=null&&!B.i3.gak(r)){r=p.e.style +A.Q(r,"position","absolute") +A.Q(r,"top","0") +A.Q(r,"left","0") +q=s.y +A.Q(r,"width",A.i(q.c-q.a)+"px") +q=s.y +A.Q(r,"height",A.i(q.d-q.b)+"px")}A.Q(p.e.style,"font-size","6px") +r=p.e +r.toString +s.k2.append(r)}s=p.e +s.toString +r=A.b1("img") +if(r==null)r=t.K.a(r) +s.setAttribute("role",r) +p.a53(p.e)}else{r=s.k2 +if(s.gW4()){s=A.b1("img") +if(s==null)s=t.K.a(s) +r.setAttribute("role",s) +p.a53(r) +p.PO()}else{p.PO() +r.removeAttribute("aria-label")}}}, +a53(a){var s=this.b.z +if(s!=null&&s.length!==0){a.toString +s.toString +s=A.b1(s) +if(s==null)s=t.K.a(s) +a.setAttribute("aria-label",s)}}, +PO(){var s=this.e +if(s!=null){s.remove() +this.e=null}}, +m(){this.Cu() +this.PO() +this.b.k2.removeAttribute("aria-label")}} +A.aHi.prototype={ +amE(a){var s,r=this,q=r.b +r.l5(new A.y4(B.lh,q)) +r.l5(new A.Ep(B.p1,q)) +r.l5(new A.Ln(B.Nw,q)) +q=r.e +a.k2.append(q) +A.azs(q,"range") +s=A.b1("slider") +if(s==null)s=t.K.a(s) +q.setAttribute("role",s) +A.dV(q,"change",t.e.a(A.cH(new A.aHj(r,a))),null) +s=new A.aHk(r) +r.w=s +a.k1.as.push(s) +r.f.abW(a.id,q)}, +it(a){var s,r=this +r.rR(0) +s=r.b +switch(s.k1.z.a){case 1:r.aqQ() +r.aEa() +break +case 0:r.a0X() +break}r.f.a8f((s.a&32)!==0)}, +aqQ(){var s=this.e,r=A.bkb(s) +r.toString +if(!r)return +A.bqW(s,!1)}, +aEa(){var s,r,q,p,o,n,m,l=this +if(!l.x){s=l.b.k3 +r=(s&4096)!==0||(s&8192)!==0||(s&16384)!==0}else r=!0 +if(!r)return +l.x=!1 +q=""+l.r +s=l.e +A.bqX(s,q) +p=A.b1(q) +if(p==null)p=t.K.a(p) +s.setAttribute("aria-valuenow",p) +p=l.b +o=p.ax +o.toString +o=A.b1(o) +if(o==null)o=t.K.a(o) +s.setAttribute("aria-valuetext",o) +n=p.ch.length!==0?""+(l.r+1):q +s.max=n +o=A.b1(n) +if(o==null)o=t.K.a(o) +s.setAttribute("aria-valuemax",o) +m=p.cx.length!==0?""+(l.r-1):q +s.min=m +p=A.b1(m) +if(p==null)p=t.K.a(p) +s.setAttribute("aria-valuemin",p)}, +a0X(){var s=this.e,r=A.bkb(s) +r.toString +if(r)return +A.bqW(s,!0)}, +m(){var s=this +s.Cu() +s.f.OD() +B.b.E(s.b.k1.as,s.w) +s.w=null +s.a0X() +s.e.remove()}} +A.aHj.prototype={ +$1(a){var s,r=null,q=this.a,p=q.e,o=A.bkb(p) +o.toString +if(o)return +q.x=!0 +p=A.bkc(p) +p.toString +s=A.eq(p,r,r) +p=q.r +if(s>p){q.r=p+1 +$.bO().q0(this.b.id,B.NO,r)}else if(sq){s=s.b +s.toString +if((s&32)!==0||(s&16)!==0)$.bO().q0(p,B.ij,n) +else $.bO().q0(p,B.il,n)}else{s=s.b +s.toString +if((s&32)!==0||(s&16)!==0)$.bO().q0(p,B.ik,n) +else $.bO().q0(p,B.im,n)}}}, +it(a){var s,r,q,p=this +p.rR(0) +s=p.b +r=s.k1 +r.e.push(new A.aTi(p)) +if(p.r==null){s=s.k2 +A.Q(s.style,"touch-action","none") +p.a1C() +q=new A.aTj(p) +p.e=q +r.as.push(q) +q=t.e.a(A.cH(new A.aTk(p))) +p.r=q +A.dV(s,"scroll",q,null)}}, +ga13(){var s=this.b,r=s.b +r.toString +r=(r&32)!==0||(r&16)!==0 +s=s.k2 +if(r)return B.e.au(s.scrollTop) +else return B.e.au(s.scrollLeft)}, +a3s(){var s,r,q,p,o=this,n="transform",m=o.b,l=m.k2,k=m.y +if(k==null){$.hf().$1("Warning! the rect attribute of semanticsObject is null") +return}s=m.b +s.toString +s=(s&32)!==0||(s&16)!==0 +r=o.f +q=k.d-k.b +p=k.c-k.a +if(s){s=B.e.eV(q) +r=r.style +A.Q(r,n,"translate(0px,"+(s+10)+"px)") +A.Q(r,"width",""+B.e.bg(p)+"px") +A.Q(r,"height","10px") +l.scrollTop=10 +m.p3=o.w=B.e.au(l.scrollTop) +m.p4=0}else{s=B.e.eV(p) +r=r.style +A.Q(r,n,"translate("+(s+10)+"px,0px)") +A.Q(r,"width","10px") +A.Q(r,"height",""+B.e.bg(q)+"px") +l.scrollLeft=10 +q=B.e.au(l.scrollLeft) +o.w=q +m.p3=0 +m.p4=q}}, +a1C(){var s="overflow-y",r="overflow-x",q=this.b,p=q.k2 +switch(q.k1.z.a){case 1:q=q.b +q.toString +if((q&32)!==0||(q&16)!==0)A.Q(p.style,s,"scroll") +else A.Q(p.style,r,"scroll") +break +case 0:q=q.b +q.toString +if((q&32)!==0||(q&16)!==0)A.Q(p.style,s,"hidden") +else A.Q(p.style,r,"hidden") +break}}, +m(){var s,r,q,p,o=this +o.Cu() +s=o.b +r=s.k2 +q=r.style +q.removeProperty("overflowY") +q.removeProperty("overflowX") +q.removeProperty("touch-action") +p=o.r +if(p!=null)A.i3(r,"scroll",p,null) +B.b.E(s.k1.as,o.e) +o.e=null}} +A.aTi.prototype={ +$0(){var s=this.a +s.a3s() +s.b.Xe()}, +$S:0} +A.aTj.prototype={ +$1(a){this.a.a1C()}, +$S:299} +A.aTk.prototype={ +$1(a){this.a.aA3()}, +$S:3} +A.Ch.prototype={ +l(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.i(s)}, +k(a,b){if(b==null)return!1 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.Ch&&b.a===this.a}, +gu(a){return B.f.gu(this.a)}, +a8P(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.Ch((r&64)!==0?s|64:s&4294967231)}, +aH6(a){return this.a8P(null,a)}, +aH0(a){return this.a8P(a,null)}} +A.aBs.prototype={ +saKJ(a){var s=this.a +this.a=a?s|32:s&4294967263}, +aO(){return new A.Ch(this.a)}} +A.a9a.prototype={$iblw:1} +A.a98.prototype={} +A.nt.prototype={ +J(){return"PrimaryRole."+this.b}} +A.z7.prototype={ +J(){return"Role."+this.b}} +A.a7m.prototype={ +Cx(a,b){var s=this,r=s.b +s.l5(new A.Ct(new A.AU(r.k1),B.p0,r)) +s.l5(new A.y4(B.lh,r)) +s.l5(new A.Ep(B.p1,r)) +s.l5(new A.Ln(B.Nw,r)) +s.l5(new A.Pg(B.Nv,r))}, +l5(a){var s=this.c;(s==null?this.c=A.a([],t.VM):s).push(a)}, +it(a){var s,r,q=this.c +if(q==null)return +for(s=q.length,r=0;r1)for(p=0;p=0;--p){g=l[p] +s=g.id +if(!B.b.p(a0,s)){k=g.k2 +if(a1==null)m.append(k) +else m.insertBefore(k,a1) +g.ok=a2 +q.c.n(0,s,a2)}a1=g.k2}a2.p1=l}, +ask(){var s,r,q=this +if(q.go!==-1)return B.oM +else if((q.a&16)!==0)return B.Nm +else{s=q.b +s.toString +if((s&64)!==0||(s&128)!==0)return B.Nl +else if(q.gW4())return B.Nn +else{s=q.a +if((s&1)!==0||(s&65536)!==0)return B.oL +else if((s&8)!==0)return B.oK +else{r=q.b +r.toString +if((r&32)!==0||(r&16)!==0||(r&4)!==0||(r&8)!==0)return B.oJ +else if((s&2048)!==0)return B.l9 +else return B.oN}}}}, +apT(a){var s,r,q,p=this +switch(a.a){case 3:s=new A.aZ0(B.Nm,p) +s.aC0() +break +case 1:s=A.c8(self.document,"flt-semantics-scroll-overflow") +r=new A.aTb(s,B.oJ,p) +r.Cx(B.oJ,p) +q=s.style +A.Q(q,"position","absolute") +A.Q(q,"transform-origin","0 0 0") +A.Q(q,"pointer-events","none") +p.k2.append(s) +s=r +break +case 0:s=A.bIV(p) +break +case 2:s=new A.av7(B.oK,p) +s.Cx(B.oK,p) +r=A.b1("button") +if(r==null)r=t.K.a(r) +p.k2.setAttribute("role",r) +break +case 4:s=new A.awU(A.bQM(p),B.oL,p) +s.Cx(B.oL,p) +break +case 6:s=new A.a0W(B.l9,p) +s.l5(new A.Ct(new A.AU(p.k1),B.p0,p)) +s.l5(new A.y4(B.lh,p)) +break +case 5:s=new A.aH9(B.Nn,p) +s.l5(new A.Ct(new A.AU(p.k1),B.p0,p)) +s.l5(new A.y4(B.lh,p)) +s.l5(new A.Ep(B.p1,p)) +s.l5(new A.Pg(B.Nv,p)) +break +case 7:s=new A.aNs(B.oM,p) +s.Cx(B.oM,p) +break +case 8:s=new A.aEK(B.oN,p) +s.Cx(B.oN,p) +break +default:s=null}return s}, +aEm(){var s=this,r=s.p2,q=s.ask() +if(r!=null)if(r.a===q){r.it(0) +return}else{r.m() +r=s.p2=null}if(r==null){r=s.apT(q) +s.p2=r +r.it(0)}}, +Xe(){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.k2,g=h.style,f=i.y +A.Q(g,"width",A.i(f.c-f.a)+"px") +f=i.y +A.Q(g,"height",A.i(f.d-f.b)+"px") +g=i.dy +s=g!=null&&!B.i3.gak(g)?i.Yk():null +g=i.y +r=g.b===0&&g.a===0 +q=i.dx +g=q==null +p=g||A.bim(q)===B.Pe +if(r&&p&&i.p3===0&&i.p4===0){A.aTX(h) +if(s!=null)A.aTX(s) +return}o=A.b6("effectiveTransform") +if(!r)if(g){g=i.y +n=g.a +m=g.b +g=A.fL() +g.rH(n,m,0) +o.b=g +l=n===0&&m===0}else{g=new A.dp(new Float32Array(16)) +g.c6(new A.dp(q)) +f=i.y +g.bi(0,f.a,f.b) +o.b=g +l=J.bEu(o.aH())}else if(!p){o.b=new A.dp(q) +l=!1}else l=!0 +if(!l){h=h.style +A.Q(h,"transform-origin","0 0 0") +A.Q(h,"transform",A.mL(o.aH().a))}else A.aTX(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.Q(j,"top",A.i(-h+k)+"px") +A.Q(j,"left",A.i(-g+f)+"px")}else A.aTX(s)}, +aef(a){var s +a.$1(this) +s=this.p1 +if(s!=null)B.b.al(s,new A.aTY(a))}, +l(a){return this.e2(0)}} +A.aTY.prototype={ +$1(a){a.aef(this.a)}, +$S:298} +A.ase.prototype={ +J(){return"AccessibilityMode."+this.b}} +A.xp.prototype={ +J(){return"GestureMode."+this.b}} +A.Oo.prototype={ +J(){return"SemanticsUpdatePhase."+this.b}} +A.aBN.prototype={ +amy(){$.vU.push(new A.aBO(this))}, +arl(){var s,r,q,p,o,n,m,l,k,j,i,h=this +for(r=h.d,q=r.length,p=h.b,o=t.Qo,n=0;n>>0}n=m.cx +if(l.ax!==n){l.ax=n +l.k3=(l.k3|4096)>>>0}n=m.cy +if(l.ay!==n){l.ay=n +l.k3=(l.k3|4096)>>>0}n=m.ax +if(l.z!==n){l.z=n +l.k3=(l.k3|1024)>>>0}n=m.ay +if(l.Q!==n){l.Q=n +l.k3=(l.k3|1024)>>>0}n=m.at +if(!J.j(l.y,n)){l.y=n +l.k3=(l.k3|512)>>>0}n=m.go +if(l.dx!==n){l.dx=n +l.k3=(l.k3|65536)>>>0}n=m.z +if(l.r!==n){l.r=n +l.k3=(l.k3|64)>>>0}n=m.c +if(l.b!==n){l.b=n +l.k3=(l.k3|2)>>>0}n=m.f +if(l.c!==n){l.c=n +l.k3=(l.k3|4)>>>0}n=m.r +if(l.d!==n){l.d=n +l.k3=(l.k3|8)>>>0}n=m.x +if(l.e!==n){l.e=n +l.k3=(l.k3|16)>>>0}n=m.y +if(l.f!==n){l.f=n +l.k3=(l.k3|32)>>>0}n=m.Q +if(l.w!==n){l.w=n +l.k3=(l.k3|128)>>>0}n=m.as +if(l.x!==n){l.x=n +l.k3=(l.k3|256)>>>0}n=m.ch +if(l.as!==n){l.as=n +l.k3=(l.k3|2048)>>>0}n=m.CW +if(l.at!==n){l.at=n +l.k3=(l.k3|2048)>>>0}n=m.db +if(l.ch!==n){l.ch=n +l.k3=(l.k3|8192)>>>0}n=m.dx +if(l.CW!==n){l.CW=n +l.k3=(l.k3|8192)>>>0}n=m.dy +if(l.cx!==n){l.cx=n +l.k3=(l.k3|16384)>>>0}n=m.fr +if(l.cy!==n){l.cy=n +l.k3=(l.k3|16384)>>>0}n=m.fx +if(l.fy!==n){l.fy=n +l.k3=(l.k3|4194304)>>>0}n=m.fy +if(l.db!=n){l.db=n +l.k3=(l.k3|32768)>>>0}n=m.k1 +if(l.fr!==n){l.fr=n +l.k3=(l.k3|1048576)>>>0}n=m.id +if(l.dy!==n){l.dy=n +l.k3=(l.k3|524288)>>>0}n=m.k2 +if(l.fx!==n){l.fx=n +l.k3=(l.k3|2097152)>>>0}n=m.w +if(l.go!==n){l.go=n +l.k3=(l.k3|8388608)>>>0}l.aEm() +n=l.k3 +if((n&512)!==0||(n&65536)!==0||(n&64)!==0)l.Xe() +n=l.dy +n=!(n!=null&&!B.i3.gak(n))&&l.go===-1 +k=l.k2 +if(n){n=k.style +n.setProperty("pointer-events","all","")}else{n=k.style +n.setProperty("pointer-events","none","")}}for(o=0;o=20)return i.d=!0 +if(!B.aqm.p(0,a.type))return!0 +if(i.a!=null)return!1 +r=A.b6("activationPoint") +switch(a.type){case"click":r.sdQ(new A.JU(a.offsetX,a.offsetY)) +break +case"touchstart":case"touchend":s=t.VA +s=A.dF(new A.rA(a.changedTouches,s),s.h("z.E"),t.e) +s=A.l(s).z[1].a(J.jD(s.a)) +r.sdQ(new A.JU(s.clientX,s.clientY)) +break +case"pointerdown":case"pointerup":r.sdQ(new A.JU(a.clientX,a.clientY)) +break +default:return!0}q=i.b.getBoundingClientRect() +s=q.left +p=q.right +o=q.left +n=q.top +m=q.bottom +l=q.top +k=r.aH().a-(s+(p-o)/2) +j=r.aH().b-(n+(m-l)/2) +if(k*k+j*j<1&&!0){i.d=!0 +i.a=A.d0(B.bC,new A.aKF(i)) +return!1}return!0}, +acB(){var s,r=this.b=A.c8(self.document,"flt-semantics-placeholder") +A.dV(r,"click",t.e.a(A.cH(new A.aKE(this))),!0) +s=A.b1("button") +if(s==null)s=t.K.a(s) +r.setAttribute("role",s) +s=A.b1("Enable accessibility") +if(s==null)s=t.K.a(s) +r.setAttribute("aria-label",s) +s=r.style +A.Q(s,"position","absolute") +A.Q(s,"left","0") +A.Q(s,"top","0") +A.Q(s,"right","0") +A.Q(s,"bottom","0") +return r}, +m(){var s=this.b +if(s!=null)s.remove() +this.a=this.b=null}} +A.aKF.prototype={ +$0(){this.a.m() +var s=$.hL;(s==null?$.hL=A.qj():s).sOj(!0)}, +$S:0} +A.aKE.prototype={ +$1(a){this.a.NH(a)}, +$S:3} +A.av7.prototype={ +it(a){var s,r +this.rR(0) +s=this.b +r=s.k2 +if(s.V0()===B.jq){s=A.b1("true") +if(s==null)s=t.K.a(s) +r.setAttribute("aria-disabled",s)}else r.removeAttribute("aria-disabled")}} +A.Pg.prototype={ +it(a){var s=this,r=s.b,q=r.b +q.toString +if((q&1)===0||r.V0()===B.jq)s.aCA() +else if(s.d==null){q=t.e.a(A.cH(new A.aYU(s))) +s.d=q +A.dV(r.k2,"click",q,null)}}, +aCA(){var s=this.d +if(s==null)return +A.i3(this.b.k2,"click",s,null) +this.d=null}} +A.aYU.prototype={ +$1(a){var s=this.a.b +if(s.k1.z!==B.eo)return +$.bO().q0(s.id,B.fY,null)}, +$S:3} +A.aU3.prototype={ +V_(a,b,c,d){this.CW=b +this.x=d +this.y=c}, +aF2(a){var s,r,q=this,p=q.ch +if(p===a)return +else if(p!=null)q.mK(0) +q.ch=a +q.c=a.e +q.a5A() +p=q.CW +p.toString +s=q.x +s.toString +r=q.y +r.toString +q.ahH(0,p,r,s)}, +mK(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.c(A.a2Y(b,this,null,null,null)) +return this.a[b]}, +n(a,b,c){if(b>=this.b)throw A.c(A.a2Y(b,this,null,null,null)) +this.a[b]=c}, +st(a,b){var s,r,q,p=this,o=p.b +if(bo){if(o===0)q=new Uint8Array(b) +else q=p.Ig(b) +B.M.di(q,0,p.b,p.a) +p.a=q}}p.b=b}, +iy(a,b){var s=this,r=s.b +if(r===s.a.length)s.a_g(r) +s.a[s.b++]=b}, +F(a,b){var s=this,r=s.b +if(r===s.a.length)s.a_g(r) +s.a[s.b++]=b}, +Kg(a,b,c,d){A.fN(c,"start") +if(d!=null&&c>d)throw A.c(A.cT(d,c,null,"end",null)) +this.an6(b,c,d)}, +I(a,b){return this.Kg(a,b,0,null)}, +an6(a,b,c){var s,r,q,p=this +if(A.l(p).h("f").b(a))c=c==null?J.b3(a):c +if(c!=null){p.aw2(p.b,a,b,c) +return}for(s=J.al(a),r=0;s.v();){q=s.gG(s) +if(r>=b)p.iy(0,q);++r}if(ro.gt(b)||d>o.gt(b))throw A.c(A.R("Too few elements")) +s=d-c +r=p.b+s +p.aqX(r) +o=p.a +q=a+s +B.M.cv(o,q,p.b+s,o,a) +B.M.cv(p.a,a,q,b,c) +p.b=r}, +fB(a,b,c){var s,r,q=this,p=q.b +if(b>p)throw A.c(A.cT(b,0,p,null,null)) +s=q.a +if(ps)throw A.c(A.cT(c,0,s,null,null)) +s=this.a +if(A.l(this).h("pL").b(d))B.M.cv(s,b,c,d.a,e) +else B.M.cv(s,b,c,d,e)}, +di(a,b,c,d){return this.cv(a,b,c,d,0)}} +A.ahZ.prototype={} +A.abg.prototype={} +A.m6.prototype={ +l(a){return A.p(this).l(0)+"("+this.a+", "+A.i(this.b)+")"}} +A.aHB.prototype={ +dW(a){return A.lq(B.aV.cV(B.az.pQ(a)).buffer,0,null)}, +kp(a){if(a==null)return a +return B.az.ha(0,B.de.cV(A.eO(a.buffer,0,null)))}} +A.aHD.prototype={ +pR(a){return B.aH.dW(A.am(["method",a.a,"args",a.b],t.N,t.z))}, +oV(a){var s,r,q,p=null,o=B.aH.kp(a) +if(!t.f.b(o))throw A.c(A.cn("Expected method call Map, got "+A.i(o),p,p)) +s=J.aj(o) +r=s.i(o,"method") +q=s.i(o,"args") +if(typeof r=="string")return new A.m6(r,q) +throw A.c(A.cn("Invalid method call: "+A.i(o),p,p))}} +A.aXF.prototype={ +dW(a){var s=A.bm4() +this.iu(0,s,!0) +return s.v4()}, +kp(a){var s,r +if(a==null)return null +s=new A.a7G(a) +r=this.jl(0,s) +if(s.b=b.a.byteLength)throw A.c(B.ch) +return this.u0(b.yh(0),b)}, +u0(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.bo===$.fU()) +b.b+=4 +s=r +break +case 4:s=b.O2(0) +break +case 5:q=k.jk(b) +s=A.eq(B.de.cV(b.yi(q)),null,16) +break +case 6:b.ur(8) +r=b.a.getFloat64(b.b,B.bo===$.fU()) +b.b+=8 +s=r +break +case 7:q=k.jk(b) +s=B.de.cV(b.yi(q)) +break +case 8:s=b.yi(k.jk(b)) +break +case 9:q=k.jk(b) +b.ur(4) +p=b.a +o=A.bsX(p.buffer,p.byteOffset+b.b,q) +b.b=b.b+4*q +s=o +break +case 10:s=b.O3(k.jk(b)) +break +case 11:q=k.jk(b) +b.ur(8) +p=b.a +o=A.bsV(p.buffer,p.byteOffset+b.b,q) +b.b=b.b+8*q +s=o +break +case 12:q=k.jk(b) +s=[] +for(p=b.a,n=0;n=p.byteLength)A.r(B.ch) +b.b=m+1 +s.push(k.u0(p.getUint8(m),b))}break +case 13:q=k.jk(b) +p=t.z +s=A.I(p,p) +for(p=b.a,n=0;n=p.byteLength)A.r(B.ch) +b.b=m+1 +m=k.u0(p.getUint8(m),b) +l=b.b +if(l>=p.byteLength)A.r(B.ch) +b.b=l+1 +s.n(0,m,k.u0(p.getUint8(l),b))}break +default:throw A.c(B.ch)}return s}, +kL(a,b){var s,r,q +if(b<254)a.b.iy(0,b) +else{s=a.b +r=a.c +q=a.d +if(b<=65535){s.iy(0,254) +r.setUint16(0,b,B.bo===$.fU()) +s.Kg(0,q,0,2)}else{s.iy(0,255) +r.setUint32(0,b,B.bo===$.fU()) +s.Kg(0,q,0,4)}}}, +jk(a){var s=a.yh(0) +switch(s){case 254:s=a.a.getUint16(a.b,B.bo===$.fU()) +a.b+=2 +return s +case 255:s=a.a.getUint32(a.b,B.bo===$.fU()) +a.b+=4 +return s +default:return s}}} +A.aXH.prototype={ +$2(a,b){var s=this.a,r=this.b +s.iu(0,r,a) +s.iu(0,r,b)}, +$S:55} +A.aXJ.prototype={ +oV(a){var s,r,q +a.toString +s=new A.a7G(a) +r=B.dB.jl(0,s) +q=B.dB.jl(0,s) +if(typeof r=="string"&&s.b>=a.byteLength)return new A.m6(r,q) +else throw A.c(B.xo)}, +EK(a){var s=A.bm4() +s.b.iy(0,0) +B.dB.iu(0,s,a) +return s.v4()}, +xf(a,b,c){var s=A.bm4() +s.b.iy(0,1) +B.dB.iu(0,s,a) +B.dB.iu(0,s,c) +B.dB.iu(0,s,b) +return s.v4()}} +A.b0T.prototype={ +ur(a){var s,r,q=this.b,p=B.f.aJ(q.b,a) +if(p!==0)for(s=a-p,r=0;r0)b=c +else{$.eA() +f=$.dn().d +if(f==null){f=self.window.devicePixelRatio +if(f===0)f=1}b=1/f}f=d==null?a8:A.fd(d.gj(d)) +b0.setProperty("-webkit-text-stroke",A.i(b)+"px "+A.i(f),"")}else if(d!=null){f=A.fd(d.gj(d)) +b0.setProperty("color",f,"")}f=g.cx +a=f==null?a8:f.gaf(f) +if(a!=null){f=A.fd(a.a) +b0.setProperty("background-color",f,"")}a0=g.at +if(a0!=null){f=B.e.eC(a0) +b0.setProperty("font-size",""+f+"px","")}f=g.f +if(f!=null){f=A.byE(f) +f.toString +b0.setProperty("font-weight",f,"")}f=A.bgh(g.y) +f.toString +b0.setProperty("font-family",f,"") +f=g.ax +if(f!=null)b0.setProperty("letter-spacing",A.i(f)+"px","") +f=g.ay +if(f!=null)b0.setProperty("word-spacing",A.i(f)+"px","") +f=g.b +e=f!=null +a1=e&&!0 +a2=g.db +if(a2!=null){a3=A.bSM(a2) +b0.setProperty("text-shadow",a3,"")}if(a1)if(e){e=g.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.i(A.bR6(e)) +a4=f.length===0?a8:f.charCodeAt(0)==0?f:f +if(a4!=null){f=$.dD() +if(f===B.al){f=h.style +f.setProperty("-webkit-text-decoration",a4,"")}else b0.setProperty("text-decoration",a4,"") +a5=g.c +if(a5!=null){f=A.fd(a5.gj(a5)) +b0.setProperty("text-decoration-color",f,"")}}}a6=g.as +if(a6!=null&&a6.length!==0){g=A.bRv(a6) +b0.setProperty("font-variation-settings",g,"")}g=j.adM() +f=g.a +e=g.b +a3=h.style +a3.setProperty("position","absolute","") +a3.setProperty("top",A.i(e)+"px","") +a3.setProperty("left",A.i(f)+"px","") +a3.setProperty("width",A.i(g.c-f)+"px","") +a3.setProperty("line-height",A.i(g.d-e)+"px","") +h.append(self.document.createTextNode(i)) +a9.append(h)}++q}return a9}, +H2(){return this.gjC().H2()}, +H3(a,b,c,d){return this.gjC().afb(a,b,c,d)}, +NV(a,b,c){return this.H3(a,b,c,B.bS)}, +hq(a){return this.gjC().hq(a)}, +rA(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.b() +return new A.dl(A.bvi(B.aBP,r,s+1),A.bvi(B.aBO,r,s))}, +O4(a){var s,r,q,p,o,n=this,m=a.a,l=t.OB,k=0 +while(!0){s=n.r +if(s===$){r=A.a([],l) +n.r!==$&&A.aq() +q=n.r=new A.v8(n,r,B.W) +p=q +s=p}else p=s +if(!(k=o.b&&m") +return A.a8(new A.ad(s,new A.avK(),r),!0,r.h("av.E"))}, +m(){this.y=!0}} +A.avK.prototype={ +$1(a){return a.a}, +$S:507} +A.yv.prototype={ +gcA(a){return this.a}, +gcg(a){return this.c}} +A.DP.prototype={$iyv:1, +gcA(a){return this.f}, +gcg(a){return this.w}} +A.F8.prototype={ +Xq(){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.gPT(b) +r=b.gQb() +q=b.gQc() +p=b.gQd() +o=b.gQe() +n=b.gQJ(b) +m=b.gQH(b) +l=b.gSR() +k=b.gQD(b) +j=b.gQE() +i=b.gQF() +h=b.gQI() +g=b.gQG(b) +f=b.gRx(b) +e=b.gTl(b) +d=b.gP8(b) +c=b.gRE() +e=b.a=A.brq(b.gPs(b),s,r,q,p,o,k,j,i,g,m,h,n,b.gIp(),d,f,c,b.gSF(),l,e) +return e}return a}} +A.YZ.prototype={ +gPT(a){var s=this.c.a +if(s==null)if(this.gIp()==null){s=this.b +s=s.gPT(s)}else s=null +return s}, +gQb(){var s=this.c.b +return s==null?this.b.gQb():s}, +gQc(){var s=this.c.c +return s==null?this.b.gQc():s}, +gQd(){var s=this.c.d +return s==null?this.b.gQd():s}, +gQe(){var s=this.c.e +return s==null?this.b.gQe():s}, +gQJ(a){var s=this.c.f +if(s==null){s=this.b +s=s.gQJ(s)}return s}, +gQH(a){var s=this.b +s=s.gQH(s) +return s}, +gSR(){var s=this.c.w +return s==null?this.b.gSR():s}, +gQE(){var s=this.c.z +return s==null?this.b.gQE():s}, +gQF(){var s=this.b.gQF() +return s}, +gQI(){var s=this.c.as +return s==null?this.b.gQI():s}, +gQG(a){var s=this.c.at +if(s==null){s=this.b +s=s.gQG(s)}return s}, +gRx(a){var s=this.c.ax +if(s==null){s=this.b +s=s.gRx(s)}return s}, +gTl(a){var s=this.c.ay +if(s==null){s=this.b +s=s.gTl(s)}return s}, +gP8(a){var s=this.c.ch +if(s==null){s=this.b +s=s.gP8(s)}return s}, +gRE(){var s=this.c.CW +return s==null?this.b.gRE():s}, +gPs(a){var s=this.c.cx +if(s==null){s=this.b +s=s.gPs(s)}return s}, +gIp(){var s=this.c.cy +return s==null?this.b.gIp():s}, +gSF(){var s=this.c.db +return s==null?this.b.gSF():s}, +gQD(a){var s=this.c +if(s.x)s=s.y +else{s=this.b +s=s.gQD(s)}return s}} +A.a8C.prototype={ +gPT(a){return null}, +gQb(){return null}, +gQc(){return null}, +gQd(){return null}, +gQe(){return null}, +gQJ(a){return this.b.c}, +gQH(a){return this.b.d}, +gSR(){return null}, +gQD(a){var s=this.b.f +return s==null?"sans-serif":s}, +gQE(){return null}, +gQF(){return null}, +gQI(){return null}, +gQG(a){var s=this.b.r +return s==null?14:s}, +gRx(a){return null}, +gTl(a){return null}, +gP8(a){return this.b.w}, +gRE(){return this.b.Q}, +gPs(a){return null}, +gIp(){return null}, +gSF(){return null}} +A.avJ.prototype={ +gQ8(){var s=this.d,r=s.length +return r===0?this.e:s[r-1]}, +gacy(){return this.f}, +Kn(a,b,c,d,e){var s,r=this,q=r.a,p=q.a,o=p+$.bDP() +q.a=o +s=r.gQ8().Xq() +r.a6l(s);++r.f +r.r.push(1) +q=e==null?b:e +r.c.push(new A.DP(s,p.length,o.length,a,b,c,q))}, +a7q(a,b,c){return this.Kn(a,b,c,null,null)}, +Bl(a){this.d.push(new A.YZ(this.gQ8(),t.Q4.a(a)))}, +i2(){var s=this.d +if(s.length!==0)s.pop()}, +DU(a){var s,r=this,q=r.a,p=q.a,o=p+a +q.a=o +s=r.gQ8().Xq() +r.a6l(s) +r.c.push(new A.yv(s,p.length,o.length))}, +a6l(a){var s,r,q,p,o=this +if(!o.w)return +s=a.ax +if(s!=null&&s!==0){o.w=!1 +return}r=a.b +if(r!=null){q=r.a +q=B.k.a!==q}else q=!1 +if(q){o.w=!1 +return}p=a.as +if(p!=null&&p.length!==0){o.w=!1 +return}}, +aO(){var s,r=this,q=r.c +if(q.length===0)q.push(new A.yv(r.e.Xq(),0,0)) +s=r.a.a +return new A.YL(q,r.b,s.charCodeAt(0)==0?s:s,r.w)}} +A.aGl.prototype={ +tO(a){return this.aMc(a)}, +aMc(a0){var s=0,r=A.y(t.S7),q,p=this,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a +var $async$tO=A.u(function(a1,a2){if(a1===1)return A.v(a2,r) +while(true)switch(s){case 0:b=A.a([],t.Rh) +for(o=a0.a,n=o.length,m=0;m")) +b.v() +e=A.bQR(e) +d=A.ab(e) +s=new J.cI(e,e.length,d.h("cI<1>")) +s.v() +e=this.b +r=A.ab(e) +q=new J.cI(e,e.length,r.h("cI<1>")) +q.v() +p=b.d +if(p==null)p=c.c.a(p) +o=s.d +if(o==null)o=d.c.a(o) +n=q.d +if(n==null)n=r.c.a(n) +for(e=c.c,d=d.c,r=r.c,m=0;!0;m=k){c=p.b +l=o.b +k=Math.min(c,Math.min(l,n.gcg(n))) +j=c-k +i=j===0?p.c:B.U +h=k-m +f.push(A.bkN(m,k,i,o.c,o.d,n,A.vV(p.d-j,0,h),A.vV(p.e-j,0,h))) +if(c===k)if(b.v()){p=b.d +if(p==null)p=e.a(p) +g=!0}else g=!1 +else g=!1 +if(l===k)if(s.v()){o=s.d +if(o==null)o=d.a(o) +g=!0}if(n.gcg(n)===k)if(q.v()){n=q.d +if(n==null)n=r.a(n) +g=!0}if(!g)break}return f}} +A.b3K.prototype={ +gu(a){var s=this +return A.X(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.nd&&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.nd.prototype={ +gt(a){return this.b-this.a}, +gW3(){return this.b-this.a===this.w}, +gtM(){return this.f instanceof A.DP}, +Oa(a){var s=a.c +s===$&&A.b() +return B.c.S(s,this.a,this.b-this.r)}, +rL(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.tZ) +s=j.b +if(s===b)return A.a([j,null],t.tZ) +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.bkN(i,b,B.U,m,l,k,q-p,o-n),A.bkN(b,s,j.c,m,l,k,p,n)],t.cN)}, +l(a){var s=this +return B.ay9.l(0)+"("+s.a+", "+s.b+", "+s.c.l(0)+", "+A.i(s.d)+")"}} +A.b68.prototype={ +Hq(a,b,c,d,e){var s=this +s.qN$=a +s.va$=b +s.vb$=c +s.vc$=d +s.iB$=e}} +A.b69.prototype={ +gpd(a){var s,r,q=this,p=q.kr$ +p===$&&A.b() +s=q.AB$ +if(p.x===B.j){s===$&&A.b() +p=s}else{s===$&&A.b() +r=q.iB$ +r===$&&A.b() +r=p.a.f-(s+(r+q.iC$)) +p=r}return p}, +gBt(a){var s,r=this,q=r.kr$ +q===$&&A.b() +s=r.AB$ +if(q.x===B.j){s===$&&A.b() +q=r.iB$ +q===$&&A.b() +q=s+(q+r.iC$)}else{s===$&&A.b() +q=q.a.f-s}return q}, +aLS(a){var s,r,q=this,p=q.kr$ +p===$&&A.b() +s=p.e +if(q.b>p.c-s)return +r=q.w +if(r===0)return +q.iC$=(a-p.a.f)/(p.f-s)*r}} +A.b67.prototype={ +ga5L(){var s,r,q,p,o,n,m,l,k=this,j=k.vd$ +if(j===$){s=k.kr$ +s===$&&A.b() +r=k.gpd(k) +q=k.kr$.a +p=k.va$ +p===$&&A.b() +o=k.gBt(k) +n=k.kr$ +m=k.vb$ +m===$&&A.b() +l=k.d +l.toString +k.vd$!==$&&A.aq() +j=k.vd$=new A.hs(s.a.r+r,q.w-p,q.r+o,n.a.w+m,l)}return j}, +adM(){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.kr$ +h===$&&A.b() +if(i.b>h.c-h.e){s=i.d +s.toString +h=h.a.r +if(s===B.j){s=i.gpd(i) +r=i.kr$.a +q=i.va$ +q===$&&A.b() +p=i.gBt(i) +o=i.iB$ +o===$&&A.b() +n=i.iC$ +m=i.vc$ +m===$&&A.b() +l=i.kr$ +k=i.vb$ +k===$&&A.b() +j=i.d +j.toString +j=new A.hs(h+s,r.w-q,r.r+p-(o+n-m),l.a.w+k,j) +h=j}else{s=i.gpd(i) +r=i.iB$ +r===$&&A.b() +q=i.iC$ +p=i.vc$ +p===$&&A.b() +o=i.kr$.a +n=i.va$ +n===$&&A.b() +m=i.gBt(i) +l=i.kr$ +k=i.vb$ +k===$&&A.b() +j=i.d +j.toString +j=new A.hs(h+s+(r+q-p),o.w-n,o.r+m,l.a.w+k,j) +h=j}return h}return i.ga5L()}, +adP(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.ga5L() +if(r)q=0 +else{r=j.qN$ +r===$&&A.b() +r.sx4(j.f) +r=j.qN$ +p=$.AQ() +o=r.a.c +o===$&&A.b() +r=r.c +q=A.w_(p,o,s,b,r.gcA(r).ax)}s=j.b-j.r +if(a>=s)n=0 +else{r=j.qN$ +r===$&&A.b() +r.sx4(j.f) +r=j.qN$ +p=$.AQ() +o=r.a.c +o===$&&A.b() +r=r.c +n=A.w_(p,o,a,s,r.gcA(r).ax)}s=j.d +s.toString +if(s===B.j){m=j.gpd(j)+q +l=j.gBt(j)-n}else{m=j.gpd(j)+n +l=j.gBt(j)-q}s=j.kr$ +s===$&&A.b() +s=s.a +r=s.r +s=s.w +p=j.va$ +p===$&&A.b() +o=j.vb$ +o===$&&A.b() +k=j.d +k.toString +return new A.hs(r+m,s-p,r+l,s+o,k)}, +aPN(){return this.adP(null,null)}, +afE(a){var s,r,q,p,o,n,m,l,k,j=this +a=j.awP(a) +s=j.a +r=j.b-j.r +q=r-s +if(q===0)return new A.bW(s,B.t) +if(q===1){p=j.iB$ +p===$&&A.b() +return aq.c;){if(q.gaG7()){q.aLd() +s.push(q.aO()) +a0.x=!0 +break $label0$0}if(q.gaLx())q.aPl() +else q.aJk() +n+=q.aFA(o,n+1) +s.push(q.aO()) +q=q.ac9()}a1=q.a +if(a1.length!==0){a1=B.b.gX(a1).c +a1=a1===B.dO||a1===B.dP}else a1=!1 +if(a1){s.push(q.aO()) +q=q.ac9()}}a1=r.b +l=a1.e +if(l!=null&&s.length>l){a0.x=!0 +B.b.rn(s,l,s.length)}for(r=s.length,k=1/0,j=-1/0,i=0;ij)j=c}a0.z=new A.L(k,0,j,a0.c) +if(r!==0)if(isFinite(a0.b)&&a1.a===B.lC)for(n=0;n=d;--s){q=o[s] +q.AB$=e+r +if(q.d==null)q.d=a +p=q.iB$ +p===$&&A.b() +r+=p+q.iC$}return r}, +H2(){var s,r,q,p,o,n,m,l=A.a([],t.Lx) +for(s=this.y,r=s.length,q=0;q=b||a<0||b<0)return A.a([],t.Lx) +s=this.a.c +s===$&&A.b() +r=s.length +if(a>r||b>r)return A.a([],t.Lx) +q=A.a([],t.Lx) +for(s=this.y,p=s.length,o=0;o=j+l.r)return new A.bW(l.c-l.d,B.aT) +s=k-j +for(k=l.w,j=k.length,r=0;r1 +return this.as>0}, +gaFr(){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.j:r)===B.ab?s:0 +case 5:r=r.b +return(r==null?B.j:r)===B.ab?0:s +default:return 0}}, +gaG7(){var s,r=this.d.b +if(r.z==null)return!1 +s=r.e +return s==null||s===this.f+1}, +gaoB(){var s=this.a +if(s.length!==0){s=B.b.gX(s).c +s=s===B.dO||s===B.dP}else s=!1 +if(s)return!1 +s=this.b +s=s==null?null:s.length!==0 +if(s===!0)return!1 +return!0}, +a7m(a){var s=this +s.K0(a) +if(a.c!==B.U)s.Q=s.a.length +B.b.F(s.a,a)}, +K0(a){var s,r=this,q=a.w +r.at=r.at+q +if(a.gW3())r.ax+=q +else{r.ax=q +q=r.x +s=a.vc$ +s===$&&A.b() +r.w=q+s}q=r.x +s=a.iB$ +s===$&&A.b() +r.x=q+(s+a.iC$) +if(a.gtM())r.ano(a) +if(a.c!==B.U)++r.as +q=r.y +s=a.va$ +s===$&&A.b() +r.y=Math.max(q,s) +s=r.z +q=a.vb$ +q===$&&A.b() +r.z=Math.max(s,q)}, +ano(a){var s,r,q,p,o,n=this,m=t.lO.a(a.f) +switch(m.c.a){case 3:s=n.y +r=m.b-s +break +case 4:r=n.z +s=m.b-r +break +case 5:q=n.y +p=n.z +o=m.b/2-(q+p)/2 +s=q+o +r=p+o +break +case 1:s=m.b +r=0 +break +case 2:r=m.b +s=0 +break +case 0:s=m.d +r=m.b-s +break +default:s=null +r=null}q=a.vc$ +q===$&&A.b() +p=a.iB$ +p===$&&A.b() +a.Hq(n.e,s,r,q,p+a.iC$)}, +Dp(){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.gX(s) +if(q.gtM()){if(r){p=g.b +p.toString +B.b.fB(p,0,B.b.h5(s)) +g.Dp()}return}p=g.e +p.sx4(q.f) +o=g.x +n=q.iB$ +n===$&&A.b() +m=q.iC$ +l=q.b-q.r +k=p.aan(q.a,l,r,b-(o-(n+m))) +if(k===l)return +B.b.h5(s) +g.Dp() +j=q.rL(0,k) +i=B.b.gO(j) +if(i!=null){p.Wh(i) +g.a7m(i)}h=B.b.gX(j) +if(h!=null){p.Wh(h) +s=g.b +s.toString +B.b.fB(s,0,h)}}, +aJk(){return this.aao(!1,null)}, +aLd(){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.cN) +s=g.e +r=g.a +s.sx4(B.b.gX(r).f) +q=$.AQ() +p=f.length +o=A.w_(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.gX(r) +j=k.iB$ +j===$&&A.b() +k=l-(j+k.iC$) +l=k}else l=0 +if(!(l>m))break +l=g.b +l.toString +B.b.fB(l,0,B.b.h5(r)) +g.Dp() +s.sx4(B.b.gX(r).f) +o=A.w_(q,f,0,p,null) +m=n-o}i=B.b.gX(r) +g.aao(!0,m) +f=g.ga9U() +h=new A.a1j($,$,$,$,$,$,$,$,0,B.dP,null,B.ns,i.f,0,0,f,f) +f=i.va$ +f===$&&A.b() +r=i.vb$ +r===$&&A.b() +h.Hq(s,f,r,o,o) +g.a7m(h)}, +aPl(){var s,r=this.a,q=r.length,p=q-2 +for(;r[p].c===B.U;)--p +s=p+1 +A.dJ(s,q,q,null,null) +this.b=A.fQ(r,s,q,A.ab(r).c).fO(0) +B.b.rn(r,s,r.length) +this.Dp()}, +aFA(a,b){var s,r=this,q=r.a,p=b +while(!0){if(r.gaoB())if(p1;){p=B.f.cE(q+r,2) +o=$.AQ() +s===$&&A.b() +n=this.c +m=A.w_(o,s,a,p,n.gcA(n).ax) +if(md?q:p +r=p}}return q===a&&!c?q+1:q}} +A.u9.prototype={ +J(){return"LineBreakType."+this.b}} +A.aCr.prototype={ +LO(){return A.bQT(this.a)}} +A.b0B.prototype={ +LO(){var s=this.a +return A.byd(s,s,this.b)}} +A.u8.prototype={ +gu(a){var s=this +return A.X(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.u8&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d&&b.e===s.e}, +l(a){return"LineBreakFragment("+this.a+", "+this.b+", "+this.c.l(0)+")"}} +A.beW.prototype={ +$2(a,b){var s=this,r=a===B.dP?s.b.length:s.a.f,q=s.a,p=q.a +if(p===B.fp)++q.d +else if(p===B.hE||p===B.jL||p===B.jP){++q.e;++q.d}if(a===B.U)return +p=q.c +s.c.push(new A.u8(a,q.e,q.d,p,r)) +q.c=q.f +q.d=q.e=0 +q.a=q.b=null}, +$S:565} +A.a8J.prototype={ +m(){this.a.remove()}} +A.aZC.prototype={ +aE(a,b){var s,r,q,p,o,n,m,l=this.a.gjC().y +for(s=l.length,r=0;rthis.b)return B.aBw +return B.aBv}} +A.rp.prototype={ +LK(a,b,c){var s=A.WP(b,c) +return s==null?this.b:this.AI(s)}, +AI(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.anI(a) +p=q===-1?o.b:o.a[q].c +s.n(0,a,p) +return p}, +anI(a){var s,r,q=this.a,p=q.length +for(s=0;s")).al(0,new A.aBu(this,r)) +return r}} +A.aBu.prototype={ +$1(a){var s=this.a,r=s.b.i(0,a) +r.toString +this.b.push(A.eK(r,"input",new A.aBv(s,a,r)))}, +$S:25} +A.aBv.prototype={ +$1(a){var s,r=this.a.c,q=this.b +if(r.i(0,q)==null)throw A.c(A.R("AutofillInfo must have a valid uniqueIdentifier.")) +else{r=r.i(0,q) +r.toString +s=A.brj(this.c) +$.bO().q_("flutter/textinput",B.bT.pR(new A.m6(u.n,[0,A.am([r.b,s.adJ()],t.v,t.z)])),A.aqY())}}, +$S:3} +A.Y5.prototype={ +a7B(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.c.p(p,q))A.azs(a,q) +else A.azs(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.b1(s?"on":p) +s=r==null?t.K.a(r):r +a.setAttribute("autocomplete",s)}}}, +jK(a){return this.a7B(a,!1)}} +A.Fl.prototype={} +A.Cd.prototype={ +gMy(){return Math.min(this.b,this.c)}, +gMt(){return Math.max(this.b,this.c)}, +adJ(){var s=this +return A.am(["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.X(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.p(s)!==J.a_(b))return!1 +return b instanceof A.Cd&&b.a==s.a&&b.gMy()===s.gMy()&&b.gMt()===s.gMt()&&b.d===s.d&&b.e===s.e}, +l(a){return this.e2(0)}, +jK(a){var s,r,q=this,p=globalThis.HTMLInputElement +if(p!=null&&a instanceof p){a.toString +A.bqX(a,q.a) +s=q.gMy() +r=q.gMt() +a.setSelectionRange(s,r)}else{p=globalThis.HTMLTextAreaElement +if(p!=null&&a instanceof p){a.toString +A.br0(a,q.a) +s=q.gMy() +r=q.gMt() +a.setSelectionRange(s,r)}else{s=a==null?null:A.bHe(a) +throw A.c(A.aa("Unsupported DOM element type: <"+A.i(s)+"> ("+J.a_(a).l(0)+")"))}}}} +A.aHo.prototype={} +A.a2n.prototype={ +q8(){var s,r=this,q=r.w +if(q!=null){s=r.c +s.toString +q.jK(s)}q=r.d +q===$&&A.b() +if(q.w!=null){r.G6() +q=r.e +if(q!=null)q.jK(r.c) +r.gaam().focus() +r.c.focus()}}} +A.a8L.prototype={ +q8(){var s,r=this,q=r.w +if(q!=null){s=r.c +s.toString +q.jK(s)}q=r.d +q===$&&A.b() +if(q.w!=null)A.d0(B.B,new A.aSi(r))}, +Fp(){if(this.w!=null)this.q8() +this.c.focus()}} +A.aSi.prototype={ +$0(){var s,r=this.a +r.G6() +r.gaam().focus() +r.c.focus() +s=r.e +if(s!=null){r=r.c +r.toString +s.jK(r)}}, +$S:0} +A.JL.prototype={ +gpP(){var s=null,r=this.f +if(r==null){r=this.e.a +r.toString +r=this.f=new A.Fl(r,"",-1,-1,s,s,s,s)}return r}, +gaam(){var s=this.d +s===$&&A.b() +s=s.w +return s==null?null:s.a}, +AT(a,b,c){var s,r,q,p=this,o="none",n="transparent" +p.c=a.a.Up() +p.TH(a) +s=p.c +s.classList.add("flt-text-editing") +r=s.style +A.Q(r,"forced-color-adjust",o) +A.Q(r,"white-space","pre-wrap") +A.Q(r,"align-content","center") +A.Q(r,"position","absolute") +A.Q(r,"top","0") +A.Q(r,"left","0") +A.Q(r,"padding","0") +A.Q(r,"opacity","1") +A.Q(r,"color",n) +A.Q(r,"background-color",n) +A.Q(r,"background",n) +A.Q(r,"caret-color",n) +A.Q(r,"outline",o) +A.Q(r,"border",o) +A.Q(r,"resize",o) +A.Q(r,"text-shadow",o) +A.Q(r,"overflow","hidden") +A.Q(r,"transform-origin","0 0 0") +q=$.dD() +if(q!==B.dA)q=q===B.al +else q=!0 +if(q)s.classList.add("transparentTextEditing") +s=p.r +if(s!=null){q=p.c +q.toString +s.jK(q)}s=p.d +s===$&&A.b() +if(s.w==null){s=$.hB.x +s===$&&A.b() +q=p.c +q.toString +s.append(q) +p.Q=!1}p.Fp() +p.b=!0 +p.x=c +p.y=b}, +TH(a){var s,r,q,p,o,n=this +n.d=a +s=n.c +if(a.c){s.toString +r=A.b1("readonly") +if(r==null)r=t.K.a(r) +s.setAttribute("readonly",r)}else s.removeAttribute("readonly") +if(a.d){s=n.c +s.toString +r=A.b1("password") +if(r==null)r=t.K.a(r) +s.setAttribute("type",r)}if(a.a===B.qU){s=n.c +s.toString +r=A.b1("none") +if(r==null)r=t.K.a(r) +s.setAttribute("inputmode",r)}q=A.bHK(a.b) +s=n.c +s.toString +q.aGK(s) +p=a.r +s=n.c +if(p!=null){s.toString +p.a7B(s,!0)}else{s.toString +r=A.b1("off") +if(r==null)r=t.K.a(r) +s.setAttribute("autocomplete",r)}o=a.e?"on":"off" +s=n.c +s.toString +r=A.b1(o) +if(r==null)r=t.K.a(r) +s.setAttribute("autocorrect",r)}, +Fp(){this.q8()}, +DR(){var s,r,q=this,p=q.d +p===$&&A.b() +p=p.w +if(p!=null)B.b.I(q.z,p.DS()) +p=q.z +s=q.c +s.toString +r=q.gF9() +p.push(A.eK(s,"input",r)) +s=q.c +s.toString +p.push(A.eK(s,"keydown",q.gFO())) +p.push(A.eK(self.document,"selectionchange",r)) +r=q.c +r.toString +A.dV(r,"beforeinput",t.e.a(A.cH(q.gLP())),null) +r=q.c +r.toString +q.Kj(r) +r=q.c +r.toString +p.push(A.eK(r,"blur",new A.ayq(q))) +q.Ne()}, +XN(a){this.w=a +if(this.b)this.q8()}, +XO(a){var s +this.r=a +if(this.b){s=this.c +s.toString +a.jK(s)}}, +mK(a){var s,r,q,p=this,o=null +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.jK(this.c)}, +q8(){this.c.focus()}, +G6(){var s,r,q=this.d +q===$&&A.b() +q=q.w +q.toString +s=this.c +s.toString +r=q.a +r.insertBefore(s,q.d) +q=$.hB.x +q===$&&A.b() +q.append(r) +this.Q=!0}, +aaA(a){var s,r,q=this,p=q.c +p.toString +s=q.aIc(A.brj(p)) +p=q.d +p===$&&A.b() +if(p.f){q.gpP().r=s.d +q.gpP().w=s.e +r=A.bN0(s,q.e,q.gpP())}else r=null +if(!s.k(0,q.e)){q.e=s +q.f=r +q.x.$2(s,r)}q.f=null}, +aJx(a){var s,r,q,p=this,o=A.af(a.data),n=A.af(a.inputType) +if(n!=null){s=p.e +r=s.b +q=s.c +r=r>q?r:q +if(B.c.p(n,"delete")){p.gpP().b="" +p.gpP().d=r}else if(n==="insertLineBreak"){p.gpP().b="\n" +p.gpP().c=r +p.gpP().d=r}else if(o!=null){p.gpP().b=o +p.gpP().c=r +p.gpP().d=r}}}, +aMB(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.b() +s.$1(r.b) +if(!(this.d.a instanceof A.a6a))a.preventDefault()}}, +V_(a,b,c,d){var s,r=this +r.AT(b,c,d) +r.DR() +s=r.e +if(s!=null)r.YR(s) +r.c.focus()}, +Ne(){var s=this,r=s.z,q=s.c +q.toString +r.push(A.eK(q,"mousedown",new A.ayr())) +q=s.c +q.toString +r.push(A.eK(q,"mouseup",new A.ays())) +q=s.c +q.toString +r.push(A.eK(q,"mousemove",new A.ayt()))}} +A.ayq.prototype={ +$1(a){this.a.c.focus()}, +$S:3} +A.ayr.prototype={ +$1(a){a.preventDefault()}, +$S:3} +A.ays.prototype={ +$1(a){a.preventDefault()}, +$S:3} +A.ayt.prototype={ +$1(a){a.preventDefault()}, +$S:3} +A.aGN.prototype={ +AT(a,b,c){var s,r=this +r.OK(a,b,c) +s=r.c +s.toString +a.a.a8y(s) +s=r.d +s===$&&A.b() +if(s.w!=null)r.G6() +s=r.c +s.toString +a.x.YN(s)}, +Fp(){A.Q(this.c.style,"transform","translate(-9999px, -9999px)") +this.p1=!1}, +DR(){var s,r,q,p=this,o=p.d +o===$&&A.b() +o=o.w +if(o!=null)B.b.I(p.z,o.DS()) +o=p.z +s=p.c +s.toString +r=p.gF9() +o.push(A.eK(s,"input",r)) +s=p.c +s.toString +o.push(A.eK(s,"keydown",p.gFO())) +o.push(A.eK(self.document,"selectionchange",r)) +r=p.c +r.toString +A.dV(r,"beforeinput",t.e.a(A.cH(p.gLP())),null) +r=p.c +r.toString +p.Kj(r) +r=p.c +r.toString +o.push(A.eK(r,"focus",new A.aGQ(p))) +p.ank() +q=new A.k9() +$.kp() +q.rM(0) +r=p.c +r.toString +o.push(A.eK(r,"blur",new A.aGR(p,q)))}, +XN(a){var s=this +s.w=a +if(s.b&&s.p1)s.q8()}, +mK(a){var s +this.ahG(0) +s=this.ok +if(s!=null)s.aI(0) +this.ok=null}, +ank(){var s=this.c +s.toString +this.z.push(A.eK(s,"click",new A.aGO(this)))}, +a4D(){var s=this.ok +if(s!=null)s.aI(0) +this.ok=A.d0(B.aX,new A.aGP(this))}, +q8(){var s,r +this.c.focus() +s=this.w +if(s!=null){r=this.c +r.toString +s.jK(r)}}} +A.aGQ.prototype={ +$1(a){this.a.a4D()}, +$S:3} +A.aGR.prototype={ +$1(a){var s=A.dW(this.b.ga9P(),0,0).a<2e5,r=self.document.hasFocus()&&s,q=this.a +if(r)q.c.focus() +else q.a.Ok()}, +$S:3} +A.aGO.prototype={ +$1(a){var s=this.a +if(s.p1){s.Fp() +s.a4D()}}, +$S:3} +A.aGP.prototype={ +$0(){var s=this.a +s.p1=!0 +s.q8()}, +$S:0} +A.asp.prototype={ +AT(a,b,c){var s,r,q=this +q.OK(a,b,c) +s=q.c +s.toString +a.a.a8y(s) +s=q.d +s===$&&A.b() +if(s.w!=null)q.G6() +else{s=$.hB.x +s===$&&A.b() +r=q.c +r.toString +s.append(r)}s=q.c +s.toString +a.x.YN(s)}, +DR(){var s,r,q=this,p=q.d +p===$&&A.b() +p=p.w +if(p!=null)B.b.I(q.z,p.DS()) +p=q.z +s=q.c +s.toString +r=q.gF9() +p.push(A.eK(s,"input",r)) +s=q.c +s.toString +p.push(A.eK(s,"keydown",q.gFO())) +p.push(A.eK(self.document,"selectionchange",r)) +r=q.c +r.toString +A.dV(r,"beforeinput",t.e.a(A.cH(q.gLP())),null) +r=q.c +r.toString +q.Kj(r) +r=q.c +r.toString +p.push(A.eK(r,"blur",new A.asq(q))) +q.Ne()}, +q8(){var s,r +this.c.focus() +s=this.w +if(s!=null){r=this.c +r.toString +s.jK(r)}}} +A.asq.prototype={ +$1(a){var s=this.a +if(self.document.hasFocus())s.c.focus() +else s.a.Ok()}, +$S:3} +A.aD7.prototype={ +AT(a,b,c){var s +this.OK(a,b,c) +s=this.d +s===$&&A.b() +if(s.w!=null)this.G6()}, +DR(){var s,r,q=this,p=q.d +p===$&&A.b() +p=p.w +if(p!=null)B.b.I(q.z,p.DS()) +p=q.z +s=q.c +s.toString +r=q.gF9() +p.push(A.eK(s,"input",r)) +s=q.c +s.toString +p.push(A.eK(s,"keydown",q.gFO())) +s=q.c +s.toString +A.dV(s,"beforeinput",t.e.a(A.cH(q.gLP())),null) +s=q.c +s.toString +q.Kj(s) +s=q.c +s.toString +p.push(A.eK(s,"keyup",new A.aD9(q))) +s=q.c +s.toString +p.push(A.eK(s,"select",r)) +r=q.c +r.toString +p.push(A.eK(r,"blur",new A.aDa(q))) +q.Ne()}, +azI(){A.d0(B.B,new A.aD8(this))}, +q8(){var s,r,q=this +q.c.focus() +s=q.w +if(s!=null){r=q.c +r.toString +s.jK(r)}s=q.e +if(s!=null){r=q.c +r.toString +s.jK(r)}}} +A.aD9.prototype={ +$1(a){this.a.aaA(a)}, +$S:3} +A.aDa.prototype={ +$1(a){this.a.azI()}, +$S:3} +A.aD8.prototype={ +$0(){this.a.c.focus()}, +$S:0} +A.aZg.prototype={} +A.aZn.prototype={ +kG(a){var s=a.b +if(s!=null&&s!==this.a&&a.c){a.c=!1 +a.goD().mK(0)}a.b=this.a +a.d=this.b}} +A.aZu.prototype={ +kG(a){var s=a.goD(),r=a.d +r.toString +s.TH(r)}} +A.aZp.prototype={ +kG(a){a.goD().YR(this.a)}} +A.aZs.prototype={ +kG(a){if(!a.c)a.aCt()}} +A.aZo.prototype={ +kG(a){a.goD().XN(this.a)}} +A.aZr.prototype={ +kG(a){a.goD().XO(this.a)}} +A.aZe.prototype={ +kG(a){if(a.c){a.c=!1 +a.goD().mK(0)}}} +A.aZk.prototype={ +kG(a){if(a.c){a.c=!1 +a.goD().mK(0)}}} +A.aZq.prototype={ +kG(a){}} +A.aZm.prototype={ +kG(a){}} +A.aZl.prototype={ +kG(a){}} +A.aZj.prototype={ +kG(a){a.Ok() +if(this.a)A.bXT() +A.bTG()}} +A.bi0.prototype={ +$2(a,b){var s=t.qr +s=A.dF(new A.hX(b.getElementsByClassName("submitBtn"),s),s.h("z.E"),t.e) +A.l(s).z[1].a(J.jD(s.a)).click()}, +$S:639} +A.aYY.prototype={ +aKw(a,b){var s,r,q,p,o,n,m,l,k=B.bT.oV(a) +switch(k.a){case"TextInput.setClient":s=k.b +r=J.aj(s) +q=new A.aZn(A.ep(r.i(s,0)),A.bsf(t.a.a(r.i(s,1)))) +break +case"TextInput.updateConfig":this.a.d=A.bsf(t.a.a(k.b)) +q=B.T1 +break +case"TextInput.setEditingState":q=new A.aZp(A.brk(t.a.a(k.b))) +break +case"TextInput.show":q=B.T_ +break +case"TextInput.setEditableSizeAndTransform":q=new A.aZo(A.bHu(t.a.a(k.b))) +break +case"TextInput.setStyle":s=t.a.a(k.b) +r=J.aj(s) +p=A.ep(r.i(s,"textAlignIndex")) +o=A.ep(r.i(s,"textDirectionIndex")) +n=A.bw(r.i(s,"fontWeightIndex")) +m=n!=null?A.byD(n):"normal" +l=A.beF(r.i(s,"fontSize")) +if(l==null)l=null +q=new A.aZr(new A.aBa(l,m,A.af(r.i(s,"fontFamily")),B.ag3[p],B.B7[o])) +break +case"TextInput.clearClient":q=B.SV +break +case"TextInput.hide":q=B.SW +break +case"TextInput.requestAutofill":q=B.SX +break +case"TextInput.finishAutofillContext":q=new A.aZj(A.AE(k.b)) +break +case"TextInput.setMarkedTextRect":q=B.SZ +break +case"TextInput.setCaretRect":q=B.SY +break +default:$.bO().jr(b,null) +return}q.kG(this.a) +new A.aYZ(b).$0()}} +A.aYZ.prototype={ +$0(){$.bO().jr(this.a,B.aH.dW([!0]))}, +$S:0} +A.aGK.prototype={ +gfW(a){var s=this.a +if(s===$){s!==$&&A.aq() +s=this.a=new A.aYY(this)}return s}, +goD(){var s,r,q,p,o=this,n=null,m=o.f +if(m===$){s=$.hL +if((s==null?$.hL=A.qj():s).x){s=A.bMa(o) +r=s}else{s=$.dD() +if(s===B.al){q=$.fV() +q=q===B.bG}else q=!1 +if(q)p=new A.aGN(o,A.a([],t.Up),$,$,$,n) +else if(s===B.al)p=new A.a8L(o,A.a([],t.Up),$,$,$,n) +else{if(s===B.dA){q=$.fV() +q=q===B.kZ}else q=!1 +if(q)p=new A.asp(o,A.a([],t.Up),$,$,$,n) +else p=s===B.cX?new A.aD7(o,A.a([],t.Up),$,$,$,n):A.bIG(o)}r=p}o.f!==$&&A.aq() +m=o.f=r}return m}, +aCt(){var s,r,q=this +q.c=!0 +s=q.goD() +r=q.d +r.toString +s.V_(0,r,new A.aGL(q),new A.aGM(q))}, +Ok(){var s,r=this +if(r.c){r.c=!1 +r.goD().mK(0) +r.gfW(r) +s=r.b +$.bO().q_("flutter/textinput",B.bT.pR(new A.m6("TextInputClient.onConnectionClosed",[s])),A.aqY())}}} +A.aGM.prototype={ +$2(a,b){var s,r,q="flutter/textinput",p=this.a +if(p.d.f){p.gfW(p) +p=p.b +s=t.N +r=t.z +$.bO().q_(q,B.bT.pR(new A.m6(u.f,[p,A.am(["deltas",A.a([A.am(["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.H7)],s,r)])),A.aqY())}else{p.gfW(p) +p=p.b +$.bO().q_(q,B.bT.pR(new A.m6("TextInputClient.updateEditingState",[p,a.adJ()])),A.aqY())}}, +$S:644} +A.aGL.prototype={ +$1(a){var s=this.a +s.gfW(s) +s=s.b +$.bO().q_("flutter/textinput",B.bT.pR(new A.m6("TextInputClient.performAction",[s,a])),A.aqY())}, +$S:44} +A.aBa.prototype={ +jK(a){var s=this,r=a.style +A.Q(r,"text-align",A.bYx(s.d,s.e)) +A.Q(r,"font",s.b+" "+A.i(s.a)+"px "+A.i(A.bgh(s.c)))}} +A.aAq.prototype={ +jK(a){var s=A.mL(this.c),r=a.style +A.Q(r,"width",A.i(this.a)+"px") +A.Q(r,"height",A.i(this.b)+"px") +A.Q(r,"transform",s)}} +A.aAr.prototype={ +$1(a){return A.oa(a)}, +$S:671} +A.PM.prototype={ +J(){return"TransformKind."+this.b}} +A.bgg.prototype={ +$1(a){return"0x"+B.c.eP(B.f.of(a,16),2,"0")}, +$S:297} +A.a3I.prototype={ +gt(a){return this.b.b}, +i(a,b){var s=this.c.i(0,b) +return s==null?null:s.d.b}, +a_f(a,b,c){var s,r,q,p=this.b +p.Kk(new A.al5(b,c)) +s=this.c +r=p.a +q=r.b.I2() +q.toString +s.n(0,b,q) +if(p.b>this.a){s.E(0,r.a.gEJ().a) +p.h5(0)}}} +A.dp.prototype={ +c6(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]}, +n(a,b,c){this.a[b]=c}, +bi(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}, +aQ5(a,b){return this.bi(a,b,0)}, +rC(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]}, +c0(a,b){return this.rC(a,b,null,null)}, +iT(a,b,c){return this.rC(a,b,c,null)}, +G5(a,b,c){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=1/(s[3]*a+s[7]*b+s[11]*c+s[15]) +return new A.To((r*a+q*b+p*c+o)*f,(n*a+m*b+l*c+k)*f,(j*a+i*b+h*c+g)*f)}, +Fu(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}, +ady(b0,b1,b2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=b1.a,a0=b1.b,a1=b1.c,a2=Math.sqrt(a*a+a0*a0+a1*a1),a3=a/a2,a4=a0/a2,a5=a1/a2,a6=Math.cos(b2),a7=Math.sin(b2),a8=1-a6,a9=a3*a3*a8+a6 +a1=a5*a7 +s=a3*a4*a8-a1 +a0=a4*a7 +r=a3*a5*a8+a0 +q=a4*a3*a8+a1 +p=a4*a4*a8+a6 +a1=a3*a7 +o=a4*a5*a8-a1 +n=a5*a3*a8-a0 +m=a5*a4*a8+a1 +l=a5*a5*a8+a6 +a1=this.a +a0=a1[0] +a=a1[4] +k=a1[8] +j=a1[1] +i=a1[5] +h=a1[9] +g=a1[2] +f=a1[6] +e=a1[10] +d=a1[3] +c=a1[7] +b=a1[11] +a1[0]=a0*a9+a*q+k*n +a1[1]=j*a9+i*q+h*n +a1[2]=g*a9+f*q+e*n +a1[3]=d*a9+c*q+b*n +a1[4]=a0*s+a*p+k*m +a1[5]=j*s+i*p+h*m +a1[6]=g*s+f*p+e*m +a1[7]=d*s+c*p+b*m +a1[8]=a0*r+a*o+k*l +a1[9]=j*r+i*o+h*l +a1[10]=g*r+f*o+e*l +a1[11]=d*r+c*o+b*l}, +rH(a,b,c){var s=this.a +s[14]=c +s[13]=b +s[12]=a}, +j6(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.c6(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}, +eN(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}, +Mz(a){var s=new A.dp(new Float32Array(16)) +s.c6(this) +s.eN(0,a) +return s}, +ae0(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]}, +l(a){return this.e2(0)}} +A.aCw.prototype={ +ae_(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.a0u.prototype={ +amw(a){var s=A.bU6(new A.ay9(this)) +this.b=s +s.observe(this.a)}, +anP(a){this.c.F(0,a)}, +ah(a){var s=this.b +s===$&&A.b() +s.disconnect() +this.c.ah(0)}, +gacl(a){var s=this.c +return new A.j_(s,A.l(s).h("j_<1>"))}, +wY(){var s,r +$.eA() +s=$.dn().d +if(s==null){r=self.window.devicePixelRatio +s=r===0?1:r}r=this.a +return new A.U(r.clientWidth*s,r.clientHeight*s)}, +a8t(a,b){return B.iB}} +A.ay9.prototype={ +$2(a,b){new A.ad(a,new A.ay8(),A.l(a).h("ad")).al(0,this.a.ganO())}, +$S:752} +A.ay8.prototype={ +$1(a){return new A.U(a.contentRect.width,a.contentRect.height)}, +$S:780} +A.ayA.prototype={} +A.a2b.prototype={ +ayG(a){this.b.F(0,null)}, +ah(a){var s=this.a +s===$&&A.b() +s.b.removeEventListener(s.a,s.c) +this.b.ah(0)}, +gacl(a){var s=this.b +return new A.j_(s,A.l(s).h("j_<1>"))}, +wY(){var s,r,q,p=A.b6("windowInnerWidth"),o=A.b6("windowInnerHeight"),n=self.window.visualViewport +$.eA() +s=$.dn().d +if(s==null){r=self.window.devicePixelRatio +s=r===0?1:r}if(n!=null){r=$.fV() +if(r===B.bG){r=self.document.documentElement.clientWidth +q=self.document.documentElement.clientHeight +p.b=r*s +o.b=q*s}else{r=n.width +if(r==null)r=null +r.toString +p.b=r*s +r=A.br7(n) +r.toString +o.b=r*s}}else{r=self.window.innerWidth +if(r==null)r=null +r.toString +p.b=r*s +r=A.bra(self.window) +r.toString +o.b=r*s}return new A.U(p.aH(),o.aH())}, +a8t(a,b){var s,r,q,p +$.eA() +s=$.dn().d +if(s==null){r=self.window.devicePixelRatio +s=r===0?1:r}q=self.window.visualViewport +p=A.b6("windowInnerHeight") +if(q!=null){r=$.fV() +if(r===B.bG&&!b)p.b=self.document.documentElement.clientHeight*s +else{r=A.br7(q) +r.toString +p.b=r*s}}else{r=A.bra(self.window) +r.toString +p.b=r*s}return new A.abK(0,0,0,a-p.aH())}} +A.aya.prototype={ +ab6(a,b){var s +b.gdX(b).al(0,new A.ayb(this)) +s=A.b1("custom-element") +if(s==null)s=t.K.a(s) +this.b.setAttribute("flt-embedding",s)}, +a7M(a){A.Q(a.style,"width","100%") +A.Q(a.style,"height","100%") +A.Q(a.style,"display","block") +A.Q(a.style,"overflow","hidden") +A.Q(a.style,"position","relative") +this.b.appendChild(a) +this.Gj(a)}, +a7N(a,b){this.b.insertBefore(a,b) +this.Gj(a)}} +A.ayb.prototype={ +$1(a){var s=A.b1(a.b) +if(s==null)s=t.K.a(s) +this.a.b.setAttribute(a.a,s)}, +$S:295} +A.aBm.prototype={ +Gj(a){}} +A.aEi.prototype={ +ab6(a,b){var s,r,q="0",p="none" +b.gdX(b).al(0,new A.aEj(this)) +s=self.document.body +s.toString +r=A.b1("full-page") +if(r==null)r=t.K.a(r) +s.setAttribute("flt-embedding",r) +this.anB() +r=self.document.body +r.toString +A.fF(r,"position","fixed") +A.fF(r,"top",q) +A.fF(r,"right",q) +A.fF(r,"bottom",q) +A.fF(r,"left",q) +A.fF(r,"overflow","hidden") +A.fF(r,"padding",q) +A.fF(r,"margin",q) +A.fF(r,"user-select",p) +A.fF(r,"-webkit-user-select",p) +A.fF(r,"touch-action",p)}, +a7M(a){var s=a.style +A.Q(s,"position","absolute") +A.Q(s,"top","0") +A.Q(s,"right","0") +A.Q(s,"bottom","0") +A.Q(s,"left","0") +self.document.body.append(a) +this.Gj(a)}, +a7N(a,b){self.document.body.insertBefore(a,b) +this.Gj(a)}, +anB(){var s,r,q +for(s=t.qr,s=A.dF(new A.hX(self.document.head.querySelectorAll('meta[name="viewport"]'),s),s.h("z.E"),t.e),r=J.al(s.a),s=A.l(s),s=s.h("@<1>").V(s.z[1]).z[1];r.v();)s.a(r.gG(r)).remove() +q=A.c8(self.document,"meta") +s=A.b1("") +if(s==null)s=t.K.a(s) +q.setAttribute("flt-viewport",s) +q.name="viewport" +q.content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" +self.document.head.append(q) +this.Gj(q)}} +A.aEj.prototype={ +$1(a){var s,r=self.document.body +r.toString +s=A.b1(a.b) +if(s==null)s=t.K.a(s) +r.setAttribute(a.a,s)}, +$S:295} +A.a1q.prototype={ +amx(a,b){var s=this,r=s.b,q=s.a +r.e.n(0,q,s) +r.f.n(0,q,B.r3) +$.vU.push(new A.aBy(s))}, +ga8B(){var s,r=this.d +if(r===$){s=$.hB.f +s===$&&A.b() +r!==$&&A.aq() +r=this.d=new A.axC(s)}return r}, +gKA(){var s=this.e +if(s==null){s=$.biL() +s=this.e=A.bnk(s)}return s}, +DL(){var s=0,r=A.y(t.H),q,p=this,o,n +var $async$DL=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:n=p.e +if(n==null){n=$.biL() +n=p.e=A.bnk(n)}if(n instanceof A.Ox){s=1 +break}o=n.gvN() +n=p.e +n=n==null?null:n.rr() +s=3 +return A.t(t.uz.b(n)?n:A.kU(n,t.H),$async$DL) +case 3:p.e=A.bu5(o) +case 1:return A.w(q,r)}}) +return A.x($async$DL,r)}, +K6(){var s=0,r=A.y(t.H),q,p=this,o,n +var $async$K6=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:n=p.e +if(n==null){n=$.biL() +n=p.e=A.bnk(n)}if(n instanceof A.Md){s=1 +break}o=n.gvN() +n=p.e +n=n==null?null:n.rr() +s=3 +return A.t(t.uz.b(n)?n:A.kU(n,t.H),$async$K6) +case 3:p.e=A.bsS(o) +case 1:return A.w(q,r)}}) +return A.x($async$K6,r)}, +DM(a){return this.aEO(a)}, +aEO(a){var s=0,r=A.y(t.y),q,p=2,o,n=[],m=this,l,k,j +var $async$DM=A.u(function(b,c){if(b===1){o=c +s=p}while(true)switch(s){case 0:k=m.f +j=new A.aD(new A.a7($.ac,t.b),t.gR) +m.f=j.a +s=3 +return A.t(k,$async$DM) +case 3:l=!1 +p=4 +s=7 +return A.t(a.$0(),$async$DM) +case 7:l=c +n.push(6) +s=5 +break +case 4:n=[2] +case 5:p=2 +J.bpr(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$DM,r)}, +Vv(a){return this.aK1(a)}, +aK1(a){var s=0,r=A.y(t.y),q,p=this +var $async$Vv=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:q=p.DM(new A.aBz(p,a)) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Vv,r)}, +gwG(){var s=this.b.f.i(0,this.a) +return s==null?B.r3:s}, +gnG(){if(this.x==null)this.wY() +var s=this.x +s.toString +return s}, +wY(){var s=this.r +s===$&&A.b() +this.x=s.wY()}, +a8w(a){var s=this.r +s===$&&A.b() +this.w=s.a8t(this.x.b,a)}, +aLI(){var s,r,q,p +if(this.x!=null){s=this.r +s===$&&A.b() +r=s.wY() +s=this.x +q=s.b +p=r.b +if(q!==p&&s.a!==r.a){s=s.a +if(!(q>s&&pq&&r.a

").V(b).h("iz<1,2>"))}, +F(a,b){if(!!a.fixed$length)A.r(A.aa("add")) +a.push(b)}, +k0(a,b){if(!!a.fixed$length)A.r(A.aa("removeAt")) +if(b<0||b>=a.length)throw A.c(A.aOQ(b,null)) +return a.splice(b,1)[0]}, +fB(a,b,c){if(!!a.fixed$length)A.r(A.aa("insert")) +if(b<0||b>a.length)throw A.c(A.aOQ(b,null)) +a.splice(b,0,c)}, +Fq(a,b,c){var s,r +if(!!a.fixed$length)A.r(A.aa("insertAll")) +A.aOR(b,0,a.length,"index") +if(!t.Ee.b(c))c=J.fg(c) +s=J.b3(c) +a.length=a.length+s +r=b+s +this.cv(a,r,a.length,a,b) +this.di(a,b,r,c)}, +h5(a){if(!!a.fixed$length)A.r(A.aa("removeLast")) +if(a.length===0)throw A.c(A.HQ(a,-1)) +return a.pop()}, +E(a,b){var s +if(!!a.fixed$length)A.r(A.aa("remove")) +for(s=0;s"))}, +I(a,b){var s +if(!!a.fixed$length)A.r(A.aa("addAll")) +if(Array.isArray(b)){this.an7(a,b) +return}for(s=J.al(b);s.v();)a.push(s.gG(s))}, +an7(a,b){var s,r=b.length +if(r===0)return +if(a===b)throw A.c(A.cJ(a)) +for(s=0;s").V(c).h("ad<1,2>"))}, +ck(a,b){var s,r=A.aX(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.c(A.cJ(a))}if(c!=null)return c.$0() +throw A.c(A.ch())}, +Cl(a,b,c){var s,r,q,p,o=a.length +for(s=null,r=!1,q=0;qa.length)throw A.c(A.cT(b,0,a.length,"start",null)) +if(c==null)c=a.length +else if(ca.length)throw A.c(A.cT(c,b,a.length,"end",null)) +if(b===c)return A.a([],A.ab(a)) +return A.a(a.slice(b,c),A.ab(a))}, +fH(a,b){return this.cT(a,b,null)}, +BZ(a,b,c){A.dJ(b,c,a.length,null,null) +return A.fQ(a,b,c,A.ab(a).c)}, +gO(a){if(a.length>0)return a[0] +throw A.c(A.ch())}, +gX(a){var s=a.length +if(s>0)return a[s-1] +throw A.c(A.ch())}, +gaV(a){var s=a.length +if(s===1)return a[0] +if(s===0)throw A.c(A.ch()) +throw A.c(A.na())}, +rn(a,b,c){if(!!a.fixed$length)A.r(A.aa("removeRange")) +A.dJ(b,c,a.length,null,null) +a.splice(b,c-b)}, +cv(a,b,c,d,e){var s,r,q,p,o +if(!!a.immutable$list)A.r(A.aa("setRange")) +A.dJ(b,c,a.length,null,null) +s=c-b +if(s===0)return +A.fN(e,"skipCount") +if(t.j.b(d)){r=d +q=e}else{r=J.arS(d,e).hn(0,!1) +q=0}p=J.aj(r) +if(q+s>p.gt(r))throw A.c(A.bsj()) +if(q=0;--o)a[b+o]=p.i(r,q+o) +else for(o=0;o=r){o=s-r +n=p-o +m.di(a,b,q,d) +if(o!==0){m.cv(a,q,n,a,c) +m.st(a,n)}}else{n=p+(r-s) +a.length=n +m.cv(a,q,n,a,c) +m.di(a,b,q,d)}}, +fa(a,b){var s,r=a.length +for(s=0;s0){a[0]=q +a[1]=r}return}if(A.ab(a).c.b(null)){for(p=0,o=0;o0)this.aAn(a,p)}, +lY(a){return this.fw(a,null)}, +aAn(a,b){var s,r=a.length +for(;s=r-1,r>0;r=s)if(a[s]===null){a[s]=void 0;--b +if(b===0)break}}, +h3(a,b,c){var s,r=a.length +if(c>=r)return-1 +for(s=c;s=r +for(s=q;s>=0;--s)if(J.j(a[s],b))return s +return-1}, +vx(a,b){return this.B_(a,b,null)}, +p(a,b){var s +for(s=0;s"))}, +gu(a){return A.cS(a)}, +gt(a){return a.length}, +st(a,b){if(!!a.fixed$length)A.r(A.aa("set length")) +if(b<0)throw A.c(A.cT(b,0,null,"newLength",null)) +if(b>a.length)A.ab(a).c.a(null) +a.length=b}, +i(a,b){if(!(b>=0&&b=0&&b"))}, +U(a,b){var s=A.a8(a,!0,A.ab(a).c) +this.I(s,b) +return s}, +xw(a,b,c){var s +if(c>=a.length)return-1 +for(s=c;s=0;--s)if(b.$1(a[s]))return s +return-1}, +abL(a,b){return this.aLU(a,b,null)}, +gfD(a){return A.cs(A.ab(a))}, +$ico:1, +$iao:1, +$iz:1, +$if:1} +J.aHF.prototype={} +J.cI.prototype={ +gG(a){var s=this.d +return s==null?this.$ti.c.a(s):s}, +v(){var s,r=this,q=r.a,p=q.length +if(r.b!==p)throw A.c(A.Z(q)) +s=r.c +if(s>=p){r.d=null +return!1}r.d=q[s] +r.c=s+1 +return!0}} +J.u1.prototype={ +bO(a,b){var s +if(ab)return 1 +else if(a===b){if(a===0){s=this.gcZ(b) +if(this.gcZ(a)===s)return 0 +if(this.gcZ(a))return-1 +return 1}return 0}else if(isNaN(a)){if(isNaN(b))return 0 +return 1}else return-1}, +gcZ(a){return a===0?1/a<0:a<0}, +gOv(a){var s +if(a>0)s=1 +else s=a<0?-1:a +return s}, +au(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.c(A.aa(""+a+".toInt()"))}, +eV(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.c(A.aa(""+a+".ceil()"))}, +eC(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.c(A.aa(""+a+".floor()"))}, +bg(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.c(A.aa(""+a+".round()"))}, +Gp(a){if(a<0)return-Math.round(-a) +else return Math.round(a)}, +hw(a,b,c){if(this.bO(b,c)>0)throw A.c(A.pQ(b)) +if(this.bO(a,b)<0)return b +if(this.bO(a,c)>0)return c +return a}, +aF(a,b){var s +if(b>20)throw A.c(A.cT(b,0,20,"fractionDigits",null)) +s=a.toFixed(b) +if(a===0&&this.gcZ(a))return"-"+s +return s}, +aPM(a,b){var s +if(b<1||b>21)throw A.c(A.cT(b,1,21,"precision",null)) +s=a.toPrecision(b) +if(a===0&&this.gcZ(a))return"-"+s +return s}, +of(a,b){var s,r,q,p +if(b<2||b>36)throw A.c(A.cT(b,2,36,"radix",null)) +s=a.toString(b) +if(s.charCodeAt(s.length-1)!==41)return s +r=/^([\da-z]+)(?:\.([\da-z]+))?\(e\+(\d+)\)$/.exec(s) +if(r==null)A.r(A.aa("Unexpected toString result: "+s)) +s=r[1] +q=+r[3] +p=r[2] +if(p!=null){s+=p +q-=p.length}return s+B.c.av("0",q)}, +l(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}, +U(a,b){return a+b}, +a4(a,b){return a-b}, +av(a,b){return a*b}, +aJ(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}, +i9(a,b){if((a|0)===a)if(b>=1||b<-1)return a/b|0 +return this.a5J(a,b)}, +cE(a,b){return(a|0)===a?a/b|0:this.a5J(a,b)}, +a5J(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.c(A.aa("Result of truncating division is "+A.i(s)+": "+A.i(a)+" ~/ "+A.i(b)))}, +yt(a,b){if(b<0)throw A.c(A.pQ(b)) +return b>31?0:a<>>0}, +aC4(a,b){return b>31?0:a<>>0}, +dr(a,b){var s +if(a>0)s=this.a5h(a,b) +else{s=b>31?31:b +s=a>>s>>>0}return s}, +JC(a,b){if(0>b)throw A.c(A.pQ(b)) +return this.a5h(a,b)}, +a5h(a,b){return b>31?0:a>>>b}, +zs(a,b){if(b>31)return 0 +return a>>>b}, +gfD(a){return A.cs(t.Jy)}, +$icD:1, +$iY:1, +$idm:1} +J.CX.prototype={ +gOv(a){var s +if(a>0)s=1 +else s=a<0?-1:a +return s}, +ga7S(a){var s,r=a<0?-a-1:a,q=r +for(s=32;q>=4294967296;){q=this.cE(q,4294967296) +s+=32}return s-Math.clz32(q)}, +gfD(a){return A.cs(t.S)}, +$iec:1, +$in:1} +J.Lf.prototype={ +gfD(a){return A.cs(t.i)}, +$iec:1} +J.qG.prototype={ +oU(a,b){if(b<0)throw A.c(A.HQ(a,b)) +if(b>=a.length)A.r(A.HQ(a,b)) +return a.charCodeAt(b)}, +DW(a,b,c){var s=b.length +if(c>s)throw A.c(A.cT(c,0,s,null,null)) +return new A.anm(b,a,c)}, +t9(a,b){return this.DW(a,b,0)}, +r2(a,b,c){var s,r,q=null +if(c<0||c>b.length)throw A.c(A.cT(c,0,b.length,q,q)) +s=a.length +if(c+s>b.length)return q +for(r=0;rr)return!1 +return b===this.cm(a,r-s)}, +adi(a,b,c,d){A.aOR(d,0,a.length,"startIndex") +return A.bYp(a,b,c,d)}, +vM(a,b,c){return this.adi(a,b,c,0)}, +rL(a,b){if(typeof b=="string")return A.a(a.split(b),t.s) +else if(b instanceof A.nb&&b.ga3o().exec("").length-2===0)return A.a(a.split(b.b),t.s) +else return this.aq5(a,b)}, +iM(a,b,c,d){var s=A.dJ(b,c,a.length,null,null) +return A.bnR(a,b,s,d)}, +aq5(a,b){var s,r,q,p,o,n,m=A.a([],t.s) +for(s=J.arQ(b,a),s=s.gam(s),r=0,q=1;s.v();){p=s.gG(s) +o=p.gc2(p) +n=p.gcg(p) +q=n-o +if(q===0&&r===o)continue +m.push(this.S(a,r,o)) +r=n}if(r0)m.push(this.cm(a,r)) +return m}, +eJ(a,b,c){var s +if(c<0||c>a.length)throw A.c(A.cT(c,0,a.length,null,null)) +if(typeof b=="string"){s=c+b.length +if(s>a.length)return!1 +return b===a.substring(c,s)}return J.bpC(b,a,c)!=null}, +cc(a,b){return this.eJ(a,b,0)}, +S(a,b,c){return a.substring(b,A.dJ(b,c,a.length,null,null))}, +cm(a,b){return this.S(a,b,null)}, +By(a){return a.toLowerCase()}, +dn(a){var s,r,q,p=a.trim(),o=p.length +if(o===0)return p +if(p.charCodeAt(0)===133){s=J.bsn(p,1) +if(s===o)return""}else s=0 +r=o-1 +q=p.charCodeAt(r)===133?J.bso(p,r):o +if(s===0&&q===o)return p +return p.substring(s,q)}, +aQ8(a){var s=a.trimStart() +if(s.length===0)return s +if(s.charCodeAt(0)!==133)return s +return s.substring(J.bsn(s,1))}, +XI(a){var s,r=a.trimEnd(),q=r.length +if(q===0)return r +s=q-1 +if(r.charCodeAt(s)!==133)return r +return r.substring(0,J.bso(r,s))}, +av(a,b){var s,r +if(0>=b)return"" +if(b===1||a.length===0)return a +if(b!==b>>>0)throw A.c(B.Sv) +for(s=a,r="";!0;){if((b&1)===1)r=s+r +b=b>>>1 +if(b===0)break +s+=s}return r}, +eP(a,b,c){var s=b-a.length +if(s<=0)return a +return this.av(c,s)+a}, +aNK(a,b){return this.eP(a,b," ")}, +MZ(a,b){var s=b-a.length +if(s<=0)return a +return a+this.av(" ",s)}, +h3(a,b,c){var s,r,q,p +if(c<0||c>a.length)throw A.c(A.cT(c,0,a.length,null,null)) +if(typeof b=="string")return a.indexOf(b,c) +if(b instanceof A.nb){s=b.Qt(a,c) +return s==null?-1:s.b.index}for(r=a.length,q=J.mM(b),p=c;p<=r;++p)if(q.r2(b,a,p)!=null)return p +return-1}, +eZ(a,b){return this.h3(a,b,0)}, +B_(a,b,c){var s,r,q +if(c==null)c=a.length +else if(c<0||c>a.length)throw A.c(A.cT(c,0,a.length,null,null)) +if(typeof b=="string"){s=b.length +r=a.length +if(c+s>r)c=r-s +return a.lastIndexOf(b,c)}for(s=J.mM(b),q=c;q>=0;--q)if(s.r2(b,a,q)!=null)return q +return-1}, +vx(a,b){return this.B_(a,b,null)}, +KR(a,b,c){var s=a.length +if(c>s)throw A.c(A.cT(c,0,s,null,null)) +return A.arh(a,b,c)}, +p(a,b){return this.KR(a,b,0)}, +bO(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}, +gfD(a){return A.cs(t.N)}, +gt(a){return a.length}, +i(a,b){if(!(b>=0&&b").V(r.z[1]).h("Bm<1,2>")) +s.iJ(r.gaxT()) +r.iJ(a) +r.tT(0,d) +return r}, +fN(a,b,c){return this.c4(a,null,b,c)}, +lr(a,b,c){return this.c4(a,b,c,null)}} +A.Bm.prototype={ +aI(a){return this.a.aI(0)}, +iJ(a){this.c=a==null?null:a}, +tT(a,b){var s=this +s.a.tT(0,b) +if(b==null)s.d=null +else if(t.hK.b(b))s.d=s.b.Gi(b) +else if(t.mX.b(b))s.d=b +else throw A.c(A.bZ(u.y,null))}, +axU(a){var s,r,q,p,o,n=this,m=n.c +if(m==null)return +s=null +try{s=n.$ti.z[1].a(a)}catch(o){r=A.ak(o) +q=A.aJ(o) +p=n.d +if(p==null)A.lN(r,q) +else{m=n.b +if(t.hK.b(p))m.rp(p,r,q) +else m.y4(t.mX.a(p),r)}return}n.b.y4(m,s)}, +io(a,b){this.a.io(0,b)}, +iK(a){return this.io(a,null)}, +iq(a){this.a.iq(0)}, +$ika:1} +A.b3e.prototype={ +F(a,b){this.b.push(b) +this.a=this.a+b.length}, +aPw(){var s,r,q,p,o,n,m,l=this,k=l.a +if(k===0)return $.bBV() +s=l.b +r=s.length +if(r===1){q=s[0] +l.a=0 +B.b.ab(s) +return q}q=new Uint8Array(k) +for(p=0,o=0;o").V(s.z[1]).h("YO<1,2>"))}, +gt(a){return J.b3(this.gjG())}, +gak(a){return J.cf(this.gjG())}, +gd2(a){return J.hZ(this.gjG())}, +lX(a,b){var s=A.l(this) +return A.dF(J.arS(this.gjG(),b),s.c,s.z[1])}, +qa(a,b){var s=A.l(this) +return A.dF(J.bpI(this.gjG(),b),s.c,s.z[1])}, +cn(a,b){return A.l(this).z[1].a(J.t8(this.gjG(),b))}, +gO(a){return A.l(this).z[1].a(J.jD(this.gjG()))}, +gX(a){return A.l(this).z[1].a(J.ks(this.gjG()))}, +gaV(a){return A.l(this).z[1].a(J.Xh(this.gjG()))}, +p(a,b){return J.oh(this.gjG(),b)}, +q5(a,b,c){var s=this,r=s.gjG(),q=c==null?null:new A.b3i(s,c) +return A.l(s).z[1].a(J.bpB(r,new A.b3j(s,b),q))}, +l(a){return J.cU(this.gjG())}} +A.b3j.prototype={ +$1(a){return this.b.$1(A.l(this.a).z[1].a(a))}, +$S(){return A.l(this.a).h("q(1)")}} +A.b3i.prototype={ +$0(){return A.l(this.a).c.a(this.b.$0())}, +$S(){return A.l(this.a).h("1()")}} +A.YO.prototype={ +v(){return this.a.v()}, +gG(a){var s=this.a +return this.$ti.z[1].a(s.gG(s))}} +A.wu.prototype={ +kl(a,b){return A.dF(this.a,A.l(this).c,b)}, +gjG(){return this.a}} +A.RE.prototype={$iao:1} +A.QT.prototype={ +i(a,b){return this.$ti.z[1].a(J.b7(this.a,b))}, +n(a,b,c){J.j5(this.a,b,this.$ti.c.a(c))}, +st(a,b){J.bEL(this.a,b)}, +F(a,b){J.ff(this.a,this.$ti.c.a(b))}, +I(a,b){var s=this.$ti +J.w7(this.a,A.dF(b,s.z[1],s.c))}, +fw(a,b){var s=b==null?null:new A.b3k(this,b) +J.arT(this.a,s)}, +fB(a,b,c){J.bjg(this.a,b,this.$ti.c.a(c))}, +E(a,b){return J.pW(this.a,b)}, +h5(a){return this.$ti.z[1].a(J.bEG(this.a))}, +BZ(a,b,c){var s=this.$ti +return A.dF(J.bEr(this.a,b,c),s.c,s.z[1])}, +cv(a,b,c,d,e){var s=this.$ti +J.bEM(this.a,b,c,A.dF(d,s.z[1],s.c),e)}, +di(a,b,c,d){return this.cv(a,b,c,d,0)}, +$iao:1, +$if:1} +A.b3k.prototype={ +$2(a,b){var s=this.a.$ti.z[1] +return this.b.$2(s.a(a),s.a(b))}, +$S(){return this.a.$ti.h("n(1,1)")}} +A.iz.prototype={ +kl(a,b){return new A.iz(this.a,this.$ti.h("@<1>").V(b).h("iz<1,2>"))}, +gjG(){return this.a}} +A.q7.prototype={ +kl(a,b){return new A.q7(this.a,this.b,this.$ti.h("@<1>").V(b).h("q7<1,2>"))}, +F(a,b){return this.a.F(0,this.$ti.c.a(b))}, +I(a,b){var s=this.$ti +this.a.I(0,A.dF(b,s.z[1],s.c))}, +E(a,b){return this.a.E(0,b)}, +AU(a,b){var s,r=this +if(r.b!=null)return r.apu(b,!0) +s=r.$ti +return new A.q7(r.a.AU(0,b),null,s.h("@<1>").V(s.z[1]).h("q7<1,2>"))}, +apu(a,b){var s,r=this.b,q=this.$ti,p=q.z[1],o=r==null?A.m4(p):r.$1$0(p) +for(p=this.a,p=p.gam(p),q=q.z[1];p.v();){s=q.a(p.gG(p)) +if(b===a.p(0,s))o.F(0,s)}return o}, +apa(){var s=this.b,r=this.$ti.z[1],q=s==null?A.m4(r):s.$1$0(r) +q.I(0,this) +return q}, +kI(a){var s=this.b,r=this.$ti.z[1],q=s==null?A.m4(r):s.$1$0(r) +q.I(0,this) +return q}, +$iao:1, +$ibC:1, +gjG(){return this.a}} +A.wv.prototype={ +uU(a,b,c){var s=this.$ti +return new A.wv(this.a,s.h("@<1>").V(s.z[1]).V(b).V(c).h("wv<1,2,3,4>"))}, +aq(a,b){return J.jC(this.a,b)}, +i(a,b){return this.$ti.h("4?").a(J.b7(this.a,b))}, +n(a,b,c){var s=this.$ti +J.j5(this.a,s.c.a(b),s.z[1].a(c))}, +cK(a,b,c){var s=this.$ti +return s.z[3].a(J.I2(this.a,s.c.a(b),new A.avP(this,c)))}, +E(a,b){return this.$ti.h("4?").a(J.pW(this.a,b))}, +al(a,b){J.it(this.a,new A.avO(this,b))}, +gcN(a){var s=this.$ti +return A.dF(J.iu(this.a),s.c,s.z[2])}, +gbp(a){var s=this.$ti +return A.dF(J.bje(this.a),s.z[1],s.z[3])}, +gt(a){return J.b3(this.a)}, +gak(a){return J.cf(this.a)}, +gd2(a){return J.hZ(this.a)}, +gdX(a){var s=J.Xg(this.a) +return s.ik(s,new A.avN(this),this.$ti.h("aS<3,4>"))}} +A.avP.prototype={ +$0(){return this.a.$ti.z[1].a(this.b.$0())}, +$S(){return this.a.$ti.h("2()")}} +A.avO.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.avN.prototype={ +$1(a){var s=this.a.$ti,r=s.z[3] +return new A.aS(s.z[2].a(a.a),r.a(a.b),s.h("@<3>").V(r).h("aS<1,2>"))}, +$S(){return this.a.$ti.h("aS<3,4>(aS<1,2>)")}} +A.q6.prototype={ +kl(a,b){return new A.q6(this.a,this.$ti.h("@<1>").V(b).h("q6<1,2>"))}, +$iao:1, +gjG(){return this.a}} +A.lm.prototype={ +l(a){return"LateInitializationError: "+this.a}} +A.i2.prototype={ +gt(a){return this.a.length}, +i(a,b){return this.a.charCodeAt(b)}} +A.bhD.prototype={ +$0(){return A.cR(null,t.P)}, +$S:53} +A.aU6.prototype={} +A.ao.prototype={} +A.av.prototype={ +gam(a){var s=this +return new A.c2(s,s.gt(s),A.l(s).h("c2"))}, +al(a,b){var s,r=this,q=r.gt(r) +for(s=0;s1)throw A.c(A.na()) +return s.cn(0,0)}, +p(a,b){var s,r=this,q=r.gt(r) +for(s=0;s=0;--s){r=q.cn(0,s) +if(b.$1(r))return r +if(p!==q.gt(q))throw A.c(A.cJ(q))}if(c!=null)return c.$0() +throw A.c(A.ch())}, +pw(a,b){var s,r,q,p=this,o=p.gt(p),n=A.b6("match") +for(s=!1,r=0;r").V(c).h("ad<1,2>"))}, +lF(a,b){var s,r,q=this,p=q.gt(q) +if(p===0)throw A.c(A.ch()) +s=q.cn(0,0) +for(r=1;rs)throw A.c(A.cT(r,0,s,"start",null))}}, +gaqV(){var s=J.b3(this.a),r=this.c +if(r==null||r>s)return s +return r}, +gaCv(){var s=J.b3(this.a),r=this.b +if(r>s)return s +return r}, +gt(a){var s,r=J.b3(this.a),q=this.b +if(q>=r)return 0 +s=this.c +if(s==null||s>=r)return r-q +return s-q}, +cn(a,b){var s=this,r=s.gaCv()+b +if(b<0||r>=s.gaqV())throw A.c(A.f8(b,s.gt(s),s,null,"index")) +return J.t8(s.a,r)}, +lX(a,b){var s,r,q=this +A.fN(b,"count") +s=q.b+b +r=q.c +if(r!=null&&s>=r)return new A.jM(q.$ti.h("jM<1>")) +return A.fQ(q.a,s,r,q.$ti.c)}, +qa(a,b){var s,r,q,p=this +A.fN(b,"count") +s=p.c +r=p.b +q=r+b +if(s==null)return A.fQ(p.a,r,q,p.$ti.c) +else{if(s=o){r.d=null +return!1}r.d=p.cn(q,s);++r.c +return!0}} +A.eu.prototype={ +gam(a){var s=A.l(this) +return new A.bT(J.al(this.a),this.b,s.h("@<1>").V(s.z[1]).h("bT<1,2>"))}, +gt(a){return J.b3(this.a)}, +gak(a){return J.cf(this.a)}, +gO(a){return this.b.$1(J.jD(this.a))}, +gX(a){return this.b.$1(J.ks(this.a))}, +gaV(a){return this.b.$1(J.Xh(this.a))}, +cn(a,b){return this.b.$1(J.t8(this.a,b))}} +A.qh.prototype={$iao:1} +A.bT.prototype={ +v(){var s=this,r=s.b +if(r.v()){s.a=s.c.$1(r.gG(r)) +return!0}s.a=null +return!1}, +gG(a){var s=this.a +return s==null?this.$ti.z[1].a(s):s}} +A.ad.prototype={ +gt(a){return J.b3(this.a)}, +cn(a,b){return this.b.$1(J.t8(this.a,b))}} +A.ba.prototype={ +gam(a){return new A.jt(J.al(this.a),this.b,this.$ti.h("jt<1>"))}, +ik(a,b,c){return new A.eu(this,b,this.$ti.h("@<1>").V(c).h("eu<1,2>"))}} +A.jt.prototype={ +v(){var s,r +for(s=this.a,r=this.b;s.v();)if(r.$1(s.gG(s)))return!0 +return!1}, +gG(a){var s=this.a +return s.gG(s)}} +A.iD.prototype={ +gam(a){var s=this.$ti +return new A.a1B(J.al(this.a),this.b,B.qQ,s.h("@<1>").V(s.z[1]).h("a1B<1,2>"))}} +A.a1B.prototype={ +gG(a){var s=this.d +return s==null?this.$ti.z[1].a(s):s}, +v(){var s,r,q=this,p=q.c +if(p==null)return!1 +for(s=q.a,r=q.b;!p.v();){q.d=null +if(s.v()){q.c=null +p=J.al(r.$1(s.gG(s))) +q.c=p}else return!1}p=q.c +q.d=p.gG(p) +return!0}} +A.zF.prototype={ +gam(a){return new A.aaG(J.al(this.a),this.b,A.l(this).h("aaG<1>"))}} +A.K9.prototype={ +gt(a){var s=J.b3(this.a),r=this.b +if(s>r)return r +return s}, +$iao:1} +A.aaG.prototype={ +v(){if(--this.b>=0)return this.a.v() +this.b=-1 +return!1}, +gG(a){var s +if(this.b<0){this.$ti.c.a(null) +return null}s=this.a +return s.gG(s)}} +A.ra.prototype={ +lX(a,b){A.bi(b,"count") +A.fN(b,"count") +return new A.ra(this.a,this.b+b,A.l(this).h("ra<1>"))}, +gam(a){return new A.a9y(J.al(this.a),this.b,A.l(this).h("a9y<1>"))}} +A.Ce.prototype={ +gt(a){var s=J.b3(this.a)-this.b +if(s>=0)return s +return 0}, +lX(a,b){A.bi(b,"count") +A.fN(b,"count") +return new A.Ce(this.a,this.b+b,this.$ti)}, +$iao:1} +A.a9y.prototype={ +v(){var s,r +for(s=this.a,r=0;r"))}} +A.a9z.prototype={ +v(){var s,r,q=this +if(!q.c){q.c=!0 +for(s=q.a,r=q.b;s.v();)if(!r.$1(s.gG(s)))return!0}return q.a.v()}, +gG(a){var s=this.a +return s.gG(s)}} +A.jM.prototype={ +gam(a){return B.qQ}, +al(a,b){}, +gak(a){return!0}, +gt(a){return 0}, +gO(a){throw A.c(A.ch())}, +gX(a){throw A.c(A.ch())}, +gaV(a){throw A.c(A.ch())}, +cn(a,b){throw A.c(A.cT(b,0,0,"index",null))}, +p(a,b){return!1}, +fa(a,b){return!1}, +q5(a,b,c){if(c!=null)return c.$0() +throw A.c(A.ch())}, +pw(a,b){throw A.c(A.ch())}, +ck(a,b){return""}, +jw(a,b){return this}, +ik(a,b,c){return new A.jM(c.h("jM<0>"))}, +lF(a,b){throw A.c(A.ch())}, +lX(a,b){A.fN(b,"count") +return this}, +qa(a,b){A.fN(b,"count") +return this}, +hn(a,b){var s=this.$ti.c +return b?J.CW(0,s):J.a39(0,s)}, +fO(a){return this.hn(a,!0)}, +kI(a){return A.m4(this.$ti.c)}} +A.a1l.prototype={ +v(){return!1}, +gG(a){throw A.c(A.ch())}} +A.qt.prototype={ +gam(a){return new A.a24(J.al(this.a),this.b,A.l(this).h("a24<1>"))}, +gt(a){return J.b3(this.a)+J.b3(this.b)}, +gak(a){return J.cf(this.a)&&J.cf(this.b)}, +gd2(a){return J.hZ(this.a)||J.hZ(this.b)}, +p(a,b){return J.oh(this.a,b)||J.oh(this.b,b)}, +gO(a){var s=J.al(this.a) +if(s.v())return s.gG(s) +return J.jD(this.b)}, +gX(a){var s,r=J.al(this.b) +if(r.v()){s=r.gG(r) +for(;r.v();)s=r.gG(r) +return s}return J.ks(this.a)}} +A.K8.prototype={ +cn(a,b){var s=this.a,r=J.aj(s),q=r.gt(s) +if(b"))}} +A.vj.prototype={ +v(){var s,r +for(s=this.a,r=this.$ti.c;s.v();)if(r.b(s.gG(s)))return!0 +return!1}, +gG(a){var s=this.a +return this.$ti.c.a(s.gG(s))}} +A.Ks.prototype={ +st(a,b){throw A.c(A.aa("Cannot change the length of a fixed-length list"))}, +F(a,b){throw A.c(A.aa("Cannot add to a fixed-length list"))}, +fB(a,b,c){throw A.c(A.aa("Cannot add to a fixed-length list"))}, +I(a,b){throw A.c(A.aa("Cannot add to a fixed-length list"))}, +E(a,b){throw A.c(A.aa("Cannot remove from a fixed-length list"))}, +h5(a){throw A.c(A.aa("Cannot remove from a fixed-length list"))}} +A.abq.prototype={ +n(a,b,c){throw A.c(A.aa("Cannot modify an unmodifiable list"))}, +st(a,b){throw A.c(A.aa("Cannot change the length of an unmodifiable list"))}, +F(a,b){throw A.c(A.aa("Cannot add to an unmodifiable list"))}, +fB(a,b,c){throw A.c(A.aa("Cannot add to an unmodifiable list"))}, +I(a,b){throw A.c(A.aa("Cannot add to an unmodifiable list"))}, +E(a,b){throw A.c(A.aa("Cannot remove from an unmodifiable list"))}, +fw(a,b){throw A.c(A.aa("Cannot modify an unmodifiable list"))}, +h5(a){throw A.c(A.aa("Cannot remove from an unmodifiable list"))}, +cv(a,b,c,d,e){throw A.c(A.aa("Cannot modify an unmodifiable list"))}, +di(a,b,c,d){return this.cv(a,b,c,d,0)}} +A.FG.prototype={} +A.da.prototype={ +gt(a){return J.b3(this.a)}, +cn(a,b){var s=this.a,r=J.aj(s) +return r.cn(s,r.gt(s)-1-b)}} +A.rf.prototype={ +gu(a){var s=this._hashCode +if(s!=null)return s +s=664597*B.c.gu(this.a)&536870911 +this._hashCode=s +return s}, +l(a){return'Symbol("'+this.a+'")'}, +k(a,b){if(b==null)return!1 +return b instanceof A.rf&&this.a===b.a}, +$iP5:1} +A.VP.prototype={} +A.eT.prototype={$r:"+(1,2)",$s:1} +A.H6.prototype={$r:"+cacheSize,maxTextLength(1,2)",$s:2} +A.Tn.prototype={$r:"+closeStream,stream(1,2)",$s:3} +A.al4.prototype={$r:"+first,second(1,2)",$s:4} +A.al5.prototype={$r:"+key,value(1,2)",$s:5} +A.al6.prototype={$r:"+mangaList,source(1,2)",$s:6} +A.al7.prototype={$r:"+wordEnd,wordStart(1,2)",$s:7} +A.al8.prototype={$r:"+(1,2,3)",$s:8} +A.al9.prototype={$r:"+breaks,graphemes,words(1,2,3)",$s:9} +A.ala.prototype={$r:"+large,medium,small(1,2,3)",$s:10} +A.To.prototype={$r:"+x,y,z(1,2,3)",$s:11} +A.Tp.prototype={$r:"+domBlurListener,domFocusListener,element,semanticsNodeId(1,2,3,4)",$s:12} +A.wC.prototype={} +A.BJ.prototype={ +uU(a,b,c){var s=A.l(this) +return A.bl_(this,s.c,s.z[1],b,c)}, +gak(a){return this.gt(this)===0}, +gd2(a){return this.gt(this)!==0}, +l(a){return A.a4_(this)}, +n(a,b,c){A.bjJ()}, +cK(a,b,c){A.bjJ()}, +E(a,b){A.bjJ()}, +gdX(a){return new A.kl(this.aIG(0),A.l(this).h("kl>"))}, +aIG(a){var s=this +return function(){var r=a +var q=0,p=1,o,n,m,l +return function $async$gdX(b,c,d){if(c===1){o=d +q=p}while(true)switch(q){case 0:n=s.gcN(s),n=n.gam(n),m=A.l(s),m=m.h("@<1>").V(m.z[1]).h("aS<1,2>") +case 2:if(!n.v()){q=3 +break}l=n.gG(n) +q=4 +return b.b=new A.aS(l,s.i(0,l),m),1 +case 4:q=2 +break +case 3:return 0 +case 1:return b.c=o,3}}}}, +qZ(a,b,c,d){var s=A.I(c,d) +this.al(0,new A.axy(this,b,s)) +return s}, +$ia6:1} +A.axy.prototype={ +$2(a,b){var s=this.b.$2(a,b) +this.c.n(0,s.a,s.b)}, +$S(){return A.l(this.a).h("~(1,2)")}} +A.a2.prototype={ +gt(a){return this.b.length}, +ga2Z(){var s=this.$keys +if(s==null){s=Object.keys(this.a) +this.$keys=s}return s}, +aq(a,b){if(typeof b!="string")return!1 +if("__proto__"===b)return!1 +return this.a.hasOwnProperty(b)}, +i(a,b){if(!this.aq(0,b))return null +return this.b[this.a[b]]}, +al(a,b){var s,r,q=this.ga2Z(),p=this.b +for(s=q.length,r=0;r"))}, +gbp(a){return new A.Ah(this.b,this.$ti.h("Ah<2>"))}} +A.Ah.prototype={ +gt(a){return this.a.length}, +gak(a){return 0===this.a.length}, +gd2(a){return 0!==this.a.length}, +gam(a){var s=this.a +return new A.vx(s,s.length,this.$ti.h("vx<1>"))}} +A.vx.prototype={ +gG(a){var s=this.d +return s==null?this.$ti.c.a(s):s}, +v(){var s=this,r=s.c +if(r>=s.b){s.d=null +return!1}s.d=s.a[r] +s.c=r+1 +return!0}} +A.dg.prototype={ +ux(){var s,r=this,q=r.$map +if(q==null){s=r.$ti +q=new A.xQ(s.h("@<1>").V(s.z[1]).h("xQ<1,2>")) +A.byC(r.a,q) +r.$map=q}return q}, +aq(a,b){return this.ux().aq(0,b)}, +i(a,b){return this.ux().i(0,b)}, +al(a,b){this.ux().al(0,b)}, +gcN(a){var s=this.ux() +return new A.cl(s,A.l(s).h("cl<1>"))}, +gbp(a){var s=this.ux() +return s.gbp(s)}, +gt(a){return this.ux().a}} +A.Ji.prototype={ +F(a,b){A.bjK()}, +I(a,b){A.bjK()}, +E(a,b){A.bjK()}} +A.kw.prototype={ +gt(a){return this.b}, +gak(a){return this.b===0}, +gd2(a){return this.b!==0}, +gam(a){var s,r=this,q=r.$keys +if(q==null){q=Object.keys(r.a) +r.$keys=q}s=q +return new A.vx(s,s.length,r.$ti.h("vx<1>"))}, +p(a,b){if(typeof b!="string")return!1 +if("__proto__"===b)return!1 +return this.a.hasOwnProperty(b)}, +kI(a){return A.iJ(this,this.$ti.c)}} +A.h0.prototype={ +gt(a){return this.a.length}, +gak(a){return this.a.length===0}, +gd2(a){return this.a.length!==0}, +gam(a){var s=this.a +return new A.vx(s,s.length,this.$ti.h("vx<1>"))}, +ux(){var s,r,q,p,o=this,n=o.$map +if(n==null){s=o.$ti +n=new A.xQ(s.h("@<1>").V(s.c).h("xQ<1,2>")) +for(s=o.a,r=s.length,q=0;q")}} +A.cr.prototype={ +$0(){return this.a.$1$0(this.$ti.z[0])}, +$1(a){return this.a.$1$1(a,this.$ti.z[0])}, +$2(a,b){return this.a.$1$2(a,b,this.$ti.z[0])}, +$S(){return A.byS(A.ar5(this.a),this.$ti)}} +A.Le.prototype={ +gaMD(){var s=this.a +if(s instanceof A.rf)return s +return this.a=new A.rf(s)}, +gaO7(){var s,r,q,p,o,n=this +if(n.c===1)return B.C4 +s=n.d +r=J.aj(s) +q=r.gt(s)-J.b3(n.e)-n.f +if(q===0)return B.C4 +p=[] +for(o=0;o>>0}, +l(a){return"Closure '"+this.$_name+"' of "+("Instance of '"+A.aNT(this.a)+"'")}} +A.afN.prototype={ +l(a){return"Reading static variable '"+this.a+"' during its initialization"}} +A.a8K.prototype={ +l(a){return"RuntimeError: "+this.a}} +A.bbd.prototype={} +A.jh.prototype={ +gt(a){return this.a}, +gak(a){return this.a===0}, +gd2(a){return this.a!==0}, +gcN(a){return new A.cl(this,A.l(this).h("cl<1>"))}, +gbp(a){var s=A.l(this) +return A.oT(new A.cl(this,s.h("cl<1>")),new A.aHI(this),s.c,s.z[1])}, +aq(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.abj(b)}, +abj(a){var s=this.d +if(s==null)return!1 +return this.xA(s[this.xz(a)],a)>=0}, +aGP(a,b){return new A.cl(this,A.l(this).h("cl<1>")).fa(0,new A.aHH(this,b))}, +I(a,b){J.it(b,new A.aHG(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.abl(b)}, +abl(a){var s,r,q=this.d +if(q==null)return null +s=q[this.xz(a)] +r=this.xA(s,a) +if(r<0)return null +return s[r].b}, +n(a,b,c){var s,r,q=this +if(typeof b=="string"){s=q.b +q.a_n(s==null?q.b=q.RR():s,b,c)}else if(typeof b=="number"&&(b&0x3fffffff)===b){r=q.c +q.a_n(r==null?q.c=q.RR():r,b,c)}else q.abn(b,c)}, +abn(a,b){var s,r,q,p=this,o=p.d +if(o==null)o=p.d=p.RR() +s=p.xz(a) +r=o[s] +if(r==null)o[s]=[p.RS(a,b)] +else{q=p.xA(r,a) +if(q>=0)r[q].b=b +else r.push(p.RS(a,b))}}, +cK(a,b,c){var s,r,q=this +if(q.aq(0,b)){s=q.i(0,b) +return s==null?A.l(q).z[1].a(s):s}r=c.$0() +q.n(0,b,r) +return r}, +E(a,b){var s=this +if(typeof b=="string")return s.a4i(s.b,b) +else if(typeof b=="number"&&(b&0x3fffffff)===b)return s.a4i(s.c,b) +else return s.abm(b)}, +abm(a){var s,r,q,p,o=this,n=o.d +if(n==null)return null +s=o.xz(a) +r=n[s] +q=o.xA(r,a) +if(q<0)return null +p=r.splice(q,1)[0] +o.a6g(p) +if(r.length===0)delete n[s] +return p.b}, +ab(a){var s=this +if(s.a>0){s.b=s.c=s.d=s.e=s.f=null +s.a=0 +s.RP()}}, +al(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.c(A.cJ(s)) +r=r.c}}, +a_n(a,b,c){var s=a[b] +if(s==null)a[b]=this.RS(b,c) +else s.b=c}, +a4i(a,b){var s +if(a==null)return null +s=a[b] +if(s==null)return null +this.a6g(s) +delete a[b] +return s.b}, +RP(){this.r=this.r+1&1073741823}, +RS(a,b){var s,r=this,q=new A.aIz(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.RP() +return q}, +a6g(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.RP()}, +xz(a){return J.T(a)&1073741823}, +xA(a,b){var s,r +if(a==null)return-1 +s=a.length +for(r=0;r"]=s +delete s[""] +return s}} +A.aHI.prototype={ +$1(a){var s=this.a,r=s.i(0,a) +return r==null?A.l(s).z[1].a(r):r}, +$S(){return A.l(this.a).h("2(1)")}} +A.aHH.prototype={ +$1(a){return J.j(this.a.i(0,a),this.b)}, +$S(){return A.l(this.a).h("q(1)")}} +A.aHG.prototype={ +$2(a,b){this.a.n(0,a,b)}, +$S(){return A.l(this.a).h("~(1,2)")}} +A.aIz.prototype={} +A.cl.prototype={ +gt(a){return this.a.a}, +gak(a){return this.a.a===0}, +gam(a){var s=this.a,r=new A.Db(s,s.r,this.$ti.h("Db<1>")) +r.c=s.e +return r}, +p(a,b){return this.a.aq(0,b)}, +al(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.c(A.cJ(s)) +r=r.c}}} +A.Db.prototype={ +gG(a){return this.d}, +v(){var s,r=this,q=r.a +if(r.b!==q.r)throw A.c(A.cJ(q)) +s=r.c +if(s==null){r.d=null +return!1}else{r.d=s.a +r.c=s.c +return!0}}} +A.Lh.prototype={ +xz(a){return A.t3(a)&1073741823}, +xA(a,b){var s,r,q +if(a==null)return-1 +s=a.length +for(r=0;r0;){--q;--s +j[q]=r[s]}}return A.hN(j,k)}} +A.al1.prototype={ +It(){return[this.a,this.b]}, +k(a,b){if(b==null)return!1 +return b instanceof A.al1&&this.$s===b.$s&&J.j(this.a,b.a)&&J.j(this.b,b.b)}, +gu(a){return A.X(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.al2.prototype={ +It(){return[this.a,this.b,this.c]}, +k(a,b){var s=this +if(b==null)return!1 +return b instanceof A.al2&&s.$s===b.$s&&J.j(s.a,b.a)&&J.j(s.b,b.b)&&J.j(s.c,b.c)}, +gu(a){var s=this +return A.X(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.al3.prototype={ +It(){return this.a}, +k(a,b){if(b==null)return!1 +return b instanceof A.al3&&this.$s===b.$s&&A.bPC(this.a,b.a)}, +gu(a){return A.X(this.$s,A.dj(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)}} +A.nb.prototype={ +l(a){return"RegExp/"+this.a+"/"+this.b.flags}, +ga3p(){var s=this,r=s.c +if(r!=null)return r +r=s.b +return s.c=A.bkI(s.a,r.multiline,!r.ignoreCase,r.unicode,r.dotAll,!0)}, +ga3o(){var s=this,r=s.d +if(r!=null)return r +r=s.b +return s.d=A.bkI(s.a+"|()",r.multiline,!r.ignoreCase,r.unicode,r.dotAll,!0)}, +lm(a){var s=this.b.exec(a) +if(s==null)return null +return new A.GP(s)}, +ahf(a){var s=this.lm(a) +if(s!=null)return s.b[0] +return null}, +DW(a,b,c){var s=b.length +if(c>s)throw A.c(A.cT(c,0,s,null,null)) +return new A.adS(this,b,c)}, +t9(a,b){return this.DW(a,b,0)}, +Qt(a,b){var s,r=this.ga3p() +r.lastIndex=b +s=r.exec(a) +if(s==null)return null +return new A.GP(s)}, +ar3(a,b){var s,r=this.ga3o() +r.lastIndex=b +s=r.exec(a) +if(s==null)return null +if(s.pop()!=null)return null +return new A.GP(s)}, +r2(a,b,c){if(c<0||c>b.length)throw A.c(A.cT(c,0,b.length,null,null)) +return this.ar3(b,c)}, +aMv(a,b){return this.r2(a,b,0)}, +$ibtD:1} +A.GP.prototype={ +gc2(a){return this.b.index}, +gcg(a){var s=this.b +return s.index+s[0].length}, +i(a,b){return this.b[b]}, +aMQ(a){var s,r=this.b.groups +if(r!=null){s=r[a] +if(s!=null||a in r)return s}throw A.c(A.fh(a,"name","Not a capture group name"))}, +$iyf:1, +$ia7T:1} +A.adS.prototype={ +gam(a){return new A.ru(this.a,this.b,this.c)}} +A.ru.prototype={ +gG(a){var s=this.d +return s==null?t.Qz.a(s):s}, +v(){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.Qt(m,s) +if(p!=null){n.d=p +o=p.gcg(p) +if(p.b.index===o){if(q.b.unicode){s=n.c +q=s+1 +if(q=55296&&s<=56319){s=m.charCodeAt(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.F6.prototype={ +gcg(a){return this.a+this.c.length}, +i(a,b){if(b!==0)A.r(A.aOQ(b,null)) +return this.c}, +$iyf:1, +gc2(a){return this.a}} +A.anm.prototype={ +gam(a){return new A.bcF(this.a,this.b,this.c)}, +gO(a){var s=this.b,r=this.a.indexOf(s,this.c) +if(r>=0)return new A.F6(r,s) +throw A.c(A.ch())}} +A.bcF.prototype={ +v(){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.F6(s,o) +q.c=r===q.c?r+1:r +return!0}, +gG(a){var s=this.d +s.toString +return s}} +A.b3l.prototype={ +aH(){var s=this.b +if(s===this)throw A.c(new A.lm("Local '"+this.a+"' has not been initialized.")) +return s}, +cB(){var s=this.b +if(s===this)throw A.c(A.qI(this.a)) +return s}, +sdQ(a){var s=this +if(s.b!==s)throw A.c(new A.lm("Local '"+s.a+"' has already been initialized.")) +s.b=a}} +A.b72.prototype={ +T(){var s,r=this,q=r.b +if(q===r){s=r.c.$0() +if(r.b!==r)throw A.c(new A.lm("Local '"+r.a+u.W)) +r.b=s +q=s}return q}} +A.yk.prototype={ +gfD(a){return B.axQ}, +a7G(a,b,c){throw A.c(A.aa("Int64List not supported by dart2js."))}, +$iec:1, +$iyk:1, +$iYG:1} +A.hm.prototype={ +ga9R(a){return a.BYTES_PER_ELEMENT}, +aw6(a,b,c,d){var s=A.cT(b,0,c,d,null) +throw A.c(s)}, +a0a(a,b,c,d){if(b>>>0!==b||b>c)this.aw6(a,b,c,d)}, +$ihm:1, +$ifs:1} +A.Mf.prototype={ +gfD(a){return B.axR}, +ga9R(a){return 1}, +Yb(a,b,c){throw A.c(A.aa("Int64 accessor not supported by dart2js."))}, +YV(a,b,c,d){throw A.c(A.aa("Int64 accessor not supported by dart2js."))}, +$iec:1, +$ies:1} +A.Dx.prototype={ +gt(a){return a.length}, +a55(a,b,c,d,e){var s,r,q=a.length +this.a0a(a,b,q,"start") +this.a0a(a,c,q,"end") +if(b>c)throw A.c(A.cT(b,0,c,null,null)) +s=c-b +if(e<0)throw A.c(A.bZ(e,null)) +r=d.length +if(r-e0){s=Date.now()-r.c +if(s>(p+1)*o)p=B.f.i9(s,o)}q.c=p +r.d.$1(q)}, +$S:4} +A.Qp.prototype={ +cU(a,b){var s,r=this +if(b==null)b=r.$ti.c.a(b) +if(!r.b)r.a.m2(b) +else{s=r.a +if(r.$ti.h("S<1>").b(b))s.a_X(b) +else s.we(b)}}, +fc(a,b){var s=this.a +if(this.b)s.iz(a,b) +else s.yR(a,b)}, +$iJg:1} +A.beK.prototype={ +$1(a){return this.a.$2(0,a)}, +$S:30} +A.beL.prototype={ +$2(a,b){this.a.$2(1,new A.Ki(a,b))}, +$S:385} +A.bg1.prototype={ +$2(a,b){this.a(a,b)}, +$S:395} +A.beI.prototype={ +$0(){var s,r=this.a,q=r.a +q===$&&A.b() +s=q.b +if((s&1)!==0?(q.gl1().e&4)!==0:(s&2)===0){r.b=!0 +return}this.b.$2(0,null)}, +$S:0} +A.beJ.prototype={ +$1(a){var s=this.a.c!=null?2:0 +this.b.$2(s,null)}, +$S:37} +A.aed.prototype={ +amU(a,b){var s=new A.b2f(a) +this.a=A.lE(new A.b2h(this,a),new A.b2i(s),new A.b2j(this,s),!1,b)}} +A.b2f.prototype={ +$0(){A.fE(new A.b2g(this.a))}, +$S:4} +A.b2g.prototype={ +$0(){this.a.$2(0,null)}, +$S:0} +A.b2i.prototype={ +$0(){this.a.$0()}, +$S:0} +A.b2j.prototype={ +$0(){var s=this.a +if(s.b){s.b=!1 +this.b.$0()}}, +$S:0} +A.b2h.prototype={ +$0(){var s=this.a,r=s.a +r===$&&A.b() +if((r.b&4)===0){s.c=new A.a7($.ac,t.LR) +if(s.b){s.b=!1 +A.fE(new A.b2e(this.b))}return s.c}}, +$S:399} +A.b2e.prototype={ +$0(){this.a.$2(2,null)}, +$S:0} +A.Ss.prototype={ +l(a){return"IterationMarker("+this.b+", "+A.i(this.a)+")"}} +A.pH.prototype={ +gG(a){return this.b}, +aAE(a,b){var s,r,q +a=a +b=b +s=this.a +for(;!0;)try{r=s(this,a,b) +return r}catch(q){b=q +a=1}}, +v(){var s,r,q,p,o=this,n=null,m=0 +for(;!0;){s=o.d +if(s!=null)try{if(s.v()){o.b=J.bEf(s) +return!0}else o.d=null}catch(r){n=r +m=1 +o.d=null}q=o.aAE(m,n) +if(1===q)return!0 +if(0===q){o.b=null +p=o.e +if(p==null||p.length===0){o.a=A.bwi +return!1}o.a=p.pop() +m=0 +n=null +continue}if(2===q){m=0 +n=null +continue}if(3===q){n=o.c +o.c=null +p=o.e +if(p==null||p.length===0){o.b=null +o.a=A.bwi +throw n +return!1}o.a=p.pop() +m=1 +continue}throw A.c(A.R("sync*"))}return!1}, +Tn(a){var s,r,q=this +if(a instanceof A.kl){s=a.a() +r=q.e +if(r==null)r=q.e=[] +r.push(q.a) +q.a=s +return 2}else{q.d=J.al(a) +return 2}}} +A.kl.prototype={ +gam(a){return new A.pH(this.a(),this.$ti.h("pH<1>"))}} +A.XY.prototype={ +l(a){return A.i(this.a)}, +$id7:1, +gke(){return this.b}} +A.j_.prototype={ +gfM(){return!0}} +A.A5.prototype={ +qq(){}, +qr(){}} +A.mz.prototype={ +sWD(a,b){throw A.c(A.aa(u.X))}, +sWI(a,b){throw A.c(A.aa(u.X))}, +gw4(a){return new A.j_(this,A.l(this).h("j_<1>"))}, +gwp(){return this.c<4}, +CR(){var s=this.r +return s==null?this.r=new A.a7($.ac,t.b):s}, +a4j(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}, +JL(a,b,c,d){var s,r,q,p,o,n,m,l=this +if((l.c&4)!==0)return A.bmh(c,A.l(l).c) +s=$.ac +r=d?1:0 +q=A.aeC(s,a) +p=A.aeD(s,b) +o=c==null?A.bg9():c +n=new A.A5(l,q,p,o,s,r,A.l(l).h("A5<1>")) +n.CW=n +n.ch=n +n.ay=l.c&1 +m=l.e +l.e=n +n.ch=null +n.CW=m +if(m==null)l.d=n +else m.ch=n +if(l.d===n)A.ar1(l.a) +return n}, +a47(a){var s,r=this +A.l(r).h("A5<1>").a(a) +if(a.ch===a)return null +s=a.ay +if((s&2)!==0)a.ay=s|4 +else{r.a4j(a) +if((r.c&2)===0&&r.d==null)r.CE()}return null}, +a48(a){}, +a49(a){}, +wb(){if((this.c&4)!==0)return new A.iU("Cannot add new events after calling close") +return new A.iU("Cannot add new events while doing an addStream")}, +F(a,b){if(!this.gwp())throw A.c(this.wb()) +this.oN(b)}, +dP(a,b){A.fu(a,"error",t.K) +if(!this.gwp())throw A.c(this.wb()) +if(b==null)b=A.ol(a) +this.qs(a,b)}, +pF(a){return this.dP(a,null)}, +ah(a){var s,r,q=this +if((q.c&4)!==0){s=q.r +s.toString +return s}if(!q.gwp())throw A.c(q.wb()) +q.c|=4 +r=q.CR() +q.uE() +return r}, +gaIp(){return this.CR()}, +kg(a,b){this.qs(a,b)}, +rV(){var s=this.f +s.toString +this.f=null +this.c&=4294967287 +s.a.m2(null)}, +QK(a){var s,r,q,p=this,o=p.c +if((o&2)!==0)throw A.c(A.R(u.c)) +s=p.d +if(s==null)return +r=o&1 +p.c=o^3 +for(;s!=null;){o=s.ay +if((o&1)===r){s.ay=o|2 +a.$1(s) +o=s.ay^=1 +q=s.ch +if((o&4)!==0)p.a4j(s) +s.ay&=4294967293 +s=q}else s=s.ch}p.c&=4294967293 +if(p.d==null)p.CE()}, +CE(){if((this.c&4)!==0){var s=this.r +if((s.a&30)===0)s.m2(null)}A.ar1(this.b)}, +$iei:1, +sWB(a){return this.a=a}, +sWo(a,b){return this.b=b}} +A.o9.prototype={ +gwp(){return A.mz.prototype.gwp.call(this)&&(this.c&2)===0}, +wb(){if((this.c&2)!==0)return new A.iU(u.c) +return this.ak6()}, +oN(a){var s=this,r=s.d +if(r==null)return +if(r===s.e){s.c|=2 +r.oF(0,a) +s.c&=4294967293 +if(s.d==null)s.CE() +return}s.QK(new A.bcW(s,a))}, +qs(a,b){if(this.d==null)return +this.QK(new A.bcY(this,a,b))}, +uE(){var s=this +if(s.d!=null)s.QK(new A.bcX(s)) +else s.r.m2(null)}} +A.bcW.prototype={ +$1(a){a.oF(0,this.b)}, +$S(){return A.l(this.a).h("~(hx<1>)")}} +A.bcY.prototype={ +$1(a){a.kg(this.b,this.c)}, +$S(){return A.l(this.a).h("~(hx<1>)")}} +A.bcX.prototype={ +$1(a){a.rV()}, +$S(){return A.l(this.a).h("~(hx<1>)")}} +A.lI.prototype={ +oN(a){var s,r +for(s=this.d,r=this.$ti.h("j0<1>");s!=null;s=s.ch)s.rT(new A.j0(a,r))}, +qs(a,b){var s +for(s=this.d;s!=null;s=s.ch)s.rT(new A.Ab(a,b))}, +uE(){var s=this.d +if(s!=null)for(;s!=null;s=s.ch)s.rT(B.hb) +else this.r.m2(null)}} +A.G2.prototype={ +Pi(a){var s=this.ax;(s==null?this.ax=new A.pC(this.$ti.h("pC<1>")):s).F(0,a)}, +F(a,b){var s=this,r=s.c +if((r&4)===0&&(r&2)!==0){s.Pi(new A.j0(b,s.$ti.h("j0<1>"))) +return}s.ak8(0,b) +s.a1u()}, +dP(a,b){var s,r=this +A.fu(a,"error",t.K) +if(b==null)b=A.ol(a) +s=r.c +if((s&4)===0&&(s&2)!==0){r.Pi(new A.Ab(a,b)) +return}if(!(A.mz.prototype.gwp.call(r)&&(r.c&2)===0))throw A.c(r.wb()) +r.qs(a,b) +r.a1u()}, +pF(a){return this.dP(a,null)}, +a1u(){var s,r,q=this.ax +if(q!=null)for(;q.c!=null;){s=q.b +r=s.gnt(s) +q.b=r +if(r==null)q.c=null +s.N7(this)}}, +ah(a){var s=this,r=s.c +if((r&4)===0&&(r&2)!==0){s.Pi(B.hb) +s.c|=4 +return A.mz.prototype.gaIp.call(s)}return s.ak9(0)}, +CE(){var s=this.ax +if(s!=null){if(s.a===1)s.a=3 +this.ax=s.b=s.c=null}this.ak7()}} +A.aEz.prototype={ +$0(){var s,r,q +try{this.a.oK(this.b.$0())}catch(q){s=A.ak(q) +r=A.aJ(q) +A.aqV(this.a,s,r)}}, +$S:0} +A.aEy.prototype={ +$0(){var s,r,q +try{this.a.oK(this.b.$0())}catch(q){s=A.ak(q) +r=A.aJ(q) +A.aqV(this.a,s,r)}}, +$S:0} +A.aEx.prototype={ +$0(){var s,r,q,p=this,o=p.a +if(o==null){p.c.a(null) +p.b.oK(null)}else try{p.b.oK(o.$0())}catch(q){s=A.ak(q) +r=A.aJ(q) +A.aqV(p.b,s,r)}}, +$S:0} +A.aEF.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.iz(a,b) +else{s.e.b=a +s.f.b=b}}else if(q===0&&!s.c)s.d.iz(s.e.aH(),s.f.aH())}, +$S:14} +A.aEE.prototype={ +$1(a){var s,r=this,q=r.a;--q.b +s=q.a +if(s!=null){J.j5(s,r.b,a) +if(q.b===0)r.c.we(A.hl(s,!0,r.w))}else if(q.b===0&&!r.e)r.c.iz(r.f.aH(),r.r.aH())}, +$S(){return this.w.h("aE(0)")}} +A.aEB.prototype={ +$1(a){var s=this.a +if((s.a.a&30)===0)s.cU(0,a)}, +$S(){return this.b.h("~(0)")}} +A.aEA.prototype={ +$2(a,b){var s=this.a +if((s.a.a&30)===0)s.fc(a,b)}, +$S:14} +A.aED.prototype={ +$0(){var s,r,q=this.a +if(!q.v())return!1 +s=q.d +q=s==null?q.$ti.c.a(s):s +r=this.b.$1(q) +if(t.L0.b(r))return r.be(A.bTi(),t.y) +return!0}, +$S:436} +A.aEC.prototype={ +$1(a){var s,r,q,p,o,n,m,l,k=this +for(p=t.wF,o=k.a;a;){s=null +try{s=o.$0()}catch(n){r=A.ak(n) +q=A.aJ(n) +p=r +m=q +q=m==null?A.ol(p):m +k.b.yR(p,q) +return}if(p.b(s)){p=s +o=k.c +l=o.b +if(l===o)A.r(A.iH(o.a)) +p.fj(l,k.b.gyT(),t.H) +return}a=s}k.b.oK(null)}, +$S:7} +A.aEl.prototype={ +$2(a,b){var s +if(this.a.b(a))s=!1 +else s=!0 +if(s)throw A.c(a) +return this.c.$2(a,b)}, +$S(){return this.d.h("0/(C,cw)")}} +A.aEk.prototype={ +$1(a){return a}, +$S(){return this.a.h("0(0)")}} +A.A8.prototype={ +fc(a,b){A.fu(a,"error",t.K) +if((this.a.a&30)!==0)throw A.c(A.R("Future already completed")) +if(b==null)b=A.ol(a) +this.iz(a,b)}, +kn(a){return this.fc(a,null)}, +$iJg:1} +A.aD.prototype={ +cU(a,b){var s=this.a +if((s.a&30)!==0)throw A.c(A.R("Future already completed")) +s.m2(b)}, +fm(a){return this.cU(a,null)}, +iz(a,b){this.a.yR(a,b)}} +A.AB.prototype={ +cU(a,b){var s=this.a +if((s.a&30)!==0)throw A.c(A.R("Future already completed")) +s.oK(b)}, +iz(a,b){this.a.iz(a,b)}} +A.mD.prototype={ +aMx(a){if((this.c&15)!==6)return!0 +return this.b.b.Gr(this.d,a.a)}, +aJF(a){var s,r=this.e,q=null,p=a.a,o=this.b.b +if(t.Hg.b(r))q=o.adB(r,p,a.b) +else q=o.Gr(r,p) +try{p=q +return p}catch(s){if(t.ns.b(A.ak(s))){if((this.c&1)!==0)throw A.c(A.bZ("The error handler of Future.then must return a value of the returned future's type","onError")) +throw A.c(A.bZ("The error handler of Future.catchError must return a value of the future's type","onError"))}else throw s}}} +A.a7.prototype={ +a5_(a){this.a=this.a&1|4 +this.c=a}, +fj(a,b,c){var s,r,q=$.ac +if(q===B.b6){if(b!=null&&!t.Hg.b(b)&&!t.C_.b(b))throw A.c(A.fh(b,"onError",u.l))}else if(b!=null)b=A.bxI(b,q) +s=new A.a7(q,c.h("a7<0>")) +r=b==null?1:3 +this.yQ(new A.mD(s,r,a,b,this.$ti.h("@<1>").V(c).h("mD<1,2>"))) +return s}, +be(a,b){return this.fj(a,null,b)}, +a5W(a,b,c){var s=new A.a7($.ac,c.h("a7<0>")) +this.yQ(new A.mD(s,19,a,b,this.$ti.h("@<1>").V(c).h("mD<1,2>"))) +return s}, +zO(a,b){var s=this.$ti,r=$.ac,q=new A.a7(r,s) +if(r!==B.b6)a=A.bxI(a,r) +this.yQ(new A.mD(q,2,b,a,s.h("@<1>").V(s.c).h("mD<1,2>"))) +return q}, +mp(a){return this.zO(a,null)}, +fu(a){var s=this.$ti,r=new A.a7($.ac,s) +this.yQ(new A.mD(r,8,a,null,s.h("@<1>").V(s.c).h("mD<1,2>"))) +return r}, +aBT(a){this.a=this.a&1|16 +this.c=a}, +I9(a){this.a=a.a&30|this.a&1 +this.c=a.c}, +yQ(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.yQ(a) +return}s.I9(r)}A.pP(null,null,s.b,new A.b6c(s,a))}}, +S8(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.S8(a) +return}n.I9(s)}m.a=n.Jp(a) +A.pP(null,null,n.b,new A.b6j(m,n))}}, +Jk(){var s=this.c +this.c=null +return this.Jp(s)}, +Jp(a){var s,r,q +for(s=a,r=null;s!=null;r=s,s=q){q=s.a +s.a=r}return r}, +PF(a){var s,r,q,p=this +p.a^=2 +try{a.fj(new A.b6g(p),new A.b6h(p),t.P)}catch(q){s=A.ak(q) +r=A.aJ(q) +A.fE(new A.b6i(p,s,r))}}, +oK(a){var s,r=this,q=r.$ti +if(q.h("S<1>").b(a))if(q.b(a))A.bmi(a,r) +else r.PF(a) +else{s=r.Jk() +r.a=8 +r.c=a +A.Gy(r,s)}}, +we(a){var s=this,r=s.Jk() +s.a=8 +s.c=a +A.Gy(s,r)}, +iz(a,b){var s=this.Jk() +this.aBT(A.asP(a,b)) +A.Gy(this,s)}, +m2(a){if(this.$ti.h("S<1>").b(a)){this.a_X(a) +return}this.a_I(a)}, +a_I(a){this.a^=2 +A.pP(null,null,this.b,new A.b6e(this,a))}, +a_X(a){if(this.$ti.b(a)){A.bP_(a,this) +return}this.PF(a)}, +yR(a,b){this.a^=2 +A.pP(null,null,this.b,new A.b6d(this,a,b))}, +$iS:1} +A.b6c.prototype={ +$0(){A.Gy(this.a,this.b)}, +$S:0} +A.b6j.prototype={ +$0(){A.Gy(this.b,this.a.a)}, +$S:0} +A.b6g.prototype={ +$1(a){var s,r,q,p=this.a +p.a^=2 +try{p.we(p.$ti.c.a(a))}catch(q){s=A.ak(q) +r=A.aJ(q) +p.iz(s,r)}}, +$S:37} +A.b6h.prototype={ +$2(a,b){this.a.iz(a,b)}, +$S:26} +A.b6i.prototype={ +$0(){this.a.iz(this.b,this.c)}, +$S:0} +A.b6f.prototype={ +$0(){A.bmi(this.a.a,this.b)}, +$S:0} +A.b6e.prototype={ +$0(){this.a.we(this.b)}, +$S:0} +A.b6d.prototype={ +$0(){this.a.iz(this.b,this.c)}, +$S:0} +A.b6m.prototype={ +$0(){var s,r,q,p,o,n,m=this,l=null +try{q=m.a.a +l=q.b.b.kG(q.d)}catch(p){s=A.ak(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.asP(s,r) +o.b=!0 +return}if(l instanceof A.a7&&(l.a&24)!==0){if((l.a&16)!==0){q=m.a +q.c=l.c +q.b=!0}return}if(t.L0.b(l)){n=m.b.a +q=m.a +q.c=l.be(new A.b6n(n),t.z) +q.b=!1}}, +$S:0} +A.b6n.prototype={ +$1(a){return this.a}, +$S:445} +A.b6l.prototype={ +$0(){var s,r,q,p,o +try{q=this.a +p=q.a +q.c=p.b.b.Gr(p.d,this.b)}catch(o){s=A.ak(o) +r=A.aJ(o) +q=this.a +q.c=A.asP(s,r) +q.b=!0}}, +$S:0} +A.b6k.prototype={ +$0(){var s,r,q,p,o,n,m=this +try{s=m.a.a.c +p=m.b +if(p.a.aMx(s)&&p.a.e!=null){p.c=p.a.aJF(s) +p.b=!1}}catch(o){r=A.ak(o) +q=A.aJ(o) +p=m.a.a.c +n=m.b +if(p.a===r)n.c=p +else n.c=A.asP(r,q) +n.b=!0}}, +$S:0} +A.aec.prototype={} +A.bz.prototype={ +gfM(){return!1}, +uQ(a,b){var s=A.l(this),r=new A.G1(this,null,a,$.ac,s.h("G1")) +r.e=new A.G2(r.ganF(),r.gaxO(),s.h("G2")) +return r}, +Kx(a){return this.uQ(a,null)}, +ik(a,b,c){return new A.o5(b,this,A.l(this).h("@").V(c).h("o5<1,2>"))}, +a7K(a,b){var s,r=null,q={} +q.a=null +s=this.gfM()?q.a=new A.o9(r,r,b.h("o9<0>")):q.a=new A.pI(r,r,r,r,b.h("pI<0>")) +s.sWB(new A.aY4(q,this,a,b)) +q=q.a +return q.gw4(q)}, +aO4(a){return a.aFk(0,this).be(new A.aYi(a),t.z)}, +al(a,b){var s=new A.a7($.ac,t.LR),r=this.c4(null,!0,new A.aYe(s),s.gyT()) +r.iJ(new A.aYf(this,b,r,s)) +return s}, +gt(a){var s={},r=new A.a7($.ac,t.wJ) +s.a=0 +this.c4(new A.aYg(s,this),!0,new A.aYh(s,r),r.gyT()) +return r}, +fO(a){var s=A.l(this),r=A.a([],s.h("H")),q=new A.a7($.ac,s.h("a7>")) +this.c4(new A.aYj(this,r),!0,new A.aYk(q,r),q.gyT()) +return q}, +gO(a){var s=new A.a7($.ac,A.l(this).h("a7")),r=this.c4(null,!0,new A.aYa(s),s.gyT()) +r.iJ(new A.aYb(this,r,s)) +return s}, +F5(a,b){var s=new A.a7($.ac,A.l(this).h("a7")),r=this.c4(null,!0,new A.aY8(null,s),s.gyT()) +r.iJ(new A.aY9(this,b,r,s)) +return s}} +A.aXZ.prototype={ +$1(a){var s=this.a +s.oF(0,a) +s.CI()}, +$S(){return this.b.h("aE(0)")}} +A.aY_.prototype={ +$2(a,b){var s=this.a +s.kg(a,b) +s.CI()}, +$S:124} +A.aY1.prototype={ +$1(a){var s,r,q,p,o,n={} +n.a=null +try{q=this.a +n.a=new J.cI(q,q.length,A.ab(q).h("cI<1>"))}catch(p){s=A.ak(p) +r=A.aJ(p) +a.dP(s,r) +a.ah(0) +return}o=$.ac +n.b=!0 +q=new A.aY2(n,a,o) +a.f=new A.aY0(n,o,q) +A.pP(null,null,o,q)}, +$S(){return this.b.h("~(a69<0>)")}} +A.aY2.prototype={ +$0(){var s,r,q,p,o,n,m,l,k=this,j=k.b +if((j.b&1)!==0)n=(j.gl1().e&4)!==0 +else n=!0 +if(n){k.a.b=!1 +return}s=null +try{s=k.a.a.v()}catch(m){r=A.ak(m) +q=A.aJ(m) +j.Tr(r,q) +j.U6() +return}if(s){try{n=k.a.a +l=n.d +j.a7u(l==null?n.$ti.c.a(l):l)}catch(m){p=A.ak(m) +o=A.aJ(m) +j.Tr(p,o)}if((j.b&1)!==0){j=j.gl1().e +j=(j&4)===0}else j=!1 +if(j)A.pP(null,null,k.c,k) +else k.a.b=!1}else j.U6()}, +$S:0} +A.aY0.prototype={ +$0(){var s=this.a +if(!s.b){s.b=!0 +A.pP(null,null,this.b,this.c)}}, +$S:0} +A.aY4.prototype={ +$0(){var s,r,q=this,p=q.b,o=q.a,n=o.a.gHW(),m=o.a,l=p.fN(null,m.gdV(m),n) +n=q.d +s=o.a.gHW() +r=l.gfC(l) +l.iJ(new A.aY3(o,p,q.c,n,l,new A.aY5(o,n),s,r)) +o.a.sWo(0,l.gdJ(l)) +if(!p.gfM()){p=o.a +p.sWD(0,l.gi0(l)) +p.sWI(0,r)}}, +$S:0} +A.aY5.prototype={ +$1(a){this.a.a.F(0,a)}, +$S(){return this.b.h("S?(0)")}} +A.aY3.prototype={ +$1(a){var s,r,q,p=this,o=null +try{o=p.c.$1(a)}catch(q){s=A.ak(q) +r=A.aJ(q) +p.a.a.dP(s,r) +return}if(p.d.h("S<0>").b(o)){p.e.iK(0) +o.fj(p.f,p.r,t.P).fu(p.w)}else p.a.a.F(0,o)}, +$S(){return A.l(this.b).h("~(bz.T)")}} +A.aYi.prototype={ +$1(a){return this.a.ah(0)}, +$S:170} +A.aYe.prototype={ +$0(){this.a.oK(null)}, +$S:0} +A.aYf.prototype={ +$1(a){A.bxO(new A.aYc(this.b,a),new A.aYd(),A.bx1(this.c,this.d))}, +$S(){return A.l(this.a).h("~(bz.T)")}} +A.aYc.prototype={ +$0(){return this.a.$1(this.b)}, +$S:0} +A.aYd.prototype={ +$1(a){}, +$S:19} +A.aYg.prototype={ +$1(a){++this.a.a}, +$S(){return A.l(this.b).h("~(bz.T)")}} +A.aYh.prototype={ +$0(){this.b.oK(this.a.a)}, +$S:0} +A.aYj.prototype={ +$1(a){this.b.push(a)}, +$S(){return A.l(this.a).h("~(bz.T)")}} +A.aYk.prototype={ +$0(){this.a.oK(this.b)}, +$S:0} +A.aYa.prototype={ +$0(){var s,r,q,p +try{q=A.ch() +throw A.c(q)}catch(p){s=A.ak(p) +r=A.aJ(p) +A.aqV(this.a,s,r)}}, +$S:0} +A.aYb.prototype={ +$1(a){A.bx2(this.b,this.c,a)}, +$S(){return A.l(this.a).h("~(bz.T)")}} +A.aY8.prototype={ +$0(){var s,r,q,p +try{q=A.ch() +throw A.c(q)}catch(p){s=A.ak(p) +r=A.aJ(p) +A.aqV(this.b,s,r)}}, +$S:0} +A.aY9.prototype={ +$1(a){var s=this.c,r=this.d +A.bxO(new A.aY6(this.b,a),new A.aY7(s,r,a),A.bx1(s,r))}, +$S(){return A.l(this.a).h("~(bz.T)")}} +A.aY6.prototype={ +$0(){return this.a.$1(this.b)}, +$S:10} +A.aY7.prototype={ +$1(a){if(a)A.bx2(this.a,this.b,this.c)}, +$S:106} +A.zA.prototype={ +gfM(){return this.a.gfM()}, +uQ(a,b){return this.a.uQ(a,b)}, +Kx(a){return this.uQ(a,null)}, +c4(a,b,c,d){return this.a.c4(a,b,c,d)}, +fN(a,b,c){return this.c4(a,null,b,c)}, +lr(a,b,c){return this.c4(a,b,c,null)}} +A.aar.prototype={} +A.vN.prototype={ +gw4(a){return new A.d6(this,A.l(this).h("d6<1>"))}, +gaz5(){if((this.b&8)===0)return this.a +return this.a.c}, +z_(){var s,r,q=this +if((q.b&8)===0){s=q.a +return s==null?q.a=new A.pC(A.l(q).h("pC<1>")):s}r=q.a +s=r.c +return s==null?r.c=new A.pC(A.l(q).h("pC<1>")):s}, +gl1(){var s=this.a +return(this.b&8)!==0?s.c:s}, +qm(){if((this.b&4)!==0)return new A.iU("Cannot add event after closing") +return new A.iU("Cannot add event while adding a stream")}, +aFl(a,b,c){var s,r,q,p=this,o=p.b +if(o>=4)throw A.c(p.qm()) +if((o&2)!==0){o=new A.a7($.ac,t.LR) +o.m2(null) +return o}o=p.a +s=c===!0 +r=new A.a7($.ac,t.LR) +q=s?A.bOn(p):p.gHW() +q=b.c4(p.ganC(p),s,p.gapb(),q) +s=p.b +if((s&1)!==0?(p.gl1().e&4)!==0:(s&2)===0)q.iK(0) +p.a=new A.Uu(o,r,q,A.l(p).h("Uu<1>")) +p.b|=8 +return r}, +CR(){var s=this.c +if(s==null)s=this.c=(this.b&2)!==0?$.t6():new A.a7($.ac,t.b) +return s}, +F(a,b){if(this.b>=4)throw A.c(this.qm()) +this.oF(0,b)}, +dP(a,b){A.fu(a,"error",t.K) +if(this.b>=4)throw A.c(this.qm()) +if(b==null)b=A.ol(a) +this.kg(a,b)}, +pF(a){return this.dP(a,null)}, +ah(a){var s=this,r=s.b +if((r&4)!==0)return s.CR() +if(r>=4)throw A.c(s.qm()) +s.CI() +return s.CR()}, +CI(){var s=this.b|=4 +if((s&1)!==0)this.uE() +else if((s&3)===0)this.z_().F(0,B.hb)}, +oF(a,b){var s=this,r=s.b +if((r&1)!==0)s.oN(b) +else if((r&3)===0)s.z_().F(0,new A.j0(b,A.l(s).h("j0<1>")))}, +kg(a,b){var s=this.b +if((s&1)!==0)this.qs(a,b) +else if((s&3)===0)this.z_().F(0,new A.Ab(a,b))}, +rV(){var s=this.a +this.a=s.c +this.b&=4294967287 +s.a.m2(null)}, +JL(a,b,c,d){var s,r,q,p,o=this +if((o.b&3)!==0)throw A.c(A.R("Stream has already been listened to.")) +s=A.bOI(o,a,b,c,d,A.l(o).c) +r=o.gaz5() +q=o.b|=1 +if((q&8)!==0){p=o.a +p.c=s +p.b.iq(0)}else o.a=s +s.aBU(r) +s.QS(new A.bcC(o)) +return s}, +a47(a){var s,r,q,p,o,n,m,l=this,k=null +if((l.b&8)!==0)k=l.a.aI(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.uz.b(r))k=r}catch(o){q=A.ak(o) +p=A.aJ(o) +n=new A.a7($.ac,t.b) +n.yR(q,p) +k=n}else k=k.fu(s) +m=new A.bcB(l) +if(k!=null)k=k.fu(m) +else m.$0() +return k}, +a48(a){if((this.b&8)!==0)this.a.b.iK(0) +A.ar1(this.e)}, +a49(a){if((this.b&8)!==0)this.a.b.iq(0) +A.ar1(this.f)}, +$iei:1, +sWB(a){return this.d=a}, +sWD(a,b){return this.e=b}, +sWI(a,b){return this.f=b}, +sWo(a,b){return this.r=b}} +A.bcC.prototype={ +$0(){A.ar1(this.a.d)}, +$S:0} +A.bcB.prototype={ +$0(){var s=this.a.c +if(s!=null&&(s.a&30)===0)s.m2(null)}, +$S:0} +A.anv.prototype={ +oN(a){this.gl1().oF(0,a)}, +qs(a,b){this.gl1().kg(a,b)}, +uE(){this.gl1().rV()}} +A.Qq.prototype={ +oN(a){this.gl1().rT(new A.j0(a,A.l(this).h("j0<1>")))}, +qs(a,b){this.gl1().rT(new A.Ab(a,b))}, +uE(){this.gl1().rT(B.hb)}} +A.mx.prototype={} +A.pI.prototype={} +A.d6.prototype={ +gu(a){return(A.cS(this.a)^892482866)>>>0}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +return b instanceof A.d6&&b.a===this.a}} +A.vs.prototype={ +zg(){return this.w.a47(this)}, +qq(){this.w.a48(this)}, +qr(){this.w.a49(this)}} +A.Ay.prototype={ +F(a,b){this.a.F(0,b)}, +dP(a,b){this.a.dP(a,b)}, +ah(a){return this.a.ah(0)}, +$iei:1} +A.adR.prototype={ +aI(a){var s=this.b.aI(0) +return s.fu(new A.b1K(this))}} +A.b1L.prototype={ +$2(a,b){var s=this.a +s.kg(a,b) +s.rV()}, +$S:26} +A.b1K.prototype={ +$0(){this.a.a.m2(null)}, +$S:4} +A.Uu.prototype={} +A.hx.prototype={ +aBU(a){var s=this +if(a==null)return +s.r=a +if(a.c!=null){s.e=(s.e|64)>>>0 +a.Hi(s)}}, +iJ(a){this.a=A.aeC(this.d,a)}, +tT(a,b){this.b=A.aeD(this.d,b)}, +io(a,b){var s,r=this,q=r.e +if((q&8)!==0)return +r.e=(q+128|4)>>>0 +if(b!=null)b.fu(r.gfC(r)) +if(q<128){s=r.r +if(s!=null)if(s.a===1)s.a=3}if((q&4)===0&&(r.e&32)===0)r.QS(r.gDg())}, +iK(a){return this.io(a,null)}, +iq(a){var s=this,r=s.e +if((r&8)!==0)return +if(r>=128){r=s.e=r-128 +if(r<128)if((r&64)!==0&&s.r.c!=null)s.r.Hi(s) +else{r=(r&4294967291)>>>0 +s.e=r +if((r&32)===0)s.QS(s.gDh())}}}, +aI(a){var s=this,r=(s.e&4294967279)>>>0 +s.e=r +if((r&8)===0)s.PA() +r=s.f +return r==null?$.t6():r}, +PA(){var s,r=this,q=r.e=(r.e|8)>>>0 +if((q&64)!==0){s=r.r +if(s.a===1)s.a=3}if((q&32)===0)r.r=null +r.f=r.zg()}, +oF(a,b){var s=this,r=s.e +if((r&8)!==0)return +if(r<32)s.oN(b) +else s.rT(new A.j0(b,A.l(s).h("j0")))}, +kg(a,b){var s=this.e +if((s&8)!==0)return +if(s<32)this.qs(a,b) +else this.rT(new A.Ab(a,b))}, +rV(){var s=this,r=s.e +if((r&8)!==0)return +r=(r|2)>>>0 +s.e=r +if(r<32)s.uE() +else s.rT(B.hb)}, +qq(){}, +qr(){}, +zg(){return null}, +rT(a){var s,r=this,q=r.r +if(q==null)q=r.r=new A.pC(A.l(r).h("pC")) +q.F(0,a) +s=r.e +if((s&64)===0){s=(s|64)>>>0 +r.e=s +if(s<128)q.Hi(r)}}, +oN(a){var s=this,r=s.e +s.e=(r|32)>>>0 +s.d.y4(s.a,a) +s.e=(s.e&4294967263)>>>0 +s.PJ((r&4)!==0)}, +qs(a,b){var s,r=this,q=r.e,p=new A.b2K(r,a,b) +if((q&1)!==0){r.e=(q|16)>>>0 +r.PA() +s=r.f +if(s!=null&&s!==$.t6())s.fu(p) +else p.$0()}else{p.$0() +r.PJ((q&4)!==0)}}, +uE(){var s,r=this,q=new A.b2J(r) +r.PA() +r.e=(r.e|16)>>>0 +s=r.f +if(s!=null&&s!==$.t6())s.fu(q) +else q.$0()}, +QS(a){var s=this,r=s.e +s.e=(r|32)>>>0 +a.$0() +s.e=(s.e&4294967263)>>>0 +s.PJ((r&4)!==0)}, +PJ(a){var s,r,q=this,p=q.e +if((p&64)!==0&&q.r.c==null){p=q.e=(p&4294967231)>>>0 +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=(p&4294967291)>>>0 +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)>>>0 +if(r)q.qq() +else q.qr() +p=(q.e&4294967263)>>>0 +q.e=p}if((p&64)!==0&&p<128)q.r.Hi(q)}, +$ika:1} +A.b2K.prototype={ +$0(){var s,r,q=this.a,p=q.e +if((p&8)!==0&&(p&16)===0)return +q.e=(p|32)>>>0 +s=q.b +p=this.b +r=q.d +if(t.hK.b(s))r.rp(s,p,this.c) +else r.y4(s,p) +q.e=(q.e&4294967263)>>>0}, +$S:0} +A.b2J.prototype={ +$0(){var s=this.a,r=s.e +if((r&16)===0)return +s.e=(r|42)>>>0 +s.d.Gq(s.c) +s.e=(s.e&4294967263)>>>0}, +$S:0} +A.Hs.prototype={ +c4(a,b,c,d){return this.a.JL(a,d,c,b===!0)}, +B1(a){return this.c4(a,null,null,null)}, +fN(a,b,c){return this.c4(a,null,b,c)}, +aM7(a,b){return this.c4(a,null,b,null)}, +lr(a,b,c){return this.c4(a,b,c,null)}, +abP(a,b){return this.c4(a,null,null,b)}} +A.ag1.prototype={ +gnt(a){return this.a}, +snt(a,b){return this.a=b}} +A.j0.prototype={ +N7(a){a.oN(this.b)}} +A.Ab.prototype={ +N7(a){a.qs(this.b,this.c)}} +A.b4B.prototype={ +N7(a){a.uE()}, +gnt(a){return null}, +snt(a,b){throw A.c(A.R("No events after a done."))}} +A.pC.prototype={ +Hi(a){var s=this,r=s.a +if(r===1)return +if(r>=1){s.a=1 +return}A.fE(new A.b9n(s,a)) +s.a=1}, +F(a,b){var s=this,r=s.c +if(r==null)s.b=s.c=b +else{r.snt(0,b) +s.c=b}}, +aK2(a){var s=this.b,r=s.gnt(s) +this.b=r +if(r==null)this.c=null +s.N7(a)}} +A.b9n.prototype={ +$0(){var s=this.a,r=s.a +s.a=0 +if(r===3)return +s.aK2(this.b)}, +$S:0} +A.Gg.prototype={ +iJ(a){}, +tT(a,b){}, +io(a,b){var s=this,r=s.a +if(r>=0){s.a=r+2 +if(b!=null)b.fu(s.gfC(s))}}, +iK(a){return this.io(a,null)}, +iq(a){var s=this,r=s.a-2 +if(r<0)return +if(r===0){s.a=1 +A.fE(s.ga3D())}else s.a=r}, +aI(a){this.a=-1 +this.c=null +return $.t6()}, +ayf(){var s,r,q,p=this,o=p.a-1 +if(o===0){p.a=-1 +s=p.c +if(s!=null){r=s +q=!0}else{r=null +q=!1}if(q){p.c=null +p.b.Gq(r)}}else p.a=o}, +$ika:1} +A.G1.prototype={ +gfM(){return!0}, +c4(a,b,c,d){var s,r,q=this,p=q.e +if(p==null||(p.c&4)!==0)return A.bmh(c,q.$ti.c) +if(q.f==null){s=p.gjH(p) +r=p.gwK() +q.f=q.a.fN(s,p.gdV(p),r)}return p.JL(a,d,c,b===!0)}, +fN(a,b,c){return this.c4(a,null,b,c)}, +lr(a,b,c){return this.c4(a,b,c,null)}, +zg(){var s,r=this,q=r.e,p=q==null||(q.c&4)!==0,o=r.c +if(o!=null)r.d.Gr(o,new A.vp(r,r.$ti.h("vp<1>"))) +if(p){s=r.f +if(s!=null){s.aI(0) +r.f=null}}}, +anG(){var s=this,r=s.b +if(r!=null)s.d.Gr(r,new A.vp(s,s.$ti.h("vp<1>")))}} +A.vp.prototype={ +iJ(a){throw A.c(A.aa(u.J))}, +tT(a,b){throw A.c(A.aa(u.J))}, +io(a,b){var s=this.a.f +if(s!=null)s.io(0,b)}, +iK(a){return this.io(a,null)}, +iq(a){var s=this.a.f +if(s!=null)s.iq(0)}, +aI(a){var s=this.a,r=s.f +if(r!=null){s.e=s.f=null +r.aI(0)}return $.t6()}, +$ika:1} +A.o8.prototype={ +gG(a){if(this.c)return this.b +return null}, +v(){var s,r=this,q=r.a +if(q!=null){if(r.c){s=new A.a7($.ac,t.tq) +r.b=s +r.c=!1 +q.iq(0) +return s}throw A.c(A.R("Already waiting for next."))}return r.avR()}, +avR(){var s,r,q=this,p=q.b +if(p!=null){s=new A.a7($.ac,t.tq) +q.b=s +r=p.c4(q.ganD(),!0,q.gaxV(),q.gay0()) +if(q.b!=null)q.a=r +return s}return $.bAK()}, +aI(a){var s=this,r=s.a,q=s.b +s.b=null +if(r!=null){s.a=null +if(!s.c)q.m2(!1) +else s.c=!1 +return r.aI(0)}return $.t6()}, +anE(a){var s,r,q=this +if(q.a==null)return +s=q.b +q.b=a +q.c=!0 +s.oK(!0) +if(q.c){r=q.a +if(r!=null)r.iK(0)}}, +ay1(a,b){var s=this,r=s.a,q=s.b +s.b=s.a=null +if(r!=null)q.iz(a,b) +else q.yR(a,b)}, +axW(){var s=this,r=s.a,q=s.b +s.b=s.a=null +if(r!=null)q.we(!1) +else q.a_I(!1)}} +A.RH.prototype={ +c4(a,b,c,d){return A.bmh(c,this.$ti.c)}, +B1(a){return this.c4(a,null,null,null)}, +fN(a,b,c){return this.c4(a,null,b,c)}, +lr(a,b,c){return this.c4(a,b,c,null)}, +gfM(){return!0}} +A.Am.prototype={ +c4(a,b,c,d){var s=null,r=new A.SQ(s,s,s,s,this.$ti.h("SQ<1>")) +r.d=new A.b8A(this,r) +return r.JL(a,d,c,b===!0)}, +fN(a,b,c){return this.c4(a,null,b,c)}, +lr(a,b,c){return this.c4(a,b,c,null)}, +gfM(){return this.a}} +A.b8A.prototype={ +$0(){this.a.b.$1(this.b)}, +$S:0} +A.SQ.prototype={ +a7u(a){var s=this.b +if(s>=4)throw A.c(this.qm()) +if((s&1)!==0)this.gl1().oF(0,a)}, +Tr(a,b){var s=this.b +if(s>=4)throw A.c(this.qm()) +if((s&1)!==0){s=this.gl1() +s.kg(a,b==null?B.ql:b)}}, +U6(){var s=this,r=s.b +if((r&4)!==0)return +if(r>=4)throw A.c(s.qm()) +r|=4 +s.b=r +if((r&1)!==0)s.gl1().rV()}, +gw4(a){throw A.c(A.aa("Not available"))}, +$ia69:1} +A.beP.prototype={ +$0(){return this.a.iz(this.b,this.c)}, +$S:0} +A.beO.prototype={ +$2(a,b){A.bQI(this.a,this.b,a,b)}, +$S:14} +A.beQ.prototype={ +$0(){return this.a.oK(this.b)}, +$S:0} +A.RW.prototype={ +gfM(){return this.a.gfM()}, +c4(a,b,c,d){var s=this.$ti,r=$.ac,q=b===!0?1:0,p=A.aeC(r,a),o=A.aeD(r,d),n=c==null?A.bg9():c +s=new A.Gw(this,p,o,n,r,q,s.h("@<1>").V(s.z[1]).h("Gw<1,2>")) +s.x=this.a.fN(s.gQW(),s.gQY(),s.gR3()) +return s}, +B1(a){return this.c4(a,null,null,null)}, +fN(a,b,c){return this.c4(a,null,b,c)}, +lr(a,b,c){return this.c4(a,b,c,null)}} +A.Gw.prototype={ +oF(a,b){if((this.e&2)!==0)return +this.HR(0,b)}, +kg(a,b){if((this.e&2)!==0)return +this.yL(a,b)}, +qq(){var s=this.x +if(s!=null)s.iK(0)}, +qr(){var s=this.x +if(s!=null)s.iq(0)}, +zg(){var s=this.x +if(s!=null){this.x=null +return s.aI(0)}return null}, +QX(a){this.w.asZ(a,this)}, +R4(a,b){this.kg(a,b)}, +QZ(){this.rV()}} +A.o5.prototype={ +asZ(a,b){var s,r,q,p=null +try{p=this.b.$1(a)}catch(q){s=A.ak(q) +r=A.aJ(q) +b.kg(s,r) +return}b.oF(0,p)}} +A.RJ.prototype={ +F(a,b){var s=this.a +if((s.e&2)!==0)A.r(A.R("Stream is already closed")) +s.HR(0,b)}, +dP(a,b){var s=this.a,r=b==null?A.ol(a):b +if((s.e&2)!==0)A.r(A.R("Stream is already closed")) +s.yL(a,r)}, +pF(a){return this.dP(a,null)}, +ah(a){var s=this.a +if((s.e&2)!==0)A.r(A.R("Stream is already closed")) +s.P2()}, +$iei:1} +A.Hk.prototype={ +qq(){var s=this.x +if(s!=null)s.iK(0)}, +qr(){var s=this.x +if(s!=null)s.iq(0)}, +zg(){var s=this.x +if(s!=null){this.x=null +return s.aI(0)}return null}, +QX(a){var s,r,q,p +try{q=this.w +q===$&&A.b() +q.F(0,a)}catch(p){s=A.ak(p) +r=A.aJ(p) +if((this.e&2)!==0)A.r(A.R("Stream is already closed")) +this.yL(s,r)}}, +R4(a,b){var s,r,q,p,o=this,n="Stream is already closed" +try{q=o.w +q===$&&A.b() +q.dP(a,b)}catch(p){s=A.ak(p) +r=A.aJ(p) +if(s===a){if((o.e&2)!==0)A.r(A.R(n)) +o.yL(a,b)}else{if((o.e&2)!==0)A.r(A.R(n)) +o.yL(s,r)}}}, +QZ(){var s,r,q,p,o=this +try{o.x=null +q=o.w +q===$&&A.b() +q.ah(0)}catch(p){s=A.ak(p) +r=A.aJ(p) +if((o.e&2)!==0)A.r(A.R("Stream is already closed")) +o.yL(s,r)}}} +A.Uw.prototype={ +td(a){var s=this.$ti +return new A.QJ(this.a,a,s.h("@<1>").V(s.z[1]).h("QJ<1,2>"))}} +A.QJ.prototype={ +gfM(){return this.b.gfM()}, +c4(a,b,c,d){var s=this.$ti,r=$.ac,q=b===!0?1:0,p=A.aeC(r,a),o=A.aeD(r,d),n=c==null?A.bg9():c,m=new A.Hk(p,o,n,r,q,s.h("@<1>").V(s.z[1]).h("Hk<1,2>")) +m.w=this.a.$1(new A.RJ(m,s.h("RJ<2>"))) +m.x=this.b.fN(m.gQW(),m.gQY(),m.gR3()) +return m}, +fN(a,b,c){return this.c4(a,null,b,c)}, +lr(a,b,c){return this.c4(a,b,c,null)}} +A.GB.prototype={ +F(a,b){var s=this.d +if(s==null)throw A.c(A.R("Sink is closed")) +this.a.$2(b,s)}, +dP(a,b){var s +A.fu(a,"error",t.K) +s=this.d +if(s==null)throw A.c(A.R("Sink is closed")) +s.dP(a,b==null?A.ol(a):b)}, +ah(a){var s,r=this.d +if(r==null)return +this.d=null +s=r.a +if((s.e&2)!==0)A.r(A.R("Stream is already closed")) +s.P2()}, +$iei:1} +A.Uv.prototype={ +td(a){return this.alc(a)}} +A.bcD.prototype={ +$1(a){var s=this +return new A.GB(s.a,s.b,s.c,a,s.e.h("@<0>").V(s.d).h("GB<1,2>"))}, +$S(){return this.e.h("@<0>").V(this.d).h("GB<1,2>(ei<2>)")}} +A.bes.prototype={} +A.bfS.prototype={ +$0(){A.bki(this.a,this.b)}, +$S:0} +A.am_.prototype={ +Gq(a){var s,r,q +try{if(B.b6===$.ac){a.$0() +return}A.bxK(null,null,this,a)}catch(q){s=A.ak(q) +r=A.aJ(q) +A.lN(s,r)}}, +aPu(a,b){var s,r,q +try{if(B.b6===$.ac){a.$1(b) +return}A.bxM(null,null,this,a,b)}catch(q){s=A.ak(q) +r=A.aJ(q) +A.lN(s,r)}}, +y4(a,b){return this.aPu(a,b,t.z)}, +aPr(a,b,c){var s,r,q +try{if(B.b6===$.ac){a.$2(b,c) +return}A.bxL(null,null,this,a,b,c)}catch(q){s=A.ak(q) +r=A.aJ(q) +A.lN(s,r)}}, +rp(a,b,c){return this.aPr(a,b,c,t.z,t.z)}, +aFM(a,b,c,d){return new A.bbh(this,a,c,d,b)}, +TQ(a){return new A.bbi(this,a)}, +Kz(a,b){return new A.bbj(this,a,b)}, +i(a,b){return null}, +aKz(a,b){A.lN(a,b)}, +aPo(a){if($.ac===B.b6)return a.$0() +return A.bxK(null,null,this,a)}, +kG(a){return this.aPo(a,t.z)}, +aPt(a,b){if($.ac===B.b6)return a.$1(b) +return A.bxM(null,null,this,a,b)}, +Gr(a,b){return this.aPt(a,b,t.z,t.z)}, +aPq(a,b,c){if($.ac===B.b6)return a.$2(b,c) +return A.bxL(null,null,this,a,b,c)}, +adB(a,b,c){return this.aPq(a,b,c,t.z,t.z,t.z)}, +aOG(a){return a}, +Gi(a){return this.aOG(a,t.z,t.z,t.z)}} +A.bbh.prototype={ +$2(a,b){return this.a.adB(this.b,a,b)}, +$S(){return this.e.h("@<0>").V(this.c).V(this.d).h("1(2,3)")}} +A.bbi.prototype={ +$0(){return this.a.Gq(this.b)}, +$S:0} +A.bbj.prototype={ +$1(a){return this.a.y4(this.b,a)}, +$S(){return this.c.h("~(0)")}} +A.rD.prototype={ +gt(a){return this.a}, +gak(a){return this.a===0}, +gd2(a){return this.a!==0}, +gcN(a){return new A.rE(this,A.l(this).h("rE<1>"))}, +gbp(a){var s=A.l(this) +return A.oT(new A.rE(this,s.h("rE<1>")),new A.b6u(this),s.c,s.z[1])}, +aq(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.yU(b)}, +yU(a){var s=this.d +if(s==null)return!1 +return this.l_(this.a1F(s,a),a)>=0}, +I(a,b){b.al(0,new A.b6t(this))}, +i(a,b){var s,r,q +if(typeof b=="string"&&b!=="__proto__"){s=this.b +r=s==null?null:A.bmj(s,b) +return r}else if(typeof b=="number"&&(b&1073741823)===b){q=this.c +r=q==null?null:A.bmj(q,b) +return r}else return this.a1D(0,b)}, +a1D(a,b){var s,r,q=this.d +if(q==null)return null +s=this.a1F(q,b) +r=this.l_(s,b) +return r<0?null:s[r+1]}, +n(a,b,c){var s,r,q=this +if(typeof b=="string"&&b!=="__proto__"){s=q.b +q.a0p(s==null?q.b=A.bmk():s,b,c)}else if(typeof b=="number"&&(b&1073741823)===b){r=q.c +q.a0p(r==null?q.c=A.bmk():r,b,c)}else q.a4Z(b,c)}, +a4Z(a,b){var s,r,q,p=this,o=p.d +if(o==null)o=p.d=A.bmk() +s=p.m5(a) +r=o[s] +if(r==null){A.bml(o,s,[a,b]);++p.a +p.e=null}else{q=p.l_(r,a) +if(q>=0)r[q+1]=b +else{r.push(a,b);++p.a +p.e=null}}}, +cK(a,b,c){var s,r,q=this +if(q.aq(0,b)){s=q.i(0,b) +return s==null?A.l(q).z[1].a(s):s}r=c.$0() +q.n(0,b,r) +return r}, +E(a,b){var s=this +if(typeof b=="string"&&b!=="__proto__")return s.ut(s.b,b) +else if(typeof b=="number"&&(b&1073741823)===b)return s.ut(s.c,b) +else return s.t6(0,b)}, +t6(a,b){var s,r,q,p,o=this,n=o.d +if(n==null)return null +s=o.m5(b) +r=n[s] +q=o.l_(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}, +ab(a){var s=this +if(s.a>0){s.b=s.c=s.d=s.e=null +s.a=0}}, +al(a,b){var s,r,q,p,o,n=this,m=n.Ib() +for(s=m.length,r=A.l(n).z[1],q=0;q"))}, +p(a,b){return this.a.aq(0,b)}, +al(a,b){var s,r,q=this.a,p=q.Ib() +for(s=p.length,r=0;r=r.length){s.d=null +return!1}else{s.d=r[q] +s.c=q+1 +return!0}}} +A.Sy.prototype={ +i(a,b){if(!this.y.$1(b))return null +return this.ai3(b)}, +n(a,b,c){this.ai5(b,c)}, +aq(a,b){if(!this.y.$1(b))return!1 +return this.ai2(b)}, +E(a,b){if(!this.y.$1(b))return null +return this.ai4(b)}, +xz(a){return this.x.$1(a)&1073741823}, +xA(a,b){var s,r,q +if(a==null)return-1 +s=a.length +for(r=this.w,q=0;q"))}, +Df(a){return new A.pA(a.h("pA<0>"))}, +RU(){return this.Df(t.z)}, +gam(a){return new A.mF(this,this.CL(),A.l(this).h("mF<1>"))}, +gt(a){return this.a}, +gak(a){return this.a===0}, +gd2(a){return this.a!==0}, +p(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.Q0(b)}, +Q0(a){var s=this.d +if(s==null)return!1 +return this.l_(s[this.m5(a)],a)>=0}, +F(a,b){var s,r,q=this +if(typeof b=="string"&&b!=="__proto__"){s=q.b +return q.CJ(s==null?q.b=A.bmm():s,b)}else if(typeof b=="number"&&(b&1073741823)===b){r=q.c +return q.CJ(r==null?q.c=A.bmm():r,b)}else return q.iV(0,b)}, +iV(a,b){var s,r,q=this,p=q.d +if(p==null)p=q.d=A.bmm() +s=q.m5(b) +r=p[s] +if(r==null)p[s]=[b] +else{if(q.l_(r,b)>=0)return!1 +r.push(b)}++q.a +q.e=null +return!0}, +I(a,b){var s +for(s=J.al(b);s.v();)this.F(0,s.gG(s))}, +E(a,b){var s=this +if(typeof b=="string"&&b!=="__proto__")return s.ut(s.b,b) +else if(typeof b=="number"&&(b&1073741823)===b)return s.ut(s.c,b) +else return s.t6(0,b)}, +t6(a,b){var s,r,q,p=this,o=p.d +if(o==null)return!1 +s=p.m5(b) +r=o[s] +q=p.l_(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}, +ab(a){var s=this +if(s.a>0){s.b=s.c=s.d=s.e=null +s.a=0}}, +CL(){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.e +if(h!=null)return h +h=A.aX(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.kW.prototype={ +zf(){return new A.kW(A.l(this).h("kW<1>"))}, +Df(a){return new A.kW(a.h("kW<0>"))}, +RU(){return this.Df(t.z)}, +gam(a){var s=this,r=new A.vy(s,s.r,A.l(s).h("vy<1>")) +r.c=s.e +return r}, +gt(a){return this.a}, +gak(a){return this.a===0}, +gd2(a){return this.a!==0}, +p(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.Q0(b)}, +Q0(a){var s=this.d +if(s==null)return!1 +return this.l_(s[this.m5(a)],a)>=0}, +al(a,b){var s=this,r=s.e,q=s.r +for(;r!=null;){b.$1(r.a) +if(q!==s.r)throw A.c(A.cJ(s)) +r=r.b}}, +gO(a){var s=this.e +if(s==null)throw A.c(A.R("No elements")) +return s.a}, +gX(a){var s=this.f +if(s==null)throw A.c(A.R("No elements")) +return s.a}, +F(a,b){var s,r,q=this +if(typeof b=="string"&&b!=="__proto__"){s=q.b +return q.CJ(s==null?q.b=A.bmo():s,b)}else if(typeof b=="number"&&(b&1073741823)===b){r=q.c +return q.CJ(r==null?q.c=A.bmo():r,b)}else return q.iV(0,b)}, +iV(a,b){var s,r,q=this,p=q.d +if(p==null)p=q.d=A.bmo() +s=q.m5(b) +r=p[s] +if(r==null)p[s]=[q.PS(b)] +else{if(q.l_(r,b)>=0)return!1 +r.push(q.PS(b))}return!0}, +E(a,b){var s=this +if(typeof b=="string"&&b!=="__proto__")return s.ut(s.b,b) +else if(typeof b=="number"&&(b&1073741823)===b)return s.ut(s.c,b) +else return s.t6(0,b)}, +t6(a,b){var s,r,q,p,o=this,n=o.d +if(n==null)return!1 +s=o.m5(b) +r=n[s] +q=o.l_(r,b) +if(q<0)return!1 +p=r.splice(q,1)[0] +if(0===r.length)delete n[s] +o.a0q(p) +return!0}, +ari(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.c(A.cJ(o)) +if(!0===p)o.E(0,s)}}, +ab(a){var s=this +if(s.a>0){s.b=s.c=s.d=s.e=s.f=null +s.a=0 +s.PR()}}, +CJ(a,b){if(a[b]!=null)return!1 +a[b]=this.PS(b) +return!0}, +ut(a,b){var s +if(a==null)return!1 +s=a[b] +if(s==null)return!1 +this.a0q(s) +delete a[b] +return!0}, +PR(){this.r=this.r+1&1073741823}, +PS(a){var s,r=this,q=new A.b7L(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.PR() +return q}, +a0q(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.PR()}, +m5(a){return J.T(a)&1073741823}, +l_(a,b){var s,r +if(a==null)return-1 +s=a.length +for(r=0;r"))}, +gt(a){return J.b3(this.a)}, +i(a,b){return J.t8(this.a,b)}} +A.aFF.prototype={ +$2(a,b){this.a.n(0,this.b.a(a),this.c.a(b))}, +$S:55} +A.aIA.prototype={ +$2(a,b){this.a.n(0,this.b.a(a),this.c.a(b))}, +$S:55} +A.jU.prototype={ +E(a,b){if(b.hU$!==this)return!1 +this.T2(b) +return!0}, +p(a,b){return t.or.b(b)&&this===b.hU$}, +gam(a){var s=this +return new A.GL(s,s.a,s.c,s.$ti.h("GL<1>"))}, +gt(a){return this.b}, +ab(a){var s,r,q,p=this;++p.a +if(p.b===0)return +s=p.c +s.toString +r=s +do{q=r.ic$ +q.toString +r.ic$=r.jc$=r.hU$=null +if(q!==s){r=q +continue}else break}while(!0) +p.c=null +p.b=0}, +gO(a){var s +if(this.b===0)throw A.c(A.R("No such element")) +s=this.c +s.toString +return s}, +gX(a){var s +if(this.b===0)throw A.c(A.R("No such element")) +s=this.c.jc$ +s.toString +return s}, +gaV(a){var s=this.b +if(s===0)throw A.c(A.R("No such element")) +if(s>1)throw A.c(A.R("Too many elements")) +s=this.c +s.toString +return s}, +al(a,b){var s,r,q=this,p=q.a +if(q.b===0)return +s=q.c +s.toString +r=s +do{b.$1(r) +if(p!==q.a)throw A.c(A.cJ(q)) +s=r.ic$ +s.toString +if(s!==q.c){r=s +continue}else break}while(!0)}, +gak(a){return this.b===0}, +z8(a,b,c){var s,r,q=this +if(b.hU$!=null)throw A.c(A.R("LinkedListEntry is already in a LinkedList"));++q.a +b.hU$=q +s=q.b +if(s===0){b.ic$=b +q.c=b.jc$=b +q.b=s+1 +return}r=a.jc$ +r.toString +b.jc$=r +b.ic$=a +a.jc$=r.ic$=b +if(c&&a==q.c)q.c=b +q.b=s+1}, +T2(a){var s,r,q=this;++q.a +s=a.ic$ +s.jc$=a.jc$ +a.jc$.ic$=s +r=--q.b +a.hU$=a.ic$=a.jc$=null +if(r===0)q.c=null +else if(a===q.c)q.c=s}} +A.GL.prototype={ +gG(a){var s=this.c +return s==null?this.$ti.c.a(s):s}, +v(){var s=this,r=s.a +if(s.b!==r.a)throw A.c(A.cJ(s)) +if(r.b!==0)r=s.e&&s.d===r.gO(r) +else r=!0 +if(r){s.c=null +return!1}s.e=!0 +r=s.d +s.c=r +s.d=r.ic$ +return!0}} +A.ji.prototype={ +gnt(a){var s=this.hU$ +if(s==null||s.gO(s)===this.ic$)return null +return this.ic$}, +gBi(){var s=this.hU$ +if(s==null||this===s.gO(s))return null +return this.jc$}} +A.ae.prototype={ +gam(a){return new A.c2(a,this.gt(a),A.cq(a).h("c2"))}, +cn(a,b){return this.i(a,b)}, +al(a,b){var s,r=this.gt(a) +for(s=0;s1)throw A.c(A.na()) +return this.i(a,0)}, +p(a,b){var s,r=this.gt(a) +for(s=0;s=0;--s){r=this.i(a,s) +if(b.$1(r))return r +if(q!==this.gt(a))throw A.c(A.cJ(a))}if(c!=null)return c.$0() +throw A.c(A.ch())}, +Cl(a,b,c){var s,r,q,p=this.gt(a),o=A.b6("match") +for(s=!1,r=0;r"))}, +NQ(a,b){return new A.fb(a,b.h("fb<0>"))}, +ik(a,b,c){return new A.ad(a,b,A.cq(a).h("@").V(c).h("ad<1,2>"))}, +lX(a,b){return A.fQ(a,b,null,A.cq(a).h("ae.E"))}, +qa(a,b){return A.fQ(a,0,A.fu(b,"count",t.S),A.cq(a).h("ae.E"))}, +hn(a,b){var s,r,q,p,o=this +if(o.gak(a)){s=A.cq(a).h("ae.E") +return b?J.CW(0,s):J.a39(0,s)}r=o.i(a,0) +q=A.aX(o.gt(a),r,b,A.cq(a).h("ae.E")) +for(p=1;p").V(b).h("iz<1,2>"))}, +h5(a){var s,r=this +if(r.gt(a)===0)throw A.c(A.ch()) +s=r.i(a,r.gt(a)-1) +r.st(a,r.gt(a)-1) +return s}, +fw(a,b){var s=b==null?A.bTH():b +A.a9T(a,0,this.gt(a)-1,s)}, +U(a,b){var s=A.a8(a,!0,A.cq(a).h("ae.E")) +B.b.I(s,b) +return s}, +cT(a,b,c){var s=this.gt(a) +if(c==null)c=s +A.dJ(b,c,s,null,null) +return A.hl(this.BZ(a,b,c),!0,A.cq(a).h("ae.E"))}, +fH(a,b){return this.cT(a,b,null)}, +BZ(a,b,c){A.dJ(b,c,this.gt(a),null,null) +return A.fQ(a,b,c,A.cq(a).h("ae.E"))}, +rn(a,b,c){A.dJ(b,c,this.gt(a),null,null) +if(c>b)this.a0m(a,b,c)}, +aJ1(a,b,c,d){var s +A.dJ(b,c,this.gt(a),null,null) +for(s=b;s").b(d)){r=e +q=d}else{p=J.arS(d,e) +q=p.hn(p,!1) +r=0}p=J.aj(q) +if(r+s>p.gt(q))throw A.c(A.bsj()) +if(r=0;--o)this.n(a,b+o,p.i(q,r+o)) +else for(o=0;o"))}, +qZ(a,b,c,d){var s,r,q,p,o,n=A.I(c,d) +for(s=J.al(this.gcN(a)),r=A.cq(a).h("bo.V");s.v();){q=s.gG(s) +p=this.i(a,q) +o=b.$2(q,p==null?r.a(p):p) +n.n(0,o.a,o.b)}return n}, +a7l(a,b){var s,r +for(s=b.gam(b);s.v();){r=s.gG(s) +this.n(a,r.a,r.b)}}, +Nn(a,b){var s,r,q,p,o=A.cq(a),n=A.a([],o.h("H")) +for(s=J.al(this.gcN(a)),o=o.h("bo.V");s.v();){r=s.gG(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").V(s.h("bo.V")).h("SC<1,2>"))}, +l(a){return A.a4_(a)}, +$ia6:1} +A.aJQ.prototype={ +$1(a){var s=this.a,r=J.b7(s,a) +if(r==null)r=A.cq(s).h("bo.V").a(r) +s=A.cq(s) +return new A.aS(a,r,s.h("@").V(s.h("bo.V")).h("aS<1,2>"))}, +$S(){return A.cq(this.a).h("aS(bo.K)")}} +A.aJR.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.i(a) +r.a=s+": " +r.a+=A.i(b)}, +$S:87} +A.SC.prototype={ +gt(a){return J.b3(this.a)}, +gak(a){return J.cf(this.a)}, +gd2(a){return J.hZ(this.a)}, +gO(a){var s=this.a,r=J.c4(s) +s=r.i(s,J.jD(r.gcN(s))) +return s==null?this.$ti.z[1].a(s):s}, +gaV(a){var s=this.a,r=J.c4(s) +s=r.i(s,J.Xh(r.gcN(s))) +return s==null?this.$ti.z[1].a(s):s}, +gX(a){var s=this.a,r=J.c4(s) +s=r.i(s,J.ks(r.gcN(s))) +return s==null?this.$ti.z[1].a(s):s}, +gam(a){var s=this.a,r=this.$ti +return new A.aj_(J.al(J.iu(s)),s,r.h("@<1>").V(r.z[1]).h("aj_<1,2>"))}} +A.aj_.prototype={ +v(){var s=this,r=s.a +if(r.v()){s.c=J.b7(s.b,r.gG(r)) +return!0}s.c=null +return!1}, +gG(a){var s=this.c +return s==null?this.$ti.z[1].a(s):s}} +A.HD.prototype={ +n(a,b,c){throw A.c(A.aa("Cannot modify unmodifiable map"))}, +E(a,b){throw A.c(A.aa("Cannot modify unmodifiable map"))}, +cK(a,b,c){throw A.c(A.aa("Cannot modify unmodifiable map"))}} +A.yd.prototype={ +uU(a,b,c){return J.arR(this.a,b,c)}, +i(a,b){return J.b7(this.a,b)}, +n(a,b,c){J.j5(this.a,b,c)}, +cK(a,b,c){return J.I2(this.a,b,c)}, +aq(a,b){return J.jC(this.a,b)}, +al(a,b){J.it(this.a,b)}, +gak(a){return J.cf(this.a)}, +gd2(a){return J.hZ(this.a)}, +gt(a){return J.b3(this.a)}, +gcN(a){return J.iu(this.a)}, +E(a,b){return J.pW(this.a,b)}, +l(a){return J.cU(this.a)}, +gbp(a){return J.bje(this.a)}, +gdX(a){return J.Xg(this.a)}, +qZ(a,b,c,d){return J.Xi(this.a,b,c,d)}, +$ia6:1} +A.mu.prototype={ +uU(a,b,c){return new A.mu(J.arR(this.a,b,c),b.h("@<0>").V(c).h("mu<1,2>"))}} +A.Rq.prototype={ +Rz(a,b){var s=this +s.b=b +s.a=a +if(a!=null)a.b=s +if(b!=null)b.a=s}, +aDU(){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.rB.prototype={ +Se(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}, +en(a){var s=this,r=s.c +if(r!=null)--r.b +s.c=null +s.aDU() +return s.d}, +I2(){return this}, +$ibrc:1, +gEJ(){return this.d}} +A.Ac.prototype={ +I2(){return null}, +Se(a){throw A.c(A.ch())}, +gEJ(){throw A.c(A.ch())}} +A.wZ.prototype={ +kl(a,b){return new A.q6(this,this.$ti.h("@<1>").V(b).h("q6<1,2>"))}, +gt(a){return this.b}, +Kk(a){var s=this.a +new A.rB(this,a,s.$ti.h("rB<1>")).Rz(s,s.b);++this.b}, +F(a,b){var s=this.a +new A.rB(this,b,s.$ti.h("rB<1>")).Rz(s.a,s);++this.b}, +h5(a){var s=this.a.a.Se(0);--this.b +return s}, +gO(a){return this.a.b.gEJ()}, +gX(a){return this.a.a.gEJ()}, +gaV(a){var s=this.a,r=s.b +if(r==s.a)return r.gEJ() +throw A.c(A.na())}, +gak(a){var s=this.a +return s.b===s}, +gam(a){return new A.agk(this,this.a.b,this.$ti.h("agk<1>"))}, +l(a){return A.xM(this,"{","}")}, +$iao:1} +A.agk.prototype={ +v(){var s=this,r=s.b,q=r==null?null:r.I2() +if(q==null){s.a=s.b=s.c=null +return!1}r=s.a +if(r!=q.c)throw A.c(A.cJ(r)) +s.c=q.d +s.b=q.b +return!0}, +gG(a){var s=this.c +return s==null?this.$ti.c.a(s):s}} +A.Lv.prototype={ +kl(a,b){return new A.q6(this,this.$ti.h("@<1>").V(b).h("q6<1,2>"))}, +gam(a){var s=this +return new A.aiE(s,s.c,s.d,s.b,s.$ti.h("aiE<1>"))}, +al(a,b){var s,r,q,p=this,o=p.d +for(s=p.b,r=p.$ti.c;s!==p.c;s=(s+1&p.a.length-1)>>>0){q=p.a[s] +b.$1(q==null?r.a(q):q) +if(o!==p.d)A.r(A.cJ(p))}}, +gak(a){return this.b===this.c}, +gt(a){return(this.c-this.b&this.a.length-1)>>>0}, +gO(a){var s=this,r=s.b +if(r===s.c)throw A.c(A.ch()) +r=s.a[r] +return r==null?s.$ti.c.a(r):r}, +gX(a){var s=this,r=s.b,q=s.c +if(r===q)throw A.c(A.ch()) +r=s.a +r=r[(q-1&r.length-1)>>>0] +return r==null?s.$ti.c.a(r):r}, +gaV(a){var s,r=this +if(r.b===r.c)throw A.c(A.ch()) +if(r.gt(r)>1)throw A.c(A.na()) +s=r.a[r.b] +return s==null?r.$ti.c.a(s):s}, +cn(a,b){var s,r=this +A.bkG(b,r.gt(r),r,null,null) +s=r.a +s=s[(r.b+b&s.length-1)>>>0] +return s==null?r.$ti.c.a(s):s}, +hn(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=m.$ti.c +return b?J.CW(0,s):J.a39(0,s)}s=m.$ti.c +r=A.aX(k,m.gO(m),b,s) +for(q=m.a,p=m.b,o=0;o>>0] +r[o]=n==null?s.a(n):n}return r}, +fO(a){return this.hn(a,!0)}, +I(a,b){var s,r,q,p,o,n,m,l,k=this,j=k.$ti +if(j.h("f<1>").b(b)){s=b.length +r=k.gt(k) +q=r+s +p=k.a +o=p.length +if(q>=o){n=A.aX(A.bsx(q+(q>>>1)),null,!1,j.h("1?")) +k.c=k.aF0(n) +k.a=n +k.b=0 +B.b.cv(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}}, +l(a){return A.xM(this,"{","}")}, +Kk(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.a2a();++s.d}, +Bn(){var s,r,q=this,p=q.b +if(p===q.c)throw A.c(A.ch());++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}, +h5(a){var s,r=this,q=r.b,p=r.c +if(q===p)throw A.c(A.ch());++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}, +iV(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.a2a();++s.d}, +a2a(){var s=this,r=A.aX(s.a.length*2,null,!1,s.$ti.h("1?")),q=s.a,p=s.b,o=q.length-p +B.b.cv(r,0,o,q,p) +B.b.cv(r,o,o+s.b,s.a,0) +s.b=0 +s.c=s.a.length +s.a=r}, +aF0(a){var s,r,q=this,p=q.b,o=q.c,n=q.a +if(p<=o){s=o-p +B.b.cv(a,0,s,n,p) +return s}else{r=n.length-p +B.b.cv(a,0,r,n,p) +B.b.cv(a,r,r+q.c,q.a,0) +return q.c+r}}} +A.aiE.prototype={ +gG(a){var s=this.e +return s==null?this.$ti.c.a(s):s}, +v(){var s,r=this,q=r.a +if(r.c!==q.d)A.r(A.cJ(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.ml.prototype={ +gak(a){return this.gt(this)===0}, +gd2(a){return this.gt(this)!==0}, +kl(a,b){return A.aUo(this,null,A.l(this).c,b)}, +I(a,b){var s +for(s=J.al(b);s.v();)this.F(0,s.gG(s))}, +ad4(a){var s,r +for(s=a.length,r=0;r").V(c).h("qh<1,2>"))}, +gaV(a){var s,r=this +if(r.gt(r)>1)throw A.c(A.na()) +s=r.gam(r) +if(!s.v())throw A.c(A.ch()) +return s.gG(s)}, +l(a){return A.xM(this,"{","}")}, +jw(a,b){return new A.ba(this,b,A.l(this).h("ba<1>"))}, +al(a,b){var s +for(s=this.gam(this);s.v();)b.$1(s.gG(s))}, +EO(a,b){var s +for(s=this.gam(this);s.v();)if(!b.$1(s.gG(s)))return!1 +return!0}, +ck(a,b){var s,r,q=this.gam(this) +if(!q.v())return"" +s=J.cU(q.gG(q)) +if(!q.v())return s +if(b.length===0){r=s +do r+=A.i(q.gG(q)) +while(q.v())}else{r=s +do r=r+b+A.i(q.gG(q)) +while(q.v())}return r.charCodeAt(0)==0?r:r}, +fa(a,b){var s +for(s=this.gam(this);s.v();)if(b.$1(s.gG(s)))return!0 +return!1}, +qa(a,b){return A.aYN(this,b,A.l(this).c)}, +lX(a,b){return A.blA(this,b,A.l(this).c)}, +gO(a){var s=this.gam(this) +if(!s.v())throw A.c(A.ch()) +return s.gG(s)}, +gX(a){var s,r=this.gam(this) +if(!r.v())throw A.c(A.ch()) +do s=r.gG(r) +while(r.v()) +return s}, +q5(a,b,c){var s,r,q=this.gam(this) +do{if(!q.v()){if(c!=null)return c.$0() +throw A.c(A.ch())}s=q.gG(q)}while(!b.$1(s)) +for(;q.v();){r=q.gG(q) +if(b.$1(r))s=r}return s}, +cn(a,b){var s,r +A.fN(b,"index") +s=this.gam(this) +for(r=b;s.v();){if(r===0)return s.gG(s);--r}throw A.c(A.f8(b,b-r,this,null,"index"))}, +$iao:1, +$iz:1, +$ibC:1} +A.Hh.prototype={ +kl(a,b){return A.aUo(this,this.gRT(),A.l(this).c,b)}, +x9(a){var s,r,q=this.zf() +for(s=this.gam(this);s.v();){r=s.gG(s) +if(!a.p(0,r))q.F(0,r)}return q}, +AU(a,b){var s,r,q=this.zf() +for(s=this.gam(this);s.v();){r=s.gG(s) +if(b.p(0,r))q.F(0,r)}return q}, +kI(a){var s=this.zf() +s.I(0,this) +return s}} +A.ang.prototype={} +A.kk.prototype={} +A.jx.prototype={ +aAp(a){var s=this,r=s.$ti +r=new A.jx(a,s.a,r.h("@<1>").V(r.z[1]).h("jx<1,2>")) +r.b=s.b +r.c=s.c +return r}} +A.anf.prototype={ +pE(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=h.ght() +if(f==null){h.PW(a,a) +return-1}s=h.gPV() +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.ght()!==q){h.sht(q);++h.c}return r}, +aCr(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}, +a5m(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}, +t6(a,b){var s,r,q,p,o=this +if(o.ght()==null)return null +if(o.pE(b)!==0)return null +s=o.ght() +r=s.b;--o.a +q=s.c +if(r==null)o.sht(q) +else{p=o.a5m(r) +p.c=q +o.sht(p)}++o.b +return s}, +Pg(a,b){var s,r=this;++r.a;++r.b +s=r.ght() +if(s==null){r.sht(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.sht(a)}, +ga1p(){var s=this,r=s.ght() +if(r==null)return null +s.sht(s.aCr(r)) +return s.ght()}, +ga3_(){var s=this,r=s.ght() +if(r==null)return null +s.sht(s.a5m(r)) +return s.ght()}, +yU(a){return this.Tf(a)&&this.pE(a)===0}, +PW(a,b){return this.gPV().$2(a,b)}, +Tf(a){return this.gaR_().$1(a)}} +A.OS.prototype={ +i(a,b){var s=this +if(!s.f.$1(b))return null +if(s.d!=null)if(s.pE(b)===0)return s.d.d +return null}, +E(a,b){var s +if(!this.f.$1(b))return null +s=this.t6(0,b) +if(s!=null)return s.d +return null}, +n(a,b,c){var s,r=this,q=r.pE(b) +if(q===0){r.d=r.d.aAp(c);++r.c +return}s=r.$ti +r.Pg(new A.jx(c,b,s.h("@<1>").V(s.z[1]).h("jx<1,2>")),q)}, +cK(a,b,c){var s,r,q,p,o=this,n=o.pE(b) +if(n===0)return o.d.d +s=o.b +r=o.c +q=c.$0() +if(s!==o.b)throw A.c(A.cJ(o)) +if(r!==o.c)n=o.pE(b) +p=o.$ti +o.Pg(new A.jx(q,b,p.h("@<1>").V(p.z[1]).h("jx<1,2>")),n) +return q}, +gak(a){return this.d==null}, +gd2(a){return this.d!=null}, +al(a,b){var s,r,q=this.$ti +q=q.h("@<1>").V(q.z[1]) +s=new A.Aw(this,A.a([],q.h("H>")),this.c,q.h("Aw<1,2>")) +for(;s.v();){r=s.gG(s) +b.$2(r.a,r.b)}}, +gt(a){return this.a}, +aq(a,b){return this.yU(b)}, +gcN(a){var s=this.$ti +return new A.rM(this,s.h("@<1>").V(s.h("jx<1,2>")).h("rM<1,2>"))}, +gbp(a){var s=this.$ti +return new A.Ax(this,s.h("@<1>").V(s.z[1]).h("Ax<1,2>"))}, +gdX(a){var s=this.$ti +return new A.Ul(this,s.h("@<1>").V(s.z[1]).h("Ul<1,2>"))}, +aJ9(){if(this.d==null)return null +return this.ga1p().a}, +abM(){if(this.d==null)return null +return this.ga3_().a}, +aLV(a){var s,r,q,p=this +if(p.d==null)return null +if(p.pE(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}, +aJa(a){var s,r,q,p=this +if(p.d==null)return null +if(p.pE(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}, +$ia6:1, +PW(a,b){return this.e.$2(a,b)}, +Tf(a){return this.f.$1(a)}, +ght(){return this.d}, +gPV(){return this.e}, +sht(a){return this.d=a}} +A.aXy.prototype={ +$1(a){return this.a.b(a)}, +$S:98} +A.pF.prototype={ +gG(a){var s=this.b +if(s.length===0){A.l(this).h("pF.T").a(null) +return null}return this.QP(B.b.gX(s))}, +aA0(a){var s,r,q=this.b +B.b.ab(q) +s=this.a +s.pE(a) +r=s.ght() +r.toString +q.push(r) +this.d=s.c}, +v(){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.ght() +for(p=q.b;s!=null;){p.push(s) +s=s.b}return p.length!==0}throw A.c(A.cJ(o))}p=q.b +if(p.length===0)return!1 +if(q.d!==o.c)q.aA0(B.b.gX(p).a) +s=B.b.gX(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.gX(p).c===s))break +s=p.pop()}return p.length!==0}} +A.rM.prototype={ +gt(a){return this.a.a}, +gak(a){return this.a.a===0}, +gam(a){var s=this.a,r=this.$ti +return new A.rN(s,A.a([],r.h("H<2>")),s.c,r.h("@<1>").V(r.z[1]).h("rN<1,2>"))}, +p(a,b){return this.a.yU(b)}, +kI(a){var s=this.a,r=this.$ti,q=A.aaj(s.e,s.f,r.c) +q.a=s.a +q.d=q.a0H(s.d,r.z[1]) +return q}} +A.Ax.prototype={ +gt(a){return this.a.a}, +gak(a){return this.a.a===0}, +gam(a){var s=this.a,r=this.$ti +r=r.h("@<1>").V(r.z[1]) +return new A.Up(s,A.a([],r.h("H>")),s.c,r.h("Up<1,2>"))}} +A.Ul.prototype={ +gt(a){return this.a.a}, +gak(a){return this.a.a===0}, +gam(a){var s=this.a,r=this.$ti +r=r.h("@<1>").V(r.z[1]) +return new A.Aw(s,A.a([],r.h("H>")),s.c,r.h("Aw<1,2>"))}} +A.rN.prototype={ +QP(a){return a.a}} +A.Up.prototype={ +QP(a){return a.d}} +A.Aw.prototype={ +QP(a){var s=this.$ti +return new A.aS(a.a,a.d,s.h("@<1>").V(s.z[1]).h("aS<1,2>"))}} +A.F0.prototype={ +a3t(a){return A.aaj(new A.aXA(this,a),this.f,a)}, +zf(){return this.a3t(t.z)}, +kl(a,b){return A.aUo(this,this.gaxA(),this.$ti.c,b)}, +gam(a){var s=this.$ti +return new A.rN(this,A.a([],s.h("H>")),this.c,s.h("@<1>").V(s.h("kk<1>")).h("rN<1,2>"))}, +gt(a){return this.a}, +gak(a){return this.d==null}, +gd2(a){return this.d!=null}, +gO(a){if(this.a===0)throw A.c(A.ch()) +return this.ga1p().a}, +gX(a){if(this.a===0)throw A.c(A.ch()) +return this.ga3_().a}, +gaV(a){var s=this.a +if(s===0)throw A.c(A.ch()) +if(s>1)throw A.c(A.na()) +return this.d.a}, +p(a,b){return this.f.$1(b)&&this.pE(this.$ti.c.a(b))===0}, +F(a,b){return this.iV(0,b)}, +iV(a,b){var s=this.pE(b) +if(s===0)return!1 +this.Pg(new A.kk(b,this.$ti.h("kk<1>")),s) +return!0}, +E(a,b){if(!this.f.$1(b))return!1 +return this.t6(0,this.$ti.c.a(b))!=null}, +I(a,b){var s +for(s=J.al(b);s.v();)this.iV(0,s.gG(s))}, +AU(a,b){var s,r=this,q=r.$ti,p=A.aaj(r.e,r.f,q.c) +for(q=new A.rN(r,A.a([],q.h("H>")),r.c,q.h("@<1>").V(q.h("kk<1>")).h("rN<1,2>"));q.v();){s=q.gG(q) +if(b.p(0,s))p.iV(0,s)}return p}, +a0H(a,b){var s +if(a==null)return null +s=new A.kk(a.a,this.$ti.h("kk<1>")) +new A.aXz(this,b).$2(a,s) +return s}, +kI(a){var s=this,r=s.$ti,q=A.aaj(s.e,s.f,r.c) +q.a=s.a +q.d=s.a0H(s.d,r.h("kk<1>")) +return q}, +l(a){return A.xM(this,"{","}")}, +$iao:1, +$ibC:1, +PW(a,b){return this.e.$2(a,b)}, +Tf(a){return this.f.$1(a)}, +ght(){return this.d}, +gPV(){return this.e}, +sht(a){return this.d=a}} +A.aXB.prototype={ +$1(a){return this.a.b(a)}, +$S:98} +A.aXA.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("n(0,0)")}} +A.aXz.prototype={ +$2(a,b){var s,r,q,p,o,n=this.a.$ti.h("kk<1>") +do{s=a.b +r=a.c +if(s!=null){q=new A.kk(s.a,n) +b.b=q +this.$2(s,q)}p=r!=null +if(p){o=new A.kk(r.a,n) +b.c=o +b=o +a=r}}while(p)}, +$S(){return this.a.$ti.V(this.b).h("~(1,kk<2>)")}} +A.Um.prototype={} +A.Un.prototype={} +A.Uo.prototype={} +A.V6.prototype={} +A.bf0.prototype={ +$1(a){var s,r,q,p,o,n,m=this +if(a==null||typeof a!="object")return a +if(Object.getPrototypeOf(a)===Array.prototype){for(s=m.a,r=0;r0}, +gcN(a){var s +if(this.b==null){s=this.c +return new A.cl(s,A.l(s).h("cl<1>"))}return new A.ai8(this)}, +gbp(a){var s,r=this +if(r.b==null){s=r.c +return s.gbp(s)}return A.oT(r.wg(),new A.b7u(r),t.N,t.z)}, +n(a,b,c){var s,r,q=this +if(q.b==null)q.c.n(0,b,c) +else if(q.aq(0,b)){s=q.b +s[b]=c +r=q.a +if(r==null?s!=null:r!==s)r[b]=null}else q.a70().n(0,b,c)}, +aq(a,b){if(this.b==null)return this.c.aq(0,b) +if(typeof b!="string")return!1 +return Object.prototype.hasOwnProperty.call(this.a,b)}, +cK(a,b,c){var s +if(this.aq(0,b))return this.i(0,b) +s=c.$0() +this.n(0,b,s) +return s}, +E(a,b){if(this.b!=null&&!this.aq(0,b))return null +return this.a70().E(0,b)}, +al(a,b){var s,r,q,p,o=this +if(o.b==null)return o.c.al(0,b) +s=o.wg() +for(r=0;r"))}return s}, +p(a,b){return this.a.aq(0,b)}} +A.St.prototype={ +ah(a){var s,r,q=this +q.ald(0) +s=q.a +r=s.a +s.a="" +s=q.c +s.F(0,A.bfQ(r.charCodeAt(0)==0?r:r,q.b)) +s.ah(0)}} +A.b0y.prototype={ +$0(){var s,r +try{s=new TextDecoder("utf-8",{fatal:true}) +return s}catch(r){}return null}, +$S:289} +A.b0x.prototype={ +$0(){var s,r +try{s=new TextDecoder("utf-8",{fatal:false}) +return s}catch(r){}return null}, +$S:289} +A.XQ.prototype={ +pQ(a){return B.PY.cV(a)}, +ha(a,b){var s=B.PX.cV(b) +return s}} +A.aoM.prototype={ +cV(a){var s,r,q,p=A.dJ(0,null,a.length,null,null)-0,o=new Uint8Array(p) +for(s=~this.a,r=0;r>>0!==0){if(!this.a)throw A.c(A.cn("Invalid value in input: "+A.i(q),p,p)) +return this.apB(a,0,n)}}return A.jq(a,0,n)}, +apB(a,b,c){var s,r,q,p,o +for(s=~this.b,r=J.aj(a),q=b,p="";q>>0!==0?65533:o)}return p.charCodeAt(0)==0?p:p}} +A.XR.prototype={ +kf(a){var s=t.NC.b(a)?a:new A.Az(a) +if(this.a)return new A.b52(s.Ky(!1)) +else return new A.bcj(s)}} +A.b52.prototype={ +ah(a){this.a.ah(0)}, +F(a,b){this.fz(b,0,J.b3(b),!1)}, +fz(a,b,c,d){var s,r,q=J.aj(a) +A.dJ(b,c,q.gt(a),null,null) +for(s=this.a,r=b;r>>0!==0){if(r>b)s.fz(a,b,r,!1) +s.F(0,B.a8N) +b=r+1}if(b>>0!==0)throw A.c(A.cn("Source contains non-ASCII bytes.",null,null)) +this.a.F(0,A.jq(b,0,null))}, +fz(a,b,c,d){var s=a.length +A.dJ(b,c,s,null,null) +if(b=0){i=u.U.charCodeAt(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.d_("") +g=p}else g=p +g.a+=B.c.S(a0,q,r) +g.a+=A.el(k) +q=l +continue}}throw A.c(A.cn("Invalid base64 data",a0,r))}if(p!=null){g=p.a+=B.c.S(a0,q,a2) +f=g.length +if(o>=0)A.bpZ(a0,n,a2,o,m,f) +else{e=B.f.aJ(f-1,4)+1 +if(e===1)throw A.c(A.cn(b,a0,a2)) +for(;e<4;){g+="=" +p.a=g;++e}}g=p.a +return B.c.iM(a0,a1,a2,g.charCodeAt(0)==0?g:g)}d=a2-a1 +if(o>=0)A.bpZ(a0,n,a2,o,m,d) +else{e=B.f.aJ(d,4) +if(e===1)throw A.c(A.cn(b,a0,a2)) +if(e>1)a0=B.c.iM(a0,a2,a2,e===2?"==":"=")}return a0}} +A.Yh.prototype={ +cV(a){var s=J.aj(a) +if(s.gak(a))return"" +s=new A.QB(u.U).V1(a,0,s.gt(a),!0) +s.toString +return A.jq(s,0,null)}, +kf(a){var s,r=u.U +if(t.NC.b(a)){s=a.Ky(!1) +return new A.bea(s,new A.QB(r))}return new A.b26(a,new A.b2I(r))}} +A.QB.prototype={ +a93(a,b){return new Uint8Array(b)}, +V1(a,b,c,d){var s,r=this,q=(r.a&3)+(c-b),p=B.f.cE(q,3),o=p*4 +if(d&&q-p*3>0)o+=4 +s=r.a93(0,o) +r.a=A.bOx(r.b,a,b,c,d,s,0,r.a) +if(o>0)return s +return null}} +A.b2I.prototype={ +a93(a,b){var s=this.c +if(s==null||s.length0)throw A.c(A.cn("Invalid length, must be multiple of four",b,c)) +this.a=-1}} +A.aeo.prototype={ +F(a,b){var s,r=b.length +if(r===0)return +s=this.b.Uz(0,b,0,r) +if(s!=null)this.a.F(0,s)}, +ah(a){this.b.wW(0,null,null) +this.a.ah(0)}, +fz(a,b,c,d){var s,r +A.dJ(b,c,a.length,null,null) +if(b===c)return +s=this.b +r=s.Uz(0,a,b,c) +if(r!=null)this.a.F(0,r) +if(d){s.wW(0,a,c) +this.a.ah(0)}}} +A.IP.prototype={ +fz(a,b,c,d){this.F(0,B.M.cT(a,b,c)) +if(d)this.ah(0)}} +A.QM.prototype={ +F(a,b){this.a.F(0,b)}, +ah(a){this.a.ah(0)}} +A.QN.prototype={ +F(a,b){var s,r,q=this,p=q.b,o=q.c,n=J.aj(b) +if(n.gt(b)>p.length-o){p=q.b +s=n.gt(b)+p.length-1 +s|=B.f.dr(s,1) +s|=s>>>2 +s|=s>>>4 +s|=s>>>8 +r=new Uint8Array((((s|s>>>16)>>>0)+1)*2) +p=q.b +B.M.di(r,0,p.length,p) +q.b=r}p=q.b +o=q.c +B.M.di(p,o,o+n.gt(b),b) +q.c=q.c+n.gt(b)}, +ah(a){this.a.$1(B.M.cT(this.b,0,this.c))}} +A.Z0.prototype={} +A.amN.prototype={ +F(a,b){this.b.push(b)}, +ah(a){this.a.$1(this.b)}} +A.n_.prototype={} +A.cm.prototype={ +aJv(a,b){var s=A.l(this) +return new A.RX(this,a,s.h("@").V(s.h("cm.T")).V(b).h("RX<1,2,3>"))}, +kf(a){throw A.c(A.aa("This converter does not support chunked conversions: "+this.l(0)))}} +A.RX.prototype={ +kf(a){return this.a.kf(this.b.kf(a))}} +A.n5.prototype={} +A.CZ.prototype={ +l(a){var s=A.x4(this.a) +return(this.b!=null?"Converting object to an encodable object failed:":"Converting object did not return an encodable object:")+" "+s}} +A.a3c.prototype={ +l(a){return"Cyclic error in JSON stringify"}} +A.a3b.prototype={ +v1(a,b,c){if(c==null)c=null +if(c==null)return A.bfQ(b,this.ga9n().a) +return A.bfQ(b,c)}, +ha(a,b){return this.v1(a,b,null)}, +xe(a,b){if(b==null)b=null +if(b==null)return A.b7y(a,this.gEL().b,null) +return A.b7y(a,b,null)}, +pQ(a){return this.xe(a,null)}, +gEL(){return B.a84}, +ga9n(){return B.yd}} +A.a3e.prototype={ +kf(a){var s +if(a instanceof A.Ve)return new A.ai9(a.d,A.bJh(null),this.b,256) +s=t.NC.b(a)?a:new A.Az(a) +return new A.b7t(null,this.b,s)}} +A.b7t.prototype={ +F(a,b){var s,r=this +if(r.d)throw A.c(A.R("Only one call to add allowed")) +r.d=!0 +s=r.c.a7I() +A.bw_(b,s,r.b,r.a) +s.ah(0)}, +ah(a){}} +A.ai9.prototype={ +ana(a,b,c){this.a.fz(a,b,c,!1)}, +F(a,b){var s=this +if(s.e)throw A.c(A.R("Only one call to add allowed")) +s.e=!0 +A.bPd(b,s.b,s.c,s.d,s.gan9()) +s.a.ah(0)}, +ah(a){if(!this.e){this.e=!0 +this.a.ah(0)}}} +A.a3d.prototype={ +kf(a){return new A.St(this.a,a,new A.d_(""))}} +A.b7z.prototype={ +Y2(a){var s,r,q,p,o,n=this,m=a.length +for(s=0,r=0;r92){if(q>=55296){p=q&64512 +if(p===55296){o=r+1 +o=!(o=0&&(a.charCodeAt(p)&64512)===55296)}else p=!1 +else p=!0 +if(p){if(r>s)n.BM(a,s,r) +s=r+1 +n.fP(92) +n.fP(117) +n.fP(100) +p=q>>>8&15 +n.fP(p<10?48+p:87+p) +p=q>>>4&15 +n.fP(p<10?48+p:87+p) +p=q&15 +n.fP(p<10?48+p:87+p)}}continue}if(q<32){if(r>s)n.BM(a,s,r) +s=r+1 +n.fP(92) +switch(q){case 8:n.fP(98) +break +case 9:n.fP(116) +break +case 10:n.fP(110) +break +case 12:n.fP(102) +break +case 13:n.fP(114) +break +default:n.fP(117) +n.fP(48) +n.fP(48) +p=q>>>4&15 +n.fP(p<10?48+p:87+p) +p=q&15 +n.fP(p<10?48+p:87+p) +break}}else if(q===34||q===92){if(r>s)n.BM(a,s,r) +s=r+1 +n.fP(92) +n.fP(q)}}if(s===0)n.eQ(a) +else if(s>>6|192)>>>0) +s.lM(a&63|128) +return}if(a<=65535){s.lM((a>>>12|224)>>>0) +s.lM(a>>>6&63|128) +s.lM(a&63|128) +return}s.aem(a)}, +aem(a){var s=this +s.lM((a>>>18|240)>>>0) +s.lM(a>>>12&63|128) +s.lM(a>>>6&63|128) +s.lM(a&63|128)}, +lM(a){var s,r=this,q=r.f,p=r.e +if(q===p.length){r.d.$3(p,0,q) +q=r.e=new Uint8Array(r.c) +p=r.f=0}else{s=p +p=q +q=s}r.f=p+1 +q[p]=a}} +A.b7B.prototype={ +GY(a){var s,r,q,p,o,n=this,m=n.x,l=m.length +if(l===1){s=m[0] +for(;a>0;){n.lM(s);--a}return}for(;a>0;){--a +r=n.f +q=r+l +p=n.e +if(q<=p.length){B.M.di(p,r,q,m) +n.f=q}else for(o=0;o255||r<0){if(s>b){q=p.a +q.toString +q.F(0,A.jq(a,b,s))}q=p.a +q.toString +q.F(0,A.jq(B.aa_,0,1)) +b=s+1}}if(b16)this.Qz()}, +eg(a,b){if(this.a.a.length!==0)this.Qz() +this.b.F(0,b)}, +Qz(){var s=this.a,r=s.a +s.a="" +this.b.F(0,r.charCodeAt(0)==0?r:r)}} +A.Hu.prototype={ +ah(a){}, +fz(a,b,c,d){var s,r +if(b!==0||c!==a.length)for(s=this.a,r=b;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.Kb() +return!1}}, +a1m(a,b,c){var s,r,q,p,o,n,m,l=this +if(b!==c&&(a.charCodeAt(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.a7g(p,a.charCodeAt(n)))q=n}else if(o===56320){if(l.b+3>r)break +l.Kb()}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.Ve.prototype={ +ah(a){if(this.a!==0){this.fz("",0,0,!0) +return}this.d.ah(0)}, +fz(a,b,c,d){var s,r,q,p,o,n=this +n.b=0 +s=b===c +if(s&&!d)return +r=n.a +if(r!==0){if(n.a7g(r,!s?a.charCodeAt(b):0))++b +n.a=0}s=n.d +r=n.c +q=c-1 +p=r.length-3 +do{b=n.a1m(a,b,c) +o=d&&b===c +if(b===q&&(a.charCodeAt(b)&64512)===55296){if(d&&n.b1000){s=B.f.cE(b+c,2) +r=q.Q1(a,b,s,!1) +if((q.b&1)!==0)return r +return r+q.Q1(a,s,c,d)}return q.aHY(a,b,c,d)}, +aag(a,b){var s=this.b +this.b=0 +if(s<=32)return +if(this.a)b.a+=A.el(65533) +else throw A.c(A.cn(A.bwR(77),null,null))}, +aHY(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.d_(""),g=b+1,f=a[b] +$label0$0:for(s=l.a;!0;){for(;!0;g=p){r="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFFFFFFFFFFFFFFFGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHHHHHHHHIHHHJEEBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBKCCCCCCCCCCCCDCLONNNMEEEEEEEEEEE".charCodeAt(f)&31 +i=j<=32?f&61694>>>r:(f&63|i<<6)>>>0 +j=" \x000:XECCCCCN:lDb \x000:XECCCCCNvlDb \x000:XECCCCCN:lDb AAAAA\x00\x00\x00\x00\x00AAAAA00000AAAAA:::::AAAAAGG000AAAAA00KKKAAAAAG::::AAAAA:IIIIAAAAA000\x800AAAAA\x00\x00\x00\x00 AAAAA".charCodeAt(j+r) +if(j===0){h.a+=A.el(i) +if(g===c)break $label0$0 +break}else if((j&1)!==0){if(s)switch(j){case 69:case 67:h.a+=A.el(k) +break +case 65:h.a+=A.el(k);--g +break +default:q=h.a+=A.el(k) +h.a=q+A.el(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.el(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.apE.prototype={} +A.aqP.prototype={} +A.iZ.prototype={ +rB(a){var s,r,q=this,p=q.c +if(p===0)return q +s=!q.a +r=q.b +p=A.my(p,r) +return new A.iZ(p===0?!1:s,r,p)}, +aqy(a){var s,r,q,p,o,n,m,l=this,k=l.c +if(k===0)return $.t7() +s=k-a +if(s<=0)return l.a?$.boj():$.t7() +r=l.b +q=new Uint16Array(s) +for(p=a;p>>0!==0)return l.a4(0,$.ars()) +for(k=0;k=0)return q.HV(b,r) +return b.HV(q,!r)}, +a4(a,b){var s,r,q=this,p=q.c +if(p===0)return b.rB(0) +s=b.c +if(s===0)return q +r=q.a +if(r!==b.a)return q.P9(b,r) +if(A.b2v(q.b,p,b.b,s)>=0)return q.HV(b,r) +return b.HV(q,!r)}, +av(a,b){var s,r,q,p,o,n,m,l=this.c,k=b.c +if(l===0||k===0)return $.t7() +s=l+k +r=this.b +q=b.b +p=new Uint16Array(s) +for(o=0;o0?p.rB(0):p}, +aAd(a){var s,r,q,p=this +if(p.c0)q=q.agQ(0,$.bmb.cB()) +return p.a&&q.c>0?q.rB(0):q}, +a11(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=d.c +if(c===$.bvH&&a.c===$.bvJ&&d.b===$.bvG&&a.b===$.bvI)return +s=a.b +r=a.c +q=16-B.f.ga7S(s[r-1]) +if(q>0){p=new Uint16Array(r+5) +o=A.bvF(s,r,q,p) +n=new Uint16Array(c+5) +m=A.bvF(d.b,c,q,n)}else{n=A.bmc(d.b,0,c,c+2) +o=r +p=s +m=c}l=p[o-1] +k=m-o +j=new Uint16Array(m) +i=A.bmd(p,o,k,j) +h=m+1 +if(A.b2v(n,m,j,i)>=0){n[m]=1 +A.aes(n,h,j,i,n)}else n[m]=0 +g=new Uint16Array(o+2) +g[o]=1 +A.aes(g,o+1,p,o,g) +f=m-1 +for(;k>0;){e=A.bOz(l,n,f);--k +A.bvK(e,g,0,n,k,o) +if(n[f]1;){q=$.boi() +if(q.c===0)A.r(B.Si) +p=r.aAd(q).l(0) +s.push(p) +o=p.length +if(o===1)s.push("000") +if(o===2)s.push("00") +if(o===3)s.push("0") +r=r.aqr(q)}s.push(B.f.l(r.b[0])) +if(m)s.push("-") +return new A.da(s,t.Rr).q4(0)}, +$iIC:1, +$icD:1} +A.b2w.prototype={ +$2(a,b){a=a+b&536870911 +a=a+((a&524287)<<10)&536870911 +return a^a>>>6}, +$S:179} +A.b2x.prototype={ +$1(a){a=a+((a&67108863)<<3)&536870911 +a^=a>>>11 +return a+((a&16383)<<15)&536870911}, +$S:96} +A.pM.prototype={} +A.aMg.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.x4(b) +r.a=", "}, +$S:505} +A.dx.prototype={ +F(a,b){return A.bjT(this.a+B.f.cE(b.a,1000),this.b)}, +k(a,b){if(b==null)return!1 +return b instanceof A.dx&&this.a===b.a&&this.b===b.b}, +bO(a,b){return B.f.bO(this.a,b.a)}, +HT(a,b){var s,r=this.a +if(Math.abs(r)<=864e13)s=!1 +else s=!0 +if(s)throw A.c(A.bZ("DateTime is outside valid range: "+r,null)) +A.fu(this.b,"isUtc",t.y)}, +gu(a){var s=this.a +return(s^B.f.dr(s,30))&1073741823}, +NC(){if(this.b)return this +return A.bjT(this.a,!0)}, +l(a){var s=this,r=A.bGD(A.E0(s)),q=A.a0A(A.kG(s)),p=A.a0A(A.yM(s)),o=A.a0A(A.r_(s)),n=A.a0A(A.aNQ(s)),m=A.a0A(A.aNR(s)),l=A.bGE(A.btu(s)),k=r+"-"+q +if(s.b)return k+"-"+p+" "+o+":"+n+":"+m+"."+l+"Z" +else return k+"-"+p+" "+o+":"+n+":"+m+"."+l}, +$icD:1} +A.bj.prototype={ +U(a,b){return new A.bj(this.a+b.a)}, +a4(a,b){return new A.bj(this.a-b.a)}, +av(a,b){return new A.bj(B.e.bg(this.a*b))}, +k(a,b){if(b==null)return!1 +return b instanceof A.bj&&this.a===b.a}, +gu(a){return B.f.gu(this.a)}, +bO(a,b){return B.f.bO(this.a,b.a)}, +l(a){var s,r,q,p,o,n=this.a,m=B.f.cE(n,36e8),l=n%36e8 +if(n<0){m=0-m +n=0-l +s="-"}else{n=l +s=""}r=B.f.cE(n,6e7) +n%=6e7 +q=r<10?"0":"" +p=B.f.cE(n,1e6) +o=p<10?"0":"" +return s+m+":"+q+r+":"+o+p+"."+B.c.eP(B.f.l(n%1e6),6,"0")}, +$icD:1} +A.b51.prototype={ +l(a){return this.J()}} +A.d7.prototype={ +gke(){return A.aJ(this.$thrownJsError)}} +A.wf.prototype={ +l(a){var s=this.a +if(s!=null)return"Assertion failed: "+A.x4(s) +return"Assertion failed"}, +gFQ(a){return this.a}} +A.rm.prototype={} +A.l3.prototype={ +gQs(){return"Invalid argument"+(!this.a?"(s)":"")}, +gQr(){return""}, +l(a){var s=this,r=s.c,q=r==null?"":" ("+r+")",p=s.d,o=p==null?"":": "+A.i(p),n=s.gQs()+q+o +if(!s.a)return n +return n+s.gQr()+": "+A.x4(s.gVU())}, +gVU(){return this.b}} +A.E7.prototype={ +gVU(){return this.b}, +gQs(){return"RangeError"}, +gQr(){var s,r=this.e,q=this.f +if(r==null)s=q!=null?": Not less than or equal to "+A.i(q):"" +else if(q==null)s=": Not greater than or equal to "+A.i(r) +else if(q>r)s=": Not in inclusive range "+A.i(r)+".."+A.i(q) +else s=qe.length +else s=!1 +if(s)f=null +if(f==null){if(e.length>78)e=B.c.S(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.c.S(e,k,l)+i+"\n"+B.c.av(" ",f-k+j.length)+"^\n"}else return f!=null?g+(" (at offset "+A.i(f)+")"):g}, +$icv:1, +gFQ(a){return this.a}, +gfS(a){return this.b}, +gc5(a){return this.c}} +A.a33.prototype={ +gke(){return null}, +l(a){return"IntegerDivisionByZeroException"}, +$id7:1, +$icv:1} +A.z.prototype={ +kl(a,b){return A.dF(this,A.cq(this).h("z.E"),b)}, +Vm(a,b){var s=this,r=A.cq(s) +if(r.h("ao").b(s))return A.brG(s,b,r.h("z.E")) +return new A.qt(s,b,r.h("qt"))}, +ik(a,b,c){return A.oT(this,b,A.cq(this).h("z.E"),c)}, +jw(a,b){return new A.ba(this,b,A.cq(this).h("ba"))}, +NQ(a,b){return new A.fb(this,b.h("fb<0>"))}, +p(a,b){var s +for(s=this.gam(this);s.v();)if(J.j(s.gG(s),b))return!0 +return!1}, +al(a,b){var s +for(s=this.gam(this);s.v();)b.$1(s.gG(s))}, +lF(a,b){var s,r=this.gam(this) +if(!r.v())throw A.c(A.ch()) +s=r.gG(r) +for(;r.v();)s=b.$2(s,r.gG(r)) +return s}, +F7(a,b,c){var s,r +for(s=this.gam(this),r=b;s.v();)r=c.$2(r,s.gG(s)) +return r}, +p6(a,b,c){return this.F7(a,b,c,t.z)}, +ck(a,b){var s,r,q=this.gam(this) +if(!q.v())return"" +s=J.cU(q.gG(q)) +if(!q.v())return s +if(b.length===0){r=s +do r+=J.cU(q.gG(q)) +while(q.v())}else{r=s +do r=r+b+J.cU(q.gG(q)) +while(q.v())}return r.charCodeAt(0)==0?r:r}, +q4(a){return this.ck(a,"")}, +fa(a,b){var s +for(s=this.gam(this);s.v();)if(b.$1(s.gG(s)))return!0 +return!1}, +hn(a,b){return A.a8(this,b,A.cq(this).h("z.E"))}, +fO(a){return this.hn(a,!0)}, +kI(a){return A.iJ(this,A.cq(this).h("z.E"))}, +gt(a){var s,r=this.gam(this) +for(s=0;r.v();)++s +return s}, +gak(a){return!this.gam(this).v()}, +gd2(a){return!this.gak(this)}, +qa(a,b){return A.aYN(this,b,A.cq(this).h("z.E"))}, +lX(a,b){return A.blA(this,b,A.cq(this).h("z.E"))}, +agX(a,b){return new A.zs(this,b,A.cq(this).h("zs"))}, +gO(a){var s=this.gam(this) +if(!s.v())throw A.c(A.ch()) +return s.gG(s)}, +gX(a){var s,r=this.gam(this) +if(!r.v())throw A.c(A.ch()) +do s=r.gG(r) +while(r.v()) +return s}, +gaV(a){var s,r=this.gam(this) +if(!r.v())throw A.c(A.ch()) +s=r.gG(r) +if(r.v())throw A.c(A.na()) +return s}, +xp(a,b,c){var s,r +for(s=this.gam(this);s.v();){r=s.gG(s) +if(b.$1(r))return r}throw A.c(A.ch())}, +F5(a,b){return this.xp(a,b,null)}, +q5(a,b,c){var s,r,q=this.gam(this) +do{if(!q.v()){if(c!=null)return c.$0() +throw A.c(A.ch())}s=q.gG(q)}while(!b.$1(s)) +for(;q.v();){r=q.gG(q) +if(b.$1(r))s=r}return s}, +aLW(a,b){return this.q5(a,b,null)}, +Cl(a,b,c){var s,r=this.gam(this) +do{if(!r.v())throw A.c(A.ch()) +s=r.gG(r)}while(!b.$1(s)) +for(;r.v();)if(b.$1(r.gG(r)))throw A.c(A.na()) +return s}, +pw(a,b){return this.Cl(a,b,null)}, +cn(a,b){var s,r +A.fN(b,"index") +s=this.gam(this) +for(r=b;s.v();){if(r===0)return s.gG(s);--r}throw A.c(A.f8(b,b-r,this,null,"index"))}, +l(a){return A.bsk(this,"(",")")}, +agV(a){return this.gaV(this).$0()}} +A.RY.prototype={ +cn(a,b){A.bkG(b,this.a,this,null,null) +return this.b.$1(b)}, +gt(a){return this.a}} +A.aS.prototype={ +l(a){return"MapEntry("+A.i(this.a)+": "+A.i(this.b)+")"}} +A.aE.prototype={ +gu(a){return A.C.prototype.gu.call(this,this)}, +l(a){return"null"}} +A.C.prototype={$iC:1, +k(a,b){return this===b}, +gu(a){return A.cS(this)}, +l(a){return"Instance of '"+A.aNT(this)+"'"}, +C(a,b){throw A.c(A.bt3(this,b))}, +gfD(a){return A.p(this)}, +toString(){return this.l(this)}, +$0(){return this.C(this,A.E("$0","$0",0,[],[],0))}, +$1(a){return this.C(this,A.E("$1","$1",0,[a],[],0))}, +$2(a,b){return this.C(this,A.E("$2","$2",0,[a,b],[],0))}, +$1$2$onError(a,b,c){return this.C(this,A.E("$1$2$onError","$1$2$onError",0,[a,b,c],["onError"],1))}, +$3(a,b,c){return this.C(this,A.E("$3","$3",0,[a,b,c],[],0))}, +$4(a,b,c,d){return this.C(this,A.E("$4","$4",0,[a,b,c,d],[],0))}, +$1$1(a,b){return this.C(this,A.E("$1$1","$1$1",0,[a,b],[],1))}, +$1$hostElementAttributes(a){return this.C(this,A.E("$1$hostElementAttributes","$1$hostElementAttributes",0,[a],["hostElementAttributes"],0))}, +$1$highContrast(a){return this.C(this,A.E("$1$highContrast","$1$highContrast",0,[a],["highContrast"],0))}, +$1$accessibilityFeatures(a){return this.C(this,A.E("$1$accessibilityFeatures","$1$accessibilityFeatures",0,[a],["accessibilityFeatures"],0))}, +$3$replace$state(a,b,c){return this.C(this,A.E("$3$replace$state","$3$replace$state",0,[a,b,c],["replace","state"],0))}, +$2$path(a,b){return this.C(this,A.E("$2$path","$2$path",0,[a,b],["path"],0))}, +$1$growable(a){return this.C(this,A.E("$1$growable","$1$growable",0,[a],["growable"],0))}, +$2$params(a,b){return this.C(this,A.E("$2$params","$2$params",0,[a,b],["params"],0))}, +$3$onAction$onChange(a,b,c){return this.C(this,A.E("$3$onAction$onChange","$3$onAction$onChange",0,[a,b,c],["onAction","onChange"],0))}, +$1$0(a){return this.C(this,A.E("$1$0","$1$0",0,[a],[],1))}, +$1$locales(a){return this.C(this,A.E("$1$locales","$1$locales",0,[a],["locales"],0))}, +$1$textScaleFactor(a){return this.C(this,A.E("$1$textScaleFactor","$1$textScaleFactor",0,[a],["textScaleFactor"],0))}, +$1$platformBrightness(a){return this.C(this,A.E("$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.C(this,A.E("$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.C(this,A.E("$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.C(this,A.E("$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.C(this,A.E("$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.C(this,A.E("$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.C(this,A.E("$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$accessibleNavigation(a){return this.C(this,A.E("$1$accessibleNavigation","$1$accessibleNavigation",0,[a],["accessibleNavigation"],0))}, +$1$semanticsEnabled(a){return this.C(this,A.E("$1$semanticsEnabled","$1$semanticsEnabled",0,[a],["semanticsEnabled"],0))}, +$4$cancelOnError$onDone$onError(a,b,c,d){return this.C(this,A.E("$4$cancelOnError$onDone$onError","$4$cancelOnError$onDone$onError",0,[a,b,c,d],["cancelOnError","onDone","onError"],0))}, +$1$style(a){return this.C(this,A.E("$1$style","$1$style",0,[a],["style"],0))}, +$2$priority$scheduler(a,b){return this.C(this,A.E("$2$priority$scheduler","$2$priority$scheduler",0,[a,b],["priority","scheduler"],0))}, +$2$position(a,b){return this.C(this,A.E("$2$position","$2$position",0,[a,b],["position"],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.C(this,A.E("$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.C(this,A.E("$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$tabBarTheme(a){return this.C(this,A.E("$1$tabBarTheme","$1$tabBarTheme",0,[a],["tabBarTheme"],0))}, +$2$aspect(a,b){return this.C(this,A.E("$2$aspect","$2$aspect",0,[a,b],["aspect"],0))}, +$8$error$errorContainer$primary$primaryContainer$secondary$secondaryContainer$tertiary$tertiaryContainer(a,b,c,d,e,f,g,h){return this.C(this,A.E("$8$error$errorContainer$primary$primaryContainer$secondary$secondaryContainer$tertiary$tertiaryContainer","$8$error$errorContainer$primary$primaryContainer$secondary$secondaryContainer$tertiary$tertiaryContainer",0,[a,b,c,d,e,f,g,h],["error","errorContainer","primary","primaryContainer","secondary","secondaryContainer","tertiary","tertiaryContainer"],0))}, +$4$secondary$secondaryContainer$tertiary$tertiaryContainer(a,b,c,d){return this.C(this,A.E("$4$secondary$secondaryContainer$tertiary$tertiaryContainer","$4$secondary$secondaryContainer$tertiary$tertiaryContainer",0,[a,b,c,d],["secondary","secondaryContainer","tertiary","tertiaryContainer"],0))}, +$1$brightness(a){return this.C(this,A.E("$1$brightness","$1$brightness",0,[a],["brightness"],0))}, +$3$bodyColor$decorationColor$displayColor(a,b,c){return this.C(this,A.E("$3$bodyColor$decorationColor$displayColor","$3$bodyColor$decorationColor$displayColor",0,[a,b,c],["bodyColor","decorationColor","displayColor"],0))}, +$25$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontVariations$fontWeight$foreground$height$leadingDistribution$letterSpacing$locale$overflow$package$shadows$textBaseline$wordSpacing(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 this.C(this,A.E("$25$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontVariations$fontWeight$foreground$height$leadingDistribution$letterSpacing$locale$overflow$package$shadows$textBaseline$wordSpacing","$25$background$backgroundColor$color$debugLabel$decoration$decorationColor$decorationStyle$decorationThickness$fontFamily$fontFamilyFallback$fontFeatures$fontSize$fontStyle$fontVariations$fontWeight$foreground$height$leadingDistribution$letterSpacing$locale$overflow$package$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,a2,a3,a4,a5],["background","backgroundColor","color","debugLabel","decoration","decorationColor","decorationStyle","decorationThickness","fontFamily","fontFamilyFallback","fontFeatures","fontSize","fontStyle","fontVariations","fontWeight","foreground","height","leadingDistribution","letterSpacing","locale","overflow","package","shadows","textBaseline","wordSpacing"],0))}, +$1$matches(a){return this.C(this,A.E("$1$matches","$1$matches",0,[a],["matches"],0))}, +$1$path(a){return this.C(this,A.E("$1$path","$1$path",0,[a],["path"],0))}, +$3$sigmaX$sigmaY$tileMode(a,b,c){return this.C(this,A.E("$3$sigmaX$sigmaY$tileMode","$3$sigmaX$sigmaY$tileMode",0,[a,b,c],["sigmaX","sigmaY","tileMode"],0))}, +$2$after(a,b){return this.C(this,A.E("$2$after","$2$after",0,[a,b],["after"],0))}, +$1$range(a){return this.C(this,A.E("$1$range","$1$range",0,[a],["range"],0))}, +$1$paragraphWidth(a){return this.C(this,A.E("$1$paragraphWidth","$1$paragraphWidth",0,[a],["paragraphWidth"],0))}, +$9$fontFamily$fontFamilyFallback$fontSize$fontStyle$fontWeight$forceStrutHeight$height$leading$leadingDistribution(a,b,c,d,e,f,g,h,i){return this.C(this,A.E("$9$fontFamily$fontFamilyFallback$fontSize$fontStyle$fontWeight$forceStrutHeight$height$leading$leadingDistribution","$9$fontFamily$fontFamilyFallback$fontSize$fontStyle$fontWeight$forceStrutHeight$height$leading$leadingDistribution",0,[a,b,c,d,e,f,g,h,i],["fontFamily","fontFamilyFallback","fontSize","fontStyle","fontWeight","forceStrutHeight","height","leading","leadingDistribution"],0))}, +$4$boxHeightStyle$boxWidthStyle(a,b,c,d){return this.C(this,A.E("$4$boxHeightStyle$boxWidthStyle","$4$boxHeightStyle$boxWidthStyle",0,[a,b,c,d],["boxHeightStyle","boxWidthStyle"],0))}, +$2$end$start(a,b){return this.C(this,A.E("$2$end$start","$2$end$start",0,[a,b],["end","start"],0))}, +$3$dimensions$textScaler(a,b,c){return this.C(this,A.E("$3$dimensions$textScaler","$3$dimensions$textScaler",0,[a,b,c],["dimensions","textScaler"],0))}, +$3$boxHeightStyle(a,b,c){return this.C(this,A.E("$3$boxHeightStyle","$3$boxHeightStyle",0,[a,b,c],["boxHeightStyle"],0))}, +$3$includePlaceholders$includeSemanticsLabels(a,b,c){return this.C(this,A.E("$3$includePlaceholders$includeSemanticsLabels","$3$includePlaceholders$includeSemanticsLabels",0,[a,b,c],["includePlaceholders","includeSemanticsLabels"],0))}, +$9$category$categoryManga$categoryMangaChapter$chapter$globalSearch$helpText$manga$source$sourceSearch(a,b,c,d,e,f,g,h,i){return this.C(this,A.E("$9$category$categoryManga$categoryMangaChapter$chapter$globalSearch$helpText$manga$source$sourceSearch","$9$category$categoryManga$categoryMangaChapter$chapter$globalSearch$helpText$manga$source$sourceSearch",0,[a,b,c,d,e,f,g,h,i],["category","categoryManga","categoryMangaChapter","chapter","globalSearch","helpText","manga","source","sourceSearch"],0))}, +$3$color$letterSpacing$wordSpacing(a,b,c){return this.C(this,A.E("$3$color$letterSpacing$wordSpacing","$3$color$letterSpacing$wordSpacing",0,[a,b,c],["color","letterSpacing","wordSpacing"],0))}, +$1$color(a){return this.C(this,A.E("$1$color","$1$color",0,[a],["color"],0))}, +$2$color$fontSize(a,b){return this.C(this,A.E("$2$color$fontSize","$2$color$fontSize",0,[a,b],["color","fontSize"],0))}, +$2$padding$viewPadding(a,b){return this.C(this,A.E("$2$padding$viewPadding","$2$padding$viewPadding",0,[a,b],["padding","viewPadding"],0))}, +$8$color$fill$grade$opacity$opticalSize$shadows$size$weight(a,b,c,d,e,f,g,h){return this.C(this,A.E("$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))}, +$5(a,b,c,d,e){return this.C(this,A.E("$5","$5",0,[a,b,c,d,e],[],0))}, +$1$tailVisitor(a){return this.C(this,A.E("$1$tailVisitor","$1$tailVisitor",0,[a],["tailVisitor"],0))}, +$2$withDrive(a,b){return this.C(this,A.E("$2$withDrive","$2$withDrive",0,[a,b],["withDrive"],0))}, +$2$data$error(a,b){return this.C(this,A.E("$2$data$error","$2$data$error",0,[a,b],["data","error"],0))}, +$2$elementVisitor$notifierVisitor(a,b){return this.C(this,A.E("$2$elementVisitor$notifierVisitor","$2$elementVisitor$notifierVisitor",0,[a,b],["elementVisitor","notifierVisitor"],0))}, +$1$didChangeDependency(a){return this.C(this,A.E("$1$didChangeDependency","$1$didChangeDependency",0,[a],["didChangeDependency"],0))}, +$1$queryParameters(a){return this.C(this,A.E("$1$queryParameters","$1$queryParameters",0,[a],["queryParameters"],0))}, +$2$terse(a,b){return this.C(this,A.E("$2$terse","$2$terse",0,[a,b],["terse"],0))}, +$4$onDependencyMayHaveChanged$onError(a,b,c,d){return this.C(this,A.E("$4$onDependencyMayHaveChanged$onError","$4$onDependencyMayHaveChanged$onError",0,[a,b,c,d],["onDependencyMayHaveChanged","onError"],0))}, +$5$fireImmediately$onDependencyMayHaveChanged$onError(a,b,c,d,e){return this.C(this,A.E("$5$fireImmediately$onDependencyMayHaveChanged$onError","$5$fireImmediately$onDependencyMayHaveChanged$onError",0,[a,b,c,d,e],["fireImmediately","onDependencyMayHaveChanged","onError"],0))}, +$1$3$listener$onError(a,b,c,d){return this.C(this,A.E("$1$3$listener$onError","$1$3$listener$onError",0,[a,b,c,d],["listener","onError"],1))}, +$2$initial(a,b){return this.C(this,A.E("$2$initial","$2$initial",0,[a,b],["initial"],0))}, +$3$fromJson$toJson(a,b,c){return this.C(this,A.E("$3$fromJson$toJson","$3$fromJson$toJson",0,[a,b,c],["fromJson","toJson"],0))}, +$2$origin$override(a,b){return this.C(this,A.E("$2$origin$override","$2$origin$override",0,[a,b],["origin","override"],0))}, +$2$query(a,b){return this.C(this,A.E("$2$query","$2$query",0,[a,b],["query"],0))}, +$2$isRefresh(a,b){return this.C(this,A.E("$2$isRefresh","$2$isRefresh",0,[a,b],["isRefresh"],0))}, +$4$data$done$error$last(a,b,c,d){return this.C(this,A.E("$4$data$done$error$last","$4$data$done$error$last",0,[a,b,c,d],["data","done","error","last"],0))}, +$3$data$error$loading(a,b,c){return this.C(this,A.E("$3$data$error$loading","$3$data$error$loading",0,[a,b,c],["data","error","loading"],0))}, +$1$cancelToken(a){return this.C(this,A.E("$1$cancelToken","$1$cancelToken",0,[a],["cancelToken"],0))}, +$2$3$cancelToken$decoder(a,b,c,d,e){return this.C(this,A.E("$2$3$cancelToken$decoder","$2$3$cancelToken$decoder",0,[a,b,c,d,e],["cancelToken","decoder"],2))}, +$6$addPort$authType$baseUrl$credentials$hiveCacheStore$port(a,b,c,d,e,f){return this.C(this,A.E("$6$addPort$authType$baseUrl$credentials$hiveCacheStore$port","$6$addPort$authType$baseUrl$credentials$hiveCacheStore$port",0,[a,b,c,d,e,f],["addPort","authType","baseUrl","credentials","hiveCacheStore","port"],0))}, +$1$6$cancelToken$data$onReceiveProgress$options$queryParameters(a,b,c,d,e,f,g){return this.C(this,A.E("$1$6$cancelToken$data$onReceiveProgress$options$queryParameters","$1$6$cancelToken$data$onReceiveProgress$options$queryParameters",0,[a,b,c,d,e,f,g],["cancelToken","data","onReceiveProgress","options","queryParameters"],1))}, +$2$writeTypeId(a,b){return this.C(this,A.E("$2$writeTypeId","$2$writeTypeId",0,[a,b],["writeTypeId"],0))}, +$2$notify(a,b){return this.C(this,A.E("$2$notify","$2$notify",0,[a,b],["notify"],0))}, +$3$onDone$onError(a,b,c){return this.C(this,A.E("$3$onDone$onError","$3$onDone$onError",0,[a,b,c],["onDone","onError"],0))}, +$2$2(a,b,c,d){return this.C(this,A.E("$2$2","$2$2",0,[a,b,c,d],[],2))}, +$3$error$options(a,b,c){return this.C(this,A.E("$3$error$options","$3$error$options",0,[a,b,c],["error","options"],0))}, +$2$lazy(a,b){return this.C(this,A.E("$2$lazy","$2$lazy",0,[a,b],["lazy"],0))}, +$2$content$headers(a,b){return this.C(this,A.E("$2$content$headers","$2$content$headers",0,[a,b],["content","headers"],0))}, +$1$end(a){return this.C(this,A.E("$1$end","$1$end",0,[a],["end"],0))}, +$1$text(a){return this.C(this,A.E("$1$text","$1$text",0,[a],["text"],0))}, +$1$line(a){return this.C(this,A.E("$1$line","$1$line",0,[a],["line"],0))}, +$2$color(a,b){return this.C(this,A.E("$2$color","$2$color",0,[a,b],["color"],0))}, +$3$options$response(a,b,c){return this.C(this,A.E("$3$options$response","$3$options$response",0,[a,b,c],["options","response"],0))}, +$2$options(a,b){return this.C(this,A.E("$2$options","$2$options",0,[a,b],["options"],0))}, +$1$maxStale(a){return this.C(this,A.E("$1$maxStale","$1$maxStale",0,[a],["maxStale"],0))}, +$2$cancelToken$mangaId(a,b){return this.C(this,A.E("$2$cancelToken$mangaId","$2$cancelToken$mangaId",0,[a,b],["cancelToken","mangaId"],0))}, +$2$1(a,b,c){return this.C(this,A.E("$2$1","$2$1",0,[a,b,c],[],2))}, +$3$category$query(a,b,c){return this.C(this,A.E("$3$category$query","$3$category$query",0,[a,b,c],["category","query"],0))}, +$2$cancelToken$categoryId(a,b){return this.C(this,A.E("$2$cancelToken$categoryId","$2$cancelToken$categoryId",0,[a,b],["cancelToken","categoryId"],0))}, +$2$2$decoder(a,b,c,d){return this.C(this,A.E("$2$2$decoder","$2$2$decoder",0,[a,b,c,d],["decoder"],2))}, +$3$cancelToken$mangaId$onlineFetch(a,b,c){return this.C(this,A.E("$3$cancelToken$mangaId$onlineFetch","$3$cancelToken$mangaId$onlineFetch",0,[a,b,c],["cancelToken","mangaId","onlineFetch"],0))}, +$3$textDirection(a,b,c){return this.C(this,A.E("$3$textDirection","$3$textDirection",0,[a,b,c],["textDirection"],0))}, +$2$textDirection(a,b){return this.C(this,A.E("$2$textDirection","$2$textDirection",0,[a,b],["textDirection"],0))}, +$2$cause$from(a,b){return this.C(this,A.E("$2$cause$from","$2$cause$from",0,[a,b],["cause","from"],0))}, +$1$selection(a){return this.C(this,A.E("$1$selection","$1$selection",0,[a],["selection"],0))}, +$1$rect(a){return this.C(this,A.E("$1$rect","$1$rect",0,[a],["rect"],0))}, +$4$curve$descendant$duration$rect(a,b,c,d){return this.C(this,A.E("$4$curve$descendant$duration$rect","$4$curve$descendant$duration$rect",0,[a,b,c,d],["curve","descendant","duration","rect"],0))}, +$3$rect(a,b,c){return this.C(this,A.E("$3$rect","$3$rect",0,[a,b,c],["rect"],0))}, +$3$context$style$withComposing(a,b,c){return this.C(this,A.E("$3$context$style$withComposing","$3$context$style$withComposing",0,[a,b,c],["context","style","withComposing"],0))}, +$5$baseline$baselineOffset(a,b,c,d,e){return this.C(this,A.E("$5$baseline$baselineOffset","$5$baseline$baselineOffset",0,[a,b,c,d,e],["baseline","baselineOffset"],0))}, +$1$bottom(a){return this.C(this,A.E("$1$bottom","$1$bottom",0,[a],["bottom"],0))}, +$3$curve$duration$rect(a,b,c){return this.C(this,A.E("$3$curve$duration$rect","$3$curve$duration$rect",0,[a,b,c],["curve","duration","rect"],0))}, +$1$composing(a){return this.C(this,A.E("$1$composing","$1$composing",0,[a],["composing"],0))}, +$2$ignoreCurrentFocus(a,b){return this.C(this,A.E("$2$ignoreCurrentFocus","$2$ignoreCurrentFocus",0,[a,b],["ignoreCurrentFocus"],0))}, +$2$alignmentPolicy(a,b){return this.C(this,A.E("$2$alignmentPolicy","$2$alignmentPolicy",0,[a,b],["alignmentPolicy"],0))}, +$6$alignment$alignmentPolicy$curve$duration$targetRenderObject(a,b,c,d,e,f){return this.C(this,A.E("$6$alignment$alignmentPolicy$curve$duration$targetRenderObject","$6$alignment$alignmentPolicy$curve$duration$targetRenderObject",0,[a,b,c,d,e,f],["alignment","alignmentPolicy","curve","duration","targetRenderObject"],0))}, +$1$affinity(a){return this.C(this,A.E("$1$affinity","$1$affinity",0,[a],["affinity"],0))}, +$1$findFirstFocus(a){return this.C(this,A.E("$1$findFirstFocus","$1$findFirstFocus",0,[a],["findFirstFocus"],0))}, +$3$code$details$message(a,b,c){return this.C(this,A.E("$3$code$details$message","$3$code$details$message",0,[a,b,c],["code","details","message"],0))}, +$2$code$message(a,b){return this.C(this,A.E("$2$code$message","$2$code$message",0,[a,b],["code","message"],0))}, +$3$debugReport(a,b,c){return this.C(this,A.E("$3$debugReport","$3$debugReport",0,[a,b,c],["debugReport"],0))}, +$3$cancel$down$reason(a,b,c){return this.C(this,A.E("$3$cancel$down$reason","$3$cancel$down$reason",0,[a,b,c],["cancel","down","reason"],0))}, +$2$down$up(a,b){return this.C(this,A.E("$2$down$up","$2$down$up",0,[a,b],["down","up"],0))}, +$1$down(a){return this.C(this,A.E("$1$down","$1$down",0,[a],["down"],0))}, +$1$includeChildren(a){return this.C(this,A.E("$1$includeChildren","$1$includeChildren",0,[a],["includeChildren"],0))}, +$2$composing$selection(a,b){return this.C(this,A.E("$2$composing$selection","$2$composing$selection",0,[a,b],["composing","selection"],0))}, +$3$composing$selection$text(a,b,c){return this.C(this,A.E("$3$composing$selection$text","$3$composing$selection$text",0,[a,b,c],["composing","selection","text"],0))}, +$2$primaryTextTheme$textTheme(a,b){return this.C(this,A.E("$2$primaryTextTheme$textTheme","$2$primaryTextTheme$textTheme",0,[a,b],["primaryTextTheme","textTheme"],0))}, +$1$textScaler(a){return this.C(this,A.E("$1$textScaler","$1$textScaler",0,[a],["textScaler"],0))}, +$2$reversed(a,b){return this.C(this,A.E("$2$reversed","$2$reversed",0,[a,b],["reversed"],0))}, +$2$viewInsets$viewPadding(a,b){return this.C(this,A.E("$2$viewInsets$viewPadding","$2$viewInsets$viewPadding",0,[a,b],["viewInsets","viewPadding"],0))}, +$8$enableDomStorage$enableJavaScript$headers$universalLinksOnly$useSafariVC$useWebView$webOnlyWindowName(a,b,c,d,e,f,g,h){return this.C(this,A.E("$8$enableDomStorage$enableJavaScript$headers$universalLinksOnly$useSafariVC$useWebView$webOnlyWindowName","$8$enableDomStorage$enableJavaScript$headers$universalLinksOnly$useSafariVC$useWebView$webOnlyWindowName",0,[a,b,c,d,e,f,g,h],["enableDomStorage","enableJavaScript","headers","universalLinksOnly","useSafariVC","useWebView","webOnlyWindowName"],0))}, +$2$2$cancelToken(a,b,c,d){return this.C(this,A.E("$2$2$cancelToken","$2$2$cancelToken",0,[a,b,c,d],["cancelToken"],2))}, +$2$bottom$top(a,b){return this.C(this,A.E("$2$bottom$top","$2$bottom$top",0,[a,b],["bottom","top"],0))}, +$2$left$right(a,b){return this.C(this,A.E("$2$left$right","$2$left$right",0,[a,b],["left","right"],0))}, +$1$padding(a){return this.C(this,A.E("$1$padding","$1$padding",0,[a],["padding"],0))}, +$2$hitTest$paintTransform(a,b){return this.C(this,A.E("$2$hitTest$paintTransform","$2$hitTest$paintTransform",0,[a,b],["hitTest","paintTransform"],0))}, +$3$crossAxisPosition$mainAxisPosition(a,b,c){return this.C(this,A.E("$3$crossAxisPosition$mainAxisPosition","$3$crossAxisPosition$mainAxisPosition",0,[a,b,c],["crossAxisPosition","mainAxisPosition"],0))}, +$2$hitTest$paintOffset(a,b){return this.C(this,A.E("$2$hitTest$paintOffset","$2$hitTest$paintOffset",0,[a,b],["hitTest","paintOffset"],0))}, +$1$mangaId(a){return this.C(this,A.E("$1$mangaId","$1$mangaId",0,[a],["mangaId"],0))}, +$1$5$cancelToken$data$options$queryParameters(a,b,c,d,e,f){return this.C(this,A.E("$1$5$cancelToken$data$options$queryParameters","$1$5$cancelToken$data$options$queryParameters",0,[a,b,c,d,e,f],["cancelToken","data","options","queryParameters"],1))}, +$2$3$cancelToken$data(a,b,c,d,e){return this.C(this,A.E("$2$3$cancelToken$data","$2$3$cancelToken$data",0,[a,b,c,d,e],["cancelToken","data"],2))}, +$1$categoryId(a){return this.C(this,A.E("$1$categoryId","$1$categoryId",0,[a],["categoryId"],0))}, +$3$chapterIndex$mangaId$patch(a,b,c){return this.C(this,A.E("$3$chapterIndex$mangaId$patch","$3$chapterIndex$mangaId$patch",0,[a,b,c],["chapterIndex","mangaId","patch"],0))}, +$2$2$data(a,b,c,d){return this.C(this,A.E("$2$2$data","$2$2$data",0,[a,b,c,d],["data"],2))}, +$1$batch(a){return this.C(this,A.E("$1$batch","$1$batch",0,[a],["batch"],0))}, +$3$onError(a,b,c){return this.C(this,A.E("$3$onError","$3$onError",0,[a,b,c],["onError"],0))}, +$3$isAdd(a,b,c){return this.C(this,A.E("$3$isAdd","$3$isAdd",0,[a,b,c],["isAdd"],0))}, +$3$isRemove(a,b,c){return this.C(this,A.E("$3$isRemove","$3$isRemove",0,[a,b,c],["isRemove"],0))}, +$3$isError(a,b,c){return this.C(this,A.E("$3$isError","$3$isError",0,[a,b,c],["isError"],0))}, +$1$onCancel(a){return this.C(this,A.E("$1$onCancel","$1$onCancel",0,[a],["onCancel"],0))}, +$2$authType$credentials(a,b){return this.C(this,A.E("$2$authType$credentials","$2$authType$credentials",0,[a,b],["authType","credentials"],0))}, +$2$onDone(a,b){return this.C(this,A.E("$2$onDone","$2$onDone",0,[a,b],["onDone"],0))}, +$1$chapter(a){return this.C(this,A.E("$1$chapter","$1$chapter",0,[a],["chapter"],0))}, +$2$chapterIndex$mangaId(a,b){return this.C(this,A.E("$2$chapterIndex$mangaId","$2$chapterIndex$mangaId",0,[a,b],["chapterIndex","mangaId"],0))}, +$2$chapter$manga(a,b){return this.C(this,A.E("$2$chapter$manga","$2$chapter$manga",0,[a,b],["chapter","manga"],0))}, +$2$allowedExtensions$type(a,b){return this.C(this,A.E("$2$allowedExtensions$type","$2$allowedExtensions$type",0,[a,b],["allowedExtensions","type"],0))}, +$2$file(a,b){return this.C(this,A.E("$2$file","$2$file",0,[a,b],["file"],0))}, +$5$fileFilter$initialDirectory$multipleFiles$pickDirectory(a,b,c,d,e){return this.C(this,A.E("$5$fileFilter$initialDirectory$multipleFiles$pickDirectory","$5$fileFilter$initialDirectory$multipleFiles$pickDirectory",0,[a,b,c,d,e],["fileFilter","initialDirectory","multipleFiles","pickDirectory"],0))}, +$1$2(a,b,c){return this.C(this,A.E("$1$2","$1$2",0,[a,b,c],[],1))}, +$1$scrollbars(a){return this.C(this,A.E("$1$scrollbars","$1$scrollbars",0,[a],["scrollbars"],0))}, +$1$bottomSheetTheme(a){return this.C(this,A.E("$1$bottomSheetTheme","$1$bottomSheetTheme",0,[a],["bottomSheetTheme"],0))}, +$3$key$mangaId$value(a,b,c){return this.C(this,A.E("$3$key$mangaId$value","$3$key$mangaId$value",0,[a,b,c],["key","mangaId","value"],0))}, +$3$cancelOnError$onDone(a,b,c){return this.C(this,A.E("$3$cancelOnError$onDone","$3$cancelOnError$onDone",0,[a,b,c],["cancelOnError","onDone"],0))}, +$1$fontWeight(a){return this.C(this,A.E("$1$fontWeight","$1$fontWeight",0,[a],["fontWeight"],0))}, +$2$onCancel$onListen(a,b){return this.C(this,A.E("$2$onCancel$onListen","$2$onCancel$onListen",0,[a,b],["onCancel","onListen"],0))}, +$1$url(a){return this.C(this,A.E("$1$url","$1$url",0,[a],["url"],0))}, +$1$recursive(a){return this.C(this,A.E("$1$recursive","$1$recursive",0,[a],["recursive"],0))}, +$3$eTag$relativePath$validTill(a,b,c){return this.C(this,A.E("$3$eTag$relativePath$validTill","$3$eTag$relativePath$validTill",0,[a,b,c],["eTag","relativePath","validTill"],0))}, +$1$length(a){return this.C(this,A.E("$1$length","$1$length",0,[a],["length"],0))}, +$2$createChild$followTailLink(a,b){return this.C(this,A.E("$2$createChild$followTailLink","$2$createChild$followTailLink",0,[a,b],["createChild","followTailLink"],0))}, +$2$withMicrotask(a,b){return this.C(this,A.E("$2$withMicrotask","$2$withMicrotask",0,[a,b],["withMicrotask"],0))}, +$2$orElse(a,b){return this.C(this,A.E("$2$orElse","$2$orElse",0,[a,b],["orElse"],0))}, +$4$pageNum$query$sourceId$sourceType(a,b,c,d){return this.C(this,A.E("$4$pageNum$query$sourceId$sourceType","$4$pageNum$query$sourceId$sourceType",0,[a,b,c,d],["pageNum","query","sourceId","sourceType"],0))}, +$1$sourceId(a){return this.C(this,A.E("$1$sourceId","$1$sourceId",0,[a],["sourceId"],0))}, +$1$currentValue(a){return this.C(this,A.E("$1$currentValue","$1$currentValue",0,[a],["currentValue"],0))}, +$1$sourcePreferenceProp(a){return this.C(this,A.E("$1$sourcePreferenceProp","$1$sourcePreferenceProp",0,[a],["sourcePreferenceProp"],0))}, +$2$sourcePreferenceProp$type(a,b){return this.C(this,A.E("$2$sourcePreferenceProp$type","$2$sourcePreferenceProp$type",0,[a,b],["sourcePreferenceProp","type"],0))}, +$1$key(a){return this.C(this,A.E("$1$key","$1$key",0,[a],["key"],0))}, +$2$preference$sourceId(a,b){return this.C(this,A.E("$2$preference$sourceId","$2$preference$sourceId",0,[a,b],["preference","sourceId"],0))}, +$2$cancelToken$sourceId(a,b){return this.C(this,A.E("$2$cancelToken$sourceId","$2$cancelToken$sourceId",0,[a,b],["cancelToken","sourceId"],0))}, +$1$source(a){return this.C(this,A.E("$1$source","$1$source",0,[a],["source"],0))}, +$25$artist$author$chapterCount$chaptersLastFetchedAt$description$downloadCount$freshData$genre$id$inLibrary$inLibraryAt$initialized$lastChapterRead$lastFetchedAt$lastReadAt$meta$realUrl$source$sourceId$status$thumbnailUrl$thumbnailUrlLastFetched$title$unreadCount$url(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 this.C(this,A.E("$25$artist$author$chapterCount$chaptersLastFetchedAt$description$downloadCount$freshData$genre$id$inLibrary$inLibraryAt$initialized$lastChapterRead$lastFetchedAt$lastReadAt$meta$realUrl$source$sourceId$status$thumbnailUrl$thumbnailUrlLastFetched$title$unreadCount$url","$25$artist$author$chapterCount$chaptersLastFetchedAt$description$downloadCount$freshData$genre$id$inLibrary$inLibraryAt$initialized$lastChapterRead$lastFetchedAt$lastReadAt$meta$realUrl$source$sourceId$status$thumbnailUrl$thumbnailUrlLastFetched$title$unreadCount$url",0,[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],["artist","author","chapterCount","chaptersLastFetchedAt","description","downloadCount","freshData","genre","id","inLibrary","inLibraryAt","initialized","lastChapterRead","lastFetchedAt","lastReadAt","meta","realUrl","source","sourceId","status","thumbnailUrl","thumbnailUrlLastFetched","title","unreadCount","url"],0))}, +$1$inLibrary(a){return this.C(this,A.E("$1$inLibrary","$1$inLibrary",0,[a],["inLibrary"],0))}, +$1$state(a){return this.C(this,A.E("$1$state","$1$state",0,[a],["state"],0))}, +$1$filterState(a){return this.C(this,A.E("$1$filterState","$1$filterState",0,[a],["filterState"],0))}, +$2$filterState$type(a,b){return this.C(this,A.E("$2$filterState$type","$2$filterState$type",0,[a,b],["filterState","type"],0))}, +$1$name(a){return this.C(this,A.E("$1$name","$1$name",0,[a],["name"],0))}, +$1$index(a){return this.C(this,A.E("$1$index","$1$index",0,[a],["index"],0))}, +$2$ascending$index(a,b){return this.C(this,A.E("$2$ascending$index","$2$ascending$index",0,[a,b],["ascending","index"],0))}, +$1$ascending(a){return this.C(this,A.E("$1$ascending","$1$ascending",0,[a],["ascending"],0))}, +$2$defaultCategory$name(a,b){return this.C(this,A.E("$2$defaultCategory$name","$2$defaultCategory$name",0,[a,b],["defaultCategory","name"],0))}, +$4$defaultCategory$id$name$order(a,b,c,d){return this.C(this,A.E("$4$defaultCategory$id$name$order","$4$defaultCategory$id$name$order",0,[a,b,c,d],["defaultCategory","id","name","order"],0))}, +$1$category(a){return this.C(this,A.E("$1$category","$1$category",0,[a],["category"],0))}, +$1$errorText(a){return this.C(this,A.E("$1$errorText","$1$errorText",0,[a],["errorText"],0))}, +$31$alignLabelWithHint$border$constraints$contentPadding$counterStyle$disabledBorder$enabledBorder$errorBorder$errorMaxLines$errorStyle$fillColor$filled$floatingLabelAlignment$floatingLabelBehavior$floatingLabelStyle$focusColor$focusedBorder$focusedErrorBorder$helperMaxLines$helperStyle$hintFadeDuration$hintStyle$hoverColor$iconColor$isCollapsed$isDense$labelStyle$prefixIconColor$prefixStyle$suffixIconColor$suffixStyle(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){return this.C(this,A.E("$31$alignLabelWithHint$border$constraints$contentPadding$counterStyle$disabledBorder$enabledBorder$errorBorder$errorMaxLines$errorStyle$fillColor$filled$floatingLabelAlignment$floatingLabelBehavior$floatingLabelStyle$focusColor$focusedBorder$focusedErrorBorder$helperMaxLines$helperStyle$hintFadeDuration$hintStyle$hoverColor$iconColor$isCollapsed$isDense$labelStyle$prefixIconColor$prefixStyle$suffixIconColor$suffixStyle","$31$alignLabelWithHint$border$constraints$contentPadding$counterStyle$disabledBorder$enabledBorder$errorBorder$errorMaxLines$errorStyle$fillColor$filled$floatingLabelAlignment$floatingLabelBehavior$floatingLabelStyle$focusColor$focusedBorder$focusedErrorBorder$helperMaxLines$helperStyle$hintFadeDuration$hintStyle$hoverColor$iconColor$isCollapsed$isDense$labelStyle$prefixIconColor$prefixStyle$suffixIconColor$suffixStyle",0,[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],["alignLabelWithHint","border","constraints","contentPadding","counterStyle","disabledBorder","enabledBorder","errorBorder","errorMaxLines","errorStyle","fillColor","filled","floatingLabelAlignment","floatingLabelBehavior","floatingLabelStyle","focusColor","focusedBorder","focusedErrorBorder","helperMaxLines","helperStyle","hintFadeDuration","hintStyle","hoverColor","iconColor","isCollapsed","isDense","labelStyle","prefixIconColor","prefixStyle","suffixIconColor","suffixStyle"],0))}, +$2$3$data$decoder(a,b,c,d,e){return this.C(this,A.E("$2$3$data$decoder","$2$3$data$decoder",0,[a,b,c,d,e],["data","decoder"],2))}, +$1$maxScaleFactor(a){return this.C(this,A.E("$1$maxScaleFactor","$1$maxScaleFactor",0,[a],["maxScaleFactor"],0))}, +$3$isDiscrete$parentBox$sliderTheme(a,b,c){return this.C(this,A.E("$3$isDiscrete$parentBox$sliderTheme","$3$isDiscrete$parentBox$sliderTheme",0,[a,b,c],["isDiscrete","parentBox","sliderTheme"],0))}, +$1$task(a){return this.C(this,A.E("$1$task","$1$task",0,[a],["task"],0))}, +$1$oldWidget(a){return this.C(this,A.E("$1$oldWidget","$1$oldWidget",0,[a],["oldWidget"],0))}, +$2$defaultColor(a,b){return this.C(this,A.E("$2$defaultColor","$2$defaultColor",0,[a,b],["defaultColor"],0))}, +$2$child$context(a,b){return this.C(this,A.E("$2$child$context","$2$child$context",0,[a,b],["child","context"],0))}, +$2$minHeight$minWidth(a,b){return this.C(this,A.E("$2$minHeight$minWidth","$2$minHeight$minWidth",0,[a,b],["minHeight","minWidth"],0))}, +$3$color$defaultColor$disabledColor(a,b,c){return this.C(this,A.E("$3$color$defaultColor$disabledColor","$3$color$defaultColor$disabledColor",0,[a,b,c],["color","defaultColor","disabledColor"],0))}, +$3$backgroundColor$color$defaultColor(a,b,c){return this.C(this,A.E("$3$backgroundColor$color$defaultColor","$3$backgroundColor$color$defaultColor",0,[a,b,c],["backgroundColor","color","defaultColor"],0))}, +$3$color$defaultColor$selectedColor(a,b,c){return this.C(this,A.E("$3$color$defaultColor$selectedColor","$3$color$defaultColor$selectedColor",0,[a,b,c],["color","defaultColor","selectedColor"],0))}, +$1$side(a){return this.C(this,A.E("$1$side","$1$side",0,[a],["side"],0))}, +$5$autofocus$focusNode$mouseCursor$painter$size(a,b,c,d,e){return this.C(this,A.E("$5$autofocus$focusNode$mouseCursor$painter$size","$5$autofocus$focusNode$mouseCursor$painter$size",0,[a,b,c,d,e],["autofocus","focusNode","mouseCursor","painter","size"],0))}, +$2$tabCount$tabIndex(a,b){return this.C(this,A.E("$2$tabCount$tabIndex","$2$tabCount$tabIndex",0,[a,b],["tabCount","tabIndex"],0))}, +$1$overscroll(a){return this.C(this,A.E("$1$overscroll","$1$overscroll",0,[a],["overscroll"],0))}, +$3$foregroundColor$iconSize$overlayColor(a,b,c){return this.C(this,A.E("$3$foregroundColor$iconSize$overlayColor","$3$foregroundColor$iconSize$overlayColor",0,[a,b,c],["foregroundColor","iconSize","overlayColor"],0))}, +$4$overscroll$physics$platform$scrollbars(a,b,c,d){return this.C(this,A.E("$4$overscroll$physics$platform$scrollbars","$4$overscroll$physics$platform$scrollbars",0,[a,b,c,d],["overscroll","physics","platform","scrollbars"],0))}, +$4$displayFeatures$padding$viewInsets$viewPadding(a,b,c,d){return this.C(this,A.E("$4$displayFeatures$padding$viewInsets$viewPadding","$4$displayFeatures$padding$viewInsets$viewPadding",0,[a,b,c,d],["displayFeatures","padding","viewInsets","viewPadding"],0))}, +$2$isClosing(a,b){return this.C(this,A.E("$2$isClosing","$2$isClosing",0,[a,b],["isClosing"],0))}, +$1$withDelay(a){return this.C(this,A.E("$1$withDelay","$1$withDelay",0,[a],["withDelay"],0))}, +$1$inherit(a){return this.C(this,A.E("$1$inherit","$1$inherit",0,[a],["inherit"],0))}, +$8$removeBottomInset$removeBottomPadding$removeLeftPadding$removeRightPadding$removeTopPadding(a,b,c,d,e,f,g,h){return this.C(this,A.E("$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.C(this,A.E("$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.C(this,A.E("$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$floatingActionButtonScale(a){return this.C(this,A.E("$1$floatingActionButtonScale","$1$floatingActionButtonScale",0,[a],["floatingActionButtonScale"],0))}, +$1$removeBottom(a){return this.C(this,A.E("$1$removeBottom","$1$removeBottom",0,[a],["removeBottom"],0))}, +$1$reversed(a){return this.C(this,A.E("$1$reversed","$1$reversed",0,[a],["reversed"],0))}, +$2$overscroll$scrollbars(a,b){return this.C(this,A.E("$2$overscroll$scrollbars","$2$overscroll$scrollbars",0,[a,b],["overscroll","scrollbars"],0))}, +$2$baseOffset$extentOffset(a,b){return this.C(this,A.E("$2$baseOffset$extentOffset","$2$baseOffset$extentOffset",0,[a,b],["baseOffset","extentOffset"],0))}, +$2$0(a,b){return this.C(this,A.E("$2$0","$2$0",0,[a,b],[],2))}, +$2$affinity$extentOffset(a,b){return this.C(this,A.E("$2$affinity$extentOffset","$2$affinity$extentOffset",0,[a,b],["affinity","extentOffset"],0))}, +$9$ascent$baseline$descent$hardBreak$height$left$lineNumber$unscaledAscent$width(a,b,c,d,e,f,g,h,i){return this.C(this,A.E("$9$ascent$baseline$descent$hardBreak$height$left$lineNumber$unscaledAscent$width","$9$ascent$baseline$descent$hardBreak$height$left$lineNumber$unscaledAscent$width",0,[a,b,c,d,e,f,g,h,i],["ascent","baseline","descent","hardBreak","height","left","lineNumber","unscaledAscent","width"],0))}, +$1$extentOffset(a){return this.C(this,A.E("$1$extentOffset","$1$extentOffset",0,[a],["extentOffset"],0))}, +$1$spellCheckService(a){return this.C(this,A.E("$1$spellCheckService","$1$spellCheckService",0,[a],["spellCheckService"],0))}, +$1$height(a){return this.C(this,A.E("$1$height","$1$height",0,[a],["height"],0))}, +$1$borderSide(a){return this.C(this,A.E("$1$borderSide","$1$borderSide",0,[a],["borderSide"],0))}, +$2$enabled$hintMaxLines(a,b){return this.C(this,A.E("$2$enabled$hintMaxLines","$2$enabled$hintMaxLines",0,[a,b],["enabled","hintMaxLines"],0))}, +$4$counterStyle$counterText$errorText$semanticCounterText(a,b,c,d){return this.C(this,A.E("$4$counterStyle$counterText$errorText$semanticCounterText","$4$counterStyle$counterText$errorText$semanticCounterText",0,[a,b,c,d],["counterStyle","counterText","errorText","semanticCounterText"],0))}, +$2$counterText$semanticCounterText(a,b){return this.C(this,A.E("$2$counterText$semanticCounterText","$2$counterText$semanticCounterText",0,[a,b],["counterText","semanticCounterText"],0))}, +$3$context$exception$stack(a,b,c){return this.C(this,A.E("$3$context$exception$stack","$3$context$exception$stack",0,[a,b,c],["context","exception","stack"],0))}, +$2$onError(a,b){return this.C(this,A.E("$2$onError","$2$onError",0,[a,b],["onError"],0))}, +$2$chunkCallback(a,b){return this.C(this,A.E("$2$chunkCallback","$2$chunkCallback",0,[a,b],["chunkCallback"],0))}, +$3$authHeaders$key(a,b,c){return this.C(this,A.E("$3$authHeaders$key","$3$authHeaders$key",0,[a,b,c],["authHeaders","key"],0))}, +$4$allowUpscaling$targetHeight$targetWidth(a,b,c,d){return this.C(this,A.E("$4$allowUpscaling$targetHeight$targetWidth","$4$allowUpscaling$targetHeight$targetWidth",0,[a,b,c,d],["allowUpscaling","targetHeight","targetWidth"],0))}, +$2$maxWidth$minWidth(a,b){return this.C(this,A.E("$2$maxWidth$minWidth","$2$maxWidth$minWidth",0,[a,b],["maxWidth","minWidth"],0))}, +$2$maxHeight$minHeight(a,b){return this.C(this,A.E("$2$maxHeight$minHeight","$2$maxHeight$minHeight",0,[a,b],["maxHeight","minHeight"],0))}, +$2$value(a,b){return this.C(this,A.E("$2$value","$2$value",0,[a,b],["value"],0))}, +$1$details(a){return this.C(this,A.E("$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.C(this,A.E("$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.C(this,A.E("$1$context","$1$context",0,[a],["context"],0))}, +$2$initialRestore(a,b){return this.C(this,A.E("$2$initialRestore","$2$initialRestore",0,[a,b],["initialRestore"],0))}, +$1$direction(a){return this.C(this,A.E("$1$direction","$1$direction",0,[a],["direction"],0))}, +$4$axis$rect(a,b,c,d){return this.C(this,A.E("$4$axis$rect","$4$axis$rect",0,[a,b,c,d],["axis","rect"],0))}, +$1$2$arguments(a,b,c){return this.C(this,A.E("$1$2$arguments","$1$2$arguments",0,[a,b,c],["arguments"],1))}, +$2$type(a,b){return this.C(this,A.E("$2$type","$2$type",0,[a,b],["type"],0))}, +$3$imperativeMatches(a,b,c){return this.C(this,A.E("$3$imperativeMatches","$3$imperativeMatches",0,[a,b,c],["imperativeMatches"],0))}, +$3$pageKey(a,b,c){return this.C(this,A.E("$3$pageKey","$3$pageKey",0,[a,b,c],["pageKey"],0))}, +$5$arguments$child$key$name$restorationId(a,b,c,d,e){return this.C(this,A.E("$5$arguments$child$key$name$restorationId","$5$arguments$child$key$name$restorationId",0,[a,b,c,d,e],["arguments","child","key","name","restorationId"],0))}, +$1$removeTop(a){return this.C(this,A.E("$1$removeTop","$1$removeTop",0,[a],["removeTop"],0))}, +$1$viewInsets(a){return this.C(this,A.E("$1$viewInsets","$1$viewInsets",0,[a],["viewInsets"],0))}, +$1$top(a){return this.C(this,A.E("$1$top","$1$top",0,[a],["top"],0))}, +$2$padding$viewInsets(a,b){return this.C(this,A.E("$2$padding$viewInsets","$2$padding$viewInsets",0,[a,b],["padding","viewInsets"],0))}, +$1$5(a,b,c,d,e,f){return this.C(this,A.E("$1$5","$1$5",0,[a,b,c,d,e,f],[],1))}, +$5$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result$siblingNodes(a,b,c,d,e){return this.C(this,A.E("$5$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result$siblingNodes","$5$elevationAdjustment$parentPaintClipRect$parentSemanticsClipRect$result$siblingNodes",0,[a,b,c,d,e],["elevationAdjustment","parentPaintClipRect","parentSemanticsClipRect","result","siblingNodes"],0))}, +$1$config(a){return this.C(this,A.E("$1$config","$1$config",0,[a],["config"],0))}, +$2$descendant$rect(a,b){return this.C(this,A.E("$2$descendant$rect","$2$descendant$rect",0,[a,b],["descendant","rect"],0))}, +$2$ignoreRasterCache(a,b){return this.C(this,A.E("$2$ignoreRasterCache","$2$ignoreRasterCache",0,[a,b],["ignoreRasterCache"],0))}, +$1$3$onlyFirst(a,b,c,d){return this.C(this,A.E("$1$3$onlyFirst","$1$3$onlyFirst",0,[a,b,c,d],["onlyFirst"],1))}, +$3$oldLayer(a,b,c){return this.C(this,A.E("$3$oldLayer","$3$oldLayer",0,[a,b,c],["oldLayer"],0))}, +$2$oldLayer(a,b){return this.C(this,A.E("$2$oldLayer","$2$oldLayer",0,[a,b],["oldLayer"],0))}, +$1$oldLayer(a){return this.C(this,A.E("$1$oldLayer","$1$oldLayer",0,[a],["oldLayer"],0))}, +$3$offset$oldLayer(a,b,c){return this.C(this,A.E("$3$offset$oldLayer","$3$offset$oldLayer",0,[a,b,c],["offset","oldLayer"],0))}, +$4$isComplexHint$willChangeHint(a,b,c,d){return this.C(this,A.E("$4$isComplexHint$willChangeHint","$4$isComplexHint$willChangeHint",0,[a,b,c,d],["isComplexHint","willChangeHint"],0))}, +$4$textDirection(a,b,c,d){return this.C(this,A.E("$4$textDirection","$4$textDirection",0,[a,b,c,d],["textDirection"],0))}, +$6$blend$blendMode(a,b,c,d,e,f){return this.C(this,A.E("$6$blend$blendMode","$6$blend$blendMode",0,[a,b,c,d,e,f],["blend","blendMode"],0))}, +$6(a,b,c,d,e,f){return this.C(this,A.E("$6","$6",0,[a,b,c,d,e,f],[],0))}, +$5$borderRadius$shape$textDirection(a,b,c,d,e){return this.C(this,A.E("$5$borderRadius$shape$textDirection","$5$borderRadius$shape$textDirection",0,[a,b,c,d,e],["borderRadius","shape","textDirection"],0))}, +$3$clipBehavior$oldLayer(a,b,c){return this.C(this,A.E("$3$clipBehavior$oldLayer","$3$clipBehavior$oldLayer",0,[a,b,c],["clipBehavior","oldLayer"],0))}, +$2$doAntiAlias(a,b){return this.C(this,A.E("$2$doAntiAlias","$2$doAntiAlias",0,[a,b],["doAntiAlias"],0))}, +$4$oldLayer(a,b,c,d){return this.C(this,A.E("$4$oldLayer","$4$oldLayer",0,[a,b,c,d],["oldLayer"],0))}, +$2$nextTo(a,b){return this.C(this,A.E("$2$nextTo","$2$nextTo",0,[a,b],["nextTo"],0))}, +$4$in1$in2$operator$result(a,b,c,d){return this.C(this,A.E("$4$in1$in2$operator$result","$4$in1$in2$operator$result",0,[a,b,c,d],["in1","in2","operator","result"],0))}, +$6$oldLayer(a,b,c,d,e,f){return this.C(this,A.E("$6$oldLayer","$6$oldLayer",0,[a,b,c,d,e,f],["oldLayer"],0))}, +$6$gapExtent$gapPercentage$gapStart$textDirection(a,b,c,d,e,f){return this.C(this,A.E("$6$gapExtent$gapPercentage$gapStart$textDirection","$6$gapExtent$gapPercentage$gapStart$textDirection",0,[a,b,c,d,e,f],["gapExtent","gapPercentage","gapStart","textDirection"],0))}, +$2$radius(a,b){return this.C(this,A.E("$2$radius","$2$radius",0,[a,b],["radius"],0))}, +$4$isDiscrete$offset$parentBox$sliderTheme(a,b,c,d){return this.C(this,A.E("$4$isDiscrete$offset$parentBox$sliderTheme","$4$isDiscrete$offset$parentBox$sliderTheme",0,[a,b,c,d],["isDiscrete","offset","parentBox","sliderTheme"],0))}, +$12$activationAnimation$enableAnimation$isDiscrete$labelPainter$parentBox$sizeWithOverflow$sliderTheme$textDirection$textScaleFactor$value(a,b,c,d,e,f,g,h,i,j,k,l){return this.C(this,A.E("$12$activationAnimation$enableAnimation$isDiscrete$labelPainter$parentBox$sizeWithOverflow$sliderTheme$textDirection$textScaleFactor$value","$12$activationAnimation$enableAnimation$isDiscrete$labelPainter$parentBox$sizeWithOverflow$sliderTheme$textDirection$textScaleFactor$value",0,[a,b,c,d,e,f,g,h,i,j,k,l],["activationAnimation","enableAnimation","isDiscrete","labelPainter","parentBox","sizeWithOverflow","sliderTheme","textDirection","textScaleFactor","value"],0))}, +$3$blendMode$oldLayer(a,b,c){return this.C(this,A.E("$3$blendMode$oldLayer","$3$blendMode$oldLayer",0,[a,b,c],["blendMode","oldLayer"],0))}, +$2$filterQuality(a,b){return this.C(this,A.E("$2$filterQuality","$2$filterQuality",0,[a,b],["filterQuality"],0))}, +$2$parentUsesSize(a,b){return this.C(this,A.E("$2$parentUsesSize","$2$parentUsesSize",0,[a,b],["parentUsesSize"],0))}, +$1$maxWidth(a){return this.C(this,A.E("$1$maxWidth","$1$maxWidth",0,[a],["maxWidth"],0))}, +$1$maxHeight(a){return this.C(this,A.E("$1$maxHeight","$1$maxHeight",0,[a],["maxHeight"],0))}, +$1$width(a){return this.C(this,A.E("$1$width","$1$width",0,[a],["width"],0))}, +$4$isScrolling$newPosition$oldPosition$velocity(a,b,c,d){return this.C(this,A.E("$4$isScrolling$newPosition$oldPosition$velocity","$4$isScrolling$newPosition$oldPosition$velocity",0,[a,b,c,d],["isScrolling","newPosition","oldPosition","velocity"],0))}, +$2$bottomNavigationBarTop$floatingActionButtonArea(a,b){return this.C(this,A.E("$2$bottomNavigationBarTop$floatingActionButtonArea","$2$bottomNavigationBarTop$floatingActionButtonArea",0,[a,b],["bottomNavigationBarTop","floatingActionButtonArea"],0))}, +$2$maxExtent$minExtent(a,b){return this.C(this,A.E("$2$maxExtent$minExtent","$2$maxExtent$minExtent",0,[a,b],["maxExtent","minExtent"],0))}, +$1$query(a){return this.C(this,A.E("$1$query","$1$query",0,[a],["query"],0))}, +$2$pathSegments$query(a,b){return this.C(this,A.E("$2$pathSegments$query","$2$pathSegments$query",0,[a,b],["pathSegments","query"],0))}, +$3$treeSanitizer$validator(a,b,c){return this.C(this,A.E("$3$treeSanitizer$validator","$3$treeSanitizer$validator",0,[a,b,c],["treeSanitizer","validator"],0))}, +$2$treeSanitizer(a,b){return this.C(this,A.E("$2$treeSanitizer","$2$treeSanitizer",0,[a,b],["treeSanitizer"],0))}, +i(a,b){return this.C(a,A.E("i","i",0,[b],[],0))}, +al(a,b){return this.C(a,A.E("al","al",0,[b],[],0))}, +aq(a,b){return this.C(a,A.E("aq","aq",0,[b],[],0))}, +n(a,b,c){return this.C(a,A.E("n","n",0,[b,c],[],0))}, +bf(){return this.C(this,A.E("bf","bf",0,[],[],0))}, +Tn(a){return this.C(this,A.E("Tn","Tn",0,[a],[],0))}, +Ji(a){return this.C(this,A.E("Ji","Ji",0,[a],[],0))}, +a4(a,b){return this.C(a,A.E("a4","a4",0,[b],[],0))}, +y7(a){return this.C(this,A.E("y7","y7",0,[a],[],0))}, +cF(){return this.C(this,A.E("cF","cF",0,[],[],0))}, +tt(){return this.C(this,A.E("tt","tt",0,[],[],0))}, +av(a,b){return this.C(a,A.E("av","av",0,[b],[],0))}, +U(a,b){return this.C(a,A.E("U","U",0,[b],[],0))}, +By(a){return this.C(a,A.E("By","By",0,[],[],0))}, +gt(a){return this.C(a,A.E("gt","gt",1,[],[],0))}, +gfl(a){return this.C(a,A.E("gfl","gfl",1,[],[],0))}, +gm8(){return this.C(this,A.E("gm8","gm8",1,[],[],0))}, +geh(){return this.C(this,A.E("geh","geh",1,[],[],0))}, +goM(){return this.C(this,A.E("goM","goM",1,[],[],0))}, +gxX(){return this.C(this,A.E("gxX","gxX",1,[],[],0))}, +gd0(a){return this.C(a,A.E("gd0","gd0",1,[],[],0))}, +geD(a){return this.C(a,A.E("geD","geD",1,[],[],0))}, +gzH(a){return this.C(a,A.E("gzH","gzH",1,[],[],0))}, +sm8(a){return this.C(this,A.E("sm8","sm8",2,[a],[],0))}, +seh(a){return this.C(this,A.E("seh","seh",2,[a],[],0))}, +soM(a){return this.C(this,A.E("soM","soM",2,[a],[],0))}, +sfl(a,b){return this.C(a,A.E("sfl","sfl",2,[b],[],0))}, +sd0(a,b){return this.C(a,A.E("sd0","sd0",2,[b],[],0))}} +A.pG.prototype={ +l(a){return this.a}, +$icw:1} +A.k9.prototype={ +ga9P(){var s=this.ga9Q() +if($.kp()===1e6)return s +return s*1000}, +gUZ(){var s=this.ga9Q() +if($.kp()===1000)return s +return B.f.cE(s,1000)}, +rM(a){var s=this,r=s.b +if(r!=null){s.a=s.a+($.N5.$0()-r) +s.b=null}}, +iN(a){var s=this.b +this.a=s==null?$.N5.$0():s}, +ga9Q(){var s=this.b +if(s==null)s=$.N5.$0() +return s-this.a}} +A.aSe.prototype={ +gG(a){return this.d}, +v(){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=n.charCodeAt(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.eq(B.c.S(this.b,a,b),null,16) +if(s<0||s>65535)this.a.$2("each part must be in the range of `0x0..0xFFFF`",a) +return s}, +$S:179} +A.V9.prototype={ +gwC(){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.i(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.aq() +n=o.w=s.charCodeAt(0)==0?s:s}return n}, +gxS(){var s,r,q=this,p=q.x +if(p===$){s=q.e +if(s.length!==0&&s.charCodeAt(0)===47)s=B.c.cm(s,1) +r=s.length===0?B.c3:A.hN(new A.ad(A.a(s.split("/"),t.s),A.bTY(),t.cj),t.N) +q.x!==$&&A.aq() +p=q.x=r}return p}, +gu(a){var s,r=this,q=r.y +if(q===$){s=B.c.gu(r.gwC()) +r.y!==$&&A.aq() +r.y=s +q=s}return q}, +gri(){var s,r=this,q=r.z +if(q===$){s=r.f +s=A.bv1(s==null?"":s) +r.z!==$&&A.aq() +q=r.z=new A.mu(s,t.G5)}return q}, +gu_(){var s,r,q=this,p=q.Q +if(p===$){s=q.f +r=A.bQa(s==null?"":s) +q.Q!==$&&A.aq() +q.Q=r +p=r}return p}, +gGQ(){return this.b}, +gpZ(a){var s=this.c +if(s==null)return"" +if(B.c.cc(s,"["))return B.c.S(s,1,s.length-1) +return s}, +gxU(a){var s=this.d +return s==null?A.bwE(this.a):s}, +grh(a){var s=this.f +return s==null?"":s}, +gp8(){var s=this.r +return s==null?"":s}, +Fv(a){var s=this.a +if(a.length!==s.length)return!1 +return A.bx3(a,s,0)>=0}, +vL(a,b,c,d,e){var s,r,q,p=this,o=p.a,n=o==="file",m=p.b,l=p.d,k=p.c +if(!(k!=null))k=m.length!==0||l!=null||n?"":null +s=k!=null +r=b==null +if(!r||c!=null)b=A.be4(b,0,r?0:b.length,c,o,s) +else{q=p.e +if(!n)r=s&&q.length!==0 +else r=!0 +if(r&&!B.c.cc(q,"/"))q="/"+q +b=q}r=d==null +if(!r||e!=null)d=A.be6(d,0,r?0:d.length,e) +else d=p.f +return A.HE(o,m,k,l,b,d,p.r)}, +Np(a,b){return this.vL(a,b,null,null,null)}, +adh(a,b){return this.vL(a,null,null,null,b)}, +adg(a,b){return this.vL(a,null,null,b,null)}, +aOX(a,b,c){return this.vL(a,null,b,c,null)}, +Xk(){var s=this +if(s.r==null)return s +return A.HE(s.a,s.b,s.c,s.d,s.e,s.f,null)}, +aca(){var s=this,r=s.e,q=A.bwN(r,s.a,s.c!=null) +if(q===r)return s +return s.Np(0,q)}, +a3j(a,b){var s,r,q,p,o,n +for(s=0,r=0;B.c.eJ(b,"../",r);){r+=3;++s}q=B.c.vx(a,"/") +while(!0){if(!(q>0&&s>0))break +p=B.c.B_(a,"/",q-1) +if(p<0)break +o=q-p +n=o!==2 +if(!n||o===3)if(a.charCodeAt(p+1)===46)n=!n||a.charCodeAt(p+2)===46 +else n=!1 +else n=!1 +if(n)break;--s +q=p}return B.c.iM(a,q+1,null,B.c.cm(b,r-3*s))}, +L(a){return this.Gn(A.dR(a,0,null))}, +Gn(a){var s,r,q,p,o,n,m,l,k,j,i=this,h=null +if(a.gfk().length!==0){s=a.gfk() +if(a.gFb()){r=a.gGQ() +q=a.gpZ(a) +p=a.gAO()?a.gxU(a):h}else{p=h +q=p +r=""}o=A.rR(a.gdT(a)) +n=a.gAP()?a.grh(a):h}else{s=i.a +if(a.gFb()){r=a.gGQ() +q=a.gpZ(a) +p=A.bmH(a.gAO()?a.gxU(a):h,s) +o=A.rR(a.gdT(a)) +n=a.gAP()?a.grh(a):h}else{r=i.b +q=i.c +p=i.d +o=i.e +if(a.gdT(a)==="")n=a.gAP()?a.grh(a):i.f +else{m=A.bQg(i,o) +if(m>0){l=B.c.S(o,0,m) +o=a.gLZ()?l+A.rR(a.gdT(a)):l+A.rR(i.a3j(B.c.cm(o,l.length),a.gdT(a)))}else if(a.gLZ())o=A.rR(a.gdT(a)) +else if(o.length===0)if(q==null)o=s.length===0?a.gdT(a):A.rR(a.gdT(a)) +else o=A.rR("/"+a.gdT(a)) +else{k=i.a3j(o,a.gdT(a)) +j=s.length===0 +if(!j||q!=null||B.c.cc(o,"/"))o=A.rR(k) +else o=A.bmJ(k,!j||q!=null)}n=a.gAP()?a.grh(a):h}}}return A.HE(s,r,q,p,o,n,a.gVF()?a.gp8():h)}, +gaaU(){return this.a.length!==0}, +gFb(){return this.c!=null}, +gAO(){return this.d!=null}, +gAP(){return this.f!=null}, +gVF(){return this.r!=null}, +gaaR(){return this.e.length===0}, +gLZ(){return B.c.cc(this.e,"/")}, +gBe(a){var s,r,q=this,p=q.a +if(p==="")throw A.c(A.R("Cannot use origin without a scheme: "+q.l(0))) +if(p!=="http"&&p!=="https")throw A.c(A.R("Origin is only applicable schemes http and https: "+q.l(0))) +s=q.c +if(s==null||s==="")throw A.c(A.R("A "+p+u.M+q.l(0))) +r=q.d +if(r==null)return p+"://"+A.i(s) +return p+"://"+A.i(s)+":"+A.i(r)}, +Xy(){var s,r=this,q=r.a +if(q!==""&&q!=="file")throw A.c(A.aa("Cannot extract a file path from a "+q+" URI")) +q=r.f +if((q==null?"":q)!=="")throw A.c(A.aa(u.z)) +q=r.r +if((q==null?"":q)!=="")throw A.c(A.aa(u.F)) +q=$.bor() +if(q)q=A.bwQ(r) +else{if(r.c!=null&&r.gpZ(r)!=="")A.r(A.aa(u.Q)) +s=r.gxS() +A.bQ8(s,!1) +q=A.aas(B.c.cc(r.e,"/")?""+"/":"",s,"/") +q=q.charCodeAt(0)==0?q:q}return q}, +l(a){return this.gwC()}, +k(a,b){var s,r,q=this +if(b==null)return!1 +if(q===b)return!0 +if(t.Xu.b(b))if(q.a===b.gfk())if(q.c!=null===b.gFb())if(q.b===b.gGQ())if(q.gpZ(q)===b.gpZ(b))if(q.gxU(q)===b.gxU(b))if(q.e===b.gdT(b)){s=q.f +r=s==null +if(!r===b.gAP()){if(r)s="" +if(s===b.grh(b)){s=q.r +r=s==null +if(!r===b.gVF()){if(r)s="" +s=s===b.gp8()}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}, +$iabv:1, +gfk(){return this.a}, +gdT(a){return this.e}} +A.be5.prototype={ +$1(a){return A.kn(B.aea,a,B.a_,!1)}, +$S:18} +A.be8.prototype={ +$2(a,b){var s=this.b,r=this.a +s.a+=r.a +r.a="&" +r=s.a+=A.kn(B.fv,a,B.a_,!0) +if(b!=null&&b.length!==0){s.a=r+"=" +s.a+=A.kn(B.fv,b,B.a_,!0)}}, +$S:290} +A.be7.prototype={ +$2(a,b){var s,r +if(b==null||typeof b=="string")this.a.$2(a,b) +else for(s=J.al(b),r=this.a;s.v();)r.$2(a,s.gG(s))}, +$S:43} +A.be9.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.lL(s,a,c,r,!0) +p=""}else{q=A.lL(s,a,b,r,!0) +p=A.lL(s,b+1,c,r,!0)}J.ff(this.c.cK(0,q,A.bU_()),p)}, +$S:531} +A.abw.prototype={ +gho(){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.c.h3(m,"?",s) +q=m.length +if(r>=0){p=A.Vb(m,r+1,q,B.hM,!1,!1) +q=r}else p=n +m=o.c=new A.afP("data","",n,n,A.Vb(m,s,q,B.Bs,!1,!1),p,n)}return m}, +l(a){var s=this.a +return this.b[0]===-1?"data:"+s:s}} +A.bf3.prototype={ +$2(a,b){var s=this.a[a] +B.M.aJ1(s,0,96,b) +return s}, +$S:537} +A.bf4.prototype={ +$3(a,b,c){var s,r +for(s=b.length,r=0;r>>0]=c}, +$S:277} +A.mG.prototype={ +gaaU(){return this.b>0}, +gFb(){return this.c>0}, +gAO(){return this.c>0&&this.d+1=0}, +gfk(){var s=this.w +return s==null?this.w=this.apr():s}, +apr(){var s,r=this,q=r.b +if(q<=0)return"" +s=q===4 +if(s&&B.c.cc(r.a,"http"))return"http" +if(q===5&&B.c.cc(r.a,"https"))return"https" +if(s&&B.c.cc(r.a,"file"))return"file" +if(q===7&&B.c.cc(r.a,"package"))return"package" +return B.c.S(r.a,0,q)}, +gGQ(){var s=this.c,r=this.b+3 +return s>r?B.c.S(this.a,r,s-1):""}, +gpZ(a){var s=this.c +return s>0?B.c.S(this.a,s,this.d):""}, +gxU(a){var s,r=this +if(r.gAO())return A.eq(B.c.S(r.a,r.d+1,r.e),null,null) +s=r.b +if(s===4&&B.c.cc(r.a,"http"))return 80 +if(s===5&&B.c.cc(r.a,"https"))return 443 +return 0}, +gdT(a){return B.c.S(this.a,this.e,this.f)}, +grh(a){var s=this.f,r=this.r +return s=s.r)return B.fD +return new A.mu(A.bv1(s.grh(s)),t.G5)}, +gu_(){var s,r=this +if(r.f>=r.r)return B.Jg +s=A.bwP(r.grh(r)) +s.ae5(s,A.bym()) +return A.bjI(s,t.N,t.yp)}, +a2V(a){var s=this.d+1 +return s+a.length===this.e&&B.c.eJ(this.a,a,s)}, +aca(){return this}, +Xk(){var s=this,r=s.r,q=s.a +if(r>=q.length)return s +return new A.mG(B.c.S(q,0,r),s.b,s.c,s.d,s.e,s.f,r,s.w)}, +vL(a,b,c,d,e){var s,r,q,p,o=this,n=o.gfk(),m=n==="file",l=o.c,k=l>0?B.c.S(o.a,o.b+3,l):"",j=o.gAO()?o.gxU(o):null +l=o.c +if(l>0)s=B.c.S(o.a,l,o.d) +else s=k.length!==0||j!=null||m?"":null +r=s!=null +l=b==null +if(!l||!1)b=A.be4(b,0,l?0:b.length,c,n,r) +else{b=B.c.S(o.a,o.e,o.f) +if(!m)l=r&&b.length!==0 +else l=!0 +if(l&&!B.c.cc(b,"/"))b="/"+b}l=d==null +if(!l||e!=null)d=A.be6(d,0,l?0:d.length,e) +else{l=o.f +q=o.r +if(l0)return b +s=b.c +if(s>0){r=a.b +if(r<=0)return b +q=r===4 +if(q&&B.c.cc(a.a,"file"))p=b.e!==b.f +else if(q&&B.c.cc(a.a,"http"))p=!b.a2V("80") +else p=!(r===5&&B.c.cc(a.a,"https"))||!b.a2V("443") +if(p){o=r+1 +return new A.mG(B.c.S(a.a,0,o)+B.c.cm(b.a,c+1),r,s+o,b.d+o,b.e+o,b.f+o,b.r+o,a.w)}else return this.a60().Gn(b)}n=b.e +c=b.f +if(n===c){s=b.r +if(c0?l:m +o=k-n +return new A.mG(B.c.S(a.a,0,k)+B.c.cm(s,n),a.b,a.c,a.d,m,c+o,b.r+o,a.w)}j=a.e +i=a.f +if(j===i&&a.c>0){for(;B.c.eJ(s,"../",n);)n+=3 +o=j-n+1 +return new A.mG(B.c.S(a.a,0,j)+"/"+B.c.cm(s,n),a.b,a.c,a.d,j,c+o,b.r+o,a.w)}h=a.a +l=A.bwh(this) +if(l>=0)g=l +else for(g=j;B.c.eJ(h,"../",g);)g+=3 +f=0 +while(!0){e=n+3 +if(!(e<=c&&B.c.eJ(s,"../",n)))break;++f +n=e}for(d="";i>g;){--i +if(h.charCodeAt(i)===47){if(f===0){d="/" +break}--f +d="/"}}if(i===g&&a.b<=0&&!B.c.eJ(h,"/",j)){n-=f*3 +d=""}o=i-n+d.length +return new A.mG(B.c.S(h,0,i)+d+B.c.cm(s,n),a.b,a.c,a.d,j,c+o,b.r+o,a.w)}, +Xy(){var s,r,q=this,p=q.b +if(p>=0){s=!(p===4&&B.c.cc(q.a,"file")) +p=s}else p=!1 +if(p)throw A.c(A.aa("Cannot extract a file path from a "+q.gfk()+" URI")) +p=q.f +s=q.a +if(p0?s.gpZ(s):r,n=s.gAO()?s.gxU(s):r,m=s.a,l=s.f,k=B.c.S(m,s.e,l),j=s.r +l=l>>0!==b||b>=s +r.toString +if(r)throw A.c(A.f8(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +n(a,b,c){throw A.c(A.aa("Cannot assign element of immutable List."))}, +st(a,b){throw A.c(A.aa("Cannot resize immutable List."))}, +gO(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.c(A.R("No elements"))}, +gX(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.c(A.R("No elements"))}, +gaV(a){var s,r=a.length +if(r===1){s=a[0] +s.toString +return s}if(r===0)throw A.c(A.R("No elements")) +throw A.c(A.R("More than one element"))}, +cn(a,b){return a[b]}, +$ico:1, +$iao:1, +$icF:1, +$iz:1, +$if:1} +A.JW.prototype={ +l(a){var s,r=a.left +r.toString +s=a.top +s.toString +return"Rectangle ("+A.i(r)+", "+A.i(s)+") "+A.i(this.gf6(a))+" x "+A.i(this.gdC(a))}, +k(a,b){var s,r +if(b==null)return!1 +if(t.Bb.b(b)){s=a.left +s.toString +r=J.c4(b) +if(s===r.gpd(b)){s=a.top +s.toString +s=s===r.gBC(b)&&this.gf6(a)===r.gf6(b)&&this.gdC(a)===r.gdC(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.X(r,s,this.gf6(a),this.gdC(a),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +ga2D(a){return a.height}, +gdC(a){var s=this.ga2D(a) +s.toString +return s}, +gpd(a){var s=a.left +s.toString +return s}, +gBC(a){var s=a.top +s.toString +return s}, +ga7b(a){return a.width}, +gf6(a){var s=this.ga7b(a) +s.toString +return s}, +$ily:1} +A.JX.prototype={ +gt(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.c(A.f8(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +n(a,b,c){throw A.c(A.aa("Cannot assign element of immutable List."))}, +st(a,b){throw A.c(A.aa("Cannot resize immutable List."))}, +gO(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.c(A.R("No elements"))}, +gX(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.c(A.R("No elements"))}, +gaV(a){var s,r=a.length +if(r===1){s=a[0] +s.toString +return s}if(r===0)throw A.c(A.R("No elements")) +throw A.c(A.R("More than one element"))}, +cn(a,b){return a[b]}, +$ico:1, +$iao:1, +$icF:1, +$iz:1, +$if:1} +A.a14.prototype={ +gt(a){var s=a.length +s.toString +return s}} +A.aeZ.prototype={ +p(a,b){return J.oh(this.b,b)}, +gak(a){return this.a.firstElementChild==null}, +gt(a){return this.b.length}, +i(a,b){return t.lU.a(this.b[b])}, +n(a,b,c){this.a.replaceChild(c,this.b[b]).toString}, +st(a,b){throw A.c(A.aa("Cannot resize element lists"))}, +F(a,b){this.a.appendChild(b).toString +return b}, +gam(a){var s=this.fO(this) +return new J.cI(s,s.length,A.ab(s).h("cI<1>"))}, +I(a,b){A.bOF(this.a,b)}, +fw(a,b){throw A.c(A.aa("Cannot sort element lists"))}, +cv(a,b,c,d,e){throw A.c(A.d1(null))}, +di(a,b,c,d){return this.cv(a,b,c,d,0)}, +E(a,b){return A.bOG(this.a,b)}, +fB(a,b,c){var s,r=this,q=r.b,p=q.length +if(b>p)throw A.c(A.cT(b,0,r.gt(r),null,null)) +s=r.a +if(b===p)s.appendChild(c).toString +else s.insertBefore(c,t.lU.a(q[b])).toString}, +ab(a){J.bpo(this.a)}, +h5(a){var s=this.gX(this) +this.a.removeChild(s).toString +return s}, +gO(a){return A.bvL(this.a)}, +gX(a){var s=this.a.lastElementChild +if(s==null)throw A.c(A.R("No elements")) +return s}, +gaV(a){if(this.b.length>1)throw A.c(A.R("More than one element")) +return A.bvL(this.a)}} +A.cO.prototype={ +gzH(a){return new A.RF(a)}, +szH(a,b){var s,r,q +new A.RF(a).ab(0) +for(s=A.ie(b,b.r,A.l(b).c);s.v();){r=s.d +q=b.i(0,r) +q.toString +a.setAttribute(r,q)}}, +ghR(a){var s=a.children +s.toString +return new A.aeZ(a,s)}, +l(a){var s=a.localName +s.toString +return s}, +qJ(a,b,c,d){var s,r,q,p +if(c==null){s=$.brm +if(s==null){s=A.a([],t.qF) +r=new A.Ms(s) +s.push(A.bvZ(null)) +s.push(A.bwt()) +$.brm=r +d=r}else d=s +s=$.brl +if(s==null){d.toString +s=new A.aoV(d) +$.brl=s +c=s}else{d.toString +s.a=d +c=s}}if($.tB==null){s=document +r=s.implementation.createHTMLDocument("") +r.toString +$.tB=r +r=r.createRange() +r.toString +$.bkg=r +r=$.tB.createElement("base") +t.N3.a(r) +s=s.baseURI +s.toString +r.href=s +$.tB.head.appendChild(r).toString}s=$.tB +if(s.body==null){r=s.createElement("body") +s.body=t.C4.a(r)}s=$.tB +if(t.C4.b(a)){s=s.body +s.toString +q=s}else{s.toString +r=a.tagName +r.toString +q=s.createElement(r) +$.tB.body.appendChild(q).toString}s="createContextualFragment" in window.Range.prototype +s.toString +if(s){s=a.tagName +s.toString +s=!B.b.p(B.acH,s)}else s=!1 +if(s){$.bkg.selectNodeContents(q) +s=$.bkg +s=s.createContextualFragment(b) +s.toString +p=s}else{q.innerHTML=b +s=$.tB.createDocumentFragment() +s.toString +for(;r=q.firstChild,r!=null;)s.appendChild(r).toString +p=s}if(q!==$.tB.body)J.I3(q) +c.Yz(p) +document.adoptNode(p).toString +return p}, +aHJ(a,b,c){return this.qJ(a,b,c,null)}, +agr(a,b){a.textContent=null +a.appendChild(this.qJ(a,b,null,null)).toString}, +$icO:1} +A.aBb.prototype={ +$1(a){return t.lU.b(a)}, +$S:276} +A.b0.prototype={$ib0:1} +A.aL.prototype={ +zz(a,b,c,d){if(c!=null)this.avH(a,b,c,d)}, +Ts(a,b,c){return this.zz(a,b,c,null)}, +ad6(a,b,c,d){if(c!=null)this.aAg(a,b,c,d)}, +aOP(a,b,c){return this.ad6(a,b,c,null)}, +avH(a,b,c,d){return a.addEventListener(b,A.pR(c,1),d)}, +aAg(a,b,c,d){return a.removeEventListener(b,A.pR(c,1),d)}} +A.i6.prototype={$ii6:1} +A.Cn.prototype={ +gt(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.c(A.f8(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +n(a,b,c){throw A.c(A.aa("Cannot assign element of immutable List."))}, +st(a,b){throw A.c(A.aa("Cannot resize immutable List."))}, +gO(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.c(A.R("No elements"))}, +gX(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.c(A.R("No elements"))}, +gaV(a){var s,r=a.length +if(r===1){s=a[0] +s.toString +return s}if(r===0)throw A.c(A.R("No elements")) +throw A.c(A.R("More than one element"))}, +cn(a,b){return a[b]}, +$ico:1, +$iao:1, +$icF:1, +$iz:1, +$if:1, +$iCn:1} +A.Kl.prototype={ +gu2(a){var s=a.result +if(t.pI.b(s))return A.eO(s,0,null) +return s}} +A.a1M.prototype={ +gt(a){return a.length}} +A.a25.prototype={ +al(a,b){return a.forEach(A.pR(b,3))}} +A.a27.prototype={ +gt(a){return a.length}} +A.jR.prototype={$ijR:1} +A.a2z.prototype={ +gt(a){var s=a.length +s.toString +return s}} +A.xu.prototype={ +gt(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.c(A.f8(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +n(a,b,c){throw A.c(A.aa("Cannot assign element of immutable List."))}, +st(a,b){throw A.c(A.aa("Cannot resize immutable List."))}, +gO(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.c(A.R("No elements"))}, +gX(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.c(A.R("No elements"))}, +gaV(a){var s,r=a.length +if(r===1){s=a[0] +s.toString +return s}if(r===0)throw A.c(A.R("No elements")) +throw A.c(A.R("More than one element"))}, +cn(a,b){return a[b]}, +$ico:1, +$iao:1, +$icF:1, +$iz:1, +$if:1} +A.xv.prototype={ +gaPb(a){var s,r,q,p,o,n,m=t.N,l=A.I(m,m),k=a.getAllResponseHeaders(),j=k.split("\r\n") +for(m=j.length,s=0;s>>0!==b||b>=s +r.toString +if(r)throw A.c(A.f8(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +n(a,b,c){throw A.c(A.aa("Cannot assign element of immutable List."))}, +st(a,b){throw A.c(A.aa("Cannot resize immutable List."))}, +gO(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.c(A.R("No elements"))}, +gX(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.c(A.R("No elements"))}, +gaV(a){var s,r=a.length +if(r===1){s=a[0] +s.toString +return s}if(r===0)throw A.c(A.R("No elements")) +throw A.c(A.R("More than one element"))}, +cn(a,b){return a[b]}, +$ico:1, +$iao:1, +$icF:1, +$iz:1, +$if:1} +A.ip.prototype={ +gO(a){var s=this.a.firstChild +if(s==null)throw A.c(A.R("No elements")) +return s}, +gX(a){var s=this.a.lastChild +if(s==null)throw A.c(A.R("No elements")) +return s}, +gaV(a){var s=this.a,r=s.childNodes.length +if(r===0)throw A.c(A.R("No elements")) +if(r>1)throw A.c(A.R("More than one element")) +s=s.firstChild +s.toString +return s}, +F(a,b){this.a.appendChild(b).toString}, +I(a,b){var s,r,q,p,o +if(b instanceof A.ip){s=b.a +r=this.a +if(s!==r)for(q=s.childNodes.length,p=0;pq)throw A.c(A.cT(b,0,this.gt(this),null,null)) +if(b===q)s.appendChild(c).toString +else s.insertBefore(c,r[b]).toString}, +h5(a){var s=this.gX(this) +this.a.removeChild(s).toString +return s}, +E(a,b){return!1}, +n(a,b,c){var s=this.a +s.replaceChild(c,s.childNodes[b]).toString}, +gam(a){var s=this.a.childNodes +return new A.Co(s,s.length,A.cq(s).h("Co"))}, +fw(a,b){throw A.c(A.aa("Cannot sort Node list"))}, +cv(a,b,c,d,e){throw A.c(A.aa("Cannot setRange on Node list"))}, +di(a,b,c,d){return this.cv(a,b,c,d,0)}, +gt(a){return this.a.childNodes.length}, +st(a,b){throw A.c(A.aa("Cannot set length on immutable List."))}, +i(a,b){return this.a.childNodes[b]}} +A.bs.prototype={ +en(a){var s=a.parentNode +if(s!=null)s.removeChild(a).toString}, +aP_(a,b){var s,r,q +try{r=a.parentNode +r.toString +s=r +J.bE3(s,b,a)}catch(q){}return a}, +ap6(a){var s +for(;s=a.firstChild,s!=null;)a.removeChild(s).toString}, +l(a){var s=a.nodeValue +return s==null?this.ai0(a):s}, +aAk(a,b,c){var s=a.replaceChild(b,c) +s.toString +return s}, +$ibs:1} +A.Mr.prototype={ +gt(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.c(A.f8(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +n(a,b,c){throw A.c(A.aa("Cannot assign element of immutable List."))}, +st(a,b){throw A.c(A.aa("Cannot resize immutable List."))}, +gO(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.c(A.R("No elements"))}, +gX(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.c(A.R("No elements"))}, +gaV(a){var s,r=a.length +if(r===1){s=a[0] +s.toString +return s}if(r===0)throw A.c(A.R("No elements")) +throw A.c(A.R("More than one element"))}, +cn(a,b){return a[b]}, +$ico:1, +$iao:1, +$icF:1, +$iz:1, +$if:1} +A.a6n.prototype={ +geD(a){return a.icon}} +A.jZ.prototype={ +gt(a){return a.length}, +$ijZ:1} +A.a7g.prototype={ +gt(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.c(A.f8(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +n(a,b,c){throw A.c(A.aa("Cannot assign element of immutable List."))}, +st(a,b){throw A.c(A.aa("Cannot resize immutable List."))}, +gO(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.c(A.R("No elements"))}, +gX(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.c(A.R("No elements"))}, +gaV(a){var s,r=a.length +if(r===1){s=a[0] +s.toString +return s}if(r===0)throw A.c(A.R("No elements")) +throw A.c(A.R("More than one element"))}, +cn(a,b){return a[b]}, +$ico:1, +$iao:1, +$icF:1, +$iz:1, +$if:1} +A.lw.prototype={$ilw:1} +A.a8I.prototype={ +aq(a,b){return A.mJ(a.get(b))!=null}, +i(a,b){return A.mJ(a.get(b))}, +al(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.mJ(s.value[1]))}}, +gcN(a){var s=A.a([],t.s) +this.al(a,new A.aSc(s)) +return s}, +gbp(a){var s=A.a([],t.n4) +this.al(a,new A.aSd(s)) +return s}, +gt(a){var s=a.size +s.toString +return s}, +gak(a){var s=a.size +s.toString +return s===0}, +gd2(a){var s=a.size +s.toString +return s!==0}, +n(a,b,c){throw A.c(A.aa("Not supported"))}, +cK(a,b,c){throw A.c(A.aa("Not supported"))}, +E(a,b){throw A.c(A.aa("Not supported"))}, +$ia6:1} +A.aSc.prototype={ +$2(a,b){return this.a.push(a)}, +$S:43} +A.aSd.prototype={ +$2(a,b){return this.a.push(b)}, +$S:43} +A.O1.prototype={} +A.a90.prototype={ +gt(a){return a.length}} +A.EN.prototype={$iEN:1} +A.k3.prototype={$ik3:1} +A.a9U.prototype={ +gt(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.c(A.f8(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +n(a,b,c){throw A.c(A.aa("Cannot assign element of immutable List."))}, +st(a,b){throw A.c(A.aa("Cannot resize immutable List."))}, +gO(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.c(A.R("No elements"))}, +gX(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.c(A.R("No elements"))}, +gaV(a){var s,r=a.length +if(r===1){s=a[0] +s.toString +return s}if(r===0)throw A.c(A.R("No elements")) +throw A.c(A.R("More than one element"))}, +cn(a,b){return a[b]}, +$ico:1, +$iao:1, +$icF:1, +$iz:1, +$if:1} +A.k6.prototype={$ik6:1} +A.aai.prototype={ +gt(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.c(A.f8(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +n(a,b,c){throw A.c(A.aa("Cannot assign element of immutable List."))}, +st(a,b){throw A.c(A.aa("Cannot resize immutable List."))}, +gO(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.c(A.R("No elements"))}, +gX(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.c(A.R("No elements"))}, +gaV(a){var s,r=a.length +if(r===1){s=a[0] +s.toString +return s}if(r===0)throw A.c(A.R("No elements")) +throw A.c(A.R("More than one element"))}, +cn(a,b){return a[b]}, +$ico:1, +$iao:1, +$icF:1, +$iz:1, +$if:1} +A.k7.prototype={ +gt(a){return a.length}, +$ik7:1} +A.aao.prototype={ +aq(a,b){return a.getItem(A.bm(b))!=null}, +i(a,b){return a.getItem(A.bm(b))}, +n(a,b,c){a.setItem(b,c)}, +cK(a,b,c){var s +if(a.getItem(b)==null)a.setItem(b,c.$0()) +s=a.getItem(b) +return s==null?A.bm(s):s}, +E(a,b){var s +A.bm(b) +s=a.getItem(b) +a.removeItem(b) +return s}, +al(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)}}, +gcN(a){var s=A.a([],t.s) +this.al(a,new A.aXT(s)) +return s}, +gbp(a){var s=A.a([],t.s) +this.al(a,new A.aXU(s)) +return s}, +gt(a){var s=a.length +s.toString +return s}, +gak(a){return a.key(0)==null}, +gd2(a){return a.key(0)!=null}, +$ia6:1} +A.aXT.prototype={ +$2(a,b){return this.a.push(a)}, +$S:184} +A.aXU.prototype={ +$2(a,b){return this.a.push(b)}, +$S:184} +A.iV.prototype={$iiV:1} +A.Pa.prototype={ +qJ(a,b,c,d){var s,r="createContextualFragment" in window.Range.prototype +r.toString +if(r)return this.OM(a,b,c,d) +s=A.bHx(""+b+"
",c,d) +r=document.createDocumentFragment() +r.toString +new A.ip(r).I(0,new A.ip(s)) +return r}} +A.aaE.prototype={ +qJ(a,b,c,d){var s,r="createContextualFragment" in window.Range.prototype +r.toString +if(r)return this.OM(a,b,c,d) +r=document +s=r.createDocumentFragment() +s.toString +r=r.createElement("table") +r.toString +r=new A.ip(B.OP.qJ(r,b,c,d)) +r=new A.ip(r.gaV(r)) +new A.ip(s).I(0,new A.ip(r.gaV(r))) +return s}} +A.aaF.prototype={ +qJ(a,b,c,d){var s,r="createContextualFragment" in window.Range.prototype +r.toString +if(r)return this.OM(a,b,c,d) +r=document +s=r.createDocumentFragment() +s.toString +r=r.createElement("table") +r.toString +r=new A.ip(B.OP.qJ(r,b,c,d)) +new A.ip(s).I(0,new A.ip(r.gaV(r))) +return s}} +A.Fh.prototype={$iFh:1} +A.kd.prototype={$ikd:1} +A.iW.prototype={$iiW:1} +A.ab0.prototype={ +gt(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.c(A.f8(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +n(a,b,c){throw A.c(A.aa("Cannot assign element of immutable List."))}, +st(a,b){throw A.c(A.aa("Cannot resize immutable List."))}, +gO(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.c(A.R("No elements"))}, +gX(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.c(A.R("No elements"))}, +gaV(a){var s,r=a.length +if(r===1){s=a[0] +s.toString +return s}if(r===0)throw A.c(A.R("No elements")) +throw A.c(A.R("More than one element"))}, +cn(a,b){return a[b]}, +$ico:1, +$iao:1, +$icF:1, +$iz:1, +$if:1} +A.ab1.prototype={ +gt(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.c(A.f8(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +n(a,b,c){throw A.c(A.aa("Cannot assign element of immutable List."))}, +st(a,b){throw A.c(A.aa("Cannot resize immutable List."))}, +gO(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.c(A.R("No elements"))}, +gX(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.c(A.R("No elements"))}, +gaV(a){var s,r=a.length +if(r===1){s=a[0] +s.toString +return s}if(r===0)throw A.c(A.R("No elements")) +throw A.c(A.R("More than one element"))}, +cn(a,b){return a[b]}, +$ico:1, +$iao:1, +$icF:1, +$iz:1, +$if:1} +A.ab4.prototype={ +gt(a){var s=a.length +s.toString +return s}} +A.ke.prototype={$ike:1} +A.ab9.prototype={ +gt(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.c(A.f8(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +n(a,b,c){throw A.c(A.aa("Cannot assign element of immutable List."))}, +st(a,b){throw A.c(A.aa("Cannot resize immutable List."))}, +gO(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.c(A.R("No elements"))}, +gX(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.c(A.R("No elements"))}, +gaV(a){var s,r=a.length +if(r===1){s=a[0] +s.toString +return s}if(r===0)throw A.c(A.R("No elements")) +throw A.c(A.R("More than one element"))}, +cn(a,b){return a[b]}, +$ico:1, +$iao:1, +$icF:1, +$iz:1, +$if:1} +A.aba.prototype={ +gt(a){return a.length}} +A.aby.prototype={ +l(a){var s=String(a) +s.toString +return s}} +A.abH.prototype={ +gt(a){return a.length}} +A.FN.prototype={ +kc(a,b){return a.send(b)}} +A.vk.prototype={$ivk:1} +A.po.prototype={$ipo:1} +A.G3.prototype={$iG3:1} +A.afu.prototype={ +gt(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.c(A.f8(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +n(a,b,c){throw A.c(A.aa("Cannot assign element of immutable List."))}, +st(a,b){throw A.c(A.aa("Cannot resize immutable List."))}, +gO(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.c(A.R("No elements"))}, +gX(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.c(A.R("No elements"))}, +gaV(a){var s,r=a.length +if(r===1){s=a[0] +s.toString +return s}if(r===0)throw A.c(A.R("No elements")) +throw A.c(A.R("More than one element"))}, +cn(a,b){return a[b]}, +$ico:1, +$iao:1, +$icF:1, +$iz:1, +$if:1} +A.Rp.prototype={ +l(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.i(p)+", "+A.i(s)+") "+A.i(r)+" x "+A.i(q)}, +k(a,b){var s,r +if(b==null)return!1 +if(t.Bb.b(b)){s=a.left +s.toString +r=J.c4(b) +if(s===r.gpd(b)){s=a.top +s.toString +if(s===r.gBC(b)){s=a.width +s.toString +if(s===r.gf6(b)){s=a.height +s.toString +r=s===r.gdC(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.X(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)}, +ga2D(a){return a.height}, +gdC(a){var s=a.height +s.toString +return s}, +ga7b(a){return a.width}, +gf6(a){var s=a.width +s.toString +return s}} +A.ahm.prototype={ +gt(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.c(A.f8(b,s,a,null,null)) +return a[b]}, +n(a,b,c){throw A.c(A.aa("Cannot assign element of immutable List."))}, +st(a,b){throw A.c(A.aa("Cannot resize immutable List."))}, +gO(a){if(a.length>0)return a[0] +throw A.c(A.R("No elements"))}, +gX(a){var s=a.length +if(s>0)return a[s-1] +throw A.c(A.R("No elements"))}, +gaV(a){var s=a.length +if(s===1)return a[0] +if(s===0)throw A.c(A.R("No elements")) +throw A.c(A.R("More than one element"))}, +cn(a,b){return a[b]}, +$ico:1, +$iao:1, +$icF:1, +$iz:1, +$if:1} +A.SR.prototype={ +gt(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.c(A.f8(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +n(a,b,c){throw A.c(A.aa("Cannot assign element of immutable List."))}, +st(a,b){throw A.c(A.aa("Cannot resize immutable List."))}, +gO(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.c(A.R("No elements"))}, +gX(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.c(A.R("No elements"))}, +gaV(a){var s,r=a.length +if(r===1){s=a[0] +s.toString +return s}if(r===0)throw A.c(A.R("No elements")) +throw A.c(A.R("More than one element"))}, +cn(a,b){return a[b]}, +$ico:1, +$iao:1, +$icF:1, +$iz:1, +$if:1} +A.ane.prototype={ +gt(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.c(A.f8(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +n(a,b,c){throw A.c(A.aa("Cannot assign element of immutable List."))}, +st(a,b){throw A.c(A.aa("Cannot resize immutable List."))}, +gO(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.c(A.R("No elements"))}, +gX(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.c(A.R("No elements"))}, +gaV(a){var s,r=a.length +if(r===1){s=a[0] +s.toString +return s}if(r===0)throw A.c(A.R("No elements")) +throw A.c(A.R("More than one element"))}, +cn(a,b){return a[b]}, +$ico:1, +$iao:1, +$icF:1, +$iz:1, +$if:1} +A.anq.prototype={ +gt(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.c(A.f8(b,s,a,null,null)) +s=a[b] +s.toString +return s}, +n(a,b,c){throw A.c(A.aa("Cannot assign element of immutable List."))}, +st(a,b){throw A.c(A.aa("Cannot resize immutable List."))}, +gO(a){var s +if(a.length>0){s=a[0] +s.toString +return s}throw A.c(A.R("No elements"))}, +gX(a){var s,r=a.length +if(r>0){s=a[r-1] +s.toString +return s}throw A.c(A.R("No elements"))}, +gaV(a){var s,r=a.length +if(r===1){s=a[0] +s.toString +return s}if(r===0)throw A.c(A.R("No elements")) +throw A.c(A.R("More than one element"))}, +cn(a,b){return a[b]}, +$ico:1, +$iao:1, +$icF:1, +$iz:1, +$if:1} +A.aee.prototype={ +uU(a,b,c){var s=t.N +return A.bl_(this,s,s,b,c)}, +cK(a,b,c){var s=this.a,r=s.hasAttribute(b) +r.toString +if(!r)s.setAttribute(b,c.$0()) +s=s.getAttribute(b) +return s==null?A.bm(s):s}, +ab(a){var s,r,q,p,o +for(s=this.gcN(this),r=s.length,q=this.a,p=0;p"))}, +F(a,b){throw A.c(A.aa("Cannot add to immutable List."))}, +I(a,b){throw A.c(A.aa("Cannot add to immutable List."))}, +fw(a,b){throw A.c(A.aa("Cannot sort immutable List."))}, +fB(a,b,c){throw A.c(A.aa("Cannot add to immutable List."))}, +h5(a){throw A.c(A.aa("Cannot remove from immutable List."))}, +E(a,b){throw A.c(A.aa("Cannot remove from immutable List."))}, +cv(a,b,c,d,e){throw A.c(A.aa("Cannot setRange on immutable List."))}, +di(a,b,c,d){return this.cv(a,b,c,d,0)}} +A.Ms.prototype={ +zB(a){return B.b.fa(this.a,new A.aMj(a))}, +uO(a,b,c){return B.b.fa(this.a,new A.aMi(a,b,c))}, +$ioZ:1} +A.aMj.prototype={ +$1(a){return a.zB(this.a)}, +$S:275} +A.aMi.prototype={ +$1(a){return a.uO(this.a,this.b,this.c)}, +$S:275} +A.Uf.prototype={ +an0(a,b,c,d){var s,r,q +this.a.I(0,c) +s=b.jw(0,new A.bck()) +r=b.jw(0,new A.bcl()) +this.b.I(0,s) +q=this.c +q.I(0,B.c3) +q.I(0,r)}, +zB(a){return this.a.p(0,A.Ka(a))}, +uO(a,b,c){var s,r=this,q=A.Ka(a),p=r.c,o=q+"::"+b +if(p.p(0,o))return r.d.aFt(c) +else{s="*::"+b +if(p.p(0,s))return r.d.aFt(c) +else{p=r.b +if(p.p(0,o))return!0 +else if(p.p(0,s))return!0 +else if(p.p(0,q+"::*"))return!0 +else if(p.p(0,"*::*"))return!0}}return!1}, +$ioZ:1} +A.bck.prototype={ +$1(a){return!B.b.p(B.nU,a)}, +$S:11} +A.bcl.prototype={ +$1(a){return B.b.p(B.nU,a)}, +$S:11} +A.anK.prototype={ +uO(a,b,c){if(this.alb(a,b,c))return!0 +if(b==="template"&&c==="")return!0 +if(a.getAttribute("template")==="")return this.e.p(0,b) +return!1}} +A.bdb.prototype={ +$1(a){return"TEMPLATE::"+a}, +$S:18} +A.anr.prototype={ +zB(a){var s +if(t.MF.b(a))return!1 +s=t.ry.b(a) +if(s&&A.Ka(a)==="foreignObject")return!1 +if(s)return!0 +return!1}, +uO(a,b,c){if(b==="is"||B.c.cc(b,"on"))return!1 +return this.zB(a)}, +$ioZ:1} +A.Co.prototype={ +v(){var s=this,r=s.c+1,q=s.b +if(r") +return}if(!l.a.zB(a)){l.Dr(a,b) +window.toString +s=A.i(b) +r=typeof console!="undefined" +r.toString +if(r)window.console.warn("Removing disallowed element <"+e+"> from "+s) +return}if(g!=null)if(!l.a.uO(a,"is",g)){l.Dr(a,b) +window.toString +s=typeof console!="undefined" +s.toString +if(s)window.console.warn("Removing disallowed type extension <"+e+' is="'+g+'">') +return}s=f.gcN(f) +q=A.a(s.slice(0),A.ab(s)) +for(p=f.gcN(f).length-1,s=f.a,r="Removing disallowed attribute <"+e+" ";p>=0;--p){o=q[p] +n=l.a +m=J.bEQ(o) +A.bm(o) +if(!n.uO(a,m,s.getAttribute(o))){window.toString +n=s.getAttribute(o) +m=typeof console!="undefined" +m.toString +if(m)window.console.warn(r+o+'="'+A.i(n)+'">') +s.removeAttribute(o)}}if(t.aW.b(a)){s=a.content +s.toString +l.Yz(s)}}, +afW(a,b){var s=a.nodeType +s.toString +switch(s){case 1:this.aAZ(a,b) +break +case 8:case 11:case 3:case 4:break +default:this.Dr(a,b)}}} +A.bee.prototype={ +$2(a,b){var s,r,q,p,o,n=this.a +n.afW(a,b) +s=a.lastChild +for(;s!=null;){r=null +try{r=s.previousSibling +if(r!=null){q=r.nextSibling +p=s +p=q==null?p!=null:q!==p +q=p}else q=!1 +if(q){q=A.R("Corrupt HTML") +throw A.c(q)}}catch(o){q=s;++n.b +p=q.parentNode +if(a!==p){if(p!=null)p.removeChild(q).toString}else a.removeChild(q).toString +s=null +r=a.lastChild}if(s!=null)this.$2(s,a) +s=r}}, +$S:589} +A.afv.prototype={} +A.age.prototype={} +A.agf.prototype={} +A.agg.prototype={} +A.agh.prototype={} +A.agN.prototype={} +A.agO.prototype={} +A.ahE.prototype={} +A.ahF.prototype={} +A.ajf.prototype={} +A.ajg.prototype={} +A.ajh.prototype={} +A.aji.prototype={} +A.ajA.prototype={} +A.ajB.prototype={} +A.ak3.prototype={} +A.ak4.prototype={} +A.am7.prototype={} +A.Uj.prototype={} +A.Uk.prototype={} +A.anc.prototype={} +A.and.prototype={} +A.ank.prototype={} +A.ao6.prototype={} +A.ao7.prototype={} +A.UQ.prototype={} +A.UR.prototype={} +A.aoi.prototype={} +A.aoj.prototype={} +A.apn.prototype={} +A.apo.prototype={} +A.apx.prototype={} +A.apy.prototype={} +A.apP.prototype={} +A.apQ.prototype={} +A.aqp.prototype={} +A.aqq.prototype={} +A.aqs.prototype={} +A.aqt.prototype={} +A.bcJ.prototype={ +AJ(a){var s,r=this.a,q=r.length +for(s=0;s")),new A.aD4(),r.h("eu"))}, +al(a,b){B.b.al(A.hl(this.gqo(),!1,t.lU),b)}, +n(a,b,c){var s=this.gqo() +J.bEJ(s.b.$1(J.t8(s.a,b)),c)}, +st(a,b){var s=J.b3(this.gqo().a) +if(b>=s)return +else if(b<0)throw A.c(A.bZ("Invalid list length",null)) +this.rn(0,b,s)}, +F(a,b){this.b.a.appendChild(b).toString}, +I(a,b){var s,r +for(s=J.al(b),r=this.b.a;s.v();)r.appendChild(s.gG(s)).toString}, +p(a,b){if(!t.lU.b(b))return!1 +return b.parentNode===this.a}, +fw(a,b){throw A.c(A.aa("Cannot sort filtered list"))}, +cv(a,b,c,d,e){throw A.c(A.aa("Cannot setRange on filtered list"))}, +di(a,b,c,d){return this.cv(a,b,c,d,0)}, +rn(a,b,c){var s=this.gqo() +s=A.blA(s,b,s.$ti.h("z.E")) +B.b.al(A.hl(A.aYN(s,c-b,A.l(s).h("z.E")),!0,t.lU),new A.aD5())}, +ab(a){J.bpo(this.b.a)}, +h5(a){var s=this.gqo(),r=s.b.$1(J.ks(s.a)) +J.I3(r) +return r}, +fB(a,b,c){var s,r +if(b===J.b3(this.gqo().a))this.b.a.appendChild(c).toString +else{s=this.gqo() +r=s.b.$1(J.t8(s.a,b)) +r.parentNode.insertBefore(c,r).toString}}, +E(a,b){return!1}, +gt(a){return J.b3(this.gqo().a)}, +i(a,b){var s=this.gqo() +return s.b.$1(J.t8(s.a,b))}, +gam(a){var s=A.hl(this.gqo(),!1,t.lU) +return new J.cI(s,s.length,A.ab(s).h("cI<1>"))}} +A.aD3.prototype={ +$1(a){return t.lU.b(a)}, +$S:276} +A.aD4.prototype={ +$1(a){return t.lU.a(a)}, +$S:626} +A.aD5.prototype={ +$1(a){return J.I3(a)}, +$S:628} +A.JB.prototype={} +A.ov.prototype={$iov:1} +A.wN.prototype={ +a98(a,b){var s=t.z +return this.apQ(a,b,A.I(s,s))}, +apQ(a,b,c){var s=a.createObjectStore(b,A.byk(c)) +s.toString +return s}, +$iwN:1} +A.L0.prototype={ +acq(a,b,c,d){var s,r,q,p,o,n=null +try{s=null +p=a.open(b,d) +p.toString +s=p +p=s +A.ju(p,"upgradeneeded",c,!1,t.mv) +if(n!=null)A.ju(s,"blocked",n,!1,t.I3) +p=A.beU(s,t.Bk) +return p}catch(o){r=A.ak(o) +q=A.aJ(o) +p=A.oG(r,q,t.Bk) +return p}}} +A.beV.prototype={ +$1(a){this.b.cU(0,new A.o_([],[]).tl(this.a.result,!1))}, +$S:59} +A.D0.prototype={$iD0:1} +A.Mv.prototype={ +A5(a,b){var s,r,q,p +try{q=a.delete(b) +q.toString +q=A.beU(q,t.z) +return q}catch(p){s=A.ak(p) +r=A.aJ(p) +q=A.oG(s,r,t.z) +return q}}, +X4(a,b,c){var s,r,q,p,o +try{s=null +if(c!=null)s=this.a44(a,b,c) +else s=this.azS(a,b) +p=A.beU(s,t.z) +return p}catch(o){r=A.ak(o) +q=A.aJ(o) +p=A.oG(r,q,t.z) +return p}}, +afx(a,b){var s,r,q,p,o +try{p=a.get(b) +p.toString +s=p +p=A.beU(s,t.z) +return p}catch(o){r=A.ak(o) +q=A.aJ(o) +p=A.oG(r,q,t.z) +return p}}, +acr(a,b){var s=a.openCursor(null) +s.toString +return A.bKt(s,!0,t.WS)}, +a44(a,b,c){var s +if(c!=null){s=a.put(new A.Uz([],[]).rt(b),new A.Uz([],[]).rt(c)) +s.toString +return s}s=a.put(new A.Uz([],[]).rt(b)) +s.toString +return s}, +azS(a,b){return this.a44(a,b,null)}} +A.aMu.prototype={ +$1(a){var s=new A.o_([],[]).tl(this.a.result,!1),r=this.b +if(s==null)r.ah(0) +else{r.F(0,s) +r=r.b +if((r&1)!==0)s.continue()}}, +$S:59} +A.vi.prototype={$ivi:1} +A.qO.prototype={ +l(a){var s=""+"OS Error",r=this.a +if(r.length!==0){s=s+": "+r +r=this.b +if(r!==-1)s=s+", errno = "+B.f.l(r)}else{r=this.b +if(r!==-1)s=s+": errno = "+B.f.l(r)}return s.charCodeAt(0)==0?s:s}, +$icv:1} +A.xc.prototype={} +A.jc.prototype={ +JS(a){var s=this,r=""+a,q=s.a +if(q.length!==0){r=r+(": "+q)+(", path = '"+s.b+"'") +q=s.c +if(q!=null)r+=" ("+q.l(0)+")"}else{q=s.c +if(q!=null)r=r+(": "+q.l(0))+(", path = '"+s.b+"'") +else r+=": "+s.b}return r.charCodeAt(0)==0?r:r}, +l(a){return this.JS("FileSystemException")}, +$icv:1} +A.MM.prototype={ +l(a){return this.JS("PathAccessException")}} +A.MN.prototype={ +l(a){return this.JS("PathExistsException")}} +A.MO.prototype={ +l(a){return this.JS("PathNotFoundException")}} +A.agQ.prototype={ +c4(a,b,c,d){var s=this,r=s.a=A.lE(new A.b5t(s),s.gaw9(s),s.gazZ(),!0,t.R) +return new A.d6(r,A.l(r).h("d6<1>")).c4(a,b,c,d)}, +fN(a,b,c){return this.c4(a,null,b,c)}, +lr(a,b,c){return this.c4(a,b,c,null)}, +yS(){var s,r,q=this +if(q.w||q.x)return q.f.a +q.x=!0 +s=q.c.ah(0) +r=q.a +r===$&&A.b() +s.mp(r.gwK()).fu(new A.b5m(q)) +return q.f.a}, +Sd(){var s=this +if(s.w)return +if(s.y){s.yS() +return}s.w=!0 +s.c.hJ(0,65536).be(new A.b5n(s),t.P).mp(new A.b5o(s))}, +awa(a){var s=this,r=new A.b5p(s,new A.b5r(s)),q=new A.b5s(s),p=s.c +if(p!=null)r.$1(p) +else A.brt(s.b).acp(0,B.nh).fj(r,q,t.H)}} +A.b5t.prototype={ +$0(){var s=this.a +s.r=!0 +return s.yS()}, +$S:35} +A.b5m.prototype={ +$0(){var s=this.a +s.f.fm(0) +s=s.a +s===$&&A.b() +s.ah(0)}, +$S:0} +A.b5n.prototype={ +$1(a){var s,r,q,p=this.a +p.w=!1 +if(p.r){p.yS() +return}s=a.length +p.d=p.d+s +if(s!==0)r=!1 +else r=!0 +if(r)p.y=!0 +if(!p.y){r=p.a +r===$&&A.b() +q=r.b +r=!((q&1)!==0?(r.gl1().e&4)!==0:(q&2)===0)}else r=!1 +if(r)p.Sd() +if(s>0){s=p.a +s===$&&A.b() +s.F(0,a)}if(p.y)p.yS()}, +$S:273} +A.b5o.prototype={ +$2(a,b){var s,r=this.a +if(!r.r){s=r.a +s===$&&A.b() +s.dP(a,b) +r.yS() +r.r=!0}}, +$S:124} +A.b5r.prototype={ +$1(a){var s=this.a +s.c=a +s.w=!1 +s.Sd()}, +$S:269} +A.b5p.prototype={ +$1(a){var s=this.a,r=s.d,q=this.b +if(r>0)a.agu(0,r).fj(q,new A.b5q(s),t.H) +else q.$1(a)}, +$S:269} +A.b5q.prototype={ +$2(a,b){var s=this.a,r=s.a +r===$&&A.b() +r.dP(a,b) +s.w=!1 +s.yS()}, +$S:124} +A.b5s.prototype={ +$2(a,b){var s=this.a,r=s.a +r===$&&A.b() +r.dP(a,b) +s.a.ah(0) +s.f.fm(0)}, +$S:55} +A.RN.prototype={ +Lr(){A.bOT(A.bw0(),this.b)}, +acp(a,b){if(b!==B.nh&&b!==B.ni&&b!==B.a2X&&b!==B.vu&&b!==B.a2Y)return A.oG(new A.l3(!1,null,null,"Invalid file mode for this operation"),null,t.YK) +return A.bvS(5,[null,this.b,b.a]).be(new A.b5v(this),t.YK)}, +r6(a){return this.acp(a,B.nh)}, +vy(a){return A.bvS(12,[null,this.b]).be(new A.b5u(this),t.S)}, +aM1(){A.bOU(A.bw0(),this.b)}, +Gf(){return this.r6(0).be(new A.b5x(new A.b5B(),new A.b5y()),t.R)}, +l(a){return"File: '"+this.a+"'"}, +$ia1I:1} +A.b5v.prototype={ +$1(a){var s=this.a.a +A.Wz(a,"Cannot open file",s) +return A.bPy(a,s)}, +$S:267} +A.b5u.prototype={ +$1(a){A.Wz(a,"Cannot retrieve length of file",this.a.a) +return a}, +$S:70} +A.b5B.prototype={ +$1(a){var s=A.a([],t.XE),r=new A.a7($.ac,t.Qy) +new A.b5C(a,new A.b3e(s),new A.aD(r,t.gI)).$0() +return r}, +$S:266} +A.b5C.prototype={ +$0(){var s=this,r=s.c +s.a.hJ(0,65536).fj(new A.b5D(s.b,s,r),r.gKO(),t.P)}, +$S:0} +A.b5D.prototype={ +$1(a){var s=this.a +if(a.length>0){s.F(0,a) +this.b.$0()}else this.c.cU(0,s.aPw())}, +$S:273} +A.b5y.prototype={ +$2(a,b){var s,r={} +r.a=new Uint8Array(b) +r.b=0 +s=new A.a7($.ac,t.Qy) +new A.b5z(r,a,b,new A.aD(s,t.gI)).$0() +return s}, +$S:682} +A.b5z.prototype={ +$0(){var s=this,r=s.a,q=r.a,p=r.b,o=s.c,n=s.d +s.b.aOt(q,p,Math.min(p+16777216,o)).fj(new A.b5A(r,s,o,n),n.gKO(),t.P)}, +$S:0} +A.b5A.prototype={ +$1(a){var s,r,q=this +if(a>0){q.a.b+=a +q.b.$0()}else{s=q.a +r=s.b +if(r")),!0,t.z) +return A.bmO(s[a].apply(s,r))}, +aG6(a){return this.zM(a,null)}, +gu(a){return 0}} +A.Lg.prototype={} +A.xP.prototype={ +a08(a){var s=this,r=a<0||a>=s.gt(s) +if(r)throw A.c(A.cT(a,0,s.gt(s),null,null))}, +i(a,b){if(A.j2(b))this.a08(b) +return this.ai6(0,b)}, +n(a,b,c){if(A.j2(b))this.a08(b) +this.a_6(0,b,c)}, +gt(a){var s=this.a.length +if(typeof s==="number"&&s>>>0===s)return s +throw A.c(A.R("Bad JsArray length"))}, +st(a,b){this.a_6(0,"length",b)}, +F(a,b){this.zM("push",[b])}, +I(a,b){this.zM("push",b instanceof Array?b:A.hl(b,!0,t.z))}, +fB(a,b,c){var s=this,r=b>=s.gt(s)+1 +if(r)A.r(A.cT(b,0,s.gt(s),null,null)) +s.zM("splice",[b,0,c])}, +h5(a){if(this.gt(this)===0)throw A.c(A.cb(-1)) +return this.aG6("pop")}, +cv(a,b,c,d,e){var s,r +A.bJg(b,c,this.gt(this)) +s=c-b +if(s===0)return +r=[b,s] +B.b.I(r,J.arS(d,e).qa(0,s)) +this.zM("splice",r)}, +di(a,b,c,d){return this.cv(a,b,c,d,0)}, +fw(a,b){this.zM("sort",b==null?[]:[b])}, +$iao:1, +$iz:1, +$if:1} +A.GJ.prototype={ +n(a,b,c){return this.ai7(0,b,c)}} +A.bhn.prototype={ +$1(a){var s,r,q,p,o +if(A.bxF(a))return a +s=this.a +if(s.aq(0,a))return s.i(0,a) +if(t.pE.b(a)){r={} +s.n(0,a,r) +for(s=J.c4(a),q=J.al(s.gcN(a));q.v();){p=q.gG(q) +r[p]=this.$1(s.i(a,p))}return r}else if(t.VG.b(a)){o=[] +s.n(0,a,o) +B.b.I(o,J.cx(a,this,t.z)) +return o}else return a}, +$S:105} +A.bhR.prototype={ +$1(a){return this.a.cU(0,a)}, +$S:30} +A.bhS.prototype={ +$1(a){if(a==null)return this.a.kn(new A.a6p(a===undefined)) +return this.a.kn(a)}, +$S:30} +A.bgv.prototype={ +$1(a){var s,r,q,p,o,n,m,l,k,j,i +if(A.bxE(a))return a +s=this.a +a.toString +if(s.aq(0,a))return s.i(0,a) +if(a instanceof Date)return A.n1(a.getTime(),!0) +if(a instanceof RegExp)throw A.c(A.bZ("structured clone of RegExp",null)) +if(typeof Promise!="undefined"&&a instanceof Promise)return A.lP(a,t.X) +r=Object.getPrototypeOf(a) +if(r===Object.prototype||r===null){q=t.X +p=A.I(q,q) +s.n(0,a,p) +o=Object.keys(a) +n=[] +for(s=J.ct(o),q=s.gam(o);q.v();)n.push(A.bnl(q.gG(q))) +for(m=0;m4294967296)throw A.c(A.cb(u.E+a)) +return Math.random()*a>>>0}, +ac8(){return Math.random()<0.5}} +A.ba_.prototype={ +amZ(a){var s,r,q,p,o,n,m,l=this,k=4294967296,j=a<0?-1:0 +do{s=a>>>0 +a=B.f.cE(a-s,k) +r=a>>>0 +a=B.f.cE(a-r,k) +q=(~s>>>0)+(s<<21>>>0) +p=q>>>0 +r=(~r>>>0)+((r<<21|s>>>11)>>>0)+B.f.cE(q-p,k)>>>0 +q=((p^(p>>>24|r<<8))>>>0)*265 +s=q>>>0 +r=((r^r>>>24)>>>0)*265+B.f.cE(q-s,k)>>>0 +q=((s^(s>>>14|r<<18))>>>0)*21 +s=q>>>0 +r=((r^r>>>14)>>>0)*21+B.f.cE(q-s,k)>>>0 +s=(s^(s>>>28|r<<4))>>>0 +r=(r^r>>>28)>>>0 +q=(s<<31>>>0)+s +p=q>>>0 +o=B.f.cE(q-p,k) +q=l.a*1037 +n=l.a=q>>>0 +m=l.b*1037+B.f.cE(q-n,k)>>>0 +l.b=m +n=(n^p)>>>0 +l.a=n +o=(m^r+((r<<31|s>>>1)>>>0)+o>>>0)>>>0 +l.b=o}while(a!==j) +if(o===0&&n===0)l.a=23063 +l.ws() +l.ws() +l.ws() +l.ws()}, +ws(){var s=this,r=s.a,q=4294901760*r,p=q>>>0,o=55905*r,n=o>>>0,m=n+p+s.b +r=m>>>0 +s.a=r +s.b=B.f.cE(o-n+(q-p)+(m-r),4294967296)>>>0}, +xL(a){var s,r,q,p=this +if(a<=0||a>4294967296)throw A.c(A.cb(u.E+a)) +s=a-1 +if((a&s)>>>0===0){p.ws() +return(p.a&s)>>>0}do{p.ws() +r=p.a +q=r%a}while(r-q+a>=4294967296) +return q}, +ac8(){this.ws() +return(this.a&1)===0}} +A.b7r.prototype={ +amX(){var s=self.crypto +if(s!=null)if(s.getRandomValues!=null)return +throw A.c(A.aa("No source of cryptographically secure random numbers available."))}, +xL(a){var s,r,q,p,o,n,m,l,k +if(a<=0||a>4294967296)throw A.c(A.cb(u.E+a)) +if(a>255)if(a>65535)s=a>16777215?4:3 +else s=2 +else s=1 +r=this.a +r.setUint32(0,0,!1) +q=4-s +p=A.ep(Math.pow(256,s)) +for(o=a-1,n=(a&o)===0;!0;){m=r.buffer +m=new Uint8Array(m,q,s) +crypto.getRandomValues(m) +l=r.getUint32(0,!1) +if(n)return(l&o)>>>0 +k=l%a +if(l-k+a>>0!==b||b>=s +s.toString +if(s)throw A.c(A.f8(b,this.gt(a),a,null,null)) +s=a.getItem(b) +s.toString +return s}, +n(a,b,c){throw A.c(A.aa("Cannot assign element of immutable List."))}, +st(a,b){throw A.c(A.aa("Cannot resize immutable List."))}, +gO(a){var s=a.length +s.toString +if(s>0){s=a[0] +s.toString +return s}throw A.c(A.R("No elements"))}, +gX(a){var s=a.length +s.toString +if(s>0){s=a[s-1] +s.toString +return s}throw A.c(A.R("No elements"))}, +gaV(a){var s=a.length +s.toString +if(s===1){s=a[0] +s.toString +return s}if(s===0)throw A.c(A.R("No elements")) +throw A.c(A.R("More than one element"))}, +cn(a,b){return this.i(a,b)}, +$iao:1, +$iz:1, +$if:1} +A.lt.prototype={$ilt:1} +A.a6s.prototype={ +gt(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.c(A.f8(b,this.gt(a),a,null,null)) +s=a.getItem(b) +s.toString +return s}, +n(a,b,c){throw A.c(A.aa("Cannot assign element of immutable List."))}, +st(a,b){throw A.c(A.aa("Cannot resize immutable List."))}, +gO(a){var s=a.length +s.toString +if(s>0){s=a[0] +s.toString +return s}throw A.c(A.R("No elements"))}, +gX(a){var s=a.length +s.toString +if(s>0){s=a[s-1] +s.toString +return s}throw A.c(A.R("No elements"))}, +gaV(a){var s=a.length +s.toString +if(s===1){s=a[0] +s.toString +return s}if(s===0)throw A.c(A.R("No elements")) +throw A.c(A.R("More than one element"))}, +cn(a,b){return this.i(a,b)}, +$iao:1, +$iz:1, +$if:1} +A.a7h.prototype={ +gt(a){return a.length}} +A.Ex.prototype={$iEx:1} +A.aat.prototype={ +gt(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.c(A.f8(b,this.gt(a),a,null,null)) +s=a.getItem(b) +s.toString +return s}, +n(a,b,c){throw A.c(A.aa("Cannot assign element of immutable List."))}, +st(a,b){throw A.c(A.aa("Cannot resize immutable List."))}, +gO(a){var s=a.length +s.toString +if(s>0){s=a[0] +s.toString +return s}throw A.c(A.R("No elements"))}, +gX(a){var s=a.length +s.toString +if(s>0){s=a[s-1] +s.toString +return s}throw A.c(A.R("No elements"))}, +gaV(a){var s=a.length +s.toString +if(s===1){s=a[0] +s.toString +return s}if(s===0)throw A.c(A.R("No elements")) +throw A.c(A.R("More than one element"))}, +cn(a,b){return this.i(a,b)}, +$iao:1, +$iz:1, +$if:1} +A.bh.prototype={ +ghR(a){return new A.a1O(a,new A.ip(a))}, +qJ(a,b,c,d){var s,r,q,p=A.a([],t.qF) +p.push(A.bvZ(null)) +p.push(A.bwt()) +p.push(new A.anr()) +c=new A.aoV(new A.Ms(p)) +p=document +s=p.body +s.toString +r=B.qz.aHJ(s,''+b+"",c) +p=p.createDocumentFragment() +p.toString +s=new A.ip(r) +q=s.gaV(s) +for(;s=q.firstChild,s!=null;)p.appendChild(s).toString +return p}, +$ibh:1} +A.lF.prototype={$ilF:1} +A.abc.prototype={ +gt(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.c(A.f8(b,this.gt(a),a,null,null)) +s=a.getItem(b) +s.toString +return s}, +n(a,b,c){throw A.c(A.aa("Cannot assign element of immutable List."))}, +st(a,b){throw A.c(A.aa("Cannot resize immutable List."))}, +gO(a){var s=a.length +s.toString +if(s>0){s=a[0] +s.toString +return s}throw A.c(A.R("No elements"))}, +gX(a){var s=a.length +s.toString +if(s>0){s=a[s-1] +s.toString +return s}throw A.c(A.R("No elements"))}, +gaV(a){var s=a.length +s.toString +if(s===1){s=a[0] +s.toString +return s}if(s===0)throw A.c(A.R("No elements")) +throw A.c(A.R("More than one element"))}, +cn(a,b){return this.i(a,b)}, +$iao:1, +$iz:1, +$if:1} +A.ain.prototype={} +A.aio.prototype={} +A.ajK.prototype={} +A.ajL.prototype={} +A.ann.prototype={} +A.ano.prototype={} +A.aoo.prototype={} +A.aop.prototype={} +A.a1o.prototype={} +A.Zd.prototype={ +J(){return"ClipOp."+this.b}} +A.a73.prototype={ +J(){return"PathFillType."+this.b}} +A.b3n.prototype={ +hj(a,b){A.bVP(this.a,this.b,a,b)}} +A.Ut.prototype={ +hi(a){A.WQ(this.b,this.c,a)}} +A.rx.prototype={ +gt(a){var s=this.a +return s.gt(s)}, +vH(a){var s,r,q=this +if(!q.d&&q.e!=null){q.e.hj(a.a,a.gabo()) +return!1}s=q.c +if(s<=0)return!0 +r=q.a19(s-1) +q.a.iV(0,a) +return r}, +a19(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.Bn() +A.WQ(q.b,q.c,null)}return r}, +aqz(){var s=this,r=s.a +if(!r.gak(r)&&s.e!=null){r=r.Bn() +s.e.hj(r.a,r.gabo()) +A.fE(s.ga14())}else s.d=!1}} +A.awG.prototype={ +acI(a,b,c){this.a.cK(0,a,new A.awH()).vH(new A.Ut(b,c,$.ac))}, +ags(a,b){var s=this.a.cK(0,a,new A.awI()),r=s.e +s.e=new A.b3n(b,$.ac) +if(r==null&&!s.d){s.d=!0 +A.fE(s.ga14())}}, +aJU(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.eO(a.buffer,a.byteOffset,a.byteLength) +if(j[0]===7){s=j[1] +if(s>=254)throw A.c(A.d8("Unrecognized message sent to dev.flutter/channel-buffers (method name too long)")) +r=2+s +q=B.a_.ha(0,B.M.cT(j,2,r)) +switch(q){case"resize":if(j[r]!==12)throw A.c(A.d8(l)) +p=r+1 +if(j[p]<2)throw A.c(A.d8(l));++p +if(j[p]!==7)throw A.c(A.d8("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.c(A.d8("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.a_.ha(0,B.M.cT(j,p,r)) +if(j[r]!==3)throw A.c(A.d8("Invalid arguments for 'resize' method sent to dev.flutter/channel-buffers (second argument must be an integer in the range 0 to 2147483647)")) +this.ado(0,n,a.getUint32(r+1,B.bo===$.fU())) +break +case"overflow":if(j[r]!==12)throw A.c(A.d8(k)) +p=r+1 +if(j[p]<2)throw A.c(A.d8(k));++p +if(j[p]!==7)throw A.c(A.d8("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.c(A.d8("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.a_.ha(0,B.M.cT(j,p,r)) +r=j[r] +if(r!==1&&r!==2)throw A.c(A.d8("Invalid arguments for 'overflow' method sent to dev.flutter/channel-buffers (second argument must be a boolean)")) +break +default:throw A.c(A.d8("Unrecognized method '"+q+"' sent to dev.flutter/channel-buffers"))}}else{m=A.a(B.a_.ha(0,j).split("\r"),t.s) +if(m.length===3&&J.j(m[0],"resize"))this.ado(0,m[1],A.eq(m[2],null,null)) +else throw A.c(A.d8("Unrecognized message "+A.i(m)+" sent to dev.flutter/channel-buffers."))}}, +ado(a,b,c){var s=this.a,r=s.i(0,b) +if(r==null)s.n(0,b,new A.rx(A.oP(c,t.S8),c)) +else{r.c=c +r.a19(c)}}} +A.awH.prototype={ +$0(){return new A.rx(A.oP(1,t.S8),1)}, +$S:265} +A.awI.prototype={ +$0(){return new A.rx(A.oP(1,t.S8),1)}, +$S:265} +A.a6u.prototype={ +k(a,b){if(b==null)return!1 +return b instanceof A.a6u&&b.a===this.a&&b.b===this.b}, +gu(a){return A.X(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)}, +l(a){return"OffsetBase("+B.e.aF(this.a,1)+", "+B.e.aF(this.b,1)+")"}} +A.m.prototype={ +ge9(){var s=this.a,r=this.b +return Math.sqrt(s*s+r*r)}, +gAj(){var s=this.a,r=this.b +return s*s+r*r}, +a4(a,b){return new A.m(this.a-b.a,this.b-b.b)}, +U(a,b){return new A.m(this.a+b.a,this.b+b.b)}, +av(a,b){return new A.m(this.a*b,this.b*b)}, +i7(a,b){return new A.m(this.a/b,this.b/b)}, +k(a,b){if(b==null)return!1 +return b instanceof A.m&&b.a===this.a&&b.b===this.b}, +gu(a){return A.X(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)}, +l(a){return"Offset("+B.e.aF(this.a,1)+", "+B.e.aF(this.b,1)+")"}} +A.U.prototype={ +gak(a){return this.a<=0||this.b<=0}, +a4(a,b){var s=this +if(b instanceof A.U)return new A.m(s.a-b.a,s.b-b.b) +if(b instanceof A.m)return new A.U(s.a-b.a,s.b-b.b) +throw A.c(A.bZ(b,null))}, +U(a,b){return new A.U(this.a+b.a,this.b+b.b)}, +av(a,b){return new A.U(this.a*b,this.b*b)}, +i7(a,b){return new A.U(this.a/b,this.b/b)}, +mr(a){return new A.m(a.a+this.a/2,a.b+this.b/2)}, +E5(a,b){return new A.m(b.a+this.a,b.b+this.b)}, +p(a,b){var s=b.a +if(s>=0)if(s=0&&s=1/0||s.b>=1/0||s.c>=1/0||s.d>=1/0}, +gFt(a){var s=this +return isFinite(s.a)&&isFinite(s.b)&&isFinite(s.c)&&isFinite(s.d)}, +gak(a){var s=this +return s.a>=s.c||s.b>=s.d}, +dq(a){var s=this,r=a.a,q=a.b +return new A.L(s.a+r,s.b+q,s.c+r,s.d+q)}, +bi(a,b,c){var s=this +return new A.L(s.a+b,s.b+c,s.c+b,s.d+c)}, +e6(a){var s=this +return new A.L(s.a-a,s.b-a,s.c+a,s.d+a)}, +hh(a){var s=this +return new A.L(Math.max(s.a,a.a),Math.max(s.b,a.b),Math.min(s.c,a.c),Math.min(s.d,a.d))}, +oY(a){var s=this +return new A.L(Math.min(s.a,a.a),Math.min(s.b,a.b),Math.max(s.c,a.c),Math.max(s.d,a.d))}, +G1(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}, +gix(){var s=this +return Math.min(Math.abs(s.c-s.a),Math.abs(s.d-s.b))}, +gaPZ(){var s=this.a +return new A.m(s+(this.c-s)/2,this.b)}, +gTY(){var s=this.b +return new A.m(this.a,s+(this.d-s)/2)}, +gbM(){var s=this,r=s.a,q=s.b +return new A.m(r+(s.c-r)/2,q+(s.d-q)/2)}, +ga8e(){var s=this.b +return new A.m(this.c,s+(this.d-s)/2)}, +gaFP(){var s=this.a +return new A.m(s+(this.c-s)/2,this.d)}, +p(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}, +ym(){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.Iy(s.Iy(s.Iy(s.Iy(1,l,k,m),j,i,p),h,g,m),f,e,p) +if(d<1)return new A.lx(q,n,r,o,j*d,k*d,i*d,h*d,f*d,g*d,e*d,l*d,!1) +return new A.lx(q,n,r,o,j,k,i,h,f,g,e,l,!1)}, +p(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.ym() +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.p(s)!==J.a_(b))return!1 +return b instanceof A.lx&&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.X(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)}, +l(a){var s,r,q=this,p=B.e.aF(q.a,1)+", "+B.e.aF(q.b,1)+", "+B.e.aF(q.c,1)+", "+B.e.aF(q.d,1),o=q.e,n=q.f,m=q.r,l=q.w +if(new A.b8(o,n).k(0,new A.b8(m,l))){s=q.x +r=q.y +s=new A.b8(m,l).k(0,new A.b8(s,r))&&new A.b8(s,r).k(0,new A.b8(q.z,q.Q))}else s=!1 +if(s){if(o===n)return"RRect.fromLTRBR("+p+", "+B.e.aF(o,1)+")" +return"RRect.fromLTRBXY("+p+", "+B.e.aF(o,1)+", "+B.e.aF(n,1)+")"}return"RRect.fromLTRBAndCorners("+p+", topLeft: "+new A.b8(o,n).l(0)+", topRight: "+new A.b8(m,l).l(0)+", bottomRight: "+new A.b8(q.x,q.y).l(0)+", bottomLeft: "+new A.b8(q.z,q.Q).l(0)+")"}} +A.Lk.prototype={ +J(){return"KeyEventType."+this.b}} +A.kC.prototype={ +awK(){var s=this.d +return"0x"+B.f.of(s,16)+new A.aHM(B.e.eC(s/4294967296)).$0()}, +ar0(){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+'"'}}, +azU(){var s=this.e +if(s==null)return"" +return" (0x"+new A.ad(new A.i2(s),new A.aHN(),t.Hz.h("ad")).ck(0," ")+")"}, +l(a){var s=this,r=A.bJj(s.b),q=B.f.of(s.c,16),p=s.awK(),o=s.ar0(),n=s.azU(),m=s.f?", synthesized":"" +return"KeyData(type: "+r+", physical: 0x"+q+", logical: "+p+", character: "+o+n+m+")"}} +A.aHM.prototype={ +$0(){switch(this.a){case 0:return" (Unicode)" +case 1:return" (Unprintable)" +case 2:return" (Flutter)" +case 23:return" (Web)"}return""}, +$S:15} +A.aHN.prototype={ +$1(a){return B.c.eP(B.f.of(a,16),2,"0")}, +$S:297} +A.e.prototype={ +a8u(){var s=this +return 0.2126*A.bjF((s.gj(s)>>>16&255)/255)+0.7152*A.bjF((s.gj(s)>>>8&255)/255)+0.0722*A.bjF((s.gj(s)&255)/255)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.e&&b.gj(b)===s.gj(s)}, +gu(a){return B.f.gu(this.gj(this))}, +l(a){return"Color(0x"+B.c.eP(B.f.of(this.gj(this),16),8,"0")+")"}, +gj(a){return this.a}} +A.P3.prototype={ +J(){return"StrokeCap."+this.b}} +A.aaw.prototype={ +J(){return"StrokeJoin."+this.b}} +A.a70.prototype={ +J(){return"PaintingStyle."+this.b}} +A.q0.prototype={ +J(){return"BlendMode."+this.b}} +A.By.prototype={ +J(){return"Clip."+this.b}} +A.auu.prototype={ +J(){return"BlurStyle."+this.b}} +A.ye.prototype={ +k(a,b){if(b==null)return!1 +return b instanceof A.ye&&b.a===this.a&&b.b===this.b}, +gu(a){return A.X(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)}, +l(a){return"MaskFilter.blur("+this.a.l(0)+", "+B.e.aF(this.b,1)+")"}} +A.xd.prototype={ +J(){return"FilterQuality."+this.b}} +A.bkE.prototype={} +A.uU.prototype={ +c0(a,b){return new A.uU(this.a,this.b.av(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.uU&&b.a.k(0,s.a)&&b.b.k(0,s.b)&&b.c===s.c}, +gu(a){return A.X(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)}, +l(a){return"TextShadow("+this.a.l(0)+", "+this.b.l(0)+", "+A.i(this.c)+")"}} +A.tV.prototype={ +gt(a){return this.b}} +A.aNl.prototype={} +A.tN.prototype={ +l(a){var s,r=A.p(this).l(0),q=this.a,p=A.dW(q[2],0,0),o=q[1],n=A.dW(o,0,0),m=q[4],l=A.dW(m,0,0),k=A.dW(q[3],0,0) +o=A.dW(o,0,0) +s=q[0] +return r+"(buildDuration: "+(A.i((p.a-n.a)*0.001)+"ms")+", rasterDuration: "+(A.i((l.a-k.a)*0.001)+"ms")+", vsyncOverhead: "+(A.i((o.a-A.dW(s,0,0).a)*0.001)+"ms")+", totalSpan: "+(A.i((A.dW(m,0,0).a-A.dW(s,0,0).a)*0.001)+"ms")+", layerCacheCount: "+q[6]+", layerCacheBytes: "+q[7]+", pictureCacheCount: "+q[8]+", pictureCacheBytes: "+q[9]+", frameNumber: "+B.b.gX(q)+")"}} +A.oj.prototype={ +J(){return"AppLifecycleState."+this.b}} +A.Im.prototype={ +J(){return"AppExitResponse."+this.b}} +A.di.prototype={ +ge0(a){var s=this.a,r=B.cQ.i(0,s) +return r==null?s:r}, +geW(){var s=this.c,r=B.dr.i(0,s) +return r==null?s:r}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +return b instanceof A.di&&b.ge0(b)===s.ge0(s)&&b.b==s.b&&b.geW()==s.geW()}, +gu(a){var s=this +return A.X(s.ge0(s),s.b,s.geW(),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +l(a){return this.t5("_")}, +t5(a){var s=this,r=s.ge0(s),q=s.b +if(q!=null)r+=a+q +if(s.c!=null)r+=a+A.i(s.geW()) +return r.charCodeAt(0)==0?r:r}} +A.ayd.prototype={ +J(){return"DartPerformanceMode."+this.b}} +A.EF.prototype={} +A.qV.prototype={ +J(){return"PointerChange."+this.b}} +A.p5.prototype={ +J(){return"PointerDeviceKind."+this.b}} +A.DQ.prototype={ +J(){return"PointerSignalKind."+this.b}} +A.p4.prototype={ +l(a){return"PointerData(x: "+A.i(this.x)+", y: "+A.i(this.y)+")"}} +A.N_.prototype={} +A.f0.prototype={ +l(a){return"SemanticsAction."+this.b}} +A.en.prototype={ +l(a){return"SemanticsFlag."+this.b}} +A.aU4.prototype={} +A.uv.prototype={ +J(){return"PlaceholderAlignment."+this.b}} +A.lZ.prototype={ +l(a){var s=B.ak0.i(0,this.a) +s.toString +return s}} +A.lY.prototype={ +k(a,b){if(b==null)return!1 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.lY&&b.a===this.a&&b.b===this.b}, +gu(a){return A.X(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)}, +l(a){return"FontVariation('"+this.a+"', "+A.i(this.b)+")"}} +A.nK.prototype={ +J(){return"TextAlign."+this.b}} +A.Pi.prototype={ +J(){return"TextBaseline."+this.b}} +A.Pl.prototype={ +k(a,b){if(b==null)return!1 +return b instanceof A.Pl&&b.a===this.a}, +gu(a){return B.f.gu(this.a)}, +l(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.ck(s,", ")+"])"}} +A.aYW.prototype={ +J(){return"TextDecorationStyle."+this.b}} +A.aaU.prototype={ +J(){return"TextLeadingDistribution."+this.b}} +A.Po.prototype={ +k(a,b){var s +if(b==null)return!1 +if(J.a_(b)!==A.p(this))return!1 +if(b instanceof A.Po)s=b.c===this.c +else s=!1 +return s}, +gu(a){return A.X(!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)}, +l(a){return"TextHeightBehavior(applyHeightToFirstAscent: true, applyHeightToLastDescent: true, leadingDistribution: "+this.c.l(0)+")"}} +A.mr.prototype={ +J(){return"TextDirection."+this.b}} +A.hs.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.hs&&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.X(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)}, +l(a){var s=this +return"TextBox.fromLTRBD("+B.e.aF(s.a,1)+", "+B.e.aF(s.b,1)+", "+B.e.aF(s.c,1)+", "+B.e.aF(s.d,1)+", "+s.e.l(0)+")"}} +A.Ph.prototype={ +J(){return"TextAffinity."+this.b}} +A.bW.prototype={ +k(a,b){if(b==null)return!1 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.bW&&b.a===this.a&&b.b===this.b}, +gu(a){return A.X(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)}, +l(a){return A.p(this).l(0)+"(offset: "+this.a+", affinity: "+this.b.l(0)+")"}} +A.dl.prototype={ +gdf(){return this.a>=0&&this.b>=0}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +return b instanceof A.dl&&b.a===this.a&&b.b===this.b}, +gu(a){return A.X(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)}, +l(a){return"TextRange(start: "+this.a+", end: "+this.b+")"}} +A.ur.prototype={ +k(a,b){if(b==null)return!1 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.ur&&b.a===this.a}, +gu(a){return B.e.gu(this.a)}, +l(a){return A.p(this).l(0)+"(width: "+A.i(this.a)+")"}} +A.Yx.prototype={ +J(){return"BoxHeightStyle."+this.b}} +A.auy.prototype={ +J(){return"BoxWidthStyle."+this.b}} +A.ab3.prototype={ +J(){return"TileMode."+this.b}} +A.azi.prototype={} +A.Cs.prototype={} +A.a9t.prototype={} +A.Bf.prototype={ +J(){return"Brightness."+this.b}} +A.avz.prototype={ +k(a,b){if(b==null)return!1 +return this===b}, +gu(a){return A.C.prototype.gu.call(this,this)}} +A.a2f.prototype={ +k(a,b){var s +if(b==null)return!1 +if(J.a_(b)!==A.p(this))return!1 +if(b instanceof A.a2f)s=!0 +else s=!1 +return s}, +gu(a){return A.X(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)}, +l(a){return"GestureSettings(physicalTouchSlop: null, physicalDoubleTapSlop: null)"}} +A.asK.prototype={ +ya(a){var s,r,q +if(A.dR(a,0,null).gaaU())return A.kn(B.nR,a,B.a_,!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.kn(B.nR,s+"assets/"+a,B.a_,!1)}} +A.bge.prototype={ +$1(a){return this.aeW(a)}, +$0(){return this.$1(null)}, +$C:"$1", +$R:0, +$D(){return[null]}, +aeW(a){var s=0,r=A.y(t.H) +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=2 +return A.t(A.bhg(a),$async$$1) +case 2:return A.w(null,r)}}) +return A.x($async$$1,r)}, +$S:755} +A.bgf.prototype={ +$0(){var s=0,r=A.y(t.P),q=this +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:q.a.$0() +s=2 +return A.t(A.bnx(),$async$$0) +case 2:q.b.$0() +return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:53} +A.av3.prototype={ +Yl(a){return $.bxG.cK(0,a,new A.av4(a))}} +A.av4.prototype={ +$0(){return t.e.a(A.cH(this.a))}, +$S:166} +A.aFH.prototype={ +Tx(a){var s=new A.aFK(a) +A.dV(self.window,"popstate",B.qL.Yl(s),null) +return new A.aFJ(this,s)}, +afD(){var s=self.window.location.hash +if(s.length===0||s==="#")return"/" +return B.c.cm(s,1)}, +Ys(a){return A.br1(self.window.history)}, +acC(a){var s,r=a.length===0||a==="/"?"":"#"+a,q=self.window.location.pathname +if(q==null)q=null +q.toString +s=self.window.location.search +if(s==null)s=null +s.toString +return q+s+r}, +acQ(a,b,c,d){var s=this.acC(d),r=self.window.history,q=A.b1(b) +if(q==null)q=t.K.a(q) +r.pushState(q,c,s)}, +xZ(a,b,c,d){var s,r=this.acC(d),q=self.window.history +if(b==null)s=null +else{s=A.b1(b) +if(s==null)s=t.K.a(s)}q.replaceState(s,c,r)}, +yk(a,b){var s=self.window.history +s.go(b) +return this.aEN()}, +aEN(){var s=new A.a7($.ac,t.b),r=A.b6("unsubscribe") +r.b=this.Tx(new A.aFI(r,new A.aD(s,t.gR))) +return s}} +A.aFK.prototype={ +$1(a){var s=t.e.a(a).state +if(s==null)s=null +else{s=A.bnl(s) +s.toString}this.a.$1(s)}, +$S:762} +A.aFJ.prototype={ +$0(){var s=this.b +A.i3(self.window,"popstate",B.qL.Yl(s),null) +$.bxG.E(0,s) +return null}, +$S:0} +A.aFI.prototype={ +$1(a){this.a.aH().$0() +this.b.fm(0)}, +$S:12} +A.aNr.prototype={} +A.Y1.prototype={ +gt(a){return a.length}} +A.Y2.prototype={ +aq(a,b){return A.mJ(a.get(b))!=null}, +i(a,b){return A.mJ(a.get(b))}, +al(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.mJ(s.value[1]))}}, +gcN(a){var s=A.a([],t.s) +this.al(a,new A.ato(s)) +return s}, +gbp(a){var s=A.a([],t.n4) +this.al(a,new A.atp(s)) +return s}, +gt(a){var s=a.size +s.toString +return s}, +gak(a){var s=a.size +s.toString +return s===0}, +gd2(a){var s=a.size +s.toString +return s!==0}, +n(a,b,c){throw A.c(A.aa("Not supported"))}, +cK(a,b,c){throw A.c(A.aa("Not supported"))}, +E(a,b){throw A.c(A.aa("Not supported"))}, +$ia6:1} +A.ato.prototype={ +$2(a,b){return this.a.push(a)}, +$S:43} +A.atp.prototype={ +$2(a,b){return this.a.push(b)}, +$S:43} +A.Y3.prototype={ +gt(a){return a.length}} +A.tf.prototype={} +A.a6t.prototype={ +gt(a){return a.length}} +A.aef.prototype={} +A.BV.prototype={ +F(a,b){this.a.F(0,b)}, +dP(a,b){this.a.dP(a,b)}, +ah(a){return this.a.ah(0)}, +$iei:1} +A.a9s.prototype={ +td(a){var s=A.b6("subscription"),r=A.lE(new A.aVa(s),null,null,!0,this.$ti.z[1]) +s.b=a.fN(new A.aVb(this,r),r.gdV(r),r.gwK()) +return new A.d6(r,A.l(r).h("d6<1>"))}} +A.aVa.prototype={ +$0(){return J.bpp(this.a.aH())}, +$S:2} +A.aVb.prototype={ +$1(a){var s,r,q,p +try{this.b.F(0,this.a.$ti.z[1].a(a))}catch(q){p=A.ak(q) +if(t.ns.b(p)){s=p +r=A.aJ(q) +this.b.dP(s,r)}else throw q}}, +$S(){return this.a.$ti.h("~(1)")}} +A.IR.prototype={ +A(a){var s=this,r=null,q=r,p=A.bLG(r,r,s.c) +return new A.Mx(p,r,q,s.gaxL(),s.gaxJ(),B.B,B.ei,B.d_,B.bD,B.bB,s.ay,s.ch,s.CW,B.a7,B.fn,!1,r,r,B.hv,!1,r)}, +axM(a,b){var s,r +if(b!=null){s=b.b +r=b.a}else{s=null +r=0}return this.x.$3(a,this.e,new A.lc(s,r))}, +axK(a,b,c){return this.y.$3(a,this.e,b)}} +A.tl.prototype={ +MC(a){return new A.cC(this,t.FB)}, +FG(a,b){var s=A.lE(null,null,null,!1,t.oA),r=A.bsU(new A.d6(s,A.l(s).h("d6<1>")),this.awB(a,s,b),new A.avt(this,a),1) +return r}, +awB(a,b,c){var s=this +return new A.a2T().aMf(s.b,s.c,b,c,s.a,s.r,s.w,s.f,s.x,new A.avr(a))}, +FH(a,b){var s=A.lE(null,null,null,!1,t.oA),r=A.bsU(new A.d6(s,A.l(s).h("d6<1>")),this.awF(a,s,b),new A.avu(this,a),1) +return r}, +awF(a,b,c){var s=this +return new A.a2T().aMi(s.b,s.c,b,c,s.a,s.r,s.w,s.f,s.x,new A.avs(a))}, +k(a,b){var s +if(b==null)return!1 +if(b instanceof A.tl){s=b.b +if(this.b===s)s=!0 +else s=!1 +return s}return!1}, +gu(a){return A.X(this.b,1,this.r,this.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,B.a,B.a,B.a,B.a)}, +l(a){return'CachedNetworkImageProvider("'+this.b+'", scale: 1)'}} +A.avt.prototype={ +$0(){return new A.kl(this.aey(),t.Ua)}, +aey(){var s=this +return function(){var r=0,q=1,p,o +return function $async$$0(a,b,c){if(b===1){p=c +r=q}while(true)switch(r){case 0:o=s.a +r=2 +return a.b=A.lb("Image provider: "+o.l(0)+" \n Image key: "+s.b.l(0),o,!0,B.bq,null,!1,null,null,B.aW,null,!1,!0,!0,B.cg,null,t.bi),1 +case 2:return 0 +case 1:return a.c=p,3}}}}, +$S:262} +A.avr.prototype={ +$0(){var s=$.jm.v9$ +s===$&&A.b() +return s.V6(this.a)}, +$S:0} +A.avu.prototype={ +$0(){return new A.kl(this.aez(),t.Ua)}, +aez(){var s=this +return function(){var r=0,q=1,p,o +return function $async$$0(a,b,c){if(b===1){p=c +r=q}while(true)switch(r){case 0:o=s.a +r=2 +return a.b=A.lb("Image provider: "+o.l(0)+" \n Image key: "+s.b.l(0),o,!0,B.bq,null,!1,null,null,B.aW,null,!1,!0,!0,B.cg,null,t.bi),1 +case 2:return 0 +case 1:return a.c=p,3}}}}, +$S:262} +A.avs.prototype={ +$0(){var s=$.jm.v9$ +s===$&&A.b() +return s.V6(this.a)}, +$S:0} +A.a67.prototype={ +amJ(a,b,c,d){var s=this +b.abP(new A.aLd(s),new A.aLe(s,c)) +s.cy=a.abP(s.gaP0(),new A.aLf(s,c))}, +axm(a){var s,r,q=this,p=q.db=!1,o=q.a +if(o.length===0)return +s=q.ch +if(s==null||a.a-q.ay.a>=s.a){s=q.ax +q.a3m(new A.lk(s.glp(s),q.as,null)) +q.ay=a +s=q.ax +q.ch=s.gEH(s) +q.ax=null +if(B.f.aJ(q.CW,q.z.gvp())===0?q.Q!=null:p){q.CW=0 +q.cx=null +p=q.Q +p.toString +q.z=p +if(o.length!==0)q.wq() +q.Q=null}else{r=B.f.i9(q.CW,q.z.gvp()) +if(q.z.gBr()===-1||r<=q.z.gBr())q.wq()}return}s.toString +q.cx=A.d0(new A.bj(B.f.bg(s.a-(a.a-q.ay.a))),q.gaxn())}, +wq(){var s=0,r=A.y(t.H),q,p=2,o,n=this,m,l,k,j,i +var $async$wq=A.u(function(a,b){if(a===1){o=b +s=p}while(true)switch(s){case 0:p=4 +s=7 +return A.t(n.z.pt(),$async$wq) +case 7:n.ax=b +p=2 +s=6 +break +case 4:p=3 +i=o +m=A.ak(i) +l=A.aJ(i) +n.y_(A.c0("resolving an image frame"),m,n.at,!0,l) +s=1 +break +s=6 +break +case 3:s=2 +break +case 6:if(n.z.gvp()===1){if(n.a.length===0){s=1 +break}j=n.ax +n.a3m(new A.lk(j.glp(j),n.as,null)) +s=1 +break}n.a3n() +case 1:return A.w(q,r) +case 2:return A.v(o,r)}}) +return A.x($async$wq,r)}, +a3n(){if(this.db)return +this.db=!0 +$.cB.Hj(this.gaxl())}, +a3m(a){this.YU(a);++this.CW}, +P(a,b){var s=this +s.dx=!0 +if(s.a.length===0&&s.z!=null)s.wq() +s.Zv(0,b)}, +H(a,b){var s,r=this +r.Zw(0,b) +if(r.a.length===0){s=r.cx +if(s!=null)s.aI(0) +r.cx=null +r.a_i()}}, +ii(){var s=this.ahY();++this.fr +return new A.b8z(this,s)}, +a_i(){var s,r=this +if(!r.dx||r.dy||r.a.length!==0||r.fr!==0)return +r.dy=!0 +s=r.cy +if(s!=null)s.iJ(null) +s=r.cy +if(s!=null)s.aI(0) +r.cy=null}} +A.aLd.prototype={ +$1(a){var s=this.a +if(s.cx!=null)s.Q=a +else{s.z=a +if(s.a.length!==0)s.wq()}}, +$S:261} +A.aLe.prototype={ +$2(a,b){this.a.y_(A.c0("resolving an image codec"),a,this.b,!0,b)}, +$S:26} +A.aLf.prototype={ +$2(a,b){this.a.y_(A.c0("loading an image"),a,this.b,!0,b)}, +$S:26} +A.b8z.prototype={ +m(){this.b.m() +var s=this.a;--s.fr +s.a_i() +this.a=null}} +A.a2U.prototype={ +J(){return"ImageRenderMethodForWeb."+this.b}} +A.a2T.prototype={ +aMf(a,b,c,d,e,f,g,h,i,j){return this.a35(a,b,c,new A.aH1(d),e,f,g,h,i,j)}, +aMi(a,b,c,d,e,f,g,h,i,j){return this.a35(a,b,c,new A.aH2(d),e,f,g,h,i,j)}, +a35(a,b,c,d,e,f,g,h,i,j){var s +switch(i.a){case 1:return this.t2(a,b,c,d,e,f,g,h,j) +case 0:s=this.awz(a,c) +return A.bMM(s,s.$ti.c)}}, +t2(a,b,c,d,e,f,g,h,i){return this.awA(a,b,c,d,e,f,g,h,i)}, +awA(a,a0,a1,a2,a3,a4,a5,a6,a7){var $async$t2=A.u(function(a8,a9){switch(a8){case 2:n=q +s=n.pop() +break +case 1:o=a9 +s=p}while(true)switch(s){case 0:p=4 +i=A.lE(null,null,null,!1,t.cL) +a3.zi(i,a,a,a6,!0) +h=new A.o8(A.fu(new A.d6(i,A.l(i).h("d6<1>")),"stream",t.K),t.r2) +p=7 +g=A.l(a1).h("j0<1>") +case 10:s=12 +return A.hY(h.v(),$async$t2,r) +case 12:if(!a9){s=11 +break}m=h.gG(h) +if(m instanceof A.lc){f=new A.jS(m.c,m.b) +e=a1.b +if(e>=4)A.r(a1.qm()) +if((e&1)!==0)a1.oN(f) +else if((e&3)===0){e=a1.z_() +f=new A.j0(f,g) +d=e.c +if(d==null)e.b=e.c=f +else{d.snt(0,f) +e.c=f}}}s=m instanceof A.oD?13:14 +break +case 13:l=m.b +s=15 +return A.hY(l.Gf(),$async$t2,r) +case 15:k=a9 +s=16 +return A.hY(a2.$1(k),$async$t2,r) +case 16:j=a9 +s=17 +q=[1,8] +return A.hY(A.bmn(j),$async$t2,r) +case 17:case 14:s=10 +break +case 11:n.push(9) +s=8 +break +case 7:n=[4] +case 8:p=4 +s=18 +return A.hY(h.aI(0),$async$t2,r) +case 18:s=n.pop() +break +case 9:p=2 +s=6 +break +case 4:p=3 +b=o +A.fE(new A.aH0(a7)) +throw b +s=6 +break +case 3:s=2 +break +case 6:s=19 +return A.hY(a1.ah(0),$async$t2,r) +case 19:case 1:return A.hY(null,0,r) +case 2:return A.hY(o,1,r)}}) +var s=0,r=A.bn1($async$t2,t.hP),q,p=2,o,n=[],m,l,k,j,i,h,g,f,e,d,c,b +return A.bn7(r)}, +awz(a,b){var s=A.abx().L(a) +return $.au().Ma(s,new A.aH_(b))}} +A.aH1.prototype={ +$1(a){return this.aeD(a)}, +aeD(a){var s=0,r=A.y(t.hP),q,p=this,o +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:o=p.a +s=3 +return A.t(A.a2V(a),$async$$1) +case 3:q=o.$1(c) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$$1,r)}, +$S:259} +A.aH2.prototype={ +$1(a){return this.aeE(a)}, +aeE(a){var s=0,r=A.y(t.hP),q,p=this,o +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:o=p.a +s=3 +return A.t(A.a2V(a),$async$$1) +case 3:q=o.$1(c) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$$1,r)}, +$S:259} +A.aH0.prototype={ +$0(){this.a.$0()}, +$S:0} +A.aH_.prototype={ +$2(a,b){this.a.F(0,new A.jS(a,b))}, +$S:884} +A.fq.prototype={ +gam(a){return new A.F5(this.a,0,0)}, +gO(a){var s=this.a,r=s.length +return r===0?A.r(A.R("No element")):B.c.S(s,0,new A.mW(s,r,0,176).ly())}, +gX(a){var s=this.a,r=s.length +return r===0?A.r(A.R("No element")):B.c.cm(s,new A.B7(s,0,r,176).ly())}, +gaV(a){var s=this.a,r=s.length +if(r===0)throw A.c(A.R("No element")) +if(new A.mW(s,r,0,176).ly()===r)return s +throw A.c(A.R("Too many elements"))}, +gak(a){return this.a.length===0}, +gd2(a){return this.a.length!==0}, +gt(a){var s,r,q=this.a,p=q.length +if(p===0)return 0 +s=new A.mW(q,p,0,176) +for(r=0;s.ly()>=0;)++r +return r}, +ck(a,b){var s +if(b==="")return this.a +s=this.a +return A.bRr(s,0,s.length,b,"")}, +q5(a,b,c){var s,r,q=this.a,p=q.length,o=new A.B7(q,0,p,176) +for(;s=o.ly(),s>=0;p=s){r=B.c.S(q,s,p) +if(b.$1(r))return r}if(c!=null)return c.$0() +throw A.c(A.R("No element"))}, +cn(a,b){var s,r,q,p,o,n +A.fN(b,"index") +s=this.a +r=s.length +if(r!==0){q=new A.mW(s,r,0,176) +for(p=0,o=0;n=q.ly(),n>=0;o=n){if(p===b)return B.c.S(s,o,n);++p}}else p=0 +throw A.c(A.a2Y(b,this,"index",null,p))}, +p(a,b){var s +if(typeof b!="string")return!1 +s=b.length +if(s===0)return!1 +if(new A.mW(b,s,0,176).ly()!==s)return!1 +s=this.a +return A.bRX(s,b,0,s.length)>=0}, +a5i(a,b,c){var s,r +if(a===0||b===this.a.length)return b +s=this.a +c=new A.mW(s,s.length,b,176) +do{r=c.ly() +if(r<0)break +if(--a,a>0){b=r +continue}else{b=r +break}}while(!0) +return b}, +lX(a,b){A.fN(b,"count") +return this.aCh(b)}, +aCh(a){var s=this.a5i(a,0,null),r=this.a +if(s===r.length)return B.c1 +return new A.fq(B.c.cm(r,s))}, +qa(a,b){A.fN(b,"count") +return this.aD1(b)}, +aD1(a){var s=this.a5i(a,0,null),r=this.a +if(s===r.length)return this +return new A.fq(B.c.S(r,0,s))}, +jw(a,b){var s=this.Cq(0,b).q4(0) +if(s.length===0)return B.c1 +return new A.fq(s)}, +U(a,b){return new A.fq(this.a+b.a)}, +By(a){return new A.fq(this.a.toLowerCase())}, +k(a,b){if(b==null)return!1 +return b instanceof A.fq&&this.a===b.a}, +gu(a){return B.c.gu(this.a)}, +l(a){return this.a}} +A.F5.prototype={ +gG(a){var s=this,r=s.d +return r==null?s.d=B.c.S(s.a,s.b,s.c):r}, +v(){return this.HZ(1,this.c)}, +HZ(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;s0;s=q){q=r.ly() +if(q<0)break;--a}p.b=s +p.c=b +p.d=null +return a===0}} +A.mW.prototype={ +ly(){var s,r,q,p,o,n,m,l=this,k=u.S +for(s=l.b,r=l.a;q=l.c,qs;){p=k.c=q-1 +o=r.charCodeAt(p) +if((o&64512)!==56320){p=k.d=j.charCodeAt(k.d&240|A.AI(o)) +if(((p>=208?k.d=A.bhs(r,s,k.c,p):p)&1)===0)return q +continue}if(p>=s){n=r.charCodeAt(p-1) +if((n&64512)===55296){m=A.pT(n,o) +p=--k.c}else m=2}else m=2 +l=k.d=j.charCodeAt(k.d&240|m) +if(((l>=208?k.d=A.bhs(r,s,p,l):l)&1)===0)return q}p=k.d=j.charCodeAt(k.d&240|15) +if(((p>=208?k.d=A.bhs(r,s,q,p):p)&1)===0)return k.c +return-1}} +A.axn.prototype={} +A.cW.prototype={ +i(a,b){var s,r=this +if(!r.IQ(b))return null +s=r.c.i(0,r.a.$1(r.$ti.h("cW.K").a(b))) +return s==null?null:s.b}, +n(a,b,c){var s,r=this +if(!r.IQ(b))return +s=r.$ti +r.c.n(0,r.a.$1(b),new A.aS(b,c,s.h("@").V(s.h("cW.V")).h("aS<1,2>")))}, +I(a,b){b.al(0,new A.avA(this))}, +uU(a,b,c){var s=this.c +return s.uU(s,b,c)}, +aq(a,b){var s=this +if(!s.IQ(b))return!1 +return s.c.aq(0,s.a.$1(s.$ti.h("cW.K").a(b)))}, +gdX(a){var s=this.c +return s.gdX(s).ik(0,new A.avB(this),this.$ti.h("aS"))}, +al(a,b){this.c.al(0,new A.avC(this,b))}, +gak(a){return this.c.a===0}, +gd2(a){return this.c.a!==0}, +gcN(a){var s=this.c +s=s.gbp(s) +return A.oT(s,new A.avD(this),A.l(s).h("z.E"),this.$ti.h("cW.K"))}, +gt(a){return this.c.a}, +qZ(a,b,c,d){var s=this.c +return s.qZ(s,new A.avE(this,b,c,d),c,d)}, +cK(a,b,c){return this.c.cK(0,this.a.$1(b),new A.avF(this,b,c)).b}, +E(a,b){var s,r=this +if(!r.IQ(b))return null +s=r.c.E(0,r.a.$1(r.$ti.h("cW.K").a(b))) +return s==null?null:s.b}, +gbp(a){var s=this.c +s=s.gbp(s) +return A.oT(s,new A.avG(this),A.l(s).h("z.E"),this.$ti.h("cW.V"))}, +l(a){return A.a4_(this)}, +IQ(a){var s +if(this.$ti.h("cW.K").b(a))s=!0 +else s=!1 +return s}, +$ia6:1} +A.avA.prototype={ +$2(a,b){this.a.n(0,a,b) +return b}, +$S(){return this.a.$ti.h("~(cW.K,cW.V)")}} +A.avB.prototype={ +$1(a){var s=a.b,r=this.a.$ti +return new A.aS(s.a,s.b,r.h("@").V(r.h("cW.V")).h("aS<1,2>"))}, +$S(){return this.a.$ti.h("aS(aS>)")}} +A.avC.prototype={ +$2(a,b){return this.b.$2(b.a,b.b)}, +$S(){return this.a.$ti.h("~(cW.C,aS)")}} +A.avD.prototype={ +$1(a){return a.a}, +$S(){return this.a.$ti.h("cW.K(aS)")}} +A.avE.prototype={ +$2(a,b){return this.b.$2(b.a,b.b)}, +$S(){return this.a.$ti.V(this.c).V(this.d).h("aS<1,2>(cW.C,aS)")}} +A.avF.prototype={ +$0(){var s=this.a.$ti +return new A.aS(this.b,this.c.$0(),s.h("@").V(s.h("cW.V")).h("aS<1,2>"))}, +$S(){return this.a.$ti.h("aS()")}} +A.avG.prototype={ +$1(a){return a.b}, +$S(){return this.a.$ti.h("cW.V(aS)")}} +A.a0H.prototype={ +d7(a,b){return J.j(a,b)}, +dl(a,b){return J.T(b)}} +A.xK.prototype={ +d7(a,b){var s,r,q,p +if(a===b)return!0 +s=J.al(a) +r=J.al(b) +for(q=this.a;!0;){p=s.v() +if(p!==r.v())return!1 +if(!p)return!0 +if(!q.d7(s.gG(s),r.gG(r)))return!1}}, +dl(a,b){var s,r,q +for(s=J.al(b),r=this.a,q=0;s.v();){q=q+r.dl(0,s.gG(s))&2147483647 +q=q+(q<<10>>>0)&2147483647 +q^=q>>>6}q=q+(q<<3>>>0)&2147483647 +q^=q>>>11 +return q+(q<<15>>>0)&2147483647}} +A.y1.prototype={ +d7(a,b){var s,r,q,p,o +if(a===b)return!0 +s=J.aj(a) +r=s.gt(a) +q=J.aj(b) +if(r!==q.gt(b))return!1 +for(p=this.a,o=0;o>>0)&2147483647 +q^=q>>>6}q=q+(q<<3>>>0)&2147483647 +q^=q>>>11 +return q+(q<<15>>>0)&2147483647}} +A.vO.prototype={ +d7(a,b){var s,r,q,p,o +if(a===b)return!0 +s=this.a +r=A.cA(s.gaIH(),s.gaKD(s),s.gaLN(),A.l(this).h("vO.E"),t.S) +for(s=J.al(a),q=0;s.v();){p=s.gG(s) +o=r.i(0,p) +r.n(0,p,(o==null?0:o)+1);++q}for(s=J.al(b);s.v();){p=s.gG(s) +o=r.i(0,p) +if(o==null||o===0)return!1 +r.n(0,p,o-1);--q}return q===0}, +dl(a,b){var s,r,q +for(s=J.al(b),r=this.a,q=0;s.v();)q=q+r.dl(0,s.gG(s))&2147483647 +q=q+(q<<3>>>0)&2147483647 +q^=q>>>11 +return q+(q<<15>>>0)&2147483647}} +A.FH.prototype={} +A.EL.prototype={} +A.GO.prototype={ +gu(a){var s=this.a +return 3*s.a.dl(0,this.b)+7*s.b.dl(0,this.c)&2147483647}, +k(a,b){var s +if(b==null)return!1 +if(b instanceof A.GO){s=this.a +s=s.a.d7(this.b,b.b)&&s.b.d7(this.c,b.c)}else s=!1 +return s}} +A.yc.prototype={ +d7(a,b){var s,r,q,p,o,n,m +if(a===b)return!0 +s=J.aj(a) +r=J.aj(b) +if(s.gt(a)!==r.gt(b))return!1 +q=A.cA(null,null,null,t.PJ,t.S) +for(p=J.al(s.gcN(a));p.v();){o=p.gG(p) +n=new A.GO(this,o,s.i(a,o)) +m=q.i(0,n) +q.n(0,n,(m==null?0:m)+1)}for(s=J.al(r.gcN(b));s.v();){o=s.gG(s) +n=new A.GO(this,o,r.i(b,o)) +m=q.i(0,n) +if(m==null||m===0)return!1 +q.n(0,n,m-1)}return!0}, +dl(a,b){var s,r,q,p,o,n,m,l,k +for(s=J.c4(b),r=J.al(s.gcN(b)),q=this.a,p=this.b,o=this.$ti.z[1],n=0;r.v();){m=r.gG(r) +l=q.dl(0,m) +k=s.i(b,m) +n=n+3*l+7*p.dl(0,k==null?o.a(k):k)&2147483647}n=n+(n<<3>>>0)&2147483647 +n^=n>>>11 +return n+(n<<15>>>0)&2147483647}} +A.a0F.prototype={ +d7(a,b){var s,r=this,q=t.Ro +if(q.b(a))return q.b(b)&&new A.EL(r,t.n5).d7(a,b) +q=t.f +if(q.b(a))return q.b(b)&&new A.yc(r,r,t.Dx).d7(a,b) +if(!r.b){q=t.j +if(q.b(a))return q.b(b)&&new A.y1(r,t.wO).d7(a,b) +q=t.JY +if(q.b(a))return q.b(b)&&new A.xK(r,t.K9).d7(a,b)}else{q=t.JY +if(q.b(a)){s=t.j +if(s.b(a)!==s.b(b))return!1 +return q.b(b)&&new A.FH(r,t.N2).d7(a,b)}}return J.j(a,b)}, +dl(a,b){var s=this +if(t.Ro.b(b))return new A.EL(s,t.n5).dl(0,b) +if(t.f.b(b))return new A.yc(s,s,t.Dx).dl(0,b) +if(!s.b){if(t.j.b(b))return new A.y1(s,t.wO).dl(0,b) +if(t.JY.b(b))return new A.xK(s,t.K9).dl(0,b)}else if(t.JY.b(b))return new A.FH(s,t.N2).dl(0,b) +return J.T(b)}, +aLO(a){!t.JY.b(a) +return!0}} +A.a2x.prototype={ +Ij(a){var s=this.b[a] +if(s==null){this.$ti.c.a(null) +s=null}return s}, +gt(a){return this.c}, +l(a){var s=this.b +return A.bsk(A.fQ(s,0,A.fu(this.c,"count",t.S),A.ab(s).c),"(",")")}, +anR(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.wW.prototype={ +k(a,b){var s,r,q,p,o +if(b==null)return!1 +if(b instanceof A.wW){s=this.a +r=b.a +q=s.length +if(q!==r.length)return!1 +for(p=0,o=0;o>>0)-s,q=0;q1125899906842623)throw A.c(A.aa("Hashing is unsupported for messages with more than 2^53 bits.")) +p=r*8 +o=l.b +l.I(0,new Uint8Array(8)) +n=A.lq(l.a.buffer,0,null) +n.setUint32(o,B.f.cE(p,4294967296),!1) +n.setUint32(o+4,p>>>0,!1)}} +A.amA.prototype={ +kf(a){var s=new Uint32Array(5),r=new Uint32Array(80),q=new Uint8Array(0),p=new Uint32Array(16) +s[0]=1732584193 +s[1]=4023233417 +s[2]=2562383102 +s[3]=271733878 +s[4]=3285377520 +return new A.QM(new A.bcd(s,r,a,p,new A.abh(q,0)))}} +A.bcd.prototype={ +aQf(a){var s,r,q,p,o,n=this.w,m=n[0],l=n[1],k=n[2],j=n[3],i=n[4] +for(s=this.x,r=0;r<80;++r,i=j,j=k,k=o,l=m,m=p){if(r<16)s[r]=a[r] +else{q=s[r-3]^s[r-8]^s[r-14]^s[r-16] +s[r]=(q<<1|q>>>31)>>>0}p=(((m<<5|m>>>27)>>>0)+i>>>0)+s[r]>>>0 +if(r<20)p=(p+((l&k|~l&j)>>>0)>>>0)+1518500249>>>0 +else if(r<40)p=(p+((l^k^j)>>>0)>>>0)+1859775393>>>0 +else p=r<60?(p+((l&k|l&j|k&j)>>>0)>>>0)+2400959708>>>0:(p+((l^k^j)>>>0)>>>0)+3395469782>>>0 +o=(l<<30|l>>>2)>>>0}n[0]=m+n[0]>>>0 +n[1]=l+n[1]>>>0 +n[2]=k+n[2]>>>0 +n[3]=j+n[3]>>>0 +n[4]=i+n[4]>>>0}, +ga9B(){return this.w}} +A.z4.prototype={} +A.auM.prototype={ +Lu(a,b,c,d){return this.aIT(0,b,c,d)}, +aIT(a1,a2,a3,a4){var s=0,r=A.y(t.Ol),q,p=this,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0 +var $async$Lu=A.u(function(a5,a6){if(a5===1)return A.v(a6,r) +while(true)switch(s){case 0:b={} +a=new XMLHttpRequest() +a.toString +p.a.F(0,a) +o=a2.a +o===$&&A.b() +B.xv.aNC(a,o,a2.gho().l(0)) +a.responseType="arraybuffer" +n=a2.y +n===$&&A.b() +m=n.i(0,"withCredentials") +if(m!=null)a.withCredentials=J.j(m,!0) +else a.withCredentials=!1 +n=a2.b +n===$&&A.b() +n.E(0,"content-length") +a2.b.al(0,new A.auO(a)) +l=a2.Ly$ +if(l==null)l=B.B +k=a2.e +if(k==null)k=B.B +n=l.a +j=B.f.cE(n+k.a,1000) +a.timeout=j +i=new A.a7($.ac,t.A6) +h=new A.aD(i,t.rM) +g=t.fg +f=new A.kT(a,"load",!1,g) +e=t.P +f.gO(f).be(new A.auP(a,h,a2),e) +b.a=null +n=n>0?b.a=A.d0(l,new A.auQ(b,h,a,a2,l)):null +f=a3!=null +if(f)if(n!=null){n=a.upload +n.toString +A.ju(n,"progress",new A.auR(b),!1,t._p)}d=new A.k9() +$.kp() +b.b=null +A.ju(a,"progress",new A.auS(b,new A.av_(b,k,d,h,a,a2,new A.auZ(b,d)),a2),!1,t._p) +n=new A.kT(a,"error",!1,g) +n.gO(n).be(new A.auT(b,h,a2),e) +g=new A.kT(a,"timeout",!1,g) +g.gO(g).be(new A.auU(b,h,l,a2,j),e) +if(a4!=null)a4.be(new A.auV(b,a,h,a2),e) +s=f?3:5 +break +case 3:if(o==="GET")A.ik() +b=new A.a7($.ac,t.Qy) +h=new A.aD(b,t.gI) +c=new A.QN(new A.auW(h),new Uint8Array(1024)) +a3.c4(c.gjH(c),!0,c.gdV(c),new A.auX(h)) +a0=a +s=6 +return A.t(b,$async$Lu) +case 6:a0.send(a6) +s=4 +break +case 5:a.send() +case 4:q=i.fu(new A.auY(p,a)) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Lu,r)}} +A.auO.prototype={ +$2(a,b){var s=this.a +if(t.JY.b(b))s.setRequestHeader(a,J.AS(b,", ")) +else s.setRequestHeader(a,J.cU(b))}, +$S:43} +A.auP.prototype={ +$1(a){var s,r,q,p,o=this.a,n=A.eO(t.pI.a(A.bQZ(o.response)),0,null),m=o.status +m.toString +s=B.xv.gaPb(o) +r=t.N +s=s.qZ(s,new A.auN(),r,t.yp) +q=o.statusText +p=o.status +o=p===302||p===301||this.c.gho().l(0)!==o.responseURL +p=A.blH(n,t.R) +this.b.cU(0,new A.z4(o,p,m,q,s,A.I(r,t.z)))}, +$S:147} +A.auN.prototype={ +$2(a,b){return new A.aS(a,A.a(b.split(","),t.s),t.Kc)}, +$S:887} +A.auQ.prototype={ +$0(){var s,r=this +r.a.a=null +s=r.b +if((s.a.a&30)!==0)return +r.c.abort() +s.fc(A.bqE(r.d,r.e),A.ik())}, +$S:0} +A.auR.prototype={ +$1(a){var s=this.a,r=s.a +if(r!=null)r.aI(0) +s.a=null}, +$S:119} +A.auZ.prototype={ +$0(){var s=this.a,r=s.b +if(r!=null)r.aI(0) +s.b=null +s=this.b +if(s.b==null)s.b=$.N5.$0()}, +$S:0} +A.av_.prototype={ +$0(){var s,r,q=this,p=q.b +if(p.a<=0)return +s=q.c +s.iN(0) +if(s.b!=null)s.rM(0) +s=q.a +r=s.b +if(r!=null)r.aI(0) +s.b=A.d0(p,new A.av0(q.d,q.e,p,q.f,q.r))}, +$S:0} +A.av0.prototype={ +$0(){var s=this,r=s.a +if((r.a.a&30)===0){s.b.abort() +r.fc(A.bqF(s.d,s.c),A.ik())}s.e.$0()}, +$S:0} +A.auS.prototype={ +$1(a){var s=this.a,r=s.a +if(r!=null){r.aI(0) +s.a=null}this.b.$0()}, +$S:119} +A.auT.prototype={ +$1(a){var s=this.a.a +if(s!=null)s.aI(0) +this.b.fc(A.bGT("The XMLHttpRequest onError callback was called. This typically indicates an error on the network layer.",this.c),A.ik())}, +$S:147} +A.auU.prototype={ +$1(a){var s,r=this,q=r.a.a,p=q!=null +if(p)q.aI(0) +q=r.b +if((q.a.a&30)===0){s=r.d +if(p)q.kn(A.bqE(s,r.c)) +else q.fc(A.bqF(s,A.dW(0,r.e,0)),A.ik())}}, +$S:147} +A.auV.prototype={ +$1(a){var s,r=this,q=r.b,p=q.readyState +p.toString +if(p<4&&p>0){p=r.a.a +if(p!=null)p.aI(0) +try{q.abort()}catch(s){}q=r.c +if((q.a.a&30)===0)q.kn(A.BY("The XMLHttpRequest was aborted.",u.g,r.d,null,null,B.jj))}}, +$S:19} +A.auW.prototype={ +$1(a){return this.a.cU(0,a)}, +$S:136} +A.auX.prototype={ +$2(a,b){return this.a.fc(a,b)}, +$S:14} +A.auY.prototype={ +$0(){this.a.a.E(0,this.b)}, +$S:4} +A.i0.prototype={ +a8c(a,b){var s,r=null,q=this.c +if(q==null)q=A.btN(r,r,r,r,r,r,r,r,r,r,r,r,r,"",r,r,r,r,r,r,r,r,r,r,r) +q=A.BY(b,u.g,q,r,A.ik(),B.jj) +this.b=q +s=this.a +if((s.a.a&30)===0)s.cU(0,q)}, +aI(a){return this.a8c(a,null)}} +A.ayH.prototype={} +A.ag6.prototype={} +A.ty.prototype={ +J(){return"DioExceptionType."+this.b}} +A.hJ.prototype={ +l(a){var s="DioException ["+A.bON(this.c)+"]: "+A.i(this.f),r=this.d +return r!=null?s+("\nError: "+A.i(r)):s}, +$icv:1} +A.ayI.prototype={ +y0(a,b,c,d,e,f,g,h,i){return this.aP4(0,b,c,d,e,f,g,h,i,i.h("fy<0>"))}, +aP3(a,b,c,d,e,f,g,h){return this.y0(a,b,c,d,e,null,f,g,h)}, +aP2(a,b,c,d,e,f,g){return this.y0(a,b,c,d,null,null,e,f,g)}, +aP4(a5,a6,a7,a8,a9,b0,b1,b2,b3,b4){var s=0,r=A.y(b4),q,p=this,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4 +var $async$y0=A.u(function(b5,b6){if(b5===1)return A.v(b6,r) +while(true)switch(s){case 0:a4=p.Lz$ +a4===$&&A.b() +o=A.ik() +n=t.N +m=t.z +l=A.I(n,m) +k=a4.EY$ +k===$&&A.b() +l.I(0,k) +if(b2!=null)l.I(0,b2) +k=a4.b +k===$&&A.b() +j=A.WI(k,m) +i=j.i(0,"content-type") +k=a4.y +k===$&&A.b() +h=A.bkP(k,n,m) +n=b1.a +if(n==null){n=a4.a +n===$&&A.b()}m=a4.ve$ +m===$&&A.b() +k=a4.c +k===$&&A.b() +g=a4.Ly$ +f=a4.e +e=a4.r +e===$&&A.b() +d=a4.w +d===$&&A.b() +c=a4.x +c===$&&A.b() +b=a4.z +b===$&&A.b() +a=a4.Q +a===$&&A.b() +a0=a4.as +a0===$&&A.b() +a1=a4.ay +a1===$&&A.b() +a2=i==null?null:i +if(a2==null)a2=A.af(a4.b.i(0,"content-type")) +a3=A.btN(m,a7,g,a2,a8,h,b,j,a1,a,n.toUpperCase(),a9,b0,a6,a0,k,l,c,f,a4.at,a4.ax,e,a4.d,o,d) +d=a3.cy +if(d!=null)d.c=a3 +q=p.Vb(0,a3,b3) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$y0,r)}, +Vb(a,b,c){return this.aIU(0,b,c,c.h("fy<0>"))}, +aIU(a,b,c,a0){var s=0,r=A.y(a0),q,p=this,o,n,m,l,k,j,i,h,g,f,e,d +var $async$Vb=A.u(function(a1,a2){if(a1===1)return A.v(a2,r) +while(true)switch(s){case 0:d={} +d.a=b +if(A.cs(c)!==B.pR){o=b.r +o===$&&A.b() +o=!(o===B.Nu||o===B.p_)}else o=!1 +if(o)if(A.cs(c)===B.pO)b.r=B.apx +else b.r=B.fS +n=new A.ayS(d) +m=new A.ayV(d) +l=new A.ayP(d) +o=t.z +k=A.Cx(new A.ayL(d),o) +for(j=p.aIW$,i=A.l(j),h=i.h("c2"),g=new A.c2(j,j.gt(j),h),i=i.h("ae.E");g.v();){f=g.d +e=(f==null?i.a(f):f).gMQ() +k=k.be(n.$1(e),o)}k=k.be(n.$1(new A.ayM(d,p,c)),o) +for(g=new A.c2(j,j.gt(j),h);g.v();){f=g.d +e=(f==null?i.a(f):f).gWH() +k=k.be(m.$1(e),o)}for(o=new A.c2(j,j.gt(j),h);o.v();){j=o.d +if(j==null)j=i.a(j) +e=j.gtS(j) +k=k.mp(l.$1(e))}q=k.be(new A.ayN(d,c),c.h("fy<0>")).mp(new A.ayO(d,c)) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Vb,r)}, +wh(a,b){return this.aqi(a,b)}, +aqi(a4,a5){var s=0,r=A.y(t.k8),q,p=2,o,n=this,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3 +var $async$wh=A.u(function(a6,a7){if(a6===1){o=a7 +s=p}while(true)switch(s){case 0:a2=a4.cy +p=4 +s=7 +return A.t(n.JW(a4),$async$wh) +case 7:m=a7 +f=n.aa2$ +f===$&&A.b() +e=a2 +e=e==null?null:e.a.a +s=8 +return A.t(f.Lu(0,a4,m,e),$async$wh) +case 8:l=a7 +e=l.f +f=a4.c +f===$&&A.b() +k=A.brY(e,f) +l.f=k.b +l.toString +f=A.a([],t.Bw) +e=l.a +d=l.c +c=l.d +j=A.a8w(null,l.r,k,e,f,a4,d,c,t.z) +i=a4.aQt(l.c) +if(!i){f=a4.x +f===$&&A.b()}else f=!0 +s=f?9:11 +break +case 9:s=12 +return A.t(n.aa3$.NF(a4,l),$async$wh) +case 12:h=a7 +if(typeof h=="string")if(J.b3(h)===0)if(A.cs(a5)!==B.pR)if(A.cs(a5)!==B.pO){f=a4.r +f===$&&A.b() +f=f===B.fS}else f=!1 +else f=!1 +else f=!1 +else f=!1 +if(f)h=null +j.a=h +s=10 +break +case 11:s=13 +return A.t(l.b.B1(null).aI(0),$async$wh) +case 13:case 10:f=a2 +b=f==null?null:f.b +if(b!=null)A.r(b) +if(i){q=j +s=1 +break}else{f=l.c +if(f>=100&&f<200)a="This is an informational response - the request was received, continuing processing" +else if(f>=200&&f<300)a="The request was successfully received, understood, and accepted" +else if(f>=300&&f<400)a="Redirection: further action needs to be taken in order to complete the request" +else if(f>=400&&f<500)a="Client error - the request contains bad syntax or cannot be fulfilled" +else a=f>=500&&f<600?"Server error - the server failed to fulfil an apparently valid request":"A response with a status code that is not within the range of inclusive 100 to exclusive 600is a non-standard response, possibly due to the server's software" +a0=A.bMO("") +f=""+f +a0.BN("This exception was thrown because the response has a status code of "+f+" and RequestOptions.validateStatus was configured to throw for this status code.") +a0.BN("The status code of "+f+' has the following meaning: "'+a+'"') +a0.BN("Read more about status codes at https://developer.mozilla.org/en-US/docs/Web/HTTP/Status") +a0.BN("In order to resolve this exception you typically have either to verify and fix your request code or you have to fix the server code.") +f=A.BY(null,a0.l(0),a4,j,null,B.a1G) +throw A.c(f)}p=2 +s=6 +break +case 4:p=3 +a3=o +g=A.ak(a3) +f=A.bk_(g,a4) +throw A.c(f) +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$wh,r)}, +awg(a){var s,r,q +for(s=new A.i2(a),r=t.Hz,s=new A.c2(s,s.gt(s),r.h("c2")),r=r.h("ae.E");s.v();){q=s.d +if(q==null)q=r.a(q) +if(q>=128||" ! #$%&' *+ -. 0123456789 ABCDEFGHIJKLMNOPQRSTUVWXYZ ^_`abcdefghijklmnopqrstuvwxyz | ~ ".charCodeAt(q)===32)return!1}return!0}, +JW(a){return this.aDJ(a)}, +aDJ(a){var s=0,r=A.y(t.Dt),q,p=this,o,n,m,l,k,j,i,h,g,f,e,d +var $async$JW=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:e={} +d=a.a +d===$&&A.b() +if(!p.awg(d))throw A.c(A.fh(a.gaME(a),"method",null)) +o=a.CW +s=o!=null?3:4 +break +case 3:e.a=null +s=o instanceof A.KI?5:7 +break +case 5:d=a.b +d===$&&A.b() +n=o.a +n===$&&A.b() +d.n(0,"content-type","multipart/form-data; boundary="+n) +m=o.Vi() +l=o.gt(o) +e.a=l +a.b.n(0,"content-length",B.f.l(l)) +s=6 +break +case 7:s=8 +return A.t(p.aa3$.XG(a),$async$JW) +case 8:k=c +j=B.aV.cV(k) +l=j.length +e.a=l +d=a.b +d===$&&A.b() +d.n(0,"content-length",B.f.l(l)) +i=A.a([],t.Zb) +h=B.e.eV(j.length/1024) +for(g=0;g(@)")}} +A.ayO.prototype={ +$1(a){var s,r=a instanceof A.fx +if(r)if(a.b===B.y1)return A.bqG(a.a,this.a.a,this.b) +s=r?a.a:a +throw A.c(A.bk_(s,this.a.a))}, +$S(){return this.b.h("fy<0>(C)")}} +A.ayY.prototype={ +$1(a){return A.r(a)}, +$S:342} +A.CU.prototype={ +J(){return"InterceptorResultType."+this.b}} +A.fx.prototype={} +A.b2t.prototype={} +A.z3.prototype={ +fs(a,b){this.a.cU(0,new A.fx(b,B.dN,t.FN))}, +adp(a,b){this.a.cU(0,new A.fx(a,B.y2,t.Pm))}} +A.z5.prototype={ +fs(a,b){this.a.cU(0,new A.fx(b,B.dN,t.Pm))}} +A.x3.prototype={ +fs(a,b){this.a.fc(new A.fx(b,B.dN,t.oF),b.e)}} +A.kA.prototype={ +pg(a,b){b.fs(0,a)}, +r5(a,b){b.fs(0,a)}, +nC(a,b,c){c.fs(0,b)}} +A.ai2.prototype={ +pg(a,b){this.a.$2(a,b)}, +r5(a,b){b.fs(0,a)}, +nC(a,b,c){c.fs(0,b)}} +A.a35.prototype={} +A.a34.prototype={ +gt(a){return this.a.length}, +st(a,b){B.b.st(this.a,b)}, +i(a,b){var s=this.a[b] +s.toString +return s}, +n(a,b,c){var s=this.a +if(s.length===b)s.push(c) +else s[b]=c}} +A.ai3.prototype={} +A.KI.prototype={ +amz(a,b,c){this.a="--dio-boundary-"+B.c.eP(B.f.l(B.hc.xL(4294967296)),10,"0") +A.bnn(a,new A.aDU(this),!1,!1,b)}, +a2C(a){var s={},r=a.b,q='content-disposition: form-data; name="'+A.i(this.I5(a.a))+'"' +s.a=q +q=q+'; filename="'+A.i(this.I5(r.b))+'"' +s.a=q +s.a=q+"\r\ncontent-type: "+r.d.l(0) +r.c.al(0,new A.aDV(s)) +return s.a+"\r\n\r\n"}, +I5(a){var s=A.eF(a,this.b,"%0D%0A") +return A.eF(s,'"',"%22")}, +gt(a){var s,r,q,p,o,n,m=this +for(s=m.c,r=s.length,q=0,p=0;p"))}} +A.aDU.prototype={ +$2(a,b){var s,r=this.a +if(b instanceof A.uj)r.d.push(new A.aS(a,b,t.YB)) +else{s=b==null?null:J.cU(b) +if(s==null)s="" +r.c.push(new A.aS(a,s,t.mT))}return null}, +$S:346} +A.aDV.prototype={ +$2(a,b){var s,r,q +for(s=J.al(b),r=this.a;s.v();){q=s.gG(s) +r.a=r.a+"\r\n"+a+": "+q}}, +$S:257} +A.aDZ.prototype={ +$1(a){this.a.F(0,B.aV.cV(a))}, +$S:25} +A.aE0.prototype={ +$1(a){return this.a.F(0,B.aV.cV(a))}, +$S:25} +A.aE_.prototype={ +$0(){return this.a.F(0,A.a([13,10],t.t))}, +$S:0} +A.aDX.prototype={ +$1(a){var s=this,r=s.b,q=s.a,p=q.a +p===$&&A.b() +r.$1("--"+p+"\r\n") +r.$1(q.a2C(a)) +q=a.b +if(q.f)A.r(A.R("The MultipartFile has already been finalized. This typically means you are using the same MultipartFile in repeated requests.")) +q.f=!0 +return A.bYW(q.e.$0(),s.c).be(new A.aDW(s.d),t.z)}, +$S:373} +A.aDW.prototype={ +$1(a){return this.a.$0()}, +$S:30} +A.aDY.prototype={ +$1(a){var s=this.a.a +s===$&&A.b() +this.b.$1("--"+s+"--\r\n") +this.c.ah(0)}, +$S:19} +A.KU.prototype={ +i(a,b){return this.b.i(0,B.c.dn(b))}, +agi(a,b,c){var s,r +if(c==null)return +b=B.c.dn(b) +s=this.b +if(t.j.b(c)){r=J.cx(c,new A.aFM(),t.N) +s.n(0,b,A.a8(r,!0,A.l(r).h("av.E")))}else s.n(0,b,A.a([B.c.dn(A.i(c))],t.s))}, +al(a,b){var s,r,q,p +for(s=this.b,r=A.ie(s,s.r,A.l(s).c);r.v();){q=r.d +p=s.i(0,B.c.dn(q)) +p.toString +b.$2(q,p)}}, +l(a){var s,r=new A.d_("") +this.b.al(0,new A.aFN(r)) +s=r.a +return s.charCodeAt(0)==0?s:s}} +A.aFL.prototype={ +$2(a,b){return new A.aS(B.c.dn(a),b,t.Kc)}, +$S:375} +A.aFM.prototype={ +$1(a){return A.i(a)}, +$S:36} +A.aFN.prototype={ +$2(a,b){var s,r,q +for(s=J.al(b),r=this.a,q=a+": ";s.v();)r.a+=q+s.gG(s)+"\n"}, +$S:257} +A.L2.prototype={ +pg(a,b){var s,r,q=a.CW +if(q!=null){s=a.b +s===$&&A.b() +s=A.af(s.i(0,"content-type"))==null}else s=!1 +if(s){if(q instanceof A.KI)r="multipart/form-data" +else if(t.f.b(q)||!1)r="application/json" +else{A.p(q).l(0) +A.ik() +r=null}a.sUc(0,r)}b.fs(0,a)}} +A.uj.prototype={ +gt(a){return this.a}} +A.aLH.prototype={ +$0(){return A.buo(A.a([this.a],t.Zb),t.Cm)}, +$S:383} +A.Em.prototype={ +J(){return"ResponseType."+this.b}} +A.a3E.prototype={ +J(){return"ListFormat."+this.b}} +A.a6y.prototype={ +sUa(a){if(a!=null&&a.a<0)throw A.c(A.R("connectTimeout should be positive")) +this.Ly$=a}} +A.atT.prototype={} +A.aMz.prototype={} +A.lB.prototype={ +gho(){var s,r,q,p,o=this,n=o.cx +if(!B.c.cc(n,A.bE("https?:",!0,!1,!1))){s=o.ve$ +s===$&&A.b() +n=s+n +r=n.split(":/") +if(r.length===2){s=A.i(r[0]) +q=r[1] +n=s+":/"+A.eF(q,"//","/")}}s=o.EY$ +s===$&&A.b() +q=o.ay +q===$&&A.b() +p=A.bND(s,q) +if(p.length!==0)n+=(B.c.p(n,"?")?"&":"?")+p +return A.dR(n,0,null).aca()}} +A.bbc.prototype={ +a_e(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,a0){var s,r,q=this,p="content-type" +q.saaW(0,d) +s=q.b +s===$&&A.b() +r=s.aq(0,p) +if(a!=null&&r&&!J.j(q.b.i(0,p),a))throw A.c(A.fh(a,"contentType","Unable to set different values for `contentType` and the content-type header.")) +if(!r)q.sUc(0,a)}, +gaME(a){var s=this.a +s===$&&A.b() +return s}, +saaW(a,b){var s=this,r="content-type",q=A.WI(b,t.z) +s.b=q +if(!q.aq(0,r)&&s.f!=null)s.b.n(0,r,s.f)}, +sUc(a,b){var s,r="content-type",q=b==null?null:B.c.dn(b) +this.f=q +s=this.b +if(q!=null){s===$&&A.b() +s.n(0,r,q)}else{s===$&&A.b() +s.E(0,r)}}, +gaQs(){var s=this.w +s===$&&A.b() +return s}, +aQt(a){return this.gaQs().$1(a)}} +A.aep.prototype={} +A.alP.prototype={} +A.bfY.prototype={ +$2(a,b){var s,r="Stream is already closed",q=this.a,p=q.cy +if(p!=null&&p.b!=null){p.c=q +q=p.b +q.toString +b.pF(q) +q=b.a +if((q.e&2)!==0)A.r(A.R(r)) +q.P2()}else{q=b.a +if(t.R.b(a)){if((q.e&2)!==0)A.r(A.R(r)) +q.HR(0,a)}else{s=new Uint8Array(A.mI(a)) +if((q.e&2)!==0)A.r(A.R(r)) +q.HR(0,s)}}}, +$S(){return this.b.h("~(0,ei)")}} +A.fy.prototype={ +l(a){var s=this.a +if(t.f.b(s))return B.az.pQ(s) +return J.cU(s)}} +A.b_E.prototype={} +A.b_F.prototype={ +$2(a,b){if(b==null)return a +return a+"="+A.kn(B.fv,J.cU(b),B.a_,!0)}, +$S:256} +A.b_G.prototype={ +$2(a,b){if(b==null)return a +return a+"="+A.i(b)}, +$S:256} +A.atE.prototype={} +A.aYz.prototype={ +XG(a){return this.aQ2(a)}, +aQ2(a){var s=0,r=A.y(t.N),q,p,o +var $async$XG=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:o=a.CW +if(o==null)o="" +if(typeof o!="string"){p=a.b +p===$&&A.b() +p=A.buS(A.af(p.i(0,"content-type")))}else p=!1 +if(p){q=A.bTX().$1(o) +s=1 +break}else if(t.f.b(o)){if(t.a.b(o)){p=a.ay +p===$&&A.b() +q=A.bNC(o,p) +s=1 +break}A.p(o).l(0) +A.ik() +q=A.a4_(o) +s=1 +break}else{q=J.cU(o) +s=1 +break}case 1:return A.w(q,r)}}) +return A.x($async$XG,r)}, +NF(a,b){return this.aQ3(a,b)}, +aQ3(a,b){var s=0,r=A.y(t.z),q,p=this,o,n,m,l,k,j,i,h,g,f,e,d,c +var $async$NF=A.u(function(a0,a1){if(a0===1)return A.v(a1,r) +while(true)switch(s){case 0:d={} +c=a.r +c===$&&A.b() +if(c===B.p_){q=b +s=1 +break}d.a=null +d.a=0 +o=new A.a7($.ac,t.b) +n=new A.aD(o,t.gR) +d.b=0 +m=A.a([],t.XE) +l=b.b.c4(new A.aYA(d,m,a),!0,new A.aYB(n),new A.aYC(n)) +k=a.cy +if(k!=null)k.a.a.be(new A.aYD(l),t.H) +s=3 +return A.t(o,$async$NF) +case 3:o=d.b +j=new Uint8Array(o) +for(o=m.length,i=0,h=0;h-1?Math.max(r,s*1000):r +p=j.apo() +o=a.a +if(o!==-1)p=Math.min(p,o*1000) +n=a.e +m=!j.a.r&&n!==-1?n*1000:0 +l=a.f +k=l!==-1?l*1000:0 +if(q+(g-j.z.a)+(i-g)+k0?q:0}r=m.w +if(r!=null){p=A.dR(m.as,0,null) +p=p.grh(p).length===0}else p=!1 +if(p){o=m.z.a +p=m.c +n=p==null?null:p.a +if(n==null)n=o +r.toString +q=n-A.bkC(r).a +return B.e.bg(q>0?q/10:0)}return 0}, +Gg(a){return this.aOm(a)}, +aOm(a){var s=0,r=A.y(t.JS),q,p=this,o +var $async$Gg=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=3 +return A.t(A.bqf(a,p.b),$async$Gg) +case 3:o=c +s=4 +return A.t(A.bqf(a,p.f),$async$Gg) +case 4:q=p.Ui(o,c) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Gg,r)}, +ue(a,b){return this.aQH(a,b)}, +aQG(a){return this.ue(a,null)}, +aQH(a,b){var s=0,r=A.y(t.JS),q,p=this,o,n,m +var $async$ue=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:s=b!=null?3:4 +break +case 3:o=b.b.r +o===$&&A.b() +n=A +m=a +s=6 +return A.t(A.bnN(o,b.a),$async$ue) +case 6:s=5 +return A.t(n.avd(m,d),$async$ue) +case 5:n=d +s=7 +return A.t(A.avd(a,B.aV.cV(B.az.xe(b.e.b,null))),$async$ue) +case 7:q=p.Ui(n,d) +s=1 +break +case 4:s=8 +return A.t(A.avd(a,p.b),$async$ue) +case 8:n=d +s=9 +return A.t(A.avd(a,p.f),$async$ue) +case 9:q=p.Ui(n,d) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$ue,r)}, +a8Y(a,b,c,d){var s=this,r=a==null?s.b:a,q=b==null?s.f:b,p=d==null?s.x:d +return new A.q4(s.a,r,s.c,s.d,s.e,q,s.r,s.w,p,s.y,s.z,s.Q,s.as)}, +Ui(a,b){return this.a8Y(a,b,null,null)}, +aH8(a){return this.a8Y(null,null,null,a)}} +A.avl.prototype={ +$2(a,b){return this.a.agi(0,a,b)}, +$S:55} +A.wt.prototype={} +A.YI.prototype={ +Ec(){var s=0,r=A.y(t.uq),q,p=this,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0 +var $async$Ec=A.u(function(a1,a2){if(a1===1)return A.v(a2,r) +while(true)switch(s){case 0:b=p.a +a=A.bjy(A.bLF(b,"cache-control")) +a0=p.b +s=a0!=null&&p.c==null?3:4 +break +case 3:s=p.Qp()||p.awc(a,a0)?5:6 +break +case 5:s=7 +return A.t(A.bjz(A.avk(b),p.d,a0),$async$Ec) +case 7:b=a2 +p.c=b +q=new A.wt(null,b) +s=1 +break +case 6:case 4:o=p.c +if(o!=null){if(p.d.a===B.mq){q=new A.wt(null,o) +s=1 +break}if(!o.a.c&&!o.aLA(a)){q=new A.wt(null,o) +s=1 +break}n=o.d +if(n!=null){m=b.b +m===$&&A.b() +m.n(0,"if-none-match",n)}else{n=o.w +if(n!=null){m=b.b +m===$&&A.b() +m.n(0,"if-modified-since",n)}else{n=o.c +if(n!=null){m=b.b +m===$&&A.b() +l=n.NC() +n=B.o1[A.a7n(l)-1] +k=A.yM(l)<=9?"0":"" +j=B.f.l(A.yM(l)) +i=B.dp[A.kG(l)-1] +h=B.f.l(A.E0(l)) +g=A.r_(l)<=9?" 0":" " +f=B.f.l(A.r_(l)) +e=A.aNQ(l)<=9?":0":":" +d=B.f.l(A.aNQ(l)) +c=A.aNR(l)<=9?":0":":" +c=""+n+", "+k+j+" "+i+" "+h+g+f+e+d+c+B.f.l(A.aNR(l))+" GMT" +m.n(0,"if-modified-since",c.charCodeAt(0)==0?c:c)}}}}q=new A.wt(b,null) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Ec,r)}, +awc(a,b){var s,r,q +if(this.d.a===B.r9)return!1 +s=b.c +if(s==null)return!1 +if(A.bLH(b))return!1 +r=b.e.b +q=A.bjy(r.i(0,B.c.dn("cache-control"))) +if((a.d||q.d)&&!this.Qp())return!1 +if(!B.b.p(B.DS,s))if(s===302||s===307){r=r.i(0,B.c.dn("expires")) +if((r==null?null:J.jD(r))==null&&q.a===-1&&q.b!=null)return!1}return this.avz(b,q)}, +Qp(){var s=this.d.a +return s===B.mq||s===B.r8}, +avz(a,b){var s +if(this.Qp())return!0 +s=a.e.b +return B.b7.uh(B.b7.uh(B.b7.uh(s.i(0,B.c.dn("etag"))!=null,s.i(0,B.c.dn("last-modified"))!=null),s.i(0,B.c.dn("expires"))!=null),b.a>0)}} +A.avn.prototype={} +A.aGC.prototype={ +$1(a){var s="Invalid HTTP date ",r=this.b,q=this.a,p=q.a,o=a.length +if(r.length-p").V(n.z[1]).h("Sv<1,2>")) +if(!(hb.e)A.r(A.cb(e)) +s=b.a +b.f=c +r=s[d] +d=t.S +c=A.I(d,t.z) +for(q=0;qb.e)A.r(A.cb(e)) +b.f=o +c.n(0,s[p],b.i3(0))}s=t.OC.a(c.i(0,0)) +if(s==null)s=new A.tk(-1,null,!1,!1,-1,-1,!1,B.c3) +p=t.kc +o=p.a(c.i(0,1)) +o=o==null?null:J.j6(o,d) +n=t.Z7 +m=n.a(c.i(0,2)) +l=A.af(c.i(0,3)) +k=n.a(c.i(0,4)) +p=p.a(c.i(0,5)) +d=p==null?null:J.j6(p,d) +p=A.bm(c.i(0,6)) +j=A.af(c.i(0,7)) +n=n.a(c.i(0,8)) +i=t.PL.a(c.i(0,9)) +h=t.W7 +g=h.a(c.i(0,10)) +f=A.bm(c.i(0,11)) +if(c.i(0,12)!=null)c=h.a(c.i(0,12)) +else{c=h.a(c.i(0,10)) +c=A.bjT(c.a-150,c.b)}return new A.q4(s,o,m,l,k,d,p,j,n,i,c,g,f)}, +BK(a,b,c){var s,r,q,p=null +A.bi(13,p) +if(b.b.length-b.d<1)b.bU(1) +s=b.b +r=b.d +q=r+1 +b.d=q +s[r]=13 +A.bi(0,p) +if(s.length-q<1)b.bU(1) +b.b[b.d++]=0 +b.eg(0,c.a) +A.bi(1,p) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=1 +b.eg(0,c.b) +A.bi(2,p) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=2 +b.eg(0,c.c) +A.bi(3,p) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=3 +b.eg(0,c.d) +A.bi(4,p) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=4 +b.eg(0,c.e) +A.bi(5,p) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=5 +b.eg(0,c.f) +A.bi(6,p) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=6 +b.eg(0,c.r) +A.bi(7,p) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=7 +b.eg(0,c.w) +A.bi(8,p) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=8 +b.eg(0,c.x) +A.bi(9,p) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=9 +b.eg(0,c.y) +A.bi(10,p) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=10 +b.eg(0,c.Q) +A.bi(11,p) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=11 +b.eg(0,c.as) +A.bi(12,p) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=12 +b.eg(0,c.z)}, +gu(a){return B.f.gu(93)}, +k(a,b){var s +if(b==null)return!1 +if(this!==b)s=b instanceof A.QQ&&A.p(this)===A.p(b)&&!0 +else s=!0 +return s}, +gBE(){return 93}} +A.QO.prototype={ +hJ(a,b){var s,r,q,p,o,n,m,l,k="Not enough bytes available.",j=b.f,i=j+1 +if(i>b.e)A.r(A.cb(k)) +s=b.a +b.f=i +r=s[j] +j=A.I(t.S,t.z) +for(q=0;qb.e)A.r(A.cb(k)) +b.f=p +j.n(0,s[i],b.i3(0))}i=A.bw(j.i(0,0)) +if(i==null)i=-1 +s=A.af(j.i(0,1)) +p=A.cN(j.i(0,2)) +o=A.cN(j.i(0,3)) +n=J.j6(t.j.a(j.i(0,4)),t.N) +m=A.bw(j.i(0,5)) +if(m==null)m=-1 +l=A.bw(j.i(0,6)) +if(l==null)l=-1 +j=A.cN(j.i(0,7)) +return new A.tk(i,s,p===!0,o===!0,m,l,j===!0,n)}, +BK(a,b,c){var s,r,q,p=null +A.bi(8,p) +if(b.b.length-b.d<1)b.bU(1) +s=b.b +r=b.d +q=r+1 +b.d=q +s[r]=8 +A.bi(0,p) +if(s.length-q<1)b.bU(1) +b.b[b.d++]=0 +b.eg(0,c.a) +A.bi(1,p) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=1 +b.eg(0,c.b) +A.bi(2,p) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=2 +b.eg(0,c.c) +A.bi(3,p) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=3 +b.eg(0,c.d) +A.bi(4,p) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=4 +b.eg(0,c.w) +A.bi(5,p) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=5 +b.eg(0,c.e) +A.bi(6,p) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=6 +b.eg(0,c.f) +A.bi(7,p) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=7 +b.eg(0,c.r)}, +gu(a){return B.f.gu(94)}, +k(a,b){var s +if(b==null)return!1 +if(this!==b)s=b instanceof A.QO&&A.p(this)===A.p(b)&&!0 +else s=!0 +return s}, +gBE(){return 94}} +A.QP.prototype={ +hJ(a,b){var s=b.f,r=s+1 +if(r>b.e)A.r(A.cb("Not enough bytes available.")) +b.f=r +switch(b.a[s]){case 0:return B.Tq +case 2:return B.Tr +case 1:default:return B.ra}}, +BK(a,b,c){switch(c.a){case 0:A.bi(0,null) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=0 +break +case 1:A.bi(1,null) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=1 +break +case 2:A.bi(2,null) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=2 +break}}, +gu(a){return B.f.gu(95)}, +k(a,b){var s +if(b==null)return!1 +if(this!==b)s=b instanceof A.QP&&A.p(this)===A.p(b)&&!0 +else s=!0 +return s}, +gBE(){return 95}} +A.axo.prototype={} +A.bai.prototype={} +A.M3.prototype={ +gV8(){return B.en}, +Lr(){this.a.d.$2(this.b,B.vx) +var s=this.gTM() +return(s==null?null:s.gOC(s).d)===B.en}, +a9d(){var s,r=this.b +this.a.d.$2(r,B.a32) +s=this.abk(new A.aKg(!1),!0,!0) +if((s==null?null:s.giO(s))!==B.en)throw A.c(A.bhC(r))}, +Uu(a){return this.aHM(a)}, +aHM(a){var s=0,r=A.y(t.Db),q,p=this +var $async$Uu=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:q=p.a9e(a) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Uu,r)}, +a9e(a){var s,r,q,p,o={},n=this.a,m=n.c,l=m.Mk(0,this.b,a+"rand"),k=m.aIj(l),j=A.p3(l,m.a).gTN(),i=t.y9.a(n.LL(k)) +if(i==null)A.r(A.bnE(A.bm(new A.aKh(k).$0()))) +i.toString +A.bTF(i,new A.aKi(k)) +s=$.boI() +A.ql(n) +r=s.a.get(n) +o.a=r==null?0:r +q=new A.aKj(o,j) +for(s=i.r;s.aq(0,q.$0());)++o.a +$.boI().n(0,n,o.a) +p=A.bqH(i) +s.n(0,q.$0(),p) +n=new A.M3(n,m.Mk(0,k,q.$0())) +n.a9d() +return n}, +l(a){return"MemoryDirectory: '"+this.b+"'"}, +$ia0Z:1, +$ibk4:1} +A.aKg.prototype={ +$2(a,b){if(this.a||b)return A.bqH(a) +return null}, +$S:402} +A.aKh.prototype={ +$0(){return this.a}, +$S:15} +A.aKi.prototype={ +$0(){return this.a}, +$S:15} +A.aKj.prototype={ +$0(){return this.b+this.a.a}, +$S:15} +A.aja.prototype={} +A.M4.prototype={ +gaAy(){var s,r=this,q=r.gTM() +if(q==null)q=r.aqs() +else{s=q.giO(q) +if(s===B.jv)q=A.bhY(t.C5.a(q),new A.aKr(r),null,null) +A.bnd(B.fk,q.giO(q),new A.aKs(r))}return t.jL.a(q)}, +gV8(){return B.fk}, +Lr(){this.a.d.$2(this.b,B.vx) +var s=this.gTM() +return(s==null?null:s.gOC(s).d)===B.fk}, +aqt(a){var s=this.aLn(new A.aKq(!1),!0) +if((s==null?null:s.giO(s))!==B.fk)throw A.c(A.byT(this.b)) +return s}, +aqs(){return this.aqt(!1)}, +vy(a){var s=0,r=A.y(t.S),q,p=this +var $async$vy=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:q=t.jL.a(p.gadq()).r.length +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$vy,r)}, +Gf(){var s=0,r=A.y(t.R),q,p=this +var $async$Gf=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:p.a.d.$2(p.b,B.a30) +q=new Uint8Array(A.mI(t.jL.a(p.gadq()).r)) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Gf,r)}, +l(a){return"MemoryFile: '"+this.b+"'"}, +$ia1I:1, +$ibkn:1} +A.aKr.prototype={ +$0(){return this.a.b}, +$S:15} +A.aKs.prototype={ +$0(){return this.a.b}, +$S:15} +A.aKq.prototype={ +$2(a,b){var s +if(b){s=new A.le(new Uint8Array(0),a) +s.P5(a) +return s}return null}, +$S:405} +A.agP.prototype={ +gMj(){var s=this.c +s=s==null?null:(s.a.a&30)!==0 +return s===!1}, +F(a,b){if(this.gMj())A.r(A.R("StreamSink is bound to a stream")) +if(this.d)throw A.c(A.R("StreamSink is closed")) +this.a_k(b)}, +dP(a,b){if(this.gMj())A.r(A.R("StreamSink is bound to a stream")) +this.a.fc(a,b)}, +aFk(a,b){var s=this +if(s.gMj())A.r(A.R("StreamSink is bound to a stream")) +s.c=new A.aD(new A.a7($.ac,t.b),t.gR) +b.c4(new A.b5h(s),!0,new A.b5i(s),new A.b5j(s)) +return s.c.a}, +ah(a){var s=this +if(s.gMj())A.r(A.R("StreamSink is bound to a stream")) +if(!s.d){s.d=!0 +s.b.fj(new A.b5k(s),new A.b5l(s),t.H)}return s.a.a}, +a_k(a){this.b=this.b.be(new A.b5g(a),t.jL)}, +$iei:1} +A.b5f.prototype={ +$0(){var s,r,q=this.a.a +if(q!=null)throw A.c(q) +q=this.c +s=q.aH() +r=this.d +if(r===B.ni||r===B.vu)s.r=new Uint8Array(0) +return q.aH()}, +$S:407} +A.b5h.prototype={ +$1(a){return this.a.a_k(a)}, +$S:136} +A.b5j.prototype={ +$2(a,b){var s=this.a +s.c.fc(a,b) +s.c=null}, +$S:26} +A.b5i.prototype={ +$0(){var s=this.a +s.c.fm(0) +s.c=null}, +$S:0} +A.b5k.prototype={ +$1(a){return this.a.a.fm(0)}, +$S:408} +A.b5l.prototype={ +$2(a,b){return this.a.a.fc(a,b)}, +$S:14} +A.b5g.prototype={ +$1(a){a.eg(0,this.a) +return a}, +$S:411} +A.aKk.prototype={} +A.b8f.prototype={ +a9D(a,b){return new A.M3(this,this.Ym(b))}, +aae(a,b,c,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=null +if(a.length===0)return d +else{s=e.c +if(s.a.k6(a)>0){r=e.a +a=B.c.cm(a,0)}else{s=s.b +r=t.y9.a(e.LL(s==null?A.bgu():s))}}$.arr() +q=A.a(a.split("/"),t.s) +if(!!q.fixed$length)A.r(A.aa("removeWhere")) +B.b.pD(q,A.bYU(),!0) +p=r==null?d:r +o=q.length-1 +for(s=c==null,n=!s,m=t.C5,l=!a0,k=t.Tg,j=p,i=0;i<=o;++i){h=q[i] +switch(h){case".":j=p +break +case"..":g=p==null +j=g?d:p.gbP(p) +p=g?d:p.gbP(p) +break +default:j=p==null?d:p.r.i(0,h)}g=new A.b8h(e,q,i) +if((j==null?d:j.giO(j))===B.jv)f=i=this.b.length)this.d.cU(0,r)}, +$S:433} +A.aCN.prototype={ +$1(a){this.a.$4(this.b,null,A.af(B.vv.gu2(this.c)),null)}, +$S:119} +A.aCO.prototype={ +$1(a){var s=this +s.a.$4(s.b,t.n6.a(B.vv.gu2(s.c)),null,null) +s.d.fm(0)}, +$S:119} +A.aCJ.prototype={ +$1(a){var s=window +s.toString +B.Pp.aOP(s,"focus",this) +A.xo(A.dW(0,0,1),null,t.z).be(new A.aCK(this.a,this.b),t.P)}, +$S:30} +A.aCK.prototype={ +$1(a){var s=this.a +if(!s.a){s.a=!0 +this.b.cU(0,null)}}, +$S:37} +A.aCI.prototype={ +$2(a,b){return(a.length===0?"":a+",")+" ."+b}, +$S:250} +A.a1L.prototype={ +J(){return"FileType."+this.b}} +A.aCz.prototype={} +A.aCA.prototype={ +iL(a,b){return this.IA(b,!1,!0,a,null,!1,!1)}, +IA(a,b,c,d,e,f,g){return this.ash(a,!1,!0,d,e,!1,!1)}, +ash(a,b,a0,a1,a2,a3,a4){var s=0,r=A.y(t.fW),q,p=2,o,n,m,l,k,j,i,h,g,f,e,d,c +var $async$IA=A.u(function(a5,a6){if(a5===1){o=a6 +s=p}while(true)switch(s){case 0:d=a.b +if(!J.j(d,"custom"))i=a1.length!==0 +else i=!1 +if(i)throw A.c(A.d8("You are setting a type ["+a.l(0)+u.b2)) +p=4 +i=$.bHZ +if(i!=null)i.aI(0) +s=7 +return A.t($.bCo().Md(d,A.am(["allowMultipleSelection",!1,"allowedExtensions",a1,"allowCompression",!0,"withData",!1],t.N,t.X),t.f),$async$IA) +case 7:n=a6 +if(n==null){q=null +s=1 +break}m=A.a([],t.M6) +for(i=J.al(n);i.v();){l=i.gG(i) +h=l +g=J.aj(h) +f=g.i(h,"name") +J.ff(m,new A.lv(g.i(h,"path"),f,g.i(h,"bytes"),null,g.i(h,"size"),g.i(h,"identifier")))}q=new A.tH(m) +s=1 +break +p=2 +s=6 +break +case 4:p=3 +c=o +i=A.ak(c) +if(i instanceof A.yy){k=i +A.t4("[MethodChannelFilePicker] Platform exception: "+A.i(k)) +throw c}else{j=i +A.t4("[MethodChannelFilePicker] Unsupported operation. Method not found. The exception thrown was: "+A.i(j)) +throw c}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$IA,r)}} +A.aCC.prototype={ +iL(a,b){return this.aO2(a,b)}, +aO2(a,b){var s=0,r=A.y(t.fW),q,p=this,o,n,m,l,k,j,i +var $async$iL=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:s=3 +return A.t(A.HR("osascript"),$async$iL) +case 3:l=d +k=p.LI(b,a) +j=A.eF("","\\","\\\\") +j=A.eF(j,'"','\\"') +j=A.eF(j,"\n","\\\n") +o=A.a(["-e"],t.s) +n=k.length!==0?"choose file "+("of type {"+k+"} "):"choose file " +o.push(n+('with prompt "'+j+'"')) +s=4 +return A.t(A.WV(l,o),$async$iL) +case 4:m=d +if(m==null){q=null +s=1 +break}i=A +s=5 +return A.t(A.byB(p.Ns(m),!1,!1),$async$iL) +case 5:q=new i.tH(d) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$iL,r)}, +LI(a,b){switch(a.a){case 0:return"" +case 4:return'"aac", "midi", "mp3", "ogg", "wav"' +case 5:return'"", "'+B.b.ck(b,'", "')+'"' +case 2:return'"bmp", "gif", "jpeg", "jpg", "png"' +case 1:return'"avi", "flv", "mkv", "mov", "mp4", "mpeg", "webm", "wmv", "bmp", "gif", "jpeg", "jpg", "png"' +case 3:return'"avi", "flv", "mkv", "mov", "mp4", "mpeg", "webm", "wmv"' +default:throw A.c(A.d8("unknown file type"))}}, +Ns(a){var s,r=B.c.dn(a) +if(r.length===0)return A.a([],t.s) +r=new A.ad(A.a(r.split(", alias "),t.s),new A.aCE(),t.a4).Cq(0,new A.aCF()) +s=A.a8(r,!0,r.$ti.h("z.E")) +if(s.length===1&&J.bpG(B.b.gO(s),"file "))s[0]=J.bpH(s[0],5) +else if(s.length!==0&&J.bpG(B.b.gO(s),"alias "))s[0]=J.bpH(s[0],6) +r=A.ab(s).h("ad<1,h>") +return A.a8(new A.ad(s,new A.aCG(),r),!0,r.h("av.E"))}} +A.aCE.prototype={ +$1(a){return B.c.dn(a)}, +$S:18} +A.aCF.prototype={ +$1(a){return a.length!==0}, +$S:11} +A.aCG.prototype={ +$1(a){var s=t.s,r=t.gD,q=A.a8(new A.ba(A.a(a.split(":"),s),new A.aCD(),r),!0,r.h("z.E")) +s=A.a(["/Volumes",q[0]],s) +B.b.I(s,B.b.fH(q,1)) +return B.b.ck(s,"/")}, +$S:18} +A.aCD.prototype={ +$1(a){return a.length!==0}, +$S:11} +A.tH.prototype={ +k(a,b){if(b==null)return!1 +if(this===b)return!0 +return b instanceof A.tH&&A.ee(b.a,this.a)}, +gu(a){return J.T(this.a)}, +l(a){return"FilePickerResult(files: "+A.i(this.a)+")"}} +A.aCB.prototype={ +iL(a,b){return this.aO1(a,b)}, +aO1(a,b){var s=0,r=A.y(t.fW),q,p=this,o,n,m,l,k +var $async$iL=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:s=3 +return A.t(p.z3(),$async$iL) +case 3:o=d +n=A.bGO(o) +m=n.LI(b,a) +s=4 +return A.t(A.WV(o,n.Y5("",m,"",!1,!1)),$async$iL) +case 4:l=d +if(l==null){q=null +s=1 +break}k=A +s=5 +return A.t(A.byB(n.Ns(l),!1,!1),$async$iL) +case 5:q=new k.tH(d) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$iL,r)}, +z3(){var s=0,r=A.y(t.N),q,p=2,o,n,m,l,k +var $async$z3=A.u(function(a,b){if(a===1){o=b +s=p}while(true)switch(s){case 0:p=4 +p=8 +s=11 +return A.t(A.HR("qarma"),$async$z3) +case 11:n=b +q=n +s=1 +break +p=4 +s=10 +break +case 8:p=7 +l=o +s=t.VI.b(A.ak(l))?12:14 +break +case 12:s=15 +return A.t(A.HR("kdialog"),$async$z3) +case 15:n=b +q=n +s=1 +break +s=13 +break +case 14:throw l +case 13:s=10 +break +case 7:s=4 +break +case 10:p=2 +s=6 +break +case 4:p=3 +k=o +s=t.VI.b(A.ak(k))?16:18 +break +case 16:s=19 +return A.t(A.HR("zenity"),$async$z3) +case 19:q=b +s=1 +break +s=17 +break +case 18:throw k +case 17: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$z3,r)}} +A.aHJ.prototype={ +Y5(a,b,c,d,e){var s=A.a(["--title",a],t.s) +s.push("--getopenfilename") +if(c.length!==0)s.push(c) +if(b.length!==0){if(c.length===0)s.push(".") +s.push(b)}return s}, +LI(a,b){switch(a.a){case 0:return"" +case 4:return"Audio File (*.aac *.midi *.mp3 *.ogg *.wav)" +case 5:return new A.ad(b,new A.aHK(),A.ab(b).h("ad<1,h>")).ck(0," File, ")+" File (*."+B.b.ck(b," *.")+")" +case 2:return"Image File (*.bmp *.gif *.jpeg *.jpg *.png)" +case 1:return"Media File (*.avi *.flv *.mkv *.mov *.mp4 *.mpeg *.webm *.wmv *.bmp *.gif *.jpeg *.jpg *.png)" +case 3:return"Video File (*.avi *.flv *.mkv *.mov *.mp4 *.mpeg *.webm *.wmv)" +default:throw A.c(A.d8("unknown file type"))}}, +Ns(a){var s +if(B.c.dn(a).length===0)return A.a([],t.s) +s=t.a4 +return A.a8(new A.ad(A.a(a.split("\n"),t.s),new A.aHL(),s),!0,s.h("av.E"))}} +A.aHK.prototype={ +$1(a){return a.toUpperCase()}, +$S:18} +A.aHL.prototype={ +$1(a){return B.c.cc(a,"/")?a:"/"+a}, +$S:18} +A.aOu.prototype={ +Y5(a,b,c,d,e){var s=A.a(["--file-selection","--title",a],t.s) +if(c.length!==0)s.push("--filename="+c) +if(b.length!==0)s.push("--file-filter="+b) +return s}, +LI(a,b){switch(a.a){case 0:return"" +case 4:return"*.aac *.midi *.mp3 *.ogg *.wav" +case 5:return"*."+B.b.ck(b," *.") +case 2:return"*.bmp *.gif *.jpeg *.jpg *.png" +case 1:return"*.avi *.flv *.mkv *.mov *.mp4 *.mpeg *.webm *.wmv *.bmp *.gif *.jpeg *.jpg *.png" +case 3:return"*.avi *.flv *.mkv *.mov *.mp4 *.mpeg *.webm *.wmv" +default:throw A.c(A.d8("unknown file type"))}}, +Ns(a){var s +if(B.c.dn(a).length===0)return A.a([],t.s) +s=t.a4 +return A.a8(new A.ad(A.a(a.split("|/"),t.s),new A.aOv(),s),!0,s.h("av.E"))}} +A.aOv.prototype={ +$1(a){return B.c.cc(a,"/")?a:"/"+a}, +$S:18} +A.lv.prototype={ +gdT(a){throw A.c(" On web `path` is always `null`,\n You should access `bytes` property instead,\n Read more about it [here](https://github.com/miguelpruivo/flutter_file_picker/wiki/FAQ)\n ")}, +k(a,b){var s,r,q=this +if(b==null)return!1 +if(q===b)return!0 +if(b instanceof A.lv)if(b.b===q.b){s=b.c +r=q.c +s=(s==null?r==null:s===r)&&J.j(b.d,q.d)&&b.f==q.f&&b.e===q.e}else s=!1 +else s=!1 +return s}, +gu(a){return 0}, +l(a){var s=this +return"PlatformFile(, name: "+s.b+", bytes: "+A.i(s.c)+", readStream: "+A.i(s.d)+", size: "+s.e+")"}} +A.bgY.prototype={ +$1(a){return a.length!==0}, +$S:11} +A.bgZ.prototype={ +$1(a){return this.aeX(a)}, +aeX(a){var s=0,r=A.y(t.hD),q,p=this,o,n,m +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:o=A.brt(a) +if(!p.b){q=A.bgt(o,null,null) +s=1 +break}n=A +m=o +s=3 +return A.t(o.Gf(),$async$$1) +case 3:q=n.bgt(m,c,null) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$$1,r)}, +$S:437} +A.a1R.prototype={ +wI(a){switch(a.a){case 0:return!1 +case 1:return!1 +case 2:return!1 +case 3:return!1 +case 4:return!1 +case 5:return!1}}, +k(a,b){var s +if(b==null)return!1 +if(this===b)return!0 +if(J.a_(b)!==A.p(this))return!1 +if(b instanceof A.a1R)s=!0 +else s=!1 +return s}, +gu(a){return A.dj([!1,!1,!1,!1,!1,!1,!1,!1,!1,!1,!1,!1,null])}} +A.ah_.prototype={} +A.qr.prototype={} +A.tI.prototype={ +J(){return"FlexAppBarStyle."+this.b}} +A.aDi.prototype={ +J(){return"FlexTabBarStyle."+this.b}} +A.a1S.prototype={ +gadQ(){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=null,b4=new A.aDd(),b5=b2.b,b6=b5===B.S,b7=b2.c,b8=b6?B.a5:B.as,b9=b6?A.i7(B.a5,15):A.iE(A.dX(B.as,25),B.l,80),c0=b2.d,c1=b2.e,c2=c1,c3=b2.f,c4=b2.r,c5=c4,c6=b2.w +c4=c6 +c1=c4 +c4=b2.x +c6=b2.a +s=c6.ay +if(s==null)s=c6.at +r=A.bIa(c4,s==null?b9:s,b7,c0,c2,c3,c5,c1) +q=b2.y +c0=c6.dx +if(c0==null)c0=c6.cy +p=c0 +if(p==null)p=b6?B.hj:B.fc +c0=c6.id +if(c0==null)c0=c6.db +o=c0 +if(o==null)o=b6?B.l:B.ef +n=b2.z +c0=r.a +c1=r.b +c2=r.c +c3=r.d +c4=r.e +c5=r.gjt() +s=r.w +m=r.x +l=m==null +k=l?b9:m +j=b2.ay +if(j==null){j=c6.e +if(j==null)j=c6.c}i=b2.CW +if(i==null){i=c6.x +if(i==null)i=c6.r}h=b2.cx +if(h==null){h=c6.z +if(h==null)h=c6.r}g=b2.cy +if(g==null){g=c6.as +if(g==null){g=c6.z +if(g==null)g=c6.r}}f=c6.dy +if(f==null)f=c6.db +e=c6.k1 +if(e==null)e=c6.cy +d=c6.ch +if(d==null)d=c6.ax +c=A.bks(n,0,s,0,k,0,o,0,b2.dx,b2.dy,d,e,b2.ax,j,b2.ch,i,b2.db,f,h,g,c0,0,c1,0,c2,0,c3,0,q,0,p,0,c4,0,c5,0) +c5=c.a +k=r.gjt() +j=l?b9:m +i=c6.fr +if(i==null)i=c6.cx +h=c6.fx +if(h==null)h=c6.cx +g=c6.fy +if(g==null)g=B.o +f=c6.go +if(f==null)f=B.o +e=c6.k2 +if(e==null)e=c6.c +d=b2.fr +d=c6.k3 +if(d==null)d=c6.b +if(d==null)d=c0 +k=c6.a8X(n,b5,s,j,e,o,c.y,c.z,c.Q,c.x,c5,c.b,c.c,c.d,c.r,c.w,c.e,c.f,i,h,c0,c1,f,c2,c3,g,q,d,p,c4,k) +b=k +if(b==null){c6=r.gjt() +if(l)m=b9 +l=c.y +k=A.Ku(b5,l,45) +j=A.Ku(b5,l,75) +c0=A.bkr(b5,c0,q) +b=A.Jf(n,b5,s,m,c0,o,l,c.z,c.Q,c.x,c5,c.b,c.c,c.d,c.r,c.w,c.e,c.f,k,j,b7,c1,B.o,c2,c3,B.o,q,b7,p,c4,c6)}c0=b.a +b6=c0===B.S +a=A.c3() +B.di.wI(a) +B.di.wI(a) +B.di.wI(a) +B.di.wI(a) +B.di.wI(a) +if(!(B.di.k(0,B.di)&&!0))B.di.wI(a) +B.di.wI(a) +a0=new A.aDc(b2,!1,B.Sb,a,b).$0() +a1=b6?a0.b:a0.a +c1=b.b +a2=b4.$1(c1) +a3=a2?a0.b:a0.a +a1=a1.cI(b2.k3) +a3=a3.cI(b2.k4) +a4=b6?A.iE(c1,B.o,45):A.iE(c1,B.o,40) +a5=b6?A.iE(c1,B.l,35):A.iE(c1,B.l,40) +a6=b6?A.iE(c1,B.o,60):A.iE(c1,B.l,80) +a7=b2.at +c2=a7==null +if(c2){c3=b.cy +a7=c3}a8=A.iX(a7) +c3=a8===B.S +a9=c3?B.l:B.o +b0=c3?B.l:B.af +c3=c3?B.a2:B.S +c4=b.CW +c5=b6?B.a2:B.S +c6=new A.aDf(b2,B.xj,b,b6,a8) +B.e.bg(A.V(1,0,1)*255) +new A.aDe(b4).$1(A.K(255,c1.gj(c1)>>>16&255,c1.gj(c1)>>>8&255,c1.gj(c1)&255)) +b4=b.fx +b1=b4==null?b.cx:b4 +b4=b6&&!0 +s=c6.$0() +c2=!c2 +c2=c2?A.bIb(new A.d4(b3,b3,b3,b3,b3,b0,b3,b3),a7,b3,b,b2.fy,a9,new A.d4(b3,b3,b3,b3,b3,b0,b3,b3),b3,b3,b3,new A.mp(c4,b3,c5,!1,B.E,a8,c3,!1)):b3 +c3=A.bIc(b3,b,b2.go,b3,b3,b3) +c5=c6.$0() +m=a1.y +l=c6.$0() +c6=new A.aDg(b2,B.xj,b,c6,!1,a8,a7,b6).$0() +c5=A.bIe(b,b3,c5,b3,b3,b3,l,m,c6,m,!0,!0) +return A.Py(c2,b4,c3,b3,b3,c0,b3,c4,b.cy,b3,b3,b3,b,b3,b2.as,b3,b3,b1,b3,b3,b3,b3,b2.x2,b3,b3,b3,b2.ok,b2.p1,b3,b3,b3,s,b3,B.yk,b2.p3,b3,b3,b3,b3,b3,b3,b3,b2.p2,b2.p4,a,b3,c1,a4,a5,a3,b3,b2.Q,a6,b3,b3,b3,b3,b3,b3,c5,b3,b3,a1,b3,b3,b3,a0,!0,b2.k2)}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.a_(b)!==A.p(r))return!1 +if(b instanceof A.a1S)if(b.a.k(0,r.a))if(b.b===r.b)if(b.c.k(0,r.c))if(b.d.k(0,r.d))if(b.e.k(0,r.e))if(b.f.k(0,r.f))if(b.r.k(0,r.r))if(b.w.k(0,r.w))if(b.x.k(0,r.x))if(b.y.k(0,r.y))if(b.z.k(0,r.z))if(b.Q.k(0,r.Q))if(b.as.k(0,r.as))if(J.j(b.at,r.at))if(b.ax.k(0,r.ax))if(J.j(b.ay,r.ay))if(b.ch.k(0,r.ch))if(J.j(b.CW,r.CW))if(J.j(b.cx,r.cx))if(J.j(b.cy,r.cy))if(b.db.k(0,r.db))if(b.dx.k(0,r.dx))if(b.dy.k(0,r.dy))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 +else s=!1 +else s=!1 +return s}, +gu(a){var s=this +return A.dj([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,!1,!0,s.k2,s.k3,s.k4,s.ok,s.p1,s.p2,s.p3,s.p4,s.RG,s.rx,!0,s.to,!0,s.x2])}} +A.aDd.prototype={ +$1(a){return A.iX(a)===B.S}, +$S:318} +A.aDe.prototype={ +$1(a){return this.a.$1(a)?B.l:B.o}, +$S:90} +A.aDc.prototype={ +$0(){var s,r=this,q=r.b +if(q)s=!0 +else s=!1 +if(s)return A.blW(r.e,r.d) +if(!q&&!0)return A.blW(r.e,r.d) +return A.bNF(r.d)}, +$S:444} +A.aDf.prototype={ +$0(){var s,r=this +switch(r.b.a){case 2:return r.c.b +case 1:return r.c.b +case 0:return r.e===B.a2?B.af:B.l +case 3:s=r.c.b +return r.d?A.dA(s,B.l,230):A.dA(s,B.l,178)}}, +$S:121} +A.aDg.prototype={ +$0(){var s,r,q=this +switch(q.b.a){case 2:return q.c.db +case 1:s=q.c +r=s.db +if(q.e){s=A.dA(r,s.b,102) +s=A.K(165,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}else s=A.K(153,r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255) +return s +case 0:if(q.f===B.a2){s=q.r +if(!s.k(0,B.l)){r=q.c +s=s.k(0,r.cy)||s.k(0,r.CW)}else s=!0}else s=!1 +if(s){s=q.c.db +s=A.K(153,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}else{s=q.d.$0() +r=J.c4(s) +s=A.K(178,r.gj(s)>>>16&255,r.gj(s)>>>8&255,r.gj(s)&255)}return s +case 3:s=q.c.b +if(q.w){s=A.dA(s,B.l,230) +s=A.K(178,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}else{s=A.dA(s,B.l,127) +s=A.K(127,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return s}}, +$S:121} +A.ah0.prototype={} +A.bG.prototype={ +J(){return"FlexScheme."+this.b}} +A.aM.prototype={ +gjt(){var s=this.f +return s}, +En(a,b,c,d,e,f,g,h,i){var s,r,q,p,o,n,m,l,k=this,j=d==null?k.a:d +if(e==null)s=k.b +else s=e +r=f==null?k.c:f +if(g==null)q=k.d +else q=g +if(h==null)p=k.e +else p=h +o=i==null?k.gjt():i +n=a==null?k.r:a +m=b==null?k.w:b +l=c==null?k.x:c +return new A.aM(j,s,r,q,p,o,n,m,l,k.y)}, +a9_(a,b,c,d,e,f,g,h){return this.En(null,a,b,c,d,e,f,g,h)}, +aHE(a,b,c,d){return this.En(null,null,null,null,null,a,b,c,d)}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.a_(b)!==A.p(r))return!1 +if(b instanceof A.aM)if(b.a.k(0,r.a)){s=b.b +if(s.k(0,r.b))if(b.c.k(0,r.c)){s=b.d +if(s.k(0,r.d)){s=b.e +s=s.k(0,r.e)&&b.gjt().k(0,r.gjt())&&b.r.k(0,r.r)&&b.w.k(0,r.w)&&J.j(b.x,r.x)&&b.y===r.y}else s=!1}else s=!1 +else s=!1}else s=!1 +else s=!1 +return s}, +gu(a){var s=this +return A.X(s.a,s.b,s.c,s.d,s.e,s.gjt(),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.ah1.prototype={} +A.c6.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.c6&&b.a===s.a&&b.b===s.b&&b.c.k(0,s.c)&&b.d.k(0,s.d)}, +gu(a){var s=this +return A.X(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.ah2.prototype={} +A.a1U.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.a1U&&b.a.k(0,s.a)&&J.j(b.b,s.b)&&b.c.k(0,s.c)&&J.j(b.d,s.d)&&J.j(b.e,s.e)&&J.j(b.f,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.X(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)}} +A.ah3.prototype={} +A.jN.prototype={ +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.a_(b)!==A.p(r))return!1 +if(b instanceof A.jN)if(b.a.k(0,r.a)){s=b.b +if(s.k(0,r.b)){s=b.c +s=s.k(0,r.c)&&b.e.k(0,r.e)&&b.f.k(0,r.f)&&b.d.k(0,r.d)}else s=!1}else s=!1 +else s=!1 +return s}, +gu(a){var s=this +return A.X(s.a,s.b,s.c,s.e,s.f,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)}} +A.ah4.prototype={} +A.aSW.prototype={ +J(){return"SchemeColor."+this.b}} +A.aDh.prototype={ +$1(a){var s,r=this +if(a.p(0,B.G)){if(a.p(0,B.F)){s=r.a +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=r.a +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.Q)){s=r.a +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return null}if(a.p(0,B.F)){if(r.b){s=r.a +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}s=r.c.db +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){if(r.b){s=r.a +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}s=r.c.db +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.Q)){if(r.b){s=r.a +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}s=r.a +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return null}, +$S:29} +A.a1V.prototype={ +k(a,b){var s +if(b==null)return!1 +if(this===b)return!0 +if(J.a_(b)!==A.p(this))return!1 +if(b instanceof A.a1V)s=!0 +else s=!1 +return s}, +gu(a){return A.dj([!0,!0,null,!0,!1,null,null,null,null,null,null,null,!1,null,!1,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,null,null,null,null,null,null,null,null,null,!1,null,null,!1,null,null,null,null,null,!0,null,null,null,null,!0,!0,!0,null,null,null,null,null,null,null,null,!1,!1,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,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,null,null,null,null,null,null,null,null,null,null,null,null,null,!0,null,null,null,null,!0,null,null,null,!0,!0,null,null,null,null,null,null,null,!0,null,null,null,null,!0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,!0,null,null,null,null,!0,!0,null,null,null,null,null,null,null,null])}} +A.ah5.prototype={} +A.n6.prototype={ +J(){return"FlexSurfaceMode."+this.b}} +A.Kv.prototype={ +a8(){return new A.ah6(B.m)}} +A.ah6.prototype={ +aQh(){var s=this +s.a.toString +s.f=s.e=12 +s.f=s.e=20}, +aX(){var s,r=this +r.b9() +s=A.tL(!0,null,!0,!0,null,null,!1) +r.d!==$&&A.ck() +r.d=s +r.aQh()}, +m(){var s=this.d +s===$&&A.b() +s.m() +this.b0()}, +b1(a){this.bh(a) +this.a.toString}, +A(a){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=A.B(a),f=i.a,e=f.db +f=f.x +s=t.p +r=A.a([],s) +q=i.a +p=q.ay +p=A.ti(new A.b8(p,p)) +if(q.x)o=new A.be(g.ax.b,4,B.I,-1) +else o=new A.be(g.CW,1,B.I,-1) +n=q.c +m=q.ch +l=q.CW +q=q.cx +q=A.db(A.a([new A.Av(n.a,m,l,q,B.jp,h),new A.Av(n.c,m,l,q,B.jp,h)],s),B.w,B.z,B.O) +n=i.a +m=n.c +l=n.ch +k=n.CW +n=n.cx +q=A.cP(A.a([q,A.db(A.a([new A.Av(m.b,l,k,n,B.jp,h),new A.Av(m.e,l,k,n,B.jp,h)],s),B.w,B.z,B.O)],s),B.w,B.z,B.O) +n=i.d +n===$&&A.b() +m=i.a +l=m.dx +k=m.CW +j=i.e +r.push(A.h5(B.T,!0,h,A.fp(B.bu,A.a([new A.b4(B.fj,q,h),A.h5(B.T,!0,h,A.jg(!1,h,!0,A.cZ(h,m.ch*2+i.f,k*2+j),h,!0,l,n,h,e,h,h,h,h,h,new A.b5S(i),h,h,h,h,h,h,h),B.n,h,0,h,h,h,h,h,B.eA)],s),B.C,B.aJ,h),B.bd,h,0,h,h,new A.cM(p,o),h,h,B.cv)) +i.a.toString +s=A.db(A.a([A.cP(r,B.w,B.z,B.O)],s),B.w,B.z,B.O) +return new A.bu(A.bL(h,h,h,h,h,!0,h,h,h,h,!0,h,h,h,h,h,h,h,h,h,h,h,"Theme mode option button",h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,f,h,h,h,h,h,h,h,h),!1,!1,!1,!1,new A.b4(B.ve,s,h),h)}} +A.b5S.prototype={ +$0(){var s=this.a.a +s.y.$0()}, +$S:0} +A.Av.prototype={ +A(a){var s=this,r=null,q=s.f +return new A.b4(s.r,A.cQ(r,r,B.n,r,r,new A.dU(s.c,r,r,A.ti(new A.b8(q,q)),r,r,B.aK),r,s.d,r,r,s.e),r)}} +A.oi.prototype={ +J(){return"AnimationStatus."+this.b}} +A.bV.prototype={ +l(a){return"#"+A.br(this)+"("+this.Gz()+")"}, +Gz(){switch(this.gaP(this).a){case 1:return"\u25b6" +case 2:return"\u25c0" +case 3:return"\u23ed" +case 0:return"\u23ee"}}} +A.G_.prototype={ +J(){return"_AnimationDirection."+this.b}} +A.Xw.prototype={ +J(){return"AnimationBehavior."+this.b}} +A.mP.prototype={ +adv(a){var s,r,q=this.r +q.toString +s=this.r=a.A2(this.gPo()) +r=q.a +if(r!=null){s.a=r +s.c=q.c +if(!s.b)r=s.e==null +else r=!1 +if(r)s.e=$.cB.C5(s.gJR(),!1) +q.a=null +q.NK()}q.m()}, +gj(a){var s=this.x +s===$&&A.b() +return s}, +sj(a,b){var s=this +s.h8(0) +s.IO(b) +s.ag() +s.CF()}, +gkK(){var s=this.r +if(!(s!=null&&s.a!=null))return 0 +s=this.w +s.toString +return s.j9(0,this.y.a/1e6)}, +IO(a){var s=this,r=s.a,q=s.b,p=s.x=A.V(a,r,q) +if(p===r)s.Q=B.R +else if(p===q)s.Q=B.a9 +else s.Q=s.z===B.aN?B.b4:B.b5}, +gaP(a){var s=this.Q +s===$&&A.b() +return s}, +p7(a,b){var s=this +s.z=B.aN +if(b!=null)s.sj(0,b) +return s.a_B(s.b)}, +bS(a){return this.p7(a,null)}, +Xr(a,b){var s=this +s.z=B.lM +if(b!=null)s.sj(0,b) +return s.a_B(s.a)}, +d3(a){return this.Xr(a,null)}, +kh(a,b,c){var s,r,q,p,o,n,m=this,l=$.a96.LB$ +l===$&&A.b() +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.b() +q=Math.abs(a-l)/r}else q=1 +if(m.z===B.lM&&m.f!=null){l=m.f +l.toString +p=l}else{l=m.e +l.toString +p=l}o=new A.bj(B.e.bg(p.a*q))}else{l=m.x +l===$&&A.b() +o=a===l?B.B:c}m.h8(0) +l=o.a +if(l===B.B.a){l=m.x +l===$&&A.b() +if(l!==a){m.x=A.V(a,m.a,m.b) +m.ag()}m.Q=m.z===B.aN?B.a9:B.R +m.CF() +return A.blQ()}n=m.x +n===$&&A.b() +return m.JF(new A.b7p(l*s/1e6,n,a,b,B.dd))}, +a_B(a){return this.kh(a,B.Y,null)}, +Bq(a){var s,r,q=this,p=q.a,o=q.b,n=q.e +q.h8(0) +s=q.x +s===$&&A.b() +r=n.a/1e6 +s=o===p?0:s/(o-p)*r +return q.JF(new A.bbb(p,o,!1,q.gaqd(),r,s,B.dd))}, +aqe(a){this.z=a +this.Q=a===B.aN?B.b4:B.b5 +this.CF()}, +AK(a){var s,r,q,p=this,o=$.bCL(),n=a<0 +p.z=n?B.lM:B.aN +s=n?p.a-0.01:p.b+0.01 +n=$.a96.LB$ +n===$&&A.b() +if((n.a&4)!==0)switch(p.d.a){case 0:r=200 +break +case 1:r=1 +break +default:r=1}else r=1 +n=p.x +n===$&&A.b() +q=new A.OT(s,A.Hm(o,n-s,a*r),B.dd) +q.a=B.axC +p.h8(0) +return p.JF(q)}, +aJb(){return this.AK(1)}, +TD(a){this.h8(0) +this.z=B.aN +return this.JF(a)}, +JF(a){var s,r=this +r.w=a +r.y=B.B +r.x=A.V(a.hK(0,0),r.a,r.b) +s=r.r.rM(0) +r.Q=r.z===B.aN?B.b4:B.b5 +r.CF() +return s}, +yy(a,b){this.y=this.w=null +this.r.yy(0,b)}, +h8(a){return this.yy(a,!0)}, +m(){var s=this +s.r.m() +s.r=null +s.ej$.ab(0) +s.dw$.ab(0) +s.Cp()}, +CF(){var s=this,r=s.Q +r===$&&A.b() +if(s.as!==r){s.as=r +s.vA(r)}}, +anv(a){var s,r=this +r.y=a +s=a.a/1e6 +r.x=A.V(r.w.hK(0,s),r.a,r.b) +if(r.w.tJ(s)){r.Q=r.z===B.aN?B.a9:B.R +r.yy(0,!1)}r.ag() +r.CF()}, +Gz(){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.HF() +q=this.x +q===$&&A.b() +return r+" "+B.e.aF(q,3)+p+s}} +A.b7p.prototype={ +hK(a,b){var s,r,q=this,p=A.V(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.a5(0,p)}}}, +j9(a,b){return(this.hK(0,b+0.001)-this.hK(0,b-0.001))/0.002}, +tJ(a){return a>this.b}} +A.bbb.prototype={ +hK(a,b){var s=this,r=b+s.r,q=s.f,p=B.e.aJ(r/q,1) +B.e.i9(r,q) +s.e.$1(B.aN) +q=A.ag(s.b,s.c,p) +q.toString +return q}, +j9(a,b){return(this.c-this.b)/this.f}, +tJ(a){return!1}} +A.ae3.prototype={} +A.ae4.prototype={} +A.ae5.prototype={} +A.adT.prototype={ +P(a,b){}, +H(a,b){}, +f8(a){}, +ee(a){}, +gaP(a){return B.a9}, +gj(a){return 1}, +l(a){return"kAlwaysCompleteAnimation"}} +A.adU.prototype={ +P(a,b){}, +H(a,b){}, +f8(a){}, +ee(a){}, +gaP(a){return B.R}, +gj(a){return 0}, +l(a){return"kAlwaysDismissedAnimation"}} +A.wb.prototype={ +P(a,b){}, +H(a,b){}, +f8(a){}, +ee(a){}, +gaP(a){return B.b4}, +Gz(){return this.HF()+" "+A.i(this.a)+"; paused"}, +gj(a){return this.a}} +A.tc.prototype={ +P(a,b){return this.gbP(this).P(0,b)}, +H(a,b){return this.gbP(this).H(0,b)}, +f8(a){return this.gbP(this).f8(a)}, +ee(a){return this.gbP(this).ee(a)}, +gaP(a){var s=this.gbP(this) +return s.gaP(s)}} +A.N9.prototype={ +sbP(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.gj(q) +if(r.vg$>0)r.Li()}r.c=b +if(b!=null){if(r.vg$>0)r.Lh() +q=r.b +s=r.c +s=s.gj(s) +if(q==null?s!=null:q!==s)r.ag() +q=r.a +s=r.c +if(q!==s.gaP(s)){q=r.c +r.vA(q.gaP(q))}r.b=r.a=null}}, +Lh(){var s=this,r=s.c +if(r!=null){r.P(0,s.geO()) +s.c.f8(s.gace())}}, +Li(){var s=this,r=s.c +if(r!=null){r.H(0,s.geO()) +s.c.ee(s.gace())}}, +gaP(a){var s=this.c +if(s!=null)s=s.gaP(s) +else{s=this.a +s.toString}return s}, +gj(a){var s=this.c +if(s!=null)s=s.gj(s) +else{s=this.b +s.toString}return s}, +l(a){var s=this,r=s.c +if(r==null)return"ProxyAnimation(null; "+s.HF()+" "+B.e.aF(s.gj(s),3)+")" +return r.l(0)+"\u27a9ProxyAnimation"}} +A.k_.prototype={ +P(a,b){this.cF() +this.a.P(0,b)}, +H(a,b){this.a.H(0,b) +this.tt()}, +Lh(){this.a.f8(this.gzv())}, +Li(){this.a.ee(this.gzv())}, +JG(a){this.vA(this.a4v(a))}, +gaP(a){var s=this.a +return this.a4v(s.gaP(s))}, +gj(a){var s=this.a +return 1-s.gj(s)}, +a4v(a){switch(a.a){case 1:return B.b5 +case 2:return B.b4 +case 3:return B.R +case 0:return B.a9}}, +l(a){return this.a.l(0)+"\u27aaReverseAnimation"}} +A.wL.prototype={ +JZ(a){var s=this +switch(a.a){case 0:case 3:s.d=null +break +case 1:if(s.d==null)s.d=B.b4 +break +case 2:if(s.d==null)s.d=B.b5 +break}}, +ga72(){if(this.c!=null){var s=this.d +if(s==null){s=this.a +s=s.gaP(s)}s=s!==B.b5}else s=!0 +return s}, +m(){this.a.ee(this.gJY())}, +gj(a){var s=this,r=s.ga72()?s.b:s.c,q=s.a,p=q.gj(q) +if(r==null)return p +if(p===0||p===1)return p +return r.a5(0,p)}, +l(a){var s=this +if(s.c==null)return s.a.l(0)+"\u27a9"+s.b.l(0) +if(s.ga72())return s.a.l(0)+"\u27a9"+s.b.l(0)+"\u2092\u2099/"+A.i(s.c) +return s.a.l(0)+"\u27a9"+s.b.l(0)+"/"+A.i(s.c)+"\u2092\u2099"}, +gbP(a){return this.a}} +A.aon.prototype={ +J(){return"_TrainHoppingMode."+this.b}} +A.zN.prototype={ +JG(a){if(a!==this.e){this.ag() +this.e=a}}, +gaP(a){var s=this.a +return s.gaP(s)}, +aEI(){var s,r,q=this,p=q.b +if(p!=null){switch(q.c.a){case 0:p=p.gj(p) +s=q.a +r=p<=s.gj(s) +break +case 1:p=p.gj(p) +s=q.a +r=p>=s.gj(s) +break +default:r=!1}if(r){p=q.a +s=q.gzv() +p.ee(s) +p.H(0,q.gTg()) +p=q.b +q.a=p +q.b=null +p.f8(s) +s=q.a +q.JG(s.gaP(s))}}else r=!1 +p=q.a +p=p.gj(p) +if(p!==q.f){q.ag() +q.f=p}if(r&&q.d!=null)q.d.$0()}, +gj(a){var s=this.a +return s.gj(s)}, +m(){var s,r,q=this +q.a.ee(q.gzv()) +s=q.gTg() +q.a.H(0,s) +q.a=null +r=q.b +if(r!=null)r.H(0,s) +q.b=null +q.dw$.ab(0) +q.ej$.ab(0) +q.Cp()}, +l(a){var s=this +if(s.b!=null)return A.i(s.a)+"\u27a9TrainHoppingAnimation(next: "+A.i(s.b)+")" +return A.i(s.a)+"\u27a9TrainHoppingAnimation(no next)"}} +A.BI.prototype={ +Lh(){var s,r=this,q=r.a,p=r.ga3g() +q.P(0,p) +s=r.ga3h() +q.f8(s) +q=r.b +q.P(0,p) +q.f8(s)}, +Li(){var s,r=this,q=r.a,p=r.ga3g() +q.H(0,p) +s=r.ga3h() +q.ee(s) +q=r.b +q.H(0,p) +q.ee(s)}, +gaP(a){var s=this.b +if(s.gaP(s)===B.b4||s.gaP(s)===B.b5)return s.gaP(s) +s=this.a +return s.gaP(s)}, +l(a){return"CompoundAnimation("+this.a.l(0)+", "+this.b.l(0)+")"}, +ax3(a){var s=this +if(s.gaP(s)!==s.c){s.c=s.gaP(s) +s.vA(s.gaP(s))}}, +ax2(){var s=this +if(!J.j(s.gj(s),s.d)){s.d=s.gj(s) +s.ag()}}} +A.Ih.prototype={ +gj(a){var s,r=this.a +r=r.gj(r) +s=this.b +s=s.gj(s) +return Math.min(A.l_(r),A.l_(s))}} +A.R_.prototype={} +A.R0.prototype={} +A.R1.prototype={} +A.afM.prototype={} +A.akF.prototype={} +A.akG.prototype={} +A.akH.prototype={} +A.alV.prototype={} +A.alW.prototype={} +A.aok.prototype={} +A.aol.prototype={} +A.aom.prototype={} +A.ML.prototype={ +a5(a,b){return this.u6(b)}, +u6(a){throw A.c(A.d1(null))}, +l(a){return"ParametricCurve"}} +A.jJ.prototype={ +a5(a,b){if(b===0||b===1)return b +return this.aiy(0,b)}} +A.Sx.prototype={ +u6(a){return a}} +A.NX.prototype={ +u6(a){a*=this.a +return a-(a<0?Math.ceil(a):Math.floor(a))}, +l(a){return"SawTooth("+this.a+")"}} +A.dZ.prototype={ +u6(a){var s=this.a +a=A.V((a-s)/(this.b-s),0,1) +if(a===0||a===1)return a +return this.c.a5(0,a)}, +l(a){var s=this,r=s.c +if(!(r instanceof A.Sx))return"Interval("+A.i(s.a)+"\u22ef"+A.i(s.b)+")\u27a9"+r.l(0) +return"Interval("+A.i(s.a)+"\u22ef"+A.i(s.b)+")"}} +A.PA.prototype={ +u6(a){return a"))}} +A.ax.prototype={ +gj(a){var s=this.a +return this.b.a5(0,s.gj(s))}, +l(a){var s=this.a,r=this.b +return s.l(0)+"\u27a9"+r.l(0)+"\u27a9"+A.i(r.a5(0,s.gj(s)))}, +Gz(){return this.HF()+" "+this.b.l(0)}, +gbP(a){return this.a}} +A.dz.prototype={ +a5(a,b){return this.b.a5(0,this.a.a5(0,b))}, +l(a){return this.a.l(0)+"\u27a9"+this.b.l(0)}} +A.aR.prototype={ +hk(a){var s=this.a +return A.l(this).h("aR.T").a(J.bpn(s,J.bE1(J.bE2(this.b,s),a)))}, +a5(a,b){var s,r=this +if(b===0){s=r.a +return s==null?A.l(r).h("aR.T").a(s):s}if(b===1){s=r.b +return s==null?A.l(r).h("aR.T").a(s):s}return r.hk(b)}, +l(a){return"Animatable("+A.i(this.a)+" \u2192 "+A.i(this.b)+")"}, +sTP(a){return this.a=a}, +scg(a,b){return this.b=b}} +A.NT.prototype={ +hk(a){return this.c.hk(1-a)}} +A.dG.prototype={ +hk(a){return A.W(this.a,this.b,a)}} +A.a9v.prototype={ +hk(a){return A.aVc(this.a,this.b,a)}} +A.uF.prototype={ +hk(a){return A.btC(this.a,this.b,a)}} +A.u_.prototype={ +hk(a){var s,r=this.a +r.toString +s=this.b +s.toString +return B.e.bg(r+(s-r)*a)}} +A.qa.prototype={ +hk(a){var s=this.a +return s==null?this.$ti.c.a(s):s}, +l(a){return"ConstantTween(value: "+A.i(this.a)+")"}} +A.eI.prototype={ +a5(a,b){if(b===0||b===1)return b +return this.a.a5(0,b)}, +l(a){return"CurveTween(curve: "+this.a.l(0)+")"}} +A.VL.prototype={} +A.PN.prototype={ +amT(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.Jl.prototype={ +a8(){return new A.afx(null,null,B.m)}} +A.afx.prototype={ +aX(){var s,r=this +r.b9() +s=A.bx(B.A,null,B.ei,0,null,1,null,r) +r.d=s +r.a.toString +s.Bq(0)}, +b1(a){this.bh(a) +this.a.toString}, +m(){var s=this.d +s===$&&A.b() +s.m() +this.alD()}, +A(a){var s,r=this.a +r.toString +s=this.d +s===$&&A.b() +r=r.c +r=B.a0B.eH(a) +this.a.toString +return A.cZ(A.iB(null,null,null,new A.afw(s,r,10,1,A.bLg(-1,-3.3333333333333335,1,-10,1,1),s),B.y),20,20)}, +$iaP:1} +A.afw.prototype={ +aE(a,b){var s,r,q,p,o,n,m,l,k=this,j=$.au().bk() +a.eo(0) +a.bi(0,b.a/2,b.b/2) +s=k.b.x +s===$&&A.b() +r=B.e.eC(8*s) +for(s=k.e,q=8*s,p=k.f,s=s<1,o=k.c,n=0;n>>16&255,o.gj(o)>>>8&255,o.gj(o)&255)) +a.d5(p,j) +a.u3(0,0.7853981633974483)}a.dg(0)}, +fv(a){return a.b!==this.b||!a.c.k(0,this.c)||a.e!==this.e}} +A.VT.prototype={ +m(){var s=this,r=s.c3$ +if(r!=null)r.H(0,s.ghP()) +s.c3$=null +s.b0()}, +cf(){this.cW() +this.cO() +this.hQ()}} +A.Jm.prototype={ +a8(){return new A.R6(new A.aR(1,null,t.Y),null,null,B.m)}} +A.R6.prototype={ +aX(){var s,r,q,p=this +p.b9() +s=A.bx(B.A,null,B.T,0,null,1,0,p) +p.e=s +r=t.m +q=p.d +p.f=new A.ax(r.a(new A.ax(r.a(s),new A.eI(B.dC),t.HY.h("ax"))),q,q.$ti.h("ax")) +p.a57()}, +b1(a){this.bh(a) +this.a57()}, +a57(){var s=this.a.x +this.d.b=s}, +m(){var s=this.e +s===$&&A.b() +s.m() +this.alE()}, +aot(a){if(!this.r){this.r=!0 +this.I_(0)}}, +aov(a){if(this.r){this.r=!1 +this.I_(0)}}, +aor(){if(this.r){this.r=!1 +this.I_(0)}}, +I_(a){var s,r,q,p=this.e +p===$&&A.b() +s=p.r +if(s!=null&&s.a!=null)return +r=this.r +if(r){p.z=B.aN +q=p.kh(1,B.lF,B.a1W)}else{p.z=B.aN +q=p.kh(0,B.a0o,B.a21)}q.be(new A.b3S(this,r),t.H)}, +A(a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=null,d=f.a.r==null,c=!d,b=A.j9(a1),a=b.gip(),a0=f.a.e +if(a0==null)s=e +else s=A.wJ(a0,a1) +a0=s!=null +if(a0)r=b.gvG() +else if(c)r=a +else{q=B.a0F.eH(a1) +r=q}p=b.gqb().gir().cM(r) +q=c&&!0?B.cy:B.cD +o=c?f.gaos():e +n=c?f.gaou():e +m=c?f.gaoq():e +l=f.a +k=l.r +j=l.w +i=f.f +i===$&&A.b() +h=l.y +if(a0&&d){d=l.f +if(d instanceof A.eh)d=d.eH(a1)}else d=s +l=f.a +g=l.d +if(g==null)a0=a0?B.a2A:B.jn +else a0=g +h=A.wP(new A.b4(a0,new A.ef(l.z,1,1,A.fI(A.xB(l.c,new A.d4(e,e,e,e,e,r,e,e),e),e,e,B.aU,!0,p,e,e,B.at),e),e),new A.dU(d,e,e,h,e,e,B.aK),B.dH) +return A.nj(A.dY(B.bE,new A.bu(A.bL(e,e,e,e,e,!0,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e),!1,!1,!1,!1,new A.eX(new A.aN(j,1/0,j,1/0),new A.cY(i,!1,h,e),e),e),B.D,!1,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,k,m,o,n,e,!1,B.am),q,e,e,e,e)}, +$iaP:1} +A.b3S.prototype={ +$1(a){var s=this.a +if(s.c!=null&&this.b!==s.r)s.I_(0)}, +$S:19} +A.VU.prototype={ +m(){var s=this,r=s.c3$ +if(r!=null)r.H(0,s.ghP()) +s.c3$=null +s.b0()}, +cf(){this.cW() +this.cO() +this.hQ()}} +A.Jn.prototype={ +a8(){return new A.R7(new A.aeV($.aH()),null,!1,$,null,null,B.m)}} +A.R7.prototype={ +aX(){this.b9() +this.e=this.a.c}, +b1(a){var s +this.bh(a) +s=a.c +if(s!=this.a.c)this.e=s}, +m(){var s=this.d +s.ok$=$.aH() +s.k4$=0 +this.alF()}, +gdS(){return this.a.d}, +gy5(){return this.a.w}, +gj(a){return this.a.c}, +Wx(a){if(this.f!==a)this.f=a}, +A(a){var s,r,q,p,o,n,m=this,l=null,k=m.a.e +if(k==null)k=B.jg +s=A.CF(A.K(204,k.gj(k)>>>16&255,k.gj(k)>>>8&255,k.gj(k)&255)) +r=new A.n8(s.a,s.b,0.835,0.69).Bx() +s=m.a +q=s.c +p=s.w?q==null:l +s=s.y +o=m.d +o.sln(r) +o.sqV(m.f) +o.sAl(m.xk$) +o.suL(k) +o.sAS(B.dF) +o.sth(B.l) +o.sj(0,m.a.c) +o.sX0(m.e) +o.sFr(m.a.d!=null) +m.a.toString +n=A.ID(4) +o.scH(0,new A.cM(n,B.u)) +o.sf7(m.a.Q) +s=m.a85(!1,s,m.gWw(),o,B.ar7) +return new A.bu(A.bL(l,l,l,l,l,l,q===!0,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,p,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l),!1,!1,!1,!1,s,l)}, +$iaP:1} +A.aeV.prototype={ +sth(a){if(J.j(this.as,a))return +this.as=a +this.ag()}, +sj(a,b){if(this.at==b)return +this.at=b +this.ag()}, +sX0(a){if(this.ax==a)return +this.ax=a +this.ag()}, +scH(a,b){if(J.j(this.ay,b))return +this.ay=b +this.ag()}, +sf7(a){return}, +Qj(a,b,c,d,e){if(e)a.e3(this.ay.lP(b),c) +if(d!=null)this.ay.pM(d).aE(a,b)}, +aE(a,b){var s,r,q,p,o,n,m,l,k,j=this,i=$.au(),h=i.bk(),g=j.as +g.toString +h.saf(0,g) +h.scA(0,B.ai) +h.seu(2.5) +h.sw5(B.pv) +s=t.EP.a(b.i7(0,2).a4(0,B.pn.i7(0,2))) +g=s.a +r=s.b +q=new A.L(g,r,g+18,r+18) +p=i.bk() +o=j.at +if(o!==!1){o=j.f +o.toString}else o=!1 +if(o){o=j.a +o.toString}else{o=j.b +o.toString}p.saf(0,o) +o=j.at +n=j.ch +if(o===!1){g=p.gaf(p) +j.Qj(a,q,p,new A.be(g,1,B.I,-1),!1)}else{j.Qj(a,q,p,n,!0) +o=j.at +if(o===!0){m=i.d1() +m.fh(0,g+4.5,r+9.36) +o=g+8.280000000000001 +n=r+13.5 +m.d_(0,o,n) +a.e3(m,h) +m.fh(0,o,n) +m.d_(0,g+12.959999999999999,r+5.22) +a.e3(m,h)}else a.j8(s.U(0,B.anN),s.U(0,B.ao3),h)}g=j.e +g.toString +if(g){l=q.e6(1) +k=i.bk() +i=j.c +i.toString +k.saf(0,i) +k.scA(0,B.ai) +k.seu(3.5) +j.Qj(a,l,k,j.ch,!0)}}} +A.VV.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.app.prototype={} +A.eh.prototype={ +gj(a){return this.b.a}, +gD6(){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)}, +gD4(){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)}, +gD5(){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)}, +eH(a){var s,r,q,p,o,n=this,m=null +if(n.gD6()){s=a.aj(t.WD) +r=s==null?m:s.f.c.guS() +if(r==null){r=A.d9(a,B.q8) +r=r==null?m:r.e +q=r}else q=r +if(q==null)q=B.a2}else q=B.a2 +if(n.gD4()){r=A.d9(a,B.PF) +r=r==null?m:r.as +p=r===!0}else p=!1 +if(n.gD5())A.bGq(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.eh(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.a_(b)!==A.p(s))return!1 +return b instanceof A.eh&&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.X(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)}, +l(a){var s=this,r=new A.ay1(s),q=A.a([r.$2("color",s.e)],t.s) +if(s.gD6())q.push(r.$2("darkColor",s.f)) +if(s.gD4())q.push(r.$2("highContrastColor",s.r)) +if(s.gD6()&&s.gD4())q.push(r.$2("darkHighContrastColor",s.w)) +if(s.gD5())q.push(r.$2("elevatedColor",s.x)) +if(s.gD6()&&s.gD5())q.push(r.$2("darkElevatedColor",s.y)) +if(s.gD4()&&s.gD5())q.push(r.$2("highContrastElevatedColor",s.z)) +if(s.gD6()&&s.gD4()&&s.gD5())q.push(r.$2("darkHighContrastElevatedColor",s.Q)) +r=s.c +if(r==null)r="CupertinoDynamicColor" +q=B.b.ck(q,", ") +return r+"("+q+", resolved by: UNRESOLVED)"}} +A.ay1.prototype={ +$2(a,b){var s=b.k(0,this.a.b)?"*":"" +return s+a+" = "+b.l(0)+s}, +$S:466} +A.afA.prototype={} +A.afz.prototype={} +A.ay0.prototype={ +BU(a){return B.y}, +KD(a,b,c,d){return B.a1}, +BT(a,b){return B.i}} +A.apq.prototype={} +A.ZC.prototype={ +A(a){var s=null,r=A.aY(a,B.bR,t.l).w.r.b+8,q=this.c.a4(0,new A.m(8,r)),p=A.cP(this.d,B.w,B.z,B.ah),o=$.au().Eo(20,20,B.cT) +return new A.b4(new A.aK(8,r,8,8),new A.l8(new A.a0Q(q),A.cQ(s,A.atA(A.wP(new A.b4(B.a2B,p,s),new A.dU(B.a0C.eH(a),s,A.bq1(B.a0y.eH(a),1),B.bv,s,s,B.aK),B.dH),o),B.C,s,s,B.QG,s,s,s,s,222),s),s)}} +A.wI.prototype={ +a8(){return new A.R8(B.m)}} +A.R8.prototype={ +ay_(a){this.ad(new A.b3T(this))}, +ay3(a){this.ad(new A.b3U(this))}, +A(a){var s=this,r=null,q=s.a.f,p=A.P(q,r,B.ad,r,r,B.P7.cM(s.d?A.j9(a).gvG():B.jh.eH(a)),r,r) +q=s.d?A.j9(a).gip():r +return A.cZ(A.nj(A.ZB(B.iO,B.h8,p,q,B.ji,0,s.a.c,B.a2D,0.7),B.cD,r,s.gaxZ(),s.gay2(),r),r,1/0)}} +A.b3T.prototype={ +$0(){this.a.d=!0}, +$S:0} +A.b3U.prototype={ +$0(){this.a.d=!1}, +$S:0} +A.ZE.prototype={ +L(a){var s=this.f,r=A.wJ(s,a) +return J.j(r,s)?this:this.cM(r)}, +Em(a,b,c,d,e,f,g,h){var s=this,r=g==null?s.a:g,q=b==null?s.b:b,p=h==null?s.c:h,o=c==null?s.d:c,n=e==null?s.e:e,m=a==null?s.f:a,l=d==null?s.gi_(s):d +return A.bqs(m,q,o,l,n,f==null?s.w:f,r,p)}, +cM(a){return this.Em(a,null,null,null,null,null,null,null)}} +A.afB.prototype={} +A.afC.prototype={ +xB(a){return a.ge0(a)==="en"}, +na(a,b){return new A.cC(B.RZ,t.u4)}, +w0(a){return!1}, +l(a){return"DefaultCupertinoLocalizations.delegate(en_US)"}} +A.a0G.prototype={ +ga_(){return"Cut"}, +gZ(){return"Copy"}, +ga0(){return"Paste"}, +gM(){return"Select All"}, +gK(){return"Look Up"}, +ga1(){return"Search Web"}, +gbH(){return"Share..."}, +$iaA:1} +A.JA.prototype={ +a8(){return new A.Rc(B.i,null,null,B.m)}} +A.Rc.prototype={ +aX(){var s,r,q=this +q.b9() +s=A.bx(B.A,null,B.d0,0,null,1,0,q) +s.cF() +r=s.dw$ +r.b=!0 +r.a.push(new A.b45(q)) +q.f=s +r=q.a +r.d.a=s +r.w.P(0,q.gRH()) +r=t.Y +s=q.f +q.a.toString +q.r=new A.ax(A.c5(B.d_,s,null),new A.aR(0,1,r),r.h("ax"))}, +m(){var s,r=this +r.a.d.a=null +s=r.f +s===$&&A.b() +s.m() +r.a.w.H(0,r.gRH()) +r.alI()}, +b1(a){var s,r=this,q=a.w +if(q!==r.a.w){s=r.gRH() +q.H(0,s) +r.a.w.P(0,s)}r.bh(a)}, +ca(){this.a37() +this.e8()}, +a37(){var s,r,q,p=this,o=p.a.w,n=o.gj(o),m=n.c.gbM().b +o=n.a +s=m-o.b +r=p.a +r.toString +if(s<-48){if(r.d.gHy())p.a.d.Ff(!1) +return}if(!r.d.gHy()){r=p.f +r===$&&A.b() +r.bS(0)}p.a.toString +q=Math.max(m,m-s/10) +o=o.a-40 +s=q-73.5 +r=p.c +r.toString +r=A.aY(r,B.iK,t.l).w.a +p.a.toString +s=A.bsD(new A.L(10,-21.5,0+r.a-10,0+r.b+21.5),new A.L(o,s,o+80,s+47.5)) +p.ad(new A.b43(p,new A.m(s.a,s.b),m,q))}, +A(a){var s,r,q=this +q.a.toString +s=q.d +r=q.r +r===$&&A.b() +return A.bpP(new A.a0m(r,new A.m(0,q.e),null),B.d_,B.a2b,s.a,s.b)}, +$iaP:1} +A.b45.prototype={ +$0(){return this.a.ad(new A.b44())}, +$S:0} +A.b44.prototype={ +$0(){}, +$S:0} +A.b43.prototype={ +$0(){var s=this,r=s.a +r.d=s.b +r.e=s.c-s.d}, +$S:0} +A.a0m.prototype={ +A(a){var s,r,q=null,p=this.r,o=p.b +p=p.a +o.a5(0,p.gj(p)) +s=new A.m(0,49.75).U(0,this.w) +r=o.a5(0,p.gj(p)) +r=A.mb(B.anE,B.i,r==null?1:r) +r.toString +p=o.a5(0,p.gj(p)) +if(p==null)p=1 +p=A.bsE(p,B.aeU,new A.cM(B.Qe,B.Qj)) +return new A.rk(A.ng(r.a,r.b,0),q,!0,q,new A.Ea(q,p,s,1,B.arc,q),q)}} +A.VY.prototype={ +m(){var s=this,r=s.c3$ +if(r!=null)r.H(0,s.ghP()) +s.c3$=null +s.b0()}, +cf(){this.cW() +this.cO() +this.hQ()}} +A.S5.prototype={ +l(a){return"Default Hero tag for Cupertino navigation bars with navigator "+A.i(this.a)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.S5&&b.a==this.a}, +gu(a){return A.t3(this.a)}} +A.agZ.prototype={ +A(a){var s,r,q,p=this,o=null,n=p.r,m=n.b +n=n.a +s=m.a5(0,n.gj(n)).b +r=p.e +q=r?m.a5(0,n.gj(n)).a:o +n=r?o:m.a5(0,n.gj(n)).a +m=p.f +return A.hp(o,p.w,m.b,o,q,n,s,m.a)}} +A.Jw.prototype={ +grb(){return B.arf}, +a8(){return new A.afD(B.m)}, +$iqZ:1} +A.afD.prototype={ +aX(){this.b9() +var s=t.C +this.d=new A.b8I(new A.bq("Navigation bar render box",s),new A.bq("Leading",s),new A.bq("Back chevron",s),new A.bq("Back label",s),new A.bq("Middle",s),new A.bq("Trailing",s),new A.bq("Large title",s))}, +A(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null +h.a.toString +s=A.wJ(g,a) +if(s==null)s=A.j9(a).gwQ() +r=h.d +r===$&&A.b() +q=t.X +p=A.oV(a,q) +h.a.toString +o=A.bPn(!0,r.b,g,p,g) +n=A.bPk(!0,r.c,p,g) +m=A.bPl(!0,r.d,g,p,g) +l=A.bPo(!0,!1,r.e,p,g,B.P9) +k=A.bPp(g,r.f,g) +A.bPm(!0,!1,r.r,p,g) +h.a.toString +p=A.j9(a).gqb().gir() +h.a.toString +j=A.by3(s,B.qG,g,A.fI(new A.ak_(new A.b8H(o,n,m,l,k),g,g),g,g,B.aU,!0,p,g,g,B.at),!0) +h.a.toString +i=A.oV(a,q) +r=!(i instanceof A.jY&&!i.gpY()) +if(r)return j +return new A.e4(new A.b3Z(h,s,j),g)}} +A.b3Z.prototype={ +$1(a){var s,r,q,p,o=this.a +o.a.toString +if(B.q6.k(0,B.q6))s=new A.S5(A.du(a,!1)) +else{o.a.toString +s=B.q6}r=o.d +r===$&&A.b() +q=A.j9(a).gqb().gac7() +p=A.j9(a).gqb().gMB() +o.a.toString +return A.brZ(new A.UY(r,this.b,q,p,null,B.qG,!0,!1,this.c,r.a),A.bWu(),A.bWv(),A.bWw(),s,!0)}, +$S:482} +A.ak_.prototype={ +A(a){var s,r,q,p,o=null,n=this.c,m=n.d +if(m!=null){s=A.j9(a).gqb().gMB() +m=A.fI(new A.bu(A.bL(o,o,o,o,o,o,o,o,o,o,o,o,o,o,!0,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o),!1,!1,!1,!1,m,o),o,o,B.aU,!0,s,o,o,B.at)}r=n.a +q=n.b +p=n.c +if(r==null&&q!=null&&p!=null)r=new A.a0n(q,p,o) +s=A.aY(a,B.bR,t.l).w +return A.cZ(A.z8(!1,new A.Mo(r,m,n.e,!0,6,o),!0,B.a8,!0,!0),44+s.r.b,o)}} +A.b8I.prototype={} +A.b8H.prototype={} +A.b8J.prototype={ +$0(){this.a.a.Mw()}, +$S:0} +A.a0n.prototype={ +A(a){var s,r,q=null +A.oV(a,t.X) +s=A.j9(a).gqb().gac7() +r=A.fI(new A.eX(B.QF,A.db(A.a([B.aon,this.f,B.aoo,new A.oE(1,B.fm,this.r,q)],t.p),B.w,B.z,B.ah),q),q,q,B.aU,!0,s,q,q,B.at) +return A.ZB(B.a7,B.bv,new A.bu(A.bL(q,q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,"Back",q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q),!0,!1,!0,!1,r,q),q,B.ji,44,new A.ay3(this,a),B.a8,0.4)}} +A.ay3.prototype={ +$0(){A.aMa(this.b)}, +$S:0} +A.aej.prototype={ +A(a){var s,r,q,p=null,o=a.aj(t.I) +o.toString +s=a.aj(t.sp) +if(s==null)s=B.mS +r=A.el(62415) +q=new A.b4(B.a2g,A.blM(A.dr(p,A.hb(p,p,s.w.b,p,p,p,p,p,"CupertinoIcons",p,p,30,p,p,p,p,p,!1,p,p,p,p,"cupertino_icons",p,p,p),r),p,p),p) +switch(o.w.a){case 0:o=new A.bQ(new Float64Array(16)) +o.fQ() +o.rC(0,-1,1,1) +q=A.zO(B.a7,q,p,o,!1) +break +case 1:break}return q}} +A.QA.prototype={ +aod(a,b,c){var s,r=null +if(b==null)return B.a1 +s=A.P(b,1,B.ad,r,r,r,r,r) +return new A.ef(B.cV,1,r,b.length>12?B.axv:s,r)}, +A(a){var s=this.d +if(s instanceof A.rH&&!s.gMh()){s.toString +s=t.My.a(s).LH$ +s.toString +return A.bv8(this.gaoc(),s,t.v)}else return B.a1}} +A.UY.prototype={ +gBp(){var s=$.ap.Y$.z.i(0,this.c.a).ga7() +s.toString +return t.x.a(s)}, +A(a){return this.z}} +A.ajw.prototype={ +A(a){var s,r,q,p,o,n=this,m=n.c,l=n.e,k=n.d,j=a.aj(t.I) +j.toString +s=l.gBp() +r=k.gBp() +q=l.gBp() +q=q.gq(q) +p=k.gBp() +p=p.gq(p) +p=new A.L(0,0,0+q.a,0+q.b).oY(new A.L(0,0,0+p.a,0+p.b)) +j=j.w===B.j?1:-1 +o=new A.b8B(m,l.c,k.c,s,r,l.e,k.e,l.f,k.f,l.r,k.r,l.x,k.x,!1,!1,p,j) +m=A.a([A.hg(m,new A.b8K(n),null)],t.p) +if(o.ga7T()!=null){l=o.ga7T() +l.toString +m.push(l)}if(o.ga7U()!=null){l=o.ga7U() +l.toString +m.push(l)}if(o.ga7W()!=null){l=o.ga7W() +l.toString +m.push(l)}if(o.ga7X()!=null){l=o.ga7X() +l.toString +m.push(l)}if(o.ga7V()!=null){l=o.ga7V() +l.toString +m.push(l)}if(o.ga7Y()!=null){l=o.ga7Y() +l.toString +m.push(l)}if(o.gadW()!=null){l=o.gadW() +l.toString +m.push(l)}if(o.gadT()!=null){l=o.gadT() +l.toString +m.push(l)}if(o.gadU()!=null){l=o.gadU() +l.toString +m.push(l)}if(o.gadX()!=null){l=o.gadX() +l.toString +m.push(l)}if(o.gadV()!=null){l=o.gadV() +l.toString +m.push(l)}if(o.gadY()!=null){l=o.gadY() +l.toString +m.push(l)}l=n.f +k=l.a +k.toString +l=l.b +l.toString +l=Math.max(A.l_(k),A.l_(l)) +k=A.aY(a,B.bR,t.l).w +return A.bsP(A.cZ(A.fp(B.bu,m,B.C,B.aJ,null),l+k.r.b,1/0))}} +A.b8K.prototype={ +$2(a,b){var s=this.a,r=s.c,q=s.r.a5(0,r.gj(r)) +q.toString +return A.by3(q,s.w.a5(0,r.gj(r)),null,A.cZ(null,s.f.a5(0,r.gj(r)),1/0),!1)}, +$S:51} +A.b8B.prototype={ +ra(a,b){var s,r,q=$.ap.Y$.z.i(0,a).ga7() +q.toString +t.x.a(q) +s=A.cL(q.cl(0,b),B.i) +q=q.gq(q) +r=s.a +s=s.b +return A.btF(new A.L(r,s,r+q.a,s+q.b),this.ay)}, +Z8(a,b,c,d,e){var s,r,q,p,o,n,m,l,k,j,i,h=$.ap.Y$.z.i(0,b).ga7() +h.toString +s=t.x +s.a(h) +r=$.ap.Y$.z.i(0,d).ga7() +r.toString +s.a(r) +q=this.ch>0 +s=q?0:h.gq(h).a +p=h.gq(h) +o=q?0:r.gq(r).a +n=r.gq(r) +m=A.cL(h.cl(0,c),new A.m(s,p.b/2)) +l=A.cL(r.cl(0,e),new A.m(o,n.b/2)) +k=q?l.a4(0,m):new A.m(e.gq(e).a-l.a,l.b).a4(0,new A.m(c.gq(c).a-m.a,m.b)) +j=this.ra(b,c) +s=q?j.a:j.c +i=new A.m(s,j.b) +s=i.U(0,k) +r=t.Ni +return A.bvT(a,q,new A.ax(t.m.a(this.a),new A.aR(i,s,r),r.h("ax")),h.gq(h))}, +EU(a){var s=$.bC4(),r=s.$ti.h("dz") +return new A.ax(t.m.a(this.a),new A.dz(new A.eI(new A.dZ(a,1,B.bB)),s,r),r.h("ax"))}, +Av(a){var s=$.bC5(),r=s.$ti.h("dz") +return new A.ax(t.m.a(this.a),new A.dz(new A.eI(new A.dZ(0,a,B.d_)),s,r),r.h("ax"))}, +ga7W(){var s=this,r=s.b.b,q=$.ap.Y$.z.i(0,r) +q=q==null?null:q.gbc() +t.SC.a(q) +if(q==null)return null +r=s.ra(r,s.d) +return A.DW(new A.cY(s.Av(0.4),!1,q.c,null),r)}, +ga7T(){var s=this,r=null,q=s.b.c,p=$.ap.Y$.z.i(0,q) +p=p==null?r:p.gbc() +t.SC.a(p) +if(p==null)return r +q=s.ra(q,s.d) +return A.DW(new A.cY(s.Av(0.6),!1,A.fI(p.c,r,r,B.aU,!0,s.f,r,r,B.at),r),q)}, +ga7U(){var s,r,q=this,p=null,o=q.b.d,n=$.ap.Y$.z.i(0,o) +n=n==null?p:n.gbc() +t.SC.a(n) +if(n==null)return p +s=q.d +r=q.ra(o,s) +s=r.dq(new A.m(q.ch*(-s.gq(s).a/2),0)) +o=t.m.a(q.a) +return new A.N4(new A.cY(q.Av(0.2),!1,A.fI(n.c,p,p,B.aU,!0,q.f,p,p,B.at),p),new A.ax(o,new A.Ee(r,s),t.MD.h("ax")),p)}, +ga7X(){var s,r,q,p,o,n,m=this,l=null,k=m.b.e,j=$.ap.Y$.z.i(0,k) +j=j==null?l:j.gbc() +s=t.SC +s.a(j) +r=m.c +q=r.d +p=$.ap.Y$.z.i(0,q) +o=s.a(p==null?l:p.gbc()) +r=$.ap.Y$.z.i(0,r.b) +n=s.a(r==null?l:r.gbc()) +s=j!=null +if(s&&o!=null){s=m.Av(m.Q?0.4:0.7) +r=t.m.a(m.a) +return m.Z8(new A.cY(s,!1,new A.ef(B.cV,l,l,A.bqD(j.c,l,B.aU,new A.ax(r,new A.pk(m.w,m.r),t.ta.h("ax"))),l),l),k,m.d,q,m.e)}if(s&&n!=null){k=m.ra(k,m.d) +return A.DW(new A.cY(m.Av(m.Q?0.4:0.7),!1,A.fI(j.c,l,l,B.aU,!0,m.w,l,l,B.at),l),k)}return l}, +ga7V(){var s,r,q=null,p=$.ap.Y$.z.i(0,this.b.r) +p=p==null?q:p.gbc() +s=t.SC +s.a(p) +p=this.c +r=$.ap.Y$.z.i(0,p.d) +s.a(r==null?q:r.gbc()) +p=$.ap.Y$.z.i(0,p.b) +s.a(p==null?q:p.gbc()) +return q}, +ga7Y(){var s=this,r=s.b.f,q=$.ap.Y$.z.i(0,r) +q=q==null?null:q.gbc() +t.SC.a(q) +if(q==null)return null +r=s.ra(r,s.d) +return A.DW(new A.cY(s.Av(0.6),!1,q.c,null),r)}, +gadW(){var s=this,r=s.c.b,q=$.ap.Y$.z.i(0,r) +q=q==null?null:q.gbc() +t.SC.a(q) +if(q==null)return null +r=s.ra(r,s.e) +return A.DW(new A.cY(s.EU(0.6),!1,q.c,null),r)}, +gadT(){var s,r,q,p,o,n=this,m=null,l=n.c.c,k=$.ap.Y$.z.i(0,l) +k=k==null?m:k.gbc() +s=t.SC +s.a(k) +r=$.ap.Y$.z.i(0,n.b.c) +q=s.a(r==null?m:r.gbc()) +if(k==null)return m +p=n.ra(l,n.e) +s=q==null +if(s){l=$.ap.Y$.z.i(0,l).ga7() +l.toString +t.x.a(l) +o=p.dq(new A.m(n.ch*l.gq(l).a*2,0))}else o=p +l=t.m.a(n.a) +return new A.N4(new A.cY(n.EU(s?0.7:0.4),!1,A.fI(k.c,m,m,B.aU,!0,n.r,m,m,B.at),m),new A.ax(l,new A.Ee(o,p),t.MD.h("ax")),m)}, +gadU(){var s,r,q,p,o,n=this,m=null,l=n.b,k=l.e,j=$.ap.Y$.z.i(0,k) +j=j==null?m:j.gbc() +s=t.SC +s.a(j) +l=$.ap.Y$.z.i(0,l.r) +s.a(l==null?m:l.gbc()) +l=n.c.d +r=$.ap.Y$.z.i(0,l) +q=s.a(r==null?m:r.gbc()) +if(q==null)return m +s=$.ap.Y$.z.i(0,l) +p=s==null?m:s.xn(t.re) +if(p!=null){s=p.vf$ +s=s.gj(s)<1}else s=!1 +if(s){s=p.vf$ +s=s.gj(s) +r=t.Y +o=new A.ax(t.m.a(n.a),new A.aR(0,s,r),r.h("ax"))}else o=m +if(j!=null){j=o==null?n.EU(0.3):o +s=t.m.a(n.a) +return n.Z8(new A.cY(j,!1,A.bqD(q.c,m,B.aU,new A.ax(s,new A.pk(n.w,n.r),t.ta.h("ax"))),m),k,n.d,l,n.e)}return m}, +gadX(){var s,r,q,p,o,n,m,l,k=this,j=null,i=k.c.e,h=$.ap.Y$.z.i(0,i) +h=h==null?j:h.gbc() +t.SC.a(h) +if(h==null)return j +s=k.e +r=k.ra(i,s) +i=$.ap.Y$.z.i(0,i).ga7() +i.toString +t.x.a(i) +q=k.ch>0 +p=q?r.a:r.c +o=r.b +s=s.gq(s) +n=i.gq(i) +m=t.Ni +l=t.m.a(k.a) +i=i.gq(i) +return A.bvT(new A.cY(k.EU(0.25),!1,A.fI(h.c,j,j,B.aU,!0,k.x,j,j,B.at),j),q,new A.ax(l,new A.aR(new A.m(s.a-n.a/2,o),new A.m(p,o),m),m.h("ax")),i)}, +gadY(){var s=this,r=s.c.f,q=$.ap.Y$.z.i(0,r) +q=q==null?null:q.gbc() +t.SC.a(q) +if(q==null)return null +r=s.ra(r,s.e) +return A.DW(new A.cY(s.EU(0.4),!1,q.c,null),r)}, +gadV(){var s=$.ap.Y$.z.i(0,this.c.r) +s=s==null?null:s.gbc() +t.SC.a(s) +return null}} +A.Jx.prototype={ +a8(){return new A.R9(B.m)}} +A.R9.prototype={ +ayL(){var s,r=this.c +r.toString +s=A.E_(r) +if(s!=null&&s.f.length!==0)s.j3(0,B.fe,B.bD)}, +A(a){var s,r,q,p,o,n,m,l=this,k=null,j=l.a.d,i=A.aY(a,k,t.l).w +l.a.toString +s=i.r +r=s.b +q=44+r +p=i.f +o=p.d +n=p.Ef(0) +l.a.toString +m=A.wJ(k,a) +if(m==null)m=A.j9(a).gwQ() +j=(m.gj(m)>>>24&255)===255?A.ni(new A.b4(new A.aK(0,q,0,o),j,k),i.aOR(!0).aHg(n),k):A.ni(new A.b4(new A.aK(0,0,0,o),j,k),i.aHs(s.aHe(q),n),k) +l.a.toString +s=A.wJ(k,a) +if(s==null)s=A.j9(a).gvW() +p=A.a([j],t.p) +p.push(A.hp(k,A.bsP(l.a.c),k,k,0,0,0,k)) +p.push(A.hp(k,A.dY(k,k,B.D,!0,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,l.gayK(),k,k,k,k,!1,B.am),r,k,0,0,0,k)) +return A.wP(A.fp(B.bu,p,B.C,B.aJ,k),new A.dU(s,k,k,k,k,k,B.aK),B.dH)}} +A.BO.prototype={ +a8(){return new A.Gb(new A.akM($.aH()),null,!1,$,null,null,B.m,this.$ti.h("Gb<1>"))}} +A.Gb.prototype={ +azY(a){var s +if(a==null){this.a.e.$1(null) +return}if(a){s=this.a +s.e.$1(s.c)}}, +m(){var s=this.d +s.ok$=$.aH() +s.k4$=0 +this.alG()}, +gdS(){this.a.toString +return this.gazX()}, +gy5(){this.a.toString +return!1}, +gj(a){var s=this.a +return J.j(s.c,s.d)}, +Wx(a){if(this.e!==a)this.e=a}, +A(a){var s,r,q,p,o,n,m,l=this,k=null,j=l.a.w +if(j==null)j=B.jg +s=A.CF(A.K(204,j.gj(j)>>>16&255,j.gj(j)>>>8&255,j.gj(j)&255)) +r=new A.n8(s.a,s.b,0.835,0.69).Bx() +s=A.CF(j) +q=new A.n8(s.a,s.b,s.c,0.45).Bx() +s=l.a +s.toString +switch(A.c3().a){case 0:case 1:case 3:case 5:p=k +break +case 2:case 4:p=J.j(s.c,s.d) +break +default:p=k}s=l.a +s=J.j(s.c,s.d) +o=l.a.Q +n=l.d +n.sln(r) +n.sAl(l.xk$) +n.sqV(l.e) +n.suL(l.xk$!=null?q:j) +n.sAS(B.l) +n.shD(B.l) +m=l.a +n.sj(0,J.j(m.c,m.d)) +l.a.toString +n.saGi(!1) +n=l.a85(!1,o,l.gWw(),n,B.pn) +return new A.bu(A.bL(k,k,k,k,k,k,s,k,k,k,k,k,k,k,k,k,k,k,k,!0,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,p,k,k,k,k,k,k,k,k),!1,!1,!1,!1,n,k)}, +$iaP:1} +A.akM.prototype={ +sj(a,b){if(this.as===b)return +this.as=b +this.ag()}, +shD(a){if(a.k(0,this.at))return +this.at=a +this.ag()}, +saGi(a){return}, +aE(a,b){var s=this,r=new A.L(0,0,0+b.a,0+b.b).gbM(),q=$.au().bk(),p=s.b +p.toString +q.saf(0,p) +q.scA(0,B.bj) +q.seu(0.1) +a.fZ(r,7,q) +q.scA(0,B.ai) +q.saf(0,B.dF) +a.fZ(r,7,q) +p=s.as +if(p===!0){q.scA(0,B.bj) +p=s.a +p.toString +q.saf(0,p) +a.fZ(r,7,q) +p=s.at +p.toString +q.saf(0,p) +a.fZ(r,2.975,q)}p=s.e +p.toString +if(p){q.scA(0,B.ai) +p=s.c +p.toString +q.saf(0,p) +q.seu(3) +a.fZ(r,8.5,q)}}} +A.HI.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.VW.prototype={} +A.Jy.prototype={ +gu7(a){return B.bD}, +gpJ(){this.$ti.h("jI<1>").a(this.b) +return B.TV}, +gtb(){return null}, +KH(a){var s +if(a instanceof A.rH){a.$ti.h("jI<1>").a(a.b) +s=!0}else s=!1 +return s}, +qE(a,b,c){var s=null,r=this.$ti.h("jI<1>").a(this.b) +return new A.bu(A.bL(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s,s),!1,!0,!1,!1,r.r,s)}, +zL(a,b,c,d){return A.bqv(this,a,b,c,d,this.$ti.c)}} +A.ay4.prototype={ +$0(){return A.bGj(this.a)}, +$S:10} +A.ay5.prototype={ +$0(){var s=this.a,r=s.a +r.toString +s=s.at +s.toString +r.aIg() +return new A.R5(s,r,this.b.h("R5<0>"))}, +$S(){return this.b.h("R5<0>()")}} +A.rH.prototype={ +gtP(){this.$ti.h("jI<1>").a(this.b) +return!0}, +gpY(){this.$ti.h("jI<1>").a(this.b) +return!1}, +gv0(){return A.fr.prototype.gv0.call(this)+"("+A.i(this.$ti.h("jI<1>").a(this.b).a)+")"}} +A.jI.prototype={ +v_(a){var s=null,r=this.$ti,q=A.a([],t.Zt),p=$.ac,o=r.h("a7<1?>"),n=r.h("aD<1?>"),m=A.mf(B.bV),l=A.a([],t.wi),k=$.aH(),j=$.ac +return new A.rH(s,!1,!0,!1,s,s,q,A.aW(t.kj),new A.bq(s,r.h("bq>")),new A.bq(s,t.C),new A.p1(),s,0,new A.aD(new A.a7(p,o),n),m,l,this,new A.bF(s,k,t.XR),new A.aD(new A.a7(j,o),n),r.h("rH<1>"))}} +A.a0o.prototype={ +A(a){var s,r=this,q=a.aj(t.I) +q.toString +s=q.w +q=r.e +return A.Oz(A.Oz(new A.a0C(q,r.f,q,null),r.c,s,!0),r.d,s,!1)}} +A.ZD.prototype={ +A(a){var s=a.aj(t.I) +s.toString +return A.Oz(A.Oz(this.e,this.c,null,!0),this.d,s.w,!1)}} +A.G9.prototype={ +a8(){return new A.Ga(B.m,this.$ti.h("Ga<1>"))}, +aIy(){return this.d.$0()}, +aNs(){return this.e.$0()}} +A.Ga.prototype={ +aX(){var s,r=this +r.b9() +s=A.a2F(r,null) +s.ay=r.gaAN() +s.ch=r.gaAP() +s.CW=r.gaAL() +s.cx=r.gaAJ() +r.e=s}, +m(){var s=this.e +s===$&&A.b() +s.ok.ab(0) +s.pz() +this.b0()}, +aAO(a){this.d=this.a.aNs()}, +aAQ(a){var s,r,q=this.d +q.toString +s=a.c +s.toString +r=this.c +r=this.a0G(s/r.gq(r).a) +q=q.a +s=q.x +s===$&&A.b() +q.sj(0,s-r)}, +aAM(a){var s,r=this,q=r.d +q.toString +s=r.c +q.a9K(r.a0G(a.a.a.a/s.gq(s).a)) +r.d=null}, +aAK(){var s=this.d +if(s!=null)s.a9K(0) +this.d=null}, +aAS(a){var s +if(this.a.aIy()){s=this.e +s===$&&A.b() +s.zA(a)}}, +a0G(a){var s=this.c.aj(t.I) +s.toString +switch(s.w.a){case 0:return-a +case 1:return a}}, +A(a){var s,r,q=null,p=a.aj(t.I) +p.toString +s=t.l +r=p.w===B.j?A.aY(a,B.bR,s).w.r.a:A.aY(a,B.bR,s).w.r.c +r=Math.max(r,20) +return A.fp(B.bu,A.a([this.a.c,new A.a7k(0,0,0,r,A.uc(B.aQ,q,q,q,this.gaAR(),q,q,q),q)],t.p),B.C,B.OG,q)}} +A.R5.prototype={ +a9K(a){var s,r,q,p,o=this +if(Math.abs(a)>=1)s=a<=0 +else{r=o.a.x +r===$&&A.b() +s=r>0.5}if(s){r=o.a +q=r.x +q===$&&A.b() +q=A.ag(800,0,q) +q.toString +q=A.dW(0,Math.min(B.e.eC(q),300),0) +r.z=B.aN +r.kh(1,B.uX,q)}else{o.b.i2() +r=o.a +q=r.r +if(q!=null&&q.a!=null){q=r.x +q===$&&A.b() +q=A.ag(0,800,q) +q.toString +q=A.dW(0,B.e.eC(q),0) +r.z=B.lM +r.kh(0,B.uX,q)}}q=r.r +if(q!=null&&q.a!=null){p=A.b6("animationStatusCallback") +p.b=new A.b3R(o,p) +q=p.aH() +r.cF() +r=r.ej$ +r.b=!0 +r.a.push(q)}else o.b.Lj()}} +A.b3R.prototype={ +$1(a){var s=this.a +s.b.Lj() +s.a.ee(this.b.aH())}, +$S:9} +A.o2.prototype={ +f0(a,b){var s +if(a instanceof A.o2){s=A.b3V(a,this,b) +s.toString +return s}s=A.b3V(null,this,b) +s.toString +return s}, +f1(a,b){var s +if(a instanceof A.o2){s=A.b3V(this,a,b) +s.toString +return s}s=A.b3V(this,null,b) +s.toString +return s}, +A1(a){return new A.b3Y(this,a)}, +k(a,b){var s,r +if(b==null)return!1 +if(J.a_(b)!==A.p(this))return!1 +if(b instanceof A.o2){s=b.a +r=this.a +r=s==null?r==null:s===r +s=r}else s=!1 +return s}, +gu(a){return J.T(this.a)}} +A.b3W.prototype={ +$1(a){var s=A.W(null,a,this.a) +s.toString +return s}, +$S:90} +A.b3X.prototype={ +$1(a){var s=A.W(null,a,1-this.a) +s.toString +return s}, +$S:90} +A.b3Y.prototype={ +kD(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;k").a(a.b) +s=this.LH$ +if(s==null)this.LH$=new A.bF(null,$.aH(),t.XR) +else s.sj(0,null) +this.aif(a)}} +A.BP.prototype={ +a8(){return new A.Ra(new A.bq(null,t.C),null,null,B.m)}} +A.Ra.prototype={ +aX(){var s,r=this +r.ZQ() +s=r.cy=A.bx(B.A,null,B.aX,0,null,1,null,r) +s.cF() +s=s.dw$ +s.b=!0 +s.a.push(new A.b40(r))}, +GL(){var s,r,q,p=this,o=p.at +o===$&&A.b() +s=p.c +s.toString +s=B.a0H.eH(s) +o.saf(0,s) +s=p.c.aj(t.I) +s.toString +o.scz(s.w) +s=p.a +r=s.w +r.toString +q=p.cy +q===$&&A.b() +q=q.x +q===$&&A.b() +o.sXt(r+q*(s.fy-r)) +o.sWd(3) +o.sUw(3) +r=p.a +s=r.r +r=r.go +q=p.cy.x +q===$&&A.b() +q=A.Ng(s,r,q) +q.toString +o.sGe(q) +q=p.c +q.toString +o.sdD(0,A.aY(q,B.bR,t.l).w.r) +o.sWk(0,36) +o.sac1(8) +o.sOh(p.a.db)}, +LY(a){var s,r=this +r.ZP(a) +s=r.vU() +if(s==null)return +switch(s.a){case 1:r.db=a.b +break +case 0:r.db=a.a +break}}, +LW(){if(this.vU()==null)return +this.aiL() +var s=this.cy +s===$&&A.b() +s.bS(0).be(new A.b4_(),t.H)}, +LX(a,b){var s,r=this,q=r.vU() +if(q==null)return +s=r.cy +s===$&&A.b() +s.d3(0) +r.ZO(a,b) +switch(q.a){case 1:if(Math.abs(b.a.b)<10&&Math.abs(a.b-r.db)>0)A.KT() +break +case 0:if(Math.abs(b.a.a)<10&&Math.abs(a.a-r.db)>0)A.KT() +break}}, +m(){var s=this.cy +s===$&&A.b() +s.m() +this.ZN()}} +A.b40.prototype={ +$0(){this.a.GL()}, +$S:0} +A.b4_.prototype={ +$1(a){return A.KT()}, +$S:506} +A.Jz.prototype={ +a8(){return new A.Rb(null,null,B.m)}} +A.Rb.prototype={ +aX(){var s,r,q=this,p=null +q.b9() +q.y=!1 +s=A.aaH(p,p) +s.aK=q.gaCV() +s.b6=q.gaCX() +s.c_=q.gSO() +s.cp=q.gavc() +q.d=s +s=A.a2F(p,p) +s.ay=q.gaCQ() +s.ch=q.gaCS() +s.CW=q.gaCO() +r=q.a +s.at=r.ax +q.e=s +s=A.bx(B.A,p,B.T,0,p,1,r.c?1:0,q) +q.f=s +q.r=A.c5(B.Y,s,p) +s=A.bx(B.A,p,B.bC,0,p,1,p,q) +q.w=s +q.x=A.c5(B.aO,s,p)}, +b1(a){var s,r,q=this +q.bh(a) +s=q.e +s===$&&A.b() +r=q.a +s.at=r.ax +s=q.Q +if(s||a.c!==r.c)q.a4t(s)}, +a4t(a){var s,r,q=this +q.Q=!1 +s=q.r +s===$&&A.b() +s.b=a?B.Y:B.aO +s.c=a?B.Y:new A.jO(B.aO) +s=q.a.c +r=q.f +if(s){r===$&&A.b() +r.bS(0)}else{r===$&&A.b() +r.d3(0)}}, +aAF(){return this.a4t(!0)}, +aCW(a){var s +this.a.toString +this.Q=!1 +s=this.w +s===$&&A.b() +s.bS(0)}, +a5x(a){var s=this.a +s.d.$1(!s.c) +this.a1h()}, +aCU(){return this.a5x(null)}, +aCY(a){var s +this.a.toString +this.Q=!1 +s=this.w +s===$&&A.b() +s.d3(0)}, +avd(){this.a.toString +var s=this.w +s===$&&A.b() +s.d3(0)}, +aCR(a){var s,r=this +r.a.toString +r.Q=!1 +s=r.w +s===$&&A.b() +s.bS(0) +r.a1h()}, +aCT(a){var s,r,q,p=this +p.a.toString +s=p.r +s===$&&A.b() +s.c=s.b=B.Y +s=a.c +s.toString +r=s/20 +s=p.c.aj(t.I) +s.toString +switch(s.w.a){case 0:s=p.f +s===$&&A.b() +q=s.x +q===$&&A.b() +s.sj(0,q-r) +break +case 1:s=p.f +s===$&&A.b() +q=s.x +q===$&&A.b() +s.sj(0,q+r) +break}}, +aCP(a){var s,r,q,p=this +p.ad(new A.b41(p)) +s=p.r +s===$&&A.b() +s=s.gj(s) +r=p.a +q=r.c +if(s>=0.5!==q)r.d.$1(!q) +s=p.w +s===$&&A.b() +s.d3(0)}, +a1h(){switch(A.c3().a){case 2:A.aFB() +break +case 0:case 1:case 3:case 4:case 5:break}}, +ayt(a){this.ad(new A.b42(this,a))}, +A(a){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null +A.j9(a) +g.a.toString +s=B.a0D.eH(a) +s=s +r=A.d9(a,B.aC6) +r=r==null?f:r.at +if(r===!0){g.a.toString +r=B.a0w.eH(a) +q=new A.eT(B.l,r)}else q=f +if(g.Q)g.aAF() +g.a.toString +p=g.z +if(p===$){o=A.am([B.iA,new A.cz(g.gSO(),new A.bd(A.a([],t.h),t.o),t.wY)],t.n,t.od) +g.z!==$&&A.aq() +g.z=o +p=o}r=g.a +n=r.z +m=r.Q +r=r.c +l=B.a0z.eH(a) +g.a.toString +k=A.CF(A.K(204,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)) +k=new A.n8(k.a,k.b,0.835,0.69).Bx() +j=g.a.d +i=a.aj(t.I) +i.toString +h=g.y +h===$&&A.b() +return A.nj(A.aMx(A.aDF(p,!1,new A.afE(r,s,l,B.l,k,j,g,i.w,h,q,f),!0,n,B.cD,m,g.gays(),f,f),1),B.cy,f,f,f,f)}, +m(){var s=this,r=s.d +r===$&&A.b() +r.t7() +r.pz() +r=s.e +r===$&&A.b() +r.ok.ab(0) +r.pz() +r=s.f +r===$&&A.b() +r.m() +r=s.w +r===$&&A.b() +r.m() +s.alH()}, +$iaP:1} +A.b41.prototype={ +$0(){this.a.Q=!0}, +$S:0} +A.b42.prototype={ +$0(){this.a.y=this.b}, +$S:0} +A.afE.prototype={ +b5(a){var s,r,q=this,p=q.y,o=new A.alj(p,q.d,q.e,q.f,new A.a0t(q.r,B.ym),q.w,q.x,q.z,q.Q,q.as,A.ay(t.FG),B.Qx,null,A.ay(t.T)) +o.b4() +o.sbN(null) +s=p.r +s===$&&A.b() +r=o.geG() +s.a.P(0,r) +p=p.x +p===$&&A.b() +p.a.P(0,r) +return o}, +bb(a,b){var s=this +b.sj(0,s.d) +b.suL(s.e) +b.sqd(s.f) +b.sk7(s.r) +b.sln(s.w) +b.sdS(s.x) +b.scz(s.z) +b.sqV(s.Q)}} +A.alj.prototype={ +sj(a,b){if(b===this.h0)return +this.h0=b +this.bY()}, +suL(a){if(a.k(0,this.dt))return +this.dt=a +this.b_()}, +sqd(a){if(a.k(0,this.ei))return +this.ei=a +this.b_()}, +sk7(a){if(a.k(0,this.dd.a))return +this.dd=new A.a0t(a,B.ym) +this.b_()}, +sln(a){if(a.k(0,this.ea))return +this.ea=a +this.b_()}, +sdS(a){if(J.j(a,this.fe))return +this.fe=a}, +scz(a){if(this.jd===a)return +this.jd=a +this.b_()}, +sqV(a){if(a===this.pT)return +this.pT=a +this.b_()}, +lo(a){return!0}, +p9(a,b){var s,r +if(t.pY.b(a)&&!0){s=this.a3 +r=s.e +r===$&&A.b() +r.zA(a) +s=s.d +s===$&&A.b() +s.zA(a)}}, +hy(a){var s +this.jA(a) +a.stU(this.a3.gSO()) +a.c8(B.lr,!0) +a.c8(B.lp,!0) +s=this.h0 +a.c8(B.pd,!0) +a.c8(B.pb,s)}, +aE(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=null,b4="Pattern matching error",b5=b8.gcL(b8),b6=b2.a3,b7=b6.r +b7===$&&A.b() +s=b7.gj(b7) +b6=b6.x +b6===$&&A.b() +r=b6.gj(b6) +switch(b2.jd.a){case 0:q=1-s +break +case 1:q=s +break +default:q=b3}b6=$.au() +p=b6.bk() +b7=A.W(b2.ei,b2.dt,s) +b7.toString +p.saf(0,b7) +b7=b9.a+(b2.gq(b2).a-51)/2 +o=b9.b +n=o+(b2.gq(b2).b-31)/2 +m=new A.L(b7,n,b7+51,n+31) +l=A.mg(m,B.api) +b5.d5(l,p) +if(b2.pT){k=l.e6(1.75) +j=b6.bk() +j.saf(0,b2.ea) +j.scA(0,B.ai) +j.seu(3.5) +b5.d5(k,j)}n=b2.Lw +if(n!=null){i=A.bM("#0#1",new A.baq(n)) +h=A.bM("#0#2",new A.bar(n)) +if(i.T() instanceof A.e){g=i.T() +if(h.T() instanceof A.e){f=h.T() +n=!0}else{f=b3 +n=!1}}else{f=b3 +g=f +n=!1}if(!n)throw A.c(A.R(b4)) +n=1-r +e=q*n +d=(1-q)*n +switch(b2.jd.a){case 1:n=new A.eT(e,d) +break +case 0:n=new A.eT(d,e) +break +default:n=b3}c=A.bM("#1#1",new A.bas(n)) +b=A.bM("#1#2",new A.bat(n)) +if(typeof c.T()=="number"){a=c.T() +if(typeof b.T()=="number"){a0=b.T() +n=!0}else{a0=b3 +n=!1}}else{a0=b3 +a=a0 +n=!1}if(!n)throw A.c(A.R(b4)) +switch(b2.jd.a){case 1:n=m.gTY() +a1=m.ga8e() +a1=new A.eT(new A.m(n.a+11,n.b+0),new A.m(a1.a+-12,a1.b+0)) +n=a1 +break +case 0:n=m.ga8e() +a1=m.gTY() +a1=new A.eT(new A.m(n.a+-11,n.b+0),new A.m(a1.a+12,a1.b+0)) +n=a1 +break +default:n=b3}a2=A.bM("#2#1",new A.bau(n)) +a3=A.bM("#2#2",new A.bav(n)) +if(a2.T() instanceof A.m){a4=a2.T() +if(a3.T() instanceof A.m){a5=a3.T() +n=!0}else{a5=b3 +n=!1}}else{a5=b3 +a4=a5 +n=!1}if(!n)throw A.c(A.R(b4)) +a6=A.aQi(a4,10,1) +a7=b6.bk() +a7.saf(0,A.K(B.e.bg(255*a),g.gj(g)>>>16&255,g.gj(g)>>>8&255,g.gj(g)&255)) +a7.scA(0,B.bj) +b5.ey(a6,a7) +a8=b6.bk() +a8.saf(0,A.K(B.e.bg(255*a0),f.gj(f)>>>16&255,f.gj(f)>>>8&255,f.gj(f)&255)) +a8.scA(0,B.ai) +a8.seu(1) +b5.fZ(a5,5,a8)}a9=7*r +b6=b7+15.5 +b7+=35.5 +n=A.ag(b6-14,b7-14-a9,q) +n.toString +b7=A.ag(b6+14+a9,b7+14,q) +b7.toString +b0=o+b2.gq(b2).b/2 +b1=new A.L(n,b0-14,b7,b0+14) +b7=b2.EV +n=b2.cx +n===$&&A.b() +b7.sb2(0,b8.aOe(n,B.i,b1,l,new A.baw(b2,b1),b7.a))}, +m(){this.EV.sb2(0,null) +this.iU()}} +A.baq.prototype={ +$0(){return this.a.a}, +$S:121} +A.bar.prototype={ +$0(){return this.a.b}, +$S:121} +A.bas.prototype={ +$0(){return this.a.a}, +$S:41} +A.bat.prototype={ +$0(){return this.a.b}, +$S:41} +A.bau.prototype={ +$0(){return this.a.a}, +$S:110} +A.bav.prototype={ +$0(){return this.a.b}, +$S:110} +A.baw.prototype={ +$2(a,b){this.a.dd.aE(a.gcL(a),this.b)}, +$S:16} +A.VX.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.anV.prototype={ +aE(a,b){var s,r,q,p=$.au(),o=p.bk() +o.saf(0,this.b) +s=A.nx(B.anO,6) +r=A.uE(B.anP,new A.m(7,b.b)) +q=p.d1() +q.wL(s) +q.qA(r) +a.e3(q,o)}, +fv(a){return!this.b.k(0,a.b)}} +A.a0q.prototype={} +A.ay6.prototype={ +BU(a){return new A.U(12,a+12-1.5)}, +KD(a,b,c,d){var s,r,q,p=null,o=A.iB(p,p,p,new A.anV(A.j9(a).gip(),p),B.y) +switch(b.a){case 0:return A.a9w(o,new A.U(12,c+12-1.5)) +case 1:s=c+12-1.5 +r=A.a9w(o,new A.U(12,s)) +q=new A.bQ(new Float64Array(16)) +q.fQ() +q.bi(0,6,s/2) +q.Nv(3.141592653589793) +q.bi(0,-6,-s/2) +return A.zO(p,r,p,q,!0) +case 2:return B.a1}}, +BT(a,b){switch(a.a){case 0:return new A.m(6,b+12-1.5) +case 1:return new A.m(6,b+12-1.5-12+1.5) +case 2:return new A.m(6,b+(b+12-1.5-b)/2)}}} +A.afF.prototype={} +A.a0r.prototype={ +A(a){var s,r,q=null,p=t.l,o=A.aY(a,B.bR,p).w.r,n=o.b+8,m=26+o.a,l=A.aY(a,B.iK,p).w.a.a-o.c-26 +p=this.c +s=new A.m(A.V(p.a,m,l),p.b-8-n) +p=this.d +r=new A.m(A.V(p.a,m,l),p.b+8-n) +return new A.b4(new A.aK(8,n,8,8),new A.l8(new A.aaZ(s,r,q),new A.Re(s,r,this.e,A.bYz(),q),q),q)}} +A.afH.prototype={ +b5(a){var s=new A.alk(this.e,this.f,this.r,A.ay(t.xG),null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.saFv(this.e) +b.saFw(this.f) +b.sbT(0,this.r)}} +A.alk.prototype={ +gih(){return!0}, +saFv(a){if(a.k(0,this.D))return +this.D=a +this.aa()}, +saFw(a){if(a.k(0,this.ac))return +this.ac=a +this.aa()}, +sbT(a,b){if(J.j(b,this.az))return +this.az=b +this.b_()}, +gAV(){var s=this.D,r=this.k3$ +r=r==null?null:r.gq(r).b +if(r==null)r=0 +return s.b>=r-14}, +ce(){var s,r=this,q=r.k3$ +if(q==null)return +s=t.k.a(A.J.prototype.ga9.call(r)) +q.cS(new A.aN(30,1/0,0,1/0).xg(new A.aN(0,s.b,0,s.d)),!0) +s=q.b +s.toString +t.q.a(s) +s.sc5(0,new A.m(0,r.gAV()?-7:0)) +r.id=new A.U(q.gq(q).a,q.gq(q).b-7)}, +ap7(a,b){var s,r,q,p,o,n=this,m=$.au().d1() +if(30>n.gq(n).a){m.fT(b) +return m}s=A.V(n.jy(n.gAV()?n.D:n.ac).a,15,n.gq(n).a-7-8) +r=s-7 +q=s+7 +if(n.gAV()){p=a.gq(a).b-7 +o=a.gq(a) +m.fh(0,q,p) +m.d_(0,s,o.b) +m.d_(0,r,p)}else{m.fh(0,r,7) +m.d_(0,s,0) +m.d_(0,q,7)}r=A.bPD(m,b,n.gAV()?1.5707963267948966:-1.5707963267948966) +r.ah(0) +return r}, +aE(a,b){var s,r,q,p,o,n,m,l=this,k=l.k3$ +if(k==null)return +s=k.b +s.toString +t.q.a(s) +r=A.mg(new A.L(0,7,0+k.gq(k).a,7+(k.gq(k).b-14)),B.e7).ym() +q=l.ap7(k,r) +p=l.az +if(p!=null){o=new A.lx(r.a,r.b,r.c,r.d+7,8,8,8,8,8,8,8,8,!0).dq(b.U(0,s.a).U(0,B.i)) +a.gcL(a).d5(o,new A.cd(0,B.a4,p,B.i,15).kH())}p=l.cr +n=l.cx +n===$&&A.b() +s=b.U(0,s.a) +m=k.gq(k) +p.sb2(0,a.aOd(n,s,new A.L(0,0,0+m.a,0+m.b),q,new A.baF(k),p.a))}, +m(){this.cr.sb2(0,null) +this.iU()}, +dZ(a,b){var s,r,q=this.k3$ +if(q==null)return!1 +s=q.b +s.toString +s=t.q.a(s).a +r=s.a +s=s.b+7 +if(!new A.L(r,s,r+q.gq(q).a,s+(q.gq(q).b-14)).p(0,b))return!1 +return this.aj2(a,b)}} +A.baD.prototype={ +$0(){return this.a.a}, +$S:110} +A.baE.prototype={ +$0(){return this.a.b}, +$S:518} +A.baF.prototype={ +$2(a,b){return a.em(this.a,b)}, +$S:16} +A.Re.prototype={ +a8(){return new A.Rf(new A.bq(null,t.C),null,null,B.m)}, +aPX(a,b,c,d){return this.f.$4(a,b,c,d)}} +A.Rf.prototype={ +aya(a){var s=a.b +if(s!=null&&s!==0)if(s>0)this.a2r() +else this.a2o()}, +a2o(){var s=this,r=$.ap.Y$.z.i(0,s.r) +r=r==null?null:r.ga7() +t.aA.a(r) +if(r instanceof A.As){r=r.W +r===$&&A.b()}else r=!1 +if(r){r=s.d +r===$&&A.b() +r.d3(0) +r=s.d +r.cF() +r=r.ej$ +r.b=!0 +r.a.push(s.gJH()) +s.e=s.f+1}}, +a2r(){var s=this,r=$.ap.Y$.z.i(0,s.r) +r=r==null?null:r.ga7() +t.aA.a(r) +if(r instanceof A.As){r=r.a6 +r===$&&A.b()}else r=!1 +if(r){r=s.d +r===$&&A.b() +r.d3(0) +r=s.d +r.cF() +r=r.ej$ +r.b=!0 +r.a.push(s.gJH()) +s.e=s.f-1}}, +aCz(a){var s,r=this +if(a!==B.R)return +r.ad(new A.b49(r)) +s=r.d +s===$&&A.b() +s.bS(0) +r.d.ee(r.gJH())}, +aX(){this.b9() +this.d=A.bx(B.A,null,B.n2,0,null,1,1,this)}, +b1(a){var s,r=this +r.bh(a) +if(r.a.e!==a.e){r.f=0 +r.e=null +s=r.d +s===$&&A.b() +s.bS(0) +r.d.ee(r.gJH())}}, +m(){var s=this.d +s===$&&A.b() +s.m() +this.alJ()}, +A(a){var s,r,q,p=this,o=null,n=B.jh.eH(a),m=A.eH(A.bqw(A.qD(A.iB(o,o,o,new A.aim(n,!0,o),B.Ox),!0,o),p.gauv()),1,1),l=A.eH(A.bqw(A.qD(A.iB(o,o,o,new A.alX(n,!1,o),B.Ox),!0,o),p.gau3()),1,1),k=p.a.e,j=A.ab(k).h("ad<1,mY>"),i=A.a8(new A.ad(k,new A.b4a(),j),!0,j.h("av.E")) +j=p.a +k=j.c +s=j.d +r=p.d +r===$&&A.b() +q=p.f +return j.aPX(a,k,s,new A.cY(r,!1,A.bpQ(A.dY(o,new A.Rg(m,i,B.a0E.eH(a),1/A.aY(a,B.dh,t.l).w.b,l,q,p.r),B.D,!1,o,o,o,o,p.gay9(),o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,!1,B.am),B.dC,B.n2),o))}, +$iaP:1} +A.b49.prototype={ +$0(){var s=this.a,r=s.e +r.toString +s.f=r +s.e=null}, +$S:0} +A.b4a.prototype={ +$1(a){return A.eH(a,1,1)}, +$S:524} +A.aim.prototype={} +A.alX.prototype={} +A.afy.prototype={ +aE(a,b){var s,r,q,p,o=b.b,n=this.c,m=n?1:-1,l=new A.m(o/4*m,0) +m=o/2 +s=new A.m(m,0).U(0,l) +r=new A.m(n?0:o,m).U(0,l) +q=new A.m(m,o).U(0,l) +p=$.au().bk() +p.saf(0,this.b) +p.scA(0,B.ai) +p.seu(2) +p.sw5(B.pv) +p.sOE(B.OI) +a.j8(s,r,p) +a.j8(r,q,p)}, +fv(a){return!a.b.k(0,this.b)||a.c!==this.c}} +A.Rg.prototype={ +b5(a){var s=new A.As(A.I(t.TC,t.x),this.w,this.e,this.f,0,null,null,A.ay(t.T)) +s.b4() +return s}, +bb(a,b){b.sjY(0,this.w) +b.sv3(this.e) +b.saIm(this.f)}, +bI(a){var s=t.E +return new A.afG(A.I(t.TC,s),A.dI(s),this,B.an)}} +A.afG.prototype={ +ga7(){return t.l0.a(A.bR.prototype.ga7.call(this))}, +a6L(a,b){var s +switch(b.a){case 0:s=t.l0.a(A.bR.prototype.ga7.call(this)) +s.aZ=s.a5U(s.aZ,a,B.q1) +break +case 1:s=t.l0.a(A.bR.prototype.ga7.call(this)) +s.bt=s.a5U(s.bt,a,B.q2) +break}}, +pc(a,b){var s,r +if(b instanceof A.A9){this.a6L(t.x.a(a),b) +return}if(b instanceof A.tW){s=t.l0.a(A.bR.prototype.ga7.call(this)) +t.x.a(a) +r=b.a +r=r==null?null:r.ga7() +t.aA.a(r) +s.mh(a) +s.Rs(a,r) +return}}, +pe(a,b,c){t.l0.a(A.bR.prototype.ga7.call(this)).FR(t.x.a(a),t.aA.a(c.a.ga7()))}, +q9(a,b){var s +if(b instanceof A.A9){this.a6L(null,b) +return}s=t.l0.a(A.bR.prototype.ga7.call(this)) +t.x.a(a) +s.Sh(a) +s.v7(a)}, +ci(a){var s,r,q,p,o=this.ok +o.gbp(o).al(0,a) +o=this.k4 +o===$&&A.b() +s=o.length +r=this.p1 +q=0 +for(;q0){q=k.bt.b +q.toString +m=t.yS +m.a(q) +l=k.aZ.b +l.toString +m.a(l) +if(k.an!==r){q.a=new A.m(o.aH(),0) +q.e=!0 +r=o.aH() +q=k.bt +o.b=r+q.gq(q).a}if(k.an>0){l.a=B.i +l.e=!0}}else o.b=o.aH()-k.aN +r=k.an +k.W=r!==j.c +k.a6=r>0 +k.id=s.a(A.J.prototype.ga9.call(k)).bJ(new A.U(o.aH(),j.a))}, +aE(a,b){this.ci(new A.bay(this,b,a))}, +fR(a){if(!(a.b instanceof A.jr))a.b=new A.jr(null,null,B.i)}, +dZ(a,b){var s,r,q=this.dF$ +for(s=t.yS;q!=null;){r=q.b +r.toString +s.a(r) +if(!r.e){q=r.ds$ +continue}if(A.bmv(q,a,b))return!0 +q=r.ds$}if(A.bmv(this.aZ,a,b))return!0 +if(A.bmv(this.bt,a,b))return!0 +return!1}, +aw(a){var s,r,q +this.am0(a) +for(s=this.B,s=s.gbp(s),r=A.l(s),r=r.h("@<1>").V(r.z[1]),s=new A.bT(J.al(s.a),s.b,r.h("bT<1,2>")),r=r.z[1];s.v();){q=s.a;(q==null?r.a(q):q).aw(a)}}, +ap(a){var s,r,q +this.am1(0) +for(s=this.B,s=s.gbp(s),r=A.l(s),r=r.h("@<1>").V(r.z[1]),s=new A.bT(J.al(s.a),s.b,r.h("bT<1,2>")),r=r.z[1];s.v();){q=s.a;(q==null?r.a(q):q).ap(0)}}, +jo(){this.ci(new A.baB(this))}, +ci(a){var s=this.aZ +if(s!=null)a.$1(s) +s=this.bt +if(s!=null)a.$1(s) +this.HI(a)}, +jv(a){this.ci(new A.baC(a))}} +A.baz.prototype={ +$1(a){var s,r +t.x.a(a) +s=this.b +r=a.aA(B.bt,t.k.a(A.J.prototype.ga9.call(s)).b,a.gcR()) +s=this.a +if(r>s.a)s.a=r}, +$S:21} +A.baA.prototype={ +$1(a){var s,r,q,p,o,n,m,l=this,k=l.a,j=++k.d +t.x.a(a) +s=a.b +s.toString +t.yS.a(s) +s.e=!1 +r=l.b +if(a===r.aZ||a===r.bt||k.c>r.an)return +if(k.c===0)if(j===r.d8$+1)q=0 +else{j=r.bt +j=j.gq(j).a +q=j}else q=l.c +j=k.c===0?t.k.a(A.J.prototype.ga9.call(r)).b:l.d.aH() +p=k.a +a.cS(new A.aN(0,j-q,p,p),!0) +if(k.b+q+a.gq(a).a>t.k.a(A.J.prototype.ga9.call(r)).b){++k.c +j=r.aZ +k.b=j.gq(j).a+r.aN +j=r.aZ +j=j.gq(j) +p=r.bt +p=p.gq(p) +o=l.d.aH() +n=k.a +a.cS(new A.aN(0,o-(j.a+p.a),n,n),!0)}j=k.b +s.a=new A.m(j,0) +m=j+(a.gq(a).a+r.aN) +k.b=m +j=k.c +s.e=j===r.an +if(j===0){j=r.bt +l.d.b=m+j.gq(j).a}if(k.c===r.an)l.e.b=k.b}, +$S:21} +A.bay.prototype={ +$1(a){var s,r,q,p,o,n=this +t.x.a(a) +s=a.b +s.toString +t.yS.a(s) +if(s.e){r=s.a.U(0,n.b) +q=n.c +q.em(a,r) +if(s.a3$!=null||a===n.a.aZ){s=q.gcL(q) +q=new A.m(a.gq(a).a,0).U(0,r) +p=new A.m(a.gq(a).a,a.gq(a).b).U(0,r) +o=$.au().bk() +o.saf(0,n.a.ao) +s.j8(q,p,o)}}}, +$S:21} +A.bax.prototype={ +$2(a,b){return this.c.dm(a,b)}, +$S:17} +A.baB.prototype={ +$1(a){this.a.rk(t.x.a(a))}, +$S:21} +A.baC.prototype={ +$1(a){var s +t.x.a(a) +s=a.b +s.toString +if(t.yS.a(s).e)this.a.$1(a)}, +$S:21} +A.A9.prototype={ +J(){return"_CupertinoTextSelectionToolbarItemsSlot."+this.b}} +A.ajE.prototype={} +A.ajF.prototype={ +bI(a){return A.r(A.d1(null))}} +A.VZ.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.Wj.prototype={ +aw(a){var s,r,q +this.eS(a) +s=this.a2$ +for(r=t.yS;s!=null;){s.aw(a) +q=s.b +q.toString +s=r.a(q).a3$}}, +ap(a){var s,r,q +this.eT(0) +s=this.a2$ +for(r=t.yS;s!=null;){s.ap(0) +q=s.b +q.toString +s=r.a(q).a3$}}} +A.aq1.prototype={} +A.tu.prototype={ +a8(){return new A.Rd(B.m)}} +A.Rd.prototype={ +ayx(a){this.ad(new A.b47(this))}, +ayz(a){var s +this.ad(new A.b48(this)) +s=this.a.d +if(s!=null)s.$0()}, +ayv(){this.ad(new A.b46(this))}, +A(a){var s=this,r=null,q=s.arV(a),p=s.d?B.a0x.eH(a):B.E,o=s.a.d,n=A.ZB(B.a7,r,q,p,B.E,44,o,B.a2t,1) +if(o!=null)return A.dY(r,n,B.D,!1,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,s.gayu(),s.gayw(),s.gayy(),r,!1,B.am) +else return n}, +arV(a){var s,r=null,q=this.a,p=q.c +if(p!=null)return p +p=q.f +if(p==null){q=q.e +q.toString +q=A.bqx(a,q)}else q=p +s=A.P(q,r,B.ad,r,r,B.aw6.cM(this.a.d!=null?B.jh.eH(a):B.dF),r,r) +q=this.a.e +if(q==null)return s +switch(q.b.a){case 0:case 1:case 2:case 3:case 4:case 5:case 6:case 7:case 9:return s +case 8:q=B.jh.eH(a) +p=$.au().bk() +p.sw5(B.pv) +p.sOE(B.OI) +p.seu(1) +p.scA(0,B.ai) +return A.cZ(A.iB(r,r,r,new A.aiH(q,p,r),B.y),13,13)}}} +A.b47.prototype={ +$0(){return this.a.d=!0}, +$S:0} +A.b48.prototype={ +$0(){return this.a.d=!1}, +$S:0} +A.b46.prototype={ +$0(){return this.a.d=!1}, +$S:0} +A.aiH.prototype={ +aE(a,b){var s,r,q,p,o,n=this.c +n.saf(0,this.b) +a.eo(0) +s=b.a +r=b.b +a.bi(0,s/2,r/2) +s=-s/2 +r=-r/2 +q=$.au().d1() +q.fh(0,s,r+3.5) +q.d_(0,s,r+1) +q.a7C(new A.m(s+1,r),B.No) +q.d_(0,s+3.5,r) +s=new Float64Array(16) +p=new A.bQ(s) +p.fQ() +p.Nv(1.5707963267948966) +for(o=0;o<4;++o){a.e3(q,n) +a.a5(0,s)}a.j8(B.aob,B.anM,n) +a.j8(B.ao9,B.anL,n) +a.j8(B.aoa,B.anI,n) +a.dg(0)}, +fv(a){return!a.b.k(0,this.b)}} +A.wK.prototype={ +gir(){var s=this.c,r=this.a.a +s=B.ff.k(0,r)?B.P6:B.P6.cM(r) +return s}, +gMB(){var s=this.f,r=this.a.a +s=B.ff.k(0,r)?B.P4:B.P4.cM(r) +return s}, +gac7(){var s=B.ati.cM(this.b) +return s}, +eH(a){var s=this,r=s.a,q=r.a,p=q instanceof A.eh?q.eH(a):q,o=r.b +if(o instanceof A.eh)o=o.eH(a) +r=p.k(0,q)&&o.k(0,B.dF)?r:new A.UP(p,o) +return new A.wK(r,A.wJ(s.b,a),A.AG(s.c,a),A.AG(s.d,a),A.AG(s.e,a),A.AG(s.f,a),A.AG(s.r,a),A.AG(s.w,a),A.AG(s.x,a),A.AG(s.y,a))}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.a_(b)!==A.p(r))return!1 +if(b instanceof A.wK)if(b.a.k(0,r.a))if(J.j(b.b,r.b))s=!0 +else s=!1 +else s=!1 +else s=!1 +return s}, +gu(a){var s=this +return A.X(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.UP.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.UP&&b.a.k(0,s.a)&&b.b.k(0,s.b)}, +gu(a){return A.X(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.afI.prototype={} +A.a0s.prototype={ +A(a){var s=null +return new A.Sf(this,A.xB(this.d,A.bqs(this.c.gip(),s,s,s,s,s,s,s),s),s)}} +A.Sf.prototype={ +dh(a){return!this.f.c.k(0,a.f.c)}} +A.BQ.prototype={ +gip(){var s=this.b +return s==null?this.w.b:s}, +gvG(){var s=this.c +return s==null?this.w.c:s}, +gqb(){var s=null,r=this.d +if(r==null){r=this.w.r +r=new A.b4q(r.a,r.b,B.aCR,this.gip(),s,s,s,s,s,s,s,s)}return r}, +gwQ(){var s=this.e +return s==null?this.w.d:s}, +gvW(){var s=this.f +return s==null?this.w.e:s}, +gzE(){var s=this.r +return s==null?!1:s}, +eH(a){var s,r=this,q=new A.ay7(a),p=r.guS(),o=q.$1(r.b),n=q.$1(r.c),m=r.d +m=m==null?null:m.eH(a) +s=q.$1(r.e) +q=q.$1(r.f) +r.gzE() +return A.bGo(p,o,n,m,s,q,!1,r.w.aPa(a,r.d==null))}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.a_(b)!==A.p(r))return!1 +if(b instanceof A.BQ)if(b.guS()==r.guS())if(b.gip().k(0,r.gip()))if(b.gvG().k(0,r.gvG()))if(b.gqb().k(0,r.gqb()))if(b.gwQ().k(0,r.gwQ()))if(b.gvW().k(0,r.gvW())){b.gzE() +r.gzE() +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.guS(),q=s.gip(),p=s.gvG(),o=s.gqb(),n=s.gwQ(),m=s.gvW() +s.gzE() +return A.X(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.ay7.prototype={ +$1(a){return A.wJ(a,this.a)}, +$S:245} +A.Mq.prototype={ +eH(a){var s=this,r=new A.aMe(a),q=s.guS(),p=r.$1(s.gip()),o=r.$1(s.gvG()),n=s.gqb() +n=n==null?null:n.eH(a) +return new A.Mq(q,p,o,n,r.$1(s.gwQ()),r.$1(s.gvW()),s.gzE())}, +guS(){return this.a}, +gip(){return this.b}, +gvG(){return this.c}, +gqb(){return this.d}, +gwQ(){return this.e}, +gvW(){return this.f}, +gzE(){return this.r}} +A.aMe.prototype={ +$1(a){return A.wJ(a,this.a)}, +$S:245} +A.afL.prototype={ +aPa(a,b){var s,r,q=this,p=new A.b4b(a),o=p.$1(q.b),n=p.$1(q.c),m=p.$1(q.d) +p=p.$1(q.e) +s=q.r +if(b){r=s.a +if(r instanceof A.eh)r=r.eH(a) +s=s.b +s=new A.afJ(r,s instanceof A.eh?s.eH(a):s)}return new A.afL(q.a,o,n,m,p,!1,s)}} +A.b4b.prototype={ +$1(a){return a instanceof A.eh?a.eH(this.a):a}, +$S:90} +A.afJ.prototype={} +A.b4q.prototype={ +gir(){return A.wK.prototype.gir.call(this).cM(this.z)}, +gMB(){return A.wK.prototype.gMB.call(this).cM(this.z)}} +A.afK.prototype={} +A.a0t.prototype={ +aE(a,b){var s,r,q,p,o,n,m=b.gix()/2,l=A.mg(b,new A.b8(m,m)) +for(m=this.b,s=m.length,r=0;r0?n*0.57735+0.5:0 +o.sMs(new A.ye(q.e,n)) +a.d5(p,o)}m=l.e6(0.5) +s=$.au() +p=s.bk() +p.saf(0,B.TP) +a.d5(m,p) +s=s.bk() +s.saf(0,this.a) +a.d5(l,s)}} +A.Fx.prototype={ +aDB(a){if(this.gdS()!=null)this.ad(new A.b_b(this,a))}, +a66(a){var s,r=this +if(r.gdS()==null)return +switch(r.gj(r)){case!1:r.gdS().$1(!0) +break +case!0:s=r.gdS() +s.toString +s.$1(r.gy5()&&null) +break +case null:case void 0:r.gdS().$1(!1) +break}r.c.ga7().Ca(B.pz)}, +aDz(){return this.a66(null)}, +a68(a){if(this.xk$!=null)this.ad(new A.b_d(this))}, +aDC(){return this.a68(null)}, +aDy(a){if(a!==this.Vh$)this.ad(new A.b_8(this,a))}, +a85(a,b,c,d,e){var s,r,q,p,o,n,m,l,k=this,j=null,i=k.gdS(),h=k.LD$ +if(h===$){s=A.am([B.iA,new A.cz(k.ga65(),new A.bd(A.a([],t.h),t.o),t.wY)],t.n,t.od) +k.LD$!==$&&A.aq() +k.LD$=s +h=s}r=k.gdS() +q=k.gdS()!=null?k.gaDA():j +p=k.gdS()!=null?k.ga65():j +o=k.gdS()!=null?k.ga67():j +n=k.gdS()!=null?k.ga67():j +m=k.gdS() +l=A.iB(j,j,j,d,e) +return A.aDF(h,!1,A.dY(j,new A.bu(A.bL(j,j,j,j,j,j,j,j,j,j,m!=null,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),!1,!1,!1,!1,l,j),B.D,r==null,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,p,n,q,o,j,!1,B.am),i!=null,b,B.cD,c,k.gaDx(),j,j)}} +A.b_b.prototype={ +$0(){this.a.xk$=this.b.c}, +$S:0} +A.b_d.prototype={ +$0(){this.a.xk$=null}, +$S:0} +A.b_8.prototype={ +$0(){this.a.Vh$=this.b}, +$S:0} +A.ab8.prototype={ +suL(a){if(J.j(this.a,a))return +this.a=a +this.ag()}, +sAS(a){if(J.j(this.b,a))return +this.b=a +this.ag()}, +sln(a){if(a.k(0,this.c))return +this.c=a +this.ag()}, +sAl(a){if(J.j(a,this.d))return +this.d=a +this.ag()}, +sqV(a){if(a===this.e)return +this.e=a +this.ag()}, +sFr(a){if(a===this.f)return +this.f=a +this.ag()}, +fv(a){return!0}, +AQ(a){return null}, +gC9(){return null}, +Hv(a){return!1}, +l(a){return"#"+A.br(this)}} +A.bfV.prototype={ +$0(){return null}, +$S:544} +A.beM.prototype={ +$0(){var s=self,r=s.window.navigator.platform.toLowerCase() +if(B.c.cc(r,"mac"))return B.dc +if(B.c.cc(r,"win"))return B.eR +if(B.c.p(r,"iphone")||B.c.p(r,"ipad")||B.c.p(r,"ipod"))return B.b1 +if(B.c.p(r,"android"))return B.bO +if(s.window.matchMedia("only screen and (pointer: fine)").matches)return B.eQ +return B.bO}, +$S:242} +A.vu.prototype={ +Gy(a,b){var s=A.hI.prototype.gj.call(this,this) +s.toString +return J.bpA(s)}, +l(a){return this.Gy(a,B.aW)}} +A.Ci.prototype={} +A.a1y.prototype={} +A.a1w.prototype={} +A.cg.prototype={ +aIM(){var s,r,q,p,o,n,m,l=this.a +if(t.vp.b(l)){s=l.gFQ(l) +r=l.l(0) +if(typeof s=="string"&&s!==r){q=r.length +p=J.aj(s) +if(q>p.gt(s)){o=B.c.vx(r,s) +if(o===q-p.gt(s)&&o>2&&B.c.S(r,o-2,o)===": "){n=B.c.S(r,0,o-2) +m=B.c.eZ(n," Failed assertion:") +if(m>=0)n=B.c.S(n,0,m)+"\n"+B.c.cm(n,m+1) +l=p.XI(s)+"\n"+n}else l=null}else l=null}else l=null +if(l==null)l=r}else if(!(typeof l=="string"))l=t.Lt.b(l)||t.VI.b(l)?J.cU(l):" "+A.i(l) +l=B.c.XI(l) +return l.length===0?" ":l}, +gahj(){return A.bGN(new A.aDs(this).$0(),!0,B.eh)}, +f4(){return"Exception caught by "+this.c}, +l(a){A.bOW(null,B.a1B,this) +return""}} +A.aDs.prototype={ +$0(){return J.bET(this.a.aIM().split("\n")[0])}, +$S:15} +A.xh.prototype={ +gFQ(a){return this.l(0)}, +f4(){return"FlutterError"}, +l(a){var s,r,q=new A.fb(this.a,t.ow) +if(!q.gak(q)){s=q.gO(q) +r=J.c4(s) +s=A.hI.prototype.gj.call(r,s) +s.toString +s=J.bpA(s)}else s="FlutterError" +return s}, +$iwf:1} +A.aDt.prototype={ +$1(a){return A.c0(a)}, +$S:563} +A.aDu.prototype={ +$1(a){return a+1}, +$S:96} +A.aDv.prototype={ +$1(a){return a+1}, +$S:96} +A.bgw.prototype={ +$1(a){return B.c.p(a,"StackTrace.current")||B.c.p(a,"dart-sdk/lib/_internal")||B.c.p(a,"dart:sdk_internal")}, +$S:11} +A.ah9.prototype={} +A.ahb.prototype={} +A.aha.prototype={} +A.Ys.prototype={ +kw(){}, +xx(){}, +aMm(a){var s;++this.c +s=a.$0() +s.fu(new A.aur(this)) +return s}, +XJ(){}, +l(a){return""}} +A.aur.prototype={ +$0(){var s,r,q,p=this.a +if(--p.c<=0)try{p.alk() +if(p.ry$.c!==0)p.a1i()}catch(q){s=A.ak(q) +r=A.aJ(q) +p=A.c0("while handling pending events") +A.e6(new A.cg(s,r,"foundation",p,null,!1))}}, +$S:4} +A.at.prototype={} +A.PR.prototype={} +A.i1.prototype={ +P(a,b){var s,r,q,p,o=this +if(o.gfl(o)===o.geh().length){s=t.Nw +if(o.gfl(o)===0)o.seh(A.aX(1,null,!1,s)) +else{r=A.aX(o.geh().length*2,null,!1,s) +for(q=0;q0){r.geh()[s]=null +r.soM(r.goM()+1)}else r.Ji(s) +break}}, +m(){this.seh($.aH()) +this.sfl(0,0)}, +ag(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this +if(f.gfl(f)===0)return +f.sm8(f.gm8()+1) +p=f.gfl(f) +for(s=0;s0){l=f.gfl(f)-f.goM() +if(l*2<=f.geh().length){k=A.aX(l,null,!1,t.Nw) +for(j=0,s=0;s#"+A.br(this)+"("+A.i(this.gj(this))+")"}} +A.JN.prototype={ +J(){return"DiagnosticLevel."+this.b}} +A.ow.prototype={ +J(){return"DiagnosticsTreeStyle."+this.b}} +A.b8V.prototype={} +A.h_.prototype={ +Gy(a,b){return this.e2(0)}, +l(a){return this.Gy(a,B.aW)}} +A.hI.prototype={ +gj(a){this.ax0() +return this.at}, +ax0(){return}} +A.wV.prototype={} +A.a0T.prototype={} +A.aI.prototype={ +f4(){return"#"+A.br(this)}, +Gy(a,b){var s=this.f4() +return s}, +l(a){return this.Gy(a,B.aW)}} +A.a0S.prototype={ +f4(){return"#"+A.br(this)}} +A.n2.prototype={ +l(a){return this.adI(B.eh).e2(0)}, +f4(){return"#"+A.br(this)}, +aPD(a,b){return A.bjZ(a,b,this)}, +adI(a){return this.aPD(null,a)}} +A.a0U.prototype={} +A.ag4.prototype={} +A.id.prototype={} +A.jV.prototype={} +A.kR.prototype={ +l(a){return"[#"+A.br(this)+"]"}} +A.bS.prototype={ +k(a,b){if(b==null)return!1 +if(J.a_(b)!==A.p(this))return!1 +return A.l(this).h("bS").b(b)&&J.j(b.a,this.a)}, +gu(a){return A.X(A.p(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)}, +l(a){var s=A.l(this),r=s.h("bS.T"),q=this.a,p=A.cs(r)===B.pO?"<'"+A.i(q)+"'>":"<"+A.i(q)+">" +if(A.p(this)===A.cs(s.h("bS")))return"["+p+"]" +return"["+A.cs(r).l(0)+" "+p+"]"}} +A.bmC.prototype={} +A.m3.prototype={} +A.Ls.prototype={} +A.bd.prototype={ +gJ6(){var s,r=this,q=r.c +if(q===$){s=A.dI(r.$ti.c) +r.c!==$&&A.aq() +r.c=s +q=s}return q}, +E(a,b){this.b=!0 +this.gJ6().ab(0) +return B.b.E(this.a,b)}, +ab(a){this.b=!1 +B.b.ab(this.a) +this.gJ6().ab(0)}, +p(a,b){var s=this,r=s.a +if(r.length<3)return B.b.p(r,b) +if(s.b){s.gJ6().I(0,r) +s.b=!1}return s.gJ6().p(0,b)}, +gam(a){var s=this.a +return new J.cI(s,s.length,A.ab(s).h("cI<1>"))}, +gak(a){return this.a.length===0}, +gd2(a){return this.a.length!==0}, +hn(a,b){var s=this.a,r=A.ab(s) +return b?A.a(s.slice(0),r):J.m1(s.slice(0),r.c)}, +fO(a){return this.hn(a,!0)}} +A.CG.prototype={ +F(a,b){var s=this.a,r=s.i(0,b) +s.n(0,b,(r==null?0:r)+1)}, +E(a,b){var s=this.a,r=s.i(0,b) +if(r==null)return!1 +if(r===1)s.E(0,b) +else s.n(0,b,r-1) +return!0}, +p(a,b){return this.a.aq(0,b)}, +gam(a){var s=this.a +return A.ie(s,s.r,A.l(s).c)}, +gak(a){return this.a.a===0}, +gd2(a){return this.a.a!==0}} +A.DN.prototype={ +X4(a,b,c){var s=this.a,r=s==null?$.X7():s,q=r.rg(0,0,b,A.cS(b),c) +if(q===s)return this +s=this.$ti +return new A.DN(q,s.h("@<1>").V(s.z[1]).h("DN<1,2>"))}, +i(a,b){var s=this.a +if(s==null)return null +return s.BO(0,0,b,J.T(b))}} +A.bdZ.prototype={} +A.ahk.prototype={ +rg(a,b,c,d,e){var s,r,q,p,o=B.f.zs(d,b)&31,n=this.a,m=n[o] +if(m==null)m=$.X7() +s=m.rg(0,b+5,c,d,e) +if(s===m)n=this +else{r=n.length +q=A.aX(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.bEB(p,a5+5,a6,a7,a8) +if(o===p)return c +a2=a.length +n=A.aX(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.avM(a5) +a1.a[a]=$.X7().rg(0,a5+5,a6,a7,a8) +return a1}else{h=2*s +g=2*i +f=A.aX(g+2,b,!1,t.X) +for(a=c.b,e=0;e>>0,f)}}}, +BO(a,b,c,d){var s,r,q,p,o=1<<(B.f.zs(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.BO(0,b+5,c,d) +if(c===q)return p +return null}, +avM(a){var s,r,q,p,o,n,m,l=A.aX(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.zs(s,o)&1)!==0){n=q[p] +m=p+1 +if(n==null)l[o]=q[m] +else l[o]=$.X7().rg(0,r,n,J.T(n),q[m]) +p+=2}return new A.ahk(l)}} +A.S2.prototype={ +rg(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.a2G(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.aX(q,null,!1,t.X) +for(o=0;o>>0,k).rg(0,b,c,d,e)}, +BO(a,b,c,d){var s=this.a2G(c) +return s<0?null:this.b[s+1]}, +a2G(a){var s,r,q=this.b,p=q.length +for(s=J.hC(a),r=0;r=s.a.length)s.Sn(q) +B.M.di(s.a,s.b,q,a) +s.b+=r}, +Dx(a,b,c){var s=this,r=c==null?s.e.length:c,q=s.b+(r-b) +if(q>=s.a.length)s.Sn(q) +B.M.di(s.a,s.b,q,a) +s.b=q}, +aBN(a){return this.Dx(a,0,null)}, +Sn(a){var s=this.a,r=s.length,q=a==null?0:a,p=Math.max(q,r*2),o=new Uint8Array(p) +B.M.di(o,0,r,s) +this.a=o}, +aAu(){return this.Sn(null)}, +qt(a){var s=B.f.aJ(this.b,a) +if(s!==0)this.Dx($.bBR(),0,a-s)}, +v4(){var s,r=this +if(r.c)throw A.c(A.R("done() must not be called more than once on the same "+A.p(r).l(0)+".")) +s=A.lq(r.a.buffer,0,r.b) +r.a=new Uint8Array(0) +r.c=!0 +return s}} +A.Nn.prototype={ +yh(a){return this.a.getUint8(this.b++)}, +O2(a){var s=this.b,r=$.fU() +B.kX.Yb(this.a,s,r)}, +yi(a){var s=this.a,r=A.eO(s.buffer,s.byteOffset+this.b,a) +this.b+=a +return r}, +O3(a){var s +this.qt(8) +s=this.a +B.Jx.a7G(s.buffer,s.byteOffset+this.b,a)}, +qt(a){var s=this.b,r=B.f.aJ(s,a) +if(r!==0)this.b=s+(a-r)}} +A.nI.prototype={ +gu(a){var s=this +return A.X(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.a_(b)!==A.p(s))return!1 +return b instanceof A.nI&&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}, +l(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.aXD.prototype={ +$1(a){return a.length!==0}, +$S:11} +A.cC.prototype={ +zO(a,b){return new A.a7($.ac,this.$ti.h("a7<1>"))}, +mp(a){return this.zO(a,null)}, +fj(a,b,c){var s=a.$1(this.a) +if(c.h("S<0>").b(s))return s +return new A.cC(s,c.h("cC<0>"))}, +be(a,b){return this.fj(a,null,b)}, +fu(a){var s,r,q,p,o,n=this +try{s=a.$0() +if(t.L0.b(s)){p=s.be(new A.aYE(n),n.$ti.c) +return p}return n}catch(o){r=A.ak(o) +q=A.aJ(o) +p=A.oG(r,q,n.$ti.c) +return p}}, +$iS:1} +A.aYE.prototype={ +$1(a){return this.a.a}, +$S(){return this.a.$ti.h("1(@)")}} +A.a2e.prototype={ +J(){return"GestureDisposition."+this.b}} +A.eY.prototype={} +A.Cz.prototype={ +L(a){this.a.zj(this.b,this.c,a)}} +A.Gz.prototype={ +l(a){var s=this,r=s.a +r=r.length===0?""+"":""+new A.ad(r,new A.b6o(s),A.ab(r).h("ad<1,h>")).ck(0,", ") +if(s.b)r+=" [open]" +if(s.c)r+=" [held]" +if(s.d)r+=" [hasPendingSweep]" +return r.charCodeAt(0)==0?r:r}} +A.b6o.prototype={ +$1(a){if(a===this.a.e)return a.l(0)+" (eager winner)" +return a.l(0)}, +$S:569} +A.aEL.prototype={ +DQ(a,b,c){this.a.cK(0,b,new A.aEN(this,b)).a.push(c) +return new A.Cz(this,b,c)}, +U5(a,b){var s=this.a.i(0,b) +if(s==null)return +s.b=!1 +this.a6e(b,s)}, +a_a(a){var s,r=this.a,q=r.i(0,a) +if(q==null)return +if(q.c){q.d=!0 +return}r.E(0,a) +r=q.a +if(r.length!==0){B.b.gO(r).l3(a) +for(s=1;s").V(q.z[1]),r=new A.bT(J.al(r.a),r.b,q.h("bT<1,2>")),p=n.r,q=q.z[1];r.v();){o=r.a;(o==null?q.a(o):o).aQW(0,p)}s.ab(0) +n.c=B.B +s=n.y +if(s!=null)s.aI(0)}} +A.CA.prototype={ +aud(a){var s,r,q,p,o=this +try{o.dA$.I(0,A.bKO(a.a,o.gaq8())) +if(o.c<=0)o.QA()}catch(q){s=A.ak(q) +r=A.aJ(q) +p=A.c0("while handling a pointer data packet") +A.e6(new A.cg(s,r,"gestures library",p,null,!1))}}, +aq9(a){var s +if($.bO().e.i(0,a)==null)s=null +else{s=$.dn().d +if(s==null){s=self.window.devicePixelRatio +if(s===0)s=1}}return s}, +aG9(a){var s=this.dA$ +if(s.b===s.c&&this.c<=0)A.fE(this.garA()) +s.Kk(A.btm(0,0,0,0,0,B.be,!1,0,a,B.i,1,1,0,0,0,0,0,0,B.B,0))}, +QA(){for(var s=this.dA$;!s.gak(s);)this.Vy(s.Bn())}, +Vy(a){this.ga4p().h8(0) +this.a2p(a)}, +a2p(a){var s,r,q=this,p=!t.pY.b(a) +if(!p||t.ks.b(a)||t.XA.b(a)||t.w5.b(a)){s=A.aGe() +q.Fi(s,a.gcJ(a),a.gBI()) +if(!p||t.w5.b(a))q.e5$.n(0,a.gcu(),s) +p=s}else if(t.oN.b(a)||t.Ko.b(a)||t.WQ.b(a)){s=q.e5$.E(0,a.gcu()) +p=s}else p=a.gLl()||t.DB.b(a)?q.e5$.i(0,a.gcu()):null +if(p!=null||t.ge.b(a)||t.PB.b(a)){r=q.dy$ +r.toString +r.aQn(a,t.n2.b(a)?null:p) +q.ahV(0,a,p)}}, +Fi(a,b,c){a.F(0,new A.lj(this,t.AL))}, +aIk(a,b,c){var s,r,q,p,o,n,m,l,k,j,i="gesture library" +if(c==null){try{this.eY$.adA(b)}catch(p){s=A.ak(p) +r=A.aJ(p) +A.e6(A.bIk(A.c0("while dispatching a non-hit-tested pointer event"),b,s,null,new A.aEQ(b),i,r))}return}for(n=c.a,m=n.length,l=0;l0.4){r.dy=B.lQ +r.L(B.cG)}else if(a.gA9().gAj()>A.vW(a.gdR(a),r.b))r.L(B.aP) +if(s>0.4&&r.dy===B.PA){r.dy=B.lQ +if(r.at!=null)r.e7("onStart",new A.aDT(r,s))}}r.HB(a)}, +l3(a){var s=this,r=s.dy +if(r===B.lP)r=s.dy=B.PA +if(s.at!=null&&r===B.lQ)s.e7("onStart",new A.aDR(s))}, +Ag(a){var s=this,r=s.dy,q=r===B.lQ||r===B.aBR +if(r===B.lP){s.L(B.aP) +return}if(q&&s.ch!=null)if(s.ch!=null)s.e7("onEnd",new A.aDS(s)) +s.dy=B.q5}, +jq(a){this.oC(a) +this.Ag(a)}} +A.aDT.prototype={ +$0(){var s=this.a,r=s.at +r.toString +s=s.db +s===$&&A.b() +return r.$1(new A.xn(s.b))}, +$S:0} +A.aDR.prototype={ +$0(){var s=this.a,r=s.at +r.toString +s.dx===$&&A.b() +s=s.db +s===$&&A.b() +return r.$1(new A.xn(s.b))}, +$S:0} +A.aDS.prototype={ +$0(){var s=this.a,r=s.ch +r.toString +s=s.db +s===$&&A.b() +return r.$1(new A.xn(s.b))}, +$S:0} +A.a0R.prototype={ +gu(a){return A.X(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.a_(b)!==A.p(this))return!1 +return b instanceof A.a0R&&b.a==this.a}, +l(a){return"DeviceGestureSettings(touchSlop: "+A.i(this.a)+")"}} +A.lj.prototype={ +l(a){return"#"+A.br(this)+"("+this.a.l(0)+")"}} +A.HC.prototype={} +A.SK.prototype={ +eN(a,b){return this.a.Mz(b)}} +A.GX.prototype={ +eN(a,b){var s,r,q,p,o=new Float64Array(16),n=new A.bQ(o) +n.c6(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.qz.prototype={ +asv(){var s,r,q,p,o=this.c +if(o.length===0)return +s=this.b +r=B.b.gX(s) +for(q=o.length,p=0;p":B.b.ck(s,", "))+")"}} +A.Dh.prototype={} +A.LD.prototype={} +A.Dg.prototype={} +A.kD.prototype={ +n5(a){var s,r=this +switch(a.gfV(a)){case 1:if(r.p1==null&&r.p3==null&&r.p2==null&&r.p4==null&&r.RG==null&&r.R8==null)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.yF(a)}, +UJ(){var s,r=this +r.L(B.cG) +r.k2=!0 +s=r.CW +s.toString +r.ZK(s) +r.aoM()}, +aaJ(a){var s,r=this +if(!a.gw9()){if(t.pY.b(a)){s=a.gdR(a) +$.kp() +s=new A.kf(s,new A.k9(),A.aX(20,null,!1,t.av)) +r.ct=s +s.t8(a.gk8(a),a.geF())}if(t.n2.b(a)){s=r.ct +s.toString +s.t8(a.gk8(a),a.geF())}}if(t.oN.b(a)){if(r.k2)r.aoK(a) +else r.L(B.aP) +r.Sm()}else if(t.Ko.b(a)){r.a09() +r.Sm()}else if(t.pY.b(a)){r.k3=new A.jk(a.geF(),a.gcJ(a)) +r.k4=a.gfV(a) +r.aoJ(a)}else if(t.n2.b(a))if(a.gfV(a)!==r.k4&&!r.k2){r.L(B.aP) +s=r.CW +s.toString +r.oC(s)}else if(r.k2)r.aoL(a)}, +aoJ(a){this.k3.toString +this.e.i(0,a.gcu()).toString +switch(this.k4){case 1:break +case 2:break +case 4:break}}, +a09(){var s,r=this +if(r.ch===B.jC)switch(r.k4){case 1:s=r.p1 +if(s!=null)r.e7("onLongPressCancel",s) +break +case 2:break +case 4:break}}, +aoM(){var s,r,q=this +switch(q.k4){case 1:if(q.p3!=null){s=q.k3 +r=s.b +s=s.a +q.e7("onLongPressStart",new A.aIL(q,new A.Dh(r,s)))}s=q.p2 +if(s!=null)q.e7("onLongPress",s) +break +case 2:break +case 4:break}}, +aoL(a){var s=this,r=a.gcJ(a),q=a.geF(),p=a.gcJ(a).a4(0,s.k3.b) +a.geF().a4(0,s.k3.a) +switch(s.k4){case 1:if(s.p4!=null)s.e7("onLongPressMoveUpdate",new A.aIK(s,new A.LD(r,q,p))) +break +case 2:break +case 4:break}}, +aoK(a){var s,r=this,q=r.ct.C4(),p=q==null?B.dt:new A.kS(q.a) +a.gcJ(a) +s=a.geF() +r.ct=null +switch(r.k4){case 1:if(r.RG!=null)r.e7("onLongPressEnd",new A.aIJ(r,new A.Dg(s,p))) +s=r.R8 +if(s!=null)r.e7("onLongPressUp",s) +break +case 2:break +case 4:break}}, +Sm(){var s=this +s.k2=!1 +s.ct=s.k4=s.k3=null}, +L(a){var s=this +if(a===B.aP)if(s.k2)s.Sm() +else s.a09() +s.ZE(a)}, +l3(a){}} +A.aIL.prototype={ +$0(){return this.a.p3.$1(this.b)}, +$S:0} +A.aIK.prototype={ +$0(){return this.a.p4.$1(this.b)}, +$S:0} +A.aIJ.prototype={ +$0(){return this.a.RG.$1(this.b)}, +$S:0} +A.rS.prototype={ +i(a,b){return this.c[b+this.a]}, +n(a,b,c){this.c[b+this.a]=c}, +av(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.xM(A.a8(new A.ad(s,new A.aNE(),r),!0,r.h("av.E")),"[","]") +r=this.b +r===$&&A.b() +return"PolynomialFit("+q+", confidence: "+B.e.aF(r,3)+")"}} +A.aNE.prototype={ +$1(a){return B.e.aPM(a,3)}, +$S:80} +A.a3u.prototype={ +Z9(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.aND(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.rS(c*a5,a5,q).av(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.V(r,-q,q) +return new A.jL(new A.kS(new A.m(0,p)),p)}, +Rl(a,b){var s=this.k3 +s===$&&A.b() +return Math.abs(s)>A.vW(a,this.b)}, +CY(a){return new A.m(0,a.b)}, +D_(a){return a.b}} +A.n9.prototype={ +Q_(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.vW(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.V(r,-q,q) +return new A.jL(new A.kS(new A.m(p,0)),p)}, +Rl(a,b){var s=this.k3 +s===$&&A.b() +return Math.abs(s)>A.vW(a,this.b)}, +CY(a){return new A.m(a.a,0)}, +D_(a){return a.a}} +A.np.prototype={ +Q_(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.vW(b,o.b) +r=a.a +if(!(r.gAj()>n*n&&a.d.gAj()>s*s))return null +q=o.db +if(q==null)q=50 +p=o.dx +if(p==null)p=8000 +return new A.jL(new A.kS(r).aGo(q,p),null)}, +Rl(a,b){var s=this.k3 +s===$&&A.b() +return Math.abs(s)>A.bgp(a,this.b)}, +CY(a){return a}, +D_(a){return null}} +A.afs.prototype={ +ayB(){this.a=!0}} +A.Hx.prototype={ +oC(a){if(this.r){this.r=!1 +$.je.eY$.ad8(this.b,a)}}, +abG(a,b){return a.gcJ(a).a4(0,this.d).ge9()<=b}} +A.n4.prototype={ +n5(a){var s,r=this +if(r.y==null)if(r.r==null&&!0)return!1 +s=r.yF(a) +if(!s)r.wr() +return s}, +l4(a){var s=this,r=s.y +if(r!=null)if(!r.abG(a,100))return +else{r=s.y +if(!r.f.a||a.gfV(a)!==r.e){s.wr() +return s.a6c(a)}}s.a6c(a)}, +a6c(a){var s,r,q,p,o,n,m=this +m.a5v() +s=$.je.dH$.DQ(0,a.gcu(),m) +r=a.gcu() +q=a.gcJ(a) +p=a.gfV(a) +o=new A.afs() +A.d0(B.a2a,o.gayA()) +n=new A.Hx(r,s,q,p,o) +m.z.n(0,a.gcu(),n) +o=a.gd4(a) +if(!n.r){n.r=!0 +$.je.eY$.a7s(r,m.gJ5(),o)}}, +axo(a){var s,r=this,q=r.z,p=q.i(0,a.gcu()) +p.toString +if(t.oN.b(a)){s=r.y +if(s==null){if(r.x==null)r.x=A.d0(B.bC,r.gaxp()) +s=p.b +$.je.dH$.aKR(s) +p.oC(r.gJ5()) +q.E(0,s) +r.a0l() +r.y=p}else{s=s.c +s.a.zj(s.b,s.c,B.cG) +s=p.c +s.a.zj(s.b,s.c,B.cG) +p.oC(r.gJ5()) +q.E(0,p.b) +q=r.r +if(q!=null)r.e7("onDoubleTap",q) +r.wr()}}else if(t.n2.b(a)){if(!p.abG(a,18))r.Dq(p)}else if(t.Ko.b(a))r.Dq(p)}, +l3(a){}, +jq(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.Dq(q)}, +Dq(a){var s,r=this,q=r.z +q.E(0,a.b) +s=a.c +s.a.zj(s.b,s.c,B.aP) +a.oC(r.gJ5()) +s=r.y +if(s!=null)if(a===s)r.wr() +else{r.a00() +if(q.a===0)r.wr()}}, +m(){this.wr() +this.Zt()}, +wr(){var s,r=this +r.a5v() +if(r.y!=null){if(r.z.a!==0)r.a00() +s=r.y +s.toString +r.y=null +r.Dq(s) +$.je.dH$.aOJ(0,s.b)}r.a0l()}, +a0l(){var s=this.z +s=s.gbp(s) +B.b.al(A.a8(s,!0,A.l(s).h("z.E")),this.gaAa())}, +a5v(){var s=this.x +if(s!=null){s.aI(0) +this.x=null}}, +a00(){}} +A.aNy.prototype={ +a7s(a,b,c){J.j5(this.a.cK(0,a,new A.aNA()),b,c)}, +ad8(a,b){var s,r=this.a,q=r.i(0,a) +q.toString +s=J.ct(q) +s.E(q,b) +if(s.gak(q))r.E(0,a)}, +aqg(a,b,c){var s,r,q,p +try{b.$1(a.cQ(c))}catch(q){s=A.ak(q) +r=A.aJ(q) +p=A.c0("while routing a pointer event") +A.e6(new A.cg(s,r,"gesture library",p,null,!1))}}, +adA(a){var s=this,r=s.a.i(0,a.gcu()),q=s.b,p=t.Ld,o=t.iD,n=A.oN(q,p,o) +if(r!=null)s.a0Y(a,r,A.oN(r,p,o)) +s.a0Y(a,q,n)}, +a0Y(a,b,c){c.al(0,new A.aNz(this,b,a))}} +A.aNA.prototype={ +$0(){return A.I(t.Ld,t.iD)}, +$S:620} +A.aNz.prototype={ +$2(a,b){if(J.jC(this.b,a))this.a.aqg(this.c,a,b)}, +$S:621} +A.aNB.prototype={ +ad0(a,b,c){if(this.a!=null)return +this.b=b +this.a=c}, +L(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.ak(p) +r=A.aJ(p) +n=A.c0("while resolving a PointerSignalEvent") +A.e6(new A.cg(s,r,"gesture library",n,null,!1))}o.b=o.a=null}} +A.a1a.prototype={ +J(){return"DragStartBehavior."+this.b}} +A.eN.prototype={ +Kh(a){}, +zA(a){var s=this +s.e.n(0,a.gcu(),a.gdR(a)) +if(s.n5(a))s.l4(a) +else s.AM(a)}, +l4(a){}, +AM(a){}, +n5(a){var s=this.c +return(s==null||s.p(0,a.gdR(a)))&&this.d.$1(a.gfV(a))}, +aby(a){var s=this.c +return s==null||s.p(0,a.gdR(a))}, +m(){}, +abq(a,b,c){var s,r,q,p,o=null +try{o=b.$0()}catch(q){s=A.ak(q) +r=A.aJ(q) +p=A.c0("while handling a gesture") +A.e6(new A.cg(s,r,"gesture",p,null,!1))}return o}, +e7(a,b){return this.abq(a,b,null,t.z)}, +aLs(a,b,c){return this.abq(a,b,c,t.z)}} +A.My.prototype={ +l4(a){this.Cn(a.gcu(),a.gd4(a))}, +AM(a){this.L(B.aP)}, +l3(a){}, +jq(a){}, +L(a){var s,r=this.f,q=A.a8(r.gbp(r),!0,t.SP) +r.ab(0) +for(r=q.length,s=0;s")),r=r.c;q.v();){p=q.d +if(p==null)p=r.a(p) +o=$.je.eY$ +n=k.gvq() +o=o.a +m=o.i(0,p) +m.toString +l=J.ct(m) +l.E(m,n) +if(l.gak(m))o.E(0,p)}s.ab(0) +k.Zt()}, +anj(a){var s=this.w +if(s!=null)return s.DQ(0,a,this) +return $.je.dH$.DQ(0,a,this)}, +Cn(a,b){var s=this +$.je.eY$.a7s(a,s.gvq(),b) +s.r.F(0,a) +s.f.n(0,a,s.anj(a))}, +oC(a){var s=this.r +if(s.p(0,a)){$.je.eY$.ad8(a,this.gvq()) +s.E(0,a) +if(s.a===0)this.Ag(a)}}, +HB(a){if(t.oN.b(a)||t.Ko.b(a)||t.WQ.b(a))this.oC(a.gcu())}} +A.KN.prototype={ +J(){return"GestureRecognizerState."+this.b}} +A.DY.prototype={ +l4(a){var s=this +s.Cr(a) +if(s.ch===B.dM){s.ch=B.jC +s.CW=a.gcu() +s.cx=new A.jk(a.geF(),a.gcJ(a)) +s.db=A.d0(s.at,new A.aNO(s,a))}}, +AM(a){if(!this.cy)this.ZD(a)}, +ku(a){var s,r,q,p=this +if(p.ch===B.jC&&a.gcu()===p.CW){if(!p.cy)s=p.a1I(a)>18 +else s=!1 +if(p.cy){r=p.ay +q=r!=null&&p.a1I(a)>r}else q=!1 +if(t.n2.b(a))r=s||q +else r=!1 +if(r){p.L(B.aP) +r=p.CW +r.toString +p.oC(r)}else p.aaJ(a)}p.HB(a)}, +UJ(){}, +l3(a){if(a===this.CW){this.t7() +this.cy=!0}}, +jq(a){var s=this +if(a===s.CW&&s.ch===B.jC){s.t7() +s.ch=B.a5b}}, +Ag(a){var s=this +s.t7() +s.ch=B.dM +s.cx=null +s.cy=!1}, +m(){this.t7() +this.pz()}, +t7(){var s=this.db +if(s!=null){s.aI(0) +this.db=null}}, +a1I(a){return a.gcJ(a).a4(0,this.cx.b).ge9()}} +A.aNO.prototype={ +$0(){this.a.UJ() +return null}, +$S:0} +A.jk.prototype={ +U(a,b){return new A.jk(this.a.U(0,b.a),this.b.U(0,b.b))}, +a4(a,b){return new A.jk(this.a.a4(0,b.a),this.b.a4(0,b.b))}, +l(a){return"OffsetPair(local: "+this.a.l(0)+", global: "+this.b.l(0)+")"}} +A.ahn.prototype={} +A.He.prototype={ +J(){return"_ScaleState."+this.b}} +A.Ao.prototype={ +gaJc(){return this.b.U(0,this.c)}, +glS(a){return this.d}, +l(a){var s=this +return"_PointerPanZoomData(parent: "+s.a.l(0)+", _position: "+s.b.l(0)+", _pan: "+s.c.l(0)+", _scale: "+A.i(s.d)+", _rotation: "+s.e+")"}} +A.NZ.prototype={ +l(a){return"ScaleStartDetails(focalPoint: "+this.a.l(0)+", localFocalPoint: "+this.b.l(0)+", pointersCount: "+this.c+")"}} +A.O_.prototype={ +l(a){var s=this +return"ScaleUpdateDetails(focalPoint: "+s.b.l(0)+", localFocalPoint: "+s.c.l(0)+", scale: "+A.i(s.d)+", horizontalScale: "+A.i(s.e)+", verticalScale: "+A.i(s.f)+", rotation: "+A.i(s.r)+", pointerCount: "+s.w+", focalPointDelta: "+s.a.l(0)+")"}} +A.Ew.prototype={ +l(a){return"ScaleEndDetails(velocity: "+this.a.l(0)+", scaleVelocity: "+A.i(this.b)+", pointerCount: "+this.c+")"}} +A.aiz.prototype={} +A.nB.prototype={ +gDl(){var s,r=this.fr +r===$&&A.b() +if(r>0){s=this.fx +s===$&&A.b() +r=s/r}else r=1 +return r}, +gzn(){var s,r,q,p=this.gDl() +for(s=this.R8,s=s.gbp(s),r=A.l(s),r=r.h("@<1>").V(r.z[1]),s=new A.bT(J.al(s.a),s.b,r.h("bT<1,2>")),r=r.z[1];s.v();){q=s.a +if(q==null)q=r.a(q) +p*=q.glS(q)/this.RG}return p}, +gavF(){var s,r,q,p=this,o=p.fy +o===$&&A.b() +if(o>0){s=p.go +s===$&&A.b() +r=s/o}else r=1 +for(o=p.R8,o=o.gbp(o),s=A.l(o),s=s.h("@<1>").V(s.z[1]),o=new A.bT(J.al(o.a),o.b,s.h("bT<1,2>")),s=s.z[1];o.v();){q=o.a +if(q==null)q=s.a(q) +r*=q.glS(q)/p.RG}return r}, +gaEK(){var s,r,q,p=this,o=p.id +o===$&&A.b() +if(o>0){s=p.k1 +s===$&&A.b() +r=s/o}else r=1 +for(o=p.R8,o=o.gbp(o),s=A.l(o),s=s.h("@<1>").V(s.z[1]),o=new A.bT(J.al(o.a),o.b,s.h("bT<1,2>")),s=s.z[1];o.v();){q=o.a +if(q==null)q=s.a(q) +r*=q.glS(q)/p.RG}return r}, +apq(){var s,r,q,p,o,n=this,m=n.k3 +if(m!=null&&n.k4!=null){s=m.a +m=m.c +r=n.k4 +q=r.a +r=r.c +p=Math.atan2(s.b-m.b,s.a-m.a) +o=Math.atan2(q.b-r.b,q.a-r.a)-p}else o=0 +for(m=n.R8,m=m.gbp(m),s=A.l(m),s=s.h("@<1>").V(s.z[1]),m=new A.bT(J.al(m.a),m.b,s.h("bT<1,2>")),s=s.z[1];m.v();){r=m.a +o+=(r==null?s.a(r):r).e}return o-n.rx}, +l4(a){var s,r,q=this +q.Cr(a) +s=a.gcu() +r=a.gdR(a) +$.kp() +q.p2.n(0,s,new A.kf(r,new A.k9(),A.aX(20,null,!1,t.av))) +if(q.CW===B.iL){q.CW=B.iM +q.k1=q.id=q.go=q.fy=q.fx=q.fr=0}}, +aby(a){return!0}, +Kh(a){var s,r,q=this +q.Zs(a) +q.Cn(a.gcu(),a.gd4(a)) +s=a.gcu() +r=a.gdR(a) +$.kp() +q.p2.n(0,s,new A.kf(r,new A.k9(),A.aX(20,null,!1,t.av))) +if(q.CW===B.iL){q.CW=B.iM +q.RG=1 +q.rx=0}}, +ku(a){var s,r,q,p,o,n,m=this +if(t.n2.b(a)){s=m.p2.i(0,a.gcu()) +s.toString +if(!a.gw9())s.t8(a.gk8(a),a.gcJ(a)) +m.ok.n(0,a.gcu(),a.gcJ(a)) +m.cx=a.gd4(a) +r=!1 +q=!0}else if(t.pY.b(a)){m.ok.n(0,a.gcu(),a.gcJ(a)) +m.p1.push(a.gcu()) +m.cx=a.gd4(a) +r=!0 +q=!0}else if(t.oN.b(a)||t.Ko.b(a)){m.ok.E(0,a.gcu()) +B.b.E(m.p1,a.gcu()) +m.cx=a.gd4(a) +r=!0 +q=!1}else if(t.w5.b(a)){m.R8.n(0,a.gcu(),new A.Ao(m,a.gcJ(a),B.i,1,0)) +m.cx=a.gd4(a) +r=!0 +q=!0}else if(t.DB.b(a)){if(!a.gw9()&&!0){s=m.p2.i(0,a.gcu()) +s.toString +s.t8(a.gk8(a),a.gG3(a))}m.R8.n(0,a.gcu(),new A.Ao(m,a.gcJ(a),a.gG3(a),a.glS(a),a.gadz())) +m.cx=a.gd4(a) +r=!1 +q=!0}else{if(t.WQ.b(a)){m.R8.E(0,a.gcu()) +r=!0}else r=!1 +q=!1}s=m.ok +if(s.a<2)m.k3=m.k4 +else{p=m.k3 +if(p!=null){o=m.p1 +p=p.b===o[0]&&p.d===o[1]}else p=!1 +o=m.p1 +if(p){p=o[0] +n=s.i(0,p) +n.toString +o=o[1] +s=s.i(0,o) +s.toString +m.k4=new A.aiz(n,p,s,o)}else{p=o[0] +n=s.i(0,p) +n.toString +o=o[1] +s=s.i(0,o) +s.toString +m.k4=m.k3=new A.aiz(n,p,s,o)}}m.aE0(0) +if(!r||m.aA4(a.gcu()))m.anq(q,a) +m.HB(a)}, +aE0(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=e.dy +for(s=e.ok,r=A.l(s).c,q=A.ie(s,s.r,r),p=B.i;q.v();){o=s.i(0,q.d) +p=new A.m(p.a+o.a,p.b+o.b)}for(q=e.R8,o=q.gbp(q),n=A.l(o),n=n.h("@<1>").V(n.z[1]),o=new A.bT(J.al(o.a),o.b,n.h("bT<1,2>")),n=n.z[1];o.v();){m=o.a +m=(m==null?n.a(m):m).gaJc() +p=new A.m(p.a+m.a,p.b+m.b)}q=q.a+e.p1.length +q=q>0?p.i7(0,q):B.i +e.dy=q +o=e.cx +if(d==null){e.k2=A.N0(o,q) +e.p4=B.i}else{n=e.k2 +n===$&&A.b() +q=A.N0(o,q) +e.k2=q +e.p4=q.a4(0,n)}l=s.a +for(q=A.ie(s,s.r,r),k=B.i;q.v();){o=s.i(0,q.d) +k=new A.m(k.a+o.a,k.b+o.b)}q=l>0 +if(q)k=k.i7(0,l) +for(r=A.ie(s,s.r,r),o=k.a,n=k.b,j=0,i=0,h=0;r.v();){m=r.d +g=s.i(0,m) +f=o-g.a +g=n-g.b +j+=Math.sqrt(f*f+g*g) +i+=Math.abs(o-s.i(0,m).a) +h+=Math.abs(n-s.i(0,m).b)}e.fx=q?j/l:0 +e.go=q?i/l:0 +e.k1=q?h/l:0}, +aA4(a){var s,r=this,q={},p=r.dy +p.toString +r.dx=p +p=r.fx +p===$&&A.b() +r.fr=p +r.k3=r.k4 +p=r.go +p===$&&A.b() +r.fy=p +p=r.k1 +p===$&&A.b() +r.id=p +p=r.R8 +if(p.a===0){r.RG=1 +r.rx=0}else{r.RG=r.gzn()/r.gDl() +p=p.gbp(p) +r.rx=A.oT(p,new A.aSJ(),A.l(p).h("z.E"),t.i).lF(0,new A.aSK())}if(r.CW===B.m8){if(r.ch!=null){s=r.p2.i(0,a).Oc() +q.a=s +p=s.a +if(p.gAj()>2500){if(p.gAj()>64e6)q.a=new A.kS(p.i7(0,p.ge9()).av(0,8000)) +r.e7("onEnd",new A.aSL(q,r))}else r.e7("onEnd",new A.aSM(r))}r.CW=B.PL +$.kp() +r.p3=new A.kf(B.be,new A.k9(),A.aX(20,null,!1,t.av)) +return!1}$.kp() +r.p3=new A.kf(B.be,new A.k9(),A.aX(20,null,!1,t.av)) +return!0}, +anq(a,b){var s,r,q,p,o=this,n=o.CW +if(n===B.iL)n=o.CW=B.iM +if(n===B.iM){n=o.fx +n===$&&A.b() +s=o.fr +s===$&&A.b() +r=o.dy +r.toString +q=o.dx +q===$&&A.b() +p=r.a4(0,q).ge9() +if(Math.abs(n-s)>A.bTP(b.gdR(b))||p>A.bgp(b.gdR(b),o.b)||Math.max(o.gzn()/o.gDl(),o.gDl()/o.gzn())>1.05)o.L(B.cG)}else if(n.a>=2)o.L(B.cG) +if(o.CW===B.PL&&a){o.CW=B.m8 +o.a1_()}if(o.CW===B.m8){n=o.p3 +if(n!=null)n.t8(b.gk8(b),new A.m(o.gzn(),0)) +if(o.ay!=null)o.e7("onUpdate",new A.aSH(o))}}, +a1_(){if(this.ax!=null)this.e7("onStart",new A.aSI(this))}, +l3(a){var s,r=this +if(r.CW===B.iM){r.CW=B.m8 +r.a1_() +if(r.at===B.D){s=r.dy +s.toString +r.dx=s +s=r.fx +s===$&&A.b() +r.fr=s +r.k3=r.k4 +s=r.go +s===$&&A.b() +r.fy=s +s=r.k1 +s===$&&A.b() +r.id=s +s=r.R8 +if(s.a===0){r.RG=1 +r.rx=0}else{r.RG=r.gzn()/r.gDl() +s=s.gbp(s) +r.rx=A.oT(s,new A.aSN(),A.l(s).h("z.E"),t.i).lF(0,new A.aSO())}}}}, +jq(a){var s=this +s.R8.E(0,a) +s.ok.E(0,a) +B.b.E(s.p1,a) +s.oC(a)}, +Ag(a){switch(this.CW.a){case 1:this.L(B.aP) +break +case 0:break +case 2:break +case 3:break}this.CW=B.iL}, +m(){this.p2.ab(0) +this.pz()}} +A.aSJ.prototype={ +$1(a){return a.e}, +$S:241} +A.aSK.prototype={ +$2(a,b){return a+b}, +$S:115} +A.aSL.prototype={ +$0(){var s,r,q=this.b,p=q.ch +p.toString +s=this.a.a +r=q.p3 +r=r==null?null:r.Oc().a.a +if(r==null)r=-1 +return p.$1(new A.Ew(s,r,q.R8.a+q.p1.length))}, +$S:0} +A.aSM.prototype={ +$0(){var s,r=this.a,q=r.ch +q.toString +s=r.p3 +s=s==null?null:s.Oc().a.a +if(s==null)s=-1 +return q.$1(new A.Ew(B.dt,s,r.R8.a+r.p1.length))}, +$S:0} +A.aSH.prototype={ +$0(){var s,r,q,p,o,n,m,l,k=this.a,j=k.ay +j.toString +s=k.gzn() +r=k.gavF() +q=k.gaEK() +p=k.dy +p.toString +o=k.k2 +o===$&&A.b() +n=k.apq() +m=k.R8.a +l=k.p1.length +k=k.p4 +k===$&&A.b() +j.$1(A.bLT(p,k,r,o,m+l,n,s,q))}, +$S:0} +A.aSI.prototype={ +$0(){var s,r,q,p=this.a,o=p.ax +o.toString +s=p.dy +s.toString +r=p.k2 +r===$&&A.b() +q=p.R8.a +p=p.p1.length +o.$1(new A.NZ(s,r,q+p))}, +$S:0} +A.aSN.prototype={ +$1(a){return a.e}, +$S:241} +A.aSO.prototype={ +$2(a,b){return a+b}, +$S:115} +A.Fg.prototype={} +A.v6.prototype={} +A.Yn.prototype={ +l4(a){var s=this +if(s.ch===B.dM){if(s.k4!=null&&s.ok!=null)s.DB() +s.k4=a}if(s.k4!=null)s.aiD(a)}, +Cn(a,b){this.aiu(a,b)}, +aaJ(a){var s,r,q=this +if(t.oN.b(a)){q.ok=a +q.a0d()}else if(t.Ko.b(a)){q.L(B.aP) +if(q.k2){s=q.k4 +s.toString +q.LV(a,s,"")}q.DB()}else{s=a.gfV(a) +r=q.k4 +if(s!==r.gfV(r)){q.L(B.aP) +s=q.CW +s.toString +q.oC(s)}}}, +L(a){var s,r=this +if(r.k3&&a===B.aP){s=r.k4 +s.toString +r.LV(null,s,"spontaneous") +r.DB()}r.ZE(a)}, +UJ(){this.a01()}, +l3(a){var s=this +s.ZK(a) +if(a===s.CW){s.a01() +s.k3=!0 +s.a0d()}}, +jq(a){var s,r=this +r.aiE(a) +if(a===r.CW){if(r.k2){s=r.k4 +s.toString +r.LV(null,s,"forced")}r.DB()}}, +a01(){var s,r=this +if(r.k2)return +s=r.k4 +s.toString +r.aaK(s) +r.k2=!0}, +a0d(){var s,r,q=this +if(!q.k3||q.ok==null)return +s=q.k4 +s.toString +r=q.ok +r.toString +q.aaL(s,r) +q.DB()}, +DB(){var s=this +s.k3=s.k2=!1 +s.k4=s.ok=null}} +A.kO.prototype={ +n5(a){var s=this +switch(a.gfV(a)){case 1:if(s.aK==null&&s.c_==null&&s.b6==null&&s.cp==null)return!1 +break +case 2:if(s.ct==null&&s.B==null&&s.W==null&&s.a6==null)return!1 +break +case 4:return!1 +break +default:return!1}return s.yF(a)}, +aaK(a){var s,r=this,q=a.gcJ(a),p=a.geF() +r.e.i(0,a.gcu()).toString +s=new A.Fg(q,p) +switch(a.gfV(a)){case 1:if(r.aK!=null)r.e7("onTapDown",new A.aYO(r,s)) +break +case 2:if(r.B!=null)r.e7("onSecondaryTapDown",new A.aYP(r,s)) +break +case 4:break}}, +aaL(a,b){var s,r,q=this +b.gdR(b) +b.gcJ(b) +b.geF() +s=new A.v6() +switch(a.gfV(a)){case 1:if(q.b6!=null)q.e7("onTapUp",new A.aYQ(q,s)) +r=q.c_ +if(r!=null)q.e7("onTap",r) +break +case 2:if(q.W!=null)q.e7("onSecondaryTapUp",new A.aYR(q,s)) +if(q.ct!=null)q.e7("onSecondaryTap",new A.aYS(q)) +break +case 4:break}}, +LV(a,b,c){var s,r=this,q=c===""?c:c+" " +switch(b.gfV(b)){case 1:s=r.cp +if(s!=null)r.e7(q+"onTapCancel",s) +break +case 2:s=r.a6 +if(s!=null)r.e7(q+"onSecondaryTapCancel",s) +break +case 4:break}}} +A.aYO.prototype={ +$0(){return this.a.aK.$1(this.b)}, +$S:0} +A.aYP.prototype={ +$0(){return this.a.B.$1(this.b)}, +$S:0} +A.aYQ.prototype={ +$0(){return this.a.b6.$1(this.b)}, +$S:0} +A.aYR.prototype={ +$0(){return this.a.W.$1(this.b)}, +$S:0} +A.aYS.prototype={ +$0(){return this.a.ct.$0()}, +$S:0} +A.Rs.prototype={ +J(){return"_DragState."+this.b}} +A.Pb.prototype={} +A.Pe.prototype={} +A.Pd.prototype={} +A.Pf.prototype={} +A.Pc.prototype={} +A.UG.prototype={ +ku(a){var s,r,q=this +if(t.n2.b(a)){s=A.vW(a.gdR(a),q.b) +r=q.LE$ +if(a.gcJ(a).a4(0,r.b).ge9()>s){q.Ic() +q.F1$=q.F0$=null}}else if(t.oN.b(a)){q.AF$=a +if(q.tA$!=null){q.Ic() +if(q.xm$==null)q.xm$=A.d0(B.bC,q.gapv())}}else if(t.Ko.b(a))q.JO()}, +jq(a){this.JO()}, +avA(a){var s=this.F0$ +s.toString +if(a===s)return!0 +else return!1}, +awh(a){var s=this.F1$ +if(s==null)return!1 +return a.a4(0,s).ge9()<=100}, +Ic(){var s=this.xm$ +if(s!=null){s.aI(0) +this.xm$=null}}, +apw(){}, +JO(){var s,r=this +r.Ic() +r.F1$=r.LE$=r.F0$=null +r.qR$=0 +r.AF$=r.tA$=null +s=r.LG$ +if(s!=null)s.$0()}} +A.IA.prototype={ +ata(){var s=this +if(s.cy!=null)s.e7("onDragUpdate",new A.au5(s)) +s.p2=s.p3=null}, +n5(a){var s=this +if(s.fy==null)switch(a.gfV(a)){case 1:if(s.ch==null&&s.cx==null&&s.cy==null&&s.db==null&&s.CW==null&&s.dx==null)return!1 +break +default:return!1}else if(a.gcu()!==s.fy)return!1 +return s.yF(a)}, +l4(a){var s,r=this +if(r.k1===B.iI){r.ak4(a) +r.fy=a.gcu() +r.ok=r.k4=0 +r.k1=B.q4 +s=a.gcJ(a) +r.k3=new A.jk(a.geF(),s) +r.go=A.d0(B.aX,new A.au6(r,a))}}, +AM(a){if(a.gfV(a)!==1)if(!this.fx)this.ZD(a)}, +l3(a){var s,r=this +if(a!==r.fy)return +r.JJ() +r.p4.F(0,a) +s=r.tA$ +if(s!=null)r.a0b(s) +r.fx=!0 +s=r.k2 +if(s!=null)r.Pa(s) +s=r.AF$ +if(s!=null)r.a0c(s)}, +Ag(a){var s,r=this +switch(r.k1.a){case 0:r.a5E() +r.L(B.aP) +break +case 1:if(r.dy)if(r.fx){if(r.tA$!=null){if(!r.p4.E(0,a))r.Nq(a,B.aP) +r.k1=B.lO +s=r.tA$ +s.toString +r.Pa(s) +r.a03()}}else{r.a5E() +r.L(B.aP)}else{s=r.AF$ +if(s!=null)r.a0c(s)}break +case 2:r.a03() +break}r.JJ() +r.k1=B.iI +r.dy=!1}, +ku(a){var s,r,q,p,o,n,m=this +if(a.gcu()!==m.fy)return +m.ale(a) +if(t.n2.b(a)){s=A.vW(a.gdR(a),m.b) +if(!m.dy){r=m.k3 +r===$&&A.b() +r=a.gcJ(a).a4(0,r.b).ge9()>s}else r=!0 +m.dy=r +r=m.k1 +if(r===B.lO)m.a05(a) +else if(r===B.q4){if(m.k2==null){if(a.gd4(a)==null)q=null +else{r=a.gd4(a) +r.toString +q=A.yh(r)}p=m.a5F(a.gqY()) +r=m.k4 +r===$&&A.b() +o=A.yB(q,null,p,a.geF()).ge9() +n=m.a5G(p) +m.k4=r+o*J.l0(n==null?1:n) +r=m.ok +r===$&&A.b() +m.ok=r+A.yB(q,null,a.gqY(),a.geF()).ge9()*B.f.gOv(1) +if(!m.a5H(a.gdR(a)))r=m.fx&&Math.abs(m.ok)>A.bgp(a.gdR(a),m.b) +else r=!0 +if(r){m.k2=a +m.k1=B.lO +if(!m.fx)m.L(B.cG)}}r=m.k2 +if(r!=null)m.Pa(r)}}else if(t.oN.b(a)){r=m.k1 +if(r===B.q4)m.HB(a) +else if(r===B.lO)m.SQ(a.gcu())}else if(t.Ko.b(a)){m.k1=B.iI +m.SQ(a.gcu())}}, +jq(a){var s=this +if(a!==s.fy)return +s.alf(a) +s.JJ() +s.SQ(a) +s.Jn() +s.Jm()}, +m(){this.JJ() +this.Jm() +this.ak5()}, +Pa(a){var s,r,q,p,o,n=this +if(!n.fx)return +if(n.at===B.D){s=n.k3 +s===$&&A.b() +r=a.gA9() +n.k3=s.U(0,new A.jk(a.gqY(),r))}n.aoH(a) +if(!a.gqY().k(0,B.i)){if(a.gd4(a)!=null){s=a.gd4(a) +s.toString +q=A.yh(s)}else q=null +s=n.k3 +s===$&&A.b() +p=s.a.U(0,a.gqY()) +o=A.yB(q,null,a.gqY(),p) +s=a.gqY() +n.p1=n.k3.U(0,new A.jk(s,o)) +n.a05(a) +n.p1=null}}, +a0b(a){var s,r,q,p,o=this +if(o.fr)return +s=a.gcJ(a) +r=a.geF() +q=o.e.i(0,a.gcu()) +q.toString +p=o.qR$ +if(o.ch!=null)o.e7("onTapDown",new A.au3(o,new A.Pb(s,r,q,p))) +o.fr=!0}, +a0c(a){var s,r,q,p,o=this +if(!o.fx)return +s=a.gdR(a) +r=a.gcJ(a) +q=a.geF() +p=o.qR$ +if(o.CW!=null)o.e7("onTapUp",new A.au4(o,new A.Pe(r,q,s,p))) +o.Jn() +if(!o.p4.E(0,a.gcu()))o.Nq(a.gcu(),B.aP)}, +aoH(a){var s,r,q,p=this +if(p.cx!=null){s=a.gk8(a) +r=p.k3 +r===$&&A.b() +q=p.e.i(0,a.gcu()) +q.toString +p.e7("onDragStart",new A.au1(p,new A.Pd(s,r.b,r.a,q,p.qR$)))}p.k2=null}, +a05(a){var s,r,q,p,o,n,m=this,l=m.p1,k=l!=null?l.b:a.gcJ(a) +l=m.p1 +s=l!=null?l.a:a.geF() +l=a.gk8(a) +r=a.gqY() +q=m.e.i(0,a.gcu()) +q.toString +p=m.k3 +p===$&&A.b() +p=k.a4(0,p.b) +o=s.a4(0,m.k3.a) +n=m.qR$ +if(m.cy!=null)m.e7("onDragUpdate",new A.au2(m,new A.Pf(l,r,k,s,q,p,o,n)))}, +a03(){var s=this,r=s.p3 +if(r!=null){r.aI(0) +s.ata()}r=s.qR$ +if(s.db!=null)s.e7("onDragEnd",new A.au0(s,new A.Pc(0,r))) +s.Jn() +s.Jm()}, +a5E(){var s,r=this +if(!r.fr)return +s=r.dx +if(s!=null)r.e7("onCancel",s) +r.Jm() +r.Jn()}, +SQ(a){this.oC(a) +if(!this.p4.E(0,a))this.Nq(a,B.aP)}, +Jn(){this.fx=this.fr=!1 +this.fy=null}, +Jm(){return}, +JJ(){var s=this.go +if(s!=null){s.aI(0) +this.go=null}}} +A.au5.prototype={ +$0(){var s=this.a,r=s.cy +r.toString +s=s.p2 +s.toString +return r.$1(s)}, +$S:0} +A.au6.prototype={ +$0(){var s=this.a,r=s.tA$ +if(r!=null){s.a0b(r) +if(s.qR$>1)s.L(B.cG)}return null}, +$S:0} +A.au3.prototype={ +$0(){return this.a.ch.$1(this.b)}, +$S:0} +A.au4.prototype={ +$0(){return this.a.CW.$1(this.b)}, +$S:0} +A.au1.prototype={ +$0(){return this.a.cx.$1(this.b)}, +$S:0} +A.au2.prototype={ +$0(){return this.a.cy.$1(this.b)}, +$S:0} +A.au0.prototype={ +$0(){return this.a.db.$1(this.b)}, +$S:0} +A.pi.prototype={ +a5H(a){var s=this.k4 +s===$&&A.b() +return Math.abs(s)>A.vW(a,this.b)}, +a5F(a){return new A.m(a.a,0)}, +a5G(a){return a.a}} +A.pj.prototype={ +a5H(a){var s=this.k4 +s===$&&A.b() +return Math.abs(s)>A.bgp(a,this.b)}, +a5F(a){return a}, +a5G(a){return null}} +A.QC.prototype={ +l4(a){var s,r=this +r.Cr(a) +s=r.xm$ +if(s!=null&&s.b==null)r.JO() +r.AF$=null +if(r.tA$!=null)s=!(r.xm$!=null&&r.awh(a.gcJ(a))&&r.avA(a.gfV(a))) +else s=!1 +if(s)r.qR$=1 +else ++r.qR$ +r.Ic() +r.tA$=a +r.F0$=a.gfV(a) +r.F1$=a.gcJ(a) +r.LE$=new A.jk(a.geF(),a.gcJ(a)) +s=r.LF$ +if(s!=null)s.$0()}, +m(){this.JO() +this.pz()}} +A.anF.prototype={} +A.anG.prototype={} +A.anH.prototype={} +A.anI.prototype={} +A.anJ.prototype={} +A.af6.prototype={ +L(a){this.a.aD4(this.b,a)}, +$iCz:1} +A.A7.prototype={ +l3(a){var s,r,q,p,o=this +o.a5K() +if(o.e==null){s=o.b[0] +o.e=s}for(s=o.b,r=s.length,q=0;qb*b)return new A.kS(s.i7(0,s.ge9()).av(0,b)) +if(r40)return B.pU +s=t.up +r=A.a([],s) +q=A.a([],s) +p=A.a([],s) +o=A.a([],s) +n=this.d +s=this.c +m=s[n] +if(m==null)return null +l=m.a.a +k=m +j=k +i=0 +do{h=s[n] +if(h==null)break +g=h.a.a +f=(l-g)/1000 +if(f>100||Math.abs(g-j.a.a)/1000>40)break +e=h.b +r.push(e.a) +q.push(e.b) +p.push(1) +o.push(-f) +n=(n===0?20:n)-1;++i +if(i<20){k=h +j=k +continue}else{k=h +break}}while(!0) +if(i>=3){d=new A.a3u(o,r,p).Z9(2) +if(d!=null){c=new A.a3u(o,q,p).Z9(2) +if(c!=null){s=d.a[1] +g=c.a[1] +b=d.b +b===$&&A.b() +a=c.b +a===$&&A.b() +return new A.vh(new A.m(s*1000,g*1000),b*a,new A.bj(l-k.a.a),m.b.a4(0,k.b))}}}return new A.vh(B.i,1,new A.bj(l-k.a.a),m.b.a4(0,k.b))}, +Oc(){var s=this.C4() +if(s==null||s.a.k(0,B.i))return B.dt +return new A.kS(s.a)}} +A.xx.prototype={ +t8(a,b){var s=this,r=s.b +r.rM(0) +r.iN(0) +r=(s.d+1)%20 +s.d=r +s.e[r]=new A.Tc(a,b)}, +zh(a){var s,r,q=this.d+a,p=B.f.aJ(q,20),o=B.f.aJ(q-1,20) +q=this.e +s=q[p] +r=q[o] +if(s==null||r==null)return B.i +q=s.a.a-r.a.a +return q>0?s.b.a4(0,r.b).av(0,1000).i7(0,q/1000):B.i}, +C4(){var s,r,q,p,o,n,m=this +if(m.b.gUZ()>40)return B.pU +s=m.zh(-2).av(0,0.6).U(0,m.zh(-1).av(0,0.35)).U(0,m.zh(0).av(0,0.05)) +r=m.e +q=m.d +p=r[q] +for(o=null,n=1;n<=20;++n){o=r[B.f.aJ(q+n,20)] +if(o!=null)break}if(o==null||p==null)return B.Pm +else return new A.vh(s,1,new A.bj(p.a.a-o.a.a),p.b.a4(0,o.b))}} +A.Di.prototype={ +C4(){var s,r,q,p,o,n,m=this +if(m.b.gUZ()>40)return B.pU +s=m.zh(-2).av(0,0.15).U(0,m.zh(-1).av(0,0.65)).U(0,m.zh(0).av(0,0.2)) +r=m.e +q=m.d +p=r[q] +for(o=null,n=1;n<=20;++n){o=r[B.f.aJ(q+n,20)] +if(o!=null)break}if(o==null||p==null)return B.Pm +else return new A.vh(s,1,new A.bj(p.a.a-o.a.a),p.b.a4(0,o.b))}} +A.adN.prototype={ +A(a){var s=this,r=null +return A.dh(r,r,s.c,r,new A.b1H(s,a),r,r,s.f,s.IC(a),r)}, +geD(a){return this.c}} +A.b1H.prototype={ +$0(){this.a.J8(this.b)}, +$S:0} +A.A1.prototype={ +A(a){var s,r,q,p,o=null +a.aj(t.vH) +s=A.B(a) +r=this.c.$1(s.R8) +if(r!=null)return r.$1(a) +q=this.d.$1(a) +switch(A.c3().a){case 0:s=A.A(a,B.aC,t.D) +s.toString +p=this.e.$1(s) +break +case 1:case 3:case 5:case 2:case 4:p=o +break +default:p=o}return A.h3(q,o,p,o)}} +A.Y9.prototype={ +A(a){return new A.A1(new A.atx(),new A.aty(),new A.atz(),null)}} +A.atx.prototype={ +$1(a){return a==null?null:a.a}, +$S:103} +A.aty.prototype={ +$1(a){return B.xx}, +$S:117} +A.atz.prototype={ +$1(a){return a.gbr()}, +$S:118} +A.Y7.prototype={ +J8(a){return A.aMa(a)}, +IC(a){var s=A.A(a,B.aC,t.D) +s.toString +return s.gbr()}} +A.Zk.prototype={ +A(a){return new A.A1(new A.axp(),new A.axq(),new A.axr(),null)}} +A.axp.prototype={ +$1(a){return a==null?null:a.b}, +$S:103} +A.axq.prototype={ +$1(a){return B.a5k}, +$S:117} +A.axr.prototype={ +$1(a){return a.gbj()}, +$S:118} +A.Zj.prototype={ +J8(a){return A.aMa(a)}, +IC(a){var s=A.A(a,B.aC,t.D) +s.toString +return s.gbj()}} +A.a1e.prototype={ +A(a){return new A.A1(new A.aA6(),new A.aA7(),new A.aA8(),null)}} +A.aA6.prototype={ +$1(a){return a==null?null:a.c}, +$S:103} +A.aA7.prototype={ +$1(a){return B.xz}, +$S:117} +A.aA8.prototype={ +$1(a){return a.gaS()}, +$S:118} +A.a1d.prototype={ +J8(a){var s,r,q=A.pa(a),p=q.e +if(p.gR()!=null){s=q.x +r=s.y +s=r==null?A.l(s).h("dv.T").a(r):r}else s=!1 +if(s)p.gR().ah(0) +q=q.d.gR() +if(q!=null)q.r6(0) +return null}, +IC(a){var s=A.A(a,B.aC,t.D) +s.toString +return s.gaS()}} +A.a1n.prototype={ +A(a){return new A.A1(new A.aBo(),new A.aBp(),new A.aBq(),null)}} +A.aBo.prototype={ +$1(a){return a==null?null:a.d}, +$S:103} +A.aBp.prototype={ +$1(a){return B.xz}, +$S:117} +A.aBq.prototype={ +$1(a){return a.gaS()}, +$S:118} +A.a1m.prototype={ +J8(a){return A.pa(a).G_()}, +IC(a){var s=A.A(a,B.aC,t.D) +s.toString +return s.gaS()}} +A.AV.prototype={ +gu(a){var s=this +return A.dj([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.a_(b)!==A.p(this))return!1 +if(b instanceof A.AV)s=!0 +else s=!1 +return s}} +A.adP.prototype={} +A.Xp.prototype={ +A(a){var s,r,q=this,p=q.c.length===0 +if(p)return B.a1 +s=J.fg(A.bEY(a,q.c)) +switch(A.B(a).r.a){case 2:p=q.e +r=p.a +p=p.b +return A.bGl(r,p==null?r:p,s) +case 0:p=q.e +r=p.a +p=p.b +return A.bN7(r,p==null?r:p,s) +case 1:case 3:case 5:return new A.a0P(q.e.a,s,null) +case 4:return new A.ZC(q.e.a,s,null)}}} +A.asm.prototype={ +$1(a){return A.bGm(a)}, +$S:650} +A.asn.prototype={ +$1(a){var s=this.a +return A.bGL(s,a.a,A.bjm(s,a))}, +$S:651} +A.aso.prototype={ +$1(a){return A.bGa(a.a,A.bjm(this.a,a))}, +$S:655} +A.ht.prototype={ +J(){return"ThemeMode."+this.b}} +A.Do.prototype={ +a8(){return new A.SD(B.m)}} +A.aJU.prototype={ +$2(a,b){return new A.Dr(a,b)}, +$S:656} +A.aJY.prototype={ +rz(a){return A.B(a).r}, +KF(a,b,c){switch(A.bU(c.a).a){case 0:return b +case 1:switch(A.B(a).r.a){case 3:case 4:case 5:return A.btW(b,c.b,null) +case 0:case 1:case 2:return b}break}}, +KE(a,b,c){A.B(a) +switch(A.B(a).r.a){case 2:case 3:case 4:case 5:return b +case 0:switch(0){case 0:return new A.P0(c.a,c.d,b,null)}case 1:break}return A.brQ(c.a,b,A.B(a).ax.f)}} +A.SD.prototype={ +aX(){this.b9() +this.d=A.bsI()}, +m(){var s=this.d +s===$&&A.b() +s.m() +this.b0()}, +gawJ(){var s=A.a([],t.a9) +B.b.I(s,this.a.k2) +s.push(B.Tg) +s.push(B.T7) +return s}, +aw4(a,b){return new A.xg(B.a6L,b,null,!1,B.aBQ,null,null)}, +awY(a,b){var s,r,q,p,o,n,m=this,l=null,k=m.a.fx,j=A.d9(a,B.q8),i=j==null?l:j.e +if(i==null)i=B.a2 +if(k!==B.Pb)s=k===B.iz&&i===B.S +else s=!0 +j=A.d9(a,B.PF) +j=j==null?l:j.as +r=j===!0 +if(s)if(r)m.a.toString +if(s){m.a.toString +j=!0}else j=!1 +if(j)q=m.a.dx +else{if(r)m.a.toString +q=l}if(q==null)q=m.a.db +j=q.fp +p=j.b +if(p==null){o=q.ax.b +p=A.K(102,o.gj(o)>>>16&255,o.gj(o)>>>8&255,o.gj(o)&255)}n=j.a +if(n==null)n=q.ax.b +m.a.toString +return new A.NY(A.ayn(new A.Id(q,new A.e4(new A.b7S(m,b),l),B.Y,B.T,l,l),n,l,l,p),l)}, +aon(a){var s,r=this,q=null,p=r.a,o=p.db +o=o.fr +s=o +if(s==null)s=B.hY +return new A.FP(q,q,q,q,q,q,q,q,p.ch,q,q,q,q,q,q,r.gawX(),"",p.cy,B.awT,s,p.k1,r.gawJ(),q,q,r.a.ok,!1,!1,!1,!1,r.gaw3(),!1,q,q,q,new A.tP(r,t.bT))}, +A(a){var s,r=null,q=A.tJ(!1,!1,this.aon(a),r,r,r,r,!0,r,r,new A.b7T(),r,r,r) +this.a.toString +s=this.d +s===$&&A.b() +return A.a8T(B.Sq,A.bs_(q,s))}} +A.b7S.prototype={ +$1(a){return this.a.a.CW.$2(a,this.b)}, +$S:13} +A.b7T.prototype={ +$2(a,b){if(!(b instanceof A.p6)||!b.c.gFI().k(0,B.hP))return B.hA +return A.bNr()?B.hz:B.hA}, +$S:189} +A.bdP.prototype={ +vQ(a){return a.NA(this.b)}, +vV(a){return new A.U(a.b,this.b)}, +vT(a,b){return new A.m(0,a.b-b.b)}, +qj(a){return this.b!==a.b}} +A.Tg.prototype={} +A.Il.prototype={ +as0(a){var s=this.cy +if(s==null)s=a.RG.y +return s==null?new A.ast(this,a).$0():s}, +a8(){return new A.Qo(B.m)}, +$iqZ:1, +r4(a){return A.HU().$1(a)}, +grb(){return this.fx}} +A.ast.prototype={ +$0(){switch(this.b.r.a){case 0:case 1:case 3:case 5:return!1 +case 2:case 4:var s=this.a.f +return s==null||s.length<2}}, +$S:10} +A.Qo.prototype={ +ca(){var s,r=this +r.e8() +s=r.d +if(s!=null)s.H(0,r.gPp()) +s=r.c.aj(t.yd) +s=s==null?null:s.f +r.d=s +if(s!=null){s=s.d +s.z8(s.c,new A.vz(r.gPp()),!1)}}, +m(){var s=this,r=s.d +if(r!=null){r.H(0,s.gPp()) +s.d=null}s.b0()}, +anx(a){var s,r,q,p=this +if(a instanceof A.kI&&p.a.r4(a)){s=p.e +r=a.a +switch(r.e.a){case 0:q=p.e=Math.max(r.gky()-r.gf2(),0)>0 +break +case 2:q=p.e=Math.max(r.gf2()-r.gkz(),0)>0 +break +case 1:case 3:q=s +break +default:q=s}if(q!==s)p.ad(new A.b25())}}, +A(b6){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=this,a9=null,b0=A.B(b6),b1=A.bs6(b6),b2=A.B(b6).RG,b3=new A.b24(b6,a9,a9,0,3,a9,a9,a9,a9,a9,a9,16,64,a9,a9,a9),b4=b6.F4(t.Np),b5=A.oV(b6,t.X) +b6.aj(t.KL) +s=A.aW(t.ui) +r=a8.e +if(r)s.F(0,B.Jr) +r=b4==null +if(r)q=a9 +else{b4.a.toString +q=!1}b4=r?a9:b4.a.at!=null +p=b5 instanceof A.jY&&b5.gpY() +r=a8.a +r.toString +o=b2.Q +if(o==null)o=56 +n=b3.gcd(b3) +m=t.MH +r=A.ce(r.ax,s,m) +if(r==null)r=A.ce(b2.a,s,m) +if(r==null)r=A.ce(n,s,t.n8) +a8.a.toString +l=b2.b +k=l==null?b3.gfq():l +n=a8.a.x +j=n==null?b2.c:n +if(j==null){n=b3.c +n.toString +j=n}if(s.p(0,B.Jr)){a8.a.toString +s=b2.d +if(s==null)s=b3.d +i=s==null?j:s}else i=j +a8.a.toString +h=b2.w +g=h==null?b3.gh2().cM(k):h +a8.a.toString +s=b2.x +if(s==null)s=a9 +if(s==null)s=h +if(s==null){s=b3.gzy().cM(l) +f=s}else f=s +if(f==null)f=g +a8.a.toString +e=b2.as +if(e==null){s=b3.gGC() +e=s==null?a9:s.cM(k)}a8.a.toString +d=b2.at +if(d==null){s=b3.gju() +d=s==null?a9:s.cM(k)}s=a8.a +c=s.c +if(c==null&&!0)if(q===!0){s=g.a +c=new A.a1d(B.a1R,a9,A.xz(a9,a9,a9,a9,a9,a9,a9,a9,a9,s==null?24:s,a9,a9,a9,a9),a9)}else{if(b5==null)s=a9 +else s=b5.gAN()||b5.mY$>0 +if(s===!0)c=p?B.TG:B.Q0}if(c!=null){if(g.k(0,b3.gh2()))b=b1 +else{a=A.xz(a9,a9,a9,a9,a9,a9,g.f,a9,a9,g.a,a9,a9,a9,a9) +s=b1.a +b=new A.qB(s==null?a9:s.a8V(a.c,a.as,a.d))}c=A.a2N(c instanceof A.xy?A.eH(c,a9,a9):c,b) +a8.a.toString +c=new A.eX(A.jE(a9,56),c,a9)}s=a8.a +a0=s.e +if(a0!=null){a0=new A.ae8(a0,a9) +a1=b0.r +$label0$0:{if(B.bO===a1||B.ea===a1||B.eQ===a1||B.eR===a1){q=!0 +break $label0$0}if(B.b1===a1||B.dc===a1){q=a9 +break $label0$0}q=a9}a0=new A.bu(A.bL(a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,!0,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,q,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9),!1,!1,!1,!1,a0,a9) +d.toString +a0=A.bsO(A.fI(a0,a9,a9,B.ad,!1,d,a9,a9,B.at),1.34)}s=s.f +if(s!=null&&s.length!==0){s.toString +a2=A.db(s,B.w,B.z,B.ah)}else if(b4===!0){b4=g.a +a2=new A.a1m(B.a2J,a9,A.xz(a9,a9,a9,a9,a9,a9,a9,a9,a9,b4==null?24:b4,a9,a9,a9,a9),a9)}else a2=a9 +if(a2!=null){if(f.k(0,b3.gzy()))a3=b1 +else{a4=A.xz(a9,a9,a9,a9,a9,a9,f.f,a9,a9,f.a,a9,a9,a9,a9) +b4=b1.a +a3=new A.qB(b4==null?a9:b4.a8V(a4.c,a4.as,a4.d))}a2=A.a2N(A.oI(a2,f),a3)}b4=a8.a.as0(b0) +s=a8.a +s.toString +q=b2.z +if(q==null)q=16 +e.toString +a5=A.to(new A.l8(new A.bdP(o),A.oI(A.fI(new A.Mo(c,a0,a2,b4,q,a9),a9,a9,B.aU,!0,e,a9,a9,B.at),g),a9),B.C) +if(s.w!=null){b4=A.a([new A.oE(1,B.fm,new A.eX(new A.aN(0,1/0,0,o),a5,a9),a9)],t.p) +s=a8.a.w +s.toString +b4.push(s) +a5=A.cP(b4,B.w,B.fC,B.O)}a8.a.toString +a5=A.z8(!1,a5,!0,B.a8,!0,!0) +b4=b2.ax +a6=b4==null?b3.ax:b4 +if(a6==null){b4=A.iX(r) +a7=b4===B.S?B.OL:B.OM +a6=new A.mp(a9,a9,a9,a9,B.E,a7.f,a7.r,a7.w)}a8.a.toString +b4=b2.e +if(b4==null)b4=b3.gbT(b3) +a8.a.toString +s=b2.f +if(s==null)s=b3.gc7() +a8.a.toString +q=b2.r +if(q==null)q=b3.r +b4=A.bjq(A.h5(B.T,!0,a9,new A.bu(A.bL(a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9),!1,!0,!1,!1,new A.ef(B.f0,a9,a9,a5,a9),a9),B.n,r,i,a9,b4,q,s,a9,B.cv),a6,t.lu) +return new A.bu(A.bL(a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9),!0,!1,!1,!1,b4,a9)}} +A.b25.prototype={ +$0(){}, +$S:0} +A.ae8.prototype={ +b5(a){var s=a.aj(t.I) +s.toString +s=new A.alg(B.a7,s.w,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){var s=a.aj(t.I) +s.toString +b.scz(s.w)}} +A.alg.prototype={ +da(a){var s=a.a8K(1/0) +return a.bJ(this.k3$.lO(s))}, +ce(){var s,r=this,q=t.k,p=q.a(A.J.prototype.ga9.call(r)).a8K(1/0) +r.k3$.cS(p,!0) +q=q.a(A.J.prototype.ga9.call(r)) +s=r.k3$ +r.id=q.bJ(s.gq(s)) +r.Kr()}} +A.b24.prototype={ +ga_E(){var s,r=this,q=r.ch +if(q===$){s=A.B(r.ay) +r.ch!==$&&A.aq() +r.ch=s +q=s}return q}, +gCB(){var s,r=this,q=r.CW +if(q===$){s=r.ga_E() +r.CW!==$&&A.aq() +q=r.CW=s.ax}return q}, +ga_D(){var s,r=this,q=r.cx +if(q===$){s=r.ga_E() +r.cx!==$&&A.aq() +q=r.cx=s.p3}return q}, +gcd(a){return this.gCB().cy}, +gfq(){return this.gCB().db}, +gbT(a){return B.E}, +gc7(){var s=this.gCB(),r=s.k3 +return r==null?s.b:r}, +gh2(){var s=null +return new A.d4(24,s,s,s,s,this.gCB().db,s,s)}, +gzy(){var s=null,r=this.gCB(),q=r.dy +return new A.d4(24,s,s,s,s,q==null?r.db:q,s,s)}, +gGC(){return this.ga_D().z}, +gju(){return this.ga_D().r}} +A.B_.prototype={ +gu(a){var s=this +return A.X(s.gcd(s),s.gfq(),s.c,s.d,s.gbT(s),s.gc7(),s.r,s.gh2(),s.gzy(),s.y,s.z,s.Q,s.gGC(),s.gju(),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.a_(b)!==A.p(s))return!1 +return b instanceof A.B_&&J.j(b.gcd(b),s.gcd(s))&&J.j(b.gfq(),s.gfq())&&b.c==s.c&&b.d==s.d&&J.j(b.gbT(b),s.gbT(s))&&J.j(b.gc7(),s.gc7())&&J.j(b.r,s.r)&&J.j(b.gh2(),s.gh2())&&J.j(b.gzy(),s.gzy())&&b.z==s.z&&b.Q==s.Q&&J.j(b.gGC(),s.gGC())&&J.j(b.gju(),s.gju())&&J.j(b.ax,s.ax)}, +gcd(a){return this.a}, +gfq(){return this.b}, +gbT(a){return this.e}, +gc7(){return this.f}, +gh2(){return this.w}, +gzy(){return this.x}, +gGC(){return this.as}, +gju(){return this.at}} +A.ae7.prototype={} +A.LZ.prototype={ +t0(){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.ge9() +n=s.a +m=f.b +l=new A.m(n,m) +k=new A.aJW(g,o) +if(q>2&&p>2){j=o*o +i=f.a +h=s.b +if(q700){s=-o/p.ga0f() +o=p.a.c +r=o.x +r===$&&A.b() +if(r>0)o.AK(s) +q=s<0&&!0}else{o=p.a.c +r=o.x +r===$&&A.b() +if(r<0.5){if(r>0)o.AK(-1) +q=!0}else{o.bS(0) +q=!1}}p.a.z.$2$isClosing(a,q) +if(q)p.a.aN2()}, +Va(a){a.gez() +a.gaMF() +return!1}, +at7(a){if(a!==this.e.p(0,B.F))this.ad(new A.b2E(this,a))}, +A(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=null,d=A.B(a).x2 +A.B(a) +s=A.bme(a) +f.a.toString +r=d.as +if(r==null)r=s.ga9() +q=f.a.Q +p=q==null?d.a:q +if(p==null)p=s.gcd(s) +o=d.b +if(o==null)o=s.gc7() +f.a.toString +n=d.f +if(n==null)n=s.gbT(s) +q=f.a +m=q.at +if(m==null)m=d.c +l=m==null?s.c:m +if(l==null)l=0 +m=q.ax +k=m==null?d.w:m +if(k==null)k=s.w +m=q.ay +j=m==null?d.Q:m +if(j==null)j=B.n +i=q.r +if(i==null){q.f +i=!1}if(i){h=new A.agp(q.d,f.gat6(),f.e,e,e,e) +if(!q.f)h=new A.QH(h,f.ga_N(),f.ga_O(),f.ga_M(),e)}else h=e +if(!i)q=q.a89(a) +else{h.toString +q=A.fp(B.f0,A.a([h,new A.b4(B.a2m,q.a89(a),e)],t.p),B.C,B.aJ,e)}g=A.h5(B.T,!0,e,new A.dB(f.gV9(),q,e,t.K3),j,p,l,f.d,n,k,o,e,B.cv) +g=new A.ef(B.iN,e,1,new A.eX(r,g,e),e) +return!f.a.f?g:new A.QH(g,f.ga_N(),f.ga_O(),f.ga_M(),e)}} +A.b2F.prototype={ +$0(){this.a.e.F(0,B.fF)}, +$S:0} +A.b2D.prototype={ +$0(){this.a.e.E(0,B.fF)}, +$S:0} +A.b2E.prototype={ +$0(){var s=this.a.e +if(this.b)s.F(0,B.F) +else s.E(0,B.F)}, +$S:0} +A.agp.prototype={ +A(a){var s,r,q,p,o,n,m=this,l=null,k=A.B(a).x2,j=A.bme(a),i=k.z +if(i==null)i=B.Oy +s=A.A(a,B.aC,t.D) +s.toString +s=s.gaM() +r=i.b +q=A.ID(r/2) +p=m.e +o=t.MH +n=A.ce(m.f,p,o) +p=n==null?A.ce(k.y,p,o):n +if(p==null){p=j.gI3() +o=p.dy +p=o==null?p.db:o +p=A.K(102,p.gj(p)>>>16&255,p.gj(p)>>>8&255,p.gj(p)&255)}r=A.cZ(A.eH(A.cQ(l,l,B.n,l,l,new A.dU(p,l,l,q,l,l,B.aK),l,r,l,l,i.a),l,l),48,48) +return A.nj(new A.bu(A.bL(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,s,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,m.c,l,l,l,l,l,l,l,l,l,l,l),!0,!1,!1,!1,r,l),B.cD,l,new A.b4G(m),new A.b4H(m),l)}} +A.b4G.prototype={ +$1(a){return this.a.d.$1(!0)}, +$S:79} +A.b4H.prototype={ +$1(a){return this.a.d.$1(!1)}, +$S:65} +A.aez.prototype={ +b5(a){var s=new A.Tr(B.y,this.e,this.f,!1,this.w,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.saN1(this.e) +b.saFz(this.f) +b.saLJ(!1) +b.sag2(this.w)}} +A.Tr.prototype={ +saN1(a){if(J.j(this.ac,a))return +this.ac=a +this.aa()}, +saFz(a){if(this.az===a)return +this.az=a +this.aa()}, +saLJ(a){return}, +sag2(a){if(this.eB===a)return +this.eB=a +this.aa()}, +bX(a){var s=A.jF(a,1/0),r=s.bJ(new A.U(A.V(1/0,s.a,s.b),A.V(1/0,s.c,s.d))).a +if(isFinite(r))return r +return 0}, +bQ(a){var s=A.jF(a,1/0),r=s.bJ(new A.U(A.V(1/0,s.a,s.b),A.V(1/0,s.c,s.d))).a +if(isFinite(r))return r +return 0}, +bR(a){var s=A.jF(1/0,a),r=s.bJ(new A.U(A.V(1/0,s.a,s.b),A.V(1/0,s.c,s.d))).b +if(isFinite(r))return r +return 0}, +bV(a){var s=A.jF(1/0,a),r=s.bJ(new A.U(A.V(1/0,s.a,s.b),A.V(1/0,s.c,s.d))).b +if(isFinite(r))return r +return 0}, +da(a){return a.bJ(new A.U(A.V(1/0,a.a,a.b),A.V(1/0,a.c,a.d)))}, +ce(){var s,r,q,p,o,n=this,m=t.k,l=m.a(A.J.prototype.ga9.call(n)) +n.id=l.bJ(new A.U(A.V(1/0,l.a,l.b),A.V(1/0,l.c,l.d))) +if(n.k3$!=null){m=m.a(A.J.prototype.ga9.call(n)) +l=m.b +m=m.d*n.eB +s=n.k3$ +s.toString +r=l>=l +q=r&&0>=m +s.cS(new A.aN(l,l,0,m),!q) +q=n.k3$.b +q.toString +t.q.a(q) +s=n.gq(n) +if(r&&0>=m)p=new A.U(A.V(0,l,l),A.V(0,0,m)) +else{p=n.k3$ +p=p.gq(p)}q.sc5(0,new A.m(0,s.b-p.b*n.az)) +if(r&&0>=m)o=new A.U(A.V(0,l,l),A.V(0,0,m)) +else{m=n.k3$ +o=m.gq(m)}if(!n.D.k(0,o)){n.D=o +n.ac.$1(o)}}}} +A.Ak.prototype={ +a8(){return new A.GT(B.uZ,B.m,this.$ti.h("GT<1>"))}} +A.GT.prototype={ +asn(a){var s=this.c +s.toString +switch(A.B(s).r.a){case 2:case 4:return"" +case 0:case 1:case 3:case 5:return a.gaG()}}, +aJE(a){this.d=B.Y}, +aaB(a,b){var s=this.a.c.go +this.d=new A.b2G(s.gj(s),B.uZ)}, +aJC(a){return this.aaB(a,null)}, +A(a){var s,r,q,p,o,n,m,l=this,k=A.A(a,B.aC,t.D) +k.toString +s=l.asn(k) +k=l.a +r=k.c +q=r.go +q.toString +p=r.hc +o=k.f +n=k.r +m=k.w +return A.hg(q,new A.b8k(l,s),A.bq2(p,o,r.dY,k.x,k.y,n,!0,new A.b8l(l,a),l.gaJB(),l.gaJD(),m,k.Q))}} +A.b8l.prototype={ +$0(){if(this.a.a.c.gtI())A.du(this.b,!1).dO(null)}, +$S:0} +A.b8k.prototype={ +$2(a,b){var s=null,r=this.a,q=r.d,p=r.a.c.go +r=A.to(new A.aez(new A.b8j(r),q.a5(0,p.gj(p)),!1,r.a.e,b,s),B.C) +return new A.bu(A.bL(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,this.b,s,s,s,s,s,!0,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s,s),!1,!0,!1,!1,r,s)}, +$S:138} +A.b8j.prototype={ +$1(a){this.a.a.c.aqa(new A.aK(0,0,0,a.b))}, +$S:107} +A.M8.prototype={ +m(){var s=this.lk +s.ok$=$.aH() +s.k4$=0 +this.a_1()}, +aqa(a){var s=this.lk +if(J.j(s.a,a))return!1 +s.sj(0,a) +return!0}, +gu7(a){return B.jl}, +gNt(){return B.T}, +gqC(){return!0}, +gpJ(){var s=this.ek +return s==null?B.aa:s}, +a92(){var s=this.a +s.toString +s=A.bx(B.A,"BottomSheet",B.jl,0,B.T,1,null,s) +this.hc=s +return s}, +qE(a,b,c){var s=A.aK9(new A.JR(this.hZ,new A.e4(new A.aKI(this),null),null),a,!1,!1,!1,!0),r=new A.rw(this.cq.a,s,null) +return r}, +a8_(){var s,r,q=this,p=q.ek,o=p==null +if(((o?B.aa:p).a>>>24&255)!==0&&!q.fy){s=q.go +s.toString +r=(o?B.aa:p).a +r=A.K(0,r>>>16&255,r>>>8&255,r&255) +if(o)p=B.aa +o=t.IC.h("dz") +return A.bpN(!0,q.lk,new A.ax(t.m.a(s),new A.dz(new A.eI(B.aO),new A.dG(r,p),o),o.h("ax")),!0,q.kt,q.iE)}else return A.aKG(!0,q.lk,null,!0,null,q.kt,q.iE)}, +gtb(){return this.kt}} +A.aKI.prototype={ +$1(a){var s,r,q,p,o,n=A.B(a).x2 +A.B(a) +s=A.bme(a) +r=this.a +q=n.d +if(q==null)q=n.a +if(q==null)q=s.gcd(s) +p=n.r +if(p==null)p=s.r +if(p==null)p=n.c +o=r.hf +o=!1 +return new A.Ak(r,!1,r.dj,q,p,r.az,r.cr,r.eB,!0,o,null,r.$ti.h("Ak<1>"))}, +$S(){return this.a.$ti.h("Ak<1>(G)")}} +A.b2G.prototype={ +a5(a,b){var s=this.a +if(b#"+A.br(this)+"("+A.i(this.a)+", "+this.b.l(0)+")"}} +A.QH.prototype={ +A(a){return new A.nv(this.c,A.am([B.lI,new A.dH(new A.b2B(this),new A.b2C(this),t.ok)],t.n,t.xR),null,!0,null)}} +A.b2B.prototype={ +$0(){return A.bm_(this.a,null)}, +$S:139} +A.b2C.prototype={ +$1(a){var s=this.a +a.ay=s.d +a.ch=s.e +a.CW=s.f +a.dy=!0}, +$S:140} +A.b2A.prototype={ +gI3(){var s,r=this,q=r.ax +if(q===$){s=A.B(r.at) +r.ax!==$&&A.aq() +q=r.ax=s.ax}return q}, +gcd(a){return this.gI3().cy}, +gc7(){var s=this.gI3(),r=s.k3 +return r==null?s.b:r}, +gbT(a){return B.E}, +gLm(){var s=this.gI3(),r=s.dy +s=r==null?s.db:r +return A.K(102,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}, +gLn(){return B.Oy}, +ga9(){return B.qH}} +A.wn.prototype={ +gu(a){var s=this +return A.X(s.gcd(s),s.gc7(),s.c,s.d,s.e,s.gbT(s),s.r,s.w,s.x,s.gLm(),s.gLn(),s.Q,s.ga9(),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.a_(b)!==A.p(s))return!1 +return b instanceof A.wn&&J.j(b.gcd(b),s.gcd(s))&&J.j(b.gc7(),s.gc7())&&b.c==s.c&&J.j(b.d,s.d)&&J.j(b.gbT(b),s.gbT(s))&&J.j(b.e,s.e)&&b.r==s.r&&J.j(b.w,s.w)&&J.j(b.gLm(),s.gLm())&&J.j(b.gLn(),s.gLn())&&b.Q==s.Q&&J.j(b.ga9(),s.ga9())}, +gcd(a){return this.a}, +gc7(){return this.b}, +gbT(a){return this.f}, +gLm(){return this.y}, +gLn(){return this.z}, +ga9(){return this.as}} +A.aeA.prototype={} +A.Nm.prototype={ +a8(){return new A.akT(A.aW(t.ui),B.m)}} +A.akT.prototype={ +aX(){var s=this +s.b9() +if(!(s.a.c!=null||!1))s.uM(B.x) +else s.rm(B.x)}, +b1(a){var s,r=this +r.bh(a) +if(!(r.a.c!=null||!1))r.uM(B.x) +else r.rm(B.x) +s=r.qQ$ +if(s.p(0,B.x)&&s.p(0,B.Q))r.rm(B.Q)}, +gaqO(){var s=this,r=s.qQ$ +if(r.p(0,B.x))return s.a.ch +if(r.p(0,B.Q))return s.a.ay +if(r.p(0,B.F))return s.a.at +if(r.p(0,B.K))return s.a.ax +return s.a.as}, +A(a7){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1=this,a2=null,a3=a1.a.r,a4=a1.qQ$,a5=A.ce(a3.b,a4,t.MH),a6=A.ce(a1.a.db,a4,t.Zi) +a1.a.toString +s=new A.m(0,0).av(0,4) +r=B.h0.UY(a1.a.cy) +a3=a1.a.f +q=A.ce(a3,a4,t.WV) +a1.a.toString +a3=s.a +a4=s.b +p=B.a8.F(0,new A.aK(a3,a4,a3,a4)).hw(0,B.a8,B.q9) +o=a1.gaqO() +n=a1.a.r.cM(a5) +m=a1.a.w +A.B(a7) +l=A.B(a7) +k=a1.a +j=k.go +i=k.fx +k=k.c!=null||!1 +h=a1.NL(B.K) +a1.a.toString +g=a1.ae8(B.Q,a2) +f=a1.a +e=f.Q +d=f.x +f=f.y +c=a1.NL(B.F) +b=a1.a +a=b.c +n=A.h5(B.T,!0,a2,A.jg(!1,a2,k,A.oI(A.cQ(a2,A.eH(b.dy,1,1),B.n,a2,a2,a2,a2,a2,a2,p,a2),new A.d4(a2,a2,a2,a2,a2,a5,a2,a2)),a6,!0,d,i,a2,f,q,h,g,c,a2,a,a2,a2,a2,a2,e,a2,a2),j,m,o,a2,l.k2,a6,a2,n,B.os) +switch(b.fr.a){case 0:a0=new A.U(48+a3,48+a4) +break +case 1:a0=B.y +break +default:a0=a2}a3=a!=null||!1 +return new A.bu(A.bL(a2,a2,a2,a2,a2,!0,a2,a2,a2,a2,a3,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2,a2),!0,!1,!1,!1,new A.ahX(a0,new A.eX(r,n,a2),a2),a2)}} +A.ahX.prototype={ +b5(a){var s=new A.TB(this.e,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.sWl(this.e)}} +A.TB.prototype={ +sWl(a){if(this.D.k(0,a))return +this.D=a +this.aa()}, +bX(a){var s=this.k3$ +if(s!=null)return Math.max(s.aA(B.ae,a,s.gbW()),this.D.a) +return 0}, +bR(a){var s=this.k3$ +if(s!=null)return Math.max(s.aA(B.aF,a,s.gcs()),this.D.b) +return 0}, +bQ(a){var s=this.k3$ +if(s!=null)return Math.max(s.aA(B.ao,a,s.gc1()),this.D.a) +return 0}, +bV(a){var s=this.k3$ +if(s!=null)return Math.max(s.aA(B.bt,a,s.gcR()),this.D.b) +return 0}, +a_V(a,b){var s,r,q=this.k3$ +if(q!=null){s=b.$2(q,a) +q=s.a +r=this.D +return a.bJ(new A.U(Math.max(q,r.a),Math.max(s.b,r.b)))}return B.y}, +da(a){return this.a_V(a,A.t1())}, +ce(){var s,r,q,p=this +p.id=p.a_V(t.k.a(A.J.prototype.ga9.call(p)),A.vY()) +s=p.k3$ +if(s!=null){s=s.b +s.toString +t.q.a(s) +r=p.gq(p) +q=p.k3$ +s.sc5(0,B.a7.wO(t.EP.a(r.a4(0,q.gq(q)))))}}, +dm(a,b){var s,r +if(this.qk(a,b))return!0 +s=this.k3$ +r=s.gq(s).mr(B.i) +return a.DV(new A.baN(this,r),r,A.aK4(r))}} +A.baN.prototype={ +$2(a,b){return this.a.k3$.dm(a,this.b)}, +$S:17} +A.apY.prototype={} +A.IM.prototype={ +gu(a){var s=this +return A.X(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,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.a_(b)!==A.p(r))return!1 +if(b instanceof A.IM)if(b.d==r.d)if(b.e==r.e)if(J.j(b.f,r.f))s=!0 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +return s}} +A.aeE.prototype={} +A.cy.prototype={ +Uk(a3,a4,a5,a6,a7,a8,a9,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,c0,c1,c2,c3,c4){var s=this,r=c3==null?s.gir():c3,q=a5==null?s.gcd(s):a5,p=a9==null?s.gfq():a9,o=b5==null?s.gcG():b5,n=b7==null?s.gbT(s):b7,m=c1==null?s.gc7():c1,l=a6==null?s.gfn(s):a6,k=b6==null?s.gdD(s):b6,j=b3==null?s.glv():b3,i=a8==null?s.y:a8,h=b2==null?s.glt():b2,g=b0==null?s.Q:b0,f=b1==null?s.gjU():b1,e=b9==null?s.gf7():b9,d=b8==null?s.gcH(s):b8,c=b4==null?s.giI():b4,b=c4==null?s.gf5():c4,a=c2==null?s.glH():c2,a0=a4==null?s.cx:a4,a1=a7==null?s.cy:a7,a2=a3==null?s.db:a3 +return A.av9(a2,a0,q,l,a1,i,p,g,f,h,j,c,o,k,n,d,e,c0==null?s.ghM():c0,m,a,r,b)}, +x_(a){return this.Uk(null,null,null,null,null,null,null,null,null,null,null,null,null,a,null,null,null,null,null,null,null,null)}, +a8V(a,b,c){return this.Uk(null,null,null,null,null,null,a,null,b,null,null,null,c,null,null,null,null,null,null,null,null,null)}, +cI(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,a3=a2.gir() +if(a3==null)a3=a4.a +s=a2.gcd(a2) +if(s==null)s=a4.b +r=a2.gfq() +if(r==null)r=a4.c +q=a2.gcG() +if(q==null)q=a4.d +p=a2.gbT(a2) +if(p==null)p=a4.e +o=a2.gc7() +if(o==null)o=a4.f +n=a2.gfn(a2) +if(n==null)n=a4.r +m=a2.gdD(a2) +if(m==null)m=a4.w +l=a2.glv() +if(l==null)l=a4.x +k=a2.y +if(k==null)k=a4.y +j=a2.glt() +if(j==null)j=a4.z +i=a2.Q +if(i==null)i=a4.Q +h=a2.gjU() +if(h==null)h=a4.as +g=a2.gf7() +if(g==null)g=a4.at +f=a2.gcH(a2) +if(f==null)f=a4.ax +e=a2.giI() +if(e==null)e=a4.ay +d=a2.gf5() +if(d==null)d=a4.ch +c=a2.glH() +if(c==null)c=a4.CW +b=a2.cx +if(b==null)b=a4.cx +a=a2.cy +if(a==null)a=a4.cy +a0=a2.db +if(a0==null)a0=a4.db +a1=a2.ghM() +return a2.Uk(a0,b,s,n,a,k,r,i,h,j,l,e,q,m,p,f,g,a1==null?a4.dx:a1,o,c,a3,d)}, +gu(a){var s=this +return A.dj([s.gir(),s.gcd(s),s.gfq(),s.gcG(),s.gbT(s),s.gc7(),s.gfn(s),s.gdD(s),s.glv(),s.y,s.glt(),s.Q,s.gjU(),s.gf7(),s.gcH(s),s.giI(),s.gf5(),s.glH(),s.cx,s.cy,s.db,s.ghM()])}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.cy&&b.gir()==s.gir()&&J.j(b.gcd(b),s.gcd(s))&&J.j(b.gfq(),s.gfq())&&J.j(b.gcG(),s.gcG())&&b.gbT(b)==s.gbT(s)&&b.gc7()==s.gc7()&&b.gfn(b)==s.gfn(s)&&b.gdD(b)==s.gdD(s)&&b.glv()==s.glv()&&b.y==s.y&&b.glt()==s.glt()&&b.Q==s.Q&&b.gjU()==s.gjU()&&b.gf7()==s.gf7()&&b.gcH(b)==s.gcH(s)&&J.j(b.giI(),s.giI())&&J.j(b.gf5(),s.gf5())&&b.glH()==s.glH()&&J.j(b.cx,s.cx)&&b.cy==s.cy&&J.j(b.db,s.db)&&b.ghM()==s.ghM()}, +gir(){return this.a}, +gcd(a){return this.b}, +gfq(){return this.c}, +gcG(){return this.d}, +gbT(a){return this.e}, +gc7(){return this.f}, +gfn(a){return this.r}, +gdD(a){return this.w}, +glv(){return this.x}, +glt(){return this.z}, +gjU(){return this.as}, +gf7(){return this.at}, +gcH(a){return this.ax}, +giI(){return this.ay}, +gf5(){return this.ch}, +glH(){return this.CW}, +ghM(){return this.dx}} +A.aip.prototype={ +L(a){var s,r=this,q=r.a,p=q==null?null:q.L(a) +q=r.b +s=q==null?null:q.L(a) +q=p==null +if(q&&s==null)return null +if(q){q=s.a +return A.bp(new A.be(A.K(0,q.gj(q)>>>16&255,q.gj(q)>>>8&255,q.gj(q)&255),0,B.I,-1),s,r.c)}if(s==null){q=p.a +return A.bp(p,new A.be(A.K(0,q.gj(q)>>>16&255,q.gj(q)>>>8&255,q.gj(q)&255),0,B.I,-1),r.c)}return A.bp(p,s,r.c)}, +$ica:1} +A.aeG.prototype={} +A.IN.prototype={ +a8(){return new A.QL(null,null,B.m)}} +A.QL.prototype={ +VB(){this.ad(new A.b3d())}, +ghr(){var s=this.a.z +if(s==null){s=this.r +s.toString}return s}, +Fm(){var s,r=this +if(r.a.z==null)r.r=A.bl0(null) +s=r.ghr() +s.iP(0,B.x,!(r.a.c!=null||!1)) +r.ghr().P(0,r.gxs())}, +aX(){this.b9() +this.Fm()}, +b1(a){var s,r=this +r.bh(a) +s=a.z +if(r.a.z!=s){if(s!=null)s.H(0,r.gxs()) +if(r.a.z!=null){s=r.r +if(s!=null){s.ok$=$.aH() +s.k4$=0}r.r=null}r.Fm()}s=r.a.c!=null||!1 +if(s!==(a.c!=null||!1)){s=r.ghr() +s.iP(0,B.x,!(r.a.c!=null||!1)) +if(!(r.a.c!=null||!1))r.ghr().iP(0,B.Q,!1)}}, +m(){var s,r=this +r.ghr().H(0,r.gxs()) +s=r.r +if(s!=null){s.ok$=$.aH() +s.k4$=0}s=r.d +if(s!=null)s.m() +r.aly()}, +A(c7){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=this,c3=null,c4=c2.a,c5=new A.b3a(c4.r,c4.Gu(c7),c2.a.tr(c7)),c6=new A.b3b(c2,c5) +c4=t.PM +s=c6.$1$1(new A.b2O(),c4) +r=c6.$1$1(new A.b2P(),t.p8) +q=t.MH +p=c6.$1$1(new A.b2Q(),q) +o=c6.$1$1(new A.b30(),q) +n=c6.$1$1(new A.b33(),q) +m=c6.$1$1(new A.b34(),q) +l=c6.$1$1(new A.b35(),t.pc) +k=t.tW +j=c6.$1$1(new A.b36(),k) +i=c6.$1$1(new A.b37(),k) +h=c6.$1$1(new A.b38(),k) +g=c6.$1$1(new A.b39(),q) +f=c6.$1$1(new A.b2R(),c4) +e=c6.$1$1(new A.b2S(),t.oI) +d=c6.$1$1(new A.b2T(),t.KX) +c=c5.$1$1(new A.b2U(),t.X3) +b=c5.$1$1(new A.b2V(),t.Oc) +a=c5.$1$1(new A.b2W(),t.Tu) +a0=c5.$1$1(new A.b2X(),t.y) +a1=c5.$1$1(new A.b2Y(),t.pC) +a2=new A.m(c.a,c.b).av(0,4) +a3=c5.$1$1(new A.b2Z(),t.Ya) +c4=j.a +q=j.b +a4=c.UY(new A.aN(c4,h.a,q,h.b)) +if(i!=null){a5=a4.bJ(i) +c4=a5.a +if(isFinite(c4))a4=a4.Uj(c4,c4) +c4=a5.b +if(isFinite(c4))a4=a4.aHq(c4,c4)}a6=a2.b +c4=a2.a +a7=Math.max(0,c4) +a8=l.F(0,new A.aK(a7,a6,a7,a6)).hw(0,B.a8,B.q9) +if(a.a>0){q=c2.e +if(q!=null){k=c2.f +if(k!=null)if(q!==s)if(k.gj(k)!==p.gj(p)){q=c2.f +q=(q.gj(q)>>>24&255)/255===1&&(p.gj(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=c2.d +if(!J.j(q==null?c3:q.e,a)){q=c2.d +if(q!=null)q.m() +q=A.bx(B.A,c3,a,0,c3,1,c3,c2) +q.cF() +k=q.ej$ +k.b=!0 +k.a.push(new A.b3_(c2)) +c2.d=q}p=c2.f +c2.d.sj(0,0) +c2.d.bS(0)}c2.e=s +c2.f=p +s.toString +q=r==null?c3:r.cM(o) +k=d.pM(e) +a9=p==null?B.eA:B.os +b0=c2.a +b1=b0.w +b2=b0.c +b3=b0.d +b4=b0.e +b5=b0.x +b6=b2!=null||!1 +b0=b0.f +b7=d.pM(e) +b8=c2.ghr() +b9=g==null?o:g +a1.toString +c0=c2.a +a9=A.h5(a,!0,c3,A.jg(!1,c3,b6,A.oI(new A.b4(a8,new A.ef(a1,1,1,c0.as,c3),c3),new A.d4(f,c3,c3,c3,c3,b9,c3,c3)),b7,a0,c3,b5,B.E,c3,new A.ajl(new A.b31(c5)),b0,c3,b4,b3,b2,c3,c3,new A.bt(new A.b32(c5),t.U),c3,c3,a3,b8),b1,p,s,c3,n,k,m,q,a9) +switch(b.a){case 0:c1=new A.U(48+c4,48+a6) +break +case 1:c1=B.y +break +default:c1=c3}c4=c0.c!=null||!1 +return new A.bu(A.bL(c3,c3,c3,c3,c3,!0,c3,c3,c3,c3,c4,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3,c3),!0,!1,!1,!1,new A.ahY(c1,new A.eX(a4,a9,c3),c3),c3)}, +$iaP:1} +A.b3d.prototype={ +$0(){}, +$S:0} +A.b3a.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:696} +A.b3b.prototype={ +$1$1(a,b){return this.b.$1$1(new A.b3c(this.a,a,b),b)}, +$1(a){return this.$1$1(a,t.z)}, +$S:702} +A.b3c.prototype={ +$1(a){var s=this.b.$1(a) +return s==null?null:s.L(this.a.ghr().a)}, +$S(){return this.c.h("0?(cy?)")}} +A.b2O.prototype={ +$1(a){return a==null?null:a.gfn(a)}, +$S:230} +A.b2P.prototype={ +$1(a){return a==null?null:a.gir()}, +$S:705} +A.b2Q.prototype={ +$1(a){return a==null?null:a.gcd(a)}, +$S:89} +A.b30.prototype={ +$1(a){return a==null?null:a.gfq()}, +$S:89} +A.b33.prototype={ +$1(a){return a==null?null:a.gbT(a)}, +$S:89} +A.b34.prototype={ +$1(a){return a==null?null:a.gc7()}, +$S:89} +A.b35.prototype={ +$1(a){return a==null?null:a.gdD(a)}, +$S:720} +A.b36.prototype={ +$1(a){return a==null?null:a.glv()}, +$S:143} +A.b37.prototype={ +$1(a){return a==null?null:a.y}, +$S:143} +A.b38.prototype={ +$1(a){return a==null?null:a.glt()}, +$S:143} +A.b39.prototype={ +$1(a){return a==null?null:a.Q}, +$S:89} +A.b2R.prototype={ +$1(a){return a==null?null:a.gjU()}, +$S:230} +A.b2S.prototype={ +$1(a){return a==null?null:a.gf7()}, +$S:723} +A.b2T.prototype={ +$1(a){return a==null?null:a.gcH(a)}, +$S:724} +A.b31.prototype={ +$1(a){return this.a.$1$1(new A.b2M(a),t.Pb)}, +$S:725} +A.b2M.prototype={ +$1(a){var s +if(a==null)s=null +else{s=a.giI() +s=s==null?null:s.L(this.a)}return s}, +$S:729} +A.b32.prototype={ +$1(a){return this.a.$1$1(new A.b2L(a),t.n8)}, +$S:29} +A.b2L.prototype={ +$1(a){var s +if(a==null)s=null +else{s=a.gcG() +s=s==null?null:s.L(this.a)}return s}, +$S:730} +A.b2U.prototype={ +$1(a){return a==null?null:a.gf5()}, +$S:731} +A.b2V.prototype={ +$1(a){return a==null?null:a.glH()}, +$S:734} +A.b2W.prototype={ +$1(a){return a==null?null:a.cx}, +$S:735} +A.b2X.prototype={ +$1(a){return a==null?null:a.cy}, +$S:737} +A.b2Y.prototype={ +$1(a){return a==null?null:a.db}, +$S:743} +A.b2Z.prototype={ +$1(a){return a==null?null:a.ghM()}, +$S:745} +A.b3_.prototype={ +$1(a){if(a===B.a9)this.a.ad(new A.b2N())}, +$S:9} +A.b2N.prototype={ +$0(){}, +$S:0} +A.ajl.prototype={ +L(a){var s=this.a.$1(a) +s.toString +return s}, +gA3(){return"ButtonStyleButton_MouseCursor"}} +A.ahY.prototype={ +b5(a){var s=new A.TC(this.e,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.sWl(this.e)}} +A.TC.prototype={ +sWl(a){if(this.D.k(0,a))return +this.D=a +this.aa()}, +bX(a){var s=this.k3$ +if(s!=null)return Math.max(s.aA(B.ae,a,s.gbW()),this.D.a) +return 0}, +bR(a){var s=this.k3$ +if(s!=null)return Math.max(s.aA(B.aF,a,s.gcs()),this.D.b) +return 0}, +bQ(a){var s=this.k3$ +if(s!=null)return Math.max(s.aA(B.ao,a,s.gc1()),this.D.a) +return 0}, +bV(a){var s=this.k3$ +if(s!=null)return Math.max(s.aA(B.bt,a,s.gcR()),this.D.b) +return 0}, +a0A(a,b){var s,r,q=this.k3$ +if(q!=null){s=b.$2(q,a) +q=s.a +r=this.D +return a.bJ(new A.U(Math.max(q,r.a),Math.max(s.b,r.b)))}return B.y}, +da(a){return this.a0A(a,A.t1())}, +ce(){var s,r,q,p=this +p.id=p.a0A(t.k.a(A.J.prototype.ga9.call(p)),A.vY()) +s=p.k3$ +if(s!=null){s=s.b +s.toString +t.q.a(s) +r=p.gq(p) +q=p.k3$ +s.sc5(0,B.a7.wO(t.EP.a(r.a4(0,q.gq(q)))))}}, +dm(a,b){var s,r +if(this.qk(a,b))return!0 +s=this.k3$ +r=s.gq(s).mr(B.i) +return a.DV(new A.baO(this,r),r,A.aK4(r))}} +A.baO.prototype={ +$2(a,b){return this.a.k3$.dm(a,this.b)}, +$S:17} +A.VO.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.ava.prototype={ +J(){return"ButtonTextTheme."+this.b}} +A.av8.prototype={ +J(){return"ButtonBarLayoutBehavior."+this.b}} +A.YF.prototype={ +gdD(a){var s=this.e +if(s!=null)return s +switch(this.c.a){case 0:case 1:return B.dJ +case 2:return B.a2v}}, +gcH(a){var s=this.f +if(s!=null)return s +switch(this.c.a){case 0:case 1:return B.Nx +case 2:return B.Ny}}, +k(a,b){var s=this +if(b==null)return!1 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.YF&&b.c===s.c&&b.a===s.a&&b.b===s.b&&b.gdD(b).k(0,s.gdD(s))&&b.gcH(b).k(0,s.gcH(s))&&J.j(b.w,s.w)&&J.j(b.x,s.x)&&J.j(b.y,s.y)&&J.j(b.z,s.z)&&J.j(b.Q,s.Q)&&J.j(b.as,s.as)&&J.j(b.at,s.at)&&b.ax==s.ax}, +gu(a){var s=this +return A.X(s.c,s.a,s.b,s.gdD(s),s.gcH(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.aeH.prototype={} +A.YN.prototype={ +A(a){var s,r,q,p,o,n,m,l,k=this,j=null,i=A.B(a).y2 +A.B(a) +s=new A.b3h(a,B.n,j,j,j,1,B.fj,B.Nz) +r=k.y +if(r==null)r=i.f +if(r==null){r=s.f +r.toString}q=k.c +if(q==null)q=i.b +if(q==null)q=s.gaf(s) +p=i.c +if(p==null)p=s.gbT(s) +o=i.d +if(o==null)o=s.gc7() +n=i.e +if(n==null){n=s.e +n.toString}m=k.r +if(m==null)m=i.r +if(m==null)m=s.r +l=k.x +if(l==null)l=i.a +if(l==null){l=s.a +l.toString}r=A.cQ(j,A.h5(B.T,!0,j,new A.bu(A.bL(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),!1,!1,!1,!1,k.Q,j),l,q,n,j,p,m,o,j,B.ez),B.n,j,j,j,j,j,r,j,j) +return new A.bu(A.bL(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j),!0,!1,!1,!1,r,j)}} +A.b3h.prototype={ +gPU(){var s,r=this,q=r.x +if(q===$){s=A.B(r.w) +r.x!==$&&A.aq() +q=r.x=s.ax}return q}, +gaf(a){return this.gPU().cy}, +gbT(a){var s=this.gPU().fy +return s==null?B.o:s}, +gc7(){var s=this.gPU(),r=s.k3 +return r==null?s.b:r}} +A.Bl.prototype={ +gu(a){var s=this +return A.X(s.a,s.gaf(s),s.gbT(s),s.gc7(),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.a_(b)!==A.p(s))return!1 +return b instanceof A.Bl&&b.a==s.a&&J.j(b.gaf(b),s.gaf(s))&&J.j(b.gbT(b),s.gbT(s))&&J.j(b.gc7(),s.gc7())&&b.e==s.e&&J.j(b.f,s.f)&&J.j(b.r,s.r)}, +gaf(a){return this.b}, +gbT(a){return this.c}, +gc7(){return this.d}} +A.aeJ.prototype={} +A.b3z.prototype={ +J(){return"_CheckboxType."+this.b}} +A.J1.prototype={ +a8(){return new A.aeW(new A.aeU($.aH()),$,$,$,$,$,$,$,$,$,null,!1,!1,null,null,B.m)}} +A.aeW.prototype={ +aX(){this.alB() +this.e=this.a.c}, +b1(a){var s,r=this +r.bh(a) +s=a.c +if(s!=r.a.c){r.e=s +r.DY()}}, +m(){this.d.m() +this.alA()}, +gdS(){return this.a.d}, +gy5(){return this.a.x}, +gj(a){return this.a.c}, +ga79(){return new A.bt(new A.b3x(this),t.U)}, +zk(a,b){if(a instanceof A.SF)return A.ce(a,b,t.oI) +if(!b.p(0,B.G))return a +return null}, +A(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,a5,a6,a7,a8=this,a9=null +switch(a8.a.dx.a){case 0:break +case 1:switch(A.B(b0).r.a){case 0:case 1:case 3:case 5:break +case 2:case 4:s=a8.a +r=s.c +q=s.x +return new A.Jn(r,s.d,s.f,s.w,q,a9,a9,!1,s.cx,s.CW,a9)}break}p=A.bqi(b0) +A.B(b0) +o=new A.b3o(A.B(b0),A.B(b0).ax,a9,a9,a9,a9,a9,a9,a9,a9,a9) +n=a8.a.y +m=o.gf5() +switch(n.a){case 0:l=B.e8 +break +case 1:l=B.po +break +default:l=a9}l=l.U(0,new A.m(m.a,m.b).av(0,4)) +k=a8.gfG() +k.F(0,B.G) +j=a8.gfG() +j.E(0,B.G) +a8.a.toString +i=a8.ga79().a.$1(k) +if(i==null){s=p.b +i=s==null?a9:s.L(k)}s=i==null +if(s){r=o.ghD().a.$1(k) +r.toString +h=r}else h=i +a8.a.toString +g=a8.ga79().a.$1(j) +if(g==null){r=p.b +g=r==null?a9:r.L(j)}r=g==null +if(r){q=o.ghD().a.$1(j) +q.toString +f=q}else f=g +q=a8.zk(a8.a.cx,k) +e=q==null?a8.zk(p.x,k):q +if(e==null){q=a8.zk(o.gf7(),k) +q.toString +e=q}q=a8.zk(a8.a.cx,j) +d=q==null?a8.zk(p.x,j):q +if(d==null){q=a8.zk(o.gf7(),j) +q.toString +d=q}c=a8.gfG() +c.F(0,B.K) +a8.a.toString +q=p.d +b=q==null?a9:q.L(c) +a=b +if(a==null){b=o.gcG().a.$1(c) +b.toString +a=b}a0=a8.gfG() +a0.F(0,B.F) +a8.a.toString +b=q==null?a9:q.L(a0) +a1=b +if(a1==null){b=o.gcG().a.$1(a0) +b.toString +a1=b}k.F(0,B.Q) +a8.a.toString +b=q==null?a9:q.L(k) +if(b==null){s=s?a9:A.K(31,i.gj(i)>>>16&255,i.gj(i)>>>8&255,i.gj(i)&255) +a2=s}else a2=b +if(a2==null){s=o.gcG().a.$1(k) +s.toString +a2=s}j.F(0,B.Q) +a8.a.toString +s=q==null?a9:q.L(j) +if(s==null){s=r?a9:A.K(31,g.gj(g)>>>16&255,g.gj(g)>>>8&255,g.gj(g)&255) +a3=s}else a3=s +if(a3==null){s=o.gcG().a.$1(j) +s.toString +a3=s}if(a8.qP$!=null){a1=a8.gfG().p(0,B.G)?a2:a3 +a=a8.gfG().p(0,B.G)?a2:a3}a8.a.toString +a4=a8.gfG() +s=a8.a.w +r=p.c +s=r==null?a9:r.L(a4) +a5=s +if(a5==null){s=o.gth().L(a4) +s.toString +a5=s}a8.a.toString +a6=p.e +if(a6==null)a6=o.gkd() +s=a8.a +r=s.db +q=s.c +s=s.x?q==null:a9 +b=a8.d +a7=a8.mZ$ +a7===$&&A.b() +b.scJ(0,a7) +a7=a8.vh$ +a7===$&&A.b() +b.sX9(a7) +a7=a8.vj$ +a7===$&&A.b() +b.sXb(a7) +a7=a8.vi$ +a7===$&&A.b() +b.sXc(a7) +b.sVM(a3) +b.sXa(a2) +b.stF(a1) +b.sln(a) +b.skd(a6) +b.sAl(a8.qP$) +b.sqV(a8.gfG().p(0,B.K)) +b.sW_(a8.gfG().p(0,B.F)) +b.suL(h) +b.sAS(f) +b.sth(a5) +b.sj(0,a8.a.c) +b.sX0(a8.e) +a8.a.toString +a7=p.w +b.scH(0,a7==null?o.gcH(o):a7) +b.saF8(e) +b.saL1(d) +b=a8.a84(!1,a9,new A.bt(new A.b3y(a8,p),t.bN),b,l) +return new A.bu(A.bL(a9,a9,a9,a9,a9,a9,q===!0,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,r,a9,a9,a9,s,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9,a9),!1,!1,!1,!1,b,a9)}, +$iaP:1} +A.b3x.prototype={ +$1(a){if(a.p(0,B.x))return null +if(a.p(0,B.G))return this.a.a.f +return null}, +$S:29} +A.b3y.prototype={ +$1(a){var s=A.ce(this.a.a.e,a,t.WV) +if(s==null)s=null +return s==null?B.df.L(a):s}, +$S:144} +A.aeU.prototype={ +sth(a){if(J.j(this.db,a))return +this.db=a +this.ag()}, +sj(a,b){if(this.dx==b)return +this.dx=b +this.ag()}, +sX0(a){if(this.dy==a)return +this.dy=a +this.ag()}, +scH(a,b){if(J.j(this.fr,b))return +this.fr=b +this.ag()}, +saF8(a){if(J.j(this.fx,a))return +this.fx=a +this.ag()}, +saL1(a){if(J.j(this.fy,a))return +this.fy=a +this.ag()}, +a3J(a,b){var s=1-Math.abs(b-0.5)*2,r=18-s*2,q=a.a+s,p=a.b+s +return new A.L(q,p,q+r,p+r)}, +a0r(a){var s,r=this.e +if(a>=0.25)r.toString +else{s=this.f +s.toString +r.toString +r=A.W(s,r,a*4) +r.toString}return r}, +PK(a,b,c,d){a.e3(this.fr.lP(b),c) +this.fr.pM(d).aE(a,b)}, +Qk(a,b,c,d){var s,r=$.au().d1(),q=b.a,p=b.b,o=q+2.6999999999999997,n=p+8.1 +if(c<0.5){s=A.mb(B.anZ,B.JG,c*2) +s.toString +r.fh(0,o,n) +r.d_(0,q+s.a,p+s.b)}else{s=A.mb(B.JG,B.aod,(c-0.5)*2) +s.toString +r.fh(0,o,n) +r.d_(0,q+7.2,p+12.6) +r.d_(0,q+s.a,p+s.b)}a.e3(r,d)}, +Ql(a,b,c,d){var s,r=A.mb(B.ao0,B.JF,1-c) +r.toString +s=A.mb(B.JF,B.anR,c) +s.toString +a.j8(b.U(0,r),b.U(0,s),d)}, +aE(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g=this +g.WS(a,b.mr(B.i)) +s=$.au() +r=s.bk() +q=g.db +q.toString +r.saf(0,q) +r.scA(0,B.ai) +r.seu(2) +p=t.EP.a(b.i7(0,2).a4(0,B.pn.i7(0,2))) +q=g.a.a +o=q.gaP(q) +q=o===B.b4||o===B.a9 +n=g.a +m=q?n.gj(n):1-n.gj(n) +if(g.dy===!1||g.dx===!1){l=g.dx===!1?1-m:m +k=g.a3J(p,l) +j=s.bk() +j.saf(0,g.a0r(l)) +s=g.fx +if(l<=0.5){q=g.fy +q.toString +s.toString +g.PK(a,k,j,A.bp(q,s,l))}else{s.toString +g.PK(a,k,j,s) +i=(l-0.5)*2 +if(g.dy==null||g.dx==null)g.Ql(a,p,i,r) +else g.Qk(a,p,i,r)}}else{k=g.a3J(p,1) +j=s.bk() +j.saf(0,g.a0r(1)) +s=g.fx +s.toString +g.PK(a,k,j,s) +if(m<=0.5){i=1-m*2 +s=g.dy +if(s===!0)g.Qk(a,p,i,r) +else g.Ql(a,p,i,r)}else{h=(m-0.5)*2 +s=g.dx +if(s===!0)g.Qk(a,p,h,r) +else g.Ql(a,p,h,r)}}}} +A.b3o.prototype={ +gf7(){return A.bmq(new A.b3s(this))}, +ghD(){return new A.bt(new A.b3q(this),t.h2)}, +gth(){return new A.bt(new A.b3p(this),t.h2)}, +gcG(){return new A.bt(new A.b3r(this),t.h2)}, +gkd(){return 20}, +gno(){return this.y.e}, +gf5(){return this.y.z}, +gcH(a){return B.Nx}} +A.b3s.prototype={ +$1(a){var s,r,q=this +if(a.p(0,B.x)){if(a.p(0,B.G))return B.Ql +s=q.a.z.db +return new A.be(A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255),2,B.I,-1)}if(a.p(0,B.G))return B.Qm +if(a.p(0,B.cR))return new A.be(q.a.z.at,2,B.I,-1) +if(a.p(0,B.Q))return new A.be(q.a.z.db,2,B.I,-1) +if(a.p(0,B.F))return new A.be(q.a.z.db,2,B.I,-1) +if(a.p(0,B.K))return new A.be(q.a.z.db,2,B.I,-1) +s=q.a.z +r=s.dy +return new A.be(r==null?s.db:r,2,B.I,-1)}, +$S:102} +A.b3q.prototype={ +$1(a){var s +if(a.p(0,B.x)){if(a.p(0,B.G)){s=this.a.z.db +return A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return B.E}if(a.p(0,B.G)){if(a.p(0,B.cR))return this.a.z.at +return this.a.z.b}return B.E}, +$S:6} +A.b3p.prototype={ +$1(a){if(a.p(0,B.x)){if(a.p(0,B.G))return this.a.z.cy +return B.E}if(a.p(0,B.G)){if(a.p(0,B.cR))return this.a.z.ax +return this.a.z.c}return B.E}, +$S:6} +A.b3r.prototype={ +$1(a){var s,r=this +if(a.p(0,B.cR)){if(a.p(0,B.Q)){s=r.a.z.at.a +return A.K(31,s>>>16&255,s>>>8&255,s&255)}if(a.p(0,B.F)){s=r.a.z.at.a +return A.K(20,s>>>16&255,s>>>8&255,s&255)}if(a.p(0,B.K)){s=r.a.z.at.a +return A.K(31,s>>>16&255,s>>>8&255,s&255)}}if(a.p(0,B.G)){if(a.p(0,B.Q)){s=r.a.z.db +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=r.a.z.b +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=r.a.z.b +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return B.E}if(a.p(0,B.Q)){s=r.a.z.b +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=r.a.z.db +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=r.a.z.db +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return B.E}, +$S:6} +A.VQ.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.VR.prototype={ +aX(){var s,r=this,q=null +r.b9() +s=A.bx(B.A,q,B.T,0,q,1,r.a.c===!1?0:1,r) +r.ks$=s +r.mZ$=A.c5(B.bB,s,B.d_) +s=A.bx(B.A,q,B.aX,0,q,1,q,r) +r.p0$=s +r.vh$=A.c5(B.a6,s,q) +s=A.bx(B.A,q,B.ek,0,q,1,r.pW$||r.pV$?1:0,r) +r.ty$=s +r.vi$=A.c5(B.a6,s,q) +s=A.bx(B.A,q,B.ek,0,q,1,r.pW$||r.pV$?1:0,r) +r.tz$=s +r.vj$=A.c5(B.a6,s,q)}, +m(){var s=this,r=s.ks$ +r===$&&A.b() +r.m() +r=s.p0$ +r===$&&A.b() +r.m() +r=s.ty$ +r===$&&A.b() +r.m() +r=s.tz$ +r===$&&A.b() +r.m() +s.alz()}} +A.b3A.prototype={ +J(){return"_CheckboxType."+this.b}} +A.J2.prototype={ +avv(){var s,r=this +switch(r.c){case!1:r.d.$1(!0) +break +case!0:s=r.d +s.toString +s.$1(r.id&&null) +break +case null:case void 0:r.d.$1(!1) +break}}, +A(a){var s,r,q,p,o,n,m,l,k=this,j=null +switch(0){case 0:s=new A.J1(k.c,k.d,j,k.f,j,j,k.id,B.kW,j,j,j,!1,j,j,!1,j,B.aBu,j) +break}switch(k.fy.a){case 0:r=j +q=s +break +case 1:case 2:r=s +q=j +break +default:r=j +q=r}p=A.B(a) +o=A.bqi(a) +n=k.f +if(n==null){n=o.b +n=n==null?j:n.L(A.aW(t.ui)) +m=n}else m=n +if(m==null)m=p.ax.f +n=k.d!=null +l=n?k.gavu():j +return new A.uh(A.bI(!1,j,k.fr,j,n,j,j,!1,j,q,j,j,l,!1,m,j,j,j,k.db,j,k.cy,r,j),j)}} +A.Bq.prototype={ +gu(a){var s=this +return A.X(s.a,s.ghD(),s.gth(),s.gcG(),s.gkd(),s.gno(),s.gf5(),s.gcH(s),s.gf7(),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.a_(b)!==A.p(s))return!1 +return b instanceof A.Bq&&b.ghD()==s.ghD()&&b.gth()==s.gth()&&b.gcG()==s.gcG()&&b.gkd()==s.gkd()&&b.gno()==s.gno()&&J.j(b.gf5(),s.gf5())&&J.j(b.gcH(b),s.gcH(s))&&J.j(b.gf7(),s.gf7())}, +ghD(){return this.b}, +gth(){return this.c}, +gcG(){return this.d}, +gkd(){return this.e}, +gno(){return this.f}, +gf5(){return this.r}, +gcH(a){return this.w}, +gf7(){return this.x}} +A.aeX.prototype={} +A.Bs.prototype={ +A(a){var s=null +return A.btA(!1,s,B.f6,this.as,s,B.n,s,s,s,s,s,s,s,s,s,!0,this.d,s,this.e,s,s,s,s,s,!1,s,s,s,s,s,s,s,!1,s,s)}} +A.Nj.prototype={ +a8(){return new A.Tk(null,null,A.aW(t.ui),B.m)}} +A.Tk.prototype={ +gqG(){var s=this.a +if(s.ay)if(s.R8)s=s.Q!=null +else s=!1 +else s=!1 +return s}, +aX(){var s,r=this,q=null +r.b9() +if(!r.a.ay)r.uM(B.x) +else r.rm(B.x) +if(r.a.ax)r.uM(B.G) +else r.rm(B.G) +s=A.bx(B.A,q,B.a23,0,q,1,r.a.ax?1:0,r) +r.d=s +r.Q=A.c5(B.a6,s,q) +s=r.a +r.e=A.bx(B.A,q,B.d0,0,q,1,s.d!=null||s.ax?1:0,r) +r.a.toString +r.f=A.bx(B.A,q,B.d0,0,q,1,0,r) +r.r=A.bx(B.A,q,B.fi,0,q,1,r.a.ay?1:0,r) +r.w=A.c5(new A.dZ(0.23076923076923073,1,B.a6),r.d,new A.dZ(0.7435897435897436,1,B.a6)) +r.y=A.c5(B.a6,r.f,q) +r.x=A.c5(B.a6,r.e,new A.dZ(0.4871794871794872,1,B.a6)) +r.z=A.c5(B.a6,r.r,q)}, +m(){var s=this,r=s.d +r===$&&A.b() +r.m() +r=s.e +r===$&&A.b() +r.m() +r=s.f +r===$&&A.b() +r.m() +r=s.r +r===$&&A.b() +r.m() +s.am_()}, +ap0(a){var s=this +if(!s.gqG())return +s.uM(B.Q) +s.ad(new A.ba6(s))}, +aoZ(){var s=this +if(!s.gqG())return +s.rm(B.Q) +s.ad(new A.ba5(s))}, +aoX(){var s,r,q=this +if(!q.gqG())return +q.rm(B.Q) +q.ad(new A.ba7(q)) +s=q.a +r=s.Q +if(r!=null)r.$1(!s.ax) +q.a.toString}, +asq(a,b,c){var s,r,q=this.qQ$,p=t.oI,o=A.ce(this.a.cy,q,p) +if(o==null)o=A.ce(b.at,q,p) +p=t.KX +s=A.ce(this.a.db,q,p) +if(s==null)s=A.ce(b.ax,q,p) +r=s==null?A.ce(c.ax,q,p):s +if(r==null)r=B.it +if(o!=null)return r.pM(o) +return!r.a.k(0,B.u)?r:r.pM(c.gf7())}, +Xp(a,b,c,d,e){var s=this.qQ$,r=new A.ahT(b,a,e,d).L(s) +if(r==null)s=c==null?null:c.L(s) +else s=r +return s}, +aP8(a,b,c){return this.Xp(null,a,b,c,null)}, +aP7(a,b,c){return this.Xp(a,b,c,null,null)}, +aP9(a,b,c){return this.Xp(null,a,b,null,c)}, +arS(a,b,c){var s,r,q,p,o,n=this +n.a.toString +s=b.a +r=n.aP8(s,c.gaf(c),b.d) +q=n.a +q=q.fy +if(q==null)q=b.b +p=n.aP7(q,s,c.gaf(c)) +q=n.a +q=q.CW +if(q==null)q=b.e +o=n.aP9(s,c.gaf(c),q) +q=n.r +q===$&&A.b() +q=new A.dG(r,p).a5(0,q.gj(q)) +s=n.Q +s===$&&A.b() +return new A.dG(q,o).a5(0,s.gj(s))}, +b1(a){var s=this +s.bh(a) +if(a.ay!==s.a.ay)s.ad(new A.ba9(s)) +if(!J.j(a.d,s.a.d)||a.ax!==s.a.ax)s.ad(new A.baa(s)) +if(a.ax!==s.a.ax)s.ad(new A.bab(s)) +s.a.toString}, +aEU(a,b,c){if(!b||c==null)return a +return A.b_e(a,null,c,null,null)}, +anX(a,b,c,d){this.a.toString +return null}, +A(d3){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=this,d1=null,d2=A.d9(d3,B.bz) +d2=d2==null?d1:d2.gdU() +d2=A.C8(B.bW,B.dL,A.V((d2==null?B.aw:d2).a-1,0,1)) +d2.toString +s=A.B(d3) +r=A.bql(d3) +q=r.CW +if(q==null)q=s.ax.a +p=d0.a +o=p.c +if(o==null)o=new A.b3B(d3,p.ay,d1,d1,d1,d1,d1,d1,d1,d1,d1,!0,d1,d1,d1,d1,B.NC,d1,d1,d1,0,d1,d1) +n=A.eJ(d3) +m=d0.asq(s,r,o) +d0.a.toString +p=r.cx +l=p==null?o.gfn(o):p +if(l==null)l=0 +d0.a.toString +p=r.cy +k=p==null?o.gG8():p +if(k==null)k=0 +d0.a.toString +j=r.r +if(j==null)j=o.gbT(o) +d0.a.toString +i=r.w +if(i==null)i=o.gc7() +d0.a.toString +h=r.x +if(h==null)h=o.x +g=r.z +if(g==null)g=o.gzP() +p=d0.a.p2 +f=p==null?r.y:p +if(f==null){p=o.y +p.toString +f=p}e=r.as +if(e==null)e=o.gdD(o) +d=r.ay +if(d==null){p=o.giF() +p.toString +d=p}d0.a.toString +p=r.Q +c=p==null?o.gAZ():p +d0.a.toString +b=r.db +if(b==null)b=o.gh2() +a=d.cI(d0.a.f) +a0=a.cM(A.ce(a.b,d0.qQ$,t.MH)) +a1=d0.a.d +if(a1!=null){a1.toString +a1=A.xB(a1,b,d1)}d2=d0.gqG()&&d0.as?k:l +p=d0.a +a2=p.ax?h:j +p=p.dx +a3=d0.NL(B.K) +a4=d0.a +a5=a4.dy +a4=a4.ay +a6=d0.gqG()?d0.gaoW():d1 +a7=d0.gqG()?d0.gap_():d1 +a8=d0.gqG()?d0.gaoY():d1 +a9=d0.gqG()?d0.NL(B.F):d1 +b0=d0.d +b0===$&&A.b() +b1=d0.r +b1===$&&A.b() +b1=A.a([b0,b1],t.Eo) +b0=d0.a +b2=b0.cx +b3=b0.Q +b0=A.fI(b0.e,d1,1,B.P1,!1,a0,B.b2,d1,B.at) +b4=A.bpR(a1,B.d0,A.by7(),d1,B.a6,B.Y,A.by8()) +b5=A.bpR(d0.anX(d3,s,r,o),B.d0,A.by7(),d1,B.a6,B.Y,A.by8()) +b6=e.L(n) +d0.a.toString +b7=s.z +b8=c.L(n) +b9=d0.a.d +c0=d0.gqG() +c1=d0.a +c2=c1.ax +c3=d0.w +c3===$&&A.b() +c4=d0.z +c4===$&&A.b() +c5=d0.x +c5===$&&A.b() +c6=d0.y +c6===$&&A.b() +c7=A.h5(B.fi,!0,d1,A.jg(!1,d1,a4,A.hg(new A.vA(b1),new A.ba8(d0,m,s,r,o),d0.aEU(new A.af1(new A.af0(b4,b0,b5,q,b6,b7,b8,b9!=null,f,g,c0),c2,c1.ay,c3,c5,c6,c4,c1.p4,d1),b3!=null,b2)),m,!0,d1,a5,d1,d1,d1,a3,d1,a9,d1,a6,a8,a7,d1,d1,d1,d1,d1),p,d1,d2,d1,a2,m,i,d1,B.cv) +d0.a.toString +c8=new A.m(b7.a,b7.b).av(0,4) +d2=d0.a +d2.toString +switch(s.e.a){case 0:c9=new A.aN(48+c8.a,1/0,48+c8.b,1/0) +break +case 1:c9=B.f3 +break +default:c9=d1}p=A.eH(c7,1,1) +a2=d2.R8 +a3=a2?d0.gqG():d1 +return new A.bu(A.bL(d1,d1,d1,d1,d1,a2,d1,d1,d1,d1,a3,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d1,d2.ax,d1,d1,d1,d1,d1,d1,d1,d1),!0,!1,!1,!1,new A.af_(c9,p,d1),d1)}, +$iaP:1} +A.ba6.prototype={ +$0(){this.a.as=!0}, +$S:0} +A.ba5.prototype={ +$0(){this.a.as=!1}, +$S:0} +A.ba7.prototype={ +$0(){this.a.as=!1}, +$S:0} +A.ba9.prototype={ +$0(){var s,r=this.a +if(!r.a.ay)r.uM(B.x) +else r.rm(B.x) +s=r.a.ay +r=r.r +if(s){r===$&&A.b() +r.bS(0)}else{r===$&&A.b() +r.d3(0)}}, +$S:0} +A.baa.prototype={ +$0(){var s=this.a,r=s.a +r=r.d!=null||r.ax +s=s.e +if(r){s===$&&A.b() +s.bS(0)}else{s===$&&A.b() +s.d3(0)}}, +$S:0} +A.bab.prototype={ +$0(){var s,r=this.a +if(r.a.ax)r.uM(B.G) +else r.rm(B.G) +s=r.a.ax +r=r.d +if(s){r===$&&A.b() +r.bS(0)}else{r===$&&A.b() +r.d3(0)}}, +$S:0} +A.ba8.prototype={ +$2(a,b){var s=this +return A.bsd(b,new A.hT(s.a.arS(s.c,s.d,s.e),null,null,null,s.b))}, +$S:770} +A.ahT.prototype={ +L(a){var s=this,r=s.a +if(r!=null)return r.L(a) +if(a.p(0,B.G)&&a.p(0,B.x))return s.c +if(a.p(0,B.x))return s.d +if(a.p(0,B.G))return s.c +return s.b}} +A.af_.prototype={ +b5(a){var s=new A.alh(this.e,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.sTA(this.e)}} +A.alh.prototype={ +dm(a,b){var s,r=this +if(!r.gq(r).p(0,b))return!1 +s=new A.m(b.a,r.gq(r).b/2) +return a.DV(new A.bal(r,s),b,A.aK4(s))}} +A.bal.prototype={ +$2(a,b){return this.a.k3$.dm(a,this.b)}, +$S:17} +A.af1.prototype={ +gOw(){return B.aa6}, +U1(a){switch(a.a){case 0:return this.d.b +case 1:return this.d.a +case 2:return this.d.c}}, +bb(a,b){var s,r=this +b.saPA(r.d) +s=a.aj(t.I) +s.toString +b.scz(s.w) +b.B=r.e +b.W=r.f +b.ao=r.r +b.aN=r.w +b.aZ=r.x +b.bt=r.y +b.Y=r.z}, +b5(a){var s,r,q=this,p=a.aj(t.I) +p.toString +s=t.o0 +s=new A.Tt(q.e,q.f,q.r,q.w,q.x,q.y,q.z,q.d,p.w,A.ay(s),A.ay(s),A.I(t.Wb,t.x),A.ay(t.T)) +s.b4() +p=s.geG() +s.ao.a.P(0,p) +r=s.gtQ() +s.aN.a.P(0,r) +s.aZ.a.P(0,r) +s.bt.a.P(0,p) +return s}} +A.pz.prototype={ +J(){return"_ChipSlot."+this.b}} +A.af0.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.af0&&b.a.rP(0,s.a)&&b.b.rP(0,s.b)&&b.c.rP(0,s.c)&&b.d===s.d&&b.e.k(0,s.e)&&b.r.k(0,s.r)&&b.w===s.w&&J.j(b.y,s.y)&&b.z===s.z}, +gu(a){var s=this +return A.X(s.a,s.b,s.c,s.d,s.e,s.r,s.w,!0,s.y,s.z,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}} +A.Tt.prototype={ +saPA(a){if(this.b3.k(0,a))return +this.b3=a +this.aa()}, +scz(a){if(this.bd===a)return +this.bd=a +this.aa()}, +ghR(a){var s,r=A.a([],t.Ik),q=this.d9$ +if(q.i(0,B.bf)!=null){s=q.i(0,B.bf) +s.toString +r.push(s)}if(q.i(0,B.bQ)!=null){s=q.i(0,B.bQ) +s.toString +r.push(s)}if(q.i(0,B.cA)!=null){q=q.i(0,B.cA) +q.toString +r.push(q)}return r}, +goB(){return!1}, +bX(a){var s,r=this.b3.e.gdI(),q=this.b3.r.gdI(),p=this.d9$,o=p.i(0,B.bf) +o=o==null?0:o.aA(B.ae,a,o.gbW()) +s=p.i(0,B.bQ) +s=s==null?0:s.aA(B.ae,a,s.gbW()) +p=p.i(0,B.cA) +p=p==null?0:p.aA(B.ae,a,p.gbW()) +return r+q+o+s+p}, +bQ(a){var s,r=this.b3.e.gdI(),q=this.b3.r.gdI(),p=this.d9$,o=p.i(0,B.bf) +o=o==null?0:o.aA(B.ao,a,o.gc1()) +s=p.i(0,B.bQ) +s=s==null?0:s.aA(B.ao,a,s.gc1()) +p=p.i(0,B.cA) +p=p==null?0:p.aA(B.ao,a,p.gc1()) +return r+q+o+s+p}, +bR(a){var s,r,q,p=this.b3.e,o=p.gcC(p) +p=p.gcD(p) +s=this.b3.r +r=s.gcC(s) +s=s.gcD(s) +q=this.d9$.i(0,B.bQ) +q=q==null?0:q.aA(B.aF,a,q.gcs()) +return Math.max(32,o+p+(r+s)+q)}, +bV(a){return this.bR(a)}, +hS(a){return this.d9$.i(0,B.bQ).qf(a)}, +awn(a,b,c,d,e){var s,r,q,p,o,n=this,m=a.b +if(isFinite(m)){s=Math.max(0,m-b-n.b3.r.gdI()-n.b3.e.gdI()) +m=n.d9$.i(0,B.bQ) +m.toString +r=e.$2(m,new A.aN(0,s,d.b,c.b)) +m=r.a +q=n.b3.r.gdI() +p=r.b +o=n.b3.r +return new A.U(m+q,p+(o.gcC(o)+o.gcD(o)))}m=n.d9$.i(0,B.bQ) +m.toString +r=e.$2(m,new A.aN(0,c.a,d.b,c.b)) +m=r.a +q=n.b3.r.gdI() +p=r.b +o=n.b3.r +return new A.U(m+q,p+(o.gcC(o)+o.gcD(o)))}, +awk(a,b,c){var s,r,q,p=Math.max(0,b),o=A.jE(p,p),n=this.d9$.i(0,B.bf) +n.toString +s=c.$2(n,o) +n=this.b3 +r=this.aN +q=n.w?0+r.gj(r)*s.a:0+r.gj(r)*b +return new A.U(q,0+s.b)}, +awm(a,b,c){var s,r=Math.max(0,b),q=A.jE(r,r),p=this.d9$.i(0,B.cA) +p.toString +s=c.$2(p,q) +p=this.aZ +if(p.gaP(p)===B.R)return new A.U(0,b) +p=this.aZ +return new A.U(0+p.gj(p)*s.a,0+s.b)}, +dm(a,b){var s,r,q,p,o,n,m,l=this +if(!l.gq(l).p(0,b))return!1 +s=l.d9$ +if(s.i(0,B.cA)!=null){r=l.b3 +q=l.gq(l) +p=s.i(0,B.cA) +o=A.bRU(q,p.gq(p),r.r,r.e,b,l.bd)}else o=!1 +if(o){r=s.i(0,B.cA) +if(r==null)r=s.i(0,B.bQ) +n=r==null?s.i(0,B.bf):r}else{r=s.i(0,B.bQ) +n=r==null?s.i(0,B.bf):r}if(n!=null){m=n.gq(n).mr(B.i) +return a.DV(new A.bao(m,n),b,A.aK4(m))}return!1}, +da(a){return this.a0B(a,A.t1()).a}, +a0B(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=new A.aN(0,a.b,0,a.d),f=h.b3.f,e=new A.m(0,new A.m(f.a,f.b).av(0,4).b/2) +f=h.d9$.i(0,B.bQ) +f.toString +s=b.$2(f,g) +f=h.b3.e +r=f.gcC(f) +f=f.gcD(f) +q=h.b3.r +p=q.gcC(q) +q=q.gcD(q) +o=s.b +n=h.b3.r +m=Math.max(32-(r+f)+(p+q),o+(n.gcC(n)+n.gcD(n))) +l=h.awk(g,m,b) +k=h.awm(g,m,b) +n=l.a +o=k.a +j=h.awn(g,n+o,new A.U(s.a,m),s,b) +i=new A.U(n+j.a+o,m).U(0,e) +o=h.b3.e.gdI() +n=h.b3.e +return new A.b3C(a.bJ(new A.U(i.a+o,i.b+(n.gcC(n)+n.gcD(n)))),i,m,l,j,k,e)}, +ce(){var s,r,q,p,o,n,m,l,k,j=this,i=t.k,h=j.a0B(i.a(A.J.prototype.ga9.call(j)),A.vY()),g=h.b,f=g.a,e=new A.bap(j,h) +switch(j.bd.a){case 0:s=h.d +r=e.$2(s,f) +q=f-s.a +s=h.e +p=e.$2(s,q) +o=j.aZ +if(o.gaP(o)!==B.R){o=h.f +n=j.b3.e +j.a6=new A.L(0,0,0+(o.a+n.c),0+(g.b+(n.gcC(n)+n.gcD(n)))) +m=e.$2(o,q-s.a)}else{j.a6=B.W +m=B.i}s=j.b3 +if(s.z){o=j.a6 +o===$&&A.b() +o=o.c-o.a +s=s.e.gdI() +n=j.b3.e +j.an=new A.L(o,0,o+(f-o+s),0+(g.b+(n.gcC(n)+n.gcD(n))))}else j.an=B.W +break +case 1:s=h.d +o=j.d9$ +n=o.i(0,B.bf) +n=n==null?B.y:n.gq(n) +l=s.a +r=e.$2(s,0-n.a+l) +q=0+l +s=h.e +p=e.$2(s,q) +q+=s.a +if(j.b3.z){s=j.aZ +s=s.gaP(s) +n=j.b3.e +s=s!==B.R?q+n.a:f+n.gdI() +n=j.b3.e +j.an=new A.L(0,0,0+s,0+(g.b+(n.gcC(n)+n.gcD(n))))}else j.an=B.W +s=o.i(0,B.cA) +s=s==null?B.y:s.gq(s) +o=h.f +n=o.a +q-=s.a-n +s=j.aZ +if(s.gaP(s)!==B.R){m=e.$2(o,q) +s=j.b3.e +o=q+s.a +j.a6=new A.L(o,0,o+(n+s.c),0+(g.b+(s.gcC(s)+s.gcD(s))))}else{j.a6=B.W +m=B.i}break +default:r=B.i +p=B.i +m=B.i}s=j.b3.r +o=s.gcC(s) +s=s.gcD(s) +n=j.d9$ +l=n.i(0,B.bQ) +l=l==null?B.y:l.gq(l) +p=p.U(0,new A.m(0,(h.e.b-(o+s)-l.b)/2)) +l=n.i(0,B.bf).b +l.toString +s=t.q +s.a(l) +o=j.b3.e +l.sc5(0,new A.m(o.a,o.b).U(0,r)) +o=n.i(0,B.bQ).b +o.toString +s.a(o) +l=j.b3.e +l=new A.m(l.a,l.b).U(0,p) +k=j.b3.r +o.sc5(0,l.U(0,new A.m(k.a,k.b))) +n=n.i(0,B.cA).b +n.toString +s.a(n) +s=j.b3.e +n.sc5(0,new A.m(s.a,s.b).U(0,m)) +s=j.b3.e.gdI() +n=j.b3.e +k=n.gcC(n) +n=n.gcD(n) +j.id=i.a(A.J.prototype.ga9.call(j)).bJ(new A.U(f+s,g.b+(k+n)))}, +gQh(){var s,r=this.bt +if(r.gaP(r)===B.a9)return B.l +switch(this.b3.d.a){case 1:s=new A.dG(A.K(97,255,255,255),B.l) +break +case 0:s=new A.dG(A.K(97,0,0,0),B.o) +break +default:s=null}r=this.bt +r=s.a5(0,r.gj(r)) +r.toString +return r}, +ayP(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=h.b3,f=g.y +if(!(f!=null))switch(g.d.a){case 1:f=g.w?B.l:A.K(222,0,0,0) +break +case 0:f=g.w?B.o:A.K(222,255,255,255) +break +default:f=null}g=h.ao.a +if(g.gaP(g)===B.b5){g=h.ao +f=new A.dG(B.E,f).a5(0,g.gj(g))}g=$.au() +s=g.bk() +f.toString +s.saf(0,f) +s.scA(0,B.ai) +r=h.d9$ +if(r.i(0,B.bf)!=null){r=r.i(0,B.bf) +r=r.gq(r).b/24}else r=1 +s.seu(2*r) +r=h.ao.a +if(r.gaP(r)===B.b5)q=1 +else{r=h.ao +q=r.gj(r)}if(q===0)return +p=g.d1() +g=c*0.15 +r=c*0.45 +o=c*0.4 +n=c*0.7 +m=new A.m(o,n) +l=b.a +k=b.b +j=l+g +i=k+r +if(q<0.5){g=A.mb(new A.m(g,r),m,q*2) +g.toString +p.fh(0,j,i) +p.d_(0,l+g.a,k+g.b)}else{g=A.mb(m,new A.m(c*0.85,c*0.25),(q-0.5)*2) +g.toString +p.fh(0,j,i) +p.d_(0,l+o,k+n) +p.d_(0,l+g.a,k+g.b)}a.e3(p,s)}, +ayM(a,b){var s,r,q,p,o,n,m=this,l=new A.bam(m) +if(!m.b3.w){s=m.aN +s=s.gaP(s)===B.R}else s=!1 +if(s){m.eM.sb2(0,null) +return}r=m.gQh() +q=r.gj(r)>>>24&255 +s=m.cx +s===$&&A.b() +p=m.eM +if(s)p.sb2(0,a.Nf(b,q,l,p.a)) +else{p.sb2(0,null) +s=q!==255 +if(s){p=a.gcL(a) +o=A.bmu(m.d9$.i(0,B.bf)).dq(b).e6(20) +n=$.au().bk() +n.saf(0,r) +p.kb(o,n)}l.$2(a,b) +if(s)a.gcL(a).dg(0)}}, +a3L(a,b,c,d){var s,r,q,p,o=this +if(c==null){o.eA.sb2(0,null) +return}s=o.gQh() +s=s.gj(s) +r=o.bt +if(r.gaP(r)!==B.a9){r=o.cx +r===$&&A.b() +q=o.eA +if(r)q.sb2(0,a.Nf(b,s>>>24&255,new A.ban(c),q.a)) +else{q.sb2(0,null) +p=A.bmu(c).dq(b) +s=a.gcL(a) +r=p.e6(20) +q=$.au().bk() +q.saf(0,o.gQh()) +s.kb(r,q) +q=c.b +q.toString +a.em(c,t.q.a(q).a.U(0,b)) +a.gcL(a).dg(0)}}else{s=c.b +s.toString +a.em(c,t.q.a(s).a.U(0,b))}}, +m(){this.eA.sb2(0,null) +this.eM.sb2(0,null) +this.iU()}, +aE(a,b){var s,r=this +r.ayM(a,b) +s=r.aZ +if(s.gaP(s)!==B.R)r.a3L(a,b,r.d9$.i(0,B.cA),r.W) +r.a3L(a,b,r.d9$.i(0,B.bQ),r.W)}, +lo(a){var s=this.a6 +s===$&&A.b() +if(!s.p(0,a)){s=this.an +s===$&&A.b() +s=s.p(0,a)}else s=!0 +return s}} +A.bao.prototype={ +$2(a,b){return this.b.dm(a,this.a)}, +$S:17} +A.bap.prototype={ +$2(a,b){var s +switch(this.a.bd.a){case 0:s=this.b +return new A.m(b-a.a,(s.c-a.b+s.r.b)/2) +case 1:s=this.b +return new A.m(b,(s.c-a.b+s.r.b)/2)}}, +$S:774} +A.bam.prototype={ +$2(a,b){var s,r,q,p,o,n,m=this.a,l=m.d9$,k=l.i(0,B.bf) +k.toString +s=l.i(0,B.bf).b +s.toString +r=t.q +a.em(k,r.a(s).a.U(0,b)) +k=m.ao +k=k.gaP(k) +if(k!==B.R){if(m.b3.w){q=A.bmu(l.i(0,B.bf)).dq(b) +p=$.au().bk() +k=$.bC8() +s=m.ao +s=k.a5(0,s.gj(s)) +s.toString +p.saf(0,s) +p.suR(B.Qa) +o=m.Y.lP(q) +a.gcL(a).e3(o,p)}k=l.i(0,B.bf) +k=k.gq(k) +s=l.i(0,B.bf).b +s.toString +s=r.a(s).a +r=l.i(0,B.bf) +r=r.gq(r) +l=l.i(0,B.bf) +n=s.U(0,new A.m(r.b*0.125,l.gq(l).b*0.125)) +m.ayP(a.gcL(a),b.U(0,n),k.b*0.75)}}, +$S:16} +A.ban.prototype={ +$2(a,b){var s=this.a,r=s.b +r.toString +a.em(s,t.q.a(r).a.U(0,b))}, +$S:16} +A.b3C.prototype={} +A.b3B.prototype={ +gCH(){var s,r=this,q=r.fr +if(q===$){s=A.B(r.dx) +r.fr!==$&&A.aq() +q=r.fr=s.ax}return q}, +giF(){var s,r=this,q=r.fx +if(q===$){s=A.B(r.dx) +r.fx!==$&&A.aq() +q=r.fx=s.p3}return q.as}, +gaf(a){return null}, +gbT(a){return B.E}, +gc7(){var s=this.gCH(),r=s.k3 +return r==null?s.b:r}, +gzP(){return null}, +gEt(){return null}, +gf7(){var s,r +if(this.dy){s=this.gCH() +r=s.fr +s=new A.be(r==null?s.cx:r,1,B.I,-1)}else{s=this.gCH().db +s=new A.be(A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255),1,B.I,-1)}return s}, +gh2(){var s=null +return new A.d4(18,s,s,s,s,this.dy?this.gCH().b:this.gCH().db,s,s)}, +gdD(a){return B.bh}, +gAZ(){var s=A.d9(this.dx,B.bz) +s=s==null?null:s.gdU() +s=A.C8(B.bW,B.dL,A.V((s==null?B.aw:s).a-1,0,1)) +s.toString +return s}} +A.apX.prototype={} +A.Wi.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.aq0.prototype={ +aw(a){var s,r,q +this.eS(a) +for(s=this.ghR(this),r=s.length,q=0;q>>16&255,s.gj(s)>>>8&255,s.gj(s)&255),1,B.I,-1)}else s=B.mi +return s}, +gh2(){var s=null +return new A.d4(18,s,s,s,s,this.dy?s:this.goI().db,s,s)}, +gdD(a){return B.bh}, +gAZ(){var s=A.d9(this.dx,B.bz) +s=s==null?null:s.gdU() +s=A.C8(B.bW,B.dL,A.V((s==null?B.aw:s).a-1,0,1)) +s.toString +return s}} +A.b3F.prototype={ +$1(a){var s,r +if(a.p(0,B.G)&&a.p(0,B.x)){s=this.a +if(s.fx===B.eU){s=s.goI().db +s=A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}else{s=s.goI().db +s=A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return s}if(a.p(0,B.x)){s=this.a +if(s.fx===B.eU)s=null +else{s=s.goI().db +s=A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return s}if(a.p(0,B.G)){s=this.a +if(s.fx===B.eU){s=s.goI() +r=s.w +s=r==null?s.f:r}else{s=s.goI() +r=s.w +s=r==null?s.f:r}return s}return null}, +$S:29} +A.wz.prototype={ +a8X(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){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=b4==null?a9.a:b4,b1=d3==null?a9.b:d3,b2=c3==null?a9.c:c3 +if(d4==null){s=a9.d +if(s==null)s=a9.b}else s=d4 +if(c4==null){r=a9.e +if(r==null)r=a9.c}else r=c4 +q=d6==null?a9.f:d6 +p=c5==null?a9.r:c5 +if(d7==null){o=a9.w +if(o==null)o=a9.f}else o=d7 +if(c6==null){n=a9.x +if(n==null)n=a9.r}else n=c6 +if(e2==null){m=a9.y +if(m==null)m=a9.f}else m=e2 +if(c9==null){l=a9.z +if(l==null)l=a9.r}else l=c9 +if(e3==null){k=a9.Q +if(k==null){k=a9.y +if(k==null)k=a9.f}}else k=e3 +if(d0==null){j=a9.as +if(j==null){j=a9.z +if(j==null)j=a9.r}}else j=d0 +i=b5==null?a9.at:b5 +h=c0==null?a9.ax:c0 +if(b6==null){g=a9.ay +if(g==null)g=a9.at}else g=b6 +if(c1==null){f=a9.ch +if(f==null)f=a9.ax}else f=c1 +e=b3==null?a9.CW:b3 +d=b9==null?a9.cx:b9 +c=d9==null?a9.cy:d9 +b=c7==null?a9.db:c7 +if(e1==null){a=a9.dx +if(a==null)a=a9.cy}else a=e1 +if(c8==null){a0=a9.dy +if(a0==null)a0=a9.db}else a0=c8 +if(d1==null){a1=a9.fr +if(a1==null)a1=a9.cx}else a1=d1 +if(d2==null){a2=a9.fx +if(a2==null)a2=a9.cx}else a2=d2 +if(d8==null){a3=a9.fy +if(a3==null)a3=B.o}else a3=d8 +if(d5==null){a4=a9.go +if(a4==null)a4=B.o}else a4=d5 +if(b8==null){a5=a9.id +if(a5==null)a5=a9.db}else a5=b8 +if(c2==null){a6=a9.k1 +if(a6==null)a6=a9.cy}else a6=c2 +if(b7==null){a7=a9.k2 +if(a7==null)a7=a9.c}else a7=b7 +if(e0==null){a8=a9.k3 +if(a8==null)a8=a9.b}else a8=e0 +return A.Jf(e,b0,i,g,a7,a5,d,h,f,a6,b2,r,p,n,b,a0,l,j,a1,a2,b1,s,a4,q,o,a3,c,a8,a,m,k)}, +aH3(a){return this.a8X(null,a,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)}, +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.a_(a0)!==A.p(b))return!1 +if(a0 instanceof A.wz)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)o=j?o:k +else o=e +k=b.Q +if(k==null)n=g?n:h +else n=k +if(o.k(0,n)){o=a0.as +if(o==null)o=f?m:i +n=b.as +if(n==null)n=c?l:d +if(o.k(0,n)){o=a0.at +n=b.at +if(o.k(0,n)){m=a0.ax +l=b.ax +if(m.k(0,l)){k=a0.ay +o=k==null?o:k +k=b.ay +if(o.k(0,k==null?n:k)){o=a0.ch +if(o==null)o=m +n=b.ch +if(o.k(0,n==null?l:n))if(a0.CW.k(0,b.CW)){o=a0.cx +n=b.cx +if(o.k(0,n)){m=a0.cy +l=b.cy +if(m.k(0,l)){k=a0.db +j=b.db +if(k.k(0,j)){i=a0.dx +if(i==null)i=m +h=b.dx +if(i.k(0,h==null?l:h)){i=a0.dy +if(i==null)i=k +h=b.dy +if(i.k(0,h==null?j:h)){i=a0.fr +if(i==null)i=o +h=b.fr +if(i.k(0,h==null?n:h)){i=a0.fx +o=i==null?o:i +i=b.fx +if(o.k(0,i==null?n:i)){o=a0.fy +if(o==null)o=B.o +n=b.fy +if(o.k(0,n==null?B.o:n)){o=a0.go +if(o==null)o=B.o +n=b.go +if(o.k(0,n==null?B.o:n)){o=a0.id +if(o==null)o=k +n=b.id +if(o.k(0,n==null?j:n)){o=a0.k1 +if(o==null)o=m +n=b.k1 +if(o.k(0,n==null?l:n)){o=a0.k2 +q=o==null?q:o +o=b.k2 +if(q.k(0,o==null?p:o)){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 +return s}, +gu(b1){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=this,a8=a7.b,a9=a7.c,b0=a7.d +if(b0==null)b0=a8 +s=a7.e +if(s==null)s=a9 +r=a7.f +q=a7.r +p=a7.w +if(p==null)p=r +o=a7.x +if(o==null)o=q +n=a7.y +m=n==null +l=m?r:n +k=a7.z +j=k==null +i=j?q:k +h=a7.Q +if(h==null){if(m)n=r}else n=h +m=a7.as +if(m==null)m=j?q:k +k=a7.at +j=a7.ax +h=a7.ay +if(h==null)h=k +g=a7.ch +if(g==null)g=j +f=a7.cx +e=a7.cy +d=a7.db +c=a7.dx +if(c==null)c=e +b=a7.dy +if(b==null)b=d +a=a7.fr +if(a==null)a=f +a0=a7.fx +if(a0==null)a0=f +a1=a7.fy +if(a1==null)a1=B.o +a2=a7.go +if(a2==null)a2=B.o +a3=a7.id +if(a3==null)a3=d +a4=a7.k1 +if(a4==null)a4=e +a5=a7.k2 +if(a5==null)a5=a9 +a6=a7.k3 +return A.X(a7.a,a8,a9,b0,s,r,q,p,o,l,i,n,m,k,j,h,g,a7.CW,f,A.X(e,d,c,b,a,a0,a1,a2,a3,a4,a5,a6==null?a8:a6,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a))}} +A.af5.prototype={} +A.Dp.prototype={} +A.a40.prototype={} +A.JH.prototype={ +gu(a){var s=this +return A.X(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.a_(b)!==A.p(r))return!1 +if(b instanceof A.JH)if(J.j(b.a,r.a))if(b.b==r.b)if(b.c==r.c)if(b.d==r.d)if(J.j(b.e,r.e))if(b.f==r.f)if(b.r==r.r)if(J.j(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.afO.prototype={} +A.JI.prototype={ +gu(a){var s=this +return A.dj([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,s.ok,s.p1,s.p2,s.p3])}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +return b instanceof A.JI&&J.j(b.a,s.a)&&b.b==s.b&&J.j(b.c,s.c)&&J.j(b.d,s.d)&&J.j(b.e,s.e)&&J.j(b.f,s.f)&&J.j(b.r,s.r)&&J.j(b.w,s.w)&&J.j(b.x,s.x)&&J.j(b.y,s.y)&&J.j(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.j(b.ch,s.ch)&&J.j(b.CW,s.CW)&&b.cx==s.cx&&b.cy==s.cy&&b.db==s.db&&J.j(b.dx,s.dx)&&b.dy==s.dy&&J.j(b.fr,s.fr)&&J.j(b.fx,s.fx)&&J.j(b.fy,s.fy)&&J.j(b.go,s.go)&&J.j(b.id,s.id)&&J.j(b.k1,s.k1)&&J.j(b.k2,s.k2)&&J.j(b.k3,s.k3)&&b.k4==s.k4&&J.j(b.ok,s.ok)&&J.j(b.p1,s.p1)&&J.j(b.p2,s.p2)&&J.j(b.p3,s.p3)}} +A.afQ.prototype={} +A.ag2.prototype={} +A.ayx.prototype={ +BU(a){return B.y}, +KD(a,b,c,d){return B.a1}, +BT(a,b){return B.i}} +A.apr.prototype={} +A.a0P.prototype={ +A(a){var s=null,r=A.aY(a,B.bR,t.l).w.r.b+8 +return new A.b4(new A.aK(8,r,8,8),new A.l8(new A.a0Q(this.c.a4(0,new A.m(8,r))),A.cZ(A.h5(B.T,!0,B.Qd,A.cP(this.d,B.w,B.z,B.ah),B.bd,s,1,s,s,s,s,s,B.ez),s,222),s),s)}} +A.BW.prototype={ +A(a){var s=null +return A.cZ(A.eP(!1,this.d,B.n,s,s,s,s,s,this.c,s,A.aaM(B.iO,s,s,s,s,B.c2,s,s,B.c2,A.B(a).ax.a===B.S?B.l:B.af,s,B.ar8,B.a2u,s,B.cS,s,s,s,s)),s,1/0)}} +A.a0V.prototype={ +A(a){var s,r,q,p,o,n,m,l,k,j,i,h=null +A.B(a) +s=A.B(a).c_ +r=t.l +q=A.aY(a,B.lV,r).w +p=q.f.U(0,this.x) +o=A.bvO(a) +q=s.f +if(q==null){q=o.f +q.toString}n=s.a +if(n==null)n=A.B(a).ay +m=s.b +if(m==null){m=o.b +m.toString}l=s.c +if(l==null)l=o.gbT(o) +k=s.d +if(k==null)k=o.gc7() +j=s.e +if(j==null){j=o.e +j.toString}i=new A.ef(q,h,h,new A.eX(B.QB,A.h5(B.T,!0,h,this.as,this.y,n,m,h,l,j,k,h,B.ez),h),h) +return new A.I8(p,A.ni(i,A.aY(a,h,r).w.adb(!0,!0,!0,!0),h),B.dC,B.aX,h,h)}} +A.AW.prototype={ +A(a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=null,d=A.B(a0),c=A.B(a0).c_,b=A.bvO(a0),a=d.r +switch(a.a){case 2:case 4:s=e +break +case 0:case 1:case 3:case 5:r=A.A(a0,B.aC,t.D) +r.toString +s=r.gbq() +break +default:s=e}r=A.d9(a0,B.bz) +r=r==null?e:r.gdU() +r=A.ag(1,0.3333333333333333,A.V((r==null?B.aw:r).a,1,2)-1) +r.toString +A.eJ(a0) +q=f.f +p=q==null +o=!p +if(o){n=24*r +m=c.r +if(m==null){m=b.gju() +m.toString}a=s==null&&a!==B.b1 +l=new A.b4(new A.aK(n,n,n,0),A.fI(new A.bu(A.bL(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,a,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e),!0,!1,!1,!1,q,e),e,e,B.aU,!0,m,B.b2,e,B.at),e)}else l=e +k=new A.aK(24,16,24,24) +a=f.y +j=a==null?e:a +if(j==null)j=k +a=p&&!0 +q=j.b +a=a?q*r:q +q=c.w +if(q==null){q=b.gKS() +q.toString}i=new A.b4(new A.aK(j.a*r,a,j.c*r,j.d),A.fI(new A.bu(A.bL(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e),!0,!1,!1,!1,f.x,e),e,e,B.aU,!0,q,e,e,B.at),e) +a=c.x +if(a==null)a=b.gKf() +h=new A.b4(a,A.bKz(B.op,f.Q,B.aol,B.cz,0,8),e) +a=A.a([],t.p) +if(o){l.toString +a.push(l)}i.toString +a.push(new A.oE(1,B.fm,i,e)) +h.toString +a.push(h) +g=A.bsi(A.cP(a,B.jf,B.z,B.ah),e) +if(s!=null)g=new A.bu(A.bL(e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,s,e,e,e,e,e,!0,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,e,!0,e,e,e,e,e,e,e,e,e),!1,!0,!1,!1,g,e) +return new A.a0V(e,e,e,e,B.a2x,B.n,e,e,g,e)}, +geD(){return null}} +A.JO.prototype={} +A.ayy.prototype={ +$3(a,b,c){var s=new A.e4(this.a,null),r=new A.rw(this.b.a,s,null) +r=A.z8(!0,r,!0,B.a8,!0,!0) +return r}, +$C:"$3", +$R:3, +$S:775} +A.b4D.prototype={ +gQg(){var s,r=this,q=r.Q +if(q===$){s=A.B(r.z) +r.Q!==$&&A.aq() +q=r.Q=s.ax}return q}, +ga0S(){var s,r=this,q=r.as +if(q===$){s=A.B(r.z) +r.as!==$&&A.aq() +q=r.as=s.p3}return q}, +gfK(){return this.gQg().f}, +gcd(a){return this.gQg().cy}, +gbT(a){return B.E}, +gc7(){var s=this.gQg(),r=s.k3 +return r==null?s.b:r}, +gju(){return this.ga0S().f}, +gKS(){return this.ga0S().z}, +gKf(){return B.a2w}} +A.BX.prototype={ +gu(a){return J.T(this.e)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.BX&&J.j(b.gcd(b),s.gcd(s))&&b.b==s.b&&J.j(b.gbT(b),s.gbT(s))&&J.j(b.gc7(),s.gc7())&&J.j(b.e,s.e)&&J.j(b.f,s.f)&&J.j(b.gfK(),s.gfK())&&J.j(b.gju(),s.gju())&&J.j(b.gKS(),s.gKS())&&J.j(b.gKf(),s.gKf())}, +gcd(a){return this.a}, +gbT(a){return this.c}, +gc7(){return this.d}, +gju(){return this.r}, +gKS(){return this.w}, +gKf(){return this.x}, +gfK(){return this.y}} +A.ag5.prototype={} +A.C_.prototype={ +A(a){var s,r,q,p,o,n,m,l=null +A.B(a) +s=A.bk5(a) +r=A.bmg(a) +q=this.c +p=q==null?s.b:q +if(p==null){q=r.b +q.toString +p=q}o=s.c +if(o==null){q=r.c +q.toString +o=q}n=s.d +if(n==null){q=r.d +q.toString +n=q}m=s.e +if(m==null){q=r.e +q.toString +m=q}return A.cZ(A.eH(A.cQ(l,l,B.n,l,l,new A.dU(l,l,new A.er(B.u,B.u,A.bqL(a,l,o),B.u),l,l,l,B.aK),l,o,new A.fk(n,0,m,0),l,l),l,l),p,l)}} +A.abG.prototype={ +A(a){var s,r,q,p,o,n,m,l=null +A.B(a) +s=A.bk5(a) +r=A.bmg(a) +q=0 +p=s.c +if(p==null){o=r.c +o.toString +p=o}n=s.d +if(n==null){o=r.d +o.toString +n=o}m=s.e +if(m==null){o=r.e +o.toString +m=o}return A.cZ(A.eH(A.cQ(l,l,B.n,l,l,new A.dU(l,l,new A.er(B.u,B.u,B.u,A.bqL(a,l,p)),l,l,l,B.aK),l,l,new A.fk(0,n,0,m),l,p),l,l),l,q)}} +A.b4F.prototype={ +gaf(a){var s=A.B(this.f).ax,r=s.fx +return r==null?s.cx:r}} +A.C0.prototype={ +gu(a){var s=this +return A.X(s.gaf(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.a_(b)!==A.p(s))return!1 +return b instanceof A.C0&&J.j(b.gaf(b),s.gaf(s))&&b.b==s.b&&b.c==s.c&&b.d==s.d&&b.e==s.e}, +gaf(a){return this.a}} +A.agb.prototype={} +A.a1c.prototype={ +J(){return"DrawerAlignment."+this.b}} +A.K2.prototype={ +A(a){var s,r,q,p,o,n,m,l=null,k=A.brf(a) +switch(A.B(a).r.a){case 2:case 4:s=l +break +case 0:case 1:case 3:case 5:r=A.A(a,B.aC,t.D) +r.toString +s=r.gbx() +break +default:s=l}A.B(a) +r=a.aj(t.Pg) +r=r==null?l:r.f +r=r==null?l:r.d +q=new A.b4I(a,l,l,1,l,l,l,l,l) +r=this.w +p=k.a +if(p==null)p=q.gcd(q) +o=k.c +if(o==null){o=q.c +o.toString}n=k.d +if(n==null)n=q.gbT(q) +m=k.e +if(m==null)m=q.gc7() +p=A.h5(B.T,!0,l,this.x,B.C,p,o,l,n,this.r,m,l,B.cv) +return new A.bu(A.bL(l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,s,l,l,l,l,l,!0,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,l,!0,l,l,l,l,l,l,l,l,l),!1,!0,!1,!1,new A.eX(new A.aN(r,r,1/0,1/0),p,l),l)}} +A.Rt.prototype={ +dh(a){return!this.f.rP(0,a.f)}} +A.K3.prototype={ +a8(){var s=null,r=t.C +return new A.C4(A.aDA(!0,s,!1),new A.bq(s,r),new A.bq(s,r),s,s,B.m)}} +A.C4.prototype={ +aX(){var s,r,q=this +q.b9() +s=q.f=A.bx(B.A,null,B.a26,0,null,1,q.a.y?1:0,q) +s.cF() +r=s.dw$ +r.b=!0 +r.a.push(q.gans()) +s.cF() +s=s.ej$ +s.b=!0 +s.a.push(q.gaqB())}, +m(){var s=this,r=s.d +if(r!=null)r.en(0) +r=s.f +r===$&&A.b() +r.m() +s.e.m() +s.akd()}, +ca(){this.e8() +this.x=this.aoe()}, +b1(a){var s,r,q +this.bh(a) +s=this.a +s=s.y +if(s!==a.y){r=this.f +r===$&&A.b() +q=r.Q +q===$&&A.b() +switch(q.a){case 3:case 0:r.sj(0,s?1:0) +break +case 1:case 2:break}}}, +ant(){this.ad(new A.aA9())}, +a1j(){var s,r,q=this +if(q.d==null){s=q.c +s.toString +r=A.oV(s,t.X) +if(r!=null){s=new A.Lz(q.gatw(),!1) +q.d=s +r.a7o(s) +s=q.c +s.toString +A.a22(s).Ce(q.e)}}}, +aqC(a){var s +switch(a.a){case 1:this.a1j() +break +case 2:s=this.d +if(s!=null)s.en(0) +this.d=null +break +case 0:break +case 3:break}}, +atx(){this.d=null +this.ah(0)}, +at5(a){var s=this.f +s===$&&A.b() +s.h8(0) +this.a1j()}, +at3(){var s=this,r=s.f +r===$&&A.b() +if(r.gaP(r)!==B.R){r=s.f.r +r=r!=null&&r.a!=null}else r=!0 +if(r)return +r=s.f.x +r===$&&A.b() +if(r<0.5)s.ah(0) +else s.r6(0)}, +ga16(a){var s=$.ap.Y$.z.i(0,this.r) +s=s==null?null:s.ga7() +t.aA.a(s) +if(s!=null)return s.gq(s).a +return 304}, +axe(a){var s,r,q,p=this,o=a.c +o.toString +s=o/p.ga16(p) +switch(p.a.d.a){case 0:break +case 1:s=-s +break}o=p.c.aj(t.I) +o.toString +switch(o.w.a){case 0:o=p.f +o===$&&A.b() +r=o.x +r===$&&A.b() +o.sj(0,r-s) +break +case 1:o=p.f +o===$&&A.b() +r=o.x +r===$&&A.b() +o.sj(0,r+s) +break}o=p.f +o===$&&A.b() +o=o.x +o===$&&A.b() +q=o>0.5 +if(q!==p.w){p.a.toString +o=!0}else o=!1 +if(o)p.a.e.$1(q) +p.w=q}, +aBZ(a){var s,r=this,q=r.f +q===$&&A.b() +if(q.gaP(q)===B.R)return +q=a.a.a.a +if(Math.abs(q)>=365){s=q/r.ga16(r) +switch(r.a.d.a){case 0:break +case 1:s=-s +break}q=r.c.aj(t.I) +q.toString +switch(q.w.a){case 0:r.f.AK(-s) +r.a.e.$1(s<0) +break +case 1:r.f.AK(s) +r.a.e.$1(s>0) +break}}else{q=r.f.x +q===$&&A.b() +if(q<0.5)r.ah(0) +else r.r6(0)}}, +r6(a){var s=this.f +s===$&&A.b() +s.aJb() +this.a.e.$1(!0)}, +ah(a){var s=this.f +s===$&&A.b() +s.AK(-1) +this.a.e.$1(!1)}, +aoe(){this.a.toString +var s=this.c +s.toString +s=A.brf(s).b +return new A.dG(B.E,s==null?B.aa:s)}, +ga17(){switch(this.a.d.a){case 0:return B.cV +case 1:return B.qp}}, +gaqE(){switch(this.a.d.a){case 0:return B.qp +case 1:return B.cV}}, +aqD(a){var s,r,q,p,o,n,m,l,k,j=this,i=null,h=j.a.d===B.a1P,g=a.aj(t.I) +g.toString +switch(A.B(a).r.a){case 0:case 2:case 1:s=!1 +break +case 4:case 3:case 5:s=!0 +break +default:s=i}r=j.a.x +q=A.aY(a,B.bR,t.l).w.r +switch(g.w.a){case 1:r=20+(h?q.a:q.c) +break +case 0:r=20+(h?q.c:q.a) +break}g=j.f +g===$&&A.b() +g=g.Q +g===$&&A.b() +if(g===B.R)if(j.a.w&&!s){g=j.ga17() +p=j.a.f +return new A.ef(g,i,i,A.dY(B.aQ,A.cQ(i,i,B.n,i,i,i,i,i,i,i,r),p,!0,j.y,i,i,i,j.ga58(),i,j.ga3l(),i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,!1,B.am),i)}else return B.a1 +else{switch(A.B(a).r.a){case 0:o=!0 +break +case 2:case 4:case 1:case 3:case 5:o=!1 +break +default:o=i}g=j.a +g.toString +p=A.A(a,B.aC,t.D) +p.toString +p=p.gaM() +n=j.x +n===$&&A.b() +m=j.f +m=A.cQ(i,i,B.n,n.a5(0,m.gj(m)),i,i,i,i,i,i,i) +p=A.bq0(new A.qk(o,A.dY(i,new A.bu(A.bL(i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,p,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i),!1,!1,!1,!1,m,i),B.D,!1,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,j.gdV(j),i,i,i,i,!1,B.am),i)) +n=j.ga17() +m=j.gaqE() +l=j.f.x +l===$&&A.b() +k=new A.Rt(g,new A.ii(A.fp(B.bu,A.a([p,new A.ef(n,i,i,new A.ef(m,l,i,new A.ii(A.aDz(!1,j.a.c,i,j.r,j.e),i),i),i)],t.p),B.C,B.aJ,i),i),i) +if(s)return k +return A.dY(i,k,j.a.f,!0,j.y,i,j.gat2(),j.gat4(),j.ga58(),i,j.ga3l(),i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,i,!1,B.am)}}, +A(a){var s=null +return A.bkR(this.aqD(a),s,s,B.nO,s,s)}, +$iaP:1} +A.aA9.prototype={ +$0(){}, +$S:0} +A.b4I.prototype={ +gtu(a){var s,r=this,q=r.y +if(q===$){s=r.x.aj(t.I) +s.toString +r.y!==$&&A.aq() +q=r.y=s.w}return q}, +gcd(a){return A.B(this.x).ax.cy}, +gc7(){var s=A.B(this.x).ax,r=s.k3 +return r==null?s.b:r}, +gbT(a){return B.E}, +gcH(a){return new A.cM(B.Qc.L(this.gtu(this)),B.u)}, +gLp(){return new A.cM(B.Qb.L(this.gtu(this)),B.u)}} +A.Ru.prototype={ +m(){var s=this,r=s.c3$ +if(r!=null)r.H(0,s.ghP()) +s.c3$=null +s.b0()}, +cf(){this.cW() +this.cO() +this.hQ()}} +A.C5.prototype={ +gu(a){var s=this +return A.X(s.gcd(s),s.b,s.c,s.gbT(s),s.gc7(),s.gcH(s),s.gLp(),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.a_(b)!==A.p(s))return!1 +return b instanceof A.C5&&J.j(b.gcd(b),s.gcd(s))&&J.j(b.b,s.b)&&b.c==s.c&&J.j(b.gbT(b),s.gbT(s))&&J.j(b.gc7(),s.gc7())&&J.j(b.gcH(b),s.gcH(s))&&J.j(b.gLp(),s.gLp())&&b.w==s.w}, +gcd(a){return this.a}, +gbT(a){return this.d}, +gc7(){return this.e}, +gcH(a){return this.f}, +gLp(){return this.r}} +A.agr.prototype={} +A.ags.prototype={ +aE(a,b){var s=null,r=b.b,q=A.V(this.r.$0(),0,Math.max(r-48,0)),p=t.Y,o=A.V(q+48,Math.min(48,r),r),n=this.f +q=new A.aR(q,0,p).a5(0,n.gj(n)) +this.w.kD(a,new A.m(0,q),new A.xC(s,s,s,s,new A.U(b.a-0,new A.aR(o,r,p).a5(0,n.gj(n))-q),s))}, +fv(a){var s,r=this +if(a.b.k(0,r.b))if(a.c===r.c)if(a.d===r.d)s=a.f!==r.f +else s=!0 +else s=!0 +else s=!0 +return s}} +A.Gk.prototype={ +a8(){return new A.Gl(B.m,this.$ti.h("Gl<1>"))}} +A.Gl.prototype={ +aqG(a){var s,r,q=$.ap.Y$.f.a.b +switch((q==null?A.Ag():q).a){case 0:s=!1 +break +case 1:s=!0 +break +default:s=null}if(a&&s){q=this.a +r=q.c.O5(q.f,q.r.d,q.w) +this.a.d.j3(r.d,B.dE,B.aX)}}, +au7(){var s,r=this.a +r=r.c.dY[r.w] +s=this.c +s.toString +A.du(s,!1).dO(new A.lJ(r.f.r,this.$ti.h("lJ<1>")))}, +A(a){var s,r,q,p,o,n=this,m=null,l=n.a,k=l.c,j=0.5/(k.dY.length+1.5) +l=l.w +s=k.go +if(l===k.dj){s.toString +r=A.c5(B.Pd,s,m)}else{q=A.V(0.5+(l+1)*j,0,1) +p=A.V(q+1.5*j,0,1) +s.toString +r=A.c5(new A.dZ(q,p,B.Y),s,m)}l=n.a +k=l.e +s=l.c +l=l.w +o=A.jg(l===s.dj,m,!0,A.cQ(m,s.dY[l],B.n,m,m,m,m,s.cr,m,k,m),m,!0,m,m,m,m,m,n.gaqF(),m,m,m,n.gau6(),m,m,m,m,m,m,m) +o=A.Ov(new A.cY(r,!1,o,m),m,B.ak9) +return o}} +A.Gj.prototype={ +a8(){return new A.Rw(B.m,this.$ti.h("Rw<1>"))}} +A.Rw.prototype={ +aX(){var s,r=this +r.b9() +s=r.a.c.go +s.toString +r.d=A.c5(B.y6,s,B.y7) +s=r.a.c.go +s.toString +r.e=A.c5(B.a7J,s,B.Pd)}, +A(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=A.A(a,B.aC,t.D) +f.toString +s=h.a.c +r=A.a([],t.p) +for(q=s.dY,p=h.$ti.h("Gk<1>"),o=0;o0?8+B.b.lF(B.b.cT(this.hf,0,a),new A.b4T()):8}, +O5(a,b,c){var s,r,q,p,o=this,n=b-96,m=a.b,l=a.d,k=Math.min(l,b),j=o.Yc(c),i=Math.min(48,m),h=Math.max(b-48,k),g=o.hf,f=o.dj +l-=m +s=m-j-(g[f]-l)/2 +r=B.cF.gcC(B.cF)+B.cF.gcD(B.cF) +if(o.dY.length!==0)r+=B.b.lF(g,new A.b4U()) +q=Math.min(n,r) +p=s+q +if(sh){p=Math.max(k,h) +s=p-q}g=g[f]/2 +l=k-l/2 +if(p-gn?Math.min(Math.max(0,j-(m-s)),r-q):0)}, +gtb(){return this.hY}} +A.b4S.prototype={ +$2(a,b){var s=this.a +return new A.Ad(s,b,s.cq,s.dM,s.dj,s.ac,s.eB,!0,s.hX,null,s.$ti.h("Ad<1>"))}, +$S(){return this.a.$ti.h("Ad<1>(G,aN)")}} +A.b4T.prototype={ +$2(a,b){return a+b}, +$S:115} +A.b4U.prototype={ +$2(a,b){return a+b}, +$S:115} +A.Ad.prototype={ +a8(){return new A.Ry(B.m,this.$ti.h("Ry<1>"))}} +A.Ry.prototype={ +aX(){this.b9() +var s=this.a +this.d=A.Ey(s.c.O5(s.r,s.d.d,s.w).d,!0)}, +A(a){var s,r=this,q=A.eJ(a),p=r.a,o=p.c,n=p.f,m=p.r,l=p.d,k=p.Q +p=p.at +s=r.d +s===$&&A.b() +return A.aK9(new A.e4(new A.b4R(r,q,new A.Gj(o,n,m,l,k,!0,p,s,null,r.$ti.h("Gj<1>"))),null),a,!0,!0,!0,!0)}, +m(){var s=this.d +s===$&&A.b() +s.m() +this.b0()}} +A.b4R.prototype={ +$1(a){var s=this.a,r=s.a +return new A.l8(new A.agt(r.r,r.c,this.b,s.$ti.h("agt<1>")),new A.rw(r.y.a,this.c,null),null)}, +$S:227} +A.GS.prototype={ +b5(a){var s=new A.alu(this.e,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.D=this.e}} +A.alu.prototype={ +ce(){var s,r=this +r.yK() +s=r.gq(r) +r.D.$1(s)}} +A.Rv.prototype={ +A(a){var s=null +return A.cQ(this.d,this.c,B.n,s,B.QC,s,s,s,s,s,s)}} +A.qg.prototype={} +A.K4.prototype={ +dh(a){return!1}} +A.C6.prototype={ +a8(){return new A.Gi(B.m,this.$ti.h("Gi<1>"))}, +geD(a){return this.as}} +A.Gi.prototype={ +gdB(a){var s +this.a.toString +s=this.r +return s}, +aX(){var s,r,q=this +q.b9() +q.a6P() +s=q.a +s.toString +if(q.r==null)q.r=A.tL(!0,A.p(s).l(0),!0,!0,null,null,!1) +s=t.h +r=t.o +q.w=A.am([B.iA,new A.cz(new A.b4O(q),new A.bd(A.a([],s),r),t.wY),B.Ph,new A.cz(new A.b4P(q),new A.bd(A.a([],s),r),t.nz)],t.n,t.od)}, +m(){var s,r=this +B.b.E($.ap.bd$,r) +r.Sg() +s=r.r +if(s!=null)s.m() +r.b0()}, +Sg(){var s,r,q=this.e +if(q!=null)if(q.gFr()){s=q.a +if(s!=null){r=q.gtI() +s.e.F5(0,A.bmy(q)).en(0) +s.Io(!1) +if(r){s.z9(A.pU()) +s.PB()}}}this.f=this.e=null}, +b1(a){var s,r=this +r.bh(a) +s=r.a +s.toString +if(r.r==null)r.r=A.tL(!0,A.p(s).l(0),!0,!0,null,null,!1) +r.a6P()}, +a6P(){var s,r,q=this,p=q.a,o=p.c +if(o.length!==0)if(p.d==null){p=new A.ba(o,new A.b4M(q),A.ab(o).h("ba<1>")) +p=!p.gam(p).v()}else p=!1 +else p=!0 +if(p){q.d=null +return}for(p=q.a,o=p.c,s=o.length,r=0;r>")) +for(q=a1.h("GS<1>"),p=0;o=a.a.c,p?>") +f=a1.h("aD?>") +e=A.mf(B.bV) +d=A.a([],t.wi) +c=$.aH() +b=$.ac +a.e=new A.Rx(r,B.dJ,q,o,8,l,m,48,a0,a0,!0,a0,j,k,a0,a0,i,A.aW(t.kj),new A.bq(a0,a1.h("bq>>")),new A.bq(a0,t.C),new A.p1(),a0,0,new A.aD(new A.a7(h,g),f),e,d,B.fU,new A.bF(a0,c,t.XR),new A.aD(new A.a7(b,g),f),a1.h("Rx<1>")) +r=a.gdB(a) +if(r!=null)r.lG() +r=a.e +r.toString +n.Bj(r,a1.h("lJ<1>")).be(new A.b4L(a),t.H) +a.a.toString}, +gavI(){var s,r=this +if(r.gyZ()){r.a.toString +s=r.c +s.toString +switch(A.B(s).ax.a.a){case 1:return B.eg +case 0:return B.ap}}else{r.a.toString +s=r.c +s.toString +switch(A.B(s).ax.a.a){case 1:return B.mI +case 0:return B.a0c}}}, +gyZ(){var s=this.a +return s.c.length!==0&&!0}, +A(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=A.d9(a,B.PD),e=f==null?g:f.gBd(f) +if(e==null){s=A.PT(a).gnG() +e=s.a>s.b?B.l1:B.l0}f=h.f +if(f==null){h.f=e +f=e}if(e!==f){h.Sg() +h.f=e}f=h.a +r=A.a8(f.c,!0,t.l7) +h.a.toString +f=h.gyZ() +q=h.a +if(f)p=q.e +else p=q.e +o=r.length +f=h.gJP() +f.toString +f=f.cM(A.B(a).db) +h.a.toString +r.push(A.fI(A.qD(new A.Rv(p,B.cV,g),!0,g),g,g,B.aU,!0,f,g,g,B.at)) +A.bqe(a) +if(r.length===0)n=B.a1 +else{f=h.d +if(f==null)f=o +h.a.toString +q=A.ab(r).h("ad<1,aG>") +q=A.a8(new A.ad(r,new A.b4N(h),q),!0,q.h("av.E")) +n=new A.a3_(B.cV,f,q,g)}if(h.gyZ()){f=h.gJP() +f.toString}else{f=h.gJP() +f.toString +f=f.cM(A.B(a).ch)}q=a.aj(t.I) +q.toString +q=B.a8.L(q.w) +h.a.toString +m=t.p +l=A.a([],m) +h.a.toString +l.push(A.dN(n,1)) +k=h.gavI() +j=h.a.as +l.push(A.xB(j,new A.d4(24,g,g,g,g,k,g,g),g)) +e=A.fI(A.cQ(g,A.db(l,B.w,B.fC,B.ah),B.n,g,g,g,g,g,g,q,g),g,g,B.aU,!0,f,g,g,B.at) +if(a.aj(t.U2)==null){h.a.toString +f=A.cQ(g,g,B.n,g,g,B.QH,g,1,g,g,g) +e=A.fp(B.bu,A.a([e,A.hp(8,f,g,g,0,0,g,g)],m),B.C,B.aJ,g)}f=A.aW(t.ui) +if(!h.gyZ())f.F(0,B.x) +i=A.ce(B.df,f,t.Pb) +h.a.toString +f=h.w +f===$&&A.b() +q=h.gyZ()?h.gaqH():g +m=h.gyZ() +h.a.toString +l=h.gdB(h) +h.a.toString +k=A.B(a) +h.a.toString +f=A.pY(f,A.jg(!1,g,m,e,g,!1,k.cx,l,g,g,i,g,g,g,g,q,g,g,g,g,g,g,g)) +return new A.bu(A.bL(g,g,g,g,g,!0,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g),!1,!1,!1,!1,f,g)}} +A.b4O.prototype={ +$1(a){return this.a.Qm()}, +$S:784} +A.b4P.prototype={ +$1(a){return this.a.Qm()}, +$S:785} +A.b4M.prototype={ +$1(a){var s=this.a.a.d +return a.r===s}, +$S(){return this.a.$ti.h("q(qg<1>)")}} +A.b4K.prototype={ +$1(a){var s=this.a.e +if(s==null)return +s.hf[this.b]=a.b}, +$S:107} +A.b4L.prototype={ +$1(a){var s=this.a +s.Sg() +if(s.c==null||a==null)return +s.a.r.$1(a.a)}, +$S(){return this.a.$ti.h("aE(lJ<1>?)")}} +A.b4N.prototype={ +$1(a){var s +this.a.a.toString +s=A.cZ(a,48,null) +return s}, +$S:797} +A.W0.prototype={} +A.K5.prototype={ +gu(a){return A.X(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.a_(b)!==A.p(s))return!1 +return b instanceof A.K5&&J.j(b.a,s.a)&&J.j(b.b,s.b)&&J.j(b.c,s.c)}} +A.agu.prototype={} +A.Cf.prototype={ +tr(a){var s=null +A.B(a) +A.B(a) +return new A.agB(a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,B.T,!0,B.a7,s)}, +Gu(a){var s +a.aj(t.ds) +s=A.B(a) +return s.W.a}} +A.agD.prototype={ +tr(a){var s,r +A.B(a) +s=A.d9(a,B.bz) +s=s==null?null:s.gdU() +r=A.IO(B.n4,B.a2i,B.a2e,(s==null?B.aw:s).a) +return this.ahO(a).x_(new A.cG(r,t.Ak))}} +A.agE.prototype={ +A(a){var s,r,q=null,p=A.d9(a,B.bz) +p=p==null?q:p.gdU() +s=(p==null?B.aw:p).a +if(s<=1)r=8 +else{p=A.ag(8,4,Math.min(s-1,1)) +p.toString +r=p}return A.db(A.a([this.d,A.cZ(q,q,r),new A.oE(1,B.fm,this.c,q)],t.p),B.w,B.z,B.ah)}, +geD(a){return this.d}} +A.agB.prototype={ +grY(){var s,r=this,q=r.fr +if(q===$){s=A.B(r.dy) +r.fr!==$&&A.aq() +q=r.fr=s.ax}return q}, +gir(){return new A.cG(A.B(this.dy).p3.as,t.wG)}, +gcd(a){return new A.bt(new A.b4V(this),t.U)}, +gfq(){return new A.bt(new A.b4X(this),t.U)}, +gcG(){return new A.bt(new A.b4Z(this),t.U)}, +gbT(a){var s=this.grY().fy +if(s==null)s=B.o +return new A.cG(s,t.h9)}, +gc7(){var s=this.grY(),r=s.k3 +s=r==null?s.b:r +return new A.cG(s,t.h9)}, +gfn(a){return new A.bt(new A.b4W(),t.pj)}, +gdD(a){return new A.cG(A.bSI(this.dy),t.Ak)}, +glv(){return B.kU}, +glt(){return B.e1}, +gcH(a){return B.e0}, +giI(){return new A.bt(new A.b4Y(),t.Y6)}, +gf5(){return A.B(this.dy).z}, +glH(){return A.B(this.dy).e}, +ghM(){return A.B(this.dy).x}} +A.b4V.prototype={ +$1(a){var s +if(a.p(0,B.x)){s=this.a.grY().db +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return this.a.grY().cy}, +$S:6} +A.b4X.prototype={ +$1(a){var s +if(a.p(0,B.x)){s=this.a.grY().db +return A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return this.a.grY().b}, +$S:6} +A.b4Z.prototype={ +$1(a){var s +if(a.p(0,B.Q)){s=this.a.grY().b +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=this.a.grY().b +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=this.a.grY().b +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return null}, +$S:29} +A.b4W.prototype={ +$1(a){if(a.p(0,B.x))return 0 +if(a.p(0,B.Q))return 1 +if(a.p(0,B.F))return 3 +if(a.p(0,B.K))return 1 +return 1}, +$S:149} +A.b4Y.prototype={ +$1(a){if(a.p(0,B.x))return B.c2 +return B.cy}, +$S:56} +A.Kb.prototype={ +gu(a){return J.T(this.a)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.Kb&&J.j(b.a,this.a)}} +A.agC.prototype={} +A.rC.prototype={} +A.aC5.prototype={} +A.Kj.prototype={ +a8(){var s=null +return new A.RL(new A.uW(s,s),new A.dG(s,s),new A.dG(s,s),new A.dG(s,s),s,s,B.m)}} +A.RL.prototype={ +aX(){var s,r,q,p,o,n,m=this,l=null +m.b9() +s=m.w=A.bx(B.A,l,B.T,0,l,1,l,m) +r=$.bBY() +q=t.m +m.y=new A.ax(q.a(s),r,A.l(r).h("ax")) +p=$.bC_() +o=p.$ti.h("dz") +m.x=new A.ax(q.a(s),new A.dz(r,p,o),o.h("ax")) +o=m.d +p=$.bBZ() +n=A.l(o).h("dz") +m.z=new A.ax(q.a(s),new A.dz(p,o,n),n.h("ax")) +n=m.e +o=A.l(n).h("dz") +m.Q=new A.ax(q.a(s),new A.dz(r,n,o),o.h("ax")) +o=m.f +n=A.l(o).h("dz") +m.as=new A.ax(q.a(s),new A.dz(r,o,n),n.h("ax")) +n=m.r +o=A.l(n).h("dz") +m.at=new A.ax(q.a(s),new A.dz(p,n,o),o.h("ax")) +o=m.c +o.toString +o=A.yu(o) +if(o==null)s=l +else{s=m.c +s.toString +s=o.Ni(s)}A.cN(s) +if(s==null)s=m.a.z +m.ax=s +if(s)m.w.sj(0,1) +m.a.toString +s=new A.aC5() +m.ay=s +s.a=m}, +m(){var s=this.ay +s===$&&A.b() +s.a=null +s=this.w +s===$&&A.b() +s.m() +this.alL()}, +aDp(){var s,r,q=this,p=q.c +p.toString +p=A.A(p,B.Pl,t.Uh) +p.toString +s=p.gcz() +p=q.c +p.toString +p=A.A(p,B.aC,t.D) +p.toString +r=q.ax?p.gbl():p.gaW() +q.ad(new A.b5b(q)) +q.a.toString +A.Om(r,s,B.qu)}, +ar9(){this.aDp()}, +a1d(a){switch(1){case 0:return B.fq +case 1:case 2:return B.cI}}, +ao1(a){var s +this.a.toString +if(this.a1d(null)!==B.fq)return null +s=this.x +s===$&&A.b() +return A.aRN(B.xM,s)}, +aom(a){var s +this.a.toString +if(this.a1d(null)!==B.cI)return null +s=this.x +s===$&&A.b() +return A.aRN(B.xM,s)}, +anW(a,b){var s,r,q,p,o,n,m,l,k=this,j=null,i=A.B(a),h=A.aC6(a),g=k.z +g===$&&A.b() +s=g.a +r=g.b.a5(0,s.gj(s)) +if(r==null)r=B.qE +k.a.toString +g=A.A(a,B.aC,t.D) +g.toString +q=k.ax?g.gbs():g.gaQ() +switch(i.r.a){case 2:case 4:p=k.ax?g.gaW()+"\n "+g.gaD():g.gbl()+"\n "+g.gaC() +break +case 0:case 1:case 3:case 5:p=j +break +default:p=j}g=k.at +g===$&&A.b() +s=g.a +s=g.b.a5(0,s.gj(s)) +g=s==null?h.a:s +if(g==null)g=B.E +s=k.as +s===$&&A.b() +o=s.a +o=s.b.a5(0,o.gj(o)) +s=o==null?h.f:o +o=k.Q +o===$&&A.b() +n=o.a +n=o.b.a5(0,n.gj(n)) +k.a.toString +o=k.ao1(a) +m=k.a.d +l=k.aom(a) +s=A.bkR(A.bI(!1,h.c,j,j,!0,j,j,!1,j,o,j,j,k.gar8(),!1,j,j,j,j,j,j,m,l,j),j,s,j,n,j) +o=new A.Oj(q,j) +o=A.bL(j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,p,o,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j) +k.a.toString +n=h.d +if(n==null)n=B.a7 +m=k.y +m===$&&A.b() +l=m.a +return A.cQ(j,A.cP(A.a([new A.bu(o,!1,!1,!1,!1,s,j),A.to(new A.ef(n,j,m.b.a5(0,l.gj(l)),b,j),B.C)],t.p),B.w,B.z,B.ah),B.n,j,j,new A.hT(g,j,j,j,r),j,j,j,j,j)}, +b1(a){var s,r,q,p,o=this +o.bh(a) +s=o.c +s.toString +r=A.B(s) +s=o.c +s.toString +q=A.aC6(s) +s=o.c +s.toString +p=A.bvR(s) +s=J.j(o.a.db,a.db) +if(!s)o.a6U(q,r) +s=J.j(o.a.cx,a.cx) +if(!s)o.a6z(q,p) +s=J.j(o.a.ch,a.ch) +if(!s)o.a6C(q,p) +o.a.toString}, +ca(){var s,r,q,p=this,o=p.c +o.toString +s=A.B(o) +o=p.c +o.toString +r=A.aC6(o) +o=p.c +o.toString +q=A.bvR(o) +p.a6U(r,s) +p.a6z(r,q) +p.a6C(r,q) +p.aE1(r) +p.e8()}, +a6U(a,b){var s,r=this.d,q=this.a +q.toString +s=a.z +r.a=s==null?B.qE:s +q=q.db +if(q==null)q=a.y +if(q==null){q=b.CW +q=new A.er(new A.be(q,1,B.I,-1),B.u,new A.be(q,1,B.I,-1),B.u)}r.b=q}, +a6z(a,b){var s,r=this.e +this.a.toString +s=a.x +r.a=s==null?b.gEb():s +s=this.a.cx +if(s==null)s=a.w +r.b=s==null?b.gGt():s}, +a6C(a,b){var s,r=this.f +this.a.toString +s=a.r +r.a=s==null?b.gEa():s +s=this.a.ch +if(s==null)s=a.f +r.b=s==null?b.gfK():s}, +aE1(a){var s=this.r +this.a.toString +s.a=a.b +s.b=a.a}, +A(a){var s,r,q,p,o,n=this,m=null,l=A.aC6(a) +if(!n.ax){s=n.w +s===$&&A.b() +r=s.gaP(s)===B.R}else r=!1 +if(r){n.a.toString +q=!0}else q=!1 +s=n.a +s.toString +p=l.e +if(p==null)p=B.a8 +o=new A.DD(r,new A.zK(!r,new A.b4(p,A.cP(s.r,B.w,B.z,B.O),m),m),m) +s=n.w +s===$&&A.b() +p=q?m:o +return A.hg(s,n.ganV(),p)}, +$iaP:1} +A.b5b.prototype={ +$0(){var s,r=this.a,q=!r.ax +r.ax=q +s=r.w +if(q){s===$&&A.b() +s.bS(0)}else{s===$&&A.b() +s.d3(0).be(new A.b5a(r),t.H)}q=r.c +q.toString +q=A.yu(q) +if(q!=null){s=r.c +s.toString +q.NT(s,r.ax)}}, +$S:0} +A.b5a.prototype={ +$1(a){var s=this.a +if(s.c==null)return +s.ad(new A.b59())}, +$S:19} +A.b59.prototype={ +$0(){}, +$S:0} +A.b58.prototype={ +gIm(){var s,r=this,q=r.ax +if(q===$){q=r.at +if(q===$){s=A.B(r.as) +r.at!==$&&A.aq() +r.at=s +q=s}r.ax!==$&&A.aq() +q=r.ax=q.ax}return q}, +gGt(){return this.gIm().db}, +gfK(){return this.gIm().b}, +gEb(){return this.gIm().db}, +gEa(){var s=this.gIm(),r=s.dy +return r==null?s.db:r}} +A.W1.prototype={ +m(){var s=this,r=s.c3$ +if(r!=null)r.H(0,s.ghP()) +s.c3$=null +s.b0()}, +cf(){this.cW() +this.cO() +this.hQ()}} +A.Cl.prototype={ +gu(a){var s=this +return A.X(s.a,s.b,s.c,s.d,s.e,s.gfK(),s.gEa(),s.gGt(),s.gEb(),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.a_(b)!==A.p(s))return!1 +return b instanceof A.Cl&&J.j(b.a,s.a)&&J.j(b.b,s.b)&&J.j(b.c,s.c)&&J.j(b.d,s.d)&&J.j(b.e,s.e)&&J.j(b.gfK(),s.gfK())&&J.j(b.gEa(),s.gEa())&&J.j(b.gGt(),s.gGt())&&J.j(b.gEb(),s.gEb())&&J.j(b.y,s.y)&&J.j(b.z,s.z)&&!0}, +gfK(){return this.f}, +gEa(){return this.r}, +gGt(){return this.w}, +gEb(){return this.x}} +A.agH.prototype={} +A.b5J.prototype={ +J(){return"_FilledButtonVariant."+this.b}} +A.a1N.prototype={ +tr(a){var s=null +switch(0){case 0:return new A.agR(a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,B.T,!0,B.a7,s)}}, +Gu(a){var s +a.aj(t.Q9) +s=A.B(a) +return s.an.a}} +A.agR.prototype={ +guv(){var s,r=this,q=r.fr +if(q===$){s=A.B(r.dy) +r.fr!==$&&A.aq() +q=r.fr=s.ax}return q}, +gir(){return new A.cG(A.B(this.dy).p3.as,t.wG)}, +gcd(a){return new A.bt(new A.b5E(this),t.U)}, +gfq(){return new A.bt(new A.b5G(this),t.U)}, +gcG(){return new A.bt(new A.b5I(this),t.U)}, +gbT(a){var s=this.guv().fy +if(s==null)s=B.o +return new A.cG(s,t.h9)}, +gc7(){return B.bL}, +gfn(a){return new A.bt(new A.b5F(),t.pj)}, +gdD(a){return new A.cG(A.bSG(this.dy),t.Ak)}, +glv(){return B.kU}, +glt(){return B.e1}, +gcH(a){return B.e0}, +giI(){return new A.bt(new A.b5H(),t.Y6)}, +gf5(){return A.B(this.dy).z}, +glH(){return A.B(this.dy).e}, +ghM(){return A.B(this.dy).x}} +A.b5E.prototype={ +$1(a){var s +if(a.p(0,B.x)){s=this.a.guv().db +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return this.a.guv().b}, +$S:6} +A.b5G.prototype={ +$1(a){var s +if(a.p(0,B.x)){s=this.a.guv().db +return A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return this.a.guv().c}, +$S:6} +A.b5I.prototype={ +$1(a){var s +if(a.p(0,B.Q)){s=this.a.guv().c +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=this.a.guv().c +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=this.a.guv().c +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return null}, +$S:29} +A.b5F.prototype={ +$1(a){if(a.p(0,B.x))return 0 +if(a.p(0,B.Q))return 0 +if(a.p(0,B.F))return 1 +if(a.p(0,B.K))return 0 +return 0}, +$S:149} +A.b5H.prototype={ +$1(a){if(a.p(0,B.x))return B.c2 +return B.cy}, +$S:56} +A.Ko.prototype={ +gu(a){return J.T(this.a)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.Ko&&J.j(b.a,this.a)}} +A.agS.prototype={} +A.Kw.prototype={ +dh(a){var s,r=this +if(r.f===a.f)if(r.r===a.r)if(r.w===a.w)if(r.x===a.x)s=!1 +else s=!0 +else s=!0 +else s=!0 +else s=!0 +return s}} +A.b4r.prototype={ +l(a){return""}} +A.ah8.prototype={ +J(){return"_FloatingActionButtonType."+this.b}} +A.xg.prototype={ +A(a9){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=A.B(a9),a3=a2.ao,a4=a0.k1,a5=a0.c,a6=a5!=null,a7=new A.b5c(a9,a4,a6,a1,a1,a1,a1,a1,6,6,8,a1,6,a1,!0,a1,B.Qw,B.Qv,B.Qy,B.Qz,8,a1,a1,a1),a8=a3.a +if(a8==null)a8=a7.gfq() +s=a3.b +if(s==null)s=a7.gcd(a7) +r=a3.c +if(r==null)r=a7.gln() +q=a3.d +if(q==null)q=a7.gtF() +p=a3.e +if(p==null)p=a7.gCm() +o=a3.f +if(o==null){n=a7.f +n.toString +o=n}m=a3.r +if(m==null){n=a7.r +n.toString +m=n}l=a3.w +if(l==null){n=a7.w +n.toString +l=n}n=a3.x +k=n==null?a7.x:n +if(k==null)k=o +j=a3.y +if(j==null){n=a7.y +n.toString +j=n}i=a3.Q +if(i==null){n=a7.Q +n.toString +i=n}h=a3.as +if(h==null){n=a7.gjU() +n.toString +h=n}n=a3.cy +if(n==null){n=a7.gET() +n.toString}g=n.cM(a8) +f=a3.z +if(f==null){n=a7.gcH(a7) +n.toString +f=n}e=a6?A.oI(a5,new A.d4(h,a1,a1,a1,a1,a1,a1,a1)):a5 +switch(a4.a){case 0:d=a3.at +if(d==null){a4=a7.at +a4.toString +d=a4}a5=e +break +case 1:d=a3.ax +if(d==null){a4=a7.ax +a4.toString +d=a4}a5=e +break +case 2:d=a3.ay +if(d==null){a4=a7.ay +a4.toString +d=a4}a5=e +break +case 3:d=a3.ch +if(d==null){a4=a7.ch +a4.toString +d=a4}c=a3.CW +if(c==null)c=8 +b=a3.cx +if(b==null)b=a7.gES() +a4=A.a([],t.p) +if(a6)a4.push(a5) +if(a6&&a0.db)a4.push(A.cZ(a1,a1,c)) +if(a0.db){a6=a0.k2 +a6.toString +a4.push(a6)}a5=new A.aeY(new A.b4(b,A.db(a4,B.w,B.z,B.ah),a1),a1) +break +default:a5=e +d=a1}a=A.brZ(new A.Nm(a0.z,new A.agz(a0.Q,a3.db),g,s,r,q,p,o,l,m,j,k,d,f,a5,a2.e,a1,!1,B.n,i,a1),a1,a1,a1,B.T9,!1) +return new A.uh(a,a1)}} +A.agz.prototype={ +L(a){var s=A.ce(this.a,a,t.WV) +if(s==null)s=null +return s==null?B.df.L(a):s}, +gA3(){return"MaterialStateMouseCursor(FloatActionButton)"}} +A.aeY.prototype={ +b5(a){var s=a.aj(t.I) +s.toString +s=new A.Ts(B.a7,s.w,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){var s=a.aj(t.I) +s.toString +b.scz(s.w)}} +A.Ts.prototype={ +bX(a){return 0}, +bR(a){return 0}, +da(a){var s,r=this.k3$,q=a.a,p=a.b,o=a.c,n=a.d +if(r!=null){s=r.lO(B.f3) +return new A.U(Math.max(q,Math.min(p,s.a)),Math.max(o,Math.min(n,s.b)))}else return new A.U(A.V(1/0,q,p),A.V(1/0,o,n))}, +ce(){var s=this,r=t.k.a(A.J.prototype.ga9.call(s)),q=s.k3$,p=r.a,o=r.b,n=r.c,m=r.d +if(q!=null){q.cS(B.f3,!0) +q=s.k3$ +q=Math.max(p,Math.min(o,q.gq(q).a)) +o=s.k3$ +s.id=new A.U(q,Math.max(n,Math.min(m,o.gq(o).b))) +s.Kr()}else s.id=new A.U(A.V(1/0,p,o),A.V(1/0,n,m))}} +A.b5c.prototype={ +gCX(){var s,r=this,q=r.fx +if(q===$){s=A.B(r.dx) +r.fx!==$&&A.aq() +q=r.fx=s.ax}return q}, +gfq(){var s=this.gCX(),r=s.e +return r==null?s.c:r}, +gcd(a){var s=this.gCX(),r=s.d +return r==null?s.b:r}, +gCm(){var s=this.gCX(),r=s.e +s=r==null?s.c:r +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}, +gln(){var s=this.gCX(),r=s.e +s=r==null?s.c:r +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}, +gtF(){var s=this.gCX(),r=s.e +s=r==null?s.c:r +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}, +gcH(a){switch(this.dy.a){case 0:return B.NB +case 1:return B.Nz +case 2:return B.NA +case 3:return B.NB}}, +gjU(){switch(this.dy.a){case 0:return 24 +case 1:return 24 +case 2:return 36 +case 3:return 24}}, +gES(){return new A.fk(this.fr&&this.dy===B.Pz?16:20,0,20,0)}, +gET(){var s,r=this,q=r.fy +if(q===$){s=A.B(r.dx) +r.fy!==$&&A.aq() +q=r.fy=s.p3}return q.as}} +A.aDm.prototype={ +l(a){return"FloatingActionButtonLocation"}} +A.aXE.prototype={ +aLF(){return!1}, +qh(a){var s=this.aLF()?4:0 +return new A.m(this.Yj(a,s),this.afz(a,s))}} +A.a1G.prototype={ +afz(a,b){var s=a.c,r=a.b.b,q=a.a.b,p=a.w.b,o=s-q-Math.max(16,a.f.d-(a.r.b-s)+16) +if(p>0)o=Math.min(o,s-p-q-16) +return(r>0?Math.min(o,s-r-q/2):o)+b}} +A.aCs.prototype={ +Yj(a,b){return(a.r.a-a.a.a)/2}} +A.aCt.prototype={ +Yj(a,b){switch(a.y.a){case 0:return 16+a.e.a-b +case 1:return A.bMJ(a,b)}}} +A.b3m.prototype={ +l(a){return"FloatingActionButtonLocation.centerFloat"}} +A.b50.prototype={ +l(a){return"FloatingActionButtonLocation.endFloat"}} +A.aDl.prototype={ +l(a){return"FloatingActionButtonAnimator"}} +A.bbC.prototype={ +Yg(a,b,c){if(c<0.5)return a +else return b}} +A.Qn.prototype={ +gj(a){var s=this,r=s.w.x +r===$&&A.b() +if(r>>16&255,r.gj(r)>>>8&255,r.gj(r)&255) +return s}if(a.p(0,B.F)){s=q.c +r=q.a +s=r==null?p:A.K(20,r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255) +return s}if(a.p(0,B.K)){s=q.b +r=q.a +s=r==null?p:A.K(31,r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255) +return s}}if(a.p(0,B.Q)){s=q.d +r=q.a +s=r==null?p:A.K(31,r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255) +return s}if(a.p(0,B.F)){s=q.c +r=q.a +s=r==null?p:A.K(20,r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255) +return s}if(a.p(0,B.K)){s=q.b +r=q.a +s=r==null?p:A.K(20,r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255) +return s}return p}, +l(a){return"{hovered: "+A.i(this.c)+", focused: "+A.i(this.b)+", pressed: "+A.i(this.d)+", otherwise: null}"}} +A.ahH.prototype={ +L(a){if(a.p(0,B.x))return this.b +return this.a}} +A.ahJ.prototype={ +gcj(){var s,r=this,q=r.fx +if(q===$){s=A.B(r.dy) +r.fx!==$&&A.aq() +q=r.fx=s.ax}return q}, +gcd(a){return B.amQ}, +gfq(){return new A.bt(new A.b6N(this),t.U)}, +gcG(){return new A.bt(new A.b6P(this),t.U)}, +gfn(a){return B.fE}, +gbT(a){return B.bL}, +gc7(){return B.bL}, +gdD(a){return B.kV}, +glv(){return B.kT}, +glt(){return B.e1}, +gjU(){return B.kS}, +gf7(){return null}, +gcH(a){return B.e0}, +giI(){return new A.bt(new A.b6O(),t.Y6)}, +gf5(){return B.h0}, +glH(){return A.B(this.dy).e}, +ghM(){return A.B(this.dy).x}} +A.b6N.prototype={ +$1(a){var s,r +if(a.p(0,B.x)){s=this.a.gcj().db +return A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.G))return this.a.gcj().b +s=this.a.gcj() +r=s.dy +return r==null?s.db:r}, +$S:6} +A.b6P.prototype={ +$1(a){var s,r,q=this +if(a.p(0,B.G)){if(a.p(0,B.Q)){s=q.a.gcj().b +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=q.a.gcj().b +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=q.a.gcj().b +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}}if(a.p(0,B.Q)){s=q.a.gcj() +r=s.dy +s=r==null?s.db:r +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=q.a.gcj() +r=s.dy +s=r==null?s.db:r +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=q.a.gcj() +r=s.dy +s=r==null?s.db:r +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return B.E}, +$S:6} +A.b6O.prototype={ +$1(a){if(a.p(0,B.x))return B.c2 +return B.cy}, +$S:56} +A.agT.prototype={ +gcj(){var s,r=this,q=r.fx +if(q===$){s=A.B(r.dy) +r.fx!==$&&A.aq() +q=r.fx=s.ax}return q}, +gcd(a){return new A.bt(new A.b5K(this),t.U)}, +gfq(){return new A.bt(new A.b5L(this),t.U)}, +gcG(){return new A.bt(new A.b5N(this),t.U)}, +gfn(a){return B.fE}, +gbT(a){return B.bL}, +gc7(){return B.bL}, +gdD(a){return B.kV}, +glv(){return B.kT}, +glt(){return B.e1}, +gjU(){return B.kS}, +gf7(){return null}, +gcH(a){return B.e0}, +giI(){return new A.bt(new A.b5M(),t.Y6)}, +gf5(){return B.h0}, +glH(){return A.B(this.dy).e}, +ghM(){return A.B(this.dy).x}} +A.b5K.prototype={ +$1(a){var s,r +if(a.p(0,B.x)){s=this.a.gcj().db +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.G))return this.a.gcj().b +s=this.a +if(s.fr){s=s.gcj() +r=s.dx +return r==null?s.cy:r}return s.gcj().b}, +$S:6} +A.b5L.prototype={ +$1(a){var s +if(a.p(0,B.x)){s=this.a.gcj().db +return A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.G))return this.a.gcj().c +s=this.a +if(s.fr)return s.gcj().b +return s.gcj().c}, +$S:6} +A.b5N.prototype={ +$1(a){var s,r=this +if(a.p(0,B.G)){if(a.p(0,B.Q)){s=r.a.gcj().c +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=r.a.gcj().c +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=r.a.gcj().c +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}}s=r.a +if(s.fr){if(a.p(0,B.Q)){s=s.gcj().b +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=s.gcj().b +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=s.gcj().b +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}}if(a.p(0,B.Q)){s=s.gcj().c +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=s.gcj().c +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=s.gcj().c +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return B.E}, +$S:6} +A.b5M.prototype={ +$1(a){if(a.p(0,B.x))return B.c2 +return B.cy}, +$S:56} +A.agU.prototype={ +gcj(){var s,r=this,q=r.fx +if(q===$){s=A.B(r.dy) +r.fx!==$&&A.aq() +q=r.fx=s.ax}return q}, +gcd(a){return new A.bt(new A.b5O(this),t.U)}, +gfq(){return new A.bt(new A.b5P(this),t.U)}, +gcG(){return new A.bt(new A.b5R(this),t.U)}, +gfn(a){return B.fE}, +gbT(a){return B.bL}, +gc7(){return B.bL}, +gdD(a){return B.kV}, +glv(){return B.kT}, +glt(){return B.e1}, +gjU(){return B.kS}, +gf7(){return null}, +gcH(a){return B.e0}, +giI(){return new A.bt(new A.b5Q(),t.Y6)}, +gf5(){return B.h0}, +glH(){return A.B(this.dy).e}, +ghM(){return A.B(this.dy).x}} +A.b5O.prototype={ +$1(a){var s,r +if(a.p(0,B.x)){s=this.a.gcj().db +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.G)){s=this.a.gcj() +r=s.w +return r==null?s.f:r}s=this.a +if(s.fr){s=s.gcj() +r=s.dx +return r==null?s.cy:r}s=s.gcj() +r=s.w +return r==null?s.f:r}, +$S:6} +A.b5P.prototype={ +$1(a){var s,r +if(a.p(0,B.x)){s=this.a.gcj().db +return A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.G)){s=this.a.gcj() +r=s.x +return r==null?s.r:r}s=this.a +if(s.fr){s=s.gcj() +r=s.dy +return r==null?s.db:r}s=s.gcj() +r=s.x +return r==null?s.r:r}, +$S:6} +A.b5R.prototype={ +$1(a){var s,r,q=this +if(a.p(0,B.G)){if(a.p(0,B.Q)){s=q.a.gcj() +r=s.x +s=r==null?s.r:r +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=q.a.gcj() +r=s.x +s=r==null?s.r:r +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=q.a.gcj() +r=s.x +s=r==null?s.r:r +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}}s=q.a +if(s.fr){if(a.p(0,B.Q)){s=s.gcj() +r=s.dy +s=r==null?s.db:r +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=s.gcj() +r=s.dy +s=r==null?s.db:r +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=s.gcj() +r=s.dy +s=r==null?s.db:r +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}}if(a.p(0,B.Q)){s=s.gcj() +r=s.x +s=r==null?s.r:r +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=s.gcj() +r=s.x +s=r==null?s.r:r +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=s.gcj() +r=s.x +s=r==null?s.r:r +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return B.E}, +$S:6} +A.b5Q.prototype={ +$1(a){if(a.p(0,B.x))return B.c2 +return B.cy}, +$S:56} +A.ajQ.prototype={ +gcj(){var s,r=this,q=r.fx +if(q===$){s=A.B(r.dy) +r.fx!==$&&A.aq() +q=r.fx=s.ax}return q}, +gcd(a){return new A.bt(new A.b91(this),t.U)}, +gfq(){return new A.bt(new A.b92(this),t.U)}, +gcG(){return new A.bt(new A.b94(this),t.U)}, +gfn(a){return B.fE}, +gbT(a){return B.bL}, +gc7(){return B.bL}, +gdD(a){return B.kV}, +glv(){return B.kT}, +glt(){return B.e1}, +gjU(){return B.kS}, +gf7(){return new A.bt(new A.b95(this),t.Sq)}, +gcH(a){return B.e0}, +giI(){return new A.bt(new A.b93(),t.Y6)}, +gf5(){return B.h0}, +glH(){return A.B(this.dy).e}, +ghM(){return A.B(this.dy).x}} +A.b91.prototype={ +$1(a){var s,r +if(a.p(0,B.x)){if(a.p(0,B.G)){s=this.a.gcj().db +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return B.E}if(a.p(0,B.G)){s=this.a.gcj() +r=s.id +return r==null?s.db:r}return B.E}, +$S:6} +A.b92.prototype={ +$1(a){var s,r +if(a.p(0,B.x)){s=this.a.gcj().db +return A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.G)){s=this.a.gcj() +r=s.k1 +return r==null?s.cy:r}s=this.a.gcj() +r=s.dy +return r==null?s.db:r}, +$S:6} +A.b94.prototype={ +$1(a){var s,r,q=this +if(a.p(0,B.G)){if(a.p(0,B.Q)){s=q.a.gcj() +r=s.k1 +s=r==null?s.cy:r +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=q.a.gcj() +r=s.k1 +s=r==null?s.cy:r +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=q.a.gcj() +r=s.k1 +s=r==null?s.cy:r +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}}if(a.p(0,B.Q)){s=q.a.gcj().db +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=q.a.gcj() +r=s.dy +s=r==null?s.db:r +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=q.a.gcj() +r=s.dy +s=r==null?s.db:r +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return B.E}, +$S:6} +A.b95.prototype={ +$1(a){var s,r +if(a.p(0,B.G))return null +else{if(a.p(0,B.x)){s=this.a.gcj().db +return new A.be(A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255),1,B.I,-1)}s=this.a.gcj() +r=s.fr +return new A.be(r==null?s.cx:r,1,B.I,-1)}}, +$S:807} +A.b93.prototype={ +$1(a){if(a.p(0,B.x))return B.c2 +return B.cy}, +$S:56} +A.apC.prototype={} +A.qB.prototype={ +gu(a){return J.T(this.a)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.qB&&J.j(b.a,this.a)}} +A.KZ.prototype={ +y8(a,b,c){return A.a2N(c,this.w)}, +dh(a){return!this.w.k(0,a.w)}} +A.ahL.prototype={} +A.xE.prototype={ +gavW(){var s,r=this.e +if(r==null)return B.a8 +s=r.gdD(r) +return s}, +a8(){return new A.Sl(new A.bq(null,t.C),B.m)}} +A.Sl.prototype={ +auy(){this.e=null}, +fd(){var s=this.e +if(s!=null)s.m() +this.rS()}, +anT(a){var s,r,q,p=this,o=null,n=p.e,m=p.a +if(n==null){n=m.e +m=A.bvf(a) +s=A.WM(a,o) +r=A.aIN(a,t.zd) +r.toString +q=$.ap.Y$.z.i(0,p.d).ga7() +q.toString +q=new A.L6(s,r,t.x.a(q),p.gaux()) +q.sbA(n) +q.sabE(m) +r.Kl(q) +p.e=q}else{n.sbA(m.e) +n=p.e +n.toString +n.sabE(A.bvf(a)) +n=p.e +n.toString +n.suX(A.WM(a,o))}n=p.a.c +return n==null?new A.eX(B.iV,o,o):n}, +A(a){var s=this,r=s.a.gavW() +s.a.toString +return new A.b4(r,new A.e4(s.ganS(),null),s.d)}} +A.L6.prototype={ +sbA(a){var s,r=this +if(J.j(a,r.f))return +r.f=a +s=r.e +if(s!=null)s.m() +s=r.f +r.e=s==null?null:s.A1(r.gavU()) +r.a.b_()}, +sabE(a){if(a===this.r)return +this.r=a +this.a.b_()}, +suX(a){if(a.k(0,this.w))return +this.w=a +this.a.b_()}, +avV(){this.a.b_()}, +m(){var s=this.e +if(s!=null)s.m() +this.rO()}, +N1(a,b){var s,r,q,p=this +if(p.e==null||!p.r)return +s=A.aK5(b) +r=p.b +q=p.w.Uh(r.gq(r)) +if(s==null){a.eo(0) +a.a5(0,b.a) +p.e.kD(a,B.i,q) +a.dg(0)}else p.e.kD(a,s,q)}} +A.tY.prototype={ +asB(a){var s +if(a===B.R&&!this.CW){s=this.ch +s===$&&A.b() +s.m() +this.rO()}}, +m(){var s=this.ch +s===$&&A.b() +s.m() +this.rO()}, +a3N(a,b,c){var s,r,q=this +a.eo(0) +s=q.f +if(s!=null)a.oT(0,s.eI(b,q.ax)) +switch(q.z.a){case 1:s=b.gbM() +r=q.Q +a.fZ(s,r==null?35:r,c) +break +case 0:s=q.as +if(!s.k(0,B.aG))a.d5(A.a7B(b,s.c,s.d,s.a,s.b),c) +else a.ey(b,c) +break}a.dg(0)}, +N1(a,b){var s,r,q,p=this,o=$.au().bk(),n=p.e,m=p.ay +m===$&&A.b() +s=m.a +o.saf(0,A.K(m.b.a5(0,s.gj(s)),n.gj(n)>>>16&255,n.gj(n)>>>8&255,n.gj(n)&255)) +r=A.aK5(b) +n=p.at +if(n!=null)q=n.$0() +else{n=p.b +n=n.gq(n) +q=new A.L(0,0,0+n.a,0+n.b)}if(r==null){a.eo(0) +a.a5(0,b.a) +p.a3N(a,q,o) +a.dg(0)}else p.a3N(a,q.dq(r),o)}} +A.bfw.prototype={ +$0(){var s=this.a +s=s.gq(s) +return new A.L(0,0,0+s.a,0+s.b)}, +$S:127} +A.b7a.prototype={ +a91(a,b,c,d,e,f,g,a0,a1,a2,a3,a4){var s,r,q,p,o,n,m,l,k,j,i=null,h=b==null?B.aG:b +if(a1==null){if(a2!=null){s=a2.$0() +r=new A.U(s.c-s.a,s.d-s.b)}else r=a3.gq(a3) +s=Math.max(r.E5(0,B.i).ge9(),new A.m(0+r.a,0).a4(0,new A.m(0,0+r.b)).ge9())/2}else s=a1 +h=new A.L7(a0,h,s,A.bRL(a3,d,a2),a4,c,f,e,a3,g) +q=e.D +p=A.bx(B.A,i,B.fi,0,i,1,i,q) +o=e.geG() +p.cF() +n=p.dw$ +n.b=!0 +n.a.push(o) +p.bS(0) +h.cx=p +n=c.gj(c) +m=t.m +l=t.Hd +h.CW=new A.ax(m.a(p),new A.u_(0,n>>>24&255),l.h("ax")) +n=A.bx(B.A,i,B.ei,0,i,1,i,q) +n.cF() +p=n.dw$ +p.b=!0 +p.a.push(o) +n.bS(0) +h.ch=n +p=t.Y +k=$.bAS() +j=p.h("dz") +h.ay=new A.ax(m.a(n),new A.dz(k,new A.aR(s*0.3,s+5,p),j),j.h("ax")) +q=A.bx(B.A,i,B.va,0,i,1,i,q) +q.cF() +j=q.dw$ +j.b=!0 +j.a.push(o) +q.cF() +o=q.ej$ +o.b=!0 +o.a.push(h.gavX()) +h.db=q +o=c.gj(c) +j=$.bAT() +l=l.h("dz") +h.cy=new A.ax(m.a(q),new A.dz(j,new A.u_(o>>>24&255,0),l),l.h("ax")) +e.Kl(h) +return h}} +A.L7.prototype={ +zV(a){var s=this.ch +s===$&&A.b() +s.e=B.a25 +s.bS(0) +s=this.cx +s===$&&A.b() +s.bS(0) +s=this.db +s===$&&A.b() +s.z=B.aN +s.kh(1,B.Y,B.va)}, +aI(a){var s,r=this,q=r.cx +q===$&&A.b() +q.h8(0) +q=r.cx.x +q===$&&A.b() +s=1-q +q=r.db +q===$&&A.b() +q.sj(0,s) +if(s<1){q=r.db +q.z=B.aN +q.kh(1,B.Y,B.fi)}}, +avY(a){if(a===B.a9)this.m()}, +m(){var s=this,r=s.ch +r===$&&A.b() +r.m() +r=s.cx +r===$&&A.b() +r.m() +r=s.db +r===$&&A.b() +r.m() +s.rO()}, +N1(a,b){var s,r,q,p,o,n,m=this,l=m.cx +l===$&&A.b() +l=l.r +if(l!=null&&l.a!=null){l=m.CW +l===$&&A.b() +s=l.a +r=l.b.a5(0,s.gj(s))}else{l=m.cy +l===$&&A.b() +s=l.a +r=l.b.a5(0,s.gj(s))}q=$.au().bk() +l=m.e +q.saf(0,A.K(r,l.gj(l)>>>16&255,l.gj(l)>>>8&255,l.gj(l)&255)) +l=m.at +if(l!=null)p=l.$0() +else p=null +if(p!=null)s=p.gbM() +else{s=m.b +s=s.gq(s).mr(B.i)}o=m.ch +o===$&&A.b() +o=o.x +o===$&&A.b() +o=A.mb(m.z,s,B.aO.a5(0,o)) +o.toString +s=m.ay +s===$&&A.b() +n=s.a +n=s.b.a5(0,n.gj(n)) +m.acs(m.Q,a,o,l,m.f,q,n,m.ax,b)}} +A.bfv.prototype={ +$0(){var s=this.a +s=s.gq(s) +return new A.L(0,0,0+s.a,0+s.b)}, +$S:127} +A.b7b.prototype={ +a91(a,b,c,d,e,f,g,h,i,j,k,a0){var s,r,q,p,o,n=null,m=b==null?B.aG:b,l=i==null?A.bRQ(k,d,j,h):i +m=new A.L8(h,m,l,A.bRK(k,d,j),!d,a0,c,f,e,k,g) +s=e.D +r=A.bx(B.A,n,B.ei,0,n,1,n,s) +q=e.geG() +r.cF() +p=r.dw$ +p.b=!0 +p.a.push(q) +r.bS(0) +m.CW=r +p=t.Y +o=t.m +m.ch=new A.ax(o.a(r),new A.aR(0,l,p),p.h("ax")) +s=A.bx(B.A,n,B.T,0,n,1,n,s) +s.cF() +p=s.dw$ +p.b=!0 +p.a.push(q) +s.cF() +q=s.ej$ +q.b=!0 +q.a.push(m.gavZ()) +m.cy=s +q=c.gj(c) +m.cx=new A.ax(o.a(s),new A.u_(q>>>24&255,0),t.Hd.h("ax")) +e.Kl(m) +return m}} +A.L8.prototype={ +zV(a){var s=B.e.eC(this.as/1),r=this.CW +r===$&&A.b() +r.e=A.dW(0,s,0) +r.bS(0) +this.cy.bS(0)}, +aI(a){var s=this.cy +if(s!=null)s.bS(0)}, +aw_(a){if(a===B.a9)this.m()}, +m(){var s=this,r=s.CW +r===$&&A.b() +r.m() +s.cy.m() +s.cy=null +s.rO()}, +N1(a,b){var s,r,q=this,p=$.au().bk(),o=q.e,n=q.cx +n===$&&A.b() +s=n.a +p.saf(0,A.K(n.b.a5(0,s.gj(s)),o.gj(o)>>>16&255,o.gj(o)>>>8&255,o.gj(o)&255)) +r=q.z +if(q.ax){o=q.b +o=o.gq(o).mr(B.i) +n=q.CW +n===$&&A.b() +n=n.x +n===$&&A.b() +r=A.mb(r,o,n)}r.toString +o=q.ch +o===$&&A.b() +n=o.a +n=o.b.a5(0,n.gj(n)) +q.acs(q.Q,a,r,q.at,q.f,p,n,q.ay,b)}} +A.u0.prototype={ +zV(a){}, +aI(a){}, +saf(a,b){if(b.k(0,this.e))return +this.e=b +this.a.b_()}, +sUx(a){if(J.j(a,this.f))return +this.f=a +this.a.b_()}, +acs(a,b,c,d,e,f,g,h,i){var s,r=A.aK5(i) +b.eo(0) +if(r==null)b.a5(0,i.a) +else b.bi(0,r.a,r.b) +if(d!=null){s=d.$0() +if(e!=null)b.oT(0,e.eI(s,h)) +else if(!a.k(0,B.aG))b.wV(A.a7B(s,a.c,a.d,a.a,a.b)) +else b.uV(s)}b.fZ(c,g,f) +b.dg(0)}} +A.CS.prototype={} +A.T9.prototype={ +dh(a){return this.f!==a.f}} +A.CR.prototype={ +C_(a){return null}, +A(a){var s=this,r=a.aj(t.sZ),q=r==null?null:r.f +return new A.Sk(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,s.k3,s.k4,s.ok,q,s.gO9(),s.gaHU(),s.p1,s.p2,null)}, +aHV(a){return!0}} +A.Sk.prototype={ +a8(){return new A.Sj(A.I(t.R9,t.Pr),new A.bd(A.a([],t.ML),t.yw),null,B.m)}} +A.vv.prototype={ +J(){return"_HighlightType."+this.b}} +A.Sj.prototype={ +gaKM(){var s=this.r +s=s.gbp(s) +s=new A.ba(s,new A.b78(),A.l(s).h("ba")) +return!s.gak(s)}, +Wf(a,b){var s,r=this.y,q=r.a,p=q.length +if(b){r.b=!0 +q.push(a)}else r.E(0,a) +s=q.length!==0 +if(s!==(p!==0)){r=this.a.p1 +if(r!=null)r.Wf(this,s)}}, +aF4(a){var s=this,r=s.z +if(r!=null)r.aI(0) +s.z=null +r=s.c +r.toString +s.SK(r) +r=s.e +if(r!=null)r.zV(0) +s.e=null +r=s.a +if(r.d!=null){if(r.id){r=s.c +r.toString +A.aCy(r)}r=s.a.d +if(r!=null)r.$0()}s.z=A.d0(B.aX,new A.b74(s))}, +Z5(a){var s=this.c +s.toString +this.SK(s) +this.LU()}, +agU(){return this.Z5(null)}, +agS(){var s=this.c +s.toString +this.SK(s) +this.aaH()}, +VB(){this.ad(new A.b77())}, +ghr(){var s=this.a.p4 +if(s==null){s=this.x +s.toString}return s}, +Fm(){var s,r,q=this +if(q.a.p4==null)q.x=A.bl0(null) +s=q.ghr() +r=q.a +r.toString +s.iP(0,B.x,!(q.m9(r)||q.ma(r))) +q.ghr().P(0,q.gxs())}, +aX(){this.alR() +this.Fm() +$.ap.Y$.f.a.d.F(0,this.gaaD())}, +b1(a){var s,r,q,p,o=this +o.bh(a) +s=a.p4 +if(o.a.p4!=s){if(s!=null)s.H(0,o.gxs()) +if(o.a.p4!=null){s=o.x +if(s!=null){s.ok$=$.aH() +s.k4$=0}o.x=null}o.Fm()}s=o.a +if(s.cx!=a.cx||s.CW!==a.CW||!J.j(s.cy,a.cy)){s=o.r +r=s.i(0,B.h2) +if(r!=null){q=r.ch +q===$&&A.b() +q.m() +r.rO() +o.XQ(B.h2,!1,o.f)}p=s.i(0,B.PC) +if(p!=null){s=p.ch +s===$&&A.b() +s.m() +p.rO()}}if(!J.j(o.a.db,a.db))o.aE9() +s=o.a +s.toString +s=o.m9(s)||o.ma(s) +if(s!==(o.m9(a)||o.ma(a))){s=o.ghr() +q=o.a +q.toString +s.iP(0,B.x,!(o.m9(q)||o.ma(q))) +s=o.a +s.toString +if(!(o.m9(s)||o.ma(s))){o.ghr().iP(0,B.Q,!1) +r=o.r.i(0,B.h2) +if(r!=null){s=r.ch +s===$&&A.b() +s.m() +r.rO()}}o.XQ(B.h2,!1,o.f)}o.XP()}, +m(){var s,r=this +$.ap.Y$.f.a.d.E(0,r.gaaD()) +r.ghr().H(0,r.gxs()) +s=r.x +if(s!=null){s.ok$=$.aH() +s.k4$=0}s=r.z +if(s!=null)s.aI(0) +r.z=null +r.b0()}, +gGV(){if(!this.gaKM()){var s=this.d +s=s!=null&&s.a!==0}else s=!0 +return s}, +afi(a){switch(a.a){case 0:return B.T +case 1:case 2:this.a.toString +return B.ek}}, +XQ(a,b,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null,e=g.r,d=e.i(0,a),c=a.a +switch(c){case 0:g.ghr().iP(0,B.Q,a0) +break +case 1:if(b)g.ghr().iP(0,B.F,a0) +break +case 2:break}if(a===B.eX){s=g.a.p1 +if(s!=null)s.Wf(g,a0)}s=d==null +if(a0===(!s&&d.CW))return +if(a0)if(s){s=g.a.fx +r=s==null?f:s.L(g.ghr().a) +if(r==null){s=g.c +s.toString +q=A.B(s) +switch(c){case 0:r=g.a.fr +if(r==null)r=q.cy +break +case 2:r=g.a.dx +if(r==null)r=q.cx +break +case 1:r=g.a.dy +if(r==null)r=q.dx +break}}s=g.c.ga7() +s.toString +t.x.a(s) +p=g.c +p.toString +p=A.aIN(p,t.zd) +p.toString +o=g.a +o.toString +o=g.m9(o)||g.ma(o)?r:A.K(0,r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255) +n=g.a +m=n.CW +l=n.cx +k=n.cy +j=n.db +n=n.p2.$1(s) +i=g.c.aj(t.I) +i.toString +h=g.afi(a) +if(k==null)k=B.aG +s=new A.tY(m,l,k,n,i.w,o,j,p,s,new A.b79(g,a)) +h=A.bx(B.A,f,h,0,f,1,f,p.D) +h.cF() +j=h.dw$ +j.b=!0 +j.a.push(p.geG()) +h.cF() +j=h.ej$ +j.b=!0 +j.a.push(s.gasA()) +h.bS(0) +s.ch=h +j=s.e +j=j.gj(j) +s.ay=new A.ax(t.m.a(h),new A.u_(0,j>>>24&255),t.Hd.h("ax")) +p.Kl(s) +e.n(0,a,s) +g.y6()}else{d.CW=!0 +e=d.ch +e===$&&A.b() +e.bS(0)}else{d.CW=!1 +e=d.ch +e===$&&A.b() +e.d3(0)}switch(c){case 0:e=g.a.at +if(e!=null)e.$1(a0) +break +case 1:if(b){e=g.a.ax +if(e!=null)e.$1(a0)}break +case 2:break}}, +u9(a,b){return this.XQ(a,!0,b)}, +aE9(){var s,r,q,p=this +for(s=p.r,s=s.gbp(s),r=A.l(s),r=r.h("@<1>").V(r.z[1]),s=new A.bT(J.al(s.a),s.b,r.h("bT<1,2>")),r=r.z[1];s.v();){q=s.a +if(q==null)q=r.a(q) +if(q!=null)q.sUx(p.a.db)}s=p.e +if(s!=null)s.sUx(p.a.db) +s=p.d +if(s!=null&&s.a!==0)for(r=A.l(s),s=new A.mF(s,s.CL(),r.h("mF<1>")),r=r.c;s.v();){q=s.d +if(q==null)q=r.a(q) +q.sUx(p.a.db)}}, +apV(a){var s,r,q,p,o,n,m,l,k,j,i=this,h={},g=i.c +g.toString +g=A.aIN(g,t.zd) +g.toString +s=i.c.ga7() +s.toString +t.x.a(s) +r=s.jy(a) +q=i.a.fx +q=q==null?null:q.L(i.ghr().a) +p=q==null?i.a.fy:q +if(p==null){q=i.c +q.toString +p=A.B(q).k3}q=i.a +o=q.ch?q.p2.$1(s):null +q=i.a +n=q.cy +m=q.db +h.a=null +q=q.go +if(q==null){q=i.c +q.toString +q=A.B(q).x}l=i.a +k=l.ch +l=l.cx +j=i.c.aj(t.I) +j.toString +return h.a=q.a91(0,n,p,k,g,m,new A.b73(h,i),r,l,o,s,j.w)}, +aJH(a){if(this.c==null)return +this.ad(new A.b76(this))}, +gaC6(){var s,r=this,q=r.c +q.toString +q=A.d9(q,B.h3) +s=q==null?null:q.ch +switch((s==null?B.fG:s).a){case 0:q=r.a +q.toString +return(r.m9(q)||r.ma(q))&&r.Q +case 1:return r.Q}}, +XP(){var s,r=$.ap.Y$.f.a.b +switch((r==null?A.Ag():r).a){case 0:s=!1 +break +case 1:s=this.gaC6() +break +default:s=null}this.u9(B.PC,s)}, +aJJ(a){var s,r=this +r.Q=a +r.ghr().iP(0,B.K,a) +r.XP() +s=r.a.k2 +if(s!=null)s.$1(a)}, +aay(a){if(this.y.a.length!==0)return +this.aCx(a)}, +aKt(a){var s +this.aay(a) +s=this.a.e +if(s!=null)s.$1(a)}, +aKv(a){this.a.toString}, +aKi(a){this.aay(a) +this.a.toString}, +aKk(a){this.a.toString}, +a5r(a,b){var s,r,q,p,o=this +if(a!=null){s=a.ga7() +s.toString +t.x.a(s) +r=s.gq(s) +r=new A.L(0,0,0+r.a,0+r.b).gbM() +q=A.cL(s.cl(0,null),r)}else q=b.a +o.ghr().iP(0,B.Q,!0) +p=o.apV(q) +s=o.d;(s==null?o.d=A.dI(t.nQ):s).F(0,p) +s=o.e +if(s!=null)s.aI(0) +o.e=p +o.y6() +o.u9(B.eX,!0)}, +aCx(a){return this.a5r(null,a)}, +SK(a){return this.a5r(a,null)}, +LU(){var s=this,r=s.e +if(r!=null)r.zV(0) +s.e=null +s.u9(B.eX,!1) +r=s.a +if(r.d!=null){if(r.id){r=s.c +r.toString +A.aCy(r)}r=s.a.d +if(r!=null)r.$0()}}, +aKr(){var s=this,r=s.e +if(r!=null)r.aI(0) +s.e=null +r=s.a.r +if(r!=null)r.$0() +s.u9(B.eX,!1)}, +aaH(){var s=this,r=s.e +if(r!=null)r.zV(0) +s.e=null +r=s.a +if(r.x!=null){if(r.id){r=s.c +r.toString +A.aCx(r)}s.a.x.$0()}}, +aKe(){var s=this,r=s.e +if(r!=null)r.zV(0) +s.e=null +s.u9(B.eX,!1) +s.a.toString}, +aKg(){var s=this,r=s.e +if(r!=null)r.aI(0) +s.e=null +s.a.toString +s.u9(B.eX,!1)}, +fd(){var s,r,q,p,o,n,m,l=this,k=l.d +if(k!=null){l.d=null +for(s=A.l(k),k=new A.mF(k,k.CL(),s.h("mF<1>")),s=s.c;k.v();){r=k.d;(r==null?s.a(r):r).m()}l.e=null}for(k=l.r,s=A.ie(k,k.r,A.l(k).c);s.v();){r=s.d +q=k.i(0,r) +if(q!=null){p=q.ch +p===$&&A.b() +p.r.m() +p.r=null +o=p.ej$ +o.b=!1 +B.b.ab(o.a) +n=o.c +if(n===$){m=A.dI(o.$ti.c) +o.c!==$&&A.aq() +o.c=m +n=m}if(n.a>0){n.b=n.c=n.d=n.e=null +n.a=0}o=p.dw$ +o.b=!1 +B.b.ab(o.a) +n=o.c +if(n===$){m=A.dI(o.$ti.c) +o.c!==$&&A.aq() +o.c=m +n=m}if(n.a>0){n.b=n.c=n.d=n.e=null +n.a=0}p.Cp() +q.rO()}k.n(0,r,null)}k=l.a.p1 +if(k!=null)k.Wf(l,!1) +l.alQ()}, +m9(a){var s +if(a.d==null)if(a.x==null)s=a.e!=null +else s=!0 +else s=!0 +return s}, +ma(a){return!1}, +aJZ(a){var s=this,r=s.f=!0,q=s.a +q.toString +if(!s.m9(q)?s.ma(q):r)s.u9(B.h2,s.f)}, +aK0(a){this.f=!1 +this.u9(B.h2,!1)}, +gaw0(){var s,r=this,q=r.c +q.toString +q=A.d9(q,B.h3) +s=q==null?null:q.ch +switch((s==null?B.fG:s).a){case 0:q=r.a +q.toString +return(r.m9(q)||r.ma(q))&&r.a.ok +case 1:return!0}}, +A(a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0=null +a.OF(a1) +s=new A.b75(a,a1) +for(r=a.r,q=A.ie(r,r.r,A.l(r).c);q.v();){p=q.d +o=r.i(0,p) +if(o!=null)o.saf(0,s.$1(p))}r=a.e +if(r!=null){q=a.a.fx +q=q==null?a0:q.L(a.ghr().a) +if(q==null)q=a.a.fy +r.saf(0,q==null?A.B(a1).k3:q)}r=a.a.ay +if(r==null)r=B.df +n=A.ce(r,a.ghr().a,t.Pb) +m=a.w +if(m===$){r=a.gaF3() +q=t.h +p=t.o +l=A.am([B.iA,new A.cz(r,new A.bd(A.a([],q),p),t.wY),B.Ph,new A.cz(r,new A.bd(A.a([],q),p),t.nz)],t.n,t.od) +a.w!==$&&A.aq() +a.w=l +m=l}r=a.a.k4 +q=a.gaw0() +p=a.a +o=p.k3 +k=p.d +k=k==null?a0:a.gagT() +j=p.x +j=j==null?a0:a.gagR() +p=a.m9(p)?a.gaKs():a0 +i=a.a +i.toString +i=a.m9(i)?a.gaKu():a0 +h=a.a +h.toString +h=a.m9(h)?a.gVC():a0 +g=a.a +g.toString +g=a.m9(g)?a.gaKq():a0 +f=a.a +e=f.x!=null?a.gaJT():a0 +f=a.ma(f)?a.gaKh():a0 +d=a.a +d.toString +d=a.ma(d)?a.gaKj():a0 +c=a.a +c.toString +c=a.ma(c)?a.gaKd():a0 +b=a.a +b.toString +b=a.ma(b)?a.gaKf():a0 +i=A.dY(B.bE,a.a.c,B.D,!0,a0,a0,a0,a0,a0,a0,a0,e,a0,a0,a0,a0,a0,a0,a0,a0,a0,c,b,f,d,h,g,p,i,a0,!1,B.am) +return new A.T9(a,A.pY(m,A.tJ(o,q,A.nj(A.bGG(new A.bu(A.bL(a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,j,a0,a0,a0,a0,a0,a0,a0,a0,a0,k,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0),!1,!1,!1,!1,i,a0),n),n,a0,a.gaJY(),a.gaK_(),a0),a0,a0,a0,r,!0,a0,a.gaJI(),a0,a0,a0,a0)),a0)}, +$ibmt:1} +A.b78.prototype={ +$1(a){return a!=null}, +$S:865} +A.b74.prototype={ +$0(){this.a.u9(B.eX,!1)}, +$S:0} +A.b77.prototype={ +$0(){}, +$S:0} +A.b79.prototype={ +$0(){var s=this.a +s.r.n(0,this.b,null) +s.y6()}, +$S:0} +A.b73.prototype={ +$0(){var s,r=this.b,q=r.d +if(q!=null){s=this.a +q.E(0,s.a) +if(r.e==s.a)r.e=null +r.y6()}}, +$S:0} +A.b76.prototype={ +$0(){this.a.XP()}, +$S:0} +A.b75.prototype={ +$1(a){var s,r,q=this,p=A.B(q.b) +switch(a.a){case 0:s=q.a +r=s.a.fx +r=r==null?null:r.L(B.aqu) +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.L(B.aqq) +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.L(B.aqj) +s=r==null?s.a.dy:r +return s==null?p.dx:s}}, +$S:876} +A.a30.prototype={} +A.W6.prototype={ +aX(){this.b9() +if(this.gGV())this.CS()}, +fd(){var s=this.mX$ +if(s!=null){s.ag() +s.eK() +this.mX$=null}this.rS()}} +A.m0.prototype={} +A.nM.prototype={ +gAW(){return!1}, +Uf(a){var s=a==null?this.a:a +return new A.nM(this.b,s)}, +gpO(){return new A.aK(0,0,0,this.a.b)}, +c0(a,b){return new A.nM(B.qD,this.a.c0(0,b))}, +hp(a,b){var s=$.au().d1(),r=a.a,q=a.b +s.qA(new A.L(r,q,r+(a.c-r),q+Math.max(0,a.d-q-this.a.b))) +return s}, +qg(a){return this.hp(a,null)}, +eI(a,b){var s=$.au().d1() +s.fT(this.b.e1(a)) +return s}, +lP(a){return this.eI(a,null)}, +nE(a,b,c,d){a.d5(this.b.e1(b),c)}, +gkE(){return!0}, +f0(a,b){var s,r +if(a instanceof A.nM){s=A.bp(a.a,this.a,b) +r=A.mU(a.b,this.b,b) +r.toString +return new A.nM(r,s)}return this.HP(a,b)}, +f1(a,b){var s,r +if(a instanceof A.nM){s=A.bp(this.a,a.a,b) +r=A.mU(this.b,a.b,b) +r.toString +return new A.nM(r,s)}return this.HQ(a,b)}, +N0(a,b,c,d,e,f){var s=this.b +if(!s.c.k(0,B.L)||!s.d.k(0,B.L))a.oT(0,this.eI(b,f)) +s=b.d +a.j8(new A.m(b.a,s),new A.m(b.c,s),this.a.kH())}, +im(a,b,c){return this.N0(a,b,0,0,null,c)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.nM&&b.a.k(0,s.a)&&b.b.k(0,s.b)}, +gu(a){return A.X(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.mc.prototype={ +gAW(){return!0}, +Uf(a){var s=a==null?this.a:a +return new A.mc(this.b,this.c,s)}, +gpO(){var s=this.a.b +return new A.aK(s,s,s,s)}, +c0(a,b){var s=this.a.c0(0,b) +return new A.mc(this.b*b,this.c.av(0,b),s)}, +f0(a,b){var s,r +if(a instanceof A.mc){s=A.mU(a.c,this.c,b) +s.toString +r=A.bp(a.a,this.a,b) +return new A.mc(a.b,s,r)}return this.HP(a,b)}, +f1(a,b){var s,r +if(a instanceof A.mc){s=A.mU(this.c,a.c,b) +s.toString +r=A.bp(this.a,a.a,b) +return new A.mc(a.b,s,r)}return this.HQ(a,b)}, +hp(a,b){var s=$.au().d1() +s.fT(this.c.e1(a).e6(-this.a.b)) +return s}, +qg(a){return this.hp(a,null)}, +eI(a,b){var s=$.au().d1() +s.fT(this.c.e1(a)) +return s}, +lP(a){return this.eI(a,null)}, +nE(a,b,c,d){a.d5(this.c.e1(b),c)}, +gkE(){return!0}, +a1B(a4,a5,a6,a7){var s,r,q,p,o,n,m,l,k,j,i,h,g=a5.ym(),f=g.a,e=g.b,d=g.e,c=g.f,b=g.c,a=g.r,a0=a*2,a1=b-a0,a2=g.w,a3=new A.L(a1,e,a1+a0,e+a2*2) +a0=g.x +a1=a0*2 +s=b-a1 +r=g.d +q=g.y +p=q*2 +o=r-p +n=g.Q +m=n*2 +l=r-m +k=g.z +j=$.au().d1() +if(!new A.b8(d,c).k(0,B.L))j.wJ(new A.L(f,e,f+d*2,e+c*2),3.141592653589793,Math.acos(A.V(1-a6/d,0,1))) +else j.fh(0,f-this.a.b/2,e) +if(a6>d)j.d_(0,f+a6,e) +d=a6+a7 +i=b-f +if(d#"+A.br(this)}} +A.Sn.prototype={ +hk(a){var s=A.fo(this.a,this.b,a) +s.toString +return t.U1.a(s)}} +A.ahV.prototype={ +aE(a,b){var s,r,q,p=this,o=p.b,n=p.c.a5(0,o.gj(o)),m=new A.L(0,0,0+b.a,0+b.b) +o=p.x +o=p.w.a5(0,o.gj(o)) +o.toString +s=A.BG(o,p.r) +if((s.gj(s)>>>24&255)>0){o=n.eI(m,p.f) +r=$.au().bk() +r.saf(0,s) +r.scA(0,B.bj) +a.e3(o,r)}o=p.e +r=o.a +q=p.d +n.N0(a,m,o.b,q.gj(q),r,p.f)}, +fv(a){var s=this +return s.b!==a.b||s.x!==a.x||s.d!==a.d||s.c!==a.c||!s.e.k(0,a.e)||s.f!==a.f}, +l(a){return"#"+A.br(this)}} +A.QG.prototype={ +a8(){return new A.aev(null,null,B.m)}} +A.aev.prototype={ +aX(){var s,r=this,q=null +r.b9() +r.e=A.bx(B.A,q,B.a2_,0,q,1,r.a.w?1:0,r) +s=A.bx(B.A,q,B.dI,0,q,1,q,r) +r.d=s +r.f=A.c5(B.a6,s,new A.jO(B.a6)) +s=r.a.c +r.r=new A.Sn(s,s) +r.w=A.c5(B.Y,r.e,q) +r.x=new A.dG(B.E,r.a.r)}, +m(){var s=this.d +s===$&&A.b() +s.m() +s=this.e +s===$&&A.b() +s.m() +this.alx()}, +b1(a){var s,r,q=this +q.bh(a) +s=a.c +if(!q.a.c.k(0,s)){q.r=new A.Sn(s,q.a.c) +s=q.d +s===$&&A.b() +s.sj(0,0) +s.bS(0)}if(!q.a.r.k(0,a.r))q.x=new A.dG(B.E,q.a.r) +s=q.a.w +if(s!==a.w){r=q.e +if(s){r===$&&A.b() +r.bS(0)}else{r===$&&A.b() +r.d3(0)}}}, +A(a){var s,r,q,p,o,n,m,l,k=this,j=k.f +j===$&&A.b() +s=k.a.d +r=k.e +r===$&&A.b() +r=A.a([j,s,r],t.Eo) +s=k.f +j=k.r +j===$&&A.b() +q=k.a +p=q.e +q=q.d +o=a.aj(t.I) +o.toString +n=k.a.f +m=k.x +m===$&&A.b() +l=k.w +l===$&&A.b() +return A.iB(null,new A.ahV(s,j,p,q,o.w,n,m,l,new A.vA(r)),null,null,B.y)}, +$iaP:1} +A.amB.prototype={ +gaQ6(){var s=t.m.a(this.c),r=s.gj(s) +if(r<=0.25)return-r*4 +else if(r<0.75)return(r-0.5)*4 +else return(1-r)*4*4}, +A(a){return A.zO(null,this.e,null,A.ng(this.gaQ6(),0,0),!0)}} +A.S3.prototype={ +a8(){return new A.S4(null,null,B.m)}} +A.S4.prototype={ +gt1(){return this.a.w!=null||!1}, +aX(){var s,r=this +r.b9() +r.d=A.bx(B.A,null,B.dI,0,null,1,null,r) +if(r.gt1()){r.f=r.CC() +r.d.sj(0,1)}else r.a.toString +s=r.d +s.cF() +s=s.dw$ +s.b=!0 +s.a.push(r.gRq())}, +m(){var s=this.d +s===$&&A.b() +s.m() +this.alP()}, +Rr(){this.ad(new A.b6F())}, +b1(a){var s,r=this +r.bh(a) +s=r.a.w!=null +if(s!==(a.w!=null)||!1)if(s){r.f=r.CC() +s=r.d +s===$&&A.b() +s.bS(0)}else{s=r.d +s===$&&A.b() +s.d3(0)}}, +CC(){var s,r,q,p,o,n=null,m=this.d +m===$&&A.b() +s=new A.aR(B.anV,B.i,t.Ni).a5(0,m.gj(m)) +r=this.a +q=r.w +q.toString +p=r.x +o=r.c +o=A.P(q,r.y,B.ad,n,n,p,o,n) +s=A.brK(o,!0,s) +return new A.bu(A.bL(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n),!0,!1,!1,!1,new A.cY(m,!1,s,n),n)}, +A(a){var s=this,r=s.d +r===$&&A.b() +if(r.gaP(r)===B.R){s.f=null +s.a.toString +s.e=null +return B.a1}r=s.d +if(r.gaP(r)===B.a9){s.e=null +if(s.gt1())return s.f=s.CC() +else{s.f=null +return B.a1}}if(s.e==null&&s.gt1())return s.CC() +if(s.f==null)s.a.toString +if(s.gt1()){r=t.Y +return A.fp(B.bu,A.a([new A.cY(new A.ax(s.d,new A.aR(1,0,r),r.h("ax")),!1,s.e,null),s.CC()],t.p),B.C,B.aJ,null)}s.a.toString +return B.a1}, +$iaP:1} +A.b6F.prototype={ +$0(){}, +$S:0} +A.Ky.prototype={ +J(){return"FloatingLabelBehavior."+this.b}} +A.a1X.prototype={ +gu(a){return B.f.gu(-1)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.a1X&&!0}, +l(a){return A.bIh(-1)}} +A.iq.prototype={ +J(){return"_DecorationSlot."+this.b}} +A.afS.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.afS&&b.a.k(0,s.a)&&b.c===s.c&&b.d===s.d&&b.e.k(0,s.e)&&b.f.k(0,s.f)&&b.r.k(0,s.r)&&b.x==s.x&&b.y.k(0,s.y)&&J.j(b.z,s.z)&&J.j(b.Q,s.Q)&&J.j(b.as,s.as)&&J.j(b.at,s.at)&&J.j(b.ax,s.ax)&&J.j(b.ay,s.ay)&&J.j(b.ch,s.ch)&&J.j(b.CW,s.CW)&&b.cx.rP(0,s.cx)&&J.j(b.cy,s.cy)&&b.db.rP(0,s.db)}, +gu(a){var s=this +return A.X(s.a,s.c,s.d,s.e,s.f,s.r,!1,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)}, +geD(a){return this.z}} +A.baG.prototype={} +A.Tw.prototype={ +geD(a){return this.d9$.i(0,B.aE)}, +ghR(a){var s,r=A.a([],t.Ik),q=this.d9$ +if(q.i(0,B.aE)!=null){s=q.i(0,B.aE) +s.toString +r.push(s)}if(q.i(0,B.bg)!=null){s=q.i(0,B.bg) +s.toString +r.push(s)}if(q.i(0,B.ay)!=null){s=q.i(0,B.ay) +s.toString +r.push(s)}if(q.i(0,B.bc)!=null){s=q.i(0,B.bc) +s.toString +r.push(s)}if(q.i(0,B.ba)!=null){s=q.i(0,B.ba) +s.toString +r.push(s)}if(q.i(0,B.bb)!=null){s=q.i(0,B.bb) +s.toString +r.push(s)}if(q.i(0,B.aB)!=null){s=q.i(0,B.aB) +s.toString +r.push(s)}if(q.i(0,B.bl)!=null){s=q.i(0,B.bl) +s.toString +r.push(s)}if(q.i(0,B.bm)!=null){s=q.i(0,B.bm) +s.toString +r.push(s)}if(q.i(0,B.b3)!=null){s=q.i(0,B.b3) +s.toString +r.push(s)}if(q.i(0,B.dv)!=null){q=q.i(0,B.dv) +q.toString +r.push(q)}return r}, +sbA(a){if(this.B.k(0,a))return +this.B=a +this.aa()}, +scz(a){if(this.W===a)return +this.W=a +this.aa()}, +saPy(a,b){if(this.a6===b)return +this.a6=b +this.aa()}, +saPx(a){return}, +sqV(a){if(this.ao===a)return +this.ao=a +this.bY()}, +sV7(a){return}, +gRv(){var s=this.B.f.gAW() +return s}, +jv(a){var s,r=this.d9$ +if(r.i(0,B.aE)!=null){s=r.i(0,B.aE) +s.toString +a.$1(s)}if(r.i(0,B.ba)!=null){s=r.i(0,B.ba) +s.toString +a.$1(s)}if(r.i(0,B.ay)!=null){s=r.i(0,B.ay) +s.toString +a.$1(s)}if(r.i(0,B.aB)!=null){s=r.i(0,B.aB) +s.toString +a.$1(s)}if(r.i(0,B.bl)!=null)if(this.ao){s=r.i(0,B.bl) +s.toString +a.$1(s)}else if(r.i(0,B.aB)==null){s=r.i(0,B.bl) +s.toString +a.$1(s)}if(r.i(0,B.bg)!=null){s=r.i(0,B.bg) +s.toString +a.$1(s)}if(r.i(0,B.bc)!=null){s=r.i(0,B.bc) +s.toString +a.$1(s)}if(r.i(0,B.bb)!=null){s=r.i(0,B.bb) +s.toString +a.$1(s)}if(r.i(0,B.dv)!=null){s=r.i(0,B.dv) +s.toString +a.$1(s)}if(r.i(0,B.bm)!=null){s=r.i(0,B.bm) +s.toString +a.$1(s)}if(r.i(0,B.b3)!=null){r=r.i(0,B.b3) +r.toString +a.$1(r)}}, +goB(){return!1}, +qp(a,b){var s +if(a==null)return 0 +a.cS(b,!0) +s=a.vR(B.q) +s.toString +return s}, +aw5(a,b,c,d){var s=d.a +if(s<=0){if(a>=b)return b +return a+(b-a)*(s+1)}if(b>=c)return b +return b+(c-b)*s}, +bX(a){var s,r,q,p,o,n=this.d9$,m=n.i(0,B.aE) +m=m==null?0:m.aA(B.ae,a,m.gbW()) +s=this.B +r=n.i(0,B.ay) +r=r==null?0:r.aA(B.ae,a,r.gbW()) +q=n.i(0,B.ba) +q=q==null?0:q.aA(B.ae,a,q.gbW()) +p=n.i(0,B.bg) +p=p==null?0:p.aA(B.ae,a,p.gbW()) +o=n.i(0,B.bl) +o=o==null?0:o.aA(B.ae,a,o.gbW()) +o=Math.max(p,o) +p=n.i(0,B.bb) +p=p==null?0:p.aA(B.ae,a,p.gbW()) +n=n.i(0,B.bc) +n=n==null?0:n.aA(B.ae,a,n.gbW()) +return m+s.a.a+r+q+o+p+n+this.B.a.c}, +bQ(a){var s,r,q,p,o,n=this.d9$,m=n.i(0,B.aE) +m=m==null?0:m.aA(B.ao,a,m.gc1()) +s=this.B +r=n.i(0,B.ay) +r=r==null?0:r.aA(B.ao,a,r.gc1()) +q=n.i(0,B.ba) +q=q==null?0:q.aA(B.ao,a,q.gc1()) +p=n.i(0,B.bg) +p=p==null?0:p.aA(B.ao,a,p.gc1()) +o=n.i(0,B.bl) +o=o==null?0:o.aA(B.ao,a,o.gc1()) +o=Math.max(p,o) +p=n.i(0,B.bb) +p=p==null?0:p.aA(B.ao,a,p.gc1()) +n=n.i(0,B.bc) +n=n==null?0:n.aA(B.ao,a,n.gc1()) +return m+s.a.a+r+q+o+p+n+this.B.a.c}, +awr(a,b,c){var s,r,q,p +for(s=0,r=0;r<2;++r){q=c[r] +if(q==null)continue +p=q.aA(B.aF,b,q.gcs()) +s=Math.max(p,s)}return s}, +bR(a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this,a=b.d9$,a0=a.i(0,B.aE),a1=a0==null?0:a0.aA(B.aF,a2,a0.gcs()) +a0=a.i(0,B.aE) +a2=Math.max(a2-(a0==null?0:a0.aA(B.ae,a1,a0.gbW())),0) +a0=a.i(0,B.ay) +s=a0==null?0:a0.aA(B.aF,a2,a0.gcs()) +a0=a.i(0,B.ay) +r=a0==null?0:a0.aA(B.ae,s,a0.gbW()) +a0=a.i(0,B.bc) +q=a0==null?0:a0.aA(B.aF,a2,a0.gcs()) +a0=a.i(0,B.bc) +p=a0==null?0:a0.aA(B.ae,q,a0.gbW()) +a2=Math.max(a2-b.B.a.gdI(),0) +a0=a.i(0,B.b3) +o=a0==null?0:a0.aA(B.aF,a2,a0.gcs()) +a0=a.i(0,B.b3) +n=Math.max(a2-(a0==null?0:a0.aA(B.ae,o,a0.gbW())),0) +a0=a.i(0,B.bm) +m=a0==null?0:a0.aA(B.aF,n,a0.gcs()) +l=Math.max(o,m) +if(l>0)l+=8 +a0=a.i(0,B.ba) +k=a0==null?0:a0.aA(B.aF,a2,a0.gcs()) +a0=a.i(0,B.ba) +j=a0==null?0:a0.aA(B.ae,k,a0.gbW()) +a0=a.i(0,B.bb) +i=a0==null?0:a0.aA(B.aF,a2,a0.gcs()) +a0=a.i(0,B.bb) +h=a0==null?0:a0.aA(B.ae,i,a0.gbW()) +a0=t.up +g=B.b.lF(A.a([b.awr(0,Math.max(a2-j-h-r-p,0),A.a([a.i(0,B.bg),a.i(0,B.bl)],t.Rs)),k,i],a0),B.iY) +f=b.B.y +e=new A.m(f.a,f.b).av(0,4) +f=b.B +a=a.i(0,B.aB)==null?0:b.B.c +d=B.b.lF(A.a([a1,f.a.b+a+g+b.B.a.d+e.b,s,q],a0),B.iY) +a=b.B.x +a.toString +c=a||!1?0:48 +return Math.max(d,c)+l}, +bV(a){return this.bR(a)}, +hS(a){var s=this.d9$,r=s.i(0,B.bg).b +r.toString +r=t.q.a(r).a +s=s.i(0,B.bg) +s=s==null?null:s.hS(a) +if(s==null)s=0 +return r.b+s}, +da(a){return B.y}, +aoQ(a){var s,r,q,p,o,n,m=null,l=t.q1,k=A.a([],l),j=new A.YY(k,A.a([],t.X_)) +for(s=a.length,r=m,q=r,p=0;p0}else a3=!1 +if(!a3)a4=0 +else{f1=o.i(0,B.bm) +a4=f1.gq(f1).b+8}a5=Math.max(a2,a4) +f1=e9.B.y +a6=new A.m(f1.a,f1.b).av(0,4) +f1=o.i(0,B.bg) +n=o.i(0,B.bg) +k=e9.B.a +j=a6.b +i=j/2 +s.n(0,f1,e9.qp(n,p.La(new A.aK(0,k.b+a1+i,0,k.d+a5+i)).Uj(c,c))) +k=o.i(0,B.bl) +a7=k==null?f0:k.gq(k).b +if(a7==null)a7=0 +f1=o.i(0,B.bg) +a8=f1==null?f0:f1.gq(f1).b +if(a8==null)a8=0 +a9=Math.max(a7,a8) +f1=s.i(0,o.i(0,B.bg)) +f1.toString +n=s.i(0,o.i(0,B.bl)) +n.toString +b0=Math.max(f1,n) +n=o.i(0,B.ba) +b1=n==null?f0:n.gq(n).b +if(b1==null)b1=0 +f1=o.i(0,B.bb) +b2=f1==null?f0:f1.gq(f1).b +if(b2==null)b2=0 +f1=s.i(0,o.i(0,B.ba)) +f1.toString +n=s.i(0,o.i(0,B.bb)) +n.toString +b3=Math.max(0,Math.max(f1,n)-b0) +n=s.i(0,o.i(0,B.ba)) +n.toString +f1=s.i(0,o.i(0,B.bb)) +f1.toString +b4=Math.max(0,Math.max(b1-n,b2-f1)-(a9-b0)) +f1=o.i(0,B.ay) +b5=f1==null?f0:f1.gq(f1).b +if(b5==null)b5=0 +f1=o.i(0,B.bc) +b6=f1==null?f0:f1.gq(f1).b +if(b6==null)b6=0 +b7=Math.max(b5,b6) +f1=e9.B +n=f1.a +b8=Math.max(b7,a1+n.b+b3+a9+b4+n.d+j) +f1=f1.x +f1.toString +if(!f1)f1=!1 +else f1=!0 +b9=f1?0:48 +c0=Math.max(0,q-a5) +c1=Math.min(Math.max(b8,b9),c0) +c2=b9>b8?(b9-b8)/2:0 +c3=Math.max(0,b8-c0) +f1=e9.an +f1=e9.gRv()?B.OQ:B.OR +c4=(f1.a+1)/2 +c5=b3-c3*(1-c4) +f1=e9.B.a +c6=f1.b+a1+b0+c5+c2+i +c7=c1-(f1.gcC(f1)+f1.gcD(f1))-a1-j-(b3+a9+b4) +c8=c6+c7*c4 +j=e9.an +f1=e9.gRv()?B.OQ:B.OR +c9=e9.aw5(c6,b0+c5/2+(c1-(2+a9))/2,c6+c7,f1) +if(o.i(0,B.b3)!=null){f1=s.i(0,o.i(0,B.b3)) +f1.toString +d0=c1+8+f1 +f1=o.i(0,B.b3) +d1=f1.gq(f1).b+8}else{d0=0 +d1=0}if(a3){f1=s.i(0,o.i(0,B.bm)) +f1.toString +d2=c1+8+f1 +d3=a4}else{d2=0 +d3=0}d4=Math.max(d0,d2) +d5=Math.max(d1,d3) +d6=o.i(0,B.dv) +if(d6!=null){f1=o.i(0,B.aE) +d6.cS(A.jE(c1,r-(f1==null?B.y:f1.gq(f1)).a),!0) +switch(e9.W.a){case 0:d7=0 +break +case 1:f1=o.i(0,B.aE) +d7=(f1==null?B.y:f1.gq(f1)).a +break +default:d7=f0}f1=d6.b +f1.toString +t.q.a(f1).sc5(0,new A.m(d7,0))}d8=A.b6("height") +d9=new A.baK(d8) +e0=A.b6("baseline") +e1=new A.baJ(e0,new A.baG(s,c8,c9,d4,c1,d5)) +f1=e9.B.a +e2=f1.a +e3=r-f1.c +d8.b=c1 +e0.b=e9.gRv()?c9:c8 +if(o.i(0,B.aE)!=null){switch(e9.W.a){case 0:f1=o.i(0,B.aE) +d7=r-f1.gq(f1).a +break +case 1:d7=0 +break +default:d7=f0}f1=o.i(0,B.aE) +f1.toString +d9.$2(f1,d7)}switch(e9.W.a){case 0:f1=o.i(0,B.aE) +e4=e3-(f1==null?B.y:f1.gq(f1)).a +if(o.i(0,B.ay)!=null){e4+=e9.B.a.c +f1=o.i(0,B.ay) +f1.toString +q=o.i(0,B.ay) +e4-=d9.$2(f1,e4-q.gq(q).a)}if(o.i(0,B.aB)!=null){f1=o.i(0,B.aB) +f1.toString +q=o.i(0,B.aB) +d9.$2(f1,e4-q.gq(q).a)}if(o.i(0,B.ba)!=null){f1=o.i(0,B.ba) +f1.toString +q=o.i(0,B.ba) +e4-=e1.$2(f1,e4-q.gq(q).a)}if(o.i(0,B.bg)!=null){f1=o.i(0,B.bg) +f1.toString +q=o.i(0,B.bg) +e1.$2(f1,e4-q.gq(q).a)}if(o.i(0,B.bl)!=null){f1=o.i(0,B.bl) +f1.toString +q=o.i(0,B.bl) +e1.$2(f1,e4-q.gq(q).a)}if(o.i(0,B.bc)!=null){e5=e2-e9.B.a.a +f1=o.i(0,B.bc) +f1.toString +e5+=d9.$2(f1,e5)}else e5=e2 +if(o.i(0,B.bb)!=null){f1=o.i(0,B.bb) +f1.toString +e1.$2(f1,e5)}break +case 1:f1=o.i(0,B.aE) +e4=e2+(f1==null?B.y:f1.gq(f1)).a +if(o.i(0,B.ay)!=null){e4-=e9.B.a.a +f1=o.i(0,B.ay) +f1.toString +e4+=d9.$2(f1,e4)}if(o.i(0,B.aB)!=null){f1=o.i(0,B.aB) +f1.toString +d9.$2(f1,e4)}if(o.i(0,B.ba)!=null){f1=o.i(0,B.ba) +f1.toString +e4+=e1.$2(f1,e4)}if(o.i(0,B.bg)!=null){f1=o.i(0,B.bg) +f1.toString +e1.$2(f1,e4)}if(o.i(0,B.bl)!=null){f1=o.i(0,B.bl) +f1.toString +e1.$2(f1,e4)}if(o.i(0,B.bc)!=null){e5=e3+e9.B.a.c +f1=o.i(0,B.bc) +f1.toString +q=o.i(0,B.bc) +e5-=d9.$2(f1,e5-q.gq(q).a)}else e5=e3 +if(o.i(0,B.bb)!=null){f1=o.i(0,B.bb) +f1.toString +q=o.i(0,B.bb) +e1.$2(f1,e5-q.gq(q).a)}break}if(o.i(0,B.bm)!=null||o.i(0,B.b3)!=null){d8.b=d5 +e0.b=d4 +switch(e9.W.a){case 0:if(o.i(0,B.bm)!=null){f1=o.i(0,B.bm) +f1.toString +q=o.i(0,B.bm) +q=q.gq(q) +n=o.i(0,B.aE) +n=n==null?B.y:n.gq(n) +e1.$2(f1,e3-q.a-n.a)}if(o.i(0,B.b3)!=null){f1=o.i(0,B.b3) +f1.toString +e1.$2(f1,e2)}break +case 1:if(o.i(0,B.bm)!=null){f1=o.i(0,B.bm) +f1.toString +q=o.i(0,B.aE) +e1.$2(f1,e2+(q==null?B.y:q.gq(q)).a)}if(o.i(0,B.b3)!=null){f1=o.i(0,B.b3) +f1.toString +q=o.i(0,B.b3) +e1.$2(f1,e3-q.gq(q).a)}break}}if(o.i(0,B.aB)!=null){f1=o.i(0,B.aB).b +f1.toString +e6=t.q.a(f1).a.a +f1=o.i(0,B.aB) +e7=(f1==null?B.y:f1.gq(f1)).a*0.75 +switch(e9.W.a){case 0:if(o.i(0,B.ay)!=null&&!0)if(e9.aZ){f1=o.i(0,B.ay) +e8=(f1==null?B.y:f1.gq(f1)).a-e2}else e8=0 +else e8=0 +f1=e9.B +q=o.i(0,B.aB) +q=q==null?B.y:q.gq(q) +n=d6==null?B.y:d6.gq(d6) +f1.r.sc2(0,A.ag(e6+q.a+e8,n.a/2+e7/2,0)) +break +case 1:if(o.i(0,B.ay)!=null&&!0)if(e9.aZ){f1=o.i(0,B.ay) +e8=-(f1==null?B.y:f1.gq(f1)).a+e2}else e8=0 +else e8=0 +f1=e9.B +q=o.i(0,B.aE) +q=q==null?B.y:q.gq(q) +n=d6==null?B.y:d6.gq(d6) +f1.r.sc2(0,A.ag(e6-q.a+e8,n.a/2-e7/2,0)) +break}f1=e9.B +o=o.i(0,B.aB) +f1.r.sez(o.gq(o).a*0.75)}else{e9.B.r.sc2(0,f0) +e9.B.r.sez(0)}e9.id=f2.bJ(new A.U(r,c1+d5))}, +ayT(a,b){var s=this.d9$.i(0,B.aB) +s.toString +a.em(s,b)}, +aE(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=new A.baI(a,b),e=g.d9$ +f.$1(e.i(0,B.dv)) +if(e.i(0,B.aB)!=null){s=e.i(0,B.aB).b +s.toString +r=t.q +q=r.a(s).a +s=e.i(0,B.aB) +s=s==null?B.y:s.gq(s) +p=e.i(0,B.aB) +o=(p==null?B.y:p.gq(p)).a +p=g.B +n=p.f +m=p.d +l=n.gAW() +k=l?-s.b*0.75/2+n.a.b/2:g.B.a.b +s=A.ag(1,0.75,m) +s.toString +p=e.i(0,B.dv).b +p.toString +p=r.a(p).a +r=e.i(0,B.dv) +r=r==null?B.y:r.gq(r) +switch(g.W.a){case 0:j=q.a+o*(1-s) +if(e.i(0,B.ay)!=null)n=l +else n=!1 +if(n){if(g.aZ){n=e.i(0,B.ay) +n=n==null?B.y:n.gq(n) +n=n.a-g.B.a.a}else n=0 +i=j+n}else i=j +break +case 1:j=q.a +if(e.i(0,B.ay)!=null)n=l +else n=!1 +if(n){if(g.aZ){n=e.i(0,B.ay) +n=n==null?B.y:n.gq(n) +n=-n.a+g.B.a.a}else n=0 +i=j+n}else i=j +break +default:j=null +i=null}r=A.ag(i,p.a+r.a/2-o*0.75/2,0) +r.toString +r=A.ag(j,r,m) +r.toString +p=q.b +n=A.ag(0,k-p,m) +n.toString +h=new A.bQ(new Float64Array(16)) +h.fQ() +h.bi(0,r,p+n) +h.c0(0,s) +g.bt=h +s=g.cx +s===$&&A.b() +n=g.ch +n.sb2(0,a.Gb(s,b,h,g.gayS(),t.zV.a(n.a)))}else g.ch.sb2(0,null) +f.$1(e.i(0,B.aE)) +f.$1(e.i(0,B.ba)) +f.$1(e.i(0,B.bb)) +f.$1(e.i(0,B.ay)) +f.$1(e.i(0,B.bc)) +f.$1(e.i(0,B.bl)) +f.$1(e.i(0,B.bg)) +f.$1(e.i(0,B.bm)) +f.$1(e.i(0,B.b3))}, +lo(a){return!0}, +dZ(a,b){var s,r,q,p,o,n,m +for(s=this.ghR(this),r=s.length,q=t.q,p=0;p>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}s=this.a.gdE() +r=s.dx +return r==null?s.cy:r}, +$S:6} +A.b7d.prototype={ +$1(a){var s,r,q=this +if(a.p(0,B.x)){s=q.a.gdE().db +return new A.be(A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255),1,B.I,-1)}if(a.p(0,B.cR)){if(a.p(0,B.F)){s=q.a.gdE() +r=s.ch +return new A.be(r==null?s.ax:r,1,B.I,-1)}if(a.p(0,B.K))return new A.be(q.a.gdE().at,2,B.I,-1) +return new A.be(q.a.gdE().at,1,B.I,-1)}if(a.p(0,B.F))return new A.be(q.a.gdE().db,1,B.I,-1) +if(a.p(0,B.K))return new A.be(q.a.gdE().b,2,B.I,-1) +s=q.a.gdE() +r=s.dy +return new A.be(r==null?s.db:r,1,B.I,-1)}, +$S:102} +A.b7k.prototype={ +$1(a){var s,r,q=this +if(a.p(0,B.x)){s=q.a.gdE().db +return new A.be(A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255),1,B.I,-1)}if(a.p(0,B.cR)){if(a.p(0,B.F)){s=q.a.gdE() +r=s.ch +return new A.be(r==null?s.ax:r,1,B.I,-1)}if(a.p(0,B.K))return new A.be(q.a.gdE().at,2,B.I,-1) +return new A.be(q.a.gdE().at,1,B.I,-1)}if(a.p(0,B.F))return new A.be(q.a.gdE().db,1,B.I,-1) +if(a.p(0,B.K))return new A.be(q.a.gdE().b,2,B.I,-1) +s=q.a.gdE() +r=s.fr +return new A.be(r==null?s.cx:r,1,B.I,-1)}, +$S:102} +A.b7l.prototype={ +$1(a){var s=this.a.gdE(),r=s.dy +return r==null?s.db:r}, +$S:6} +A.b7m.prototype={ +$1(a){var s,r +if(a.p(0,B.x)){s=this.a.gdE().db +return A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.cR))return this.a.gdE().at +s=this.a.gdE() +r=s.dy +return r==null?s.db:r}, +$S:6} +A.b7j.prototype={ +$1(a){var s,r=this.a,q=r.gIN().y +if(q==null)q=B.iy +if(a.p(0,B.x)){r=r.gdE().db +return q.cM(A.K(97,r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255))}if(a.p(0,B.cR)){if(a.p(0,B.F)){r=r.gdE() +s=r.ch +return q.cM(s==null?r.ax:s)}if(a.p(0,B.K))return q.cM(r.gdE().at) +return q.cM(r.gdE().at)}if(a.p(0,B.F)){r=r.gdE() +s=r.dy +return q.cM(s==null?r.db:s)}if(a.p(0,B.K))return q.cM(r.gdE().b) +r=r.gdE() +s=r.dy +return q.cM(s==null?r.db:s)}, +$S:57} +A.b7g.prototype={ +$1(a){var s,r=this.a,q=r.gIN().y +if(q==null)q=B.iy +if(a.p(0,B.x)){r=r.gdE().db +return q.cM(A.K(97,r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255))}if(a.p(0,B.cR)){if(a.p(0,B.F)){r=r.gdE() +s=r.ch +return q.cM(s==null?r.ax:s)}if(a.p(0,B.K))return q.cM(r.gdE().at) +return q.cM(r.gdE().at)}if(a.p(0,B.F)){r=r.gdE() +s=r.dy +return q.cM(s==null?r.db:s)}if(a.p(0,B.K))return q.cM(r.gdE().b) +r=r.gdE() +s=r.dy +return q.cM(s==null?r.db:s)}, +$S:57} +A.b7h.prototype={ +$1(a){var s,r=this.a,q=r.gIN().Q +if(q==null)q=B.iy +if(a.p(0,B.x)){r=r.gdE().db +return q.cM(A.K(97,r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255))}r=r.gdE() +s=r.dy +return q.cM(s==null?r.db:s)}, +$S:57} +A.b7e.prototype={ +$1(a){var s=this.a,r=s.gIN().Q +if(r==null)r=B.iy +return r.cM(s.gdE().at)}, +$S:57} +A.ahW.prototype={} +A.VN.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.W5.prototype={ +m(){var s=this,r=s.c3$ +if(r!=null)r.H(0,s.ghP()) +s.c3$=null +s.b0()}, +cf(){this.cW() +this.cO() +this.hQ()}} +A.W7.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.aq2.prototype={ +aw(a){var s,r,q +this.eS(a) +for(s=this.ghR(this),r=s.length,q=0;q0){a7=b/2 +e-=a7 +c+=a7}a=a2.bt +if(eg){f=b1+j.b+2*a +c=b1+a +e=a}else f=g +d=a}switch(a2.b3.a){case 0:if(a2.a6)a0=d +else{d=(f-p.b)/2 +a0=(f-o.b)/2}break +case 1:if(f>72){d=16 +a0=16}else{d=Math.min((f-p.b)/2,16) +a0=(f-o.b)/2}break +case 2:a0=d +break +case 3:d=(f-p.b)/2 +a0=(f-o.b)/2 +break +case 4:a1=f-p.b-d +a0=f-o.b-d +d=a1 +break +default:a0=a3 +d=a0}switch(a2.an.a){case 0:if(a6){a7=a5.i(0,B.cB).b +a7.toString +t.q.a(a7).sc5(0,new A.m(s-p.a,d))}a7=a5.i(0,B.cb).b +a7.toString +b1=t.q +b1.a(a7).sc5(0,new A.m(m,e)) +if(a8){a7=a5.i(0,B.cc) +a7.toString +c.toString +a7=a7.b +a7.toString +b1.a(a7).sc5(0,new A.m(m,c))}if(a9){a5=a5.i(0,B.dg).b +a5.toString +b1.a(a5).sc5(0,new A.m(0,a0))}break +case 1:if(a6){a7=a5.i(0,B.cB).b +a7.toString +t.q.a(a7).sc5(0,new A.m(0,d))}a7=a5.i(0,B.cb).b +a7.toString +b1=t.q +b1.a(a7).sc5(0,new A.m(n,e)) +if(a8){a7=a5.i(0,B.cc) +a7.toString +c.toString +a7=a7.b +a7.toString +b1.a(a7).sc5(0,new A.m(n,c))}if(a9){a5=a5.i(0,B.dg).b +a5.toString +b1.a(a5).sc5(0,new A.m(s-o.a,a0))}break}a2.id=a4.bJ(new A.U(s,f))}, +aE(a,b){var s=new A.baR(a,b),r=this.d9$ +s.$1(r.i(0,B.cB)) +s.$1(r.i(0,B.cb)) +s.$1(r.i(0,B.cc)) +s.$1(r.i(0,B.dg))}, +lo(a){return!0}, +dZ(a,b){var s,r,q,p,o,n +for(s=this.ghR(this),r=s.length,q=t.q,p=0;p#"+A.br(this)}} +A.uW.prototype={ +hk(a){return A.fo(this.a,this.b,a)}} +A.SE.prototype={ +a8(){return new A.aj1(null,null,B.m)}} +A.aj1.prototype={ +vo(a){var s,r,q=this +q.CW=t.ir.a(a.$3(q.CW,q.a.z,new A.b7U())) +s=q.a +r=t.YJ +s=r.a(a.$3(q.cy,s.as,new A.b7V())) +q.cy=s +s=q.a.at +q.cx=s!=null?r.a(a.$3(q.cx,s,new A.b7W())):null +q.db=t.TZ.a(a.$3(q.db,q.a.w,new A.b7X()))}, +A(a){var s,r,q,p,o,n,m=this,l=null,k=m.db +k.toString +s=m.ghN() +s=k.a5(0,s.gj(s)) +s.toString +k=m.CW +k.toString +r=m.ghN() +q=k.a5(0,r.gj(r)) +A.B(a) +k=m.a.Q +r=m.cx +if(r==null)r=l +else{p=m.ghN() +p=r.a5(0,p.gj(p)) +r=p}o=A.brn(k,r,q) +m.a.toString +k=m.cy +if(k==null)n=l +else{r=m.ghN() +r=k.a5(0,r.gj(r)) +n=r}if(n==null)n=B.E +k=A.eJ(a) +r=m.a +return new A.a79(new A.uV(s,k),r.y,q,o,n,new A.Uc(r.r,s,!0,l),l)}} +A.b7U.prototype={ +$1(a){return new A.aR(A.pN(a),null,t.Y)}, +$S:52} +A.b7V.prototype={ +$1(a){return new A.dG(t.n8.a(a),null)}, +$S:122} +A.b7W.prototype={ +$1(a){return new A.dG(t.n8.a(a),null)}, +$S:122} +A.b7X.prototype={ +$1(a){return new A.uW(t.RY.a(a),null)}, +$S:940} +A.Uc.prototype={ +A(a){var s=A.eJ(a) +return A.iB(this.c,new A.amC(this.d,s,null),null,null,B.y)}} +A.amC.prototype={ +aE(a,b){this.b.im(a,new A.L(0,0,0+b.a,0+b.b),this.c)}, +fv(a){return!a.b.k(0,this.b)}} +A.apL.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.aj2.prototype={ +xB(a){return a.ge0(a)==="en"}, +na(a,b){return new A.cC(B.S_,t.az)}, +w0(a){return!1}, +l(a){return"DefaultMaterialLocalizations.delegate(en_US)"}} +A.a0I.prototype={ +gaS(){return"Open navigation menu"}, +gbr(){return"Back"}, +gbj(){return"Close"}, +gaY(){return"Delete"}, +gbB(){return"More"}, +gbw(){return"Show menu"}, +gbx(){return"Navigation menu"}, +gba(){return"Popup menu"}, +gaG(){return"Dialog"}, +gbq(){return"Alert"}, +gaU(){return"Scrim"}, +gb8(){return"Bottom Sheet"}, +YF(a){return"Close "+a}, +Nx(a,b){return"Tab "+b+" of "+a}, +gZ(){return"Copy"}, +ga_(){return"Cut"}, +gaT(){return"Scan text"}, +ga0(){return"Paste"}, +gM(){return"Select all"}, +gK(){return"Look Up"}, +ga1(){return"Search Web"}, +gaM(){return"Dismiss"}, +gaR(){return"Dismiss menu"}, +gbD(){return B.N}, +gaD(){return"double tap to collapse"}, +gaC(){return"double tap to expand"}, +gbs(){return"Collapse"}, +gaQ(){return"Expand for more details"}, +gbl(){return"Collapsed"}, +gaW(){return"Expanded"}, +gby(){return"Refresh"}, +ad3(a){switch(a){case 0:return"No characters remaining" +case 1:return"1 character remaining" +default:return""+a+" characters remaining"}}, +$iaw:1} +A.dy.prototype={ +J(){return"MaterialState."+this.b}} +A.a5M.prototype={$ica:1} +A.GR.prototype={ +L(a){return this.c.$1(a)}} +A.a5N.prototype={ +L2(a){return this.L(A.aW(t.ui)).L2(a)}, +$ica:1} +A.RI.prototype={ +L(a){if(a.p(0,B.x))return B.c2 +return this.a}, +gA3(){return"MaterialStateMouseCursor("+this.c+")"}} +A.a5L.prototype={$ica:1} +A.SF.prototype={ +L(a){return this.x.$1(a)}} +A.a5O.prototype={$ica:1} +A.aj7.prototype={ +L(a){return this.cp.$1(a)}} +A.ca.prototype={} +A.Sw.prototype={ +L(a){var s,r=this,q=r.a,p=q==null?null:q.L(a) +q=r.b +s=q==null?null:q.L(a) +return r.d.$3(p,s,r.c)}, +$ica:1} +A.bt.prototype={ +L(a){return this.a.$1(a)}, +$ica:1} +A.cG.prototype={ +L(a){return this.a}, +l(a){var s="MaterialStatePropertyAll(",r=this.a +if(typeof r=="number")return s+A.mK(r)+")" +else return s+A.i(r)+")"}, +$ica:1} +A.a5P.prototype={ +iP(a,b,c){var s=this.a +if(c?J.ff(s,b):J.pW(s,b))this.ag()}} +A.M0.prototype={ +ae8(a,b){return new A.aK0(this,a,b)}, +NL(a){return this.ae8(a,null)}, +uM(a){if(this.qQ$.F(0,a))this.ad(new A.aJZ())}, +rm(a){if(this.qQ$.E(0,a))this.ad(new A.aK_())}} +A.aK0.prototype={ +$1(a){var s=this.a,r=this.b +if(s.qQ$.p(0,r)===a)return +if(a)s.uM(r) +else s.rm(r)}, +$S:7} +A.aJZ.prototype={ +$0(){}, +$S:0} +A.aK_.prototype={ +$0(){}, +$S:0} +A.a5W.prototype={} +A.M6.prototype={ +gu(a){return J.T(this.a)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.M6&&J.j(b.a,this.a)}} +A.ajb.prototype={} +A.a5X.prototype={ +gu(a){var s=this +return A.dj([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.a_(b)!==A.p(r))return!1 +if(b instanceof A.a5X)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.j(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.air.prototype={ +L(a){var s,r=this,q=r.a,p=q==null?null:q.L(a) +q=r.b +s=q==null?null:q.L(a) +q=p==null +if(q&&s==null)return null +if(q){q=s.a +return A.bp(new A.be(A.K(0,q.gj(q)>>>16&255,q.gj(q)>>>8&255,q.gj(q)&255),0,B.I,-1),s,r.c)}if(s==null){q=p.a +return A.bp(p,new A.be(A.K(0,q.gj(q)>>>16&255,q.gj(q)>>>8&255,q.gj(q)&255),0,B.I,-1),r.c)}return A.bp(p,s,r.c)}, +$ica:1} +A.ajd.prototype={} +A.Dt.prototype={ +gu(a){return J.T(this.a)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.Dt&&J.j(b.a,this.a)}} +A.aje.prototype={} +A.a6g.prototype={ +avb(a){return new A.aLR(this,a)}, +A(a){var s,r,q,p,o,n,m,l,k,j,i,h,g=null +A.B(a) +s=A.bms(a) +r=A.bl7(a) +q=r.a +if(q==null){p=s.a +p.toString +q=p}o=r.y +if(o==null){p=s.y +p.toString +o=p}p=r.b +if(p==null)p=s.gcd(s) +n=r.c +if(n==null){n=s.c +n.toString}m=r.d +if(m==null)m=s.gbT(s) +l=r.e +if(l==null)l=s.gc7() +k=A.a([],t.p) +for(j=this.e,i=this.d,h=0;h")))}} +A.b4c.prototype={ +$0(){this.a.d=this.b}, +$S:0} +A.b4d.prototype={ +$0(){this.a.e=null}, +$S:0} +A.b4e.prototype={ +$0(){this.a.e=this.b}, +$S:0} +A.b8C.prototype={ +gt3(){var s,r=this,q=r.as +if(q===$){s=A.B(r.Q) +r.as!==$&&A.aq() +q=r.as=s.ax}return q}, +gcd(a){return this.gt3().cy}, +gbT(a){return B.E}, +gc7(){var s=this.gt3(),r=s.k3 +return r==null?s.b:r}, +gh2(){return new A.bt(new A.b8D(this),t.gO)}, +gji(){var s=this.gt3(),r=s.w +return r==null?s.f:r}, +gpb(){return B.it}, +gn7(){return new A.bt(new A.b8E(this),t.ol)}} +A.b8D.prototype={ +$1(a){var s,r,q=null +if(a.p(0,B.x)){s=this.a.gt3() +r=s.dy +s=r==null?s.db:r +s=A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}else{s=this.a +if(a.p(0,B.G)){s=s.gt3() +r=s.x +s=r==null?s.r:r}else{s=s.gt3() +r=s.dy +s=r==null?s.db:r}}return new A.d4(24,q,q,q,q,s,q,q)}, +$S:1010} +A.b8E.prototype={ +$1(a){var s,r,q=this.a,p=q.at +if(p===$){s=A.B(q.Q) +q.at!==$&&A.aq() +p=q.at=s.p3}s=p.at +s.toString +if(a.p(0,B.x)){q=q.gt3() +r=q.dy +q=r==null?q.db:r +q=A.K(97,q.gj(q)>>>16&255,q.gj(q)>>>8&255,q.gj(q)&255)}else if(a.p(0,B.G))q=q.gt3().db +else{q=q.gt3() +r=q.dy +q=r==null?q.db:r}return s.TF(q)}, +$S:57} +A.Wp.prototype={ +m(){var s=this,r=s.c3$ +if(r!=null)r.H(0,s.ghP()) +s.c3$=null +s.b0()}, +cf(){this.cW() +this.cO() +this.hQ()}} +A.ym.prototype={ +gu(a){var s=this +return A.X(s.a,s.gcd(s),s.c,s.gbT(s),s.gc7(),s.gji(),s.gpb(),s.gn7(),s.gh2(),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.a_(b)!==A.p(s))return!1 +return b instanceof A.ym&&b.a==s.a&&J.j(b.gcd(b),s.gcd(s))&&b.c==s.c&&J.j(b.gbT(b),s.gbT(s))&&J.j(b.gc7(),s.gc7())&&J.j(b.gji(),s.gji())&&J.j(b.gpb(),s.gpb())&&b.gn7()==s.gn7()&&b.gh2()==s.gh2()&&b.y==s.y&&b.z==s.z}, +gcd(a){return this.b}, +gbT(a){return this.d}, +gc7(){return this.e}, +gji(){return this.f}, +gpb(){return this.r}, +gn7(){return this.w}, +gh2(){return this.x}} +A.Ml.prototype={ +y8(a,b,c){return A.bt_(c,this.w)}, +dh(a){return!this.w.k(0,a.w)}} +A.ajv.prototype={} +A.Mm.prototype={ +gu(a){var s=this +return A.X(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.a_(b)!==A.p(s))return!1 +return b instanceof A.Mm&&b.a==s.a&&J.j(b.b,s.b)&&b.c==s.c&&J.j(b.d,s.d)&&J.j(b.e,s.e)&&J.j(b.f,s.f)&&J.j(b.r,s.r)&&J.j(b.w,s.w)&&b.x==s.x&&b.y==s.y}} +A.ajy.prototype={} +A.Mn.prototype={ +a8(){return new A.SX(null,null,B.m)}} +A.SX.prototype={ +aX(){this.b9() +this.a2J()}, +m(){this.a10() +this.alX()}, +b1(a){var s,r,q=this +q.bh(a) +s=q.a.d +if(s!==a.d){r=q.f +if(s){r===$&&A.b() +r.bS(0)}else{r===$&&A.b() +r.d3(0)}}s=q.a +if(s.r.length!==a.r.length){q.a10() +q.a2J() +return}r=a.w +if(s.w!==r){s=q.d +s===$&&A.b() +s[r].d3(0) +s=q.a +q.d[s.w].bS(0) +return}}, +A(c0){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=this,b9=null +c0.aj(t.Ka) +s=A.B(c0).eA +A.B(c0) +r=new A.b8P(c0,b9,0,b9,b9,b9,b9,-1,B.ow,!0,b9,b9,80,256) +q=A.A(c0,B.aC,t.D) +q.toString +b8.a.toString +p=s.a +if(p==null)p=r.gcd(r) +o=b8.a.y +n=s.Q +if(n==null){m=r.Q +m.toString +n=m}l=s.as +if(l==null){m=r.as +m.toString +l=m}k=s.c +if(k==null)k=r.gBG() +b8.a.toString +j=s.d +if(j==null)j=r.gyq() +b8.a.toString +i=s.e +if(i==null)i=r.gBF() +b8.a.toString +h=s.f +if(h==null)h=r.gyp() +m=b8.a +m.toString +g=s.r +if(g==null){f=r.r +f.toString +g=f}e=m.Q +d=!0 +c=s.y +if(c==null)c=r.gji() +b8.a.toString +b=s.z +if(b==null)b=r.gpb() +A.B(c0) +m=c0.aj(t.I) +m.toString +a=m.w===B.ab +m=b8.r +m===$&&A.b() +f=t.p +a0=A.a([B.OC],f) +B.b.I(a0,A.a([b8.a.e,B.OC],f)) +f=A.a([],f) +for(a1=t.x8,a2=t.jc,a3=0;a4=b8.a,a5=a4.r,a6=a5.length,a30){o.b=o.c=o.d=o.e=null +o.a=0}p=q.dw$ +p.b=!1 +B.b.ab(p.a) +o=p.c +if(o===$){n=A.dI(p.$ti.c) +p.c!==$&&A.aq() +p.c=n +o=n}if(o.a>0){o.b=o.c=o.d=o.e=null +o.a=0}q.Cp()}m=this.f +m===$&&A.b() +m.m()}, +a2J(){var s,r,q,p,o=this,n=null,m=o.a.r.length,l=J.oL(m,t.A_) +for(s=o.gaxq(),r=0;r>") +o.e=A.a8(new A.ad(l,new A.b8Q(),s),!0,s.h("av.E")) +s=o.a +o.d[s.w].sj(0,1) +s=A.bx(B.A,n,B.T,0,n,1,o.a.d?1:0,o) +o.f=s +o.r=A.c5(B.dE,s,n) +s=o.f +s.cF() +s=s.dw$ +s.b=!0 +s.a.push(new A.b8R(o))}, +a3q(){this.ad(new A.b8S())}, +$iaP:1} +A.b8T.prototype={ +$0(){this.a.a.x.$1(this.b)}, +$S:0} +A.b8Q.prototype={ +$1(a){return a}, +$S:1011} +A.b8R.prototype={ +$0(){this.a.a3q()}, +$S:0} +A.b8S.prototype={ +$0(){}, +$S:0} +A.akO.prototype={ +A(a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0=null +A.B(a1) +s=a1.aj(t.I) +s.toString +r=a.z +q=A.xB(a.e,r,a0) +p=a.f +o=A.fI(p,a0,a0,B.aU,!0,a.Q,a0,a0,B.at) +r=r.a +if(r!=null&&r>32){r.toString +n=(r-32)/2}else n=0 +switch(a.w.a){case 0:r=a.c +m=new A.m(r/2+0,6+n) +l=t.p +k=A.a([],l) +k.push(B.OB) +k.push(A.cZ(A.eH(new A.FZ(a.ay,!1,a.ch,a.CW,a.r,q,a0),a0,a0),a0,r)) +k.push(B.OB) +j=A.cP(k,B.w,B.z,B.O) +k=a.y +if(k.gj(k)===0){i=new A.b4(B.a8,A.fp(B.bu,A.a([j,new A.fB(0,0,A.bNX(p,!1),a0)],l),B.C,B.aJ,a0),a0) +h=!1}else{t.m.a(k) +r=A.ag(r,a.d,k.gj(k)) +r.toString +i=new A.b4(B.a8,new A.eX(new A.aN(r,1/0,0,1/0),A.to(A.db(A.a([j,new A.ef(B.cV,k.gj(k),1,new A.cY(new A.ax(k,new A.eI(B.y6),t.HY.h("ax")),!0,o,a0),a0),A.cZ(a0,a0,8*k.gj(k))],l),B.w,B.z,B.O),B.C),a0),a0) +h=!0}break +case 1:r=a.cy +g=1-r.gj(r) +A.ag(24,16,g).toString +f=a.x?B.a7K:B.y7 +r=t.m.a(a.r) +e=A.cZ(a0,0,a0) +p=A.ag(0,4,g) +p.toString +d=A.cZ(a0,p,a0) +c=A.cZ(a0,12,a0) +p=a.c +l=p/2 +k=0+n +m=new A.m(l+0,k) +b=A.bw2(a1).Q +b.toString +if(p")),!0,o,a0),a0),c],t.p),B.w,B.dq,B.ah),B.C),B.n,a0,new A.aN(p,1/0,0,1/0),a0,a0,a0,a0,B.bW,a0) +h=!1 +break +case 2:e=A.cZ(a0,0,a0) +d=A.cZ(a0,4,a0) +c=A.cZ(a0,12,a0) +r=a.c +p=r/2 +l=0+n +m=new A.m(p+0,l) +k=A.bw2(a1).Q +k.toString +if(r>>16&255,r.gj(r)>>>8&255,r.gj(r)&255) +r=A.K(10,r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255) +s=A.h5(B.T,!0,a0,new A.Sc(!0,m,h,s.w,i,a.as,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,!0,B.aK,a0,a0,a.CW,a0,r,a0,a0,p,a0,!0,!1,a0,!1,a0,!0,a0,a0,a0),B.n,a0,0,a0,a0,a0,a0,a0,B.eA) +s=A.fp(B.bu,A.a([s,new A.bu(A.bL(a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a.at,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0),!1,!1,!1,!1,a0,a0)],t.p),B.C,B.aJ,a0) +return new A.bu(A.bL(a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a0,a.x,a0,a0,a0,a0,a0,a0,a0,a0),!0,!1,!1,!1,s,a0)}, +geD(a){return this.e}} +A.Sc.prototype={ +C_(a){var s=this,r={},q=a.gq(a).a,p=s.RG?s.R8.a:q/2 +r.a=p +if(s.rx===B.ab)r.a=q-p +return new A.b7_(r,s)}} +A.b7_.prototype={ +$0(){var s=this.a.a-28,r=this.b.R8.b +return new A.L(s,r,s+56,r+32)}, +$S:127} +A.FZ.prototype={ +A(a){var s,r,q,p=this +if(!p.c)return p.w +s=A.b6("indicator") +r=p.r +q=p.e +if(p.d)s.sdQ(A.bl8(r,A.ID(28),q,56,null,56)) +else s.sdQ(A.bl8(r,B.cW,q,32,p.f,56)) +return A.fp(B.a7,A.a([s.aH(),p.w],t.p),B.C,B.aJ,null)}} +A.a6j.prototype={ +J(){return"NavigationRailLabelType."+this.b}} +A.Dy.prototype={ +geD(a){return this.a}} +A.agI.prototype={ +dh(a){return this.f!==a.f}} +A.b8O.prototype={ +gcd(a){return this.ax.cy}, +gBG(){var s,r=this.at.p3.y +r.toString +s=this.ax.db +return r.cM(A.K(163,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255))}, +gyq(){return this.at.p3.y.cM(this.ax.b)}, +gBF(){var s=null +return new A.d4(24,s,s,s,s,this.ax.db,0.64,s)}, +gyp(){var s=null +return new A.d4(24,s,s,s,s,this.ax.b,1,s)}} +A.b8P.prototype={ +gze(){var s,r=this,q=r.ax +if(q===$){s=A.B(r.at) +r.ax!==$&&A.aq() +q=r.ax=s.ax}return q}, +ga3r(){var s,r=this,q=r.ay +if(q===$){s=A.B(r.at) +r.ay!==$&&A.aq() +q=r.ay=s.p3}return q}, +gcd(a){return this.gze().cy}, +gBG(){var s=this.ga3r().at +s.toString +return s.cM(this.gze().db)}, +gyq(){var s=this.ga3r().at +s.toString +return s.cM(this.gze().db)}, +gBF(){var s=null,r=this.gze(),q=r.dy +return new A.d4(24,s,s,s,s,q==null?r.db:q,s,s)}, +gyp(){var s=null,r=this.gze(),q=r.x +return new A.d4(24,s,s,s,s,q==null?r.r:q,s,s)}, +gji(){var s=this.gze(),r=s.w +return r==null?s.f:r}, +gpb(){return B.it}} +A.Wc.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.Dz.prototype={ +gu(a){var s=this +return A.X(s.gcd(s),s.b,s.gBG(),s.gyq(),s.gBF(),s.gyp(),s.r,s.w,s.x,s.gji(),s.gpb(),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.a_(b)!==A.p(s))return!1 +return b instanceof A.Dz&&J.j(b.gcd(b),s.gcd(s))&&b.b==s.b&&J.j(b.gBG(),s.gBG())&&J.j(b.gyq(),s.gyq())&&J.j(b.gBF(),s.gBF())&&J.j(b.gyp(),s.gyp())&&b.r==s.r&&b.w==s.w&&b.x==s.x&&J.j(b.gji(),s.gji())&&J.j(b.gpb(),s.gpb())&&b.Q==s.Q&&b.as==s.as}, +gcd(a){return this.a}, +gBG(){return this.c}, +gyq(){return this.d}, +gBF(){return this.e}, +gyp(){return this.f}, +gji(){return this.y}, +gpb(){return this.z}} +A.ajz.prototype={} +A.a6B.prototype={ +tr(a){var s=null +A.B(a) +A.B(a) +return new A.ajO(a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,B.T,!0,B.a7,s)}, +Gu(a){var s +a.aj(t.BR) +s=A.B(a) +return s.h1.a}} +A.ajO.prototype={ +gwu(){var s,r=this,q=r.fr +if(q===$){s=A.B(r.dy) +r.fr!==$&&A.aq() +q=r.fr=s.ax}return q}, +gir(){return new A.cG(A.B(this.dy).p3.as,t.wG)}, +gcd(a){return B.bL}, +gfq(){return new A.bt(new A.b8Y(this),t.U)}, +gcG(){return new A.bt(new A.b9_(this),t.U)}, +gbT(a){return B.bL}, +gc7(){return B.bL}, +gfn(a){return B.fE}, +gdD(a){return new A.cG(A.bSH(this.dy),t.Ak)}, +glv(){return B.kU}, +glt(){return B.e1}, +gf7(){return new A.bt(new A.b90(this),t.yI)}, +gcH(a){return B.e0}, +giI(){return new A.bt(new A.b8Z(),t.Y6)}, +gf5(){return A.B(this.dy).z}, +glH(){return A.B(this.dy).e}, +ghM(){return A.B(this.dy).x}} +A.b8Y.prototype={ +$1(a){var s +if(a.p(0,B.x)){s=this.a.gwu().db +return A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return this.a.gwu().b}, +$S:6} +A.b9_.prototype={ +$1(a){var s +if(a.p(0,B.Q)){s=this.a.gwu().b +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=this.a.gwu().b +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=this.a.gwu().b +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return null}, +$S:29} +A.b90.prototype={ +$1(a){var s,r +if(a.p(0,B.x)){s=this.a.gwu().db +return new A.be(A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255),1,B.I,-1)}s=this.a.gwu() +r=s.fr +return new A.be(r==null?s.cx:r,1,B.I,-1)}, +$S:102} +A.b8Z.prototype={ +$1(a){if(a.p(0,B.x))return B.c2 +return B.cy}, +$S:56} +A.MA.prototype={ +gu(a){return J.T(this.a)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.MA&&J.j(b.a,this.a)}} +A.ajP.prototype={} +A.M_.prototype={ +gu7(a){return B.bC}, +gpJ(){return null}, +gtb(){return null}, +KH(a){var s +if(!(t.Le.b(a)&&!a.gpY()))if(a instanceof A.rH){a.$ti.h("jI<1>").a(a.b) +s=!0}else s=!1 +else s=!0 +return s}, +qE(a,b,c){var s=null,r=this.aFV(a) +return new A.bu(A.bL(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s,s),!1,!0,!1,!1,r,s)}, +zL(a,b,c,d){var s,r +A.B(a) +s=A.B(a).r +r=B.kP.i(0,this.a.cx.a?B.b1:s) +if(r==null)r=B.r4 +return r.a87(this,a,b,c,d,A.l(this).c)}} +A.nf.prototype={ +v_(a){var s=null,r=this.$ti,q=A.a([],t.Zt),p=$.ac,o=r.h("a7<1?>"),n=r.h("aD<1?>"),m=A.mf(B.bV),l=A.a([],t.wi),k=$.aH(),j=$.ac +return new A.T5(!1,!0,!1,s,s,q,A.aW(t.kj),new A.bq(s,r.h("bq>")),new A.bq(s,t.C),new A.p1(),s,0,new A.aD(new A.a7(p,o),n),m,l,this,new A.bF(s,k,t.XR),new A.aD(new A.a7(j,o),n),r.h("T5<1>"))}} +A.T5.prototype={ +aFV(a){return this.$ti.h("nf<1>").a(this.b).r}, +gtP(){this.$ti.h("nf<1>").a(this.b) +return!0}, +gpY(){this.$ti.h("nf<1>").a(this.b) +return!1}, +gv0(){return A.fr.prototype.gv0.call(this)+"("+A.i(this.$ti.h("nf<1>").a(this.b).a)+")"}} +A.Wg.prototype={} +A.apb.prototype={ +A(a){var s=this +return new A.C7(s.c,new A.bev(s),new A.bew(s),new A.C7(new A.k_(s.d,new A.bd(A.a([],t.x8),t.jc),0),new A.bex(s),new A.bey(s),s.f,null),null)}} +A.bev.prototype={ +$3(a,b,c){return new A.vQ(b,c,this.a.e&&!0,!1,null)}, +$C:"$3", +$R:3, +$S:222} +A.bew.prototype={ +$3(a,b,c){return new A.vR(b,this.a.e,!0,c,null)}, +$C:"$3", +$R:3, +$S:218} +A.bex.prototype={ +$3(a,b,c){return new A.vQ(b,c,this.a.e&&!0,!0,null)}, +$C:"$3", +$R:3, +$S:222} +A.bey.prototype={ +$3(a,b,c){return new A.vR(b,this.a.e,!1,c,null)}, +$C:"$3", +$R:3, +$S:218} +A.vQ.prototype={ +a8(){return new A.ap9(new A.OG($.aH()),$,$,B.m)}} +A.ap9.prototype={ +gXU(){return!1}, +Dj(){var s,r=this,q=r.a,p=q.f +if(p)s=B.f5 +else{s=$.bCd() +s=new A.ax(q.c,s,s.$ti.h("ax"))}r.tB$=s +p=p?$.bCe():$.bCf() +q=q.c +r.vl$=new A.ax(q,p,p.$ti.h("ax")) +q.P(0,r.gB8()) +r.a.c.f8(r.gB7())}, +aX(){var s,r,q,p,o=this +o.Dj() +s=o.a +r=s.f +q=o.tB$ +q===$&&A.b() +p=o.vl$ +p===$&&A.b() +o.d=A.bwU(s.c,q,r,p) +o.b9()}, +b1(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.gB8()) +o.ee(p.gB7()) +p.Dj() +o=p.d +o===$&&A.b() +o.m() +o=p.a +s=o.f +r=p.tB$ +r===$&&A.b() +q=p.vl$ +q===$&&A.b() +p.d=A.bwU(o.c,r,s,q)}p.bh(a)}, +m(){var s,r=this +r.a.c.H(0,r.gB8()) +r.a.c.ee(r.gB7()) +s=r.d +s===$&&A.b() +s.m() +r.amp()}, +A(a){var s=this.d +s===$&&A.b() +return A.bui(!0,this.a.d,this.vk$,B.OE,s)}} +A.vR.prototype={ +a8(){return new A.apa(new A.OG($.aH()),$,$,B.m)}} +A.apa.prototype={ +gXU(){return!1}, +Dj(){var s,r=this,q=r.a,p=q.e +if(p){s=$.bCh() +s=new A.ax(q.c,s,s.$ti.h("ax"))}else s=B.f5 +r.tB$=s +p=p?$.bCi():$.bCj() +q=q.c +r.vl$=new A.ax(q,p,p.$ti.h("ax")) +q.P(0,r.gB8()) +r.a.c.f8(r.gB7())}, +aX(){var s,r,q,p,o=this +o.Dj() +s=o.a +r=s.e +q=o.tB$ +q===$&&A.b() +p=o.vl$ +p===$&&A.b() +o.d=A.bwV(s.c,q,r,p) +o.b9()}, +b1(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.gB8()) +o.ee(p.gB7()) +p.Dj() +o=p.d +o===$&&A.b() +o.m() +o=p.a +s=o.e +r=p.tB$ +r===$&&A.b() +q=p.vl$ +q===$&&A.b() +p.d=A.bwV(o.c,r,s,q)}p.bh(a)}, +m(){var s,r=this +r.a.c.H(0,r.gB8()) +r.a.c.ee(r.gB7()) +s=r.d +s===$&&A.b() +s.m() +r.amq()}, +A(a){var s=this.d +s===$&&A.b() +return A.bui(!0,this.a.f,this.vk$,B.OE,s)}} +A.qR.prototype={} +A.adA.prototype={ +a87(a,b,c,d,e){return new A.apb(c,d,!0,e,!0,null)}} +A.a0p.prototype={ +a87(a,b,c,d,e,f){return A.bqv(a,b,c,d,e,f)}} +A.a6G.prototype={ +Pl(a){var s=t.Tr +return A.a8(new A.ad(B.ah9,new A.aMN(a),s),!0,s.h("av.E"))}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.a_(b)!==A.p(r))return!1 +s=b instanceof A.a6G +if(s&&!0)return!0 +return s&&A.ee(r.Pl(B.kP),r.Pl(B.kP))}, +gu(a){return A.dj(this.Pl(B.kP))}} +A.aMN.prototype={ +$1(a){return this.a.i(0,a)}, +$S:1018} +A.HH.prototype={ +aN_(){var s,r=this,q=r.vl$ +q===$&&A.b() +s=q.a +if(J.j(q.b.a5(0,s.gj(s)),1)){q=r.tB$ +q===$&&A.b() +if(!J.j(q.gj(q),0)){q=r.tB$ +q=J.j(q.gj(q),1)}else q=!0}else q=!1 +s=r.vk$ +if(q)s.sKs(!1) +else{r.gXU() +s.sKs(!1)}}, +aMZ(a){switch(a.a){case 0:case 3:this.vk$.sKs(!1) +break +case 1:case 2:this.gXU() +this.vk$.sKs(!1) +break}}} +A.Vq.prototype={ +S_(a){this.ag()}, +aqA(a,b,c){var s,r,q,p,o +if(!this.r){s=this.w +s=s.gaP(s)!==B.a9}else s=!1 +if(s){s=this.w +s=$.bCg().a5(0,s.gj(s)) +s.toString +r=s}else r=0 +if(r>0){s=a.gcL(a) +q=b.a +p=b.b +o=$.au().bk() +o.saf(0,A.K(B.e.bg(255*r),0,0,0)) +s.ey(new A.L(q,p,q+c.a,p+c.b),o)}}, +G2(a,b,c,d){var s,r,q=this,p=q.w +switch(p.gaP(p).a){case 3:case 0:return d.$2(a,b) +case 1:case 2:break}q.aqA(a,b,c) +p=q.z +s=q.x +r=s.a +A.by0(p,s.b.a5(0,r.gj(r)),c) +r=q.as +r.sb2(0,a.Gb(!0,b,p,new A.bet(q,d),r.a))}, +m(){var s=this,r=s.w,q=s.geO() +r.H(0,q) +r.ee(s.gDi()) +s.x.a.H(0,q) +s.y.H(0,q) +s.Q.sb2(0,null) +s.as.sb2(0,null) +s.eK()}, +fv(a){var s,r,q,p,o=this +if(a.r===o.r){s=a.w +r=o.w +if(J.j(s.gj(s),r.gj(r))){s=a.x +r=s.a +q=o.x +p=q.a +if(J.j(s.b.a5(0,r.gj(r)),q.b.a5(0,p.gj(p)))){s=a.y +r=o.y +r=!J.j(s.gj(s),r.gj(r)) +s=r}else s=!0}else s=!0}else s=!0 +return s}} +A.bet.prototype={ +$2(a,b){var s=this.a,r=s.Q +s=s.y +r.sb2(0,a.Nf(b,B.e.bg(s.gj(s)*255),this.b,r.a))}, +$S:16} +A.Vr.prototype={ +S_(a){this.ag()}, +G2(a,b,c,d){var s,r,q=this,p=q.y +switch(p.gaP(p).a){case 3:case 0:return d.$2(a,b) +case 1:case 2:break}p=q.z +s=q.w +r=s.a +A.by0(p,s.b.a5(0,r.gj(r)),c) +r=q.as +r.sb2(0,a.Gb(!0,b,p,new A.beu(q,d),r.a))}, +fv(a){var s,r,q,p +if(a.r===this.r){s=a.x +r=this.x +if(J.j(s.gj(s),r.gj(r))){s=a.w +r=s.a +q=this.w +p=q.a +p=!J.j(s.b.a5(0,r.gj(r)),q.b.a5(0,p.gj(p))) +s=p}else s=!0}else s=!0 +return s}, +m(){var s,r=this +r.Q.sb2(0,null) +r.as.sb2(0,null) +s=r.geO() +r.w.a.H(0,s) +r.x.H(0,s) +r.y.ee(r.gDi()) +r.eK()}} +A.beu.prototype={ +$2(a,b){var s=this.a,r=s.Q +s=s.x +r.sb2(0,a.Nf(b,B.e.bg(s.gj(s)*255),this.b,r.a))}, +$S:16} +A.ajV.prototype={} +A.Wx.prototype={ +m(){var s=this.vk$ +s.ok$=$.aH() +s.k4$=0 +this.b0()}} +A.Wy.prototype={ +m(){var s=this.vk$ +s.ok$=$.aH() +s.k4$=0 +this.b0()}} +A.N1.prototype={} +A.ajc.prototype={ +b5(a){var s=new A.alv(this.e,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.D=this.e}} +A.alv.prototype={ +da(a){var s=this.k3$ +if(s==null)return B.y +return s.lO(a)}, +ce(){var s,r=this,q=r.k3$ +if(q==null)r.id=B.y +else{s=t.k +q.cS(s.a(A.J.prototype.ga9.call(r)),!0) +s=s.a(A.J.prototype.ga9.call(r)) +q=r.k3$ +r.id=s.bJ(q.gq(q)) +q=r.k3$.b +q.toString +t.q.a(q).sc5(0,B.i)}q=r.gq(r) +r.D.$1(q)}} +A.uz.prototype={ +a8(){var s=this.$ti +return new A.DU(B.m,s.h("@<1>").V(s).h("DU<1,2>"))}} +A.DU.prototype={ +LU(){var s=this.c +s.toString +this.a.toString +A.du(s,!1).dO(null) +this.a.e.$0()}, +A(a){var s,r,q,p,o,n,m=null +A.B(a) +s=A.a7j(a) +r=A.bw9(a) +q=A.aW(t.ui) +this.a.toString +p=s.r +if(p==null)p=m +else{p=p.L(q) +p.toString}if(p==null){q=r.gn7().L(q) +q.toString +o=q}else o=p +q=this.a +n=A.AY(A.cQ(B.cV,q.Q,B.n,m,new A.aN(0,1/0,48,1/0),m,m,m,m,B.a2p,m),B.Y,B.T,o) +q=A.jg(!1,m,!0,A.bkR(n,B.a8,m,m,m,o),m,!0,m,m,m,m,new A.agA(m,s.x),m,m,m,m,this.gVC(),m,m,m,m,m,m,m) +return new A.uh(new A.bu(A.bL(m,m,m,m,m,!0,m,m,m,m,!0,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),!1,!1,!1,!1,q,m),m)}} +A.Td.prototype={ +A(a){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=i.c,f=g.cq,e=J.aj(f),d=1/(e.gt(f)+1.5),c=A.a([],t.p) +A.B(a) +s=A.a7j(a) +r=A.bw9(a) +for(q=1.5*d,p=0;p")),!1,A.h5(B.T,!0,l,new A.ef(B.PR,n,m.f.a5(0,i.gj(i)),b,l),j.f,r,q,l,p,s,o,l,B.ez),l)}, +$S:1020} +A.b9A.prototype={ +vQ(a){return A.Bd(new A.U(A.V(1/0,a.a,a.b),A.V(1/0,a.c,a.d))).La(B.bh.U(0,this.f))}, +vT(a,b){var s,r,q,p,o,n,m,l,k=this,j=a.b,i=k.b,h=i.b,g=i.d,f=k.d +if(f!=null){for(s=k.c,r=8,q=0;qi)n=a.a-i-b.a +else if(og-8-f?g-i-8-f:n}i=j.b +if(pg-8-j?g-i-8-j:p}return new A.m(o,h)}, +apc(a,b){var s,r,q,p,o,n,m,l,k,j=B.b.gO(a) +for(s=a.length,r=b.a,q=b.b,p=0;p"))),null),a,!0,!0,!0,!0)}, +gtb(){return this.hY}} +A.b9B.prototype={ +$1(a){var s,r,q=this,p=q.b,o=q.a.a,n=a.aj(t.I) +n.toString +s=q.c +r=A.bqJ(s) +return new A.l8(new A.b9A(p.dY,p.dM,o,n.w,s.r,A.iJ(r,r.$ti.h("z.E"))),new A.rw(p.jh.a,q.d,null),null)}, +$S:227} +A.DS.prototype={ +a8(){return new A.DT(B.m,this.$ti.h("DT<1>"))}, +aLP(a){return this.c.$1(a)}, +geD(a){return this.ax}} +A.DT.prototype={ +agK(){var s,r,q,p,o,n,m,l=this,k=l.c +k.toString +s=A.a7j(k) +k=l.c.ga7() +k.toString +r=t.x +r.a(k) +q=l.c +q.toString +q=A.du(q,!1).d +q===$&&A.b() +q=q.gR().c.ga7() +q.toString +r.a(q) +l.a.toString +p=A.b6("offset") +switch(0){case 0:l.a.toString +p.b=B.i +break}r=p.aH() +r=A.cL(k.cl(0,q),r) +o=k.gq(k).E5(0,B.i).U(0,p.aH()) +o=A.uE(r,A.cL(k.cl(0,q),o)) +q=q.gq(q) +n=A.btF(o,new A.L(0,0,0+q.a,0+q.b)) +q=l.a +q.toString +o=l.c +o.toString +m=q.aLP(o) +if(J.hZ(m)){k=l.a +k.toString +r=l.c +r.toString +A.bY1(B.n,s.a,null,r,s.c,null,m,n,s.d,k.CW,s.e,l.$ti.h("1?")).be(new A.aNI(l),t.H)}}, +A(a){var s,r,q,p,o=this,n=null,m=A.a2O(a),l=A.a7j(a) +o.a.toString +A.a7j(a) +s=o.a +s=s.ax +if(s==null)s=A.h3(!A.bKH()?B.xA:B.a5o,n,n,n) +r=l.Q +if(r==null)r=m.a +q=l.z +if(q==null)q=m.f +p=A.A(a,B.aC,t.D) +p.toString +p=p.gbw() +o.a.toString +return A.dh(q,!0,s,r,o.gagJ(),B.bh,n,n,p,n)}} +A.aNI.prototype={ +$1(a){var s=this.a +if(s.c==null)return null +if(a==null){s.a.toString +return null}s.a.toString}, +$S(){return this.a.$ti.h("aE(1?)")}} +A.agA.prototype={ +L(a){var s=A.ce(this.a,a,t.WV) +if(s==null)s=null +return s==null?B.df.L(a):s}, +gA3(){return"MaterialStateMouseCursor(PopupMenuItemState)"}} +A.b9y.prototype={ +ga40(){var s,r=this,q=r.at +if(q===$){s=A.B(r.as) +r.at!==$&&A.aq() +r.at=s +q=s}return q}, +gDm(){var s,r=this,q=r.ax +if(q===$){s=r.ga40() +r.ax!==$&&A.aq() +q=r.ax=s.ax}return q}, +gn7(){return new A.bt(new A.b9z(this),t.ol)}, +gaf(a){return this.gDm().cy}, +gbT(a){var s=this.gDm().fy +return s==null?B.o:s}, +gc7(){var s=this.gDm(),r=s.k3 +return r==null?s.b:r}, +gcH(a){return B.Ny}} +A.b9z.prototype={ +$1(a){var s,r=this.a,q=r.ay +if(q===$){s=r.ga40() +r.ay!==$&&A.aq() +q=r.ay=s.p3}s=q.as +s.toString +if(a.p(0,B.x)){r=r.gDm().db +return s.TF(A.K(97,r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255))}return s.TF(r.gDm().db)}, +$S:57} +A.DV.prototype={ +gu(a){var s=this +return A.X(s.gaf(s),s.gcH(s),s.c,s.gbT(s),s.gc7(),s.gir(),s.gn7(),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=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.DV&&J.j(b.gaf(b),s.gaf(s))&&J.j(b.gcH(b),s.gcH(s))&&b.c==s.c&&J.j(b.gbT(b),s.gbT(s))&&J.j(b.gc7(),s.gc7())&&J.j(b.gir(),s.gir())&&b.gn7()==s.gn7()&&J.j(b.z,s.z)&&b.Q==s.Q}, +gaf(a){return this.a}, +gcH(a){return this.b}, +gbT(a){return this.d}, +gc7(){return this.e}, +gir(){return this.f}, +gn7(){return this.r}} +A.akB.prototype={} +A.b1J.prototype={ +J(){return"_ActivityIndicatorType."+this.b}} +A.a7q.prototype={ +QQ(a,b){var s=this.f +s=s==null?null:s.gj(s) +if(s==null)s=this.e +if(s==null)s=A.aNX(a).a +if(s==null)s=b +return s==null?A.B(a).ax.b:s}, +asr(a){return this.QQ(a,null)}, +Pw(a,b){var s=null,r=this.w,q=this.c +if(q!=null)r=r==null?""+B.e.bg(q*100)+"%":r +return new A.bu(A.bL(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,this.r,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,r),!1,!1,!1,!1,a,s)}} +A.aiA.prototype={ +aE(a,b){var s,r,q,p,o,n,m=this,l=$.au().bk() +l.saf(0,m.b) +l.scA(0,B.bj) +l.saf(0,m.c) +s=new A.b7I(m,b,a,l) +r=m.d +q=b.a +if(r!=null)s.$2(0,A.V(r,0,1)*q) +else{r=m.e +p=q*B.a7U.a5(0,r) +o=B.a7O.a5(0,r) +n=q*B.a7H.a5(0,r) +r=B.a7S.a5(0,r) +s.$2(p,q*o-p) +s.$2(n,q*r-n)}}, +fv(a){var s=this +return!a.b.k(0,s.b)||!a.c.k(0,s.c)||a.d!=s.d||a.e!==s.e||a.f!==s.f||!a.r.k(0,s.r)}} +A.b7I.prototype={ +$2(a,b){var s,r,q,p,o,n=this +if(b<=0)return +s=n.a +switch(s.f.a){case 0:r=n.b.a-b-a +break +case 1:r=a +break +default:r=null}q=new A.L(r,0,r+b,0+n.b.b) +s=s.r +p=n.c +o=n.d +if(!s.k(0,B.aG))p.d5(s.e1(q),o) +else p.ey(q,o)}, +$S:1115} +A.Lt.prototype={ +a8(){return new A.aiB(null,null,B.m)}} +A.aiB.prototype={ +aX(){var s,r=this +r.b9() +s=A.bx(B.A,null,B.a22,0,null,1,null,r) +r.d=s +if(r.a.c==null)s.Bq(0)}, +b1(a){var s,r,q=this +q.bh(a) +s=q.a.c==null +if(s){r=q.d +r===$&&A.b() +r=r.r +r=!(r!=null&&r.a!=null)}else r=!1 +if(r){s=q.d +s===$&&A.b() +s.Bq(0)}else{if(!s){s=q.d +s===$&&A.b() +s=s.r +s=s!=null&&s.a!=null}else s=!1 +if(s){s=q.d +s===$&&A.b() +s.h8(0)}}}, +m(){var s=this.d +s===$&&A.b() +s.m() +this.alU()}, +a_T(a,b,c){var s,r,q,p,o,n,m,l=this,k=null +A.B(a) +s=new A.b7H(a,k,k,k,k,k) +r=A.aNX(a) +q=l.a +q.toString +q=q.d +p=q==null?r.b:q +if(p==null)p=s.gFF() +l.a.toString +o=r.c +if(o==null)o=s.gFE() +q=l.a +q.toString +n=!B.aG.k(0,B.aG)&&l.a.c==null?B.bd:B.n +m=l.a +m.toString +return q.Pw(A.cQ(k,A.iB(k,k,k,new A.aiA(p,m.QQ(a,s.gaf(s)),l.a.c,b,c,B.aG,k),B.y),n,k,new A.aN(1/0,1/0,o,1/0),new A.hT(p,k,k,k,new A.cM(B.aG,B.u)),k,k,k,k,k),a)}, +A(a){var s,r=this,q=a.aj(t.I) +q.toString +s=q.w +if(r.a.c!=null){q=r.d +q===$&&A.b() +q=q.x +q===$&&A.b() +return r.a_T(a,q,s)}q=r.d +q===$&&A.b() +return A.hg(q,new A.b7J(r,s),null)}, +$iaP:1} +A.b7J.prototype={ +$2(a,b){var s=this.a,r=s.d +r===$&&A.b() +r=r.x +r===$&&A.b() +return s.a_T(a,r,this.b)}, +$S:51} +A.G5.prototype={ +aE(a,b){var s,r,q,p,o,n,m=this,l=$.au(),k=l.bk() +k.saf(0,m.c) +s=m.x +k.seu(s) +k.scA(0,B.ai) +r=s/2*-m.y +q=r*2 +p=b.a-q +q=b.b-q +o=m.b +if(o!=null){n=l.bk() +n.saf(0,o) +n.seu(s) +n.scA(0,B.ai) +a.UV(new A.L(r,r,r+p,r+q),0,6.282185307179586,!1,n)}if(m.d==null&&!0)k.sw5(B.OH) +else k.sw5(B.e9) +a.UV(new A.L(r,r,r+p,r+q),m.z,m.Q,!1,k)}, +fv(a){var s=this +return!J.j(a.b,s.b)||!a.c.k(0,s.c)||a.d!=s.d||a.e!==s.e||a.f!==s.f||a.r!==s.r||a.w!==s.w||a.x!==s.x||a.y!==s.y||!1}} +A.mZ.prototype={ +gcd(a){return this.d}, +a8(){return new A.QW(null,null,B.m)}} +A.QW.prototype={ +aX(){var s=this +s.b9() +s.d=A.bx(B.A,null,B.a28,0,null,1,null,s) +if(s.gbc().c==null)s.d.Bq(0)}, +b1(a){var s,r=this +r.bh(a) +if(r.gbc().c==null){s=r.d +s===$&&A.b() +s=s.r +s=!(s!=null&&s.a!=null)}else s=!1 +if(s){s=r.d +s===$&&A.b() +s.Bq(0)}else{if(r.gbc().c!=null){s=r.d +s===$&&A.b() +s=s.r +s=s!=null&&s.a!=null}else s=!1 +if(s){s=r.d +s===$&&A.b() +s.h8(0)}}}, +m(){var s=this.d +s===$&&A.b() +s.m() +this.alC()}, +I6(a,b,c,d,e){var s,r,q,p,o,n,m=this,l=null +A.B(a) +s=new A.b3G(a,l,l,l,l,l) +r=m.gbc() +r.gcd(r) +r=A.aNX(a) +q=m.gbc() +p=m.gbc().QQ(a,s.gaf(s)) +o=m.gbc() +n=m.gbc() +return q.Pw(A.cQ(l,A.iB(l,l,l,A.bOH(r.d,b,d,e,m.gbc().Q,m.gbc().as,n.z,c,o.c,p),B.y),B.n,l,B.QD,l,l,l,l,l,l),a)}, +Pt(){var s=this.d +s===$&&A.b() +return A.hg(s,new A.b3H(this),null)}, +A(a){var s=this +s.gbc() +switch(0){case 0:if(s.gbc().c!=null)return s.I6(a,0,0,0,0) +return s.Pt()}}, +$iaP:1} +A.b3H.prototype={ +$2(a,b){var s,r,q,p=this.a,o=$.bom(),n=p.d +n===$&&A.b() +n=o.a5(0,n.gj(n)) +o=$.bon() +s=p.d +s=o.a5(0,s.gj(s)) +o=$.bok() +r=p.d +r=o.a5(0,r.gj(r)) +o=$.bol() +q=p.d +return p.I6(a,n,s,r,o.a5(0,q.gj(q)))}, +$S:51} +A.alb.prototype={ +aE(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g=this +g.akc(a,b) +s=g.ax +if(s>0){r=g.z+g.Q +q=Math.cos(r) +p=Math.sin(r) +o=b.a/2 +n=g.x +m=n*2*s +l=o-m +k=o+m +j=$.au() +i=j.d1() +i.fh(0,o+q*l,o+p*l) +i.d_(0,o+q*k,o+p*k) +i.d_(0,o+q*o+-p*n*2*s,o+p*o+q*n*2*s) +i.ah(0) +h=j.bk() +h.saf(0,g.c) +h.seu(n) +h.scA(0,B.bj) +a.e3(i,h)}}} +A.Np.prototype={ +gcd(a){return A.mZ.prototype.gcd.call(this,this)}, +a8(){return new A.alc(null,null,B.m)}} +A.alc.prototype={ +gbc(){return t.nP.a(A.a9.prototype.gbc.call(this))}, +A(a){var s,r,q=this,p=t.nP.a(A.a9.prototype.gbc.call(q)).c +if(p!=null){q.Q=p +s=q.d +s===$&&A.b() +r=q.y +if(r===$){r!==$&&A.aq() +r=q.y=new A.eI(B.y5)}s.sj(0,r.a5(0,p)*0.000225022502250225)}return q.Pt()}, +Pt(){var s=this.d +s===$&&A.b() +return A.hg(s,new A.bak(this),null)}, +I6(a,b,c,a0,a1){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=t.nP,f=g.a(A.a9.prototype.gbc.call(i)).c,e=f==null,d=e?0:B.y5.a5(0,f) +if(e&&i.Q==null)s=0 +else{r=i.z +if(r===$){q=t.Y +p=t.Ns +o=A.b_L(A.a([new A.hv(new A.aR(-0.1,-0.2,q),0.33,p),new A.hv(new A.aR(-0.2,1.35,q),0.6699999999999999,p)],t.x0),t.i) +i.z!==$&&A.aq() +i.z=o +r=o}if(e){e=i.Q +e.toString}else e=f +s=3.141592653589793*r.a5(0,e)}n=g.a(A.a9.prototype.gbc.call(i)).asr(a) +e=n.gj(n) +n=A.K(255,n.gj(n)>>>16&255,n.gj(n)>>>8&255,n.gj(n)&255) +q=g.a(A.a9.prototype.gbc.call(i)) +A.mZ.prototype.gcd.call(q,q) +m=A.aNX(a).e +if(m==null)m=A.B(a).as +q=g.a(A.a9.prototype.gbc.call(i)) +g.a(A.a9.prototype.gbc.call(i)) +g.a(A.a9.prototype.gbc.call(i)) +g.a(A.a9.prototype.gbc.call(i)) +p=g.a(A.a9.prototype.gbc.call(i)) +l=g.a(A.a9.prototype.gbc.call(i)) +g=g.a(A.a9.prototype.gbc.call(i)) +k=c*3/2*3.141592653589793 +j=Math.max(b*3/2*3.141592653589793-k,0.001) +return q.Pw(A.cQ(h,A.h5(B.T,!0,h,new A.b4(B.vf,A.aMx(A.blU(s,A.iB(h,h,h,new A.alb(d,h,n,h,b,c,a0,a1,p.z,l.Q,-1.5707963267948966+k+a1*3.141592653589793*2+a0*0.5*3.141592653589793,j,g.as,h),B.y)),(e>>>24&255)/255),h),B.n,m,2,h,h,h,h,h,B.Js),B.n,h,h,h,h,41,B.fj,h,41),a)}} +A.bak.prototype={ +$2(a,b){var s,r,q,p=this.a,o=$.bom(),n=p.d +n===$&&A.b() +n=o.a5(0,n.gj(n)) +o=$.bon() +s=p.d +s=o.a5(0,s.gj(s)) +o=$.bok() +r=p.d +r=o.a5(0,r.gj(r)) +o=$.bol() +q=p.d +return p.I6(a,1.05*n,s,r,o.a5(0,q.gj(q)))}, +$S:51} +A.b3G.prototype={ +gaf(a){var s,r=this,q=r.r +if(q===$){s=A.B(r.f) +r.r!==$&&A.aq() +q=r.r=s.ax}return q.b}} +A.b7H.prototype={ +ga41(){var s,r=this,q=r.r +if(q===$){s=A.B(r.f) +r.r!==$&&A.aq() +q=r.r=s.ax}return q}, +gaf(a){return this.ga41().b}, +gFF(){var s=this.ga41(),r=s.dx +return r==null?s.cy:r}, +gFE(){return 4}} +A.VS.prototype={ +m(){var s=this,r=s.c3$ +if(r!=null)r.H(0,s.ghP()) +s.c3$=null +s.b0()}, +cf(){this.cW() +this.cO() +this.hQ()}} +A.W9.prototype={ +m(){var s=this,r=s.c3$ +if(r!=null)r.H(0,s.ghP()) +s.c3$=null +s.b0()}, +cf(){this.cW() +this.cO() +this.hQ()}} +A.E1.prototype={ +gu(a){var s=this +return A.X(s.gaf(s),s.gFF(),s.gFE(),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.a_(b)!==A.p(s))return!1 +return b instanceof A.E1&&J.j(b.gaf(b),s.gaf(s))&&J.j(b.gFF(),s.gFF())&&b.gFE()==s.gFE()&&J.j(b.d,s.d)&&J.j(b.e,s.e)}, +gaf(a){return this.a}, +gFF(){return this.b}, +gFE(){return this.c}} +A.akE.prototype={} +A.b9Y.prototype={ +J(){return"_RadioType."+this.b}} +A.E5.prototype={ +a8(){return new A.H4(new A.akL($.aH()),$,$,$,$,$,$,$,$,$,null,!1,!1,null,null,B.m,this.$ti.h("H4<1>"))}} +A.H4.prototype={ +azW(a){var s +if(a==null){this.a.e.$1(null) +return}if(a){s=this.a +s.e.$1(s.c)}}, +b1(a){var s +this.bh(a) +s=this.a +if(J.j(s.c,s.d)!==J.j(a.c,a.d))this.DY()}, +m(){this.d.m() +this.alZ()}, +gdS(){this.a.toString +return this.gazV()}, +gy5(){this.a.toString +return!1}, +gj(a){var s=this.a +return J.j(s.c,s.d)}, +ga46(){return new A.bt(new A.b9W(this),t.U)}, +A(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=this,a4=null +switch(a3.a.cx.a){case 0:break +case 1:switch(A.B(a5).r.a){case 0:case 1:case 3:case 5:break +case 2:case 4:s=a3.a +return new A.BO(s.c,s.d,s.e,!1,!1,s.w,a4,a4,!1,a4,a3.$ti.h("BO<1>"))}break}r=A.bty(a5) +A.B(a5) +q=new A.b9T(a5,a4,a4,a4,a4,a4,a4) +p=a3.a.y +o=q.gf5() +switch(p.a){case 0:n=B.e8 +break +case 1:n=B.po +break +default:n=a4}n=n.U(0,new A.m(o.a,o.b).av(0,4)) +m=a3.gfG() +m.F(0,B.G) +l=a3.gfG() +l.E(0,B.G) +a3.a.toString +k=a3.ga46().a.$1(m) +if(k==null){s=r.b +k=s==null?a4:s.L(m)}s=k==null +if(s){j=q.ghD().a.$1(m) +j.toString +i=j}else i=k +a3.a.toString +h=a3.ga46().a.$1(l) +if(h==null){j=r.b +h=j==null?a4:j.L(l)}j=h==null +if(j){g=q.ghD().a.$1(l) +g.toString +f=g}else f=h +e=a3.gfG() +e.F(0,B.K) +a3.a.toString +g=r.c +d=g==null?a4:g.L(e) +c=d +if(c==null){d=q.gcG().a.$1(e) +d.toString +c=d}b=a3.gfG() +b.F(0,B.F) +a3.a.toString +d=g==null?a4:g.L(b) +a=d +if(a==null){d=q.gcG().a.$1(b) +d.toString +a=d}m.F(0,B.Q) +a3.a.toString +d=g==null?a4:g.L(m) +if(d==null){s=s?a4:A.K(31,k.gj(k)>>>16&255,k.gj(k)>>>8&255,k.gj(k)&255) +a0=s}else a0=d +if(a0==null){s=q.gcG().a.$1(m) +s.toString +a0=s}l.F(0,B.Q) +a3.a.toString +s=g==null?a4:g.L(l) +if(s==null){s=j?a4:A.K(31,h.gj(h)>>>16&255,h.gj(h)>>>8&255,h.gj(h)&255) +a1=s}else a1=s +if(a1==null){s=q.gcG().a.$1(l) +s.toString +a1=s}if(a3.qP$!=null){a=a3.gfG().p(0,B.G)?a0:a1 +c=a3.gfG().p(0,B.G)?a0:a1}switch(A.c3().a){case 0:case 1:case 3:case 5:a2=a4 +break +case 2:case 4:s=a3.a +a2=J.j(s.c,s.d) +break +default:a2=a4}s=a3.a +s=J.j(s.c,s.d) +a3.a.toString +j=a3.d +g=a3.mZ$ +g===$&&A.b() +j.scJ(0,g) +g=a3.vh$ +g===$&&A.b() +j.sX9(g) +g=a3.vj$ +g===$&&A.b() +j.sXb(g) +g=a3.vi$ +g===$&&A.b() +j.sXc(g) +j.sVM(a1) +j.sXa(a0) +j.stF(a) +j.sln(c) +a3.a.toString +g=r.d +j.skd(g==null?20:g) +j.sAl(a3.qP$) +j.sqV(a3.gfG().p(0,B.K)) +j.sW_(a3.gfG().p(0,B.F)) +j.suL(i) +j.sAS(f) +j=a3.a84(!1,a4,new A.bt(new A.b9X(a3,r),t.bN),j,n) +return new A.bu(A.bL(a4,a4,a4,a4,a4,a4,s,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,!0,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a4,a2,a4,a4,a4,a4,a4,a4,a4,a4),!1,!1,!1,!1,j,a4)}, +$iaP:1} +A.b9W.prototype={ +$1(a){if(a.p(0,B.x))return null +if(a.p(0,B.G))return this.a.a.w +return null}, +$S:29} +A.b9X.prototype={ +$1(a){var s=A.ce(this.a.a.f,a,t.WV) +if(s==null)s=null +return s==null?A.ce(B.df,a,t.Pb):s}, +$S:144} +A.akL.prototype={ +aE(a,b){var s,r,q,p,o,n=this +n.WS(a,b.mr(B.i)) +s=new A.L(0,0,0+b.a,0+b.b).gbM() +r=$.au().bk() +q=n.f +q.toString +p=n.e +p.toString +o=n.a +o=A.W(q,p,o.gj(o)) +o.toString +r.saf(0,o) +r.scA(0,B.ai) +r.seu(2) +a.fZ(s,8,r) +q=n.a +if(q.gaP(q)!==B.R){r.scA(0,B.bj) +q=n.a +a.fZ(s,4.5*q.gj(q),r)}}} +A.b9T.prototype={ +gSc(){var s,r=this,q=r.w +if(q===$){s=A.B(r.r) +r.w!==$&&A.aq() +r.w=s +q=s}return q}, +gjE(){var s,r=this,q=r.x +if(q===$){s=r.gSc() +r.x!==$&&A.aq() +q=r.x=s.ax}return q}, +ghD(){return new A.bt(new A.b9U(this),t.h2)}, +gcG(){return new A.bt(new A.b9V(this),t.h2)}, +gno(){return this.gSc().e}, +gf5(){return this.gSc().z}} +A.b9U.prototype={ +$1(a){var s,r,q=this +if(a.p(0,B.G)){if(a.p(0,B.x)){s=q.a.gjE().db +return A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.Q))return q.a.gjE().b +if(a.p(0,B.F))return q.a.gjE().b +if(a.p(0,B.K))return q.a.gjE().b +return q.a.gjE().b}if(a.p(0,B.x)){s=q.a.gjE().db +return A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.Q))return q.a.gjE().db +if(a.p(0,B.F))return q.a.gjE().db +if(a.p(0,B.K))return q.a.gjE().db +s=q.a.gjE() +r=s.dy +return r==null?s.db:r}, +$S:6} +A.b9V.prototype={ +$1(a){var s,r=this +if(a.p(0,B.G)){if(a.p(0,B.Q)){s=r.a.gjE().db +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=r.a.gjE().b +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=r.a.gjE().b +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return B.E}if(a.p(0,B.Q)){s=r.a.gjE().b +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=r.a.gjE().db +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=r.a.gjE().db +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return B.E}, +$S:6} +A.HJ.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.HK.prototype={ +aX(){var s,r,q=this,p=null +q.b9() +s=q.a +r=A.bx(B.A,p,B.T,0,p,1,!J.j(s.c,s.d)?0:1,q) +q.ks$=r +q.mZ$=A.c5(B.bB,r,B.d_) +r=A.bx(B.A,p,B.aX,0,p,1,p,q) +q.p0$=r +q.vh$=A.c5(B.a6,r,p) +s=A.bx(B.A,p,B.ek,0,p,1,q.pW$||q.pV$?1:0,q) +q.ty$=s +q.vi$=A.c5(B.a6,s,p) +s=A.bx(B.A,p,B.ek,0,p,1,q.pW$||q.pV$?1:0,q) +q.tz$=s +q.vj$=A.c5(B.a6,s,p)}, +m(){var s=this,r=s.ks$ +r===$&&A.b() +r.m() +r=s.p0$ +r===$&&A.b() +r.m() +r=s.ty$ +r===$&&A.b() +r.m() +r=s.tz$ +r===$&&A.b() +r.m() +s.alY()}} +A.b9Z.prototype={ +J(){return"_RadioType."+this.b}} +A.Nf.prototype={ +A(a){var s,r,q,p,o,n=this,m=null +switch(0){case 0:s=new A.E5(n.c,n.d,n.e,m,!1,n.w,m,B.kW,m,m,m,!1,!1,B.aCz,m,n.$ti.h("E5<1>")) +break}switch(2){case 0:case 2:break}r=A.B(a) +q=A.bty(a) +p=n.w +if(p==null){p=q.b +p=p==null?m:p.L(A.aW(t.ui)) +o=p}else o=p +if(o==null)o=r.ax.f +return new A.uh(A.bI(!1,m,m,m,!0,m,m,!1,m,s,m,m,new A.aON(n),!1,o,m,m,m,n.ax,m,n.at,m,m),m)}} +A.aON.prototype={ +$0(){var s=this.a,r=s.c +if(!J.j(r,s.d))s.e.$1(r)}, +$S:0} +A.E6.prototype={ +gu(a){var s=this +return A.X(s.a,s.ghD(),s.gcG(),s.d,s.gno(),s.gf5(),B.a,B.a,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.a_(b)!==A.p(s))return!1 +return b instanceof A.E6&&b.ghD()==s.ghD()&&b.gcG()==s.gcG()&&b.d==s.d&&b.gno()==s.gno()&&J.j(b.gf5(),s.gf5())}, +ghD(){return this.b}, +gcG(){return this.c}, +gno(){return this.e}, +gf5(){return this.f}} +A.akN.prototype={} +A.vI.prototype={ +J(){return"_RefreshIndicatorMode."+this.b}} +A.aQr.prototype={ +J(){return"RefreshIndicatorTriggerMode."+this.b}} +A.b71.prototype={ +J(){return"_IndicatorType."+this.b}} +A.yX.prototype={ +a8(){return new A.No(null,null,B.m)}, +aNg(){return this.f.$0()}, +r4(a){return A.HU().$1(a)}} +A.No.prototype={ +ga1f(){var s,r=this,q=r.at +if(q===$){r.a.toString +s=r.c +s.toString +s=A.B(s) +q=r.at=s.ax.b}return q}, +aX(){var s,r,q,p=this,o=null +p.b9() +s=p.d=A.bx(B.A,o,o,0,o,1,o,p) +r=$.bBa() +q=t.m +p.f=new A.ax(q.a(s),r,r.$ti.h("ax")) +r=$.bBc() +p.w=new A.ax(q.a(s),r,r.$ti.h("ax")) +r=A.bx(B.A,o,o,0,o,1,o,p) +p.e=r +s=$.bBb() +p.r=new A.ax(q.a(r),s,s.$ti.h("ax"))}, +ca(){this.aC_() +this.e8()}, +b1(a){this.bh(a) +this.a.toString}, +m(){var s=this.d +s===$&&A.b() +s.m() +s=this.e +s===$&&A.b() +s.m() +this.akx()}, +aC_(){var s,r,q,p,o,n=this +n.a.toString +s=n.c +s.toString +s=A.B(s) +n.at=s.ax.b +r=n.ga1f() +if((r.gj(r)>>>24&255)===0)n.x=new A.wb(r,t.ZU) +else{s=n.d +s===$&&A.b() +q=A.K(0,r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255) +p=A.K(r.gj(r)>>>24&255,r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255) +o=t.IC.h("dz") +n.x=new A.ax(t.m.a(s),new A.dz(new A.eI(B.y4),new A.dG(q,p),o),o.h("ax"))}}, +auG(a){var s,r,q,p,o,n=this +if(!n.a.r4(a))return!1 +if(!(a instanceof A.Ez&&a.d!=null)){if(a instanceof A.kI)if(a.d!=null)n.a.toString +s=!1}else s=!0 +if(s){s=a.a +r=s.e +if(!(r===B.aj&&Math.max(s.gky()-s.gf2(),0)===0))s=r===B.ak&&Math.max(s.gf2()-s.gkz(),0)===0 +else s=!0 +s=s&&n.y==null&&n.aA8(0,r)}else s=!1 +if(s){n.ad(new A.aQm(n)) +return!1}s=a.a +r=s.e +switch(r.a){case 2:case 0:q=!0 +break +case 3:case 1:q=null +break +default:q=null}if(q!=n.Q){s=n.y +if(s===B.eY||s===B.eZ)n.rW(B.lX)}else if(a instanceof A.kI){p=n.y +if(p===B.eY||p===B.eZ){p=r===B.ak +if(!(p&&Math.max(s.gf2()-s.gkz(),0)>0))o=r===B.aj&&Math.max(s.gky()-s.gf2(),0)>0 +else o=!0 +if(o)n.rW(B.lX) +else{if(p){r=n.as +r.toString +p=a.e +p.toString +n.as=r-p}else if(r===B.aj){r=n.as +r.toString +p=a.e +p.toString +n.as=r+p}s=s.d +s.toString +n.a04(s)}}if(n.y===B.eZ&&a.d==null)n.a4e()}else if(a instanceof A.no){p=n.y +if(p===B.eY||p===B.eZ){if(r===B.ak){r=n.as +r.toString +n.as=r-a.e}else if(r===B.aj){r=n.as +r.toString +n.as=r+a.e}s=s.d +s.toString +n.a04(s)}}else if(a instanceof A.pb)switch(n.y){case B.eZ:n.a4e() +break +case B.eY:n.rW(B.lX) +break +case B.lX:case B.qb:case B.lW:case B.qa:case null:case void 0:break}return!1}, +atF(a){if(a.jg$!==0||!a.a)return!1 +if(this.y===B.eY){a.c=!1 +return!0}return!1}, +aA8(a,b){var s,r=this +switch(b.a){case 2:case 0:r.Q=!0 +break +case 3:case 1:r.Q=null +return!1}r.as=0 +s=r.e +s===$&&A.b() +s.sj(0,0) +s=r.d +s===$&&A.b() +s.sj(0,0) +return!0}, +a04(a){var s,r,q=this,p=q.as +p.toString +s=p/(a*0.25) +if(q.y===B.eZ)s=Math.max(s,0.6666666666666666) +p=q.d +p===$&&A.b() +p.sj(0,A.V(s,0,1)) +if(q.y===B.eY){p=q.x +p===$&&A.b() +p=p.gj(p) +p.toString +p=J.lS(p) +r=q.ga1f() +r=(p>>>24&255)===(r.gj(r)>>>24&255) +p=r}else p=!1 +if(p)q.y=B.eZ}, +rW(a){return this.aqf(a)}, +aqf(a){var s=0,r=A.y(t.H),q=this,p +var $async$rW=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=2 +return A.t(A.cR(null,t.H),$async$rW) +case 2:q.ad(new A.aQk(q,a)) +case 3:switch(q.y.a){case 4:s=5 +break +case 5:s=6 +break +case 1:s=7 +break +case 0:s=8 +break +case 3:s=9 +break +case 2:s=10 +break +default:s=4 +break}break +case 5:p=q.e +p===$&&A.b() +p.z=B.aN +s=11 +return A.t(p.kh(1,B.Y,B.T),$async$rW) +case 11:s=4 +break +case 6:p=q.d +p===$&&A.b() +p.z=B.aN +s=12 +return A.t(p.kh(0,B.Y,B.T),$async$rW) +case 12:s=4 +break +case 7:case 8:case 9:case 10:s=4 +break +case 4:if(q.c!=null&&q.y===a){q.Q=q.as=null +q.ad(new A.aQl(q))}return A.w(null,r)}}) +return A.x($async$rW,r)}, +a4e(){var s,r=$.ac +this.y=B.qa +s=this.d +s===$&&A.b() +s.z=B.aN +s.kh(0.6666666666666666,B.Y,B.d0).be(new A.aQp(this,new A.aD(new A.a7(r,t.b),t.gR)),t.H)}, +A(a){var s,r,q,p=this,o=null,n=p.a.c,m=p.y,l=m===B.lW||m===B.qb +n=A.a([new A.dB(p.gauF(),new A.dB(p.gatE(),n,o,t.eq),o,t.WA)],t.p) +if(p.y!=null){m=p.Q +m.toString +p.a.toString +m=!m?0:o +s=p.f +s===$&&A.b() +r=p.r +r===$&&A.b() +q=p.d +q===$&&A.b() +n.push(A.hp(m,new A.a9u(1,A.cQ(B.f0,A.aSP(A.hg(q,new A.aQq(p,l),o),r),B.n,o,o,o,o,o,o,new A.aK(0,40,0,0),o),s,o),o,o,0,0,0,o))}return A.fp(B.bu,n,B.C,B.aJ,o)}, +$iaP:1} +A.aQm.prototype={ +$0(){this.a.y=B.eY}, +$S:0} +A.aQk.prototype={ +$0(){this.a.y=this.b}, +$S:0} +A.aQl.prototype={ +$0(){this.a.y=null}, +$S:0} +A.aQp.prototype={ +$1(a){var s=this.a +if(s.c!=null&&s.y===B.qa){s.ad(new A.aQn(s)) +s.a.aNg().fu(new A.aQo(s,this.b))}}, +$S:19} +A.aQn.prototype={ +$0(){this.a.y=B.lW}, +$S:0} +A.aQo.prototype={ +$0(){var s=this.a +if(s.c!=null&&s.y===B.lW){this.b.fm(0) +s.rW(B.qb)}}, +$S:4} +A.aQq.prototype={ +$2(a,b){var s,r,q,p,o,n=null,m=this.a +m.a.toString +s=A.A(a,B.aC,t.D) +s.toString +s=s.gby() +m.a.toString +if(this.b)r=n +else{r=m.w +r===$&&A.b() +q=r.a +q=r.b.a5(0,q.gj(q)) +r=q}q=m.x +q===$&&A.b() +m.a.toString +p=new A.Np(2.5,0,n,r,n,n,q,s,n,n) +o=A.bG8(n,n) +switch(0){case 0:return p}}, +$S:51} +A.Tq.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.kY.prototype={ +J(){return"_ScaffoldSlot."+this.b}} +A.NY.prototype={ +a8(){var s=null +return new A.a8P(A.m4(t.Np),A.oP(s,t.nY),A.oP(s,t.BL),s,s,B.m)}} +A.a8P.prototype={ +ca(){var s,r=this,q=r.c +q.toString +s=A.aY(q,B.PE,t.l).w.z +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.aKI(B.arn) +r.y=s +r.e8()}, +aKI(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.gO(o).b +o=q.y +o.toString +if(o){p.sj(0,0) +r.cU(0,a)}else p.d3(0).be(new A.aSm(q,r,a),t.H) +o=q.x +if(o!=null)o.aI(0) +q.x=null}, +A(a){var s,r,q=this +q.y=A.aY(a,B.PE,t.l).w.z +s=q.r +if(!s.gak(s)){r=A.oV(a,t.X) +if(r==null||r.gtI())null.gaLy()}return new A.TT(q,q.a.c,null)}, +m(){var s=this.x +if(s!=null)s.aI(0) +this.x=null +this.al0()}, +$iaP:1} +A.aSm.prototype={ +$1(a){var s=this.b +if((s.a.a&30)===0)s.cU(0,this.c)}, +$S:19} +A.TT.prototype={ +dh(a){return this.f!==a.f}} +A.aSn.prototype={} +A.bdY.prototype={ +qh(a){var s=this +return s.c.Yg(s.a.qh(a),s.b.qh(a),s.d)}, +l(a){return"_TransitionSnapshotFabLocation(begin: "+this.a.l(0)+", end: "+this.b.l(0)+", progress: "+A.i(this.d)+")"}} +A.a8O.prototype={ +aHj(a,b){var s=a==null?this.a:a +return new A.a8O(s,b==null?this.b:b)}} +A.ama.prototype={ +a7_(a,b,c){var s=this +s.b=c==null?s.b:c +s.c=s.c.aHj(a,b) +s.ag()}, +a6Z(a){return this.a7_(null,null,a)}, +aEE(a,b){return this.a7_(a,b,null)}} +A.G4.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(!s.ahs(0,b))return!1 +return b instanceof A.G4&&b.r===s.r&&b.e===s.e&&b.f===s.f}, +gu(a){var s=this +return A.X(A.aN.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.aeu.prototype={ +A(a){var s=this +if(!s.d&&!s.e)return s.c +return new A.D5(new A.b2z(s),null)}} +A.b2z.prototype={ +$2(a,b){var s,r,q,p,o +t.fh.a(b) +s=A.aY(a,null,t.l).w +r=this.a +q=s.r +p=q.d +if(r.d)p=Math.max(p,b.e) +o=q.b +return A.ni(r.c,s.x_(q.a8R(p,r.e?Math.max(o,b.f+b.r):o)),null)}, +$S:332} +A.bbA.prototype={ +G4(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=this,a5=A.Bd(a9),a6=a9.a,a7=a5.Gv(a6),a8=a9.b +if(a4.b.i(0,B.m0)!=null){s=a4.iG(B.m0,a7).b +r=a4.e?0:s +a4.jj(B.m0,B.i)}else{r=0 +s=0}if(a4.b.i(0,B.m6)!=null){q=0+a4.iG(B.m6,a7).b +p=Math.max(0,a8-q) +a4.jj(B.m6,new A.m(0,p))}else{q=0 +p=null}if(a4.b.i(0,B.qg)!=null){q+=a4.iG(B.qg,new A.aN(0,a7.b,0,Math.max(0,a8-q-r))).b +a4.jj(B.qg,new A.m(0,Math.max(0,a8-q)))}if(a4.b.i(0,B.m5)!=null){o=a4.iG(B.m5,a7) +a4.jj(B.m5,new A.m(0,s)) +if(!a4.ay)r+=o.b}else o=B.y +n=a4.f +m=Math.max(0,a8-Math.max(n.d,q)) +if(a4.b.i(0,B.m_)!=null){l=Math.max(0,m-r) +k=a4.d +if(k)l=A.V(l+q,0,a5.d-r) +k=k?q:0 +a4.iG(B.m_,new A.G4(k,s,o.b,0,a7.b,0,l)) +a4.jj(B.m_,new A.m(0,r))}if(a4.b.i(0,B.m3)!=null){a4.iG(B.m3,new A.aN(0,a7.b,0,m)) +a4.jj(B.m3,B.i)}k=a4.b.i(0,B.h5)!=null&&!a4.at?a4.iG(B.h5,a7):B.y +if(a4.b.i(0,B.m4)!=null){j=a4.iG(B.m4,new A.aN(0,a7.b,0,Math.max(0,m-r))) +a4.jj(B.m4,new A.m((a6-j.a)/2,m-j.b))}else j=B.y +i=A.b6("floatingActionButtonRect") +if(a4.b.i(0,B.m7)!=null){h=a4.iG(B.m7,a5) +g=new A.aSn(h,j,m,s,n,a4.r,a9,k,a4.w) +f=a4.z.qh(g) +e=a4.as.Yg(a4.y.qh(g),f,a4.Q) +a4.jj(B.m7,e) +d=e.a +c=e.b +i.b=new A.L(d,c,d+h.a,c+h.b)}if(a4.b.i(0,B.h5)!=null){d=a4.ax +b=d!=null&&d") +k=t.x8 +j=t.jc +i=t.i +h=A.bvC(new A.k_(new A.ax(p,new A.eI(new A.jO(B.y8)),l),new A.bd(A.a([],k),j),0),new A.ax(p,new A.eI(B.y8),l),p,0.5,i) +p=d.a.d +g=$.bC9() +m.a(p) +f=$.bCa() +e=A.bvC(new A.ax(p,g,g.$ti.h("ax")),new A.k_(new A.ax(p,f,A.l(f).h("ax")),new A.bd(A.a([],k),j),0),p,0.5,i) +d.e=A.bpS(h,s,i) +i=A.bpS(h,q,i) +d.r=i +d.w=new A.ax(m.a(i),new A.eI(B.a7L),l) +d.f=A.blT(new A.ax(r,new A.aR(1,1,b),b.h("ax")),e,c) +d.x=A.blT(new A.ax(o,n,n.$ti.h("ax")),e,c) +n=d.r +o=d.gayh() +n.cF() +n=n.dw$ +n.b=!0 +n.a.push(o) +n=d.e +n.cF() +n=n.dw$ +n.b=!0 +n.a.push(o)}, +auu(a){this.ad(new A.b5T(this,a))}, +A(a){var s,r,q=this,p=A.a([],t.p),o=q.d +o===$&&A.b() +o=o.Q +o===$&&A.b() +if(o!==B.R){o=q.y +s=o instanceof A.xg&&o.db +r=q.e +if(s){r===$&&A.b() +p.push(new A.cY(r,!1,o,null))}else{r===$&&A.b() +s=q.f +s===$&&A.b() +p.push(A.aSP(A.aRN(o,s),r))}}o=q.a.c +s=o instanceof A.xg&&o.db +r=q.r +if(s){s=q.w +s===$&&A.b() +r===$&&A.b() +p.push(A.aSP(new A.cY(r,!1,o,null),s))}else{r===$&&A.b() +s=q.x +s===$&&A.b() +p.push(A.aSP(A.aRN(o,s),r))}return A.fp(B.dw,p,B.C,B.aJ,null)}, +ayi(){var s,r,q=this.e +q===$&&A.b() +s=q.a +s=s.gj(s) +q=q.b +q=q.gj(q) +q=Math.min(A.l_(s),A.l_(q)) +s=this.r +s===$&&A.b() +r=s.a +r=r.gj(r) +s=s.b +s=s.gj(s) +s=Math.max(q,Math.min(A.l_(r),A.l_(s))) +this.a.f.a6Z(s)}, +$iaP:1} +A.b5T.prototype={ +$0(){var s=this.a.a +if(s.c!=null&&this.b===B.R)s.r.bS(0)}, +$S:0} +A.nA.prototype={ +a8(){var s=null,r=t.bR,q=t.C,p=$.aH() +return new A.Ev(new A.bq(s,r),new A.bq(s,r),new A.bq(s,q),new A.z6(!1,p),new A.z6(!1,p),A.a([],t.Z6),new A.bq(s,q),B.o,s,A.I(t.yb,t.Q),s,!0,s,s,s,B.m)}} +A.Ev.prototype={ +gi5(){this.a.toString +return null}, +kF(a,b){var s=this +s.rl(s.w,"drawer_open") +s.rl(s.x,"end_drawer_open")}, +aqU(a){var s=this,r=s.x,q=r.y +if(!J.j(q==null?A.l(r).h("dv.T").a(q):q,a)&&s.e.gR()!=null){s.ad(new A.aSw(s,a)) +s.a.toString}}, +G_(){var s,r,q=this.d +if(q.gR()!=null){s=this.w +r=s.y +s=r==null?A.l(s).h("dv.T").a(r):r}else s=!1 +if(s)q.gR().ah(0) +q=this.e.gR() +if(q!=null)q.r6(0)}, +aEz(){var s,r=this,q=r.y.r +if(!q.gak(q)){q=r.y.r +s=q.gO(q)}else s=null +if(r.z!=s)r.ad(new A.aSE(r,s))}, +aEf(){var s,r=this,q=r.y.e +if(!q.gak(q)){q=r.y.e +s=q.gO(q)}else s=null +if(r.Q!=s)r.ad(new A.aSC(r,s))}, +a3f(){var s,r,q,p,o,n,m=this +if(m.a.cx!=null&&m.at==null){s=A.bx(B.A,"BottomSheet",B.jl,0,B.T,1,null,m) +s.sj(0,1) +r=m.as +if(r.length!==0){q=A.a8(r,!1,t.oY) +for(r=q.length,p=0;p")),d.h("aD<0>")),n=new A.bq(q,t.Xw),m=A.b6("bottomSheet") +p.a=p.b=!1 +s=new A.aSu(p,!0,q) +m.b=new A.vM(b,!1,new A.aSp(r,m,s),new A.aSq(r,m),new A.aSr(p,s,!0,b),a,!0,q,q,q,q,q,n) +s=m.aH() +return new A.MY(!1,s,o,new A.aSs(p,r,m,n,!0,new A.aSv(r,!0),b,o),d.h("MY<0>"))}, +sQy(a){var s=this.db +s===$&&A.b() +s.sj(0,A.V(a,s.a,s.b))}, +axh(a){var s,r,q,p,o=this,n={},m=o.cy +n.a=m +s=o.ch +s===$&&A.b() +r=s.r +if(r!=null&&r.a!=null){r=o.cx +r.toString +m.toString +q=o.CW +q===$&&A.b() +s=s.x +s===$&&A.b() +n.a=new A.bdY(r,m,q,s) +p=Math.min(1-s,s)}else p=0 +o.ad(new A.aSB(n,o,a)) +o.ch.p7(0,p)}, +av6(){var s,r=this.c +r.toString +s=A.E_(r) +if(s!=null&&s.f.length!==0)s.j3(0,B.a0t,B.ei)}, +gwx(){this.a.toString +return!0}, +aX(){var s,r=this,q=null +r.b9() +s=r.c +s.toString +r.dx=new A.ama(s,B.apB,$.aH()) +s=r.a.w +if(s==null)s=B.mp +r.cy=s +r.CW=B.Tk +r.cx=s +r.ch=A.bx(B.A,q,new A.bj(4e5),0,q,1,1,r) +r.db=A.bx(B.A,q,B.T,0,q,1,q,r)}, +b1(a){var s,r=this +r.al3(a) +s=r.a +s=s.w +if(s!=a.w)r.axh(s==null?B.mp:s) +s=a.cx +if(!J.j(r.a.cx,s))if(r.a.cx==null){s=r.at +if(s!=null)if(!s.e)s.c.$0()}else if(s==null)r.a3f() +else r.aEj()}, +ca(){var s,r,q=this,p=q.c.aj(t.Pu),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.E(0,q) +q.y=o +if(o!=null){n=o.d +n.F(0,q) +r=q.c.F4(t.Np) +if(r==null||!n.p(0,r)){n=o.r +if(!n.gak(n))q.aEz() +n=o.e +if(!n.gak(n))q.aEf()}}q.a3f() +q.al2()}, +m(){var s=this,r=s.dx +r===$&&A.b() +r.ok$=$.aH() +r.k4$=0 +r=s.ch +r===$&&A.b() +r.m() +r=s.db +r===$&&A.b() +r.m() +r=s.y +if(r!=null)r.d.E(0,s) +s.w.m() +s.x.m() +s.al4()}, +Pe(a,b,c,d,e,f,g,h,i){var s,r=this.c +r.toString +s=A.aY(r,null,t.l).w.Xl(f,g,h,i) +if(e)s=s.aOS(!0) +if(d&&s.f.d!==0)s=s.x_(s.r.Ef(s.w.d)) +if(b!=null)a.push(A.Lp(A.ni(b,s,null),c))}, +ane(a,b,c,d,e,f,g,h){return this.Pe(a,b,c,!1,d,e,f,g,h)}, +yP(a,b,c,d,e,f,g){return this.Pe(a,b,c,!1,!1,d,e,f,g)}, +Pd(a,b,c,d,e,f,g,h){return this.Pe(a,b,c,d,!1,e,f,g,h)}, +a_R(a,b){var s,r,q=this,p=q.a,o=p.at +if(o!=null){p=p.fx +s=q.x +r=s.y +s=r==null?A.l(s).h("dv.T").a(r):r +q.yP(a,new A.K3(o,B.a1Q,q.gaqT(),B.D,null,p,null,s,q.e),B.m1,!1,b===B.j,b===B.ab,!1)}}, +a_Q(a,b){this.a.toString}, +Ot(a,b){var s=this +if(s.dy===a&&(s.fr.a>>>24&255)/255===b)return +s.ad(new A.aSG(s,a,b))}, +A(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f={},e=A.B(a),d=a.aj(t.I) +d.toString +s=d.w +r=A.a([],t.s9) +d=h.a +q=d.c +p=d.d +o=d.f +n=d.e +d=d.CW!=null||!1 +h.gwx() +h.ane(r,new A.aeu(new A.iG(o,h.f),q,p,g),B.m_,!0,d,!1,!1,n!=null) +if(h.dy)h.yP(r,A.aKG(!0,g,h.fr,!1,g,g,g),B.m3,!0,!0,!0,!0) +if(h.a.e!=null){d=A.aY(a,B.bR,t.l).w +d=h.r=A.bF3(a,h.a.e.grb())+d.r.b +q=h.a.e +q.toString +h.yP(r,new A.eX(new A.aN(0,1/0,0,d),new A.Kw(1,d,d,d,g,g,q,g),g),B.m0,!0,!1,!1,!1)}f.a=!1 +f.b=null +if(h.at!=null||h.as.length!==0){d=A.a8(h.as,!0,t.l7) +q=h.at +if(q!=null)d.push(q.a) +m=A.fp(B.iN,d,B.C,B.aJ,g) +h.gwx() +h.yP(r,m,B.m4,!0,!1,!1,!0)}d=h.z +if(d!=null){d.a.gaR0() +f.a=!1 +d=h.z +if(d!=null){d=d.a +d.gf6(d)}f.b=e.dH.w +d=h.z +d=d==null?g:d.a +q=h.a.CW!=null||!1 +h.gwx() +h.Pd(r,d,B.h5,!1,q,!1,!1,!0)}f.c=!1 +if(h.Q!=null){a.aj(t.iB) +d=A.B(a) +l=d.ry.f +f.c=(l==null?0:l)!==0 +d=h.Q +d=d==null?g:d.a +q=h.a.e +h.gwx() +h.Pd(r,d,B.m5,!1,!0,!1,!1,q!=null)}d=h.a +d=d.CW +if(d!=null){h.gwx() +h.Pd(r,d,B.m6,!1,!1,!1,!1,!0)}d=h.ch +d===$&&A.b() +q=h.CW +q===$&&A.b() +p=h.dx +p===$&&A.b() +o=h.db +o===$&&A.b() +h.yP(r,new A.RO(h.a.r,d,q,p,o,g),B.m7,!0,!0,!0,!0) +switch(e.r.a){case 2:case 4:h.yP(r,A.dY(B.bE,g,B.D,!0,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,h.gav5(),g,g,g,g,!1,B.am),B.m2,!0,!1,!1,!0) +break +case 0:case 1:case 3:case 5:break}d=h.x +q=d.y +if(q==null?A.l(d).h("dv.T").a(q):q){h.a_Q(r,s) +h.a_R(r,s)}else{h.a_R(r,s) +h.a_Q(r,s)}d=t.l +q=A.aY(a,B.bR,d).w +h.gwx() +p=A.aY(a,B.lV,d).w +k=q.r.Ef(p.f.d) +q=A.aY(a,B.aC7,d).w +h.gwx() +d=A.aY(a,B.lV,d).w +d=d.f.d!==0?0:g +j=q.w.Ef(d) +i=k.d<=0&&h.a.c +d=h.a.ch +if(d==null)d=e.go +return new A.amb(!1,new A.O6(A.h5(B.T,!0,g,A.hg(h.ch,new A.aSF(f,h,i,k,j,s,r),g),B.n,d,0,g,g,g,g,g,B.cv),g),g)}, +$iaP:1} +A.aSw.prototype={ +$0(){this.a.x.P0(0,this.b)}, +$S:0} +A.aSE.prototype={ +$0(){this.a.z=this.b}, +$S:0} +A.aSC.prototype={ +$0(){this.a.Q=this.b}, +$S:0} +A.aSz.prototype={ +$1(a){var s,r +if(a.gez().a4(0,a.gaRc()).afV(0,1e-10)){s=this.a +if(s.ay==null){s.ay=new A.Lz(new A.aSA(s,a),!0) +r=s.c +r.toString +r=A.oV(r,t.X) +r.toString +s=s.ay +s.toString +r.a7o(s)}}else{s=this.a.ay +if(s!=null)s.en(0)}return!1}, +$S:137} +A.aSA.prototype={ +$0(){var s=this.b +A.bHp(s.gc9(s)) +s=this.a +s.Ot(!1,0) +s.sQy(1) +s.ay=null}, +$S:0} +A.aSy.prototype={ +$1(a){var s=this.a +return new A.dB(this.b,new A.K0(new A.OW(new A.aSx(s),s.ax),null),null,t.K3)}, +$S:333} +A.aSx.prototype={ +$2(a,b){var s=this.a.a.cx +return s==null?B.a1:s}, +$S:334} +A.aSD.prototype={ +$0(){}, +$S:0} +A.aSv.prototype={ +$0(){var s=this.a,r=s.ay +if(r!=null){r.en(0) +s.ay=null}}, +$S:0} +A.aSs.prototype={ +$0(){var s,r,q=this +q.a.b=!0 +s=q.b +if(s.at==null)return +r=s.db +r===$&&A.b() +r.bS(0) +q.f.$0() +q.d.gR().ah(0) +s.ad(new A.aSt(s)) +r=q.r.Q +r===$&&A.b() +if(r!==B.R)s.as.push(q.c.aH()) +q.w.fm(0)}, +$S:0} +A.aSt.prototype={ +$0(){var s=this.a +s.dy=!1 +s.fr=A.K(0,0,0,0) +s.at=null}, +$S:0} +A.aSu.prototype={ +$0(){var s=this +if(!s.b&&!s.a.b){s.c.en(0) +s.a.b=!0}}, +$S:0} +A.aSp.prototype={ +$0(){if(this.a.at==null)return +this.c.$0()}, +$S:0} +A.aSq.prototype={ +$0(){var s=this.a,r=this.b +if(B.b.p(s.as,r.aH()))s.ad(new A.aSo(s,r))}, +$S:0} +A.aSo.prototype={ +$0(){B.b.E(this.a.as,this.b.aH())}, +$S:0} +A.aSr.prototype={ +$0(){this.a.a=!0 +this.b.$0() +this.d.m()}, +$S:0} +A.aSB.prototype={ +$0(){var s=this.b +s.cx=this.a.a +s.cy=this.c}, +$S:0} +A.aSG.prototype={ +$0(){var s=this.a +s.dy=this.b +s.fr=A.K(B.e.bg(255*this.c),0,0,0)}, +$S:0} +A.aSF.prototype={ +$2(a,b){var s,r,q,p,o,n,m=this,l=A.am([B.pK,new A.ag8(a,new A.bd(A.a([],t.h),t.o))],t.n,t.od),k=m.b,j=k.a.d,i=k.cy +i.toString +s=k.ch +s===$&&A.b() +s=s.x +s===$&&A.b() +r=k.CW +r===$&&A.b() +q=k.dx +q===$&&A.b() +k=k.cx +k.toString +p=m.a +o=p.a +n=p.c +return A.pY(l,new A.tv(new A.bbA(m.c,j,m.d,m.e,m.f,q,k,i,s,r,o,p.b,n,null),m.r,null))}, +$S:335} +A.ag8.prototype={ +tK(a,b){var s=this.e,r=A.pa(s).w,q=r.y +if(!(q==null?A.l(r).h("dv.T").a(q):q)){s=A.pa(s).x +r=s.y +s=r==null?A.l(s).h("dv.T").a(r):r}else s=!0 +return s}, +hi(a){var s,r,q=this.e +A.pa(q).a.toString +q=A.pa(q) +if(q.a.at!=null){s=q.x +r=s.y +s=r==null?A.l(s).h("dv.T").a(r):r}else s=!1 +if(s)q.e.gR().ah(0)}} +A.Eu.prototype={} +A.b2H.prototype={ +a5(a,b){var s=this.a +if(b#"+A.br(this)+"("+A.i(this.a)+", "+this.b.l(0)+")"}} +A.vM.prototype={ +a8(){return new A.Hn(B.a6,B.m)}} +A.Hn.prototype={ +aX(){this.b9() +var s=this.a.c +s.cF() +s=s.ej$ +s.b=!0 +s.a.push(this.gav7())}, +m(){this.a.r.$0() +this.b0()}, +b1(a){this.bh(a)}, +ah(a){this.a.c.d3(0) +this.a.e.$0()}, +aB6(a){this.d=B.Y}, +a4x(a,b){var s=this.a.c.x +s===$&&A.b() +this.d=new A.b2H(s,B.a6)}, +aB4(a){return this.a4x(a,null)}, +av8(a){if(a===B.R)this.a.f.$0()}, +Va(a){var s,r=B.f.a4(1,a.gez()),q=this.c +q.toString +s=A.pa(q) +if(r<0.3){s.sQy(r*0.3*10) +q=s.db +q===$&&A.b() +q=q.x +q===$&&A.b() +s.Ot(!0,Math.max(0.1,0.6-q))}else{s.sQy(1) +s.Ot(!1,0)}a.gez() +a.gaMF() +return!1}, +A(a){var s=this,r=null,q=s.a,p=q.c,o=q.d,n=q.e,m=q.w,l=q.y,k=q.z,j=q.Q +j=A.bq2(p,l,m,q.as,q.at,k,o,n,s.gaB3(),s.gaB5(),j,r) +return A.hg(p,new A.bcv(s),new A.bu(A.bL(r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r),!0,!1,!1,!1,new A.dB(s.gV9(),j,r,t.K3),r))}} +A.bcv.prototype={ +$2(a,b){var s=this.a,r=s.d +s=s.a.c.x +s===$&&A.b() +return new A.ef(B.bu,null,r.a5(0,s),b,null)}, +$S:336} +A.MY.prototype={} +A.amb.prototype={ +dh(a){return this.f!==a.f}} +A.bbB.prototype={ +$2(a,b){if(!a.a)a.H(0,b)}, +$S:61} +A.TU.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.TV.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.TW.prototype={ +b1(a){this.bh(a) +this.x8()}, +ca(){var s,r,q,p,o=this +o.e8() +s=o.cX$ +r=o.gu1() +q=o.c +q.toString +q=A.uM(q) +o.jf$=q +p=o.uJ(q,r) +if(r){o.kF(s,o.hd$) +o.hd$=!1}if(p)if(s!=null)s.m()}, +m(){var s,r=this +r.je$.al(0,new A.bbB()) +s=r.cX$ +if(s!=null)s.m() +r.cX$=null +r.al1()}} +A.W3.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.a8Z.prototype={ +A(a){var s=this,r=null +if(A.B(a).r===B.b1)return new A.BP(8,B.eF,s.c,s.d,s.e===!0,B.apj,3,r,B.jl,B.a1X,B.aX,A.HU(),r,r,r) +return new A.GQ(r,s.c,s.d,s.e,r,r,r,B.bC,B.hs,B.B,A.HU(),r,r,r)}} +A.GQ.prototype={ +a8(){return new A.aj4(new A.bq(null,t.C),null,null,B.m)}} +A.aj4.prototype={ +gyw(){var s=this.a.e +if(s==null){s=this.fr +s===$&&A.b() +s=s.a +s=s==null?null:s.L(this.gDz())}return s==null?!1:s}, +gxd(){this.a.toString +var s=this.fr +s===$&&A.b() +s=s.e +if(s==null){s=this.fx +s===$&&A.b() +s=!s}return s}, +gJV(){return new A.bt(new A.b82(this),t.Lf)}, +gDz(){var s=A.aW(t.ui) +if(this.db)s.F(0,B.fF) +if(this.dx)s.F(0,B.F) +return s}, +gaDh(){var s,r,q,p,o=this,n=o.dy +n===$&&A.b() +s=n.db +r=A.b6("dragColor") +q=A.b6("hoverColor") +p=A.b6("idleColor") +switch(n.a.a){case 1:r.b=A.K(153,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255) +q.b=A.K(B.e.bg(127.5),s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255) +n=o.fx +n===$&&A.b() +if(n){n=o.c +n.toString +n=A.B(n).cy.a +n=A.K(255,n>>>16&255,n>>>8&255,n&255)}else n=A.K(B.e.bg(25.5),s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255) +p.b=n +break +case 0:r.b=A.K(191,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255) +q.b=A.K(166,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255) +n=o.fx +n===$&&A.b() +if(n){n=o.c +n.toString +n=A.B(n).cy.a +n=A.K(255,n>>>16&255,n>>>8&255,n&255)}else n=A.K(B.e.bg(76.5),s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255) +p.b=n +break}return new A.bt(new A.b8_(o,r,q,p),t.h2)}, +gaDI(){var s=this.dy +s===$&&A.b() +return new A.bt(new A.b81(this,s.a,s.db),t.h2)}, +gaDH(){var s=this.dy +s===$&&A.b() +return new A.bt(new A.b80(this,s.a,s.db),t.h2)}, +gaDe(){return new A.bt(new A.b7Z(this),t.pj)}, +aX(){var s,r=this +r.ZQ() +s=r.cy=A.bx(B.A,null,B.T,0,null,1,null,r) +s.cF() +s=s.dw$ +s.b=!0 +s.a.push(new A.b88(r))}, +ca(){var s,r=this,q=r.c +q.toString +s=A.B(q) +r.dy=s.ax +q=r.c +q.aj(t.Nn) +q=A.B(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.aiI()}, +GL(){var s,r=this,q=r.at +q===$&&A.b() +q.saf(0,r.gaDh().a.$1(r.gDz())) +q.sqd(r.gaDI().a.$1(r.gDz())) +q.sadZ(r.gaDH().a.$1(r.gDz())) +s=r.c.aj(t.I) +s.toString +q.scz(s.w) +q.sXt(r.gaDe().a.$1(r.gDz())) +s=r.a.r +if(s==null){s=r.fr +s===$&&A.b() +s=s.f}if(s==null){s=r.fx +s===$&&A.b() +s=s?null:B.e7}q.sGe(s) +s=r.fr +s===$&&A.b() +s=s.y +if(s==null){s=r.fx +s===$&&A.b() +s=s?0:2}q.sUw(s) +s=r.fr.z +q.sWd(s==null?0:s) +s=r.fr.Q +q.sWk(0,s==null?48:s) +s=r.c +s.toString +q.sdD(0,A.aY(s,B.bR,t.l).w.r) +q.sOh(r.a.db) +q.sab2(!r.gxd())}, +LY(a){this.ZP(a) +this.ad(new A.b87(this))}, +LX(a,b){this.ZO(a,b) +this.ad(new A.b86(this))}, +Vr(a){var s,r=this +r.aiJ(a) +if(r.abx(a.gcJ(a),a.gdR(a),!0)){r.ad(new A.b84(r)) +s=r.cy +s===$&&A.b() +s.bS(0)}else if(r.dx){r.ad(new A.b85(r)) +s=r.cy +s===$&&A.b() +s.d3(0)}}, +Vs(a){var s,r=this +r.aiK(a) +r.ad(new A.b83(r)) +s=r.cy +s===$&&A.b() +s.d3(0)}, +m(){var s=this.cy +s===$&&A.b() +s.m() +this.ZN()}} +A.b82.prototype={ +$1(a){var s,r +if(a.p(0,B.F)){s=this.a +s.a.toString +s=s.fr +s===$&&A.b() +s=s.d===!0}else s=!1 +if(s)return!0 +s=this.a +r=s.a.Q +s=s.fr +s===$&&A.b() +s=s.c +s=s==null?null:s.L(a) +return s==null?!1:s}, +$S:338} +A.b8_.prototype={ +$1(a){var s,r,q,p=this,o=null +if(a.p(0,B.fF)){s=p.a.fr +s===$&&A.b() +s=s.r +s=s==null?o:s.L(a) +return s==null?p.b.aH():s}s=p.a +if(s.gJV().a.$1(a)){s=s.fr +s===$&&A.b() +s=s.r +s=s==null?o:s.L(a) +return s==null?p.c.aH():s}r=s.fr +r===$&&A.b() +r=r.r +r=r==null?o:r.L(a) +if(r==null)r=p.d.aH() +q=s.fr.r +q=q==null?o:q.L(a) +if(q==null)q=p.c.aH() +s=s.cy +s===$&&A.b() +s=s.x +s===$&&A.b() +s=A.W(r,q,s) +s.toString +return s}, +$S:6} +A.b81.prototype={ +$1(a){var s=this.a +if(s.gyw()&&s.gJV().a.$1(a)){s=s.fr +s===$&&A.b() +s=s.w +s=s==null?null:s.L(a) +if(s==null){s=this.c +s=this.b===B.a2?A.K(8,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255):A.K(13,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return s}return B.E}, +$S:6} +A.b80.prototype={ +$1(a){var s=this.a +if(s.gyw()&&s.gJV().a.$1(a)){s=s.fr +s===$&&A.b() +s=s.x +s=s==null?null:s.L(a) +if(s==null){s=this.c +s=this.b===B.a2?A.K(B.e.bg(25.5),s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255):A.K(64,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return s}return B.E}, +$S:6} +A.b7Z.prototype={ +$1(a){var s,r +if(a.p(0,B.F)&&this.a.gJV().a.$1(a)){s=this.a.fr +s===$&&A.b() +s=s.b +s=s==null?null:s.L(a) +return s==null?12:s}s=this.a +r=s.a.w +if(r==null){r=s.fr +r===$&&A.b() +r=r.b +r=r==null?null:r.L(a)}if(r==null){s=s.fx +s===$&&A.b() +r=8/(s?2:1) +s=r}else s=r +return s}, +$S:149} +A.b88.prototype={ +$0(){this.a.GL()}, +$S:0} +A.b87.prototype={ +$0(){this.a.db=!0}, +$S:0} +A.b86.prototype={ +$0(){this.a.db=!1}, +$S:0} +A.b84.prototype={ +$0(){this.a.dx=!0}, +$S:0} +A.b85.prototype={ +$0(){this.a.dx=!1}, +$S:0} +A.b83.prototype={ +$0(){this.a.dx=!1}, +$S:0} +A.Ob.prototype={ +gu(a){var s=this +return A.X(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=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.Ob&&b.a==s.a&&b.b==s.b&&b.c==s.c&&b.d==s.d&&b.e==s.e&&J.j(b.f,s.f)&&b.r==s.r&&b.w==s.w&&b.x==s.x&&b.y==s.y&&b.z==s.z&&b.Q==s.Q}} +A.amg.prototype={} +A.Oc.prototype={ +gu(a){var s=this +return A.X(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=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.Oc&&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.j(b.z,s.z)&&!0}} +A.aiq.prototype={ +L(a){var s,r=this,q=r.a,p=q==null?null:q.L(a) +q=r.b +s=q==null?null:q.L(a) +if(p==s)return p +if(p==null){q=s.a +return A.bp(new A.be(A.K(0,q.gj(q)>>>16&255,q.gj(q)>>>8&255,q.gj(q)&255),0,B.I,-1),s,r.c)}if(s==null){q=p.a +return A.bp(p,new A.be(A.K(0,q.gj(q)>>>16&255,q.gj(q)>>>8&255,q.gj(q)&255),0,B.I,-1),r.c)}return A.bp(p,s,r.c)}, +$ica:1} +A.amh.prototype={} +A.Od.prototype={ +gu(a){var s=this +return A.X(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.a_(b)!==A.p(s))return!1 +return b instanceof A.Od&&J.j(b.a,s.a)&&b.b==s.b&&J.j(b.c,s.c)&&J.j(b.d,s.d)&&J.j(b.e,s.e)&&J.j(b.f,s.f)&&J.j(b.r,s.r)&&J.j(b.w,s.w)&&J.j(b.x,s.x)}} +A.ami.prototype={} +A.Oe.prototype={ +gu(a){return A.X(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.a_(b)!==A.p(this))return!1 +return b instanceof A.Oe&&J.j(b.a,this.a)&&!0}} +A.amj.prototype={} +A.ao3.prototype={ +a83(a,b,c){return A.dr(A.a([this.ax],t.Ne),b,null)}, +sef(a,b){throw A.c(A.d1(null))}} +A.amn.prototype={ +Ba(a){var s +this.a__(a) +s=this.a +if(s.ghL()&&this.b){s=s.gar().gR() +s.toString +s.oA()}}, +FY(a){}, +WJ(a){var s,r=this.a +if(r.ghL()){r=r.gar().gR() +r.toString +s=a.a +r.gai().C8(B.bH,s.a4(0,a.c),s)}}, +Bc(a){var s=this.a,r=s.gar().gR() +r.toString +r.kv() +if(s.ghL()){r=this.x.c +r.toString +switch(A.B(r).r.a){case 2:case 4:s=s.gar().gR() +s.toString +s.gai().YK(B.b9) +break +case 0:case 1:case 3:case 5:s=s.gar().gR() +s.toString +s=s.gai() +r=s.hc +r.toString +s.iw(B.b9,r) +break}}this.x.a.toString}, +Bb(a){var s,r=this.a +if(r.ghL()){r=r.gar().gR() +r.toString +r=r.gai() +s=r.hc +s.toString +r.rF(B.bH,s) +s=this.x.c +s.toString +A.aCx(s)}}} +A.Of.prototype={ +a8(){return new A.U7(new A.bq(null,t.NE),B.m)}} +A.U7.prototype={ +gJu(){var s,r=null +this.a.toString +s=this.e +if(s==null){s=A.tL(!0,r,!0,!0,r,r,!0) +this.e=s}return s}, +gVp(){var s=this.w +s===$&&A.b() +return s}, +ghL(){this.a.toString +return!0}, +aX(){var s,r=this +r.b9() +r.r=new A.amn(r,r) +s=A.dr(null,null,r.a.c) +s=A.bww(s) +r.d=s +s.P(0,r.ga3y())}, +b1(a){var s,r,q=this +q.bh(a) +if(q.a.c!==a.c||!1){s=q.d +s===$&&A.b() +r=q.ga3y() +s.H(0,r) +s=q.d +s.ok$=$.aH() +s.k4$=0 +s=A.dr(null,null,q.a.c) +s=A.bww(s) +q.d=s +s.P(0,r)}if(q.gJu().gdk()){s=q.d +s===$&&A.b() +s=s.a.b +s=s.a===s.b}else s=!1 +if(s)q.f=!1 +else q.f=!0}, +m(){var s=this.e +if(s!=null)s.m() +s=this.d +s===$&&A.b() +s.ok$=$.aH() +s.k4$=0 +this.b0()}, +axQ(){var s,r,q=this +if(q.gJu().gdk()){s=q.d +s===$&&A.b() +s=s.a.b +r=s.a!==s.b}else r=!0 +if(r===q.f)return +q.ad(new A.bc2(q,r))}, +aBE(a,b){var s,r=this,q=r.aBH(b) +if(q!==r.f)r.ad(new A.bc1(r,q)) +r.a.toString +s=r.c +s.toString +switch(A.B(s).r.a){case 2:case 4:if(b===B.bH){s=r.x.gR() +if(s!=null)s.mn(a.gtc())}return +case 0:case 1:case 3:case 5:break}}, +aBG(){var s=this.d +s===$&&A.b() +s=s.a.b +if(s.a===s.b)this.x.gR().XC()}, +aBH(a){var s,r=this.r +r===$&&A.b() +if(!r.b)return!1 +r=this.d +r===$&&A.b() +r=r.a +s=r.b +if(s.a===s.b)return!1 +if(a===B.aM)return!1 +if(a===B.bH)return!0 +if(r.a.length!==0)return!0 +return!1}, +A(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=null,c=A.B(a),b=a.aj(t.Uf) +if(b==null)b=B.fg +s=e.gJu() +e.a.toString +switch(c.r.a){case 2:r=A.j9(a) +e.w=!0 +q=$.boP() +e.a.toString +p=b.w +if(p==null)p=r.gip() +o=b.x +if(o==null){b=r.gip() +o=A.K(102,b.gj(b)>>>16&255,b.gj(b)>>>8&255,b.gj(b)&255)}n=new A.m(-2/A.aY(a,B.dh,t.l).w.b,0) +m=!0 +l=!0 +k=B.e6 +break +case 4:r=A.j9(a) +e.w=!1 +q=$.boO() +e.a.toString +p=b.w +if(p==null)p=r.gip() +o=b.x +if(o==null){b=r.gip() +o=A.K(102,b.gj(b)>>>16&255,b.gj(b)>>>8&255,b.gj(b)&255)}n=new A.m(-2/A.aY(a,B.dh,t.l).w.b,0) +m=!0 +l=!0 +k=B.e6 +break +case 0:case 1:e.w=!1 +q=$.bp9() +p=b.w +if(p==null)p=c.ax.b +o=b.x +if(o==null){b=c.ax.b +o=A.K(102,b.gj(b)>>>16&255,b.gj(b)>>>8&255,b.gj(b)&255)}k=d +n=k +m=!1 +l=!1 +break +case 3:case 5:e.w=!1 +q=$.biP() +p=b.w +if(p==null)p=c.ax.b +o=b.x +if(o==null){b=c.ax.b +o=A.K(102,b.gj(b)>>>16&255,b.gj(b)>>>8&255,b.gj(b)&255)}k=d +n=k +m=!1 +l=!1 +break +default:k=d +o=k +p=o +n=p +l=n +m=l +q=m}b=a.aj(t.sp) +if(b==null)b=B.mS +e.a.toString +j=e.d +j===$&&A.b() +i=b.w.cI(j.ax.a) +e.a.toString +;j=e.f +h=e.d +h===$&&A.b() +g=b.x +if(g==null)g=B.b2 +f=$.bod() +b=A.bri(!0,d,d,d,!1,B.dF,B.C,d,A.bXU(),h,p,d,n,l,k,2,B.D,!0,!0,!0,!1,s,!1,d,e.x,B.a2,d,f,b.Q,d,d,!1,"\u2022",d,d,d,e.gaBD(),e.gaBF(),d,d,m,!0,!0,d,!0,d,B.dK,d,o,q,B.cd,B.bS,!1,j,d,d,d,B.ary,i,g,B.eb,d,b.at,d,d,b.as,d,d) +e.a.toString +j=e.r +j===$&&A.b() +b=j.a7Z(B.aQ,new A.ii(b,d)) +return new A.bu(A.bL(d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,new A.bc3(e),d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d,d),!1,!1,!1,!1,b,d)}, +gar(){return this.x}} +A.bc2.prototype={ +$0(){this.a.f=this.b}, +$S:0} +A.bc1.prototype={ +$0(){this.a.f=this.b}, +$S:0} +A.bc3.prototype={ +$0(){this.a.gJu().lG()}, +$S:0} +A.bcu.prototype={ +J(){return"_SliderType."+this.b}} +A.a9A.prototype={ +J(){return"SliderInteraction."+this.b}} +A.OA.prototype={ +a8(){return new A.Uh(new A.bq(null,t.C),new A.D4(),null,null,B.m)}} +A.Uh.prototype={ +gdB(a){var s +this.a.toString +s=this.as +s.toString +return s}, +aX(){var s,r=this,q=null +r.b9() +r.d=A.bx(B.A,q,B.aX,0,q,1,q,r) +r.e=A.bx(B.A,q,B.aX,0,q,1,q,r) +r.f=A.bx(B.A,q,B.fi,0,q,1,q,r) +r.r=A.bx(B.A,q,B.B,0,q,1,q,r) +s=r.f +r.a.toString +s.sj(0,1) +r.r.sj(0,r.a0F(r.a.c)) +r.y=A.am([B.ayB,new A.cz(r.gan3(),new A.bd(A.a([],t.h),t.o),t.zB)],t.n,t.od) +r.a.toString +if(r.as==null)r.as=A.tL(!0,q,!0,!0,q,q,!1)}, +m(){var s=this,r=s.w +if(r!=null)r.aI(0) +r=s.d +r===$&&A.b() +r.m() +r=s.e +r===$&&A.b() +r.m() +r=s.f +r===$&&A.b() +r.m() +r=s.r +r===$&&A.b() +r.m() +r=s.ch +if(r!=null)r.en(0) +r=s.ch +if(r!=null)r.m() +s.ch=null +r=s.as +if(r!=null)r.m() +s.amk()}, +asP(a){var s=this.awq(a),r=this.a +if(s!==r.c){r.e.$1(s) +r=this.as +if(r!=null)r.lG()}}, +R2(a){this.Q=!0 +this.a.toString}, +R0(a){this.Q=!1 +this.a.toString}, +an4(a){var s,r=this.x,q=$.ap.Y$.z.i(0,r).ga7() +q.toString +t.kb.a(q) +r=$.ap.Y$.z.i(0,r).aj(t.I) +r.toString +s=r.w +switch(a.a.a){case 0:switch(s.a){case 0:q.L6() +break +case 1:q.M5() +break}break +case 1:switch(s.a){case 0:q.M5() +break +case 1:q.L6() +break}break +case 2:q.M5() +break +case 3:q.L6() +break}}, +atr(a){if(a!==this.at)this.ad(new A.bcr(this,a))}, +atz(a){if(a!==this.ax)this.ad(new A.bcs(this,a))}, +awq(a){var s=this.a,r=s.x +s=s.w +return a*(r-s)+s}, +a0F(a){var s=this.a,r=s.x,q=s.w,p=r>q?(a-q)/(r-q):0 +s=s.y +return s!=null?B.e.bg(p*s)/s:p}, +A(a){this.a.toString +switch(0){case 0:return this.ao2(a)}}, +ao2(b6){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=null,b4={},b5=A.B(b6) +b6.aj(t.Dj) +s=A.B(b6) +r=b4.a=s.eY +q=new A.bcm(b6,4,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3) +p=q.gGR() +s=A.aW(t.ui) +b2.a.toString +if(b2.ax)s.F(0,B.F) +if(b2.at)s.F(0,B.K) +if(b2.Q)s.F(0,B.fF) +o=r.db +if(o==null)o=p +if(o instanceof A.aQj){n=r.ay +if(n==null){m=b5.ax +l=m.db +m=m.cy +n=A.BG(A.K(153,l.gj(l)>>>16&255,l.gj(l)>>>8&255,l.gj(l)&255),A.K(B.e.bg(229.5),m.gj(m)>>>16&255,m.gj(m)>>>8&255,m.gj(m)&255))}}else{b2.a.toString +n=r.ay +if(n==null)n=b5.ax.b}m=r.a +l=m==null?q.a:m +b2.a.toString +k=r.b +if(k==null)k=q.gwH() +b2.a.toString +j=b4.a.c +if(j==null)j=q.gxu() +b2.a.toString +i=b4.a.d +if(i==null)i=q.gC7() +h=b4.a.e +if(h==null)h=q.gEC() +g=b4.a.r +if(g==null)g=q.gEE() +f=b4.a.f +if(f==null)f=q.gEF() +b2.a.toString +e=b4.a.w +if(e==null)e=q.gDP() +b2.a.toString +d=b4.a.x +if(d==null)d=q.gFj() +c=b4.a.y +if(c==null)c=q.gEB() +b=b4.a.z +if(b==null)b=q.gED() +b2.a.toString +a=b4.a.Q +if(a==null)a=q.gk7() +a0=b4.a.at +if(a0==null)a0=q.gEG() +a1=new A.bcp(b4,b2,s,q).$0() +a2=b4.a +a3=a2.cy +if(a3==null)a3=B.SJ +a4=a2.CW +if(a4==null)a4=B.SI +a5=a2.cx +if(a5==null)a5=B.SH +a6=a2.ch +if(a6==null)a6=B.SG +a7=a2.fy +if(a7==null)a7=B.aqC +a2=a2.go +if(a2==null)a2=q.gGS() +m=l==null?m:l +l=a1==null?r.ax:a1 +b4.a=A.buf(e,k,r.k3,c,h,b,g,f,a0,d,j,r.id,r.k2,r.as,l,a6,r.dy,r.dx,r.fr,r.fx,i,a7,a,r.k1,a5,a4,m,a3,n,o,a2) +b2.a.toString +m=A.ce(b3,s,t.WV) +if(m==null)a8=b3 +else a8=m +if(a8==null)a8=B.df.L(s) +b2.a.toString +switch(b5.r.a){case 0:case 1:case 2:case 3:case 4:a9=b3 +break +case 5:a9=new A.bco(b2) +break +default:a9=b3}switch(A.aY(b6,B.h3,t.l).w.ch.a){case 1:b0=B.aka +break +case 0:b0=B.akk +break +default:b0=b3}s=A.d9(b6,B.bz) +s=s==null?b3:s.gdU() +b1=(s==null?B.aw:s).aGn(0,1.3).a +s=b2.y +s===$&&A.b() +m=b2.gdB(b2) +l=b2.a0F(b2.a.c) +k=b2.a +j=k.y +k=k.z +i=b4.a +h=new A.bcq(b6).$0() +g=b2.a +f=g.x +g=g.w +g=f>g?b2.gasO():b3 +m=A.aDF(s,!1,new A.wB(b2.ay,new A.amR(l,b3,j,k,i,b1,h,g,b2.gR1(),b2.gR_(),b3,b2,b2.at,b2.ax,B.arj,b2.x),b3),!0,m,a8,b3,b2.gatq(),b2.gaty(),b0) +return new A.bu(A.bL(b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,a9,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,b3,!0,b3,b3,b3,b3,b3,b3,b3),!0,!1,!1,!1,m,b3)}, +agO(){var s,r,q=this +if(q.ch==null){q.ch=A.p0(new A.bct(q),!1) +s=q.c +s.toString +q.a.toString +s=A.bkS(s,t.N1) +s.toString +r=q.ch +r.toString +s.xy(0,r)}}, +$iaP:1} +A.bcr.prototype={ +$0(){this.a.at=this.b}, +$S:0} +A.bcs.prototype={ +$0(){this.a.ax=this.b}, +$S:0} +A.bcp.prototype={ +$0(){var s,r,q,p=this +p.b.a.toString +s=p.c +r=t.MH +q=A.ce(p.a.a.ax,s,r) +return q==null?A.ce(p.d.gcG(),s,r):q}, +$S:207} +A.bcq.prototype={ +$0(){return A.aY(this.a,B.iK,t.l).w.a}, +$S:206} +A.bco.prototype={ +$0(){var s=this.a +if(!s.gdB(s).gdk()&&s.gdB(s).ger())s.gdB(s).lG()}, +$S:0} +A.bct.prototype={ +$1(a){var s=this.a +return A.bjG(new A.aoW(s,null),s.ay,B.i,!0)}, +$S:347} +A.amR.prototype={ +b5(a){var s,r=this,q=a.aj(t.I) +q.toString +s=A.B(a) +return A.bPE(r.CW,r.f,A.aY(a,B.lU,t.l).w.CW,r.ay,r.ch,r.r,r.as,r.Q,r.z,s.r,r.y,r.e,r.at,r.w,r.ax,q.w,r.x,r.d)}, +bb(a,b){var s,r,q=this +b.saIn(q.f) +b.sj(0,q.d) +b.sag6(q.e) +b.sW7(0,q.r) +b.sagZ(q.w) +b.sNz(q.x) +b.sag0(q.y) +b.sdS(q.z) +b.eY=q.Q +b.dH=q.as +s=a.aj(t.I) +s.toString +b.scz(s.w) +b.sagb(q.at) +b.saO5(0,A.B(a).r) +b.sdk(q.ay) +b.saKT(q.ch) +s=A.aY(a,B.lU,t.l).w.CW +r=b.aN +r===$&&A.b() +r.b=s +r=b.aZ +r===$&&A.b() +r.b=s +b.saFs(q.CW)}} +A.H9.prototype={ +an_(a,b,c,d,e,f,g,h,i,j,k,l,m,n,a0,a1,a2,a3){var s,r,q,p=this,o=null +p.zx() +s=new A.aEO(A.I(t.S,t.EG)) +r=A.a2F(o,o) +r.w=s +r.ay=p.gR1() +r.ch=p.gat8() +r.CW=p.gR_() +r.cx=p.gaqW() +r.b=c +p.aN=r +r=A.aaH(o,o) +r.w=s +r.aK=p.gavf() +r.b6=p.gavm() +r.b=c +p.aZ=r +r=p.B +q=r.d +q===$&&A.b() +p.W=A.c5(B.a6,q,o) +q=r.e +q===$&&A.b() +q=A.c5(B.a6,q,o) +q.a.f8(new A.bb_(p)) +p.a6=q +r=r.f +r===$&&A.b() +p.an=A.c5(B.dE,r,o)}, +gRM(){var s=this.ga5j() +return new A.ad(s,new A.baY(),A.ab(s).h("ad<1,Y>")).lF(0,B.iY)}, +gRL(){var s=this.ga5j() +return new A.ad(s,new A.baX(),A.ab(s).h("ad<1,Y>")).lF(0,B.iY)}, +ga5j(){var s,r=this.de +r.ch.toString +r.cx.toString +s=this.dA!=null +s +return A.a([new A.U(48,48),new A.U(20,20),r.CW.O8(s,r)],t.X4)}, +gSX(){var s=this.de +return s.cy.afG(!1,this,s)}, +sj(a,b){var s,r,q=this,p=q.dG,o=p!=null&&p>0?q.CO(b):b +if(o===q.bd)return +q.bd=o +p=q.dG +p=p!=null&&p>0 +s=q.B.r +if(p){s===$&&A.b() +p=s.x +p===$&&A.b() +r=Math.abs(o-p) +s.e=r!==0?new A.bj(B.e.bg(75e3*(1/r))):B.B +s.z=B.aN +s.kh(o,B.dE,null)}else{s===$&&A.b() +s.sj(0,o)}q.bY()}, +sag6(a){if(a==this.eM)return +this.eM=a +this.bY()}, +saO5(a,b){if(this.eA===b)return +this.eA=b +this.bY()}, +sagb(a){return}, +saIn(a){if(a==this.dG)return +this.dG=a +this.b_()}, +sW7(a,b){if(b==this.fo)return +this.fo=b +this.zx()}, +sagZ(a){if(a.k(0,this.de))return +this.de=a +this.zx()}, +sNz(a){if(a===this.he)return +this.he=a +this.zx()}, +sag0(a){if(a.k(0,this.bm))return +this.bm=a +this.b_()}, +sdS(a){var s,r,q=this +if(J.j(a,q.dA))return +s=q.dA +q.dA=a +r=a!=null +if(s!=null!==r){s=q.B.f +if(r){s===$&&A.b() +s.bS(0)}else{s===$&&A.b() +s.d3(0)}q.b_() +q.bY()}}, +scz(a){if(a===this.cY)return +this.cY=a +this.zx()}, +sdk(a){var s,r,q=this +if(a===q.e5)return +q.e5=a +s=q.B +r=s.d +if(a){r===$&&A.b() +r.bS(0) +if(q.gCk()){s=s.e +s===$&&A.b() +s.bS(0)}}else{r===$&&A.b() +r.d3(0) +if(q.gCk()){s=s.e +s===$&&A.b() +s.d3(0)}}q.bY()}, +saKT(a){if(a===this.hC)return +this.hC=a +this.a6x(a)}, +saKU(a){var s=this +if(a===s.fp)return +s.fp=a +s.a6x(s.hC)}, +saFs(a){if(a===this.jT)return +this.jT=a +this.bY()}, +a6x(a){var s,r=this +if(a&&r.fp){s=r.B.d +s===$&&A.b() +s.bS(0)}else if(!r.e5){s=r.B.d +s===$&&A.b() +s.d3(0)}}, +gCk(){switch(this.de.fy.a){case 0:var s=this.dG +return s!=null&&s>0 +case 1:s=this.dG +return!(s!=null&&s>0) +case 2:return!0 +case 3:return!1}}, +ganp(){switch(this.eA.a){case 2:case 4:return 0.1 +case 0:case 1:case 3:case 5:return 0.05}}, +zx(){var s=this,r=s.fo,q=s.ao +if(r!=null){q.sef(0,A.dr(null,s.de.go,r)) +q.scz(s.cY) +q.sdU(new A.ki(s.he)) +q.W9()}else q.sef(0,null) +s.aa()}, +Cw(){this.OT() +this.ao.aa() +this.zx()}, +aw(a){var s,r,q=this +q.am4(a) +s=q.W +s===$&&A.b() +r=q.geG() +s.a.P(0,r) +s=q.a6 +s===$&&A.b() +s.a.P(0,r) +s=q.an +s===$&&A.b() +s.a.P(0,r) +s=q.B.r +s===$&&A.b() +s.cF() +s=s.dw$ +s.b=!0 +s.a.push(r)}, +ap(a){var s,r=this,q=r.W +q===$&&A.b() +s=r.geG() +q.a.H(0,s) +q=r.a6 +q===$&&A.b() +q.a.H(0,s) +q=r.an +q===$&&A.b() +q.a.H(0,s) +q=r.B.r +q===$&&A.b() +q.H(0,s) +r.am5(0)}, +m(){this.ao.m() +this.iU()}, +ass(a){switch(this.cY.a){case 0:return 1-a +case 1:return a}}, +CO(a){var s=A.V(a,0,1),r=this.dG +if(r!=null&&r>0){r.toString +s=B.e.bg(s*r)/r}return s}, +a5q(a){var s,r,q,p=this,o=p.B +if(o.c==null)return +o.agO() +if(!p.bt&&p.dA!=null){switch(p.jT.a){case 0:case 1:p.bt=!0 +s=p.jy(a) +r=p.gSX() +q=p.gSX() +q=p.ass((s.a-r.a)/(q.c-q.a)) +p.Y=q +r=p.dA +r.toString +r.$1(p.CO(q)) +break +case 3:s=p.b3 +s.toString +if(s.p(0,p.jy(a))){p.bt=!0 +p.Y=p.bd}break +case 2:break}if(p.bt){p.eY.$1(p.CO(p.bd)) +s=o.d +s===$&&A.b() +s.bS(0) +if(p.gCk()){s=o.e +s===$&&A.b() +s.bS(0) +s=o.w +if(s!=null)s.aI(0) +o.w=A.d0(new A.bj(5e5),new A.baZ(p))}}}}, +Qo(){var s,r,q=this,p=q.B +if(p.c==null)return +if(q.bt&&!0){q.dH.$1(q.CO(q.Y)) +s=q.bt=!1 +q.Y=0 +r=p.d +r===$&&A.b() +r.d3(0) +if(q.gCk()?p.w==null:s){p=p.e +p===$&&A.b() +p.d3(0)}}}, +R2(a){this.a5q(a.b)}, +at9(a){var s,r,q,p=this +if(p.B.c==null)return +s=p.bt +if(!s&&p.jT===B.ark){s=p.bt=!0 +p.Y=p.bd}switch(p.jT.a){case 0:case 2:case 3:if(s&&p.dA!=null){s=a.c +s.toString +r=p.gSX() +q=s/(r.c-r.a) +switch(p.cY.a){case 0:p.Y-=q +break +case 1:p.Y+=q +break}s=p.dA +s.toString +s.$1(p.CO(p.Y))}break +case 1:break}}, +R0(a){this.Qo()}, +avg(a){this.a5q(a.a)}, +avn(a){this.Qo()}, +lo(a){return!0}, +p9(a,b){var s,r=this +if(r.B.c==null)return +if(t.pY.b(a)&&r.dA!=null){s=r.aN +s===$&&A.b() +s.zA(a) +s=r.aZ +s===$&&A.b() +s.zA(a)}if(r.dA!=null&&r.b3!=null){s=r.b3 +s.toString +r.saKU(s.p(0,a.geF()))}}, +bX(a){return 144+this.gRM()}, +bQ(a){return 144+this.gRM()}, +bR(a){var s=this.de.a +s.toString +return Math.max(s,this.gRL())}, +bV(a){var s=this.de.a +s.toString +return Math.max(s,this.gRL())}, +goB(){return!0}, +da(a){var s,r=a.b +r=r<1/0?r:144+this.gRM() +s=a.d +if(!(s<1/0)){s=this.de.a +s.toString +s=Math.max(s,this.gRL())}return new A.U(r,s)}, +aE(a5,a6){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1=this,a2=null,a3=a1.B,a4=a3.r +a4===$&&A.b() +a4=a4.x +a4===$&&A.b() +s=a1.eM +switch(a1.cY.a){case 0:r=1-a4 +q=s!=null?1-s:a2 +break +case 1:q=s!=null?s:a2 +r=a4 +break +default:q=a2 +r=q}a4=a1.de +p=a4.cy +p.toString +o=a1.dG +n=p.afH(o!=null&&o>0,a6,a1,a4) +a4=n.a +p=n.c-a4 +m=new A.m(a4+r*p,n.gbM().b) +if(a1.dA!=null){a1.de.ch.toString +a1.b3=A.nx(m,24)}l=q!=null?new A.m(a4+q*p,n.gbM().b):a2 +o=a1.de +k=o.cy +k.toString +j=a1.an +j===$&&A.b() +i=a1.cY +h=a1.dG +h=h!=null&&h>0 +k.aNL(a5,a6,j,h,a1.dA!=null,a1,l,o,i,m) +o=a1.W +o===$&&A.b() +if(o.gaP(o)!==B.R){o=a1.de +o.ch.toString +k=a1.W +j=a1.bm +if(j.gak(j))a1.gq(a1) +g=a5.gcL(a5) +k=new A.aR(0,24,t.Y).a5(0,k.gj(k)) +j=$.au().bk() +o=o.ax +o.toString +j.saf(0,o) +g.fZ(m,k,j)}o=a1.dG +if(o!=null&&o>0){o=a1.de +o=o.CW.O8(a1.dA!=null,o) +f=n.d-n.b +e=p-f +p=a1.dG +p.toString +if(e/p>=3*o.a){d=n.gbM().b +p=f/2 +c=0 +while(!0){o=a1.dG +o.toString +if(!(c<=o))break +k=a1.de +j=a1.an +i=a1.cY +k.CW.aNO(a5,new A.m(a4+c/o*e+p,d),j,a1.dA!=null,a1,k,i,m);++c}}}if(a1.dA!=null)if(a1.fo!=null){a4=a1.a6 +a4===$&&A.b() +a4=a4.gaP(a4)!==B.R}else a4=!1 +else a4=!1 +if(a4)if(a1.gCk())a3.z=new A.bb0(a1,m) +a3=a1.de +a3.cx.toString +a4=a1.W +p=a1.an +o=a1.bm +if(o.gak(o))a1.gq(a1) +g=a5.gcL(a5) +o=t.Y +a3=new A.dG(a3.at,a3.Q).a5(0,p.gj(p)) +a3.toString +b=new A.aR(10,10,o).a5(0,p.gj(p)) +a=new A.aR(1,6,o).a5(0,a4.gj(a4)) +a4=$.au() +a0=a4.d1() +o=2*b +a0.wJ(A.aQi(m,o,o),0,6.283185307179586) +g.xc(a0,B.o,a,!0) +a4=a4.bk() +a4.saf(0,a3) +g.fZ(m,b,a4)}, +hy(a){var s,r=this +r.jA(a) +a.a=!1 +s=r.dA +a.c8(B.lr,!0) +a.c8(B.lp,s!=null) +a.bL=r.cY +a.e=!0 +if(r.dA!=null){a.sMK(r.gaL5()) +a.sMG(r.gaI_())}s=r.bd +a.rx=new A.dT(""+B.e.bg(s*100)+"%",B.aS) +a.e=!0 +a.ry=new A.dT(""+B.e.bg(A.V(s+r.gJv(),0,1)*100)+"%",B.aS) +a.e=!0 +a.to=new A.dT(""+B.e.bg(A.V(r.bd-r.gJv(),0,1)*100)+"%",B.aS) +a.e=!0}, +gJv(){var s=this.dG +return s!=null?1/s:this.ganp()}, +M5(){var s,r=this +if(r.dA!=null){r.eY.$1(A.V(r.bd,0,1)) +s=A.V(r.bd+r.gJv(),0,1) +r.dA.$1(s) +r.dH.$1(s)}}, +L6(){var s,r=this +if(r.dA!=null){r.eY.$1(A.V(r.bd,0,1)) +s=A.V(r.bd-r.gJv(),0,1) +r.dA.$1(s) +r.dH.$1(s)}}} +A.bb_.prototype={ +$1(a){var s,r +if(a===B.R){s=this.a.B +r=s.ch +if(r!=null)r.en(0) +r=s.ch +if(r!=null)r.m() +s.ch=null}}, +$S:9} +A.baY.prototype={ +$1(a){return a.a}, +$S:134} +A.baX.prototype={ +$1(a){return a.b}, +$S:134} +A.baZ.prototype={ +$0(){var s=this.a,r=s.B +r.w=null +if(!s.bt){s=r.e +s===$&&A.b() +s=s.Q +s===$&&A.b() +s=s===B.a9}else s=!1 +if(s){s=r.e +s===$&&A.b() +s.d3(0)}}, +$S:0} +A.bb0.prototype={ +$2(a,b){var s,r,q,p,o,n,m,l,k,j,i=this.a +if(i.y!=null){s=i.de.db +s.toString +r=b.U(0,this.b) +q=i.a6 +q===$&&A.b() +p=i.an +p===$&&A.b() +o=i.dG +o=o!=null&&o>0 +n=i.de +m=i.cY +l=i.bd +k=i.he +j=i.bm +j=j.gak(j)?i.gq(i):i.bm +s.aNM(a,r,q,p,o,i.ao,i,j,n,m,k,l)}}, +$S:16} +A.o0.prototype={} +A.Hl.prototype={ +J(){return"_SliderAdjustmentType."+this.b}} +A.aoW.prototype={ +b5(a){var s,r=new A.alK(this.d,!1,A.ay(t.T)) +r.b4() +s=r.W.e +s===$&&A.b() +r.B=A.c5(B.a6,s,null) +return r}, +bb(a,b){b.W=this.d}} +A.alK.prototype={ +goB(){return!0}, +aw(a){var s,r,q=this +q.am8(a) +s=q.B +s===$&&A.b() +r=q.geG() +s.a.P(0,r) +s=q.W.r +s===$&&A.b() +s.cF() +s=s.dw$ +s.b=!0 +s.a.push(r)}, +ap(a){var s,r=this,q=r.B +q===$&&A.b() +s=r.geG() +q.a.H(0,s) +q=r.W.r +q===$&&A.b() +q.H(0,s) +r.am9(0)}, +aE(a,b){var s=this.W.z +if(s!=null)s.$2(a,b)}, +da(a){return new A.U(A.V(0,a.a,a.b),A.V(0,a.c,a.d))}} +A.bcm.prototype={ +gj_(){var s,r=this,q=r.ok +if(q===$){s=A.B(r.k4) +r.ok!==$&&A.aq() +q=r.ok=s.ax}return q}, +gwH(){return this.gj_().b}, +gxu(){var s=this.gj_(),r=s.dx +return r==null?s.cy:r}, +gC7(){var s=this.gj_().b +return A.K(138,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}, +gEC(){var s=this.gj_().db +return A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}, +gEE(){var s=this.gj_().db +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}, +gEF(){var s=this.gj_().db +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}, +gDP(){var s=this.gj_().c +return A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}, +gFj(){var s=this.gj_(),r=s.dy +s=r==null?s.db:r +return A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}, +gEB(){var s=this.gj_().db +return A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}, +gED(){var s=this.gj_().db +return A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}, +gk7(){return this.gj_().b}, +gEG(){var s=this.gj_().db +return A.BG(A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255),this.gj_().cy)}, +gcG(){return A.aj6(new A.bcn(this))}, +gGS(){var s=A.B(this.k4).p3.at +s.toString +return s.cM(this.gj_().c)}, +gGR(){return B.S4}} +A.bcn.prototype={ +$1(a){var s +if(a.p(0,B.fF)){s=this.a.gj_().b +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=this.a.gj_().b +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=this.a.gj_().b +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return B.E}, +$S:6} +A.Wl.prototype={ +aw(a){this.eS(a) +$.jm.tx$.a.F(0,this.guD())}, +ap(a){$.jm.tx$.a.E(0,this.guD()) +this.eT(0)}} +A.Wn.prototype={ +aw(a){this.eS(a) +$.jm.tx$.a.F(0,this.guD())}, +ap(a){$.jm.tx$.a.E(0,this.guD()) +this.eT(0)}} +A.Wu.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.aUT.prototype={ +J(){return"ShowValueIndicator."+this.b}} +A.ES.prototype={ +gu(a){var s=this +return A.X(s.a,s.gwH(),s.gxu(),s.gC7(),s.gEC(),s.gEE(),s.gEF(),s.gDP(),s.gFj(),s.gEB(),s.gED(),s.gk7(),s.as,s.gEG(),s.gcG(),s.ay,s.ch,s.CW,s.cx,A.X(s.cy,s.gGR(),s.dx,s.dy,s.fr,s.fx,s.fy,s.gGS(),s.id,s.k1,s.k2,s.k3,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.a_(b)!==A.p(r))return!1 +if(b instanceof A.ES)if(b.a==r.a)if(J.j(b.gwH(),r.gwH()))if(J.j(b.gxu(),r.gxu()))if(J.j(b.gC7(),r.gC7()))if(J.j(b.gEC(),r.gEC()))if(J.j(b.gEE(),r.gEE()))if(J.j(b.gEF(),r.gEF()))if(J.j(b.gDP(),r.gDP()))if(J.j(b.gFj(),r.gFj()))if(J.j(b.gEB(),r.gEB()))if(J.j(b.gED(),r.gED()))if(J.j(b.gk7(),r.gk7()))if(J.j(b.as,r.as))if(J.j(b.gEG(),r.gEG()))if(J.j(b.gcG(),r.gcG()))if(J.j(b.ay,r.ay))if(b.ch==r.ch)if(b.CW==r.CW)if(b.cx==r.cx)if(b.cy==r.cy)if(b.gGR()==r.gGR())if(b.fx==r.fx)if(b.fy==r.fy)if(J.j(b.gGS(),r.gGS()))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 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +else s=!1 +return s}, +gwH(){return this.b}, +gxu(){return this.c}, +gC7(){return this.d}, +gEC(){return this.e}, +gEF(){return this.f}, +gEE(){return this.r}, +gDP(){return this.w}, +gFj(){return this.x}, +gEB(){return this.y}, +gED(){return this.z}, +gk7(){return this.Q}, +gEG(){return this.at}, +gcG(){return this.ax}, +gGR(){return this.db}, +gGS(){return this.go}} +A.aVk.prototype={} +A.aVn.prototype={} +A.aVo.prototype={} +A.atX.prototype={ +O7(a,b,c,d,e){var s,r,q,p +e.cx.toString +b +e.ch.toString +s=e.a +s.toString +r=c.a+Math.max(24,10) +q=c.b+(d.gq(d).b-s)/2 +p=r+d.gq(d).a-Math.max(20,48) +return new A.L(Math.min(r,p),q,Math.max(r,p),q+s)}, +afG(a,b,c){return this.O7(a,!1,B.i,b,c)}, +afH(a,b,c,d){return this.O7(a,!1,b,c,d)}} +A.aRR.prototype={ +aNL(a0,a1,a2,a3,a4,a5,a6,a7,a8,a9){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=a7.a +if(a==null||a<=0)return +a=$.au() +s=a.bk() +r=new A.dG(a7.e,a7.b).a5(0,a2.gj(a2)) +r.toString +s.saf(0,r) +q=a.bk() +r=new A.dG(a7.r,a7.c).a5(0,a2.gj(a2)) +r.toString +q.saf(0,r) +switch(a8.a){case 1:p=q +o=s +break +case 0:p=s +o=q +break +default:o=null +p=null}n=this.O7(a3,a4,a1,a5,a7) +r=n.d +m=n.b +l=r-m +k=l/2 +j=new A.b8(k,k) +l=(l+2)/2 +i=new A.b8(l,l) +l=a0.gcL(a0) +k=a8===B.j +h=k?m-1:m +g=a9.a +f=k?r+1:r +e=k?i:j +d=k?i:j +l.d5(A.Ne(n.a,h,g,f,d,B.L,e,B.L),o) +e=a0.gcL(a0) +l=a8===B.ab +h=l?m-1:m +f=l?r+1:r +d=l?i:j +l=l?i:j +e.d5(A.Ne(g,h,n.c,f,B.L,l,B.L,d),p) +if(a6!=null){l=a6.a +c=k?l>g:lh.a +r=s?f.z:f.y +q=s?f.x:f.w +break +case 0:p=b.a0)a.gcL(a).fZ(b,m,o)}} +A.aRP.prototype={} +A.aRO.prototype={} +A.aQj.prototype={} +A.aAa.prototype={ +aNM(a,b,c,d,e,f,g,h,i,j,k,l){var s=a.gcL(a),r=c.gj(c),q=i.ay +q.toString +B.Ta.aNN(q,s,b,f,g,r,h,k)}} +A.b4J.prototype={ +afl(a,b,c,d,e,f){var s=this.a71(b,d),r=s/2,q=A.cL(c.cl(0,null),a).a,p=Math.max(0,r-q+8),o=e.a,n=Math.max(0,r-(o-q-8)) +if(s0)return p-r +else return-n+r}}, +a71(a,b){return(Math.max(20,a.b.b)+8)*b}, +aNN(a,b,c,d,e,f,g,h){var s,r,q,p,o,n,m,l,k +if(f===0)return +s=this.a71(d,f) +r=this.afl(c,d,e,f,g,h) +q=-s/2+r +p=new A.L(q,-34,q+s,-6) +q=$.au() +o=q.bk() +o.saf(0,a) +b.eo(0) +b.bi(0,c.a,c.b-16) +b.iT(0,f,f) +n=A.ID(4) +m=p.gix()/2 +l=A.mU(n,A.ti(new A.b8(m,m)),1).e1(p) +k=q.d1() +k.d_(0,-10,-10) +k.d_(0,10,-10) +k.ah(0) +b.e3(k,o) +b.d5(l,o) +b.bi(0,0,-36) +q=d.b +m=q.b +q=q.a.a +d.aE(b,new A.m(r,16).a4(0,new A.m(m/2,q.gdC(q)/2))) +b.dg(0)}} +A.am0.prototype={} +A.amS.prototype={} +A.OE.prototype={ +J(){return"SnackBarClosedReason."+this.b}} +A.OF.prototype={ +gu(a){var s=this +return A.X(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.a_(b)!==A.p(s))return!1 +return b instanceof A.OF&&J.j(b.a,s.a)&&J.j(b.b,s.b)&&J.j(b.c,s.c)&&J.j(b.d,s.d)&&b.e==s.e&&J.j(b.f,s.f)&&b.w==s.w&&J.j(b.x,s.x)&&J.j(b.z,s.z)&&b.Q==s.Q&&J.j(b.as,s.as)&&J.j(b.at,s.at)}} +A.an0.prototype={} +A.bcV.prototype={ +J(){return"_SwitchType."+this.b}} +A.aaA.prototype={ +a23(a){var s=A.B(a),r=A.blJ(a),q=new A.ant(a,A.B(a).ax),p=this.CW,o=p==null?r.e:p +switch((o==null?s.e:o).a){case 0:return new A.U(q.ga_b(),q.gamt()) +case 1:return new A.U(q.ga_b(),q.gamu())}}, +a_U(a){var s=this,r=null +return new A.SH(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,r,s.ch,s.db,s.dx,r,r,s.fx,s.fy,r,s.id,!1,s.a23(a),r)}, +A(a){var s,r=this,q=null +switch(r.cx.a){case 0:return r.a_U(a) +case 1:switch(A.B(a).r.a){case 0:case 1:case 3:case 5:return r.a_U(a) +case 2:case 4:s=r.a23(a) +return A.cQ(B.a7,new A.Jz(r.c,r.d,r.e,r.w,q,q,q,r.id,!1,!1,r.db,q),B.n,q,q,q,q,s.b,q,q,s.a)}break}}} +A.SH.prototype={ +a8(){return new A.SI(new A.UA($.aH()),$,$,$,$,$,$,$,$,$,null,!1,!1,null,null,B.m)}} +A.SI.prototype={ +b1(a){var s,r=this +r.bh(a) +if(a.c!==r.a.c){s=r.mZ$ +s===$&&A.b() +if(s.gj(s)!==0){s=r.mZ$ +s=s.gj(s)===1}else s=!0 +if(s){s=r.c +s.toString +A.B(s) +s=r.mZ$ +s.b=B.v1 +s.c=new A.jO(B.v1)}r.DY()}}, +m(){this.d.m() +this.alW()}, +gdS(){this.a.toString +return this.gaCG()}, +gy5(){return!1}, +gj(a){return this.a.c}, +gDN(){return new A.bt(new A.b8b(this),t.U)}, +ga7a(){return new A.bt(new A.b8c(this),t.U)}, +aCL(a){var s +if(this.gdS()!=null){s=this.p0$ +s===$&&A.b() +s.bS(0)}}, +aCN(a){var s,r,q,p=this +if(p.gdS()!=null){s=p.mZ$ +s===$&&A.b() +s.b=B.Y +s.c=null +s=a.c +s.toString +r=s/(p.a.id.a-40) +s=p.c.aj(t.I) +s.toString +switch(s.w.a){case 0:s=p.ks$ +s===$&&A.b() +q=s.x +q===$&&A.b() +s.sj(0,q-r) +break +case 1:s=p.ks$ +s===$&&A.b() +q=s.x +q===$&&A.b() +s.sj(0,q+r) +break}}}, +aCJ(a){var s,r,q=this,p=q.mZ$ +p===$&&A.b() +p=p.gj(p) +s=q.a +r=s.c +if(p>=0.5!==r){s.d.$1(!r) +q.ad(new A.b8a(q))}else q.DY() +p=q.p0$ +p===$&&A.b() +p.d3(0)}, +aCH(a){var s=this.a.d +a.toString +s.$1(a)}, +A(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,b9=this,c0=null +if(b9.e){b9.e=!1 +b9.DY()}s=A.B(c1) +r=A.blJ(c1) +q=new A.ant(c1,A.B(c1).ax) +p=new A.bcO(c1,c0,c0,c0,c0,c0,c0,c0,c0,c0) +o=b9.ks$ +o===$&&A.b() +o.e=A.dW(0,q.gaPT(),0) +n=b9.gfG() +n.F(0,B.G) +m=b9.gfG() +m.E(0,B.G) +b9.a.toString +l=b9.gDN().a.$1(n) +if(l==null){o=r.a +l=o==null?c0:o.L(n)}o=l==null +if(o){k=p.gk7().a.$1(n) +k.toString +j=k}else j=l +b9.a.toString +i=b9.gDN().a.$1(m) +if(i==null){k=r.a +i=k==null?c0:k.L(m)}k=i==null +if(k){h=p.gk7().a.$1(m) +h.toString +g=h}else g=i +b9.a.toString +h=b9.ga7a().a.$1(n) +if(h==null){h=r.b +h=h==null?c0:h.L(n)}if(h==null){h=b9.gDN().a.$1(n) +if(h==null)h=c0 +else{f=J.c4(h) +h=A.K(128,f.gj(h)>>>16&255,f.gj(h)>>>8&255,f.gj(h)&255)}e=h}else e=h +if(e==null){h=p.gqd().a.$1(n) +h.toString +e=h}b9.a.toString +h=r.c +f=h==null?c0:h.L(n) +d=f +if(d==null)d=B.E +b9.a.toString +f=r.d +c=f==null?c0:f.L(n) +b=c +if(b==null)b=p.gBD().L(n) +b9.a.toString +c=b9.ga7a().a.$1(m) +if(c==null){c=r.b +c=c==null?c0:c.L(m) +a=c}else a=c +if(a==null){c=p.gqd().a.$1(m) +c.toString +a=c}b9.a.toString +h=h==null?c0:h.L(m) +a0=h +if(a0==null)a0=p.gGE().a.$1(m) +b9.a.toString +h=f==null?c0:f.L(m) +a1=h +if(a1==null)a1=p.gBD().L(m) +b9.a.toString +h=r.x +a2=h==null?c0:h.a.$1(n) +b9.a.toString +a3=h==null?c0:h.a.$1(m) +h=a2==null +a4=h?c0:a2.x +if(a4==null)a4=q.gfK().L(n) +f=a3==null +a5=f?c0:a3.x +if(a5==null)a5=q.gfK().L(m) +a6=b9.gfG() +a6.F(0,B.K) +b9.a.toString +c=r.r +a7=c==null?c0:c.L(a6) +a8=a7 +if(a8==null){a7=p.gcG().a.$1(a6) +a7.toString +a8=a7}a9=b9.gfG() +a9.F(0,B.F) +b9.a.toString +a7=c==null?c0:c.L(a9) +b0=a7 +if(b0==null){a7=p.gcG().a.$1(a9) +a7.toString +b0=a7}n.F(0,B.Q) +b9.a.toString +a7=b9.gDN().a.$1(n) +if(a7==null){a7=r.a +a7=a7==null?c0:a7.L(n) +b1=a7}else b1=a7 +if(b1==null){a7=p.gk7().a.$1(n) +a7.toString +b1=a7}b9.a.toString +a7=c==null?c0:c.L(n) +if(a7==null){o=o?c0:A.K(31,l.gj(l)>>>16&255,l.gj(l)>>>8&255,l.gj(l)&255) +b2=o}else b2=a7 +if(b2==null){o=p.gcG().a.$1(n) +o.toString +b2=o}m.F(0,B.Q) +b9.a.toString +o=b9.gDN().a.$1(m) +if(o==null){o=r.a +o=o==null?c0:o.L(m) +b3=o}else b3=o +if(b3==null){o=p.gk7().a.$1(m) +o.toString +b3=o}b9.a.toString +o=c==null?c0:c.L(m) +if(o==null){o=k?c0:A.K(31,i.gj(i)>>>16&255,i.gj(i)>>>8&255,i.gj(i)&255) +b4=o}else b4=o +if(b4==null){o=p.gcG().a.$1(m) +o.toString +b4=o}b5=h?q.gTp():q.gadE() +if(f){b9.a.toString +o=!0}else o=!1 +b6=o?q.gVN():q.gadE() +b9.a.toString +b7=r.w +if(b7==null)b7=p.gkd() +o=b9.a +k=o.c +h=o.cx +f=o.fx +c=o.fy +o=o.id +a7=b9.d +b8=b9.mZ$ +b8===$&&A.b() +a7.scJ(0,b8) +b8=b9.vh$ +b8===$&&A.b() +a7.sX9(b8) +b8=b9.vj$ +b8===$&&A.b() +a7.sXb(b8) +b8=b9.vi$ +b8===$&&A.b() +a7.sXc(b8) +a7.sVM(b4) +a7.sXa(b2) +a7.stF(b0) +a7.sln(a8) +a7.skd(b7) +a7.sAl(b9.qP$) +a7.sqV(b9.gfG().p(0,B.K)) +a7.sW_(b9.gfG().p(0,B.F)) +a7.suL(j) +a7.sAS(g) +a7.saF7(b1) +a7.saL0(b3) +a7.saF9(b9.a.x) +a7.saMY(b9.a.y) +a7.saL2(b9.a.z) +a7.saNe(b9.a.Q) +a7.swH(e) +a7.saFa(d) +a7.saFb(b) +a7.sxu(a) +a7.saL3(a0) +a7.saL4(a1) +a7.suX(A.WM(c1,c0)) +a7.saLC(b9.gdS()!=null) +a7.saQ_(b9.a.id.a-40) +b8=c1.aj(t.I) +b8.toString +a7.scz(b8.w) +a7.sams(s.ax.cy) +a7.sVN(b6) +a7.sTp(b5) +a7.sWZ(q.gWZ()) +a7.sXu(q.gXu()) +a7.sXE(q.gXE()) +a7.sXF(q.gXF()) +a7.saF6(a4) +a7.saL_(a5) +a7.saF5(a2) +a7.saKZ(a3) +a7.sh2(A.a2O(c1)) +a7.sXv(q.gXv()) +a7.sXH(q.gXH()) +a7.saO6(b9.ks$) +h=A.dY(c0,b9.a86(!1,f,new A.bt(new A.b8d(b9,r),t.bN),c,a7,o),h,!0,c0,c0,c0,c0,b9.gaCI(),b9.gaCK(),b9.gaCM(),c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,!1,B.am) +return new A.bu(A.bL(c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,c0,k,c0,c0),!1,!1,!1,!1,h,c0)}, +$iaP:1} +A.b8b.prototype={ +$1(a){if(a.p(0,B.x))return this.a.a.r +if(a.p(0,B.G))return this.a.a.e +return this.a.a.r}, +$S:29} +A.b8c.prototype={ +$1(a){if(a.p(0,B.G))return this.a.a.f +return this.a.a.w}, +$S:29} +A.b8a.prototype={ +$0(){this.a.e=!0}, +$S:0} +A.b8d.prototype={ +$1(a){var s=A.ce(this.a.a.cy,a,t.WV) +if(s==null)s=null +return s==null?A.ce(B.df,a,t.Pb):s}, +$S:144} +A.UA.prototype={ +saO6(a){if(a===this.db)return +this.db=a +this.ag()}, +saF5(a){if(J.j(a,this.dx))return +this.dx=a +this.ag()}, +saKZ(a){if(J.j(a,this.dy))return +this.dy=a +this.ag()}, +sh2(a){if(a.k(0,this.fr))return +this.fr=a +this.ag()}, +saF6(a){if(a.k(0,this.fx))return +this.fx=a +this.ag()}, +saL_(a){if(a.k(0,this.fy))return +this.fy=a +this.ag()}, +saF7(a){if(a.k(0,this.go))return +this.go=a +this.ag()}, +saL0(a){if(a.k(0,this.id))return +this.id=a +this.ag()}, +sTp(a){if(a===this.k1)return +this.k1=a +this.ag()}, +sVN(a){if(a===this.k2)return +this.k2=a +this.ag()}, +sWZ(a){if(a===this.k3)return +this.k3=a +this.ag()}, +sXu(a){if(a==this.k4)return +this.k4=a +this.ag()}, +sXH(a){if(a.k(0,this.ok))return +this.ok=a +this.ag()}, +sXE(a){if(a===this.p1)return +this.p1=a +this.ag()}, +sXF(a){if(a===this.p2)return +this.p2=a +this.ag()}, +saF9(a){return}, +saMY(a){return}, +saL2(a){return}, +saNe(a){return}, +swH(a){if(a.k(0,this.rx))return +this.rx=a +this.ag()}, +saFa(a){if(a.k(0,this.ry))return +this.ry=a +this.ag()}, +saL3(a){if(J.j(a,this.to))return +this.to=a +this.ag()}, +saFb(a){if(a==this.x1)return +this.x1=a +this.ag()}, +saL4(a){if(a==this.x2)return +this.x2=a +this.ag()}, +sxu(a){if(a.k(0,this.xr))return +this.xr=a +this.ag()}, +suX(a){if(a.k(0,this.y1))return +this.y1=a +this.ag()}, +scz(a){if(this.y2===a)return +this.y2=a +this.ag()}, +sams(a){if(a.k(0,this.bL))return +this.bL=a +this.ag()}, +saLC(a){if(a===this.co)return +this.co=a +this.ag()}, +saQ_(a){if(a===this.aK)return +this.aK=a +this.ag()}, +sXv(a){var s=this.b6 +if(a==null?s==null:a===s)return +this.b6=a +this.ag()}, +at0(){if(!this.W)this.ag()}, +aE(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=this,a9=a8.a,b0=a9.gj(a9) +switch(a8.y2.a){case 0:s=1-b0 +break +case 1:s=b0 +break +default:s=null}a9=a8.b.a +if(!(a9.gaP(a9)===B.b5&&!a8.a6?a8.a6=!0:a8.a6=!1)){a9=a8.b +if(a9.gaP(a9)===B.a9){a9=a8.k2 +a9.toString +r=a8.k3 +r.toString +q=a8.b +a8.an=A.ag(a9,r,q.gj(q)) +q=a8.k1 +q.toString +r=a8.k3 +r.toString +a9=a8.b +a8.ao=A.ag(q,r,a9.gj(a9))}if(b0===0){a9=a8.k2 +a9.toString +r=a8.k3 +r.toString +q=a8.b +a8.an=A.ag(a9,r,q.gj(q)) +q=a8.k1 +q.toString +a8.ao=q}if(b0===1){a9=a8.k1 +a9.toString +r=a8.k3 +r.toString +q=a8.b +a8.ao=A.ag(a9,r,q.gj(q)) +q=a8.k2 +q.toString +a8.an=q}}a9=a8.an +if(a9==null){a9=a8.k2 +a9.toString}a9*=2 +r=a8.ao +if(r==null){r=a8.k1 +r.toString}r*=2 +r=new A.bcU(a8,new A.U(a9,a9),new A.U(r,r)) +a9=a8.b +if(a9.gaP(a9)===B.a9){a9=a8.k3 +a9.toString +a9*=2 +p=new A.U(a9,a9)}else{a9=a8.a +if(a9.gaP(a9)!==B.R){a9=a8.a.a +a9=a9.gaP(a9)===B.b4}else a9=!0 +if(a9){a9=r.$1(!0) +r=a9.b +a9=a9.a +p=r.a5(0,a9.gj(a9))}else{a9=r.$1(!1) +r=a9.b +a9=a9.a +p=r.a5(0,a9.gj(a9))}}a9=a8.k4 +o=a9==null?0:1-Math.abs(b0-a9)*2 +a9=p.a-o +r=p.b-o +q=a8.db +q.toString +q=A.c5(B.d_,q,B.bB) +n=q.gj(q) +q=a8.xr +q.toString +m=a8.rx +m.toString +m=A.W(q,m,n) +m.toString +q=a8.to +l=q==null?null:A.W(q,a8.ry,n) +k=A.ag(a8.x2,a8.x1,n) +q=a8.b +if(q.gaP(q)!==B.R){q=a8.id +q.toString +j=a8.go +j.toString +j=A.W(q,j,n) +j.toString +i=j}else{q=a8.db.Q +q===$&&A.b() +if(q===B.b4){q=a8.id +q.toString +j=a8.e +j.toString +j=A.W(q,j,n) +j.toString +i=j}else{j=a8.f +if(q===B.b5){j.toString +q=a8.go +q.toString +q=A.W(j,q,n) +q.toString +i=q}else{j.toString +q=a8.e +q.toString +q=A.W(j,q,n) +q.toString +i=q}}}q=a8.bL +q.toString +h=A.BG(i,q) +q=b0<0.5 +g=q?a8.dy:a8.dx +f=q?a8.R8:a8.p3 +e=q?a8.RG:a8.p4 +q=$.au() +d=q.bk() +d.saf(0,m) +m=a8.p2 +m.toString +j=a8.p1 +j.toString +c=(b2.a-m)/2 +b=b2.b +a=(b-j)/2 +a0=j/2 +a1=r/2 +a2=a1-a0 +a3=a8.aK +a3.toString +a4=c-a2-(a9-r)/2+s*a3 +b1.d5(A.mg(new A.L(c,a,c+m,a+j),new A.b8(a0,a0)),d) +if(l!=null){m=c+1 +j=a+1 +a3=a8.p2 +a3.toString +a5=a8.p1 +a5.toString +a6=A.mg(new A.L(m,j,m+(a3-2),j+(a5-2)),new A.b8(a0,a0)) +a7=q.bk() +a7.scA(0,B.ai) +a7.seu(k==null?2:k) +a7.saf(0,l) +b1.d5(a6,a7)}a8.WS(b1,new A.m(a4+a1,b/2)) +a8.ayX(new A.m(a4,a-a2),b1,n,h,f,e,g,new A.U(a9,r),o)}, +ayX(a6,a7,a8,a9,b0,b1,b2,b3,b4){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,a5=null +try{a4.W=!0 +if(a4.B!=null)if(a9.k(0,a4.c_))d=!1 +else d=!0 +else d=!0 +if(d){a4.c_=a9 +a4.cp=b0 +a4.ct=b1 +d=a4.B +if(d!=null)d.m() +a4.B=A.bPN(new A.hT(a9,a5,a5,a4.b6,B.it),a4.gat_())}d=a4.B +d.toString +s=d +s.kD(a7,a6,a4.y1.Uh(b3)) +if(b2!=null&&b2.c!=null){d=a4.fy +d.toString +c=a4.fx +c.toString +c=A.W(d,c,a8) +c.toString +r=c +b=b2.d +q=b==null?16:b +d=b2.c +d.toString +p=d +d=a4.fr +a=d==null?a5:d.c +o=a +a0=d==null?a5:d.b +n=a0 +a1=d==null?a5:d.d +m=a1 +a2=d==null?a5:d.e +l=a2 +a3=d==null?a5:d.w +k=a3 +d=A.el(p.a) +j=A.a([],t.uf) +if(n!=null)J.ff(j,new A.lY("FILL",n)) +if(o!=null)J.ff(j,new A.lY("wght",o)) +if(m!=null)J.ff(j,new A.lY("GRAD",m)) +if(l!=null)J.ff(j,new A.lY("opsz",l)) +i=A.dr(a5,A.hb(a5,a5,r,a5,a5,a5,a5,a5,p.b,a5,a5,q,a5,j,a5,a5,a5,!1,a5,a5,a5,a5,p.c,k,a5,a5),d) +j=a4.y2 +j.toString +h=A.Fr(a5,a5,a5,a5,i,B.b2,j,a5,B.aw,B.at) +h.W9() +g=(b3.a-q)/2 +f=(b3.b-q)/2 +e=a6.U(0,new A.m(g,f)) +h.aE(a7,e)}}finally{a4.W=!1}}, +m(){var s=this,r=s.B +if(r!=null)r.m() +s.ct=s.cp=s.c_=s.B=null +s.ajV()}} +A.bcU.prototype={ +$1(a){var s,r=this.b,q=this.a,p=this.c,o=t.BC,n=t.qU,m=t.kS,l=t.Bx,k=q.ok,j=n.h("dz") +if(a){k.toString +s=A.a([new A.hv(new A.dz(new A.eI(B.v_),new A.aR(r,k,n),j),11,m),new A.hv(new A.dz(new A.eI(B.uY),new A.aR(k,p,n),j),72,m),new A.hv(new A.qa(p,p,l),17,m)],o)}else{k.toString +s=A.a([new A.hv(new A.qa(r,r,l),17,m),new A.hv(new A.dz(new A.eI(new A.jO(B.uY)),new A.aR(r,k,n),j),72,m),new A.hv(new A.dz(new A.eI(new A.jO(B.v_)),new A.aR(k,p,n),j),11,m)],o)}r=A.b_L(s,t.FW) +q=q.db +q.toString +return new A.ax(q,r,r.$ti.h("ax"))}, +$S:348} +A.bcM.prototype={} +A.bcO.prototype={ +geU(){var s,r=this,q=r.z +if(q===$){s=A.B(r.y) +r.z!==$&&A.aq() +q=r.z=s.ax}return q}, +gk7(){return new A.bt(new A.bcQ(this),t.h2)}, +gqd(){return new A.bt(new A.bcR(this),t.h2)}, +gGE(){return new A.bt(new A.bcS(this),t.U)}, +gcG(){return new A.bt(new A.bcP(this),t.U)}, +gBD(){return B.amP}, +gkd(){return 20}} +A.bcQ.prototype={ +$1(a){var s,r,q=this +if(a.p(0,B.x)){if(a.p(0,B.G)){s=q.a.geU().cy +return A.K(255,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}s=q.a.geU().db +return A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.G)){if(a.p(0,B.Q)){s=q.a.geU() +r=s.d +return r==null?s.b:r}if(a.p(0,B.F)){s=q.a.geU() +r=s.d +return r==null?s.b:r}if(a.p(0,B.K)){s=q.a.geU() +r=s.d +return r==null?s.b:r}return q.a.geU().c}if(a.p(0,B.Q)){s=q.a.geU() +r=s.dy +return r==null?s.db:r}if(a.p(0,B.F)){s=q.a.geU() +r=s.dy +return r==null?s.db:r}if(a.p(0,B.K)){s=q.a.geU() +r=s.dy +return r==null?s.db:r}s=q.a.geU() +r=s.fr +return r==null?s.cx:r}, +$S:6} +A.bcR.prototype={ +$1(a){var s,r,q=this +if(a.p(0,B.x)){if(a.p(0,B.G)){s=q.a.geU().db +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}s=q.a.geU() +r=s.dx +s=r==null?s.cy:r +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.G)){if(a.p(0,B.Q))return q.a.geU().b +if(a.p(0,B.F))return q.a.geU().b +if(a.p(0,B.K))return q.a.geU().b +return q.a.geU().b}if(a.p(0,B.Q)){s=q.a.geU() +r=s.dx +return r==null?s.cy:r}if(a.p(0,B.F)){s=q.a.geU() +r=s.dx +return r==null?s.cy:r}if(a.p(0,B.K)){s=q.a.geU() +r=s.dx +return r==null?s.cy:r}s=q.a.geU() +r=s.dx +return r==null?s.cy:r}, +$S:6} +A.bcS.prototype={ +$1(a){var s,r +if(a.p(0,B.G))return B.E +if(a.p(0,B.x)){s=this.a.geU().db +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}s=this.a.geU() +r=s.fr +return r==null?s.cx:r}, +$S:6} +A.bcP.prototype={ +$1(a){var s,r=this +if(a.p(0,B.G)){if(a.p(0,B.Q)){s=r.a.geU().b +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=r.a.geU().b +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=r.a.geU().b +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return null}if(a.p(0,B.Q)){s=r.a.geU().db +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=r.a.geU().db +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=r.a.geU().db +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return null}, +$S:29} +A.ant.prototype={ +gTp(){return 12}, +gfK(){return new A.bt(new A.bcN(this),t.h2)}, +gVN(){return 8}, +gWZ(){return 14}, +gamt(){return 48}, +gamu(){return 40}, +ga_b(){return 60}, +gadE(){return 12}, +gXv(){return B.C6}, +gXE(){return 32}, +gXF(){return 52}, +gXH(){return B.ar6}, +gaPT(){return 300}, +gXu(){return null}} +A.bcN.prototype={ +$1(a){var s,r,q=this +if(a.p(0,B.x)){if(a.p(0,B.G)){s=q.a.b.db +return A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}s=q.a.b +r=s.dx +s=r==null?s.cy:r +return A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.G)){if(a.p(0,B.Q)){s=q.a.b +r=s.e +return r==null?s.c:r}if(a.p(0,B.F)){s=q.a.b +r=s.e +return r==null?s.c:r}if(a.p(0,B.K)){s=q.a.b +r=s.e +return r==null?s.c:r}s=q.a.b +r=s.e +return r==null?s.c:r}if(a.p(0,B.Q)){s=q.a.b +r=s.dx +return r==null?s.cy:r}if(a.p(0,B.F)){s=q.a.b +r=s.dx +return r==null?s.cy:r}if(a.p(0,B.K)){s=q.a.b +r=s.dx +return r==null?s.cy:r}s=q.a.b +r=s.dx +return r==null?s.cy:r}, +$S:6} +A.Wa.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.Wb.prototype={ +aX(){var s,r=this,q=null +r.b9() +s=A.bx(B.A,q,B.T,0,q,1,!r.a.c?0:1,r) +r.ks$=s +r.mZ$=A.c5(B.bB,s,B.d_) +s=A.bx(B.A,q,B.aX,0,q,1,q,r) +r.p0$=s +r.vh$=A.c5(B.a6,s,q) +s=A.bx(B.A,q,B.ek,0,q,1,r.pW$||r.pV$?1:0,r) +r.ty$=s +r.vi$=A.c5(B.a6,s,q) +s=A.bx(B.A,q,B.ek,0,q,1,r.pW$||r.pV$?1:0,r) +r.tz$=s +r.vj$=A.c5(B.a6,s,q)}, +m(){var s=this,r=s.ks$ +r===$&&A.b() +r.m() +r=s.p0$ +r===$&&A.b() +r.m() +r=s.ty$ +r===$&&A.b() +r.m() +r=s.tz$ +r===$&&A.b() +r.m() +s.alV()}} +A.aqu.prototype={} +A.bcT.prototype={ +J(){return"_SwitchListTileType."+this.b}} +A.Fc.prototype={ +A(a){var s,r,q,p,o,n,m,l=this,k=null +switch(0){case 0:s=A.buu(k,k,k,!1,B.D,k,k,k,B.kW,k,k,l.d,k,k,k,k,k,k,k,k,l.c) +break}switch(l.p1.a){case 0:r=l.id +q=s +break +case 1:case 2:q=l.id +r=s +break +default:r=k +q=r}p=A.B(a) +o=A.blJ(a) +n=o.a +n=n==null?k:n.L(A.aW(t.ui)) +m=n +if(m==null)m=p.ax.f +return new A.uh(A.bI(!1,k,k,k,!0,k,k,!1,k,q,k,k,new A.aYy(l),!1,m,k,k,k,l.go,k,l.fy,r,k),k)}} +A.aYy.prototype={ +$0(){var s=this.a +s.d.$1(!s.c)}, +$S:0} +A.Fd.prototype={ +gu(a){var s=this +return A.X(s.gk7(),s.gqd(),s.gGE(),s.gBD(),s.gno(),s.giI(),s.gcG(),s.gkd(),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.a_(b)!==A.p(s))return!1 +return b instanceof A.Fd&&b.gk7()==s.gk7()&&b.gqd()==s.gqd()&&b.gGE()==s.gGE()&&b.gBD()==s.gBD()&&b.gno()==s.gno()&&b.giI()==s.giI()&&b.gcG()==s.gcG()&&b.gkd()==s.gkd()&&b.x==s.x}, +gk7(){return this.a}, +gqd(){return this.b}, +gGE(){return this.c}, +gBD(){return this.d}, +gno(){return this.e}, +giI(){return this.f}, +gcG(){return this.r}, +gkd(){return this.w}} +A.anu.prototype={} +A.v5.prototype={ +gu(a){var s=this +return A.X(s.a,s.gji(),s.c,s.gv3(),s.gAk(),s.gFz(),s.r,s.giF(),s.gGH(),s.gGI(),s.gcG(),s.ghM(),s.as,s.gGs(),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.a_(b)!==A.p(r))return!1 +if(b instanceof A.v5)if(J.j(b.a,r.a))if(J.j(b.gji(),r.gji()))if(b.c==r.c)if(J.j(b.gv3(),r.gv3()))if(b.gAk()==r.gAk())if(J.j(b.gFz(),r.gFz()))if(J.j(b.r,r.r))if(J.j(b.giF(),r.giF()))if(J.j(b.gGH(),r.gGH()))if(J.j(b.gGI(),r.gGI()))if(b.gcG()==r.gcG())if(b.ghM()==r.ghM())s=b.gGs()==r.gGs() +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}, +gji(){return this.b}, +gv3(){return this.d}, +gAk(){return this.e}, +gFz(){return this.f}, +giF(){return this.w}, +gGH(){return this.x}, +gGI(){return this.y}, +gcG(){return this.z}, +ghM(){return this.Q}, +gGs(){return this.at}} +A.anA.prototype={} +A.rg.prototype={ +apF(a,b,c,d){var s,r=this,q=b==null +if(!q)r.a.sj(0,b) +q=q?r.d:b +s=r.a +return new A.rg(s,r.b,c,q,d,$.aH())}, +geq(a){var s=this.a +return s==null?null:s}, +a_Z(a,b,c){var s,r=this,q=r.d +if(a===q||r.c<2)return +r.e=q +r.d=a +q=c!=null&&c.a>0 +s=r.f+1 +if(q){r.f=s +r.ag() +q=r.a +q.toString +s=r.d +b.toString +q.z=B.aN +q.kh(s,b,c).aeh(new A.aYM(r))}else{r.f=s +r.a.sj(0,a);--r.f +r.ag()}}, +a_Y(a){return this.a_Z(a,null,null)}, +sc5(a,b){var s,r=this.a,q=r.x +q===$&&A.b() +s=this.d +if(b===q-s)return +r.sj(0,b+s)}, +m(){var s=this.a +if(s!=null)s.m() +this.a=null +this.eK()}, +gt(a){return this.c}} +A.aYM.prototype={ +$0(){var s=this.a +if(s.a!=null){--s.f +s.ag()}}, +$S:0} +A.UF.prototype={ +dh(a){return this.r!==a.r||this.f!==a.f}} +A.JK.prototype={ +a8(){return new A.afY(null,null,B.m)}, +gt(a){return this.c}} +A.afY.prototype={ +aX(){var s,r,q=this +q.b9() +s=q.a +r=s.c +q.d=A.buy(null,s.d,r,q)}, +m(){var s=this.d +s===$&&A.b() +s.m() +this.alK()}, +A(a){var s=this.d +s===$&&A.b() +return new A.UF(s,A.ab2(a),this.a.f,null)}, +b1(a){var s,r,q,p,o,n=this +n.bh(a) +s=n.a.c +if(a.c!==s){r=n.d +r===$&&A.b() +q=r.e +p=r.d +if(p>=s){o=Math.max(0,s-1) +q=p}else o=null +n.d=r.apF(null,o,s,q)}n.a.toString}, +$iaP:1} +A.W_.prototype={ +m(){var s=this,r=s.c3$ +if(r!=null)r.H(0,s.ghP()) +s.c3$=null +s.b0()}, +cf(){this.cW() +this.cO() +this.hQ()}} +A.vc.prototype={ +f0(a,b){var s,r +if(a instanceof A.vc){s=A.bp(a.b,this.b,b) +r=A.fJ(a.c,this.c,b) +r.toString +return new A.vc(null,s,r)}return this.OI(a,b)}, +f1(a,b){var s,r +if(a instanceof A.vc){s=A.bp(this.b,a.b,b) +r=A.fJ(this.c,a.c,b) +r.toString +return new A.vc(null,s,r)}return this.OJ(a,b)}, +A1(a){return new A.be3(this,this.a,a)}, +IL(a,b){var s=this.c.L(b).Es(a),r=s.a,q=this.b.b,p=s.d-q +return new A.L(r,p,r+(s.c-r),p+q)}, +H6(a,b){var s,r=this.a +if(r!=null){s=$.au().d1() +s.fT(r.e1(this.IL(a,b))) +return s}r=$.au().d1() +r.qA(this.IL(a,b)) +return r}} +A.be3.prototype={ +kD(a,b,c){var s,r,q,p=c.e,o=b.a,n=b.b,m=new A.L(o,n,o+p.a,n+p.b) +p=c.d +p.toString +o=this.c +n=this.b +s=n.b +if(o!=null){r=$.au().bk() +r.saf(0,s.a) +q=n.IL(m,p) +p=o.a +n=o.b +s=o.d +a.d5(A.a7B(q,o.c,s,p,n),r)}else{r=s.kH() +r.sw5(B.OH) +q=n.IL(m,p).e6(-(s.b/2)) +p=q.d +a.j8(new A.m(q.a,p),new A.m(q.c,p),r)}}} +A.aYK.prototype={ +J(){return"TabBarIndicatorSize."+this.b}} +A.Ff.prototype={ +J(){return"TabAlignment."+this.b}} +A.zD.prototype={ +ao0(){var s=null,r=A.P(this.c,s,B.P1,s,!1,s,s,s) +return r}, +A(a){var s=this.ao0() +return A.cZ(A.eH(s,null,1),46,null)}, +grb(){return B.are}, +$iqZ:1, +geD(){return null}} +A.anE.prototype={ +aAx(a){var s,r,q,p,o,n=null,m={} +A.B(a) +s=A.B(a).e5 +r=t.m.a(this.c) +q=s.f +if(q==null)q=n +if(q==null){q=s.w +q=q==null?n:q.b +p=q}else p=q +if(p==null)p=this.z.gFz() +m.a=p +m.b=null +if(p instanceof A.GR){m.b=p.c.$1(B.eL) +m.a=p.c.$1(B.fZ)}else{q=s.x +if(q==null)q=n +if(q==null){q=s.y +q=q==null?n:q.b +o=q}else o=q +if(o==null){q=this.z.gGH() +q.toString +o=q}m.b=o}return A.aj6(new A.bd8(m,r))}, +A(a){var s,r,q,p=this,o=null,n=A.B(a).e5,m=t.m.a(p.c),l=p.r,k=l?B.fZ:B.eL,j=p.e,i=n.w +if(i==null){i=p.z.giF() +i.toString}s=i.a8I(!0) +i=n.y +j=i==null?j:i +if(j==null){j=p.z.gGI() +j.toString}r=j.a8I(!0) +if(l){l=A.c7(s,r,m.gj(m)) +l.toString +q=l}else{l=A.c7(r,s,m.gj(m)) +l.toString +q=l}l=p.aAx(a).c.$1(k) +j=q.cM(l) +return A.fI(A.oI(p.Q,new A.d4(24,o,o,o,o,l,o,o)),o,o,B.aU,!0,j,o,o,B.at)}} +A.bd8.prototype={ +$1(a){var s,r,q=this +if(a.p(0,B.G)){s=q.a +r=q.b +r=A.W(s.a,s.b,r.gj(r)) +r.toString +return r}s=q.a +r=q.b +r=A.W(s.b,s.a,r.gj(r)) +r.toString +return r}, +$S:6} +A.anD.prototype={ +ce(){var s,r,q,p,o=this +o.aiR() +s=o.a2$ +r=A.a([],t.up) +for(q=t.US;s!=null;){p=s.b +p.toString +q.a(p) +r.push(p.a.a) +s=p.a3$}switch(o.ao.a){case 0:B.b.fB(r,0,o.gq(o).a) +break +case 1:r.push(o.gq(o).a) +break}q=o.ao +q.toString +p=o.gq(o) +o.kt.$3(r,q,p.a)}} +A.anC.prototype={ +b5(a){var s=this,r=null,q=s.NZ(a) +q.toString +q=new A.anD(s.ax,s.e,s.f,s.r,s.w,q,s.y,r,B.n,A.ay(t.O5),A.aX(4,A.Fr(r,r,r,r,r,B.b2,B.j,r,B.aw,B.at),!1,t.mi),!0,0,r,r,A.ay(t.T)) +q.b4() +q.I(0,r) +return q}, +bb(a,b){this.ahQ(a,b) +b.kt=this.ax}} +A.aga.prototype={ +aE(a,b){var s,r=this.c +if(r<=0)return +s=$.au().bk() +s.saf(0,this.b) +s.seu(r) +r=b.b +a.j8(new A.m(0,r-s.geu()/2),new A.m(b.a,r-s.geu()/2),s)}, +fv(a){return!a.b.k(0,this.b)||a.c!==this.c}} +A.Se.prototype={ +b_(){this.ax=!0}, +ab4(a,b){var s,r,q,p,o,n,m,l,k,j,i=this +switch(i.Q.a){case 0:s=i.z +r=s[b+1] +q=s[b] +break +case 1:s=i.z +r=s[b] +q=s[b+1] +break +default:r=null +q=null}if(i.d===B.lA){s=i.f[b] +s=$.ap.Y$.z.i(0,s) +p=s.gq(s).a +o=i.r[b].L(i.Q) +r+=(q-r-(p+o.gdI()))/2+o.a +q=r+p}o=i.e +s=r+(q-r) +n=0+a.b +m=new A.L(r,0,s,n) +l=o.gdI() +k=o.gcC(o) +j=o.gcD(o) +if(!(s-r>=l&&n-0>=k+j))throw A.c(A.qs("indicatorPadding insets should be less than Tab Size\nRect Size : "+m.gq(m).l(0)+", Insets: "+o.l(0))) +return o.Es(m)}, +aE(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=h.ax=!1 +if(h.at==null)h.at=h.c.A1(h.geG()) +s=h.b +r=s.d +s=s.geq(s).x +s===$&&A.b() +q=r>s +p=q?B.e.eC(s):B.e.eV(s) +o=B.f.hw(p,0,h.z.length-2) +p=q?o+1:o-1 +n=B.e.hw(p,0,h.z.length-2) +s=h.as=A.btC(h.ab4(b,o),h.ab4(b,n),Math.abs(s-o)) +p=s.c +m=s.a +l=s.d +s=s.b +k=h.Q +if(h.y){f=h.x +f.toString +f=f>0}if(f){j=$.au().bk() +f=h.w +f.toString +j.saf(0,f) +f=h.x +f.toString +j.seu(f) +f=b.b +a.j8(new A.m(0,f-j.geu()/2),new A.m(b.a,f-j.geu()/2),j)}f=h.at +f.toString +i=h.as +f.kD(a,new A.m(i.a,i.b),new A.xC(g,g,g,k,new A.U(p-m,l-s),g))}, +fv(a){var s=this +return s.ax||s.b!==a.b||!s.c.k(0,a.c)||s.f.length!==a.f.length||!A.ee(s.z,a.z)||s.Q!=a.Q}} +A.aeO.prototype={ +gbP(a){var s=this.a +s=s.geq(s) +s.toString +return s}, +ee(a){var s=this.a +if(s.geq(s)!=null)this.Zh(a)}, +H(a,b){var s=this.a +if(s.geq(s)!=null)this.Zg(0,b)}, +gj(a){return A.bRW(this.a)}} +A.Gh.prototype={ +gbP(a){var s=this.a +s=s.geq(s) +s.toString +return s}, +ee(a){var s=this.a +if(s.geq(s)!=null)this.Zh(a)}, +H(a,b){var s=this.a +if(s.geq(s)!=null)this.Zg(0,b)}, +gj(a){var s=this.a,r=s.geq(s).x +r===$&&A.b() +return A.V(Math.abs(A.V(r,0,s.c-1)-this.b),0,1)}} +A.UB.prototype={ +pI(a,b){var s,r,q,p=this,o=p.ao +if(!o){o=p.ax +o.toString +o=p.ao=o!==0}if(!o||p.aN){p.aN=!1 +o=p.an +s=p.ax +s.toString +r=o.r +r.toString +p.at=o.a5C(r,s,a,b) +q=!1}else q=!0 +return p.ZZ(a,b)&&q}} +A.anz.prototype={ +Us(a,b,c){var s=null,r=$.aH() +r=new A.UB(this.as,B.fW,a,b,!0,s,new A.bF(!1,r,t.G),r) +r.P6(b,s,!0,c,a) +r.P7(b,s,s,!0,c,a) +return r}} +A.P8.prototype={ +grb(){var s,r,q,p,o,n +for(s=this.c,r=s.length,q=t.ZQ,p=46,o=0;o>>") +q.x=A.a8(new A.ad(s,new A.bd4(),r),!0,r.h("av.E")) +q.y=A.aX(q.a.c.length,B.a8,!0,t.A0)}, +gjB(){var s,r=null,q=this.c +q.toString +A.B(q) +q=this.a +q.toString +s=this.c +s.toString +return new A.bd9(s,q.e,r,r,B.lA,r,r,r,r,r,r,r,r,r,r,r)}, +as8(a){var s,r,q,p,o,n,m=this,l=m.c +l.toString +A.B(l) +l=m.c +l.toString +s=A.B(l).e5 +m.a.toString +l=s.a +if(l!=null)return l +r=s.b +if(r==null)r=m.gjB().gji() +m.a.toString +l=r.gj(r) +q=m.c +q.toString +q=A.aIN(q,t.zd) +if(q==null)q=null +else{q=q.ac +q=q==null?null:q.gj(q)}q=l===q +l=q +if(l)r=B.l +m.a.toString +p=a===B.lA +o=p?Math.max(2,3):2 +n=p?new A.dt(new A.b8(o,o),new A.b8(o,o),B.L,B.L):null +return new A.vc(n,new A.be(r,o,B.I,-1),B.a8)}, +gwf(){var s=this.e +return(s==null?null:s.geq(s))!=null}, +DK(){var s,r=this,q=r.a.d +if(q==null){s=r.c +s.toString +q=A.bjW(s)}if(q==r.e)return +if(r.gwf()){s=r.e +s.geq(s).H(0,r.gwm()) +r.e.H(0,r.gRd())}r.e=q +if(q!=null){s=q.geq(q) +s.cF() +s=s.dw$ +s.b=!0 +s.a.push(r.gwm()) +r.e.P(0,r.gRd()) +r.r=r.e.d}}, +Ro(){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=h.c +g.toString +A.B(g) +g=h.c +g.toString +s=A.B(g).e5 +h.a.toString +r=s.c +if(r==null){g=h.gjB().c +g.toString +q=g}else q=r +if(!h.gwf())g=null +else{g=h.e +g.toString +p=h.as8(q) +h.a.toString +if(r==null){o=h.gjB().c +o.toString}else o=r +n=h.a +n.toString +m=h.x +m===$&&A.b() +l=h.f +k=h.y +k===$&&A.b() +n=n.as +if(n==null)n=s.d +if(n==null)n=h.gjB().gv3() +h.a.toString +j=h.gjB().gAk() +i=h.a.e +g=new A.Se(g,p,o,B.a8,m,k,n,j,!i,g.geq(g)) +if(l!=null){p=l.z +l=l.Q +g.z=p +g.Q=l}}h.f=g}, +ca(){this.e8() +this.DK() +this.Ro()}, +b1(a){var s,r,q,p,o,n,m,l=this +l.bh(a) +if(l.a.d!=a.d){l.DK() +l.Ro() +s=l.d +if(s!=null&&s.f.length!==0){r=B.b.gaV(s.f) +if(r instanceof A.UB)r.aN=!0}}else{if(B.a8.k(0,B.a8)){s=l.a +if(J.j(s.as,a.as)){l.a.toString +s=!1}else s=!0}else s=!0 +if(s)l.Ro()}s=l.a.c.length +q=l.x +q===$&&A.b() +p=q.length +if(s>p){o=s-p +n=J.oL(o,t.yi) +for(s=t.C,m=0;m0?n.JN(m-1):null +m=n.r +m.toString +r=n.JN(m) +m=n.r +m.toString +q=m0){j=o-1 +o=a7.e +o.toString +m=A.a([],t.x8) +p[j]=a7.CD(p[j],!1,new A.k_(new A.Gh(o,j),new A.bd(m,t.jc),0),a7.gjB())}o=a7.r +o.toString +if(o0||r.d.f===0)return +s=r.d.d +if(s!==r.r){r.r=s +r.aER()}}, +aER(){var s,r,q,p,o=this +if(o.c!=null){s=t.gQ.a(B.b.gaV(o.e.f)) +r=s.gjY(s) +q=o.r +q.toString +q=r===q +r=q}else r=!0 +if(r)return +r=o.r +r.toString +q=o.d +p=q.e +q=q.b +if(Math.abs(r-p)===1)o.K8(q) +else o.K9(q)}, +K8(a){return this.aEQ(a)}, +aEQ(a){var s=0,r=A.y(t.H),q,p=this,o +var $async$K8=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:o=p.r +s=a.a===B.B.a?3:5 +break +case 3:o.toString +p.IS(o) +s=4 +break +case 5:o.toString +s=6 +return A.t(p.CA(o,B.aO,a),$async$K8) +case 6:case 4:if(p.c!=null)p.ad(new A.bd5(p)) +q=A.cR(null,t.H) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$K8,r)}, +K9(a){return this.aES(a)}, +aES(a){var s=0,r=A.y(t.H),q=this,p,o,n +var $async$K9=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:o=q.d.e +n=q.r +n.toString +p=n>o?n-1:n+1 +q.ad(new A.bd6(q,p,o)) +q.IS(p) +n=q.r +s=a.a===B.B.a?2:4 +break +case 2:n.toString +q.IS(n) +s=3 +break +case 4:n.toString +s=5 +return A.t(q.CA(n,B.aO,a),$async$K9) +case 5:case 3:if(q.c!=null)q.ad(new A.bd7(q)) +return A.w(null,r)}}) +return A.x($async$K9,r)}, +a5z(){var s,r,q=this.d +q.toString +s=t.gQ.a(B.b.gaV(this.e.f)) +r=s.gjY(s) +r.toString +q.sc5(0,A.V(r-this.d.d,-1,1))}, +aD0(a){var s,r,q,p=this +if(p.w>0||p.x>0)return!1 +if(a.jg$!==0)return!1 +if(!p.gwf())return!1;++p.x +s=t.gQ.a(B.b.gaV(p.e.f)) +r=s.gjY(s) +r.toString +if(a instanceof A.kI&&p.d.f===0){q=p.d +if(Math.abs(r-q.d)>1){q.a_Y(B.e.bg(r)) +p.r=p.d.d}p.a5z()}else if(a instanceof A.pb){q=p.d +q.toString +q.a_Y(B.e.bg(r)) +r=p.d +p.r=r.d +if(r.f===0)p.a5z()}--p.x +return!1}, +A(a){var s,r,q,p=this +p.a.toString +s=p.e +r=B.JL.qF(B.rc) +q=p.f +q===$&&A.b() +if(s==null)s=$.bCs() +return new A.dB(p.gaD_(),new A.DI(!1,B.ar,!1,s,new A.DG(r),A.bug(q,!0,!0,!0),B.D,B.C,null),null,t.WA)}} +A.bd5.prototype={ +$0(){var s=this.a +s.f=A.aI5(s.a.d)}, +$S:0} +A.bd6.prototype={ +$0(){var s,r,q,p=this.a,o=p.f +o===$&&A.b() +o=p.f=A.a8(o,!1,t.l7) +s=this.b +r=o[s] +q=this.c +o[s]=o[q] +B.b.n(p.f,q,r)}, +$S:0} +A.bd7.prototype={ +$0(){var s=this.a +s.f=A.aI5(s.a.d)}, +$S:0} +A.bd9.prototype={ +gqv(){var s,r=this,q=r.ay +if(q===$){s=A.B(r.ax) +r.ay!==$&&A.aq() +q=r.ay=s.ax}return q}, +ga5D(){var s,r=this,q=r.ch +if(q===$){s=A.B(r.ax) +r.ch!==$&&A.aq() +q=r.ch=s.p3}return q}, +gv3(){var s=this.gqv(),r=s.dx +return r==null?s.cy:r}, +gAk(){return 1}, +gji(){return this.gqv().b}, +gFz(){return this.gqv().b}, +giF(){return this.ga5D().x}, +gGH(){var s=this.gqv(),r=s.dy +return r==null?s.db:r}, +gGI(){return this.ga5D().x}, +gcG(){return new A.bt(new A.bda(this),t.U)}, +ghM(){return A.B(this.ax).x}, +gGs(){return this.CW?B.px:B.py}} +A.bda.prototype={ +$1(a){var s,r=this +if(a.p(0,B.G)){if(a.p(0,B.Q)){s=r.a.gqv().b +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=r.a.gqv().b +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=r.a.gqv().b +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return null}if(a.p(0,B.Q)){s=r.a.gqv().b +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=r.a.gqv().db +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=r.a.gqv().db +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return null}, +$S:29} +A.apl.prototype={} +A.apt.prototype={} +A.Fi.prototype={ +tr(a){var s=null +A.B(a) +A.B(a) +return new A.anN(a,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,B.T,!0,B.a7,s)}, +Gu(a){var s +a.aj(t.if) +s=A.B(a) +return s.hC.a}} +A.UI.prototype={ +L(a){if(a.p(0,B.x))return this.b +return this.a}, +l(a){return"{disabled: "+A.i(this.b)+", otherwise: "+A.i(this.a)+"}"}} +A.anM.prototype={ +L(a){var s +if(a.p(0,B.Q)){s=this.a +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=this.a +return A.K(10,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=this.a +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return null}, +l(a){var s=this.a +return"{hovered: "+A.K(10,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255).l(0)+", focused,pressed: "+A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255).l(0)+", otherwise: null}"}} +A.anL.prototype={ +L(a){if(a.p(0,B.x))return this.b +return this.a}} +A.anP.prototype={ +tr(a){var s,r +A.B(a) +s=A.d9(a,B.bz) +s=s==null?null:s.gdU() +r=A.IO(B.a2d,B.dL,B.dL,(s==null?B.aw:s).a) +return this.ajS(a).x_(new A.cG(r,t.Ak))}} +A.anQ.prototype={ +A(a){var s,r,q=null,p=A.d9(a,B.bz) +p=p==null?q:p.gdU() +s=(p==null?B.aw:p).a +if(s<=1)r=8 +else{p=A.ag(8,4,Math.min(s-1,1)) +p.toString +r=p}return A.db(A.a([this.d,A.cZ(q,q,r),new A.oE(1,B.fm,this.c,q)],t.p),B.w,B.z,B.ah)}, +geD(a){return this.d}} +A.anN.prototype={ +gDD(){var s,r=this,q=r.fr +if(q===$){s=A.B(r.dy) +r.fr!==$&&A.aq() +q=r.fr=s.ax}return q}, +gir(){return new A.cG(A.B(this.dy).p3.as,t.wG)}, +gcd(a){return B.bL}, +gfq(){return new A.bt(new A.bdc(this),t.U)}, +gcG(){return new A.bt(new A.bde(this),t.U)}, +gbT(a){return B.bL}, +gc7(){return B.bL}, +gfn(a){return B.fE}, +gdD(a){return new A.cG(A.bSJ(this.dy),t.Ak)}, +glv(){return B.kU}, +glt(){return B.e1}, +gcH(a){return B.e0}, +giI(){return new A.bt(new A.bdd(),t.Y6)}, +gf5(){return A.B(this.dy).z}, +glH(){return A.B(this.dy).e}, +ghM(){return A.B(this.dy).x}} +A.bdc.prototype={ +$1(a){var s +if(a.p(0,B.x)){s=this.a.gDD().db +return A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return this.a.gDD().b}, +$S:6} +A.bde.prototype={ +$1(a){var s +if(a.p(0,B.Q)){s=this.a.gDD().b +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.F)){s=this.a.gDD().b +return A.K(20,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}if(a.p(0,B.K)){s=this.a.gDD().b +return A.K(31,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255)}return null}, +$S:29} +A.bdd.prototype={ +$1(a){if(a.p(0,B.x))return B.c2 +return B.cy}, +$S:56} +A.aqv.prototype={} +A.Pj.prototype={ +gu(a){return J.T(this.a)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.Pj&&J.j(b.a,this.a)}} +A.anO.prototype={} +A.anT.prototype={ +Ba(a){var s +this.a__(a) +s=this.a +if(s.ghL()&&this.b){s=s.gar().gR() +s.toString +s.oA()}}, +FY(a){}, +Bc(a){var s +this.ajU(a) +s=this.x +s.a4n() +s.a.toString}, +Bb(a){var s,r +this.ajT(a) +if(this.a.ghL()){s=this.x +r=s.c +r.toString +switch(A.B(r).r.a){case 2:case 4:break +case 0:case 1:case 3:case 5:s=s.c +s.toString +A.aCx(s) +break}}}} +A.Pm.prototype={ +a8(){var s=null +return new A.UJ(new A.bq(s,t.NE),s,A.I(t.yb,t.Q),s,!0,s,B.m)}} +A.UJ.prototype={ +gqw(){var s=this.a.d +return s}, +ghO(){var s=this.a.e +if(s==null){s=this.e +if(s==null){s=A.tL(!0,null,!0,!0,null,null,!1) +this.e=s}}return s}, +ga1e(){this.a.toString +var s=this.c +s.toString +A.B(s) +return B.amT}, +gVp(){var s=this.x +s===$&&A.b() +return s}, +ghL(){return this.a.xr}, +gwo(){var s=this.a.p2 +if(s==null)s=!0 +return s}, +ga2B(){var s,r=this.a.id +if(r!=null)if(r>0){r=this.gqw().a.a +r=r.length===0?B.c1:new A.fq(r) +r=r.gt(r) +s=this.a.id +s.toString +s=r>s +r=s}else r=!1 +else r=!1 +return r}, +gz6(){var s=this.a.f +if(s.ay==null)s=this.ga2B() +else s=!0 +return s}, +gCT(){var s=this.a.f.ch +s=s==null?null:s.b +if(s==null){s=this.c +s.toString +s=A.B(s).ax.at}return s}, +as1(){var s,r,q,p,o,n,m,l,k=this,j=k.c +j.toString +j=A.A(j,B.aC,t.D) +j.toString +s=k.c +s.toString +r=A.B(s) +s=k.a.f +s=s.TI(r.d) +k.gwo() +q=k.a +p=q.f.as +o=s.aHn(!0,p==null?q.dx:p) +s=o.p4==null +if(!s||o.p3!=null)return o +q=k.gqw().a.a +q=q.length===0?B.c1:new A.fq(q) +n=q.gt(q) +if(s)if(o.p3==null)k.a.toString +s=k.a.id +if(s==null)return o +m=""+n +if(s>0){m+="/"+A.i(s) +l=j.ad3(B.f.hw(s-n,0,s))}else l="" +if(k.ga2B()){j=o.ay +if(j==null)j="" +s=o.ch +if(s==null){s=k.c +s.toString +q=A.B(s).p3.Q +q.toString +s=q.cM(A.B(s).ax.at)}return o.aHA(s,m,j,l)}return o.aHm(m,l)}, +aX(){var s,r=this +r.b9() +r.w=new A.anT(r,r) +r.a.toString +s=r.ghO() +r.a.toString +r.gwo() +s.ser(!0) +r.ghO().P(0,r.gJQ())}, +ga5M(){var s,r=this.c +r.toString +r=A.d9(r,B.h3) +s=r==null?null:r.ch +switch((s==null?B.fG:s).a){case 0:this.a.toString +this.gwo() +return!0 +case 1:return!0}}, +ca(){this.amm() +this.ghO().ser(this.ga5M())}, +b1(a){var s,r,q=this +q.amn(a) +s=q.a +r=a.e +if(s.e!=r){s=r==null?q.e:r +if(s!=null)s.H(0,q.gJQ()) +s=q.a.e +if(s==null)s=q.e +if(s!=null)s.P(0,q.gJQ())}q.ghO().ser(q.ga5M()) +if(q.ghO().gdk())q.a.toString}, +kF(a,b){var s=this.d +if(s!=null)this.rl(s,"controller")}, +gi5(){return this.a.W}, +m(){var s,r=this +r.ghO().H(0,r.gJQ()) +s=r.e +if(s!=null)s.m() +s=r.d +if(s!=null){s.aqn() +s.aj9()}r.amo()}, +a4n(){var s=this.y.gR() +if(s!=null)s.Xo()}, +aC7(a){var s=this,r=s.w +r===$&&A.b() +if(!r.b)return!1 +if(a===B.aM)return!1 +s.a.toString +s.gwo() +if(a===B.bH||a===B.lm)return!0 +if(s.gqw().a.a.length!==0)return!0 +return!1}, +aD5(){this.ad(new A.bdh())}, +aD7(a,b){var s,r=this,q=r.aC7(b) +if(q!==r.r)r.ad(new A.bdj(r,q)) +s=r.c +s.toString +switch(A.B(s).r.a){case 2:case 4:case 3:case 5:case 1:case 0:if(b===B.bH){s=r.y.gR() +if(s!=null)s.mn(a.gez())}break}s=r.c +s.toString +switch(A.B(s).r.a){case 2:case 1:case 0:break +case 4:case 3:case 5:if(b===B.aI){s=r.y.gR() +if(s!=null)s.kv()}break}}, +auO(){var s=this.gqw().a.b +if(s.a===s.b)this.y.gR().XC()}, +a2m(a){if(a!==this.f)this.ad(new A.bdi(this,a))}, +gu5(){var s,r,q,p,o=this,n=o.a.ct +if(n==null)s=null +else s=J.m1(n.slice(0),A.ab(n).c) +if(s!=null){n=o.y.gR() +n.toString +n=A.cS(n) +r=o.gqw().a +q=o.a.f +p=new A.It(!0,"EditableText-"+n,s,r,q.y)}else p=B.qw +n=o.y.gR().gu5() +return A.buB(n.ax,!0,p,!1,!0,n.x,!0,n.z,n.a,n.as,n.c,n.b,n.f,n.r,n.Q)}, +gIZ(){var s=this,r=A.aW(t.ui) +s.gwo() +if(s.f)r.F(0,B.F) +if(s.ghO().gdk())r.F(0,B.K) +if(s.gz6())r.F(0,B.cR) +return r}, +A(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=this,d8=null,d9={},e0=A.B(e2),e1=e2.aj(t.Uf) +if(e1==null)e1=B.fg +s=A.ce(d7.a.y,d7.gIZ(),t.p8) +r=A.B(e2).p3.y +r.toString +q=d7.c +q.toString +A.B(q) +q=d7.c +q.toString +q=A.bSl(q) +p=t.em +o=A.ce(q,d7.gIZ(),p) +n=A.ce(r,d7.gIZ(),p).cI(o).cI(s) +d7.a.toString +r=e0.ax +m=d7.gqw() +l=d7.ghO() +q=A.a([],t.VS) +p=d7.a.p1 +if(p!=null)B.b.I(q,p) +p=d7.a.id +if(p!=null)q.push(new A.a3v(p,d7.ga1e())) +switch(A.c3().a){case 2:case 4:k=A.bGk(d7.a.Y) +break +case 0:case 1:case 3:case 5:k=A.bN3(d7.a.Y) +break +default:k=d8}p=d7.a +j=p.y1 +i=p.RG +h=p.R8 +d9.a=d9.b=null +switch(e0.r.a){case 2:g=A.j9(e2) +d7.x=!0 +j=$.boP() +if(d7.gz6())f=d7.gCT() +else{d7.a.toString +p=e1.w +f=p==null?g.gip():p}e=e1.x +if(e==null){e1=g.gip() +e=A.K(102,e1.gj(e1)>>>16&255,e1.gj(e1)>>>8&255,e1.gj(e1)&255)}d=new A.m(-2/A.aY(e2,B.dh,t.l).w.b,0) +c=e +b=!0 +i=!0 +h=B.e6 +break +case 4:g=A.j9(e2) +i=d7.x=!1 +j=$.boO() +if(d7.gz6())f=d7.gCT() +else{d7.a.toString +p=e1.w +f=p==null?g.gip():p}e=e1.x +if(e==null){e1=g.gip() +e=A.K(102,e1.gj(e1)>>>16&255,e1.gj(e1)>>>8&255,e1.gj(e1)&255)}d=new A.m(-2/A.aY(e2,B.dh,t.l).w.b,0) +d9.b=new A.bdl(d7) +d9.a=new A.bdm(d7) +c=d8 +b=!0 +h=B.e6 +break +case 0:case 1:d7.x=!1 +j=$.bp9() +if(d7.gz6())f=d7.gCT() +else{d7.a.toString +p=e1.w +f=p==null?r.b:p}e=e1.x +if(e==null){e1=r.b +e=A.K(102,e1.gj(e1)>>>16&255,e1.gj(e1)>>>8&255,e1.gj(e1)&255)}c=d8 +d=c +b=!1 +i=!1 +break +case 3:d7.x=!1 +j=$.biP() +if(d7.gz6())f=d7.gCT() +else{d7.a.toString +p=e1.w +f=p==null?r.b:p}e=e1.x +if(e==null){e1=r.b +e=A.K(102,e1.gj(e1)>>>16&255,e1.gj(e1)>>>8&255,e1.gj(e1)&255)}d9.b=new A.bdn(d7) +d9.a=new A.bdo(d7) +c=d8 +d=c +b=!1 +i=!1 +break +case 5:d7.x=!1 +j=$.biP() +if(d7.gz6())f=d7.gCT() +else{d7.a.toString +p=e1.w +f=p==null?r.b:p}e=e1.x +if(e==null){e1=r.b +e=A.K(102,e1.gj(e1)>>>16&255,e1.gj(e1)>>>8&255,e1.gj(e1)&255)}d9.b=new A.bdp(d7) +d9.a=new A.bdq(d7) +c=d8 +d=c +b=!1 +i=!1 +break +default:c=d8 +e=c +f=e +d=f +b=d}e1=d7.cX$ +d7.a.toString +d7.gwo() +p=d7.a +a=p.fy +a0=p.go +a1=d7.r +a2=p.bt +a3=p.r +a4=p.w +a5=p.x +a6=p.z +a7=p.Q +a8=p.at +a9=p.ax +b0=p.ay +b1=p.ch +b2=p.cx +b3=p.cy +b4=p.dx +p=p.dy +b5=l.gdk()?e:d8 +b6=d7.a +b7=b6.xr +b8=b7?j:d8 +b9=b6.k2 +c0=b6.k3 +c1=b6.k4 +c2=b6.ok +c3=b6.co +c4=b6.p3 +c5=b6.p4 +c6=b6.ry +c7=b6.to +c8=b6.x2 +c9=b6.y2 +d0=b6.cp +d1=b6.c_ +d2=b6.B +d3=b6.ao +b6=b6.aN +d4=$.bod() +e1=A.PP(e1,A.bri(!0,c,d7,B.c3,a9,B.dF,d2,d3,b6,m,f,c5,d,i,h,c4,c9,!0,b7,!0,!1,l,!0,q,d7.y,r.a,a3,d4,b4,p,B.cD,b1,b0,c2,b9,c0,d7.gaD6(),d7.gauN(),c1,c3,b,!1,!0,"editable",!0,d0,c8,d1,b5,b8,c6,c7,a0,a1,b2,b3,k,a6,n,a7,a5,a8,d8,a4,d8,B.at,a,a2)) +d7.a.toString +d5=A.hg(new A.vA(A.a([l,m],t.Eo)),new A.bdr(d7,l,m),new A.ii(e1,d8)) +d7.a.toString +d6=A.ce(B.aBN,d7.gIZ(),t.Pb) +d9.c=null +if(d7.ga1e()!==B.amS){e1=d7.a.id +e1=e1!=null&&e1>0}else e1=!1 +if(e1)d9.c=d7.a.id +d7.gwo() +e1=d7.w +e1===$&&A.b() +return A.nj(A.aaR(A.qD(A.hg(m,new A.bds(d9,d7),e1.a7Z(B.aQ,d5)),!1,d8),d8,d8),d6,d8,new A.bdt(d7),new A.bdu(d7),d8)}, +gar(){return this.y}} +A.bdh.prototype={ +$0(){}, +$S:0} +A.bdj.prototype={ +$0(){this.a.r=this.b}, +$S:0} +A.bdi.prototype={ +$0(){this.a.f=this.b}, +$S:0} +A.bdl.prototype={ +$0(){var s=this.a +if(!s.ghO().gdk()&&s.ghO().ger())s.ghO().lG()}, +$S:0} +A.bdm.prototype={ +$0(){this.a.ghO().pq()}, +$S:0} +A.bdn.prototype={ +$0(){var s=this.a +if(!s.ghO().gdk()&&s.ghO().ger())s.ghO().lG()}, +$S:0} +A.bdo.prototype={ +$0(){this.a.ghO().pq()}, +$S:0} +A.bdp.prototype={ +$0(){var s=this.a +if(!s.ghO().gdk()&&s.ghO().ger())s.ghO().lG()}, +$S:0} +A.bdq.prototype={ +$0(){this.a.ghO().pq()}, +$S:0} +A.bdr.prototype={ +$2(a,b){var s,r,q,p=this.a,o=p.as1(),n=p.a,m=n.y,l=n.Q +n=n.as +s=p.f +r=this.b.gdk() +q=this.c.a.a +p.a.toString +return A.bJ_(m,b,o,!1,q.length===0,r,s,l,n)}, +$S:352} +A.bdt.prototype={ +$1(a){return this.a.a2m(!0)}, +$S:79} +A.bdu.prototype={ +$1(a){return this.a.a2m(!1)}, +$S:65} +A.bds.prototype={ +$2(a,b){var s,r=null,q=this.a,p=q.c,o=this.b,n=o.gqw().a.a +n=n.length===0?B.c1:new A.fq(n) +n=n.gt(n) +o.a.toString +s=q.b +q=q.a +return new A.bu(A.bL(r,r,r,r,r,r,r,n,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,p,r,r,r,r,r,r,r,s,q,r,r,r,r,r,r,r,r,r,r,r,r,new A.bdk(o),r,r,r,r,r,r,r,r,r,r,r),!1,!1,!1,!1,b,r)}, +$S:138} +A.bdk.prototype={ +$0(){var s=this.a +if(!s.gqw().a.b.gdf())s.gqw().syr(A.rj(B.t,s.gqw().a.a.length)) +s.a4n()}, +$S:0} +A.bfN.prototype={ +$1(a){var s,r=null +if(a.p(0,B.x)){s=A.B(this.a).p3.y.b +return A.hb(r,r,s==null?r:A.K(97,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255),r,r,r,r,r,r,r,r,r,r,r,r,r,r,!0,r,r,r,r,r,r,r,r)}return A.hb(r,r,A.B(this.a).p3.y.b,r,r,r,r,r,r,r,r,r,r,r,r,r,r,!0,r,r,r,r,r,r,r,r)}, +$S:57} +A.beE.prototype={ +$2(a,b){if(!a.a)a.H(0,b)}, +$S:61} +A.Ww.prototype={ +b1(a){this.bh(a) +this.x8()}, +ca(){var s,r,q,p,o=this +o.e8() +s=o.cX$ +r=o.gu1() +q=o.c +q.toString +q=A.uM(q) +o.jf$=q +p=o.uJ(q,r) +if(r){o.kF(s,o.hd$) +o.hd$=!1}if(p)if(s!=null)s.m()}, +m(){var s,r=this +r.je$.al(0,new A.beE()) +s=r.cX$ +if(s!=null)s.m() +r.cX$=null +r.b0()}} +A.Pn.prototype={ +a8(){var s=null,r=$.aH() +return new A.Hy(new A.NR(s,r),new A.z6(!1,r),s,A.I(t.yb,t.Q),s,!0,s,B.m)}} +A.aZa.prototype={ +$1(a){var s,r,q,p,o,n,m,l,k,j=this +t.iN.a(a) +s=a.c +s.toString +r=j.a.TI(A.B(s).d) +s=a.cX$ +q=a.gyY() +p=a.e +o=p.y +p=r.aH5(o==null?A.l(p).h("dv.T").a(o):o) +o=j.ax +n=j.CW +m=j.cy +m=n?B.pq:B.pr +l=j.db +l=n?B.ps:B.pt +k=j.ry +k=!n||!o +return A.PP(s,A.Fm(j.cx,j.x2,j.as,j.x1,j.aN,j.an,j.a6,j.bL,q,j.p4,j.p2,j.cp,j.p3,j.p1,p,j.W,j.y1,k,j.dx,!0,j.fy,j.d,j.k4,j.rx,j.e,j.aK,j.go,j.dy,j.fr,j.fx,j.y2,n,j.ch,j.c_,new A.aZb(a,j.b),j.k2,j.k3,j.id,j.k1,o,j.c,j.ao,j.xr,j.R8,j.RG,j.to,j.ct,j.B,j.ay,m,l,j.co,j.w,j.r,j.x,j.y,j.Q,j.z,j.f,j.at,j.b6))}, +$S:353} +A.aZb.prototype={ +$1(a){this.a.Lf(a)}, +$S:25} +A.Hy.prototype={ +gyY(){var s=t.mr.a(A.a9.prototype.gbc.call(this)) +return s.z}, +kF(a,b){var s,r=this +r.ahU(a,b) +s=r.ax +if(s!=null)r.rl(s,"controller") +r.d=r.gyY().a.a}, +aX(){var s,r=this +r.b9() +s=t.mr +s.a(A.a9.prototype.gbc.call(r)) +s.a(A.a9.prototype.gbc.call(r)).z.P(0,r.gQV())}, +b1(a){var s,r,q,p=this +p.akg(a) +s=t.mr +r=a.z +if(s.a(A.a9.prototype.gbc.call(p)).z!==r){q=p.gQV() +r.H(0,q) +s.a(A.a9.prototype.gbc.call(p)).z.P(0,q) +s.a(A.a9.prototype.gbc.call(p)) +s.a(A.a9.prototype.gbc.call(p)) +p.d=s.a(A.a9.prototype.gbc.call(p)).z.a.a}}, +m(){var s,r=this +t.mr.a(A.a9.prototype.gbc.call(r)).z.H(0,r.gQV()) +s=r.ax +if(s!=null){s.aqn() +s.aj9()}r.ahT()}, +Lf(a){var s +this.ahS(a) +if(this.gyY().a.a!==a){s=this.gyY() +s.sef(0,a)}}, +asY(){var s=this +if(s.gyY().a.a!==s.ga75())s.Lf(s.gyY().a.a)}} +A.a5Q.prototype={} +A.aK1.prototype={ +BU(a){return B.ar4}, +KD(a,b,c,d){var s,r,q,p=null,o=A.B(a) +a.aj(t.jZ) +s=A.B(a) +r=s.fp.c +if(r==null)r=o.ax.b +q=A.cZ(A.iB(A.dY(B.aQ,p,B.D,!1,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,d,p,p,p,p,!1,B.am),p,p,new A.anU(r,p),B.y),22,22) +switch(b.a){case 0:return A.blU(1.5707963267948966,q) +case 1:return q +case 2:return A.blU(0.7853981633974483,q)}}, +BT(a,b){switch(a.a){case 0:return B.anK +case 1:return B.i +case 2:return B.anG}}} +A.anU.prototype={ +aE(a,b){var s,r,q,p,o=$.au(),n=o.bk() +n.saf(0,this.b) +s=b.a/2 +r=A.nx(new A.m(s,s),s) +q=0+s +p=o.d1() +p.wL(r) +p.qA(new A.L(0,0,q,q)) +a.e3(p,n)}, +fv(a){return!this.b.k(0,a.b)}} +A.aj8.prototype={} +A.Pw.prototype={ +gu(a){return A.X(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.a_(b)!==A.p(s))return!1 +return b instanceof A.Pw&&J.j(b.a,s.a)&&J.j(b.b,s.b)&&J.j(b.c,s.c)}} +A.anW.prototype={} +A.aaY.prototype={ +A(a){var s=this.c.a4(0,B.oy),r=this.d.U(0,B.anC),q=A.aY(a,B.bR,t.l).w.r.b+8,p=44<=s.b-8-q,o=new A.m(8,q) +return new A.b4(new A.aK(8,q,8,8),new A.l8(new A.aaZ(s.a4(0,o),r.a4(0,o),p),new A.UO(this.e,p,A.bYA(),null),null),null)}} +A.UO.prototype={ +a8(){return new A.ao0(new A.kR(),null,null,B.m)}, +aPW(a,b){return this.e.$2(a,b)}} +A.ao0.prototype={ +b1(a){var s=this +s.bh(a) +if(!A.ee(s.a.c,a.c)){s.e=new A.kR() +s.d=!1}}, +A(a){var s,r,q,p,o,n,m,l=this,k=null,j=A.A(a,B.aC,t.D) +j.toString +s=l.e +r=l.d +q=a.aj(t.I) +q.toString +p=l.a +o=p.d +n=l.d +m=A.h3(n?B.xx:B.xA,k,k,k) +j=n?j.gbr():j.gbB() +j=A.a([new A.ao_(m,new A.bdL(l),j,k)],t.p) +B.b.I(j,l.a.c) +return new A.ao1(r,q.w,A.bpQ(p.aPW(a,new A.anY(o,n,j,k)),B.Y,B.a1Z),s)}, +$iaP:1} +A.bdL.prototype={ +$0(){var s=this.a +s.ad(new A.bdK(s))}, +$S:0} +A.bdK.prototype={ +$0(){var s=this.a +s.d=!s.d}, +$S:0} +A.ao1.prototype={ +b5(a){var s=new A.ao2(this.e,this.f,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.sWP(this.e) +b.scz(this.f)}} +A.ao2.prototype={ +sWP(a){if(a===this.ac)return +this.ac=a +this.aa()}, +scz(a){if(a===this.az)return +this.az=a +this.aa()}, +ce(){var s,r,q=this,p=q.k3$ +p.toString +s=t.k +r=s.a(A.J.prototype.ga9.call(q)) +p.cS(new A.aN(0,r.b,0,r.d),!0) +if(!q.ac&&q.D==null){p=q.k3$ +q.D=p.gq(p).a}p=s.a(A.J.prototype.ga9.call(q)) +s=q.D +if(s!=null){s=q.k3$ +s=s.gq(s) +r=q.D +r.toString +s=s.a>r}else{r=s +s=!0}if(s){s=q.k3$ +s=s.gq(s).a}else{r.toString +s=r}r=q.k3$ +q.id=p.bJ(new A.U(s,r.gq(r).b)) +r=q.k3$.b +r.toString +t.yS.a(r) +if(q.az===B.ab)p=0 +else{p=q.gq(q) +s=q.k3$ +s=p.a-s.gq(s).a +p=s}r.a=new A.m(p,0)}, +aE(a,b){var s=this.k3$,r=s.b +r.toString +a.em(s,t.yS.a(r).a.U(0,b))}, +dZ(a,b){var s=this.k3$.b +s.toString +t.yS.a(s) +return a.oP(new A.bdM(this,b,s),s.a,b)}, +fR(a){if(!(a.b instanceof A.jr))a.b=new A.jr(null,null,B.i)}, +eL(a,b){var s=a.b +s.toString +s=t.yS.a(s).a +b.bi(0,s.a,s.b) +this.aj_(a,b)}} +A.bdM.prototype={ +$2(a,b){return this.a.k3$.dm(a,b)}, +$S:17} +A.anY.prototype={ +b5(a){var s=new A.alJ(this.e,this.f,0,null,null,A.ay(t.T)) +s.b4() +return s}, +bb(a,b){b.sAV(this.e) +b.sWP(this.f)}, +bI(a){return new A.anZ(A.dI(t.E),this,B.an)}} +A.anZ.prototype={} +A.alJ.prototype={ +sAV(a){if(a===this.W)return +this.W=a +this.aa()}, +sWP(a){if(a===this.a6)return +this.a6=a +this.aa()}, +awl(){var s,r=this,q={},p=t.k,o=r.a6?p.a(A.J.prototype.ga9.call(r)):A.Bd(new A.U(p.a(A.J.prototype.ga9.call(r)).b,44)) +q.a=-1 +q.b=0 +r.ci(new A.bb1(q,r,o)) +p=r.a2$ +p.toString +s=r.B +if(s!==-1&&s===r.d8$-2&&q.b-p.gq(p).a<=o.b)r.B=-1}, +a5e(a,b){var s,r=this +if(a===r.a2$)return r.B!==-1 +s=r.B +if(s===-1)return!0 +return b>s===r.a6}, +azx(){var s,r,q,p,o=this,n={} +n.a=-1 +n.b=B.y +n.c=0 +s=o.a2$ +s.toString +n.d=o.a6&&!o.W?s.gq(s).b:0 +o.ci(new A.bb2(n,o,s)) +r=s.b +r.toString +t.yS.a(r) +q=o.a2$ +q.toString +if(o.a5e(q,0)){r.e=!0 +if(o.a6){q=o.W +r.a=q?new A.m(0,n.d):B.i +r=n.b +p=r.b +s=q?p+s.gq(s).b:p +n.b=new A.U(r.a,s)}else{r.a=new A.m(n.c,0) +n.b=new A.U(n.b.a+s.gq(s).a,n.b.b)}}else r.e=!1 +o.id=n.b}, +ce(){var s,r=this +r.B=-1 +if(r.a2$==null){s=t.k.a(A.J.prototype.ga9.call(r)) +r.id=new A.U(A.V(0,s.a,s.b),A.V(0,s.c,s.d)) +return}r.awl() +r.azx()}, +aE(a,b){this.ci(new A.bb4(a,b))}, +fR(a){if(!(a.b instanceof A.jr))a.b=new A.jr(null,null,B.i)}, +dZ(a,b){var s,r,q={},p=q.a=this.dF$ +for(s=t.yS;p!=null;){p=p.b +p.toString +s.a(p) +if(!p.e){r=p.ds$ +q.a=r +p=r +continue}if(a.oP(new A.bb3(q,b,p),p.a,b))return!0 +r=p.ds$ +q.a=r +p=r}return!1}, +jv(a){this.ci(new A.bb5(a))}} +A.bb1.prototype={ +$1(a){var s,r,q,p,o=this.a;++o.a +s=this.b +if(s.B!==-1&&!s.a6)return +t.x.a(a) +r=this.c +q=r.b +a.cS(new A.aN(0,q,0,r.d),!0) +p=o.b+a.gq(a).a +o.b=p +if(p>q&&s.B===-1)s.B=o.a-1}, +$S:21} +A.bb2.prototype={ +$1(a){var s,r,q,p=this.a,o=++p.a +t.x.a(a) +s=a.b +s.toString +t.yS.a(s) +if(a===this.c)return +r=this.b +if(!r.a5e(a,o)){s.e=!1 +return}s.e=!0 +if(!r.a6){o=p.c +s.a=new A.m(o,0) +q=o+a.gq(a).a +p.c=q +p.b=new A.U(q,Math.max(a.gq(a).b,p.b.b))}else{o=p.d +s.a=new A.m(0,o) +p.d=o+a.gq(a).b +p.b=new A.U(Math.max(a.gq(a).a,p.b.a),p.d)}}, +$S:21} +A.bb4.prototype={ +$1(a){var s +t.x.a(a) +s=a.b +s.toString +t.yS.a(s) +if(!s.e)return +this.a.em(a,s.a.U(0,this.b))}, +$S:21} +A.bb3.prototype={ +$2(a,b){return this.a.a.dm(a,b)}, +$S:17} +A.bb5.prototype={ +$1(a){var s +t.x.a(a) +s=a.b +s.toString +if(t.yS.a(s).e)this.a.$1(a)}, +$S:21} +A.anX.prototype={ +A(a){var s=null +return A.h5(B.T,!0,B.Qh,this.c,B.bd,A.bPQ(A.B(a).ax),1,s,s,s,s,s,B.ez)}} +A.ao_.prototype={ +A(a){var s=null +return A.h5(B.T,!0,s,A.dh(s,s,this.c,s,this.d,s,s,s,this.e,s),B.n,B.E,0,s,s,s,s,s,B.ez)}, +geD(a){return this.c}} +A.aqb.prototype={ +aw(a){var s,r,q +this.eS(a) +s=this.a2$ +for(r=t.yS;s!=null;){s.aw(a) +q=s.b +q.toString +s=r.a(q).a3$}}, +ap(a){var s,r,q +this.eT(0) +s=this.a2$ +for(r=t.yS;s!=null;){s.ap(0) +q=s.b +q.toString +s=r.a(q).a3$}}} +A.aqw.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.HA.prototype={ +J(){return"_TextSelectionToolbarItemPosition."+this.b}} +A.ab_.prototype={ +A(a){var s=this,r=null +return A.eP(!1,s.c,B.n,r,r,r,r,r,s.d,r,A.aaM(s.f,r,B.E,r,r,r,r,r,r,A.bNa(A.B(a).ax),r,B.e8,s.e,r,B.cS,r,r,B.P5,r))}} +A.eR.prototype={ +aHh(a,b,a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=null,c=a1==null?d:a1 +if(c==null)c=e.a +s=a2==null?d:a2 +if(s==null)s=e.b +r=a3==null?d:a3 +if(r==null)r=e.c +q=a4==null?e.d:a4 +p=a5==null?d:a5 +if(p==null)p=e.e +o=a6==null?d:a6 +if(o==null)o=e.f +n=b0==null?d:b0 +if(n==null)n=e.r +m=b1==null?d:b1 +if(m==null)m=e.w +l=b2==null?d:b2 +if(l==null)l=e.x +k=a==null?d:a +if(k==null)k=e.y +j=b==null?d:b +if(j==null)j=e.z +i=a0==null?d:a0 +if(i==null)i=e.Q +h=a7==null?d:a7 +if(h==null)h=e.as +g=a8==null?e.at:a8 +f=a9==null?d:a9 +return A.blO(k,j,i,c,s,r,q,p,o,h,g,f==null?e.ax:f,n,m,l)}, +cI(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=null +if(a==null)return d +s=d.a +s=s==null?c:s.cI(a.a) +if(s==null)s=a.a +r=d.b +r=r==null?c:r.cI(a.b) +if(r==null)r=a.b +q=d.c +q=q==null?c:q.cI(a.c) +if(q==null)q=a.c +p=d.d +p=p==null?c:p.cI(a.d) +if(p==null)p=a.d +o=d.e +o=o==null?c:o.cI(a.e) +if(o==null)o=a.e +n=d.f +n=n==null?c:n.cI(a.f) +if(n==null)n=a.f +m=d.r +m=m==null?c:m.cI(a.r) +if(m==null)m=a.r +l=d.w +l=l==null?c:l.cI(a.w) +if(l==null)l=a.w +k=d.x +k=k==null?c:k.cI(a.x) +if(k==null)k=a.x +j=d.y +j=j==null?c:j.cI(a.y) +if(j==null)j=a.y +i=d.z +i=i==null?c:i.cI(a.z) +if(i==null)i=a.z +h=d.Q +h=h==null?c:h.cI(a.Q) +if(h==null)h=a.Q +g=d.as +g=g==null?c:g.cI(a.as) +if(g==null)g=a.as +f=d.at +f=f==null?c:f.cI(a.at) +if(f==null)f=a.at +e=d.ax +e=e==null?c:e.cI(a.ax) +return d.aHh(j,i,h,s,r,q,p,o,n,g,f,e==null?a.ax:e,m,l,k)}, +aFB(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.jJ(a0,d,b,d,a1,a2,0,1,a3) +s=e.b +s=s==null?d:s.jJ(a0,d,b,d,a1,a2,0,1,a3) +r=e.c +r=r==null?d:r.jJ(a0,d,b,d,a1,a2,0,1,a3) +q=e.d +q=q==null?d:q.jJ(a0,d,b,d,a1,a2,0,1,a3) +p=e.e +p=p==null?d:p.jJ(a0,d,b,d,a1,a2,0,1,a3) +o=e.f +o=o==null?d:o.jJ(a,d,b,d,a1,a2,0,1,a3) +n=e.r +n=n==null?d:n.jJ(a,d,b,d,a1,a2,0,1,a3) +m=e.w +m=m==null?d:m.jJ(a,d,b,d,a1,a2,0,1,a3) +l=e.x +l=l==null?d:l.jJ(a,d,b,d,a1,a2,0,1,a3) +k=e.y +k=k==null?d:k.jJ(a,d,b,d,a1,a2,0,1,a3) +j=e.z +j=j==null?d:j.jJ(a,d,b,d,a1,a2,0,1,a3) +i=e.Q +i=i==null?d:i.jJ(a0,d,b,d,a1,a2,0,1,a3) +h=e.as +h=h==null?d:h.jJ(a,d,b,d,a1,a2,0,1,a3) +g=e.at +g=g==null?d:g.jJ(a,d,b,d,a1,a2,0,1,a3) +f=e.ax +return A.blO(k,j,i,c,s,r,q,p,o,h,g,f==null?d:f.jJ(a,d,b,d,a1,a2,0,1,a3),n,m,l)}, +a7z(a,b,c){return this.aFB(a,b,c,null,null,null)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.eR&&J.j(s.a,b.a)&&J.j(s.b,b.b)&&J.j(s.c,b.c)&&J.j(s.d,b.d)&&J.j(s.e,b.e)&&J.j(s.f,b.f)&&J.j(s.r,b.r)&&J.j(s.w,b.w)&&J.j(s.x,b.x)&&J.j(s.y,b.y)&&J.j(s.z,b.z)&&J.j(s.Q,b.Q)&&J.j(s.as,b.as)&&J.j(s.at,b.at)&&J.j(s.ax,b.ax)}, +gu(a){var s=this +return A.X(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.ao5.prototype={} +A.Fu.prototype={ +A(a){var s,r,q=null,p=this.c,o=B.dG.a,n=B.dG.b,m=B.dG.c,l=B.dG.d,k=B.dG.e,j=B.dG.f,i=B.dG.r,h=a.aj(t.Uf) +if(h==null)h=B.fg +s=p.fp +r=s.b +if(r==null)r=h.x +s=s.a +h=s==null?h.w:s +return new A.Si(this,new A.a0s(new A.a41(p,new A.Mq(o,n,m,l,k,j,i),B.q3,o,n,m,l,k,j,i),A.xB(A.ayn(this.d,h,q,q,r),p.ok,q),q),q)}} +A.Si.prototype={ +y8(a,b,c){return new A.Fu(this.w.c,c,null)}, +dh(a){return!this.w.c.k(0,a.w.c)}} +A.zH.prototype={ +hk(a){var s,r=this.a +r.toString +s=this.b +s.toString +return A.bNi(r,s,a)}} +A.Id.prototype={ +a8(){return new A.ae1(null,null,B.m)}} +A.ae1.prototype={ +vo(a){var s=a.$3(this.CW,this.a.r,new A.b23()) +s.toString +this.CW=t.ZM.a(s)}, +A(a){var s,r=this.CW +r.toString +s=this.ghN() +return new A.Fu(r.a5(0,s.gj(s)),this.a.w,null)}} +A.b23.prototype={ +$1(a){return new A.zH(t.ff.a(a),null)}, +$S:354} +A.yg.prototype={ +J(){return"MaterialTapTargetSize."+this.b}} +A.mt.prototype={ +Um(a,b,c,d){var s=this,r=s.ax.aH3(null),q=b==null?s.p2:b,p=d==null?s.p3:d,o=a==null?s.x2:a,n=c==null?s.e5:c +return A.blP(s.R8,s.RG,s.a,s.dj,s.rx,s.ry,s.Q,s.to,s.x1,o,s.xr,s.y1,s.as,s.at,s.y2,s.bL,s.co,r,s.b,s.aK,s.b6,s.ay,s.c_,s.ch,s.CW,s.cp,s.ct,s.B,s.W,s.dM,s.a6,s.c,s.an,s.ao,s.cx,s.cy,s.db,s.dx,s.aN,s.ok,s.dy,s.d,s.aZ,s.e,s.bt,s.Y,s.b3,s.bd,s.eM,s.eA,s.h1,s.f,s.r,s.dG,s.fr,s.fx,s.fy,s.p1,q,s.fo,s.de,s.go,s.w,s.he,s.bm,s.id,s.dA,s.k1,s.k2,s.eY,s.dH,s.k3,s.x,s.cY,n,s.hC,s.fp,p,s.jT,s.dY,s.D,s.cq,s.p4,s.k4,!0,s.z)}, +a8N(a){return this.Um(null,null,a,null)}, +aHu(a,b){return this.Um(null,a,null,b)}, +aH2(a){return this.Um(a,null,null,null)}, +k(a,b){var s,r,q=this +if(b==null)return!1 +if(J.a_(b)!==A.p(q))return!1 +if(b instanceof A.mt)if(b.a===q.a)if(A.bhB(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.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.j(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.bL.k(0,q.bL))if(b.co.k(0,q.co))if(b.aK.k(0,q.aK))if(b.b6.k(0,q.b6))if(b.c_.k(0,q.c_))if(b.cp.k(0,q.cp))if(b.ct.k(0,q.ct))if(b.B.k(0,q.B))if(b.W.k(0,q.W))if(b.a6.k(0,q.a6))if(b.an.k(0,q.an))if(b.ao.k(0,q.ao))if(b.aN.k(0,q.aN))if(b.aZ.k(0,q.aZ))if(b.bt.k(0,q.bt))if(b.Y.k(0,q.Y))if(b.b3.k(0,q.b3))if(b.bd.k(0,q.bd))if(b.eM.k(0,q.eM))if(b.eA.k(0,q.eA))if(b.h1.k(0,q.h1))if(b.dG.k(0,q.dG))if(b.fo.k(0,q.fo))if(b.de.k(0,q.de))if(b.he.k(0,q.he))if(b.bm.k(0,q.bm))if(b.dA.k(0,q.dA))if(b.eY.k(0,q.eY))if(b.dH.k(0,q.dH))if(b.cY.k(0,q.cY))if(b.e5.k(0,q.e5))if(b.hC.k(0,q.hC))if(b.fp.k(0,q.fp))if(b.jT.k(0,q.jT))if(b.dY.k(0,q.dY))if(b.cq.k(0,q.cq)){s=b.D +s.toString +r=q.D +r.toString +if(s.k(0,r)){s=b.k1 +s.toString +r=q.k1 +r.toString +if(s.k(0,r)){s=b.dM +s.toString +r=q.dM +r.toString +if(s.k(0,r)){s=b.dj +s.toString +r=q.dj +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 +return s}, +gu(a){var s=this,r=[s.a,s.b],q=s.c +B.b.I(r,q.gcN(q)) +B.b.I(r,q.gbp(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(!0) +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.bL) +r.push(s.co) +r.push(s.aK) +r.push(s.b6) +r.push(s.c_) +r.push(s.cp) +r.push(s.ct) +r.push(s.B) +r.push(s.W) +r.push(s.a6) +r.push(s.an) +r.push(s.ao) +r.push(s.aN) +r.push(s.aZ) +r.push(s.bt) +r.push(s.Y) +r.push(s.b3) +r.push(s.bd) +r.push(s.eM) +r.push(s.eA) +r.push(s.h1) +r.push(s.dG) +r.push(s.fo) +r.push(s.de) +r.push(s.he) +r.push(s.bm) +r.push(s.dA) +r.push(s.eY) +r.push(s.dH) +r.push(s.cY) +r.push(s.e5) +r.push(s.hC) +r.push(s.fp) +r.push(s.jT) +r.push(s.dY) +r.push(s.cq) +q=s.D +q.toString +r.push(q) +q=s.k1 +q.toString +r.push(q) +q=s.dM +q.toString +r.push(q) +q=s.dj +q.toString +r.push(q) +q=s.Q +q.toString +r.push(q) +return A.dj(r)}} +A.b_1.prototype={ +$0(){var s=this.a,r=this.b +return s.aHu(r.cI(s.p2),r.cI(s.p3))}, +$S:355} +A.b__.prototype={ +$2(a,b){return new A.aS(a,b.aRd(this.a.c.i(0,a),this.b),t.sw)}, +$S:356} +A.b_0.prototype={ +$1(a){return!this.a.c.aq(0,a.a)}, +$S:357} +A.a41.prototype={ +guS(){var s=this.ch.a +return s==null?this.ay.ax.a:s}, +gip(){var s=this.ch.b +return s==null?this.ay.ax.b:s}, +gvG(){var s=this.ch.c +return s==null?this.ay.ax.c:s}, +gvW(){var s=this.ch.f +return s==null?this.ay.go:s}, +eH(a){return A.bJW(this.ay,this.ch.eH(a))}} +A.GF.prototype={ +gu(a){return(A.t3(this.a)^A.t3(this.b))>>>0}, +k(a,b){if(b==null)return!1 +return b instanceof A.GF&&b.a===this.a&&b.b===this.b}} +A.agM.prototype={ +cK(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.cl(r,A.l(r).h("cl<1>")) +r.E(0,s.gO(s))}s=c.$0() +r.n(0,b,s) +return s}} +A.rr.prototype={ +UY(a){var s=this.a,r=this.b,q=A.V(a.a+new A.m(s,r).av(0,4).a,0,a.b) +return a.aHr(A.V(a.c+new A.m(s,r).av(0,4).b,0,a.d),q)}, +k(a,b){if(b==null)return!1 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.rr&&b.a===this.a&&b.b===this.b}, +gu(a){return A.X(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)}, +f4(){return this.ahK()+"(h: "+A.mK(this.a)+", v: "+A.mK(this.b)+")"}} +A.ao9.prototype={} +A.aoZ.prototype={} +A.PC.prototype={ +gu(a){var s=this +return A.dj([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.a_(b)!==A.p(s))return!1 +return b instanceof A.PC&&J.j(b.a,s.a)&&J.j(b.b,s.b)&&J.j(b.c,s.c)&&J.j(b.d,s.d)&&J.j(b.e,s.e)&&J.j(b.f,s.f)&&J.j(b.r,s.r)&&J.j(b.w,s.w)&&J.j(b.x,s.x)&&J.j(b.y,s.y)&&J.j(b.z,s.z)&&J.j(b.Q,s.Q)&&b.as==s.as&&J.j(b.at,s.at)&&J.j(b.ax,s.ax)&&J.j(b.ay,s.ay)&&J.j(b.ch,s.ch)&&J.j(b.CW,s.CW)&&J.j(b.cx,s.cx)&&J.j(b.cy,s.cy)&&J.j(b.db,s.db)&&J.j(b.dx,s.dx)}} +A.aoc.prototype={} +A.PH.prototype={ +gu(a){var s=this +return A.X(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.a_(b)!==A.p(s))return!1 +return b instanceof A.PH&&J.j(b.a,s.a)&&J.j(b.b,s.b)&&J.j(b.c,s.c)&&J.j(b.d,s.d)&&J.j(b.e,s.e)&&J.j(b.f,s.f)&&J.j(b.r,s.r)&&J.j(b.w,s.w)&&J.j(b.y,s.y)&&J.j(b.x,s.x)&&J.j(b.z,s.z)&&J.j(b.Q,s.Q)&&J.j(b.as,s.as)&&J.j(b.ax,s.ax)&&b.at==s.at}} +A.aof.prototype={} +A.zL.prototype={ +DY(){var s,r,q=this +if(q.gy5()){if(q.gj(q)==null){s=q.ks$ +s===$&&A.b() +s.sj(0,0)}s=q.gj(q) +r=q.ks$ +if(s!==!1){r===$&&A.b() +r.bS(0)}else{r===$&&A.b() +r.d3(0)}}else{s=q.gj(q) +r=q.ks$ +if(s===!0){r===$&&A.b() +r.bS(0)}else{r===$&&A.b() +r.d3(0)}}}, +aDw(a){var s,r=this +if(r.gdS()!=null){r.ad(new A.b_a(r,a)) +s=r.p0$ +s===$&&A.b() +s.bS(0)}}, +a64(a){var s,r=this +if(r.gdS()==null)return +switch(r.gj(r)){case!1:r.gdS().$1(!0) +break +case!0:s=r.gdS() +s.toString +s.$1(r.gy5()&&null) +break +case null:case void 0:r.gdS().$1(!1) +break}r.c.ga7().Ca(B.pz)}, +aDu(){return this.a64(null)}, +a2w(a){var s,r=this +if(r.qP$!=null)r.ad(new A.b_c(r)) +s=r.p0$ +s===$&&A.b() +s.d3(0)}, +avh(){return this.a2w(null)}, +aDr(a){var s,r=this +if(a!==r.pV$){r.ad(new A.b_7(r,a)) +s=r.tz$ +if(a){s===$&&A.b() +s.bS(0)}else{s===$&&A.b() +s.d3(0)}}}, +aDt(a){var s,r=this +if(a!==r.pW$){r.ad(new A.b_9(r,a)) +s=r.ty$ +if(a){s===$&&A.b() +s.bS(0)}else{s===$&&A.b() +s.d3(0)}}}, +gfG(){var s,r=this,q=A.aW(t.ui) +if(r.gdS()==null)q.F(0,B.x) +if(r.pW$)q.F(0,B.F) +if(r.pV$)q.F(0,B.K) +s=r.gj(r) +if(s!==!1)q.F(0,B.G) +return q}, +a86(a,b,c,d,e,f){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=i.F_$ +if(g===$){s=A.am([B.iA,new A.cz(i.ga63(),new A.bd(A.a([],t.h),t.o),t.wY)],t.n,t.od) +i.F_$!==$&&A.aq() +i.F_$=s +g=s}r=i.gdS() +q=c.a.$1(i.gfG()) +p=i.gdS() +o=i.gdS()!=null?i.gaDv():h +n=i.gdS()!=null?i.ga63():h +m=i.gdS()!=null?i.ga2v():h +l=i.gdS()!=null?i.ga2v():h +k=i.gdS() +j=A.iB(h,h,h,e,f) +return A.aDF(g,!1,A.dY(h,new A.bu(A.bL(h,h,h,h,h,h,h,h,h,h,k!=null,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h),!1,!1,!1,!1,j,h),B.D,p==null,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,h,n,l,o,m,h,!1,B.am),r!=null,b,q,d,i.gaDq(),i.gaDs(),h)}, +a84(a,b,c,d,e){return this.a86(a,b,c,null,d,e)}} +A.b_a.prototype={ +$0(){this.a.qP$=this.b.c}, +$S:0} +A.b_c.prototype={ +$0(){this.a.qP$=null}, +$S:0} +A.b_7.prototype={ +$0(){this.a.pV$=this.b}, +$S:0} +A.b_9.prototype={ +$0(){this.a.pW$=this.b}, +$S:0} +A.Fw.prototype={ +scJ(a,b){var s=this,r=s.a +if(b===r)return +if(r!=null)r.a.H(0,s.geO()) +b.a.P(0,s.geO()) +s.a=b +s.ag()}, +sX9(a){var s=this,r=s.b +if(a===r)return +if(r!=null)r.a.H(0,s.geO()) +a.a.P(0,s.geO()) +s.b=a +s.ag()}, +sXb(a){var s=this,r=s.c +if(a===r)return +if(r!=null)r.a.H(0,s.geO()) +a.a.P(0,s.geO()) +s.c=a +s.ag()}, +sXc(a){var s=this,r=s.d +if(a===r)return +if(r!=null)r.a.H(0,s.geO()) +a.a.P(0,s.geO()) +s.d=a +s.ag()}, +suL(a){if(J.j(this.e,a))return +this.e=a +this.ag()}, +sAS(a){if(J.j(this.f,a))return +this.f=a +this.ag()}, +sVM(a){if(a.k(0,this.r))return +this.r=a +this.ag()}, +sXa(a){if(a.k(0,this.w))return +this.w=a +this.ag()}, +stF(a){if(a.k(0,this.x))return +this.x=a +this.ag()}, +sln(a){if(a.k(0,this.y))return +this.y=a +this.ag()}, +skd(a){if(a===this.z)return +this.z=a +this.ag()}, +sAl(a){if(J.j(a,this.Q))return +this.Q=a +this.ag()}, +sqV(a){if(a===this.as)return +this.as=a +this.ag()}, +sW_(a){if(a===this.at)return +this.at=a +this.ag()}, +WS(a,b){var s,r,q,p,o=this,n=o.b +if(n.gaP(n)===B.R){n=o.c +if(n.gaP(n)===B.R){n=o.d +n=n.gaP(n)!==B.R}else n=!0}else n=!0 +if(n){s=$.au().bk() +n=o.r +n.toString +r=o.w +r.toString +q=o.a +q=A.W(n,r,q.gj(q)) +r=o.x +r.toString +n=o.d +n=A.W(q,r,n.gj(n)) +r=o.y +r.toString +q=o.c +q=A.W(n,r,q.gj(q)) +q.toString +s.saf(0,q) +q=o.z +q.toString +n=o.as +n.toString +if(!n){n=o.at +n.toString}else n=!0 +if(n)p=q +else{n=o.b +p=new A.aR(0,q,t.Y).a5(0,n.gj(n))}if(p>0)a.fZ(b.U(0,B.i),p,s)}}, +m(){var s=this,r=s.a +if(r!=null)r.a.H(0,s.geO()) +r=s.b +if(r!=null)r.a.H(0,s.geO()) +r=s.c +if(r!=null)r.a.H(0,s.geO()) +r=s.d +if(r!=null)r.a.H(0,s.geO()) +s.eK()}, +fv(a){return!0}, +AQ(a){return null}, +gC9(){return null}, +Hv(a){return!1}, +l(a){return"#"+A.br(this)}} +A.agG.prototype={ +b5(a){var s=new A.alo(!0,this.e,null,this.r,B.cD,B.bE,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}} +A.alo.prototype={ +dm(a,b){var s,r=this,q=$.bmx +$.bmx=!1 +if(r.gq(r).p(0,b)){s=r.dZ(a,b)||r.D===B.bE +if((s||r.D===B.aQ)&&!$.bmw){$.bmw=!0 +a.F(0,new A.wr(b,r))}}else s=!1 +if(q){$.bmx=!0 +$.bmw=!1}return s}} +A.PJ.prototype={ +a8(){return new A.Fz(new A.aMB(),A.aW(t.S),B.R,null,null,B.m)}} +A.Fz.prototype={ +gaCc(){this.a.toString +this.f===$&&A.b() +return B.v8}, +gaqR(){this.a.toString +this.f===$&&A.b() +return!0}, +gSV(){var s=this.a.c +return s==null?null.adN():s}, +guI(){var s,r=this,q=r.w +if(q==null){q=A.bx(B.A,null,B.d0,0,B.fi,1,null,r) +q.cF() +s=q.ej$ +s.b=!0 +s.a.push(r.gaDF()) +r.w=q}return q}, +aDG(a){var s,r,q,p,o,n,m,l,k,j,i=this +$label0$0:{s=new A.eT(A.buN(i.Q),A.buN(a)) +r=A.bM("#0#1",new A.b_l(s)) +q=A.bM("#0#3",new A.b_m(r)) +p=A.bM("#0#4",new A.b_n(s)) +o=A.bM("#0#6",new A.b_o(p)) +n=A.bM("#0#7",new A.b_p(r)) +m=A.bM("#0#8",new A.b_q(p)) +if(q.T()&&o.T()){B.b.E($.zM,i) +l=i.d +k=l.a +if(k!=null)k.xt() +else l.b=null +break $label0$0}if(n.T()&&m.T()){l=i.d +k=l.a +j=$.blc+1 +if(k!=null){$.blc=j +k.rK(0,j)}else l.b=$.blc=j +$.zM.push(i) +A.aU2(i.gSV()) +break $label0$0}if(!(q.T()&&m.T()))l=n.T()&&o.T() +else l=!0 +if(l)break $label0$0}i.Q=a}, +aBe(a,b){var s,r,q=this,p=new A.b_s(q,a) +$label0$0:{s=q.guI().Q +s===$&&A.b() +r=A.bM("#0#2",new A.b_r(s)) +if(r.T()&&b.a>0){if(q.r==null)q.r=A.d0(b,p) +break $label0$0}if(r.T()||B.b4===s||B.b5===s||B.a9===s)p.$0()}}, +a4G(a){return this.aBe(null,a)}, +zo(a){var s=this,r=s.r +if(r!=null)r.aI(0) +s.r=null +r=s.w +if(r==null)r=null +else{r=r.Q +r===$&&A.b()}switch(r){case null:case void 0:case B.b5:case B.R:break +case B.b4:case B.a9:if(a.a>0){r=s.guI() +s.r=A.d0(a,r.gadw(r))}else s.guI().d3(0) +break}}, +auf(a){var s,r=this +r.a.toString +r.f===$&&A.b() +switch(1){case 1:s=r.x +if(s==null)s=r.x=A.aII(r,null,B.aqp) +s.p1=r.gavi() +s.p2=r.gatI() +s.R8=r.gaur() +s.zA(a) +break}}, +att(a){var s=this,r=s.y +r=r==null?null:r.CW +if(r!==a.gcu()){r=s.x +r=r==null?null:r.CW +r=r===a.gcu()}else r=!0 +if(r)return +if(s.r==null){r=s.guI().Q +r===$&&A.b() +r=r===B.R}else r=!1 +if(r||!t.pY.b(a))return +s.zo(B.B) +s.z.ab(0)}, +avj(){this.zo(B.B) +this.z.ab(0)}, +atJ(){var s=this,r=s.e +r===$&&A.b() +if(!r)return +r=s.guI().Q +r===$&&A.b() +if(r===B.R){s.gaqR() +r=!0}else r=!1 +if(r){r=s.c +r.toString +A.aCx(r)}s.a.toString +s.a4G(B.B)}, +aus(){if(this.z.a!==0)return +this.zo(this.gaCc())}, +aDD(a){var s,r,q,p,o,n,m=this +m.z.F(0,a.goW(a)) +s=A.a($.zM.slice(0),A.ab($.zM)) +for(r=s.length,q=!1,p=0;p") +return new A.mB(A.a8(new A.ad(s,new A.b3N(b),r),!0,r.h("av.E")))}, +f0(a,b){return A.bvM(a,this,b)}, +f1(a,b){return A.bvM(this,a,b)}, +hp(a,b){var s,r +for(s=this.a,r=0;r") +return new A.ad(new A.da(s,r),new A.b3O(),r.h("ad")).ck(0," + ")}} +A.b3L.prototype={ +$2(a,b){return a.F(0,b.gpO())}, +$S:364} +A.b3N.prototype={ +$1(a){return a.c0(0,this.a)}, +$S:365} +A.b3M.prototype={ +$1(a){return a.gkE()}, +$S:366} +A.b3O.prototype={ +$1(a){return a.l(0)}, +$S:367} +A.aew.prototype={} +A.YB.prototype={ +J(){return"BoxShape."+this.b}} +A.Yw.prototype={ +oO(a,b,c){return null}, +F(a,b){return this.oO(a,b,!1)}, +hp(a,b){var s=$.au().d1() +s.qA(this.gpO().L(b).Es(a)) +return s}, +qg(a){return this.hp(a,null)}, +eI(a,b){var s=$.au().d1() +s.qA(a) +return s}, +lP(a){return this.eI(a,null)}, +nE(a,b,c,d){a.ey(b,c)}, +gkE(){return!0}} +A.er.prototype={ +gpO(){var s,r=this +if(r.ga7c()){s=r.a.ghs() +return new A.aK(s,s,s,s)}return new A.aK(r.d.ghs(),r.a.ghs(),r.b.ghs(),r.c.ghs())}, +gFw(){var s,r=this,q=r.a,p=q.a,o=r.d +if(o.a.k(0,p)&&r.c.a.k(0,p)&&r.b.a.k(0,p))if(r.ga7c())if(r.gDA()){s=q.d +q=o.d===s&&r.c.d===s&&r.b.d===s}else q=!1 +else q=!1 +else q=!1 +return q}, +ga7c(){var s=this,r=s.a.b +return s.d.b===r&&s.c.b===r&&s.b.b===r}, +gDA(){var s=this,r=s.a.c +return s.d.c===r&&s.c.c===r&&s.b.c===r}, +oO(a,b,c){var s=this +if(b instanceof A.er&&A.q2(s.a,b.a)&&A.q2(s.b,b.b)&&A.q2(s.c,b.c)&&A.q2(s.d,b.d))return new A.er(A.mV(s.a,b.a),A.mV(s.b,b.b),A.mV(s.c,b.c),A.mV(s.d,b.d)) +return null}, +F(a,b){return this.oO(a,b,!1)}, +c0(a,b){var s=this +return new A.er(s.a.c0(0,b),s.b.c0(0,b),s.c.c0(0,b),s.d.c0(0,b))}, +f0(a,b){if(a instanceof A.er)return A.auv(a,this,b) +return this.HP(a,b)}, +f1(a,b){if(a instanceof A.er)return A.auv(this,a,b) +return this.HQ(a,b)}, +N_(a,b,c,d,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this +if(e.gFw()){s=e.a +switch(s.c.a){case 0:return +case 1:switch(d.a){case 1:A.bq7(a,b,s) +break +case 0:if(c!=null&&!c.k(0,B.aG)){A.bq8(a,b,s,c) +return}A.bq9(a,b,s) +break}return}}if(e.gDA()&&e.a.c===B.bn)return +r=A.aW(t.n8) +s=e.a +q=s.c +p=q===B.bn +if(!p)r.F(0,s.a) +o=e.b +n=o.c +m=n===B.bn +if(!m)r.F(0,o.a) +l=e.c +k=l.c +j=k===B.bn +if(!j)r.F(0,l.a) +i=e.d +h=i.c +g=h===B.bn +if(!g)r.F(0,i.a) +if(!(q===B.I&&s.b===0))if(!(n===B.I&&o.b===0)){if(!(k===B.I&&l.b===0))q=h===B.I&&i.b===0 +else q=!0 +f=q}else f=!0 +else f=!0 +if(r.a===1)if(!f)if(d!==B.iW)q=c!=null&&!c.k(0,B.aG) +else q=!0 +else q=!1 +else q=!1 +if(q){if(p)s=B.u +q=m?B.u:o +p=j?B.u:l +o=g?B.u:i +A.bqb(a,b,c,p,r.gO(r),o,q,d,a0,s) +return}A.bze(a,b,l,i,o,s)}, +im(a,b,c){return this.N_(a,b,null,B.aK,c)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.er&&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.X(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)}, +l(a){var s,r,q=this +if(q.gFw())return"Border.all("+q.a.l(0)+")" +s=A.a([],t.s) +r=q.a +if(!r.k(0,B.u))s.push("top: "+r.l(0)) +r=q.b +if(!r.k(0,B.u))s.push("right: "+r.l(0)) +r=q.c +if(!r.k(0,B.u))s.push("bottom: "+r.l(0)) +r=q.d +if(!r.k(0,B.u))s.push("left: "+r.l(0)) +return"Border("+B.b.ck(s,", ")+")"}, +gBC(a){return this.a}} +A.j8.prototype={ +gpO(){var s,r=this +if(r.gFw()){s=r.a.ghs() +return new A.fk(s,s,s,s)}return new A.fk(r.b.ghs(),r.a.ghs(),r.c.ghs(),r.d.ghs())}, +gFw(){var s,r,q=this,p=q.a,o=p.a,n=q.b +if(n.a.k(0,o)&&q.d.a.k(0,o)&&q.c.a.k(0,o)){s=p.b +if(n.b===s&&q.d.b===s&&q.c.b===s)if(q.gDA()){r=p.d +p=n.d===r&&q.d.d===r&&q.c.d===r}else p=!1 +else p=!1}else p=!1 +return p}, +gDA(){var s=this,r=s.a.c +return s.b.c===r&&s.d.c===r&&s.c.c===r}, +oO(a,b,c){var s,r,q,p=this,o=null +if(b instanceof A.j8){s=p.a +r=b.a +if(A.q2(s,r)&&A.q2(p.b,b.b)&&A.q2(p.c,b.c)&&A.q2(p.d,b.d))return new A.j8(A.mV(s,r),A.mV(p.b,b.b),A.mV(p.c,b.c),A.mV(p.d,b.d)) +return o}if(b instanceof A.er){s=b.a +r=p.a +if(!A.q2(s,r)||!A.q2(b.c,p.d))return o +q=p.b +if(!q.k(0,B.u)||!p.c.k(0,B.u)){if(!b.d.k(0,B.u)||!b.b.k(0,B.u))return o +return new A.j8(A.mV(s,r),q,p.c,A.mV(b.c,p.d))}return new A.er(A.mV(s,r),b.b,A.mV(b.c,p.d),b.d)}return o}, +F(a,b){return this.oO(a,b,!1)}, +c0(a,b){var s=this +return new A.j8(s.a.c0(0,b),s.b.c0(0,b),s.c.c0(0,b),s.d.c0(0,b))}, +f0(a,b){if(a instanceof A.j8)return A.bjv(a,this,b) +return this.HP(a,b)}, +f1(a,b){if(a instanceof A.j8)return A.bjv(this,a,b) +return this.HQ(a,b)}, +N_(a,b,c,d,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this +if(e.gFw()){s=e.a +switch(s.c.a){case 0:return +case 1:switch(d.a){case 1:A.bq7(a,b,s) +break +case 0:if(c!=null&&!c.k(0,B.aG)){A.bq8(a,b,s,c) +return}A.bq9(a,b,s) +break}return}}if(e.gDA()&&e.a.c===B.bn)return +switch(a0.a){case 0:r=e.c +q=e.b +break +case 1:r=e.b +q=e.c +break +default:r=null +q=null}p=A.aW(t.n8) +s=e.a +o=s.c +n=o===B.bn +if(!n)p.F(0,s.a) +m=e.c +l=m.c +if(l!==B.bn)p.F(0,m.a) +k=e.d +j=k.c +i=j===B.bn +if(!i)p.F(0,k.a) +h=e.b +g=h.c +if(g!==B.bn)p.F(0,h.a) +if(!(o===B.I&&s.b===0))if(!(l===B.I&&m.b===0)){if(!(j===B.I&&k.b===0))o=g===B.I&&h.b===0 +else o=!0 +f=o}else f=!0 +else f=!0 +if(p.a===1)if(!f)if(d!==B.iW)o=c!=null&&!c.k(0,B.aG) +else o=!0 +else o=!1 +else o=!1 +if(o){if(n)s=B.u +o=q.c===B.bn?B.u:q +n=i?B.u:k +m=r.c===B.bn?B.u:r +A.bqb(a,b,c,n,p.gO(p),m,o,d,a0,s) +return}A.bze(a,b,k,r,q,s)}, +im(a,b,c){return this.N_(a,b,null,B.aK,c)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.j8&&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.X(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)}, +l(a){var s=this,r=A.a([],t.s),q=s.a +if(!q.k(0,B.u))r.push("top: "+q.l(0)) +q=s.b +if(!q.k(0,B.u))r.push("start: "+q.l(0)) +q=s.c +if(!q.k(0,B.u))r.push("end: "+q.l(0)) +q=s.d +if(!q.k(0,B.u))r.push("bottom: "+q.l(0)) +return"BorderDirectional("+B.b.ck(r,", ")+")"}, +gBC(a){return this.a}} +A.dU.prototype={ +gdD(a){var s=this.c +s=s==null?null:s.gpO() +return s==null?B.a8:s}, +H6(a,b){var s,r,q +switch(this.w.a){case 1:s=A.nx(a.gbM(),a.gix()/2) +r=$.au().d1() +r.wL(s) +return r +case 0:r=this.d +if(r!=null){q=$.au().d1() +q.fT(r.L(b).e1(a)) +return q}r=$.au().d1() +r.qA(a) +return r}}, +c0(a,b){var s=this,r=null,q=A.W(r,s.a,b),p=A.bjU(r,s.b,b),o=A.bqa(r,s.c,b),n=A.oo(r,s.d,b),m=A.bjx(r,s.e,b),l=s.f +l=l==null?r:l.c0(0,b) +return new A.dU(q,p,o,n,m,l,s.w)}, +gMg(){return this.e!=null}, +f0(a,b){if(a==null)return this.c0(0,b) +if(a instanceof A.dU)return A.bqc(a,this,b) +return this.OI(a,b)}, +f1(a,b){if(a==null)return this.c0(0,1-b) +if(a instanceof A.dU)return A.bqc(this,a,b) +return this.OJ(a,b)}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r===b)return!0 +if(J.a_(b)!==A.p(r))return!1 +if(b instanceof A.dU)if(J.j(b.a,r.a))if(J.j(b.b,r.b))if(J.j(b.c,r.c))if(J.j(b.d,r.d))if(A.ee(b.e,r.e))if(J.j(b.f,r.f))s=b.w===r.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=this,r=s.e +r=r==null?null:A.dj(r) +return A.X(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)}, +VJ(a,b,c){var s +switch(this.w.a){case 0:s=this.d +if(s!=null)return s.L(c).e1(new A.L(0,0,0+a.a,0+a.b)).p(0,b) +return!0 +case 1:return b.a4(0,a.mr(B.i)).ge9()<=Math.min(a.a,a.b)/2}}, +A1(a){return new A.aeB(this,a)}} +A.aeB.prototype={ +a3K(a,b,c,d){var s=this.b +switch(s.w.a){case 1:a.fZ(b.gbM(),b.gix()/2,c) +break +case 0:s=s.d +if(s==null||s.k(0,B.aG))a.ey(b,c) +else a.d5(s.L(d).e1(b),c) +break}}, +anM(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.dq(q.b) +n=q.d +this.a3K(a,new A.L(o.a-n,o.b-n,o.c+n,o.d+n),p,c)}}, +ayO(a,b,c){var s,r,q,p=this,o=p.b,n=o.b +if(n==null)return +if(p.e==null){s=p.a +s.toString +p.e=n.L0(s)}switch(o.w.a){case 1:r=A.nx(b.gbM(),b.gix()/2) +q=$.au().d1() +q.wL(r) +break +case 0:o=o.d +if(o!=null){q=$.au().d1() +q.fT(o.L(c.d).e1(b))}else q=null +break +default:q=null}p.e.G2(a,b,q,c)}, +m(){var s=this.e +if(s!=null)s.m() +this.Zl()}, +kD(a,b,c){var s,r,q=this,p=c.e,o=b.a,n=b.b,m=new A.L(o,n,o+p.a,n+p.b),l=c.d +q.anM(a,m,l) +p=q.b +o=p.a +n=o==null +if(!n||p.f!=null){if(q.c!=null)s=p.f!=null&&!J.j(q.d,m) +else s=!0 +if(s){r=$.au().bk() +if(!n)r.saf(0,o) +o=p.f +if(o!=null){r.sCh(o.Ut(0,m,l)) +q.d=m}q.c=r}o=q.c +o.toString +q.a3K(a,m,o,l)}q.ayO(a,m,c) +o=p.c +if(o!=null){n=p.d +n=n==null?null:n.L(l) +o.N_(a,m,n,p.w,l)}}, +l(a){return"BoxPainter for "+this.b.l(0)}} +A.wq.prototype={ +J(){return"BoxFit."+this.b}} +A.a1Q.prototype={} +A.cd.prototype={ +kH(){var s=$.au().bk() +s.saf(0,this.a) +s.sMs(new A.ye(this.e,A.bMi(this.c))) +return s}, +c0(a,b){var s=this +return new A.cd(s.d*b,s.e,s.a,s.b.av(0,b),s.c*b)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.cd&&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.X(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)}, +l(a){var s=this +return"BoxShadow("+s.a.l(0)+", "+s.b.l(0)+", "+A.mK(s.c)+", "+A.mK(s.d)+", "+s.e.l(0)+")"}} +A.hi.prototype={ +c0(a,b){return new A.hi(this.b,this.a.c0(0,b))}, +f0(a,b){var s,r +if(a instanceof A.hi){s=A.bp(a.a,this.a,b) +r=A.ag(a.b,this.b,b) +r.toString +return new A.hi(A.V(r,0,1),s)}return this.yG(a,b)}, +f1(a,b){var s,r +if(a instanceof A.hi){s=A.bp(this.a,a.a,b) +r=A.ag(this.b,a.b,b) +r.toString +return new A.hi(A.V(r,0,1),s)}return this.yH(a,b)}, +hp(a,b){var s=$.au().d1() +s.wL(this.HY(a).e6(-this.a.ghs())) +return s}, +qg(a){return this.hp(a,null)}, +eI(a,b){var s=$.au().d1() +s.wL(this.HY(a)) +return s}, +lP(a){return this.eI(a,null)}, +nE(a,b,c,d){if(this.b===0)a.fZ(b.gbM(),b.gix()/2,c) +else a.Ao(this.HY(b),c)}, +gkE(){return!0}, +pM(a){var s=a==null?this.a:a +return new A.hi(this.b,s)}, +im(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.fZ(b.gbM(),(b.gix()+s)/2,r.kH()) +else a.Ao(this.HY(b).e6(s/2),r.kH()) +break}}, +aE(a,b){return this.im(a,b,null)}, +HY(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.nx(a.gbM(),a.gix()/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.bhB(b.b,s.b)}, +gu(a){return A.X(A.p(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)}, +l(a){return"ColorSwatch(primary value: "+this.ahu(0)+")"}} +A.la.prototype={ +f4(){return"Decoration"}, +gdD(a){return B.a8}, +gMg(){return!1}, +f0(a,b){return null}, +f1(a,b){return null}, +VJ(a,b,c){return!0}, +H6(a,b){throw A.c(A.aa("This Decoration subclass does not expect to be used for clipping."))}} +A.Yz.prototype={ +m(){}} +A.afU.prototype={} +A.CO.prototype={ +J(){return"ImageRepeat."+this.b}} +A.aet.prototype={ +L0(a){var s,r=this.a +r=r==null?null:r.L0(a) +s=this.b +s=s==null?null:s.L0(a) +return new A.b2y(r,s,this.c)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.aet&&J.j(b.a,s.a)&&J.j(b.b,s.b)&&b.c===s.c}, +gu(a){return A.X(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)}, +l(a){return"_BlendedDecorationImage("+A.i(this.a)+", "+A.i(this.b)+", "+A.i(this.c)+")"}} +A.b2y.prototype={ +WQ(a,b,c,d,e,f){var s,r,q=this +a.kb(null,$.au().bk()) +s=q.a +r=s==null +if(!r)s.WQ(a,b,c,d,e*(1-q.c),f) +s=q.b +if(s!=null){r=!r?B.Q7:f +s.WQ(a,b,c,d,e*q.c,r)}a.dg(0)}, +G2(a,b,c,d){return this.WQ(a,b,c,d,1,B.dz)}, +m(){var s=this.a +if(s!=null)s.m() +s=this.b +if(s!=null)s.m()}, +l(a){return"_BlendedDecorationImagePainter("+A.i(this.a)+", "+A.i(this.b)+", "+A.i(this.c)+")"}} +A.eL.prototype={ +gdI(){var s=this +return s.giW(s)+s.giX(s)+s.gl0(s)+s.gkZ()}, +aFu(a){var s=this +switch(a.a){case 0:return s.gdI() +case 1:return s.gcC(s)+s.gcD(s)}}, +F(a,b){var s=this +return new A.vB(s.giW(s)+b.giW(b),s.giX(s)+b.giX(b),s.gl0(s)+b.gl0(b),s.gkZ()+b.gkZ(),s.gcC(s)+b.gcC(b),s.gcD(s)+b.gcD(b))}, +hw(a,b,c){var s=this +return new A.vB(A.V(s.giW(s),b.a,c.a),A.V(s.giX(s),b.c,c.b),A.V(s.gl0(s),0,c.c),A.V(s.gkZ(),0,c.d),A.V(s.gcC(s),b.b,c.e),A.V(s.gcD(s),b.d,c.f))}, +l(a){var s=this +if(s.gl0(s)===0&&s.gkZ()===0){if(s.giW(s)===0&&s.giX(s)===0&&s.gcC(s)===0&&s.gcD(s)===0)return"EdgeInsets.zero" +if(s.giW(s)===s.giX(s)&&s.giX(s)===s.gcC(s)&&s.gcC(s)===s.gcD(s))return"EdgeInsets.all("+B.e.aF(s.giW(s),1)+")" +return"EdgeInsets("+B.e.aF(s.giW(s),1)+", "+B.e.aF(s.gcC(s),1)+", "+B.e.aF(s.giX(s),1)+", "+B.e.aF(s.gcD(s),1)+")"}if(s.giW(s)===0&&s.giX(s)===0)return"EdgeInsetsDirectional("+B.e.aF(s.gl0(s),1)+", "+B.e.aF(s.gcC(s),1)+", "+B.e.aF(s.gkZ(),1)+", "+B.e.aF(s.gcD(s),1)+")" +return"EdgeInsets("+B.e.aF(s.giW(s),1)+", "+B.e.aF(s.gcC(s),1)+", "+B.e.aF(s.giX(s),1)+", "+B.e.aF(s.gcD(s),1)+") + EdgeInsetsDirectional("+B.e.aF(s.gl0(s),1)+", 0.0, "+B.e.aF(s.gkZ(),1)+", 0.0)"}, +k(a,b){var s=this +if(b==null)return!1 +return b instanceof A.eL&&b.giW(b)===s.giW(s)&&b.giX(b)===s.giX(s)&&b.gl0(b)===s.gl0(s)&&b.gkZ()===s.gkZ()&&b.gcC(b)===s.gcC(s)&&b.gcD(b)===s.gcD(s)}, +gu(a){var s=this +return A.X(s.giW(s),s.giX(s),s.gl0(s),s.gkZ(),s.gcC(s),s.gcD(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.aK.prototype={ +giW(a){return this.a}, +gcC(a){return this.b}, +giX(a){return this.c}, +gcD(a){return this.d}, +gl0(a){return 0}, +gkZ(){return 0}, +Fk(a){var s=this +return new A.L(a.a-s.a,a.b-s.b,a.c+s.c,a.d+s.d)}, +Es(a){var s=this +return new A.L(a.a+s.a,a.b+s.b,a.c-s.c,a.d-s.d)}, +F(a,b){if(b instanceof A.aK)return this.U(0,b) +return this.Zp(0,b)}, +hw(a,b,c){var s=this +return new A.aK(A.V(s.a,b.a,c.a),A.V(s.b,b.b,c.e),A.V(s.c,b.c,c.b),A.V(s.d,b.d,c.f))}, +a4(a,b){var s=this +return new A.aK(s.a-b.a,s.b-b.b,s.c-b.c,s.d-b.d)}, +U(a,b){var s=this +return new A.aK(s.a+b.a,s.b+b.b,s.c+b.c,s.d+b.d)}, +av(a,b){var s=this +return new A.aK(s.a*b,s.b*b,s.c*b,s.d*b)}, +L(a){return this}, +uZ(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.aK(r,q,p,a==null?s.d:a)}, +Ef(a){return this.uZ(a,null,null,null)}, +a8R(a,b){return this.uZ(a,null,null,b)}, +aHp(a,b){return this.uZ(null,a,b,null)}, +aHe(a){return this.uZ(null,null,null,a)}} +A.fk.prototype={ +gl0(a){return this.a}, +gcC(a){return this.b}, +gkZ(){return this.c}, +gcD(a){return this.d}, +giW(a){return 0}, +giX(a){return 0}, +F(a,b){if(b instanceof A.fk)return this.U(0,b) +return this.Zp(0,b)}, +a4(a,b){var s=this +return new A.fk(s.a-b.a,s.b-b.b,s.c-b.c,s.d-b.d)}, +U(a,b){var s=this +return new A.fk(s.a+b.a,s.b+b.b,s.c+b.c,s.d+b.d)}, +av(a,b){var s=this +return new A.fk(s.a*b,s.b*b,s.c*b,s.d*b)}, +L(a){var s=this +switch(a.a){case 0:return new A.aK(s.c,s.b,s.a,s.d) +case 1:return new A.aK(s.a,s.b,s.c,s.d)}}} +A.vB.prototype={ +av(a,b){var s=this +return new A.vB(s.a*b,s.b*b,s.c*b,s.d*b,s.e*b,s.f*b)}, +L(a){var s=this +switch(a.a){case 0:return new A.aK(s.d+s.a,s.e,s.c+s.b,s.f) +case 1:return new A.aK(s.c+s.a,s.e,s.d+s.b,s.f)}}, +giW(a){return this.a}, +giX(a){return this.b}, +gl0(a){return this.c}, +gkZ(){return this.d}, +gcC(a){return this.e}, +gcD(a){return this.f}} +A.b3J.prototype={} +A.bfT.prototype={ +$1(a){return a<=this.a}, +$S:368} +A.bfz.prototype={ +$1(a){var s=this,r=A.W(A.bxP(s.a,s.b,a),A.bxP(s.c,s.d,a),s.e) +r.toString +return r}, +$S:369} +A.aFv.prototype={ +Rn(){var s,r,q,p=this.b +if(p!=null)return p +p=this.a.length +s=1/(p-1) +if(p>4294967295)A.r(A.cT(p,0,4294967295,"length",null)) +r=J.m1(new Array(p),t.i) +for(q=0;q") +return new A.ub(s.d,s.e,s.f,A.a8(new A.ad(r,new A.aIy(b),q),!0,q.h("av.E")),s.b,null)}, +f0(a,b){var s=A.bsv(a,this,b) +return s}, +f1(a,b){var s=A.bsv(this,a,b) +return s}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.ub&&b.d.k(0,s.d)&&b.e.k(0,s.e)&&b.f===s.f&&A.ee(b.a,s.a)&&A.ee(b.b,s.b)}, +gu(a){var s=this,r=A.dj(s.a),q=s.b +q=q==null?null:A.dj(q) +return A.X(s.d,s.e,s.f,s.c,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)}, +l(a){var s=this,r=A.a(["begin: "+s.d.l(0),"end: "+s.e.l(0),"colors: "+A.i(s.a)],t.s),q=s.b +if(q!=null)r.push("stops: "+A.i(q)) +r.push("tileMode: "+s.f.l(0)) +return"LinearGradient("+B.b.ck(r,", ")+")"}} +A.aIy.prototype={ +$1(a){var s=A.W(null,a,this.a) +s.toString +return s}, +$S:90} +A.aGT.prototype={ +ab(a){var s,r,q,p +for(s=this.b,r=s.gbp(s),q=A.l(r),q=q.h("@<1>").V(q.z[1]),r=new A.bT(J.al(r.a),r.b,q.h("bT<1,2>")),q=q.z[1];r.v();){p=r.a;(p==null?q.a(p):p).m()}s.ab(0) +for(s=this.a,r=s.gbp(s),q=A.l(r),q=q.h("@<1>").V(q.z[1]),r=new A.bT(J.al(r.a),r.b,q.h("bT<1,2>")),q=q.z[1];r.v();){p=r.a +if(p==null)p=q.a(p) +p.a.H(0,p.b)}s.ab(0) +this.f=0}, +V6(a){var s,r,q,p=this,o=p.c.E(0,a) +if(o!=null){s=o.a +r=o.d +r===$&&A.b() +if(s.x)A.r(A.R(u.V)) +B.b.E(s.y,r) +o.a_3()}q=p.a.E(0,a) +if(q!=null){q.a.H(0,q.b) +return!0}o=p.b.E(0,a) +if(o!=null){s=p.f +r=o.b +r.toString +p.f=s-r +o.m() +return!0}return!1}, +a6b(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.n(0,a,b) +r.aoG(c)}else b.m()}, +SW(a,b,c){var s=this.c.cK(0,a,new A.aGW(this,b,a)) +if(s.b==null)s.b=c}, +acR(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.E(0,b) +if(q!=null){j=q.a +l.SW(b,j,q.b) +h.n(0,b,q) +return j}p=l.c.i(0,b) +if(p!=null){j=p.a +l.a6b(b,new A.QR(j,p.b,j.ii()),k) +return j}try{g=j.a=c.$0() +l.SW(b,g,k) +h=g}catch(o){s=A.ak(o) +r=A.aJ(o) +d.$2(s,r) +return k}j.b=!1 +n=A.b6("pendingImage") +m=new A.ll(new A.aGX(j,l,b,!0,k,n),k,k) +n.b=new A.ajX(h,m) +i.n(0,b,n.aH()) +j.a.P(0,m) +return j.a}, +aq(a,b){return this.a.i(0,b)!=null||this.b.i(0,b)!=null}, +aoG(a){var s,r,q,p,o,n=this,m=n.b,l=A.l(m).h("cl<1>") +while(!0){if(!(n.f>104857600||m.a>1000))break +s=new A.cl(m,l) +r=s.gam(s) +if(!r.v())A.r(A.ch()) +q=r.gG(r) +p=m.i(0,q) +s=n.f +o=p.b +o.toString +n.f=s-o +p.m() +m.E(0,q)}}} +A.aGW.prototype={ +$0(){return A.bPh(this.b,new A.aGV(this.a,this.c))}, +$S:370} +A.aGV.prototype={ +$0(){this.a.c.E(0,this.b)}, +$S:0} +A.aGX.prototype={ +$2(a,b){var s,r,q,p,o,n=this +if(a!=null){s=a.a +r=s.gdC(s)*s.gf6(s)*4 +s.m()}else r=null +s=n.a +q=s.a +p=new A.QR(q,r,q.ii()) +q=n.b +o=n.c +q.SW(o,s.a,r) +if(n.d)q.a6b(o,p,n.e) +else p.m() +q.a.E(0,o) +if(!s.b){q=n.f.aH() +q.a.H(0,q.b)}s.b=!0}, +$S:371} +A.aeI.prototype={ +m(){$.cB.y2$.push(new A.b3f(this))}} +A.b3f.prototype={ +$1(a){var s=this.a,r=s.c +if(r!=null)r.m() +s.c=null}, +$S:5} +A.QR.prototype={} +A.GN.prototype={ +amY(a,b,c){var s=new A.b7O(this,b) +this.d=s +if(a.x)A.r(A.R(u.V)) +a.y.push(s)}, +l(a){return"#"+A.br(this)}} +A.b7O.prototype={ +$0(){var s,r,q +this.b.$0() +s=this.a +r=s.a +q=s.d +q===$&&A.b() +if(r.x)A.r(A.R(u.V)) +B.b.E(r.y,q) +s.a_3()}, +$S:0} +A.ajX.prototype={} +A.xC.prototype={ +Uh(a){var s=this +return new A.xC(s.a,s.b,s.c,s.d,a,s.f)}, +k(a,b){var s=this +if(b==null)return!1 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.xC&&b.a==s.a&&b.b==s.b&&J.j(b.c,s.c)&&b.d==s.d&&J.j(b.e,s.e)&&b.f==s.f}, +gu(a){var s=this +return A.X(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)}, +l(a){var s,r=this,q=""+"ImageConfiguration(",p=r.a +if(p!=null){q+="bundle: "+p.l(0) +s=!0}else s=!1 +p=r.b +if(p!=null){if(s)q+=", " +p=q+("devicePixelRatio: "+B.e.aF(p,1)) +q=p +s=!0}p=r.c +if(p!=null){if(s)q+=", " +p=q+("locale: "+p.l(0)) +q=p +s=!0}p=r.d +if(p!=null){if(s)q+=", " +p=q+("textDirection: "+p.l(0)) +q=p +s=!0}p=r.e +if(p!=null){if(s)q+=", " +p=q+("size: "+p.l(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.jT.prototype={ +L(a){var s=new A.aHa() +this.apN(a,new A.aH7(this,a,s),new A.aH8(this,a,s)) +return s}, +apN(a,b,c){var s,r,q,p,o,n={} +n.a=null +n.b=!1 +s=new A.aH4(n,c) +r=null +try{r=this.MC(a)}catch(o){q=A.ak(o) +p=A.aJ(o) +s.$2(q,p) +return}r.be(new A.aH3(n,this,b,s),t.H).mp(s)}, +Gm(a,b,c,d){var s,r +if(b.a!=null){s=$.jm.v9$ +s===$&&A.b() +s.acR(0,c,new A.aH5(b),d) +return}s=$.jm.v9$ +s===$&&A.b() +r=s.acR(0,c,new A.aH6(this,c),d) +if(r!=null)b.YP(r)}, +FG(a,b){return A.bvB()}, +FH(a,b){return A.bvB()}, +l(a){return"ImageConfiguration()"}} +A.aH7.prototype={ +$2(a,b){this.a.Gm(this.b,this.c,a,b)}, +$S(){return A.l(this.a).h("~(jT.T,~(C,cw?))")}} +A.aH8.prototype={ +$3(a,b,c){return this.aeG(a,b,c)}, +aeG(a,b,c){var s=0,r=A.y(t.H),q=this,p +var $async$$3=A.u(function(d,e){if(d===1)return A.v(e,r) +while(true)switch(s){case 0:p=A.kU(null,t.P) +s=2 +return A.t(p,$async$$3) +case 2:p=q.c +if(p.a==null)p.YP(new A.b53(A.a([],t.XZ),A.a([],t.SM),A.a([],t.qj))) +p=p.a +p.toString +p.y_(A.c0("while resolving an image"),b,null,!0,c) +return A.w(null,r)}}) +return A.x($async$$3,r)}, +$S(){return A.l(this.a).h("S<~>(jT.T?,C,cw?)")}} +A.aH4.prototype={ +aeF(a,b){var s=0,r=A.y(t.H),q,p=this,o +var $async$$2=A.u(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.aeF(a,b)}, +$S:329} +A.aH3.prototype={ +$1(a){var s,r,q,p=this +p.a.a=a +try{p.c.$2(a,p.d)}catch(q){s=A.ak(q) +r=A.aJ(q) +p.d.$2(s,r)}}, +$S(){return A.l(this.b).h("aE(jT.T)")}} +A.aH5.prototype={ +$0(){var s=this.a.a +s.toString +return s}, +$S:204} +A.aH6.prototype={ +$0(){var s=this.a,r=this.b,q=s.FH(r,$.jm.gaLl()) +return q instanceof A.adL?s.FG(r,$.jm.gaLi()):q}, +$S:204} +A.adL.prototype={} +A.ok.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.ok&&b.a===s.a&&b.b===s.b&&b.c===s.c}, +gu(a){return A.X(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)}, +l(a){return"AssetBundleImageKey(bundle: "+this.a.l(0)+', name: "'+this.b+'", scale: '+A.i(this.c)+")"}} +A.XV.prototype={ +FH(a,b){return A.bsT(this.D9(a,b),a.b,null,a.c)}, +FG(a,b){return A.bsT(this.D9(a,b),a.b,null,a.c)}, +D9(a,b){return this.awy(a,b)}, +awy(a,b){var s=0,r=A.y(t.hP),q,p=2,o,n,m,l,k +var $async$D9=A.u(function(c,d){if(c===1){o=d +s=p}while(true)switch(s){case 0:l=null +p=4 +s=7 +return A.t(a.a.Mo(a.b),$async$D9) +case 7:l=d +p=2 +s=6 +break +case 4:p=3 +k=o +if(A.ak(k) instanceof A.xh){m=$.jm.v9$ +m===$&&A.b() +m.V6(a) +throw k}else throw k +s=6 +break +case 3:s=2 +break +case 6:q=b.$1(l) +s=1 +break +case 1:return A.w(q,r) +case 2:return A.v(o,r)}}) +return A.x($async$D9,r)}} +A.b53.prototype={} +A.mR.prototype={ +gAY(){return this.a}, +MC(a){var s,r={},q=a.a +if(q==null)q=$.arN() +r.a=r.b=null +s=t.P +A.bIA(A.bF6(q).be(new A.asI(r,this,a,q),s),new A.asJ(r),s,t.K) +s=r.a +if(s!=null)return s +s=new A.a7($.ac,t.Lv) +r.b=new A.aD(s,t.h8) +return s}, +ap1(a,b,c){var s,r,q,p,o +if(c==null||c.length===0||b.b==null)return new A.td(null,a) +s=A.blF(t.i,t.pR) +for(r=c.length,q=0;q(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.a_(b)!==A.p(this))return!1 +return b instanceof A.mR&&b.gAY()===this.gAY()&&!0}, +gu(a){return A.X(this.gAY(),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)}, +l(a){return"AssetImage(bundle: "+A.i(this.b)+', name: "'+this.gAY()+'")'}} +A.asI.prototype={ +$1(a){var s,r,q=this,p=q.b,o=a.af9(p.gAY()),n=p.ap1(p.gAY(),q.c,o) +p=n.a +if(p==null)p=1 +s=new A.ok(q.d,n.b,p) +p=q.a +r=p.b +if(r!=null)r.cU(0,s) +else p.a=new A.cC(s,t.WT)}, +$S:374} +A.asJ.prototype={ +$2(a,b){this.a.b.fc(a,b)}, +$S:26} +A.lk.prototype={ +hx(a){return new A.lk(this.a.hx(0),this.b,this.c)}, +l(a){var s=this.c +s=s!=null?s+" ":"" +return s+this.a.l(0)+" @ "+A.mK(this.b)+"x"}, +gu(a){return A.X(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.a_(b)!==A.p(s))return!1 +return b instanceof A.lk&&b.a===s.a&&b.b===s.b&&b.c==s.c}} +A.ll.prototype={ +gu(a){return A.X(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.a_(b)!==A.p(s))return!1 +return b instanceof A.ll&&J.j(b.a,s.a)&&J.j(b.b,s.b)&&J.j(b.c,s.c)}, +aNd(a,b){return this.a.$2(a,b)}} +A.jS.prototype={} +A.aHa.prototype={ +YP(a){var s,r=this +r.a=a +s=r.b +if(s!=null){r.b=null +a.r=!0 +B.b.al(s,a.gDT(a)) +r.a.r=!1}}, +P(a,b){var s=this.a +if(s!=null)return s.P(0,b) +s=this.b;(s==null?this.b=A.a([],t.XZ):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")),t.kE),!0,t.CF) +n=i.b +B.b.I(o,n) +B.b.ab(n) +s=!1 +for(n=o.length,m=0;m")),r),!0,r.h("z.E")) +for(s=q.length,p=0;p=s.a}else r=!0 +if(r){s=p.ax +p.a1g(new A.lk(s.glp(s).hx(0),p.as,p.e)) +p.ay=a +s=p.ax +p.ch=s.gEH(s) +s=p.ax +s.glp(s).m() +p.ax=null +q=B.f.i9(p.CW,p.Q.gvp()) +if(p.Q.gBr()===-1||q<=p.Q.gBr())p.yW() +return}s.toString +r=p.ay +r===$&&A.b() +p.cx=A.d0(new A.bj(B.f.bg(s.a-(a.a-r.a))),new A.aLb(p))}, +yW(){var s=0,r=A.y(t.H),q,p=2,o,n=this,m,l,k,j,i +var $async$yW=A.u(function(a,b){if(a===1){o=b +s=p}while(true)switch(s){case 0:j=n.ax +if(j!=null)j.glp(j).m() +n.ax=null +p=4 +s=7 +return A.t(n.Q.pt(),$async$yW) +case 7:n.ax=b +p=2 +s=6 +break +case 4:p=3 +i=o +m=A.ak(i) +l=A.aJ(i) +n.y_(A.c0("resolving an image frame"),m,n.at,!0,l) +s=1 +break +s=6 +break +case 3:s=2 +break +case 6:if(n.Q.gvp()===1){if(n.a.length===0){s=1 +break}j=n.ax +n.a1g(new A.lk(j.glp(j).hx(0),n.as,n.e)) +j=n.ax +j.glp(j).m() +n.ax=null +s=1 +break}n.a4y() +case 1:return A.w(q,r) +case 2:return A.v(o,r)}}) +return A.x($async$yW,r)}, +a4y(){if(this.cy)return +this.cy=!0 +$.cB.Hj(this.gasG())}, +a1g(a){this.YU(a);++this.CW}, +P(a,b){var s,r=this +if(r.a.length===0){s=r.Q +if(s!=null)s=r.c==null||s.gvp()>1 +else s=!1}else s=!1 +if(s)r.yW() +r.Zv(0,b)}, +H(a,b){var s,r=this +r.Zw(0,b) +if(r.a.length===0){s=r.cx +if(s!=null)s.aI(0) +r.cx=null}}, +J0(){this.ahX() +if(this.x)this.z=null}} +A.aLc.prototype={ +$2(a,b){this.a.y_(A.c0("resolving an image codec"),a,this.b,!0,b)}, +$S:26} +A.aLb.prototype={ +$0(){this.a.a4y()}, +$S:0} +A.ahN.prototype={} +A.ahP.prototype={} +A.ahO.prototype={} +A.Xn.prototype={} +A.qF.prototype={ +k(a,b){var s=this +if(b==null)return!1 +return b instanceof A.qF&&b.a===s.a&&b.b==s.b&&b.d===s.d&&A.ee(b.f,s.f)}, +gu(a){var s=this +return A.X(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)}, +l(a){return"InlineSpanSemanticsInformation{text: "+this.a+", semanticsLabel: "+A.i(this.b)+", recognizer: "+A.i(this.c)+"}"}} +A.kz.prototype={ +Yq(a){var s={} +s.a=null +this.ci(new A.aHn(s,a,new A.Xn())) +return s.a}, +Gx(a){var s,r=new A.d_("") +this.U9(r,!0,a) +s=r.a +return s.charCodeAt(0)==0?s:s}, +adN(){return this.Gx(!0)}, +oU(a,b){var s={} +if(b<0)return null +s.a=null +this.ci(new A.aHm(s,b,new A.Xn())) +return s.a}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.kz&&J.j(b.a,this.a)}, +gu(a){return J.T(this.a)}} +A.aHn.prototype={ +$1(a){var s=a.Yr(this.b,this.c) +this.a.a=s +return s==null}, +$S:99} +A.aHm.prototype={ +$1(a){var s=a.a8o(this.b,this.c) +this.a.a=s +return s==null}, +$S:99} +A.a7c.prototype={ +U9(a,b,c){a.a+=A.el(65532)}, +KP(a){a.push(B.a7D)}} +A.cM.prototype={ +c0(a,b){var s=this.a.c0(0,b) +return new A.cM(this.b.av(0,b),s)}, +f0(a,b){var s,r,q=this +if(a instanceof A.cM){s=A.bp(a.a,q.a,b) +r=A.oo(a.b,q.b,b) +r.toString +return new A.cM(r,s)}if(a instanceof A.hi){s=A.bp(a.a,q.a,b) +return new A.jw(q.b,1-b,a.b,s)}return q.yG(a,b)}, +f1(a,b){var s,r,q=this +if(a instanceof A.cM){s=A.bp(q.a,a.a,b) +r=A.oo(q.b,a.b,b) +r.toString +return new A.cM(r,s)}if(a instanceof A.hi){s=A.bp(q.a,a.a,b) +return new A.jw(q.b,b,a.b,s)}return q.yH(a,b)}, +pM(a){var s=a==null?this.a:a +return new A.cM(this.b,s)}, +hp(a,b){var s=this.b.L(b).e1(a).e6(-this.a.ghs()),r=$.au().d1() +r.fT(s) +return r}, +qg(a){return this.hp(a,null)}, +eI(a,b){var s=$.au().d1() +s.fT(this.b.L(b).e1(a)) +return s}, +lP(a){return this.eI(a,null)}, +nE(a,b,c,d){var s=this.b +if(s.k(0,B.aG))a.ey(b,c) +else a.d5(s.L(d).e1(b),c)}, +gkE(){return!0}, +im(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.d5(s.L(c).e1(b),o.kH()) +else{r=$.au().bk() +r.saf(0,o.a) +q=s.L(c).e1(b) +p=q.e6(-o.ghs()) +a.An(q.e6(o.gyz()),p,r)}break}}, +aE(a,b){return this.im(a,b,null)}, +k(a,b){if(b==null)return!1 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.cM&&b.a.k(0,this.a)&&b.b.k(0,this.b)}, +gu(a){return A.X(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)}, +l(a){return"RoundedRectangleBorder("+this.a.l(0)+", "+this.b.l(0)+")"}} +A.jw.prototype={ +c0(a,b){var s=this.a.c0(0,b) +return new A.jw(this.b.av(0,b),b,this.d,s)}, +f0(a,b){var s,r,q,p=this +if(a instanceof A.cM){s=A.bp(a.a,p.a,b) +r=A.oo(a.b,p.b,b) +r.toString +return new A.jw(r,p.c*b,p.d,s)}if(a instanceof A.hi){s=A.bp(a.a,p.a,b) +r=p.c +return new A.jw(p.b,r+(1-r)*(1-b),a.b,s)}if(a instanceof A.jw){s=A.bp(a.a,p.a,b) +r=A.oo(a.b,p.b,b) +r.toString +q=A.ag(a.c,p.c,b) +q.toString +return new A.jw(r,q,p.d,s)}return p.yG(a,b)}, +f1(a,b){var s,r,q,p=this +if(a instanceof A.cM){s=A.bp(p.a,a.a,b) +r=A.oo(p.b,a.b,b) +r.toString +return new A.jw(r,p.c*(1-b),p.d,s)}if(a instanceof A.hi){s=A.bp(p.a,a.a,b) +r=p.c +return new A.jw(p.b,r+(1-r)*b,a.b,s)}if(a instanceof A.jw){s=A.bp(p.a,a.a,b) +r=A.oo(p.b,a.b,b) +r.toString +q=A.ag(p.c,a.c,b) +q.toString +return new A.jw(r,q,p.d,s)}return p.yH(a,b)}, +Dt(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,t.Q2)}if(s.e.gkE())p.x=A.a8(new A.ad(r,new A.bcf(a),A.ab(r).h("ad<1,L>")),!0,t.YT) +else p.y=A.a8(new A.ad(r,new A.bcg(p,a,b),A.ab(r).h("ad<1,DL>")),!0,t.ke)}r=s.e +if(!r.gkE())q=p.r!=null||p.w!=null +else q=!1 +if(q)p.e=r.eI(a,b) +if(s.c!=null)p.f=r.hp(a,b) +p.c=a +p.d=b}, +ayV(a,b,c){var s,r,q,p,o=this +if(o.w!=null){s=o.b.e +if(s.gkE()){r=0 +while(!0){q=o.w +q.toString +if(!(r>>0)+r+-56613888 +break $label0$0}if(56320===s){r=r.oU(0,a-1) +r.toString +r=(r<<10>>>0)+q+-56613888 +break $label0$0}r=q +break $label0$0}return r}, +aCj(a,b){var s,r=this.apd(b?a-1:a),q=b?a:a-1,p=this.a.oU(0,q) +if(!(r==null||p==null||A.bvh(r)||A.bvh(p))){q=A.bE("[\\p{Space_Separator}\\p{Punctuation}]",!0,!1,!0) +s=A.el(r) +q=!q.b.test(s)}else q=!0 +return q}, +gac4(){var s=this,r=s.c +if(r===$){r!==$&&A.aq() +r=s.c=new A.aoQ(s.gaCi(),s)}return r}} +A.aoQ.prototype={ +iQ(a){var s +if(a<0)return null +s=this.b.iQ(a) +return s==null||this.a.$2(s,!1)?s:this.iQ(s-1)}, +iS(a){var s=this.b.iS(Math.max(a,0)) +return s==null||this.a.$2(s,!0)?s:this.iS(s)}} +A.bdv.prototype={ +vR(a){var s +switch(a.a){case 0:s=this.a +s=s.gDX(s) +break +case 1:s=this.a +s=s.gab1(s) +break +default:s=null}return s}} +A.bdz.prototype={ +gr9(){var s,r,q=this.c +if(q===0)return B.i +s=this.a +r=s.a +if(!isFinite(r.gf6(r)))return B.ao5 +r=this.b +s=s.a +return new A.m(q*(r-s.gf6(s)),0)}, +aAv(a,b,c){var s,r,q=this,p=q.a,o=A.bwv(a,b,c,p) +if(o===q.b)return!0 +if(!isFinite(q.gr9().a)){s=p.a +s=!isFinite(s.gf6(s))&&isFinite(a)}else s=!1 +if(s)return!1 +r=p.a.gxI() +p=p.a +if(p.gf6(p)-r>-1e-10&&b-r>-1e-10){q.b=o +return!0}return!1}} +A.Ai.prototype={} +A.Ae.prototype={} +A.aaW.prototype={ +aa(){var s=this.b +if(s!=null)s.a.a.m() +this.b=null}, +sef(a,b){var s,r,q,p=this +if(J.j(p.f,b))return +s=p.f +s=s==null?null:s.a +r=b==null +if(!J.j(s,r?null:b.a)){s=p.CW +if(s!=null)s.m() +p.CW=null}if(r)q=B.c_ +else{s=p.f +s=s==null?null:s.bO(0,b) +q=s==null?B.c_:s}p.f=b +p.r=null +s=q.a +if(s>=3)p.aa() +else if(s>=2)p.c=!0}, +gnH(){var s=this.r +if(s==null){s=this.f +s=s==null?null:s.Gx(!1) +this.r=s}return s==null?"":s}, +sBv(a,b){if(this.w===b)return +this.w=b +this.aa()}, +scz(a){var s,r=this +if(r.x===a)return +r.x=a +r.aa() +s=r.CW +if(s!=null)s.m() +r.CW=null}, +sdU(a){var s,r=this +if(a.k(0,r.y))return +r.y=a +r.aa() +s=r.CW +if(s!=null)s.m() +r.CW=null}, +saIv(a){if(this.z==a)return +this.z=a +this.aa()}, +sB3(a,b){if(J.j(this.Q,b))return +this.Q=b +this.aa()}, +sB6(a){if(this.as==a)return +this.as=a +this.aa()}, +srN(a){if(J.j(this.at,a))return +this.at=a +this.aa()}, +sBw(a){if(this.ax===a)return +this.ax=a}, +gaba(){var s,r,q,p=this.b +if(p==null)return null +s=p.gr9() +if(!isFinite(s.a)||!isFinite(s.b))return A.a([],t.Lx) +r=p.d +if(r==null)r=p.d=p.a.a.H2() +if(s.k(0,B.i))return r +q=A.ab(r).h("ad<1,hs>") +return A.a8(new A.ad(r,new A.aZQ(s),q),!1,q.h("av.E"))}, +uj(a){if(a==null||a.length===0||A.ee(a,this.ch))return +this.ch=a +this.aa()}, +a0L(a){var s,r,q,p,o,n=this,m=null,l=n.f.a +if(l==null)l=m +else{s=n.w +r=n.x +if(r==null)r=a +q=n.y +p=n.as +o=n.ay +q=l.afC(n.z,n.Q,p,n.at,s,r,o,q) +l=q}if(l==null){l=n.w +s=n.x +if(s==null)s=a +r=n.y.c0(0,14) +q=n.as +p=n.ay +p=A.blf(n.z,m,r,m,m,m,n.Q,q,m,l,s,p) +l=p}return l}, +apR(){return this.a0L(null)}, +gf3(){var s,r,q=this,p=q.CW +if(p==null){p=q.a0L(B.ab) +s=$.au().L1(p) +p=q.f +if(p==null)r=null +else{p=p.a +r=p==null?null:p.Hg(q.y)}if(r!=null)s.Bl(r) +s.DU(" ") +p=s.aO() +p.ij(B.aot) +q.CW=p}return p.gdC(p)}, +a0K(a){var s=this,r=s.apR(),q=$.au().L1(r) +r=s.y +a.KB(q,s.ch,r) +s.c=!1 +return q.aO()}, +Mn(a,b){var s,r,q,p,o,n,m,l,k=this,j=k.b,i=j==null +if(!i&&j.aAv(b,a,k.ax))return +s=k.f +if(s==null)throw A.c(A.R("TextPainter.text must be set to a non-null value before using the TextPainter.")) +r=k.x +if(r==null)throw A.c(A.R("TextPainter.textDirection must be set to a non-null value before using the TextPainter.")) +q=A.buF(k.w,r) +if(!(!isFinite(a)&&q!==0))p=a +else p=i?null:j.a.a.gxI() +o=p==null +k.d=o?a:p +n=i?null:j.a.a +if(n==null)n=k.a0K(s) +n.ij(new A.ur(k.d)) +i=new A.bdv(n) +m=A.bwv(b,a,k.ax,i) +if(o&&isFinite(b)){l=i.a.gxI() +n.ij(new A.ur(l)) +k.d=l}k.b=new A.bdz(i,m,q)}, +W9(){return this.Mn(1/0,0)}, +aE(a,b){var s,r,q,p=this,o=p.b +if(o==null)throw A.c(A.R("TextPainter.paint called when text geometry was not yet calculated.\nPlease call layout() before paint() to position the text before painting it.")) +if(!isFinite(o.gr9().a)||!isFinite(o.gr9().b))return +if(p.c){s=o.a +r=s.a +q=p.f +q.toString +q=p.a0K(q) +q.ij(new A.ur(p.d)) +s.a=q +r.m()}a.v6(o.a.a,b.U(0,o.gr9()))}, +Yh(a){var s=this.f.oU(0,a) +if(s==null)return null +return(s&64512)===55296?a+2:a+1}, +Yi(a){var s=a-1,r=this.f.oU(0,s) +if(r==null)return null +return(r&64512)===56320?a-2:s}, +a1Q(a){var s,r,q,p,o,n,m,l,k,j=this,i=j.gnH().length +if(i===0||a>i)return null +s=B.c.oU(j.gnH(),Math.max(0,a-1)) +r=s&64512 +q=r===55296||r===56320||j.f.oU(0,a)===8205||s===8207||s===8206 +p=q?2:1 +o=A.a([],t.Lx) +for(r=-i,n=!q,m=s===10;o.length===0;){l=a-p +o=j.b.a.a.NV(Math.max(0,l),a,B.qJ) +if(o.length===0){if(n&&m)break +if(l>>0,n=!q;o.length===0;){m=a+p +o=this.b.a.a.NV(a,m,B.qJ) +if(o.length===0){if(n)break +if(m>=r)break +p*=2 +continue}l=B.b.gO(o).e===B.j?B.b.gO(o):B.b.gX(o) +r=l.e +n=r===B.j?l.a:l.c +k=l.b +return new A.Ai(new A.m(n,k),r,l.d-k)}return null}, +rw(a,b){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=i.b +g.toString +s=a.a<0?B.Py:i.a0w(a) +$label0$0:{r=A.bM("#0#2",new A.aZN(s)) +q=A.bM("#0#4",new A.aZO(s)) +p=A.bM("#0#7",new A.aZP(s)) +if(s instanceof A.Ae)if(typeof r.T()=="number"){o=r.T() +n=!0}else{o=h +n=!1}else{o=h +n=!1}if(n){n=i.w +m=i.x +m.toString +l=A.buF(n,m) +return new A.m(l===0?0:l*g.b,o)}n=s instanceof A.Ai +if(n)if(B.j===q.T())if(p.T() instanceof A.m){k=p.T() +m=!0}else{k=h +m=!1}else{k=h +m=!1}else{k=h +m=!1}if(m){j=k +break $label0$0}if(n)if(B.ab===q.T())if(p.T() instanceof A.m){k=p.T() +n=!0}else{k=h +n=!1}else{k=h +n=!1}else{k=h +n=!1}j=n?new A.m(k.a-(b.c-b.a),k.b):h}return new A.m(A.V(j.a+g.gr9().a,0,g.b),j.b+g.gr9().b)}, +Y9(a,b){var s,r,q,p,o=null +if(a.a<0)return o +s=this.a0w(a) +r=A.bM("#0#2",new A.aZM(s)) +$label0$0:{if(s instanceof A.Ai)if(typeof r.T()=="number"){q=r.T() +p=!0}else{q=o +p=!1}else{q=o +p=!1}if(p){p=q +break $label0$0}if(s instanceof A.Ae){p=o +break $label0$0}p=o}return p}, +a0w(a){var s,r,q=this,p=q.b +if(a.k(0,p.f)){s=q.cx +s===$&&A.b() +return s}r=a.a +switch(a.b.a){case 0:s=q.a1Q(r) +if(s==null)s=q.a1P(r) +break +case 1:s=q.a1P(r) +if(s==null)s=q.a1Q(r) +break +default:s=null}p.f=a +return q.cx=s==null?B.Py:s}, +yb(a,b,c){var s,r,q=this.b,p=q.gr9() +if(!isFinite(p.a)||!isFinite(p.b))return A.a([],t.Lx) +s=q.a.a.H3(a.a,a.b,b,c) +if(p.k(0,B.i))r=s +else{r=A.ab(s).h("ad<1,hs>") +r=A.a8(new A.ad(s,new A.aZL(p),r),!1,r.h("av.E"))}return r}, +rv(a){return this.yb(a,B.cd,B.bS)}, +hq(a){var s=this.b +return s.a.a.hq(a.a4(0,s.gr9()))}, +zU(){var s,r,q=this.b,p=q.gr9() +if(!isFinite(p.a)||!isFinite(p.b))return B.af9 +s=q.e +if(s==null){s=q.a.a.zU() +q.e=s}if(p.k(0,B.i))r=s +else{r=A.ab(s).h("ad<1,ua>") +r=A.a8(new A.ad(s,new A.aZK(p),r),!1,r.h("av.E"))}return r}, +m(){var s=this,r=s.CW +if(r!=null)r.m() +s.CW=null +r=s.b +if(r!=null)r.a.a.m() +s.f=s.b=null}} +A.aZQ.prototype={ +$1(a){return A.buG(a,this.a)}, +$S:176} +A.aZD.prototype={ +$0(){return this.a.a}, +$S:384} +A.aZF.prototype={ +$0(){return this.a.b}, +$S:198} +A.aZE.prototype={ +$0(){return B.b2===this.a.T()}, +$S:10} +A.aZG.prototype={ +$0(){return B.j===this.a.T()}, +$S:10} +A.aZH.prototype={ +$0(){return B.ab===this.a.T()}, +$S:10} +A.aZI.prototype={ +$0(){return B.lC===this.a.T()}, +$S:10} +A.aZJ.prototype={ +$0(){return B.pB===this.a.T()}, +$S:10} +A.aZN.prototype={ +$0(){return t.Wt.a(this.a).a}, +$S:41} +A.aZO.prototype={ +$0(){return t.YL.a(this.a).b}, +$S:198} +A.aZP.prototype={ +$0(){return t.YL.a(this.a).a}, +$S:110} +A.aZM.prototype={ +$0(){return t.YL.a(this.a).c}, +$S:41} +A.aZL.prototype={ +$1(a){return A.buG(a,this.a)}, +$S:176} +A.aZK.prototype={ +$1(a){var s=this.a,r=a.gaaP(),q=a.ga7J(),p=a.gUE(),o=a.gae4(),n=a.gdC(a),m=a.gf6(a),l=a.gpd(a),k=a.gqD(),j=a.gWb(a) +return $.au().a95(q,k+s.b,p,r,n,l+s.a,j,o,m)}, +$S:386} +A.ki.prototype={ +c0(a,b){return b*this.a}, +a8l(a,b,c){var s=this.a,r=A.V(s,c,b) +return r===s?this:new A.ki(r)}, +aGn(a,b){return this.a8l(a,b,0)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +return b instanceof A.ki&&b.a===this.a}, +gu(a){return B.e.gu(this.a)}, +l(a){var s=this.a +return s===1?"no scaling":"linear ("+A.i(s)+"x)"}, +$iPs:1, +gNz(){return this.a}} +A.v9.prototype={ +ga9i(a){return this.e}, +gXV(){return!0}, +p9(a,b){t.pY.b(a)}, +KB(a,b,c){var s,r,q,p,o,n=this.a,m=n!=null +if(m)a.Bl(n.Hg(c)) +n=this.b +if(n!=null)try{a.DU(n)}catch(q){n=A.ak(q) +if(n instanceof A.l3){s=n +r=A.aJ(q) +A.e6(new A.cg(s,r,"painting library",A.c0("while building a TextSpan"),null,!1)) +a.DU("\ufffd")}else throw q}p=this.c +if(p!=null)for(n=p.length,o=0;o0?q:B.ds +if(p===B.c_)return p}else p=B.ds +s=n.c +if(s!=null)for(r=b.c,o=0;op.a)p=q +if(p===B.c_)return p}return p}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +if(!s.Zy(0,b))return!1 +return b instanceof A.v9&&b.b==s.b&&s.e.k(0,b.e)&&A.ee(b.c,s.c)}, +gu(a){var s=this,r=null,q=A.kz.prototype.gu.call(s,s),p=s.c +p=p==null?r:A.dj(p) +return A.X(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)}, +f4(){return"TextSpan"}, +$iaB:1, +$ioW:1, +gWu(){return null}, +gWv(){return null}} +A.D.prototype={ +gpX(){var s,r=this.e +if(!(this.f==null))if(r==null)r=null +else{s=A.ab(r).h("ad<1,h>") +s=A.a8(new A.ad(r,new A.aZT(this),s),!0,s.h("av.E")) +r=s}return r}, +gwD(a){var s,r=this.f +if(r!=null){s=this.d +return s==null?null:B.c.cm(s,("packages/"+r+"/").length)}return this.d}, +x0(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){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1=this,a2=c1==null?a1.a:c1,a3=a1.ay +if(a3==null&&b9==null)s=a6==null?a1.b:a6 +else s=null +r=a1.ch +if(r==null&&a4==null)q=a5==null?a1.c:a5 +else q=null +p=b5==null?a1.r:b5 +o=b8==null?a1.w:b8 +n=c3==null?a1.y:c3 +m=c9==null?a1.z:c9 +l=c8==null?a1.Q:c8 +k=c0==null?a1.as:c0 +j=c2==null?a1.at:c2 +a3=b9==null?a3:b9 +r=a4==null?r:a4 +i=c7==null?a1.dy:c7 +h=b7==null?a1.fx:b7 +g=a8==null?a1.CW:a8 +f=a9==null?a1.cx:a9 +e=b0==null?a1.cy:b0 +d=b1==null?a1.db:b1 +c=b2==null?a1.gwD(a1):b2 +b=b3==null?a1.e:b3 +a=c6==null?a1.f:c6 +a0=c5==null?a1.fy:c5 +return A.hb(r,q,s,null,g,f,e,d,c,b,a1.fr,p,a1.x,h,o,a3,k,a2,j,n,a1.ax,a0,a,i,l,m)}, +aHx(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 this.x0(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,null,r,s,a0,a1,a2,a3,a4,a5)}, +a8U(a,b,c){return this.x0(null,null,a,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,b,null,null,null,null,null,c)}, +cM(a){return this.x0(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,null)}, +KY(a,b){return this.x0(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,null)}, +a8G(a){return this.x0(null,null,null,null,null,null,null,null,null,null,null,null,null,null,a,null,null,null,null,null,null,null,null,null,null,null)}, +a8I(a){return this.x0(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,a,null,null,null,null,null,null,null,null)}, +a8H(a){return this.x0(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,a,null,null,null,null,null,null,null,null,null)}, +jJ(a,b,c,d,a0,a1,a2,a3,a4){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null,e=g.ay +if(e==null)s=a==null?g.b:a +else s=f +r=g.ch +if(r==null)q=g.c +else q=f +p=a0==null?g.gwD(g):a0 +o=a1==null?g.e:a1 +n=g.r +n=n==null?f:n*a3+a2 +m=g.w +m=m==null?f:B.BS[B.f.hw(m.a,0,8)] +l=g.y +l=l==null?f:l+0 +k=g.z +k=k==null?f:k+0 +j=g.as +j=j==null?f:j+0 +i=c==null?g.cx:c +h=g.db +h=h==null?f:h+0 +return A.hb(r,q,s,f,g.CW,i,g.cy,h,p,o,g.fr,n,g.x,g.fx,m,e,j,g.a,g.at,l,g.ax,g.fy,g.f,g.dy,g.Q,k)}, +TF(a){return this.jJ(a,null,null,null,null,null,0,1,null)}, +cI(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.gwD(a4) +a2=a4.e +a3=a4.f +return this.aHx(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)}, +Hg(a){var s,r,q,p,o,n,m,l,k=this,j=null,i=k.r +$label0$0:{if(i==null){s=j +break $label0$0}s=a.k(0,B.aw) +if(s){s=i +break $label0$0}s=a.c0(0,i) +break $label0$0}r=k.gpX() +q=new A.eT(k.ch,k.c) +p=A.bM("#1#1",new A.aZU(q)) +o=A.bM("#1#2",new A.aZV(q)) +$label1$1:{if(t.Q2.b(p.T())){n=p.T() +m=!0}else{n=j +m=!1}if(m){m=n +break $label1$1}if(o.T() instanceof A.e){l=o.T() +m=!0}else{l=j +m=!1}if(m){m=$.au().bk() +m.saf(0,l) +break $label1$1}m=j +break $label1$1}return A.buH(m,k.b,k.CW,k.cx,k.cy,k.db,k.d,r,k.fr,s,k.x,k.fx,k.w,k.ay,k.as,k.at,k.y,k.ax,k.dy,k.Q,k.z)}, +afC(a,b,c,d,e,a0,a1,a2){var s,r,q,p,o,n,m,l,k,j=this,i=null,h=j.at,g=h==null?i:new A.Po(h),f=j.r +f=a2.c0(0,f==null?14:f) +if(d==null)s=i +else{s=d.a +r=d.gpX() +q=d.d +$label0$0:{if(q==null){p=i +break $label0$0}p=a2.c0(0,q) +break $label0$0}o=d.e +n=d.x +m=d.r +l=d.w +k=d.y +n=$.au().a9c(s,r,p,l,m,k,o,n,i) +s=n}return A.blf(a,j.d,f,j.x,j.w,j.as,b,c,s,e,a0,g)}, +bO(a,b){var s=this +if(s===b)return B.ds +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.ee(s.dy,b.dy)||!A.ee(s.fr,b.fr)||!A.ee(s.fx,b.fx)||!A.ee(s.gpX(),b.gpX())||s.fy!=b.fy)return B.c_ +if(!J.j(s.b,b.b)||!J.j(s.c,b.c)||!J.j(s.CW,b.CW)||!J.j(s.cx,b.cx)||s.cy!=b.cy||s.db!=b.db)return B.apw +return B.ds}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.D&&b.a===s.a&&J.j(b.b,s.b)&&J.j(b.c,s.c)&&b.r==s.r&&b.w==s.w&&b.y==s.y&&b.z==s.z&&b.Q==s.Q&&b.as==s.as&&b.at==s.at&&b.ay==s.ay&&b.ch==s.ch&&A.ee(b.dy,s.dy)&&A.ee(b.fr,s.fr)&&A.ee(b.fx,s.fx)&&J.j(b.CW,s.CW)&&J.j(b.cx,s.cx)&&b.cy==s.cy&&b.db==s.db&&b.d==s.d&&A.ee(b.gpX(),s.gpX())&&b.f==s.f&&b.fy==s.fy}, +gu(a){var s,r=this,q=null,p=r.gpX(),o=p==null?q:A.dj(p),n=A.X(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.dj(m) +s=l==null?q:A.dj(l) +return A.X(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)}, +f4(){return"TextStyle"}} +A.aZT.prototype={ +$1(a){var s=this.a.f +return"packages/"+(s==null?A.bm(s):s)+"/"+a}, +$S:18} +A.aZU.prototype={ +$0(){return this.a.a}, +$S:387} +A.aZV.prototype={ +$0(){return this.a.b}, +$S:207} +A.ao4.prototype={} +A.a2a.prototype={ +amA(a,b,c,d,e){var s=this +s.r=A.bxD(new A.aEh(s),s.gUX(s),0,10,0)}, +hK(a,b){var s,r,q=this +if(b>q.r)return q.gAH() +s=q.e +r=q.c +return q.d+s*Math.pow(q.b,b)/r-s/r-q.f/2*b*b}, +j9(a,b){var s=this +if(b>s.r)return 0 +return s.e*Math.pow(s.b,b)-s.f*b}, +gAH(){var s=this +if(s.f===0)return s.d-s.e/s.c +return s.hK(0,s.r)}, +adG(a){var s,r=this,q=r.d +if(a===q)return 0 +s=r.e +if(s!==0)if(s>0)q=ar.gAH() +else q=a>q||a=r.b&&r.c>=r.d +else q=!0 +if(q){n.h8(0) +n=o.dd +o.id=n.a=n.b=new A.U(A.V(0,r.a,r.b),A.V(0,r.c,r.d)) +o.jd=B.Nt +n=o.k3$ +if(n!=null)n.ij(r) +return}s.cS(r,!0) +switch(o.jd.a){case 0:n=o.dd +s=o.k3$ +n.a=n.b=s.gq(s) +o.jd=B.oZ +break +case 1:s=o.dd +q=s.b +p=o.k3$ +if(!J.j(q,p.gq(p))){s.a=o.gq(o) +q=o.k3$ +s.b=q.gq(q) +o.fe=0 +n.p7(0,0) +o.jd=B.apu}else{q=n.x +q===$&&A.b() +if(q===n.b){n=o.k3$ +s.a=s.b=n.gq(n)}else{s=n.r +if(!(s!=null&&s.a!=null))n.bS(0)}}break +case 2:s=o.dd +q=s.b +p=o.k3$ +if(!J.j(q,p.gq(p))){q=o.k3$ +s.a=s.b=q.gq(q) +o.fe=0 +n.p7(0,0) +o.jd=B.apv}else{o.jd=B.oZ +s=n.r +if(!(s!=null&&s.a!=null))n.bS(0)}break +case 3:s=o.dd +q=s.b +p=o.k3$ +if(!J.j(q,p.gq(p))){q=o.k3$ +s.a=s.b=q.gq(q) +o.fe=0 +n.p7(0,0)}else{n.h8(0) +o.jd=B.oZ}break}n=o.dd +s=o.ei +s===$&&A.b() +s=n.a5(0,s.gj(s)) +s.toString +o.id=r.bJ(s) +o.Kr() +if(o.gq(o).a=a.b&&a.c>=a.d +else s=!0 +if(s)return new A.U(A.V(0,a.a,a.b),A.V(0,a.c,a.d)) +r=p.lO(a) +switch(q.jd.a){case 0:return a.bJ(r) +case 1:if(!J.j(q.dd.b,r))return a.bJ(q.gq(q)) +else{p=q.dt +p===$&&A.b() +s=p.x +s===$&&A.b() +if(s===p.b)return a.bJ(r)}break +case 3:case 2:if(!J.j(q.dd.b,r))return a.bJ(r) +break}p=q.ei +p===$&&A.b() +p=q.dd.a5(0,p.gj(p)) +p.toString +return a.bJ(p)}, +aE(a,b){var s,r,q,p=this +if(p.k3$!=null){s=p.ea +s===$&&A.b() +s=s&&p.pT!==B.n}else s=!1 +r=p.EV +if(s){s=p.gq(p) +q=p.cx +q===$&&A.b() +r.sb2(0,a.tX(q,b,new A.L(0,0,0+s.a,0+s.b),A.z_.prototype.gil.call(p),p.pT,r.a))}else{r.sb2(0,null) +p.aj3(a,b)}}, +m(){var s,r=this +r.EV.sb2(0,null) +s=r.dt +s===$&&A.b() +s.m() +s=r.ei +s===$&&A.b() +s.m() +r.iU()}} +A.aQu.prototype={ +$0(){var s=this.a,r=s.dt +r===$&&A.b() +r=r.x +r===$&&A.b() +if(r!==s.fe)s.aa()}, +$S:0} +A.Ek.prototype={ +gN9(){var s,r=this,q=r.fr$ +if(q===$){s=A.bKG(new A.aRu(r),new A.aRv(r),new A.aRw(r)) +q!==$&&A.aq() +r.fr$=s +q=s}return q}, +aHN(a){var s,r=$.dn().d +if(r==null){s=self.window.devicePixelRatio +r=s===0?1:s}return new A.PS(a.go.gnG().i7(0,r),r)}, +Vu(){var s,r,q,p,o,n,m +for(s=this.go$,s=s.gbp(s),r=A.l(s),r=r.h("@<1>").V(r.z[1]),s=new A.bT(J.al(s.a),s.b,r.h("bT<1,2>")),r=r.z[1],q=!1;s.v();){p=s.a +if(p==null)p=r.a(p) +q=q||p.k3$!=null +o=p.go +n=$.dn().d +if(n==null){m=self.window.devicePixelRatio +n=m===0?1:m}m=o.x +if(m==null){m=o.r +m===$&&A.b() +m=o.x=m.wY()}p.suX(new A.PS(new A.U(m.a/n,m.b/n),n))}if(q)this.afY()}, +VD(){}, +Vx(){}, +aL8(){var s,r=this.dy$ +if(r!=null){r.ok$=$.aH() +r.k4$=0}r=t.S +s=$.aH() +this.dy$=new A.a63(new A.aRt(this),new A.aKT(B.c2,A.I(r,t.ZA)),A.I(r,t.xg),s)}, +avy(a){B.an_.pC("first-frame",null,!1,t.H)}, +au9(a){this.UW() +this.aBa()}, +aBa(){$.cB.y2$.push(new A.aRs(this))}, +a7w(){--this.k1$ +if(!this.k2$)this.YE()}, +UW(){var s,r,q=this,p=q.fy$ +p===$&&A.b() +p.aaj() +q.fy$.aah() +q.fy$.aak() +if(q.k2$||q.k1$===0){for(p=q.go$,p=p.gbp(p),s=A.l(p),s=s.h("@<1>").V(s.z[1]),p=new A.bT(J.al(p.a),p.b,s.h("bT<1,2>")),s=s.z[1];p.v();){r=p.a;(r==null?s.a(r):r).aGH()}q.fy$.aal() +q.k2$=!0}}, +$iaB:1, +$iij:1} +A.aRu.prototype={ +$0(){var s=this.a.gN9().e +if(s!=null)s.Hk()}, +$S:0} +A.aRw.prototype={ +$1(a){var s +if(this.a.gN9().e!=null){s=$.hL;(s==null?$.hL=A.qj():s).aQm(a)}}, +$S:197} +A.aRv.prototype={ +$0(){var s=this.a.gN9().e +if(s!=null)s.wU()}, +$S:0} +A.aRt.prototype={ +$2(a,b){var s=A.aGe() +this.a.Fi(s,a,b) +return s}, +$S:389} +A.aRs.prototype={ +$1(a){this.a.dy$.aQa()}, +$S:5} +A.QE.prototype={ +m(){this.a.gDw().H(0,this.geO()) +this.eK()}} +A.afX.prototype={} +A.alU.prototype={ +WY(){if(this.B)return +this.aj4() +this.B=!0}, +Hk(){this.wU() +this.aiX()}, +m(){this.sbN(null)}} +A.aN.prototype={ +Ek(a,b,c,d){var s=this,r=d==null?s.a:d,q=b==null?s.b:b,p=c==null?s.c:c +return new A.aN(r,q,p,a==null?s.d:a)}, +aHr(a,b){return this.Ek(null,null,a,b)}, +Uj(a,b){return this.Ek(null,a,null,b)}, +aHq(a,b){return this.Ek(a,null,b,null)}, +a8K(a){return this.Ek(a,null,null,null)}, +Eg(a){return this.Ek(null,a,null,null)}, +La(a){var s=this,r=a.gdI(),q=a.gcC(a)+a.gcD(a),p=Math.max(0,s.a-r),o=Math.max(0,s.c-q) +return new A.aN(p,Math.max(p,s.b-r),o,Math.max(o,s.d-q))}, +xg(a){var s=this,r=a.a,q=a.b,p=a.c,o=a.d +return new A.aN(A.V(s.a,r,q),A.V(s.b,r,q),A.V(s.c,p,o),A.V(s.d,p,o))}, +Xw(a,b){var s,r,q=this,p=b==null,o=q.a,n=p?o:A.V(b,o,q.b),m=q.b +p=p?m:A.V(b,o,m) +o=a==null +m=q.c +s=o?m:A.V(a,m,q.d) +r=q.d +return new A.aN(n,p,s,o?r:A.V(a,m,r))}, +Gv(a){return this.Xw(null,a)}, +NA(a){return this.Xw(a,null)}, +bJ(a){var s=this +return new A.U(A.V(a.a,s.a,s.b),A.V(a.b,s.c,s.d))}, +aGL(a){var s,r,q,p,o,n=this,m=n.a,l=n.b +if(m>=l&&n.c>=n.d)return new A.U(A.V(0,m,l),A.V(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}, +av(a,b){var s=this +return new A.aN(s.a*b,s.b*b,s.c*b,s.d*b)}, +gaLH(){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.a_(b)!==A.p(s))return!1 +return b instanceof A.aN&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d}, +gu(a){var s=this +return A.X(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)}, +l(a){var s,r=this,q=r.gaLH()?"":"; 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.aux() +return"BoxConstraints("+s.$3(p,r.b,"w")+", "+s.$3(r.c,r.d,"h")+q+")"}} +A.aux.prototype={ +$3(a,b,c){if(a===b)return c+"="+B.e.aF(a,1) +return B.e.aF(a,1)+"<="+c+"<="+B.e.aF(b,1)}, +$S:390} +A.q3.prototype={ +Tz(a,b,c){if(c!=null){c=A.yh(A.bli(c)) +if(c==null)return!1}return this.DV(a,b,c)}, +oP(a,b,c){var s,r=b==null,q=r?c:c.a4(0,b) +r=!r +if(r)this.c.push(new A.GX(new A.m(-b.a,-b.b))) +s=a.$2(this,q) +if(r)this.Na() +return s}, +DV(a,b,c){var s,r=c==null,q=r?b:A.cL(c,b) +r=!r +if(r)this.c.push(new A.SK(c)) +s=a.$2(this,q) +if(r)this.Na() +return s}, +a7v(a,b,c){var s,r=this +if(b!=null)r.c.push(new A.GX(new A.m(-b.a,-b.b))) +else{c.toString +c=A.yh(A.bli(c)) +c.toString +r.c.push(new A.SK(c))}s=a.$1(r) +r.Na() +return s}, +aFp(a,b){return this.a7v(a,null,b)}, +aFo(a,b){return this.a7v(a,b,null)}} +A.wr.prototype={ +l(a){return"#"+A.br(this.a)+"@"+this.c.l(0)}} +A.iy.prototype={ +l(a){return"offset="+this.a.l(0)}, +sc5(a,b){return this.a=b}} +A.Jk.prototype={} +A.GI.prototype={ +J(){return"_IntrinsicDimension."+this.b}} +A.Sr.prototype={ +k(a,b){if(b==null)return!1 +return b instanceof A.Sr&&b.a===this.a&&b.b===this.b}, +gu(a){return A.X(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.O.prototype={ +fR(a){if(!(a.b instanceof A.iy))a.b=new A.iy(B.i)}, +aA(a,b,c){var s=this.fx +if(s==null)s=this.fx=A.I(t.oc,t.i) +return s.cK(0,new A.Sr(a,b),new A.aQw(c,b))}, +bX(a){return 0}, +bQ(a){return 0}, +bR(a){return 0}, +bV(a){return 0}, +lO(a){var s=this.fy +if(s==null)s=this.fy=A.I(t.k,t.FW) +return s.cK(0,a,new A.aQy(this,a))}, +da(a){return B.y}, +gq(a){var s=this.id +return s==null?A.r(A.R("RenderBox was not laid out: "+A.p(this).l(0)+"#"+A.br(this))):s}, +grG(){var s=this.gq(this) +return new A.L(0,0,0+s.a,0+s.b)}, +NY(a,b){var s=null +try{s=this.qf(a)}finally{}if(s==null&&!b)return this.gq(this).b +return s}, +vR(a){return this.NY(a,!1)}, +qf(a){var s=this.k1 +if(s==null)s=this.k1=A.I(t._0,t.PM) +return s.cK(0,a,new A.aQx(this,a))}, +hS(a){return null}, +ga9(){return t.k.a(A.J.prototype.ga9.call(this))}, +ap5(){var s,r=this,q=r.k1,p=q==null +if(!(!p&&q.a!==0)){s=r.fx +if(!(s!=null&&s.a!==0)){s=r.fy +s=s!=null&&s.a!==0}else s=!0}else s=!0 +if(s){if(!p)q.ab(0) +q=r.fx +if(q!=null)q.ab(0) +q=r.fy +if(q!=null)q.ab(0) +return!0}return!1}, +aa(){var s=this +if(s.ap5()&&s.gbP(s) instanceof A.J){s.FL() +return}s.aiV()}, +cS(a,b){var s,r=this +if(r.id!=null)if(!a.k(0,t.k.a(A.J.prototype.ga9.call(r)))){s=r.k1 +s=s!=null&&s.a!==0}else s=!1 +else s=!1 +if(s){s=r.k1 +if(s!=null)s.ab(0)}r.aiU(a,b)}, +ij(a){return this.cS(a,!1)}, +xT(){this.id=this.da(t.k.a(A.J.prototype.ga9.call(this)))}, +ce(){}, +dm(a,b){var s=this +if(s.id.p(0,b))if(s.dZ(a,b)||s.lo(b)){a.F(0,new A.wr(b,s)) +return!0}return!1}, +lo(a){return!1}, +dZ(a,b){return!1}, +eL(a,b){var s,r=a.b +r.toString +s=t.q.a(r).a +b.bi(0,s.a,s.b)}, +jy(a){var s,r,q,p,o,n=this.cl(0,null) +if(n.j6(n)===0)return B.i +s=new A.de(new Float64Array(3)) +s.h7(0,0,1) +r=new A.de(new Float64Array(3)) +r.h7(0,0,0) +q=n.N8(r) +r=new A.de(new Float64Array(3)) +r.h7(0,0,1) +p=n.N8(r).a4(0,q) +r=new A.de(new Float64Array(3)) +r.h7(a.a,a.b,0) +o=n.N8(r) +r=o.a4(0,p.Og(s.xa(o)/s.xa(p))).a +return new A.m(r[0],r[1])}, +gr7(){var s=this.gq(this) +return new A.L(0,0,0+s.a,0+s.b)}, +p9(a,b){this.aiT(a,b)}} +A.aQw.prototype={ +$0(){return this.a.$1(this.b)}, +$S:41} +A.aQy.prototype={ +$0(){return this.a.da(this.b)}, +$S:206} +A.aQx.prototype={ +$0(){return this.a.hS(this.b)}, +$S:131} +A.e_.prototype={ +a9p(a){var s,r,q,p=this.a2$ +for(s=A.l(this).h("e_.1?");p!=null;){r=s.a(p.b) +q=p.qf(a) +if(q!=null)return q+r.a.b +p=r.a3$}return null}, +L7(a){var s,r,q,p,o=this.a2$ +for(s=A.l(this).h("e_.1"),r=null;o!=null;){q=o.b +q.toString +s.a(q) +p=o.qf(a) +if(p!=null){p+=q.a.b +r=r!=null?Math.min(r,p):p}o=q.a3$}return r}, +A4(a,b){var s,r,q={},p=q.a=this.dF$ +for(s=A.l(this).h("e_.1");p!=null;p=r){p=p.b +p.toString +s.a(p) +if(a.oP(new A.aQv(q,b,p),p.a,b))return!0 +r=p.ds$ +q.a=r}return!1}, +x5(a,b){var s,r,q,p,o,n=this.a2$ +for(s=A.l(this).h("e_.1"),r=b.a,q=b.b;n!=null;){p=n.b +p.toString +s.a(p) +o=p.a +a.em(n,new A.m(o.a+r,o.b+q)) +n=p.a3$}}} +A.aQv.prototype={ +$2(a,b){return this.a.a.dm(a,b)}, +$S:17} +A.R3.prototype={ +ap(a){this.Cs(0)}} +A.m8.prototype={ +l(a){return this.HG(0)+"; id="+A.i(this.e)}} +A.aL8.prototype={ +iG(a,b){var s=this.b.i(0,a) +s.cS(b,!0) +return s.gq(s)}, +jj(a,b){var s=this.b.i(0,a).b +s.toString +t.Wz.a(s).a=b}, +aoA(a,b){var s,r,q,p,o,n,m=this,l=m.b +try{m.b=A.I(t.K,t.x) +for(r=t.Wz,q=b;q!=null;q=n){p=q.b +p.toString +s=r.a(p) +p=m.b +p.toString +o=s.e +o.toString +p.n(0,o,q) +n=s.a3$}m.G4(a)}finally{m.b=l}}, +l(a){return"MultiChildLayoutDelegate"}} +A.Nw.prototype={ +fR(a){if(!(a.b instanceof A.m8))a.b=new A.m8(null,null,B.i)}, +sdc(a){var s=this,r=s.B +if(r===a)return +if(A.p(a)!==A.p(r)||a.qj(r))s.aa() +s.B=a +if(s.y!=null){r=r.a +if(r!=null)r.H(0,s.gtQ()) +r=a.a +if(r!=null)r.P(0,s.gtQ())}}, +aw(a){var s +this.aky(a) +s=this.B.a +if(s!=null)s.P(0,this.gtQ())}, +ap(a){var s=this.B.a +if(s!=null)s.H(0,this.gtQ()) +this.akz(0)}, +bX(a){var s=A.jF(a,1/0),r=s.bJ(new A.U(A.V(1/0,s.a,s.b),A.V(1/0,s.c,s.d))).a +if(isFinite(r))return r +return 0}, +bQ(a){var s=A.jF(a,1/0),r=s.bJ(new A.U(A.V(1/0,s.a,s.b),A.V(1/0,s.c,s.d))).a +if(isFinite(r))return r +return 0}, +bR(a){var s=A.jF(1/0,a),r=s.bJ(new A.U(A.V(1/0,s.a,s.b),A.V(1/0,s.c,s.d))).b +if(isFinite(r))return r +return 0}, +bV(a){var s=A.jF(1/0,a),r=s.bJ(new A.U(A.V(1/0,s.a,s.b),A.V(1/0,s.c,s.d))).b +if(isFinite(r))return r +return 0}, +da(a){return a.bJ(new A.U(A.V(1/0,a.a,a.b),A.V(1/0,a.c,a.d)))}, +ce(){var s=this,r=t.k.a(A.J.prototype.ga9.call(s)) +s.id=r.bJ(new A.U(A.V(1/0,r.a,r.b),A.V(1/0,r.c,r.d))) +s.B.aoA(s.gq(s),s.a2$)}, +aE(a,b){this.x5(a,b)}, +dZ(a,b){return this.A4(a,b)}} +A.Tv.prototype={ +aw(a){var s,r,q +this.eS(a) +s=this.a2$ +for(r=t.Wz;s!=null;){s.aw(a) +q=s.b +q.toString +s=r.a(q).a3$}}, +ap(a){var s,r,q +this.eT(0) +s=this.a2$ +for(r=t.Wz;s!=null;){s.ap(0) +q=s.b +q.toString +s=r.a(q).a3$}}} +A.all.prototype={} +A.a0v.prototype={ +P(a,b){var s=this.a +return s==null?null:s.P(0,b)}, +H(a,b){var s=this.a +return s==null?null:s.H(0,b)}, +gC9(){return null}, +Hv(a){return this.fv(a)}, +AQ(a){return null}, +l(a){var s=A.br(this),r=this.a +r=r==null?null:r.l(0) +if(r==null)r="" +return"#"+s+"("+r+")"}} +A.Nx.prototype={ +sxP(a){var s=this.D +if(s==a)return +this.D=a +this.a0V(a,s)}, +saap(a){var s=this.ac +if(s==a)return +this.ac=a +this.a0V(a,s)}, +a0V(a,b){var s=this,r=a==null +if(r)s.b_() +else if(b==null||A.p(a)!==A.p(b)||a.fv(b))s.b_() +if(s.y!=null){if(b!=null)b.H(0,s.geG()) +if(!r)a.P(0,s.geG())}if(r){if(s.y!=null)s.bY()}else if(b==null||A.p(a)!==A.p(b)||a.Hv(b))s.bY()}, +srb(a){if(this.az.k(0,a))return +this.az=a +this.aa()}, +bX(a){var s +if(this.k3$==null){s=this.az.a +return isFinite(s)?s:0}return this.P_(a)}, +bQ(a){var s +if(this.k3$==null){s=this.az.a +return isFinite(s)?s:0}return this.OY(a)}, +bR(a){var s +if(this.k3$==null){s=this.az.b +return isFinite(s)?s:0}return this.OZ(a)}, +bV(a){var s +if(this.k3$==null){s=this.az.b +return isFinite(s)?s:0}return this.OX(a)}, +aw(a){var s,r=this +r.yM(a) +s=r.D +if(s!=null)s.P(0,r.geG()) +s=r.ac +if(s!=null)s.P(0,r.geG())}, +ap(a){var s=this,r=s.D +if(r!=null)r.H(0,s.geG()) +r=s.ac +if(r!=null)r.H(0,s.geG()) +s.uq(0)}, +dZ(a,b){var s=this.ac +if(s!=null){s=s.AQ(b) +s=s===!0}else s=!1 +if(s)return!0 +return this.HN(a,b)}, +lo(a){var s=this.D +if(s!=null){s=s.AQ(a) +s=s!==!1}else s=!1 +return s}, +ce(){this.yK() +this.bY()}, +Ed(a){return a.bJ(this.az)}, +a3R(a,b,c){A.b6("debugPreviousCanvasSaveCount") +a.eo(0) +if(!b.k(0,B.i))a.bi(0,b.a,b.b) +c.aE(a,this.gq(this)) +a.dg(0)}, +aE(a,b){var s,r,q=this +if(q.D!=null){s=a.gcL(a) +r=q.D +r.toString +q.a3R(s,b,r) +q.a56(a)}q.oE(a,b) +if(q.ac!=null){s=a.gcL(a) +r=q.ac +r.toString +q.a3R(s,b,r) +q.a56(a)}}, +a56(a){}, +hy(a){var s,r=this +r.jA(a) +s=r.D +r.ek=s==null?null:s.gC9() +s=r.ac +r.jh=s==null?null:s.gC9() +a.a=!1}, +zG(a,b,c){var s,r,q,p,o=this +o.hX=A.btJ(o.hX,B.C7) +o.hf=A.btJ(o.hf,B.C7) +s=o.hX +r=s!=null&&!s.gak(s) +s=o.hf +q=s!=null&&!s.gak(s) +s=A.a([],t.QF) +if(r){p=o.hX +p.toString +B.b.I(s,p)}B.b.I(s,c) +if(q){p=o.hf +p.toString +B.b.I(s,p)}o.ZT(a,b,s)}, +wU(){this.OV() +this.hf=this.hX=null}} +A.ayj.prototype={} +A.zG.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.zG&&b.a.k(0,s.a)&&b.b==s.b}, +l(a){var s=this +switch(s.b){case B.j:return s.a.l(0)+"-ltr" +case B.ab:return s.a.l(0)+"-rtl" +case null:case void 0:return s.a.l(0)}}, +gu(a){return A.X(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.b0G.prototype={ +gdf(){var s=this +if(!s.f)return!1 +if(s.e.bm.zU()!==s.d)s.f=!1 +return s.f}, +a26(a){var s,r,q=this,p=q.r,o=p.i(0,a) +if(o!=null)return o +s=new A.m(q.a.a,q.d[a].gqD()) +r=new A.aS(s,q.e.bm.hq(s),t.tO) +p.n(0,a,r) +return r}, +gG(a){return this.c}, +v(){var s,r=this,q=r.b+1 +if(q>=r.d.length)return!1 +s=r.a26(q);++r.b +r.a=s.a +r.c=s.b +return!0}, +ac5(){var s,r=this,q=r.b +if(q<=0)return!1 +s=r.a26(q-1);--r.b +r.a=s.a +r.c=s.b +return!0}, +aMN(a){var s,r=this,q=r.a +if(a>=0){for(s=q.b+a;r.a.bs;)if(!r.ac5())break +return!q.k(0,r.a)}} +A.yZ.prototype={ +m(){var s,r=this,q=r.B +if(q!=null)q.ch.sb2(0,null) +r.B=null +q=r.W +if(q!=null)q.ch.sb2(0,null) +r.W=null +r.jc.sb2(0,null) +q=r.bt +if(q!=null){q.ok$=$.aH() +q.k4$=0}q=r.Y +if(q!=null){q.ok$=$.aH() +q.k4$=0}q=r.de +s=q.ok$=$.aH() +q.k4$=0 +q=r.he +q.ok$=s +q.k4$=0 +q=r.aZ +q.ok$=s +q.k4$=0 +q=r.aN +q.ok$=s +q.k4$=0 +q=r.gia() +q.ok$=s +q.k4$=0 +r.bm.m() +r.iU()}, +a6y(a){var s,r=this,q=r.gaoo(),p=r.B +if(p==null){s=A.bwb(q) +r.mh(s) +r.B=s}else p.sxP(q) +r.a6=a}, +a6F(a){var s,r=this,q=r.gaop(),p=r.W +if(p==null){s=A.bwb(q) +r.mh(s) +r.W=s}else p.sxP(q) +r.an=a}, +gia(){var s,r,q=this.ao +if(q===$){s=$.au().bk() +r=$.aH() +this.ao!==$&&A.aq() +q=this.ao=new A.QS(s,B.i,r)}return q}, +gaoo(){var s=this,r=s.bt +if(r==null){r=A.a([],t.xT) +if(s.ac)r.push(s.gia()) +r=s.bt=new A.G6(r,$.aH())}return r}, +gaop(){var s=this,r=s.Y +if(r==null){r=A.a([s.aZ,s.aN],t.xT) +if(!s.ac)r.push(s.gia()) +r=s.Y=new A.G6(r,$.aH())}return r}, +sNy(a){return}, +sBw(a){var s=this.bm +if(s.ax===a)return +s.sBw(a) +this.r1()}, +sAd(a,b){if(this.eA===b)return +this.eA=b +this.r1()}, +saMX(a){if(this.h1===a)return +this.h1=a +this.aa()}, +saMW(a){var s=this +if(s.dG===a)return +s.dG=a +s.dA=null +s.bY()}, +BW(a){var s=this.bm,r=s.b.a.a.O4(a) +if(this.dG)return A.dq(B.t,0,s.gnH().length,!1) +return A.dq(B.t,r.a,r.b,!1)}, +aEu(a){var s,r,q,p,o,n,m=this +if(!m.cq.gdf()){m.de.sj(0,!1) +m.he.sj(0,!1) +return}s=m.gq(m) +r=new A.L(0,0,0+s.a,0+s.b) +s=m.bm +q=m.cq +p=m.jR +p===$&&A.b() +o=s.rw(new A.bW(q.a,q.e),p) +m.de.sj(0,r.e6(0.5).p(0,o.U(0,a))) +p=m.cq +n=s.rw(new A.bW(p.b,p.e),m.jR) +m.he.sj(0,r.e6(0.5).p(0,n.U(0,a)))}, +uF(a,b){var s,r +if(a.gdf()){s=this.fo.a.c.a.a.length +a=a.Eh(Math.min(a.c,s),Math.min(a.d,s))}r=this.fo.a.c.a.mE(a) +this.fo.ka(r,b)}, +b_(){this.aiW() +var s=this.B +if(s!=null)s.b_() +s=this.W +if(s!=null)s.b_()}, +r1(){this.bd=this.b3=null +this.aa()}, +Cw(){var s=this +s.OT() +s.bm.aa() +s.bd=s.b3=null}, +sef(a,b){var s=this,r=s.bm +if(J.j(r.f,b))return +s.iE=null +r.sef(0,b) +s.tw=s.eY=s.dA=null +s.r1() +s.bY()}, +sBv(a,b){var s=this.bm +if(s.w===b)return +s.sBv(0,b) +this.r1()}, +scz(a){var s=this.bm +if(s.x===a)return +s.scz(a) +this.r1() +this.bY()}, +sB3(a,b){var s=this.bm +if(J.j(s.Q,b))return +s.sB3(0,b) +this.r1()}, +srN(a){var s=this.bm +if(J.j(s.at,a))return +s.srN(a) +this.r1()}, +sagL(a){var s=this,r=s.dH +if(r===a)return +if(s.y!=null)r.H(0,s.gJB()) +s.dH=a +if(s.y!=null){s.gia().sOr(s.dH.a) +s.dH.P(0,s.gJB())}}, +aCd(){this.gia().sOr(this.dH.a)}, +sdk(a){if(this.cY===a)return +this.cY=a +this.bY()}, +saJl(a){if(this.e5===a)return +this.e5=a +this.aa()}, +sXd(a,b){if(this.hC===b)return +this.hC=b +this.bY()}, +sB6(a){var s,r=this +if(r.fp==a)return +r.fp=a +s=a===1?1:null +r.bm.sB6(s) +r.r1()}, +saMH(a){return}, +sV7(a){return}, +sdU(a){var s=this.bm +if(s.y.k(0,a))return +s.sdU(a) +this.r1()}, +syr(a){var s=this +if(s.cq.k(0,a))return +s.cq=a +s.aN.sM2(a) +s.b_() +s.bY()}, +sc5(a,b){var s=this,r=s.dM +if(r===b)return +if(s.y!=null)r.H(0,s.geG()) +s.dM=b +if(s.y!=null)b.P(0,s.geG()) +s.aa()}, +saHR(a){if(this.dj===a)return +this.dj=a +this.aa()}, +saHQ(a){return}, +saNQ(a){var s=this +if(s.ac===a)return +s.ac=a +s.Y=s.bt=null +s.a6y(s.a6) +s.a6F(s.an)}, +sah8(a){if(this.az===a)return +this.az=a +this.b_()}, +saIC(a){if(this.cr===a)return +this.cr=a +this.b_()}, +saIx(a){var s=this +if(s.hX===a)return +s.hX=a +s.r1() +s.bY()}, +ghL(){var s=this.hX +return s}, +rv(a){var s,r +this.pB() +s=this.bm.rv(a) +r=A.ab(s).h("ad<1,hs>") +return A.a8(new A.ad(s,new A.aQC(this),r),!0,r.h("av.E"))}, +hy(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this +d.jA(a) +s=d.bm +r=s.f +r.toString +q=A.a([],t.O_) +r.KP(q) +d.hZ=q +if(B.b.fa(q,new A.aQB())&&A.c3()!==B.dc){a.c=a.a=!0 +return}r=d.dA +if(r==null)if(d.dG){r=new A.dT(B.c.av(d.h1,s.gnH().length),B.aS) +d.dA=r}else{p=new A.d_("") +o=A.a([],t.oU) +for(r=d.hZ,n=r.length,m=0,l=0,k="";lh){d=c0[h].dy +d=d!=null&&d.p(0,new A.qU(i,b7))}else d=!1 +if(!d)break +b=c0[h] +d=s.b +d.toString +m.a(d) +b5.push(b);++h}b7=s.b +b7.toString +s=n.a(b7).a3$;++i}else{a=b6.rv(new A.im(j,e,B.t,!1,c,d)) +if(a.length===0)continue +d=B.b.gO(a) +a0=new A.L(d.a,d.b,d.c,d.d) +a1=B.b.gO(a).e +for(d=A.ab(a),c=d.h("kb<1>"),a2=new A.kb(a,1,b4,c),a2.Cy(a,1,b4,d.c),a2=new A.c2(a2,a2.gt(a2),c.h("c2")),c=c.h("av.E");a2.v();){d=a2.d +if(d==null)d=c.a(d) +a0=a0.oY(new A.L(d.a,d.b,d.c,d.d)) +a1=d.e}d=a0.a +c=Math.max(0,d) +a2=a0.b +a3=Math.max(0,a2) +d=Math.min(a0.c-d,o.a(A.J.prototype.ga9.call(b3)).b) +a2=Math.min(a0.d-a2,o.a(A.J.prototype.ga9.call(b3)).d) +a4=Math.floor(c)-4 +a5=Math.floor(a3)-4 +d=Math.ceil(c+d)+4 +a2=Math.ceil(a3+a2)+4 +a6=new A.L(a4,a5,d,a2) +a7=A.pc() +a8=k+1 +a7.k2=new A.yq(k,b4) +a7.e=!0 +a7.bL=l +a3=f.b +b7=a3==null?b7:a3 +a7.RG=new A.dT(b7,f.f) +b7=b8.r +if(b7!=null){a9=b7.hh(a6) +if(a9.a>=a9.c||a9.b>=a9.d)b7=!(a4>=d||a5>=a2) +else b7=!1 +a7.c8(B.ls,b7)}b0=A.b6("newChild") +b7=b3.ed +d=b7==null?b4:b7.a!==0 +if(d===!0){b7.toString +d=new A.cl(b7,A.l(b7).h("cl<1>")) +b1=d.gam(d) +if(!b1.v())A.r(A.ch()) +b7=b7.E(0,b1.gG(b1)) +b7.toString +if(b0.b!==b0)A.r(A.qJ(b0.a)) +b0.b=b7}else{b2=new A.kR() +b7=A.Ok(b2,b3.apU(b2)) +if(b0.b!==b0)A.r(A.qJ(b0.a)) +b0.b=b7}if(b7===b0)A.r(A.iH(b0.a)) +J.bpL(b7,a7) +if(!b7.e.k(0,a6)){b7.e=a6 +b7.mb()}b7=b0.b +if(b7===b0)A.r(A.iH(b0.a)) +d=b7.a +d.toString +r.n(0,d,b7) +b7=b0.b +if(b7===b0)A.r(A.iH(b0.a)) +b5.push(b7) +k=a8 +l=a1}}b3.ed=r +b8.ua(0,b5,b9)}, +apU(a){return new A.aQA(this,a)}, +auX(a){this.uF(a,B.aM)}, +atZ(a){var s=this,r=s.bm.Yh(s.cq.d) +if(r==null)return +s.uF(A.dq(B.t,!a?r:s.cq.c,r,!1),B.aM)}, +atV(a){var s=this,r=s.bm.Yi(s.cq.d) +if(r==null)return +s.uF(A.dq(B.t,!a?r:s.cq.c,r,!1),B.aM)}, +au0(a){var s,r=this,q=r.cq.gez(),p=r.a1S(r.bm.b.a.a.rA(q).b) +if(p==null)return +s=a?r.cq.c:p.a +r.uF(A.dq(B.t,s,p.a,!1),B.aM)}, +atX(a){var s,r=this,q=r.cq.gez(),p=r.a1U(r.bm.b.a.a.rA(q).a-1) +if(p==null)return +s=a?r.cq.c:p.a +r.uF(A.dq(B.t,s,p.a,!1),B.aM)}, +a1S(a){var s,r,q +for(s=this.bm;!0;){r=s.b.a.a.rA(new A.bW(a,B.t)) +q=r.a +if(!(q>=0&&r.b>=0)||q===r.b)return null +if(!this.a3H(r))return r +a=r.b}}, +a1U(a){var s,r,q +for(s=this.bm;a>=0;){r=s.b.a.a.rA(new A.bW(a,B.t)) +q=r.a +if(!(q>=0&&r.b>=0)||q===r.b)return null +if(!this.a3H(r))return r +a=q-1}return null}, +a3H(a){var s,r,q,p +for(s=a.a,r=a.b,q=this.bm;s=m.gnH().length)return A.Fs(new A.bW(m.gnH().length,B.aT)) +if(o.dG)return A.dq(B.t,0,m.gnH().length,!1) +s=m.b.a.a.rA(a) +switch(a.b.a){case 0:r=n-1 +break +case 1:r=n +break +default:r=null}if(r>0&&A.buE(m.gnH().charCodeAt(r))){m=s.a +q=o.a1U(m) +switch(A.c3().a){case 2:if(q==null){p=o.a1S(m) +if(p==null)return A.rj(B.t,n) +return A.dq(B.t,n,p.b,!1)}return A.dq(B.t,q.a,n,!1) +case 0:if(o.hC){if(q==null)return A.dq(B.t,n,n+1,!1) +return A.dq(B.t,q.a,n,!1)}break +case 1:case 4:case 3:case 5:break}}return A.dq(B.t,s.a,s.b,!1)}, +CQ(a,b){var s=this,r=Math.max(0,a-(1+s.dj)),q=Math.min(b,r),p=s.fp!==1?r:1/0,o=s.e5?r:q +s.bm.Mn(p,o) +s.bd=b +s.b3=a}, +a1c(a){return this.CQ(a,0)}, +a1b(){return this.CQ(1/0,0)}, +pB(){var s=t.k,r=s.a(A.J.prototype.ga9.call(this)) +this.CQ(s.a(A.J.prototype.ga9.call(this)).b,r.a)}, +apk(){var s,r,q=this +switch(A.c3().a){case 2:case 4:s=q.dj +r=q.bm.gf3() +q.jR=new A.L(0,0,s,0+(r+2)) +break +case 0:case 1:case 3:case 5:s=q.dj +r=q.bm.gf3() +q.jR=new A.L(0,2,s,2+(r-4)) +break}}, +aoC(){var s=this.bm.f +s=s==null?null:s.ci(new A.aQz()) +return s!==!1}, +da(a){var s,r,q,p,o=this,n=o.tw +if(!(n==null?o.tw=o.aoC():n))return B.y +n=o.bm +s=a.b +n.uj(o.xD(s,A.t1())) +r=a.a +o.CQ(s,r) +if(o.e5)q=s +else{n=n.b +p=n.b +n=n.a.a +n.gdC(n) +q=A.V(p+(1+o.dj),r,s)}return new A.U(q,A.V(o.Jf(s),a.c,a.d))}, +ce(){var s,r,q,p,o,n,m=this,l=t.k.a(A.J.prototype.ga9.call(m)),k=l.b,j=m.xD(k,A.vY()) +m.ib=j +s=m.bm +s.uj(j) +m.pB() +j=s.gaba() +j.toString +m.acz(j) +m.apk() +j=s.b +r=j.b +j=j.a.a +j=j.gdC(j) +if(m.e5)q=k +else{s=s.b +p=s.b +s=s.a.a +s.gdC(s) +q=A.V(p+(1+m.dj),l.a,k)}m.id=new A.U(q,A.V(m.Jf(k),l.c,l.d)) +o=new A.U(r+(1+m.dj),j) +n=A.Be(o) +j=m.B +if(j!=null)j.ij(n) +j=m.W +if(j!=null)j.ij(n) +m.hf=m.asb(o) +m.dM.qB(m.gaEM()) +m.dM.pI(0,m.hf)}, +YS(a,b,c,d){var s,r,q,p=this +if(a===B.xk){p.h_=B.i +p.jS=null +p.Ay=p.Az=p.hU=!1}s=a!==B.nn +p.ek=s +p.ic=d +if(s){p.jh=c +if(d!=null){s=A.C8(B.vh,B.a8,d) +s.toString +r=s}else r=B.vh +s=p.gia() +q=p.jR +q===$&&A.b() +s.saaf(r.Fk(q).dq(b))}else p.gia().saaf(null) +p.gia().w=p.ic==null}, +Ol(a,b,c){return this.YS(a,b,c,null)}, +aws(a,b){var s,r,q,p,o,n=this.bm.rw(a,B.W) +for(s=b.length,r=n.b,q=0;p=b.length,qr)return new A.aS(J.bpt(o),new A.m(n.a,o.gqD()),t.DC)}s=Math.max(0,p-1) +r=p!==0?B.b.gX(b).gqD()+B.b.gX(b).gUE():0 +return new A.aS(s,new A.m(n.a,r),t.DC)}, +a3M(a,b){var s,r,q=this,p=b.U(0,q.giA()),o=q.ek +if(!o)q.aEu(p) +s=q.B +r=q.W +if(r!=null)a.em(r,b) +q.bm.aE(a.gcL(a),p) +q.act(a,p) +if(s!=null)a.em(s,b)}, +eL(a,b){if(a===this.B||a===this.W)return +this.a9o(a,b)}, +aE(a,b){var s,r,q,p,o,n,m=this +m.pB() +s=(m.hf>0||!m.giA().k(0,B.i))&&m.hY!==B.n +r=m.jc +if(s){s=m.cx +s===$&&A.b() +q=m.gq(m) +r.sb2(0,a.tX(s,b,new A.L(0,0,0+q.a,0+q.b),m.gayQ(),m.hY,r.a))}else{r.sb2(0,null) +m.a3M(a,b)}p=m.cq +s=p.gdf() +if(s){s=m.O_(p) +o=s[0].a +r=A.V(o.a,0,m.gq(m).a) +q=A.V(o.b,0,m.gq(m).b) +a.tZ(A.bkO(m.az,new A.m(r,q).U(0,b)),A.J.prototype.gil.call(m),B.i) +if(s.length===2){n=s[1].a +s=A.V(n.a,0,m.gq(m).a) +r=A.V(n.b,0,m.gq(m).b) +a.tZ(A.bkO(m.cr,new A.m(s,r).U(0,b)),A.J.prototype.gil.call(m),B.i)}}}, +ts(a){var s,r=this +switch(r.hY.a){case 0:return null +case 1:case 2:case 3:if(r.hf>0||!r.giA().k(0,B.i)){s=r.gq(r) +s=new A.L(0,0,0+s.a,0+s.b)}else s=null +return s}}} +A.aQC.prototype={ +$1(a){var s=this.a +return new A.hs(a.a+s.giA().a,a.b+s.giA().b,a.c+s.giA().a,a.d+s.giA().b,a.e)}, +$S:176} +A.aQB.prototype={ +$1(a){return!1}, +$S:393} +A.aQA.prototype={ +$0(){var s=this.a,r=s.ed.i(0,this.b) +r.toString +s.w2(s,r.e)}, +$S:0} +A.aQD.prototype={ +$2(a,b){var s=a==null?null:a.oY(new A.L(b.a,b.b,b.c,b.d)) +return s==null?new A.L(b.a,b.b,b.c,b.d):s}, +$S:394} +A.aQz.prototype={ +$1(a){var s,r +if(a instanceof A.o6){s=a.b +$label0$0:{if(B.l4===s||B.l5===s||B.l6===s){r=!1 +break $label0$0}if(B.l7===s||B.l8===s||B.e3===s){r=!0 +break $label0$0}r=null}}else r=!0 +return r}, +$S:99} +A.alm.prototype={ +gbP(a){return t.CA.a(A.J.prototype.gbP.call(this,this))}, +gih(){return!0}, +goB(){return!0}, +sxP(a){var s,r=this,q=r.B +if(a===q)return +r.B=a +s=a.fv(q) +if(s)r.b_() +if(r.y!=null){s=r.geG() +q.H(0,s) +a.P(0,s)}}, +aE(a,b){var s=this,r=t.CA.a(A.J.prototype.gbP.call(s,s)),q=s.B +if(r!=null){r.pB() +q.kD(a.gcL(a),s.gq(s),r)}}, +aw(a){this.eS(a) +this.B.P(0,this.geG())}, +ap(a){this.B.H(0,this.geG()) +this.eT(0)}, +da(a){return new A.U(A.V(1/0,a.a,a.b),A.V(1/0,a.c,a.d))}} +A.uI.prototype={} +A.UK.prototype={ +sM1(a){if(J.j(a,this.w))return +this.w=a +this.ag()}, +sM2(a){if(J.j(a,this.x))return +this.x=a +this.ag()}, +sYL(a){if(this.y===a)return +this.y=a +this.ag()}, +sYM(a){if(this.z===a)return +this.z=a +this.ag()}, +kD(a,b,c){var s,r,q,p,o,n,m,l,k,j=this,i=j.x,h=j.w +if(i==null||h==null||i.a===i.b)return +s=j.r +s.saf(0,h) +r=c.bm +q=r.yb(A.dq(B.t,i.a,i.b,!1),j.y,j.z) +for(p=q.length,o=0;o>>16&255,o>>>8&255,o&255)}if(r||l==null||!i.r)return +r=A.mg(s,B.No) +k=i.y +if(k===$){j=$.au().bk() +i.y!==$&&A.aq() +i.y=j +k=j}k.saf(0,l) +a.d5(r,k)}, +fv(a){var s=this +if(s===a)return!1 +return!(a instanceof A.QS)||a.r!==s.r||a.w!==s.w||!J.j(a.z,s.z)||!J.j(a.Q,s.Q)||!a.as.k(0,s.as)||!J.j(a.at,s.at)||!J.j(a.ax,s.ax)}} +A.G6.prototype={ +P(a,b){var s,r,q +for(s=this.r,r=s.length,q=0;q")) +s=this.r +p=A.ab(s) +o=new J.cI(s,s.length,p.h("cI<1>")) +s=p.c +r=r.c +while(!0){if(!(q.v()&&o.v()))break +p=o.d +if(p==null)p=s.a(p) +n=q.d +if(p.fv(n==null?r.a(n):n))return!0}return!1}} +A.Tx.prototype={ +aw(a){this.eS(a) +$.jm.tx$.a.F(0,this.guD())}, +ap(a){$.jm.tx$.a.E(0,this.guD()) +this.eT(0)}} +A.Ty.prototype={ +aw(a){var s,r,q +this.akA(a) +s=this.a2$ +for(r=t.ot;s!=null;){s.aw(a) +q=s.b +q.toString +s=r.a(q).a3$}}, +ap(a){var s,r,q +this.akB(0) +s=this.a2$ +for(r=t.ot;s!=null;){s.ap(0) +q=s.b +q.toString +s=r.a(q).a3$}}} +A.aln.prototype={} +A.Nz.prototype={ +amO(a){var s,r,q,p,o=this +try{r=o.B +if(r!==""){q=$.bBe() +s=$.au().L1(q) +s.Bl($.bBf()) +s.DU(r) +r=s.aO() +o.W!==$&&A.ck() +o.W=r}else{o.W!==$&&A.ck() +o.W=null}}catch(p){}}, +bQ(a){return 1e5}, +bV(a){return 1e5}, +goB(){return!0}, +lo(a){return!0}, +da(a){return a.bJ(B.ar2)}, +aE(a,b){var s,r,q,p,o,n,m,l,k,j=this +try{p=a.gcL(a) +o=j.gq(j) +n=b.a +m=b.b +l=$.au().bk() +l.saf(0,$.bBd()) +p.ey(new A.L(n,m,n+o.a,m+o.b),l) +p=j.W +p===$&&A.b() +if(p!=null){s=j.gq(j).a +r=0 +q=0 +if(s>328){s-=128 +r+=64}p.ij(new A.ur(s)) +o=j.gq(j) +if(o.b>96+p.gdC(p)+12)q+=96 +o=a.gcL(a) +o.v6(p,b.U(0,new A.m(r,q)))}}catch(k){}}} +A.a1T.prototype={ +J(){return"FlexFit."+this.b}} +A.i8.prototype={ +l(a){return this.HG(0)+"; flex="+A.i(this.e)+"; fit="+A.i(this.f)}} +A.a3K.prototype={ +J(){return"MainAxisSize."+this.b}} +A.ud.prototype={ +J(){return"MainAxisAlignment."+this.b}} +A.wG.prototype={ +J(){return"CrossAxisAlignment."+this.b}} +A.uJ.prototype={ +saMt(a){if(this.W!==a){this.W=a +this.aa()}}, +sUv(a){if(this.an!==a){this.an=a +this.aa()}}, +fR(a){if(!(a.b instanceof A.i8))a.b=new A.i8(null,null,B.i)}, +Iw(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g=this +if(g.an===B.mR)return 0 +s=g.B +r=g.a2$ +if(s===c){for(s=t.US,q=0,p=0,o=0;r!=null;){n=r.b +n.toString +m=s.a(n).e +if(m==null)m=0 +q+=m +if(m>0){n=a.$2(r,b) +l=r.b +l.toString +l=s.a(l).e +o=Math.max(o,n/(l==null?0:l))}else p+=a.$2(r,b) +n=r.b +n.toString +r=s.a(n).a3$}return o*q+p}else{for(s=t.US,q=0,p=0,k=0;r!=null;){n=r.b +n.toString +m=s.a(n).e +if(m==null)m=0 +q+=m +j=A.b6("mainSize") +i=A.b6("crossSize") +if(m===0){switch(g.B.a){case 0:n=r.aA(B.ao,1/0,r.gc1()) +if(j.b!==j)A.r(A.qJ(j.a)) +j.b=n +n=a.$2(r,n) +if(i.b!==i)A.r(A.qJ(i.a)) +i.b=n +break +case 1:n=r.aA(B.bt,1/0,r.gcR()) +if(j.b!==j)A.r(A.qJ(j.a)) +j.b=n +n=a.$2(r,n) +if(i.b!==i)A.r(A.qJ(i.a)) +i.b=n +break}n=j.b +if(n===j)A.r(A.iH(j.a)) +p+=n +n=i.b +if(n===i)A.r(A.iH(i.a)) +k=Math.max(k,A.l_(n))}n=r.b +n.toString +r=s.a(n).a3$}h=Math.max(0,(b-p)/q) +r=g.a2$ +for(;r!=null;){n=r.b +n.toString +m=s.a(n).e +if(m==null)m=0 +if(m>0)k=Math.max(k,A.l_(a.$2(r,h*m))) +n=r.b +n.toString +r=s.a(n).a3$}return k}}, +bX(a){return this.Iw(new A.aQH(),a,B.ar)}, +bQ(a){return this.Iw(new A.aQF(),a,B.ar)}, +bR(a){return this.Iw(new A.aQG(),a,B.H)}, +bV(a){return this.Iw(new A.aQE(),a,B.H)}, +hS(a){if(this.B===B.ar)return this.L7(a) +return this.a9p(a)}, +Is(a){switch(this.B.a){case 0:return a.b +case 1:return a.a}}, +Ix(a){switch(this.B.a){case 0:return a.a +case 1:return a.b}}, +da(a){var s +if(this.an===B.mR)return B.y +s=this.a1r(a,A.t1()) +switch(this.B.a){case 0:return a.bJ(new A.U(s.a,s.b)) +case 1:return a.bJ(new A.U(s.b,s.a))}}, +a1r(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.B===B.ar?a2.b:a2.d,a0=a<1/0,a1=c.a2$ +for(s=t.US,r=a2.b,q=a2.d,p=b,o=0,n=0,m=0;a1!=null;){l=a1.b +l.toString +s.a(l) +k=l.e +if(k==null)k=0 +if(k>0){o+=k +p=a1}else{if(c.an===B.jf)switch(c.B.a){case 0:j=A.jE(q,b) +break +case 1:j=A.jE(b,r) +break +default:j=b}else switch(c.B.a){case 0:j=new A.aN(0,1/0,0,q) +break +case 1:j=new A.aN(0,r,0,1/0) +break +default:j=b}i=a3.$2(a1,j) +m+=c.Ix(i) +n=Math.max(n,c.Is(i))}a1=l.a3$}h=Math.max(0,(a0?a:0)-m) +if(o>0){g=a0?h/o:0/0 +a1=c.a2$ +for(f=0;a1!=null;){l=a1.b +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.b6("minChildExtent") +l=a1.b +l.toString +l=s.a(l).f +switch((l==null?B.fl:l).a){case 0:if(d.b!==d)A.r(A.qJ(d.a)) +d.b=e +break +case 1:if(d.b!==d)A.r(A.qJ(d.a)) +d.b=0 +break}if(c.an===B.jf)switch(c.B.a){case 0:l=d.b +if(l===d)A.r(A.iH(d.a)) +j=new A.aN(l,e,q,q) +break +case 1:l=d.b +if(l===d)A.r(A.iH(d.a)) +j=new A.aN(r,r,l,e) +break +default:j=b}else switch(c.B.a){case 0:l=d.b +if(l===d)A.r(A.iH(d.a)) +j=new A.aN(l,e,0,q) +break +case 1:l=d.b +if(l===d)A.r(A.iH(d.a)) +j=new A.aN(0,r,l,e) +break +default:j=b}i=a3.$2(a1,j) +m+=c.Ix(i) +f+=e +n=Math.max(n,c.Is(i))}l=a1.b +l.toString +a1=s.a(l).a3$}}return new A.b7G(a0&&c.a6===B.O?a:m,n,m)}, +ce(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0="RenderBox was not laid out: ",a1=t.k.a(A.J.prototype.ga9.call(a)),a2=a.a1r(a1,A.vY()),a3=a2.a,a4=a2.b +if(a.an===B.mR){s=a.a2$ +for(r=t.US,q=0,p=0,o=0;s!=null;){n=a.aZ +n.toString +m=s.NY(n,!0) +if(m!=null){q=Math.max(q,m) +p=Math.max(m,p) +n=s.id +o=Math.max((n==null?A.r(A.R(a0+A.p(s).l(0)+"#"+A.br(s))):n).b-m,o) +a4=Math.max(p+o,a4)}n=s.b +n.toString +s=r.a(n).a3$}}else q=0 +switch(a.B.a){case 0:a.id=a1.bJ(new A.U(a3,a4)) +a3=a.gq(a).a +a4=a.gq(a).b +break +case 1:a.id=a1.bJ(new A.U(a4,a3)) +a3=a.gq(a).b +a4=a.gq(a).a +break}l=a3-a2.c +a.bt=Math.max(0,-l) +k=Math.max(0,l) +j=A.b6("leadingSpace") +i=A.b6("betweenSpace") +r=A.bxV(a.B,a.ao,a.aN) +h=r===!1 +switch(a.W.a){case 0:j.sdQ(0) +i.sdQ(0) +break +case 1:j.sdQ(k) +i.sdQ(0) +break +case 2:j.sdQ(k/2) +i.sdQ(0) +break +case 3:j.sdQ(0) +r=a.d8$ +i.sdQ(r>1?k/(r-1):0) +break +case 4:r=a.d8$ +i.sdQ(r>0?k/r:0) +j.sdQ(i.aH()/2) +break +case 5:r=a.d8$ +i.sdQ(r>0?k/(r+1):0) +j.sdQ(i.aH()) +break}g=h?a3-j.aH():j.aH() +s=a.a2$ +for(r=t.US,n=a4/2,f=i.a;s!=null;){e=s.b +e.toString +r.a(e) +d=a.an +switch(d.a){case 0:case 1:if(A.bxV(A.bV5(a.B),a.ao,a.aN)===(d===B.dl))c=0 +else{d=s.id +c=a4-a.Is(d==null?A.r(A.R(a0+A.p(s).l(0)+"#"+A.br(s))):d)}break +case 2:d=s.id +c=n-a.Is(d==null?A.r(A.R(a0+A.p(s).l(0)+"#"+A.br(s))):d)/2 +break +case 3:c=0 +break +case 4:if(a.B===B.ar){d=a.aZ +d.toString +m=s.NY(d,!0) +c=m!=null?q-m:0}else c=0 +break +default:c=null}if(h){d=s.id +g-=a.Ix(d==null?A.r(A.R(a0+A.p(s).l(0)+"#"+A.br(s))):d)}switch(a.B.a){case 0:e.a=new A.m(g,c) +break +case 1:e.a=new A.m(c,g) +break}if(h){d=i.b +if(d===i)A.r(A.iH(f)) +g-=d}else{d=s.id +d=a.Ix(d==null?A.r(A.R(a0+A.p(s).l(0)+"#"+A.br(s))):d) +b=i.b +if(b===i)A.r(A.iH(f)) +g+=d+b}s=e.a3$}}, +dZ(a,b){return this.A4(a,b)}, +aE(a,b){var s,r,q,p=this +if(!(p.bt>1e-10)){p.x5(a,b) +return}s=p.gq(p) +if(s.gak(s))return +s=p.b3 +r=p.cx +r===$&&A.b() +q=p.gq(p) +s.sb2(0,a.tX(r,b,new A.L(0,0,0+q.a,0+q.b),p.ga9q(),p.Y,s.a))}, +m(){this.b3.sb2(0,null) +this.akE()}, +ts(a){var s,r=this +switch(r.Y.a){case 0:return null +case 1:case 2:case 3:if(r.bt>1e-10){s=r.gq(r) +s=new A.L(0,0,0+s.a,0+s.b)}else s=null +return s}}, +f4(){return this.aiY()}} +A.aQH.prototype={ +$2(a,b){return a.aA(B.ae,b,a.gbW())}, +$S:72} +A.aQF.prototype={ +$2(a,b){return a.aA(B.ao,b,a.gc1())}, +$S:72} +A.aQG.prototype={ +$2(a,b){return a.aA(B.aF,b,a.gcs())}, +$S:72} +A.aQE.prototype={ +$2(a,b){return a.aA(B.bt,b,a.gcR())}, +$S:72} +A.b7G.prototype={} +A.alp.prototype={ +aw(a){var s,r,q +this.eS(a) +s=this.a2$ +for(r=t.US;s!=null;){s.aw(a) +q=s.b +q.toString +s=r.a(q).a3$}}, +ap(a){var s,r,q +this.eT(0) +s=this.a2$ +for(r=t.US;s!=null;){s.ap(0) +q=s.b +q.toString +s=r.a(q).a3$}}} +A.alq.prototype={} +A.Tz.prototype={ +m(){var s,r,q +for(s=this.aa5$,r=s.length,q=0;q>")) +this.ll(new A.Xy(s,c.h("Xy<0>")),b,!0,c) +return s.length===0?null:B.b.gO(s).a}, +anl(a){var s,r=this +if(!r.w&&r.x!=null){s=r.x +s.toString +a.a7r(s) +return}r.l6(a) +r.w=!1}, +f4(){var s=this.ahL() +return s+(this.y==null?" DETACHED":"")}} +A.aI8.prototype={ +$0(){this.b.$1(this.a)}, +$S:0} +A.aI9.prototype={ +$0(){var s=this.a +s.a.E(0,this.b) +s.DJ(-1)}, +$S:0} +A.a3q.prototype={ +sb2(a,b){var s=this.a +if(b==s)return +if(s!=null)if(--s.f===0)s.m() +this.a=b +if(b!=null)++b.f}, +l(a){var s=this.a +return"LayerHandle("+(s!=null?s.l(0):"DISPOSED")+")"}} +A.a7b.prototype={ +sacx(a){var s +this.hF() +s=this.ay +if(s!=null)s.m() +this.ay=a}, +m(){this.sacx(null) +this.Zz()}, +l6(a){var s=this.ay +s.toString +a.a7p(B.i,s,this.ch,this.CW)}, +ll(a,b,c){return!1}} +A.hH.prototype={ +CV(a){var s +this.ai8(a) +if(!a)return +s=this.ax +for(;s!=null;){s.CV(!0) +s=s.Q}}, +aFY(a){var s=this +s.NO() +s.l6(a) +if(s.b>0)s.CV(!0) +s.w=!1 +return a.aO()}, +m(){this.Xj() +this.a.ab(0) +this.Zz()}, +NO(){var s,r=this +r.aib() +s=r.ax +for(;s!=null;){s.NO() +r.w=r.w||s.w +s=s.Q}}, +ll(a,b,c,d){var s,r,q +for(s=this.ay,r=a.a;s!=null;s=s.as){if(s.ll(a,b,!0,d))return!0 +q=r.length +if(q!==0)return!1}return!1}, +aw(a){var s +this.ai9(a) +s=this.ax +for(;s!=null;){s.aw(a) +s=s.Q}}, +ap(a){var s +this.aia(0) +s=this.ax +for(;s!=null;){s.ap(0) +s=s.Q}this.CV(!1)}, +Kv(a,b){var s,r=this +if(!r.gzC())r.hF() +s=b.b +if(s!==0)r.DJ(s) +b.r=r +s=r.y +if(s!=null)b.aw(s) +r.rk(b) +s=b.as=r.ay +if(s!=null)s.Q=b +r.ay=b +if(r.ax==null)r.ax=b +b.e.sb2(0,b)}, +jo(){var s,r,q=this.ax +for(;q!=null;){s=q.z +r=this.z +if(s<=r){q.z=r+1 +q.jo()}q=q.Q}}, +rk(a){var s=a.z,r=this.z +if(s<=r){a.z=r+1 +a.jo()}}, +a18(a){var s,r=this +if(!r.gzC())r.hF() +s=a.b +if(s!==0)r.DJ(-s) +a.r=null +if(r.y!=null)a.ap(0)}, +Xj(){var s,r=this,q=r.ax +for(;q!=null;q=s){s=q.Q +q.Q=q.as=null +r.a18(q) +q.e.sb2(0,null)}r.ay=r.ax=null}, +l6(a){this.me(a)}, +me(a){var s=this.ax +for(;s!=null;){s.anl(a) +s=s.Q}}, +zF(a,b){}} +A.nm.prototype={ +sc5(a,b){if(!b.k(0,this.k3))this.hF() +this.k3=b}, +ll(a,b,c,d){return this.un(a,b.a4(0,this.k3),!0,d)}, +zF(a,b){var s=this.k3 +b.bi(0,s.a,s.b)}, +l6(a){var s=this,r=s.k3 +s.sjb(a.X3(r.a,r.b,t.Ff.a(s.x))) +s.me(a) +a.i2()}} +A.BD.prototype={ +ll(a,b,c,d){if(!this.k3.p(0,b))return!1 +return this.un(a,b,!0,d)}, +l6(a){var s=this,r=s.k3 +r.toString +s.sjb(a.acM(r,s.k4,t.GB.a(s.x))) +s.me(a) +a.i2()}} +A.BB.prototype={ +ll(a,b,c,d){if(!this.k3.p(0,b))return!1 +return this.un(a,b,!0,d)}, +l6(a){var s=this,r=s.k3 +r.toString +s.sjb(a.acL(r,s.k4,t.cW.a(s.x))) +s.me(a) +a.i2()}} +A.BA.prototype={ +ll(a,b,c,d){if(!this.k3.p(0,b))return!1 +return this.un(a,b,!0,d)}, +l6(a){var s=this,r=s.k3 +r.toString +s.sjb(a.acK(r,s.k4,t.L5.a(s.x))) +s.me(a) +a.i2()}} +A.L1.prototype={ +l6(a){var s=this +s.sjb(a.acN(s.bL,s.k3,t.C6.a(s.x))) +s.me(a) +a.i2()}} +A.zP.prototype={ +sd4(a,b){var s=this +if(b.k(0,s.bL))return +s.bL=b +s.b6=!0 +s.hF()}, +l6(a){var s,r,q=this +q.co=q.bL +if(!q.k3.k(0,B.i)){s=q.k3 +s=A.ng(s.a,s.b,0) +r=q.co +r.toString +s.eN(0,r) +q.co=s}q.sjb(a.Ga(q.co.a,t.qf.a(q.x))) +q.me(a) +a.i2()}, +SY(a){var s,r=this +if(r.b6){s=r.bL +s.toString +r.aK=A.yh(A.bli(s)) +r.b6=!1}s=r.aK +if(s==null)return null +return A.cL(s,a)}, +ll(a,b,c,d){var s=this.SY(b) +if(s==null)return!1 +return this.ait(a,s,!0,d)}, +zF(a,b){var s=this.co +if(s==null){s=this.bL +s.toString +b.eN(0,s)}else b.eN(0,s)}} +A.Mz.prototype={ +sTB(a,b){var s=this,r=s.bL +if(b!=r){if(b===255||r===255)s.sjb(null) +s.bL=b +s.hF()}}, +l6(a){var s,r,q,p=this +if(p.ax==null){p.sjb(null) +return}s=p.bL +s.toString +r=p.k3 +q=p.x +if(s<255)p.sjb(a.acO(s,r,t.Zr.a(q))) +else p.sjb(a.X3(r.a,r.b,t.Ff.a(q))) +p.me(a) +a.i2()}} +A.Op.prototype={ +l6(a){var s,r,q=this,p=q.k3 +p.toString +s=q.k4 +s.toString +r=q.ok +r.toString +q.sjb(a.acP(p,s,r,t.M9.a(q.x))) +q.me(a) +a.i2()}} +A.Iu.prototype={ +shg(a,b){if(!b.k(0,this.k3)){this.k3=b +this.hF()}}, +l6(a){var s=this,r=s.k3 +r.toString +s.sjb(a.acJ(r,s.k4,t.tX.a(s.x))) +s.me(a) +a.i2()}} +A.D4.prototype={ +l(a){var s=A.br(this),r=this.a!=null?"":"" +return"#"+s+"("+r+")"}} +A.Lr.prototype={ +sxE(a){var s=this,r=s.k3 +if(r===a)return +if(s.y!=null){if(r.a===s)r.a=null +a.a=s}s.k3=a}, +sc5(a,b){if(b.k(0,this.k4))return +this.k4=b +this.hF()}, +aw(a){this.ahA(a) +this.k3.a=this}, +ap(a){var s=this.k3 +if(s.a===this)s.a=null +this.ahB(0)}, +ll(a,b,c,d){return this.un(a,b.a4(0,this.k4),!0,d)}, +l6(a){var s,r=this +if(!r.k4.k(0,B.i)){s=r.k4 +r.sjb(a.Ga(A.ng(s.a,s.b,0).a,t.qf.a(r.x)))}else r.sjb(null) +r.me(a) +if(!r.k4.k(0,B.i))a.i2()}, +zF(a,b){var s +if(!this.k4.k(0,B.i)){s=this.k4 +b.bi(0,s.a,s.b)}}} +A.KC.prototype={ +SY(a){var s,r,q,p,o=this +if(o.R8){s=o.Yd() +s.toString +o.p4=A.yh(s) +o.R8=!1}if(o.p4==null)return null +r=new A.nO(new Float64Array(4)) +r.Ht(a.a,a.b,0,1) +s=o.p4.a5(0,r).a +q=s[0] +p=o.p1 +return new A.m(q-p.a,s[1]-p.b)}, +ll(a,b,c,d){var s,r=this +if(r.k3.a==null){if(r.k4)return r.un(a,b.a4(0,r.ok),!0,d) +return!1}s=r.SY(b) +if(s==null)return!1 +return r.un(a,s,!0,d)}, +Yd(){var s,r +if(this.p3==null)return null +s=this.p2 +r=A.ng(-s.a,-s.b,0) +s=this.p3 +s.toString +r.eN(0,s) +return r}, +ar1(){var s,r,q,p,o,n,m=this +m.p3=null +s=m.k3.a +if(s==null)return +r=t.KV +q=A.a([s],r) +p=A.a([m],r) +A.aDG(s,m,q,p) +o=A.brH(q) +s.zF(null,o) +r=m.p1 +o.bi(0,r.a,r.b) +n=A.brH(p) +if(n.j6(n)===0)return +n.eN(0,o) +m.p3=n +m.R8=!0}, +gzC(){return!0}, +l6(a){var s,r,q=this +if(q.k3.a==null&&!q.k4){q.p2=q.p3=null +q.R8=!0 +q.sjb(null) +return}q.ar1() +s=q.p3 +r=t.qf +if(s!=null){q.p2=q.ok +q.sjb(a.Ga(s.a,r.a(q.x))) +q.me(a) +a.i2()}else{q.p2=null +s=q.ok +q.sjb(a.Ga(A.ng(s.a,s.b,0).a,r.a(q.x))) +q.me(a) +a.i2()}q.R8=!0}, +zF(a,b){var s=this.p3 +if(s!=null)b.eN(0,s) +else{s=this.ok +b.eN(0,A.ng(s.a,s.b,0))}}} +A.Ij.prototype={ +ll(a,b,c,d){var s,r,q,p=this,o=p.un(a,b,!0,d),n=a.a +if(n.length!==0&&!0)return o +s=p.k4 +if(s!=null){r=p.ok +q=r.a +r=r.b +s=!new A.L(q,r,q+s.a,r+s.b).p(0,b)}else s=!1 +if(s)return o +if(A.cs(p.$ti.c)===A.cs(d)){o=o||!1 +n.push(new A.Ik(d.a(p.k3),b.a4(0,p.ok),d.h("Ik<0>")))}return o}} +A.aii.prototype={} +A.oO.prototype={} +A.NF.prototype={ +fR(a){if(!(a.b instanceof A.oO))a.b=new A.oO(null,null,B.i)}, +sj4(a){if(this.B===a)return +this.B=a +this.aa()}, +da(a){var s,r,q,p,o,n=this,m=n.a2$ +switch(n.B.a){case 1:case 3:s=a.d +r=A.jE(s,null) +for(q=A.l(n).h("ar.1"),p=0;m!=null;){p+=m.lO(r).a +o=m.b +o.toString +m=q.a(o).a3$}return a.bJ(new A.U(p,s)) +case 0:case 2:s=a.b +r=A.jE(null,s) +for(q=A.l(n).h("ar.1"),p=0;m!=null;){p+=m.lO(r).b +o=m.b +o.toString +m=q.a(o).a3$}return a.bJ(new A.U(s,p))}}, +ce(){var s,r,q,p,o,n,m,l=this,k=null,j="RenderBox was not laid out: ",i=t.k.a(A.J.prototype.ga9.call(l)),h=l.a2$ +switch(l.B.a){case 1:s=i.d +r=A.jE(s,k) +for(q=t.U9,p=0;h!=null;){h.cS(r,!0) +o=h.b +o.toString +q.a(o) +o.a=new A.m(p,0) +n=h.id +p+=(n==null?A.r(A.R(j+A.p(h).l(0)+"#"+A.br(h))):n).a +h=o.a3$}l.id=i.bJ(new A.U(p,s)) +break +case 3:s=i.d +r=A.jE(s,k) +for(q=t.U9,p=0;h!=null;){h.cS(r,!0) +o=h.b +o.toString +q.a(o) +n=h.id +p+=(n==null?A.r(A.R(j+A.p(h).l(0)+"#"+A.br(h))):n).a +h=o.a3$}h=l.a2$ +for(m=0;h!=null;){o=h.b +o.toString +q.a(o) +n=h.id +m+=(n==null?A.r(A.R(j+A.p(h).l(0)+"#"+A.br(h))):n).a +o.a=new A.m(p-m,0) +h=o.a3$}l.id=i.bJ(new A.U(p,s)) +break +case 2:s=i.b +r=A.jE(k,s) +for(q=t.U9,p=0;h!=null;){h.cS(r,!0) +o=h.b +o.toString +q.a(o) +o.a=new A.m(0,p) +n=h.id +p+=(n==null?A.r(A.R(j+A.p(h).l(0)+"#"+A.br(h))):n).b +h=o.a3$}l.id=i.bJ(new A.U(s,p)) +break +case 0:s=i.b +r=A.jE(k,s) +for(q=t.U9,p=0;h!=null;){h.cS(r,!0) +o=h.b +o.toString +q.a(o) +n=h.id +p+=(n==null?A.r(A.R(j+A.p(h).l(0)+"#"+A.br(h))):n).b +h=o.a3$}h=l.a2$ +for(m=0;h!=null;){o=h.b +o.toString +q.a(o) +n=h.id +m+=(n==null?A.r(A.R(j+A.p(h).l(0)+"#"+A.br(h))):n).b +o.a=new A.m(0,p-m) +h=o.a3$}l.id=i.bJ(new A.U(s,p)) +break}}, +Iu(a){var s,r,q,p=this.a2$ +for(s=t.U9,r=0;p!=null;){r=Math.max(r,A.l_(a.$1(p))) +q=p.b +q.toString +p=s.a(q).a3$}return r}, +Iv(a){var s,r,q,p=this.a2$ +for(s=t.U9,r=0;p!=null;){r+=a.$1(p) +q=p.b +q.toString +p=s.a(q).a3$}return r}, +bX(a){switch(A.bU(this.B).a){case 0:return this.Iv(new A.aQX(a)) +case 1:return this.Iu(new A.aQY(a))}}, +bQ(a){switch(A.bU(this.B).a){case 0:return this.Iv(new A.aQT(a)) +case 1:return this.Iu(new A.aQU(a))}}, +bR(a){switch(A.bU(this.B).a){case 0:return this.Iv(new A.aQV(a)) +case 1:return this.Iu(new A.aQW(a))}}, +bV(a){switch(A.bU(this.B).a){case 0:return this.Iv(new A.aQR(a)) +case 1:return this.Iu(new A.aQS(a))}}, +hS(a){return this.a9p(a)}, +aE(a,b){this.x5(a,b)}, +dZ(a,b){return this.A4(a,b)}} +A.aQX.prototype={ +$1(a){return a.aA(B.ae,this.a,a.gbW())}, +$S:22} +A.aQY.prototype={ +$1(a){return a.aA(B.ae,this.a,a.gbW())}, +$S:22} +A.aQT.prototype={ +$1(a){return a.aA(B.ao,this.a,a.gc1())}, +$S:22} +A.aQU.prototype={ +$1(a){return a.aA(B.ao,this.a,a.gc1())}, +$S:22} +A.aQV.prototype={ +$1(a){return a.aA(B.aF,this.a,a.gcs())}, +$S:22} +A.aQW.prototype={ +$1(a){return a.aA(B.aF,this.a,a.gcs())}, +$S:22} +A.aQR.prototype={ +$1(a){return a.aA(B.bt,this.a,a.gcR())}, +$S:22} +A.aQS.prototype={ +$1(a){return a.aA(B.bt,this.a,a.gcR())}, +$S:22} +A.alr.prototype={ +aw(a){var s,r,q +this.eS(a) +s=this.a2$ +for(r=t.U9;s!=null;){s.aw(a) +q=s.b +q.toString +s=r.a(q).a3$}}, +ap(a){var s,r,q +this.eT(0) +s=this.a2$ +for(r=t.U9;s!=null;){s.ap(0) +q=s.b +q.toString +s=r.a(q).a3$}}} +A.als.prototype={} +A.ajn.prototype={ +aOY(a){var s=this.a +this.a=a +return s}, +l(a){var s="#",r=A.br(this.b),q=this.a.a +return s+A.br(this)+"("+("latestEvent: "+(s+r))+", "+("annotations: [list of "+q+"]")+")"}} +A.ajo.prototype={ +goW(a){var s=this.c +return s.goW(s)}} +A.a63.prototype={ +a2F(a){var s,r,q,p,o,n,m=t._h,l=A.lo(null,null,m,t.xV) +for(s=a.a,r=s.length,q=0;q") +this.b.aJz(a.goW(a),a.d,A.oT(new A.cl(s,r),new A.aKW(),r.h("z.E"),t.Pb))}, +aQn(a,b){var s,r,q,p,o,n=this,m={} +if(a.gdR(a)!==B.c9)return +if(t.ks.b(a))return +m.a=null +if(t.PB.b(a))m.a=A.aGe() +else{s=a.gBI() +m.a=b==null?n.a.$2(a.gcJ(a),s):b}r=a.goW(a) +q=n.c +p=q.i(0,r) +if(!A.bKd(p,a))return +o=q.a +new A.aKZ(m,n,p,a,r).$0() +if(o!==0!==(q.a!==0))n.ag()}, +aQa(){new A.aKX(this).$0()}} +A.aKW.prototype={ +$1(a){return a.ga9i(a)}, +$S:396} +A.aKZ.prototype={ +$0(){var s=this +new A.aKY(s.a,s.b,s.c,s.d,s.e).$0()}, +$S:0} +A.aKY.prototype={ +$0(){var s,r,q,p,o,n=this,m=null,l=n.c +if(l==null){s=n.d +if(t.PB.b(s))return +n.b.c.n(0,n.e,new A.ajn(A.lo(m,m,t._h,t.xV),s))}else{s=n.d +if(t.PB.b(s))n.b.c.E(0,s.goW(s))}r=n.b +q=r.c.i(0,n.e) +if(q==null){l.toString +q=l}p=q.b +q.b=s +o=t.PB.b(s)?A.lo(m,m,t._h,t.xV):r.a2F(n.a.a) +r.a2h(new A.ajo(q.aOY(o),o,p,s))}, +$S:0} +A.aKX.prototype={ +$0(){var s,r,q,p,o,n,m +for(s=this.a,r=s.c,r=r.gbp(r),q=A.l(r),q=q.h("@<1>").V(q.z[1]),r=new A.bT(J.al(r.a),r.b,q.h("bT<1,2>")),q=q.z[1];r.v();){p=r.a +if(p==null)p=q.a(p) +o=p.b +n=s.arp(p) +m=p.a +p.a=n +s.a2h(new A.ajo(m,n,o,null))}}, +$S:0} +A.aKU.prototype={ +$2(a,b){var s +if(!this.a.aq(0,a))if(a.gXV()&&a.gWv(a)!=null){s=a.gWv(a) +s.toString +s.$1(this.b.cQ(this.c.i(0,a)))}}, +$S:397} +A.aKV.prototype={ +$1(a){return!this.a.aq(0,a)}, +$S:398} +A.apO.prototype={} +A.dP.prototype={ +ap(a){}, +l(a){return""}} +A.DK.prototype={ +em(a,b){var s,r=this +if(a.gih()){r.HA() +if(!a.cy){s=a.ay +s===$&&A.b() +s=!s}else s=!0 +if(s)A.btg(a,null,!0) +else if(a.db)A.bKB(a) +s=a.ch.a +s.toString +t.gY.a(s) +s.sc5(0,b) +r.a7y(s)}else{s=a.ay +s===$&&A.b() +if(s){a.ch.sb2(0,null) +a.S3(r,b)}else a.S3(r,b)}}, +a7y(a){a.en(0) +this.a.Kv(0,a)}, +gcL(a){var s +if(this.e==null)this.a5s() +s=this.e +s.toString +return s}, +a5s(){var s,r,q=this +q.c=A.bKE(q.b) +s=$.au() +r=s.a9a() +q.d=r +q.e=s.a94(r,null) +r=q.c +r.toString +q.a.Kv(0,r)}, +HA(){var s,r=this +if(r.e==null)return +s=r.c +s.toString +s.sacx(r.d.EM()) +r.e=r.d=r.c=null}, +YW(){if(this.c==null)this.a5s() +var s=this.c +if(!s.ch){s.ch=!0 +s.hF()}}, +Bk(a,b,c,d){var s,r=this +if(a.ax!=null)a.Xj() +r.HA() +r.a7y(a) +s=r.aHH(a,d==null?r.b:d) +b.$2(s,c) +s.HA()}, +tZ(a,b,c){return this.Bk(a,b,c,null)}, +aHH(a,b){return new A.DK(a,b)}, +tX(a,b,c,d,e,f){var s,r,q=this +if(e===B.n){d.$2(q,b) +return null}s=c.dq(b) +if(a){r=f==null?new A.BD(B.C,A.I(t.S,t.Q),A.ay(t.kd)):f +if(!s.k(0,r.k3)){r.k3=s +r.hF()}if(e!==r.k4){r.k4=e +r.hF()}q.Bk(r,d,b,s) +return r}else{q.aGz(s,e,s,new A.aN2(q,d,b)) +return null}}, +X2(a,b,c,d,e,f,g){var s,r,q,p=this +if(f===B.n){e.$2(p,b) +return null}s=c.dq(b) +r=d.dq(b) +if(a){q=g==null?new A.BB(B.bd,A.I(t.S,t.Q),A.ay(t.kd)):g +if(!r.k(0,q.k3)){q.k3=r +q.hF()}if(f!==q.k4){q.k4=f +q.hF()}p.Bk(q,e,b,s) +return q}else{p.aGx(r,f,s,new A.aN1(p,e,b)) +return null}}, +aOe(a,b,c,d,e,f){return this.X2(a,b,c,d,e,B.bd,f)}, +X1(a,b,c,d,e,f,g){var s,r,q,p=this +if(f===B.n){e.$2(p,b) +return null}s=c.dq(b) +r=d.dq(b) +if(a){q=g==null?new A.BA(B.bd,A.I(t.S,t.Q),A.ay(t.kd)):g +if(r!==q.k3){q.k3=r +q.hF()}if(f!==q.k4){q.k4=f +q.hF()}p.Bk(q,e,b,s) +return q}else{p.aGv(r,f,s,new A.aN0(p,e,b)) +return null}}, +aOd(a,b,c,d,e,f){return this.X1(a,b,c,d,e,B.bd,f)}, +Gb(a,b,c,d,e){var s,r=this,q=b.a,p=b.b,o=A.ng(q,p,0) +o.eN(0,c) +o.bi(0,-q,-p) +if(a){s=e==null?A.buR(null):e +s.sd4(0,o) +r.Bk(s,d,b,A.bsN(o,r.b)) +return s}else{q=r.gcL(r) +q.eo(0) +q.a5(0,o.a) +d.$2(r,b) +r.gcL(r).dg(0) +return null}}, +Nf(a,b,c,d){var s=d==null?A.blb():d +s.sTB(0,b) +s.sc5(0,a) +this.tZ(s,c,B.i) +return s}, +l(a){return"PaintingContext#"+A.cS(this)+"(layer: "+this.a.l(0)+", canvas bounds: "+this.b.l(0)+")"}} +A.aN2.prototype={ +$0(){return this.b.$2(this.a,this.c)}, +$S:0} +A.aN1.prototype={ +$0(){return this.b.$2(this.a,this.c)}, +$S:0} +A.aN0.prototype={ +$0(){return this.b.$2(this.a,this.c)}, +$S:0} +A.axz.prototype={} +A.qT.prototype={ +Bs(){var s=this.cx +if(s!=null)s.a.V3()}, +sXs(a){var s=this.e +if(s==a)return +if(s!=null)s.ap(0) +this.e=a +if(a!=null)a.aw(this)}, +aaj(){var s,r,q,p,o,n,m,l,k,j,i,h=this +try{for(o=t.TT;n=h.r,n.length!==0;){s=n +h.r=A.a([],o) +J.arT(s,new A.aNg()) +for(r=0;r")) +i.Cy(m,l,k,j.c) +B.b.I(n,i) +break}}q=J.b7(s,r) +if(q.z&&q.y===h)q.awo()}h.f=!1}for(o=h.CW,o=A.dS(o,o.r,A.l(o).c),n=o.$ti.c;o.v();){m=o.d +p=m==null?n.a(m):m +p.aaj()}}finally{h.f=!1}}, +aqS(a){try{a.$0()}finally{this.f=!0}}, +aah(){var s,r,q,p,o=this.z +B.b.fw(o,new A.aNf()) +for(s=o.length,r=0;r0){if(s.at==null){r=t.bu +s.at=new A.Ol(s.c,A.aW(r),A.I(t.S,r),A.aW(r),$.aH()) +r=s.b +if(r!=null)r.$0()}}else{r=s.at +if(r!=null){r.m() +s.at=null +r=s.d +if(r!=null)r.$0()}}}, +aal(){var s,r,q,p,o,n,m,l,k=this +if(k.at==null)return +try{p=k.ch +o=A.a8(p,!0,A.l(p).c) +B.b.fw(o,new A.aNi()) +s=o +p.ab(0) +for(p=s,n=p.length,m=0;m0;n=m){m=n-1 +r[n].eL(r[m],o)}return o}, +ts(a){return null}, +Ld(a){return null}, +Hk(){this.y.ch.F(0,this) +this.y.Bs()}, +hy(a){}, +Ca(a){var s,r=this +if(r.y.at==null)return +s=r.fr +if(s!=null&&!s.y)s.agf(a) +else if(r.gbP(r)!=null)r.gbP(r).Ca(a)}, +gJw(){var s,r=this +if(r.dx==null){s=A.pc() +r.dx=s +r.hy(s)}s=r.dx +s.toString +return s}, +wU(){this.dy=!0 +this.fr=null +this.ci(new A.aR3())}, +bY(){var s,r,q,p,o=this,n=o.y +if(n==null||n.at==null){o.dx=null +return}if(o.fr!=null){n=o.dx +n=n==null?null:n.a +s=n===!0}else s=!1 +n=o.dx +r=(n==null?null:n.k1)!=null||o.gJw().k1!=null +o.dx=null +q=o.gJw().a&&s +p=o +while(!0){if(p.gbP(p) instanceof A.J)n=r||!q +else n=!1 +if(!n)break +if(p!==o&&p.dy)break +p.dy=!0 +if(q)r=!1 +p=p.gbP(p) +if(p.dx==null){n=A.pc() +p.dx=n +p.hy(n)}q=p.dx.a +if(q&&p.fr==null)return}if(p!==o&&o.fr!=null&&o.dy)o.y.ch.E(0,o) +if(!p.dy){p.dy=!0 +n=o.y +if(n!=null){n.ch.F(0,p) +o.y.Bs()}}}, +aEw(){var s,r,q,p,o,n,m,l=this,k=null +if(l.z)return +s=l.fr +r=s==null +if(r)q=k +else{q=s.ch +if(q==null)q=k +else q=q.Q||q.y}s=r?k:s.z +p=t.pp.a(l.a20(s===!0,q===!0)) +s=t.QF +o=A.a([],s) +n=A.a([],s) +s=l.fr +r=s==null +q=r?k:s.f +m=r?k:s.r +s=r?k:s.w +p.zT(s==null?0:s,m,q,o,n)}, +a20(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d={},c=e.gJw() +d.a=c.d +d.b=!c.e&&!c.a +s=a||c.b +r=b||c.p4 +q=A.a([],t.q1) +p=c.c||!(e.gbP(e) instanceof A.J) +o=c.k1!=null +n=t.pp +m=A.I(t.ZX,n) +l=t.CZ +k=A.a([],l) +j=A.a([],t.i1) +i=c.cp +i=i==null?null:i.a!==0 +e.jv(new A.aQZ(d,e,r,s,q,k,j,c,i===!0,o,m)) +if(p)for(n=k.length,h=0;h"))) +for(i=g.b,f=i.length,h=0;h#"+A.br(this)}, +l(a){return this.f4()}, +i8(a,b,c,d){var s,r=this +if(r.gbP(r) instanceof A.J){s=r.gbP(r) +s.toString +s.i8(a,b==null?r:b,c,d)}}, +Cj(){return this.i8(B.aO,null,B.B,null)}, +w1(a){return this.i8(B.aO,null,B.B,a)}, +yv(a,b,c){return this.i8(a,null,b,c)}, +w2(a,b){return this.i8(B.aO,a,B.B,b)}, +$iaB:1} +A.aR1.prototype={ +$0(){var s=A.a([],t.F),r=this.a +s.push(A.bjZ("The following RenderObject was being processed when the exception was fired",B.a1z,r)) +s.push(A.bjZ("RenderObject",B.a1A,r)) +return s}, +$S:40} +A.aR4.prototype={ +$0(){this.b.$1(this.c.a(this.a.ga9()))}, +$S:0} +A.aR2.prototype={ +$1(a){var s +a.a6q() +s=a.cx +s===$&&A.b() +if(s)this.a.cx=!0}, +$S:21} +A.aR3.prototype={ +$1(a){a.wU()}, +$S:21} +A.aQZ.prototype={ +$1(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=a.a20(f.d,f.c) +if(e.a){B.b.ab(f.e) +B.b.ab(f.f) +B.b.ab(f.r) +if(!f.w.a)f.a.a=!0}for(s=e.gac0(),r=s.length,q=f.f,p=f.y,o=f.x,n=f.b,m=f.w,l=f.e,k=f.z,j=0;j1){b=new A.amt() +b.a0C(a3,a4,c)}else b=a2 +c=b.c +c===$&&A.b() +a=b.d +a===$&&A.b() +a0=A.jj(c,a) +e=e==null?a0:e.oY(a0) +c=b.b +if(c!=null){a1=A.jj(b.c,c) +f=f==null?a1:f.hh(a1)}c=b.a +if(c!=null){a1=A.jj(b.c,c) +g=g==null?a1:g.hh(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.p(0,i.b))i=A.Ok(a2,B.b.gO(o).gyu()) +a6.F(0,i.b) +i.dy=l +if(!i.e.k(0,e)){i.e=e +i.mb()}if(!A.bl1(i.d,a2)){i.d=null +i.mb()}i.f=f +i.r=g +for(k=k.gam(m);k.v();){j=k.gG(k) +if(j.gmC()!=null)B.b.gO(j.b).fr=i}i.aed(0,h) +a5.push(i)}}}, +zT(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.aW(t.S),c=f.y +for(s=f.x,r=s.length,q=0;q");s.v();){n=s.gG(s) +if(n instanceof A.AA){if(n.z){m=n.b +m=B.b.gO(m).fr!=null&&d.p(0,B.b.gO(m).fr.b)}else m=!1 +if(m)B.b.gO(n.b).fr=null}m=n.b +l=new A.kb(r,1,e,p) +l.Cy(r,1,e,o) +B.b.I(m,l) +n.zT(a+f.f.y1,b,a0,a1,a2)}return}k=f.aps(b,a0) +s=f.e +r=!s +if(r){if(k==null)p=e +else{p=k.d +p===$&&A.b() +if(!p.gak(p)){p=k.c +p===$&&A.b() +p=p.abH()}else p=!0}p=p===!0}else p=!1 +if(p)return +p=f.b +o=B.b.gO(p) +if(o.fr==null)o.fr=A.Ok(e,B.b.gO(p).gyu()) +j=B.b.gO(p).fr +j.sW0(s) +j.dy=f.c +j.w=a +if(a!==0){f.Ik() +s=f.f +s.sfn(0,s.y1+a)}if(k!=null){s=k.d +s===$&&A.b() +j.scw(0,s) +s=k.c +s===$&&A.b() +j.sd4(0,s) +j.f=k.b +j.r=k.a +if(r&&k.e){f.Ik() +f.f.c8(B.ls,!0)}}s=t.QF +i=A.a([],s) +f.a3k(j.f,j.r,a2,d) +for(r=J.al(c);r.v();){o=r.gG(r) +if(o instanceof A.AA){if(o.z){n=o.b +n=B.b.gO(n).fr!=null&&d.p(0,B.b.gO(n).fr.b)}else n=!1 +if(n)B.b.gO(o.b).fr=null}h=A.a([],s) +n=j.f +o.zT(0,j.r,n,i,h) +B.b.I(a2,h)}s=f.f +if(s.a)B.b.gO(p).zG(j,f.f,i) +else j.ua(0,i,s) +a1.push(j) +for(s=a2.length,r=t.g3,q=0;q1){s=new A.amt() +s.a0C(b,a,r) +r=s}else r=null +return r}, +gmC(){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.Ld(q) +if(a!=null){m.b=a +m.a=A.bwf(m.a,r.ts(q))}else m.b=A.bwf(m.b,r.ts(q)) +l=$.bCb() +l.fQ() +A.bPM(r,q,m.c,l) +m.b=A.bwg(m.b,l) +m.a=A.bwg(m.a,l)}p=B.b.gO(c) +l=m.b +l=l==null?p.grG():l.hh(p.grG()) +m.d=l +o=m.a +if(o!=null){n=o.hh(l) +if(n.gak(n)){l=m.d +l=!l.gak(l)}else l=!1 +m.e=l +if(!l)m.d=n}}} +A.ak1.prototype={} +A.alw.prototype={} +A.qU.prototype={ +k(a,b){if(b==null)return!1 +return b instanceof A.qU&&b.b===this.b}, +gu(a){return A.X(B.ay3,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.ms.prototype={ +ap(a){this.a=this.b=null +this.alg(0)}, +l(a){var s=A.i(this.b),r=this.a +r=r==null?"not laid out":"offset: "+r.l(0) +return"widget: "+s+", "+r}} +A.a87.prototype={ +fR(a){if(!(a.b instanceof A.ms))a.b=new A.ms(null,null)}, +xD(a,b){var s,r=A.a([],t.UY),q=this.a2$,p=A.l(this).h("ar.1") +while(q!=null){r.push(A.bLz(q,a,b)) +s=q.b +s.toString +q=p.a(s).a3$}return r}, +acz(a){var s,r,q,p,o,n,m=this.a2$ +for(s=a.length,r=t.ot,q=A.l(this).h("ar.1"),p=0;ph){d=c0[h].dy +d=d!=null&&d.p(0,new A.qU(i,b7))}else d=!1 +if(!d)break +b=c0[h] +d=s.b +d.toString +if(m.a(d).a!=null)b5.push(b);++h}b7=s.b +b7.toString +s=n.a(b7).a3$;++i}else{a=o.a(A.J.prototype.ga9.call(b3)) +b6.uj(b3.eM) +a0=a.b +a0=b3.aN||b3.aZ===B.ad?a0:1/0 +b6.Mn(a0,a.a) +a1=b6.yb(new A.im(j,e,B.t,!1,c,d),B.cd,B.bS) +if(a1.length===0)continue +d=B.b.gO(a1) +a2=new A.L(d.a,d.b,d.c,d.d) +a3=B.b.gO(a1).e +for(d=A.ab(a1),c=d.h("kb<1>"),a=new A.kb(a1,1,b4,c),a.Cy(a1,1,b4,d.c),a=new A.c2(a,a.gt(a),c.h("c2")),c=c.h("av.E");a.v();){d=a.d +if(d==null)d=c.a(d) +a2=a2.oY(new A.L(d.a,d.b,d.c,d.d)) +a3=d.e}d=a2.a +c=Math.max(0,d) +a=a2.b +a0=Math.max(0,a) +d=Math.min(a2.c-d,o.a(A.J.prototype.ga9.call(b3)).b) +a=Math.min(a2.d-a,o.a(A.J.prototype.ga9.call(b3)).d) +a4=Math.floor(c)-4 +a5=Math.floor(a0)-4 +d=Math.ceil(c+d)+4 +a=Math.ceil(a0+a)+4 +a6=new A.L(a4,a5,d,a) +a7=A.pc() +a8=k+1 +a7.k2=new A.yq(k,b4) +a7.e=!0 +a7.bL=l +a0=f.b +b7=a0==null?b7:a0 +a7.RG=new A.dT(b7,f.f) +b7=b8.r +if(b7!=null){a9=b7.hh(a6) +if(a9.a>=a9.c||a9.b>=a9.d)b7=!(a4>=d||a5>=a) +else b7=!1 +a7.c8(B.ls,b7)}b0=A.b6("newChild") +b7=b3.h1 +d=b7==null?b4:b7.a!==0 +if(d===!0){b7.toString +d=new A.cl(b7,A.l(b7).h("cl<1>")) +b1=d.gam(d) +if(!b1.v())A.r(A.ch()) +b7=b7.E(0,b1.gG(b1)) +b7.toString +if(b0.b!==b0)A.r(A.qJ(b0.a)) +b0.b=b7}else{b2=new A.kR() +b7=A.Ok(b2,b3.az_(b2)) +if(b0.b!==b0)A.r(A.qJ(b0.a)) +b0.b=b7}if(b7===b0)A.r(A.iH(b0.a)) +J.bpL(b7,a7) +if(!b7.e.k(0,a6)){b7.e=a6 +b7.mb()}b7=b0.b +if(b7===b0)A.r(A.iH(b0.a)) +d=b7.a +d.toString +r.n(0,d,b7) +b7=b0.b +if(b7===b0)A.r(A.iH(b0.a)) +b5.push(b7) +k=a8 +l=a3}}b3.h1=r +b8.ua(0,b5,b9)}, +az_(a){return new A.aR6(this,a)}, +wU(){this.OV() +this.h1=null}} +A.aR9.prototype={ +$1(a){return a.y=null}, +$S:403} +A.aRa.prototype={ +$1(a){var s=a.x +s===$&&A.b() +return s.c!==B.fX}, +$S:404} +A.aR8.prototype={ +$2(a,b){return new A.U(a.aA(B.ae,1/0,a.gbW()),0)}, +$S:130} +A.aR7.prototype={ +$2(a,b){return new A.U(a.aA(B.ao,1/0,a.gc1()),0)}, +$S:130} +A.aR5.prototype={ +$1(a){var s,r +if(a instanceof A.o6){s=a.b +$label0$0:{if(B.l4===s||B.l5===s||B.l6===s){r=!1 +break $label0$0}if(B.l7===s||B.l8===s||B.e3===s){r=!0 +break $label0$0}r=null}}else r=!0 +return r}, +$S:99} +A.aR6.prototype={ +$0(){var s=this.a,r=s.h1.i(0,this.b) +r.toString +s.w2(s,r.e)}, +$S:0} +A.rK.prototype={ +gj(a){var s=this.x +s===$&&A.b() +return s}, +az0(){var s=this,r=s.a2_(),q=s.x +q===$&&A.b() +if(q.k(0,r))return +s.x=r +s.ag()}, +a2_(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=c.d +if(b==null||c.e==null)return B.NL +s=b.a +r=c.e.a +b=c.b +q=b.Iz(new A.bW(s,B.t)) +p=s===r?q:b.Iz(new A.bW(r,B.t)) +o=b.B +n=o.x +n.toString +m=s>r!==(B.ab===n) +l=A.ng(c.gjF().a,c.gjF().b,0) +l.j6(l) +k=A.dq(B.t,s,r,!1) +j=A.a([],t.AO) +for(b=b.rv(k),n=b.length,i=0;io!==sp?m.a:e}else if(f!=null)l=n.ae.a +if(i!==sp!==s>p){l=sp?m.a:f}else if(e!=null)l=n.ap +if(s!==p&&i!==s>p){k=h.z5(e) +h.e=i?k.a:k.b}}l=g}s=l==null?n:l}l=h.PN(s) +if(b)h.e=l +else h.d=l +s=l.a +p=h.a +if(s===p.b)return B.bI +if(s===p.a)return B.c0 +return A.aTG(h.gjF(),q)}, +PN(a){var s,r=a.a,q=this.a,p=q.b +if(r<=p)s=r===p&&a.b===B.t +else s=!0 +if(s)return new A.bW(p,B.aT) +q=q.a +if(ro&&q.a.a>o)return B.bI}m.d=s +m.e=q.a +return B.bJ}, +z5(a){var s,r,q,p,o=this.b +o.uz(t.k.a(A.J.prototype.ga9.call(o))) +s=o.B.b.a.a.rA(a) +r=A.b6("start") +q=A.b6("end") +o=a.a +p=s.b +if(o>p)r.b=q.b=new A.bW(o,B.t) +else{r.b=new A.bW(s.a,B.t) +q.b=new A.bW(p,B.aT)}o=r.aH() +return new A.al7(q.aH(),o)}, +at1(a,b,c){var s,r,q,p,o,n,m,l=this,k=l.b,j=k.cl(0,null) +if(j.j6(j)===0)switch(c){case B.ln:case B.ih:return B.c0 +case B.lo:case B.ig:return B.bI}s=A.cL(j,new A.m(a,0)).a +switch(c){case B.ln:case B.lo:if(b){k=l.e +k.toString +r=k}else{k=l.d +k.toString +r=k}q=l.avw(r,!1,s) +p=q.a +o=q.b +break +case B.ig:case B.ih:n=l.e +if(n==null){n=new A.bW(l.a.b,B.aT) +l.e=n +r=n}else r=n +n=l.d +if(n==null){l.d=r +m=r}else m=n +p=k.hq(new A.m(s,k.Iz(b?r:m).b-k.B.gf3()/2)) +o=B.bJ +break +default:p=null +o=null}if(b)l.e=p +else l.d=p +return o}, +atu(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.bW(l.a,B.t):new A.bW(l.b,B.aT) +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.bI +l=!a +if(l&&s.a===m.a.a)return B.c0 +switch(c){case B.pD:l=m.a +q=m.RQ(s,a,new A.Bn(B.c.S(m.c,l.a,l.b))) +p=B.bJ +break +case B.asc:l=m.b.B +o=l.f +o.toString +q=m.RQ(s,a,new A.FQ(o,l.b.a.a).gac4()) +p=B.bJ +break +case B.asd:q=m.axk(s,a,new A.Da(m)) +p=B.bJ +break +case B.ase:o=m.a +n=o.a +o=o.b +q=m.RQ(s,a,new A.wX(B.c.S(m.c,n,o))) +if(a&&q.a===o)p=B.bI +else p=l&&q.a===n?B.c0:B.bJ +break +default:p=null +q=null}if(b)m.e=q +else m.d=q +return p}, +RQ(a,b,c){var s,r=a.a +if(b){r=c.iS(r) +s=r==null?this.a.b:r}else{r=c.iQ(r-1) +s=r==null?this.a.a:r}return new A.bW(s,B.t)}, +axk(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.iu +r=o.a.a +s=new A.Bn(o.c).iQ(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.iS(q) +p=s==null?o.a.b:s}else{s=c.iQ(q) +p=s==null?o.a.a:s}return new A.bW(p,B.t)}, +avw(a,b,c){var s,r,q,p,o,n=this,m=n.b,l=m.B.zU(),k=m.rw(a,B.W),j=l.length,i=j-1 +for(s=k.b,r=0;rs){i=J.bpt(q) +break}}if(b&&i===l.length-1)p=new A.bW(n.a.b,B.aT) +else if(!b&&i===0)p=new A.bW(n.a.a,B.t) +else p=n.PN(m.hq(new A.m(c,l[b?i+1:i-1].gqD()))) +m=p.a +j=n.a +if(m===j.a)o=B.c0 +else o=m===j.b?B.bI:B.bJ +return new A.aS(p,o,t.UH)}, +azC(a){var s,r,q,p,o=this +if(o.d==null||o.e==null)return!1 +s=A.b6("currentStart") +r=A.b6("currentEnd") +q=o.d +q.toString +p=o.e +p.toString +if(A.bmz(q,p)>0){s.b=q +r.b=p}else{s.b=p +r.b=q}return A.bmz(s.aH(),a)>=0&&A.bmz(r.aH(),a)<=0}, +cl(a,b){var s=A.ng(this.gjF().a,this.gjF().b,0) +s.eN(0,this.b.cl(0,b)) +return s}, +rf(a,b){if(this.b.y==null)return}, +gjF(){var s,r,q,p,o,n,m=this,l=m.y +if(l==null){l=m.b +s=m.a +r=s.a +q=l.rv(A.dq(B.t,r,s.b,!1)) +if(q.length!==0){l=B.b.gO(q) +p=new A.L(l.a,l.b,l.c,l.d) +for(o=1;o=q)return r.a +s=this.P_(a) +r=this.D +q=r.a +if(!(q>=1/0))return A.V(s,q,r.b) +return s}, +bQ(a){var s,r=this.D,q=r.b +if(q<1/0&&r.a>=q)return r.a +s=this.OY(a) +r=this.D +q=r.a +if(!(q>=1/0))return A.V(s,q,r.b) +return s}, +bR(a){var s,r=this.D,q=r.d +if(q<1/0&&r.c>=q)return r.c +s=this.OZ(a) +r=this.D +q=r.c +if(!(q>=1/0))return A.V(s,q,r.d) +return s}, +bV(a){var s,r=this.D,q=r.d +if(q<1/0&&r.c>=q)return r.c +s=this.OX(a) +r=this.D +q=r.c +if(!(q>=1/0))return A.V(s,q,r.d) +return s}, +ce(){var s=this,r=t.k.a(A.J.prototype.ga9.call(s)),q=s.k3$,p=s.D +if(q!=null){q.cS(p.xg(r),!0) +q=s.k3$ +s.id=q.gq(q)}else s.id=p.xg(r).bJ(B.y)}, +da(a){var s=this.k3$,r=this.D +if(s!=null)return s.lO(r.xg(a)) +else return r.xg(a).bJ(B.y)}} +A.a89.prototype={ +saMz(a,b){if(this.D===b)return +this.D=b +this.aa()}, +saMy(a,b){if(this.ac===b)return +this.ac=b +this.aa()}, +a33(a){var s,r,q=a.a,p=a.b +p=p<1/0?p:A.V(this.D,q,p) +s=a.c +r=a.d +return new A.aN(q,p,s,r<1/0?r:A.V(this.ac,s,r))}, +Dn(a,b){var s=this.k3$ +if(s!=null)return a.bJ(b.$2(s,this.a33(a))) +return this.a33(a).bJ(B.y)}, +da(a){return this.Dn(a,A.t1())}, +ce(){this.id=this.Dn(t.k.a(A.J.prototype.ga9.call(this)),A.vY())}} +A.NE.prototype={ +sahb(a){if(a==this.D)return +this.D=a +this.aa()}, +saha(a){return}, +bX(a){return this.bQ(a)}, +bQ(a){var s=this.k3$ +if(s==null)return 0 +return A.aQQ(s.aA(B.ao,a,s.gc1()),this.D)}, +bR(a){var s,r=this +if(r.k3$==null)return 0 +if(!isFinite(a))a=r.bQ(1/0) +s=r.k3$ +return A.aQQ(s.aA(B.aF,a,s.gcs()),r.ac)}, +bV(a){var s,r=this +if(r.k3$==null)return 0 +if(!isFinite(a))a=r.bQ(1/0) +s=r.k3$ +return A.aQQ(s.aA(B.bt,a,s.gcR()),r.ac)}, +Dn(a,b){var s=this.k3$ +if(s!=null){if(!(a.a>=a.b))a=a.Gv(A.aQQ(s.aA(B.ao,a.d,s.gc1()),this.D)) +s=this.k3$ +s.toString +return b.$2(s,a)}else return new A.U(A.V(0,a.a,a.b),A.V(0,a.c,a.d))}, +da(a){return this.Dn(a,A.t1())}, +ce(){this.id=this.Dn(t.k.a(A.J.prototype.ga9.call(this)),A.vY())}} +A.a8b.prototype={ +gpG(){return this.k3$!=null&&this.D>0}, +gih(){return this.k3$!=null&&this.D>0}, +si_(a,b){var s,r,q,p,o=this +if(o.ac===b)return +s=o.k3$!=null +r=s&&o.D>0 +q=o.D +o.ac=b +p=B.e.bg(A.V(b,0,1)*255) +o.D=p +if(r!==(s&&p>0))o.r0() +o.abY() +if(q!==0!==(o.D!==0)&&!0)o.bY()}, +sKu(a){return}, +xQ(a){return this.D>0}, +BH(a){var s=a==null?A.blb():a +s.sTB(0,this.D) +return s}, +aE(a,b){if(this.k3$==null||this.D===0)return +this.oE(a,b)}, +jv(a){var s,r=this.k3$ +if(r!=null)s=this.D!==0||!1 +else s=!1 +if(s){r.toString +a.$1(r)}}} +A.Nt.prototype={ +gih(){if(this.k3$!=null){var s=this.Ve$ +s.toString}else s=!1 +return s}, +BH(a){var s=a==null?A.blb():a +s.sTB(0,this.AC$) +return s}, +si_(a,b){var s=this,r=s.vf$ +if(r===b)return +if(s.y!=null&&r!=null)r.H(0,s.gK1()) +s.vf$=b +if(s.y!=null)b.P(0,s.gK1()) +s.T8()}, +sKu(a){if(a===this.Vf$)return +this.Vf$=a +this.bY()}, +T8(){var s,r=this,q=r.AC$,p=r.vf$ +p=r.AC$=B.e.bg(A.V(p.gj(p),0,1)*255) +if(q!==p){s=r.Ve$ +p=p>0 +r.Ve$=p +if(r.k3$!=null&&s!==p)r.r0() +r.abY() +if(q===0||r.AC$===0)r.bY()}}, +xQ(a){var s=this.vf$ +return s.gj(s)>0}, +jv(a){var s,r=this.k3$ +if(r!=null)if(this.AC$===0){s=this.Vf$ +s.toString}else s=!0 +else s=!1 +if(s){r.toString +a.$1(r)}}} +A.Ns.prototype={} +A.a7Y.prototype={ +shg(a,b){if(this.D.k(0,b))return +this.D=b +this.b_()}, +suR(a){if(this.ac===a)return +this.ac=a +this.b_()}, +gpG(){return this.k3$!=null}, +aE(a,b){var s,r,q,p=this +if(p.k3$!=null){s=t.hh +if(s.a(A.J.prototype.gb2.call(p,p))==null)p.ch.sb2(0,A.bpY(null)) +s.a(A.J.prototype.gb2.call(p,p)).shg(0,p.D) +r=s.a(A.J.prototype.gb2.call(p,p)) +q=p.ac +if(q!==r.k4){r.k4=q +r.hF()}s=s.a(A.J.prototype.gb2.call(p,p)) +s.toString +a.tZ(s,A.ih.prototype.gil.call(p),b)}else p.ch.sb2(0,null)}} +A.JD.prototype={ +P(a,b){return null}, +H(a,b){return null}, +l(a){return"CustomClipper"}} +A.uV.prototype={ +NW(a){return this.b.eI(new A.L(0,0,0+a.a,0+a.b),this.c)}, +Os(a){if(A.p(a)!==B.ayp)return!0 +t.jH.a(a) +return!a.b.k(0,this.b)||a.c!=this.c}} +A.H7.prototype={ +szS(a){var s,r=this,q=r.D +if(q==a)return +r.D=a +s=a==null +if(s||q==null||A.p(a)!==A.p(q)||a.Os(q))r.zb() +if(r.y!=null){if(q!=null)q.H(0,r.gIX()) +if(!s)a.P(0,r.gIX())}}, +aw(a){var s +this.yM(a) +s=this.D +if(s!=null)s.P(0,this.gIX())}, +ap(a){var s=this.D +if(s!=null)s.H(0,this.gIX()) +this.uq(0)}, +zb(){this.ac=null +this.b_() +this.bY()}, +smB(a){if(a!==this.az){this.az=a +this.b_()}}, +ce(){var s=this,r=s.id!=null?s.gq(s):null +s.yK() +if(!J.j(r,s.gq(s)))s.ac=null}, +qx(){var s,r=this +if(r.ac==null){s=r.D +s=s==null?null:s.NW(r.gq(r)) +r.ac=s==null?r.gCN():s}}, +ts(a){var s,r=this +switch(r.az.a){case 0:return null +case 1:case 2:case 3:if(r.D==null)s=null +else{s=r.gq(r) +s=new A.L(0,0,0+s.a,0+s.b)}if(s==null){s=r.gq(r) +s=new A.L(0,0,0+s.a,0+s.b)}return s}}, +m(){this.eB=null +this.iU()}} +A.a81.prototype={ +gCN(){var s=this.gq(this) +return new A.L(0,0,0+s.a,0+s.b)}, +dm(a,b){var s=this +if(s.D!=null){s.qx() +if(!s.ac.p(0,b))return!1}return s.qk(a,b)}, +aE(a,b){var s,r,q=this,p=q.k3$ +if(p!=null){s=q.ch +if(q.az!==B.n){q.qx() +p=q.cx +p===$&&A.b() +r=q.ac +r.toString +s.sb2(0,a.tX(p,b,r,A.ih.prototype.gil.call(q),q.az,t.EM.a(s.a)))}else{a.em(p,b) +s.sb2(0,null)}}else q.ch.sb2(0,null)}} +A.a80.prototype={ +sTR(a,b){if(this.dd.k(0,b))return +this.dd=b +this.zb()}, +scz(a){if(this.ea==a)return +this.ea=a +this.zb()}, +gCN(){var s=this.dd,r=this.gq(this) +return s.e1(new A.L(0,0,0+r.a,0+r.b))}, +dm(a,b){var s=this +if(s.D!=null){s.qx() +if(!s.ac.p(0,b))return!1}return s.qk(a,b)}, +aE(a,b){var s,r,q=this,p=q.k3$ +if(p!=null){s=q.ch +if(q.az!==B.n){q.qx() +p=q.cx +p===$&&A.b() +r=q.ac +s.sb2(0,a.X2(p,b,new A.L(r.a,r.b,r.c,r.d),r,A.ih.prototype.gil.call(q),q.az,t.eG.a(s.a)))}else{a.em(p,b) +s.sb2(0,null)}}else q.ch.sb2(0,null)}} +A.a8_.prototype={ +gCN(){var s=$.au().d1(),r=this.gq(this) +s.qA(new A.L(0,0,0+r.a,0+r.b)) +return s}, +dm(a,b){var s=this +if(s.D!=null){s.qx() +if(!s.ac.p(0,b))return!1}return s.qk(a,b)}, +aE(a,b){var s,r,q,p=this,o=p.k3$ +if(o!=null){s=p.ch +if(p.az!==B.n){p.qx() +o=p.cx +o===$&&A.b() +r=p.gq(p) +q=p.ac +q.toString +s.sb2(0,a.X1(o,b,new A.L(0,0,0+r.a,0+r.b),q,A.ih.prototype.gil.call(p),p.az,t.JG.a(s.a)))}else{a.em(o,b) +s.sb2(0,null)}}else p.ch.sb2(0,null)}} +A.TH.prototype={ +sfn(a,b){if(this.dd===b)return +this.dd=b +this.b_()}, +sbT(a,b){if(this.ea.k(0,b))return +this.ea=b +this.b_()}, +saf(a,b){if(this.fe.k(0,b))return +this.fe=b +this.b_()}, +hy(a){this.jA(a) +a.sfn(0,this.dd)}} +A.a8c.prototype={ +scH(a,b){if(this.vd===b)return +this.vd=b +this.zb()}, +sTR(a,b){if(J.j(this.Vc,b))return +this.Vc=b +this.zb()}, +gCN(){var s,r,q=this,p=q.gq(q),o=0+p.a +p=0+p.b +switch(q.vd.a){case 0:s=q.Vc +if(s==null)s=B.aG +return s.e1(new A.L(0,0,o,p)) +case 1:s=(o-0)/2 +r=(p-0)/2 +return new A.lx(0,0,o,p,s,r,s,r,s,r,s,r,s===r)}}, +dm(a,b){var s=this +if(s.D!=null){s.qx() +if(!s.ac.p(0,b))return!1}return s.qk(a,b)}, +aE(a,b){var s,r,q,p,o,n,m,l,k,j=this +if(j.k3$==null){j.ch.sb2(0,null) +return}j.qx() +s=j.ac.dq(b) +r=$.au() +q=r.d1() +q.fT(s) +p=a.gcL(a) +o=j.dd +if(o!==0&&!0){n=j.ea +m=j.fe +p.xc(q,n,o,(m.gj(m)>>>24&255)!==255)}l=j.az===B.f8 +if(!l){r=r.bk() +r.saf(0,j.fe) +p.d5(s,r)}r=j.cx +r===$&&A.b() +o=j.gq(j) +n=j.ac +n.toString +m=j.ch +k=t.eG.a(m.a) +m.sb2(0,a.X2(r,b,new A.L(0,0,0+o.a,0+o.b),n,new A.aRb(j,l),j.az,k))}} +A.aRb.prototype={ +$2(a,b){var s,r +if(this.b){s=a.gcL(a) +r=$.au().bk() +r.saf(0,this.a.fe) +s.Ap(r)}this.a.oE(a,b)}, +$S:16} +A.a8d.prototype={ +gCN(){var s=$.au().d1(),r=this.gq(this) +s.qA(new A.L(0,0,0+r.a,0+r.b)) +return s}, +dm(a,b){var s=this +if(s.D!=null){s.qx() +if(!s.ac.p(0,b))return!1}return s.qk(a,b)}, +aE(a,b){var s,r,q,p,o,n,m,l,k=this +if(k.k3$==null){k.ch.sb2(0,null) +return}k.qx() +s=k.ac.dq(b) +r=a.gcL(a) +q=k.dd +if(q!==0&&!0){p=k.ea +o=k.fe +r.xc(s,p,q,(o.gj(o)>>>24&255)!==255)}n=k.az===B.f8 +if(!n){q=$.au().bk() +q.saf(0,k.fe) +r.e3(s,q)}q=k.cx +q===$&&A.b() +p=k.gq(k) +o=k.ac +o.toString +m=k.ch +l=t.JG.a(m.a) +m.sb2(0,a.X1(q,b,new A.L(0,0,0+p.a,0+p.b),o,new A.aRc(k,n),k.az,l))}} +A.aRc.prototype={ +$2(a,b){var s,r +if(this.b){s=a.gcL(a) +r=$.au().bk() +r.saf(0,this.a.fe) +s.Ap(r)}this.a.oE(a,b)}, +$S:16} +A.a0D.prototype={ +J(){return"DecorationPosition."+this.b}} +A.a82.prototype={ +sbA(a){var s,r=this +if(a.k(0,r.ac))return +s=r.D +if(s!=null)s.m() +r.D=null +r.ac=a +r.b_()}, +scJ(a,b){if(b===this.az)return +this.az=b +this.b_()}, +suX(a){if(a.k(0,this.cr))return +this.cr=a +this.b_()}, +ap(a){var s=this,r=s.D +if(r!=null)r.m() +s.D=null +s.uq(0) +s.b_()}, +lo(a){var s=this +return s.ac.VJ(s.gq(s),a,s.cr.d)}, +aE(a,b){var s,r,q=this +if(q.D==null)q.D=q.ac.A1(q.geG()) +s=q.cr.Uh(q.gq(q)) +if(q.az===B.dH){r=q.D +r.toString +r.kD(a.gcL(a),b,s) +if(q.ac.gMg())a.YW()}q.oE(a,b) +if(q.az===B.v6){r=q.D +r.toString +r.kD(a.gcL(a),b,s) +if(q.ac.gMg())a.YW()}}} +A.a8t.prototype={ +sBe(a,b){return}, +sjI(a){var s=this +if(J.j(s.ac,a))return +s.ac=a +s.b_() +s.bY()}, +scz(a){var s=this +if(s.az==a)return +s.az=a +s.b_() +s.bY()}, +gpG(){return this.k3$!=null&&this.ek!=null}, +sd4(a,b){var s,r=this +if(J.j(r.eB,b))return +s=new A.bQ(new Float64Array(16)) +s.c6(b) +r.eB=s +r.b_() +r.bY()}, +svm(a){var s,r,q=this,p=q.ek +if(p==a)return +s=q.k3$!=null +r=s&&p!=null +q.ek=a +if(r!==(s&&a!=null))q.r0() +q.b_()}, +gQn(){var s,r,q=this,p=q.ac,o=p==null?null:p.L(q.az) +if(o==null)return q.eB +s=new A.bQ(new Float64Array(16)) +s.fQ() +r=o.Kt(q.gq(q)) +s.bi(0,r.a,r.b) +p=q.eB +p.toString +s.eN(0,p) +s.bi(0,-r.a,-r.b) +return s}, +dm(a,b){return this.dZ(a,b)}, +dZ(a,b){var s=this.cr?this.gQn():null +return a.Tz(new A.aRp(this),b,s)}, +aE(a2,a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1=this +if(a1.k3$!=null){s=a1.gQn() +s.toString +if(a1.ek==null){r=A.aK5(s) +if(r==null){q=s.a +p=q[0] +o=q[5] +n=q[1] +m=q[4] +l=p*o-n*m +k=q[6] +j=q[2] +i=p*k-j*m +h=q[7] +g=q[3] +f=p*h-g*m +e=n*k-j*o +d=n*h-g*o +c=j*h-g*k +k=q[8] +g=q[9] +h=q[10] +j=q[11] +b=-(g*c-h*d+j*e)*q[12]+(k*c-h*f+j*i)*q[13]-(k*d-g*f+j*l)*q[14]+(k*e-g*i+h*l)*q[15] +if(b===0||!isFinite(b)){a1.ch.sb2(0,null) +return}q=a1.cx +q===$&&A.b() +p=A.ih.prototype.gil.call(a1) +o=a1.ch +n=o.a +o.sb2(0,a2.Gb(q,a3,s,p,n instanceof A.zP?n:null))}else{a1.oE(a2,a3.U(0,r)) +a1.ch.sb2(0,null)}}else{q=a3.a +p=a3.b +a=A.ng(q,p,0) +a.eN(0,s) +a.bi(0,-q,-p) +p=a1.ek +p.toString +a0=A.bs9(a.a,p) +s=a1.ch +q=s.a +if(q instanceof A.L1){if(!a0.k(0,q.bL)){q.bL=a0 +q.hF()}}else s.sb2(0,new A.L1(a0,B.i,A.I(t.S,t.Q),A.ay(t.kd))) +s=s.a +s.toString +a2.tZ(s,A.ih.prototype.gil.call(a1),a3)}}}, +eL(a,b){var s=this.gQn() +s.toString +b.eN(0,s)}} +A.aRp.prototype={ +$2(a,b){return this.a.HN(a,b)}, +$S:17} +A.a85.prototype={ +saQ7(a){var s=this +if(s.D.k(0,a))return +s.D=a +s.b_() +s.bY()}, +dm(a,b){return this.dZ(a,b)}, +dZ(a,b){var s=this,r=s.ac?new A.m(s.D.a*s.gq(s).a,s.D.b*s.gq(s).b):null +return a.oP(new A.aQJ(s),r,b)}, +aE(a,b){var s=this +if(s.k3$!=null)s.oE(a,new A.m(b.a+s.D.a*s.gq(s).a,b.b+s.D.b*s.gq(s).b))}, +eL(a,b){var s=this +b.bi(0,s.D.a*s.gq(s).a,s.D.b*s.gq(s).b)}} +A.aQJ.prototype={ +$2(a,b){return this.a.HN(a,b)}, +$S:17} +A.a8e.prototype={ +Ed(a){return new A.U(A.V(1/0,a.a,a.b),A.V(1/0,a.c,a.d))}, +p9(a,b){var s,r=this,q=null +if(t.pY.b(a)){s=r.a3 +return s==null?q:s.$1(a)}if(t.n2.b(a))return q +if(t.oN.b(a)){s=r.dt +return s==null?q:s.$1(a)}if(t.XA.b(a))return q +if(t.Ko.b(a)){s=r.dd +return s==null?q:s.$1(a)}if(t.w5.b(a)){s=r.ea +return s==null?q:s.$1(a)}if(t.DB.b(a))return q +if(t.WQ.b(a))return q +if(t.ks.b(a)){s=r.pT +return s==null?q:s.$1(a)}}} +A.NG.prototype={ +dm(a,b){return this.aj1(a,b)&&!0}, +p9(a,b){var s=this.dt +if(s!=null&&t.XA.b(a))return s.$1(a)}, +ga9i(a){return this.dd}, +gXV(){return this.ea}, +aw(a){this.yM(a) +this.ea=!0}, +ap(a){this.ea=!1 +this.uq(0)}, +Ed(a){return new A.U(A.V(1/0,a.a,a.b),A.V(1/0,a.c,a.d))}, +$ioW:1, +gWu(a){return this.h0}, +gWv(a){return this.ei}} +A.a8h.prototype={ +gih(){return!0}} +A.NB.prototype={ +sab3(a){if(a===this.D)return +this.D=a +this.bY()}, +sVK(a){return}, +dm(a,b){return!this.D&&this.qk(a,b)}, +jv(a){this.yJ(a)}, +hy(a){var s +this.jA(a) +if(this.D)s=!0 +else s=!1 +a.b=s}} +A.NH.prototype={ +sMD(a){var s=this +if(a===s.D)return +s.D=a +s.aa() +s.FL()}, +bX(a){if(this.D)return 0 +return this.P_(a)}, +bQ(a){if(this.D)return 0 +return this.OY(a)}, +bR(a){if(this.D)return 0 +return this.OZ(a)}, +bV(a){if(this.D)return 0 +return this.OX(a)}, +hS(a){if(this.D)return null +return this.akH(a)}, +goB(){return this.D}, +da(a){if(this.D)return new A.U(A.V(0,a.a,a.b),A.V(0,a.c,a.d)) +return this.aj0(a)}, +xT(){this.ZR()}, +ce(){var s,r=this +if(r.D){s=r.k3$ +if(s!=null)s.ij(t.k.a(A.J.prototype.ga9.call(r)))}else r.yK()}, +dm(a,b){return!this.D&&this.qk(a,b)}, +xQ(a){return!this.D}, +aE(a,b){if(this.D)return +this.oE(a,b)}, +jv(a){if(this.D)return +this.yJ(a)}} +A.Nr.prototype={ +sa7j(a){if(this.D===a)return +this.D=a +this.bY()}, +sVK(a){return}, +dm(a,b){var s=this +return s.D?s.gq(s).p(0,b):s.qk(a,b)}, +jv(a){this.yJ(a)}, +hy(a){var s +this.jA(a) +if(this.D)s=!0 +else s=!1 +a.b=s}} +A.r3.prototype={ +saQp(a){if(A.WW(a,this.a3))return +this.a3=a +this.bY()}, +stU(a){var s,r=this +if(J.j(r.h0,a))return +s=r.h0 +r.h0=a +if(a!=null!==(s!=null))r.bY()}, +svB(a){var s,r=this +if(J.j(r.dt,a))return +s=r.dt +r.dt=a +if(a!=null!==(s!=null))r.bY()}, +sach(a){var s,r=this +if(J.j(r.ei,a))return +s=r.ei +r.ei=a +if(a!=null!==(s!=null))r.bY()}, +saco(a){var s,r=this +if(J.j(r.dd,a))return +s=r.dd +r.dd=a +if(a!=null!==(s!=null))r.bY()}, +hy(a){var s,r=this +r.jA(a) +if(r.h0!=null){s=r.a3 +s=s==null||s.p(0,B.fY)}else s=!1 +if(s)a.stU(r.h0) +if(r.dt!=null){s=r.a3 +s=s==null||s.p(0,B.NN)}else s=!1 +if(s)a.svB(r.dt) +if(r.ei!=null){s=r.a3 +if(s==null||s.p(0,B.im))a.sMT(r.gazq()) +s=r.a3 +if(s==null||s.p(0,B.il))a.sMS(r.gazo())}if(r.dd!=null){s=r.a3 +if(s==null||s.p(0,B.ij))a.sMU(r.gazs()) +s=r.a3 +if(s==null||s.p(0,B.ik))a.sMR(r.gazm())}}, +azp(){var s,r,q,p=this +if(p.ei!=null){s=p.gq(p).a*-0.8 +r=p.ei +r.toString +q=p.gq(p).mr(B.i) +q=A.cL(p.cl(0,null),q) +r.$1(new A.oA(null,new A.m(s,0),s,q))}}, +azr(){var s,r,q,p=this +if(p.ei!=null){s=p.gq(p).a*0.8 +r=p.ei +r.toString +q=p.gq(p).mr(B.i) +q=A.cL(p.cl(0,null),q) +r.$1(new A.oA(null,new A.m(s,0),s,q))}}, +azt(){var s,r,q,p=this +if(p.dd!=null){s=p.gq(p).b*-0.8 +r=p.dd +r.toString +q=p.gq(p).mr(B.i) +q=A.cL(p.cl(0,null),q) +r.$1(new A.oA(null,new A.m(0,s),s,q))}}, +azn(){var s,r,q,p=this +if(p.dd!=null){s=p.gq(p).b*0.8 +r=p.dd +r.toString +q=p.gq(p).mr(B.i) +q=A.cL(p.cl(0,null),q) +r.$1(new A.oA(null,new A.m(0,s),s,q))}}} +A.NL.prototype={ +sacF(a){var s=this +if(s.D===a)return +s.D=a +s.a6k(a) +s.bY()}, +saGN(a){if(this.ac===a)return +this.ac=a +this.bY()}, +saIR(a){if(this.az===a)return +this.az=a +this.bY()}, +saIN(a){if(this.cr===a)return +this.cr=a +this.bY()}, +saFN(a){return}, +a6k(a){var s=this,r=a.go +r=a.fy +r=r==null?null:new A.dT(r,B.aS) +s.ek=r +r=a.k1 +r=a.id +r=r==null?null:new A.dT(r,B.aS) +s.jh=r +s.hX=null +s.hf=null +r=a.p2 +r=a.p1 +r=r==null?null:new A.dT(r,B.aS) +s.hY=r}, +scz(a){if(this.hZ==a)return +this.hZ=a +this.bY()}, +jv(a){if(this.cr)return +this.yJ(a)}, +hy(a){var s,r,q=this +q.jA(a) +a.a=q.ac +a.c=q.az +a.b=!1 +s=q.D.a +if(s!=null){a.c8(B.lr,!0) +a.c8(B.lp,s)}s=q.D.b +if(s!=null){a.c8(B.lq,!0) +a.c8(B.NW,s)}s=q.D.c +if(s!=null){a.c8(B.lq,!0) +a.c8(B.NY,s)}s=q.D.e +if(s!=null){a.c8(B.pd,!0) +a.c8(B.pb,s)}s=q.D.f +if(s!=null)a.c8(B.O_,s) +s=q.D.r +if(s!=null)a.c8(B.O3,s) +s=q.D.z +if(s!=null)a.c8(B.O2,s) +s=q.D.x +if(s!=null)a.c8(B.O0,s) +s=q.D.at +if(s!=null)a.c8(B.NU,s) +s=q.D.ax +if(s!=null)a.c8(B.pc,s) +s=q.D.ay +if(s!=null)a.c8(B.NV,s) +s=q.D.dx +if(s!=null)a.c8(B.NR,s) +s=q.ek +if(s!=null){a.RG=s +a.e=!0}s=q.jh +if(s!=null){a.rx=s +a.e=!0}s=q.hX +if(s!=null){a.ry=s +a.e=!0}s=q.hf +if(s!=null){a.to=s +a.e=!0}s=q.hY +if(s!=null){a.x1=s +a.e=!0}s=q.D +r=s.p3 +if(r!=null){a.x2=r +a.e=!0}s=s.p4 +if(s!=null)r=s.a!=null||!1 +else r=!1 +if(r)a.saKO(s) +s=q.D.cy +if(s!=null)a.c8(B.NT,s) +s=q.D.db +if(s!=null)a.c8(B.NZ,s) +s=q.D.dy +if(s!=null)a.c8(B.NX,s) +s=q.D.fr +if(s!=null)a.sMu(s) +s=q.D.fx +if(s!=null)a.sL3(s) +s=q.hZ +if(s!=null){a.bL=s +a.e=!0}s=q.D +r=s.RG +if(r!=null){a.k2=r +a.e=!0}s=s.rx +if(s!=null)a.Ty(s) +if(q.D.ry!=null)a.stU(q.gazv()) +if(q.D.to!=null)a.svB(q.gazh()) +if(q.D.aN!=null)a.sMJ(q.gaze()) +if(q.D.co!=null)a.sME(0,q.gaz6()) +if(q.D.aK!=null)a.sMF(0,q.gaz8()) +if(q.D.b6!=null)a.sMP(0,q.gazj()) +if(q.D.an!=null)a.sMH(q.gaza()) +if(q.D.ao!=null)a.sMI(q.gazc())}, +azw(){var s=this.D.ry +if(s!=null)s.$0()}, +azi(){var s=this.D.to +if(s!=null)s.$0()}, +azf(){var s=this.D.aN +if(s!=null)s.$0()}, +az7(){var s=this.D.co +if(s!=null)s.$0()}, +az9(){var s=this.D.aK +if(s!=null)s.$0()}, +azk(){var s=this.D.b6 +if(s!=null)s.$0()}, +azb(){var s=this.D.an +if(s!=null)s.$0()}, +azd(){var s=this.D.ao +if(s!=null)s.$0()}} +A.a7Z.prototype={ +saFO(a){return}, +hy(a){this.jA(a) +a.d=!0}} +A.a8a.prototype={ +hy(a){this.jA(a) +a.e=a.p4=a.a=!0}} +A.a83.prototype={ +saIO(a){if(a===this.D)return +this.D=a +this.bY()}, +jv(a){if(this.D)return +this.yJ(a)}} +A.a86.prototype={ +sdN(a,b){if(b===this.D)return +this.D=b +this.bY()}, +hy(a){this.jA(a) +a.k3=this.D +a.e=!0}} +A.a88.prototype={ +sxE(a){var s=this,r=s.D +if(r===a)return +r.d=null +s.D=a +r=s.ac +if(r!=null)a.d=r +s.b_()}, +gpG(){return!0}, +ce(){var s=this +s.yK() +s.ac=s.gq(s) +s.D.d=s.gq(s)}, +aE(a,b){var s=this.ch,r=s.a,q=this.D +if(r==null)s.sb2(0,A.bkO(q,b)) +else{t.rf.a(r) +r.sxE(q) +r.sc5(0,b)}s=s.a +s.toString +a.tZ(s,A.ih.prototype.gil.call(this),B.i)}} +A.a84.prototype={ +sxE(a){if(this.D===a)return +this.D=a +this.b_()}, +sagP(a){if(this.ac===a)return +this.ac=a +this.b_()}, +sc5(a,b){if(this.az.k(0,b))return +this.az=b +this.b_()}, +saM0(a){if(this.cr.k(0,a))return +this.cr=a +this.b_()}, +saJh(a){if(this.eB.k(0,a))return +this.eB=a +this.b_()}, +ap(a){this.ch.sb2(0,null) +this.uq(0)}, +gpG(){return!0}, +Y8(){var s=t.RC.a(A.J.prototype.gb2.call(this,this)) +s=s==null?null:s.Yd() +if(s==null){s=new A.bQ(new Float64Array(16)) +s.fQ()}return s}, +dm(a,b){if(this.D.a==null&&!this.ac)return!1 +return this.dZ(a,b)}, +dZ(a,b){return a.Tz(new A.aQI(this),b,this.Y8())}, +aE(a,b){var s,r=this,q=r.D.d,p=q==null?r.az:r.cr.Kt(q).a4(0,r.eB.Kt(r.gq(r))).U(0,r.az),o=t.RC +if(o.a(A.J.prototype.gb2.call(r,r))==null)r.ch.sb2(0,new A.KC(r.D,r.ac,b,p,A.I(t.S,t.Q),A.ay(t.kd))) +else{s=o.a(A.J.prototype.gb2.call(r,r)) +if(s!=null){s.k3=r.D +s.k4=r.ac +s.p1=p +s.ok=b}}o=o.a(A.J.prototype.gb2.call(r,r)) +o.toString +a.Bk(o,A.ih.prototype.gil.call(r),B.i,B.apt)}, +eL(a,b){b.eN(0,this.Y8())}} +A.aQI.prototype={ +$2(a,b){return this.a.HN(a,b)}, +$S:17} +A.Nu.prototype={ +sj(a,b){if(this.D.k(0,b))return +this.D=b +this.b_()}, +sagW(a){return}, +aE(a,b){var s=this,r=s.D,q=s.gq(s) +a.tZ(new A.Ij(r,q,b,A.I(t.S,t.Q),A.ay(t.kd),s.$ti.h("Ij<1>")),A.ih.prototype.gil.call(s),b)}, +gpG(){return!0}} +A.alf.prototype={ +aw(a){var s=this +s.yM(a) +s.vf$.P(0,s.gK1()) +s.T8()}, +ap(a){this.vf$.H(0,this.gK1()) +this.uq(0)}, +aE(a,b){if(this.AC$===0)return +this.oE(a,b)}} +A.TI.prototype={ +aw(a){var s +this.eS(a) +s=this.k3$ +if(s!=null)s.aw(a)}, +ap(a){var s +this.eT(0) +s=this.k3$ +if(s!=null)s.ap(0)}} +A.TJ.prototype={ +hS(a){var s=this.k3$ +s=s==null?null:s.qf(a) +return s==null?this.HL(a):s}} +A.uS.prototype={ +J(){return"SelectionResult."+this.b}} +A.hR.prototype={$iat:1} +A.a94.prototype={ +sxY(a){var s=this,r=s.AE$ +if(a==r)return +if(a==null)s.H(0,s.ga4V()) +else if(r==null)s.P(0,s.ga4V()) +s.a4U() +s.AE$=a +s.a4W()}, +a4W(){var s=this +if(s.AE$==null){s.xl$=!1 +return}if(s.xl$&&!s.gj(s).e){s.AE$.E(0,s) +s.xl$=!1}else if(!s.xl$&&s.gj(s).e){s.AE$.F(0,s) +s.xl$=!0}}, +a4U(){var s=this +if(s.xl$){s.AE$.E(0,s) +s.xl$=!1}}} +A.Oh.prototype={ +J(){return"SelectionEventType."+this.b}} +A.Fo.prototype={ +J(){return"TextGranularity."+this.b}} +A.aTA.prototype={} +A.Jb.prototype={} +A.Og.prototype={} +A.ED.prototype={ +J(){return"SelectionExtendDirection."+this.b}} +A.Oi.prototype={ +J(){return"SelectionStatus."+this.b}} +A.uR.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.uR&&J.j(b.a,s.a)&&J.j(b.b,s.b)&&b.d===s.d&&b.c===s.c&&b.e===s.e}, +gu(a){var s=this +return A.X(s.a,s.b,s.d,s.c,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.zh.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.zh&&b.a.k(0,s.a)&&b.b===s.b&&b.c===s.c}, +gu(a){return A.X(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.Pv.prototype={ +J(){return"TextSelectionHandleType."+this.b}} +A.amp.prototype={} +A.z_.prototype={ +bX(a){var s=this.k3$ +s=s==null?null:s.aA(B.ae,a,s.gbW()) +return s==null?0:s}, +bQ(a){var s=this.k3$ +s=s==null?null:s.aA(B.ao,a,s.gc1()) +return s==null?0:s}, +bR(a){var s=this.k3$ +s=s==null?null:s.aA(B.aF,a,s.gcs()) +return s==null?0:s}, +bV(a){var s=this.k3$ +s=s==null?null:s.aA(B.bt,a,s.gcR()) +return s==null?0:s}, +hS(a){var s,r,q=this.k3$ +if(q!=null){s=q.qf(a) +r=q.b +r.toString +t.q.a(r) +if(s!=null)s+=r.a.b}else s=this.HL(a) +return s}, +aE(a,b){var s,r=this.k3$ +if(r!=null){s=r.b +s.toString +a.em(r,t.q.a(s).a.U(0,b))}}, +dZ(a,b){var s,r=this.k3$ +if(r!=null){s=r.b +s.toString +t.q.a(s) +return a.oP(new A.aRd(b,s,r),s.a,b)}return!1}} +A.aRd.prototype={ +$2(a,b){return this.c.dm(a,b)}, +$S:17} +A.NI.prototype={ +uG(){var s=this +if(s.D!=null)return +s.D=s.ac.L(s.az)}, +sdD(a,b){var s=this +if(s.ac.k(0,b))return +s.ac=b +s.D=null +s.aa()}, +scz(a){var s=this +if(s.az==a)return +s.az=a +s.D=null +s.aa()}, +bX(a){var s,r,q,p +this.uG() +s=this.D +r=s.a+s.c +q=s.b +s=s.d +p=this.k3$ +if(p!=null)return p.aA(B.ae,Math.max(0,a-(q+s)),p.gbW())+r +return r}, +bQ(a){var s,r,q,p +this.uG() +s=this.D +r=s.a+s.c +q=s.b +s=s.d +p=this.k3$ +if(p!=null)return p.aA(B.ao,Math.max(0,a-(q+s)),p.gc1())+r +return r}, +bR(a){var s,r,q,p +this.uG() +s=this.D +r=s.a +q=s.c +p=s.b+s.d +s=this.k3$ +if(s!=null)return s.aA(B.aF,Math.max(0,a-(r+q)),s.gcs())+p +return p}, +bV(a){var s,r,q,p +this.uG() +s=this.D +r=s.a +q=s.c +p=s.b+s.d +s=this.k3$ +if(s!=null)return s.aA(B.bt,Math.max(0,a-(r+q)),s.gcR())+p +return p}, +da(a){var s,r,q,p=this +p.uG() +if(p.k3$==null){s=p.D +return a.bJ(new A.U(s.a+s.c,s.b+s.d))}s=p.D +s.toString +r=a.La(s) +q=p.k3$.lO(r) +s=p.D +return a.bJ(new A.U(s.a+q.a+s.c,s.b+q.b+s.d))}, +ce(){var s,r,q,p,o,n,m=this,l=t.k.a(A.J.prototype.ga9.call(m)) +m.uG() +if(m.k3$==null){s=m.D +m.id=l.bJ(new A.U(s.a+s.c,s.b+s.d)) +return}s=m.D +s.toString +r=l.La(s) +m.k3$.cS(r,!0) +s=m.k3$.b +s.toString +t.q.a(s) +q=m.D +s.sc5(0,new A.m(q.a,q.b)) +q=m.D.a +s=m.k3$ +s=s.gq(s) +p=m.D +o=p.c +p=p.b +n=m.k3$ +m.id=l.bJ(new A.U(q+s.a+o,p+n.gq(n).b+m.D.d))}} +A.a7W.prototype={ +uG(){var s=this +if(s.D!=null)return +s.D=s.ac.L(s.az)}, +sjI(a){var s=this +if(s.ac.k(0,a))return +s.ac=a +s.D=null +s.aa()}, +scz(a){var s=this +if(s.az==a)return +s.az=a +s.D=null +s.aa()}, +Kr(){var s,r,q,p,o=this +o.uG() +s=o.k3$.b +s.toString +t.q.a(s) +r=o.D +r.toString +q=o.gq(o) +p=o.k3$ +s.sc5(0,r.wO(t.EP.a(q.a4(0,p.gq(p)))))}} +A.a8f.prototype={ +saQA(a){if(this.dt==a)return +this.dt=a +this.aa()}, +saKF(a){if(this.ei==a)return +this.ei=a +this.aa()}, +da(a){var s,r,q=this,p=q.dt!=null||a.b===1/0,o=q.ei!=null||a.d===1/0,n=q.k3$ +if(n!=null){s=n.lO(new A.aN(0,a.b,0,a.d)) +if(p){n=q.dt +if(n==null)n=1 +n=s.a*n}else n=1/0 +if(o){r=q.ei +if(r==null)r=1 +r=s.b*r}else r=1/0 +return a.bJ(new A.U(n,r))}n=p?0:1/0 +return a.bJ(new A.U(n,o?0:1/0))}, +ce(){var s,r,q=this,p=t.k.a(A.J.prototype.ga9.call(q)),o=q.dt!=null||p.b===1/0,n=q.ei!=null||p.d===1/0,m=q.k3$ +if(m!=null){m.cS(new A.aN(0,p.b,0,p.d),!0) +if(o){m=q.k3$ +m=m.gq(m) +s=q.dt +if(s==null)s=1 +s=m.a*s +m=s}else m=1/0 +if(n){s=q.k3$ +s=s.gq(s) +r=q.ei +if(r==null)r=1 +r=s.b*r +s=r}else s=1/0 +q.id=p.bJ(new A.U(m,s)) +q.Kr()}else{m=o?0:1/0 +q.id=p.bJ(new A.U(m,n?0:1/0))}}} +A.aUX.prototype={ +vV(a){return new A.U(A.V(1/0,a.a,a.b),A.V(1/0,a.c,a.d))}, +vQ(a){return a}, +vT(a,b){return B.i}} +A.Ny.prototype={ +sdc(a){var s=this,r=s.D +if(r===a)return +if(A.p(a)!==A.p(r)||a.qj(r))s.aa() +s.D=a +s.y!=null}, +aw(a){this.a_7(a)}, +ap(a){this.a_8(0)}, +bX(a){var s=A.jF(a,1/0),r=s.bJ(this.D.vV(s)).a +if(isFinite(r))return r +return 0}, +bQ(a){var s=A.jF(a,1/0),r=s.bJ(this.D.vV(s)).a +if(isFinite(r))return r +return 0}, +bR(a){var s=A.jF(1/0,a),r=s.bJ(this.D.vV(s)).b +if(isFinite(r))return r +return 0}, +bV(a){var s=A.jF(1/0,a),r=s.bJ(this.D.vV(s)).b +if(isFinite(r))return r +return 0}, +da(a){return a.bJ(this.D.vV(a))}, +ce(){var s,r,q,p,o,n=this,m=t.k,l=m.a(A.J.prototype.ga9.call(n)) +n.id=l.bJ(n.D.vV(l)) +if(n.k3$!=null){s=n.D.vQ(m.a(A.J.prototype.ga9.call(n))) +m=n.k3$ +m.toString +l=s.a +r=s.b +q=l>=r +m.cS(s,!(q&&s.c>=s.d)) +m=n.k3$.b +m.toString +t.q.a(m) +p=n.D +o=n.gq(n) +if(q&&s.c>=s.d)l=new A.U(A.V(0,l,r),A.V(0,s.c,s.d)) +else{l=n.k3$ +l=l.gq(l)}m.sc5(0,p.vT(o,l))}}} +A.TL.prototype={ +aw(a){var s +this.eS(a) +s=this.k3$ +if(s!=null)s.aw(a)}, +ap(a){var s +this.eT(0) +s=this.k3$ +if(s!=null)s.ap(0)}} +A.a9I.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(!(b instanceof A.a9I))return!1 +return b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d}, +l(a){var s=this +return"scrollOffset: "+A.i(s.a)+" precedingScrollExtent: "+A.i(s.b)+" viewportMainAxisExtent: "+A.i(s.c)+" crossAxisExtent: "+A.i(s.d)}, +gu(a){var s=this.c +return A.X(this.a,this.b,s,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,B.a,B.a)}} +A.a2u.prototype={ +J(){return"GrowthDirection."+this.b}} +A.v_.prototype={ +gabD(){return!1}, +E0(a,b,c){if(a==null)a=this.w +switch(A.bU(this.a).a){case 0:return new A.aN(c,b,a,a) +case 1:return new A.aN(a,a,c,b)}}, +a7F(a,b){return this.E0(null,a,b)}, +a7E(){return this.E0(null,1/0,0)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(!(b instanceof A.v_))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.X(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)}, +l(a){var s=this,r=A.a([s.a.l(0),s.b.l(0),s.c.l(0),"scrollOffset: "+B.e.aF(s.d,1),"remainingPaintExtent: "+B.e.aF(s.r,1)],t.s),q=s.f +if(q!==0)r.push("overlap: "+B.e.aF(q,1)) +r.push("crossAxisExtent: "+B.e.aF(s.w,1)) +r.push("crossAxisDirection: "+s.x.l(0)) +r.push("viewportMainAxisExtent: "+B.e.aF(s.y,1)) +r.push("remainingCacheExtent: "+B.e.aF(s.Q,1)) +r.push("cacheOrigin: "+B.e.aF(s.z,1)) +return"SliverConstraints("+B.b.ck(r,", ")+")"}} +A.a9G.prototype={ +f4(){return"SliverGeometry"}} +A.EV.prototype={ +aFn(a,b,c,d,e,f){var s +this.c.push(new A.GX(new A.m(-f.a,-f.b))) +s=c.$3$crossAxisPosition$mainAxisPosition(this,b-a,e-d) +this.Na() +return s}} +A.a9H.prototype={ +l(a){return A.p(this.a).l(0)+"@(mainAxis: "+A.i(this.c)+", crossAxis: "+A.i(this.d)+")"}} +A.rb.prototype={ +l(a){var s=this.a +return"layoutOffset="+(s==null?"None":B.e.aF(s,1))}} +A.pd.prototype={} +A.pe.prototype={ +l(a){return"paintOffset="+this.a.l(0)}} +A.k2.prototype={} +A.dk.prototype={ +ga9(){return t.r.a(A.J.prototype.ga9.call(this))}, +grG(){return this.gr7()}, +gr7(){var s=this,r=t.r +switch(A.bU(r.a(A.J.prototype.ga9.call(s)).a).a){case 0:return new A.L(0,0,0+s.fx.c,0+r.a(A.J.prototype.ga9.call(s)).w) +case 1:return new A.L(0,0,0+r.a(A.J.prototype.ga9.call(s)).w,0+s.fx.c)}}, +xT(){}, +aaX(a,b,c){var s=this +if(c>=0&&c=0&&bs.r||s.d>0,p,l,q,0,p,0,q,l,l) +m.fx=r +n=m.k3$ +n.toString +m.YO(n,s,r)}} +A.alF.prototype={ +aw(a){var s +this.eS(a) +s=this.k3$ +if(s!=null)s.aw(a)}, +ap(a){var s +this.eT(0) +s=this.k3$ +if(s!=null)s.ap(0)}} +A.alG.prototype={} +A.amW.prototype={} +A.amX.prototype={ +ap(a){this.Cs(0)}} +A.an_.prototype={ +ap(a){this.Cs(0)}} +A.a8k.prototype={ +gFx(){return t.r.a(A.J.prototype.ga9.call(this)).y*this.a2}, +sGU(a){if(this.a2===a)return +this.a2=a +this.aa()}} +A.a8j.prototype={ +ce(){var s,r,q,p=this,o=null,n=t.r.a(A.J.prototype.ga9.call(p)),m=n.y-n.e,l=p.k3$ +if(l!=null){switch(A.bU(n.a).a){case 0:s=l.aA(B.ao,n.w,l.gc1()) +break +case 1:s=l.aA(B.bt,n.w,l.gcR()) +break +default:s=o}m=Math.max(m,A.l_(s)) +l=p.k3$ +l.toString +l.ij(n.a7F(m,m))}r=p.lc(n,0,m) +l=A.kK(o,m>n.r||n.d>0,o,o,r,0,r,0,m,o,o) +p.fx=l +q=p.k3$ +if(q!=null)p.YO(q,n,l)}} +A.a8l.prototype={ +gFy(){return null}, +vu(a,b){this.gFy() +return a*b}, +afv(a,b){var s,r +this.gFy() +if(b>0){s=a/b +r=B.e.bg(s) +if(Math.abs(s*b-r*b)<1e-10)return r +return B.e.eC(s)}return 0}, +Yf(a,b){var s,r +this.gFy() +if(b>0){s=a/b-1 +r=B.e.bg(s) +if(Math.abs(s*b-r*b)<1e-10)return Math.max(0,r) +return Math.max(0,B.e.eV(s))}return 0}, +aGJ(a,b){var s +this.gFy() +s=this.aK.gE8() +return s*b}, +aoy(a){var s,r=this.a2$,q=A.l(this).h("ar.1"),p=t.V,o=0 +while(!0){if(r!=null){s=r.b +s.toString +s=p.a(s).b +s.toString +s=sa}else s=!1 +if(!s)break;++o +s=r.b +s.toString +r=q.a(s).ds$}return o}, +Ir(a){var s +this.gFy() +s=this.gFx() +s.toString +return t.r.a(A.J.prototype.ga9.call(this)).a7F(s,s)}, +ce(){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,a5=null,a6=t.r.a(A.J.prototype.ga9.call(a4)),a7=a4.aK +a7.p3=!1 +s=a4.gFx() +if(s==null)s=0 +r=a6.d +q=r+a6.z +p=q+a6.Q +a4.dY=new A.a9I(r,a6.e,a6.y,a6.w) +o=a4.afv(q,s) +n=isFinite(p)?a4.Yf(p,s):a5 +if(a4.a2$!=null){m=a4.aoy(o) +a4.wX(m,n!=null?a4.aoz(n):0)}else a4.wX(0,0) +if(a4.a2$==null)if(!a4.Tv(o,a4.vu(s,o))){l=o<=0?0:a4.aGJ(a6,s) +a4.fx=A.kK(a5,!1,a5,a5,l,0,0,0,l,a5,a5) +a7.x7() +return}k=a4.a2$ +k.toString +k=k.b +k.toString +j=t.V +k=j.a(k).b +k.toString +i=k-1 +h=a5 +for(;i>=o;--i){g=a4.abg(a4.Ir(i)) +if(g==null){a4.fx=A.kK(a5,!1,a5,a5,0,0,0,0,0,a4.vu(s,i),a5) +return}k=g.b +k.toString +j.a(k).a=a4.vu(s,i) +if(h==null)h=g}if(h==null){k=a4.a2$ +k.toString +f=k.b +f.toString +f=j.a(f).b +f.toString +k.ij(a4.Ir(f)) +f=a4.a2$.b +f.toString +j.a(f).a=a4.vu(s,o) +h=a4.a2$}k=h.b +k.toString +k=j.a(k).b +k.toString +i=k+1 +k=A.l(a4).h("ar.1") +f=n!=null +while(!0){if(!(!f||i<=n)){e=1/0 +break}d=h.b +d.toString +g=k.a(d).a3$ +if(g!=null){d=g.b +d.toString +d=j.a(d).b +d.toString +d=d!==i}else d=!0 +if(d){g=a4.abe(a4.Ir(i),h) +if(g==null){e=a4.vu(s,i) +break}}else g.ij(a4.Ir(i)) +d=g.b +d.toString +j.a(d) +c=d.b +c.toString +d.a=a4.vu(s,c);++i +h=g}k=a4.dF$ +k.toString +k=k.b +k.toString +k=j.a(k).b +k.toString +b=a4.vu(s,o) +a=a4.vu(s,k+1) +e=Math.min(e,a7.V5(a6,o,k,b,a)) +a0=a4.lc(a6,b,a) +a1=a4.uT(a6,b,a) +a2=r+a6.r +a3=isFinite(a2)?a4.Yf(a2,s):a5 +a4.fx=A.kK(a1,a3!=null&&k>=a3||r>0,a5,a5,e,0,a0,0,e,a5,a5) +if(e===a)a7.p3=!0 +a7.x7()}} +A.a8m.prototype={ +gFx(){return this.a2}, +sFx(a){if(this.a2===a)return +this.a2=a +this.aa()}} +A.aVs.prototype={ +afa(a){var s=this.c +return a.E0(this.d,s,s)}, +l(a){var s=this +return"SliverGridGeometry("+B.b.ck(A.a(["scrollOffset: "+A.i(s.a),"crossAxisOffset: "+A.i(s.b),"mainAxisExtent: "+A.i(s.c),"crossAxisExtent: "+A.i(s.d)],t.s),", ")+")"}} +A.aVt.prototype={} +A.aVu.prototype={ +afu(a){var s=this.b +if(s>0)return Math.max(0,this.a*B.e.eV(a/s)-1) +return 0}, +ase(a){var s,r,q=this +if(q.f){s=q.c +r=q.e +return q.a*s-a-r-(s-r)}return a}, +O0(a){var s=this,r=s.a,q=B.f.aJ(a,r) +return new A.aVs(B.f.i9(a,r)*s.b,s.ase(q*s.c),s.d,s.e)}, +a8v(a){var s +if(a===0)return 0 +s=this.b +return s*(B.f.i9(a-1,this.a)+1)-(s-this.d)}} +A.aVq.prototype={} +A.aVr.prototype={ +Ye(a){var s=this,r=a.w,q=s.c,p=Math.max(1,B.e.eV(r/(s.a+q))),o=Math.max(0,r-q*(p-1))/p,n=o/s.d +return new A.aVu(p,n+s.b,o+q,n,o,A.ar3(a.x))}} +A.EU.prototype={ +l(a){return"crossAxisOffset="+A.i(this.w)+"; "+this.ajF(0)}} +A.a8n.prototype={ +fR(a){if(!(a.b instanceof A.EU))a.b=new A.EU(!1,null,null)}, +safU(a){var s,r=this +if(r.dY===a)return +if(A.p(a)===A.p(r.dY)){s=r.dY +s=s.a!==a.a||s.b!==a.b||s.c!==a.c||s.d!==a.d||!1}else s=!0 +if(s)r.aa() +r.dY=a}, +zQ(a){var s=a.b +s.toString +s=t.h5.a(s).w +s.toString +return s}, +ce(){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=this,a9=null,b0=t.r.a(A.J.prototype.ga9.call(a8)),b1=a8.aK +b1.p3=!1 +s=b0.d +r=s+b0.z +q=r+b0.Q +p=a8.dY.Ye(b0) +o=p.b +n=o>1e-10?p.a*B.e.i9(r,o):0 +m=isFinite(q)?p.afu(q):a9 +o=a8.a2$ +if(o!=null){o=o.b +o.toString +l=t.V +o=l.a(o).b +o.toString +k=a8.dF$ +k.toString +k=k.b +k.toString +k=l.a(k).b +k.toString +j=B.f.hw(n-o,0,a8.d8$) +a8.wX(j,m==null?0:B.f.hw(k-m,0,a8.d8$))}else a8.wX(0,0) +i=p.O0(n) +if(a8.a2$==null)if(!a8.Tv(n,i.a)){h=p.a8v(b1.gE8()) +a8.fx=A.kK(a9,!1,a9,a9,h,0,0,0,h,a9,a9) +b1.x7() +return}g=i.a +f=g+i.c +o=a8.a2$ +o.toString +o=o.b +o.toString +l=t.V +o=l.a(o).b +o.toString +e=o-1 +o=t.h5 +d=a9 +for(;e>=n;--e){c=p.O0(e) +k=c.c +b=a8.abg(b0.E0(c.d,k,k)) +a=b.b +a.toString +o.a(a) +a0=c.a +a.a=a0 +a.w=c.b +if(d==null)d=b +f=Math.max(f,a0+k)}if(d==null){k=a8.a2$ +k.toString +k.ij(i.afa(b0)) +d=a8.a2$ +k=d.b +k.toString +o.a(k) +k.a=g +k.w=i.b}k=d.b +k.toString +k=l.a(k).b +k.toString +e=k+1 +k=A.l(a8).h("ar.1") +a=m!=null +while(!0){if(!(!a||e<=m)){a1=!1 +break}c=p.O0(e) +a0=c.c +a2=b0.E0(c.d,a0,a0) +a3=d.b +a3.toString +b=k.a(a3).a3$ +if(b!=null){a3=b.b +a3.toString +a3=l.a(a3).b +a3.toString +a3=a3!==e}else a3=!0 +if(a3){b=a8.abe(a2,d) +if(b==null){a1=!0 +break}}else b.ij(a2) +a3=b.b +a3.toString +o.a(a3) +a4=c.a +a3.a=a4 +a3.w=c.b +f=Math.max(f,a4+a0);++e +d=b}o=a8.dF$ +o.toString +o=o.b +o.toString +o=l.a(o).b +o.toString +a5=a1?f:b1.V5(b0,n,o,g,f) +a6=a8.lc(b0,Math.min(s,g),f) +a7=a8.uT(b0,g,f) +a8.fx=A.kK(a7,a5>a6||s>0||b0.f!==0,a9,a9,a5,0,a6,0,a5,a9,a9) +if(a5===f)b1.p3=!0 +b1.x7()}} +A.a8p.prototype={ +ce(){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,a4=null,a5={},a6=t.r.a(A.J.prototype.ga9.call(a3)),a7=a3.aK +a7.p3=!1 +s=a6.d +r=s+a6.z +q=r+a6.Q +p=a6.a7E() +if(a3.a2$==null)if(!a3.a7n()){a3.fx=B.pp +a7.x7() +return}a5.a=null +o=a3.a2$ +n=o.b +n.toString +m=t.V +if(m.a(n).a==null){n=A.l(a3).h("ar.1") +l=0 +while(!0){if(o!=null){k=o.b +k.toString +k=m.a(k).a==null}else k=!1 +if(!k)break +k=o.b +k.toString +o=n.a(k).a3$;++l}a3.wX(l,0) +if(a3.a2$==null)if(!a3.a7n()){a3.fx=B.pp +a7.x7() +return}}o=a3.a2$ +n=o.b +n.toString +n=m.a(n).a +n.toString +j=n +i=a4 +for(;j>r;j=h,i=o){o=a3.VR(p,!0) +if(o==null){n=a3.a2$ +k=n.b +k.toString +m.a(k).a=0 +if(r===0){n.cS(p,!0) +o=a3.a2$ +if(a5.a==null)a5.a=o +i=o +break}else{a3.fx=A.kK(a4,!1,a4,a4,0,0,0,0,0,-r,a4) +return}}n=a3.a2$ +n.toString +h=j-a3.xO(n) +if(h<-1e-10){a3.fx=A.kK(a4,!1,a4,a4,0,0,0,0,0,-h,a4) +a7=a3.a2$.b +a7.toString +m.a(a7).a=0 +return}n=o.b +n.toString +m.a(n).a=h +if(a5.a==null)a5.a=o}if(r<1e-10)while(!0){n=a3.a2$ +n.toString +n=n.b +n.toString +m.a(n) +k=n.b +k.toString +if(!(k>0))break +n=n.a +n.toString +o=a3.VR(p,!0) +k=a3.a2$ +k.toString +h=n-a3.xO(k) +k=a3.a2$.b +k.toString +m.a(k).a=0 +if(h<-1e-10){a3.fx=A.kK(a4,!1,a4,a4,0,0,0,0,0,-h,a4) +return}}if(i==null){o.cS(p,!0) +a5.a=o}a5.b=!0 +a5.c=o +n=o.b +n.toString +m.a(n) +k=n.b +k.toString +a5.d=k +n=n.a +n.toString +a5.e=n+a3.xO(o) +g=new A.aRf(a5,a3,p) +for(f=0;a5.es+a6.r||s>0,a4,a4,a,0,a1,0,a,a4,a4) +if(a===n)a7.p3=!0 +a7.x7()}} +A.aRf.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.b +o.toString +r=p.c=A.l(s).h("ar.1").a(o).a3$ +o=r==null +if(o)p.b=!1 +q=++p.d +if(!p.b){if(!o){o=r.b +o.toString +o=t.V.a(o).b +o.toString +q=o!==q +o=q}else o=!0 +q=this.c +if(o){r=s.abf(q,n,!0) +p.c=r +if(r==null)return!1}else r.cS(q,!0) +o=p.a=p.c}else o=r +n=o.b +n.toString +t.V.a(n) +q=p.e +n.a=q +p.e=q+s.xO(o) +return!0}, +$S:10} +A.nc.prototype={$idP:1} +A.aRj.prototype={ +fR(a){}} +A.hr.prototype={ +l(a){var s=this.b,r=this.AD$?"keepAlive; ":"" +return"index="+A.i(s)+"; "+r+this.ajE(0)}} +A.p8.prototype={ +fR(a){if(!(a.b instanceof A.hr))a.b=new A.hr(!1,null,null)}, +mh(a){var s +this.ZS(a) +s=a.b +s.toString +if(!t.V.a(s).c)this.aK.UF(t.x.a(a))}, +VP(a,b,c){this.OH(0,b,c)}, +FR(a,b){var s,r=this,q=a.b +q.toString +t.V.a(q) +if(!q.c){r.ahD(a,b) +r.aK.UF(a) +r.aa()}else{s=r.b6 +if(s.i(0,q.b)===a)s.E(0,q.b) +r.aK.UF(a) +q=q.b +q.toString +s.n(0,q,a)}}, +E(a,b){var s=b.b +s.toString +t.V.a(s) +if(!s.c){this.ahE(0,b) +return}this.b6.E(0,s.b) +this.v7(b)}, +Q5(a,b){this.Mc(new A.aRg(this,a,b),t.r)}, +a0P(a){var s,r=this,q=a.b +q.toString +t.V.a(q) +if(q.AD$){r.E(0,a) +s=q.b +s.toString +r.b6.n(0,s,a) +a.b=q +r.ZS(a) +q.c=!0}else r.aK.ad5(a)}, +aw(a){var s,r,q +this.akI(a) +for(s=this.b6,s=s.gbp(s),r=A.l(s),r=r.h("@<1>").V(r.z[1]),s=new A.bT(J.al(s.a),s.b,r.h("bT<1,2>")),r=r.z[1];s.v();){q=s.a;(q==null?r.a(q):q).aw(a)}}, +ap(a){var s,r,q +this.akJ(0) +for(s=this.b6,s=s.gbp(s),r=A.l(s),r=r.h("@<1>").V(r.z[1]),s=new A.bT(J.al(s.a),s.b,r.h("bT<1,2>")),r=r.z[1];s.v();){q=s.a;(q==null?r.a(q):q).ap(0)}}, +jo(){this.Zo() +var s=this.b6 +s.gbp(s).al(0,this.gXf())}, +ci(a){var s +this.HI(a) +s=this.b6 +s.gbp(s).al(0,a)}, +jv(a){this.HI(a)}, +Tv(a,b){var s +this.Q5(a,null) +s=this.a2$ +if(s!=null){s=s.b +s.toString +t.V.a(s).a=b +return!0}this.aK.p3=!0 +return!1}, +a7n(){return this.Tv(0,0)}, +VR(a,b){var s,r,q,p=this,o=p.a2$ +o.toString +o=o.b +o.toString +s=t.V +o=s.a(o).b +o.toString +r=o-1 +p.Q5(r,null) +o=p.a2$ +o.toString +q=o.b +q.toString +q=s.a(q).b +q.toString +if(q===r){o.cS(a,b) +return p.a2$}p.aK.p3=!0 +return null}, +abg(a){return this.VR(a,!1)}, +abf(a,b,c){var s,r,q,p=b.b +p.toString +s=t.V +p=s.a(p).b +p.toString +r=p+1 +this.Q5(r,b) +p=b.b +p.toString +q=A.l(this).h("ar.1").a(p).a3$ +if(q!=null){p=q.b +p.toString +p=s.a(p).b +p.toString +p=p===r}else p=!1 +if(p){q.cS(a,c) +return q}this.aK.p3=!0 +return null}, +abe(a,b){return this.abf(a,b,!1)}, +wX(a,b){var s={} +s.a=a +s.b=b +this.Mc(new A.aRi(s,this),t.r)}, +xO(a){switch(A.bU(t.r.a(A.J.prototype.ga9.call(this)).a).a){case 0:return a.gq(a).a +case 1:return a.gq(a).b}}, +M3(a,b,c){var s,r,q=this.dF$,p=A.bjw(a) +for(s=A.l(this).h("ar.1");q!=null;){if(this.aaY(p,q,b,c))return!0 +r=q.b +r.toString +q=s.a(r).ds$}return!1}, +KL(a){var s=a.b +s.toString +s=t.V.a(s).a +s.toString +return s-t.r.a(A.J.prototype.ga9.call(this)).d}, +U2(a){var s=a.b +s.toString +return t.V.a(s).a}, +xQ(a){var s=t.MR.a(a.b) +return(s==null?null:s.b)!=null&&!this.b6.aq(0,s.b)}, +eL(a,b){if(!this.xQ(a))b.Z_() +else this.aFE(a,b)}, +aE(a,a0){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=null +if(c.a2$==null)return +s=t.r +switch(A.oc(s.a(A.J.prototype.ga9.call(c)).a,s.a(A.J.prototype.ga9.call(c)).b).a){case 0:r=a0.U(0,new A.m(0,c.fx.c)) +q=B.JE +p=B.fH +o=!0 +break +case 1:r=a0 +q=B.fH +p=B.cw +o=!1 +break +case 2:r=a0 +q=B.cw +p=B.fH +o=!1 +break +case 3:r=a0.U(0,new A.m(c.fx.c,0)) +q=B.oz +p=B.cw +o=!0 +break +default:o=b +r=o +p=r +q=p}n=c.a2$ +for(m=A.l(c).h("ar.1"),l=t.V;n!=null;){k=n.b +k.toString +k=l.a(k).a +k.toString +j=k-s.a(A.J.prototype.ga9.call(c)).d +i=c.zQ(n) +k=r.a +h=q.a +k=k+h*j+p.a*i +g=r.b +f=q.b +g=g+f*j+p.b*i +e=new A.m(k,g) +if(o){d=c.xO(n) +e=new A.m(k+h*d,g+f*d)}if(j0)a.em(n,e) +k=n.b +k.toString +n=m.a(k).a3$}}} +A.aRg.prototype={ +$1(a){var s=this.a,r=s.b6,q=this.b,p=this.c +if(r.aq(0,q)){r=r.E(0,q) +r.toString +q=r.b +q.toString +t.V.a(q) +s.v7(r) +r.b=q +s.OH(0,r,p) +q.c=!1}else s.aK.aHG(q,p)}, +$S:190} +A.aRi.prototype={ +$1(a){var s,r,q +for(s=this.a,r=this.b;s.a>0;){q=r.a2$ +q.toString +r.a0P(q);--s.a}for(;s.b>0;){q=r.dF$ +q.toString +r.a0P(q);--s.b}s=r.b6 +s=s.gbp(s) +q=A.l(s).h("ba") +B.b.al(A.a8(new A.ba(s,new A.aRh(),q),!0,q.h("z.E")),r.aK.gaON())}, +$S:190} +A.aRh.prototype={ +$1(a){var s=a.b +s.toString +return!t.V.a(s).AD$}, +$S:409} +A.TN.prototype={ +aw(a){var s,r,q +this.eS(a) +s=this.a2$ +for(r=t.V;s!=null;){s.aw(a) +q=s.b +q.toString +s=r.a(q).a3$}}, +ap(a){var s,r,q +this.eT(0) +s=this.a2$ +for(r=t.V;s!=null;){s.ap(0) +q=s.b +q.toString +s=r.a(q).a3$}}} +A.alD.prototype={} +A.alE.prototype={} +A.amY.prototype={ +ap(a){this.Cs(0)}} +A.amZ.prototype={} +A.NM.prototype={ +gTO(){var s=this,r=t.r +switch(A.oc(r.a(A.J.prototype.ga9.call(s)).a,r.a(A.J.prototype.ga9.call(s)).b).a){case 0:return s.gft().d +case 1:return s.gft().a +case 2:return s.gft().b +case 3:return s.gft().c}}, +gaFq(){var s=this,r=t.r +switch(A.oc(r.a(A.J.prototype.ga9.call(s)).a,r.a(A.J.prototype.ga9.call(s)).b).a){case 0:return s.gft().b +case 1:return s.gft().c +case 2:return s.gft().d +case 3:return s.gft().a}}, +gaHO(){switch(A.bU(t.r.a(A.J.prototype.ga9.call(this)).a).a){case 0:var s=this.gft() +return s.gcC(s)+s.gcD(s) +case 1:return this.gft().gdI()}}, +fR(a){if(!(a.b instanceof A.pe))a.b=new A.pe(B.i)}, +ce(){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.r,a3=a2.a(A.J.prototype.ga9.call(a0)),a4=a0.gTO() +a0.gaFq() +s=a0.gft() +s.toString +r=s.aFu(A.bU(a2.a(A.J.prototype.ga9.call(a0)).a)) +q=a0.gaHO() +if(a0.k3$==null){p=a0.lc(a3,0,r) +a0.fx=A.kK(a0.uT(a3,0,r),!1,a1,a1,r,0,Math.min(p,a3.r),0,r,a1,a1) +return}o=a0.lc(a3,0,a4) +n=a3.f +if(n>0)n=Math.max(0,n-o) +a2=a0.k3$ +a2.toString +s=Math.max(0,a3.d-a4) +m=Math.min(0,a3.z+a4) +l=a3.r +k=a0.lc(a3,0,a4) +j=a3.Q +i=a0.uT(a3,0,a4) +h=Math.max(0,a3.w-q) +g=a3.a +f=a3.b +a2.cS(new A.v_(g,f,a3.c,s,a4+a3.e,n,l-k,h,a3.x,a3.y,m,j-i),!0) +e=a0.k3$.fx +a2=e.y +if(a2!=null){a0.fx=A.kK(a1,!1,a1,a1,0,0,0,0,0,a2,a1) +return}a2=e.a +s=a4+a2 +m=r+a2 +d=a0.lc(a3,s,m) +c=o+d +b=a0.uT(a3,0,a4) +a=a0.uT(a3,s,m) +s=e.c +k=e.d +p=Math.min(o+Math.max(s,k+d),l) +l=e.b +k=Math.min(c+k,p) +j=Math.min(a+b+e.z,j) +i=e.e +s=Math.max(c+s,o+e.r) +a0.fx=A.kK(j,e.x,s,k,r+i,0,p,l,m,a1,a1) +m=a0.k3$.b +m.toString +t.jB.a(m) +switch(A.oc(g,f).a){case 0:m.a=new A.m(a0.gft().a,a0.lc(a3,a0.gft().d+a2,a0.gft().d+a2+a0.gft().b)) +break +case 1:m.a=new A.m(a0.lc(a3,0,a0.gft().a),a0.gft().b) +break +case 2:m.a=new A.m(a0.gft().a,a0.lc(a3,0,a0.gft().b)) +break +case 3:m.a=new A.m(a0.lc(a3,a0.gft().c+a2,a0.gft().c+a2+a0.gft().a),a0.gft().b) +break}}, +M3(a,b,c){var s,r,q=this,p=q.k3$ +if(p!=null&&p.fx.r>0){p=p.b +p.toString +t.jB.a(p) +s=q.lc(t.r.a(A.J.prototype.ga9.call(q)),0,q.gTO()) +r=q.k3$ +r.toString +r=q.zQ(r) +p=p.a +a.aFn(r,b,q.k3$.gaKP(),s,c,p)}return!1}, +zQ(a){var s=this,r=t.r +switch(A.oc(r.a(A.J.prototype.ga9.call(s)).a,r.a(A.J.prototype.ga9.call(s)).b).a){case 0:case 2:return s.gft().a +case 3:case 1:return s.gft().b}}, +U2(a){return this.gTO()}, +eL(a,b){var s=a.b +s.toString +s=t.jB.a(s).a +b.bi(0,s.a,s.b)}, +aE(a,b){var s,r=this.k3$ +if(r!=null&&r.fx.w){s=r.b +s.toString +a.em(r,b.U(0,t.jB.a(s).a))}}} +A.a8q.prototype={ +gft(){return this.dH}, +aCm(){if(this.dH!=null)return +this.dH=this.cY}, +sdD(a,b){var s=this +if(s.cY.k(0,b))return +s.cY=b +s.dH=null +s.aa()}, +scz(a){var s=this +if(s.e5===a)return +s.e5=a +s.dH=null +s.aa()}, +ce(){this.aCm() +this.ZY()}} +A.alB.prototype={ +aw(a){var s +this.eS(a) +s=this.k3$ +if(s!=null)s.aw(a)}, +ap(a){var s +this.eT(0) +s=this.k3$ +if(s!=null)s.ap(0)}} +A.lz.prototype={ +dq(a){var s=this,r=a.a,q=a.b +return new A.lz(s.a+r,s.b+q,s.c-r,s.d-q)}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +return b instanceof A.lz&&b.a===s.a&&b.b===s.b&&b.c===s.c&&b.d===s.d}, +gu(a){var s=this +return A.X(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)}, +l(a){var s=this +return"RelativeRect.fromLTRB("+B.e.aF(s.a,1)+", "+B.e.aF(s.b,1)+", "+B.e.aF(s.c,1)+", "+B.e.aF(s.d,1)+")"}} +A.fP.prototype={ +gMi(){var s=this +return s.e!=null||s.f!=null||s.r!=null||s.w!=null||s.x!=null||s.y!=null}, +l(a){var s=this,r=A.a([],t.s),q=s.e +if(q!=null)r.push("top="+A.mK(q)) +q=s.f +if(q!=null)r.push("right="+A.mK(q)) +q=s.r +if(q!=null)r.push("bottom="+A.mK(q)) +q=s.w +if(q!=null)r.push("left="+A.mK(q)) +q=s.x +if(q!=null)r.push("width="+A.mK(q)) +q=s.y +if(q!=null)r.push("height="+A.mK(q)) +if(r.length===0)r.push("not positioned") +r.push(s.HG(0)) +return B.b.ck(r,"; ")}} +A.aak.prototype={ +J(){return"StackFit."+this.b}} +A.Ei.prototype={ +fR(a){if(!(a.b instanceof A.fP))a.b=new A.fP(null,null,B.i)}, +aCs(){var s=this +if(s.W!=null)return +s.W=s.a6.L(s.an)}, +sjI(a){var s=this +if(s.a6.k(0,a))return +s.a6=a +s.W=null +s.aa()}, +scz(a){var s=this +if(s.an==a)return +s.an=a +s.W=null +s.aa()}, +sLM(a){if(this.ao!==a){this.ao=a +this.aa()}}, +smB(a){var s=this +if(a!==s.aN){s.aN=a +s.b_() +s.bY()}}, +bX(a){return A.z0(this.a2$,new A.aRn(a))}, +bQ(a){return A.z0(this.a2$,new A.aRl(a))}, +bR(a){return A.z0(this.a2$,new A.aRm(a))}, +bV(a){return A.z0(this.a2$,new A.aRk(a))}, +hS(a){return this.L7(a)}, +da(a){return this.a5o(a,A.t1())}, +a5o(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this +f.aCs() +if(f.d8$===0){s=a.a +r=a.b +q=A.V(1/0,s,r) +p=a.c +o=a.d +n=A.V(1/0,p,o) +return isFinite(q)&&isFinite(n)?new A.U(A.V(1/0,s,r),A.V(1/0,p,o)):new A.U(A.V(0,s,r),A.V(0,p,o))}m=a.a +l=a.c +switch(f.ao.a){case 0:s=new A.aN(0,a.b,0,a.d) +break +case 1:s=A.Be(new A.U(A.V(1/0,m,a.b),A.V(1/0,l,a.d))) +break +case 2:s=a +break +default:s=null}k=f.a2$ +for(r=t.Qv,j=l,i=m,h=!1;k!=null;){q=k.b +q.toString +r.a(q) +if(!q.gMi()){g=b.$2(k,s) +i=Math.max(i,g.a) +j=Math.max(j,g.b) +h=!0}k=q.a3$}return h?new A.U(i,j):new A.U(A.V(1/0,m,a.b),A.V(1/0,l,a.d))}, +ce(){var s,r,q,p,o,n,m,l=this,k="RenderBox was not laid out: ",j=t.k.a(A.J.prototype.ga9.call(l)) +l.B=!1 +l.id=l.a5o(j,A.vY()) +s=l.a2$ +for(r=t.Qv,q=t.EP;s!=null;){p=s.b +p.toString +r.a(p) +if(!p.gMi()){o=l.W +o.toString +n=l.id +if(n==null)n=A.r(A.R(k+A.p(l).l(0)+"#"+A.br(l))) +m=s.id +p.sc5(0,o.wO(q.a(n.a4(0,m==null?A.r(A.R(k+A.p(s).l(0)+"#"+A.br(s))):m))))}else{o=l.id +if(o==null)o=A.r(A.R(k+A.p(l).l(0)+"#"+A.br(l))) +n=l.W +n.toString +l.B=A.btK(s,p,o,n)||l.B}s=p.a3$}}, +dZ(a,b){return this.A4(a,b)}, +N2(a,b){this.x5(a,b)}, +aE(a,b){var s,r=this,q=r.aN!==B.n&&r.B,p=r.aZ +if(q){q=r.cx +q===$&&A.b() +s=r.gq(r) +p.sb2(0,a.tX(q,b,new A.L(0,0,0+s.a,0+s.b),r.gacu(),r.aN,p.a))}else{p.sb2(0,null) +r.N2(a,b)}}, +m(){this.aZ.sb2(0,null) +this.iU()}, +ts(a){var s,r=this +switch(r.aN.a){case 0:return null +case 1:case 2:case 3:if(r.B){s=r.gq(r) +s=new A.L(0,0,0+s.a,0+s.b)}else s=null +return s}}} +A.aRn.prototype={ +$1(a){return a.aA(B.ae,this.a,a.gbW())}, +$S:22} +A.aRl.prototype={ +$1(a){return a.aA(B.ao,this.a,a.gc1())}, +$S:22} +A.aRm.prototype={ +$1(a){return a.aA(B.aF,this.a,a.gcs())}, +$S:22} +A.aRk.prototype={ +$1(a){return a.aA(B.bt,this.a,a.gcR())}, +$S:22} +A.ND.prototype={ +jv(a){if(this.hY!=null&&this.a2$!=null)a.$1(this.PL())}, +PL(){var s,r=this.a2$,q=t.Qv,p=this.hY,o=0 +while(!0){if(r!=null){p.toString +s=o0)k.XM(c,l,e) +else k.XM(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.XR(e,n) +c=a.$1(c)}return 0}, +ts(a){var s,r,q,p,o,n,m=this +switch(m.aZ.a){case 0:return null +case 1:case 2:case 3:break}s=m.gq(m) +r=0+s.a +q=0+s.b +s=t.r +if(s.a(A.J.prototype.ga9.call(a)).f===0||!isFinite(s.a(A.J.prototype.ga9.call(a)).y))return new A.L(0,0,r,q) +p=s.a(A.J.prototype.ga9.call(a)).y-s.a(A.J.prototype.ga9.call(a)).r+s.a(A.J.prototype.ga9.call(a)).f +switch(A.oc(m.B,s.a(A.J.prototype.ga9.call(a)).b).a){case 2:o=0+p +n=0 +break +case 0:q-=p +n=0 +o=0 +break +case 1:n=0+p +o=0 +break +case 3:r-=p +n=0 +o=0 +break +default:n=0 +o=0}return new A.L(n,o,r,q)}, +Ld(a){var s,r,q,p,o=this +if(o.ao==null){s=o.gq(o) +return new A.L(0,0,0+s.a,0+s.b)}switch(A.bU(o.B).a){case 1:o.gq(o) +o.gq(o) +s=o.ao +s.toString +r=o.gq(o) +q=o.gq(o) +p=o.ao +p.toString +return new A.L(0,0-s,0+r.a,0+q.b+p) +case 0:o.gq(o) +s=o.ao +s.toString +o.gq(o) +r=o.gq(o) +q=o.ao +q.toString +return new A.L(0-s,0,0+r.a+q,0+o.gq(o).b)}}, +aE(a,b){var s,r,q,p=this +if(p.a2$==null)return +s=p.gVI()&&p.aZ!==B.n +r=p.bt +if(s){s=p.cx +s===$&&A.b() +q=p.gq(p) +r.sb2(0,a.tX(s,b,new A.L(0,0,0+q.a,0+q.b),p.gaEL(),p.aZ,r.a))}else{r.sb2(0,null) +p.a76(a,b)}}, +m(){this.bt.sb2(0,null) +this.iU()}, +a76(a,b){var s,r,q,p,o +for(s=J.al(this.gU3()),r=b.a,q=b.b;s.v();){p=s.gG(s) +if(p.fx.w){o=this.WR(p) +a.em(p,new A.m(r+o.a,q+o.b))}}}, +dZ(a,b){var s,r,q,p,o=this,n={} +n.a=n.b=null +switch(A.bU(o.B).a){case 1:n.b=b.b +n.a=b.a +break +case 0:n.b=b.a +n.a=b.b +break}s=new A.EV(a.a,a.b,a.c) +for(r=J.al(o.ga8k());r.v();){q=r.gG(r) +if(!q.fx.w)continue +p=new A.bQ(new Float64Array(16)) +p.fQ() +o.eL(q,p) +if(a.aFp(new A.aRq(n,o,q,s),p))return!0}return!1}, +vS(a,a0,a1,a2){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=null +a1=A.bU(c.B) +s=a instanceof A.dk +for(r=b,q=a,p=0;q.gbP(q)!==c;q=o){o=q.gbP(q) +o.toString +if(q instanceof A.O)r=q +if(o instanceof A.dk){n=o.U2(q) +n.toString +p+=n}else{p=0 +s=!1}}if(r!=null){o=r.gbP(r) +o.toString +t.nl.a(o) +m=t.r.a(A.J.prototype.ga9.call(o)).b +switch(a1.a){case 0:l=r.gq(r).a +break +case 1:l=r.gq(r).b +break +default:l=b}if(a2==null)a2=a.gr7() +k=A.jj(a.cl(0,r),a2)}else{if(s){t.nl.a(a) +o=t.r +m=o.a(A.J.prototype.ga9.call(a)).b +l=a.fx.a +if(a2==null)switch(a1.a){case 0:a2=new A.L(0,0,0+l,0+o.a(A.J.prototype.ga9.call(a)).w) +break +case 1:a2=new A.L(0,0,0+o.a(A.J.prototype.ga9.call(a)).w,0+a.fx.a) +break}}else{o=c.a6.at +o.toString +a2.toString +return new A.p9(o,a2)}k=a2}t.nl.a(q) +switch(A.oc(c.B,m).a){case 0:o=k.d +p+=l-o +j=o-k.b +break +case 1:o=k.a +p+=o +j=k.c-o +break +case 2:o=k.b +p+=o +j=k.d-o +break +case 3:o=k.c +p+=l-o +j=o-k.a +break +default:j=b}i=q.fx.f>0&&p>=0 +p=c.YG(q,p) +h=A.jj(a.cl(0,c),a2) +g=c.ac_(q) +switch(t.r.a(A.J.prototype.ga9.call(q)).b.a){case 0:if(i&&a0<=0)return new A.p9(1/0,h) +p-=g +break +case 1:if(i&&a0>=1)return new A.p9(-1/0,h) +switch(a1.a){case 1:p-=h.d-h.b +break +case 0:p-=h.c-h.a +break}break}switch(a1.a){case 0:f=c.gq(c).a-g +break +case 1:f=c.gq(c).b-g +break +default:f=b}e=p-(f-j)*a0 +o=c.a6.at +o.toString +d=o-e +switch(c.B.a){case 2:h=h.bi(0,0,d) +break +case 1:h=h.bi(0,d,0) +break +case 0:h=h.bi(0,0,-d) +break +case 3:h=h.bi(0,-d,0) +break}return new A.p9(e,h)}, +O6(a,b,c){return this.vS(a,b,null,c)}, +afy(a,b){return this.vS(a,b,null,null)}, +a8r(a,b,c){var s=this +switch(A.oc(s.B,c).a){case 0:return new A.m(0,s.gq(s).b-(b+a.fx.c)) +case 1:return new A.m(b,0) +case 2:return new A.m(0,b) +case 3:return new A.m(s.gq(s).a-(b+a.fx.c),0)}}, +i8(a,b,c,d){var s=this +if(!s.a6.r.gwN())return s.HM(a,b,c,d) +s.HM(a,null,c,A.btL(a,b,c,s.a6,d,s))}, +Cj(){return this.i8(B.aO,null,B.B,null)}, +w1(a){return this.i8(B.aO,null,B.B,a)}, +yv(a,b,c){return this.i8(a,null,b,c)}, +w2(a,b){return this.i8(B.aO,a,B.B,b)}, +$iEf:1} +A.aRr.prototype={ +$1(a){var s=a.fx +return s.w||s.z>0}, +$S:410} +A.aRq.prototype={ +$1(a){var s=this,r=s.c,q=s.a,p=s.b.a8s(r,q.b) +return r.aaX(s.d,q.a,p)}, +$S:191} +A.uK.prototype={ +a_d(a,b,c,d,e,f,g,h,i){var s +this.I(0,f) +s=this.a2$ +if(s!=null)this.ed=s}, +fR(a){if(!(a.b instanceof A.k2))a.b=new A.k2(null,null,B.i)}, +gkj(){return this.hZ}, +skj(a){if(a===this.hZ)return +this.hZ=a +this.aa()}, +sbM(a){if(a==this.ed)return +this.ed=a +this.aa()}, +goB(){return!0}, +da(a){return new A.U(A.V(1/0,a.a,a.b),A.V(1/0,a.c,a.d))}, +ce(){var s,r,q,p,o,n,m,l,k=this +switch(A.bU(k.B).a){case 1:k.a6.qB(k.gq(k).b) +break +case 0:k.a6.qB(k.gq(k).a) +break}if(k.ed==null){k.lk=k.iE=0 +k.kt=!1 +k.a6.pI(0,0) +return}switch(A.bU(k.B).a){case 1:s=k.gq(k).b +r=k.gq(k).a +break +case 0:s=k.gq(k).a +r=k.gq(k).b +break +default:s=null +r=null}k.ed.toString +q=0 +do{p=k.a6.at +p.toString +o=k.Tj(s,r,p+0) +if(o!==0)k.a6.a90(o) +else{p=k.a6 +n=k.iE +n===$&&A.b() +n=Math.min(0,n+s*k.gkj()) +m=k.lk +m===$&&A.b() +if(p.pI(n,Math.max(0,m-s*(1-k.gkj()))))break}l=q+1 +if(l<10){q=l +continue}else break}while(!0)}, +Tj(a,b,c){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this +e.lk=e.iE=0 +e.kt=!1 +s=a*e.gkj()-c +r=A.V(s,0,a) +q=a-s +p=A.V(q,0,a) +switch(e.aN.a){case 0:e.ao=e.an +break +case 1:e.ao=a*e.an +break}o=e.ao +o.toString +n=a+2*o +m=s+o +l=A.V(m,0,n) +k=A.V(n-m,0,n) +j=e.ed.b +j.toString +i=A.l(e).h("ar.1").a(j).ds$ +j=i==null +if(!j){h=Math.max(a,s) +g=e.FC(e.ga8j(),A.V(q,-o,0),i,b,B.nu,p,a,0,l,r,h-a) +if(g!==0)return-g}q=e.ed +o=-s +h=Math.max(0,o) +o=j?Math.min(0,o):0 +j=s>=a?s:r +f=e.ao +f.toString +return e.FC(e.gU0(),A.V(s,-f,0),q,b,B.hy,j,a,o,k,p,h)}, +gVI(){return this.kt}, +XR(a,b){var s,r=this +switch(a.a){case 0:s=r.lk +s===$&&A.b() +r.lk=s+b.a +break +case 1:s=r.iE +s===$&&A.b() +r.iE=s-b.a +break}if(b.x)r.kt=!0}, +XM(a,b,c){var s=a.b +s.toString +t.jB.a(s).a=this.a8r(a,b,c)}, +WR(a){var s=a.b +s.toString +return t.jB.a(s).a}, +YG(a,b){var s,r,q,p,o=this +switch(t.r.a(A.J.prototype.ga9.call(a)).b.a){case 0:s=o.ed +for(r=A.l(o).h("ar.1"),q=0;s!==a;){q+=s.fx.a +p=s.b +p.toString +s=r.a(p).a3$}return q+b +case 1:r=o.ed.b +r.toString +p=A.l(o).h("ar.1") +s=p.a(r).ds$ +for(q=0;s!==a;){q-=s.fx.a +r=s.b +r.toString +s=p.a(r).ds$}return q-b}}, +ac_(a){var s,r,q,p,o=this +switch(t.r.a(A.J.prototype.ga9.call(a)).b.a){case 0:s=o.ed +for(r=A.l(o).h("ar.1"),q=0;s!==a;){q+=s.fx.f +p=s.b +p.toString +s=r.a(p).a3$}return q +case 1:r=o.ed.b +r.toString +p=A.l(o).h("ar.1") +s=p.a(r).ds$ +for(q=0;s!==a;){q+=s.fx.f +r=s.b +r.toString +s=p.a(r).ds$}return q}}, +eL(a,b){var s=a.b +s.toString +s=t.jB.a(s).a +b.bi(0,s.a,s.b)}, +a8s(a,b){var s,r=a.b +r.toString +t.jB.a(r) +s=t.r +switch(A.oc(s.a(A.J.prototype.ga9.call(a)).a,s.a(A.J.prototype.ga9.call(a)).b).a){case 2:return b-r.a.b +case 1:return b-r.a.a +case 0:return a.fx.c-(b-r.a.b) +case 3:return a.fx.c-(b-r.a.a)}}, +gU3(){var s,r,q=this,p=A.a([],t.Ry),o=q.a2$ +if(o==null)return p +for(s=A.l(q).h("ar.1");o!=q.ed;){o.toString +p.push(o) +r=o.b +r.toString +o=s.a(r).a3$}o=q.dF$ +for(;!0;){o.toString +p.push(o) +if(o===q.ed)return p +r=o.b +r.toString +o=s.a(r).ds$}}, +ga8k(){var s,r,q,p=this,o=A.a([],t.Ry) +if(p.a2$==null)return o +s=p.ed +for(r=A.l(p).h("ar.1");s!=null;){o.push(s) +q=s.b +q.toString +s=r.a(q).a3$}q=p.ed.b +q.toString +s=r.a(q).ds$ +for(;s!=null;){o.push(s) +q=s.b +q.toString +s=r.a(q).ds$}return o}} +A.a8i.prototype={ +fR(a){if(!(a.b instanceof A.pd))a.b=new A.pd(null,null)}, +ce(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=t.k.a(A.J.prototype.ga9.call(g)) +if(g.a2$==null){switch(A.bU(g.B).a){case 1:g.id=new A.U(f.b,f.c) +break +case 0:g.id=new A.U(f.a,f.d) +break}g.a6.qB(0) +g.ed=g.hZ=0 +g.iE=!1 +g.a6.pI(0,0) +return}switch(A.bU(g.B).a){case 1:s=f.d +r=f.b +break +case 0:s=f.b +r=f.d +break +default:s=null +r=null}for(q=f.a,p=f.b,o=f.c,n=f.d,m=null;!0;){l=g.a6.at +l.toString +k=g.Tj(s,r,l) +if(k!==0){l=g.a6 +j=l.at +j.toString +l.at=j+k +l.ch=!0}else{switch(A.bU(g.B).a){case 1:l=g.ed +l===$&&A.b() +m=A.V(l,o,n) +break +case 0:l=g.ed +l===$&&A.b() +m=A.V(l,q,p) +break}i=g.a6.qB(m) +l=g.a6 +j=g.hZ +j===$&&A.b() +h=l.pI(0,Math.max(0,j-m)) +if(i&&h)break}}switch(A.bU(g.B).a){case 1:g.id=new A.U(A.V(r,q,p),A.V(m,o,n)) +break +case 0:g.id=new A.U(A.V(m,q,p),A.V(r,o,n)) +break}}, +Tj(a,b,c){var s,r,q,p,o,n=this +n.ed=n.hZ=0 +n.iE=c<0 +switch(n.aN.a){case 0:n.ao=n.an +break +case 1:n.ao=a*n.an +break}s=n.a2$ +r=Math.max(0,c) +q=Math.min(0,c) +p=Math.max(0,-c) +o=n.ao +o.toString +return n.FC(n.gU0(),-o,s,b,B.hy,p,a,q,a+2*o,a+q,r)}, +gVI(){return this.iE}, +XR(a,b){var s=this,r=s.hZ +r===$&&A.b() +s.hZ=r+b.a +if(b.x)s.iE=!0 +r=s.ed +r===$&&A.b() +s.ed=r+b.e}, +XM(a,b,c){var s=a.b +s.toString +t.Xp.a(s).a=b}, +WR(a){var s=a.b +s.toString +s=t.Xp.a(s).a +s.toString +return this.a8r(a,s,B.hy)}, +YG(a,b){var s,r,q,p=this.a2$ +for(s=A.l(this).h("ar.1"),r=0;p!==a;){r+=p.fx.a +q=p.b +q.toString +p=s.a(q).a3$}return r+b}, +ac_(a){var s,r,q,p=this.a2$ +for(s=A.l(this).h("ar.1"),r=0;p!==a;){r+=p.fx.f +q=p.b +q.toString +p=s.a(q).a3$}return r}, +eL(a,b){var s=this.WR(t.nl.a(a)) +b.bi(0,s.a,s.b)}, +a8s(a,b){var s,r=this,q=a.b +q.toString +t.Xp.a(q) +s=t.r +switch(A.oc(s.a(A.J.prototype.ga9.call(a)).a,s.a(A.J.prototype.ga9.call(a)).b).a){case 2:case 1:q=q.a +q.toString +return b-q +case 0:s=r.gq(r) +q=q.a +q.toString +return s.b-b-q +case 3:s=r.gq(r) +q=q.a +q.toString +return s.a-b-q}}, +gU3(){var s,r,q=A.a([],t.Ry),p=this.dF$ +for(s=A.l(this).h("ar.1");p!=null;){q.push(p) +r=p.b +r.toString +p=s.a(r).ds$}return q}, +ga8k(){var s,r,q=A.a([],t.Ry),p=this.a2$ +for(s=A.l(this).h("ar.1");p!=null;){q.push(p) +r=p.b +r.toString +p=s.a(r).a3$}return q}} +A.kj.prototype={ +aw(a){var s,r,q +this.eS(a) +s=this.a2$ +for(r=A.l(this).h("kj.0");s!=null;){s.aw(a) +q=s.b +q.toString +s=r.a(q).a3$}}, +ap(a){var s,r,q +this.eT(0) +s=this.a2$ +for(r=A.l(this).h("kj.0");s!=null;){s.ap(0) +q=s.b +q.toString +s=r.a(q).a3$}}} +A.O5.prototype={ +J(){return"ScrollDirection."+this.b}} +A.iY.prototype={ +FS(a,b,c,d){var s=d.a===B.B.a +if(s){this.fg(b) +return A.cR(null,t.H)}else return this.j3(b,c,d)}, +l(a){var s=this,r=A.a([],t.s) +s.ajx(r) +r.push(A.p(s.w).l(0)) +r.push(s.r.l(0)) +r.push(A.i(s.fr)) +r.push(s.k4.l(0)) +return"#"+A.br(s)+"("+B.b.ck(r,", ")+")"}, +fX(a){var s=this.at +if(s!=null)a.push("offset: "+B.e.aF(s,1))}} +A.ady.prototype={ +J(){return"WrapAlignment."+this.b}} +A.adz.prototype={ +J(){return"WrapCrossAlignment."+this.b}} +A.TS.prototype={} +A.pp.prototype={} +A.NO.prototype={ +stu(a,b){if(this.B===b)return +this.B=b +this.aa()}, +sjI(a){if(this.W===a)return +this.W=a +this.aa()}, +sOx(a,b){if(this.a6===b)return +this.a6=b +this.aa()}, +saPp(a){if(this.an===a)return +this.an=a +this.aa()}, +saPs(a){if(this.ao===a)return +this.ao=a +this.aa()}, +sUv(a){if(this.aN===a)return +this.aN=a +this.aa()}, +fR(a){if(!(a.b instanceof A.pp))a.b=new A.pp(null,null,B.i)}, +bX(a){var s,r,q,p,o=this +switch(o.B.a){case 0:s=o.a2$ +for(r=A.l(o).h("ar.1"),q=0;s!=null;){q=Math.max(q,s.aA(B.ae,1/0,s.gbW())) +p=s.b +p.toString +s=r.a(p).a3$}return q +case 1:return o.CK(new A.aN(0,1/0,0,a)).a}}, +bQ(a){var s,r,q,p,o=this +switch(o.B.a){case 0:s=o.a2$ +for(r=A.l(o).h("ar.1"),q=0;s!=null;){q+=s.aA(B.ao,1/0,s.gc1()) +p=s.b +p.toString +s=r.a(p).a3$}return q +case 1:return o.CK(new A.aN(0,1/0,0,a)).a}}, +bR(a){var s,r,q,p,o=this +switch(o.B.a){case 0:return o.CK(new A.aN(0,a,0,1/0)).b +case 1:s=o.a2$ +for(r=A.l(o).h("ar.1"),q=0;s!=null;){q=Math.max(q,s.aA(B.aF,1/0,s.gcs())) +p=s.b +p.toString +s=r.a(p).a3$}return q}}, +bV(a){var s,r,q,p,o=this +switch(o.B.a){case 0:return o.CK(new A.aN(0,a,0,1/0)).b +case 1:s=o.a2$ +for(r=A.l(o).h("ar.1"),q=0;s!=null;){q+=s.aA(B.bt,1/0,s.gcR()) +p=s.b +p.toString +s=r.a(p).a3$}return q}}, +hS(a){return this.L7(a)}, +QN(a){switch(this.B.a){case 0:return a.a +case 1:return a.b}}, +QM(a){switch(this.B.a){case 0:return a.b +case 1:return a.a}}, +asd(a,b){switch(this.B.a){case 0:return new A.m(a,b) +case 1:return new A.m(b,a)}}, +arU(a,b,c){var s=b-c +switch(this.aN.a){case 0:return a?s:0 +case 1:return a?0:s +case 2:return s/2}}, +da(a){return this.CK(a)}, +CK(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this +switch(f.B.a){case 0:s=a.b +r=new A.aN(0,s,0,1/0) +break +case 1:s=a.d +r=new A.aN(0,1/0,0,s) +break +default:r=null +s=0}q=f.a2$ +for(p=A.l(f).h("ar.1"),o=0,n=0,m=0,l=0,k=0;q!=null;){j=A.bqk(q,r) +i=f.QN(j) +h=f.QM(j) +if(k>0&&m+i+f.a6>s){o=Math.max(o,m) +n+=l+f.ao +m=0 +l=0 +k=0}m+=i +l=Math.max(l,h) +if(k>0)m+=f.a6;++k +g=q.b +g.toString +q=p.a(g).a3$}n+=l +o=Math.max(o,m) +switch(f.B.a){case 0:return a.bJ(new A.U(o,n)) +case 1:return a.bJ(new A.U(n,o))}}, +ce(){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="RenderBox was not laid out: ",b5=t.k.a(A.J.prototype.ga9.call(b3)) +b3.b3=!1 +s=b3.a2$ +if(s==null){b3.id=new A.U(A.V(0,b5.a,b5.b),A.V(0,b5.c,b5.d)) +return}switch(b3.B.a){case 0:r=b5.b +q=new A.aN(0,r,0,1/0) +p=b3.aZ===B.ab&&!0 +o=b3.bt===B.pV&&!0 +break +case 1:r=b5.d +q=new A.aN(0,1/0,0,r) +p=b3.bt===B.pV&&!0 +o=b3.aZ===B.ab&&!0 +break +default:q=null +r=0 +p=!1 +o=!1}n=b3.a6 +m=b3.ao +l=A.a([],t.M7) +for(k=t.aP,j=0,i=0,h=0,g=0,f=0;s!=null;){s.cS(q,!0) +e=s.id +d=b3.QN(e==null?A.r(A.R(b4+A.p(s).l(0)+"#"+A.br(s))):e) +e=s.id +c=b3.QM(e==null?A.r(A.R(b4+A.p(s).l(0)+"#"+A.br(s))):e) +if(f>0&&h+n+d>r){j=Math.max(j,h) +i+=g +if(l.length!==0)i+=m +l.push(new A.TS(h,g,f)) +h=0 +g=0 +f=0}h+=d +if(f>0)h+=n +g=Math.max(g,c);++f +e=s.b +e.toString +k.a(e) +e.e=l.length +s=e.a3$}if(f>0){j=Math.max(j,h) +i+=g +if(l.length!==0)i+=m +l.push(new A.TS(h,g,f))}b=l.length +switch(b3.B.a){case 0:b3.id=b5.bJ(new A.U(j,i)) +a=b3.gq(b3).a +a0=b3.gq(b3).b +break +case 1:b3.id=b5.bJ(new A.U(i,j)) +a=b3.gq(b3).b +a0=b3.gq(b3).a +break +default:a=0 +a0=0}b3.b3=a1?a1/(b-1):0 +a2=0 +break +case 4:a3=a1/b +a2=a3/2 +break +case 5:a3=a1/(b+1) +a2=a3 +break +default:a2=0 +a3=0}a3+=m +a4=o?a0-a2:a2 +s=b3.a2$ +for(a5=0;a51?a7/(f-1):0 +a8=0 +break +case 4:a9=a7/f +a8=a9/2 +break +case 5:a9=a7/(f+1) +a8=a9 +break +default:a8=0 +a9=0}a9+=n +b0=p?a-a8:a8 +if(o)a4-=g +for(;s!=null;){e=s.b +e.toString +k.a(e) +if(e.e!==a5)break +b1=s.id +d=b3.QN(b1==null?A.r(A.R(b4+A.p(s).l(0)+"#"+A.br(s))):b1) +b1=s.id +b2=b3.arU(o,g,b3.QM(b1==null?A.r(A.R(b4+A.p(s).l(0)+"#"+A.br(s))):b1)) +if(p)b0-=d +e.a=b3.asd(b0,a4+b2) +b0=p?b0-a9:b0+(d+a9) +s=e.a3$}a4=o?a4-a3:a4+(g+a3)}}, +dZ(a,b){return this.A4(a,b)}, +aE(a,b){var s,r=this,q=r.b3&&r.Y!==B.n,p=r.bd +if(q){q=r.cx +q===$&&A.b() +s=r.gq(r) +p.sb2(0,a.tX(q,b,new A.L(0,0,0+s.a,0+s.b),r.ga9q(),r.Y,p.a))}else{p.sb2(0,null) +r.x5(a,b)}}, +m(){this.bd.sb2(0,null) +this.iU()}} +A.alN.prototype={ +aw(a){var s,r,q +this.eS(a) +s=this.a2$ +for(r=t.aP;s!=null;){s.aw(a) +q=s.b +q.toString +s=r.a(q).a3$}}, +ap(a){var s,r,q +this.eT(0) +s=this.a2$ +for(r=t.aP;s!=null;){s.ap(0) +q=s.b +q.toString +s=r.a(q).a3$}}} +A.alO.prototype={} +A.Gx.prototype={} +A.za.prototype={ +J(){return"SchedulerPhase."+this.b}} +A.aN9.prototype={} +A.ij.prototype={ +ada(a){var s=this.R8$ +B.b.E(s,a) +if(s.length===0){s=$.bO() +s.ch=null +s.CW=$.ac}}, +ar5(a){var s,r,q,p,o,n,m,l,k=this.R8$,j=A.a8(k,!0,t.ph) +for(p=j.length,o=0;o0)return!1 +if(j)A.r(A.R(l)) +s=k.Ij(0) +j=s.gacE() +if(m.rx$.$2$priority$scheduler(j,m)){try{if(k.c===0)A.r(A.R(l));++k.d +k.Ij(0) +p=k.c-1 +o=k.Ij(p) +k.b[p]=null +k.c=p +if(p>0)k.anR(o,0) +s.aRi()}catch(n){r=A.ak(n) +q=A.aJ(n) +j=A.c0("during a task callback") +A.e6(new A.cg(r,q,"scheduler library",j,null,!1))}return k.c!==0}return!1}, +C5(a,b){var s,r=this +r.rE() +s=++r.x1$ +r.x2$.n(0,s,new A.Gx(a)) +return r.x1$}, +Hj(a){return this.C5(a,!1)}, +gaIE(){var s=this +if(s.bL$==null){if(s.aK$===B.fV)s.rE() +s.bL$=new A.aD(new A.a7($.ac,t.b),t.gR) +s.y2$.push(new A.aSR(s))}return s.bL$.a}, +gaas(){return this.b6$}, +a52(a){if(this.b6$===a)return +this.b6$=a +if(a)this.rE()}, +a9V(){var s=$.bO() +if(s.x==null){s.x=this.gasK() +s.y=$.ac}if(s.z==null){s.z=this.gatb() +s.Q=$.ac}}, +V3(){switch(this.aK$.a){case 0:case 4:this.rE() +return +case 1:case 2:case 3:return}}, +rE(){var s,r=this +if(!r.co$)s=!(A.ij.prototype.gaas.call(r)&&r.fo$) +else s=!0 +if(s)return +r.a9V() +$.bO().rE() +r.co$=!0}, +afY(){if(this.co$)return +this.a9V() +$.bO().rE() +this.co$=!0}, +YE(){var s,r=this +if(r.c_$||r.aK$!==B.fV)return +r.c_$=!0 +s=r.co$ +A.d0(B.B,new A.aST(r)) +A.d0(B.B,new A.aSU(r,s)) +r.aMm(new A.aSV(r))}, +a_u(a){var s=this.cp$ +return A.dW(B.e.bg((s==null?B.B:new A.bj(a.a-s.a)).a/1)+this.ct$.a,0,0)}, +asL(a){if(this.c_$){this.ao$=!0 +return}this.aaz(a)}, +atc(){var s=this +if(s.ao$){s.ao$=!1 +s.y2$.push(new A.aSQ(s)) +return}s.aaC()}, +aaz(a){var s,r,q=this +if(q.cp$==null)q.cp$=a +r=a==null +q.W$=q.a_u(r?q.B$:a) +if(!r)q.B$=a +q.co$=!1 +try{q.aK$=B.NF +s=q.x2$ +q.x2$=A.I(t.S,t.Jc) +J.it(s,new A.aSS(q)) +q.xr$.ab(0)}finally{q.aK$=B.apC}}, +aP5(a){var s=this,r=s.aZ$,q=r==null +if(!q&&r!==a)return null +if(r===a)++s.bt$ +else if(q){s.aZ$=a +s.bt$=1}return new A.aN9(s.gaqo())}, +aqp(){if(--this.bt$===0){this.aZ$=null +$.bO()}}, +aaC(){var s,r,q,p,o,n,m,l,k=this +try{k.aK$=B.lj +for(p=t.Vu,o=A.a8(k.y1$,!0,p),n=o.length,m=0;m0&&r<4){s=s.W$ +s.toString +q.c=s}s=q.a +s.toString +return s}, +yy(a,b){var s=this,r=s.a +if(r==null)return +s.c=s.a=null +s.NK() +if(b)r.a5Y(s) +else r.a5Z()}, +h8(a){return this.yy(a,!1)}, +aDi(a){var s,r=this +r.e=null +s=r.c +if(s==null)s=r.c=a +r.d.$1(new A.bj(a.a-s.a)) +if(!r.b&&r.a!=null&&r.e==null)r.e=$.cB.C5(r.gJR(),!0)}, +NK(){var s,r=this.e +if(r!=null){s=$.cB +s.x2$.E(0,r) +s.xr$.F(0,r) +this.e=null}}, +m(){var s=this,r=s.a +if(r!=null){s.a=null +s.NK() +r.a5Y(s)}}, +aPL(a,b){var s=""+"Ticker()" +return s.charCodeAt(0)==0?s:s}, +l(a){return this.aPL(a,!1)}} +A.zJ.prototype={ +a5Z(){this.c=!0 +this.a.fm(0) +var s=this.b +if(s!=null)s.fm(0)}, +a5Y(a){var s +this.c=!1 +s=this.b +if(s!=null)s.kn(new A.PB(a))}, +aeh(a){var s,r,q=this,p=new A.b_2(a) +if(q.b==null){s=q.b=new A.aD(new A.a7($.ac,t.b),t.gR) +r=q.c +if(r!=null)if(r)s.fm(0) +else s.kn(B.axx)}q.b.a.fj(p,p,t.H)}, +zO(a,b){return this.a.a.zO(a,b)}, +mp(a){return this.zO(a,null)}, +fj(a,b,c){return this.a.a.fj(a,b,c)}, +be(a,b){return this.fj(a,null,b)}, +fu(a){return this.a.a.fu(a)}, +l(a){var s=A.br(this),r=this.c +if(r==null)r="active" +else r=r?"complete":"canceled" +return"#"+s+"("+r+")"}, +$iS:1} +A.b_2.prototype={ +$1(a){this.a.$0()}, +$S:30} +A.PB.prototype={ +l(a){var s=this.a +if(s!=null)return"This ticker was canceled: "+s.l(0) +return'The ticker was canceled before the "orCancel" property was first used.'}, +$icv:1} +A.a95.prototype={ +gDw(){var s,r,q=this.aa4$ +if(q===$){s=$.bO().a +r=$.aH() +q!==$&&A.aq() +q=this.aa4$=new A.bF(s.c,r,t.G)}return q}, +aqc(){--this.Vd$ +this.gDw().sj(0,this.Vd$>0)}, +a2t(){var s,r=this +if($.bO().a.c){if(r.LA$==null){++r.Vd$ +r.gDw().sj(0,!0) +r.LA$=new A.aTS(r.gaqb())}}else{s=r.LA$ +if(s!=null)s.a.$0() +r.LA$=null}}, +auU(a){var s,r,q=a.d +if(t.V4.b(q)){s=B.bp.kp(q) +if(J.j(s,B.qV))s=q +r=new A.EF(a.a,a.b,a.c,s)}else r=a +s=this.go$.i(0,r.b) +if(s!=null){s=s.y +if(s!=null){s=s.at +if(s!=null)s.aNZ(r.c,r.a,r.d)}}}} +A.aTS.prototype={} +A.nE.prototype={ +l(a){return"SemanticsTag("+this.a+")"}} +A.Br.prototype={} +A.YY.prototype={} +A.BR.prototype={ +gu(a){return A.X(null,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){if(b==null)return!1 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.BR&&b.b===this.b&&b.c===this.c}, +l(a){return"CustomSemanticsAction("+A.i($.bjO.i(0,this))+", label:null, hint:"+this.b+", action:"+this.c.l(0)+")"}} +A.dT.prototype={ +U(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.a8(this.b,!0,t.Vc) +q=b.b +p=q.length +if(p!==0)for(o=0;o=0;--o)r[o]=n[q-o-1].b}n=a3.fr +m=n.length +if(m!==0){l=new Int32Array(m) +for(o=0;o0?r[n-1].p2:null +if(n!==0)if(J.a_(l)===J.a_(o)){if(l!=null)o.toString +k=!0}else k=!1 +else k=!0 +if(!k&&p.length!==0){if(o!=null)B.b.lY(p) +B.b.I(q,p) +B.b.ab(p)}p.push(new A.rP(m,l,n))}if(o!=null)B.b.lY(p) +B.b.I(q,p) +s=t.J3 +return A.a8(new A.ad(q,new A.aTU(),s),!0,s.h("av.E"))}, +agf(a){if(this.ay==null)return +B.mg.kc(0,a.adL(this.b))}, +f4(){return"SemanticsNode#"+this.b}, +aPE(a,b,c){return new A.ams(a,this,b,!0,!0,null,c)}, +adI(a){return this.aPE(B.a1s,null,a)}} +A.aTW.prototype={ +$1(a){var s,r,q,p=this.a +p.a=p.a|a.fr +s=p.b +r=a.z +q=a.dx +p.b=s|(r?q&$.ary():q) +if(p.x==null)p.x=a.p1 +if(p.z==null)p.z=a.p3 +if(p.Q==null)p.Q=a.R8 +if(p.as==null)p.as=a.RG +if(p.at==null)p.at=a.rx +if(p.ax==null)p.ax=a.ry +if(p.ay==null)p.ay=a.to +p.ch=a.x1 +if(p.CW==null)p.CW=a.x2 +if(p.cx==null)p.cx=a.xr +if(p.d.a==="")p.d=a.fy +if(p.e.a==="")p.e=a.go +if(p.f.a==="")p.f=a.id +if(p.w==="")p.w=a.k2 +s=a.dy +if(s!=null){r=p.y;(r==null?p.y=A.aW(t.g3):r).I(0,s)}for(s=this.b.db,s=A.ie(s,s.r,A.l(s).c),r=this.c;s.v();)r.F(0,A.ayc(s.d)) +s=a.ok +if(s!=null){s=s.a +if(s!=null)r.F(0,A.ayc(new A.BR(s,B.fY))) +a.ok.toString}s=p.c +r=p.x +p.c=A.beY(a.fx,a.p1,s,r) +r=p.r +s=p.x +p.r=A.beY(a.k1,a.p1,r,s) +p.cy=Math.max(p.cy,a.k4+a.k3) +return!0}, +$S:145} +A.aTU.prototype={ +$1(a){return a.a}, +$S:416} +A.rv.prototype={ +bO(a,b){return B.e.bO(this.b,b.b)}, +$icD:1} +A.o7.prototype={ +bO(a,b){return B.e.bO(this.a,b.a)}, +ah5(){var s,r,q,p,o,n,m,l,k,j=A.a([],t.TV) +for(s=this.c,r=s.length,q=0;q") +return A.a8(new A.iD(n,new A.bcc(),s),!0,s.h("z.E"))}, +ah4(){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.I(s,t.bu) +q=A.I(s,s) +for(p=this.b,o=p===B.ab,p=p===B.j,n=a4,m=0;m2.356194490192345 +else a0=!1 +if(a||a0)q.n(0,l.b,f.b)}}a1=A.a([],t.t) +a2=A.a(a3.slice(0),A.ab(a3)) +B.b.fw(a2,new A.bc8()) +new A.ad(a2,new A.bc9(),A.ab(a2).h("ad<1,n>")).al(0,new A.bcb(A.aW(s),q,a1)) +a3=t.qn +a3=A.a8(new A.ad(a1,new A.bca(r),a3),!0,a3.h("av.E")) +a4=A.ab(a3).h("da<1>") +return A.a8(new A.da(a3,a4),!0,a4.h("av.E"))}, +$icD:1} +A.bcc.prototype={ +$1(a){return a.ah4()}, +$S:235} +A.bc8.prototype={ +$2(a,b){var s,r,q=a.e,p=A.AF(a,new A.m(q.a,q.b)) +q=b.e +s=A.AF(b,new A.m(q.a,q.b)) +r=B.e.bO(p.b,s.b) +if(r!==0)return-r +return-B.e.bO(p.a,s.a)}, +$S:158} +A.bcb.prototype={ +$1(a){var s=this,r=s.a +if(r.p(0,a))return +r.F(0,a) +r=s.b +if(r.aq(0,a)){r=r.i(0,a) +r.toString +s.$1(r)}s.c.push(a)}, +$S:33} +A.bc9.prototype={ +$1(a){return a.b}, +$S:419} +A.bca.prototype={ +$1(a){var s=this.a.i(0,a) +s.toString +return s}, +$S:420} +A.beS.prototype={ +$1(a){return a.ah5()}, +$S:235} +A.rP.prototype={ +bO(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.bO(0,s)}, +$icD:1} +A.Ol.prototype={ +m(){var s=this +s.b.ab(0) +s.c.ab(0) +s.d.ab(0) +s.eK()}, +agh(){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=g.b +if(f.a===0)return +s=A.aW(t.S) +r=A.a([],t.QF) +for(q=A.l(f).h("ba<1>"),p=q.h("z.E"),o=g.d;f.a!==0;){n=A.a8(new A.ba(f,new A.aU_(g),q),!0,p) +f.ab(0) +o.ab(0) +B.b.fw(n,new A.aU0()) +B.b.I(r,n) +for(m=n.length,l=0;l#"+A.br(this)}} +A.aU_.prototype={ +$1(a){return!this.a.d.p(0,a)}, +$S:145} +A.aU0.prototype={ +$2(a,b){return a.CW-b.CW}, +$S:158} +A.aU1.prototype={ +$2(a,b){return a.CW-b.CW}, +$S:158} +A.aTZ.prototype={ +$1(a){if(a.cy.aq(0,this.b)){this.a.a=a +return!1}return!0}, +$S:145} +A.nD.prototype={ +wa(a,b){var s=this +s.f.n(0,a,b) +s.r=s.r|a.a +s.e=!0}, +kX(a,b){this.wa(a,new A.aTH(b))}, +stU(a){a.toString +this.kX(B.fY,a) +this.w=a}, +svB(a){a.toString +this.kX(B.NN,a)}, +sMS(a){this.kX(B.il,a)}, +sMJ(a){this.kX(B.aq0,a)}, +sMT(a){this.kX(B.im,a)}, +sMU(a){this.kX(B.ij,a)}, +sMR(a){this.kX(B.ik,a)}, +sMK(a){this.kX(B.NO,a)}, +sMG(a){this.kX(B.NM,a)}, +sME(a,b){this.kX(B.aq1,b)}, +sMF(a,b){this.kX(B.aq4,b)}, +sMP(a,b){this.kX(B.apX,b)}, +sMN(a){this.wa(B.aq2,new A.aTL(a))}, +sML(a){this.wa(B.aq5,new A.aTJ(a))}, +sMO(a){this.wa(B.aq3,new A.aTM(a))}, +sMM(a){this.wa(B.apW,new A.aTK(a))}, +sMV(a){this.wa(B.apY,new A.aTN(a))}, +sMW(a){this.wa(B.apZ,new A.aTO(a))}, +sMH(a){this.kX(B.p9,a)}, +sMI(a){this.kX(B.pa,a)}, +sag1(a){if(a==this.k4)return +this.k4=a +this.e=!0}, +sag3(a){if(a==this.ok)return +this.ok=a +this.e=!0}, +sMu(a){if(a==this.p2)return +this.p2=a +this.e=!0}, +sL3(a){if(a==this.p3)return +this.p3=a +this.e=!0}, +saKO(a){if(a==null)return +this.xr=a +this.e=!0}, +sfn(a,b){if(b===this.y1)return +this.y1=b +this.e=!0}, +Ty(a){var s=this.cp;(s==null?this.cp=A.aW(t.g3):s).F(0,a)}, +c8(a,b){var s=this,r=s.ct,q=a.a +if(b)s.ct=r|q +else s.ct=r&~q +s.e=!0}, +abt(a){var s=this +if(a==null||!a.e||!s.e)return!0 +if((s.r&a.r)!==0)return!1 +if((s.ct&a.ct)!==0)return!1 +if(s.p2!=null&&a.p2!=null)return!1 +if(s.p3!=null&&a.p3!=null)return!1 +if(s.rx.a.length!==0&&a.rx.a.length!==0)return!1 +return!0}, +uK(a){var s,r,q,p=this +if(!a.e)return +s=a.f +if(a.b)s.al(0,new A.aTI(p)) +else p.f.I(0,s) +s=p.r +r=a.b +q=a.r +p.r=s|(r?q&$.ary():q) +p.R8.I(0,a.R8) +p.ct=p.ct|a.ct +if(p.co==null)p.co=a.co +if(p.aK==null)p.aK=a.aK +if(p.b6==null)p.b6=a.b6 +if(p.c_==null)p.c_=a.c_ +if(p.xr==null)p.xr=a.xr +if(p.k3==null)p.k3=a.k3 +if(p.ok==null)p.ok=a.ok +if(p.k4==null)p.k4=a.k4 +p.p1=a.p1 +if(p.p2==null)p.p2=a.p2 +if(p.p3==null)p.p3=a.p3 +s=p.bL +if(s==null){s=p.bL=a.bL +p.e=!0}if(p.k2==null)p.k2=a.k2 +r=p.RG +p.RG=A.beY(a.RG,a.bL,r,s) +if(p.rx.a==="")p.rx=a.rx +if(p.ry.a==="")p.ry=a.ry +if(p.to.a==="")p.to=a.to +s=p.x1 +r=p.bL +p.x1=A.beY(a.x1,a.bL,s,r) +if(p.x2==="")p.x2=a.x2 +p.y2=Math.max(p.y2,a.y2+a.y1) +p.e=p.e||a.e}, +aGZ(){var s=this,r=A.pc() +r.a=s.a +r.c=s.c +r.d=s.d +r.e=s.e +r.p4=s.p4 +r.bL=s.bL +r.k2=s.k2 +r.RG=s.RG +r.ry=s.ry +r.rx=s.rx +r.to=s.to +r.x1=s.x1 +r.xr=s.xr +r.x2=s.x2 +r.y1=s.y1 +r.y2=s.y2 +r.ct=s.ct +r.cp=s.cp +r.co=s.co +r.aK=s.aK +r.b6=s.b6 +r.c_=s.c_ +r.r=s.r +r.k3=s.k3 +r.ok=s.ok +r.k4=s.k4 +r.p1=s.p1 +r.p2=s.p2 +r.p3=s.p3 +r.f.I(0,s.f) +r.R8.I(0,s.R8) +r.b=s.b +return r}} +A.aTH.prototype={ +$1(a){this.a.$0()}, +$S:12} +A.aTL.prototype={ +$1(a){a.toString +this.a.$1(A.AE(a))}, +$S:12} +A.aTJ.prototype={ +$1(a){a.toString +this.a.$1(A.AE(a))}, +$S:12} +A.aTM.prototype={ +$1(a){a.toString +this.a.$1(A.AE(a))}, +$S:12} +A.aTK.prototype={ +$1(a){a.toString +this.a.$1(A.AE(a))}, +$S:12} +A.aTN.prototype={ +$1(a){var s,r,q +a.toString +s=J.arR(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.dq(B.t,r,q,!1))}, +$S:12} +A.aTO.prototype={ +$1(a){a.toString +this.a.$1(A.bm(a))}, +$S:12} +A.aTI.prototype={ +$2(a,b){if(($.ary()&a.a)>0)this.a.f.n(0,a,b)}, +$S:422} +A.ayk.prototype={ +J(){return"DebugSemanticsDumpOrder."+this.b}} +A.EG.prototype={ +bO(a,b){var s=this.aIo(b) +return s}, +$icD:1} +A.yq.prototype={ +aIo(a){var s=a.b,r=this.b +if(s===r)return 0 +return B.f.bO(r,s)}} +A.amr.prototype={} +A.amu.prototype={} +A.amv.prototype={} +A.XT.prototype={ +J(){return"Assertiveness."+this.b}} +A.aTQ.prototype={ +adL(a){var s=A.am(["type",this.a,"data",this.BR()],t.N,t.z) +if(a!=null)s.n(0,"nodeId",a) +return s}, +adK(){return this.adL(null)}, +l(a){var s,r,q,p=A.a([],t.s),o=this.BR(),n=J.fg(o.gcN(o)) +B.b.lY(n) +for(s=n.length,r=0;r#"+A.br(this)+"()"}} +A.avv.prototype={ +xG(a,b){if(b)return this.a.cK(0,a,new A.avw(this,a)) +return this.Zi(a,!0)}, +aMk(a,b,c){var s,r=this,q={},p=r.b +if(p.aq(0,a)){q=p.i(0,a) +q.toString +return c.h("S<0>").a(q)}q.a=q.b=null +r.xG(a,!1).be(b,c).fj(new A.avx(q,r,a,c),new A.avy(q,r,a),t.H) +s=q.a +if(s!=null)return s +s=new A.a7($.ac,c.h("a7<0>")) +q.b=new A.aD(s,c.h("aD<0>")) +p.n(0,a,s) +return q.b.a}} +A.avw.prototype={ +$0(){return this.a.Zi(this.b,!0)}, +$S:423} +A.avx.prototype={ +$1(a){var s=this,r=new A.cC(a,s.d.h("cC<0>")),q=s.a +q.a=r +s.b.b.n(0,s.c,r) +q=q.b +if(q!=null)q.cU(0,a)}, +$S(){return this.d.h("aE(0)")}} +A.avy.prototype={ +$2(a,b){this.b.b.E(0,this.c) +this.a.b.fc(a,b)}, +$S:26} +A.aNj.prototype={ +na(a,b){var s,r=null,q=B.aV.cV(A.fc(r,r,A.kn(B.nR,b,B.a_,!1),r,r,r).e),p=$.iR.dM$ +p===$&&A.b() +s=p.Hn(0,"flutter/assets",A.avb(q)).be(new A.aNk(b),t.V4) +return s}, +Mo(a){return this.aMe(a)}, +aMe(a){var s=0,r=A.y(t.SG),q,p=this,o,n +var $async$Mo=A.u(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.t(p.na(0,a),$async$Mo) +case 3:q=o.a2V(n.abi(c,0,null)) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Mo,r)}} +A.aNk.prototype={ +$1(a){if(a==null)throw A.c(A.Cr(A.a([A.bRm(this.a),A.c0("The asset does not exist or has empty data.")],t.F))) +return a}, +$S:424} +A.asM.prototype={ +$1(a){return this.aet(a)}, +aet(a){var s=0,r=A.y(t.CL),q +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:q=new A.A3(t.pE.a(B.bp.kp(A.avb(B.RO.cV(A.bm(B.az.ha(0,a)))))),A.I(t.N,t.Rk)) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$$1,r)}, +$S:425} +A.A3.prototype={ +af9(a){var s,r,q,p=this.b +if(!p.aq(0,a)){s=this.a +r=J.aj(s) +if(r.i(s,a)==null)return null +q=r.i(s,a) +if(q==null)q=[] +p.n(0,a,J.cx(J.j6(t.VG.a(q),t.pE),new A.b27(a),t.pR).fO(0)) +r.E(s,a)}p=p.i(0,a) +p.toString +return p}, +$iasL:1} +A.b27.prototype={ +$1(a){var s,r=J.aj(a),q=r.i(a,"asset") +q.toString +A.bm(q) +s=r.i(a,"dpr") +r=r.i(a,"asset") +r.toString +A.bm(r) +return new A.td(A.bmK(s),r)}, +$S:426} +A.td.prototype={} +A.It.prototype={ +bf(){var s,r,q=this +if(q.a){s=A.I(t.N,t.z) +s.n(0,"uniqueIdentifier",q.b) +s.n(0,"hints",q.c) +s.n(0,"editingValue",q.d.Xz()) +r=q.e +if(r!=null)s.n(0,"hintText",r)}else s=null +return s}} +A.aun.prototype={} +A.EK.prototype={ +avO(){var s,r,q=this,p=t.v3,o=new A.aFE(A.I(p,t.bd),A.aW(t.SQ),A.a([],t.sA)) +q.dY$!==$&&A.ck() +q.dY$=o +s=$.biD() +r=A.a([],t.K0) +q.cq$!==$&&A.ck() +q.cq$=new A.a3h(o,s,r,A.aW(p)) +p=q.dY$ +p===$&&A.b() +p.HS().be(new A.aUn(q),t.P)}, +Fa(){var s=$.arN() +s.a.ab(0) +s.b.ab(0) +s.c.ab(0)}, +vr(a){return this.aKo(a)}, +aKo(a){var s=0,r=A.y(t.H),q,p=this +var $async$vr=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:switch(A.bm(J.b7(t.a.a(a),"type"))){case"memoryPressure":p.Fa() +break}s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$vr,r)}, +ang(){var s=A.b6("controller") +s.sdQ(A.lE(null,new A.aUm(s),null,!1,t.hz)) +return J.bpx(s.aH())}, +aOq(){if(this.RG$==null)$.bO() +return}, +R7(a){return this.atH(a)}, +atH(a){var s=0,r=A.y(t.v),q,p=this,o,n +var $async$R7=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:a.toString +o=A.bMf(a) +n=p.RG$ +o.toString +B.b.al(p.arN(n,o),p.gaJw()) +q=null +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$R7,r)}, +arN(a,b){var s,r,q,p +if(a===b)return B.afe +if(a===B.iR&&b===B.h7)return B.aaQ +s=A.a([],t.QP) +if(a==null)s.push(b) +else{r=B.b.eZ(B.k2,a) +q=B.b.eZ(B.k2,b) +if(r>q)for(p=q;p") +r=A.iJ(new A.cl(e,s),s.h("z.E")) +q=A.a([],t.K0) +p=e.i(0,d) +o=$.iR.B$ +n=a.a +if(n==="")n=f +if(a instanceof A.p6)if(p==null){m=new A.xR(d,c,n,o,!1) +r.F(0,d)}else m=new A.Lm(d,p,n,o,!1) +else if(p==null)m=f +else{m=new A.u4(d,p,f,o,!1) +r.E(0,d)}for(s=this.c.d,l=A.l(s).h("cl<1>"),k=l.h("z.E"),j=r.x9(A.iJ(new A.cl(s,l),k)),j=j.gam(j),i=this.e;j.v();){h=j.gG(j) +if(h.k(0,d))q.push(new A.u4(h,c,f,o,!0)) +else{g=e.i(0,h) +g.toString +i.push(new A.u4(h,g,f,o,!0))}}for(e=A.iJ(new A.cl(s,l),k).x9(r),e=e.gam(e);e.v();){l=e.gG(e) +k=s.i(0,l) +k.toString +i.push(new A.xR(l,k,f,o,!0))}if(m!=null)i.push(m) +B.b.I(i,q)}} +A.aib.prototype={} +A.aI3.prototype={ +l(a){return"KeyboardInsertedContent("+this.a+", "+this.b+", "+A.i(this.c)+")"}, +k(a,b){var s,r,q=this +if(b==null)return!1 +if(J.a_(b)!==A.p(q))return!1 +if(b instanceof A.aI3)if(b.a===q.a)if(b.b===q.b){s=b.c +r=q.c +r=s==null?r==null:s===r +s=r}else s=!1 +else s=!1 +else s=!1 +return s}, +gu(a){return A.X(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.aI4.prototype={} +A.o.prototype={ +gu(a){return B.f.gu(this.a)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.o&&b.a===this.a}} +A.M.prototype={ +gu(a){return B.f.gu(this.a)}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.M&&b.a===this.a}} +A.aid.prototype={} +A.oU.prototype={ +l(a){return"MethodCall("+this.a+", "+A.i(this.b)+")"}} +A.yy.prototype={ +l(a){var s=this +return"PlatformException("+s.a+", "+A.i(s.b)+", "+A.i(s.c)+", "+A.i(s.d)+")"}, +$icv:1} +A.M7.prototype={ +l(a){return"MissingPluginException("+A.i(this.a)+")"}, +$icv:1} +A.aYm.prototype={ +kp(a){if(a==null)return null +return B.a_.ha(0,A.abi(a,0,null))}, +dW(a){if(a==null)return null +return A.avb(B.aV.cV(a))}} +A.aHC.prototype={ +dW(a){if(a==null)return null +return B.mn.dW(B.az.pQ(a))}, +kp(a){var s +if(a==null)return a +s=B.mn.kp(a) +s.toString +return B.az.ha(0,s)}} +A.aHE.prototype={ +pR(a){var s=B.ed.dW(A.am(["method",a.a,"args",a.b],t.N,t.X)) +s.toString +return s}, +oV(a){var s,r,q,p=null,o=B.ed.kp(a) +if(!t.f.b(o))throw A.c(A.cn("Expected method call Map, got "+A.i(o),p,p)) +s=J.aj(o) +r=s.i(o,"method") +q=s.i(o,"args") +if(typeof r=="string")return new A.oU(r,q) +throw A.c(A.cn("Invalid method call: "+A.i(o),p,p))}, +UA(a){var s,r,q,p=null,o=B.ed.kp(a) +if(!t.j.b(o))throw A.c(A.cn("Expected envelope List, got "+A.i(o),p,p)) +s=J.aj(o) +if(s.gt(o)===1)return s.i(o,0) +if(s.gt(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.bm(s.i(o,0)) +q=A.af(s.i(o,1)) +throw A.c(A.a7f(r,s.i(o,2),q,p))}if(s.gt(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.bm(s.i(o,0)) +q=A.af(s.i(o,1)) +throw A.c(A.a7f(r,s.i(o,2),q,A.af(s.i(o,3))))}throw A.c(A.cn("Invalid envelope: "+A.i(o),p,p))}, +EK(a){var s=B.ed.dW([a]) +s.toString +return s}, +xf(a,b,c){var s=B.ed.dW([a,c,b]) +s.toString +return s}, +a9S(a,b){return this.xf(a,null,b)}} +A.aXG.prototype={ +dW(a){var s +if(a==null)return null +s=A.b0V(64) +this.iu(0,s,a) +return s.v4()}, +kp(a){var s,r +if(a==null)return null +s=new A.Nn(a) +r=this.jl(0,s) +if(s.b=b.a.byteLength)throw A.c(B.ch) +return this.u0(b.yh(0),b)}, +u0(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=$.fU() +q=b.a.getInt32(s,B.bo===r) +b.b+=4 +return q +case 4:return b.O2(0) +case 6:b.qt(8) +s=b.b +r=$.fU() +q=b.a.getFloat64(s,B.bo===r) +b.b+=8 +return q +case 5:case 7:p=k.jk(b) +return B.de.cV(b.yi(p)) +case 8:return b.yi(k.jk(b)) +case 9:p=k.jk(b) +b.qt(4) +s=b.a +o=A.bsX(s.buffer,s.byteOffset+b.b,p) +b.b=b.b+4*p +return o +case 10:return b.O3(k.jk(b)) +case 14:p=k.jk(b) +b.qt(4) +s=b.a +r=s.buffer +s=s.byteOffset+b.b +A.aqT(r,s,p) +o=new Float32Array(r,s,p) +b.b=b.b+4*p +return o +case 11:p=k.jk(b) +b.qt(8) +s=b.a +o=A.bsV(s.buffer,s.byteOffset+b.b,p) +b.b=b.b+8*p +return o +case 12:p=k.jk(b) +n=A.aX(p,null,!1,t.X) +for(s=b.a,m=0;m=s.byteLength)A.r(B.ch) +b.b=r+1 +n[m]=k.u0(s.getUint8(r),b)}return n +case 13:p=k.jk(b) +s=t.X +n=A.I(s,s) +for(s=b.a,m=0;m=s.byteLength)A.r(B.ch) +b.b=r+1 +r=k.u0(s.getUint8(r),b) +l=b.b +if(l>=s.byteLength)A.r(B.ch) +b.b=l+1 +n.n(0,r,k.u0(s.getUint8(l),b))}return n +default:throw A.c(B.ch)}}, +kL(a,b){var s,r +if(b<254)a.iZ(0,b) +else{s=a.d +if(b<=65535){a.iZ(0,254) +r=$.fU() +s.setUint16(0,b,B.bo===r) +a.Dx(a.e,0,2)}else{a.iZ(0,255) +r=$.fU() +s.setUint32(0,b,B.bo===r) +a.Dx(a.e,0,4)}}}, +jk(a){var s,r,q=a.yh(0) +switch(q){case 254:s=a.b +r=$.fU() +q=a.a.getUint16(s,B.bo===r) +a.b+=2 +return q +case 255:s=a.b +r=$.fU() +q=a.a.getUint32(s,B.bo===r) +a.b+=4 +return q +default:return q}}} +A.aXI.prototype={ +$2(a,b){var s=this.a,r=this.b +s.iu(0,r,a) +s.iu(0,r,b)}, +$S:87} +A.aXK.prototype={ +pR(a){var s=A.b0V(64) +B.bp.iu(0,s,a.a) +B.bp.iu(0,s,a.b) +return s.v4()}, +oV(a){var s,r,q +a.toString +s=new A.Nn(a) +r=B.bp.jl(0,s) +q=B.bp.jl(0,s) +if(typeof r=="string"&&s.b>=a.byteLength)return new A.oU(r,q) +else throw A.c(B.xo)}, +EK(a){var s=A.b0V(64) +s.iZ(0,0) +B.bp.iu(0,s,a) +return s.v4()}, +xf(a,b,c){var s=A.b0V(64) +s.iZ(0,1) +B.bp.iu(0,s,a) +B.bp.iu(0,s,c) +B.bp.iu(0,s,b) +return s.v4()}, +a9S(a,b){return this.xf(a,null,b)}, +UA(a){var s,r,q,p,o,n +if(a.byteLength===0)throw A.c(B.a56) +s=new A.Nn(a) +if(s.yh(0)===0)return B.bp.jl(0,s) +r=B.bp.jl(0,s) +q=B.bp.jl(0,s) +p=B.bp.jl(0,s) +o=s.b=a.byteLength +else n=!1 +if(n)throw A.c(A.a7f(r,p,A.af(q),o)) +else throw A.c(B.a57)}} +A.aKT.prototype={ +aJz(a,b,c){var s,r,q,p +if(t.PB.b(b)){this.b.E(0,a) +return}s=this.b +r=s.i(0,a) +q=A.bOM(c) +if(q==null)q=this.a +if(J.j(r==null?null:t.ZC.a(r.a),q))return +p=q.L2(a) +s.n(0,a,p) +B.aog.e_("activateSystemCursor",A.am(["device",p.b,"kind",t.ZC.a(p.a).a],t.N,t.z),t.H)}} +A.Ma.prototype={} +A.ev.prototype={ +l(a){var s=this.gA3() +return s}} +A.ag0.prototype={ +L2(a){throw A.c(A.d1(null))}, +gA3(){return"defer"}} +A.any.prototype={} +A.ph.prototype={ +gA3(){return"SystemMouseCursor("+this.a+")"}, +L2(a){return new A.any(this,a)}, +k(a,b){if(b==null)return!1 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.ph&&b.a===this.a}, +gu(a){return B.c.gu(this.a)}} +A.ajm.prototype={} +A.tg.prototype={ +gE4(){var s=$.iR.dM$ +s===$&&A.b() +return s}, +kc(a,b){return this.agd(0,b,this.$ti.h("1?"))}, +agd(a,b,c){var s=0,r=A.y(c),q,p=this,o,n,m +var $async$kc=A.u(function(d,e){if(d===1)return A.v(e,r) +while(true)switch(s){case 0:o=p.b +n=p.gE4().Hn(0,p.a,o.dW(b)) +m=o +s=3 +return A.t(t.T8.b(n)?n:A.kU(n,t.CD),$async$kc) +case 3:q=m.kp(e) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$kc,r)}, +Om(a){this.gE4().Cf(this.a,new A.au7(this,a))}} +A.au7.prototype={ +$1(a){return this.aew(a)}, +aew(a){var s=0,r=A.y(t.CD),q,p=this,o,n +var $async$$1=A.u(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.t(p.b.$1(o.kp(a)),$async$$1) +case 3:q=n.dW(c) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$$1,r)}, +$S:192} +A.m7.prototype={ +gE4(){var s,r=this.c +if(r==null){s=$.iR.dM$ +s===$&&A.b() +r=s}return r}, +pC(a,b,c,d){return this.aw8(a,b,c,d,d.h("0?"))}, +aw8(a,b,c,d,e){var s=0,r=A.y(e),q,p=this,o,n,m,l,k +var $async$pC=A.u(function(f,g){if(f===1)return A.v(g,r) +while(true)switch(s){case 0:o=p.b +n=o.pR(new A.oU(a,b)) +m=p.a +l=p.gE4().Hn(0,m,n) +s=3 +return A.t(t.T8.b(l)?l:A.kU(l,t.CD),$async$pC) +case 3:k=g +if(k==null){if(c){q=null +s=1 +break}throw A.c(A.bl5("No implementation found for method "+a+" on channel "+m))}q=d.h("0?").a(o.UA(k)) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$pC,r)}, +e_(a,b,c){return this.pC(a,b,!1,c)}, +Md(a,b,c){return this.aLt(a,b,c,c.h("f<0>?"))}, +aLt(a,b,c,d){var s=0,r=A.y(d),q,p=this,o +var $async$Md=A.u(function(e,f){if(e===1)return A.v(f,r) +while(true)switch(s){case 0:s=3 +return A.t(p.e_(a,b,t.j),$async$Md) +case 3:o=f +q=o==null?null:J.j6(o,c) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Md,r)}, +Me(a,b,c,d){return this.aLu(a,b,c,d,c.h("@<0>").V(d).h("a6<1,2>?"))}, +VX(a,b,c){return this.Me(a,null,b,c)}, +aLu(a,b,c,d,e){var s=0,r=A.y(e),q,p=this,o +var $async$Me=A.u(function(f,g){if(f===1)return A.v(g,r) +while(true)switch(s){case 0:s=3 +return A.t(p.e_(a,b,t.f),$async$Me) +case 3:o=g +q=o==null?null:J.arR(o,c,d) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Me,r)}, +ui(a){var s=this.gE4() +s.Cf(this.a,new A.aKy(this,a))}, +ID(a,b){return this.asI(a,b)}, +asI(a,b){var s=0,r=A.y(t.CD),q,p=2,o,n=this,m,l,k,j,i,h,g,f,e +var $async$ID=A.u(function(c,d){if(c===1){o=d +s=p}while(true)switch(s){case 0:h=n.b +g=h.oV(a) +p=4 +e=h +s=7 +return A.t(b.$1(g),$async$ID) +case 7:k=e.EK(d) +q=k +s=1 +break +p=2 +s=6 +break +case 4:p=3 +f=o +k=A.ak(f) +if(k instanceof A.yy){m=k +k=m.a +i=m.b +q=h.xf(k,m.c,i) +s=1 +break}else if(k instanceof A.M7){q=null +s=1 +break}else{l=k +h=h.a9S("error",J.cU(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$ID,r)}} +A.aKy.prototype={ +$1(a){return this.a.ID(a,this.b)}, +$S:192} +A.nn.prototype={ +e_(a,b,c){return this.aLv(a,b,c,c.h("0?"))}, +qU(a,b){return this.e_(a,null,b)}, +aLv(a,b,c,d){var s=0,r=A.y(d),q,p=this +var $async$e_=A.u(function(e,f){if(e===1)return A.v(f,r) +while(true)switch(s){case 0:q=p.aie(a,b,!0,c) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$e_,r)}} +A.aC_.prototype={ +aOD(){var s=new A.m7(this.a,B.bU,null),r=A.b6("controller") +r.b=new A.lI(new A.aC1(this,r,s,null),new A.aC2(this,s,null),t.vh) +return J.bpx(r.aH())}} +A.aC1.prototype={ +$0(){var s=0,r=A.y(t.H),q=1,p,o=this,n,m,l,k,j,i,h +var $async$$0=A.u(function(a,b){if(a===1){p=b +s=q}while(true)switch(s){case 0:i=$.iR.dM$ +i===$&&A.b() +l=o.a +k=l.a +i.Cf(k,new A.aC0(l,o.b)) +q=3 +s=6 +return A.t(o.c.pC("listen",o.d,!1,t.H),$async$$0) +case 6:q=1 +s=5 +break +case 3:q=2 +h=p +n=A.ak(h) +m=A.aJ(h) +i=A.c0("while activating platform stream on channel "+k) +A.e6(new A.cg(n,m,"services library",i,null,!1)) +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$$0,r)}, +$S:2} +A.aC0.prototype={ +$1(a){return this.aeC(a)}, +aeC(a){var s=0,r=A.y(t.P),q,p=this,o,n,m +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:if(a==null)J.I1(p.b.aH()) +else try{J.ff(p.b.aH(),B.bU.UA(a))}catch(l){m=A.ak(l) +if(m instanceof A.yy){o=m +p.b.aH().pF(o)}else throw l}q=null +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$$1,r)}, +$S:434} +A.aC2.prototype={ +$0(){var s=0,r=A.y(t.H),q=1,p,o=this,n,m,l,k,j,i +var $async$$0=A.u(function(a,b){if(a===1){p=b +s=q}while(true)switch(s){case 0:j=$.iR.dM$ +j===$&&A.b() +l=o.a.a +j.Cf(l,null) +q=3 +s=6 +return A.t(o.b.pC("cancel",o.c,!1,t.H),$async$$0) +case 6:q=1 +s=5 +break +case 3:q=2 +i=p +n=A.ak(i) +m=A.aJ(i) +j=A.c0("while de-activating platform stream on channel "+l) +A.e6(new A.cg(n,m,"services library",j,null,!1)) +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$$0,r)}, +$S:2} +A.xS.prototype={ +J(){return"KeyboardSide."+this.b}} +A.lp.prototype={ +J(){return"ModifierKey."+this.b}} +A.Nl.prototype={ +gaML(){var s,r,q=A.I(t.xS,t.Di) +for(s=0;s<9;++s){r=B.Dd[s] +if(this.aLG(r))q.n(0,r,B.fo)}return q}} +A.nw.prototype={} +A.aOV.prototype={ +$0(){var s,r,q,p=this.b,o=J.aj(p),n=A.af(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.af(o.i(p,"code")) +if(s==null)s="" +m=m?"":n +r=A.bw(o.i(p,"location")) +if(r==null)r=0 +q=A.bw(o.i(p,"metaState")) +if(q==null)q=0 +p=A.bw(o.i(p,"keyCode")) +return new A.a7F(s,m,r,q,p==null?0:p)}, +$S:435} +A.p6.prototype={} +A.E9.prototype={} +A.aP_.prototype={ +aKa(a){var s,r,q,p,o,n,m,l,k,j,i=this +if(a instanceof A.p6){p=a.c +i.d.n(0,p.gq7(),p.gFI())}else if(a instanceof A.E9)i.d.E(0,a.c.gq7()) +i.aCZ(a) +for(p=i.a,o=A.a8(p,!0,t.iS),n=o.length,m=0;m")),e),a0=a1 instanceof A.p6 +if(a0)a.F(0,g.gq7()) +for(s=g.a,r=null,q=0;q<9;++q){p=B.Dd[q] +o=$.bB7() +n=o.i(0,new A.f1(p,B.dn)) +if(n==null)continue +m=B.Jn.i(0,s) +if(n.p(0,m==null?new A.M(98784247808+B.c.gu(s)):m))r=p +if(f.i(0,p)===B.fo){c.I(0,n) +if(n.fa(0,a.gtk(a)))continue}l=f.i(0,p)==null?A.aW(e):o.i(0,new A.f1(p,f.i(0,p))) +if(l==null)continue +for(o=A.l(l),m=new A.vy(l,l.r,o.h("vy<1>")),m.c=l.e,o=o.c;m.v();){k=m.d +if(k==null)k=o.a(k) +j=$.bB6().i(0,k) +j.toString +d.n(0,k,j)}}i=b.i(0,B.eC)!=null&&!J.j(b.i(0,B.eC),B.hQ) +for(e=$.boa(),e=A.ie(e,e.r,A.l(e).c);e.v();){a=e.d +h=i&&a.k(0,B.eC) +if(!c.p(0,a)&&!h)b.E(0,a)}b.E(0,B.i5) +b.I(0,d) +if(a0&&r!=null&&!b.aq(0,g.gq7())){e=g.gq7().k(0,B.fO) +if(e)b.n(0,g.gq7(),g.gFI())}}} +A.f1.prototype={ +k(a,b){if(b==null)return!1 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.f1&&b.a===this.a&&b.b==this.b}, +gu(a){return A.X(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.akS.prototype={} +A.akR.prototype={} +A.a7F.prototype={ +gq7(){var s=this.a,r=B.Jn.i(0,s) +return r==null?new A.M(98784247808+B.c.gu(s)):r}, +gFI(){var s,r=this.b,q=B.amL.i(0,r),p=q==null?null:q[this.c] +if(p!=null)return p +s=B.ak7.i(0,r) +if(s!=null)return s +if(r.length===1)return new A.o(r.toLowerCase().charCodeAt(0)) +return new A.o(B.c.gu(this.a)+98784247808)}, +aLG(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.a_(b)!==A.p(s))return!1 +return b instanceof A.a7F&&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.X(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.NS.prototype={ +gaPm(){var s=this +if(s.c)return new A.cC(s.a,t.hr) +if(s.b==null){s.b=new A.aD(new A.a7($.ac,t.X6),t.F0) +s.IB()}return s.b.a}, +IB(){var s=0,r=A.y(t.H),q,p=this,o +var $async$IB=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:s=3 +return A.t(B.oB.qU("get",t.pE),$async$IB) +case 3:o=b +if(p.b==null){s=1 +break}p.a3S(o) +case 1:return A.w(q,r)}}) +return A.x($async$IB,r)}, +a3S(a){var s,r=a==null +if(!r){s=J.b7(a,"enabled") +s.toString +A.AE(s)}else s=!1 +this.aKc(r?null:t.n6.a(J.b7(a,"data")),s)}, +aKc(a,b){var s,r,q=this,p=q.c&&b +q.d=p +if(p)$.cB.y2$.push(new A.aRE(q)) +s=q.a +if(b){p=q.apY(a) +r=t.N +if(p==null){p=t.X +p=A.I(p,p)}r=new A.fz(p,q,null,"root",A.I(r,t.z4),A.I(r,t.I1)) +p=r}else p=null +q.a=p +q.c=!0 +r=q.b +if(r!=null)r.cU(0,p) +q.b=null +if(q.a!=s){q.ag() +if(s!=null)s.m()}}, +RO(a){return this.ax7(a)}, +ax7(a){var s=0,r=A.y(t.H),q=this,p +var $async$RO=A.u(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.a3S(t.pE.a(a.b)) +break +default:throw A.c(A.d1(p+" was invoked but isn't implemented by "+A.p(q).l(0)))}return A.w(null,r)}}) +return A.x($async$RO,r)}, +apY(a){if(a==null)return null +return t.J1.a(B.bp.kp(A.lq(a.buffer,a.byteOffset,a.byteLength)))}, +afZ(a){var s=this +s.r.F(0,a) +if(!s.f){s.f=!0 +$.cB.y2$.push(new A.aRF(s))}}, +a12(){var s,r,q,p,o,n=this +if(!n.f)return +n.f=!1 +for(s=n.r,r=A.dS(s,s.r,A.l(s).c),q=r.$ti.c;r.v();){p=r.d;(p==null?q.a(p):p).w=!1}s.ab(0) +o=B.bp.dW(n.a.a) +B.oB.e_("put",A.eO(o.buffer,o.byteOffset,o.byteLength),t.H)}, +aai(){if($.cB.co$)return +this.a12()}} +A.aRE.prototype={ +$1(a){this.a.d=!1}, +$S:5} +A.aRF.prototype={ +$1(a){return this.a.a12()}, +$S:5} +A.fz.prototype={ +gDo(){var s=J.I2(this.a,"c",new A.aRB()) +s.toString +return t.pE.a(s)}, +guB(){var s=J.I2(this.a,"v",new A.aRC()) +s.toString +return t.pE.a(s)}, +aOK(a,b,c){var s=this,r=J.jC(s.guB(),b),q=c.h("0?").a(J.pW(s.guB(),b)) +if(J.cf(s.guB()))J.pW(s.a,"v") +if(r)s.zc() +return q}, +aGm(a,b){var s,r,q,p,o=this,n=o.f +if(n.aq(0,a)||!J.jC(o.gDo(),a)){n=t.N +s=new A.fz(A.I(n,t.X),null,null,a,A.I(n,t.z4),A.I(n,t.I1)) +o.mh(s) +return s}r=t.N +q=o.c +p=J.b7(o.gDo(),a) +p.toString +s=new A.fz(t.pE.a(p),q,o,a,A.I(r,t.z4),A.I(r,t.I1)) +n.n(0,a,s) +return s}, +mh(a){var s=this,r=a.d +if(r!==s){if(r!=null)r.Jj(a) +a.d=s +s.a_j(a) +if(a.c!=s.c)s.a4b(a)}}, +aAD(a){this.Jj(a) +a.d=null +if(a.c!=null){a.Ss(null) +a.a77(this.ga4a())}}, +zc(){var s,r=this +if(!r.w){r.w=!0 +s=r.c +if(s!=null)s.afZ(r)}}, +a4b(a){a.Ss(this.c) +a.a77(this.ga4a())}, +Ss(a){var s=this,r=s.c +if(r==a)return +if(s.w)if(r!=null)r.r.E(0,s) +s.c=a +if(s.w&&a!=null){s.w=!1 +s.zc()}}, +Jj(a){var s,r,q,p=this +if(J.j(p.f.E(0,a.e),a)){J.pW(p.gDo(),a.e) +s=p.r +r=s.i(0,a.e) +if(r!=null){q=J.ct(r) +p.a1n(q.h5(r)) +if(q.gak(r))s.E(0,a.e)}if(J.cf(p.gDo()))J.pW(p.a,"c") +p.zc() +return}s=p.r +q=s.i(0,a.e) +if(q!=null)J.pW(q,a) +q=s.i(0,a.e) +q=q==null?null:J.cf(q) +if(q===!0)s.E(0,a.e)}, +a_j(a){var s=this +if(s.f.aq(0,a.e)){J.ff(s.r.cK(0,a.e,new A.aRA()),a) +s.zc() +return}s.a1n(a) +s.zc()}, +a1n(a){this.f.n(0,a.e,a) +J.j5(this.gDo(),a.e,a.a)}, +a78(a,b){var s,r,q=this.f +q=q.gbp(q) +s=this.r +s=s.gbp(s) +r=q.Vm(0,new A.iD(s,new A.aRD(),A.l(s).h("iD"))) +J.it(b?A.a8(r,!1,A.l(r).h("z.E")):r,a)}, +a77(a){return this.a78(a,!1)}, +aOT(a){var s,r=this +if(a===r.e)return +s=r.d +if(s!=null)s.Jj(r) +r.e=a +s=r.d +if(s!=null)s.a_j(r)}, +m(){var s,r=this +r.a78(r.gaAC(),!0) +r.f.ab(0) +r.r.ab(0) +s=r.d +if(s!=null)s.Jj(r) +r.d=null +r.Ss(null) +r.x=!0}, +l(a){return"RestorationBucket(restorationId: "+this.e+", owner: "+A.i(this.b)+")"}} +A.aRB.prototype={ +$0(){var s=t.X +return A.I(s,s)}, +$S:195} +A.aRC.prototype={ +$0(){var s=t.X +return A.I(s,s)}, +$S:195} +A.aRA.prototype={ +$0(){return A.a([],t.QT)}, +$S:439} +A.aRD.prototype={ +$1(a){return a}, +$S:440} +A.v3.prototype={ +k(a,b){var s,r +if(b==null)return!1 +if(this===b)return!0 +if(b instanceof A.v3){s=b.a +r=this.a +s=s.a===r.a&&s.b===r.b&&A.ee(b.b,this.b)}else s=!1 +return s}, +gu(a){var s=this.a +return A.X(s.a,s.b,A.dj(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.OR.prototype={ +k(a,b){if(b==null)return!1 +if(this===b)return!0 +return b instanceof A.OR&&b.a===this.a&&A.ee(b.b,this.b)}, +gu(a){return A.X(this.a,A.dj(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.ayp.prototype={ +Lv(a,b){return this.aIV(a,b)}, +aIV(a0,a1){var s=0,r=A.y(t.EZ),q,p=2,o,n=this,m,l,k,j,i,h,g,f,e,d,c,b,a +var $async$Lv=A.u(function(a2,a3){if(a2===1){o=a3 +s=p}while(true)switch(s){case 0:d=null +c=a0.t5("-") +p=4 +m=n.b +m===$&&A.b() +a=t.j +s=7 +return A.t(m.e_("SpellCheck.initiateSpellCheck",A.a([c,a1],t.s),t.z),$async$Lv) +case 7:d=a.a(a3) +p=2 +s=6 +break +case 4:p=3 +b=o +q=null +s=1 +break +s=6 +break +case 3:s=2 +break +case 6:k=A.a([],t.bt) +for(m=J.al(d),j=t.f,i=t.N,h=t.z,g=t.j;m.v();){f=A.bkP(j.a(m.gG(m)),i,h) +k.push(new A.v3(new A.dl(A.ep(f.i(0,"startIndex")),A.ep(f.i(0,"endIndex"))),J.j6(g.a(f.i(0,"suggestions")),i)))}m=n.a +if(m!=null){j=m.a +e=A.ee(m.b,k) +if(j===a1&&e)k=A.bGH(n.a.b,k)}n.a=new A.OR(a1,k) +q=k +s=1 +break +case 1:return A.w(q,r) +case 2:return A.v(o,r)}}) +return A.x($async$Lv,r)}} +A.wU.prototype={ +J(){return"DeviceOrientation."+this.b}} +A.asH.prototype={} +A.P7.prototype={ +J(){return"SystemUiOverlay."+this.b}} +A.P6.prototype={ +J(){return"SystemUiMode."+this.b}} +A.mp.prototype={ +a6_(){var s,r,q,p,o,n=this,m=null,l=n.a +l=l==null?m:l.gj(l) +s=n.b +s=s==null?m:s.a +r=n.e +r=r==null?m:r.a +q=n.f +q=q==null?m:q.J() +p=n.r +p=p==null?m:p.J() +o=n.c +o=o==null?m:o.J() +return A.am(["systemNavigationBarColor",l,"systemNavigationBarDividerColor",s,"systemStatusBarContrastEnforced",n.w,"statusBarColor",r,"statusBarBrightness",q,"statusBarIconBrightness",p,"systemNavigationBarIconBrightness",o,"systemNavigationBarContrastEnforced",n.d],t.N,t.z)}, +l(a){return"SystemUiOverlayStyle("+this.a6_().l(0)+")"}, +gu(a){var s=this +return A.X(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=this +if(b==null)return!1 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.mp&&J.j(b.a,s.a)&&J.j(b.b,s.b)&&b.d==s.d&&J.j(b.e,s.e)&&b.r==s.r&&b.f==s.f&&b.w==s.w&&b.c==s.c}} +A.aYH.prototype={ +$0(){if(!J.j($.Fe,$.blK)){B.bs.e_("SystemChrome.setSystemUIOverlayStyle",$.Fe.a6_(),t.H) +$.blK=$.Fe}$.Fe=null}, +$S:0} +A.aaC.prototype={ +J(){return"SystemSoundType."+this.b}} +A.kP.prototype={ +iQ(a){var s +if(a<0)return null +s=this.C3(a).a +return s>=0?s:null}, +iS(a){var s=this.C3(Math.max(0,a)).b +return s>=0?s:null}, +C3(a){var s,r=this.iQ(a) +if(r==null)r=-1 +s=this.iS(a) +return new A.dl(r,s==null?-1:s)}} +A.Bn.prototype={ +iQ(a){var s +if(a<0)return null +s=this.a +return A.aYl(s,Math.min(a,s.length)).b}, +iS(a){var s,r=this.a +if(a>=r.length)return null +s=A.aYl(r,Math.max(0,a+1)) +return s.b+s.gG(s).length}, +C3(a){var s,r,q,p=this +if(a<0){s=p.iS(a) +return new A.dl(-1,s==null?-1:s)}else{s=p.a +if(a>=s.length){s=p.iQ(a) +return new A.dl(s==null?-1:s,-1)}}r=A.aYl(s,a) +s=r.b +if(s!==r.c)s=new A.dl(s,s+r.gG(r).length) +else{q=p.iS(a) +s=new A.dl(s,q==null?-1:q)}return s}} +A.Da.prototype={ +C3(a){return this.a.BW(new A.bW(Math.max(a,0),B.t))}} +A.MK.prototype={ +iQ(a){var s,r,q +if(a<0||this.a.length===0)return null +s=this.a +r=s.length +if(a>=r)return r +if(a===0)return 0 +if(a>1&&s.charCodeAt(a)===10&&s.charCodeAt(a-1)===13)q=a-2 +else q=A.blN(s.charCodeAt(a))?a-1:a +for(;q>0;){if(A.blN(s.charCodeAt(q)))return q+1;--q}return Math.max(q,0)}, +iS(a){var s,r=this.a,q=r.length +if(a>=q||q===0)return null +if(a<0)return 0 +for(s=a;!A.blN(r.charCodeAt(s));){++s +if(s===q)return s}return s=s?null:s}} +A.im.prototype={ +gtc(){var s,r=this +if(!r.gdf()||r.c===r.d)s=r.e +else s=r.c=n&&o<=p.b)return p +s=p.c +r=p.d +q=s<=r +if(o<=n){if(b)return p.zY(a.b,p.b,o) +n=q?o:s +return p.Eh(n,q?r:o)}if(b)return p.zY(a.b,n,o) +n=q?s:o +return p.Eh(n,q?o:r)}, +aa_(a){if(this.gez().k(0,a))return this +return this.aHi(a.b,a.a)}} +A.v7.prototype={} +A.aaO.prototype={} +A.aaN.prototype={} +A.aaP.prototype={} +A.Fk.prototype={} +A.anS.prototype={} +A.a5U.prototype={ +J(){return"MaxLengthEnforcement."+this.b}} +A.ri.prototype={} +A.ajq.prototype={} +A.bdg.prototype={} +A.Kp.prototype={ +aaq(a,b){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=b.b +g=g.gdf()?new A.ajq(g.c,g.d):h +s=b.c +s=s.gdf()&&s.a!==s.b?new A.ajq(s.a,s.b):h +r=new A.bdg(b,new A.d_(""),g,s) +s=b.a +q=J.arQ(i.a,s) +for(g=q.gam(q),p=i.b,o=!p,n=h;g.v();n=m){m=g.gG(g) +l=n==null?h:n.gcg(n) +if(l==null)l=0 +i.S9(p,l,m.gc2(m),r) +i.S9(o,m.gc2(m),m.gcg(m),r)}g=n==null?h:n.gcg(n) +if(g==null)g=0 +i.S9(p,g,s.length,r) +s=r.e=!0 +k=r.c +j=r.d +g=r.b.a +s=(j!=null?j.a===j.b:s)?B.ca:new A.dl(j.a,j.b) +if(k==null)p=B.iw +else{p=r.a.b +p=A.dq(p.e,k.a,k.b,p.f)}return new A.eQ(g.charCodeAt(0)==0?g:g,p,s)}, +S9(a,b,c,d){var s,r,q,p +if(a)s=b===c?"":this.c +else s=B.c.S(d.a.a,b,c) +d.b.a+=s +if(s.length===c-b)return +r=new A.aD6(b,c,s) +q=d.c +p=q==null +if(!p)q.a=q.a+r.$1(d.a.b.c) +if(!p)q.b=q.b+r.$1(d.a.b.d) +q=d.d +p=q==null +if(!p)q.a=q.a+r.$1(d.a.c.a) +if(!p)q.b=q.b+r.$1(d.a.c.b)}} +A.aD6.prototype={ +$1(a){var s=this,r=s.a,q=a<=r&&a=r.a&&s<=this.a.length}else r=!1 +return r}, +adj(a,b){var s,r,q,p,o=this +if(!a.gdf())return o +s=a.a +r=a.b +q=B.c.iM(o.a,s,r,b) +if(r-s===b.length)return o.aHc(q) +s=new A.aZ_(a,b) +r=o.b +p=o.c +return new A.eQ(q,A.dq(B.t,s.$1(r.c),s.$1(r.d),!1),new A.dl(s.$1(p.a),s.$1(p.b)))}, +Xz(){var s=this.b,r=this.c +return A.am(["text",this.a,"selectionBase",s.c,"selectionExtent",s.d,"selectionAffinity",s.e.J(),"selectionIsDirectional",s.f,"composingBase",r.a,"composingExtent",r.b],t.N,t.z)}, +l(a){return"TextEditingValue(text: \u2524"+this.a+"\u251c, selection: "+this.b.l(0)+", composing: "+this.c.l(0)+")"}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +return b instanceof A.eQ&&b.a===s.a&&b.b.k(0,s.b)&&b.c.k(0,s.c)}, +gu(a){var s=this.b,r=this.c +return A.X(B.c.gu(this.a),s.gu(s),A.X(B.f.gu(r.a),B.f.gu(r.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),B.a,B.a,B.a,B.a,B.a,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.aZ_.prototype={ +$1(a){var s=this.a,r=s.a,q=a<=r&&a") +l=p.f +k=A.l(l).h("cl<1>") +j=k.h("eu>") +q=A.a8(new A.eu(new A.ba(new A.cl(l,k),new A.aZv(p,A.a8(new A.ad(n,new A.aZw(),m),!0,m.h("av.E"))),k.h("ba")),new A.aZx(p),j),!0,j.h("z.E")) +s=1 +break}else if(b==="TextInputClient.scribbleInteractionBegan"){p.r=!0 +s=1 +break}else if(b==="TextInputClient.scribbleInteractionFinished"){p.r=!1 +s=1 +break}n=p.d +if(n==null){s=1 +break}if(b==="TextInputClient.requestExistingInputState"){m=p.e +m===$&&A.b() +p.Pq(n,m) +p.Jz(p.d.r.a.c.a) +s=1 +break}n=t.j +o=n.a(a.b) +if(b===u.n){n=t.a +i=n.a(J.b7(o,1)) +for(m=J.c4(i),l=J.al(m.gcN(i));l.v();)A.buz(n.a(m.i(i,l.gG(l)))) +s=1 +break}m=J.aj(o) +h=A.ep(m.i(o,0)) +l=p.d +if(h!==l.f){s=1 +break}switch(b){case"TextInputClient.updateEditingState":g=A.buz(t.a.a(m.i(o,1))) +$.dC().aE5(g,$.art()) +break +case u.f:f=A.a([],t.sD) +l=t.a +for(n=J.al(n.a(J.b7(l.a(m.i(o,1)),"deltas")));n.v();)f.push(A.bN1(l.a(n.gG(n)))) +t.Je.a(p.d.r).aRk(f) +break +case"TextInputClient.performAction":if(A.bm(m.i(o,1))==="TextInputAction.commitContent"){n=t.a.a(m.i(o,2)) +m=J.aj(n) +A.bm(m.i(n,"mimeType")) +A.bm(m.i(n,"uri")) +if(m.i(n,"data")!=null)new Uint8Array(A.mI(A.hl(t.JY.a(m.i(n,"data")),!0,t.S))) +p.d.r.a.toString}else p.d.r.aNY(A.bSX(A.bm(m.i(o,1)))) +break +case"TextInputClient.performSelectors":e=J.j6(n.a(m.i(o,1)),t.N) +e.al(e,p.d.r.gaO_()) +break +case"TextInputClient.performPrivateCommand":n=t.a +d=n.a(m.i(o,1)) +m=p.d.r +l=J.aj(d) +A.bm(l.i(d,"action")) +if(l.i(d,"data")!=null)n.a(l.i(d,"data")) +m.a.toString +break +case"TextInputClient.updateFloatingCursor":n=l.r +l=A.bSW(A.bm(m.i(o,1))) +m=t.a.a(m.i(o,2)) +if(l===B.nm){k=J.aj(m) +c=new A.m(A.oa(k.i(m,"X")),A.oa(k.i(m,"Y")))}else c=B.i +n.aQe(new A.aOU(c,l)) +break +case"TextInputClient.onConnectionClosed":n=l.r +if(n.gm7()){n.z.toString +n.fy=n.z=$.dC().d=null +n.a.d.pq()}break +case"TextInputClient.showAutocorrectionPromptRect":l.r.agI(A.ep(m.i(o,1)),A.ep(m.i(o,2))) +break +case"TextInputClient.showToolbar":l.r.oA() +break +case"TextInputClient.insertTextPlaceholder":l.r.aLe(new A.U(A.oa(m.i(o,1)),A.oa(m.i(o,2)))) +break +case"TextInputClient.removeTextPlaceholder":l.r.ad9() +break +default:throw A.c(A.bl5(null))}case 1:return A.w(q,r)}}) +return A.x($async$Re,r)}, +aB8(){if(this.w)return +this.w=!0 +A.fE(new A.aZz(this))}, +aBP(a,b){var s,r,q,p,o,n,m,l,k,j +for(s=this.b,s=A.dS(s,s.r,A.l(s).c),r=t.jl,q=t.H,p=s.$ti.c,o=t.N,n=t.z;s.v();){m=s.d +if(m==null)p.a(m) +m=$.dC() +l=m.c +l===$&&A.b() +k=m.d.f +j=b.bf() +if(m.a!==$.art())j.n(0,"inputType",A.am(["name","TextInputType.none","signed",null,"decimal",null],o,n)) +l.e_("TextInput.setClient",A.a([k,j],r),q)}}, +a0j(){var s,r,q,p,o=this +o.d.toString +for(s=o.b,s=A.dS(s,s.r,A.l(s).c),r=t.H,q=s.$ti.c;s.v();){p=s.d +if(p==null)q.a(p) +p=$.dC().c +p===$&&A.b() +p.qU("TextInput.clearClient",r)}o.d=null +o.aB8()}, +a6r(a){var s,r,q,p,o,n,m,l +for(s=this.b,s=A.dS(s,s.r,A.l(s).c),r=t.H,q=s.$ti.c,p=t.N,o=t.z;s.v();){n=s.d +if(n==null)q.a(n) +n=$.dC() +m=n.c +m===$&&A.b() +l=a.bf() +if(n.a!==$.art())l.n(0,"inputType",A.am(["name","TextInputType.none","signed",null,"decimal",null],p,o)) +m.e_("TextInput.updateConfig",l,r)}}, +Jz(a){var s,r,q,p +for(s=this.b,s=A.dS(s,s.r,A.l(s).c),r=t.H,q=s.$ti.c;s.v();){p=s.d +if(p==null)q.a(p) +p=$.dC().c +p===$&&A.b() +p.e_("TextInput.setEditingState",a.Xz(),r)}}, +SI(){var s,r,q,p +for(s=this.b,s=A.dS(s,s.r,A.l(s).c),r=t.H,q=s.$ti.c;s.v();){p=s.d +if(p==null)q.a(p) +p=$.dC().c +p===$&&A.b() +p.qU("TextInput.show",r)}}, +avC(){var s,r,q,p +for(s=this.b,s=A.dS(s,s.r,A.l(s).c),r=t.H,q=s.$ti.c;s.v();){p=s.d +if(p==null)q.a(p) +p=$.dC().c +p===$&&A.b() +p.qU("TextInput.hide",r)}}, +aBS(a,b){var s,r,q,p,o,n,m,l,k +for(s=this.b,s=A.dS(s,s.r,A.l(s).c),r=a.a,q=a.b,p=b.a,o=t.N,n=t.z,m=t.H,l=s.$ti.c;s.v();){k=s.d +if(k==null)l.a(k) +k=$.dC().c +k===$&&A.b() +k.e_("TextInput.setEditableSizeAndTransform",A.am(["width",r,"height",q,"transform",p],o,n),m)}}, +aBQ(a){var s,r,q,p,o,n,m,l,k,j +for(s=this.b,s=A.dS(s,s.r,A.l(s).c),r=a.a,q=a.c-r,p=a.b,o=a.d-p,n=t.N,m=t.z,l=t.H,k=s.$ti.c;s.v();){j=s.d +if(j==null)k.a(j) +j=$.dC().c +j===$&&A.b() +j.e_("TextInput.setMarkedTextRect",A.am(["width",q,"height",o,"x",r,"y",p],n,m),l)}}, +aBO(a){var s,r,q,p,o,n,m,l,k,j +for(s=this.b,s=A.dS(s,s.r,A.l(s).c),r=a.a,q=a.c-r,p=a.b,o=a.d-p,n=t.N,m=t.z,l=t.H,k=s.$ti.c;s.v();){j=s.d +if(j==null)k.a(j) +j=$.dC().c +j===$&&A.b() +j.e_("TextInput.setCaretRect",A.am(["width",q,"height",o,"x",r,"y",p],n,m),l)}}, +aBX(a){var s,r,q +for(s=this.b,s=A.dS(s,s.r,A.l(s).c),r=s.$ti.c;s.v();){q=s.d;(q==null?r.a(q):q).agy(a)}}, +aBY(a,b,c,d,e){var s,r,q,p,o,n,m,l,k +for(s=this.b,s=A.dS(s,s.r,A.l(s).c),r=d.a,q=e.a,p=t.N,o=t.z,n=t.H,m=c==null,l=s.$ti.c;s.v();){k=s.d +if(k==null)l.a(k) +k=$.dC().c +k===$&&A.b() +k.e_("TextInput.setStyle",A.am(["fontFamily",a,"fontSize",b,"fontWeightIndex",m?null:c.a,"textAlignIndex",r,"textDirectionIndex",q],p,o),n)}}, +aAt(){var s,r,q,p +for(s=this.b,s=A.dS(s,s.r,A.l(s).c),r=t.H,q=s.$ti.c;s.v();){p=s.d +if(p==null)q.a(p) +p=$.dC().c +p===$&&A.b() +p.qU("TextInput.requestAutofill",r)}}, +aE5(a,b){var s,r,q,p +if(this.d==null)return +for(s=$.dC().b,s=A.dS(s,s.r,A.l(s).c),r=s.$ti.c,q=t.H;s.v();){p=s.d +if((p==null?r.a(p):p)!==b){p=$.dC().c +p===$&&A.b() +p.e_("TextInput.setEditingState",a.Xz(),q)}}$.dC().d.r.aQc(a)}} +A.aZy.prototype={ +$0(){var s=null +return A.a([A.lb("call",this.a,!0,B.bq,s,!1,s,s,B.aW,s,!1,!0,!0,B.cg,s,t.Pw)],t.F)}, +$S:40} +A.aZw.prototype={ +$1(a){return a}, +$S:441} +A.aZv.prototype={ +$1(a){var s,r,q,p=this.b,o=p[0],n=p[1],m=p[2] +p=p[3] +s=this.a.f +r=s.i(0,a) +p=r==null?null:r.aLB(new A.L(o,n,o+m,n+p)) +if(p!==!0)return!1 +p=s.i(0,a) +q=p==null?null:p.gte(p) +if(q==null)q=B.W +if(!q.k(0,B.W))p=isNaN(q.a)||isNaN(q.b)||isNaN(q.c)||isNaN(q.d)||q.gabw(q) +else p=!0 +return!p}, +$S:11} +A.aZx.prototype={ +$1(a){var s,r,q=this.a.f.i(0,a),p=q.gte(q) +q=[a] +s=p.a +r=p.b +B.b.I(q,[s,r,p.c-s,p.d-r]) +return q}, +$S:442} +A.aZz.prototype={ +$0(){var s=this.a +s.w=!1 +if(s.d==null)s.avC()}, +$S:0} +A.Pq.prototype={} +A.ak2.prototype={ +agy(a){var s,r=$.dC().c +r===$&&A.b() +s=A.ab(a).h("ad<1,f>") +r.e_("TextInput.setSelectionRects",A.a8(new A.ad(a,new A.b9o(),s),!0,s.h("av.E")),t.H)}} +A.b9o.prototype={ +$1(a){var s=a.b,r=s.a,q=s.b +return A.a([r,q,s.c-r,s.d-q,a.a,a.c.a],t.a0)}, +$S:443} +A.apS.prototype={} +A.abm.prototype={ +J(){return"UndoDirection."+this.b}} +A.abn.prototype={ +gaDS(){var s=this.a +s===$&&A.b() +return s}, +Rf(a){return this.avs(a)}, +avs(a){var s=0,r=A.y(t.z),q,p=this,o,n +var $async$Rf=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:n=t.j.a(a.b) +if(a.a==="UndoManagerClient.handleUndo"){o=p.b +o.toString +o.aK5(p.aDo(A.bm(J.b7(n,0)))) +s=1 +break}throw A.c(A.bl5(null)) +case 1:return A.w(q,r)}}) +return A.x($async$Rf,r)}, +aDo(a){switch(a){case"undo":return B.ayR +case"redo":return B.ayS}throw A.c(A.Cr(A.a([A.tC("Unknown undo direction: "+a)],t.F)))}} +A.b_S.prototype={} +A.bfy.prototype={ +$1(a){this.a.sdQ(a) +return!1}, +$S:48} +A.bA.prototype={} +A.cc.prototype={ +j2(a){this.b=a}, +tK(a,b){return this.gq1()}, +Cz(a,b){var s=this +if(A.l(s).h("f6").b(s))return s.tL(0,a,b) +return s.tK(0,a)}, +gq1(){return!0}, +zW(a){return!0}, +XA(a,b){return this.zW(a)?B.hz:B.jF}, +D3(a,b){var s=this +if(A.l(s).h("f6").b(s))return s.hj(a,b) +return s.hi(a)}, +Tq(a){var s=this.a +s.b=!0 +s.a.push(a) +return null}, +Nl(a){return this.a.E(0,a)}, +fI(a){return new A.T2(this,a,!1,!1,!1,!1,new A.bd(A.a([],t.h),t.o),A.l(this).h("T2"))}} +A.f6.prototype={ +tL(a,b,c){return this.ahm(0,b)}, +tK(a,b){return this.tL(a,b,null)}, +fI(a){return new A.T3(this,a,!1,!1,!1,!1,new A.bd(A.a([],t.h),t.o),A.l(this).h("T3"))}} +A.cz.prototype={ +hi(a){return this.c.$1(a)}} +A.asf.prototype={ +abp(a,b,c){return a.D3(b,c)}, +aLr(a,b,c){if(a.Cz(b,c))return new A.eT(!0,a.D3(b,c)) +return B.aps}} +A.pX.prototype={ +a8(){return new A.Qj(A.aW(t.od),new A.C(),B.m)}} +A.ash.prototype={ +$1(a){var s=a.e +s.toString +t.L1.a(s) +return!1}, +$S:100} +A.ask.prototype={ +$1(a){var s,r=this,q=a.e +q.toString +s=A.asg(t.L1.a(q),r.b,r.d) +if(s!=null){r.c.OO(a,null) +r.a.a=s +return!0}return!1}, +$S:100} +A.asi.prototype={ +$1(a){var s,r=a.e +r.toString +s=A.asg(t.L1.a(r),this.b,this.c) +if(s!=null){this.a.a=s +return!0}return!1}, +$S:100} +A.asj.prototype={ +$1(a){var s,r,q=this,p=a.e +p.toString +s=q.b +r=A.asg(t.L1.a(p),s,q.d) +p=r!=null +if(p&&r.Cz(s,q.c))q.a.a=A.bji(a).abp(r,s,q.c) +return p}, +$S:100} +A.asl.prototype={ +$1(a){var s,r,q=this,p=a.e +p.toString +s=q.b +r=A.asg(t.L1.a(p),s,q.d) +p=r!=null +if(p&&r.Cz(s,q.c))q.a.a=A.bji(a).abp(r,s,q.c) +return p}, +$S:100} +A.Qj.prototype={ +aX(){this.b9() +this.a6i()}, +asz(a){this.ad(new A.b1I(this))}, +a6i(){var s,r,q,p,o=this,n=o.a.d +n=n.gbp(n) +s=A.iJ(n,A.l(n).h("z.E")) +r=o.d.x9(s) +n=o.d +n.toString +q=s.x9(n) +for(n=r.gam(r),p=o.ga2b();n.v();)n.gG(n).Nl(p) +for(n=q.gam(q);n.v();)n.gG(n).Tq(p) +o.d=s}, +b1(a){this.bh(a) +this.a6i()}, +m(){var s,r,q,p,o=this +o.b0() +for(s=o.d,s=A.dS(s,s.r,A.l(s).c),r=o.ga2b(),q=s.$ti.c;s.v();){p=s.d;(p==null?q.a(p):p).Nl(r)}o.d=null}, +A(a){var s=this.a +return new A.Qi(null,s.d,this.e,s.e,null)}} +A.b1I.prototype={ +$0(){this.a.e=new A.C()}, +$S:0} +A.Qi.prototype={ +dh(a){var s +if(this.w===a.w)s=!A.bhB(a.r,this.r) +else s=!0 +return s}} +A.xk.prototype={ +a8(){return new A.RT(new A.bq(null,t.C),B.m)}} +A.RT.prototype={ +aX(){this.b9() +$.cB.y2$.push(new A.b65(this)) +$.ap.Y$.f.a.d.F(0,this.ga2j())}, +m(){$.ap.Y$.f.a.d.E(0,this.ga2j()) +this.b0()}, +a6B(a){this.J_(new A.b63(this))}, +ats(a){if(this.c==null)return +this.a6B(a)}, +atR(a){if(!this.e)this.J_(new A.b5Z(this))}, +atT(a){if(this.e)this.J_(new A.b6_(this))}, +ato(a){var s,r=this +if(r.f!==a){r.J_(new A.b5Y(r,a)) +s=r.a.Q +if(s!=null)s.$1(r.f)}}, +a3e(a,b){var s,r,q,p,o,n,m=this,l=new A.b62(m),k=new A.b61(m,new A.b60(m)) +if(a==null){s=m.a +s.toString +r=s}else r=a +q=l.$1(r) +p=k.$1(r) +if(b!=null)b.$0() +s=m.a +s.toString +o=l.$1(s) +s=m.a +s.toString +n=k.$1(s) +if(p!==n)m.a.y.$1(n) +if(q!==o){l=m.a.z +if(l!=null)l.$1(o)}}, +J_(a){return this.a3e(null,a)}, +ax_(a){return this.a3e(a,null)}, +b1(a){this.bh(a) +if(this.a.c!==a.c)$.cB.y2$.push(new A.b64(this,a))}, +gaoD(){var s,r=this.c +r.toString +r=A.d9(r,B.h3) +s=r==null?null:r.ch +switch((s==null?B.fG:s).a){case 0:return this.a.c +case 1:return!0}}, +A(a){var s,r,q,p=this,o=null,n=p.a,m=n.as +n=n.d +s=p.gaoD() +r=p.a +q=A.nj(A.tJ(!1,s,r.ax,o,!0,!0,n,!0,o,p.gatn(),o,o,o,o),m,p.r,p.gatQ(),p.gatS(),o) +n=r.c +if(n)m=r.w.a!==0 +else m=!1 +if(m)q=A.pY(r.w,q) +if(n){n=r.x +n=n!=null&&n.gd2(n)}else n=!1 +if(n){n=p.a.x +n.toString +q=A.Ov(q,o,n)}return q}} +A.b65.prototype={ +$1(a){var s=$.ap.Y$.f.a.b +if(s==null)s=A.Ag() +this.a.a6B(s)}, +$S:5} +A.b63.prototype={ +$0(){var s=$.ap.Y$.f.a.b +switch((s==null?A.Ag():s).a){case 0:this.a.d=!1 +break +case 1:this.a.d=!0 +break}}, +$S:0} +A.b5Z.prototype={ +$0(){this.a.e=!0}, +$S:0} +A.b6_.prototype={ +$0(){this.a.e=!1}, +$S:0} +A.b5Y.prototype={ +$0(){this.a.f=this.b}, +$S:0} +A.b62.prototype={ +$1(a){var s=this.a +return s.e&&a.c&&s.d}, +$S:177} +A.b60.prototype={ +$1(a){var s,r=this.a.c +r.toString +r=A.d9(r,B.h3) +s=r==null?null:r.ch +switch((s==null?B.fG:s).a){case 0:return a.c +case 1:return!0}}, +$S:177} +A.b61.prototype={ +$1(a){var s=this.a +return s.f&&s.d&&this.b.$1(a)}, +$S:177} +A.b64.prototype={ +$1(a){this.a.ax_(this.b)}, +$S:5} +A.abN.prototype={ +hi(a){a.aR1() +return null}} +A.JS.prototype={ +zW(a){return this.c}, +hi(a){}} +A.ta.prototype={} +A.tj.prototype={} +A.kx.prototype={} +A.a1_.prototype={} +A.r0.prototype={} +A.a7o.prototype={ +tL(a,b,c){var s,r,q,p,o,n=$.ap.Y$.f.c +if(n==null||n.e==null)return!1 +for(s=t.vz,r=0;r<2;++r){q=B.adU[r] +p=n.e +p.toString +o=A.bjk(p,q,s) +if(o!=null&&o.Cz(q,c)){this.e=o +this.f=q +return!0}}return!1}, +tK(a,b){return this.tL(a,b,null)}, +hj(a,b){var s,r=this.e +r===$&&A.b() +s=this.f +s===$&&A.b() +r.D3(s,b)}, +hi(a){return this.hj(a,null)}} +A.H_.prototype={ +a2Q(a,b,c){var s +a.j2(this.gv2()) +s=a.D3(b,c) +a.j2(null) +return s}, +hj(a,b){var s=this,r=A.bjj(s.gFJ(),A.l(s).c) +return r==null?s.abr(a,s.b,b):s.a2Q(r,a,b)}, +hi(a){return this.hj(a,null)}, +gq1(){var s,r,q=this,p=A.bjk(q.gFJ(),null,A.l(q).c) +if(p!=null){p.j2(q.gv2()) +s=p.gq1() +p.j2(null) +r=s}else r=q.gv2().gq1() +return r}, +tL(a,b,c){var s,r=this,q=A.bjj(r.gFJ(),A.l(r).c),p=q==null +if(!p)q.j2(r.gv2()) +s=(p?r.gv2():q).Cz(b,c) +if(!p)q.j2(null) +return s}, +tK(a,b){return this.tL(a,b,null)}, +zW(a){var s,r=this,q=A.bjj(r.gFJ(),A.l(r).c),p=q==null +if(!p)q.j2(r.gv2()) +s=(p?r.gv2():q).zW(a) +if(!p)q.j2(null) +return s}} +A.T2.prototype={ +abr(a,b,c){var s=this.e +if(b==null)return s.hi(a) +else return s.hi(a)}, +gv2(){return this.e}, +gFJ(){return this.f}} +A.T3.prototype={ +a2Q(a,b,c){var s +c.toString +a.j2(new A.R4(c,this.e,new A.bd(A.a([],t.h),t.o),this.$ti.h("R4<1>"))) +s=a.D3(b,c) +a.j2(null) +return s}, +abr(a,b,c){var s=this.e +if(b==null)return s.hj(a,c) +else return s.hj(a,c)}, +gv2(){return this.e}, +gFJ(){return this.f}} +A.R4.prototype={ +j2(a){this.d.j2(a)}, +tK(a,b){return this.d.tL(0,b,this.c)}, +gq1(){return this.d.gq1()}, +zW(a){return this.d.zW(a)}, +Tq(a){var s +this.ahl(a) +s=this.d.a +s.b=!0 +s.a.push(a)}, +Nl(a){this.ahn(a) +this.d.a.E(0,a)}, +hi(a){return this.d.hj(a,this.c)}} +A.adQ.prototype={} +A.adO.prototype={} +A.ai0.prototype={} +A.Wd.prototype={ +j2(a){this.Zf(a) +this.e.j2(a)}} +A.We.prototype={ +j2(a){this.Zf(a) +this.e.j2(a)}} +A.Ib.prototype={ +a8(){return new A.ae0(null,null,B.m)}} +A.ae0.prototype={ +A(a){var s=this.a +return new A.ae_(B.a7,s.e,s.f,null,this,B.C,s.c,null)}, +$iaP:1} +A.ae_.prototype={ +b5(a){var s=this +return A.bLx(s.e,s.y,s.f,s.r,s.w,A.eJ(a),s.x)}, +bb(a,b){var s,r=this +b.sjI(r.e) +b.sEH(0,r.r) +b.saPk(r.w) +b.saHS(0,r.f) +b.sY_(r.x) +b.scz(A.eJ(a)) +s=r.y +if(s!==b.pT){b.pT=s +b.b_() +b.bY()}}} +A.apd.prototype={ +m(){var s=this,r=s.c3$ +if(r!=null)r.H(0,s.ghP()) +s.c3$=null +s.b0()}, +cf(){this.cW() +this.cO() +this.hQ()}} +A.vq.prototype={ +l(a){return"Entry#"+A.br(this)+"("+this.d.l(0)+")"}} +A.Ic.prototype={ +a8(){return new A.Ql(A.aW(t.me),B.af6,null,null,B.m)}, +aQ4(a,b){return this.w.$2(a,b)}, +aLZ(a,b){return this.x.$2(a,b)}} +A.Ql.prototype={ +aX(){this.b9() +this.a_l(!1)}, +b1(a){var s,r,q,p=this +p.bh(a) +if(!J.j(p.a.w,a.w)){p.e.al(0,p.gaEC()) +s=p.d +if(s!=null)p.Td(s) +p.f=null}s=p.a.c +r=s!=null +q=p.d +if(r===(q!=null))if(r){q=q.d +s=!(A.p(s)===A.p(q)&&J.j(s.a,q.a))}else s=!1 +else s=!0 +if(s){++p.r +p.a_l(!0)}else{s=p.d +if(s!=null){q=p.a.c +q.toString +s.d=q +p.Td(s) +p.f=null}}}, +a_l(a){var s,r,q,p=this,o=p.d +if(o!=null){p.e.F(0,o) +p.d.a.d3(0) +p.d=p.f=null}o=p.a +if(o.c==null)return +s=A.bx(B.A,null,o.d,0,o.e,1,null,p) +o=p.a +r=A.c5(o.f,s,o.r) +o=p.a +q=o.c +q.toString +p.d=p.axw(r,o.w,q,s) +if(a)s.bS(0) +else s.sj(0,1)}, +axw(a,b,c,d){var s=new A.vq(d,a,A.bJo(b.$2(c,a),this.r),c) +a.a.f8(new A.b20(this,s,d)) +return s}, +Td(a){var s=a.c +a.c=new A.iG(this.a.aQ4(a.d,a.b),s.a)}, +aA_(){if(this.f==null){var s=this.e +this.f=A.hN(new A.qh(s,new A.b21(),A.l(s).h("qh<1,d>")),t.l7)}}, +m(){var s,r,q,p,o,n=this.d +if(n!=null)n.a.m() +for(n=this.e,n=A.dS(n,n.r,A.l(n).c),s=n.$ti.c;n.v();){r=n.d +r=(r==null?s.a(r):r).a +r.r.m() +r.r=null +q=r.ej$ +q.b=!1 +B.b.ab(q.a) +p=q.c +if(p===$){o=A.dI(q.$ti.c) +q.c!==$&&A.aq() +q.c=o +p=o}if(p.a>0){p.b=p.c=p.d=p.e=null +p.a=0}q=r.dw$ +q.b=!1 +B.b.ab(q.a) +p=q.c +if(p===$){o=A.dI(q.$ti.c) +q.c!==$&&A.aq() +q.c=o +p=o}if(p.a>0){p.b=p.c=p.d=p.e=null +p.a=0}r.Cp()}this.alw()}, +A(a){var s,r,q,p,o=this +o.aA_() +s=o.a +s.toString +r=o.d +r=r==null?null:r.c +q=o.f +q.toString +p=A.ab(q).h("ba<1>") +p=A.iJ(new A.ba(q,new A.b22(o),p),p.h("z.E")) +return s.aLZ(r,A.a8(p,!0,A.l(p).c))}, +$iaP:1} +A.b20.prototype={ +$1(a){var s +if(a===B.R){s=this.a +s.ad(new A.b2_(s,this.b)) +this.c.m()}}, +$S:9} +A.b2_.prototype={ +$0(){var s=this.a +s.e.E(0,this.b) +s.f=null}, +$S:0} +A.b21.prototype={ +$1(a){return a.c}, +$S:449} +A.b22.prototype={ +$1(a){var s=this.a.d +s=s==null?null:s.c.a +return!J.j(a.a,s)}, +$S:450} +A.VM.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.Ii.prototype={ +b5(a){var s=new A.Nu(this.e,!0,null,A.ay(t.T),this.$ti.h("Nu<1>")) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.sj(0,this.e) +b.sagW(!0)}} +A.FP.prototype={ +a8(){return new A.Vi(B.m)}} +A.Vi.prototype={ +gavP(){$.ap.toString +var s=$.bO() +if(s.gL8()!=="/"){$.ap.toString +s=s.gL8()}else{this.a.toString +$.ap.toString +s=s.gL8()}return s}, +aq2(a){switch(this.d){case null:case void 0:case B.h7:case B.mc:return!0 +case B.iQ:case B.md:case B.iR:A.blL(a.a) +return!0}}, +Lg(a){this.d=a +this.ak2(a)}, +aX(){var s=this +s.b9() +s.aEo() +$.ap.toString +s.w=s.Sr($.bO().a.f,s.a.go) +$.ap.bd$.push(s) +s.d=$.ap.RG$}, +b1(a){this.bh(a) +this.a6N(a)}, +m(){B.b.E($.ap.bd$,this) +var s=this.e +if(s!=null)s.m() +this.b0()}, +a0k(){var s=this.e +if(s!=null)s.m() +this.f=this.e=null}, +a6N(a){var s,r=this +r.a.toString +if(r.ga74()){r.a0k() +if(r.r!=null){r.a.toString +a.toString +s=!1}else s=!0 +if(s){s=r.a.c +r.r=new A.tP(r,t.rO)}}else{r.a0k() +r.r=null}}, +aEo(){return this.a6N(null)}, +ga74(){this.a.toString +var s=!1 +return s}, +ay6(a){var s,r=a.a +if(r==="/")this.a.toString +s=this.a.as.i(0,r) +return this.a.f.$1$2(a,s,t.z)}, +ayE(a){return this.a.at.$1(a)}, +Ey(){var s=0,r=A.y(t.y),q,p=this,o,n +var $async$Ey=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:p.a.toString +o=p.r +n=o==null?null:o.gR() +if(n==null){q=!1 +s=1 +break}q=n.Mw() +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Ey,r)}, +Af(a){return this.aIf(a)}, +aIf(a){var s=0,r=A.y(t.y),q,p=this,o,n,m,l +var $async$Af=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:p.a.toString +o=p.r +n=o==null?null:o.gR() +if(n==null){q=!1 +s=1 +break}m=a.gho() +o=m.gdT(m).length===0?"/":m.gdT(m) +l=m.gu_() +l=l.gak(l)?null:m.gu_() +o=A.fc(m.gp8().length===0?null:m.gp8(),null,o,null,l,null).gwC() +l=t.X +o=n.Sv(A.lL(o,0,o.length,B.a_,!1),null,l) +o.toString +n.Bj(o,l) +q=!0 +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Af,r)}, +Sr(a,b){this.a.toString +return A.bTr(a,b)}, +a9w(a){var s=this,r=s.Sr(a,s.a.go) +if(!r.k(0,s.w))s.ad(new A.ben(s,r))}, +A(a){var s,r,q,p,o,n,m,l,k=this,j=null,i={} +i.a=null +k.a.toString +if(k.ga74()){s=k.r +r=k.gavP() +q=k.a +q=q.ch +q.toString +i.a=A.aDz(!0,A.bt0(B.n,r,s,q,A.bz9(),k.gay5(),j,k.gayD(),B.afa,!0,"nav"),"Navigator Scope",j,j)}else{s=k.a.z +if(s!=null){r=s.d +r===$&&A.b() +q=s.e +q===$&&A.b() +p=s.c +p===$&&A.b() +i.a=new A.Er(r,q,p,s.b,"router",j,t.SB)}}i.b=null +s=k.a +s.toString +o=new A.e4(new A.bel(i,k),j) +i.b=o +i.b=A.fI(o,j,j,B.aU,!0,s.db,j,j,B.at) +s=k.a +s=s.dy +if(s!=null)n=k.Sr(A.a([s],t.ss),k.a.go) +else{s=k.w +s.toString +n=s}s=k.a.p4 +r=A.bO2() +q=A.oN($.bBQ(),t.n,t.od) +q.n(0,B.pN,new A.O2(new A.bd(A.a([],t.h),t.o)).fI(a)) +p=A.blq() +m=t.a9 +l=A.a([],m) +B.b.I(l,k.a.fr) +l.push(B.Tm) +m=A.a(l.slice(0),m) +return new A.NV(new A.Or(new A.dB(k.gaq1(),A.Ov(new A.a0K(A.pY(q,A.brE(new A.aaJ(new A.Ot(new A.LB(n,m,new A.e4(new A.bem(i,k),j),j),j),j),p)),j),"",r),j,t.w3),j),s,j)}} +A.ben.prototype={ +$0(){this.a.w=this.b}, +$S:0} +A.bel.prototype={ +$1(a){return this.b.a.CW.$2(a,this.a.a)}, +$S:13} +A.bem.prototype={ +$1(a){var s=this.b,r=s.a.cy.$1(a) +s=s.a.dx +return new A.Fv(r,A.K(255,s.gj(s)>>>16&255,s.gj(s)>>>8&255,s.gj(s)&255),this.a.b,null)}, +$S:454} +A.aqS.prototype={} +A.B5.prototype={ +a8(){return new A.Qz(B.m)}} +A.Qz.prototype={ +aX(){this.b9() +this.a_L()}, +b1(a){this.bh(a) +this.a_L()}, +a_L(){this.e=new A.dB(this.ganb(),this.a.c,null,t.Jd)}, +m(){var s,r,q=this.d +if(q!=null)for(q=A.ie(q,q.r,A.l(q).c);q.v();){s=q.d +r=this.d.i(0,s) +r.toString +s.H(0,r)}this.b0()}, +anc(a){var s,r=this,q=a.a,p=r.d +if(p==null)p=r.d=A.I(t.I_,t.Q) +p.n(0,q,r.apK(q)) +p=r.d.i(0,q) +p.toString +q.P(0,p) +if(!r.f){r.f=!0 +s=r.a1G() +if(s!=null)r.a6G(s) +else $.cB.y2$.push(new A.b2k(r))}return!1}, +a1G(){var s={},r=this.c +r.toString +s.a=null +r.ci(new A.b2p(s)) +return t.xO.a(s.a)}, +a6G(a){var s,r +this.c.toString +s=this.f +r=this.e +r===$&&A.b() +a.a_G(t.Fw.a(A.bJi(r,s)))}, +apK(a){var s=A.b6("callback"),r=new A.b2o(this,a,s) +s.sdQ(r) +return r}, +A(a){var s=this.f,r=this.e +r===$&&A.b() +return new A.Li(s,r,null)}} +A.b2k.prototype={ +$1(a){var s,r=this.a +if(r.c==null)return +s=r.a1G() +s.toString +r.a6G(s)}, +$S:5} +A.b2p.prototype={ +$1(a){this.a.a=a}, +$S:24} +A.b2o.prototype={ +$0(){var s=this.a,r=this.b +s.d.E(0,r) +r.H(0,this.c.aH()) +if(s.d.a===0)if($.cB.aK$.a<3)s.ad(new A.b2m(s)) +else{s.f=!1 +A.fE(new A.b2n(s))}}, +$S:0} +A.b2m.prototype={ +$0(){this.a.f=!1}, +$S:0} +A.b2n.prototype={ +$0(){var s=this.a +if(s.c!=null&&s.d.a===0)s.ad(new A.b2l(s))}, +$S:0} +A.b2l.prototype={ +$0(){}, +$S:0} +A.D_.prototype={} +A.Lj.prototype={ +m(){this.ag() +this.eK()}} +A.wj.prototype={ +CS(){var s=new A.Lj($.aH()) +this.mX$=s +this.c.fY(new A.D_(s))}, +y6(){var s,r=this +if(r.gGV()){if(r.mX$==null)r.CS()}else{s=r.mX$ +if(s!=null){s.ag() +s.eK() +r.mX$=null}}}, +A(a){if(this.gGV()&&this.mX$==null)this.CS() +return B.aCt}} +A.ajG.prototype={ +A(a){throw A.c(A.qs("Widgets that mix AutomaticKeepAliveClientMixin into their State must call super.build() but must ignore the return value of the superclass."))}} +A.aoH.prototype={ +YQ(a,b){}, +xM(a){A.bwx(this,new A.be0(this,a))}} +A.be0.prototype={ +$1(a){var s=a.y +if(s!=null&&s.p(0,this.a))a.ca()}, +$S:24} +A.be_.prototype={ +$1(a){A.bwx(a,this.a)}, +$S:24} +A.aoI.prototype={ +bI(a){return new A.aoH(A.cA(null,null,null,t.E,t.X),this,B.an)}} +A.lX.prototype={ +dh(a){return this.w!==a.w}} +A.a6w.prototype={ +b5(a){var s=this.e +s=new A.a8b(B.e.bg(A.V(s,0,1)*255),s,!1,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.si_(0,this.e) +b.sKu(!1)}} +A.Ya.prototype={ +b5(a){var s=new A.a7Y(this.e,B.dz,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.shg(0,this.e) +b.suR(B.dz)}} +A.JE.prototype={ +b5(a){var s=new A.Nx(this.e,this.f,this.r,!1,!1,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.sxP(this.e) +b.saap(this.f) +b.srb(this.r) +b.eB=b.cr=!1}, +EA(a){a.sxP(null) +a.saap(null)}} +A.BC.prototype={ +b5(a){var s=new A.a81(null,this.f,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.szS(null) +b.smB(this.f)}, +EA(a){a.szS(null)}} +A.Zf.prototype={ +b5(a){var s=new A.a80(this.e,A.eJ(a),null,this.r,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.sTR(0,this.e) +b.smB(this.r) +b.szS(null) +b.scz(A.eJ(a))}} +A.Bz.prototype={ +b5(a){var s=new A.a8_(this.e,this.f,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.szS(this.e) +b.smB(this.f)}, +EA(a){a.szS(null)}} +A.ax8.prototype={ +$1(a){return A.ax6(this.c,this.b,new A.uV(this.a,A.eJ(a)))}, +$S:457} +A.a78.prototype={ +b5(a){var s=this,r=new A.a8c(s.e,s.r,s.w,s.y,s.x,null,s.f,null,A.ay(t.T)) +r.b4() +r.sbN(null) +return r}, +bb(a,b){var s=this +b.scH(0,s.e) +b.smB(s.f) +b.sTR(0,s.r) +b.sfn(0,s.w) +b.saf(0,s.x) +b.sbT(0,s.y)}} +A.a79.prototype={ +b5(a){var s=this,r=new A.a8d(s.r,s.x,s.w,s.e,s.f,null,A.ay(t.T)) +r.b4() +r.sbN(null) +return r}, +bb(a,b){var s=this +b.szS(s.e) +b.smB(s.f) +b.sfn(0,s.r) +b.saf(0,s.w) +b.sbT(0,s.x)}} +A.rk.prototype={ +b5(a){var s=this,r=A.eJ(a),q=new A.a8t(s.w,null,A.ay(t.T)) +q.b4() +q.sbN(null) +q.sd4(0,s.e) +q.sjI(s.r) +q.scz(r) +q.svm(s.x) +q.sBe(0,null) +return q}, +bb(a,b){var s=this +b.sd4(0,s.e) +b.sBe(0,null) +b.sjI(s.r) +b.scz(A.eJ(a)) +b.cr=s.w +b.svm(s.x)}} +A.wB.prototype={ +b5(a){var s=new A.a88(this.e,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.sxE(this.e)}} +A.BH.prototype={ +b5(a){var s=new A.a84(this.e,this.f,this.x,B.f1,B.f1,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.sxE(this.e) +b.sagP(this.f) +b.sc5(0,this.x) +b.saM0(B.f1) +b.saJh(B.f1)}} +A.a28.prototype={ +b5(a){var s=new A.a85(this.e,this.f,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.saQ7(this.e) +b.ac=this.f}} +A.b4.prototype={ +b5(a){var s=new A.NI(this.e,A.eJ(a),null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.sdD(0,this.e) +b.scz(A.eJ(a))}} +A.ef.prototype={ +b5(a){var s=new A.a8f(this.f,this.r,this.e,A.eJ(a),null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.sjI(this.e) +b.saQA(this.f) +b.saKF(this.r) +b.scz(A.eJ(a))}} +A.mY.prototype={} +A.l8.prototype={ +b5(a){var s=new A.Ny(this.e,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.sdc(this.e)}} +A.Lo.prototype={ +zD(a){var s,r,q=a.b +q.toString +t.Wz.a(q) +s=this.f +if(q.e!==s){q.e=s +r=a.gbP(a) +if(r instanceof A.J)r.aa()}}} +A.tv.prototype={ +b5(a){var s=new A.Nw(this.e,0,null,null,A.ay(t.T)) +s.b4() +s.I(0,null) +return s}, +bb(a,b){b.sdc(this.e)}} +A.fB.prototype={ +b5(a){return A.btH(A.jE(this.f,this.e))}, +bb(a,b){b.sTA(A.jE(this.f,this.e))}, +f4(){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.l(0)}} +A.eX.prototype={ +b5(a){return A.btH(this.e)}, +bb(a,b){b.sTA(this.e)}} +A.a3C.prototype={ +b5(a){var s=new A.a89(this.e,this.f,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.saMz(0,this.e) +b.saMy(0,this.f)}} +A.DD.prototype={ +b5(a){var s=new A.NH(this.e,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.sMD(this.e)}, +bI(a){return new A.ajN(this,B.an)}} +A.ajN.prototype={} +A.a36.prototype={ +b5(a){var s=null,r=this.e +if(r===0)r=s +r=new A.NE(r,s,s,A.ay(t.T)) +r.b4() +r.sbN(s) +return r}, +bb(a,b){var s=this.e +b.sahb(s===0?null:s) +b.saha(null)}} +A.iS.prototype={ +b5(a){var s=new A.a8s(null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}} +A.zt.prototype={ +b5(a){var s=a.aj(t.I) +s.toString +s=new A.a8q(this.e,s.w,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){var s +b.sdD(0,this.e) +s=a.aj(t.I) +s.toString +b.scz(s.w)}} +A.a3D.prototype={ +b5(a){var s=new A.NF(A.bh6(a,B.H,!1),0,null,null,A.ay(t.T)) +s.b4() +s.I(0,null) +return s}, +bb(a,b){b.sj4(A.bh6(a,B.H,!1))}} +A.v2.prototype={ +b5(a){var s=A.eJ(a) +return A.bLD(this.e,null,this.w,this.r,s)}, +bb(a,b){var s +b.sjI(this.e) +s=A.eJ(a) +b.scz(s) +b.sLM(this.r) +b.smB(this.w)}} +A.a3_.prototype={ +A(a){var s,r,q=this.w,p=q.length,o=J.oL(p,t.l7) +for(s=this.r,r=0;r0&&n.b>0){n=a.gcL(a) +s=o.gq(o) +r=b.a +q=b.b +p=$.au().bk() +p.saf(0,o.a3) +n.ey(new A.L(r,q,r+s.a,q+s.b),p)}n=o.k3$ +if(n!=null)a.em(n,b)}} +A.bep.prototype={ +$1(a){var s=a==null?t.K.a(a):a +return this.a.vr(s)}, +$S:459} +A.fR.prototype={ +Ey(){return A.cR(!1,t.y)}, +a9A(a){return A.cR(!1,t.y)}, +Af(a){var s=null,r=a.gho(),q=r.gdT(r).length===0?"/":r.gdT(r),p=r.gu_() +p=p.gak(p)?s:r.gu_() +q=A.fc(r.gp8().length===0?s:r.gp8(),s,q,s,p,s).gwC() +return this.a9A(A.lL(q,0,q.length,B.a_,!1))}, +UG(){}, +a9y(){}, +a9x(){}, +a9w(a){}, +Lg(a){}, +UL(){var s=0,r=A.y(t.s1),q +var $async$UL=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:q=B.qr +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$UL,r)}} +A.PV.prototype={ +LT(){var s=0,r=A.y(t.s1),q,p=this,o,n,m,l +var $async$LT=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:o=A.a8(p.bd$,!0,t.X5),n=o.length,m=!1,l=0 +case 3:if(!(l=s.b&&s.c>=s.d) +else s=!0}else s=!1 +if(s)m=new A.a3C(0,0,new A.eX(B.iV,n,n),n) +else{s=o.d +if(s!=null)m=new A.ef(s,n,n,m,n)}r=o.gayJ() +if(r!=null)m=new A.b4(r,m,n) +s=o.f +if(s!=null)m=new A.ts(s,m,n) +s=o.as +if(s!==B.n){q=A.eJ(a) +p=o.r +p.toString +m=A.ax6(m,s,new A.afT(q==null?B.j:q,p))}s=o.r +if(s!=null)m=A.wP(m,s,B.dH) +s=o.w +if(s!=null)m=A.wP(m,s,B.v6) +s=o.x +if(s!=null)m=new A.eX(s,m,n) +s=o.y +if(s!=null)m=new A.b4(s,m,n) +m.toString +return m}} +A.afT.prototype={ +NW(a){return this.c.H6(new A.L(0,0,0+a.a,0+a.b),this.b)}, +Os(a){return!a.c.k(0,this.c)||a.b!==this.b}} +A.ot.prototype={ +J(){return"ContextMenuButtonType."+this.b}} +A.fH.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.fH&&b.c==s.c&&J.j(b.a,s.a)&&b.b===s.b}, +gu(a){return A.X(this.c,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)}, +l(a){return"ContextMenuButtonItem "+this.b.l(0)+", "+A.i(this.c)}} +A.Zt.prototype={ +Z1(a,b,c){var s,r +A.bqr() +s=A.aIQ(b,t.N1) +s.toString +r=A.bt2(b) +if(r==null)r=null +else{r=r.c +r.toString}r=A.p0(new A.axD(A.L5(b,r),c),!1) +$.wE=r +s.xy(0,r) +$.qb=this}, +en(a){if($.qb!==this)return +A.bqr()}} +A.axD.prototype={ +$1(a){return new A.rw(this.a.a,this.b.$1(a),null)}, +$S:13} +A.tw.prototype={ +y8(a,b,c){return A.ayn(c,this.w,null,this.y,this.x)}, +dh(a){return!J.j(this.w,a.w)||!J.j(this.x,a.x)||!J.j(this.y,a.y)}} +A.ayo.prototype={ +$1(a){var s=a.aj(t.Uf) +if(s==null)s=B.fg +return A.ayn(this.e,s.w,this.a,this.d,s.x)}, +$S:460} +A.ajH.prototype={ +A(a){throw A.c(A.qs("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.a0K.prototype={ +as_(){return $.bAv()}, +A(a){var s=A.Ov(this.c,"",this.as_()) +return A.Ov(s,"",A.bGI())}} +A.a0Q.prototype={ +vQ(a){return new A.aN(0,a.b,0,a.d)}, +vT(a,b){var s,r=this.b,q=r.a,p=q+b.a-a.a +r=r.b +s=r+b.b-a.b +if(p>0)q-=p +return new A.m(q,s>0?r-s:r)}, +qj(a){return!this.b.k(0,a.b)}} +A.JR.prototype={ +A(a){var s=A.aY(a,null,t.l).w,r=s.a,q=r.a,p=r.b,o=A.bH_(a),n=A.bGY(o,r),m=A.bGZ(A.bqK(new A.L(0,0,0+q,0+p),A.bqJ(s)),n) +return new A.b4(new A.aK(m.a,m.b,q-m.c,p-m.d),A.ni(this.d,s.aOO(m),null),null)}} +A.azk.prototype={ +$1(a){var s +if(!a.gte(a).gix().afV(0,0)){a.gd0(a) +s=!1}else s=!0 +return s}, +$S:201} +A.azl.prototype={ +$1(a){return a.gte(a)}, +$S:462} +A.a10.prototype={ +gc9(a){var s=this.a +if(s==null)return null +s=s.c +s.toString +return s}} +A.K0.prototype={ +a8(){return new A.agq(new A.Hb($.aH()),B.m)}} +A.agq.prototype={ +A(a){return new A.Sh(this.d,this.a.c,null)}, +m(){var s=this.d +s.ok$=$.aH() +s.k4$=0 +this.b0()}} +A.Hb.prototype={} +A.Sh.prototype={} +A.C7.prototype={ +a8(){return new A.Rz(A.mf(null),A.mf(null),B.m)}, +aJs(a,b,c){return this.d.$3(a,b,c)}, +aPj(a,b,c){return this.e.$3(a,b,c)}} +A.Rz.prototype={ +aX(){var s,r=this +r.b9() +s=r.a.c +r.d=s.gaP(s) +s=r.a.c +s.cF() +s=s.ej$ +s.b=!0 +s.a.push(r.gPm()) +r.a1a()}, +a_C(a){var s,r=this,q=r.d +q===$&&A.b() +s=r.aox(a,q) +r.d=s +if(q!==s)r.a1a()}, +b1(a){var s,r,q=this +q.bh(a) +s=a.c +if(s!==q.a.c){r=q.gPm() +s.ee(r) +s=q.a.c +s.cF() +s=s.ej$ +s.b=!0 +s.a.push(r) +r=q.a.c +q.a_C(r.gaP(r))}}, +aox(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}}, +a1a(){var s=this,r=s.d +r===$&&A.b() +switch(r.a){case 0:case 1:s.e.sbP(0,s.a.c) +s.f.sbP(0,B.bV) +break +case 2:case 3:s.e.sbP(0,B.f5) +s.f.sbP(0,new A.k_(s.a.c,new A.bd(A.a([],t.x8),t.jc),0)) +break}}, +m(){this.a.c.ee(this.gPm()) +this.b0()}, +A(a){var s=this.a +return s.aJs(a,this.e,s.aPj(a,this.f,s.f))}} +A.af7.prototype={ +b5(a){var s=new A.ali(this.e,this.f,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){var s +this.ZW(a,b) +s=this.f +b.az=s +if(!s){s=b.ac +if(s!=null)s.$0() +b.ac=null}else if(b.ac==null)b.b_()}} +A.ali.prototype={ +aE(a,b){var s=this +if(s.az)if(s.ac==null)s.ac=a.a.aFe(s.D) +s.oE(a,b)}} +A.rh.prototype={ +sef(a,b){this.w8(0,this.a.Ei(B.ca,B.iw,b))}, +sj(a,b){this.w8(0,b)}, +a83(a,b,c){var s,r,q,p,o=null +if(!this.a.gabu()||!c)return A.dr(o,b,this.a.a) +s=b.cI(B.P3) +r=this.a +q=r.c +r=r.a +p=q.a +q=q.b +return A.dr(A.a([A.dr(o,o,B.c.S(r,0,p)),A.dr(o,s,B.c.S(r,p,q)),A.dr(o,o,B.c.cm(r,q))],t.Ne),b,o)}, +syr(a){var s,r,q,p,o=this +if(!o.abC(a))throw A.c(A.qs("invalid text selection: "+a.l(0))) +s=a.a +r=a.b +if(s===r){q=o.a.c +s=s>=q.a&&r<=q.b}else s=!1 +p=s?o.a.c:B.ca +o.w8(0,o.a.aHl(p,a))}, +abC(a){var s=this.a.a.length +return a.a<=s&&a.b<=s}} +A.Fy.prototype={} +A.kV.prototype={} +A.b4E.prototype={ +j9(a,b){return 0}, +tJ(a){return a>=this.b}, +hK(a,b){var s,r,q,p=this.c,o=this.d +if(p[o].a>b){s=o +o=0}else s=11 +for(r=s-1;o=n)return r.i(s,o) +else if(a<=n)q=o-1 +else p=o+1}return null}, +aG3(){var s,r=this,q=null,p=r.a.z +if(p===B.pI)return q +s=A.a([],t.ZD) +if(p.b&&r.gL4())s.push(new A.fH(new A.aAQ(r),B.uQ,q)) +if(p.a&&r.gKT())s.push(new A.fH(new A.aAR(r),B.uR,q)) +if(p.c&&r.gBf())s.push(new A.fH(new A.aAS(r),B.uS,q)) +if(p.d&&r.gYJ())s.push(new A.fH(new A.aAT(r),B.uT,q)) +return s}, +as5(){var s,r,q,p,o,n,m,l=this,k=l.a.c.a.b,j=l.gai().bm.f.adN(),i=l.a.c.a.a +if(j!==i||!k.gdf()||k.a===k.b)return new A.ahs(l.gai().bm.gf3(),l.gai().bm.gf3()) +s=k.a +r=k.b +q=B.c.S(i,s,r) +p=q.length===0 +o=p?B.c1:new A.fq(q) +o=o.gO(o) +n=l.gai().C0(new A.dl(s,s+o.length)) +s=p?B.c1:new A.fq(q) +s=s.gX(s) +m=l.gai().C0(new A.dl(r-s.length,r)) +s=n==null?null:n.d-n.b +if(s==null)s=l.gai().bm.gf3() +r=m==null?null:m.d-m.b +return new A.ahs(s,r==null?l.gai().bm.gf3():r)}, +gaGR(){var s,r,q,p,o=this +if(o.gai().Ax!=null){s=o.gai().Ax +s.toString +return new A.Px(s,null)}r=o.as5() +q=o.a.c.a.b +p=o.gai().O_(q) +return A.bN8(r.b,o.gai(),p,r.a)}, +gaGS(){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null,f=h.aG3() +if(f==null){f=h.x.ay +s=h.gKT()?new A.aAU(h):g +r=h.gL4()?new A.aAV(h):g +q=h.gBf()?new A.aAW(h):g +p=h.gYJ()?new A.aAX(h):g +o=h.gaMn()?new A.aAY(h):g +n=h.gag4()?new A.aAZ(h):g +m=h.gagD()?new A.aB_(h):g +l=h.gabS()?new A.aB0(h):g +k=t.ZD +j=A.a([],k) +i=q!=null +if(!i||f!==B.mt){f=A.a([],k) +if(r!=null)f.push(new A.fH(r,B.uQ,g)) +if(s!=null)f.push(new A.fH(s,B.uR,g)) +if(i)f.push(new A.fH(q,B.uS,g)) +if(p!=null)f.push(new A.fH(p,B.uT,g)) +if(o!=null)f.push(new A.fH(o,B.a0i,g)) +if(n!=null)f.push(new A.fH(n,B.a0j,g)) +if(m!=null)f.push(new A.fH(m,B.a0k,g)) +B.b.I(j,f)}if(l!=null)j.push(new A.fH(l,B.a0l,g)) +f=j}return f}, +aX(){var s=this +s.ake() +s.x.P(0,s.ga3x()) +s.a.c.P(0,s.gIh()) +s.a.d.P(0,s.gR6()) +s.giY().P(0,s.gaxX()) +s.r.sj(0,s.a.as) +s.cy=A.bHv(s.a.de)}, +ca(){var s,r,q,p,o=this +o.e8() +s=o.c +s.toString +s=A.d9(s,B.q7) +s=s==null?null:s.ay +r=o.a +o.db=s===!0?r.CW.cI(B.ix):r.CW +o.c.aj(t.BY) +if(!o.CW&&o.a.ok){o.CW=!0 +$.cB.y2$.push(new A.aB2(o))}s=o.c +s.toString +q=A.ab2(s) +if(o.fx!==q){o.fx=q +if(o.gJA())o.Dy() +else if(!o.fx&&o.d!=null)o.a5u()}if(A.c3()!==B.b1&&A.c3()!==B.bO)return +s=o.c +s.toString +s=A.aY(s,B.PD,t.l).w +p=s.gBd(s) +s=o.fr +if(s==null){o.fr=p +return}if(p!==s){o.fr=p +if(A.c3()===B.b1)o.vt(!1) +if(A.c3()===B.bO)o.kv()}}, +b1(a){var s,r,q,p,o=this +o.bh(a) +s=a.c +if(o.a.c!==s){r=o.gIh() +s.H(0,r) +o.a.c.P(0,r) +o.Ta()}if(!o.a.c.a.b.k(0,s.a.b)){s=o.Q +if(s!=null)s.bZ(0,o.a.c.a)}s=o.Q +if(s!=null)s.saaO(o.a.Q) +s=o.a +s.b3!=a.b3 +r=a.d +if(s.d!==r){s=o.gR6() +r.H(0,s) +o.a.d.P(0,s) +o.y6()}s=o.a +s.toString +if(a.x&&s.d.gdk())$.cB.y2$.push(new A.aB4(o)) +s=o.gm7() +if(s){s=o.a +if(a.x!==s.x){o.z.toString +s=s.b3 +s=(s==null?o:s).gu5() +$.dC().a6r(s)}}if(o.gm7()){s=o.a +if(a.f!==s.f){o.z.toString +s=s.b3 +s=(s==null?o:s).gu5() +$.dC().a6r(s)}}if(!o.a.CW.k(0,a.CW)){s=o.c +s.toString +s=A.d9(s,B.q7) +s=s==null?null:s.ay +r=o.a +o.db=s===!0?r.CW.cI(B.ix):r.CW +if(o.gm7()){s=o.z +s.toString +r=o.db +q=o.gDC() +s.Op(r.d,r.r,r.w,o.a.db,q)}}if(o.a.as!==a.as)o.SL() +s=o.a.p2 +if(t.qY.b(s))p=o.gBf() +else{s=s==null&&null +p=s===!0}if(o.a.an&&o.gBf()&&p)A.cR(null,t.H)}, +m(){var s=this,r=s.at +if(r!=null)r.m() +s.a.c.H(0,s.gIh()) +r=s.dy +if(r!=null)r.m() +s.dy=null +s.a0n() +r=s.d +if(r!=null)r.aI(0) +s.d=null +r=s.e +if(r!=null)r.m() +s.e=null +r=s.Q +if(r!=null)r.m() +s.Q=null +s.a.d.H(0,s.gR6()) +B.b.E($.ap.bd$,s) +r=s.x +r.H(0,s.ga3x()) +r.m() +r=s.r +r.ok$=$.aH() +r.k4$=0 +$.ap.Y$.f.H(0,s.gDF()) +s.akf()}, +aQc(a){var s,r,q,p,o,n,m=this,l=m.a.c.a +if(a.a===l.a){s=a.b +r=s.a +q=l.b +p=q.a +s=r===s.b===(p===q.b)&&r===p&&s.e!==q.e}else s=!1 +if(s)a=a.mE(a.b.aH1(l.b.e)) +l=m.a +if(l.x)a=l.c.a.mE(a.b) +m.fy=a +if(a.k(0,m.a.c.a))return +l=a.a +s=m.a.c.a +if(l===s.a&&a.c.k(0,s.c)){l=m.z==null?null:$.dC().r +if(l===!0)o=B.lm +else o=m.k1!=null?B.id:B.aM +m.IH(a.b,o)}else{if(l!==m.a.c.a.a)m.vt(!1) +s=m.ry=null +if(m.gm7()){r=m.a +if(r.f){$.ap.toString +$.bO() +r=r.c.a +l=l.length===r.a.length+1 +n=l}else n=!1}else n=!1 +m.p3=n?3:0 +m.p4=n?m.a.c.a.b.c:s +m.arK(a,B.aM)}if(m.gJA()&&m.d!=null){m.JI(!1) +m.Dy()}m.Js(!0)}, +aNY(a){var s=this +switch(a.a){case 12:if(s.a.k2===1)s.Qw(a,!0) +break +case 2:case 3:case 6:case 7:case 4:case 5:s.Qw(a,!0) +break +case 8:case 11:case 9:case 0:case 10:case 1:s.Qw(a,!1) +break}}, +aQe(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=null,d=f.dy +if(d==null){d=A.bx(B.A,e,e,0,e,1,e,f) +d.cF() +s=d.dw$ +s.b=!0 +s.a.push(f.gay4()) +f.dy=d}s=a.b +switch(s.a){case 0:r=d.r +if(r!=null&&r.a!=null){d.h8(0) +f.a3A()}f.JI(!1) +f.gqn().sj(0,1) +f.k1=a.a +q=new A.bW(f.gai().cq.c,f.gai().cq.e) +d=f.gai().ps(q) +f.go=d +f.k2=d.gbM().a4(0,new A.m(0,f.gai().bm.gf3()/2)) +f.id=q +d=f.gai() +r=f.k2 +r.toString +p=f.id +p.toString +d.Ol(s,r,p) +break +case 1:d=f.k1 +d.toString +o=a.a.a4(0,d) +n=f.go.gbM().U(0,o).a4(0,new A.m(0,f.gai().bm.gf3()/2)) +d=f.gai() +r=d.bm +p=r.b.a.a +m=p.gdC(p)-r.gf3()+5 +l=r.b.b+4 +r=d.jS +k=r!=null?n.a4(0,r):B.i +if(d.pS&&k.a>0){d.h_=new A.m(n.a- -4,d.h_.b) +d.pS=!1}else if(d.Ay&&k.a<0){d.h_=new A.m(n.a-l,d.h_.b) +d.Ay=!1}if(d.Az&&k.b>0){d.h_=new A.m(d.h_.a,n.b- -4) +d.Az=!1}else if(d.hU&&k.b<0){d.h_=new A.m(d.h_.a,n.b-m) +d.hU=!1}r=d.h_ +j=n.a-r.a +i=n.b-r.b +h=Math.min(Math.max(j,-4),l) +g=Math.min(Math.max(i,-4),m) +if(j<-4&&k.a<0)d.pS=!0 +else if(j>l&&k.a>0)d.Ay=!0 +if(i<-4&&k.b<0)d.Az=!0 +else if(i>m&&k.b>0)d.hU=!0 +d.jS=n +f.k2=new A.m(h,g) +d=f.gai() +r=f.gai() +p=f.k2 +p.toString +p=p.U(0,new A.m(0,f.gai().bm.gf3()/2)) +f.id=d.iR(A.cL(r.cl(0,e),p)) +p=f.gai() +r=f.k2 +r.toString +d=f.id +d.toString +p.Ol(s,r,d) +break +case 2:f.Dy() +if(f.id!=null&&f.k2!=null){f.dy.sj(0,0) +d=f.dy +d.z=B.aN +d.kh(1,B.dC,B.n2)}break}}, +a3A(){var s,r,q,p,o=this,n=o.gai(),m=o.id +m.toString +s=n.ps(m).gTY().a4(0,new A.m(0,o.gai().bm.gf3()/2)) +n=o.dy +if(n.gaP(n)===B.a9){n=o.gai() +m=o.id +m.toString +n.Ol(B.nn,s,m) +n=o.gai().cq +if(n.a===n.b){n=o.id +n.toString +o.IH(A.Fs(n),B.id)}o.k2=o.k1=o.id=o.go=null}else{n=o.dy.x +n===$&&A.b() +m=o.k2 +r=A.ag(m.a,s.a,n) +r.toString +m=A.ag(m.b,s.b,n) +m.toString +q=o.gai() +p=o.id +p.toString +q.YS(B.nm,new A.m(r,m),p,n)}}, +Qw(a,b){var s,r,q,p,o,n,m=this,l=m.a,k=l.RG +if(k!=null)try{k.$0()}catch(n){s=A.ak(n) +r=A.aJ(n) +l=A.c0("while calling onEditingComplete for "+a.l(0)) +A.e6(new A.cg(s,r,"widgets",l,null,!1))}else{l=l.c +l.w8(0,l.a.a8E(B.ca)) +if(b){switch(a.a){case 0:case 1:case 2:case 3:case 4:case 5:case 8:case 9:case 10:case 11:case 12:m.a.d.pq() +break +case 6:l=m.a.d +k=l.e +k.toString +A.xj(k).De(l,!0) +break +case 7:l=m.a.d +k=l.e +k.toString +A.xj(k).De(l,!1) +break}b=!0}}l=m.a +q=l.rx +if(q==null)return +try{q.$1(l.c.a.a)}catch(s){p=A.ak(s) +o=A.aJ(s) +l=A.c0("while calling onSubmitted for "+a.l(0)) +A.e6(new A.cg(p,o,"widgets",l,null,!1))}if(b)m.aBc()}, +Ta(){var s,r=this +if(r.k3>0||!r.gm7())return +s=r.a.c.a +if(s.k(0,r.fy))return +r.z.toString +$.dC().Jz(s) +r.fy=s}, +a1T(a){var s,r,q,p,o,n,m,l,k=this +if(!B.b.gaV(k.giY().f).r.gwN()){s=B.b.gaV(k.giY().f).at +s.toString +return new A.p9(s,a)}s=k.gai() +r=s.gq(s) +if(k.a.k2===1){s=a.c +q=a.a +p=r.a +o=s-q>=p?p/2-a.gbM().a:A.V(0,s-p,q) +n=B.fH}else{m=A.aQi(a.gbM(),Math.max(a.d-a.b,k.gai().bm.gf3()),a.c-a.a) +s=m.d +q=m.b +p=r.b +o=s-q>=p?p/2-m.gbM().b:A.V(0,s-p,q) +n=B.cw}s=B.b.gaV(k.giY().f).at +s.toString +q=B.b.gaV(k.giY().f).z +q.toString +p=B.b.gaV(k.giY().f).Q +p.toString +l=A.V(o+s,q,p) +p=B.b.gaV(k.giY().f).at +p.toString +return new A.p9(l,a.dq(n.av(0,p-l)))}, +Jc(){var s,r,q,p,o,n=this +if(!n.gm7()){s=n.a +r=s.c.a +s=s.b3;(s==null?n:s).gu5() +s=n.a.b3 +s=(s==null?n:s).gu5() +q=A.buC(n) +$.dC().Pq(q,s) +s=q +n.z=s +n.a6V() +n.a4B() +s=n.z +s.toString +p=n.db +p===$&&A.b() +o=n.gDC() +s.Op(p.d,p.r,p.w,n.a.db,o) +o=$.dC() +o.Jz(r) +o.SI() +s=n.a.b3 +if((s==null?n:s).gu5().e.a){n.z.toString +o.aAt()}n.fy=r}else{n.z.toString +$.dC().SI()}}, +a0n(){var s,r,q=this +if(q.gm7()){s=q.z +s.toString +r=$.dC() +if(r.d===s)r.a0j() +q.R8=q.fy=q.z=null +q.ad9()}}, +aBc(){if(this.k4)return +this.k4=!0 +A.fE(this.gaAA())}, +aAB(){var s,r,q,p,o,n=this +n.k4=!1 +if(n.gm7())s=!1 +else s=!0 +if(s)return +s=n.z +s.toString +r=$.dC() +if(r.d===s)r.a0j() +n.fy=n.z=null +s=n.a.b3;(s==null?n:s).gu5() +s=n.a.b3 +s=(s==null?n:s).gu5() +q=A.buC(n) +r.Pq(q,s) +p=q +n.z=p +r.SI() +s=n.db +s===$&&A.b() +o=n.gDC() +p.Op(s.d,s.r,s.w,n.a.db,o) +r.Jz(n.a.c.a) +n.fy=n.a.c.a}, +aDT(){this.ok=!1 +$.ap.Y$.f.H(0,this.gDF())}, +Xo(){var s=this +if(s.a.d.gdk())s.Jc() +else{s.ok=!0 +$.ap.Y$.f.P(0,s.gDF()) +s.a.d.lG()}}, +a6E(){var s,r,q=this +if(q.Q!=null){s=q.a.d.gdk() +r=q.Q +if(s){r.toString +r.bZ(0,q.a.c.a)}else{r.m() +q.Q=null}}}, +axY(){var s=this.Q +if(s!=null){s.wE() +s=s.e +s===$&&A.b() +s.el()}this.R8=null}, +Q6(){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=h.a,f=g.fo,e=h.c +e.toString +s=g.c.a +r=h.gai() +q=h.a +p=q.p2 +o=q.ao +n=q.x1 +q=q.he +m=$.aH() +l=t.G +k=new A.bF(!1,m,l) +j=new A.bF(!1,m,l) +l=new A.bF(!1,m,l) +i=new A.aaX(e,r,p,h,new A.aAt(h,f),s,k,j,l) +s=i.ga6Y() +r.de.P(0,s) +r.he.P(0,s) +i.Tc() +s=i.gasE() +r=r.Ax +i.e!==$&&A.ck() +i.e=new A.a93(e,new A.bF(B.ajN,m,t.kr),new A.y5(),q,B.iv,0,k,i.gauP(),i.gauR(),s,B.iv,0,j,i.gauJ(),i.gauL(),s,l,B.afh,g,h.ax,h.ay,h.ch,p,h,o,n,h.x,r,new A.Zt(),new A.Zt()) +return i}, +IH(a,b){var s,r,q,p,o,n=this +if(!n.a.c.abC(a))return +n.a.c.syr(a) +switch(b){case null:case void 0:case B.NK:case B.aI:case B.id:case B.bH:case B.lm:case B.b9:case B.b0:n.Xo() +break +case B.aM:if(n.a.d.gdk())n.Xo() +break}q=n.a +q.toString +p=n.Q +if(p==null)n.Q=n.Q6() +else p.bZ(0,q.c.a) +q=n.Q +q.toString +q.saaO(n.a.Q) +q=n.Q +q.wE() +q=q.e +q===$&&A.b() +q.agM() +try{n.a.to.$2(a,b)}catch(o){s=A.ak(o) +r=A.aJ(o) +q=A.c0("while calling onSelectionChanged for "+A.i(b)) +A.e6(new A.cg(s,r,"widgets",q,null,!1))}if(n.gJA()&&n.d!=null){n.JI(!1) +n.Dy()}}, +Js(a){if(this.p1)return +this.p1=!0 +$.cB.y2$.push(new A.aAB(this,a))}, +UG(){var s,r=this,q=r.c +if(q==null)return +s=A.PT(q) +s.toString +q=r.p2 +q===$&&A.b() +if(q!==s.w.d){$.cB.y2$.push(new A.aB3(r)) +if(r.p2>>24&255)/255,s) +s=q.gai() +p=q.a.go +p=A.K(B.e.bg(255*r),p.gj(p)>>>16&255,p.gj(p)>>>8&255,p.gj(p)&255) +s.gia().sTW(p) +if(q.a.as){p=q.gqn().x +p===$&&A.b() +p=p>0}else p=!1 +q.r.sj(0,p)}, +gJA(){var s,r +if(this.a.d.gdk()){s=this.a +r=s.c.a.b +s=r.a===r.b&&s.as&&this.fx}else s=!1 +return s}, +Dy(){var s,r=this +if(!r.a.as)return +if(!r.fx)return +s=r.d +if(s!=null)s.aI(0) +r.gqn().sj(0,1) +if(r.a.b6)r.gqn().TD(r.ga2S()).a.a.fu(r.ga3z()) +else r.d=A.buK(B.bD,new A.aAF(r))}, +RX(){var s,r=this,q=r.p3 +if(q>0){$.ap.toString +$.bO();--q +r.p3=q +if(q===0)r.ad(new A.aAy())}if(r.a.b6){q=r.d +if(q!=null)q.aI(0) +r.d=A.d0(B.B,new A.aAz(r))}else{q=r.d +q=q==null?null:q.b!=null +if(q!==!0&&r.fx)r.d=A.buK(B.bD,new A.aAA(r)) +q=r.gqn() +s=r.gqn().x +s===$&&A.b() +q.sj(0,s===0?1:0)}}, +JI(a){var s,r=this +r.gqn().sj(0,0) +s=r.d +if(s!=null)s.aI(0) +r.d=null +if(a)r.p3=0}, +a5u(){return this.JI(!0)}, +SL(){var s=this +if(!s.gJA())s.a5u() +else if(s.d==null)s.Dy()}, +a0U(){var s,r,q,p=this +if(p.a.d.gdk()&&!p.a.c.a.b.gdf()){s=p.gIh() +p.a.c.H(0,s) +r=p.a.c +q=p.a_x() +q.toString +r.syr(q) +p.a.c.P(0,s)}p.Ta() +p.SL() +p.a6E() +p.ad(new A.aAu()) +p.gTi().ahc()}, +atp(){var s,r,q,p=this +if(p.a.d.gdk()&&p.a.d.aGM())p.Jc() +else if(!p.a.d.gdk()){p.a0n() +s=p.a.c +s.w8(0,s.a.a8E(B.ca))}p.SL() +p.a6E() +s=p.a.d.gdk() +r=$.ap +if(s){r.bd$.push(p) +s=p.c +s.toString +p.p2=A.PT(s).w.d +if(!p.a.x)p.Js(!0) +q=p.a_x() +if(q!=null)p.IH(q,null)}else{B.b.E(r.bd$,p) +p.ad(new A.aAw(p))}p.y6()}, +a_x(){var s,r=this.a +if(r.an&&r.k2===1&&!this.ok)s=A.dq(B.t,0,r.c.a.a.length,!1) +else s=!r.c.a.b.gdf()?A.rj(B.t,this.a.c.a.a.length):null +return s}, +apj(a){if(this.gai().y==null||!this.gm7())return +this.a6V()}, +a6V(){var s=this.gai(),r=s.gq(s),q=this.gai().cl(0,null) +s=this.z +if(!r.k(0,s.a)||!q.k(0,s.b)){s.a=r +s.b=q +$.dC().aBS(r,q)}}, +a4C(a){var s,r,q,p=this +if(!p.gm7())return +p.aEv() +s=p.a.c.a.c +r=p.gai().C0(s) +if(r==null){q=s.gdf()?s.a:0 +r=p.gai().ps(new A.bW(q,B.t))}p.z.agm(r) +p.aE4() +$.cB.y2$.push(p.gaBb())}, +a4B(){return this.a4C(null)}, +a6Q(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,a5=null +a4.a.toString +s=A.c3() +if(s!==B.b1)return +if(B.b.gaV(a4.giY().f).k4!==B.fW)return +s=a4.gai().bm.f +s.toString +r=new A.eT(a4.a.fy,a5) +q=A.bM("#0#1",new A.aAG(r)) +p=A.bM("#0#4",new A.aAH(q)) +o=A.bM("#0#2",new A.aAI(r)) +$label0$0:{if(t.tp.b(q.T())){n=q.T() +m=!0}else{n=a5 +m=!1}if(m){m=n +break $label0$0}if(p.T())if(typeof o.T()=="number"){l=o.T() +m=!0}else{l=a5 +m=!1}else{l=a5 +m=!1}if(m){m=new A.ki(l) +break $label0$0}if(p.T()&&o.T()==null){m=a4.c +m.toString +m=A.d9(m,B.bz) +m=m==null?a5:m.gdU() +if(m==null)m=B.aw +break $label0$0}m=a5}k=a4.a.db +j=a4.gDC() +a4.a.toString +i=a4.c +i.toString +i=A.bjX(i) +h=a4.a.grN() +g=a4.rx +f=a4.gai() +e=new A.bbD(k,j,m,i,a5,h,g,f.gq(f),s) +if(a6)d=B.c_ +else{m=a4.R8 +m=m==null?a5:m.U8(e) +d=m==null?B.c_:m}if(d.a<3)return +a4.R8=e +c=A.a([],t.u1) +b=s.Gx(!1) +a=new A.F5(b,0,0) +for(a0=0;a.HZ(1,a.c);a0=a1){s=a.d +a1=a0+(s==null?a.d=B.c.S(b,a.b,a.c):s).length +s=a4.gai() +m=a01){m=n.a.c.a.b +m=m.a!==m.b||m.c===0}else m=!0 +if(m)return +m=n.a.c.a +s=m.a +m=m.b.c +r=A.aYl(s,m) +q=r.b +if(m===s.length)r.a4u(2,q) +else{r.a4u(1,q) +r.HZ(1,r.b)}m=r.a +q=B.c.S(m,0,r.b) +p=new A.fq(r.gG(r)) +p=p.gX(p) +o=new A.fq(r.gG(r)) +n.ka(new A.eQ(q+p+o.gO(o)+B.c.cm(m,r.c),A.rj(B.t,r.b+r.gG(r).length),B.ca),B.aM)}, +a4l(a){var s=this.a.c.a,r=a.a.adj(a.c,a.b) +this.ka(r,a.d) +if(r.k(0,s))this.a0U()}, +aBk(a){if(a.a)this.mn(new A.bW(this.a.c.a.a.length,B.t)) +else this.mn(B.iu)}, +aBh(a){var s,r,q,p,o,n,m,l=this +if(a.b!==B.ic)return +s=B.b.gaV(l.giY().f) +if(l.a.k2===1){r=l.giY() +q=s.Q +q.toString +r.fg(q) +return}r=s.Q +r.toString +if(r===0){r=s.z +r.toString +r=r===0}else r=!1 +if(r)return +p=t._N.a(l.as.gR()) +p.toString +o=A.aSY(p,a) +r=s.at +r.toString +q=s.z +q.toString +n=s.Q +n.toString +m=A.V(r+o,q,n) +if(m===r)return +l.giY().fg(m)}, +arb(a){var s,r,q,p,o,n,m,l,k,j,i=this +if(i.a.k2===1)return +s=i.gai().ps(i.a.c.a.b.gez()) +r=t._N.a(i.as.gR()) +r.toString +q=A.aSY(r,new A.hQ(a.gLN(a)?B.ak:B.aj,B.ic)) +p=B.b.gaV(i.giY().f) +if(a.gLN(a)){o=i.a.c.a +if(o.b.d>=o.a.length)return +o=s.b+q +n=p.Q +n.toString +m=i.gai() +m=m.gq(m) +l=p.at +l.toString +k=o+l>=n+m.b?new A.bW(i.a.c.a.a.length,B.t):i.gai().iR(A.cL(i.gai().cl(0,null),new A.m(s.a,o))) +j=i.a.c.a.b.Ug(k.a)}else{if(i.a.c.a.b.d<=0)return +o=s.b+q +n=p.at +n.toString +k=o+n<=0?B.iu:i.gai().iR(A.cL(i.gai().cl(0,null),new A.m(s.a,o))) +j=i.a.c.a.b.Ug(k.a)}i.mn(j.gez()) +i.ka(i.a.c.a.mE(j),B.aM)}, +aEr(a){var s=a.b +this.mn(s.gez()) +this.ka(a.a.mE(s),a.c)}, +gTi(){var s,r=this,q=r.xr +if(q===$){s=A.a([],t.h) +r.xr!==$&&A.aq() +q=r.xr=new A.V8(r,new A.bd(s,t.o),t.Wp)}return q}, +avE(a){var s=this.Q +if(s==null)s=null +else{s=s.e +s===$&&A.b() +s=s.gNE()}if(s===!0){this.vt(!1) +return null}s=this.c +s.toString +return A.w9(s,a,t.xm)}, +aq4(a){switch(A.c3().a){case 0:case 2:case 1:switch(a.gdR(a).a){case 0:this.a.d.pq() +break +case 1:case 2:case 3:case 5:this.a.d.pq() +break +case 4:throw A.c(A.d1("Unexpected pointer down event for trackpad"))}break +case 3:case 4:case 5:this.a.d.pq() +break}}, +gan5(){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=this,b1=b0.y1 +if(b1===$){s=t.h +r=A.a([],s) +q=t.o +b1=b0.x1 +if(b1===$){p=A.a([],s) +b0.x1!==$&&A.aq() +b1=b0.x1=new A.cz(b0.gaAo(),new A.bd(p,q),t.Tx)}o=b0.x2 +if(o===$){p=A.a([],s) +b0.x2!==$&&A.aq() +o=b0.x2=new A.cz(b0.gaEq(),new A.bd(p,q),t.Vg)}p=A.a([],s) +n=A.a([],s) +m=b0.gaoF() +l=b0.gaxf() +k=A.a([],s) +j=b0.c +j.toString +j=new A.ry(b0,m,l,new A.bd(k,q),t.rZ).fI(j) +k=b0.gaxB() +i=A.a([],s) +h=b0.c +h.toString +h=new A.ry(b0,k,l,new A.bd(i,q),t.UB).fI(h) +i=b0.gawt() +g=b0.gaxi() +f=A.a([],s) +e=b0.c +e.toString +e=new A.ry(b0,i,g,new A.bd(f,q),t.Fb).fI(e) +m=A.vP(b0,m,l,!1,!1,!1,t._w) +f=b0.c +f.toString +f=m.fI(f) +m=A.a([],s) +d=b0.c +d.toString +d=new A.cz(b0.gara(),new A.bd(m,q),t.vr).fI(d) +m=A.vP(b0,k,l,!1,!0,!1,t.P9) +c=b0.c +c.toString +c=m.fI(c) +m=b0.gaz1() +b=A.vP(b0,m,l,!1,!0,!1,t.cP) +a=b0.c +a.toString +a=b.fI(a) +b=A.vP(b0,i,g,!1,!0,!1,t.OO) +a0=b0.c +a0.toString +a0=b.fI(a0) +b=b0.gTi() +a1=b0.c +a1.toString +a1=b.fI(a1) +b=b0.gTi() +a2=b0.c +a2.toString +a2=b.fI(a2) +m=A.vP(b0,m,l,!1,!0,!1,t.b7) +b=b0.c +b.toString +b=m.fI(b) +m=b0.gaqu() +a3=A.vP(b0,m,l,!1,!0,!1,t.HH) +a4=b0.c +a4.toString +a4=a3.fI(a4) +l=A.vP(b0,k,l,!1,!0,!1,t.eI) +k=b0.c +k.toString +k=l.fI(k) +l=A.a([],s) +a3=b0.c +a3.toString +a3=new A.cz(b0.gaBj(),new A.bd(l,q),t.sl).fI(a3) +l=A.a([],s) +i=A.vP(b0,i,g,!1,!0,!0,t.oB) +a5=b0.c +a5.toString +a5=i.fI(a5) +g=A.vP(b0,m,g,!0,!0,!0,t.bh) +m=b0.c +m.toString +m=g.fI(m) +g=A.a([],s) +i=b0.c +i.toString +i=new A.amk(b0,new A.bd(g,q)).fI(i) +g=A.a([],s) +a6=b0.c +a6.toString +a6=new A.afr(b0,new A.bd(g,q)).fI(a6) +g=A.a([],s) +a7=b0.c +a7.toString +a7=new A.cz(new A.aAs(b0),new A.bd(g,q),t.gv).fI(a7) +a8=b0.to +if(a8===$){s=A.a([],s) +b0.to!==$&&A.aq() +a8=b0.to=new A.cz(b0.gaDL(),new A.bd(s,q),t.j5)}s=b0.c +s.toString +a9=A.am([B.ayK,new A.JS(!1,new A.bd(r,q)),B.ayl,b1,B.ayz,o,B.Pi,new A.JQ(!0,new A.bd(p,q)),B.pK,new A.cz(b0.gavD(),new A.bd(n,q),t.OX),B.axU,j,B.ayP,h,B.axV,e,B.axN,f,B.axZ,d,B.axK,c,B.axP,a,B.axM,a0,B.ayG,a1,B.ayH,a2,B.ayN,b,B.axL,a4,B.ayL,k,B.axO,a3,B.pN,new A.cz(b0.gaBg(),new A.bd(l,q),t.fn),B.ayM,a5,B.ayI,m,B.ayo,i,B.axS,a6,B.ayf,a7,B.ayt,a8.fI(s)],t.n,t.od) +b0.y1!==$&&A.aq() +b0.y1=a9 +b1=a9}return b1}, +A(a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1=this,a2=null +a1.OF(a3) +s=a1.a +r=s.p2 +q=new A.eT(s.fy,a2) +p=A.bM("#0#1",new A.aAK(q)) +o=A.bM("#0#4",new A.aAL(p)) +n=A.bM("#0#2",new A.aAM(q)) +$label0$0:{if(t.tp.b(p.T())){m=p.T() +s=!0}else{m=a2 +s=!1}if(s){s=m +break $label0$0}if(o.T())if(typeof n.T()=="number"){l=n.T() +s=!0}else{l=a2 +s=!1}else{l=a2 +s=!1}if(s){s=new A.ki(l) +break $label0$0}if(o.T()&&n.T()==null){s=A.d9(a3,B.bz) +s=s==null?a2:s.gdU() +if(s==null)s=B.aw +break $label0$0}s=a2}k=a1.gm7() +j=a1.a +j=j.y1 +if(j==null)j=B.pw +i=a1.gan5() +h=a1.a +g=h.c +f=h.d +e=h.cx +h=h.k2!==1?B.ak:B.f2 +d=a1.giY() +c=a1.a +b=c.aZ +a=c.ao +c=c.eM +a0=A.uP(a3).a8T(!1,a1.a.k2!==1) +return new A.af7(a1.gapi(),k,A.aaR(A.nj(A.pY(i,new A.FC(g,new A.aAN(a1),new A.aAO(a1),f,e,A.tJ(!1,a2,A.aTa(h,B.C,d,a,!0,a1.as,b,c,a0,a2,new A.aAP(a1,r,s)),a2,a2,a2,f,!1,a2,a2,a2,a2,a2,a2),a2,t.pm)),j,a2,a2,a2,a2),a2,a1.gaq3()),a2)}, +a82(){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=i.a +if(g.f){s=g.c.a.a +s=B.c.av(g.e,s.length) +$.ap.toString +$.bO() +r=B.aqo.p(0,A.c3()) +if(r){q=i.p3>0?i.p4:h +if(q!=null&&q>=0&&q=0&&p<=g.c.a.a.length){o=A.a([],t.s6) +g=i.a +n=g.c.a.a.length-i.rx +if(g.k2!==1){o.push(B.aCH) +g=i.gai() +o.push(new A.o6(new A.U(g.gq(g).a,0),B.a1,B.e3,h,h))}else o.push(B.aCI) +g=i.db +g===$&&A.b() +p=A.a([A.dr(h,h,B.c.S(i.a.c.a.a,0,n))],t.VO) +B.b.I(p,o) +p.push(A.dr(h,h,B.c.cm(i.a.c.a.a,n))) +return A.dr(p,g,h)}m=!g.x&&g.d.gdk() +if(i.ga5l()){l=!i.a.c.a.gabu()||!m +g=i.a.c.a +p=i.db +p===$&&A.b() +k=i.cy +k===$&&A.b() +k=k.c +k.toString +j=i.dx +j.toString +return A.bTx(g,l,p,k,j)}g=i.a.c +p=i.c +p.toString +k=i.db +k===$&&A.b() +return g.a83(p,k,m)}, +$iaP:1} +A.aAx.prototype={ +$0(){}, +$S:0} +A.aB1.prototype={ +$1(a){var s=this.a +if(s.c!=null)s.mn(s.a.c.a.b.gez())}, +$S:5} +A.aB6.prototype={ +$1(a){var s=this.a +if(s.c!=null)s.mn(s.a.c.a.b.gez())}, +$S:5} +A.aAQ.prototype={ +$0(){this.a.L5(B.b0)}, +$S:0} +A.aAR.prototype={ +$0(){this.a.KU(B.b0)}, +$S:0} +A.aAS.prototype={ +$0(){this.a.xR(B.b0)}, +$S:0} +A.aAT.prototype={ +$0(){this.a.Oi(B.b0)}, +$S:0} +A.aAU.prototype={ +$0(){return this.a.KU(B.b0)}, +$S:0} +A.aAV.prototype={ +$0(){return this.a.L5(B.b0)}, +$S:0} +A.aAW.prototype={ +$0(){return this.a.xR(B.b0)}, +$S:0} +A.aAX.prototype={ +$0(){return this.a.Oi(B.b0)}, +$S:0} +A.aAY.prototype={ +$0(){return this.a.Mq(B.b0)}, +$S:0} +A.aAZ.prototype={ +$0(){return this.a.Hl(B.b0)}, +$S:0} +A.aB_.prototype={ +$0(){return this.a.Hu(B.b0)}, +$S:0} +A.aB0.prototype={ +$0(){return this.a.aCw(B.b0)}, +$S:0} +A.aB2.prototype={ +$1(a){var s,r=this.a +if(r.c!=null&&r.gai().id!=null){r.ok=!0 +$.ap.Y$.f.P(0,r.gDF()) +s=r.c +s.toString +A.a22(s).a7O(0,r.a.d)}}, +$S:5} +A.aB4.prototype={ +$1(a){this.a.Jc()}, +$S:5} +A.aAt.prototype={ +$1(a){return this.b.$2(a,this.a)}, +$S:13} +A.aAB.prototype={ +$1(a){var s,r,q,p,o,n,m,l,k,j,i,h=this.a +h.p1=!1 +s=$.ap.Y$.z.i(0,h.w) +s=s==null?null:s.ga7() +t.CA.a(s) +if(s!=null){r=s.cq.gdf() +r=!r||h.giY().f.length===0}else r=!0 +if(r)return +q=s.bm.gf3() +p=h.a.a6.d +r=h.Q +if((r==null?null:r.c)!=null){o=r.c.BU(q).b +n=Math.max(o,48) +p=Math.max(o/2-h.Q.c.BT(B.iv,q).b+n/2,p)}m=h.a.a6.Ef(p) +l=h.a1T(s.ps(s.cq.gez())) +k=h.a.c.a.b +if(k.a===k.b)j=l.b +else{i=s.rv(k) +if(i.length===0)j=l.b +else if(k.c>>24&255)/255,n) +n=b7.a.go +n=A.K(B.e.bg(255*m),n.gj(n)>>>16&255,n.gj(n)>>>8&255,n.gj(n)&255) +p=b7.a +l=p.k1 +k=p.y +j=p.x +p=p.d.gdk() +i=b7.a +h=i.k2 +g=i.k3 +i=i.grN() +f=b7.Q +if(f==null)f=b6 +else{f=f.e +f===$&&A.b() +f=$.qb===f.p1}if(f===!0){b7.cy===$&&A.b() +f=b7.a +e=f.p1 +d=e +e=f +f=d}else{f=b7.a +e=f.p1 +d=e +e=f +f=d}c=this.c +b=b7.gDC() +b7.a.toString +a=A.bjX(c1) +a0=b7.a +a1=a0.w +a2=a0.e +a3=a0.f +a4=a0.bL +a5=a0.co +a6=a0.aK +a7=a0.c_ +if(a7==null)a7=B.i +a8=a0.ct +a9=a0.B +b0=a0.cp +if(a0.an)a0=!a0.x||!a3 +else a0=!1 +b1=b7.c +b1.toString +b1=A.aY(b1,B.dh,t.l).w +b2=b7.ry +b3=b7.a +b4=b3.id +b3=b3.bd +b5=A.bvg(q,c) +return new A.wB(b7.ax,new A.bu(A.bL(b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b9,c0,b6,b6,b6,b6,b6,b6,b6,b6,b8,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6,b6),!1,!1,!1,!1,new A.TX(new A.RA(q,o,n,b7.ay,b7.ch,l,b7.r,k,j,p,h,g,!1,i,f,c,e.db,b,b6,a2,a3,a,a1,c2,!0,a4,a5,a6,a7,b0,a8,a9,a0,b7,b1.b,b2,b4,b3,b5,r),s,r,new A.aAJ(b7),!0,b6),b6),b6)}, +$S:480} +A.aAJ.prototype={ +$0(){var s=this.a +s.Jc() +s.a6Q(!0)}, +$S:0} +A.RA.prototype={ +b5(a){var s,r=this,q=null,p=r.ax,o=r.cy,n=A.LC(a),m=r.f.b,l=A.bwu(),k=A.bwu(),j=$.aH(),i=t.G,h=A.ay(t.O5) +if(o.k(0,B.aw))o=new A.ki(1) +s=p===1?1:q +o=A.Fr(q,n,s,r.CW,r.e,r.db,r.dx,r.fy,o,r.go) +p=new A.yZ(l,k,!0,r.RG,r.fr,r.fx,r.R8,new A.bF(!0,j,i),new A.bF(!0,j,i),o,r.z,r.at,r.Q,r.as,p,r.ay,!1,m,r.id,r.k2,r.k3,r.p1,r.w,r.x,r.p4,r.to,B.i,h,0,q,q,!1,A.ay(t.T)) +p.b4() +l.sM1(r.cx) +l.sM2(m) +l.sYL(r.p2) +l.sYM(r.p3) +k.sM1(r.ry) +k.sM2(r.rx) +p.gia().sTW(r.r) +p.gia().sa9k(r.k4) +p.gia().sa9j(r.ok) +p.gia().sa7Q(r.y) +p.a6y(q) +p.a6F(q) +p.I(0,q) +return p}, +bb(a,b){var s,r,q=this +b.sef(0,q.e) +b.gia().sTW(q.r) +b.sah8(q.w) +b.saIC(q.x) +b.gia().sa7Q(q.y) +b.sagL(q.z) +b.saJl(q.Q) +b.sXd(0,q.as) +b.sdk(q.at) +b.sB6(q.ax) +b.saMH(q.ay) +b.sV7(!1) +b.srN(q.CW) +s=b.aN +s.sM1(q.cx) +b.sdU(q.cy) +b.sBv(0,q.db) +b.scz(q.dx) +r=A.LC(a) +b.sB3(0,r) +b.syr(q.f.b) +b.sc5(0,q.id) +b.eM=!0 +b.sNy(q.fy) +b.sBw(q.go) +b.saMX(q.fr) +b.saMW(q.fx) +b.saHR(q.k2) +b.saHQ(q.k3) +b.gia().sa9k(q.k4) +b.gia().sa9j(q.ok) +s.sYL(q.p2) +s.sYM(q.p3) +b.saIx(q.p4) +b.fo=q.R8 +b.sAd(0,q.RG) +b.saNQ(q.p1) +s=b.aZ +s.sM1(q.ry) +r=q.to +if(r!==b.hY){b.hY=r +b.b_() +b.bY()}s.sM2(q.rx)}} +A.bbD.prototype={ +U8(a){var s,r,q=this +if(a===q)return B.ds +if(q.a===a.a)if(q.b===a.b){if(q.c.k(0,a.c))s=!B.OY.k(0,B.OY)||!q.f.k(0,a.f)||q.r!==a.r||!q.w.k(0,a.w) +else s=!0 +r=s}else r=!0 +else r=!0 +return r?B.c_:q.x.bO(0,a.x)}} +A.TX.prototype={ +a8(){var s=$.bwd +$.bwd=s+1 +return new A.amc(B.f.l(s),B.m)}, +aQl(){return this.f.$0()}} +A.amc.prototype={ +aX(){var s=this +s.b9() +s.a.toString +$.dC().f.n(0,s.d,s)}, +b1(a){this.bh(a) +this.a.toString}, +m(){$.dC().f.E(0,this.d) +this.b0()}, +gai(){var s=this.a.e +s=$.ap.Y$.z.i(0,s) +s=s==null?null:s.ga7() +return t.CA.a(s)}, +aLB(a){var s,r,q,p,o=this,n=o.gte(o),m=o.gai() +m=m==null?null:m.hC +if(m===!0)return!1 +if(n.k(0,B.W))return!1 +if(!n.G1(a))return!1 +s=n.hh(a) +r=A.aGe() +m=$.ap +m.toString +q=s.gbM() +p=o.c +p.toString +m.Fi(r,q,A.PT(p).a) +return B.b.fa(r.a,new A.bbE(o))}, +gte(a){var s=t.aA.a(this.c.ga7()) +if(s==null||this.c==null||s.y==null)return B.W +return A.jj(s.cl(0,null),new A.L(0,0,0+s.gq(s).a,0+s.gq(s).b))}, +A(a){return this.a.c}, +$ibtV:1} +A.bbE.prototype={ +$1(a){return a.a.k(0,this.a.gai())}, +$S:481} +A.o6.prototype={ +KB(a,b,c){var s=this.a,r=s!=null +if(r)a.Bl(s.Hg(c)) +s=this.x +a.a7q(s.a*c.gNz(),s.b*c.gNz(),this.b) +if(r)a.i2()}} +A.af4.prototype={ +a_P(a){var s=this.a +return(s.charCodeAt(a-1)&64512)===55296&&(s.charCodeAt(a)&64512)===56320}, +iQ(a){var s=this.a.length +if(s===0||a<0)return null +if(a===0)return 0 +if(a>=s)return s +if(s<=1)return a +return this.a_P(a)?a-1:a}, +iS(a){var s=this.a.length +if(s===0||a>=s)return null +if(a<0)return 0 +if(a===s-1)return s +if(s<=1)return a +s=a+1 +return this.a_P(s)?a+2:s}} +A.ry.prototype={ +hj(a,b){var s,r,q,p,o,n=this.e,m=n.a.c.a.b +if(!m.gdf())return null +s=n.a0_() +r=m.a +q=m.b +if(r!==q){r=s.iQ(r) +if(r==null)r=n.a.c.a.a.length +q=s.iS(q-1) +if(q==null)q=0 +b.toString +return A.w9(b,new A.ny(n.a.c.a,"",new A.dl(r,q),B.aM),t.UM)}r=a.a +p=this.r.$3(m.gtc(),r,this.f.$0()).a +q=m.c +if(r){r=s.iQ(q) +if(r==null)r=n.a.c.a.a.length}else{r=s.iS(q-1) +if(r==null)r=0}o=A.dq(B.t,r,p,!1) +b.toString +return A.w9(b,new A.ny(n.a.c.a,"",o,B.aM),t.UM)}, +hi(a){return this.hj(a,null)}, +gq1(){var s=this.e.a +return!s.x&&s.c.a.b.gdf()}} +A.V7.prototype={ +hj(a,b){var s,r,q,p,o,n,m,l,k=this,j=k.e,i=j.a,h=i.c.a,g=h.b,f=a.b||!i.an +i=g.a +s=g.b +r=i===s +if(!r&&!k.f&&f){b.toString +return A.w9(b,new A.mv(h,A.rj(B.t,a.a?s:i),B.aM),t.gU)}q=g.gez() +if(a.d){i=a.a +if(i){h=j.gai().BW(q).b +if(new A.bW(h,B.aT).k(0,q)){s=j.a.c.a.a +h=h!==s.length&&s.charCodeAt(q.a)!==10}else h=!1}else h=!1 +if(h)q=new A.bW(q.a,B.t) +else{if(!i){i=j.gai().BW(q).a +i=new A.bW(i,B.t).k(0,q)&&i!==0&&j.a.c.a.a.charCodeAt(q.a-1)!==10}else i=!1 +if(i)q=new A.bW(q.a,B.aT)}}i=k.r +if(i){h=g.c +s=g.d +p=a.a?h>s:h"))}, +gpH(){var s,r,q=this.x +if(q==null){s=A.a([],t.bp) +r=this.Q +for(;r!=null;){s.push(r) +r=r.Q}this.x=s +q=s}return q}, +gdk(){if(!this.gvs()){var s=this.w +if(s==null)s=null +else{s=s.c +s=s==null?null:B.b.p(s.gpH(),this)}s=s===!0}else s=!0 +return s}, +gvs(){var s=this.w +return(s==null?null:s.c)===this}, +gxK(){return this.gkq()}, +gkq(){var s,r,q,p +for(s=this.gpH(),r=s.length,q=0;q#"+s+q}, +$iat:1} +A.aDy.prototype={ +$1(a){return!a.gkV()&&a.ger()}, +$S:42} +A.tM.prototype={ +gxK(){return this}, +gGF(){if(!this.ger())return B.qP +return A.eM.prototype.gGF.call(this)}, +Ce(a){if(a.Q==null)this.Sj(a) +if(this.gdk())a.uu(!0) +else a.zq()}, +a7O(a,b){var s,r=this +if(b.Q==null)r.Sj(b) +s=r.w +if(s!=null)s.f.push(new A.aei(r,b)) +s=r.w +if(s!=null)s.Dd()}, +uu(a){var s,r,q=this,p=q.fr +while(!0){if((p.length!==0?B.b.gX(p):null)!=null)s=!(p.length!==0?B.b.gX(p):null).ger() +else s=!1 +if(!s)break +p.pop()}r=p.length!==0?B.b.gX(p):null +if(!a||r==null){if(q.ger()){q.zq() +q.a3b(q)}return}r.uu(!0)}} +A.tK.prototype={ +J(){return"FocusHighlightMode."+this.b}} +A.aDx.prototype={ +J(){return"FocusHighlightStrategy."+this.b}} +A.KA.prototype={ +m(){var s=this.a,r=$.iR.cq$ +r===$&&A.b() +if(J.j(r.a,s.gaaG())){$.je.eY$.b.E(0,s.gaaI()) +r=$.iR.cq$ +r===$&&A.b() +r.a=null}s.d=new A.CG(A.lo(null,null,t.Su,t.S),t.op) +this.b.m() +this.eK()}, +Dd(){if(this.r)return +this.r=!0 +A.fE(this.gaFC())}, +aFD(){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")) +if(!s.gam(s).v())p=null +else p=b?s.gX(s):s.gO(s)}return p==null?a:p}, +ars(a,b){return this.a1o(a,!1,b)}, +aLq(a){}, +TZ(a,b){}, +a5k(a,b){var s,r,q,p,o=A.aDB(a),n=A.bIo(a,o,b) +for(s=A.ie(n,n.r,A.l(n).c);s.v();){r=s.d +q=n.i(0,r).b.ah2(n.i(0,r).c,b) +q=A.a(q.slice(0),A.ab(q)) +B.b.ab(n.i(0,r).c) +B.b.I(n.i(0,r).c,q)}p=A.a([],t.bp) +if(n.a!==0&&n.aq(0,o)){s=n.i(0,o) +s.toString +new A.aDE(n,p).$1(s)}if(!!p.fixed$length)A.r(A.aa("removeWhere")) +B.b.pD(p,new A.aDD(b),!0) +return p}, +De(a,b){var s,r,q,p,o,n,m=this,l=a.gxK() +l.toString +m.yE(l) +m.EZ$.E(0,l) +s=l.fr +r=s.length!==0?B.b.gX(s):null +s=r==null +if(s){q=b?m.ars(a,!1):m.a1o(a,!0,!1) +l=b?B.eI:B.eJ +m.a.$2$alignmentPolicy(q,l) +return!0}if(s)r=l +p=m.a5k(l,r) +if(p.length<2)return!1 +if(b&&r===B.b.gX(p))switch(l.dy.a){case 1:r.pq() +return!1 +case 0:m.a.$2$alignmentPolicy(B.b.gO(p),B.eI) +return!0}if(!b&&r===B.b.gO(p))switch(l.dy.a){case 1:r.pq() +return!1 +case 0:m.a.$2$alignmentPolicy(B.b.gX(p),B.eJ) +return!0}for(l=J.al(b?p:new A.da(p,A.ab(p).h("da<1>"))),o=null;l.v();o=n){n=l.gG(l) +if(o===r){l=b?B.eI:B.eJ +m.a.$2$alignmentPolicy(n,l) +return!0}}return!1}} +A.aDC.prototype={ +$1(a){return a.ger()&&!a.gkV()}, +$S:42} +A.aDE.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.gak(o))q=o}if(b===B.Pg){n=J.fg(q) +q=new A.da(n,A.ab(n).h("da<1>"))}m=J.lT(q,new A.aze(new A.L(f.gcw(f).a,-1/0,f.gcw(f).c,1/0))) +if(!m.gak(m)){p=B.b.gO(A.bGV(f.gcw(f).gbM(),m)) +break}p=B.b.gO(A.bGW(f.gcw(f).gbM(),q)) +break +case 1:case 3:q=j.aCo(b,f.gcw(f),h.gGF()) +if(q.length===0){p=i +break}if(r!=null&&!r.d.ga7L()){o=new A.ba(q,new A.azf(r),A.ab(q).h("ba<1>")) +if(!o.gak(o))q=o}if(b===B.axI){n=J.fg(q) +q=new A.da(n,A.ab(n).h("da<1>"))}m=J.lT(q,new A.azg(new A.L(-1/0,f.gcw(f).b,1/0,f.gcw(f).d))) +if(!m.gak(m)){p=B.b.gO(A.bGU(f.gcw(f).gbM(),m)) +break}p=B.b.gO(A.bGX(f.gcw(f).gbM(),q)) +break +default:p=i}if(p!=null){n=j.EZ$ +l=n.i(0,h) +k=new A.Gf(b,f) +if(l!=null)l.a.push(k) +else n.n(0,h,new A.ag7(A.a([k],t.Kj))) +switch(g){case 0:case 3:j.a.$2$alignmentPolicy(p,B.eJ) +break +case 2:case 1:j.a.$2$alignmentPolicy(p,B.eI) +break}return!0}return!1}} +A.bah.prototype={ +$1(a){return a.b===this.a}, +$S:485} +A.az8.prototype={ +$2(a,b){if(this.a)if(this.b)return B.e.bO(a.gcw(a).b,b.gcw(b).b) +else return B.e.bO(b.gcw(b).d,a.gcw(a).d) +else if(this.b)return B.e.bO(a.gcw(a).a,b.gcw(b).a) +else return B.e.bO(b.gcw(b).c,a.gcw(a).c)}, +$S:63} +A.aza.prototype={ +$2(a,b){var s=a.gcw(a).gbM(),r=b.gcw(b).gbM(),q=this.a,p=A.bk2(q,s,r) +if(p===0)return A.bk1(q,s,r) +return p}, +$S:63} +A.az9.prototype={ +$2(a,b){var s=a.gcw(a).gbM(),r=b.gcw(b).gbM(),q=this.a,p=A.bk1(q,s,r) +if(p===0)return A.bk2(q,s,r) +return p}, +$S:63} +A.azb.prototype={ +$2(a,b){var s,r,q,p=this.a,o=a.gcw(a),n=b.gcw(b),m=o.a,l=p.a,k=o.c +m=Math.abs(m-l)=s.c}, +$S:42} +A.az4.prototype={ +$2(a,b){return B.e.bO(a.gcw(a).gbM().a,b.gcw(b).gbM().a)}, +$S:63} +A.az5.prototype={ +$1(a){var s=this.a +return!a.gcw(a).k(0,s)&&a.gcw(a).gbM().b<=s.b}, +$S:42} +A.az6.prototype={ +$1(a){var s=this.a +return!a.gcw(a).k(0,s)&&a.gcw(a).gbM().b>=s.d}, +$S:42} +A.az7.prototype={ +$2(a,b){return B.e.bO(a.gcw(a).gbM().b,b.gcw(b).gbM().b)}, +$S:63} +A.az1.prototype={ +$1(a){var s,r,q=this,p=q.b.a.pop().b,o=p.e +o.toString +o=A.lD(o) +s=$.ap.Y$.f.c.e +s.toString +if(o!=A.lD(s)){o=q.a +s=q.c +o.yE(s) +o.EZ$.E(0,s) +return!1}switch(a.a){case 0:case 3:r=B.eJ +break +case 1:case 2:r=B.eI +break +default:r=null}q.a.a.$2$alignmentPolicy(p,r) +return!0}, +$S:487} +A.azd.prototype={ +$1(a){var s=a.e +s.toString +return A.lD(s)===this.a}, +$S:42} +A.aze.prototype={ +$1(a){var s=a.gcw(a).hh(this.a) +return!s.gak(s)}, +$S:42} +A.azf.prototype={ +$1(a){var s=a.e +s.toString +return A.lD(s)===this.a}, +$S:42} +A.azg.prototype={ +$1(a){var s=a.gcw(a).hh(this.a) +return!s.gak(s)}, +$S:42} +A.hd.prototype={ +ga9C(){var s=this.d +if(s==null){s=this.c.e +s.toString +s=this.d=new A.baf().$1(s)}s.toString +return s}} +A.bae.prototype={ +$1(a){var s=a.ga9C() +return A.qK(s,A.ab(s).c)}, +$S:488} +A.bag.prototype={ +$2(a,b){switch(this.a.a){case 1:return B.e.bO(a.b.a,b.b.a) +case 0:return B.e.bO(b.b.c,a.b.c)}}, +$S:209} +A.baf.prototype={ +$1(a){var s,r,q=A.a([],t.vl),p=t.I,o=a.ou(p) +for(;o!=null;){s=o.e +s.toString +q.push(p.a(s)) +s=A.bRI(o) +if(s==null)o=null +else{s=s.x +r=s==null?null:s.i(0,A.cs(p)) +o=r}}return q}, +$S:490} +A.pD.prototype={ +gcw(a){var s,r,q,p,o=this +if(o.b==null)for(s=o.a,r=A.ab(s).h("ad<1,L>"),s=new A.ad(s,new A.bac(),r),s=new A.c2(s,s.gt(s),r.h("c2")),r=r.h("av.E");s.v();){q=s.d +if(q==null)q=r.a(q) +p=o.b +if(p==null){o.b=q +p=q}o.b=p.oY(q)}s=o.b +s.toString +return s}} +A.bac.prototype={ +$1(a){return a.b}, +$S:491} +A.bad.prototype={ +$2(a,b){switch(this.a.a){case 1:return B.e.bO(a.gcw(a).a,b.gcw(b).a) +case 0:return B.e.bO(b.gcw(b).c,a.gcw(a).c)}}, +$S:492} +A.aQd.prototype={ +ape(a){var s,r,q,p,o,n=B.b.gO(a).a,m=t.qi,l=A.a([],m),k=A.a([],t.jE) +for(s=a.length,r=0;r") +return A.a8(new A.ba(b,new A.aQg(new A.L(-1/0,s.b,1/0,s.d)),r),!0,r.h("z.E"))}, +$S:493} +A.aQg.prototype={ +$1(a){var s=a.b.hh(this.a) +return!s.gak(s)}, +$S:494} +A.KB.prototype={ +a8(){return new A.ahi(B.m)}} +A.RS.prototype={} +A.ahi.prototype={ +gdB(a){var s,r,q,p=this,o=p.d +if(o===$){s=p.a.c +r=A.a([],t.bp) +q=$.aH() +p.d!==$&&A.aq() +o=p.d=new A.RS(s,!1,!0,!0,!0,null,null,r,q)}return o}, +m(){this.gdB(this).m() +this.b0()}, +b1(a){var s=this +s.bh(a) +if(a.c!==s.a.c)s.gdB(s).dy=s.a.c}, +A(a){var s=null,r=this.gdB(this) +return A.tJ(!1,!1,this.a.f,s,!0,!0,r,!1,s,s,s,s,s,!0)}} +A.a8v.prototype={ +hi(a){a.aRh(a.gdB(a))}} +A.yo.prototype={} +A.a6k.prototype={ +hi(a){var s=$.ap.Y$.f.c,r=s.e +r.toString +return A.xj(r).De(s,!0)}, +XA(a,b){return b?B.hz:B.jF}} +A.yL.prototype={} +A.a7l.prototype={ +hi(a){var s=$.ap.Y$.f.c,r=s.e +r.toString +return A.xj(r).De(s,!1)}, +XA(a,b){return b?B.hz:B.jF}} +A.tz.prototype={} +A.JQ.prototype={ +hi(a){var s,r +if(!this.c){s=$.ap.Y$.f.c +r=s.e +r.toString +A.xj(r).aKX(s,a.a)}}} +A.ahj.prototype={} +A.al0.prototype={ +TZ(a,b){var s +this.ahR(a,b) +s=this.EZ$.i(0,b) +if(s!=null){s=s.a +if(!!s.fixed$length)A.r(A.aa("removeWhere")) +B.b.pD(s,new A.bah(a),!0)}}} +A.apZ.prototype={} +A.aq_.prototype={} +A.KH.prototype={ +a8(){return new A.KJ(A.aW(t.gx),B.m)}} +A.KJ.prototype={ +are(){var s=this +s.a.toString +s.e=s.f.fa(0,new A.aE3()) +s.a1w()}, +a1w(){this.ad(new A.aE4(this))}, +A(a){var s,r,q=this +switch(q.a.w.a){case 1:q.wF() +break +case 2:if(q.e)q.wF() +break +case 0:break}s=q.a +r=q.d +return new A.Q3(A.bOY(s.c,q,r),null,null)}, +wF(){var s,r,q,p,o,n,m,l={},k=l.a="" +for(s=this.f,s=A.dS(s,s.r,A.l(s).c),r=s.$ti.c,q=!1;s.v();){p=s.d +if(p==null)p=r.a(p) +q=!p.aQr()||q +o=l.a +p=p.e +n=p.y +p=n==null?A.l(p).h("dv.T").a(n):n +l.a=o+(p==null?k:p)}if(l.a.length!==0){k=this.c.aj(t.I) +k.toString +m=k.w +if(A.c3()===B.b1)A.Cx(new A.aE5(l,m),t.H) +else A.Om(l.a,m,B.qv)}return!q}} +A.aE3.prototype={ +$1(a){var s=a.f,r=s.y +return r==null?A.l(s).h("dv.T").a(r):r}, +$S:495} +A.aE4.prototype={ +$0(){++this.a.d}, +$S:0} +A.aE5.prototype={ +$0(){var s=0,r=A.y(t.H),q=this +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:s=2 +return A.t(A.xo(B.ei,null,t.H),$async$$0) +case 2:A.Om(q.a.a,q.b,B.qv) +return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.RV.prototype={ +dh(a){return this.r!==a.r}} +A.qu.prototype={ +a8(){return A.bIr(A.l(this).h("qu.T"))}} +A.lg.prototype={ +ga75(){var s=this.d +return s===$?this.d=this.a.f:s}, +aQr(){var s,r +this.ad(new A.aE2(this)) +s=this.e +r=s.y +return(r==null?A.l(s).h("dv.T").a(r):r)==null}, +wF(){this.e.sj(0,this.a.d.$1(this.ga75()))}, +Lf(a){var s +this.ad(new A.aE1(this,a)) +s=this.c +s.toString +s=A.bky(s) +if(s!=null)s.are()}, +gi5(){return this.a.x}, +kF(a,b){var s=this +s.rl(s.e,"error_text") +s.rl(s.f,"has_interacted_by_user")}, +fd(){var s=this.c +s.toString +s=A.bky(s) +if(s!=null)s.f.E(0,this) +this.rS()}, +m(){this.e.m() +this.f.m() +this.akh()}, +A(a){var s,r=this,q=r.a +switch(q.w.a){case 1:r.wF() +break +case 2:q=r.f +s=q.y +if(s==null?A.l(q).h("dv.T").a(s):s)r.wF() +break +case 0:break}q=A.bky(a) +if(q!=null)q.f.F(0,r) +return r.a.e.$1(r)}} +A.aE2.prototype={ +$0(){this.a.wF()}, +$S:0} +A.aE1.prototype={ +$0(){var s=this.a +s.d=this.b +s.f.P0(0,!0)}, +$S:0} +A.atv.prototype={ +J(){return"AutovalidateMode."+this.b}} +A.b66.prototype={ +$2(a,b){if(!a.a)a.H(0,b)}, +$S:61} +A.Gv.prototype={ +b1(a){this.bh(a) +this.x8()}, +ca(){var s,r,q,p,o=this +o.e8() +s=o.cX$ +r=o.gu1() +q=o.c +q.toString +q=A.uM(q) +o.jf$=q +p=o.uJ(q,r) +if(r){o.kF(s,o.hd$) +o.hd$=!1}if(p)if(s!=null)s.m()}, +m(){var s,r=this +r.je$.al(0,new A.b66()) +s=r.cX$ +if(s!=null)s.m() +r.cX$=null +r.b0()}} +A.hM.prototype={ +gR(){var s,r=$.ap.Y$.z.i(0,this) +if(r instanceof A.il){s=r.k3 +s.toString +if(A.l(this).c.b(s))return s}return null}} +A.bq.prototype={ +l(a){var s,r=this,q=r.a +if(q!=null)s=" "+q +else s="" +if(A.p(r)===B.ay8)return"[GlobalKey#"+A.br(r)+s+"]" +return"["+("#"+A.br(r))+s+"]"}} +A.tP.prototype={ +k(a,b){if(b==null)return!1 +if(J.a_(b)!==A.p(this))return!1 +return this.$ti.b(b)&&b.a===this.a}, +gu(a){return A.t3(this.a)}, +l(a){var s="GlobalObjectKey",r=B.c.hT(s,">")?B.c.S(s,0,-8):s +return"["+r+" "+("#"+A.br(this.a))+"]"}} +A.d.prototype={ +f4(){var s=this.a +return s==null?"Widget":"Widget-"+s.l(0)}, +k(a,b){if(b==null)return!1 +return this.rP(0,b)}, +gu(a){return A.C.prototype.gu.call(this,this)}} +A.a4.prototype={ +bI(a){return new A.F2(this,B.an)}} +A.N.prototype={ +bI(a){return A.bMK(this)}} +A.bcx.prototype={ +J(){return"_StateLifecycle."+this.b}} +A.a9.prototype={ +gbc(){var s=this.a +s.toString +return s}, +aX(){}, +b1(a){}, +ad(a){a.$0() +this.c.el()}, +fd(){}, +cf(){}, +m(){}, +ca(){}} +A.b2.prototype={} +A.ho.prototype={ +bI(a){return new A.us(this,B.an,A.l(this).h("us"))}} +A.bf.prototype={ +bI(a){return A.bIW(this)}} +A.aG.prototype={ +bb(a,b){}, +EA(a){}} +A.a3t.prototype={ +bI(a){return new A.a3s(this,B.an)}} +A.bv.prototype={ +bI(a){return new A.Ow(this,B.an)}} +A.fM.prototype={ +bI(a){return A.bKe(this)}} +A.Gm.prototype={ +J(){return"_ElementLifecycle."+this.b}} +A.ahQ.prototype={ +a6h(a){a.ci(new A.b6Z(this,a)) +a.kJ()}, +aDX(){var s,r,q,p=this +p.a=!0 +r=p.b +q=A.a8(r,!0,A.l(r).c) +B.b.fw(q,A.bnq()) +s=q +r.ab(0) +try{r=s +new A.da(r,A.cq(r).h("da<1>")).al(0,p.gaDV())}finally{p.a=!1}}} +A.b6Z.prototype={ +$1(a){this.a.a6h(a)}, +$S:24} +A.av5.prototype={ +YD(a){var s=this +if(a.as){s.e=!0 +return}if(!s.d&&s.a!=null){s.d=!0 +s.a.$0()}s.c.push(a) +a.as=!0}, +abU(a){try{a.$0()}finally{}}, +E6(a,b){var s,r,q,p,o,n,m,l,k=this,j={},i=b==null +if(i&&k.c.length===0)return +try{k.d=!0 +if(!i){j.a=null +k.e=!1 +try{b.$0()}finally{}}i=k.c +B.b.fw(i,A.bnq()) +k.e=!1 +j.b=i.length +j.c=0 +for(o=0;o=i.length){m=k.e +m.toString}else m=!0 +if(m){B.b.fw(i,A.bnq()) +o=k.e=!1 +j.b=i.length +while(!0){m=j.c +if(!(m>0?i[m-1].Q:o))break +j.c=m-1}o=m}}}finally{for(i=k.c,o=i.length,l=0;l").V(d.z[1]),g=new A.bT(J.al(g.a),g.b,d.h("bT<1,2>")),d=d.z[1];g.v();){m=g.a +if(m==null)m=d.a(m) +if(!a3.p(0,m)){m.a=null +m.Ac() +l=k.f.b +if(m.r===B.eW){m.fd() +m.ci(A.bh2())}l.b.F(0,m)}}return c}, +hI(a,b){var s,r,q,p=this +p.a=a +p.c=b +p.r=B.eW +s=a!=null +if(s){r=a.d +r===$&&A.b();++r}else r=1 +p.d=r +if(s)p.f=a.f +q=p.gbc().a +if(q instanceof A.hM)p.f.z.n(0,q,p) +p.T7() +p.TL()}, +bZ(a,b){this.e=b}, +aec(a,b){new A.aBk(b).$1(a)}, +GN(a){this.c=a}, +a6s(a){var s=a+1,r=this.d +r===$&&A.b() +if(r")),s=s.c;p.v();){r=p.d;(r==null?s.a(r):r).y2.E(0,q)}q.x=null +q.r=B.aBG}, +kJ(){var s=this,r=s.e,q=r==null?null:r.a +if(q instanceof A.hM){r=s.f.z +if(J.j(r.i(0,q),s))r.E(0,q)}s.y=s.e=null +s.r=B.Px}, +gq(a){var s=this.ga7() +if(s instanceof A.O)return s.gq(s) +return null}, +Aa(a,b){var s=this.y;(s==null?this.y=A.dI(t.pq):s).F(0,a) +a.ae7(this,b) +s=a.e +s.toString +return t.WB.a(s)}, +UD(a){return this.Aa(a,null)}, +a9u(a,b){var s=this.x,r=s==null?null:s.i(0,A.cs(b)) +if(r!=null)return b.a(this.Aa(r,a)) +this.z=!0 +return null}, +aj(a){return this.a9u(null,a)}, +O1(a){var s=this.ou(a) +if(s==null)s=null +else{s=s.e +s.toString}return a.h("0?").a(s)}, +ou(a){var s=this.x +return s==null?null:s.i(0,A.cs(a))}, +TL(){var s=this.a +this.b=s==null?null:s.b}, +T7(){var s=this.a +this.x=s==null?null:s.x}, +xo(a){var s,r=this.a +while(!0){s=r==null +if(!(!s&&A.p(r.gbc())!==A.cs(a)))break +r=r.a}s=s?null:r.gbc() +return a.h("0?").a(s)}, +F4(a){var s,r,q=this.a +for(;s=q==null,!s;){if(q instanceof A.il){r=q.k3 +r.toString +r=a.b(r)}else r=!1 +if(r)break +q=q.a}t.lE.a(q) +if(s)s=null +else{s=q.k3 +s.toString}return a.h("0?").a(s)}, +aJ6(a){var s,r,q=this.a +for(s=null;q!=null;){if(q instanceof A.il){r=q.k3 +r.toString +r=a.b(r)}else r=!1 +if(r)s=q +q=q.a}if(s==null)r=null +else{r=s.k3 +r.toString}return a.h("0?").a(r)}, +xn(a){var s=this.a +for(;s!=null;){if(s instanceof A.bR&&a.b(s.ga7()))return a.a(s.ga7()) +s=s.a}return null}, +uc(a){var s=this.a +while(!0){if(!(s!=null&&a.$1(s)))break +s=s.a}}, +ca(){this.el()}, +fY(a){var s=this.b +if(s!=null)s.fY(a)}, +f4(){var s=this.e +s=s==null?null:s.f4() +return s==null?"#"+A.br(this)+"(DEFUNCT)":s}, +el(){var s=this +if(s.r!==B.eW)return +if(s.Q)return +s.Q=!0 +s.f.YD(s)}, +Nj(a){var s +if(this.r===B.eW)s=!this.Q&&!a +else s=!0 +if(s)return +try{this.ph()}finally{}}, +acW(){return this.Nj(!1)}, +ph(){this.Q=!1}, +$iG:1} +A.aBh.prototype={ +$1(a){this.a.a=a}, +$S:24} +A.aBf.prototype={ +$1(a){this.a.push(a) +return!0}, +$S:48} +A.aBe.prototype={ +$1(a){var s=null +return A.lb("",a,!0,B.bq,s,!1,s,s,B.aW,s,!1,!0,!0,B.eh,s,t.E)}, +$S:496} +A.aBi.prototype={ +$1(a){var s=this.a.p(0,a) +return s?null:a}, +$S:497} +A.aBj.prototype={ +$2(a,b){return new A.tW(b,a,t.Bc)}, +$S:498} +A.aBk.prototype={ +$1(a){var s +a.GN(this.a) +s=a.gNo() +if(s!=null)this.$1(s)}, +$S:24} +A.aBc.prototype={ +$1(a){a.a6s(this.a)}, +$S:24} +A.aBg.prototype={ +$1(a){a.Ac()}, +$S:24} +A.aBd.prototype={ +$1(a){a.E1(this.a)}, +$S:24} +A.a1z.prototype={ +b5(a){var s=this.d,r=new A.Nz(s,A.ay(t.T)) +r.b4() +r.amO(s) +return r}} +A.Jh.prototype={ +gNo(){return this.ax}, +hI(a,b){this.OP(a,b) +this.Qx()}, +Qx(){this.acW()}, +ph(){var s,r,q,p,o,n,m=this,l=null +try{l=m.aO() +m.e.toString}catch(o){s=A.ak(o) +r=A.aJ(o) +n=A.Kh(A.bn5(A.c0("building "+m.l(0)),s,r,new A.axt())) +l=n}finally{m.yB()}try{m.ax=m.fE(m.ax,l,m.c)}catch(o){q=A.ak(o) +p=A.aJ(o) +n=A.Kh(A.bn5(A.c0("building "+m.l(0)),q,p,new A.axu())) +l=n +m.ax=m.fE(null,l,m.c)}}, +ci(a){var s=this.ax +if(s!=null)a.$1(s)}, +n0(a){this.ax=null +this.py(a)}} +A.axt.prototype={ +$0(){var s=A.a([],t.F) +return s}, +$S:40} +A.axu.prototype={ +$0(){var s=A.a([],t.F) +return s}, +$S:40} +A.F2.prototype={ +aO(){var s=this.e +s.toString +return t.Iz.a(s).A(this)}, +bZ(a,b){this.yD(0,b) +this.Nj(!0)}} +A.il.prototype={ +aO(){return this.k3.A(this)}, +Qx(){this.k3.aX() +this.k3.ca() +this.ahv()}, +ph(){var s=this +if(s.k4){s.k3.ca() +s.k4=!1}s.ahw()}, +bZ(a,b){var s,r,q,p=this +p.yD(0,b) +s=p.k3 +r=s.a +r.toString +q=p.e +q.toString +s.a=t.d3.a(q) +s.b1(r) +p.Nj(!0)}, +cf(){this.OL() +this.k3.cf() +this.el()}, +fd(){this.k3.fd() +this.ON()}, +kJ(){var s=this +s.yC() +s.k3.m() +s.k3=s.k3.c=null}, +Aa(a,b){return this.OO(a,b)}, +UD(a){return this.Aa(a,null)}, +ca(){this.HJ() +this.k4=!0}} +A.Na.prototype={ +aO(){var s=this.e +s.toString +return t.yH.a(s).b}, +bZ(a,b){var s=this,r=s.e +r.toString +t.yH.a(r) +s.yD(0,b) +s.XT(r) +s.Nj(!0)}, +XT(a){this.xM(a)}} +A.us.prototype={ +a_G(a){this.ci(new A.aN5(a))}, +xM(a){var s=this.e +s.toString +this.a_G(this.$ti.h("ho<1>").a(s))}} +A.aN5.prototype={ +$1(a){if(a instanceof A.bR)this.a.zD(a.ga7()) +else a.ci(this)}, +$S:24} +A.jf.prototype={ +T7(){var s=this,r=s.a,q=r==null?null:r.x +if(q==null)q=B.aov +r=s.e +r.toString +s.x=q.X4(0,A.p(r),s)}, +YQ(a,b){this.y2.n(0,a,b)}, +ae7(a,b){this.YQ(a,null)}, +acc(a,b){b.ca()}, +XT(a){var s=this.e +s.toString +if(t.WB.a(s).dh(a))this.aiH(a)}, +xM(a){var s,r,q +for(s=this.y2,r=A.l(s),s=new A.GC(s,s.Ib(),r.h("GC<1>")),r=r.c;s.v();){q=s.d +this.acc(a,q==null?r.a(q):q)}}} +A.bR.prototype={ +ga7(){var s=this.ax +s.toString +return s}, +gNo(){return null}, +aro(){var s,r=this.a,q=r +while(!0){s=q==null +if(!(!s&&!(q instanceof A.bR)))break +r=s?null:q.a +q=r}return t.p3.a(q)}, +arn(){var s=this.a,r=A.a([],t.OM),q=s +while(!0){if(!(q!=null&&!(q instanceof A.bR)))break +if(q instanceof A.us)r.push(q) +s=q.a +q=s}return r}, +hI(a,b){var s=this +s.OP(a,b) +s.ax=t.F5.a(s.gbc()).b5(s) +s.E1(b) +s.yB()}, +bZ(a,b){this.yD(0,b) +this.a3W()}, +ph(){this.a3W()}, +a3W(){var s=this +t.F5.a(s.gbc()).bb(s,s.ga7()) +s.yB()}, +fd(){this.ON()}, +kJ(){var s=this,r=t.F5.a(s.gbc()) +s.yC() +r.EA(s.ga7()) +s.ax.m() +s.ax=null}, +GN(a){var s,r=this,q=r.c +r.ahN(a) +s=r.ch +if(s!=null)s.pe(r.ga7(),q,r.c)}, +E1(a){var s,r,q,p,o,n=this +n.c=a +s=n.ch=n.aro() +if(s!=null)s.pc(n.ga7(),a) +r=n.arn() +for(s=r.length,q=t.oR,p=0;p"))}, +pc(a,b){var s=this.ga7(),r=b.a +s.VP(0,a,r==null?null:r.ga7())}, +pe(a,b,c){var s=this.ga7(),r=c.a +s.FR(a,r==null?null:r.ga7())}, +q9(a,b){this.ga7().E(0,a)}, +ci(a){var s,r,q,p,o=this.k4 +o===$&&A.b() +s=o.length +r=this.ok +q=0 +for(;q") +h.d=new A.ax(t.m.a(p),new A.dz(new A.eI(new A.dZ(n,1,B.Y)),o,m),m.h("ax"))}}if(s)s=!(isFinite(q.a)&&isFinite(q.b)) +else s=!0 +h.w=s}, +ah6(a,b){var s,r,q,p=this +p.f=b +switch(b.a.a){case 1:s=p.e +s===$&&A.b() +s.sbP(0,new A.k_(b.geq(b),new A.bd(A.a([],t.x8),t.jc),0)) +r=!1 +break +case 0:s=p.e +s===$&&A.b() +s.sbP(0,b.geq(b)) +r=!0 +break +default:r=null}s=p.f +p.b=s.Ep(s.gaav(),p.f.gNB()) +p.f.f.OB(r) +p.f.r.OA() +s=p.f +q=A.p0(p.gao7(),!1) +p.r=q +s.b.xy(0,q) +q=p.e +q===$&&A.b() +q.cF() +q=q.dw$ +q.b=!0 +q.a.push(p.gWM())}, +l(a){var s,r,q,p,o,n=this.f +n===$&&A.b() +s=n.d.b +r=n.e.b +n=n.f.a.c.l(0) +q=s.l(0) +p=r.l(0) +o=this.e +o===$&&A.b() +return"HeroFlight(for: "+n+", from: "+q+", to: "+p+" "+A.i(o.c)+")"}} +A.b6H.prototype={ +$2(a,b){var s,r=null,q=this.a,p=q.b +p===$&&A.b() +s=q.e +s===$&&A.b() +s=p.a5(0,s.gj(s)) +s.toString +p=q.f +p===$&&A.b() +p=p.c +return A.hp(p.b-s.d,A.qD(new A.cY(q.d,!1,b,r),!0,r),r,r,s.a,p.a-s.c,s.b,r)}, +$S:516} +A.b6I.prototype={ +$0(){var s,r=this.a +r.x=!1 +this.b.cx.H(0,this) +s=r.e +s===$&&A.b() +r.a3U(s.gaP(s))}, +$S:0} +A.xs.prototype={ +Lj(){var s,r,q,p=$.of() +A.ql(this) +if(p.a.get(this).cx.a)return +p=this.b +p=p.gbp(p) +s=A.l(p).h("ba") +r=A.a8(new A.ba(p,new A.aFQ(),s),!1,s.h("z.E")) +for(p=r.length,q=0;q"),a=t.k2;s.v();){a0=s.gG(s) +a1=a0.a +a2=a0.b +a3=k.i(0,a1) +a4=p.i(0,a1) +if(a3==null)a5=null +else{a0=o.id +if(a0==null)a0=A.r(A.R("RenderBox was not laid out: "+A.p(o).l(0)+"#"+A.br(o))) +a6=a3.a.f +if(a6==null)a6=a2.a.f +if(a6==null)a6=j +a5=new A.b6G(b2,q,a0,b0,b1,a2,a3,r,a6,b3,a4!=null)}if(a5!=null&&a5.gdf()){k.E(0,a1) +if(a4!=null){a0=a4.f +a0===$&&A.b() +a6=a0.a +if(a6===B.ep&&a5.a===B.eq){a0=a4.e +a0===$&&A.b() +a0.sbP(0,new A.k_(a5.geq(a5),new A.bd(A.a([],h),g),0)) +a0=a4.b +a0===$&&A.b() +a4.b=new A.NT(a0,a0.b,a0.a,a)}else{a6=a6===B.eq&&a5.a===B.ep +a7=a4.e +if(a6){a7===$&&A.b() +a0=a5.geq(a5) +a6=a4.f +a6=a6.geq(a6) +a6=a6.gj(a6) +a7.sbP(0,new A.ax(c.a(a0),new A.aR(a6,1,d),b)) +a0=a4.f +a6=a0.f +a7=a5.r +if(a6!==a7){a6.As(!0) +a7.OA() +a0=a4.f +a6=a4.b +a6===$&&A.b() +a4.b=a0.Ep(a6.b,a5.gNB())}else{a6=a4.b +a6===$&&A.b() +a4.b=a0.Ep(a6.b,a6.a)}}else{a6=a4.b +a6===$&&A.b() +a7===$&&A.b() +a4.b=a0.Ep(a6.a5(0,a7.gj(a7)),a5.gNB()) +a4.c=null +a0=a5.a +a6=a4.e +if(a0===B.eq)a6.sbP(0,new A.k_(a5.geq(a5),new A.bd(A.a([],h),g),0)) +else a6.sbP(0,a5.geq(a5)) +a4.f.f.As(!0) +a4.f.r.As(!0) +a5.f.OB(a0===B.ep) +a5.r.OA() +a0=a4.r.f.gR() +if(a0!=null)a0.a3a()}}a4.f=a5}else{a0=new A.rF(i,B.f5) +a6=A.a([],h) +a7=new A.bd(a6,g) +a8=new A.N9(a7,new A.bd(A.a([],f),e),0) +a8.a=B.R +a8.b=0 +a8.cF() +a7.b=!0 +a6.push(a0.ga2c()) +a0.e=a8 +a0.ah6(0,a5) +p.n(0,a1,a0)}}else if(a4!=null)a4.w=!0}for(s=J.al(k.gbp(k));s.v();)s.gG(s).a9T()}, +atl(a){var s=a.f +s===$&&A.b() +this.b.E(0,s.f.a.c)}, +aq0(a,b,c,d,e){var s=t.rA.a(e.gbc()),r=A.d9(e,null),q=A.d9(d,null) +if(r==null||q==null)return s.e +return A.hg(b,new A.aFO(r,c,q.r,r.r,b,s),null)}, +m(){var s,r,q,p,o,n,m,l +for(s=this.b,s=s.gbp(s),r=A.l(s),r=r.h("@<1>").V(r.z[1]),s=new A.bT(J.al(s.a),s.b,r.h("bT<1,2>")),r=r.z[1];s.v();){q=s.a +if(q==null)q=r.a(q) +p=q.r +if(p!=null){p.en(0) +q.r.m() +q.r=null +p=q.e +p===$&&A.b() +p.sbP(0,null) +p=q.e +o=q.gWM() +n=p.dw$ +n.b=!0 +m=n.c +if(m===$){l=A.dI(n.$ti.c) +n.c!==$&&A.aq() +n.c=l +m=l}if(m.a>0){m.b=m.c=m.d=m.e=null +m.a=0}if(B.b.E(n.a,o))p.tt() +p=q.e +q=q.ga2c() +o=p.ej$ +o.b=!0 +m=o.c +if(m===$){l=A.dI(o.$ti.c) +o.c!==$&&A.aq() +o.c=l +m=l}if(m.a>0){m.b=m.c=m.d=m.e=null +m.a=0}if(B.b.E(o.a,q))p.tt()}}}} +A.aFQ.prototype={ +$1(a){var s=a.f +s===$&&A.b() +if(s.y)if(s.a===B.eq){s=a.e +s===$&&A.b() +s=s.gaP(s)===B.R}else s=!1 +else s=!1 +return s}, +$S:519} +A.aFP.prototype={ +$1(a){var s=this,r=s.b +if(r.a==null||s.c.a==null)return +s.a.a5p(r,s.c,s.d,s.e)}, +$S:5} +A.aFO.prototype={ +$2(a,b){var s=this,r=s.c,q=s.d,p=s.e +r=s.b===B.ep?new A.K6(r,q).a5(0,p.gj(p)):new A.K6(q,r).a5(0,p.gj(p)) +return A.ni(s.f.e,s.a.x_(r),null)}, +$S:520} +A.bB.prototype={ +A(a){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null,e=a.aj(t.I) +e.toString +s=e.w +r=A.a2O(a) +q=g.d +if(q==null)q=r.a +p=r.b +o=r.c +n=r.d +m=r.e +e=g.c +if(e==null){e=A.cZ(f,q,q) +return new A.bu(A.bL(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,g.z,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),!1,!1,!1,!1,e,f)}l=r.gi_(r) +if(l==null)l=1 +k=g.x +if(k==null){j=r.f +j.toString +k=j}if(l!==1)k=A.K(B.e.bg(255*((k.gj(k)>>>24&255)/255*l)),k.gj(k)>>>16&255,k.gj(k)>>>8&255,k.gj(k)&255) +j=A.el(e.a) +i=A.a([],t.uf) +if(p!=null)i.push(new A.lY("FILL",p)) +if(o!=null)i.push(new A.lY("wght",o)) +if(n!=null)i.push(new A.lY("GRAD",n)) +if(m!=null)i.push(new A.lY("opsz",m)) +h=A.bls(f,f,B.asr,f,f,!0,f,A.dr(f,A.hb(f,f,k,f,f,f,f,f,e.b,f,f,q,f,i,f,f,f,!1,f,f,f,f,e.c,r.w,f,f),j),B.b2,s,f,B.aw,B.at) +if(e.d)switch(s.a){case 0:e=new A.bQ(new Float64Array(16)) +e.fQ() +e.rC(0,-1,1,1) +h=A.zO(B.a7,h,f,e,!1) +break +case 1:break}e=A.cZ(A.eH(h,f,f),q,q) +return new A.bu(A.bL(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,g.z,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),!1,!1,!1,!1,new A.qk(!0,e,f),f)}, +geD(a){return this.c}} +A.aO.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.aO&&b.a===s.a&&b.b===s.b&&b.c==s.c&&b.d===s.d&&A.ee(null,null)}, +gu(a){var s=this +return A.X(s.a,s.b,s.c,s.d,A.dj(B.aff),B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +l(a){return"IconData(U+"+B.c.eP(B.f.of(this.a,16).toUpperCase(),5,"0")+")"}} +A.xA.prototype={ +dh(a){return!this.w.k(0,a.w)}, +y8(a,b,c){return A.xB(c,this.w,null)}} +A.aGS.prototype={ +$1(a){return A.xB(this.c,A.bs7(a).cI(this.b),this.a)}, +$S:521} +A.d4.prototype={ +Em(a,b,c,d,e,f,g,h){var s=this,r=g==null?s.a:g,q=b==null?s.b:b,p=h==null?s.c:h,o=c==null?s.d:c,n=e==null?s.e:e,m=a==null?s.f:a,l=d==null?s.gi_(s):d +return new A.d4(r,q,p,o,n,m,l,f==null?s.w:f)}, +cM(a){return this.Em(a,null,null,null,null,null,null,null)}, +cI(a){return this.Em(a.f,a.b,a.d,a.gi_(a),a.e,a.w,a.a,a.c)}, +L(a){return this}, +gi_(a){var s=this.r +if(s==null)s=null +else s=A.V(s,0,1) +return s}, +k(a,b){var s=this +if(b==null)return!1 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.d4&&b.a==s.a&&b.b==s.b&&b.c==s.c&&b.d==s.d&&b.e==s.e&&J.j(b.f,s.f)&&b.gi_(b)==s.gi_(s)&&A.ee(b.w,s.w)}, +gu(a){var s=this,r=s.gi_(s),q=s.w +q=q==null?null:A.dj(q) +return A.X(s.a,s.b,s.c,s.d,s.e,s.f,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)}} +A.ahM.prototype={} +A.CL.prototype={ +a8(){return new A.Sa(B.m)}} +A.Sa.prototype={ +aX(){var s=this +s.b9() +$.ap.bd$.push(s) +s.z=new A.a10(s,t.uZ)}, +m(){var s,r=this +B.b.E($.ap.bd$,r) +r.aCB() +s=r.at +if(s!=null)s.m() +s=r.z +s===$&&A.b() +s.a=null +r.Sk(null) +r.b0()}, +ca(){var s,r=this +r.aEb() +r.a4r() +s=r.c +s.toString +if(A.ab2(s))r.awv() +else r.a5w(!0) +r.e8()}, +b1(a){var s,r,q=this +q.bh(a) +if(q.r&&q.a.e==null!==(a.e==null)){s=q.CZ() +r=q.d +r.toString +r.P(0,q.a1N(!0)) +q.d.H(0,s)}if(!q.a.c.k(0,a.c))q.a4r()}, +aEb(){var s=this.c +s.toString +s=A.d9(s,B.aC5) +s=s==null?null:s.Q +if(s==null){s=$.a96.LB$ +s===$&&A.b() +s=(s.a&2)!==0}this.w=s}, +a4r(){var s,r,q,p,o=this,n=o.z +n===$&&A.b() +s=o.a +r=s.c +q=o.c +q.toString +p=s.r +if(p!=null&&s.w!=null){p.toString +s=s.w +s.toString +s=new A.U(p,s)}else s=null +o.aEA(new A.O3(n,r,t.JE).L(A.WM(q,s)))}, +a1N(a){var s,r=this,q=r.ax +if(q==null||a){r.as=r.Q=null +q=r.a +s=q.e==null?null:r.gatA() +q=q.f!=null||!1?new A.b6T(r):null +q=r.ax=new A.ll(r.gatC(),s,q)}q.toString +return q}, +CZ(){return this.a1N(!1)}, +atD(a,b){this.ad(new A.b6V(this,a,b))}, +atB(a){this.ad(new A.b6U(this,a))}, +Sk(a){var s=this.e +$.cB.y2$.push(new A.b6W(s)) +this.e=a}, +aEA(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.CZ())}q.a.toString +q.ad(new A.b6X(q)) +q.ad(new A.b6Y(q)) +q.d=a +if(q.r)a.P(0,q.CZ())}, +awv(){var s,r=this +if(r.r)return +s=r.d +s.toString +s.P(0,r.CZ()) +s=r.at +if(s!=null)s.m() +r.at=null +r.r=!0}, +a5w(a){var s,r=this +if(!r.r)return +if(a)if(r.at==null){s=r.d +s=(s==null?null:s.a)!=null}else s=!1 +else s=!1 +if(s)r.at=r.d.a.ii() +s=r.d +s.toString +s.H(0,r.CZ()) +r.r=!1}, +aCB(){return this.a5w(!1)}, +A(a){var s,r,q,p,o,n,m,l,k,j,i,h,g=this,f=null,e=g.Q +if(e!=null){s=g.a.f +if(s!=null)return s.$3(a,e,g.as)}e=g.e +s=e==null +r=s?f:e.a +q=s?f:e.c +p=g.a +o=p.r +n=p.w +e=s?f:e.b +if(e==null)e=1 +s=p.x +m=p.Q +l=p.as +k=p.at +j=p.ax +i=g.w +i===$&&A.b() +h=new A.a7E(r,q,o,n,e,s,f,p.z,m,l,k,j,f,!1,i,!1,f) +if(!p.cy)h=new A.bu(A.bL(f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,!0,f,f,f,"",f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f),!1,!1,!1,!1,h,f) +e=p.d +if(e!=null)h=e.$4(a,h,g.x,g.y) +e=g.a.e +return e!=null?e.$3(a,h,g.f):h}} +A.b6T.prototype={ +$2(a,b){var s=this.a +s.ad(new A.b6S(s,a,b))}, +$S:523} +A.b6S.prototype={ +$0(){var s=this.a +s.Q=this.b +s.as=this.c}, +$S:0} +A.b6V.prototype={ +$0(){var s,r=this.a +r.Sk(this.b) +r.as=r.Q=r.f=null +s=r.x +r.x=s==null?0:s+1 +r.y=B.b7.uh(r.y,this.c)}, +$S:0} +A.b6U.prototype={ +$0(){var s=this.a +s.f=this.b +s.as=s.Q=null}, +$S:0} +A.b6W.prototype={ +$1(a){var s=this.a +if(s!=null)s.a.m() +return null}, +$S:5} +A.b6X.prototype={ +$0(){this.a.Sk(null)}, +$S:0} +A.b6Y.prototype={ +$0(){var s=this.a +s.x=s.f=null +s.y=!1}, +$S:0} +A.apD.prototype={} +A.a2S.prototype={ +A(a){var s,r,q,p=null,o=A.a2O(a),n=this.d +if(n==null)n=o.a +s=o.gi_(o) +r=this.e +if(r==null){q=o.f +q.toString +r=q}if(s!=null&&s!==1)r=A.K(B.e.bg(255*((r.gj(r)>>>24&255)/255*s)),r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255) +q=A.bs8(B.a7,r,p,p,!0,B.hv,B.qI,p,n,this.c,p,p,!1,B.fn,n) +return new A.bu(A.bL(p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),!1,!1,!1,!1,q,p)}} +A.a0E.prototype={ +hk(a){var s=A.aym(this.a,this.b,a) +s.toString +return s}} +A.K6.prototype={ +hk(a){var s=A.C8(this.a,this.b,a) +s.toString +return s}} +A.x1.prototype={ +hk(a){var s=A.fJ(this.a,this.b,a) +s.toString +return s}} +A.wm.prototype={ +hk(a){return A.mU(this.a,this.b,a)}} +A.Yv.prototype={ +hk(a){return A.auv(this.a,this.b,a)}} +A.pk.prototype={ +hk(a){var s=A.c7(this.a,this.b,a) +s.toString +return s}} +A.a2W.prototype={} +A.CP.prototype={ +gwn(){var s,r=this,q=r.d +if(q===$){s=A.bx(B.A,null,r.a.d,0,null,1,null,r) +r.d!==$&&A.aq() +r.d=s +q=s}return q}, +ghN(){var s,r=this,q=r.e +if(q===$){s=r.gwn() +q=r.e=A.c5(r.a.c,s,null)}return q}, +aX(){var s,r=this +r.b9() +s=r.gwn() +s.cF() +s=s.ej$ +s.b=!0 +s.a.push(new A.aHh(r)) +r.a0D() +r.UP()}, +b1(a){var s,r=this +r.bh(a) +if(r.a.c!==a.c){r.ghN().m() +s=r.gwn() +r.e=A.c5(r.a.c,s,null)}r.gwn().e=r.a.d +if(r.a0D()){r.vo(new A.aHg(r)) +s=r.gwn() +s.sj(0,0) +s.bS(0) +r.UP()}}, +m(){this.ghN().m() +this.gwn().m() +this.akn()}, +aED(a,b){var s +if(a==null)return +s=this.ghN() +a.sTP(a.a5(0,s.gj(s))) +a.scg(0,b)}, +a0D(){var s={} +s.a=!1 +this.vo(new A.aHf(s,this)) +return s.a}, +UP(){}, +$iaP:1} +A.aHh.prototype={ +$1(a){switch(a.a){case 3:this.a.a.toString +break +case 0:case 1:case 2:break}}, +$S:9} +A.aHg.prototype={ +$3(a,b,c){this.a.aED(a,b) +return a}, +$S:221} +A.aHf.prototype={ +$3(a,b,c){var s +if(b!=null){if(a==null)a=c.$1(b) +s=a.b +if(!J.j(b,s==null?a.a:s))this.a.a=!0 +else if(a.b==null)a.scg(0,a.a)}else a=null +return a}, +$S:221} +A.AZ.prototype={ +aX(){this.ahZ() +var s=this.gwn() +s.cF() +s=s.dw$ +s.b=!0 +s.a.push(this.gasC())}, +asD(){this.ad(new A.asr())}} +A.asr.prototype={ +$0(){}, +$S:0} +A.I8.prototype={ +a8(){return new A.adX(null,null,B.m)}} +A.adX.prototype={ +vo(a){this.CW=t.QS.a(a.$3(this.CW,this.a.r,new A.b1O()))}, +A(a){var s,r=this.CW +r.toString +s=this.ghN() +return new A.b4(J.bpq(r.a5(0,s.gj(s)),B.a8,B.q9),this.a.w,null)}} +A.b1O.prototype={ +$1(a){return new A.x1(t.A0.a(a),null)}, +$S:525} +A.Ia.prototype={ +a8(){return new A.adZ(null,null,B.m)}} +A.adZ.prototype={ +vo(a){var s,r=this,q=null,p=t.ir +r.CW=p.a(a.$3(r.CW,r.a.w,new A.b1T())) +r.cx=p.a(a.$3(r.cx,r.a.x,new A.b1U())) +s=r.cy +r.a.toString +r.cy=p.a(a.$3(s,q,new A.b1V())) +s=r.db +r.a.toString +r.db=p.a(a.$3(s,q,new A.b1W())) +s=r.dx +r.a.toString +r.dx=p.a(a.$3(s,q,new A.b1X())) +s=r.dy +r.a.toString +r.dy=p.a(a.$3(s,q,new A.b1Y()))}, +A(a){var s,r,q,p,o,n,m=this,l=null,k=m.CW +if(k==null)k=l +else{s=m.ghN() +s=k.a5(0,s.gj(s)) +k=s}s=m.cx +if(s==null)s=l +else{r=m.ghN() +r=s.a5(0,r.gj(r)) +s=r}r=m.cy +if(r==null)r=l +else{q=m.ghN() +q=r.a5(0,q.gj(q)) +r=q}q=m.db +if(q==null)q=l +else{p=m.ghN() +p=q.a5(0,p.gj(p)) +q=p}p=m.dx +if(p==null)p=l +else{o=m.ghN() +o=p.a5(0,o.gj(o)) +p=o}o=m.dy +if(o==null)o=l +else{n=m.ghN() +n=o.a5(0,n.gj(n)) +o=n}return A.hp(q,m.a.r,o,l,k,r,s,p)}} +A.b1T.prototype={ +$1(a){return new A.aR(A.pN(a),null,t.Y)}, +$S:52} +A.b1U.prototype={ +$1(a){return new A.aR(A.pN(a),null,t.Y)}, +$S:52} +A.b1V.prototype={ +$1(a){return new A.aR(A.pN(a),null,t.Y)}, +$S:52} +A.b1W.prototype={ +$1(a){return new A.aR(A.pN(a),null,t.Y)}, +$S:52} +A.b1X.prototype={ +$1(a){return new A.aR(A.pN(a),null,t.Y)}, +$S:52} +A.b1Y.prototype={ +$1(a){return new A.aR(A.pN(a),null,t.Y)}, +$S:52} +A.I7.prototype={ +a8(){return new A.adW(null,null,B.m)}} +A.adW.prototype={ +vo(a){this.z=t.ir.a(a.$3(this.z,this.a.w,new A.b1N()))}, +UP(){var s=this.ghN(),r=this.z +r.toString +this.Q=new A.ax(t.m.a(s),r,A.l(r).h("ax"))}, +A(a){var s=this.Q +s===$&&A.b() +return new A.cY(s,!1,this.a.r,null)}} +A.b1N.prototype={ +$1(a){return new A.aR(A.pN(a),null,t.Y)}, +$S:52} +A.I5.prototype={ +a8(){return new A.adV(null,null,B.m)}} +A.adV.prototype={ +vo(a){this.CW=t.Dh.a(a.$3(this.CW,this.a.w,new A.b1M()))}, +A(a){var s,r=null,q=this.CW +q.toString +s=this.ghN() +s=q.a5(0,s.gj(s)) +return A.fI(this.a.r,r,r,B.aU,!0,s,r,r,B.at)}} +A.b1M.prototype={ +$1(a){return new A.pk(t.em.a(a),null)}, +$S:526} +A.I9.prototype={ +a8(){return new A.adY(null,null,B.m)}} +A.adY.prototype={ +vo(a){var s=this,r=s.CW +s.a.toString +s.CW=t.eJ.a(a.$3(r,B.aG,new A.b1P())) +s.cx=t.ir.a(a.$3(s.cx,s.a.z,new A.b1Q())) +r=t.YJ +s.cy=r.a(a.$3(s.cy,s.a.Q,new A.b1R())) +s.db=r.a(a.$3(s.db,s.a.at,new A.b1S()))}, +A(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.ghN() +r=s.a5(0,r.gj(r)) +s=n.cx +s.toString +q=n.ghN() +q=s.a5(0,q.gj(q)) +s=n.a.Q +p=n.db +p.toString +o=n.ghN() +o=p.a5(0,o.gj(o)) +o.toString +return new A.a78(l,m,r,q,s,o,n.a.r,null)}} +A.b1P.prototype={ +$1(a){return new A.wm(t.m_.a(a),null)}, +$S:527} +A.b1Q.prototype={ +$1(a){return new A.aR(A.pN(a),null,t.Y)}, +$S:52} +A.b1R.prototype={ +$1(a){return new A.dG(t.n8.a(a),null)}, +$S:122} +A.b1S.prototype={ +$1(a){return new A.dG(t.n8.a(a),null)}, +$S:122} +A.GG.prototype={ +m(){var s=this,r=s.c3$ +if(r!=null)r.H(0,s.ghP()) +s.c3$=null +s.b0()}, +cf(){this.cW() +this.cO() +this.hQ()}} +A.oJ.prototype={ +bI(a){return new A.L4(A.cA(null,null,null,t.E,t.X),this,B.an,A.l(this).h("L4"))}} +A.L4.prototype={ +ae7(a,b){var s=this.y2,r=this.$ti,q=r.h("bC<1>?").a(s.i(0,a)),p=q==null +if(!p&&q.gak(q))return +if(b==null)s.n(0,a,A.dI(r.c)) +else{p=p?A.dI(r.c):q +p.F(0,r.c.a(b)) +s.n(0,a,p)}}, +acc(a,b){var s,r=this.$ti,q=r.h("bC<1>?").a(this.y2.i(0,b)) +if(q==null)return +if(!q.gak(q)){s=this.e +s.toString +s=r.h("oJ<1>").a(s).aeb(a,q) +r=s}else r=!0 +if(r)b.ca()}} +A.ky.prototype={ +dh(a){return a.f!==this.f}, +bI(a){var s=new A.GH(A.cA(null,null,null,t.E,t.X),this,B.an,A.l(this).h("GH")) +this.f.P(0,s.gRg()) +return s}} +A.GH.prototype={ +bZ(a,b){var s,r,q=this,p=q.e +p.toString +s=q.$ti.h("ky<1>").a(p).f +r=b.f +if(s!==r){p=q.gRg() +s.H(0,p) +r.P(0,p)}q.aiG(0,b)}, +aO(){var s,r=this +if(r.b3){s=r.e +s.toString +r.Zx(r.$ti.h("ky<1>").a(s)) +r.b3=!1}return r.ZM()}, +avt(){this.b3=!0 +this.el()}, +xM(a){this.Zx(a) +this.b3=!1}, +kJ(){var s=this,r=s.e +r.toString +s.$ti.h("ky<1>").a(r).f.H(0,s.gRg()) +s.yC()}} +A.dO.prototype={} +A.aHl.prototype={ +$1(a){var s,r,q +if(a.k(0,this.a))return!1 +if(a instanceof A.jf){s=a.e +s.toString +s=s instanceof A.dO}else s=!1 +if(s){s=a.e +s.toString +t.og.a(s) +r=A.p(s) +q=this.c +if(!q.p(0,r)){q.F(0,r) +this.d.push(s)}}return!0}, +$S:48} +A.YM.prototype={} +A.rw.prototype={ +A(a){var s,r,q,p=this.d +for(s=this.c,r=s.length,q=0;qMath.abs(0))return B.lR +else return B.iJ}, +ayp(a){var s,r,q=this +q.a.toString +s=q.y +s===$&&A.b() +r=s.r +if(r!=null&&r.a!=null){s.h8(0) +s=q.y +s.sj(0,s.a) +s=q.r +if(s!=null)s.a.H(0,q.gJ7()) +q.r=null}s=q.z +s===$&&A.b() +r=s.r +if(r!=null&&r.a!=null){s.h8(0) +s=q.z +s.sj(0,s.a) +s=q.w +if(s!=null)s.a.H(0,q.gJb()) +q.w=null}q.Q=q.ch=null +q.at=q.d.a.ye() +q.as=q.d.lI(a.b) +q.ax=q.ay}, +ayr(a){var s,r,q,p,o,n,m=this,l=m.d.a.ye(),k=m.x=a.c,j=m.d.lI(k),i=m.ch +if(i===B.iJ)i=m.ch=m.a1H(a) +else if(i==null){i=m.a1H(a) +m.ch=i}if(!m.Iq(i)){m.a.toString +return}switch(m.ch.a){case 1:i=m.at +i.toString +s=m.d +s.sj(0,m.RK(s.a,i*a.d/l)) +r=m.d.lI(k) +i=m.d +s=i.a +q=m.as +q.toString +i.sj(0,m.zd(s,r.a4(0,q))) +p=m.d.lI(k) +k=m.as +k.toString +if(!A.bn6(k).k(0,A.bn6(p)))m.as=p +break +case 2:i=a.r +if(i===0){m.a.toString +return}s=m.ax +s.toString +o=s+i +i=m.d +i.sj(0,m.awZ(i.a,m.ay-o,k)) +m.ay=o +break +case 0:if(a.d!==1){m.a.toString +return}if(m.Q==null){i=m.as +i.toString +m.Q=A.bRN(i,j)}i=m.as +i.toString +n=j.a4(0,i) +i=m.d +i.sj(0,m.zd(i.a,n)) +m.as=m.d.lI(k) +break}m.a.toString}, +ayn(a){var s,r,q,p,o,n,m,l,k,j,i,h=this +h.a.toString +h.as=h.ax=h.at=null +s=h.r +if(s!=null)s.a.H(0,h.gJ7()) +s=h.w +if(s!=null)s.a.H(0,h.gJb()) +s=h.y +s===$&&A.b() +s.sj(0,s.a) +s=h.z +s===$&&A.b() +s.sj(0,s.a) +if(!h.Iq(h.ch)){h.Q=null +return}s=h.ch +if(s===B.iJ){s=a.a.a +if(s.ge9()<50){h.Q=null +return}r=h.d.a.Ob().a +q=r[0] +r=r[1] +h.a.toString +p=A.aEg(0.0000135,q,s.a,0) +h.a.toString +o=A.aEg(0.0000135,r,s.b,0) +s=s.ge9() +h.a.toString +n=A.bxo(s,0.0000135,10) +s=p.gAH() +m=o.gAH() +l=t.Ni +k=A.c5(B.dC,h.y,null) +h.r=new A.ax(k,new A.aR(new A.m(q,r),new A.m(s,m),l),l.h("ax")) +h.y.e=A.dW(0,B.e.bg(n*1000),0) +k.P(0,h.gJ7()) +h.y.bS(0)}else if(s===B.lR){s=a.b +r=Math.abs(s) +if(r<0.1){h.Q=null +return}j=h.d.a.ye() +h.a.toString +i=A.aEg(0.0026999999999999997,j,s/10,0) +h.a.toString +n=A.bxo(r,0.0000135,0.1) +s=i.hK(0,n) +r=t.Y +q=A.c5(B.dC,h.z,null) +h.w=new A.ax(q,new A.aR(j,s,r),r.h("ax")) +h.z.e=A.dW(0,B.e.bg(n*1000),0) +q.P(0,h.gJb()) +h.z.bS(0)}}, +aA2(a){var s,r,q,p,o,n,m,l=this +if(t.Mj.b(a)){if(a.gdR(a)===B.bM){l.a.toString +s=!0}else s=!1 +if(s){l.a.toString +s=a.gcJ(a).U(0,a.gpv()) +r=a.gpv() +q=A.yB(a.gd4(a),null,r,s) +if(!l.Iq(B.iJ)){l.a.toString +return}s=l.d +s.toString +p=s.lI(a.geF()) +s=l.d +s.toString +o=s.lI(a.geF().a4(0,q)) +s=l.d +s.sj(0,l.zd(s.a,o.a4(0,p))) +l.a.toString +return}if(a.gpv().b===0)return +s=a.gpv() +l.a.toString +n=Math.exp(-s.b/200)}else if(t.RH.b(a))n=a.glS(a) +else return +l.a.toString +if(!l.Iq(B.lR)){l.a.toString +return}s=l.d +s.toString +p=s.lI(a.geF()) +s=l.d +s.sj(0,l.RK(s.a,n)) +s=l.d +s.toString +m=s.lI(a.geF()) +s=l.d +s.sj(0,l.zd(s.a,m.a4(0,p))) +l.a.toString}, +axN(){var s,r,q,p,o=this,n=o.y +n===$&&A.b() +n=n.r +if(!(n!=null&&n.a!=null)){o.Q=null +n=o.r +if(n!=null)n.a.H(0,o.gJ7()) +o.r=null +n=o.y +n.sj(0,n.a) +return}n=o.d.a.Ob().a +s=n[0] +n=n[1] +r=o.d.lI(new A.m(s,n)) +n=o.d +n.toString +s=o.r +q=s.b +s=s.a +p=n.lI(q.a5(0,s.gj(s))).a4(0,r) +s=o.d +s.sj(0,o.zd(s.a,p))}, +ayl(){var s,r,q,p,o,n=this,m=n.z +m===$&&A.b() +m=m.r +if(!(m!=null&&m.a!=null)){n.Q=null +m=n.w +if(m!=null)m.a.H(0,n.gJb()) +n.w=null +m=n.z +m.sj(0,m.a) +return}m=n.w +s=m.b +m=m.a +r=s.a5(0,m.gj(m)) +m=n.d.a.ye() +s=n.d +s.toString +q=n.x +q===$&&A.b() +p=s.lI(q) +q=n.d +q.sj(0,n.RK(q.a,r/m)) +o=n.d.lI(n.x) +m=n.d +m.sj(0,n.zd(m.a,o.a4(0,p)))}, +ayC(){this.ad(new A.b7o())}, +aX(){var s,r=this,q=null +r.b9() +r.a.toString +s=A.bNB() +r.d=s +s.P(0,r.ga3G()) +r.y=A.bx(B.A,q,q,0,q,1,q,r) +r.z=A.bx(B.A,q,q,0,q,1,q,r)}, +b1(a){this.bh(a) +this.a.toString}, +m(){var s=this,r=s.y +r===$&&A.b() +r.m() +r=s.z +r===$&&A.b() +r.m() +s.d.H(0,s.ga3G()) +s.a.toString +r=s.d +r.toString +r.ok$=$.aH() +r.k4$=0 +s.alT()}, +A(a){var s,r,q=this,p=null,o=q.a +o.toString +s=q.d.a +r=new A.ai1(o.x,q.e,B.C,!0,s,p,p) +return A.uc(B.ci,A.dY(B.bE,r,B.D,!1,p,p,p,p,p,p,p,p,p,p,p,p,p,p,q.gaym(),q.gayo(),q.gayq(),p,p,p,p,p,p,p,p,p,!1,new A.m(0,-0.005)),q.f,p,p,p,q.gaA1(),p)}, +$iaP:1} +A.b7o.prototype={ +$0(){}, +$S:0} +A.ai1.prototype={ +A(a){var s=this,r=A.zO(s.w,new A.iG(s.c,s.d),null,s.r,!0) +return A.to(r,s.e)}} +A.abd.prototype={ +lI(a){var s=this.a,r=new A.bQ(new Float64Array(16)) +if(r.j6(s)===0)A.r(A.fh(s,"other","Matrix cannot be inverted")) +s=new A.de(new Float64Array(3)) +s.h7(a.a,a.b,0) +s=r.rs(s).a +return new A.m(s[0],s[1])}} +A.RZ.prototype={ +J(){return"_GestureType."+this.b}} +A.aN3.prototype={ +J(){return"PanAxis."+this.b}} +A.W8.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.tt.prototype={ +bI(a){return new A.GK(this,B.an,A.l(this).h("GK"))}} +A.GK.prototype={ +ga7(){return this.$ti.h("lA<1,J>").a(A.bR.prototype.ga7.call(this))}, +ci(a){var s=this.k4 +if(s!=null)a.$1(s)}, +n0(a){this.k4=null +this.py(a)}, +hI(a,b){var s=this +s.w7(a,b) +s.$ti.h("lA<1,J>").a(A.bR.prototype.ga7.call(s)).XK(s.ga31())}, +bZ(a,b){var s,r=this +r.uo(0,b) +s=r.$ti.h("lA<1,J>") +s.a(A.bR.prototype.ga7.call(r)).XK(r.ga31()) +s=s.a(A.bR.prototype.ga7.call(r)) +s.LC$=!0 +s.aa()}, +ph(){var s=this.$ti.h("lA<1,J>").a(A.bR.prototype.ga7.call(this)) +s.LC$=!0 +s.aa() +this.OW()}, +kJ(){this.$ti.h("lA<1,J>").a(A.bR.prototype.ga7.call(this)).XK(null) +this.ZV()}, +awj(a){this.f.E6(this,new A.b7D(this,a))}, +pc(a,b){this.$ti.h("lA<1,J>").a(A.bR.prototype.ga7.call(this)).sbN(a)}, +pe(a,b,c){}, +q9(a,b){this.$ti.h("lA<1,J>").a(A.bR.prototype.ga7.call(this)).sbN(null)}} +A.b7D.prototype={ +$0(){var s,r,q,p,o,n,m,l,k=this,j=null +try{o=k.a +n=o.e +n.toString +j=o.$ti.h("tt<1>").a(n).c.$2(o,k.b) +o.e.toString}catch(m){s=A.ak(m) +r=A.aJ(m) +l=A.Kh(A.bxJ(A.c0("building "+k.a.e.l(0)),s,r,new A.b7E())) +j=l}try{o=k.a +o.k4=o.fE(o.k4,j,null)}catch(m){q=A.ak(m) +p=A.aJ(m) +o=k.a +l=A.Kh(A.bxJ(A.c0("building "+o.e.l(0)),q,p,new A.b7F())) +j=l +o.k4=o.fE(null,j,o.c)}}, +$S:0} +A.b7E.prototype={ +$0(){var s=A.a([],t.F) +return s}, +$S:40} +A.b7F.prototype={ +$0(){var s=A.a([],t.F) +return s}, +$S:40} +A.lA.prototype={ +XK(a){if(J.j(a,this.Vg$))return +this.Vg$=a +this.aa()}} +A.D5.prototype={ +b5(a){var s=new A.TD(null,!0,null,null,A.ay(t.T)) +s.b4() +return s}} +A.TD.prototype={ +bX(a){return 0}, +bQ(a){return 0}, +bR(a){return 0}, +bV(a){return 0}, +da(a){return B.y}, +ce(){var s=this,r=t.k,q=r.a(A.J.prototype.ga9.call(s)) +if(s.LC$||!r.a(A.J.prototype.ga9.call(s)).k(0,s.aa6$)){s.aa6$=r.a(A.J.prototype.ga9.call(s)) +s.LC$=!1 +r=s.Vg$ +r.toString +s.Mc(r,A.l(s).h("lA.0"))}r=s.k3$ +if(r!=null){r.cS(q,!0) +r=s.k3$ +s.id=q.bJ(r.gq(r))}else s.id=new A.U(A.V(1/0,q.a,q.b),A.V(1/0,q.c,q.d))}, +hS(a){var s=this.k3$ +if(s!=null)return s.qf(a) +return this.HL(a)}, +dZ(a,b){var s=this.k3$ +s=s==null?null:s.dm(a,b) +return s===!0}, +aE(a,b){var s=this.k3$ +if(s!=null)a.em(s,b)}} +A.aq5.prototype={ +aw(a){var s +this.eS(a) +s=this.k3$ +if(s!=null)s.aw(a)}, +ap(a){var s +this.eT(0) +s=this.k3$ +if(s!=null)s.ap(0)}} +A.aq6.prototype={} +A.H1.prototype={} +A.bfK.prototype={ +$1(a){return this.a.a=a}, +$S:62} +A.bfL.prototype={ +$1(a){return a.b}, +$S:532} +A.bfM.prototype={ +$1(a){var s,r,q,p +for(s=J.aj(a),r=this.a,q=this.b,p=0;ps.b?B.l1:B.l0}, +x3(a,b,c,d,e){var s=this,r=c==null?s.gdU():c,q=b==null?s.r:b,p=e==null?s.w:e,o=d==null?s.f:d,n=a==null?s.cx:a +return new A.M1(s.a,s.b,r,s.e,o,q,p,s.x,!1,s.z,s.Q,s.as,s.at,s.ax,s.ay,s.ch,s.CW,n)}, +aHt(a,b){return this.x3(null,a,null,null,b)}, +a8O(a){return this.x3(null,null,a,null,null)}, +aHw(a,b){return this.x3(null,null,null,a,b)}, +x_(a){return this.x3(null,a,null,null,null)}, +aHC(a,b,c,d){return this.x3(a,b,null,c,d)}, +aHg(a){return this.x3(null,null,null,a,null)}, +aHs(a,b){return this.x3(null,a,null,b,null)}, +Xl(a,b,c,d){var s,r,q,p,o,n,m=this,l=null +if(!(b||d||c||a))return m +s=m.r +r=b?0:l +q=d?0:l +p=c?0:l +r=s.uZ(a?0:l,r,p,q) +q=m.w +p=b?Math.max(0,q.a-s.a):l +o=d?Math.max(0,q.b-s.b):l +n=c?Math.max(0,q.c-s.c):l +return m.aHt(r,q.uZ(a?Math.max(0,q.d-s.d):l,p,n,o))}, +aOR(a){return this.Xl(!1,!1,!1,a)}, +adb(a,b,c,d){var s,r,q,p,o,n,m=this,l=null +if(!b)!d +s=m.w +r=b?Math.max(0,s.a-m.f.a):l +q=d?Math.max(0,s.b-m.f.b):l +p=c?Math.max(0,s.c-m.f.c):l +o=m.f +n=Math.max(0,s.d-o.d) +s=s.uZ(n,r,p,q) +r=b?0:l +q=d?0:l +p=c?0:l +return m.aHw(o.uZ(0,r,p,q),s)}, +aOS(a){return this.adb(a,!1,!1,!1)}, +aOO(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=a.c,f=a.a,e=a.d,d=a.b,c=h.a +if(new A.U(g-f,e-d).k(0,c)&&new A.m(f,d).k(0,B.i))return h +s=c.a-g +r=c.b-e +g=h.r +e=Math.max(0,g.a-f) +c=Math.max(0,g.b-d) +q=Math.max(0,g.c-s) +g=Math.max(0,g.d-r) +p=h.w +o=Math.max(0,p.a-f) +n=Math.max(0,p.b-d) +m=Math.max(0,p.c-s) +p=Math.max(0,p.d-r) +l=h.f +f=Math.max(0,l.a-f) +d=Math.max(0,l.b-d) +k=Math.max(0,l.c-s) +l=Math.max(0,l.d-r) +j=h.cx +i=A.ab(j).h("ba<1>") +return h.aHC(A.a8(new A.ba(j,new A.aK8(a),i),!0,i.h("z.E")),new A.aK(e,c,q,g),new A.aK(f,d,k,l),new A.aK(o,n,m,p))}, +k(a,b){var s=this +if(b==null)return!1 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.M1&&b.a.k(0,s.a)&&b.b===s.b&&b.gdU().a===s.gdU().a&&b.e===s.e&&b.r.k(0,s.r)&&b.w.k(0,s.w)&&b.f.k(0,s.f)&&b.x.k(0,s.x)&&b.as===s.as&&b.at===s.at&&b.ax===s.ax&&b.Q===s.Q&&b.z===s.z&&b.ay===s.ay&&b.ch===s.ch&&b.CW.k(0,s.CW)&&A.ee(b.cx,s.cx)}, +gu(a){var s=this +return A.X(s.a,s.b,s.gdU().a,s.e,s.r,s.w,s.f,!1,s.as,s.at,s.ax,s.Q,s.z,s.ay,s.ch,s.CW,A.dj(s.cx),B.a,B.a,B.a)}, +l(a){var s=this +return"MediaQueryData("+B.b.ck(A.a(["size: "+s.a.l(0),"devicePixelRatio: "+B.e.aF(s.b,1),"textScaler: "+s.gdU().l(0),"platformBrightness: "+s.e.l(0),"padding: "+s.r.l(0),"viewPadding: "+s.w.l(0),"viewInsets: "+s.f.l(0),"systemGestureInsets: "+s.x.l(0),"alwaysUse24HourFormat: false","accessibleNavigation: "+s.z,"highContrast: "+s.as,"onOffSwitchLabels: "+s.at,"disableAnimations: "+s.ax,"invertColors: "+s.Q,"boldText: "+s.ay,"navigationMode: "+s.ch.b,"gestureSettings: "+s.CW.l(0),"displayFeatures: "+A.i(s.cx)],t.s),", ")+")"}} +A.aK8.prototype={ +$1(a){return this.a.G1(a.gte(a))}, +$S:201} +A.nh.prototype={ +dh(a){return!this.w.k(0,a.w)}, +aeb(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,a7 +for(s=a9.gam(a9),r=this.w,q=a8.w,p=r.cx!==q.cx,o=r.CW,n=q.CW,m=r.ch!==q.ch,l=r.ay!==q.ay,k=r.ax!==q.ax,j=r.at!==q.at,i=r.as!==q.as,h=r.Q!==q.Q,g=r.z!==q.z,f=r.w,e=q.w,d=r.x,c=q.x,b=r.f,a=q.f,a0=r.r,a1=q.r,a2=r.e!==q.e,a3=r.b!==q.b,a4=r.a,a5=q.a,a6=a4.a,a4=a4.b;s.v();){a7=s.gG(s) +if(a7 instanceof A.hy)switch(a7.a){case 0:if(!(a5.a===a6&&a5.b===a4))return!0 +break +case 1:a7=a6>a4?B.l1:B.l0 +if(a7!==(a5.a>a5.b?B.l1:B.l0))return!0 +break +case 2:if(a3)return!0 +break +case 3:if(r.gdU().a!==q.gdU().a)return!0 +break +case 4:if(!r.gdU().k(0,q.gdU()))return!0 +break +case 5:if(a2)return!0 +break +case 6:if(!a0.k(0,a1))return!0 +break +case 7:if(!b.k(0,a))return!0 +break +case 8:if(!d.k(0,c))return!0 +break +case 9:if(!f.k(0,e))return!0 +break +case 10:break +case 11:if(g)return!0 +break +case 12:if(h)return!0 +break +case 13:if(i)return!0 +break +case 14:if(j)return!0 +break +case 15:if(k)return!0 +break +case 16:if(l)return!0 +break +case 17:if(m)return!0 +break +case 18:if(!o.k(0,n))return!0 +break +case 19:if(p)return!0 +break}}return!1}} +A.aKb.prototype={ +$1(a){return A.ni(this.a,A.aY(a,null,t.l).w.a8O(B.aw),null)}, +$S:223} +A.aKa.prototype={ +$1(a){var s=A.aY(a,null,t.l).w +return A.ni(this.c,s.a8O(s.gdU().a8l(0,this.b,this.a)),null)}, +$S:223} +A.aM_.prototype={ +J(){return"NavigationMode."+this.b}} +A.SL.prototype={ +a8(){return new A.aj9(B.m)}} +A.aj9.prototype={ +aX(){this.b9() +$.ap.bd$.push(this)}, +ca(){this.e8() +this.aEi() +this.DI()}, +b1(a){var s,r=this +r.bh(a) +s=r.a +s.toString +if(r.e==null||a.c!==s.c)r.DI()}, +aEi(){var s,r=this +r.a.toString +s=r.c +s.toString +s=A.d9(s,null) +r.d=s +r.e=null}, +DI(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=null,b=d.a.c,a=d.d,a0=b.gnG(),a1=$.dn(),a2=a1.d +if(a2==null){a2=self.window.devicePixelRatio +if(a2===0)a2=1}a2=a0.i7(0,a2) +a0=a1.d +if(a0==null){a0=self.window.devicePixelRatio +if(a0===0)a0=1}s=a==null +r=s?c:a.gdU().a +if(r==null)r=b.b.a.e +q=r===1?B.aw:new A.ki(r) +p=s?c:a.e +if(p==null)p=b.b.a.d +b.gwG() +o=a1.d +if(o==null){o=self.window.devicePixelRatio +if(o===0)o=1}o=A.aAc(B.iB,o) +b.gwG() +n=a1.d +if(n==null){n=self.window.devicePixelRatio +if(n===0)n=1}n=A.aAc(B.iB,n) +m=b.w +l=a1.d +if(l==null){l=self.window.devicePixelRatio +if(l===0)l=1}l=A.aAc(m,l) +b.gwG() +a1=a1.d +if(a1==null){a1=self.window.devicePixelRatio +if(a1===0)a1=1}a1=A.aAc(B.iB,a1) +m=s?c:a.z +if(m==null)m=(b.b.a.a.a&1)!==0 +k=s?c:a.Q +if(k==null)k=(b.b.a.a.a&2)!==0 +j=s?c:a.ax +if(j==null)j=(b.b.a.a.a&4)!==0 +i=s?c:a.ay +if(i==null)i=(b.b.a.a.a&8)!==0 +h=s?c:a.as +if(h==null)h=(b.b.a.a.a&32)!==0 +g=s?c:a.at +if(g==null)g=(b.b.a.a.a&64)!==0 +f=s&&c +a=s?c:a.ch +if(a==null)a=B.fG +b.gwG() +b.gwG() +e=new A.M1(a2,a0,q,p,l,o,n,a1,f===!0,m,k,h,g,j,i,a,new A.a0R(c),B.af8) +if(!e.k(0,d.e))d.ad(new A.b8e(d,e))}, +UG(){this.DI()}, +a9y(){if(this.d==null)this.DI()}, +a9x(){if(this.d==null)this.DI()}, +m(){B.b.E($.ap.bd$,this) +this.b0()}, +A(a){var s=this.e +s.toString +return A.ni(this.a.e,s,null)}} +A.b8e.prototype={ +$0(){this.a.e=this.b}, +$S:0} +A.apM.prototype={} +A.amq.prototype={ +b5(a){var s=new A.alA(this.e,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.saGt(this.e)}} +A.alA.prototype={ +saGt(a){var s=this,r=s.D +if(r===a)return +if(s.y!=null)r.H(0,s.gB5()) +s.D=a +a.P(0,s.gB5()) +s.bY()}, +grG(){var s=this.D.a,r=A.O.prototype.grG.call(this) +return new A.L(r.a+s.a,r.b+s.b,r.c-s.c,r.d-s.d)}, +aw(a){this.yM(a) +this.D.P(0,this.gB5())}, +ap(a){this.D.H(0,this.gB5()) +this.uq(0)}, +hy(a){this.jA(a) +a.a=!0}} +A.a61.prototype={ +A(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null +switch(A.c3().a){case 1:case 3:case 5:s=!1 +break +case 0:case 2:case 4:s=!0 +break +default:s=g}r=h.d&&s +q=new A.aKH(h,a) +p=h.x +o=r&&h.r!=null?q:g +n=r&&h.r!=null?q:g +m=r?h.r:g +if(r&&h.r!=null){l=a.aj(t.I) +l.toString +l=l.w}else l=g +k=h.c +k=A.nj(new A.eX(B.iV,k==null?g:new A.ts(k,g,g),g),B.c2,g,g,g,g) +j=new A.bu(A.bL(g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,g,p!=null||!1?new A.Oj(p,g):g,g,g,g,g,m,g,g,g,g,g,g,g,g,g,g,g,g,n,g,g,g,g,g,g,g,g,g,g,g,o,g,g,g,g,g,g,l,g,g,g,g),!1,!1,!1,!1,k,g) +i=!r||!1 +if(!i&&h.w!=null){p=h.w +p.toString +j=new A.amq(p,j,g)}return A.bq0(new A.qk(i,new A.ajk(j,q,g),g))}} +A.aKH.prototype={ +$0(){if(this.a.d)A.aMa(this.b) +else A.aaD(B.as4)}, +$S:0} +A.Xv.prototype={ +A(a){var s=this,r=t.Bs.a(s.c) +return A.aKG(!0,s.x,r.gj(r),s.e,null,s.f,s.y)}} +A.G0.prototype={ +n5(a){if(this.aK==null)return!1 +return this.yF(a)}, +aaK(a){}, +aaL(a,b){var s=this.aK +if(s!=null)this.e7("onAnyTapUp",s)}, +LV(a,b,c){}} +A.ae6.prototype={ +a8z(){var s=t.S,r=A.dI(s) +return new A.G0(B.aX,18,B.dM,A.I(s,t.SP),r,null,null,A.HT(),A.I(s,t.Au))}, +ab9(a){a.aK=this.a}} +A.ajk.prototype={ +A(a){return new A.nv(this.c,A.am([B.ayC,new A.ae6(this.d)],t.n,t.xR),B.bE,!1,null)}} +A.Mo.prototype={ +A(a){var s,r,q=this,p=a.aj(t.I) +p.toString +s=A.a([],t.p) +r=q.c +if(r!=null)s.push(A.Lp(r,B.m9)) +r=q.d +if(r!=null)s.push(A.Lp(r,B.ma)) +r=q.e +if(r!=null)s.push(A.Lp(r,B.mb)) +return new A.tv(new A.bdQ(q.f,q.r,p.w,null),s,null)}} +A.UW.prototype={ +J(){return"_ToolbarSlot."+this.b}} +A.bdQ.prototype={ +G4(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this +if(e.b.i(0,B.m9)!=null){s=a.a +r=a.b +q=e.iG(B.m9,new A.aN(0,s,r,r)).a +switch(e.f.a){case 0:p=s-q +break +case 1:p=0 +break +default:p=null}e.jj(B.m9,new A.m(p,0))}else q=0 +if(e.b.i(0,B.mb)!=null){o=e.iG(B.mb,A.Bd(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.jj(B.mb,new A.m(n,(a.b-o.b)/2))}else m=0 +if(e.b.i(0,B.ma)!=null){s=a.a +r=e.e +l=Math.max(s-q-m-r*2,0) +k=e.iG(B.ma,A.Bd(a).Eg(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=s.c;q.v();){r=q.d +if(r==null)r=s.a(r) +if(r.a===this)return!1 +r=r.d.a +if(r<=10&&r>=1)return!0}return!1}, +gFr(){var s=this.a +if(s==null)return!1 +s=s.a1q(A.bmy(this)) +s=s==null?null:s.gabz() +return s===!0}} +A.aSa.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.y.gkq() +if(r!=null)r.lG()}}, +$S:19} +A.aS9.prototype={ +$1(a){var s=this.a.a +if(s!=null){s=s.y.gkq() +if(s!=null)s.lG()}}, +$S:19} +A.k0.prototype={ +l(a){var s=this.a +s=s==null?"none":'"'+s+'"' +return"RouteSettings("+s+", "+A.i(this.b)+")"}} +A.hn.prototype={ +l(a){return'Page("'+A.i(this.a)+'", '+A.i(this.c)+", "+A.i(this.b)+")"}} +A.oY.prototype={} +A.xt.prototype={ +dh(a){return a.f!=this.f}} +A.r6.prototype={} +A.abe.prototype={} +A.a0M.prototype={ +aP6(a,b,c){var s,r,q,p,o=A.a([],t.Fm),n=new A.ayu(a,c,o) +n.$2(null,b.length===0) +for(s=b.length,r=0;r=10)return +this.x=!0 +this.d=B.PI}, +aGF(a,b){var s=this +if(s.d.a>=10)return +s.x=!0 +s.w=b +s.d=B.aCF}, +cU(a,b){return this.aGF(a,b,t.z)}, +m(){var s,r,q,p,o,n,m,l=this,k={} +l.d=B.aCC +s=l.a +r=s.gMY() +q=new A.bbl() +p=A.ab(r) +o=new A.ba(r,q,p.h("ba<1>")) +if(!o.gam(o).v()){l.d=B.lZ +s.m() +return}k.a=o.gt(o) +n=s.a +n.f.F(0,l) +for(s=B.b.gam(r),p=new A.jt(s,q,p.h("jt<1>"));p.v();){r=s.gG(s) +m=A.b6("listener") +q=new A.bbm(k,l,r,m,n) +m.b=q +r=r.d +if(r!=null)r.P(0,q)}}, +gaei(){var s=this.d.a +return s<=7&&s>=1}, +gabz(){var s=this.d.a +return s<=10&&s>=1}, +abX(a){var s +for(s=this.a;s.gGX();)s.qK(a) +this.dO(a) +this.y=!1}} +A.bbn.prototype={ +$0(){var s=this.a +if(s.d===B.PK){s.d=B.h4 +this.b.In()}}, +$S:0} +A.bbl.prototype={ +$1(a){return a.gac3()}, +$S:540} +A.bbm.prototype={ +$0(){var s=this,r=s.a;--r.a +s.c.H(0,s.d.aH()) +if(r.a===0)return A.fE(new A.bbk(s.b,s.e))}, +$S:0} +A.bbk.prototype={ +$0(){var s=this.a +if(!this.b.f.E(0,s))return +s.d=B.lZ +s.a.m()}, +$S:0} +A.bbo.prototype={ +$1(a){return a.a===this.a}, +$S:92} +A.vC.prototype={} +A.GW.prototype={ +tR(a){a.J3(this.b,this.a,B.ep,!1)}} +A.GV.prototype={ +tR(a){var s=$.of() +A.ql(a) +if(!s.a.get(a).cx.a)a.J3(this.a,this.b,B.eq,!1)}} +A.SY.prototype={ +tR(a){}} +A.SZ.prototype={ +tR(a){var s=this.a,r=s.gtI() +if(r)a.J3(this.b,s,B.ep,!1)}} +A.ahy.prototype={ +I(a,b){B.b.I(this.a,b) +if(J.hZ(b))this.ag()}, +i(a,b){return this.a[b]}, +gam(a){var s=this.a +return new J.cI(s,s.length,A.ab(s).h("cI<1>"))}, +l(a){return A.xM(this.a,"[","]")}, +$iat:1} +A.ls.prototype={ +atv(){var s,r,q=this,p=q.zN(),o=A.b6("routeBlocksPop"),n=!p +if(n){s=q.z9(A.pU()) +o.sdQ(s!=null&&s.a.gvE()===B.fT)}else o.sdQ(!1) +r=new A.ul(!n||o.aH()) +n=$.cB +switch(n.aK$.a){case 4:q.c.fY(r) +break +case 0:case 2:case 3:case 1:n.y2$.push(new A.aM2(q,r)) +break}}, +aX(){var s,r,q,p=this +p.b9() +for(s=J.al(p.a.x);s.v();){r=s.gG(s) +q=$.of() +q.a.set(r,p)}p.as=p.a.x +s=p.c.ou(t.mS) +if(s==null)s=null +else{s=s.e +s.toString}t._I.a(s) +p.T6(s==null?null:s.f) +if(p.a.as)B.l_.qU("selectSingleEntryHistory",t.H) +p.e.P(0,p.ga2l())}, +kF(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g=this +g.rl(g.at,"id") +s=g.r +g.rl(s,"history") +g.a1x() +g.d=new A.bq(null,t.ku) +r=g.e +r.I(0,s.ads(null,g)) +for(q=g.a.c,p=q.length,o=t.xs,n=r.a,m=0;m")),q=q.c;r.v();){p=r.d;(p==null?q.a(p):p).a.KI()}}, +a1x(){var s,r,q +this.f.ari(new A.aM1(),!0) +for(s=this.e,r=s.a;!s.gak(s);){q=r.pop() +s.ag() +A.bt1(q,!1)}}, +T6(a){var s,r,q=this +if(q.Q!=a){if(a!=null)$.of().n(0,a,q) +s=q.Q +if(s==null)s=null +else{r=$.of() +A.ql(s) +s=r.a.get(s)}if(s===q){s=$.of() +r=q.Q +r.toString +s.n(0,r,null)}q.Q=a +q.a6v()}}, +a6v(){var s=this,r=s.Q,q=s.a +if(r!=null)s.as=J.bpn(q.x,A.a([r],t.tc)) +else s.as=q.x}, +b1(a){var s,r,q,p=this +p.akt(a) +s=a.x +r=J.hC(s) +if(!r.k(s,p.a.x)){for(s=r.gam(s);s.v();){r=s.gG(s) +q=$.of() +q.a.set(r,null)}for(s=J.al(p.a.x);s.v();){r=s.gG(s) +q=$.of() +q.a.set(r,p)}p.a6v()}if(a.c!==p.a.c&&!p.gu1())p.axt() +for(s=p.e.a,r=A.ab(s),s=new J.cI(s,s.length,r.h("cI<1>")),r=r.c;s.v();){q=s.d;(q==null?r.a(q):q).a.KI()}}, +fd(){var s,r,q=this.as +q===$&&A.b() +q=J.al(q) +for(;q.v();){s=q.gG(q) +r=$.of() +r.a.set(s,null)}this.rS()}, +cf(){var s,r,q +this.akq() +s=this.as +s===$&&A.b() +s=J.al(s) +for(;s.v();){r=s.gG(s) +q=$.of() +q.a.set(r,this)}}, +m(){var s,r,q=this +q.T6(null) +q.y.m() +q.a1x() +q.at.m() +q.r.m() +s=q.cx +r=$.aH() +s.ok$=r +s.k4$=0 +s=q.e +s.H(0,q.ga2l()) +s.ok$=r +s.k4$=0 +q.aku()}, +ga_z(){var s,r,q,p=A.a([],t.wi) +for(s=this.e.a,r=A.ab(s),s=new J.cI(s,s.length,r.h("cI<1>")),r=r.c;s.v();){q=s.d +B.b.I(p,(q==null?r.a(q):q).a.gMY())}return p}, +axt(){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=null,a4={} +a4.a=a4.b=0 +a4.c=a2.a.c.length-1 +s=a2.e +r=a4.d=s.gt(s)-1 +q=t.uD +p=A.a([],q) +o=A.I(t.IA,t.Z4) +for(n=s.a,m=a3,l=0;l<=r;l=i){k=n[l] +if(!k.c){J.ff(o.cK(0,m,new A.aM3()),k) +j=l+1 +a4.a=j +i=j +continue}i=a4.b +if(i>a4.c)break +h=a2.a.c[i] +if(!k.TU(h))break +g=k.a +if(g.b!==h){g.b=h +g.pK()}p.push(k) +a4.b=i+1 +j=l+1 +a4.a=j +i=j +m=k}f=A.a([],q) +q=r +while(!0){if(!(l<=q&&a4.b<=a4.c))break +c$1:{i=n[q] +if(!i.c){f.push(i) +r=q-1 +a4.d=r +q=r +break c$1}g=a2.a.c +e=a4.c +if(!i.TU(g[e]))break +if(f.length!==0){o.cK(0,i,new A.aM4(f)) +B.b.ab(f)}r=q-1 +a4.d=r +a4.c=e-1 +q=r}}r=q+f.length +a4.d=r +q=t.Ez +d=A.I(t.f0,q) +c=A.aW(q) +for(q=t.pw;l<=r;){i=n[l];++l +if(!i.c)continue +g=q.a(i.a.b).c +if(g==null)continue +e=i.d.a +if(!(e<=7&&e>=1)){c.F(0,i) +continue}d.n(0,g,i)}for(i=t.xs,b=!1;g=a4.b,g<=a4.c;){a=a2.a.c[g] +a4.b=g+1 +g=a.c +if(g==null||!d.aq(0,g)||!d.i(0,g).TU(a)){g=a2.c +g.toString +g=a.v_(g) +e=$.aru() +p.push(new A.hA(g,a3,!0,B.PH,e,new A.pM(new WeakRef(e),i),e)) +b=!0}else{g=d.E(0,g) +g.toString +e=g.a +if(e.b!==a){e.b=a +e.pK()}p.push(g)}}a0=A.I(t.oW,t.Kh) +for(;i=a4.a,i<=a4.d;){k=n[i] +a4.a=i+1 +if(!k.c){J.ff(o.cK(0,m,new A.aM5()),k) +if(m.y){i=k.d.a +i=i<=7&&i>=1}else i=!1 +if(i)k.y=!0 +continue}i=q.a(k.a.b).c +if(i==null||d.aq(0,i)||c.p(0,k)){a0.n(0,m,k) +i=k.d.a +if(i<=7&&i>=1)k.y=!0}m=k}a4.c=a2.a.c.length-1 +r=s.gt(s)-1 +a4.d=r +q=i +while(!0){if(!(q<=r&&a4.b<=a4.c))break +c$4:{k=n[q] +if(!k.c){J.ff(o.cK(0,m,new A.aM6()),k) +break c$4}i=a2.a.c +g=a4.b +h=i[g] +i=k.a +if(i.b!==h){i.b=h +i.pK()}p.push(k) +j=q+1 +a4.a=j +a4.b=g+1 +q=j +m=k}}if(b||a0.a!==0){a2.a.toString +a1=B.S0.aP6(a0,p,o) +a1=new A.iz(a1,A.ab(a1).h("iz<1,hA>"))}else a1=p +q=n.length +B.b.ab(n) +if(q!==0)s.ag() +if(o.aq(0,a3)){q=o.i(0,a3) +q.toString +s.I(0,q)}for(q=J.al(a1);q.v();){i=q.gG(q) +n.push(i) +s.ag() +if(o.aq(0,i)){i=o.i(0,i) +i.toString +B.b.I(n,i) +if(J.hZ(i))s.ag()}}a2.In()}, +Io(a3){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1=this,a2=null +a1.ch=!0 +s=a1.e +r=s.gt(s)-1 +q=s.a +p=q[r] +o=r>0?q[r-1]:a2 +n=A.a([],t.uD) +$label0$1:for(m=a1.x,l=t.xs,k=a1.w,j=a2,i=j,h=!1,g=!1;r>=0;){switch(p.d.a){case 1:f=a1.uw(r-1,A.pU()) +e=f>=0?q[f]:a2 +e=e==null?a2:e.a +d=p.a +d.a=a1 +d.vv() +p.d=B.aCD +k.iV(0,new A.GW(d,e)) +continue $label0$1 +case 2:if(h||i==null){e=p.a +e.Ev() +p.d=B.h4 +if(i==null)e.Ew(a2) +continue $label0$1}break +case 3:case 4:case 6:e=o==null?a2:o.a +f=a1.uw(r-1,A.pU()) +d=f>=0?q[f]:a2 +d=d==null?a2:d.a +p.aK8(i==null,a1,e,d) +if(p.d===B.h4)continue $label0$1 +break +case 5:if(!g&&j!=null){p.a.Ae(j) +p.f=new A.pM(new WeakRef(j),l)}g=!0 +break +case 7:if(!g&&j!=null){p.a.Ae(j) +p.f=new A.pM(new WeakRef(j),l)}h=!0 +g=!0 +break +case 8:f=a1.uw(r,A.WT()) +e=f>=0?q[f]:a2 +if(!p.aK7(a1,e==null?a2:e.a))continue $label0$1 +if(!g){if(j!=null){p.a.Ae(j) +p.f=new A.pM(new WeakRef(j),l)}j=p.a}e=p.a +f=a1.uw(r,A.WT()) +d=f>=0?q[f]:a2 +m.iV(0,new A.GV(e,d==null?a2:d.a)) +if(p.d===B.qc)continue $label0$1 +h=!0 +break +case 11:break +case 9:e=p.a +d=p.w +if(d==null)d=a2 +e=e.d.a +if((e.a&30)!==0)A.r(A.R("Future already completed")) +e.m2(d) +p.w=null +p.d=B.PI +continue $label0$1 +case 10:if(!g){if(j!=null)p.a.Ae(j) +j=a2}f=a1.uw(r,A.WT()) +e=f>=0?q[f]:a2 +e=e==null?a2:e.a +p.d=B.aCB +if(p.x)m.iV(0,new A.SY(p.a,e)) +continue $label0$1 +case 12:if(!h&&i!=null)break +p.d=B.qc +continue $label0$1 +case 13:p=B.b.k0(q,r) +s.ag() +n.push(p) +p=i +break +case 14:case 15:case 0:break}--r +c=r>0?q[r-1]:a2 +i=p +p=o +o=c}a1.arz() +a1.arB() +if(a1.a.as){b=a1.z9(A.pU()) +a=b==null?a2:b.a.b.a +if(a!=null&&a!==a1.ax){A.bux(a2,!1,a2,A.dR(a,0,a2)) +a1.ax=a}}for(q=n.length,a0=0;a0=0;){s=l[k] +r=s.d.a +if(!(r<=12&&r>=3)){--k +continue}q=this.asm(k+1,A.bza()) +r=q==null +p=r?m:q.a +if(p!=s.r){if(!((r?m:q.a)==null&&J.j(s.f.a.deref(),s.r))){p=s.a +p.Ew(r?m:q.a)}s.r=r?m:q.a}--k +o=this.uw(k,A.bza()) +n=o>=0?l[o]:m +r=n==null +p=r?m:n.a +if(p!=s.e){p=s.a +p.Ex(r?m:n.a) +s.e=r?m:n.a}}}, +a1X(a,b){a=this.uw(a,b) +return a>=0?this.e.a[a]:null}, +uw(a,b){var s=this.e.a +while(!0){if(!(a>=0&&!b.$1(s[a])))break;--a}return a}, +asm(a,b){var s=this.e,r=s.a +while(!0){if(!(a?") +q=r.a(this.a.r.$1(s)) +return q==null&&!b?r.a(this.a.w.$1(s)):q}, +Sv(a,b,c){return this.Jr(a,!1,b,c)}, +Bj(a){var s=this.e +s.a.push(A.bwc(a,B.qd,!1,null)) +s.ag() +this.In() +this.PB() +return a.d.a}, +zN(){var s=this.e,r=s.gam(s),q=new A.jt(r,A.pU(),A.l(s).h("jt")) +if(!q.v())return!1 +if(r.gG(r).a.gGX())return!0 +if(!q.v())return!1 +return!0}, +FN(a){var s=0,r=A.y(t.y),q,p=this,o,n,m +var $async$FN=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)$async$outer:switch(s){case 0:m=p.z9(A.pU()) +if(m==null){q=!1 +s=1 +break}o=m.a +s=3 +return A.t(o.pr(),$async$FN) +case 3:n=c +if(p.c==null){q=!0 +s=1 +break}if(n===B.fT){q=!0 +s=1 +break}if(m!==p.z9(A.pU())){q=!0 +s=1 +break}switch(o.gvE().a){case 2:q=!1 +s=1 +break $async$outer +case 0:p.dO(a) +q=!0 +s=1 +break $async$outer +case 1:o.WE(!1) +q=!0 +s=1 +break $async$outer}case 1:return A.w(q,r)}}) +return A.x($async$FN,r)}, +aMA(a){return this.FN(a,t.X)}, +Mw(){return this.FN(null,t.X)}, +Bh(a){var s=this,r=s.e.aLW(0,A.pU()) +if(r.c){if(s.a.d.$2(r.a,a)&&r.d===B.h4)r.d=B.qe}else r.dO(a) +if(r.d===B.qe)s.Io(!1) +s.PB()}, +i2(){return this.Bh(null,t.X)}, +dO(a){return this.Bh(a,t.X)}, +aaa(a){var s,r=this,q=r.e.a,p=B.b.xw(q,A.bmy(a),0) +q=q[p] +if(q.c&&q.d.a<8){s=r.a1X(p-1,A.WT()) +s=s==null?null:s.a +r.x.iV(0,new A.GV(a,s))}q.d=B.qc +if(!r.ch)r.Io(!1)}, +sa73(a){this.CW=a +this.cx.sj(0,a>0)}, +aIg(){var s,r,q,p,o=this +o.sa73(o.CW+1) +if(o.CW===1){s=o.e +r=o.uw(s.gt(s)-1,A.WT()) +q=s.a[r].a +p=!q.gGX()&&r>0?o.a1X(r-1,A.WT()).a:null +s=o.as +s===$&&A.b() +s=J.al(s) +for(;s.v();)s.gG(s).J3(q,p,B.eq,!0)}}, +Lj(){var s,r=this +r.sa73(r.CW-1) +if(r.CW===0){s=r.as +s===$&&A.b() +s=J.al(s) +for(;s.v();)s.gG(s).Lj()}}, +axs(a){this.cy.F(0,a.gcu())}, +aum(a){this.cy.E(0,a.gcu())}, +PB(){if($.cB.aK$===B.fV){var s=this.d +s===$&&A.b() +s=$.ap.Y$.z.i(0,s) +this.ad(new A.aM0(s==null?null:s.xn(t.MY)))}s=this.cy +B.b.al(A.a8(s,!0,A.l(s).c),$.ap.gaG8())}, +a1q(a){var s,r,q +for(s=this.e.a,r=A.ab(s),s=new J.cI(s,s.length,r.h("cI<1>")),r=r.c;s.v();){q=s.d +if(q==null)q=r.a(q) +if(a.$1(q))return q}return null}, +z9(a){var s,r,q,p,o +for(s=this.e.a,r=A.ab(s),s=new J.cI(s,s.length,r.h("cI<1>")),r=r.c,q=null;s.v();){p=s.d +o=p==null?r.a(p):p +if(a.$1(o))q=o}return q}, +A(a){var s,r,q=this,p=null,o=q.gaul(),n=A.xj(a),m=q.cX$,l=q.d +l===$&&A.b() +s=q.a.at +if(l.gR()==null){r=q.ga_z() +r=J.m1(r.slice(0),A.ab(r).c)}else r=B.C5 +return new A.xt(p,new A.dB(new A.aM7(q,a),A.uc(B.ci,new A.Xl(!1,A.brE(A.tJ(!0,p,A.PP(m,new A.yr(r,s,l)),p,p,p,q.y,!1,p,p,p,p,p,!0),n),p),p,o,q.gaxr(),p,p,o),p,t.w3),p)}, +$iaP:1} +A.aM2.prototype={ +$1(a){var s=this.a.c +if(s==null)return +s.fY(this.b)}, +$S:5} +A.aM8.prototype={ +$1(a){var s,r,q=a.b.a +if(q!=null){s=this.a.at +r=s.y +if(r==null)r=s.$ti.h("dv.T").a(r) +s.P0(0,r+1) +q=new A.ajr(r,q,null,B.qf)}else q=null +return A.bwc(a,B.lY,!1,q)}, +$S:543} +A.aM1.prototype={ +$1(a){a.d=B.lZ +a.a.m() +return!0}, +$S:92} +A.aM3.prototype={ +$0(){return A.a([],t.uD)}, +$S:126} +A.aM4.prototype={ +$0(){return A.hl(this.a,!0,t.Ez)}, +$S:126} +A.aM5.prototype={ +$0(){return A.a([],t.uD)}, +$S:126} +A.aM6.prototype={ +$0(){return A.a([],t.uD)}, +$S:126} +A.aM0.prototype={ +$0(){var s=this.a +if(s!=null)s.sa7j(!0)}, +$S:0} +A.aM7.prototype={ +$1(a){if(a.a||!this.a.zN())return!1 +this.b.fY(B.anc) +return!0}, +$S:199} +A.TR.prototype={ +J(){return"_RouteRestorationType."+this.b}} +A.alS.prototype={ +gabB(){return!0}, +KQ(){return A.a([this.a.a],t.jl)}} +A.ajr.prototype={ +KQ(){var s=this,r=s.akQ(),q=A.a([s.c,s.d],t.jl),p=s.e +if(p!=null)q.push(p) +B.b.I(r,q) +return r}, +v_(a){var s=a.Sv(this.d,this.e,t.z) +s.toString +return s}, +gadr(){return this.c}} +A.bm7.prototype={ +gabB(){return!1}, +KQ(){A.bKK(this.d)}, +v_(a){var s=a.c +s.toString +return this.d.$2(s,this.e)}, +gadr(){return this.c}} +A.ahz.prototype={ +bZ(a0,a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=null,a=c.y==null +if(a)c.y=A.I(t.N,t.UX) +s=t.jl +r=A.a([],s) +q=c.y +q.toString +p=J.b7(q,null) +if(p==null)p=B.cM +o=A.I(t.v,t.UX) +q=c.y +q.toString +n=J.bES(J.iu(q)) +for(q=a1.a,m=A.ab(q),q=new J.cI(q,q.length,m.h("cI<1>")),m=m.c,l=b,k=a,j=!0;q.v();){i=q.d +h=i==null?m.a(i):i +if(h.d.a>7){i=h.a +i.c.sj(0,b) +continue}if(h.c){k=k||r.length!==J.b3(p) +if(r.length!==0){g=l==null?b:l.gi5() +o.n(0,g,r) +n.E(0,g)}j=h.gi5()!=null +i=h.a +f=j?h.gi5():b +i.c.sj(0,f) +if(j){r=A.a([],s) +i=c.y +i.toString +p=J.b7(i,h.gi5()) +if(p==null)p=B.cM}else{r=B.cM +p=B.cM}l=h +continue}if(j){i=h.b +i=i==null?b:i.gabB() +j=i===!0}else j=!1 +i=h.a +f=j?h.gi5():b +i.c.sj(0,f) +if(j){i=h.b +f=i.b +i=f==null?i.b=i.KQ():f +if(!k){f=J.aj(p) +e=f.gt(p) +d=r.length +k=e<=d||!J.j(f.i(p,d),i)}else k=!0 +B.b.F(r,i)}}k=k||r.length!==J.b3(p) +c.ark(r,l,o,n) +if(k||n.gd2(n)){c.y=o +c.ag()}}, +ark(a,b,c,d){var s +if(a.length!==0){s=b==null?null:b.gi5() +c.n(0,s,a) +d.E(0,s)}}, +ab(a){if(this.y==null)return +this.y=null +this.ag()}, +ads(a,b){var s,r,q,p,o,n,m=A.a([],t.uD) +if(this.y!=null)s=a!=null&&a.gi5()==null +else s=!0 +if(s)return m +s=this.y +s.toString +r=J.b7(s,a==null?null:a.gi5()) +if(r==null)return m +for(s=J.al(r),q=t.xs;s.v();){p=A.bPH(s.gG(s)) +o=p.v_(b) +n=$.aru() +m.push(new A.hA(o,p,!1,B.lY,n,new A.pM(new WeakRef(n),q),n))}return m}, +L_(){return null}, +AL(a){a.toString +return J.Xi(t.f.a(a),new A.b6M(),t.v,t.UX)}, +ab5(a){this.y=a}, +Bz(){return this.y}, +gAr(a){return this.y!=null}} +A.b6M.prototype={ +$2(a,b){return new A.aS(A.af(a),A.hl(t.j.a(b),!0,t.K),t.qE)}, +$S:545} +A.ul.prototype={ +l(a){return"NavigationNotification canHandlePop: "+this.a}} +A.b8U.prototype={ +$2(a,b){if(!a.a)a.H(0,b)}, +$S:61} +A.T_.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.T0.prototype={ +b1(a){this.bh(a) +this.x8()}, +ca(){var s,r,q,p,o=this +o.e8() +s=o.cX$ +r=o.gu1() +q=o.c +q.toString +q=A.uM(q) +o.jf$=q +p=o.uJ(q,r) +if(r){o.kF(s,o.hd$) +o.hd$=!1}if(p)if(s!=null)s.m()}, +m(){var s,r=this +r.je$.al(0,new A.b8U()) +s=r.cX$ +if(s!=null)s.m() +r.cX$=null +r.akr()}} +A.apA.prototype={} +A.a6o.prototype={ +l(a){var s=A.a([],t.s) +this.fX(s) +return"Notification("+B.b.ck(s,", ")+")"}, +fX(a){}} +A.dB.prototype={ +bI(a){return new A.T1(this,B.an,this.$ti.h("T1<1>"))}} +A.T1.prototype={ +acj(a){var s,r=this.e +r.toString +s=this.$ti +s.h("dB<1>").a(r) +if(s.c.b(a))return r.d.$1(a) +return!1}, +xM(a){}} +A.m2.prototype={} +A.apR.prototype={} +A.a6D.prototype={ +J(){return"OverflowBarAlignment."+this.b}} +A.a6C.prototype={ +b5(a){var s=this,r=null,q=a.aj(t.I) +q.toString +q=q.w +q=new A.H8(s.e,s.f,s.r,s.w,s.x,q,B.n,0,r,r,A.ay(t.T)) +q.b4() +q.I(0,r) +return q}, +bb(a,b){var s,r=this +t.Tq.a(b) +b.sOx(0,r.e) +b.sjI(r.f) +b.saNJ(r.r) +b.saNH(r.w) +b.saNI(r.x) +s=a.aj(t.I) +s.toString +b.scz(s.w) +b.smB(B.n)}} +A.pB.prototype={} +A.H8.prototype={ +sOx(a,b){if(this.B===b)return +this.B=b +this.aa()}, +sjI(a){if(this.W==a)return +this.W=a +this.aa()}, +saNJ(a){if(this.a6===a)return +this.a6=a +this.aa()}, +saNH(a){if(this.an===a)return +this.an=a +this.aa()}, +saNI(a){if(this.ao===a)return +this.ao=a +this.aa()}, +scz(a){if(this.aN===a)return +this.aN=a +this.aa()}, +smB(a){var s=this +if(a===s.aZ)return +s.aZ=a +s.b_() +s.bY()}, +fR(a){if(!(a.b instanceof A.pB))a.b=new A.pB(null,null,B.i)}, +bR(a){var s,r,q,p,o,n=this,m=n.a2$ +if(m==null)return 0 +for(s=A.l(n).h("ar.1"),r=0;m!=null;){r+=m.aA(B.ae,1/0,m.gbW()) +q=m.b +q.toString +m=s.a(q).a3$}q=n.B +p=n.d8$ +m=n.a2$ +if(r+q*(p-1)>a){for(o=0;m!=null;){o+=m.aA(B.aF,a,m.gcs()) +q=m.b +q.toString +m=s.a(q).a3$}return o+n.a6*(n.d8$-1)}else{for(o=0;m!=null;){o=Math.max(o,m.aA(B.aF,a,m.gcs())) +q=m.b +q.toString +m=s.a(q).a3$}return o}}, +bV(a){var s,r,q,p,o,n=this,m=n.a2$ +if(m==null)return 0 +for(s=A.l(n).h("ar.1"),r=0;m!=null;){r+=m.aA(B.ae,1/0,m.gbW()) +q=m.b +q.toString +m=s.a(q).a3$}q=n.B +p=n.d8$ +m=n.a2$ +if(r+q*(p-1)>a){for(o=0;m!=null;){o+=m.aA(B.bt,a,m.gcR()) +q=m.b +q.toString +m=s.a(q).a3$}return o+n.a6*(n.d8$-1)}else{for(o=0;m!=null;){o=Math.max(o,m.aA(B.bt,a,m.gcR())) +q=m.b +q.toString +m=s.a(q).a3$}return o}}, +bX(a){var s,r,q,p=this,o=p.a2$ +if(o==null)return 0 +for(s=A.l(p).h("ar.1"),r=0;o!=null;){r+=o.aA(B.ae,1/0,o.gbW()) +q=o.b +q.toString +o=s.a(q).a3$}return r+p.B*(p.d8$-1)}, +bQ(a){var s,r,q,p=this,o=p.a2$ +if(o==null)return 0 +for(s=A.l(p).h("ar.1"),r=0;o!=null;){r+=o.aA(B.ao,1/0,o.gc1()) +q=o.b +q.toString +o=s.a(q).a3$}return r+p.B*(p.d8$-1)}, +hS(a){return this.L7(a)}, +da(a){var s,r,q,p,o,n,m,l,k,j=this,i=j.a2$ +if(i==null)return new A.U(A.V(0,a.a,a.b),A.V(0,a.c,a.d)) +s=a.b +r=new A.aN(0,s,0,a.d) +for(q=A.l(j).h("ar.1"),p=0,o=0,n=0;i!=null;){m=i.lO(r) +p+=m.a +l=m.b +o=Math.max(o,l) +n+=l+j.a6 +l=i.b +l.toString +i=q.a(l).a3$}k=p+j.B*(j.d8$-1) +if(k>s)return a.bJ(new A.U(s,n-j.a6)) +else return a.bJ(new A.U(j.W==null?k:s,o))}, +ce(){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="RenderBox was not laid out: ",a4={},a5=a4.a=a2.a2$ +if(a5==null){s=t.k.a(A.J.prototype.ga9.call(a2)) +a2.id=new A.U(A.V(0,s.a,s.b),A.V(0,s.c,s.d)) +return}s=t.k +r=s.a(A.J.prototype.ga9.call(a2)) +q=new A.aN(0,r.b,0,r.d) +for(r=A.l(a2).h("ar.1"),p=a5,o=0,n=0,m=0;p!=null;p=a5){p.cS(q,!0) +p=a4.a +l=p.id +o+=(l==null?A.r(A.R(a3+A.p(p).l(0)+"#"+A.br(p))):l).a +n=Math.max(n,l.b) +m=Math.max(m,l.a) +p=p.b +p.toString +a5=r.a(p).a3$ +a4.a=a5}k=a2.aN===B.ab +j=o+a2.B*(a2.d8$-1) +if(j>s.a(A.J.prototype.ga9.call(a2)).b){a5=a2.ao===B.cz?a2.a2$:a2.dF$ +a4.a=a5 +i=new A.baS(a4,a2) +for(r=t.pi,p=a5,h=0;p!=null;p=a5){l=p.b +l.toString +r.a(l) +switch(a2.an.a){case 0:if(k){p=s.a(A.J.prototype.ga9.call(a2)) +g=a4.a +f=g.id +if(f==null)f=A.r(A.R(a3+A.p(g).l(0)+"#"+A.br(g))) +e=p.b-f.a +p=g}else e=0 +break +case 2:p=s.a(A.J.prototype.ga9.call(a2)) +g=a4.a +f=g.id +if(f==null)f=A.r(A.R(a3+A.p(g).l(0)+"#"+A.br(g))) +e=(p.b-f.a)/2 +p=g +break +case 1:if(k)e=0 +else{p=s.a(A.J.prototype.ga9.call(a2)) +g=a4.a +f=g.id +if(f==null)f=A.r(A.R(a3+A.p(g).l(0)+"#"+A.br(g))) +e=p.b-f.a +p=g}break +default:e=0}l.a=new A.m(e,h) +l=p.id +p=l==null?A.r(A.R(a3+A.p(p).l(0)+"#"+A.br(p))):l +h+=p.b+a2.a6 +a5=i.$0() +a4.a=a5}a2.id=s.a(A.J.prototype.ga9.call(a2)).bJ(new A.U(s.a(A.J.prototype.ga9.call(a2)).b,h-a2.a6))}else{a5=a4.a=a2.a2$ +d=a5.gq(a5).a +c=a2.W==null?j:s.a(A.J.prototype.ga9.call(a2)).b +a2.id=s.a(A.J.prototype.ga9.call(a2)).bJ(new A.U(c,n)) +e=A.b6("x") +b=a2.B +switch(a2.W){case null:case void 0:e.b=k?a2.gq(a2).a-d:0 +break +case B.z:e.b=k?a2.gq(a2).a-d:0 +break +case B.dq:a=(a2.gq(a2).a-j)/2 +e.b=k?a2.gq(a2).a-a-d:a +break +case B.op:e.b=k?j-d:a2.gq(a2).a-j +break +case B.fC:b=(a2.gq(a2).a-o)/(a2.d8$-1) +e.b=k?a2.gq(a2).a-d:0 +break +case B.ajO:b=a2.d8$>0?(a2.gq(a2).a-o)/a2.d8$:0 +s=b/2 +e.b=k?a2.gq(a2).a-s-d:s +break +case B.kO:b=(a2.gq(a2).a-o)/(a2.d8$+1) +e.b=k?a2.gq(a2).a-b-d:b +break}for(s=!k,p=t.pi,l=e.a;g=a4.a,g!=null;){f=g.b +f.toString +p.a(f) +a0=e.b +if(a0===e)A.r(A.iH(l)) +a1=g.id +f.a=new A.m(a0,(n-(a1==null?A.r(A.R(a3+A.p(g).l(0)+"#"+A.br(g))):a1).b)/2) +if(s)g=e.b=a0+(a1.a+b) +else g=a0 +a5=a4.a=r.a(f).a3$ +if(k&&a5!=null){f=a5.id +e.b=g-((f==null?A.r(A.R(a3+A.p(a5).l(0)+"#"+A.br(a5))):f).a+b)}}}}, +dZ(a,b){return this.A4(a,b)}, +aE(a,b){this.x5(a,b)}} +A.baS.prototype={ +$0(){var s=this.b,r=s.ao,q=this.a.a +s=A.l(s).h("ar.1") +if(r===B.cz){r=q.b +r.toString +r=s.a(r).a3$ +s=r}else{r=q.b +r.toString +r=s.a(r).ds$ +s=r}return s}, +$S:546} +A.aq8.prototype={ +aw(a){var s,r,q +this.eS(a) +s=this.a2$ +for(r=t.pi;s!=null;){s.aw(a) +q=s.b +q.toString +s=r.a(q).a3$}}, +ap(a){var s,r,q +this.eT(0) +s=this.a2$ +for(r=t.pi;s!=null;){s.ap(0) +q=s.b +q.toString +s=r.a(q).a3$}}} +A.aq9.prototype={} +A.qQ.prototype={ +stV(a){var s +if(this.b===a)return +this.b=a +s=this.e +if(s!=null)s.a0T()}, +stP(a){if(this.c)return +this.c=!0 +this.e.a0T()}, +gac3(){var s=this.d +return(s==null?null:s.a)!=null}, +P(a,b){var s=this.d +if(s!=null)s.P(0,b)}, +H(a,b){var s=this.d +if(s!=null)s.H(0,b)}, +en(a){var s,r=this.e +r.toString +this.e=null +if(r.c==null)return +B.b.E(r.d,this) +s=$.cB +if(s.aK$===B.lj)s.y2$.push(new A.aMA(r)) +else r.a38()}, +el(){var s=this.f.gR() +if(s!=null)s.a3a()}, +m(){var s,r=this +r.r=!0 +if(!r.gac3()){s=r.d +if(s!=null){s.ok$=$.aH() +s.k4$=0}r.d=null}}, +l(a){var s=this,r=A.br(s),q=s.b,p=s.c,o=s.r?"(DISPOSED)":"" +return"#"+r+"(opaque: "+q+"; maintainState: "+p+")"+o}, +$iat:1} +A.aMA.prototype={ +$1(a){this.a.a38()}, +$S:5} +A.rG.prototype={ +a8(){return new A.GY(B.m)}} +A.GY.prototype={ +ayI(a,b){var s,r,q,p=this.e +if(p==null)p=this.e=new A.jU(t.oM) +s=p.b===0?null:p.gX(p) +r=b.a +while(!0){q=s==null +if(!(!q&&s.a>r))break +s=s.gBi()}if(q){p.z8(p.c,b,!0) +p.c=b}else s.hU$.z8(s.ic$,b,!1)}, +gS2(){var s,r=this,q=r.f +if(q===$){s=r.Q4(!1) +r.f!==$&&A.aq() +r.f=s +q=s}return q}, +Q4(a){return new A.kl(this.apL(a),t.bm)}, +apL(a){var s=this +return function(){var r=a +var q=0,p=2,o,n,m,l +return function $async$Q4(b,c,d){if(c===1){o=d +q=p}while(true)switch(q){case 0:l=s.e +if(l==null||l.b===0){q=1 +break}n=r?l.gX(l):l.gO(l) +case 3:if(!(n!=null)){q=4 +break}m=n.d +n=r?n.gBi():n.gnt(n) +q=m!=null?5:6 +break +case 5:q=7 +return b.b=m,1 +case 7:case 6:q=3 +break +case 4:case 1:return 0 +case 2:return b.c=o,3}}}}, +aX(){var s,r=this +r.b9() +r.a.c.d.sj(0,r) +s=r.c.xn(t.im) +s.toString +r.d=s}, +b1(a){var s,r=this +r.bh(a) +if(a.d!==r.a.d){s=r.c.xn(t.im) +s.toString +r.d=s}}, +m(){var s,r=this,q=r.a.c.d +if(q!=null)q.sj(0,null) +q=r.a.c +if(q.r){s=q.d +if(s!=null){s.ok$=$.aH() +s.k4$=0}q.d=null}r.e=null +r.b0()}, +A(a){var s=this.a,r=s.e,q=this.d +q===$&&A.b() +return new A.zK(r,new A.At(q,this,s.c.a.$1(a),null),null)}, +a3a(){this.ad(new A.b97())}} +A.b97.prototype={ +$0(){}, +$S:0} +A.yr.prototype={ +a8(){return new A.DF(A.a([],t.wi),null,null,B.m)}} +A.DF.prototype={ +aX(){this.b9() +this.abd(0,this.a.c)}, +Rt(a,b){if(a!=null)return B.b.eZ(this.d,a) +return this.d.length}, +abb(a,b,c){b.e=this +this.ad(new A.aMF(this,c,null,b))}, +xy(a,b){return this.abb(a,b,null)}, +abd(a,b){var s,r=b.length +if(r===0)return +for(s=0;s"),s=new A.da(s,r),s=new A.c2(s,s.gt(s),r.h("c2")),r=r.h("av.E"),q=!0,p=0;s.v();){o=s.d +if(o==null)o=r.a(o) +if(q){++p +m.push(new A.rG(o,n,!0,o.f)) +q=!o.b||!1}else if(o.c)m.push(new A.rG(o,n,!1,o.f))}s=t.MV +return new A.US(m.length-p,n.a.d,A.a8(new A.da(m,s),!1,s.h("av.E")),null)}, +$iaP:1} +A.aMF.prototype={ +$0(){var s=this,r=s.a +B.b.fB(r.d,r.Rt(s.b,s.c),s.d)}, +$S:0} +A.aME.prototype={ +$0(){var s=this,r=s.a +B.b.Fq(r.d,r.Rt(s.b,s.c),s.d)}, +$S:0} +A.aMG.prototype={ +$0(){var s,r,q=this,p=q.a,o=p.d +B.b.ab(o) +s=q.b +B.b.I(o,s) +r=q.c +r.ad4(s) +B.b.Fq(o,p.Rt(q.d,q.e),r)}, +$S:0} +A.aMD.prototype={ +$0(){}, +$S:0} +A.aMC.prototype={ +$0(){}, +$S:0} +A.US.prototype={ +bI(a){return new A.ao8(A.dI(t.E),this,B.an)}, +b5(a){var s=a.aj(t.I) +s.toString +s=new A.vK(s.w,this.e,this.f,A.ay(t.O5),0,null,null,A.ay(t.T)) +s.b4() +s.I(0,null) +return s}, +bb(a,b){var s=this.e +if(b.a6!==s){b.a6=s +if(!b.ao)b.w6()}s=a.aj(t.I) +s.toString +b.scz(s.w) +s=this.f +if(s!==b.an){b.an=s +b.b_() +b.bY()}}} +A.ao8.prototype={ +ga7(){return t.im.a(A.kF.prototype.ga7.call(this))}, +pc(a,b){var s,r +this.ZB(a,b) +s=a.b +s.toString +t.i9.a(s) +r=this.e +r.toString +s.at=t.KJ.a(t.f2.a(r).c[b.b]).c}, +pe(a,b,c){this.ZC(a,b,c)}} +A.Au.prototype={ +fR(a){if(!(a.b instanceof A.fP))a.b=new A.fP(null,null,B.i)}, +goB(){return!0}, +ce(){var s,r,q,p,o,n,m,l=this,k="RenderBox was not laid out: ",j=l.CG(),i=j.gam(j) +j=l.ga9() +s=A.Be(new A.U(A.V(1/0,j.a,j.b),A.V(1/0,j.c,j.d))) +j=l.gadD() +r=j.B +if(r==null)r=j.B=B.bu.L(j.W) +for(j=t.Qv,q=t.EP;i.v();){p=i.gG(i) +o=p.b +o.toString +j.a(o) +if(!o.gMi()){p.cS(s,!0) +n=l.id +if(n==null)n=A.r(A.R(k+A.p(l).l(0)+"#"+A.br(l))) +m=p.id +o.sc5(0,r.wO(q.a(n.a4(0,m==null?A.r(A.R(k+A.p(p).l(0)+"#"+A.br(p))):m))))}else{n=l.id +A.btK(p,o,n==null?A.r(A.R(k+A.p(l).l(0)+"#"+A.br(l))):n,r)}}}, +dZ(a,b){var s,r,q,p=this.PM(),o=p.gam(p) +p=t.Qv +s=!1 +while(!0){if(!(!s&&o.v()))break +r=o.gG(o) +q=r.b +q.toString +s=a.oP(new A.bb6(r),p.a(q).a,b)}return s}, +aE(a,b){var s,r,q,p,o,n +for(s=this.CG(),s=s.gam(s),r=t.Qv,q=b.a,p=b.b;s.v();){o=s.gG(s) +n=o.b +n.toString +n=r.a(n).a +a.em(o,new A.m(n.a+q,n.b+p))}}} +A.bb6.prototype={ +$2(a,b){return this.a.dm(a,b)}, +$S:17} +A.HB.prototype={ +XZ(a){var s=this.at +if(s==null)s=null +else{s=s.d +s=s==null?null:s.a.gS2().al(0,a)}return s}} +A.vK.prototype={ +gadD(){return this}, +fR(a){if(!(a.b instanceof A.HB))a.b=new A.HB(null,null,B.i)}, +aw(a){var s,r,q,p,o +this.am6(a) +s=this.a2$ +for(r=t.i9;s!=null;){q=s.b +q.toString +r.a(q) +p=q.at +if(p==null)o=null +else{p=p.d +if(p==null)o=null +else{p=p.a.gS2() +p=new A.pH(p.a(),p.$ti.h("pH<1>")) +o=p}}if(o!=null)for(;o.v();)o.b.aw(a) +s=q.a3$}}, +ap(a){var s,r,q +this.am7(0) +s=this.a2$ +for(r=t.i9;s!=null;){q=s.b +q.toString +r.a(q) +q.XZ(A.bWD()) +s=q.a3$}}, +jo(){return this.ci(this.gXf())}, +scz(a){var s=this +if(s.W===a)return +s.W=a +s.B=null +if(!s.ao)s.w6()}, +Pc(a){this.ao=!0 +this.mh(a) +this.ao=!1 +a.D.aa()}, +Sf(a){this.ao=!0 +this.v7(a) +this.ao=!1}, +aa(){if(!this.ao)this.w6()}, +gwk(){var s,r,q,p,o=this +if(o.a6===A.ar.prototype.gE8.call(o))return null +s=A.ar.prototype.gaJ8.call(o,o) +for(r=o.a6,q=t.Qv;r>0;--r){p=s.b +p.toString +s=q.a(p).a3$}return s}, +bX(a){return A.z0(this.gwk(),new A.bba(a))}, +bQ(a){return A.z0(this.gwk(),new A.bb8(a))}, +bR(a){return A.z0(this.gwk(),new A.bb9(a))}, +bV(a){return A.z0(this.gwk(),new A.bb7(a))}, +hS(a){var s,r,q,p,o=this.gwk() +for(s=t.Qv,r=null;o!=null;){q=o.b +q.toString +s.a(q) +p=o.qf(a) +if(p!=null){p+=q.a.b +r=r!=null?Math.min(r,p):p}o=q.a3$}return r}, +da(a){return new A.U(A.V(1/0,a.a,a.b),A.V(1/0,a.c,a.d))}, +CG(){return new A.kl(this.aoU(),t.bm)}, +aoU(){var s=this +return function(){var r=0,q=1,p,o,n,m,l,k +return function $async$CG(a,b,c){if(b===1){p=c +r=q}while(true)switch(r){case 0:k=s.gwk() +o=t.i9 +case 2:if(!(k!=null)){r=3 +break}r=4 +return a.b=k,1 +case 4:n=k.b +n.toString +o.a(n) +m=n.at +if(m==null)l=null +else{m=m.d +if(m==null)l=null +else{m=m.a.gS2() +m=new A.pH(m.a(),m.$ti.h("pH<1>")) +l=m}}r=l!=null?5:6 +break +case 5:case 7:if(!l.v()){r=8 +break}r=9 +return a.b=l.b,1 +case 9:r=7 +break +case 8:case 6:k=n.a3$ +r=2 +break +case 3:return 0 +case 1:return a.c=p,3}}}}, +PM(){return new A.kl(this.aoT(),t.bm)}, +aoT(){var s=this +return function(){var r=0,q=1,p,o,n,m,l,k,j,i,h +return function $async$PM(a,b,c){if(b===1){p=c +r=q}while(true)switch(r){case 0:i=s.a6===A.ar.prototype.gE8.call(s)?null:s.dF$ +h=s.d8$-s.a6 +o=t.i9 +case 2:if(!(i!=null)){r=3 +break}n=i.b +n.toString +o.a(n) +m=n.at +if(m==null)l=null +else{m=m.d +if(m==null)l=null +else{m=m.a +k=m.r +if(k===$){j=m.Q4(!0) +m.r!==$&&A.aq() +m.r=j +k=j}m=new A.pH(k.a(),k.$ti.h("pH<1>")) +l=m}}r=l!=null?4:5 +break +case 4:case 6:if(!l.v()){r=7 +break}r=8 +return a.b=l.b,1 +case 8:r=6 +break +case 7:case 5:r=9 +return a.b=i,1 +case 9:--h +i=h<=0?null:n.ds$ +r=2 +break +case 3:return 0 +case 1:return a.c=p,3}}}}, +aE(a,b){var s,r,q=this,p=q.aN +if(q.an!==B.n){s=q.cx +s===$&&A.b() +r=q.gq(q) +p.sb2(0,a.tX(s,b,new A.L(0,0,0+r.a,0+r.b),A.Au.prototype.gil.call(q),q.an,p.a))}else{p.sb2(0,null) +q.akK(a,b)}}, +m(){this.aN.sb2(0,null) +this.iU()}, +ci(a){var s,r,q=this.a2$ +for(s=t.i9;q!=null;){a.$1(q) +r=q.b +r.toString +s.a(r) +r.XZ(a) +q=r.a3$}}, +jv(a){var s,r,q=this.gwk() +for(s=t.i9;q!=null;){a.$1(q) +r=q.b +r.toString +s.a(r) +r.XZ(a) +q=r.a3$}}, +ts(a){var s +switch(this.an.a){case 0:return null +case 1:case 2:case 3:s=this.gq(this) +return new A.L(0,0,0+s.a,0+s.b)}}} +A.bba.prototype={ +$1(a){return a.aA(B.ae,this.a,a.gbW())}, +$S:22} +A.bb8.prototype={ +$1(a){return a.aA(B.ao,this.a,a.gc1())}, +$S:22} +A.bb9.prototype={ +$1(a){return a.aA(B.aF,this.a,a.gcs())}, +$S:22} +A.bb7.prototype={ +$1(a){return a.aA(B.bt,this.a,a.gcR())}, +$S:22} +A.aMB.prototype={ +l(a){return"OverlayPortalController"+(this.a!=null?"":" DETACHED")}} +A.MB.prototype={ +a8(){return new A.ajS(B.m)}} +A.ajS.prototype={ +asa(a,b){var s,r,q=this,p=q.f,o=A.bM("marker",new A.b98(q,!1)) +if(p!=null)if(q.e){s=o.T() +s=p.b===s.r&&p.c===s.f +r=s}else r=!0 +else r=!1 +q.e=!1 +if(r)return p +return q.f=new A.vE(a,o.T().r,o.T().f)}, +aX(){this.b9() +this.a59(this.a.c)}, +a59(a){var s,r=a.b,q=this.d +if(q!=null)s=r!=null&&r>q +else s=!0 +if(s)this.d=r +a.b=null +a.a=this}, +ca(){this.e8() +this.e=!0}, +b1(a){var s,r,q=this +q.bh(a) +if(!q.e){q.a.toString +s=!1}else s=!0 +q.e=s +s=a.c +r=q.a.c +if(s!==r){s.a=null +q.a59(r)}}, +m(){this.a.c.a=null +this.f=null +this.b0()}, +rK(a,b){this.ad(new A.b9a(this,b)) +this.f=null}, +xt(){this.ad(new A.b99(this)) +this.f=null}, +A(a){var s,r,q=this,p=null,o=q.d +if(o==null)return new A.GZ(p,q.a.e,p,p) +q.a.toString +s=q.asa(o,!1) +r=q.a +return new A.GZ(new A.ag_(new A.e4(r.d,p),p),r.e,s,p)}} +A.b98.prototype={ +$0(){var s=this.a.c +s.toString +return A.bPF(s,this.b)}, +$S:547} +A.b9a.prototype={ +$0(){this.a.d=this.b}, +$S:0} +A.b99.prototype={ +$0(){this.a.d=null}, +$S:0} +A.vE.prototype={ +a_s(a){var s,r=this +r.d=a +r.b.ayI(0,r) +s=r.c +s.b_() +s.r0() +s.bY()}, +a4h(a){var s,r=this +r.d=null +s=r.b.e +if(s!=null)s.E(0,r) +s=r.c +s.b_() +s.r0() +s.bY()}, +l(a){var s=A.br(this) +return"_OverlayEntryLocation["+s+"] "}} +A.At.prototype={ +dh(a){return a.f!==this.f||a.r!==this.r}} +A.GZ.prototype={ +bI(a){return new A.ajR(this,B.an)}, +b5(a){var s=new A.TE(null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}} +A.ajR.prototype={ +ga7(){return t.SN.a(A.bR.prototype.ga7.call(this))}, +hI(a,b){var s,r=this +r.w7(a,b) +s=r.e +s.toString +t.eU.a(s) +r.ok=r.fE(r.ok,s.d,null) +r.k4=r.fE(r.k4,s.c,s.e)}, +bZ(a,b){var s=this +s.uo(0,b) +s.ok=s.fE(s.ok,b.d,null) +s.k4=s.fE(s.k4,b.c,b.e)}, +n0(a){this.ok=null +this.py(a)}, +ci(a){var s=this.ok,r=this.k4 +if(s!=null)a.$1(s) +if(r!=null)a.$1(r)}, +cf(){var s,r,q +this.OL() +s=this.k4 +if(s!=null){r=t.x6.a(s.ga7()) +if(r!=null){q=s.c +q.toString +t.Vl.a(q) +q.c.Pc(r) +q.d=r}}}, +fd(){var s,r,q=this.k4 +if(q!=null){s=t.x6.a(q.ga7()) +if(s!=null){r=q.c +r.toString +t.Vl.a(r) +r.c.Sf(s) +r.d=null}}this.ZU()}, +pc(a,b){var s=t.SN +if(b!=null){s=s.a(A.bR.prototype.ga7.call(this)) +t.Lj.a(a) +s.D=a +b.a_s(a) +b.c.Pc(a)}else s.a(A.bR.prototype.ga7.call(this)).sbN(a)}, +pe(a,b,c){var s=b.c,r=c.c +if(s!==r){s.Sf(a) +r.Pc(a)}if(b.b!==c.b||b.a!==c.a){b.a4h(a) +c.a_s(a)}}, +q9(a,b){if(b==null){t.SN.a(A.bR.prototype.ga7.call(this)).sbN(null) +return}t.Lj.a(a) +b.a4h(a) +b.c.Sf(a) +t.SN.a(A.bR.prototype.ga7.call(this)).D=null}} +A.ag_.prototype={ +b5(a){var s,r=a.xn(t.SN) +r.toString +s=new A.vJ(r,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return r.D=s}, +bb(a,b){}} +A.vJ.prototype={ +CG(){var s=this.k3$ +return s==null?B.S7:A.bJd(1,new A.baL(s),t.x)}, +PM(){return this.CG()}, +gadD(){var s=this.d +return s instanceof A.vK?s:A.r(A.qs(A.i(s)+" of "+this.l(0)+" is not a _RenderTheater"))}, +jo(){this.D.rk(this) +this.ZX()}, +FL(){var s=this +if(s.ac)return +s.az=s.ac=!0 +s.w6() +s.D.aa() +s.ac=!1}, +aa(){this.az=!0 +this.w6()}, +aM_(){var s,r=t.gW.a(this.d) +if(r==null||this.y==null)return +s=t.k.a(A.J.prototype.ga9.call(r)) +this.OU(A.Be(new A.U(A.V(1/0,s.a,s.b),A.V(1/0,s.c,s.d))),!1)}, +cS(a,b){var s,r=this,q=r.az||!t.k.a(A.J.prototype.ga9.call(r)).k(0,a) +r.cr=!0 +r.OU(a,b) +r.az=r.cr=!1 +if(q){s=r.d +s.toString +t.im.a(s).Mc(new A.baM(r),t.k)}}, +ij(a){return this.cS(a,!1)}, +xT(){var s=t.k.a(A.J.prototype.ga9.call(this)) +this.id=new A.U(A.V(1/0,s.a,s.b),A.V(1/0,s.c,s.d))}, +ce(){var s=this +if(s.cr){s.az=!1 +return}if(s.k3$==null){s.az=!1 +return}s.akL() +s.az=!1}, +eL(a,b){var s,r=a.b +r.toString +s=t.q.a(r).a +b.bi(0,s.a,s.b)}} +A.baL.prototype={ +$1(a){return this.a}, +$S:548} +A.baM.prototype={ +$1(a){var s=this.a +s.az=!0 +s.w6()}, +$S:549} +A.TE.prototype={ +jo(){this.ZX() +var s=this.D +if(s!=null&&s.y!=null)this.rk(s)}, +ce(){this.yK() +var s=this.D +if(s!=null)s.aM_()}} +A.ajT.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.aq3.prototype={} +A.aq4.prototype={} +A.Wm.prototype={ +aw(a){var s,r,q +this.eS(a) +s=this.a2$ +for(r=t.Qv;s!=null;){s.aw(a) +q=s.b +q.toString +s=r.a(q).a3$}}, +ap(a){var s,r,q +this.eT(0) +s=this.a2$ +for(r=t.Qv;s!=null;){s.ap(0) +q=s.b +q.toString +s=r.a(q).a3$}}} +A.aqc.prototype={} +A.KQ.prototype={ +a8(){var s=t.y +return new A.S0(A.am([!1,!0,!0,!0],s,s),null,null,B.m)}, +r4(a){return A.HU().$1(a)}} +A.S0.prototype={ +aX(){var s,r,q=this +q.b9() +s=q.a +r=s.f +q.d=A.bvW(A.bU(s.e),r,q) +r=q.a +s=r.f +s=A.bvW(A.bU(r.e),s,q) +q.e=s +r=q.d +r.toString +q.f=new A.vA(A.a([r,s],t.Eo))}, +b1(a){var s,r=this +r.bh(a) +if(!a.f.k(0,r.a.f)||A.bU(a.e)!==A.bU(r.a.e)){s=r.d +s.toString +s.saf(0,r.a.f) +s=r.d +s.toString +s.sa7P(A.bU(r.a.e)) +s=r.e +s.toString +s.saf(0,r.a.f) +s=r.e +s.toString +s.sa7P(A.bU(r.a.e))}}, +S1(a){var s,r,q,p,o,n,m,l,k,j,i,h=this +if(!h.a.r4(a))return!1 +s=a.a +r=s.e +if(A.bU(r)!==A.bU(h.a.e))return!1 +q=h.d +q.toString +p=s.c +p.toString +o=s.a +o.toString +q.e=-Math.min(p-o,q.d) +o=h.e +o.toString +s=s.b +s.toString +o.e=-Math.min(s-p,o.d) +if(a instanceof A.no){s=a.e +if(s<0)n=q +else if(s>0)n=o +else n=null +m=n===q +l=new A.uo(m,0) +q=h.c +q.fY(l) +q=h.w +q.n(0,m,l.c) +q=q.i(0,m) +q.toString +if(q)n.d=0 +q=h.w.i(0,m) +q.toString +if(q){q=a.f +if(q!==0){s=n.c +if(s!=null)s.aI(0) +n.c=null +k=A.V(Math.abs(q),100,1e4) +s=n.f +if(n.a===B.lS)r=0.3 +else{r=n.r +r===$&&A.b() +q=r.a +q=r.b.a5(0,q.gj(q)) +r=q}s.a=r +r.toString +s.b=A.V(k*0.00006,r,0.5) +r=n.w +s=n.x +s===$&&A.b() +q=s.a +r.a=s.b.a5(0,q.gj(q)) +r.b=Math.min(0.025+75e-8*k*k,1) +r=n.b +r===$&&A.b() +r.e=A.dW(0,B.e.bg(0.15+k*0.02),0) +r.p7(0,0) +n.as=0.5 +n.a=B.aBT}else{q=a.d +if(q!=null){p=a.b.ga7() +p.toString +t.x.a(p) +j=p.gq(p) +i=p.jy(q.d) +switch(A.bU(r).a){case 0:n.toString +r=j.b +n.acH(0,Math.abs(s),j.a,A.V(i.b,0,r),r) +break +case 1:n.toString +r=j.a +n.acH(0,Math.abs(s),j.b,A.V(i.a,0,r),r) +break}}}}}else{if(!(a instanceof A.pb&&a.d!=null))s=a instanceof A.kI&&a.d!=null +else s=!0 +if(s){if(q.a===B.lT)q.wv(B.hs) +s=h.e +if(s.a===B.lT)s.wv(B.hs)}}h.r=A.p(a) +return!1}, +m(){this.d.m() +this.e.m() +this.alO()}, +A(a){var s=this,r=null,q=s.a,p=s.d,o=s.e,n=q.e,m=s.f +return new A.dB(s.gS0(),new A.ii(A.iB(new A.ii(q.w,r),new A.ahr(p,o,n,m),r,r,B.y),r),r,t.WA)}, +$iaP:1} +A.GA.prototype={ +J(){return"_GlowState."+this.b}} +A.S_.prototype={ +saf(a,b){if(this.ax.k(0,b))return +this.ax=b +this.ag()}, +sa7P(a){if(this.ay===a)return +this.ay=a +this.ag()}, +m(){var s=this,r=s.b +r===$&&A.b() +r.m() +r=s.y +r===$&&A.b() +r.w.dL$.E(0,r) +r.a_0() +r=s.c +if(r!=null)r.aI(0) +s.eK()}, +acH(a,b,c,d,e){var s,r,q,p=this,o=p.c +if(o!=null)o.aI(0) +p.at=p.at+b/200 +o=p.f +s=p.r +s===$&&A.b() +r=s.b +s=s.a +o.a=r.a5(0,s.gj(s)) +o.b=Math.min(r.a5(0,s.gj(s))+b/c*0.8,0.5) +q=Math.min(c,e*0.20096189432249995) +s=p.w +r=p.x +r===$&&A.b() +o=r.b +r=r.a +s.a=o.a5(0,r.gj(r)) +s.b=Math.max(1-1/(0.7*Math.sqrt(p.at*q)),A.l_(o.a5(0,r.gj(r)))) +r=d/e +p.Q=r +if(r!==p.as){o=p.y +o===$&&A.b() +if(!o.gaLM())o.rM(0)}else{o=p.y +o===$&&A.b() +o.h8(0) +p.z=null}o=p.b +o===$&&A.b() +o.e=B.dI +if(p.a!==B.lT){o.p7(0,0) +p.a=B.lT}else{o=o.r +if(!(o!=null&&o.a!=null))p.ag()}p.c=A.d0(B.dI,new A.b6r(p))}, +PH(a){var s=this +if(a!==B.a9)return +switch(s.a.a){case 1:s.wv(B.hs) +break +case 3:s.a=B.lS +s.at=0 +break +case 2:case 0:break}}, +wv(a){var s,r,q=this,p=q.a +if(p===B.PB||p===B.lS)return +p=q.c +if(p!=null)p.aI(0) +q.c=null +p=q.f +s=q.r +s===$&&A.b() +r=s.a +p.a=s.b.a5(0,r.gj(r)) +p.b=0 +p=q.w +r=q.x +r===$&&A.b() +s=r.a +p.a=r.b.a5(0,s.gj(s)) +p.b=0 +p=q.b +p===$&&A.b() +p.e=a +p.p7(0,0) +q.a=B.PB}, +aDk(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)/$.bC1().a) +r.ag()}if(A.WU(r.Q,r.as,0.001)){q=r.y +q===$&&A.b() +q.h8(0) +r.z=null}else r.z=a}, +aE(a,b){var s,r,q,p,o,n,m,l,k,j=this,i=j.r +i===$&&A.b() +s=i.a +if(J.j(i.b.a5(0,s.gj(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.b() +n=r.a +n=r.b.a5(0,n.gj(n)) +r=j.as +m=$.au().bk() +l=j.ax +k=i.a +m.saf(0,A.K(B.e.bg(255*i.b.a5(0,k.gj(k))),l.gj(l)>>>16&255,l.gj(l)>>>8&255,l.gj(l)&255)) +a.eo(0) +a.bi(0,0,j.d+j.e) +a.iT(0,1,n*q) +a.uV(new A.L(0,0,0+s,0+o)) +a.fZ(new A.m(s/2*(0.5+r),o-p),p,m) +a.dg(0)}, +l(a){return"_GlowController(color: "+this.ax.l(0)+", axis: "+this.ay.b+")"}} +A.b6r.prototype={ +$0(){return this.a.wv(B.ej)}, +$S:0} +A.ahr.prototype={ +a3O(a,b,c,d,e){var s +if(c==null)return +switch(A.oc(d,e).a){case 0:c.aE(a,b) +break +case 2:a.eo(0) +a.bi(0,0,b.b) +a.iT(0,1,-1) +c.aE(a,b) +a.dg(0) +break +case 3:a.eo(0) +a.u3(0,1.5707963267948966) +a.iT(0,1,-1) +c.aE(a,new A.U(b.b,b.a)) +a.dg(0) +break +case 1:a.eo(0) +s=b.a +a.bi(0,s,0) +a.u3(0,1.5707963267948966) +c.aE(a,new A.U(b.b,s)) +a.dg(0) +break}}, +aE(a,b){var s=this,r=s.d +s.a3O(a,b,s.b,r,B.nu) +s.a3O(a,b,s.c,r,B.hy)}, +fv(a){return a.b!=this.b||a.c!=this.c}, +l(a){return"_GlowingOverscrollIndicatorPainter("+A.i(this.b)+", "+A.i(this.c)+")"}} +A.anl.prototype={ +J(){return"_StretchDirection."+this.b}} +A.P0.prototype={ +a8(){return new A.Uy(null,null,B.m)}, +r4(a){return A.HU().$1(a)}} +A.Uy.prototype={ +gwB(){var s,r,q,p,o,n,m=this,l=null,k=m.d +if(k===$){s=t.Y +r=new A.aR(0,0,s) +q=new A.Ux(r,B.qi,B.f_,$.aH()) +p=A.bx(B.A,l,l,0,l,1,l,m) +p.cF() +o=p.ej$ +o.b=!0 +o.a.push(q.gPG()) +q.a!==$&&A.ck() +q.a=p +n=A.c5(B.dC,p,l) +n.a.P(0,q.geO()) +t.m.a(n) +q.b!==$&&A.ck() +q.b=new A.ax(n,r,s.h("ax")) +m.d!==$&&A.aq() +m.d=q +k=q}return k}, +S1(a){var s,r,q,p,o,n,m,l,k=this +if(!k.a.r4(a))return!1 +s=a.a +if(A.bU(s.e)!==A.bU(k.a.c))return!1 +if(a instanceof A.no){k.f=a +J.a_(k.e) +r=a.e +q=new A.uo(r<0,0) +p=k.c +p.fY(q) +k.w=q.c +if(k.w){r=k.r+=r +p=a.f +if(p!==0){s=k.gwB() +r=k.r +o=A.V(Math.abs(p),1,1e4) +p=s.c +n=s.b +n===$&&A.b() +m=n.a +p.a=n.b.a5(0,m.gj(m)) +p.b=Math.min(0.016+1.01/o,1) +p=s.a +p===$&&A.b() +p.e=A.dW(0,B.e.bg(o*0.02),0) +p.p7(0,0) +s.d=B.aCO +s.f=r>0?B.f_:B.PM}else if(a.d!=null){s=s.d +s.toString +l=A.V(Math.abs(r)/s,0,1) +k.gwB().aOb(0,l,k.r)}}}else if(a instanceof A.pb||a instanceof A.kI){k.r=0 +s=k.gwB() +if(s.d===B.qj)s.wv(B.n3)}k.e=a +return!1}, +arR(a){switch(this.a.c.a){case 0:return a===B.f_?B.qo:B.qn +case 1:return a===B.f_?B.dw:B.iO +case 2:return a===B.f_?B.qn:B.qo +case 3:return a===B.f_?B.iO:B.dw}}, +m(){var s=this.gwB(),r=s.a +r===$&&A.b() +r.m() +s.eK() +this.aml()}, +A(a){var s={},r=A.aY(a,B.iK,t.l).w +s.a=null +return new A.dB(this.gS0(),A.hg(this.gwB(),new A.bcE(s,this,r.a),null),null,t.WA)}, +$iaP:1} +A.bcE.prototype={ +$2(a,b){var s,r,q,p,o,n,m,l=this,k=l.b,j=k.gwB().b +j===$&&A.b() +s=j.a +s=j.b.a5(0,s.gj(s)) +switch(A.bU(k.a.c).a){case 0:r=1+s +l.a.a=l.c.a +q=1 +break +case 1:q=1+s +l.a.a=l.c.b +r=1 +break +default:r=1 +q=1}p=k.arR(k.gwB().f) +j=k.f +if(j==null)o=null +else{j=j.a.d +j.toString +o=j}if(o==null)o=l.a.a +j=A.ug(r,q,1) +s=s===0 +n=s?null:B.hv +k=k.a +m=A.zO(p,k.f,n,j,!0) +return A.to(m,!s&&o!==l.a.a?k.e:B.n)}, +$S:550} +A.Ht.prototype={ +J(){return"_StretchState."+this.b}} +A.Ux.prototype={ +aOb(a,b,c){var s,r,q,p=this,o=c>0?B.f_:B.PM +if(p.f!==o&&p.d===B.qk)return +p.f=o +p.e=b +s=p.c +r=p.b +r===$&&A.b() +q=r.a +s.a=r.b.a5(0,q.gj(q)) +q=p.e +s.b=0.016*q+0.016*(1-Math.exp(-q*8.237217661997105)) +q=p.a +q===$&&A.b() +q.e=B.n3 +if(p.d!==B.qj){q.p7(0,0) +p.d=B.qj}else{s=q.r +if(!(s!=null&&s.a!=null))p.ag()}}, +PH(a){var s=this +if(a!==B.a9)return +switch(s.d.a){case 1:s.wv(B.n3) +break +case 3:s.d=B.qi +s.e=0 +break +case 2:case 0:break}}, +wv(a){var s,r,q=this,p=q.d +if(p===B.qk||p===B.qi)return +p=q.c +s=q.b +s===$&&A.b() +r=s.a +p.a=s.b.a5(0,r.gj(r)) +p.b=0 +p=q.a +p===$&&A.b() +p.e=a +p.p7(0,0) +q.d=B.qk}, +m(){var s=this.a +s===$&&A.b() +s.m() +this.eK()}, +l(a){return"_StretchController()"}} +A.uo.prototype={ +fX(a){this.akv(a) +a.push("side: "+(this.a?"leading edge":"trailing edge"))}} +A.T4.prototype={ +fX(a){var s,r +this.OR(a) +s=this.jg$ +r=s===0?"local":"remote" +a.push("depth: "+s+" ("+r+")")}} +A.W4.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.Wv.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.Us.prototype={ +k(a,b){if(b==null)return!1 +if(J.a_(b)!==A.p(this))return!1 +return b instanceof A.Us&&A.ee(b.a,this.a)}, +gu(a){return A.dj(this.a)}, +l(a){return"StorageEntryIdentifier("+B.b.ck(this.a,":")+")"}} +A.p1.prototype={ +a_y(a){var s=A.a([],t.g8) +if(A.btc(a,s))a.uc(new A.aMM(s)) +return s}, +NT(a,b){var s,r=this +if(r.a==null)r.a=A.I(t.K,t.z) +s=r.a_y(a) +if(s.length!==0)r.a.n(0,new A.Us(s),b)}, +Ni(a){var s +if(this.a==null)return null +s=this.a_y(a) +return s.length!==0?this.a.i(0,new A.Us(s)):null}} +A.aMM.prototype={ +$1(a){return A.btc(a,this.a)}, +$S:48} +A.DH.prototype={ +A(a){return this.c}} +A.yt.prototype={ +TC(a,b,c){var s=t.gQ.a(B.b.gaV(this.f)) +if(s.aN!=null){s.aN=a +return A.cR(null,t.H)}return s.j3(s.yf(a),b,c)}, +abJ(a){var s=t.gQ.a(B.b.gaV(this.f)) +if(s.aN!=null){s.aN=a +return}s.fg(s.yf(a))}, +Us(a,b,c){var s=null,r=$.aH() +r=new A.vF(this.as,this.ax,B.fW,a,b,!0,s,new A.bF(!1,r,t.G),r) +r.P6(b,s,!0,c,a) +r.P7(b,s,s,!0,c,a) +return r}, +aw(a){this.ajq(a) +t.gQ.a(a).sGU(this.ax)}} +A.a6E.prototype={} +A.vF.prototype={ +V2(a,b,c,d,e,f){return this.ajz(a,b,c,d,e,null)}, +sGU(a){var s,r=this +if(r.aZ===a)return +s=r.gjY(r) +r.aZ=a +if(s!=null)r.Vo(r.yf(s))}, +gIM(){var s=this.ax +s.toString +return Math.max(0,s*(this.aZ-1)/2)}, +Ha(a,b){var s=Math.max(0,a-this.gIM())/(b*this.aZ),r=B.e.Gp(s) +if(Math.abs(s-r)<1e-10)return r +return s}, +yf(a){var s=this.ax +s.toString +return a*s*this.aZ+this.gIM()}, +gjY(a){var s,r,q=this,p=q.at +if(p!=null)s=!(q.z!=null&&q.Q!=null) +else s=!0 +if(s)p=null +else{s=q.aN +if(s==null){p.toString +s=q.z +s.toString +r=q.Q +r.toString +r=A.V(p,s,r) +s=q.ax +s.toString +s=q.Ha(r,s) +p=s}else p=s}return p}, +YC(){var s,r,q=this,p=q.w,o=p.c +o.toString +o=A.yu(o) +if(o!=null){p=p.c +p.toString +s=q.aN +if(s==null){s=q.at +s.toString +r=q.ax +r.toString +r=q.Ha(s,r) +s=r}o.NT(p,s)}}, +adu(){var s,r +if(this.at==null){s=this.w +r=s.c +r.toString +r=A.yu(r) +if(r==null)s=null +else{s=s.c +s.toString +s=r.Ni(s)}A.bmK(s) +if(s!=null)this.ao=s}}, +YB(){var s,r=this,q=r.aN +if(q==null){q=r.at +q.toString +s=r.ax +s.toString +s=r.Ha(q,s) +q=s}r.w.r.sj(0,q) +q=$.iR.dj$ +q===$&&A.b() +q.aai()}, +adt(a,b){if(b)this.ao=a +else this.fg(this.yf(a))}, +qB(a){var s,r,q,p,o=this,n=o.ax +n=n!=null?n:null +if(a===n)return!0 +o.ajv(a) +s=o.at +s=s!=null?s:null +if(s==null)r=o.ao +else if(n===0){q=o.aN +q.toString +r=q}else{n.toString +r=o.Ha(s,n)}p=o.yf(r) +o.aN=a===0?r:null +if(p!==s){o.at=p +return!1}return!0}, +uK(a){var s +this.ajA(a) +if(!(a instanceof A.vF))return +s=a.aN +if(s!=null)this.aN=s}, +pI(a,b){var s=a+this.gIM() +return this.ZZ(s,Math.max(s,b-this.gIM()))}, +pL(){var s,r,q,p,o,n,m=this,l=null,k=m.z +if(k!=null&&m.Q!=null)k.toString +else k=l +if(m.z!=null&&m.Q!=null){s=m.Q +s.toString}else s=l +r=m.at +r=r!=null?r:l +q=m.ax +q=q!=null?q:l +p=m.w +o=p.a.c +n=m.aZ +p=p.f +p===$&&A.b() +return new A.a6E(n,k,s,r,q,o,p)}} +A.RU.prototype={ +ta(a){return new A.RU(this.b,this.qF(a))}, +gwN(){return this.b}} +A.DG.prototype={ +ta(a){return new A.DG(this.qF(a))}, +asf(a){var s,r +if(a instanceof A.vF){s=a.gjY(a) +s.toString +return s}s=a.at +s.toString +r=a.ax +r.toString +return s/r}, +asi(a,b){var s +if(a instanceof A.vF)return a.yf(b) +s=a.ax +s.toString +return b*s}, +A0(a,b){var s,r,q,p,o,n=this +if(b<=0){s=a.at +s.toString +r=a.z +r.toString +r=s<=r +s=r}else s=!1 +if(!s)if(b>=0){s=a.at +s.toString +r=a.Q +r.toString +r=s>=r +s=r}else s=!1 +else s=!0 +if(s)return n.ajs(a,b) +q=n.GB(a) +p=n.asf(a) +s=q.c +if(b<-s)p-=0.5 +else if(b>s)p+=0.5 +o=n.asi(a,B.e.Gp(p)) +s=a.at +s.toString +if(o!==s){s=n.gyx() +r=a.at +r.toString +return new A.uQ(o,A.Hm(s,r-o,b),q)}return null}} +A.DI.prototype={ +a8(){return new A.ajW(B.m)}} +A.ajW.prototype={ +aX(){this.b9() +this.d=this.a.r.as}, +arZ(a){var s,r=this.a +switch(r.e.a){case 0:r=a.aj(t.I) +r.toString +s=A.bih(r.w) +return this.a.f?A.bnp(s):s +case 1:return r.f?B.aj:B.ak}}, +A(a){var s,r,q,p=this,o=null,n=p.arZ(a),m=p.a,l=m.c +m=m.w +if(m==null)m=o +m=new A.DG(B.JL.qF(m)) +m=new A.RU(l,o).qF(m) +s=p.a +r=s.Q +s=s.r +q=A.uP(a).KW(!1) +return new A.dB(new A.b9b(p),A.aTa(n,B.C,s,r,!1,o,new A.RU(l,m),o,q,o,new A.b9c(p,n)),o,t.WA)}} +A.b9b.prototype={ +$1(a){if(a.jg$===0)this.a.a.toString +return!1}, +$S:49} +A.b9c.prototype={ +$2(a,b){var s=null,r=this.a.a,q=r.c?1:0 +return A.bve(0,this.b,q,B.To,s,r.as,s,s,b,A.a([new A.a9E(r.r.ax,!0,r.z,s)],t.p))}, +$S:551} +A.jY.prototype={ +gtV(){return!0}, +gqC(){return!1}, +KH(a){return a instanceof A.jY}, +a8b(a){return a instanceof A.jY}, +gpY(){return this.cp}} +A.MD.prototype={ +qE(a,b,c){return this.dj.$3(a,b,c)}, +zL(a,b,c,d){return this.D.$4(a,b,c,d)}, +gu7(){return B.bC}, +gNt(){return B.bC}, +gtV(){return this.cr}, +gqC(){return!1}, +gpJ(){return null}, +gtb(){return null}, +gtP(){return!0}} +A.aKt.prototype={} +A.aNn.prototype={} +A.a0J.prototype={ +RN(a){return this.ax5(a)}, +ax5(a){var s=0,r=A.y(t.H),q,p=this,o,n,m +var $async$RN=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:n=A.ep(a.b) +m=p.a +if(!m.aq(0,n)){s=1 +break}m=m.i(0,n) +m.toString +o=a.a +if(o==="Menu.selectedCallback"){m.gaRg().$0() +m.gaNn() +o=$.ap.Y$.f.c.e +o.toString +A.bEX(o,m.gaNn(),t.vz)}else if(o==="Menu.opened")m.gaRf(m).$0() +else if(o==="Menu.closed")m.gaRe(m).$0() +case 1:return A.w(q,r)}}) +return A.x($async$RN,r)}} +A.DR.prototype={ +a8(){return new A.akA(B.m)}} +A.akA.prototype={ +aX(){var s,r=this +r.b9() +r.a.toString +s=$.aH() +r.e!==$&&A.ck() +r.e=new A.bF(!0,s,t.G)}, +ca(){var s,r,q=this +q.e8() +s=q.c +s.toString +r=A.oV(s,t.X) +s=q.d +if(r!=s){if(s!=null)s.ae3(q) +q.d=r +if(r!=null){r.k2.F(0,q) +s=q.e +s===$&&A.b() +s.P(0,r.ga2q()) +r.R9()}}}, +b1(a){var s +this.bh(a) +s=this.e +s===$&&A.b() +this.a.toString +s.sj(0,!0)}, +m(){var s=this,r=s.d +if(r!=null)r.ae3(s) +r=s.e +r===$&&A.b() +r.ok$=$.aH() +r.k4$=0 +s.b0()}, +A(a){return this.a.c}, +$iaNG:1} +A.uB.prototype={ +A(a){return this.c}, +$iqZ:1, +grb(){return this.d}} +A.DZ.prototype={ +dh(a){return this.f!=a.f}} +A.uL.prototype={ +a8(){return new A.alT(null,A.I(t.yb,t.Q),null,!0,null,B.m)}} +A.alT.prototype={ +gi5(){return this.a.d}, +kF(a,b){}, +A(a){return A.PP(this.cX$,this.a.c)}} +A.zS.prototype={ +dh(a){return a.f!=this.f}} +A.NV.prototype={ +a8(){return new A.TQ(B.m)}} +A.TQ.prototype={ +ca(){var s,r=this +r.e8() +s=r.c +s.toString +r.r=A.uM(s) +r.RD() +if(r.d==null){r.a.toString +r.d=!1}}, +b1(a){this.bh(a) +this.RD()}, +ga2W(){this.a.toString +return!1}, +RD(){var s,r=this +if(r.ga2W()&&!r.w){r.w=!0;++$.z2.k1$ +s=$.iR.dj$ +s===$&&A.b() +s.gaPm().be(new A.bbg(r),t.P)}}, +aAm(){var s,r=this +r.e=!1 +r.f=null +s=$.iR.dj$ +s===$&&A.b() +s.H(0,r.gSl()) +r.RD()}, +m(){if(this.e){var s=$.iR.dj$ +s===$&&A.b() +s.H(0,this.gSl())}this.b0()}, +A(a){var s,r,q=this,p=q.d +p.toString +if(p&&q.ga2W())return B.a1 +p=q.r +if(p==null)p=q.f +s=q.a +r=s.d +return A.PP(p,new A.uL(s.c,r,null))}} +A.bbg.prototype={ +$1(a){var s,r=this.a +r.w=!1 +if(r.c!=null){s=$.iR.dj$ +s===$&&A.b() +s.P(0,r.gSl()) +r.ad(new A.bbf(r,a))}$.z2.a7w()}, +$S:552} +A.bbf.prototype={ +$0(){var s=this.a +s.f=this.b +s.e=!0 +s.d=!1}, +$S:0} +A.h8.prototype={ +gAr(a){return!0}, +m(){var s=this,r=s.c +if(r!=null)r.aDY(s) +s.eK() +s.a=!0}} +A.mh.prototype={ +UN(a){}, +rl(a,b){var s,r,q=this,p=q.cX$ +p=p==null?null:J.jC(p.guB(),b) +s=p===!0 +r=s?a.AL(J.b7(q.cX$.guB(),b)):a.L_() +if(a.b==null){a.b=b +a.c=q +p=new A.aRG(q,a) +a.P(0,p) +q.je$.n(0,a,p)}a.ab5(r) +if(!s&&a.gAr(a)&&q.cX$!=null)q.T9(a)}, +x8(){var s,r,q=this +if(q.jf$!=null){s=q.cX$ +s=s==null?null:s.e +s=s==q.gi5()||q.gu1()}else s=!0 +if(s)return +r=q.cX$ +if(q.uJ(q.jf$,!1))if(r!=null)r.m()}, +gu1(){var s,r,q=this +if(q.hd$)return!0 +if(q.gi5()==null)return!1 +s=q.c +s.toString +r=A.uM(s) +if(r!=q.jf$){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}, +uJ(a,b){var s,r,q=this +if(q.gi5()==null||a==null)return q.a54(null,b) +if(b||q.cX$==null){s=q.gi5() +s.toString +return q.a54(a.aGm(s,q),b)}s=q.cX$ +s.toString +r=q.gi5() +r.toString +s.aOT(r) +r=q.cX$ +r.toString +a.mh(r) +return!1}, +a54(a,b){var s,r=this,q=r.cX$ +if(a==q)return!1 +r.cX$=a +if(!b){if(a!=null){s=r.je$ +new A.cl(s,A.l(s).h("cl<1>")).al(0,r.gaEl())}r.UN(q)}return!0}, +T9(a){var s,r=a.gAr(a),q=this.cX$ +if(r){if(q!=null){r=a.b +r.toString +s=a.Bz() +if(!J.j(J.b7(q.guB(),r),s)||!J.jC(q.guB(),r)){J.j5(q.guB(),r,s) +q.zc()}}}else if(q!=null){r=a.b +r.toString +q.aOK(0,r,t.K)}}, +aDY(a){var s=this.je$.E(0,a) +s.toString +a.H(0,s) +a.c=a.b=null}} +A.aRG.prototype={ +$0(){var s=this.a +if(s.cX$==null)return +s.T9(this.b)}, +$S:0} +A.beB.prototype={ +$2(a,b){if(!a.a)a.H(0,b)}, +$S:61} +A.aqd.prototype={ +b1(a){this.bh(a) +this.x8()}, +ca(){var s,r,q,p,o=this +o.e8() +s=o.cX$ +r=o.gu1() +q=o.c +q.toString +q=A.uM(q) +o.jf$=q +p=o.uJ(q,r) +if(r){o.kF(s,o.hd$) +o.hd$=!1}if(p)if(s!=null)s.m()}, +m(){var s,r=this +r.je$.al(0,new A.beB()) +s=r.cX$ +if(s!=null)s.m() +r.cX$=null +r.b0()}} +A.dv.prototype={ +sj(a,b){var s=this.y +if(b==null?s!=null:b!==s){this.y=b +this.UQ(s)}}, +ab5(a){this.y=a}} +A.lK.prototype={ +L_(){return this.cy}, +UQ(a){this.ag()}, +AL(a){return A.l(this).h("lK.T").a(a)}, +Bz(){var s=this.y +return s==null?A.l(this).h("dv.T").a(s):s}} +A.TO.prototype={ +AL(a){return this.akO(a)}, +Bz(){var s=this.akP() +s.toString +return s}} +A.NQ.prototype={} +A.z6.prototype={} +A.NR.prototype={} +A.beC.prototype={ +$2(a,b){if(!a.a)a.H(0,b)}, +$S:61} +A.lC.prototype={ +gls(a){var s,r=this,q=null,p=r.a +if(p!=null)return p +p=r.gho() +if(p.gdT(p).length===0)p="/" +else{p=r.gho() +p=p.gdT(p)}s=r.gho().gu_() +s=s.gak(s)?q:r.gho().gu_() +p=A.fc(r.gho().gp8().length===0?q:r.gho().gp8(),q,p,q,s,q).gwC() +return A.lL(p,0,p.length,B.a_,!1)}, +gho(){var s=this.b +if(s!=null)return s +s=this.a +s.toString +return A.dR(s,0,null)}} +A.Er.prototype={ +a8(){return new A.Hc(new A.alQ($.aH()),null,A.I(t.yb,t.Q),null,!0,null,B.m,this.$ti.h("Hc<1>"))}} +A.aS0.prototype={ +J(){return"RouteInformationReportingType."+this.b}} +A.Hc.prototype={ +gi5(){return this.a.r}, +aX(){var s,r=this +r.b9() +s=r.a.c +if(s!=null)s.P(0,r.gIG()) +r.a.f.Ki(r.gQT()) +r.a.e.P(0,r.gRa())}, +kF(a,b){var s,r,q=this,p=q.f +q.rl(p,"route") +s=p.y +r=s==null +if((r?A.l(p).h("dv.T").a(s):s)!=null){p=r?A.l(p).h("dv.T").a(s):s +p.toString +q.Jg(p,new A.bbx(q))}else{p=q.a.c +if(p!=null)q.Jg(p.gj(p),new A.bby(q))}}, +aBd(){var s=this +if(s.w||s.a.c==null)return +s.w=!0 +$.cB.y2$.push(s.gaAr())}, +aAs(a){var s,r,q,p=this +p.w=!1 +s=p.f +r=s.y +q=r==null +if((q?A.l(s).h("dv.T").a(r):r)!=null){s=q?A.l(s).h("dv.T").a(r):r +s.toString +r=p.a.c +r.toString +q=p.e +q.toString +r.aPn(s,q)}p.e=B.ND}, +aAH(){var s=this.a,r=s.e.d +s=s.d +return s==null?null:s.aPd(r)}, +J1(){var s=this +s.f.sj(0,s.aAH()) +if(s.e==null)s.e=B.ND +s.aBd()}, +ca(){var s,r=this +r.r=!0 +r.ama() +s=r.a.c +if(s!=null&&r.r)r.Jg(s.gj(s),new A.bbw(r)) +r.r=!1 +r.J1()}, +b1(a){var s,r,q,p=this +p.amb(a) +s=p.a +r=a.c +q=s.c==r +if(!q||s.f!==a.f||s.d!=a.d||s.e!==a.e)p.d=new A.C() +if(!q){s=r==null +if(!s)r.H(0,p.gIG()) +q=p.a.c +if(q!=null)q.P(0,p.gIG()) +s=s?null:r.gj(r) +r=p.a.c +if(s!=(r==null?null:r.gj(r)))p.a2s()}s=a.f +if(p.a.f!==s){r=p.gQT() +s.Nm(r) +p.a.f.Ki(r)}s=a.e +if(p.a.e!==s){r=p.gRa() +s.H(0,r) +p.a.e.P(0,r) +p.J1()}}, +m(){var s=this,r=s.a.c +if(r!=null)r.H(0,s.gIG()) +s.a.f.Nm(s.gQT()) +s.a.e.H(0,s.gRa()) +s.d=null +s.amc()}, +Jg(a,b){var s,r,q=this +q.r=!1 +q.d=new A.C() +s=q.a.d +s.toString +r=q.c +r.toString +s.aNS(a,r).be(q.azO(q.d,b),t.H)}, +azO(a,b){return new A.bbu(this,a,b)}, +a2s(){var s,r=this +r.r=!0 +s=r.a.c +r.Jg(s.gj(s),new A.bbr(r))}, +asJ(){var s=this +s.d=new A.C() +return s.a.e.WW().be(s.auz(s.d),t.y)}, +auz(a){return new A.bbs(this,a)}, +a4w(){this.ad(new A.bbv()) +this.J1() +return new A.cC(null,t.kO)}, +auA(){this.ad(new A.bbt()) +this.J1()}, +A(a){var s=this.cX$,r=this.a,q=r.c,p=r.f,o=r.d +r=r.e +return A.PP(s,new A.am6(q,p,o,r,this,new A.e4(r.gTS(),null),null))}} +A.bbx.prototype={ +$0(){return this.a.a.e.gagw()}, +$S(){return this.a.$ti.h("S<~>(1)()")}} +A.bby.prototype={ +$0(){return this.a.a.e.gagp()}, +$S(){return this.a.$ti.h("S<~>(1)()")}} +A.bbw.prototype={ +$0(){return this.a.a.e.gYX()}, +$S(){return this.a.$ti.h("S<~>(1)()")}} +A.bbu.prototype={ +$1(a){var s=0,r=A.y(t.H),q,p=this,o,n +var $async$$1=A.u(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.t(p.c.$0().$1(a),$async$$1) +case 3:if(o.d==n)o.a4w() +case 1:return A.w(q,r)}}) +return A.x($async$$1,r)}, +$S(){return this.a.$ti.h("S<~>(1)")}} +A.bbr.prototype={ +$0(){return this.a.a.e.gYX()}, +$S(){return this.a.$ti.h("S<~>(1)()")}} +A.bbs.prototype={ +$1(a){var s=this.a +if(this.b!=s.d)return new A.cC(!0,t.d9) +s.a4w() +return new A.cC(a,t.d9)}, +$S:554} +A.bbv.prototype={ +$0(){}, +$S:0} +A.bbt.prototype={ +$0(){}, +$S:0} +A.am6.prototype={ +dh(a){var s=this +return s.f!=a.f||s.r!==a.r||s.w!=a.w||s.x!==a.x||s.y!==a.y}} +A.mA.prototype={ +gaaQ(){return this.a.a.length!==0}, +Ki(a){var s=this.a +s.b=!0 +s.a.push(a) +return null}, +Nm(a){return this.a.E(0,a)}, +VW(a){var s,r,q,p=this.a +if(p.a.length===0)return a +try{p=p.agV(0) +return p}catch(q){s=A.ak(q) +r=A.aJ(q) +p=A.c0("while invoking the callback for "+A.p(this).l(0)) +A.e6(new A.cg(s,r,"widget library",p,new A.b3g(this),!1)) +return a}}} +A.b3g.prototype={ +$0(){var s=null,r=this.a +return A.a([A.lb("The "+A.p(r).l(0)+" that invoked the callback was",r,!0,B.bq,s,!1,s,s,B.aW,s,!1,!0,!0,B.cg,s,A.l(r).h("mA"))],t.F)}, +$S:40} +A.Y8.prototype={ +gI8(a){var s,r=this.b +if(r===$){s=t.uF.a(A.aW(t.Ox)) +r!==$&&A.aq() +this.b=s +r=s}return r}, +VW(a){var s,r,q,p=this,o={} +if(p.gI8(p).a!==0){s=p.gI8(p) +r=A.a8(s,!0,A.l(s).c) +q=r.length-1 +o.a=q +return r[q].aMV(a).be(new A.atw(o,p,r,a),t.y)}return p.a_4(a)}} +A.atw.prototype={ +$1(a){var s,r,q,p=this +if(a)return new A.cC(!0,t.d9) +s=p.a +r=s.a +if(r>0){q=r-1 +s.a=q +return p.c[q].aMV(p.d).be(p,t.y)}return p.b.a_4(p.d)}, +$S:555} +A.a8z.prototype={ +Ki(a){var s=this +if(!(A.mA.prototype.gaaQ.call(s)||s.gI8(s).a!==0))$.ap.bd$.push(s) +s.aka(a)}, +Nm(a){var s=this +s.akb(a) +if(!(A.mA.prototype.gaaQ.call(s)||s.gI8(s).a!==0))B.b.E($.ap.bd$,s)}, +Ey(){return this.VW(A.cR(!1,t.y))}} +A.a8E.prototype={} +A.Es.prototype={ +agq(a){return this.On(a)}, +agx(a){return this.On(a)}} +A.a8F.prototype={} +A.alQ.prototype={ +L_(){return null}, +UQ(a){this.ag()}, +AL(a){var s,r,q=null +if(a==null)return q +t.Dn.a(a) +s=J.ct(a) +r=A.af(s.gO(a)) +if(r==null)return q +return new A.lC(q,A.dR(r,0,q),s.gX(a))}, +Bz(){var s,r=this,q=r.y,p=q==null +if((p?A.l(r).h("dv.T").a(q):q)==null)q=null +else{q=(p?A.l(r).h("dv.T").a(q):q).gho().l(0) +s=r.y +q=[q,(s==null?A.l(r).h("dv.T").a(s):s).c]}return q}} +A.alY.prototype={} +A.HL.prototype={ +b1(a){this.bh(a) +this.x8()}, +ca(){var s,r,q,p,o=this +o.e8() +s=o.cX$ +r=o.gu1() +q=o.c +q.toString +q=A.uM(q) +o.jf$=q +p=o.uJ(q,r) +if(r){o.kF(s,o.hd$) +o.hd$=!1}if(p)if(s!=null)s.m()}, +m(){var s,r=this +r.je$.al(0,new A.beC()) +s=r.cX$ +if(s!=null)s.m() +r.cX$=null +r.b0()}} +A.DE.prototype={ +gMY(){return this.e}, +vv(){var s,r=this,q=A.p0(r.gao3(),!1) +r.p1=q +r.gtP() +s=A.p0(r.gao5(),!0) +r.p3=s +B.b.I(r.e,A.a([q,s],t.wi)) +r.ajl()}, +qK(a){var s,r=this +r.ajg(a) +s=r.at.Q +s===$&&A.b() +if(s===B.R&&!r.Q)r.a.aaa(r) +return!0}, +m(){var s,r,q +for(s=this.e,r=s.length,q=0;q"))}} +A.kX.prototype={ +aX(){var s,r,q=this +q.b9() +s=A.a([],t.Eo) +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.vA(s)}, +b1(a){this.bh(a) +this.a6w()}, +ca(){this.e8() +this.d=null +this.a6w()}, +a6w(){var s,r,q=this.a.c,p=q.fx +if(!(p!=null)){q.a.a.toString +p=B.axJ}s=this.f +s.dy=p +if(q.gtI()){this.a.c.a.a.toString +r=!0}else r=!1 +if(r){r=q.a.y.gkq() +if(r!=null)r.Ce(s)}}, +arJ(){this.ad(new A.b8m(this))}, +m(){this.f.m() +this.r.m() +this.b0()}, +ga5d(){var s=this.a.c.go +if((s==null?null:s.gaP(s))!==B.b5){s=this.a.c.a +s=s==null?null:s.cx.a +s=s===!0}else s=!0 +return s}, +A(a){var s,r,q=this,p=null,o=q.a.c,n=o.gtI(),m=q.a.c +if(!m.gAN()){m=m.hB$ +m=m!=null&&m.length!==0}else m=!0 +s=q.a.c +s=s.gAN()||s.mY$>0 +r=q.a.c +return A.hg(o.c,new A.b8q(q),new A.SO(n,m,s,o,new A.DD(r.fy,new A.DH(new A.e4(new A.b8r(q),p),r.ok,p),p),p))}} +A.b8m.prototype={ +$0(){this.a.d=null}, +$S:0} +A.b8q.prototype={ +$2(a,b){var s=this.a.a.c.c.a +b.toString +return new A.uL(b,s,null)}, +$S:557} +A.b8r.prototype={ +$1(a){var s,r=null,q=A.am([B.pK,new A.ag9(a,new A.bd(A.a([],t.h),t.o))],t.n,t.od),p=this.a,o=p.e +o===$&&A.b() +s=p.d +if(s==null)s=p.d=new A.ii(new A.e4(new A.b8o(p),r),p.a.c.k4) +return A.pY(q,A.btp(A.aDz(!1,new A.ii(A.hg(o,new A.b8p(p),s),r),r,r,p.f),p.r))}, +$S:558} +A.b8p.prototype={ +$2(a,b){var s,r,q=this.a,p=q.a.c,o=p.go +o.toString +s=p.id +s.toString +r=p.a +r=r==null?null:r.cx +if(r==null)r=new A.bF(!1,$.aH(),t.G) +return p.zL(a,o,s,A.hg(r,new A.b8n(q),b))}, +$S:51} +A.b8n.prototype={ +$2(a,b){var s=this.a,r=s.ga5d() +s.f.ser(!r) +return A.qD(b,r,null)}, +$S:559} +A.b8o.prototype={ +$1(a){var s,r=this.a.a.c,q=r.go +q.toString +s=r.id +s.toString +return r.qE(a,q,s)}, +$S:13} +A.ek.prototype={ +ad(a){var s,r=this.k3 +if(r.gR()!=null){r=r.gR() +if(r.a.c.gtI())if(!r.ga5d()){r.a.c.a.a.toString +s=!0}else s=!1 +else s=!1 +if(s){s=r.a.c.a.y.gkq() +if(s!=null)s.Ce(r.f)}r.ad(a)}else a.$0()}, +zL(a,b,c,d){return d}, +vv(){var s=this +s.ak_() +s.go=A.mf(A.fr.prototype.geq.call(s,s)) +s.id=A.mf(A.fr.prototype.gYI.call(s))}, +Ez(){var s,r=this,q=r.k3 +if(q.gR()!=null){r.a.a.toString +s=!0}else s=!1 +if(s){s=r.a.y.gkq() +if(s!=null)s.Ce(q.gR().f)}return r.ajZ()}, +Ev(){var s,r=this,q=r.k3 +if(q.gR()!=null){r.a.a.toString +s=!0}else s=!1 +if(s){s=r.a.y.gkq() +if(s!=null)s.Ce(q.gR().f)}r.ajX()}, +sMD(a){var s,r=this +if(r.fy===a)return +r.ad(new A.aKL(r,a)) +s=r.go +s.toString +s.sbP(0,r.fy?B.f5:A.fr.prototype.geq.call(r,r)) +s=r.id +s.toString +s.sbP(0,r.fy?B.bV:A.fr.prototype.gYI.call(r)) +r.pK()}, +pr(){var s=0,r=A.y(t.oj),q,p=this,o,n,m +var $async$pr=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:p.k3.gR() +o=A.a8(p.k1,!0,t.UA),n=o.length,m=0 +case 3:if(!(m>>24&255)!==0&&!n.fy){s=n.go +s.toString +r=n.gpJ().a +r=A.K(0,r>>>16&255,r>>>8&255,r&255) +q=n.gpJ() +p=t.IC.h("dz") +o=A.bpN(!0,m,new A.ax(t.m.a(s),new A.dz(new A.eI(B.aO),new A.dG(r,q),p),p.h("ax")),n.gqC(),n.gtb(),m)}else o=A.aKG(!0,m,m,n.gqC(),m,n.gtb(),m) +return o}, +ao6(a){var s=this,r=null,q=s.p2 +if(q==null)q=s.p2=new A.bu(A.bL(r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,B.aoj,r,r,r,r,r,r),!1,!1,!1,!1,new A.GU(s,s.k3,A.l(s).h("GU")),r) +return q}, +l(a){return"ModalRoute("+this.b.l(0)+", animation: "+A.i(this.as)+")"}} +A.aKL.prototype={ +$0(){this.a.fy=this.b}, +$S:0} +A.aKM.prototype={ +$1(a){var s=a.e +s===$&&A.b() +return s.a}, +$S:560} +A.aKJ.prototype={ +$1(a){var s=this.a.k4,r=$.ap.Y$.z.i(0,s) +r=r==null?null:r.e!=null +if(r!==!0)return +s=$.ap.Y$.z.i(0,s) +if(s!=null)s.fY(this.b)}, +$S:5} +A.aKK.prototype={ +$0(){}, +$S:0} +A.N2.prototype={ +gtV(){return!1}, +gtP(){return!0}} +A.Nk.prototype={ +gqC(){return!0}, +gtb(){return this.dM}, +gpJ(){return this.dj}, +gu7(a){return this.D}, +qE(a,b,c){var s=null,r=this.dY.$3(a,b,c) +return new A.bu(A.bL(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s,s),!1,!0,!1,!1,new A.JR(this.az,r,s),s)}, +zL(a,b,c,d){return this.ac.$4(a,b,c,d)}} +A.Al.prototype={ +pr(){var s=0,r=A.y(t.oj),q,p=this,o +var $async$pr=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:o=p.hB$ +if(o!=null&&o.length!==0){q=B.li +s=1 +break}q=p.ajm() +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$pr,r)}, +gvE(){var s=this.hB$ +if(s!=null&&s.length!==0)return B.li +return A.dd.prototype.gvE.call(this)}, +qK(a){var s,r,q=this,p=q.hB$ +if(p!=null&&p.length!==0){s=p.pop() +s.b=null +s.a3w() +r=s.c&&--q.mY$===0 +if(q.hB$.length===0||r)q.pK() +return!1}q.ajY(a) +return!0}} +A.a8M.prototype={ +A(a){var s,r,q,p,o,n,m=this,l=A.aY(a,B.bR,t.l).w.r,k=m.c,j=k?l.a:0,i=m.r +j=Math.max(j,i.a) +s=m.d +r=s?l.b:0 +r=Math.max(r,i.b) +q=m.e +p=q?l.c:0 +p=Math.max(p,i.c) +o=m.f +n=o?l.d:0 +return new A.b4(new A.aK(j,r,p,Math.max(n,i.d)),A.aK9(m.x,a,o,k,q,s),null)}} +A.a8R.prototype={ +adn(){}, +a9F(a,b){if(b!=null)b.fY(new A.Ez(null,a,b,0))}, +a9G(a,b,c){b.fY(A.blv(b,null,null,a,c))}, +Lk(a,b,c){b.fY(new A.no(null,c,0,a,b,0))}, +a9E(a,b){b.fY(new A.pb(null,a,b,0))}, +E_(){}, +m(){this.b=!0}, +l(a){return"#"+A.br(this)}} +A.tT.prototype={ +E_(){this.a.pu(0)}, +grJ(){return!1}, +gq3(){return!1}, +gkK(){return 0}} +A.aGg.prototype={ +grJ(){return!1}, +gq3(){return!1}, +gkK(){return 0}, +m(){this.c.$0() +this.HO()}} +A.aT3.prototype={ +ann(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.l0(a)}else return 0}}}, +bZ(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.ann(s,q) +if(p===0)return +s=o.a +if(A.ar3(s.w.a.c))p=-p +s.XS(p>0?B.p4:B.p5) +r=s.at +r.toString +s.P1(r-s.r.TJ(s,p))}, +m(){this.x=null +this.b.$0()}, +l(a){return"#"+A.br(this)}} +A.aA5.prototype={ +a9F(a,b){var s=t.uL.a(this.c.x) +if(b!=null)b.fY(new A.Ez(s,a,b,0))}, +a9G(a,b,c){b.fY(A.blv(b,null,t.zk.a(this.c.x),a,c))}, +Lk(a,b,c){b.fY(new A.no(t.zk.a(this.c.x),c,0,a,b,0))}, +a9E(a,b){var s=this.c.x +b.fY(new A.pb(s instanceof A.jL?s:null,a,b,0))}, +grJ(){var s=this.c +return(s==null?null:s.w)!==B.bM}, +gq3(){return!0}, +gkK(){return 0}, +m(){this.c=null +this.HO()}, +l(a){return"#"+A.br(this)+"("+A.i(this.c)+")"}} +A.Ye.prototype={ +adn(){var s=this.a,r=this.c +r===$&&A.b() +s.pu(r.gkK())}, +E_(){var s=this.a,r=this.c +r===$&&A.b() +s.pu(r.gkK())}, +SA(){var s=this.c +s===$&&A.b() +s=s.x +s===$&&A.b() +if(!(Math.abs(this.a.P1(s))<1e-10)){s=this.a +s.oQ(new A.tT(s))}}, +Sy(){if(!this.b)this.a.pu(0)}, +Lk(a,b,c){var s=this.c +s===$&&A.b() +b.fY(new A.no(null,c,s.gkK(),a,b,0))}, +gq3(){return!0}, +gkK(){var s=this.c +s===$&&A.b() +return s.gkK()}, +m(){var s=this.c +s===$&&A.b() +s.m() +this.HO()}, +l(a){var s=A.br(this),r=this.c +r===$&&A.b() +return"#"+s+"("+r.l(0)+")"}, +grJ(){return this.d}} +A.a1f.prototype={ +SA(){var s=this.a,r=this.d +r===$&&A.b() +r=r.x +r===$&&A.b() +if(s.P1(r)!==0){s=this.a +s.oQ(new A.tT(s))}}, +Sy(){var s,r +if(!this.b){s=this.a +r=this.d +r===$&&A.b() +s.pu(r.gkK())}}, +Lk(a,b,c){var s=this.d +s===$&&A.b() +b.fY(new A.no(null,c,s.gkK(),a,b,0))}, +grJ(){return!0}, +gq3(){return!0}, +gkK(){var s=this.d +s===$&&A.b() +return s.gkK()}, +m(){var s=this.c +s===$&&A.b() +s.fm(0) +s=this.d +s===$&&A.b() +s.m() +this.HO()}, +l(a){var s=A.br(this),r=this.d +r===$&&A.b() +return"#"+s+"("+r.l(0)+")"}} +A.O3.prototype={ +Gm(a,b,c,d){var s,r=this +if(b.a==null){s=$.jm.v9$ +s===$&&A.b() +s=s.aq(0,c)}else s=!0 +if(s){r.b.Gm(a,b,c,d) +return}s=r.a +if(s.gc9(s)==null)return +s=s.gc9(s) +s.toString +if(A.bM_(s)){$.cB.Hj(new A.aT_(r,a,b,c,d)) +return}r.b.Gm(a,b,c,d)}, +FG(a,b){return this.b.FG(a,b)}, +FH(a,b){return this.b.FH(a,b)}, +MC(a){return this.b.MC(a)}} +A.aT_.prototype={ +$1(a){var s=this +A.fE(new A.aSZ(s.a,s.b,s.c,s.d,s.e))}, +$S:5} +A.aSZ.prototype={ +$0(){var s=this +return s.a.Gm(s.b,s.c,s.d,s.e)}, +$S:0} +A.a8S.prototype={ +qI(a,b,c,d,e,f){return new A.ber(this,f!==!1,b!==!1,c,d,a,e)}, +KW(a){return this.qI(null,null,null,null,null,a)}, +a8L(a){return this.qI(null,a,null,null,null,null)}, +a8Z(a,b,c,d){return this.qI(null,a,b,c,null,d)}, +a8T(a,b){return this.qI(null,a,null,null,null,b)}, +rz(a){return A.c3()}, +gv5(){return B.O7}, +gG7(){return A.f9([B.e_,B.ey],t.bd)}, +KF(a,b,c){var s=null +switch(this.rz(a).a){case 3:case 4:case 5:return A.bLo(b,c.b,B.bC,s,s,A.HU(),B.B,s,s,s,s,B.hs,s) +case 0:case 1:case 2:return b}}, +KE(a,b,c){switch(this.rz(a).a){case 2:case 3:case 4:case 5:return b +case 0:case 1:return A.brQ(c.a,b,B.l)}}, +NP(a){switch(this.rz(a).a){case 2:return new A.aT0() +case 4:return new A.aT1() +case 0:case 1:case 3:case 5:return new A.aT2()}}, +yg(a){switch(this.rz(a).a){case 2:return B.Qt +case 4:return B.Qu +case 0:case 1:case 3:case 5:return B.TD}}, +Oq(a){return!1}, +l(a){return"ScrollBehavior"}} +A.aT0.prototype={ +$1(a){return A.bIT(a.gdR(a))}, +$S:561} +A.aT1.prototype={ +$1(a){var s=a.gdR(a),r=t.av,q=A.aX(20,null,!1,r) +$.kp() +return new A.Di(q,s,new A.k9(),A.aX(20,null,!1,r))}, +$S:562} +A.aT2.prototype={ +$1(a){var s=a.gdR(a) +$.kp() +return new A.kf(s,new A.k9(),A.aX(20,null,!1,t.av))}, +$S:228} +A.ber.prototype={ +gv5(){var s=this.f +return s==null?B.O7:s}, +gG7(){var s=this.r +return s==null?A.f9([B.e_,B.ey],t.bd):s}, +KE(a,b,c){if(this.c)return this.a.KE(a,b,c) +return b}, +KF(a,b,c){if(this.b)return this.a.KF(a,b,c) +return b}, +qI(a,b,c,d,e,f){var s=this,r=f==null?s.b:f,q=b==null?s.c:b,p=s.gv5(),o=s.gG7(),n=c==null?s.d:c,m=d==null?s.e:d +return s.a.qI(p,q,n,m,o,r)}, +KW(a){return this.qI(null,null,null,null,null,a)}, +a8L(a){return this.qI(null,a,null,null,null,null)}, +a8Z(a,b,c,d){return this.qI(null,a,b,c,null,d)}, +a8T(a,b){return this.qI(null,a,null,null,null,b)}, +rz(a){var s=this.e +return s==null?this.a.rz(a):s}, +yg(a){var s=this.d +return s==null?this.a.yg(a):s}, +Oq(a){var s=this +return A.p(a.a)!==A.p(s.a)||a.b!==s.b||a.c!==s.c||!A.WW(a.gv5(),s.gv5())||!A.WW(a.gG7(),s.gG7())||a.d!=s.d||a.e!=s.e||!1}, +NP(a){return this.a.NP(a)}, +l(a){return"_WrappedScrollBehavior"}} +A.O4.prototype={ +dh(a){var s=this.f,r=a.f +if(A.p(s)===A.p(r))s=s!==r&&s.Oq(r) +else s=!0 +return s}} +A.zb.prototype={ +j3(a,b,c){return this.aFx(a,b,c)}, +aFx(a,b,c){var s=0,r=A.y(t.H),q=this,p,o,n +var $async$j3=A.u(function(d,e){if(d===1)return A.v(e,r) +while(true)switch(s){case 0:n=A.a([],t.mo) +for(p=q.f,o=0;o#"+A.br(this)+"("+B.b.ck(r,", ")+")"}} +A.uZ.prototype={ +gAu(){return null}, +Vj(a){return null}, +l(a){var s=A.a([],t.s) +this.fX(s) +return"#"+A.br(this)+"("+B.b.ck(s,", ")+")"}, +fX(a){var s,r,q +try{s=this.gAu() +if(s!=null)a.push("estimated child count: "+A.i(s))}catch(q){r=A.ak(q) +a.push("estimated child count: EXCEPTION ("+J.a_(r).l(0)+")")}}} +A.Hd.prototype={} +A.kJ.prototype={ +Vj(a){return null}, +aB(a,b){var s,r,q,p,o,n,m,l,k=this,j=null +if(b>=0){p=k.b +p=p!=null&&b>=p}else p=!0 +if(p)return j +s=null +try{s=k.a.$2(a,b)}catch(o){r=A.ak(o) +q=A.aJ(o) +n=new A.cg(r,q,"widgets library",A.c0("building"),j,!1) +A.e6(n) +s=A.Kh(n)}if(s==null)return j +if(s.a!=null){p=s.a +p.toString +m=new A.Hd(p)}else m=j +p=s +s=new A.ii(p,j) +if(k.e){l=k.r.$2(s,b) +if(l!=null)s=new A.CQ(l,s,j)}p=s +s=new A.B5(new A.Hf(p,j),j) +return new A.iG(s,m)}, +gAu(){return this.b}, +Z0(a){return!0}} +A.a9C.prototype={ +arr(a){var s,r,q,p=null,o=this.r +if(!o.aq(0,a)){s=o.i(0,p) +s.toString +for(r=this.f,q=s;q=this.f.length)return o +s=this.f[b] +r=s.a +q=r!=null?new A.Hd(r):o +s=new A.ii(s,o) +p=A.bxu(s,b) +s=p!=null?new A.CQ(p,s,o):s +return new A.iG(new A.B5(new A.Hf(s,o),o),q)}, +gAu(){return this.f.length}, +Z0(a){return this.f!==a.f}} +A.Hf.prototype={ +a8(){return new A.Ua(null,B.m)}} +A.Ua.prototype={ +gGV(){return this.r}, +aMa(a){return new A.bc6(this,a)}, +K2(a,b){var s,r=this +if(b){s=r.d;(s==null?r.d=A.aW(t.x9):s).F(0,a)}else{s=r.d +if(s!=null)s.E(0,a)}s=r.d +s=s==null?null:s.a!==0 +s=s===!0 +if(r.r!==s){r.r=s +r.y6()}}, +ca(){var s,r,q,p=this +p.e8() +s=p.c +s.toString +r=A.a92(s) +s=p.f +if(s!=r){if(s!=null){q=p.e +if(q!=null)new A.cl(q,A.l(q).h("cl<1>")).al(0,s.gk_(s))}p.f=r +if(r!=null){s=p.e +if(s!=null)new A.cl(s,A.l(s).h("cl<1>")).al(0,r.gjH(r))}}}, +F(a,b){var s,r=this,q=r.aMa(b) +b.P(0,q) +s=r.e;(s==null?r.e=A.I(t.x9,t.Q):s).n(0,b,q) +r.f.F(0,b) +if(b.gj(b).c!==B.fX)r.K2(b,!0)}, +E(a,b){var s=this.e +if(s==null)return +s=s.E(0,b) +s.toString +b.H(0,s) +this.f.E(0,b) +this.K2(b,!1)}, +m(){var s,r,q=this,p=q.e +if(p!=null){for(p=A.ie(p,p.r,A.l(p).c);p.v();){s=p.d +q.f.E(0,s) +r=q.e.i(0,s) +r.toString +s.H(0,r)}q.e=null}q.d=null +q.b0()}, +A(a){var s=this +s.OF(a) +if(s.f==null)return s.a.c +return A.btZ(s.a.c,s)}} +A.bc6.prototype={ +$0(){var s=this.b,r=this.a +if(s.gj(s).c!==B.fX)r.K2(s,!0) +else r.K2(s,!1)}, +$S:0} +A.aqh.prototype={ +aX(){this.b9() +if(this.r)this.CS()}, +fd(){var s=this.mX$ +if(s!=null){s.ag() +s.eK() +this.mX$=null}this.rS()}} +A.mj.prototype={ +pL(){var s=this,r=null,q=s.gVE()?s.gkz():r,p=s.gVE()?s.gky():r,o=s.gaaS()?s.gf2():r,n=s.gaaV()?s.gGT():r,m=s.gj4(),l=s.gAd(s) +return new A.Kt(q,p,o,n,m,l)}, +gWO(){var s=this +return s.gf2()s.gky()}, +ga7L(){var s=this +return s.gf2()===s.gkz()||s.gf2()===s.gky()}, +gxh(){var s=this +return s.gGT()-A.V(s.gkz()-s.gf2(),0,s.gGT())-A.V(s.gf2()-s.gky(),0,s.gGT())}} +A.Kt.prototype={ +gkz(){var s=this.a +s.toString +return s}, +gky(){var s=this.b +s.toString +return s}, +gVE(){return this.a!=null&&this.b!=null}, +gf2(){var s=this.c +s.toString +return s}, +gaaS(){return this.c!=null}, +gGT(){var s=this.d +s.toString +return s}, +gaaV(){return this.d!=null}, +l(a){var s=this +return"FixedScrollMetrics("+B.e.aF(Math.max(s.gf2()-s.gkz(),0),1)+"..["+B.e.aF(s.gxh(),1)+"].."+B.e.aF(Math.max(s.gky()-s.gf2(),0),1)+")"}, +gj4(){return this.e}, +gAd(a){return this.f}} +A.agY.prototype={} +A.kg.prototype={} +A.abL.prototype={ +acj(a){if(t.rS.b(a))++a.jg$ +return!1}} +A.k1.prototype={ +fX(a){this.al6(a) +a.push(this.a.l(0))}} +A.Ez.prototype={ +fX(a){var s +this.Cv(a) +s=this.d +if(s!=null)a.push(s.l(0))}} +A.kI.prototype={ +fX(a){var s +this.Cv(a) +a.push("scrollDelta: "+A.i(this.e)) +s=this.d +if(s!=null)a.push(s.l(0))}} +A.no.prototype={ +fX(a){var s,r=this +r.Cv(a) +a.push("overscroll: "+B.e.aF(r.e,1)) +a.push("velocity: "+B.e.aF(r.f,1)) +s=r.d +if(s!=null)a.push(s.l(0))}} +A.pb.prototype={ +fX(a){var s +this.Cv(a) +s=this.d +if(s!=null)a.push(s.l(0))}} +A.abz.prototype={ +fX(a){this.Cv(a) +a.push("direction: "+this.d.l(0))}} +A.U_.prototype={ +fX(a){var s,r +this.OR(a) +s=this.jg$ +r=s===0?"local":"remote" +a.push("depth: "+s+" ("+r+")")}} +A.TZ.prototype={ +dh(a){return this.f!==a.f}} +A.vz.prototype={ +aM9(a,b){return this.a.$1(b)}} +A.O6.prototype={ +a8(){return new A.O7(new A.jU(t.z_),B.m)}} +A.O7.prototype={ +H(a,b){var s,r,q=this.d +q.toString +q=A.bmp(q,q.$ti.c) +s=q.$ti.c +for(;q.v();){r=q.c +if(r==null)r=s.a(r) +if(J.j(r.a,b)){q=r.hU$ +q.toString +q.T2(A.l(r).h("ji.E").a(r)) +return}}}, +a4I(a){var s,r,q,p,o,n,m,l,k=this.d +if(k.b===0)return +p=A.a8(k,!0,t.Sx) +for(k=p.length,o=0;oMath.max(Math.abs(s.a),Math.abs(s.b))}return s.acY(a,b,c)}, +DZ(a,b){var s=this.a +if(s==null)return 0 +return s.DZ(a,b)}, +Kq(a,b,c,d){var s=this.a +if(s==null){s=b.c +s.toString +return s}return s.Kq(a,b,c,d)}, +A0(a,b){var s=this.a +if(s==null)return null +return s.A0(a,b)}, +gyx(){var s=this.a +s=s==null?null:s.gyx() +return s==null?$.bBj():s}, +GB(a){var s=this.a +s=s==null?null:s.GB(a) +if(s==null){s=a.w.f +s===$&&A.b() +s=new A.PI(1/s,1/(0.05*s))}return s}, +gWi(){var s=this.a +s=s==null?null:s.gWi() +return s==null?18:s}, +gMx(){var s=this.a +s=s==null?null:s.gMx() +return s==null?50:s}, +gFM(){var s=this.a +s=s==null?null:s.gFM() +return s==null?8000:s}, +TX(a){var s=this.a +if(s==null)return 0 +return s.TX(a)}, +gUU(){var s=this.a +return s==null?null:s.gUU()}, +gwN(){return!0}, +l(a){var s=this.a +if(s==null)return"ScrollPhysics" +return"ScrollPhysics -> "+s.l(0)}} +A.a7C.prototype={ +ta(a){return new A.a7C(this.qF(a))}, +Kq(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.aau((o-Math.abs(b))/s)}else{s.toString +m=this.aau(o/s)}l=J.l0(b) +if(n&&this.b===B.NH)return l*Math.abs(b) +return l*A.bFp(o,Math.abs(b),m)}, +DZ(a,b){return 0}, +A0(a,b){var s,r,q,p,o,n,m,l=this.GB(a) +if(Math.abs(b)>=l.c||a.gWO()){switch(this.b.a){case 1:s=1400 +break +case 0:s=0 +break +default:s=null}r=this.gyx() +q=a.at +q.toString +p=a.z +p.toString +o=a.Q +o.toString +n=new A.auw(p,o,r,l) +if(qo){n.f=new A.uQ(o,A.Hm(r,q-o,b),B.dd) +n.r=-1/0}else{q=n.e=A.aEg(0.135,q,b,s) +m=q.gAH() +if(b>0&&m>o){p=q.adG(o) +n.r=p +n.f=new A.uQ(o,A.Hm(r,o-o,Math.min(q.j9(0,p),5000)),B.dd)}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.ax0(r,b,n) +p=$.bit() +s=p*0.35*Math.pow(s/2223.8657884799995,1/(p-1)) +r.e=s +r.f=b*s/p +return r}} +A.Xs.prototype={ +ta(a){return new A.Xs(this.qF(a))}, +ul(a){return!0}} +A.ze.prototype={ +J(){return"ScrollPositionAlignmentPolicy."+this.b}} +A.nC.prototype={ +P6(a,b,c,d,e){if(d!=null)this.uK(d) +if(this.x)this.adu()}, +gkz(){var s=this.z +s.toString +return s}, +gky(){var s=this.Q +s.toString +return s}, +gVE(){return this.z!=null&&this.Q!=null}, +gf2(){var s=this.at +s.toString +return s}, +gaaS(){return this.at!=null}, +gGT(){var s=this.ax +s.toString +return s}, +gaaV(){return this.ax!=null}, +uK(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.p(a)!==A.p(s))s.fr.adn() +s.w.YT(s.fr.grJ()) +s.dy.sj(0,s.fr.gq3())}, +gAd(a){var s=this.w.f +s===$&&A.b() +return s}, +agt(a){var s,r,q,p=this,o=p.at +o.toString +if(a!==o){s=p.r.DZ(p,a) +o=p.at +o.toString +r=a-s +p.at=r +if(r!==o){p.Tb() +p.HH() +r=p.at +r.toString +p.UO(r-o)}if(Math.abs(s)>1e-10){o=p.fr +o.toString +r=p.pL() +q=$.ap.Y$.z.i(0,p.w.Q) +q.toString +o.Lk(r,q,s) +return s}}return 0}, +a90(a){var s=this.at +s.toString +this.at=s+a +this.ch=!0}, +Vo(a){var s=this,r=s.at +r.toString +s.as=a-r +s.at=a +s.Tb() +s.HH() +$.cB.y2$.push(new A.aT7(s))}, +YC(){var s,r=this.w,q=r.c +q.toString +q=A.yu(q) +if(q!=null){r=r.c +r.toString +s=this.at +s.toString +q.NT(r,s)}}, +adu(){var s,r +if(this.at==null){s=this.w +r=s.c +r.toString +r=A.yu(r) +if(r==null)s=null +else{s=s.c +s.toString +s=r.Ni(s)}A.bmK(s) +if(s!=null)this.at=s}}, +adt(a,b){if(b)this.at=a +else this.fg(a)}, +YB(){var s=this.at +s.toString +this.w.r.sj(0,s) +s=$.iR.dj$ +s===$&&A.b() +s.aai()}, +qB(a){if(this.ax!==a){this.ax=a +this.ch=!0}return!0}, +pI(a,b){var s,r,q,p=this +if(!A.WU(p.z,a,0.001)||!A.WU(p.Q,b,0.001)||p.ch||p.db!==A.bU(p.gj4())){p.z=a +p.Q=b +p.db=A.bU(p.gj4()) +s=p.ay?p.pL():null +p.ch=!1 +p.CW=!0 +if(p.ay){r=p.cx +r.toString +s.toString +r=!p.aHF(r,s)}else r=!1 +if(r)return!1 +p.ay=!0}if(p.CW){p.aju() +p.w.agk(p.r.ul(p)) +p.CW=!1}s=p.pL() +if(p.cx!=null){r=Math.max(s.gf2()-s.gkz(),0) +q=p.cx +if(r===Math.max(q.gf2()-q.gkz(),0))if(s.gxh()===p.cx.gxh()){r=Math.max(s.gky()-s.gf2(),0) +q=p.cx +r=r===Math.max(q.gky()-q.gf2(),0)&&s.e===p.cx.e}else r=!1 +else r=!1 +r=!r}else r=!0 +if(r){if(!p.cy){A.fE(p.gaIh()) +p.cy=!0}p.cx=p.pL()}return!0}, +aHF(a,b){var s=this,r=s.r.Kq(s.fr.gq3(),b,a,s.fr.gkK()),q=s.at +q.toString +if(r!==q){s.at=r +return!1}return!0}, +E_(){this.fr.E_() +this.Tb()}, +Tb(){var s,r,q,p,o,n=this,m=n.w +switch(m.a.c.a){case 0:s=B.ik +r=B.ij +break +case 1:s=B.il +r=B.im +break +case 2:s=B.ij +r=B.ik +break +case 3:s=B.im +r=B.il +break +default:s=null +r=null}q=A.aW(t._S) +p=n.at +p.toString +o=n.z +o.toString +if(p>o)q.F(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.cR(m,t.H) +if(e.a===B.B.a){n.fg(o) +return A.cR(m,t.H)}return n.j3(o,d,e)}, +FS(a,b,c,d){var s,r=this.z +r.toString +s=this.Q +s.toString +b=A.V(b,r,s) +return this.ak1(0,b,c,d)}, +oQ(a){var s,r,q=this,p=q.fr +if(p!=null){s=p.grJ() +r=q.fr.gq3() +if(r&&!a.gq3())q.UI() +q.fr.m()}else{r=!1 +s=!1}q.fr=a +if(s!==a.grJ())q.w.YT(q.fr.grJ()) +q.dy.sj(0,q.fr.gq3()) +if(!r&&q.fr.gq3())q.UM()}, +UM(){var s=this.fr +s.toString +s.a9F(this.pL(),$.ap.Y$.z.i(0,this.w.Q))}, +UO(a){var s,r,q=this.fr +q.toString +s=this.pL() +r=$.ap.Y$.z.i(0,this.w.Q) +r.toString +q.a9G(s,r,a)}, +UI(){var s,r,q=this,p=q.fr +p.toString +s=q.pL() +r=$.ap.Y$.z.i(0,q.w.Q) +r.toString +p.a9E(s,r) +q.YB() +if(q.x)q.YC()}, +aIi(){var s,r,q +this.cy=!1 +s=this.w.Q +if($.ap.Y$.z.i(0,s)!=null){r=this.pL() +q=$.ap.Y$.z.i(0,s) +q.toString +s=$.ap.Y$.z.i(0,s) +if(s!=null)s.fY(new A.zc(r,q,0))}}, +m(){var s=this,r=s.fr +if(r!=null)r.m() +s.fr=null +r=s.dy +r.ok$=$.aH() +r.k4$=0 +s.eK()}, +fX(a){var s,r,q=this +q.ak0(a) +s=q.z +s=s==null?null:B.e.aF(s,1) +r=q.Q +r=r==null?null:B.e.aF(r,1) +a.push("range: "+A.i(s)+".."+A.i(r)) +r=q.ax +a.push("viewport: "+A.i(r==null?null:B.e.aF(r,1)))}} +A.aT7.prototype={ +$1(a){this.a.as=0}, +$S:5} +A.zc.prototype={ +a7H(){return A.blv(this.b,this.jg$,null,this.a,null)}, +fX(a){this.al5(a) +a.push(this.a.l(0))}} +A.TY.prototype={ +fX(a){var s,r +this.OR(a) +s=this.jg$ +r=s===0?"local":"remote" +a.push("depth: "+s+" ("+r+")")}} +A.amd.prototype={} +A.zf.prototype={ +P7(a,b,c,d,e,f){var s=this +if(s.at==null&&c!=null)s.at=c +if(s.fr==null)s.oQ(new A.tT(s))}, +gj4(){return this.w.a.c}, +uK(a){var s,r=this +r.ajt(a) +r.fr.a=r +r.k4=a.k4 +s=a.ok +if(s!=null){r.ok=s +s.a=r +a.ok=null}}, +oQ(a){var s,r=this +r.k3=0 +r.ajw(a) +s=r.ok +if(s!=null)s.m() +r.ok=null +if(!r.fr.gq3())r.XS(B.fW)}, +pu(a){var s,r,q,p=this,o=p.r.A0(p,a) +if(o!=null){s=p.fr +s=s==null?null:s.grJ() +s=new A.Ye(s!==!1,p) +r=A.bjp(null,0,p.w) +r.cF() +q=r.dw$ +q.b=!0 +q.a.push(s.gSz()) +r.TD(o).a.a.fu(s.gSx()) +s.c=r +p.oQ(s)}else p.oQ(new A.tT(p))}, +XS(a){var s,r,q,p=this +if(p.k4===a)return +p.k4=a +s=p.pL() +r=p.w.Q +q=$.ap.Y$.z.i(0,r) +q.toString +r=$.ap.Y$.z.i(0,r) +if(r!=null)r.fY(new A.abz(a,s,q,0))}, +j3(a,b,c){var s,r,q,p=this,o=p.at +o.toString +if(A.WU(a,o,p.r.GB(p).a)){p.fg(a) +return A.cR(null,t.H)}o=p.at +o.toString +s=new A.a1f(p) +r=new A.aD(new A.a7($.ac,t.b),t.gR) +s.c=r +o=A.bjp("DrivenScrollActivity",o,p.w) +o.cF() +q=o.dw$ +q.b=!0 +q.a.push(s.gSz()) +o.z=B.aN +o.kh(a,b,c).a.a.fu(s.gSx()) +s.d!==$&&A.ck() +s.d=o +p.oQ(s) +return r.a}, +fg(a){var s,r,q=this +q.oQ(new A.tT(q)) +s=q.at +s.toString +if(s!==a){q.Vo(a) +q.UM() +r=q.at +r.toString +q.UO(r-s) +q.UI()}q.pu(0)}, +WV(a){var s,r,q,p,o=this +if(a===0){o.pu(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.oQ(new A.tT(o)) +o.XS(-a>0?B.p4:B.p5) +s=o.at +s.toString +o.dy.sj(0,!0) +o.Vo(p) +o.UM() +r=o.at +r.toString +o.UO(r-s) +o.UI() +o.pu(0)}}, +m(){var s=this.ok +if(s!=null)s.m() +this.ok=null +this.ajy()}} +A.auw.prototype={ +SJ(a){var s,r=this,q=r.r +q===$&&A.b() +if(a>q){if(!isFinite(q))q=0 +r.w=q +q=r.f +q===$&&A.b() +s=q}else{r.w=0 +q=r.e +q===$&&A.b() +s=q}s.a=r.a +return s}, +hK(a,b){return this.SJ(b).hK(0,b-this.w)}, +j9(a,b){return this.SJ(b).j9(0,b-this.w)}, +tJ(a){return this.SJ(a).tJ(a-this.w)}, +l(a){return"BouncingScrollSimulation(leadingExtent: "+A.i(this.b)+", trailingExtent: "+A.i(this.c)+")"}} +A.ax0.prototype={ +hK(a,b){var s,r=this.e +r===$&&A.b() +s=A.V(b/r,0,1) +r=this.f +r===$&&A.b() +return this.b+r*(1-Math.pow(1-s,$.bit()))}, +j9(a,b){var s=this.e +s===$&&A.b() +return this.c*Math.pow(1-A.V(b/s,0,1),$.bit()-1)}, +tJ(a){var s=this.e +s===$&&A.b() +return a>=s}} +A.a8X.prototype={ +J(){return"ScrollViewKeyboardDismissBehavior."+this.b}} +A.a8W.prototype={ +a88(a,b,c,d){var s=this +if(s.x)return new A.a9n(c,b,s.ch,d,null) +return A.bve(s.gkj(),c,s.Q,B.he,s.y,s.ch,null,null,b,d)}, +A(a){var s,r,q,p=this,o=p.a80(a),n=p.c,m=A.bh6(a,n,p.d),l=p.f +if(l==null)l=p.e==null&&A.btr(a,n) +s=l?A.E_(a):p.e +r=A.aTa(m,p.ch,s,p.at,!1,null,p.r,p.ay,p.w,p.as,new A.aT8(p,m,o)) +q=l&&s!=null?A.btq(r):r +if(p.ax===B.apK)return new A.dB(new A.aT9(a),q,null,t.ZE) +else return q}, +gkj(){return this.z}} +A.aT8.prototype={ +$2(a,b){return this.a.a88(a,b,this.b,this.c)}, +$S:566} +A.aT9.prototype={ +$1(a){var s=A.a22(this.a) +if(a.d!=null&&s.gdk())s.pq() +return!1}, +$S:567} +A.JG.prototype={ +a80(a){return this.cx}} +A.YA.prototype={ +a80(a){var s,r,q,p,o=this.KC(a),n=this.cx +if(n==null){s=A.d9(a,null) +if(s!=null){r=s.r +q=r.a8R(0,0) +p=r.aHp(0,0) +r=this.c===B.H +n=r?p:q +o=A.ni(o,s.x_(r?q:p),null)}}return A.a([n!=null?new A.zt(n,o,null):o],t.p)}} +A.y3.prototype={ +KC(a){var s=this.p3 +if(s!=null)return A.bMu(this.RG,s) +return new A.mm(this.RG,null)}} +A.a2t.prototype={ +KC(a){return A.aVp(this.p4,this.p3)}} +A.bc0.prototype={ +$2(a,b){if(!a.a)a.H(0,b)}, +$S:61} +A.O8.prototype={ +a8(){var s=null,r=t.C +return new A.EA(new A.alR($.aH()),new A.bq(s,r),new A.bq(s,t.hA),new A.bq(s,r),B.Jj,s,A.I(t.yb,t.Q),s,!0,s,s,s,B.m)}, +aQw(a,b){return this.f.$2(a,b)}} +A.aTh.prototype={ +$1(a){return null}, +$S:568} +A.U1.prototype={ +dh(a){return this.r!==a.r}} +A.EA.prototype={ +ga9t(){var s,r=this +switch(r.a.c.a){case 2:s=r.d.at +s.toString +return new A.m(0,s) +case 0:s=r.d.at +s.toString +return new A.m(0,-s) +case 3:s=r.d.at +s.toString +return new A.m(-s,0) +case 1:s=r.d.at +s.toString +return new A.m(s,0)}}, +gDv(){var s=this.a.d +if(s==null){s=this.x +s.toString}return s}, +gi5(){return this.a.z}, +a6I(){var s,r,q,p=this,o=p.a.Q +if(o==null){o=p.c +o.toString +o=A.uP(o)}p.w=o +s=p.c +s.toString +s=o.yg(s) +p.e=s +o=p.a +r=o.e +if(r!=null)p.e=r.ta(s) +else{o=o.Q +if(o!=null){s=p.c +s.toString +p.e=o.yg(s).ta(p.e)}}q=p.d +if(q!=null){p.gDv().Eu(0,q) +A.fE(q.gex())}o=p.gDv() +s=p.e +s.toString +p.d=o.Us(s,p,q) +s=p.gDv() +o=p.d +o.toString +s.aw(o)}, +kF(a,b){var s,r,q,p=this.r +this.rl(p,"offset") +s=p.y +r=s==null +if((r?A.l(p).h("dv.T").a(s):s)!=null){q=this.d +q.toString +p=r?A.l(p).h("dv.T").a(s):s +p.toString +q.adt(p,b)}}, +aX(){if(this.a.d==null)this.x=A.Ey(0,!0) +this.b9()}, +ca(){var s=this,r=s.c +r.toString +r=A.d9(r,B.lU) +s.y=r==null?null:r.CW +r=s.c +r.toString +r=A.d9(r,B.dh) +r=r==null?null:r.b +if(r==null){r=s.c +r.toString +A.PT(r).toString +r=$.dn().d +if(r==null){r=self.window.devicePixelRatio +if(r===0)r=1}}s.f=r +s.a6I() +s.al8()}, +aCb(a){var s,r,q=this,p=null,o=q.a.Q,n=o==null,m=a.Q,l=m==null +if(n!==l)return!0 +if(!n&&!l&&o.Oq(m))return!0 +o=q.a +s=o.e +if(s==null){o=o.Q +if(o==null)s=p +else{n=q.c +n.toString +n=o.yg(n) +s=n}}r=a.e +if(r==null)if(l)r=p +else{o=q.c +o.toString +o=m.yg(o) +r=o}do{o=s==null +n=o?p:A.p(s) +m=r==null +if(n!=(m?p:A.p(r)))return!0 +s=o?p:s.a +r=m?p:r.a}while(s!=null||r!=null) +o=q.a.d +o=o==null?p:A.p(o) +n=a.d +return o!=(n==null?p:A.p(n))}, +b1(a){var s,r,q=this +q.al9(a) +s=a.d +if(q.a.d!=s){if(s==null){s=q.x +s.toString +r=q.d +r.toString +s.Eu(0,r) +q.x.m() +q.x=null}else{r=q.d +r.toString +s.Eu(0,r) +if(q.a.d==null)q.x=A.Ey(0,!0)}s=q.gDv() +r=q.d +r.toString +s.aw(r)}if(q.aCb(a))q.a6I()}, +m(){var s,r=this,q=r.a.d +if(q!=null){s=r.d +s.toString +q.Eu(0,s)}else{q=r.x +if(q!=null){s=r.d +s.toString +q.Eu(0,s)}q=r.x +if(q!=null)q.m()}r.d.m() +r.r.m() +r.ala()}, +agk(a){var s,r,q=this +if(a===q.ay)s=!a||A.bU(q.a.c)===q.ch +else s=!1 +if(s)return +if(!a){q.at=B.Jj +q.a4K()}else{switch(A.bU(q.a.c).a){case 1:q.at=A.am([B.lI,new A.dH(new A.aTd(q),new A.aTe(q),t.ok)],t.n,t.xR) +break +case 0:q.at=A.am([B.pQ,new A.dH(new A.aTf(q),new A.aTg(q),t.Uv)],t.n,t.xR) +break}a=!0}q.ay=a +q.ch=A.bU(q.a.c) +s=q.Q +if(s.gR()!=null){s=s.gR() +s.SP(q.at) +if(!s.a.f){r=s.c.ga7() +r.toString +t.Wx.a(r) +s.e.aFG(r)}}}, +YT(a){var s,r=this +if(r.ax===a)return +r.ax=a +s=r.as +if($.ap.Y$.z.i(0,s)!=null){s=$.ap.Y$.z.i(0,s).ga7() +s.toString +t.f1.a(s).sab3(r.ax)}}, +aBl(a){var s=this.d,r=s.fr.gkK(),q=new A.aGg(this.gaql(),s) +s.oQ(q) +s.k3=r +this.cx=q}, +aBn(a){var s,r,q=this.d,p=q.r,o=p.TX(q.k3) +p=p.gUU() +s=p==null?null:0 +r=new A.aT3(q,this.gaqj(),o,p,a.a,o!==0,s,a.d,a) +q.oQ(new A.aA5(r,q)) +this.CW=q.ok=r}, +aBo(a){var s=this.CW +if(s!=null)s.bZ(0,a)}, +aBm(a){var s,r,q,p,o=this.CW +if(o!=null){s=a.b +s.toString +r=-s +if(A.ar3(o.a.w.a.c))r=-r +o.x=a +if(o.f){s=J.l0(r) +q=o.c +p=Math.abs(r)>Math.abs(q)*0.5 +if(s===J.l0(q)&&p)r+=q}o.a.pu(r)}}, +a4K(){if($.ap.Y$.z.i(0,this.Q)==null)return +var s=this.cx +if(s!=null)s.a.pu(0) +s=this.CW +if(s!=null)s.a.pu(0)}, +aqm(){this.cx=null}, +aqk(){this.CW=null}, +a4Q(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)}, +a4P(a){var s,r,q=A.b6("delta"),p=$.iR.dY$ +p===$&&A.b() +p=p.a +p=p.gbp(p) +s=A.iJ(p,A.l(p).h("z.E")) +p=this.w +p===$&&A.b() +p=p.gG7() +r=s.fa(0,p.gtk(p))&&a.gdR(a)===B.c9 +switch(A.bU(this.a.c).a){case 0:q.b=r?a.gpv().b:a.gpv().a +break +case 1:q.b=r?a.gpv().a:a.gpv().b +break}if(A.ar3(this.a.c))q.b=q.aH()*-1 +return q.aH()}, +aBu(a){var s,r,q,p,o=this +if(t.Mj.b(a)&&o.d!=null){s=o.e +if(s!=null){r=o.d +r.toString +r=!s.ul(r) +s=r}else s=!1 +if(s)return +q=o.a4P(a) +p=o.a4Q(q) +if(q!==0){s=o.d.at +s.toString +s=p!==s}else s=!1 +if(s)$.je.cY$.ad0(0,a,o.gaBp())}else if(t.xb.b(a))o.d.WV(0)}, +aBq(a){var s,r=this,q=r.a4P(a),p=r.a4Q(q) +if(q!==0){s=r.d.at +s.toString +s=p!==s}else s=!1 +if(s)r.d.WV(q)}, +aBs(a){var s,r +if(a.jg$===0){s=$.ap.Y$.z.i(0,this.z) +r=s==null?null:s.ga7() +if(r!=null)r.bY()}return!1}, +A(a){var s,r,q,p,o,n,m,l=this,k=null,j=l.d +j.toString +s=l.at +r=l.a +q=r.w +p=l.ax +p=A.qD(r.aQw(a,j),p,l.as) +o=new A.U1(l,j,A.uc(B.ci,new A.nv(new A.bu(A.bL(k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k,k),!1,!q,!1,!1,p,k),s,B.bE,q,l.Q),k,k,k,k,l.gaBt(),k),k) +j=l.a +if(!j.w){j=l.d +j.toString +s=l.e.gwN() +r=l.a +o=new A.dB(l.gaBr(),new A.ame(j,s,r.x,o,l.z),k,t.ji) +j=r}s=l.gDv() +r=l.a.as +n=new A.a8Y(j.c,s,r) +j=l.w +j===$&&A.b() +o=j.KF(a,j.KE(a,o,n),n) +m=A.a92(a) +if(m!=null){j=l.d +j.toString +o=new A.U3(l,j,o,m,k)}return o}, +$iaP:1} +A.aTd.prototype={ +$0(){var s=this.a.w +s===$&&A.b() +return A.bm_(null,s.gv5())}, +$S:139} +A.aTe.prototype={ +$1(a){var s,r,q=this.a +a.ax=q.ga4L() +a.ay=q.ga4N() +a.ch=q.ga4O() +a.CW=q.ga4M() +a.cx=q.ga4J() +s=q.e +a.cy=s==null?null:s.gWi() +s=q.e +a.db=s==null?null:s.gMx() +s=q.e +a.dx=s==null?null:s.gFM() +s=q.w +s===$&&A.b() +r=q.c +r.toString +a.fr=s.NP(r) +a.at=q.a.y +a.b=q.y +a.c=q.w.gv5()}, +$S:140} +A.aTf.prototype={ +$0(){var s=this.a.w +s===$&&A.b() +return A.a2F(null,s.gv5())}, +$S:214} +A.aTg.prototype={ +$1(a){var s,r,q=this.a +a.ax=q.ga4L() +a.ay=q.ga4N() +a.ch=q.ga4O() +a.CW=q.ga4M() +a.cx=q.ga4J() +s=q.e +a.cy=s==null?null:s.gWi() +s=q.e +a.db=s==null?null:s.gMx() +s=q.e +a.dx=s==null?null:s.gFM() +s=q.w +s===$&&A.b() +r=q.c +r.toString +a.fr=s.NP(r) +a.at=q.a.y +a.b=q.y +a.c=q.w.gv5()}, +$S:215} +A.U3.prototype={ +a8(){return new A.amf(B.m)}} +A.amf.prototype={ +aX(){var s,r,q,p +this.b9() +s=this.a +r=s.c +s=s.d +q=t.x9 +p=t.i +q=new A.U2(r,new A.aAb(r,30),s,A.I(q,p),A.I(q,p),A.a([],t.D1),A.aW(q),B.apU,$.aH()) +s.P(0,q.ga4A()) +this.d=q}, +b1(a){var s,r +this.bh(a) +s=this.a.d +if(a.d!==s){r=this.d +r===$&&A.b() +r.scJ(0,s)}}, +m(){var s=this.d +s===$&&A.b() +s.m() +this.b0()}, +A(a){var s=this.a,r=s.f,q=this.d +q===$&&A.b() +return new A.EC(r,s.e,q,null)}} +A.U2.prototype={ +scJ(a,b){var s,r=this.id +if(b===r)return +s=this.ga4A() +r.H(0,s) +this.id=b +b.P(0,s)}, +aB9(){if(this.fr)return +this.fr=!0 +$.cB.y2$.push(new A.bbY(this))}, +UH(){var s=this,r=s.b,q=A.qK(r,A.ab(r).c) +r=s.k1 +r.Nn(r,new A.bbZ(q)) +r=s.k2 +r.Nn(r,new A.bc_(q)) +s.aij()}, +VA(a){var s,r,q,p,o,n,m=this +if(m.fy==null&&m.fx==null)m.go=m.a29(a.b) +s=A.aqZ(m.dx) +r=a.b +q=a.c +p=-s.a +o=-s.b +if(a.a===B.ie){r=m.fy=m.a2I(r) +a=A.btX(new A.m(r.a+p,r.b+o),q)}else{r=m.fx=m.a2I(r) +a=A.btY(new A.m(r.a+p,r.b+o),q)}n=m.ais(a) +if(n===B.p7){m.dy.e=!1 +return n}if(m.go){r=m.dy +r.ah7(A.aQi(a.b,0,0)) +if(r.e)return B.p7}return n}, +a2I(a){var s,r,q,p=this.dx,o=p.c.ga7() +o.toString +t.x.a(o) +s=o.jy(a) +if(!this.go){r=s.b +if(r<0||s.a<0)return A.cL(o.cl(0,null),B.i) +if(r>o.gq(o).b||s.a>o.gq(o).a)return B.ao_}q=A.aqZ(p) +return A.cL(o.cl(0,null),new A.m(s.a+q.a,s.b+q.b))}, +T5(a,b){var s,r,q,p=this,o=p.dx,n=A.aqZ(o) +o=o.c.ga7() +o.toString +t.x.a(o) +s=o.cl(0,null) +r=p.d +if(r!==-1)q=p.fx==null||b +else q=!1 +if(q){r=J.lS(p.b[r]).a +r.toString +p.fx=A.cL(s,A.cL(J.bjf(p.b[p.d],o),r.a.U(0,new A.m(0,-r.b/2))).U(0,n))}r=p.c +if(r!==-1)q=!0 +else q=!1 +if(q){r=J.lS(p.b[r]).b +r.toString +p.fy=A.cL(s,A.cL(J.bjf(p.b[p.c],o),r.a.U(0,new A.m(0,-r.b/2))).U(0,n))}}, +a6t(){return this.T5(!0,!0)}, +a2Y(a){var s,r,q,p,o,n,m,l,k=this,j=k.b +if(a){s=j[k.c] +r=s.gj(s).b +q=s.gj(s).b.b}else{s=j[k.d] +r=s.gj(s).a +j=s.gj(s).a +q=j==null?null:j.b}if(q==null||r==null)return +j=k.dx +p=j.c.ga7() +p.toString +t.x.a(p) +o=A.cL(s.cl(0,p),r.a) +n=p.gq(p).a +p=p.gq(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.fg(n+p-m) +return}if(l<0){j=k.id +p=j.at +p.toString +j.fg(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.fg(p+r-n) +return}if(r<0){j=k.id +p=j.at +p.toString +j.fg(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.fg(n+m-p) +return}if(l<0){j=k.id +p=j.at +p.toString +j.fg(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.fg(p+n-r) +return}if(r<0){j=k.id +p=j.at +p.toString +j.fg(p+0-r)}return}}, +a29(a){var s,r=this.dx.c.ga7() +r.toString +t.x.a(r) +s=r.jy(a) +return new A.L(0,0,0+r.gq(r).a,0+r.gq(r).b).p(0,s)}, +jP(a,b){var s,r,q=this +switch(b.a.a){case 0:s=q.dx.d.at +s.toString +q.k1.n(0,a,s) +q.Lq(a) +break +case 1:s=q.dx.d.at +s.toString +q.k2.n(0,a,s) +q.Lq(a) +break +case 5:case 6:q.Lq(a) +s=q.dx +r=s.d.at +r.toString +q.k1.n(0,a,r) +s=s.d.at +s.toString +q.k2.n(0,a,s) +break +case 2:q.k2.E(0,a) +q.k1.E(0,a) +break +case 3:case 4:s=q.dx +r=s.d.at +r.toString +q.k2.n(0,a,r) +s=s.d.at +s.toString +q.k1.n(0,a,s) +break}return q.aik(a,b)}, +Lq(a){var s,r,q,p,o,n,m=this,l=m.dx,k=l.d.at +k.toString +s=m.k1 +r=s.i(0,a) +q=m.fx +if(q!=null)p=r==null||Math.abs(k-r)>1e-10 +else p=!1 +if(p){o=A.aqZ(l) +a.Ai(A.btY(new A.m(q.a+-o.a,q.b+-o.b),null)) +q=l.d.at +q.toString +s.n(0,a,q)}s=m.k2 +n=s.i(0,a) +q=m.fy +if(q!=null)k=n==null||Math.abs(k-n)>1e-10 +else k=!1 +if(k){o=A.aqZ(l) +a.Ai(A.btX(new A.m(q.a+-o.a,q.b+-o.b),null)) +l=l.d.at +l.toString +s.n(0,a,l)}}, +m(){var s=this +s.k1.ab(0) +s.k2.ab(0) +s.fr=!1 +s.dy.e=!1 +s.ail()}} +A.bbY.prototype={ +$1(a){var s=this.a +if(!s.fr)return +s.fr=!1 +s.K3()}, +$S:5} +A.bbZ.prototype={ +$2(a,b){return!this.a.p(0,a)}, +$S:231} +A.bc_.prototype={ +$2(a,b){return!this.a.p(0,a)}, +$S:231} +A.ame.prototype={ +b5(a){var s=this.e,r=new A.alz(s,this.f,this.r,null,A.ay(t.T)) +r.b4() +r.sbN(null) +s.P(0,r.gB5()) +return r}, +bb(a,b){b.swN(this.f) +b.scJ(0,this.e) +b.saga(this.r)}} +A.alz.prototype={ +scJ(a,b){var s,r=this,q=r.D +if(b===q)return +s=r.gB5() +q.H(0,s) +r.D=b +b.P(0,s) +r.bY()}, +swN(a){if(a===this.ac)return +this.ac=a +this.bY()}, +saga(a){if(a==this.az)return +this.az=a +this.bY()}, +hy(a){var s,r,q=this +q.jA(a) +a.a=!0 +if(q.D.ay){a.c8(B.aq8,q.ac) +s=q.D +r=s.at +r.toString +a.aK=r +a.e=!0 +r=s.Q +r.toString +a.b6=r +s=s.z +s.toString +a.c_=s +a.sag1(q.az)}}, +zG(a,b,c){var s,r,q,p,o,n,m,l=this +if(c.length!==0){s=B.b.gO(c).dy +s=!(s!=null&&s.p(0,B.O4))}else s=!0 +if(s){l.cr=null +l.ZT(a,b,c) +return}s=l.cr +if(s==null)s=l.cr=A.Ok(null,l.gyu()) +s.sW0(a.Q||a.y) +s.scw(0,a.e) +s=l.cr +s.toString +r=t.QF +q=A.a([s],r) +p=A.a([],r) +for(s=c.length,o=null,n=0;n#"+A.br(r)+"("+B.b.ck(q,", ")+")"}, +gu(a){return A.X(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.a_(b)!==A.p(r))return!1 +if(b instanceof A.a8Y)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.aTc.prototype={ +$2(a,b){if(b!=null)this.a.push(a+b.l(0))}, +$S:570} +A.aAb.prototype={ +RW(a,b){switch(b.a){case 0:return a.a +case 1:return a.b}}, +aCg(a,b){switch(b.a){case 0:return a.a +case 1:return a.b}}, +ah7(a){var s=this,r=s.a.ga9t() +s.d=a.bi(0,r.a,r.b) +if(s.e)return +s.zp()}, +zp(){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$zp=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:d=p.a +c=d.c.ga7() +c.toString +t.x.a(c) +o=A.jj(c.cl(0,null),new A.L(0,0,0+c.gq(c).a,0+c.gq(c).b)) +c=p.e=!0 +n=d.ga9t() +m=o.a +l=o.b +k=p.RW(new A.m(m+n.a,l+n.b),A.bU(d.a.c)) +j=k+p.aCg(new A.U(o.c-m,o.d-l),A.bU(d.a.c)) +l=p.d +l===$&&A.b() +i=p.RW(new A.m(l.a,l.b),A.bU(d.a.c)) +l=p.d +h=p.RW(new A.m(l.c,l.d),A.bU(d.a.c)) +switch(d.a.c.a){case 0:case 3:if(h>j){m=d.d +l=m.at +l.toString +m=m.z +m.toString +m=l>m}else m=!1 +if(m){g=Math.min(h-j,20) +m=d.d +l=m.z +l.toString +m=m.at +m.toString +f=Math.max(l,m-g)}else{if(im}else m=!1 +if(m){g=Math.min(k-i,20) +m=d.d +l=m.z +l.toString +m=m.at +m.toString +f=Math.max(l,m-g)}else{if(h>j){m=d.d +l=m.at +l.toString +m=m.Q +m.toString +m=l>>24&255)/255*q.gj(q))),r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255)) +return s}, +a3Q(a){var s,r,q,p=this +if(a){s=$.au().bk() +r=p.c +q=p.r +s.saf(0,A.K(B.e.bg(255*((r.gj(r)>>>24&255)/255*q.gj(q))),r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255)) +s.scA(0,B.ai) +s.seu(1) +return s}s=$.au().bk() +r=p.b +q=p.r +s.saf(0,A.K(B.e.bg(255*((r.gj(r)>>>24&255)/255*q.gj(q))),r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255)) +return s}, +ayY(){return this.a3Q(!1)}, +ayU(a,b){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=this,d=null +e.gJo() +switch(e.gJo().a){case 0:s=e.f +r=e.cy +r===$&&A.b() +q=new A.U(s,r) +s+=2*e.x +r=e.db.d +r.toString +p=e.dx +p=p===B.ak||p===B.aj +o=e.Q +n=new A.U(s,r-(p?o.gcC(o)+o.gcD(o):o.gdI())) +r=e.x +m=r+e.Q.a +o=e.cx +o===$&&A.b() +r=m-r +l=e.gIU() +k=new A.m(r,l) +j=k.U(0,new A.m(s,0)) +i=e.db.d +i.toString +p=e.dx +p=p===B.ak||p===B.aj +h=e.Q +p=p?h.gcC(h)+h.gcD(h):h.gdI() +g=new A.m(r+s,l+(i-p)) +f=o +break +case 1:s=e.f +r=e.cy +r===$&&A.b() +q=new A.U(s,r) +r=e.x +p=e.db.d +p.toString +o=e.dx +o=o===B.ak||o===B.aj +l=e.Q +o=o?l.gcC(l)+l.gcD(l):l.gdI() +n=new A.U(s+2*r,p-o) +o=e.f +p=e.x +m=b.a-o-p-e.Q.c +o=e.cx +o===$&&A.b() +p=m-p +r=e.gIU() +k=new A.m(p,r) +s=e.db.d +s.toString +l=e.dx +l=l===B.ak||l===B.aj +i=e.Q +g=new A.m(p,r+(s-(l?i.gcC(i)+i.gcD(i):i.gdI()))) +j=k +f=o +break +case 2:s=e.cy +s===$&&A.b() +q=new A.U(s,e.f) +s=e.db.d +s.toString +r=e.dx +r=r===B.ak||r===B.aj +p=e.Q +r=r?p.gcC(p)+p.gcD(p):p.gdI() +p=e.f +o=e.x +p+=2*o +n=new A.U(s-r,p) +r=e.cx +r===$&&A.b() +f=o+e.Q.b +o=e.gIU() +s=f-e.x +k=new A.m(o,s) +j=k.U(0,new A.m(0,p)) +l=e.db.d +l.toString +i=e.dx +i=i===B.ak||i===B.aj +h=e.Q +g=new A.m(o+(l-(i?h.gcC(h)+h.gcD(h):h.gdI())),s+p) +m=r +break +case 3:s=e.cy +s===$&&A.b() +q=new A.U(s,e.f) +s=e.db.d +s.toString +r=e.dx +r=r===B.ak||r===B.aj +p=e.Q +r=r?p.gcC(p)+p.gcD(p):p.gdI() +p=e.f +o=e.x +n=new A.U(s-r,p+2*o) +r=e.cx +r===$&&A.b() +f=b.b-p-o-e.Q.d +o=e.gIU() +p=f-e.x +k=new A.m(o,p) +s=e.db.d +s.toString +l=e.dx +l=l===B.ak||l===B.aj +i=e.Q +g=new A.m(o+(s-(l?i.gcC(i)+i.gcD(i):i.gdI())),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.L(s,r,s+n.a,r+n.b) +e.CW=new A.L(m,f,m+q.a,f+q.b) +s=e.r +if(s.gj(s)!==0){s=e.ch +s.toString +a.ey(s,e.ayY()) +a.j8(j,g,e.a3Q(!0)) +s=e.y +if(s!=null){r=e.CW +r.toString +a.d5(A.mg(r,s),e.ga3P()) +return}s=e.CW +s.toString +a.ey(s,e.ga3P()) +return}}, +aE(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.ak||f===B.aj +r=g.Q +f=f?r.gcC(r)+r.gcD(r):r.gdI() +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.gxh() +s=g.dx +s=s===B.ak||s===B.aj +r=g.Q +s=s?r.gcC(r)+r.gcD(r):r.gdI() +r=g.db +q=r.b +q.toString +p=r.a +p.toString +r=r.d +r.toString +o=g.dx +o=o===B.ak||o===B.aj +n=g.Q +o=o?n.gcC(n)+n.gcD(n):n.gdI() +m=A.V((f-s)/(q-p+r-o),0,1) +o=g.db.d +o.toString +f=g.dx +f=f===B.ak||f===B.aj +s=g.Q +f=f?s.gcC(s)+s.gcD(s):s.gdI() +f=Math.min(o-f-2*g.w,g.at) +o=g.db.d +o.toString +s=g.dx +s=s===B.ak||s===B.aj +r=g.Q +s=s?r.gcC(r)+r.gcD(r):r.gdI() +l=Math.max(f,(o-s-2*g.w)*m) +s=g.db.gxh() +o=g.db.d +o.toString +f=g.as +r=g.dx +r=r===B.ak||r===B.aj +q=g.Q +r=r?q.gcC(q)+q.gcD(q):q.gdI() +k=Math.min(f,o-r-2*g.w) +f=g.dx +f=f===B.aj||f===B.dy +r=g.db +if((f?Math.max(r.gky()-r.gf2(),0):Math.max(r.gf2()-r.gkz(),0))>0){f=g.dx +f=f===B.aj||f===B.dy +r=g.db +r=(f?Math.max(r.gf2()-r.gkz(),0):Math.max(r.gky()-r.gf2(),0))>0 +f=r}else f=!1 +j=f?k:k*(1-A.V(1-s/o,0,0.2)/0.2) +f=g.db.d +f.toString +s=g.dx +s=s===B.ak||s===B.aj +r=g.Q +s=s?r.gcC(r)+r.gcD(r):r.gdI() +s=A.V(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.V((r-q)/i,0,1)}else h=0 +r=g.dx +q=r===B.aj +p=q||r===B.dy?1-h:h +f=f.d +f.toString +r=r===B.ak||q +q=g.Q +r=r?q.gcC(q)+q.gcD(q):q.gdI() +g.cx=p*(f-r-2*g.w-s)+g.gawp() +return g.ayU(a,b)}, +Yt(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.ak||r===B.aj +q=o.Q +r=r?q.gcC(q)+q.gcD(q):q.gdI() +q=o.w +p=o.cy +p===$&&A.b() +return(m-s)*a/(n-r-2*q-p)}, +AQ(a){var s,r,q=this +if(q.CW==null)return null +if(!q.ay){s=q.r +if(s.gj(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.p(0,a)}, +ab_(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.oY(A.nx(p.CW.gbM(),24)) +s=p.r +if(s.gj(s)===0){if(c&&b===B.c9)return q.p(0,a) +return!1}switch(b.a){case 0:case 4:return q.p(0,a) +case 1:case 2:case 3:case 5:return o.p(0,a)}}, +aKQ(a,b){return this.ab_(a,b,!1)}, +ab0(a,b){var s,r,q=this +if(q.CW==null)return!1 +if(q.ay)return!1 +s=q.r +if(s.gj(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.oY(A.nx(s.gbM(),24)).p(0,a) +case 1:case 2:case 3:case 5:return q.CW.p(0,a)}}, +fv(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.j(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}, +Hv(a){return!1}, +gC9(){return null}, +l(a){return"#"+A.br(this)}, +m(){this.r.a.H(0,this.geO()) +this.eK()}} +A.aTl.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:571} +A.Eb.prototype={ +a8(){return A.bLp(t.jV)}, +r4(a){return this.cx.$1(a)}} +A.p7.prototype={ +gwj(){var s=this.a.d +if(s==null){s=this.c +s.toString +s=A.E_(s)}return s}, +gyw(){var s=this.a.e +return s===!0}, +ga5g(){if(this.gyw())this.a.toString +return!1}, +gxd(){this.a.toString +return!0}, +aX(){var s,r,q,p,o=this,n=null +o.b9() +s=A.bx(B.A,n,o.a.ay,0,n,1,n,o) +s.cF() +r=s.ej$ +r.b=!0 +r.a.push(o.gaEG()) +o.x=s +s=o.y=A.c5(B.a6,s,n) +r=o.a +q=r.w +if(q==null)q=6 +p=r.r +r=r.db +r=new A.EB(B.mv,B.E,B.E,n,q,s,0,0,p,n,B.a8,18,18,r,$.aH()) +s.a.P(0,r.geO()) +o.at!==$&&A.ck() +o.at=r}, +ca(){this.e8()}, +aEH(a){if(a!==B.R)if(this.gwj()!=null)this.gxd()}, +GL(){var s,r=this,q=r.at +q===$&&A.b() +r.a.toString +q.saf(0,B.mv) +r.a.toString +q.saQ0(null) +if(r.ga5g()){r.a.toString +s=B.TL}else s=B.E +q.sqd(s) +if(r.ga5g()){r.a.toString +s=B.a0b}else s=B.E +q.sadZ(s) +s=r.c.aj(t.I) +s.toString +q.scz(s.w) +s=r.a.w +q.sXt(s==null?6:s) +q.sGe(r.a.r) +r.a.toString +s=r.c +s.toString +s=A.aY(s,B.bR,t.l).w +q.sdD(0,s.r) +q.sOh(r.a.db) +r.a.toString +q.sWd(0) +r.a.toString +q.scH(0,null) +r.a.toString +q.sUw(0) +r.a.toString +q.sWk(0,18) +r.a.toString +q.sac1(18) +q.sab2(!r.gxd())}, +b1(a){var s,r=this +r.bh(a) +s=r.a.e +if(s!=a.e)if(s===!0){s=r.w +if(s!=null)s.aI(0) +s=r.x +s===$&&A.b() +s.z=B.aN +s.kh(1,B.Y,null)}else{s=r.x +s===$&&A.b() +s.d3(0)}}, +aEp(a){var s,r,q,p,o,n=this,m=B.b.gaV(n.r.f),l=A.b6("primaryDeltaFromDragStart"),k=A.b6("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.b() +r=l.aH() +q=n.f +q.toString +p=s.Yt(r+q) +if(l.aH()>0){r=m.at +r.toString +r=pr}else r=!1 +else r=!0 +if(r){r=m.at +r.toString +p=r+s.Yt(k.aH())}s=m.at +s.toString +if(p!==s){o=p-m.r.DZ(m,p) +s=n.c +s.toString +s=A.uP(s) +r=n.c +r.toString +switch(s.rz(r).a){case 1:case 3:case 4:case 5:s=m.z +s.toString +r=m.Q +r.toString +o=A.V(o,s,r) +break +case 2:case 0:break}m.fg(o)}}, +J2(){var s,r=this +if(!r.gyw()){s=r.w +if(s!=null)s.aI(0) +r.w=A.d0(r.a.ch,new A.aP9(r))}}, +vU(){var s=this.r.f +if(s.length!==0)return A.bU(B.b.gaV(s).gj4()) +return null}, +LW(){if(this.vU()==null)return +var s=this.w +if(s!=null)s.aI(0)}, +LY(a){var s,r,q,p,o,n,m=this +m.r=m.gwj() +if(m.vU()==null)return +s=m.w +if(s!=null)s.aI(0) +s=m.x +s===$&&A.b() +s.bS(0) +m.e=m.d=a +s=m.at +s===$&&A.b() +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.V(q/o,0,1)}else n=0 +r=r.d +r.toString +q=s.dx +q=q===B.ak||q===B.aj +p=s.Q +q=q?p.gcC(p)+p.gcD(p):p.gdI() +p=s.w +s=s.cy +s===$&&A.b() +m.f=n*(r-q-2*p-s) +m.as=!0}, +aKy(a){var s,r=this +if(J.j(r.e,a))return +s=B.b.gaV(r.r.f) +if(!s.r.ul(s))return +if(r.vU()==null)return +r.aEp(a) +r.e=a}, +LX(a,b){var s=this +s.as=!1 +if(s.vU()==null)return +s.J2() +s.r=s.f=s.e=s.d=null}, +avq(a){var s,r,q,p,o,n=this,m=n.gwj() +n.r=m +s=B.b.gaV(m.f) +if(!s.r.ul(s))return +m=s.w +switch(m.a.c.a){case 0:case 2:r=n.at +r===$&&A.b() +r=r.cx +r===$&&A.b() +q=a.c.b>r?B.ak:B.aj +break +case 3:case 1:r=n.at +r===$&&A.b() +r=r.cx +r===$&&A.b() +q=a.c.a>r?B.f2:B.dy +break +default:q=null}m=$.ap.Y$.z.i(0,m.Q) +m.toString +p=A.lD(m) +p.toString +o=A.aSY(p,new A.hQ(q,B.ic)) +m=B.b.gaV(n.r.f) +r=B.b.gaV(n.r.f).at +r.toString +m.FS(0,r+o,B.dE,B.aX)}, +SH(a){var s,r,q=this.gwj() +if(q==null)return!0 +s=q.f +r=s.length +if(r>1)return!1 +return r===0||A.bU(B.b.gaV(s).gj4())===a}, +auE(a){var s,r,q=this,p=q.a +p.toString +if(!p.r4(a.a7H()))return!1 +if(q.gyw()){p=q.x +p===$&&A.b() +s=p.Q +s===$&&A.b() +if(s!==B.b4&&s!==B.a9)p.bS(0)}r=a.a +p=r.e +if(q.SH(A.bU(p))){s=q.at +s===$&&A.b() +s.iP(0,r,p)}return!1}, +aBw(a){var s,r,q,p=this +if(!p.a.r4(a))return!1 +s=a.a +r=s.b +r.toString +q=s.a +q.toString +if(r<=q){r=p.x +r===$&&A.b() +q=r.Q +q===$&&A.b() +if(q!==B.R&&q!==B.b5)r.d3(0) +r=s.e +if(p.SH(A.bU(r))){q=p.at +q===$&&A.b() +q.iP(0,s,r)}return!1}if(a instanceof A.kI||a instanceof A.no){r=p.x +r===$&&A.b() +q=r.Q +q===$&&A.b() +if(q!==B.b4&&q!==B.a9)r.bS(0) +r=p.w +if(r!=null)r.aI(0) +r=s.e +if(p.SH(A.bU(r))){q=p.at +q===$&&A.b() +q.iP(0,s,r)}}else if(a instanceof A.pb)if(p.d==null)p.J2() +return!1}, +garQ(){var s=this,r=A.I(t.n,t.xR) +if(s.gwj()==null||!s.gxd())return r +r.n(0,B.ayE,new A.dH(new A.aP5(s),new A.aP6(s),t.fi)) +r.n(0,B.ayF,new A.dH(new A.aP7(s),new A.aP8(s),t.EK)) +return r}, +abx(a,b,c){var s,r=this.z +if($.ap.Y$.z.i(0,r)==null)return!1 +s=A.bmZ(r,a) +r=this.at +r===$&&A.b() +return r.ab_(s,b,!0)}, +Vr(a){var s,r=this +if(r.abx(a.gcJ(a),a.gdR(a),!0)){r.Q=!0 +s=r.x +s===$&&A.b() +s.bS(0) +s=r.w +if(s!=null)s.aI(0)}else if(r.Q){r.Q=!1 +r.J2()}}, +Vs(a){this.Q=!1 +this.J2()}, +a3Z(a){var s=A.bU(B.b.gaV(this.r.f).gj4())===B.ar?a.gpv().a:a.gpv().b +return A.ar3(B.b.gaV(this.r.f).w.a.c)?s*-1:s}, +a5I(a){var s,r=B.b.gaV(this.r.f).at +r.toString +s=B.b.gaV(this.r.f).z +s.toString +s=Math.max(r+a,s) +r=B.b.gaV(this.r.f).Q +r.toString +return Math.min(s,r)}, +auk(a){var s,r,q,p=this +p.r=p.gwj() +s=p.a3Z(a) +r=p.a5I(s) +if(s!==0){q=B.b.gaV(p.r.f).at +q.toString +q=r!==q}else q=!1 +if(q)B.b.gaV(p.r.f).WV(s)}, +aBy(a){var s,r,q,p,o=this +o.r=o.gwj() +s=o.at +s===$&&A.b() +s=s.AQ(a.geF()) +if(s===!0){s=o.r +if(s!=null)if(s.f.length!==0)s=!0 +else s=!1 +else s=!1}else s=!1 +if(s){r=B.b.gaV(o.r.f) +if(t.Mj.b(a)){if(!r.r.ul(r))return +q=o.a3Z(a) +p=o.a5I(q) +if(q!==0){s=r.at +s.toString +s=p!==s}else s=!1 +if(s)$.je.cY$.ad0(0,a,o.gauj())}else if(t.xb.b(a)){s=r.at +s.toString +r.fg(s)}}}, +m(){var s=this,r=s.x +r===$&&A.b() +r.m() +r=s.w +if(r!=null)r.aI(0) +r=s.at +r===$&&A.b() +r.r.a.H(0,r.geO()) +r.eK() +s.akw()}, +A(a){var s,r,q=this,p=null +q.GL() +s=q.garQ() +r=q.at +r===$&&A.b() +return new A.dB(q.gauD(),new A.dB(q.gaBv(),new A.ii(A.uc(B.ci,new A.nv(A.nj(A.iB(new A.ii(q.a.c,p),r,q.z,p,B.y),B.cD,p,p,new A.aPa(q),new A.aPb(q)),s,p,!1,p),p,p,p,p,q.gaBx(),p),p),p,t.WA),p,t.ji)}, +$iaP:1} +A.aP9.prototype={ +$0(){var s=this.a,r=s.x +r===$&&A.b() +r.d3(0) +s.w=null}, +$S:0} +A.aP5.prototype={ +$0(){var s=this.a,r=s.a.CW,q=t.S,p=A.dI(q),o=A.bz1() +return new A.pJ(s.z,r,null,B.dM,A.I(q,t.SP),p,s,null,o,A.I(q,t.Au))}, +$S:572} +A.aP6.prototype={ +$1(a){var s=this.a +a.p2=s.gaaM() +a.p3=new A.aP2(s) +a.p4=new A.aP3(s) +a.RG=new A.aP4(s)}, +$S:573} +A.aP2.prototype={ +$1(a){return this.a.LY(a.b)}, +$S:83} +A.aP3.prototype={ +$1(a){return this.a.aKy(a.b)}, +$S:91} +A.aP4.prototype={ +$1(a){return this.a.LX(a.b,a.c)}, +$S:135} +A.aP7.prototype={ +$0(){var s=this.a,r=t.S,q=A.dI(r) +return new A.pK(s.z,B.aX,18,B.dM,A.I(r,t.SP),q,s,null,A.HT(),A.I(r,t.Au))}, +$S:575} +A.aP8.prototype={ +$1(a){a.aK=this.a.gavp()}, +$S:576} +A.aPa.prototype={ +$1(a){var s +switch(a.gdR(a).a){case 1:case 4:s=this.a +if(s.gxd())s.Vs(a) +break +case 2:case 3:case 5:case 0:break}}, +$S:65} +A.aPb.prototype={ +$1(a){var s +switch(a.gdR(a).a){case 1:case 4:s=this.a +if(s.gxd())s.Vr(a) +break +case 2:case 3:case 5:case 0:break}}, +$S:577} +A.pJ.prototype={ +n5(a){if(!this.Rm(this.de,a.gcJ(a),a.gdR(a)))return!1 +return this.aid(a)}, +Rm(a,b,c){var s +if($.ap.Y$.z.i(0,a)==null)return!1 +s=t.ip.a($.ap.Y$.z.i(0,a).gbc()).f +s.toString +return t.sm.a(s).ab0(A.bmZ(a,b),c)}} +A.pK.prototype={ +n5(a){if(!this.Rm(this.jT,a.gcJ(a),a.gdR(a)))return!1 +return this.ajR(a)}, +Rm(a,b,c){var s,r +if($.ap.Y$.z.i(0,a)==null)return!1 +s=t.ip.a($.ap.Y$.z.i(0,a).gbc()).f +s.toString +t.sm.a(s) +r=A.bmZ(a,b) +return s.aKQ(r,c)&&!s.ab0(r,c)}} +A.H5.prototype={ +cf(){this.cW() +this.cO() +this.ev()}, +m(){var s=this,r=s.b7$ +if(r!=null)r.H(0,s.gep()) +s.b7$=null +s.b0()}} +A.Dw.prototype={ +F(a,b){this.Q.F(0,b) +this.a4F()}, +E(a,b){var s,r,q=this +if(q.Q.E(0,b))return +s=B.b.eZ(q.b,b) +B.b.k0(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.gRb()) +q.a4F()}, +a4F(){var s,r +if(!this.y){this.y=!0 +s=new A.aLC(this) +r=$.cB +if(r.aK$===B.NG)A.fE(s) +else r.y2$.push(s)}}, +ary(){var s,r,q,p,o,n,m,l,k=this,j=k.Q,i=A.a8(j,!0,A.l(j).c) +B.b.fw(i,k.gPX()) +s=k.b +k.b=A.a([],t.D1) +r=k.d +q=k.c +j=k.gRb() +p=0 +o=0 +while(!0){n=i.length +if(!(pMath.min(n,l))k.Lq(m) +m.P(0,j) +B.b.F(k.b,m);++p}}k.c=q +k.d=r +k.Q=A.aW(t.x9)}, +UH(){this.K3()}, +K3(){var s=this,r=s.afL() +if(!s.at.k(0,r)){s.at=r +s.ag()}s.aE7()}, +gaGD(){return this.gPX()}, +apg(a,b){var s=A.jj(a.cl(0,null),new A.L(0,0,0+a.gq(a).a,0+a.gq(a).b)),r=A.jj(b.cl(0,null),new A.L(0,0,0+b.gq(b).a,0+b.gq(b).b)),q=A.bKg(s,r) +if(q!==0)return q +return A.bKf(s,r)}, +auI(){if(this.x)return +this.K3()}, +afL(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d=this,c=null,b=d.c +if(b===-1||d.d===-1||d.b.length===0)return new A.uR(c,c,B.fX,B.nY,d.b.length!==0) +if(!d.as){b=d.a_w(d.d,b) +d.d=b +d.c=d.a_w(d.c,b)}s=J.lS(d.b[d.d]) +b=d.c +r=d.d +q=b>=r +while(!0){if(!(r!==d.c&&s.a==null))break +r+=q?1:-1 +s=J.lS(d.b[r])}b=s.a +if(b!=null){p=d.b[r] +o=d.a.ga7() +o.toString +n=A.cL(p.cl(0,t.x.a(o)),b.a) +m=isFinite(n.a)&&isFinite(n.b)?new A.zh(n,b.b,b.c):c}else m=c +l=J.lS(d.b[d.c]) +k=d.c +while(!0){if(!(k!==d.d&&l.b==null))break +k+=q?-1:1 +l=J.lS(d.b[k])}b=l.b +if(b!=null){p=d.b[k] +o=d.a.ga7() +o.toString +j=A.cL(p.cl(0,t.x.a(o)),b.a) +i=isFinite(j.a)&&isFinite(j.b)?new A.zh(j,b.b,b.c):c}else i=c +h=A.a([],t.AO) +g=d.gaKB()?new A.L(0,0,0+d.ga8A().a,0+d.ga8A().b):c +for(f=d.d;f<=d.c;++f){e=J.lS(d.b[f]).d +b=new A.ad(e,new A.aLD(d,f,g),A.ab(e).h("ad<1,L>")).Cq(0,new A.aLE()) +B.b.I(h,A.a8(b,!0,b.$ti.h("z.E")))}return new A.uR(m,i,!s.k(0,l)?B.p8:s.c,h,!0)}, +a_w(a,b){var s=b>a +while(!0){if(!(a!==b&&J.lS(this.b[a]).c!==B.p8))break +a+=s?1:-1}return a}, +rf(a,b){return}, +aE7(){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.rf(q,q) +r.f=null}n=r.w +if(n!=null){n.rf(q,q) +r.w=null}return}if(!J.j(r.b[n],r.f)){n=r.f +if(n!=null)n.rf(q,q)}if(!J.j(r.b[r.c],r.w)){n=r.w +if(n!=null)n.rf(q,q)}n=r.b +s=r.d +n=r.f=n[s] +if(s===r.c){r.w=n +n.rf(p,o) +return}n.rf(p,q) +n=r.b[r.c] +r.w=n +n.rf(q,o)}, +a1t(){var s,r,q,p=this,o=p.d,n=o===-1 +if(n&&p.c===-1)return +if(n||p.c===-1){if(n)o=p.c +n=p.b +new A.ba(n,new A.aLA(p,o),A.ab(n).h("ba<1>")).al(0,new A.aLB(p)) +return}n=p.c +s=Math.min(o,n) +r=Math.max(o,n) +for(q=0;n=p.b,q=s&&q<=r)continue +p.jP(n[q],B.mr)}}, +aKl(a){var s,r,q,p=this +for(s=p.b,r=s.length,q=0;q")).al(0,new A.aLG(n)) +n.d=n.c=r}return B.bJ}else if(s===B.bI){n.d=n.c=r-1 +return B.bJ}}return B.bJ}, +aJy(a){var s,r,q,p=this +for(s=p.b,r=s.length,q=0;q0&&r===B.c0))break;--s +r=p.jP(p.b[s],a)}if(a.gq2())p.c=s +else p.d=s +return r}, +aJA(a){var s,r,q,p=this +if(p.d===-1)switch(a.gtu(a)){case B.ln:case B.ih:p.d=p.c=p.b.length +break +case B.lo:case B.ig:p.d=p.c=0 +break}s=a.gq2()?p.c:p.d +r=p.jP(p.b[s],a) +switch(a.gtu(a)){case B.ln:if(r===B.c0)if(s>0){--s +r=p.jP(p.b[s],a.aH4(B.ih))}break +case B.lo:if(r===B.bI){q=p.b +if(s=0&&q==null))break +o=s.b=n.jP(m[r],a) +switch(o.a){case 2:case 3:case 4:q=o +break +case 0:if(p===!1){++r +q=B.bJ}else if(r===n.b.length-1)q=o +else{++r +p=!0}break +case 1:if(p===!0){--r +q=B.bJ}else if(r===0)q=o +else{--r +p=!1}break}}if(a0)n.c=r +else n.d=r +n.a1t() +q.toString +return q}, +aGE(a,b){return this.gaGD().$2(a,b)}} +A.aLC.prototype={ +$1(a){var s=this.a +if(!s.y)return +s.y=!1 +if(s.Q.a!==0)s.ary() +s.UH()}, +$0(){return this.$1(null)}, +$C:"$1", +$R:0, +$D(){return[null]}, +$S:202} +A.aLD.prototype={ +$1(a){var s,r=this.a,q=r.b[this.b] +r=r.a.ga7() +r.toString +s=A.jj(q.cl(0,t.x.a(r)),a) +r=this.c +if(r!=null)return r.hh(s) +return s}, +$S:579} +A.aLE.prototype={ +$1(a){return a.gFt(a)&&!a.gak(a)}, +$S:580} +A.aLA.prototype={ +$1(a){return a!==this.a.b[this.b]}, +$S:233} +A.aLB.prototype={ +$1(a){return this.a.jP(a,B.mr)}, +$S:76} +A.aLF.prototype={ +$1(a){return a!==this.a.b[this.b]}, +$S:233} +A.aLG.prototype={ +$1(a){return this.a.jP(a,B.mr)}, +$S:76} +A.aLr.prototype={ +$0(){return this.a.a}, +$S:10} +A.aLs.prototype={ +$0(){return!0===this.a.T()}, +$S:10} +A.aLt.prototype={ +$0(){return this.a.b}, +$S:10} +A.aLu.prototype={ +$0(){return!0===this.a.T()}, +$S:10} +A.aLv.prototype={ +$0(){return this.a.c}, +$S:10} +A.aLw.prototype={ +$0(){return!0===this.a.T()}, +$S:10} +A.aLx.prototype={ +$0(){return!1===this.a.T()}, +$S:10} +A.aLy.prototype={ +$0(){return!1===this.a.T()}, +$S:10} +A.aLz.prototype={ +$0(){return!1===this.a.T()}, +$S:10} +A.ajp.prototype={} +A.EC.prototype={ +a8(){return new A.amo(A.aW(t.Q),null,!1,B.m)}} +A.amo.prototype={ +aX(){var s,r,q,p=this +p.b9() +s=p.a +r=s.e +if(r!=null){q=p.c +q.toString +r.a=q +s=s.c +if(s!=null)p.sxY(s)}}, +b1(a){var s,r,q,p,o,n=this +n.bh(a) +s=a.e +if(s!=n.a.e){r=s==null +if(!r){s.a=null +n.d.al(0,s.gad7(s))}q=n.a.e +if(q!=null){p=n.c +p.toString +q.a=p +n.d.al(0,q.gDT(q))}s=r?null:s.at +r=n.a.e +if(!J.j(s,r==null?null:r.at))for(s=n.d,s=A.a8(s,!1,A.l(s).c),r=s.length,o=0;op.gq(p).a)){s=p.k3$ +s=r+s.gq(s).b>p.gq(p).b}else s=!0}else s=!0}else s=!0 +return s}}, +aE(a,b){var s,r,q,p,o,n=this +if(n.k3$!=null){s=n.W.at +s.toString +r=n.Dk(s) +s=new A.baW(n,r) +q=n.an +if(n.a5c(r)){p=n.cx +p===$&&A.b() +o=n.gq(n) +q.sb2(0,a.tX(p,b,new A.L(0,0,0+o.a,0+o.b),s,n.a6,q.a))}else{q.sb2(0,null) +s.$2(a,b)}}}, +m(){this.an.sb2(0,null) +this.iU()}, +eL(a,b){var s,r=this.W.at +r.toString +s=this.Dk(r) +b.bi(0,s.a,s.b)}, +ts(a){var s=this,r=s.W.at +r.toString +r=s.a5c(s.Dk(r)) +if(r){r=s.gq(s) +return new A.L(0,0,0+r.a,0+r.b)}return null}, +dZ(a,b){var s,r=this +if(r.k3$!=null){s=r.W.at +s.toString +return a.oP(new A.baV(r,b),r.Dk(s),b)}return!1}, +vS(a,b,c,d){var s,r,q,p,o,n,m,l=this +A.bU(l.B) +if(d==null)d=a.gr7() +if(!(a instanceof A.O)){s=l.W.at +s.toString +return new A.p9(s,d)}r=A.jj(a.cl(0,l.k3$),d) +s=l.k3$ +q=s.gq(s) +switch(l.B.a){case 0:p=l.gq(l).b +s=r.d +o=q.b-s +n=s-r.b +break +case 1:p=l.gq(l).a +o=r.a +n=r.c-o +break +case 2:p=l.gq(l).b +o=r.b +n=r.d-o +break +case 3:p=l.gq(l).a +s=r.c +o=q.a-s +n=s-r.a +break +default:o=null +n=null +p=null}m=o-(p-n)*b +return new A.p9(m,r.dq(l.Dk(m)))}, +O6(a,b,c){return this.vS(a,b,null,c)}, +i8(a,b,c,d){var s=this +if(!s.W.r.gwN())return s.HM(a,b,c,d) +s.HM(a,null,c,A.btL(a,b,c,s.W,d,s))}, +Cj(){return this.i8(B.aO,null,B.B,null)}, +w1(a){return this.i8(B.aO,null,B.B,a)}, +yv(a,b,c){return this.i8(a,null,b,c)}, +w2(a,b){return this.i8(B.aO,a,B.B,b)}, +Ld(a){var s,r,q=this,p=q.ga3d(),o=q.W.at +o.toString +s=p-o +switch(q.B.a){case 0:q.gq(q) +q.gq(q) +p=q.gq(q) +o=q.gq(q) +r=q.W.at +r.toString +return new A.L(0,0-s,0+p.a,0+o.b+r) +case 1:q.gq(q) +p=q.W.at +p.toString +q.gq(q) +return new A.L(0-p,0,0+q.gq(q).a+s,0+q.gq(q).b) +case 2:q.gq(q) +q.gq(q) +p=q.W.at +p.toString +return new A.L(0,0-p,0+q.gq(q).a,0+q.gq(q).b+s) +case 3:q.gq(q) +q.gq(q) +p=q.gq(q) +o=q.W.at +o.toString +return new A.L(0-s,0,0+p.a+o,0+q.gq(q).b)}}, +$iEf:1} +A.baW.prototype={ +$2(a,b){var s=this.a.k3$ +s.toString +a.em(s,b.U(0,this.b))}, +$S:16} +A.baV.prototype={ +$2(a,b){return this.a.k3$.dm(a,b)}, +$S:17} +A.Wk.prototype={ +aw(a){var s +this.eS(a) +s=this.k3$ +if(s!=null)s.aw(a)}, +ap(a){var s +this.eT(0) +s=this.k3$ +if(s!=null)s.ap(0)}} +A.aqi.prototype={} +A.aqj.prototype={} +A.a9J.prototype={} +A.kL.prototype={ +bI(a){return A.buh(this,!1)}, +V4(a,b,c,d,e){return null}} +A.mm.prototype={ +bI(a){return A.buh(this,!0)}, +b5(a){var s=new A.a8p(t.Gt.a(a),A.I(t.S,t.x),0,null,null,A.ay(t.T)) +s.b4() +return s}} +A.a9F.prototype={ +b5(a){var s=new A.a8m(this.f,t.Gt.a(a),A.I(t.S,t.x),0,null,null,A.ay(t.T)) +s.b4() +return s}, +bb(a,b){b.sFx(this.f)}} +A.ET.prototype={ +b5(a){var s=new A.a8n(this.f,t.Gt.a(a),A.I(t.S,t.x),0,null,null,A.ay(t.T)) +s.b4() +return s}, +bb(a,b){b.safU(this.f)}, +V4(a,b,c,d,e){var s,r +this.ajG(a,b,c,d,e) +s=this.f.Ye(a) +r=this.d.gAu() +r.toString +r=s.a8v(r) +return r}} +A.EW.prototype={ +ga7(){return t.Ss.a(A.bR.prototype.ga7.call(this))}, +bZ(a,b){var s,r,q=this.e +q.toString +t.M0.a(q) +this.uo(0,b) +s=b.d +r=q.d +if(s!==r)q=A.p(s)!==A.p(r)||s.Z0(r) +else q=!1 +if(q)this.ph()}, +ph(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0=null,a1={} +a.OW() +a.p1=null +a1.a=!1 +try{i=t.S +s=A.blF(i,t.Dv) +r=A.cA(a0,a0,a0,i,t.i) +i=a.e +i.toString +q=t.M0.a(i) +p=new A.aVy(a1,a,s,q,r) +for(i=a.ok,h=i.$ti,h=h.h("@<1>").V(h.h("jx<1,2>")).h("rM<1,2>"),h=A.a8(new A.rM(i,h),!0,h.h("z.E")),g=h.length,f=t.MR,e=a.k4,d=0;d").V(g.h("jx<1,2>")).h("rM<1,2>")).al(0,p) +if(!a1.a&&a.p3){b=i.abM() +k=b==null?-1:b +j=k+1 +J.j5(s,j,i.i(0,j)) +p.$1(j)}}finally{a.p2=null +a.ga7()}}, +aHG(a,b){this.f.E6(this,new A.aVv(this,b,a))}, +fE(a,b,c){var s,r,q,p,o=null +if(a==null)s=o +else{s=a.ga7() +s=s==null?o:s.b}r=t.MR +r.a(s) +q=this.ahM(a,b,c) +if(q==null)p=o +else{p=q.ga7() +p=p==null?o:p.b}r.a(p) +if(s!=p&&s!=null&&p!=null)p.a=s.a +return q}, +n0(a){this.ok.E(0,a.c) +this.py(a)}, +ad5(a){var s,r=this +r.ga7() +s=a.b +s.toString +s=t.V.a(s).b +s.toString +r.f.E6(r,new A.aVz(r,s))}, +V5(a,b,c,d,e){var s,r,q=this.e +q.toString +s=t.M0 +r=s.a(q).d.gAu() +if(r==null)return 1/0 +q=this.e +q.toString +s.a(q) +d.toString +q=q.V4(a,b,c,d,e) +return q==null?A.bMv(b,c,d,e,r):q}, +gE8(){var s,r,q,p,o,n,m=this,l=m.e +l.toString +s=t.M0 +r=s.a(l).d.gAu() +if(r==null){l=m.e +l.toString +for(l=s.a(l).d,q=0,p=1;o=p-1,l.aB(m,o)!=null;q=o)if(p<4503599627370496)p*=2 +else{if(p>=9007199254740992)throw A.c(A.qs("Could not find the number of children in "+l.l(0)+".\nThe childCount getter was called (implying that the delegate's builder returned null for a positive index), but even building the child with index "+p+" (the maximum possible integer) did not return null. Consider implementing childCount to avoid the cost of searching for the final child.")) +p=9007199254740992}for(;s=p-q,s>1;){n=B.f.cE(s,2)+q +if(l.aB(m,n-1)==null)p=n +else q=n}r=q}return r}, +x7(){var s=this.ok +s.aJ9() +s.abM() +s=this.e +s.toString +t.M0.a(s)}, +UF(a){var s=a.b +s.toString +t.V.a(s).b=this.p2}, +pc(a,b){this.ga7().OH(0,t.x.a(a),this.p1)}, +pe(a,b,c){this.ga7().FR(t.x.a(a),this.p1)}, +q9(a,b){this.ga7().E(0,t.x.a(a))}, +ci(a){var s=this.ok,r=s.$ti +r=r.h("@<1>").V(r.z[1]).h("Ax<1,2>") +r=A.dF(new A.Ax(s,r),r.h("z.E"),t.E) +B.b.al(A.a8(r,!0,A.l(r).h("z.E")),a)}} +A.aVy.prototype={ +$1(a){var s,r,q,p,o=this,n=o.b +n.p2=a +q=n.ok +if(q.i(0,a)!=null&&!J.j(q.i(0,a),o.c.i(0,a))){q.n(0,a,n.fE(q.i(0,a),null,a)) +o.a.a=!0}s=n.fE(o.c.i(0,a),o.d.d.aB(n,a),a) +if(s!=null){p=o.a +p.a=p.a||!J.j(q.i(0,a),s) +q.n(0,a,s) +q=s.ga7().b +q.toString +r=t.V.a(q) +if(a===0)r.a=0 +else{q=o.e +if(q.aq(0,a))r.a=q.i(0,a)}if(!r.c)n.p1=t.aA.a(s.ga7())}else{o.a.a=!0 +q.E(0,a)}}, +$S:33} +A.aVw.prototype={ +$0(){return null}, +$S:4} +A.aVx.prototype={ +$0(){return this.a.ok.i(0,this.b)}, +$S:587} +A.aVv.prototype={ +$0(){var s,r,q,p=this,o=p.a +o.p1=p.b==null?null:t.aA.a(o.ok.i(0,p.c-1).ga7()) +s=null +try{q=o.e +q.toString +r=t.M0.a(q) +q=o.p2=p.c +s=o.fE(o.ok.i(0,q),r.d.aB(o,q),q)}finally{o.p2=null}q=p.c +o=o.ok +if(s!=null)o.n(0,q,s) +else o.E(0,q)}, +$S:0} +A.aVz.prototype={ +$0(){var s,r,q,p=this +try{r=p.a +q=r.p2=p.b +s=r.fE(r.ok.i(0,q),null,q)}finally{p.a.p2=null}p.a.ok.E(0,p.b)}, +$S:0} +A.Li.prototype={ +zD(a){var s,r,q=a.b +q.toString +t.Cl.a(q) +s=this.f +if(q.AD$!==s){q.AD$=s +r=a.gbP(a) +if(r instanceof A.J&&!s)r.aa()}}} +A.a9E.prototype={ +A(a){var s=this.c,r=A.V(1-s,0,1) +return new A.amV(r/2,new A.amU(s,this.e,null),null)}} +A.amU.prototype={ +b5(a){var s=new A.a8k(this.f,t.Gt.a(a),A.I(t.S,t.x),0,null,null,A.ay(t.T)) +s.b4() +return s}, +bb(a,b){b.sGU(this.f)}} +A.amV.prototype={ +b5(a){var s=new A.alC(this.e,null,A.ay(t.T)) +s.b4() +return s}, +bb(a,b){b.sGU(this.e)}} +A.alC.prototype={ +sGU(a){var s=this +if(s.cY===a)return +s.cY=a +s.e5=null +s.aa()}, +gft(){return this.e5}, +aCl(){var s,r,q=this +if(q.e5!=null&&J.j(q.dH,t.r.a(A.J.prototype.ga9.call(q))))return +s=t.r +r=s.a(A.J.prototype.ga9.call(q)).y*q.cY +q.dH=s.a(A.J.prototype.ga9.call(q)) +switch(A.bU(s.a(A.J.prototype.ga9.call(q)).a).a){case 0:q.e5=new A.aK(r,0,r,0) +break +case 1:q.e5=new A.aK(0,r,0,r) +break}return}, +ce(){this.aCl() +this.ZY()}} +A.a9D.prototype={ +A(a){return new A.amT(this.c,null)}} +A.amT.prototype={ +b5(a){var s=new A.a8j(null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}} +A.OC.prototype={} +A.iT.prototype={ +bI(a){var s=A.l(this),r=t.E +return new A.OD(A.I(s.h("iT.0"),r),A.I(t.D2,r),this,B.an,s.h("@").V(s.h("iT.1")).h("OD<1,2>"))}} +A.mn.prototype={ +ghR(a){var s=this.d9$ +return s.gbp(s)}, +jo(){J.it(this.ghR(this),this.gXf())}, +ci(a){J.it(this.ghR(this),a)}, +Jy(a,b){var s=this.d9$,r=s.i(0,b) +if(r!=null){this.v7(r) +s.E(0,b)}if(a!=null){s.n(0,b,a) +this.mh(a)}}} +A.OD.prototype={ +ga7(){return this.$ti.h("mn<1,2>").a(A.bR.prototype.ga7.call(this))}, +ci(a){var s=this.k4 +s.gbp(s).al(0,a)}, +n0(a){this.k4.E(0,a.c) +this.py(a)}, +hI(a,b){this.w7(a,b) +this.a6o()}, +bZ(a,b){this.uo(0,b) +this.a6o()}, +a6o(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f=this,e=f.e +e.toString +s=f.$ti +s.h("iT<1,2>").a(e) +r=f.ok +q=t.E +f.ok=A.I(t.D2,q) +p=f.k4 +s=s.c +f.k4=A.I(s,q) +for(q=e.gOw(),o=q.length,n=0;n").a(A.bR.prototype.ga7.call(this)).Jy(a,b)}, +q9(a,b){var s=this.$ti.h("mn<1,2>") +if(s.a(A.bR.prototype.ga7.call(this)).d9$.i(0,b)===a)s.a(A.bR.prototype.ga7.call(this)).Jy(null,b)}, +pe(a,b,c){var s=this.$ti.h("mn<1,2>").a(A.bR.prototype.ga7.call(this)) +if(s.d9$.i(0,b)===a)s.Jy(null,b) +s.Jy(a,c)}} +A.Ui.prototype={ +bb(a,b){return this.ZW(a,b)}} +A.a9O.prototype={ +J(){return"SnapshotMode."+this.b}} +A.OG.prototype={ +sKs(a){return}} +A.a9Q.prototype={ +b5(a){var s=new A.Ha(A.aY(a,B.dh,t.l).w.b,this.w,this.e,this.f,!0,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){t.xL.a(b) +b.sqH(0,this.e) +b.saMK(0,this.f) +b.sAd(0,A.aY(a,B.dh,t.l).w.b) +b.sxP(this.w) +b.saFI(!0)}} +A.Ha.prototype={ +sAd(a,b){var s,r=this +if(b===r.D)return +r.D=b +s=r.ek +if(s==null)return +else{s.m() +r.ek=null +r.b_()}}, +sxP(a){var s,r=this,q=r.ac +if(a===q)return +s=r.geG() +q.H(0,s) +r.ac=a +if(A.p(q)!==A.p(r.ac)||r.ac.fv(q))r.b_() +if(r.y!=null)r.ac.P(0,s)}, +sqH(a,b){var s,r=this,q=r.az +if(b===q)return +s=r.gJ9() +q.H(0,s) +r.az=b +if(r.y!=null)b.P(0,s)}, +saMK(a,b){if(b===this.cr)return +this.cr=b +this.b_()}, +saFI(a){return}, +aw(a){var s=this +s.az.P(0,s.gJ9()) +s.ac.P(0,s.geG()) +s.yM(a)}, +ap(a){var s,r=this +r.hX=!1 +r.az.H(0,r.gJ9()) +r.ac.H(0,r.geG()) +s=r.ek +if(s!=null)s.m() +r.jh=r.ek=null +r.uq(0)}, +m(){var s,r=this +r.az.H(0,r.gJ9()) +r.ac.H(0,r.geG()) +s=r.ek +if(s!=null)s.m() +r.jh=r.ek=null +r.iU()}, +ayj(){var s,r=this +r.hX=!1 +s=r.ek +if(s!=null)s.m() +r.jh=r.ek=null +r.b_()}, +aE(a,b){var s=this,r=s.gq(s) +if(r.gak(r)){r=s.ek +if(r!=null)r.m() +s.jh=s.ek=null +return}r=s.ek +if(r!=null)r.m() +s.jh=s.ek=null +s.ac.G2(a,b,s.gq(s),A.ih.prototype.gil.call(s)) +return}} +A.a9P.prototype={} +A.Rm.prototype={ +P(a,b){}, +m(){}, +H(a,b){}, +$iat:1} +A.aag.prototype={ +A(a){return A.dN(B.a1,1)}} +A.OQ.prototype={ +aHD(a,b,c,d){var s=this +if(!s.e)return B.is +return new A.OQ(c,s.b,s.c,s.d,!0)}, +aHb(a){return this.aHD(null,null,a,null)}, +l(a){var s=this +return B.c.dn(" spell check enabled : "+s.e+"\n spell check service : "+A.i(s.a)+"\n misspelled text style : "+A.i(s.c)+"\n spell check suggestions toolbar builder: "+A.i(s.d)+"\n")}, +k(a,b){var s +if(b==null)return!1 +if(this===b)return!0 +if(b instanceof A.OQ)if(b.a==this.a)s=b.e===this.e +else s=!1 +else s=!1 +return s}, +gu(a){var s=this +return A.X(s.a,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,B.a)}} +A.OX.prototype={ +a8(){return new A.Ur(B.m)}} +A.Ur.prototype={ +aX(){this.b9() +this.a.c.f8(this.gPn())}, +b1(a){var s,r,q=this +q.bh(a) +s=a.c +if(q.a.c!==s){r=q.gPn() +s.ee(r) +q.a.c.f8(r)}}, +m(){this.a.c.ee(this.gPn()) +this.b0()}, +anu(a){this.ad(new A.bcA())}, +A(a){var s=this.a +return s.tg(a,s.f)}} +A.bcA.prototype={ +$0(){}, +$S:0} +A.aaJ.prototype={ +b5(a){var s=new A.NN(new A.Ck(new WeakMap(),null,t.ii),A.aW(t.Cn),A.I(t.X,t.hi),B.ci,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){}} +A.NN.prototype={ +NJ(a){var s +this.h0.E(0,a) +s=this.dt +s.i(0,a.ea).E(0,a) +if(s.i(0,a.ea).a===0)s.E(0,a.ea)}, +dm(a,b){var s,r,q=this +if(!q.gq(q).p(0,b))return!1 +s=q.dZ(a,b)||q.D===B.bE +if(s){r=new A.wr(b,q) +q.a3.n(0,r,a) +a.F(0,r)}return s}, +p9(a,b){var s,r,q,p,o,n,m,l,k=this +if(!t.pY.b(a)||a.gfV(a)!==1)return +s=k.h0 +if(s.a===0)return +A.ql(b) +r=k.a3.a.get(b) +if(r==null)return +q=k.asl(s,r.a) +p=t.Cn +o=A.aUo(q,q.gRT(),A.l(q).c,p).apa() +n=A.aW(p) +for(q=o.gam(o),p=k.dt;q.v();){m=q.gG(q) +m=p.i(0,m.ea) +m.toString +n.I(0,m)}l=s.x9(n) +for(s=l.gam(l);s.v();){q=s.gG(s).h0 +if(q!=null)q.$1(a)}for(s=A.dS(n,n.r,n.$ti.c),q=s.$ti.c;s.v();){p=s.d +if(p==null)q.a(p)}}, +asl(a,b){var s,r,q,p,o=A.aW(t.zE) +for(s=b.length,r=this.h0,q=0;q1)return +if(p.c){q=o.gar().gR() +q.toString +q.gai() +q=o.gar().gR() +q.toString +q=q.gai().cq.gdf()}else q=!1 +if(q)switch(A.c3().a){case 2:case 4:p.ar7(r,B.aI) +break +case 0:case 1:case 3:case 5:p.z0(r,B.aI) +break}else switch(A.c3().a){case 2:switch(s){case B.c9:case B.bM:o=o.gar().gR() +o.toString +o.gai().iw(B.aI,r) +break +case B.cx:case B.e4:case B.be:case B.d9:q=o.gar().gR() +q.toString +if(q.gai().cY){q=p.r +q.toString}else q=!1 +if(q){o=o.gar().gR() +o.toString +o.gai().iw(B.aI,r) +p.wA(r)}break +case null:case void 0:break}break +case 0:case 1:switch(s){case B.c9:case B.bM:o=o.gar().gR() +o.toString +o.gai().iw(B.aI,r) +break +case B.cx:case B.e4:case B.be:case B.d9:q=o.gar().gR() +q.toString +if(q.gai().cY){o=o.gar().gR() +o.toString +o.gai().iw(B.aI,r) +p.wA(r)}break +case null:case void 0:break}break +case 3:case 4:case 5:o=o.gar().gR() +o.toString +o.gai().iw(B.aI,r) +break}}, +aNa(a){var s,r,q,p,o,n,m,l,k,j,i=this,h=i.a +if(!h.ghL())return +if(!i.c){s=h.gar().gR() +s.toString +if(s.gai().fp===1){s=h.gar().gR() +s.toString +s=s.gai().dM.at +s.toString +r=new A.m(s-i.e,0)}else{s=h.gar().gR() +s.toString +s=s.gai().dM.at +s.toString +r=new A.m(0,s-i.e)}q=new A.m(0,i.gJt()-i.d) +s=a.d +p=s.a4(0,a.r) +o=a.x +if(A.Hz(o)===2){n=h.gar().gR() +n.toString +n.gai().C8(B.aI,p.a4(0,r).a4(0,q),s) +switch(a.f){case B.cx:case B.e4:case B.be:case B.d9:return i.wA(s) +case B.c9:case B.bM:case null:case void 0:return}}if(A.Hz(o)===3)switch(A.c3().a){case 0:case 1:case 2:switch(a.f){case B.c9:case B.bM:return i.SB(B.aI,p.a4(0,r).a4(0,q),s) +case B.cx:case B.e4:case B.be:case B.d9:case null:case void 0:break}return +case 3:return i.a4S(B.aI,p.a4(0,r).a4(0,q),s) +case 5:case 4:return i.SB(B.aI,p.a4(0,r).a4(0,q),s)}switch(A.c3().a){case 2:switch(a.f){case B.c9:case B.bM:h=h.gar().gR() +h.toString +return h.gai().Hm(B.aI,p.a4(0,r).a4(0,q),s) +case B.cx:case B.e4:case B.be:case B.d9:o=h.gar().gR() +o.toString +if(o.gai().cY){o=i.f +if(o.a===o.b){o=i.r +o.toString}else o=!1}else o=!1 +if(o){h=h.gar().gR() +h.toString +h.gai().iw(B.aI,s) +return i.wA(s)}break +case null:case void 0:break}return +case 0:case 1:switch(a.f){case B.c9:case B.bM:case B.cx:case B.e4:h=h.gar().gR() +h.toString +return h.gai().Hm(B.aI,p.a4(0,r).a4(0,q),s) +case B.be:case B.d9:o=h.gar().gR() +o.toString +if(o.gai().cY){h=h.gar().gR() +h.toString +h.gai().iw(B.aI,s) +return i.wA(s)}break +case null:case void 0:break}return +case 4:case 3:case 5:h=h.gar().gR() +h.toString +return h.gai().Hm(B.aI,p.a4(0,r).a4(0,q),s)}}s=i.f +if(s.a!==s.b)s=A.c3()!==B.b1&&A.c3()!==B.dc +else s=!0 +if(s)return i.z0(a.d,B.aI) +s=h.gar().gR() +s.toString +m=s.a.c.a.b +s=h.gar().gR() +s.toString +o=a.d +l=s.gai().iR(o) +s=i.f +n=s.c +k=l.a +j=nn +if(j&&m.c===n){s=h.gar().gR() +s.toString +h=h.gar().gR() +h.toString +s.ka(h.a.c.a.mE(A.dq(B.t,i.f.d,k,!1)),B.aI)}else if(!j&&k!==n&&m.c!==n){s=h.gar().gR() +s.toString +h=h.gar().gR() +h.toString +s.ka(h.a.c.a.mE(A.dq(B.t,i.f.c,k,!1)),B.aI)}else i.z0(o,B.aI)}, +aN6(a){var s,r=this +r.r=null +if(r.b&&A.Hz(a.c)===2){s=r.a.gar().gR() +s.toString +s.oA()}if(r.c)r.f=null +r.a2E()}, +a7Z(a,b){var s=this,r=s.a,q=r.gVp()?s.gWz():null +r=r.gVp()?s.gWy():null +return new A.Pt(s.gaNx(),s.gaNv(),s.gaNt(),q,r,s.gaNj(),s.gaNl(),s.gWL(),s.gaNq(),s.gWK(),s.gacn(),s.gaNo(),s.gaN3(),s.gaNA(),s.gaN7(),s.gaN9(),s.gaN5(),a,b,null)}} +A.Pt.prototype={ +a8(){return new A.UN(B.m)}} +A.UN.prototype={ +avl(){this.a.c.$0()}, +avk(){this.a.d.$0()}, +aDc(a){var s +this.a.e.$1(a) +s=a.d +if(A.Hz(s)===2){s=this.a.ax.$1(a) +return s}if(A.Hz(s)===3){s=this.a.ay.$1(a) +return s}}, +aDd(a){if(A.Hz(a.d)===1)this.a.y.$1(a)}, +aDb(){this.a.z.$0()}, +aD9(a){this.a.ch.$1(a)}, +aDa(a){this.a.CW.$1(a)}, +aD8(a){this.a.cx.$1(a)}, +arI(a){var s=this.a.f +if(s!=null)s.$1(a)}, +arG(a){var s=this.a.r +if(s!=null)s.$1(a)}, +atP(a){this.a.Q.$1(a)}, +atN(a){this.a.as.$1(a)}, +atL(a){this.a.at.$1(a)}, +A(a){var s,r,q=this,p=A.I(t.n,t.xR) +p.n(0,B.pP,new A.dH(new A.bdA(q),new A.bdB(q),t.UN)) +q.a.toString +p.n(0,B.pL,new A.dH(new A.bdC(q),new A.bdD(q),t.jn)) +q.a.toString +switch(A.c3().a){case 0:case 1:case 2:p.n(0,B.ayJ,new A.dH(new A.bdE(q),new A.bdF(q),t.hg)) +break +case 3:case 4:case 5:p.n(0,B.ays,new A.dH(new A.bdG(q),new A.bdH(q),t._U)) +break}s=q.a +if(s.f!=null||s.r!=null)p.n(0,B.Pj,new A.dH(new A.bdI(q),new A.bdJ(q),t.C1)) +s=q.a +r=s.cy +return new A.nv(s.db,p,r,!0,null)}} +A.bdA.prototype={ +$0(){return A.aaH(this.a,null)}, +$S:210} +A.bdB.prototype={ +$1(a){var s=this.a.a +a.ct=s.w +a.B=s.x}, +$S:211} +A.bdC.prototype={ +$0(){return A.aII(this.a,null,A.f9([B.be],t.Au))}, +$S:212} +A.bdD.prototype={ +$1(a){var s=this.a +a.p3=s.gatO() +a.p4=s.gatM() +a.RG=s.gatK()}, +$S:213} +A.bdE.prototype={ +$0(){var s=null,r=t.S,q=A.dI(r) +return new A.pi(B.D,B.iI,A.aW(r),s,s,0,s,s,s,s,s,s,A.I(r,t.SP),q,this.a,s,A.HT(),A.I(r,t.Au))}, +$S:593} +A.bdF.prototype={ +$1(a){var s +a.at=B.n1 +s=this.a +a.LF$=s.ga2y() +a.LG$=s.ga2x() +a.ch=s.ga5R() +a.cx=s.ga5O() +a.cy=s.ga5P() +a.db=s.ga5N() +a.CW=s.ga5S() +a.dx=s.ga5Q()}, +$S:594} +A.bdG.prototype={ +$0(){var s=null,r=t.S,q=A.dI(r) +return new A.pj(B.D,B.iI,A.aW(r),s,s,0,s,s,s,s,s,s,A.I(r,t.SP),q,this.a,s,A.HT(),A.I(r,t.Au))}, +$S:595} +A.bdH.prototype={ +$1(a){var s +a.at=B.n1 +s=this.a +a.LF$=s.ga2y() +a.LG$=s.ga2x() +a.ch=s.ga5R() +a.cx=s.ga5O() +a.cy=s.ga5P() +a.db=s.ga5N() +a.CW=s.ga5S() +a.dx=s.ga5Q()}, +$S:596} +A.bdI.prototype={ +$0(){return A.brI(this.a,null)}, +$S:274} +A.bdJ.prototype={ +$1(a){var s=this.a,r=s.a +a.at=r.f!=null?s.garH():null +a.ch=r.r!=null?s.garF():null}, +$S:219} +A.Je.prototype={ +P(a,b){var s=this +if(s.k4$<=0)$.ap.bd$.push(s) +if(s.ay===B.mt)A.cR(null,t.H) +s.Zm(0,b)}, +H(a,b){var s=this +s.Zn(0,b) +if(!s.w&&s.k4$<=0)B.b.E($.ap.bd$,s)}, +Lg(a){switch(a.a){case 1:A.cR(null,t.H) +break +case 0:case 2:case 3:case 4:break}}, +m(){B.b.E($.ap.bd$,this) +this.w=!0 +this.eK()}} +A.BE.prototype={ +J(){return"ClipboardStatus."+this.b}} +A.nL.prototype={ +Vw(a){return this.aK3(a)}, +aK3(a){var s=0,r=A.y(t.H) +var $async$Vw=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:return A.w(null,r)}}) +return A.x($async$Vw,r)}} +A.af3.prototype={} +A.Wr.prototype={ +m(){var s=this,r=s.c3$ +if(r!=null)r.H(0,s.ghP()) +s.c3$=null +s.b0()}, +cf(){this.cW() +this.cO() +this.hQ()}} +A.Ws.prototype={ +m(){var s=this,r=s.c3$ +if(r!=null)r.H(0,s.ghP()) +s.c3$=null +s.b0()}, +cf(){this.cW() +this.cO() +this.hQ()}} +A.Px.prototype={} +A.aaZ.prototype={ +vQ(a){return new A.aN(0,a.b,0,a.d)}, +vT(a,b){var s,r,q,p=this,o=p.d +if(o==null)o=p.b.b>=b.b +s=o?p.b:p.c +r=A.bN9(s.a,b.a,a.a) +q=s.b +return new A.m(r,o?Math.max(0,q-b.b):q)}, +qj(a){return!this.b.k(0,a.b)||!this.c.k(0,a.c)||this.d!=a.d}} +A.zK.prototype={ +a8(){return new A.aoa(new A.bF(!0,$.aH(),t.G),B.m)}} +A.aoa.prototype={ +ca(){var s,r=this +r.e8() +s=r.c +s.toString +r.d=A.ab2(s) +r.a6u()}, +b1(a){this.bh(a) +this.a6u()}, +m(){var s=this.e +s.ok$=$.aH() +s.k4$=0 +this.b0()}, +a6u(){var s=this.d&&this.a.c +this.e.sj(0,s)}, +A(a){var s=this.e +return new A.RD(s.a,s,this.a.d,null)}} +A.RD.prototype={ +dh(a){return this.f!==a.f}} +A.fO.prototype={ +A2(a){var s,r=this +r.ff$=new A.zI(a,null) +r.cO() +r.hQ() +s=r.ff$ +s.toString +return s}, +hQ(){var s,r=this.ff$ +if(r!=null){s=this.c3$ +r.sMA(0,!s.gj(s))}}, +cO(){var s,r=this,q=r.c +q.toString +s=A.buJ(q) +q=r.c3$ +if(s===q)return +if(q!=null)q.H(0,r.ghP()) +s.P(0,r.ghP()) +r.c3$=s}} +A.dQ.prototype={ +A2(a){var s,r,q=this +if(q.b7$==null)q.cO() +if(q.dL$==null)q.dL$=A.aW(t.DH) +s=new A.ap4(q,a,null) +r=q.b7$ +s.sMA(0,!r.gj(r)) +q.dL$.F(0,s) +return s}, +ev(){var s,r,q,p +if(this.dL$!=null){s=this.b7$ +r=!s.gj(s) +for(s=this.dL$,s=A.dS(s,s.r,A.l(s).c),q=s.$ti.c;s.v();){p=s.d;(p==null?q.a(p):p).sMA(0,r)}}}, +cO(){var s,r=this,q=r.c +q.toString +s=A.buJ(q) +q=r.b7$ +if(s===q)return +if(q!=null)q.H(0,r.gep()) +s.P(0,r.gep()) +r.b7$=s}} +A.ap4.prototype={ +m(){this.w.dL$.E(0,this) +this.a_0()}} +A.R2.prototype={ +P(a,b){}, +H(a,b){}, +$iat:1, +gj(){return!0}} +A.Fv.prototype={ +A(a){A.aYF(new A.asH(this.c,this.d.a)) +return this.e}} +A.Ie.prototype={ +a8(){return new A.Qk(B.m)}, +gtN(){return this.c}} +A.Qk.prototype={ +aX(){this.b9() +this.a.gtN().P(0,this.gSZ())}, +b1(a){var s,r=this +r.bh(a) +if(!r.a.gtN().k(0,a.gtN())){s=r.gSZ() +a.gtN().H(0,s) +r.a.gtN().P(0,s)}}, +m(){this.a.gtN().H(0,this.gSZ()) +this.b0()}, +aDK(){this.ad(new A.b1Z())}, +A(a){return this.a.A(a)}} +A.b1Z.prototype={ +$0(){}, +$S:0} +A.ER.prototype={ +A(a){var s=this,r=t.so.a(s.c),q=r.gj(r) +if(s.e===B.ab)q=new A.m(-q.a,q.b) +return A.brK(s.r,s.f,q)}} +A.a5S.prototype={ +A(a){var s,r,q=this,p=t.m.a(q.c) +switch(p.gaP(p).a){case 0:case 3:s=!1 +break +case 1:case 2:s=!0 +break +default:s=null}p=q.e.$1(p.gj(p)) +r=s?q.r:null +return A.zO(q.f,q.w,r,p,!0)}} +A.a8Q.prototype={} +A.a8D.prototype={} +A.a9u.prototype={ +A(a){var s=t.m.a(this.c) +s=Math.max(A.l_(s.gj(s)),0) +return A.to(new A.ef(new A.iv(-1,this.f),null,s,this.r,null),B.C)}} +A.cY.prototype={ +b5(a){var s=null,r=new A.Ns(s,s,s,s,s,A.ay(t.T)) +r.b4() +r.sbN(s) +r.si_(0,this.e) +r.sKu(this.f) +return r}, +bb(a,b){b.si_(0,this.e) +b.sKu(this.f)}} +A.Ee.prototype={ +hk(a){var s=A.bLw(this.a,this.b,a) +s.toString +return s}} +A.N4.prototype={ +A(a){var s=t.Jo.a(this.c) +return A.DW(this.e,s.gj(s))}} +A.a0C.prototype={ +A(a){var s=this.e,r=s.a +return A.wP(this.r,s.b.a5(0,r.gj(r)),B.dH)}} +A.a0L.prototype={ +A(a){var s=this,r=t.rb.a(s.c) +return A.fI(s.x,null,s.w,s.r,!0,r.gj(r),null,null,B.at)}} +A.Lx.prototype={ +gtN(){return this.c}, +A(a){return this.tg(a,this.f)}} +A.Xu.prototype={ +gtN(){return A.Lx.prototype.gtN.call(this)}, +gaG1(){return this.e}, +tg(a,b){return this.gaG1().$2(a,b)}} +A.FC.prototype={ +a8(){var s=this.$ti +return new A.FD(new A.aoJ(A.a([],s.h("H<1>")),s.h("aoJ<1>")),B.m,s.h("FD<1>"))}} +A.FD.prototype={ +gaDf(){var s=this.e +s===$&&A.b() +return s}, +gDE(){var s=this.a.r,r=this.x +if(r==null){s=$.aH() +s=new A.PO(new A.i1(s),new A.i1(s),B.ayT,s) +this.x=s}else s=r +return s}, +GG(){var s,r,q,p=this,o=p.d +if(o.gjM()==null)return +s=p.f +r=s==null +q=r?null:s.b!=null +if(q===!0){if(!r)s.aI(0) +p.T1(0,o.gjM())}else p.T1(0,o.GG()) +p.K4()}, +Gh(){this.T1(0,this.d.Gh()) +this.K4()}, +K4(){var s=this.gDE(),r=this.d,q=r.a,p=q.length!==0&&r.b>0 +s.sj(0,new A.FE(p,r.ga8a())) +if(A.c3()!==B.b1)return +s=$.boe() +if(s.b===this){q=q.length!==0&&r.b>0 +r=r.ga8a() +s=s.a +s===$&&A.b() +s.e_("UndoManager.setUndoState",A.am(["canUndo",q,"canRedo",r],t.N,t.y),t.H)}}, +aDR(a){this.GG()}, +aA7(a){this.Gh()}, +T1(a,b){var s=this +if(b==null)return +if(J.j(b,s.w))return +s.w=b +s.r=!0 +try{s.a.e.$1(b)}finally{s.r=!1}}, +a43(){var s,r=this +if(J.j(r.a.c.a,r.w))return +if(r.r)return +s=r.a +s=s.d.$2(r.w,s.c.a) +if(!(s==null?!0:s))return +s=r.a.c.a +r.w=s +r.f=r.aDg(s)}, +a2i(){if(!this.a.f.gdk())return +$.boe().b=this +this.K4()}, +aK5(a){switch(a.a){case 0:this.GG() +break +case 1:this.Gh() +break}}, +aX(){var s,r=this +r.b9() +s=A.bSS(B.bD,new A.b_R(r),r.$ti.c) +r.e!==$&&A.ck() +r.e=s +r.a43() +r.a.c.P(0,r.gSb()) +r.a2i() +r.a.f.P(0,r.gR5()) +r.gDE().w.P(0,r.gae1()) +r.gDE().x.P(0,r.gad_())}, +b1(a){var s,r,q=this +q.bh(a) +s=a.c +if(q.a.c!==s){r=q.d +B.b.ab(r.a) +r.b=-1 +r=q.gSb() +s.H(0,r) +q.a.c.P(0,r)}s=a.f +if(q.a.f!==s){r=q.gR5() +s.H(0,r) +q.a.f.P(0,r)}q.a.toString}, +m(){var s,r=this +r.a.c.H(0,r.gSb()) +r.a.f.H(0,r.gR5()) +r.gDE().w.H(0,r.gae1()) +r.gDE().x.H(0,r.gad_()) +s=r.x +if(s!=null)s.m() +s=r.f +if(s!=null)s.aI(0) +r.b0()}, +A(a){var s=t.h,r=t.o +return A.pY(A.am([B.ayy,new A.cz(this.gaDQ(),new A.bd(A.a([],s),r),t._n).fI(a),B.ayk,new A.cz(this.gaA6(),new A.bd(A.a([],s),r),t.fN).fI(a)],t.n,t.od),this.a.w)}, +aDg(a){return this.gaDf().$1(a)}} +A.b_R.prototype={ +$1(a){var s=this.a +s.d.vH(a) +s.K4()}, +$S(){return this.a.$ti.h("~(1)")}} +A.FE.prototype={ +l(a){return"UndoHistoryValue(canUndo: "+this.a+", canRedo: "+this.b+")"}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +return b instanceof A.FE&&b.a===this.a&&b.b===this.b}, +gu(a){var s=this.a?519018:218159 +return A.X(s,this.b?519018:218159,B.a,B.a,B.a,B.a,B.a,B.a,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.PO.prototype={ +m(){var s=this.w,r=$.aH() +s.ok$=r +s.k4$=0 +s=this.x +s.ok$=r +s.k4$=0 +this.eK()}} +A.aoJ.prototype={ +gjM(){var s=this.a +return s.length===0?null:s[this.b]}, +ga8a(){var s=this.a.length +return s!==0&&this.b"))}} +A.HG.prototype={ +aX(){var s,r=this +r.b9() +s=r.a.c +r.d=s.gj(s) +r.a.c.P(0,r.gTh())}, +b1(a){var s,r,q=this +q.bh(a) +s=a.c +if(s!==q.a.c){r=q.gTh() +s.H(0,r) +s=q.a.c +q.d=s.gj(s) +q.a.c.P(0,r)}}, +m(){this.a.c.H(0,this.gTh()) +this.b0()}, +aEJ(){this.ad(new A.bef(this))}, +A(a){var s,r=this.a +r.toString +s=this.d +s===$&&A.b() +return r.d.$3(a,s,null)}} +A.bef.prototype={ +$0(){var s=this.a,r=s.a.c +s.d=r.gj(r)}, +$S:0} +A.abI.prototype={ +A(a){var s=this,r=s.c,q=s.e,p=s.f +return new A.Tm(r,new A.b0H(s),q,p,new A.Rn(r,q,p,t.Q8))}} +A.b0H.prototype={ +$2(a,b){var s=this.a,r=s.c +return new A.AD(r,new A.Ta(b,new A.SL(r,s.d,null),null),null)}, +$S:599} +A.Tm.prototype={ +bI(a){return new A.akU(this,B.an)}, +b5(a){return this.f}} +A.akU.prototype={ +grX(){var s=this.e +s.toString +t.mP.a(s) +return s.e}, +ga7(){return t.Ju.a(A.bR.prototype.ga7.call(this))}, +T4(){var s,r,q,p,o,n,m,l=this +try{n=l.e +n.toString +s=t.mP.a(n).d.$2(l,l.grX()) +l.aK=l.fE(l.aK,s,null)}catch(m){r=A.ak(m) +q=A.aJ(m) +n=A.c0("building "+l.l(0)) +p=new A.cg(r,q,"widgets library",n,null,!1) +A.e6(p) +o=A.Kh(p) +l.aK=l.fE(null,o,l.c)}}, +hI(a,b){var s,r=this +r.w7(a,b) +s=t.Ju +r.grX().sXs(s.a(A.bR.prototype.ga7.call(r))) +r.a_J() +r.T4() +s.a(A.bR.prototype.ga7.call(r)).WY() +if(r.grX().at!=null)s.a(A.bR.prototype.ga7.call(r)).Hk()}, +a_K(a){var s,r,q=this +if(a==null)a=A.bvd(q) +s=q.grX() +a.CW.F(0,s) +r=a.cx +if(r!=null)s.aw(r) +s=$.z2 +s.toString +r=t.Ju.a(A.bR.prototype.ga7.call(q)) +s.go$.n(0,r.go.a,r) +r.suX(s.aHN(r)) +q.b6=a}, +a_J(){return this.a_K(null)}, +a0Q(){var s,r=this,q=r.b6 +if(q!=null){s=$.z2 +s.toString +s.go$.E(0,t.Ju.a(A.bR.prototype.ga7.call(r)).go.a) +s=r.grX() +q.CW.E(0,s) +if(q.cx!=null)s.ap(0) +r.b6=null}}, +ca(){var s,r=this +r.HJ() +if(r.b6==null)return +s=A.bvd(r) +if(s!==r.b6){r.a0Q() +r.a_K(s)}}, +ph(){this.OW() +this.T4()}, +cf(){var s=this +s.OL() +s.grX().sXs(t.Ju.a(A.bR.prototype.ga7.call(s))) +s.a_J()}, +fd(){this.a0Q() +this.grX().sXs(null) +this.ZU()}, +bZ(a,b){this.uo(0,b) +this.T4()}, +ci(a){var s=this.aK +if(s!=null)a.$1(s)}, +n0(a){this.aK=null +this.py(a)}, +pc(a,b){t.Ju.a(A.bR.prototype.ga7.call(this)).sbN(a)}, +pe(a,b,c){}, +q9(a,b){t.Ju.a(A.bR.prototype.ga7.call(this)).sbN(null)}, +kJ(){var s=this,r=s.grX(),q=s.e +q.toString +if(r!==t.mP.a(q).e){r=s.grX() +q=r.at +if(q!=null)q.m() +r.at=null +B.b.ab(r.r) +B.b.ab(r.z) +B.b.ab(r.Q) +r.ch.ab(0)}s.ZV()}} +A.AD.prototype={ +dh(a){return this.f!==a.f}} +A.Ta.prototype={ +dh(a){return this.f!==a.f}} +A.Rn.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(J.a_(b)!==A.p(s))return!1 +return s.$ti.b(b)&&b.a===s.a&&b.b===s.b&&b.c===s.c}, +gu(a){return A.X(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)}, +l(a){return"[_DeprecatedRawViewKey "+("#"+A.br(this.a))+"]"}} +A.rq.prototype={ +b5(a){var s=this,r=s.e,q=A.abM(a,r) +return A.bLE(s.gkj(),r,s.y,s.z,null,null,s.Q,q,s.w)}, +bb(a,b){var s=this,r=s.e +b.sj4(r) +r=A.abM(a,r) +b.sa9g(r) +b.skj(s.gkj()) +b.sc5(0,s.w) +b.saG4(s.y) +b.saG5(s.z) +b.smB(s.Q)}, +bI(a){return new A.aoX(A.dI(t.E),this,B.an)}, +gkj(){return this.r}} +A.aoX.prototype={ +ga7(){return t.E1.a(A.kF.prototype.ga7.call(this))}, +hI(a,b){var s=this +s.b6=!0 +s.aig(a,b) +s.a6n() +s.b6=!1}, +bZ(a,b){var s=this +s.b6=!0 +s.aii(0,b) +s.a6n() +s.b6=!1}, +a6n(){var s,r,q,p,o=this,n=o.e +n.toString +n=t.Dg.a(n).x +if(n!=null){for(s=o.ghR(o),r=J.al(s.a),s=new A.jt(r,s.b,s.$ti.h("jt<1>")),q=0;s.v();){p=r.gG(r) +if(J.j(p.gbc().a,n)){t.E1.a(A.kF.prototype.ga7.call(o)).sbM(t.IT.a(p.ga7())) +break}++q}o.c_=q}else{n=o.ghR(o) +s=t.E1 +if(!n.gak(n)){n=s.a(A.kF.prototype.ga7.call(o)) +s=o.ghR(o) +n.sbM(t.IT.a(s.gO(s).ga7())) +o.c_=0}else{s.a(A.kF.prototype.ga7.call(o)).sbM(null) +o.c_=null}}}, +pc(a,b){var s=this +s.ZB(a,b) +if(!s.b6&&b.b===s.c_)t.E1.a(A.kF.prototype.ga7.call(s)).sbM(t.IT.a(a))}, +pe(a,b,c){this.ZC(a,b,c)}, +q9(a,b){var s=this +s.aih(a,b) +if(!s.b6&&t.E1.a(A.kF.prototype.ga7.call(s)).ed===a)t.E1.a(A.kF.prototype.ga7.call(s)).sbM(null)}} +A.a9n.prototype={ +b5(a){var s=this.e,r=A.abM(a,s),q=A.ay(t.O5) +s=new A.a8i(s,r,this.r,250,B.he,this.w,q,0,null,null,A.ay(t.T)) +s.b4() +s.I(0,null) +return s}, +bb(a,b){var s=this.e +b.sj4(s) +s=A.abM(a,s) +b.sa9g(s) +b.sc5(0,this.r) +b.smB(this.w)}} +A.aqQ.prototype={} +A.aqR.prototype={} +A.FM.prototype={ +A(a){var s=this,r=s.e,q=!r&&!s.y,p=new A.aoY(r,s.x,A.qD(s.c,q,null),null) +return new A.Vh(r,p,null)}} +A.b0I.prototype={ +$1(a){this.a.a=a +return!1}, +$S:48} +A.Vh.prototype={ +dh(a){return this.f!==a.f}} +A.aoY.prototype={ +b5(a){var s=new A.alM(this.e,this.f,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.saQx(0,this.e) +b.saMu(this.f)}} +A.alM.prototype={ +saQx(a,b){if(b===this.D)return +this.D=b +this.b_()}, +saMu(a){if(a===this.ac)return +this.ac=a +this.bY()}, +jv(a){if(this.ac||this.D)this.yJ(a)}, +aE(a,b){if(!this.D)return +this.oE(a,b)}} +A.FO.prototype={ +KB(a,b,c){var s,r=this.a,q=r!=null +if(q)a.Bl(r.Hg(c)) +b.toString +s=b[a.gacy()] +r=s.a +a.Kn(r.a,r.b,this.b,s.d,s.c) +if(q)a.i2()}, +ci(a){return a.$1(this)}, +aeg(a){return!0}, +Yr(a,b){var s=b.a +if(a.a===s)return this +b.a=s+1 +return null}, +a8o(a,b){var s=b.a +b.a=s+1 +return a-s===0?65532:null}, +bO(a,b){var s,r,q,p,o,n=this +if(n===b)return B.ds +if(A.p(b)!==A.p(n))return B.c_ +s=n.a +r=s==null +q=b.a +if(r!==(q==null))return B.c_ +t.a7.a(b) +if(!n.e.rP(0,b.e)||n.b!==b.b)return B.c_ +if(!r){q.toString +p=s.bO(0,q) +o=p.a>0?p:B.ds +if(o===B.c_)return o}else o=B.ds +return o}, +k(a,b){var s=this +if(b==null)return!1 +if(s===b)return!0 +if(J.a_(b)!==A.p(s))return!1 +if(!s.Zy(0,b))return!1 +return b instanceof A.o6&&b.e.rP(0,s.e)&&b.b===s.b&&!0}, +gu(a){var s=this +return A.X(A.kz.prototype.gu.call(s,s),s.e,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.b0O.prototype={ +$1(a){var s,r,q,p,o=this,n=null,m=a.a,l=m==null?n:m.r +$label0$0:{if(typeof l=="number"){m=l!==B.b.gX(o.b) +s=l}else{s=n +m=!1}if(m){m=s +break $label0$0}m=n +break $label0$0}r=m!=null +if(r)o.b.push(m) +if(a instanceof A.o6){q=B.b.gX(o.b) +p=q===0?0:o.c.c0(0,q)/q +m=o.a.a++ +o.d.push(new A.ap3(a,new A.bu(A.bL(n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,new A.qU(m,"PlaceholderSpanIndexSemanticsTag("+m+")"),n,n,n,n,n),!1,!1,!1,!1,new A.aeh(a,p,a.e,n),n),n))}a.aeg(o) +if(r)o.b.pop() +return!0}, +$S:99} +A.ap3.prototype={ +zD(a){var s=a.b +s.toString +t.ot.a(s).b=this.f}} +A.aeh.prototype={ +b5(a){var s=this.e +s=new A.TK(this.f,s.b,s.c,null,A.ay(t.T)) +s.b4() +return s}, +bb(a,b){var s=this.e +b.sjI(s.b) +b.sqD(s.c) +b.slS(0,this.f)}} +A.TK.prototype={ +slS(a,b){if(b===this.B)return +this.B=b +this.aa()}, +sjI(a){if(this.W===a)return +this.W=a +this.aa()}, +sqD(a){return}, +bV(a){var s=this.k3$ +s=s==null?null:s.bV(a/this.B) +if(s==null)s=0 +return s*this.B}, +bQ(a){var s=this.k3$ +s=s==null?null:s.bQ(a/this.B) +if(s==null)s=0 +return s*this.B}, +bR(a){var s=this.k3$ +s=s==null?null:s.bR(a/this.B) +if(s==null)s=0 +return s*this.B}, +bX(a){var s=this.k3$ +s=s==null?null:s.bX(a/this.B) +if(s==null)s=0 +return s*this.B}, +hS(a){var s=this.k3$,r=s==null?null:s.qf(a) +$label0$0:{if(r==null){s=this.HL(a) +break $label0$0}s=this.B*r +break $label0$0}return s}, +da(a){var s=this.k3$,r=s==null?null:s.da(new A.aN(0,a.b/this.B,0,1/0)) +if(r==null)r=B.y +return a.bJ(r.av(0,this.B))}, +ce(){var s,r=this,q=r.k3$ +if(q==null)return +s=t.k +q.cS(new A.aN(0,s.a(A.J.prototype.ga9.call(r)).b/r.B,0,1/0),!0) +r.id=s.a(A.J.prototype.ga9.call(r)).bJ(q.gq(q).av(0,r.B))}, +eL(a,b){var s=this.B +b.iT(0,s,s)}, +aE(a,b){var s,r,q,p=this,o=p.k3$ +if(o==null){p.ch.sb2(0,null) +return}s=p.B +if(s===1){a.em(o,b) +p.ch.sb2(0,null) +return}r=p.cx +r===$&&A.b() +q=p.ch +q.sb2(0,a.Gb(r,b,A.ug(s,s,1),new A.baU(o),t.zV.a(q.a)))}, +dZ(a,b){var s,r=this.k3$ +if(r==null)return!1 +s=this.B +return a.Tz(new A.baT(r),b,A.ug(s,s,1))}} +A.baU.prototype={ +$2(a,b){return a.em(this.a,b)}, +$S:16} +A.baT.prototype={ +$2(a,b){return this.a.dm(a,b)}, +$S:17} +A.aqa.prototype={ +aw(a){var s +this.eS(a) +s=this.k3$ +if(s!=null)s.aw(a)}, +ap(a){var s +this.eT(0) +s=this.k3$ +if(s!=null)s.ap(0)}} +A.Q3.prototype={ +a8(){return new A.ap7(B.m)}} +A.ap7.prototype={ +ca(){var s,r=this +r.e8() +r.a.toString +s=r.c +s.toString +r.d=A.oV(s,t.X) +r.a.toString}, +b1(a){this.bh(a) +this.a.toString}, +m(){this.a.toString +this.b0()}, +A(a){return this.a.c}} +A.aDn.prototype={ +$1(a){return a?B.a5e:B.a5d}, +$S:600} +A.qx.prototype={ +J(){return"HardwareButton."+this.b}} +A.avh.prototype={ +amv(a){var s=A.oP(null,t.ax) +this.c!==$&&A.ck() +this.c=new A.b0J(this.b,a.f,A.I(t.N,t.UL),s)}, +C1(a,b){return this.afN(a,b)}, +afN(a,b){var s=0,r=A.y(t.hS),q,p=this,o +var $async$C1=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:s=3 +return A.t(p.b.yc(0,a,!1),$async$C1) +case 3:o=d +if(o!=null&&o.d.a>Date.now()){q=o.b +s=1 +break}s=4 +return A.t(p.Am(a,b,a),$async$C1) +case 4:q=d.b +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$C1,r)}, +zi(a,b,c,d,e){return this.azQ(a,b,c,d,!0)}, +azQ(a,a0,a1,a2,a3){var s=0,r=A.y(t.H),q=1,p,o=[],n=this,m,l,k,j,i,h,g,f,e,d,c,b +var $async$zi=A.u(function(a4,a5){if(a4===1){p=a5 +s=q}while(true)switch(s){case 0:a1=a1 +a3=a3 +if(a1==null)a1=a0 +m=null +q=3 +s=6 +return A.t(n.b.yc(0,a1,!1),$async$zi) +case 6:m=a5 +if(m!=null){a.F(0,m) +a3=!1}q=1 +s=5 +break +case 3:q=2 +c=p +l=A.ak(c) +$.arG() +A.i(l) +s=5 +break +case 2:s=1 +break +case 5:s=m==null||m.d.a") +case 16:s=18 +return A.t(h.v(),$async$zi) +case 18:if(!a5){s=17 +break}k=h.gG(h) +if(k instanceof A.lc&&a3){f=k +e=a.b +if(e>=4)A.r(a.qm()) +if((e&1)!==0)a.oN(f) +else if((e&3)===0){e=a.z_() +f=new A.j0(f,g) +d=e.c +if(d==null)e.b=e.c=f +else{d.snt(0,f) +e.c=f}}}if(k instanceof A.oD){f=k +e=a.b +if(e>=4)A.r(a.qm()) +if((e&1)!==0)a.oN(f) +else if((e&3)===0){e=a.z_() +f=new A.j0(f,g) +d=e.c +if(d==null)e.b=e.c=f +else{d.snt(0,f) +e.c=f}}}s=16 +break +case 17:o.push(15) +s=14 +break +case 13:o=[10] +case 14:q=10 +s=19 +return A.t(h.aI(0),$async$zi) +case 19:s=o.pop() +break +case 15:q=1 +s=12 +break +case 10:q=9 +b=p +j=A.ak(b) +$.arG() +A.i(j) +if(m==null&&(a.b&1)!==0)a.pF(j) +s=12 +break +case 9:s=1 +break +case 12:case 8:a.ah(0) +return A.w(null,r) +case 1:return A.v(p,r)}}) +return A.x($async$zi,r)}, +Am(a,b,c){return this.aIq(a,b,c)}, +aIq(a,b,c){var s=0,r=A.y(t.IP),q,p=this,o,n +var $async$Am=A.u(function(d,e){if(d===1)return A.v(e,r) +while(true)switch(s){case 0:o=p.c +o===$&&A.b() +n=t.IP +s=3 +return A.t(o.a9J(a,b,!1,c).F5(0,new A.avi()),$async$Am) +case 3:q=n.a(e) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Am,r)}} +A.avi.prototype={ +$1(a){return a instanceof A.oD}, +$S:601} +A.wQ.prototype={} +A.afW.prototype={} +A.aGU.prototype={} +A.avm.prototype={ +yc(a,b,c){return this.afj(0,b,!1)}, +afj(a,b,c){var s=0,r=A.y(t.TK),q,p=this,o,n +var $async$yc=A.u(function(d,e){if(d===1)return A.v(e,r) +while(true)switch(s){case 0:s=3 +return A.t(p.Go(b,!1),$async$yc) +case 3:n=e +if(n==null){q=null +s=1 +break}s=4 +return A.t(p.d.tn(0,n.d),$async$yc) +case 4:o=e +$.arG() +q=new A.oD(o,B.a2Z,n.e) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$yc,r)}, +Ng(a){return this.aOj(a)}, +aOj(a){var s=0,r=A.y(t.H),q=this +var $async$Ng=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:q.c.n(0,a.c,a) +s=2 +return A.t(q.DG(a),$async$Ng) +case 2:return A.w(null,r)}}) +return A.x($async$Ng,r)}, +Go(a,b){return this.aPf(a,!1)}, +aPe(a){return this.Go(a,!1)}, +aPf(a,b){var s=0,r=A.y(t.Cq),q,p=this,o,n +var $async$Go=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:o=p.c +n=o.aq(0,a) +s=n?3:4 +break +case 3:s=5 +return A.t(p.CU(o.i(0,a)),$async$Go) +case 5:if(d){q=o.i(0,a) +s=1 +break}case 4:o=p.b +if(!o.aq(0,a)){n=new A.a7($.ac,t.LY) +p.z1(a).be(new A.avq(p,a,new A.aD(n,t.It)),t.P) +o.n(0,a,n)}q=o.i(0,a) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Go,r)}, +CU(a){return this.arh(a)}, +arh(a){var s=0,r=A.y(t.y),q,p=this +var $async$CU=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:if(a==null){q=!1 +s=1 +break}s=3 +return A.t(p.d.tn(0,a.d),$async$CU) +case 3:q=c.EQ() +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$CU,r)}, +z1(a){return this.arT(a)}, +arT(a){var s=0,r=A.y(t.Cq),q,p=this,o +var $async$z1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=3 +return A.t(p.f,$async$z1) +case 3:s=4 +return A.t(A.cR(null,t.Cq),$async$z1) +case 4:o=c +s=5 +return A.t(p.CU(o),$async$z1) +case 5:if(c){o.toString +p.DG(o)}p.aB7() +q=o +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$z1,r)}, +aB7(){if(this.w!=null)return +this.w=A.d0(B.a1V,new A.avo(this))}, +DG(a){return this.aE2(a)}, +aE2(a){var s=0,r=A.y(t.z),q,p=this +var $async$DG=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=3 +return A.t(p.f,$async$DG) +case 3:q=A.cR(null,t.z) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$DG,r)}, +wd(){var s=0,r=A.y(t.H),q=this,p,o,n,m,l +var $async$wd=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:m=A.a([],t.t) +s=2 +return A.t(q.f,$async$wd) +case 2:p=t.Cs +o=t.a6 +l=J +s=3 +return A.t(A.cR(A.a([],p),o),$async$wd) +case 3:n=l.al(b) +case 4:if(!n.v()){s=5 +break}q.uC(n.gG(n),m) +s=4 +break +case 5:l=J +s=6 +return A.t(A.cR(A.a([],p),o),$async$wd) +case 6:p=l.al(b) +case 7:if(!p.v()){s=8 +break}q.uC(p.gG(p),m) +s=7 +break +case 8:s=9 +return A.t(A.cR(m.length,t.S),$async$wd) +case 9:return A.w(null,r)}}) +return A.x($async$wd,r)}, +Aq(){var s=0,r=A.y(t.H),q=this,p,o,n +var $async$Aq=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:s=2 +return A.t(q.f,$async$Aq) +case 2:p=A.a([],t.t) +n=J +s=3 +return A.t(A.cR(A.a([],t.Cs),t.a6),$async$Aq) +case 3:o=n.al(b) +case 4:if(!o.v()){s=5 +break}q.uC(o.gG(o),p) +s=4 +break +case 5:s=6 +return A.t(A.cR(p.length,t.S),$async$Aq) +case 6:return A.w(null,r)}}) +return A.x($async$Aq,r)}, +uC(a,b){return this.aAe(a,b)}, +aAe(a,b){var s=0,r=A.y(t.H),q,p=this,o,n,m +var $async$uC=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:m=a.a +if(B.b.p(b,m)){s=1 +break}m.toString +b.push(m) +m=p.c +o=a.c +if(m.aq(0,o))m.E(0,o) +m=p.b +if(m.aq(0,o))m.E(0,o) +s=3 +return A.t(p.d.tn(0,a.d),$async$uC) +case 3:n=d +s=6 +return A.t(n.EQ(),$async$uC) +case 6:s=d?4:5 +break +case 4:s=7 +return A.t(n.a9r(0),$async$uC) +case 7:case 5:case 1:return A.w(q,r)}}) +return A.x($async$uC,r)}} +A.avp.prototype={ +$1(a){return this.a.a}, +$S:602} +A.avq.prototype={ +$1(a){return this.aex(a)}, +aex(a){var s=0,r=A.y(t.P),q=this,p,o,n +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:p=q.a +o=q.b +n=p.c +if(a==null)n.E(0,o) +else n.n(0,o,a) +q.c.cU(0,a) +p.b.E(0,o) +return A.w(null,r)}}) +return A.x($async$$1,r)}, +$S:603} +A.avo.prototype={ +$0(){var s=this.a +s.w=null +s.wd()}, +$S:0} +A.axw.prototype={} +A.avg.prototype={} +A.lc.prototype={ +gre(){var s=this.b +if(s==null||this.c>s)return null +s.toString +return this.c/s}} +A.a1K.prototype={ +J(){return"FileSource."+this.b}} +A.oD.prototype={} +A.lf.prototype={} +A.a6m.prototype={ +r6(a){var s=0,r=A.y(t.y),q +var $async$r6=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:q=!0 +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$r6,r)}, +$iavf:1} +A.lV.prototype={ +Un(a,b,c,d,e,f){var s=this,r=e==null?s.b:e,q=d==null?s.d:d,p=f==null?s.e:f,o=a==null?s.f:a,n=c==null?s.r:c +return A.bqg(r,o,s.a,s.c,n,q,s.w,p)}, +aHf(a){return this.Un(null,null,null,null,a,null)}, +aHy(a,b,c){return this.Un(a,null,null,b,null,c)}, +aH7(a){return this.Un(null,null,a,null,null,null)}, +gt(a){return this.r}} +A.aKf.prototype={ +tn(a,b){return this.aHI(0,b)}, +aHI(a,b){var s=0,r=A.y(t.hS),q,p=this,o,n +var $async$tn=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:s=3 +return A.t(p.a,$async$tn) +case 3:o=d +n=o.a +q=new A.M4(n,n.Ym(n.c.Mk(0,o.b,b))) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$tn,r)}} +A.aCP.prototype={} +A.aGJ.prototype={ +H0(a,b,c){return this.af3(0,b,c)}, +af3(a,b,c){var s=0,r=A.y(t.nZ),q,p=this,o,n +var $async$H0=A.u(function(d,e){if(d===1)return A.v(e,r) +while(true)switch(s){case 0:n=A.btM("GET",A.dR(b,0,null)) +n.r.I(0,c) +s=3 +return A.t(p.b.kc(0,n),$async$H0) +case 3:o=e +A.byh() +q=new A.a2M(A.bnS(),o) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$H0,r)}} +A.a2M.prototype={ +gZc(a){return this.b.b}, +gaQq(){var s,r,q,p,o,n,m=this.b.e.i(0,"cache-control") +if(m!=null){s=m.split(",") +for(r=s.length,q=B.vc,p=0;p0)q=new A.bj(1e6*n)}}}else q=B.vc +return this.a.F(0,q)}, +$ibrr:1} +A.a7u.prototype={} +A.b0J.prototype={ +a9J(a,b,c,d){var s,r,q,p=this.c,o=p.i(0,d) +if(o==null||!1){s=t.cL +r=new A.lI(null,null,t.jx) +q=new A.ap8(B.r6,t.Bi) +o=new A.IB(q,r,A.bGK(A.bFj(q,r,!1,s),!0,s),t.UL) +p.n(0,d,o) +this.wi(a,d,b)}return new A.vo(o,A.l(o).h("vo<1>"))}, +Am(a,b,c){return this.a9J(a,b,!1,c)}, +wi(a,b,c){return this.aqx(a,b,c)}, +aqx(a,a0,a1){var s=0,r=A.y(t.H),q,p=2,o,n=[],m=this,l,k,j,i,h,g,f,e,d,c,b +var $async$wi=A.u(function(a2,a3){if(a2===1){o=a3 +s=p}while(true)switch(s){case 0:c=m.e +if(c>=10){m.d.iV(0,new A.a7u(a,a0,a1)) +s=1 +break}$.arG() +m.e=c+1 +c=m.c +h=c.i(0,a0) +h.toString +l=h +p=4 +h=new A.o8(A.fu(m.zw(a,a0,a1),"stream",t.K),t.r2) +p=7 +case 10:s=12 +return A.t(h.v(),$async$wi) +case 12:if(!a3){s=11 +break}k=h.gG(h) +g=l +f=k +if(g.c)A.r(A.R(u.b0)) +e=g.b +if((e.c&4)===0){g=g.e +g.b=f +g.a=!0}if(!e.gwp())A.r(e.wb()) +e.oN(f) +s=10 +break +case 11:n.push(9) +s=8 +break +case 7:n=[4] +case 8:p=4 +s=13 +return A.t(h.aI(0),$async$wi) +case 13:s=n.pop() +break +case 9:n.push(6) +s=5 +break +case 4:p=3 +b=o +j=A.ak(b) +i=A.aJ(b) +l.dP(j,i) +n.push(6) +s=5 +break +case 3:n=[2] +case 5:p=2;--m.e +s=14 +return A.t(J.I1(l),$async$wi) +case 14:c.E(0,a0) +m.aoN() +s=n.pop() +break +case 6:case 1:return A.w(q,r) +case 2:return A.v(o,r)}}) +return A.x($async$wi,r)}, +aoN(){var s,r=this.d +if(r.b===r.c)return +s=r.Bn() +this.wi(s.a,s.b,s.c)}, +zw(a,b,c){return this.aE6(a,b,c)}, +aE6(a,b,c){var $async$zw=A.u(function(d,e){switch(d){case 2:n=q +s=n.pop() +break +case 1:o=e +s=p}while(true)switch(s){case 0:s=3 +return A.hY(m.a.aPe(b),$async$zw,r) +case 3:j=e +if(j==null){A.byh() +l=A.bnS() +j=A.bqg(a,null,null,b,null,B.r2.aee()+".file",null,l)}else j=j.aHf(a) +l=t.N +k=A.I(l,l) +if(c!=null)k.I(0,c) +i=j +s=5 +return A.hY(m.b.H0(0,j.b,k),$async$zw,r) +case 5:s=4 +q=[1] +return A.hY(A.bPa(m.uA(i,e)),$async$zw,r) +case 4:case 1:return A.hY(null,0,r) +case 2:return A.hY(o,1,r)}}) +var s=0,r=A.bn1($async$zw,t.cL),q,p=2,o,n=[],m=this,l,k,j,i +return A.bn7(r)}, +uA(a,b){return this.awQ(a,b)}, +awQ(a6,a7){var $async$uA=A.u(function(a8,a9){switch(a8){case 2:n=q +s=n.pop() +break +case 1:o=a9 +s=p}while(true)switch(s){case 0:a0={} +a1=a7.b +a2=a1.b +a3=B.b.p(B.yw,a2) +a4=B.b.p(B.yI,a2) +if(!a3&&!a4){a7.gZc(a7) +throw A.c(new A.a2J("Invalid statusCode: "+a7.gZc(a7),A.dR(a6.b,0,null)))}j=a1.e +i=j.i(0,"content-type") +if(i!=null){h=new A.b3P() +h.amV("",B.akh) +h.az3(i,";",null,!1) +g=h.a +f=B.c.eZ(g,"/") +if(f===-1||f===g.length-1)g=h.d=B.c.dn(g).toLowerCase() +else{e=h.d=B.c.dn(B.c.S(g,0,f)).toLowerCase() +h.e=B.c.dn(B.c.cm(g,f+1)).toLowerCase() +g=e}d=B.ak1.i(0,g+"/"+h.e) +if(d==null)d="."+h.e}else d="" +c=a6.d +if(!B.b.p(B.yI,a2)){if(!B.c.hT(c,d))m.ww(c) +c=B.r2.aee()+d}g=a7.gaQq() +b=a0.a=a6.aHy(j.i(0,"etag"),c,g) +s=B.b.p(B.yw,a2)?3:5 +break +case 3:l=0 +a=A.lE(null,null,null,!1,t.S) +m.zm(a,b,a7) +a2=new A.o8(A.fu(new A.d6(a,A.l(a).h("d6<1>")),"stream",t.K),t.Hb) +p=6 +a1=a1.d +case 9:s=11 +return A.hY(a2.v(),$async$uA,r) +case 11:if(!a9){s=10 +break}k=a2.gG(a2) +l=k +s=12 +q=[1,7] +return A.hY(A.bmn(new A.lc(a1,k)),$async$uA,r) +case 12:s=9 +break +case 10:n.push(8) +s=7 +break +case 6:n=[2] +case 7:p=2 +s=13 +return A.hY(a2.aI(0),$async$uA,r) +case 13:s=n.pop() +break +case 8:a1=a0.a=a0.a.aH7(l) +s=4 +break +case 5:a1=b +case 4:a2=m.a +a2.Ng(a1).be(new A.b0K(a0,m,a6),t.P) +a5=A +s=15 +return A.hY(a2.d.tn(0,a0.a.d),$async$uA,r) +case 15:s=14 +q=[1] +return A.hY(A.bmn(new a5.oD(a9,B.a3_,a0.a.e)),$async$uA,r) +case 14:case 1:return A.hY(null,0,r) +case 2:return A.hY(o,1,r)}}) +var s=0,r=A.bn1($async$uA,t.cL),q,p=2,o,n=[],m=this,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1,a2,a3,a4,a5 +return A.bn7(r)}, +zm(a,b,c){return this.aB_(a,b,c)}, +aB_(a,b,c){var s=0,r=A.y(t.H),q=1,p,o=this,n,m,l,k,j,i,h,g +var $async$zm=A.u(function(d,e){if(d===1){p=e +s=q}while(true)switch(s){case 0:i={} +s=2 +return A.t(o.a.d.tn(0,b.d),$async$zm) +case 2:h=e +q=4 +i.a=0 +k=h +k.a.d.$2(k.b,B.a33) +n=A.bOS(k,B.ni,B.a_) +k=c.b.w +s=7 +return A.t(new A.o5(new A.b0L(i,a),k,A.l(k).h("o5>")).aO4(n),$async$zm) +case 7:q=1 +s=6 +break +case 4:q=3 +g=p +m=A.ak(g) +l=A.aJ(g) +a.dP(m,l) +s=6 +break +case 3:s=1 +break +case 6:s=8 +return A.t(a.ah(0),$async$zm) +case 8:return A.w(null,r) +case 1:return A.v(p,r)}}) +return A.x($async$zm,r)}, +ww(a){return this.aAj(a)}, +aAj(a){var s=0,r=A.y(t.H),q=this,p +var $async$ww=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=2 +return A.t(q.a.d.tn(0,a),$async$ww) +case 2:p=c +s=5 +return A.t(p.EQ(),$async$ww) +case 5:s=c?3:4 +break +case 3:s=6 +return A.t(p.a9r(0),$async$ww) +case 6:case 4:return A.w(null,r)}}) +return A.x($async$ww,r)}} +A.b0K.prototype={ +$1(a){var s=this.c.d +if(this.a.a.d!==s)this.b.ww(s)}, +$S:19} +A.b0L.prototype={ +$1(a){var s=this.a,r=s.a+J.b3(a) +s.a=r +this.b.F(0,r) +return a}, +$S:604} +A.a2J.prototype={} +A.fW.prototype={} +A.ae9.prototype={ +na(a,b){return new A.cC(A.bWc(b),t.kL)}, +xB(a){return B.b.p(A.a(["ar","de","en","es","fr","ja","ko","pt","uk","zh"],t.s),a.ge0(a))}, +w0(a){return!1}} +A.Xz.prototype={ +gl2(){return"\u062d\u0648\u0644"}, +gki(){return"\u0625\u0636\u0627\u0641\u0629 \u0641\u0626\u0629"}, +gmg(){return"\u0625\u0636\u0627\u0641\u0629 \u0625\u0644\u0649 \u0627\u0644\u0645\u0643\u062a\u0628\u0629"}, +gmi(){return"\u0643\u0644 \u0641\u0631\u0642 \u0627\u0644\u062a\u0631\u062c\u0645\u0629"}, +gl7(){return"\u0644\u063a\u0629 \u0627\u0644\u062a\u0637\u0628\u064a\u0642"}, +gl8(){return"\u0645\u0638\u0647\u0631 \u0627\u0644\u062a\u0637\u0628\u064a\u0642"}, +gl9(){return"\u062a\u0627\u0634\u064a\u062f\u064a\u0633\u0643 \u0633\u0648\u0631\u0627\u064a\u0648\u0645\u064a"}, +gla(a){return"\u0627\u0644\u0645\u0638\u0647\u0631"}, +glb(){return"\u0646\u0648\u0639 \u0627\u0644\u0645\u0635\u0627\u062f\u0642\u0629"}, +gmk(){return"\u0645\u0635\u0627\u062f\u0642\u0629 \u0623\u0633\u0627\u0633\u064a\u0629"}, +gml(){return"\u0628\u0644\u0627"}, +gkk(){return"\u0627\u0644\u0646\u0633\u062e \u0627\u0644\u0627\u062d\u062a\u064a\u0627\u0637\u064a \u0648 \u0627\u0644\u0627\u0633\u062a\u0639\u0627\u062f\u0629"}, +gmm(){return"\u0627\u0644\u0634\u0627\u0631\u0627\u062a"}, +gfU(){return"\u0644\u062f\u064a\u0647\u0627 \u0625\u0634\u0627\u0631\u0627\u062a \u0645\u0631\u062c\u0639\u064a\u0629"}, +gjL(){return"\u062a\u0635\u0641\u062d"}, +gj5(){return"\u062a\u0627\u0631\u064a\u062e \u0628\u0646\u0627\u0621 \u0627\u0644\u062e\u0627\u062f\u0645"}, +gmo(){return"\u062a\u0645 \u062a\u0646\u0638\u064a\u0641 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0645\u0624\u0642\u062a\u0629"}, +gdJ(a){return"\u0625\u0644\u063a\u0627\u0621"}, +gld(){return"\u0627\u0644\u0641\u0626\u0627\u062a"}, +gmq(){return"\u062a\u062d\u062f\u064a\u062b \u0627\u0644\u0641\u0626\u0629"}, +gfW(a){return"\u0627\u0644\u0646\u0648\u0639"}, +ms(a){return"\u0627\u0644\u0641\u0635\u0644 "+A.i(a)}, +gmt(){return"\u062d\u0633\u0628 \u0627\u0644\u0645\u0648\u0642\u0639"}, +gmu(){return"\u062d\u0633\u0628 \u0627\u0644\u0645\u0635\u062f\u0631"}, +gmv(){return"\u062d\u0633\u0628 \u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0625\u0636\u0627\u0641\u0629"}, +gmw(){return"\u062a\u062d\u0642\u0642 \u0645\u0646 \u0648\u062c\u0648\u062f \u062a\u062d\u062f\u064a\u062b\u0627\u062a \u0627\u0644\u062e\u0627\u062f\u0645"}, +gmx(){return"\u062a\u062d\u0642\u0642 \u0645\u0646 \u0648\u062c\u0648\u062f \u062a\u062d\u062f\u064a\u062b\u0627\u062a"}, +gmy(){return"\u062a\u0646\u0638\u064a\u0641 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0645\u0624\u0642\u062a\u0629"}, +gmz(a){return"\u0627\u0644\u0648\u0643\u064a\u0644"}, +gmA(){return"\u0625\u0635\u062f\u0627\u0631 \u0627\u0644\u0648\u0643\u064a\u0644"}, +gdV(a){return"\u0625\u063a\u0644\u0627\u0642"}, +gh9(a){return"\u0645\u0643\u062a\u0645\u0644\u0629"}, +mD(a){return"'"+a+"'\u202e \u062a\u0645 \u0646\u0633\u062e!"}, +gmF(){return"\u0627\u0644\u0646\u0633\u062e \u0627\u0644\u0627\u062d\u062a\u064a\u0627\u0637\u064a \u0644\u0645\u0643\u062a\u0628\u0629 Tachidesk"}, +gmG(){return"\u0625\u0646\u0634\u0627\u0621 \u0646\u0633\u062e\u0629 \u0627\u062d\u062a\u064a\u0627\u0637\u064a\u0629"}, +gle(a){return"\u0627\u0644\u0634\u0647\u0627\u062f\u0627\u062a"}, +mH(a){return"\u0645\u0646\u0630 "+a+" \u0623\u064a\u0627\u0645"}, +gjO(){return"\u0627\u0644\u0641\u0626\u0629 \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0629 \u0639\u0646\u062f \u0625\u0636\u0627\u0641\u0629 \u0645\u0627\u0646\u062c\u0627 \u062c\u062f\u064a\u062f\u0629 \u0625\u0644\u0649 \u0627\u0644\u0645\u0643\u062a\u0628\u0629"}, +gkM(a){return"\u062d\u0630\u0641"}, +gmI(){return"\u0633\u064a\u0624\u062f\u064a \u0625\u0644\u0649 \u062f\u0645\u062c \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0627\u0646\u062c\u0627 \u0641\u064a \u0647\u0630\u0647 \u0627\u0644\u0641\u0626\u0629 \u0625\u0644\u0649 \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0629!"}, +gmJ(){return"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f\u061f"}, +gj7(){return"Discord"}, +gmL(a){return"\u0627\u0644\u0639\u0631\u0636"}, +glf(){return"\u0648\u0636\u0639 \u0627\u0644\u0639\u0631\u0636"}, +gmM(){return"\u0642\u0627\u0626\u0645\u0629 \u0648\u0635\u0641\u064a\u0629"}, +gmN(){return"\u0634\u0628\u0643\u0629 \u0645\u062f\u0645\u062c\u0629"}, +gmO(){return"\u0642\u0627\u0626\u0645\u0629"}, +gfJ(a){return"\u0645\u0646\u0632\u0644\u0629"}, +glg(){return"\u0627\u0644\u062a\u0646\u0632\u064a\u0644\u0627\u062a"}, +gja(){return"\u062a\u0639\u062f\u064a\u0644 \u0627\u0644\u0641\u0626\u0629"}, +gmP(){return"\u0644\u0627 \u064a\u0645\u0643\u0646 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0627\u0633\u0645 \u0627\u0644\u0641\u0626\u0629 \u0641\u0627\u0631\u063a\u064b\u0627"}, +glh(){return"\u062a\u0639\u0630\u0631 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0627\u0644\u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u0645\u062d\u062f\u062f\u0629"}, +gli(){return"\u0644\u0645 \u064a\u062a\u0645 \u0627\u062e\u062a\u064a\u0627\u0631 \u0627\u0644\u0645\u0644\u0641!"}, +mQ(a){return"\u0627\u0644\u0631\u062c\u0627\u0621 \u062a\u062d\u062f\u064a\u062f \u0645\u0644\u0641 \u0628\u0627\u0644\u0627\u0645\u062a\u062f\u0627\u062f "+a}, +mR(a){return'\u0641\u0634\u0644 \u0641\u064a \u0627\u0644\u0641\u062a\u062d!\n\u0646\u0633\u062e "'+a+'" \u0627\u0644\u0649 \u0627\u0644\u062d\u0627\u0641\u0638\u0629'}, +gmS(){return"\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u0641\u0627\u0631\u063a\u0629"}, +gjQ(){return"\u0647\u0646\u0627\u0643 \u062e\u0637\u0623 \u0645\u0627!"}, +gmT(){return"\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0641\u0627\u0631\u063a"}, +gmU(){return"\u062a\u0645 \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0625\u0636\u0627\u0641\u0629!"}, +gmV(){return"\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0625\u0636\u0627\u0641\u0627\u062a \u0641\u0627\u0631\u063a\u0629"}, +gmW(a){return"\u0627\u0644\u0625\u0636\u0627\u0641\u0627\u062a"}, +ghA(){return"\u0641\u0634\u0644"}, +ghg(a){return"\u0641\u0631\u0632"}, +gn_(a){return"\u0627\u0644\u0646\u0647\u0627\u064a\u0629"}, +gkN(){return"\u0639\u0627\u0645"}, +gkP(){return"GitHub"}, +glQ(){return"\u0627\u0644\u0628\u062d\u062b \u0627\u0644\u0639\u0627\u0645"}, +glR(){return"\u062a\u062d\u062f\u064a\u062b \u0627\u0644\u0643\u0644"}, +gn1(){return"\u0645\u0633\u0627\u0639\u062f\u0629"}, +gfL(){return"\u0641\u064a \u0627\u0644\u0645\u0643\u062a\u0628\u0629"}, +gn2(){return"\u062a\u062d\u0645\u064a\u0644"}, +gn3(a){return"\u062c\u0627\u0631 \u0627\u0644\u062a\u062d\u0645\u064a\u0644"}, +gn4(){return"\u062c\u0627\u0631\u064a \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0627\u0636\u0627\u0641\u0629"}, +gqX(){return"True Black"}, +glq(a){return"\u0627\u0644\u0644\u063a\u0627\u062a"}, +gn9(){return"\u0627\u0644\u0623\u062e\u064a\u0631"}, +ghE(){return"\u0627\u0644\u0645\u0643\u062a\u0628\u0629"}, +ges(){return"\u0645\u0627\u0646\u062c\u0627"}, +gnb(){return"\u062d\u062c\u0645 \u0634\u0628\u0643\u0629 \u0627\u0644\u0645\u0627\u0646\u062c\u0627"}, +gnc(){return"\u0645\u0635\u0627\u062f\u0631 \u0627\u0644\u0645\u0627\u0646\u062c\u0627 \u0627\u0644\u0645\u0641\u0642\u0648\u062f\u0629"}, +gnd(){return"\u0623\u0628\u062c\u062f\u064a"}, +gne(){return"\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0625\u0636\u0627\u0641\u0629"}, +gnf(){return"\u0622\u062e\u0631 \u0642\u0631\u0627\u0621\u0629"}, +gng(){return"\u063a\u064a\u0631 \u0645\u0642\u0631\u0648\u0621"}, +gnh(){return"\u0623\u0644\u063a\u064a\u062a"}, +gni(){return"\u0645\u0643\u062a\u0645\u0644\u0629"}, +gnj(){return"\u0645\u0631\u062e\u0635\u0629"}, +gnk(){return"\u0641\u064a \u0641\u062a\u0631\u0629 \u062a\u0648\u0642\u0641"}, +gnl(){return"\u0645\u0633\u062a\u0645\u0631\u0629"}, +gnm(){return"\u0627\u0646\u062a\u0647\u0649 \u0627\u0644\u0646\u0634\u0631"}, +gnn(){return"\u063a\u064a\u0631 \u0645\u0639\u0631\u0648\u0641"}, +gnp(){return"\u0625\u0636\u0627\u0641\u0627\u062a \u0645\u0641\u0642\u0648\u062f\u0629"}, +ghH(){return"\u0627\u0644\u062a\u062a\u0628\u0639\u0627\u062a \u0645\u0641\u0642\u0648\u062f\u0629"}, +glw(){return"\u0623\u0643\u062b\u0631"}, +gnq(){return"\u0627\u0644\u0627\u0646\u062a\u0642\u0627\u0644 \u0625\u0644\u0649 \u0623\u0633\u0641\u0644"}, +gnr(){return"\u0627\u0644\u0627\u0646\u062a\u0642\u0627\u0644 \u0625\u0644\u0649 \u0627\u0644\u0623\u0639\u0644\u0649"}, +lx(a,b){return b+": "+a}, +gns(){return"\u062a\u062d\u062f\u064a\u062b \u062c\u062f\u064a\u062f \u0645\u062a\u0627\u062d"}, +pf(a){return"Next: "+a}, +gkA(){return"\u0644\u064a\u0633 \u0644\u062f\u064a\u0643 \u0623\u064a \u0641\u0626\u0627\u062a. \n(\u0646\u0635\u064a\u062d\u0629: \u0627\u0636\u063a\u0637 \u0639\u0644\u0649 \u0632\u0631 \u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0632\u0627\u0626\u062f \u0644\u0625\u0646\u0634\u0627\u0621 \u0641\u0626\u0629 \u0644\u062a\u0646\u0638\u064a\u0645 \u0645\u0643\u062a\u0628\u062a\u0643)"}, +gnu(){return"\u0644\u064a\u0633 \u0644\u062f\u064a\u0643 \u0623\u064a \u0641\u0626\u0627\u062a.\n\u0642\u0645 \u0628\u0625\u0646\u0634\u0627\u0621 \u0641\u0626\u0629 \u0641\u064a \u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0644\u062a\u0646\u0638\u064a\u0645 \u0645\u0643\u062a\u0628\u062a\u0643"}, +gnv(){return"\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u0627\u0646\u062c\u0627 \u0641\u064a \u0647\u0630\u0647 \u0627\u0644\u0641\u0626\u0629. \n(\u0646\u0635\u064a\u062d\u0629: \u062a\u062d\u0642\u0642 \u0645\u0646 \u0627\u0644\u0628\u062d\u062b \u0648\u0627\u0644\u0641\u0644\u0627\u062a\u0631!)"}, +glz(){return"\u0644\u0627 \u064a\u0648\u062c\u062f \u0641\u0635\u0648\u0644"}, +gnw(){return"\u0644\u0627 \u064a\u0648\u062c\u062f \u062a\u0646\u0632\u064a\u0644\u0627\u062a"}, +gkB(){return"\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u0627\u0646\u063a\u0627"}, +lA(a){return""+a+" \u0641\u0635\u0644"}, +gnx(){return"\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0646\u062a\u0627\u0626\u062c"}, +glB(){return"\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u0635\u0627\u062f\u0631"}, +glC(){return"\u0623\u0646\u062a \u062a\u0633\u062a\u062e\u062f\u0645 \u0623\u062d\u062f\u062b \u0625\u0635\u062f\u0627\u0631"}, +gny(){return"\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u062a\u062d\u062f\u064a\u062b\u0627\u062a"}, +gnz(){return"\u0625\u0638\u0647\u0627\u0631 \u0625\u0636\u0627\u0641\u0627\u062a \u0648\u0645\u0635\u0627\u062f\u0631 NSFW"}, +gnA(){return"18+"}, +gnB(){return"\u0647\u0630\u0627 \u0644\u0627 \u064a\u0645\u0646\u0639 \u0627\u0644\u0625\u0636\u0627\u0641\u0627\u062a \u063a\u064a\u0631 \u0627\u0644\u0631\u0633\u0645\u064a\u0629 \u0623\u0648 \u0627\u0644\u062a\u064a \u064a\u062d\u062a\u0645\u0644 \u0623\u0646 \u064a\u062a\u0645 \u0648\u0636\u0639 \u0639\u0644\u0627\u0645\u0629 \u0639\u0644\u064a\u0647\u0627 \u0628\u0634\u0643\u0644 \u063a\u064a\u0631 \u0635\u062d\u064a\u062d \u0645\u0646 \u0627\u0644\u0638\u0647\u0648\u0631 \u0639\u0644\u0649 \u0645\u062d\u062a\u0648\u0649 NSFW (18+) \u062f\u0627\u062e\u0644 \u0627\u0644\u062a\u0637\u0628\u064a\u0642"}, +lD(a){return"\u0627\u0644\u0645\u062d\u062f\u062f\u0629 "+a}, +gjW(){return"\u0642\u062f\u064a\u0645\u0629"}, +nD(a,b){return"\u0627\u0644\u0635\u0641\u062d\u0629: "+b}, +gnF(a){return"\u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631"}, +gi0(a){return"\u0625\u064a\u0642\u0627\u0641"}, +gi1(a){return"\u0641\u064a \u0627\u0644\u0627\u0646\u062a\u0638\u0627\u0631"}, +pi(a){return"Previous: "+a}, +grj(){return"Quick Search"}, +gnJ(){return"\u0627\u0630\u0647\u0628 \u0625\u0644\u0649 \u0627\u0644\u0641\u0626\u0629 'C'"}, +gnK(){return"\u0627\u0630\u0647\u0628 \u0625\u0644\u0649 \u0627\u0644\u0645\u0627\u0646\u062c\u0627 'M' \u0641\u064a \u0627\u0644\u0641\u0626\u0629 'C'"}, +gnL(){return"\u0627\u0646\u062a\u0642\u0644 \u0625\u0644\u0649 \u0627\u0633\u0645 \u0627\u0644\u0641\u0635\u0644 'CN' \u0645\u0646 \u0627\u0644\u0645\u0627\u0646\u062c\u0627 'M' \u0641\u064a \u0627\u0644\u0641\u0626\u0629 'C'"}, +gnM(){return"\u0644\u0644\u0628\u062d\u062b \u0639\u0646 \u0627\u0633\u062a\u0639\u0644\u0627\u0645 (\u0627\u0644\u0646\u062a\u0627\u0626\u062c \u0645\u0628\u0646\u064a\u0629 \u0639\u0644\u0649 \u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0634\u0627\u0634\u0629)"}, +gpj(){return"Tip: Enter '?' to see all commands"}, +gnN(){return"\u0627\u0630\u0647\u0628 \u0625\u0644\u0649 \u0627\u0644\u0645\u0635\u062f\u0631 'S'"}, +gnO(){return"\u0627\u0628\u062d\u062b \u0639\u0646 \u0627\u0644\u0645\u0627\u0646\u062c\u0627 'M' \u0641\u064a \u0627\u0644\u0645\u0635\u062f\u0631 'S'"}, +glE(){return"\u0627\u0644\u0642\u0627\u0631\u0626"}, +gjm(){return"\u062d\u062c\u0645 \u0627\u0644\u062a\u0643\u0628\u064a\u0631"}, +gi4(){return"\u0648\u0636\u0639 \u0627\u0644\u0642\u0631\u0627\u0621\u0629"}, +gnP(){return"\u0627\u0641\u0642\u064a \u0645\u0633\u062a\u0645\u0631 (\u0645\u0646 \u0627\u0644\u064a\u0633\u0627\u0631 \u0644\u0644\u064a\u0645\u064a\u0646)"}, +gnQ(){return"\u0627\u0641\u0642\u064a \u0645\u0633\u062a\u0645\u0631 (\u0645\u0646 \u0627\u0644\u064a\u0645\u064a\u0646 \u0644\u0644\u064a\u0633\u0627\u0631)"}, +gnR(){return"\u0639\u0645\u0648\u062f\u064a \u0645\u0633\u062a\u0645\u0631"}, +gnS(){return"\u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a"}, +gnT(){return"\u0645\u0646 \u0627\u0644\u064a\u0633\u0627\u0631 \u0644\u0644\u064a\u0645\u064a\u0646"}, +gnU(){return"\u0645\u0646 \u0627\u0644\u064a\u0645\u064a\u0646 \u0644\u0644\u064a\u0633\u0627\u0631"}, +gnV(){return"\u0639\u0645\u0648\u062f\u064a\u0627"}, +gnW(){return"\u0648\u064a\u0628\u062a\u0648\u0646"}, +ghl(){return"\u0646\u0648\u0639 \u0627\u0644\u0627\u0646\u062a\u0642\u0627\u0644"}, +gnX(){return"\u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a"}, +gnY(){return"\u062a\u0639\u0637\u064a\u0644"}, +gnZ(){return"\u0641\u064a \u0627\u0644\u062d\u0627\u0641\u0629"}, +go_(){return"\u0628\u0627\u0644\u0646\u0642\u0631"}, +go0(){return"\u0648\u0636\u0639 \u0627\u0644\u0643\u064a\u0646\u062f\u0644"}, +go1(){return"\u0634\u0643\u0644 \u062d\u0631\u0641 L"}, +go2(){return"\u064a\u0645\u064a\u0646\u0627 \u0648 \u064a\u0633\u0627\u0631\u0627"}, +gpk(){return"Reader initial overlay"}, +gpl(){return u.A}, +gjn(){return"\u0645\u0644\u0627\u0621\u0645\u0629 \u0627\u0644\u0642\u0627\u0631\u0649\u0621"}, +go3(){return"\u0645\u0624\u062b\u0631\u0627\u062a \u0627\u0644\u0627\u0646\u062a\u0642\u0627\u0644 \u0628\u064a\u0646 \u0627\u0644\u0635\u0641\u062d\u0627\u062a"}, +go4(){return"\u0627\u0633\u062d\u0628 \u0644\u0644\u0627\u0646\u062a\u0642\u0627\u0644"}, +go5(){return"\u0627\u0633\u062d\u0628 \u0644\u062a\u063a\u064a\u0631 \u0627\u0644\u0641\u0635\u0644 \u0641\u064a \u0627\u0644\u0642\u0627\u0631\u0626"}, +go6(){return"Reddit"}, +gfi(a){return"\u062a\u062d\u062f\u064a\u062b"}, +gpn(a){return"Reload"}, +gk_(a){return"Remove"}, +gpo(){return"Remove from Library?"}, +go7(a){return"\u0625\u0639\u0627\u062f\u0629 \u0636\u0628\u0637"}, +go8(){return"\u0627\u0633\u062a\u0639\u0627\u062f\u0629 Tachidesk \u0645\u0646 \u0627\u0644\u0646\u0633\u062e\u0629 \u0627\u0644\u0627\u062d\u062a\u064a\u0627\u0637\u064a\u0629"}, +go9(){return"\u0627\u0633\u062a\u0639\u0627\u062f\u0629 \u0627\u0644\u0646\u0633\u062e\u0629 \u0627\u0644\u0627\u062d\u062a\u064a\u0627\u0637\u064a\u0629"}, +goa(){return"\u062a\u0645\u062a \u0627\u0633\u062a\u0639\u0627\u062f\u0629 \u0627\u0644\u0646\u0633\u062e\u0629 \u0627\u0644\u0627\u062d\u062a\u064a\u0627\u0637\u064a\u0629!"}, +gob(){return"\u062c\u0627\u0631\u064a \u0627\u0633\u062a\u0639\u0627\u062f\u0629 \u0627\u0644\u0646\u0633\u062e\u0629 \u0627\u0644\u0627\u062d\u062a\u064a\u0627\u0637\u064a\u0629"}, +gfC(a){return"\u0627\u0633\u062a\u0623\u0646\u0641"}, +gk5(){return"\u0623\u0639\u062f \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629"}, +gi6(){return"\u062c\u0627\u0631\u064a"}, +giv(a){return"\u062d\u0641\u0638"}, +glT(){return"\u0641\u0631\u0642 \u0627\u0644\u062a\u0631\u062c\u0645\u0629"}, +gkQ(a){return"\u0627\u0644\u0628\u062d\u062b"}, +gkR(){return"\u0627\u0644\u0628\u062d\u062b \u0639\u0646 \u0627\u0644\u062a\u062d\u062f\u064a\u062b\u0627\u062a"}, +gow(){return"Select in between"}, +gox(){return"Select next 10"}, +goy(){return"Select Unread"}, +gjz(){return"\u0633\u064a\u0631\u0641\u0631"}, +gkS(){return"\u0645\u0646\u0641\u0630 \u0627\u0644\u0633\u064a\u0631\u0641\u0631"}, +glU(){return"\u0623\u062f\u062e\u0644 \u0645\u0646\u0641\u0630 \u0627\u0644\u0633\u064a\u0631\u0641\u0631"}, +gkT(){return"\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0633\u064a\u0631\u0641\u0631"}, +glV(){return"\u0623\u062f\u062e\u0644 \u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0633\u064a\u0631\u0641\u0631"}, +glW(){return"\u0625\u0635\u062f\u0627\u0631 \u0627\u0644\u0633\u064a\u0631\u0641\u0631"}, +gkU(){return"\u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a"}, +gkW(a){return"\u062a\u0631\u062a\u064a\u0628"}, +gfS(a){return"\u0627\u0644\u0645\u0635\u062f\u0631"}, +glZ(){return"\u0641\u0631\u0632"}, +gm_(){return"\u0627\u0644\u062d\u062f\u064a\u062b\u0629"}, +gm0(){return"\u0627\u0644\u0634\u0627\u0626\u0639\u0629"}, +gm1(){return"\u0627\u0644\u0645\u0635\u0627\u062f\u0631"}, +gc2(a){return"\u0627\u0628\u062f\u0623"}, +goc(){return"\u062f\u0627\u0643\u0646"}, +god(){return"\u0641\u0627\u062a\u062d"}, +goe(){return"\u0627\u0644\u0646\u0638\u0627\u0645"}, +gog(){return"\u0627\u0644\u064a\u0648\u0645"}, +goh(){return"\u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u062a\u062b\u0628\u064a\u062a"}, +goi(){return"\u062c\u0627\u0631\u064a \u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u062a\u062b\u0628\u064a\u062a"}, +goj(){return"\u0645\u0624\u0644\u0641 \u0645\u062c\u0647\u0648\u0644"}, +gol(){return"\u0645\u0627\u0646\u062c\u0627 \u063a\u064a\u0631 \u0645\u0639\u0631\u0648\u0641\u0629"}, +gom(){return"\u0627\u0644\u0645\u0635\u062f\u0631 \u0645\u062c\u0647\u0648\u0644"}, +gk9(){return"\u063a\u064a\u0631 \u0645\u0642\u0631\u0648\u0621"}, +gis(a){return"\u062a\u062d\u062f\u064a\u062b"}, +gon(){return"\u0627\u0643\u062a\u0645\u0644 \u0627\u0644\u062a\u062d\u062f\u064a\u062b"}, +glJ(){return"\u0627\u0644\u062a\u062d\u062f\u064a\u062b\u0627\u062a"}, +glK(){return"\u0645\u0644\u062e\u0635 \u0627\u0644\u062a\u062d\u062f\u064a\u062b\u0627\u062a"}, +glL(a){return"\u062c\u0627\u0631\u064a \u0627\u0644\u062a\u062d\u062f\u064a\u062b"}, +goo(){return"\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645"}, +op(a,b){return"\u0627\u0644\u0625\u0635\u062f\u0627\u0631 "+b+" \u0645\u062a\u0627\u062d \u0644\u0640 "+a+"!!"}, +goq(){return"\u0639\u0631\u0636 \u0627\u0644\u0648\u064a\u0628"}, +gor(){return"\u0645\u0627 \u0627\u0644\u062c\u062f\u064a\u062f\u061f"}, +gos(){return"\u0623\u0645\u0633"}} +A.XA.prototype={ +gl2(){return"\xdcber"}, +gki(){return"Kategorie hinzuf\xfcgen"}, +gmg(){return"Zur Bibliothek hinzuf\xfcgen"}, +gmi(){return""}, +gl7(){return"App Sprache"}, +gl8(){return"App Design"}, +gl9(){return"Tachidesk Sorayomi"}, +gla(a){return"Aussehen"}, +glb(){return"Authentifizierungsart"}, +gmk(){return"Basic Auth"}, +gml(){return"Keine"}, +gkk(){return"Sichern und wiederherstellen"}, +gmm(){return"Indikatoren"}, +gfU(){return"Hat Lesezeichen"}, +gjL(){return"Suchen"}, +gj5(){return"Build time"}, +gmo(){return"Zwischenspeicher geleert"}, +gdJ(a){return"Abbrechen"}, +gld(){return"Kategorien"}, +gmq(){return"Kategorie aktualisierung"}, +gfW(a){return"Kanal"}, +ms(a){return"Kapitel "+A.i(a)}, +gmt(){return"Nach Abrufdatum"}, +gmu(){return"Nach Quelle"}, +gmv(){return"Nach Hochladedatum"}, +gmw(){return"Nach Serveraktualisierungen suchen"}, +gmx(){return"Nach Aktualisierungen suchen"}, +gmy(){return"Zwischenspeicher leeren"}, +gmz(a){return"Endger\xe4t"}, +gmA(){return"Endger\xe4t Version"}, +gdV(a){return"Schlie\xdfen"}, +gh9(a){return"Abgeschlossen"}, +mD(a){return"'"+a+"' kopiert!"}, +gmF(){return"Bibliothek als Tachidesk backup sichern"}, +gmG(){return"Sicherung erstellen"}, +gle(a){return"Anmeldedaten"}, +mH(a){return""+a+" days ago"}, +gjO(){return"Standard Kategorie, wenn neue Manga zur Bibliothek hinzugef\xfcgt werden"}, +gkM(a){return"L\xf6schen"}, +gmI(){return""}, +gmJ(){return""}, +gj7(){return""}, +gmL(a){return""}, +glf(){return""}, +gmM(){return""}, +gmN(){return""}, +gmO(){return""}, +gfJ(a){return""}, +glg(){return""}, +gja(){return""}, +gmP(){return""}, +glh(){return""}, +gli(){return""}, +mQ(a){return""}, +mR(a){return""}, +gmS(){return""}, +gjQ(){return""}, +gmT(){return""}, +gmU(){return""}, +gmV(){return""}, +gmW(a){return""}, +ghA(){return""}, +ghg(a){return""}, +gn_(a){return""}, +gkN(){return""}, +gkP(){return""}, +glQ(){return""}, +glR(){return""}, +gn1(){return""}, +gfL(){return""}, +gn2(){return""}, +gn3(a){return""}, +gn4(){return""}, +gqX(){return"True Black"}, +glq(a){return""}, +gn9(){return""}, +ghE(){return"Bibltiotek"}, +ges(){return""}, +gnb(){return""}, +gnc(){return""}, +gnd(){return""}, +gne(){return""}, +gnf(){return""}, +gng(){return""}, +gnh(){return""}, +gni(){return""}, +gnj(){return""}, +gnk(){return""}, +gnl(){return""}, +gnm(){return""}, +gnn(){return""}, +gnp(){return""}, +ghH(){return""}, +glw(){return""}, +gnq(){return""}, +gnr(){return""}, +lx(a,b){return""}, +gns(){return""}, +pf(a){return"Next: "+a}, +gkA(){return""}, +gnu(){return""}, +gnv(){return""}, +glz(){return""}, +gnw(){return""}, +gkB(){return""}, +lA(a){return""}, +gnx(){return""}, +glB(){return""}, +glC(){return""}, +gny(){return""}, +gnz(){return""}, +gnA(){return""}, +gnB(){return""}, +lD(a){return""}, +gjW(){return""}, +nD(a,b){return""}, +gnF(a){return""}, +gi0(a){return""}, +gi1(a){return""}, +pi(a){return"Previous: "+a}, +grj(){return"Quick Search"}, +gnJ(){return""}, +gnK(){return""}, +gnL(){return""}, +gnM(){return""}, +gpj(){return"Tip: Enter '?' to see all commands"}, +gnN(){return""}, +gnO(){return""}, +glE(){return""}, +gjm(){return""}, +gi4(){return""}, +gnP(){return""}, +gnQ(){return""}, +gnR(){return""}, +gnS(){return""}, +gnT(){return""}, +gnU(){return""}, +gnV(){return""}, +gnW(){return""}, +ghl(){return""}, +gnX(){return""}, +gnY(){return""}, +gnZ(){return""}, +go_(){return""}, +go0(){return""}, +go1(){return""}, +go2(){return""}, +gpk(){return"Reader initial overlay"}, +gpl(){return u.A}, +gjn(){return""}, +go3(){return""}, +go4(){return"Swipe toggle"}, +go5(){return"Swipe to change chapter in reader"}, +go6(){return""}, +gfi(a){return""}, +gpn(a){return"Reload"}, +gk_(a){return"Remove"}, +gpo(){return"Remove from Library?"}, +go7(a){return""}, +go8(){return""}, +go9(){return""}, +goa(){return""}, +gob(){return""}, +gfC(a){return""}, +gk5(){return""}, +gi6(){return""}, +giv(a){return""}, +glT(){return""}, +gkQ(a){return""}, +gkR(){return""}, +gow(){return"Select in between"}, +gox(){return"Select next 10"}, +goy(){return"Select Unread"}, +gjz(){return""}, +gkS(){return""}, +glU(){return""}, +gkT(){return""}, +glV(){return""}, +glW(){return""}, +gkU(){return""}, +gkW(a){return""}, +gfS(a){return""}, +glZ(){return""}, +gm_(){return""}, +gm0(){return""}, +gm1(){return""}, +gc2(a){return""}, +goc(){return""}, +god(){return""}, +goe(){return""}, +gog(){return"Today"}, +goh(){return""}, +goi(){return""}, +goj(){return""}, +gol(){return""}, +gom(){return""}, +gk9(){return""}, +gis(a){return""}, +gon(){return""}, +glJ(){return""}, +glK(){return""}, +glL(a){return""}, +goo(){return""}, +op(a,b){return""}, +goq(){return""}, +gor(){return""}, +gos(){return"Yesterday"}} +A.XB.prototype={ +gl2(){return"About"}, +gki(){return"Add Category"}, +gmg(){return"Add to Library"}, +gmi(){return"All Scanlators"}, +gl7(){return"App Language"}, +gl8(){return"App Theme Mode"}, +gl9(){return"Tachidesk Sorayomi"}, +gla(a){return"Appearance"}, +glb(){return"Authentication Type"}, +gmk(){return"Basic Auth"}, +gml(){return"None"}, +gkk(){return"Backup & Restore"}, +gmm(){return"Badges"}, +gfU(){return"Bookmarked"}, +gjL(){return"Browse"}, +gj5(){return"Build time"}, +gmo(){return"Cache Cleared"}, +gdJ(a){return"Cancel"}, +gld(){return"Categories"}, +gmq(){return"Category Update"}, +gfW(a){return"Channel"}, +ms(a){return"Chapter "+A.i(a)}, +gmt(){return"By Fetched Date"}, +gmu(){return"By Source"}, +gmv(){return"By Upload Date"}, +gmw(){return"Check for Server updates"}, +gmx(){return"Check for updates"}, +gmy(){return"Clear Cache"}, +gmz(a){return"Client"}, +gmA(){return"Client version"}, +gdV(a){return"Close"}, +gh9(a){return"Completed"}, +mD(a){return"'"+a+"' Copied!"}, +gmF(){return"Backup library as a Tachidesk backup"}, +gmG(){return"Create Backup"}, +gle(a){return"Credentials"}, +mH(a){return""+a+" days ago"}, +gjO(){return u.t}, +gkM(a){return"Delete"}, +gmI(){return u.r}, +gmJ(){return"Are you sure?"}, +gj7(){return"Discord"}, +gmL(a){return"Display"}, +glf(){return"Display Mode"}, +gmM(){return"Descriptive List"}, +gmN(){return"Grid"}, +gmO(){return"List"}, +gfJ(a){return"Downloaded"}, +glg(){return"Downloads"}, +gja(){return"Edit Category"}, +gmP(){return"Category name can't be Empty"}, +glh(){return"Can't find the selected extension"}, +gli(){return"File not selected!"}, +mQ(a){return"Please select a file with "+a+" extension"}, +mR(a){return'Failed to open!\nCopying "'+a+'" to clipboard'}, +gmS(){return"Password can't be empty"}, +gjQ(){return"Something went wrong!"}, +gmT(){return"UserName can't be empty"}, +gmU(){return"Extension Installed!"}, +gmV(){return"Extension list is Empty"}, +gmW(a){return"Extensions"}, +ghA(){return"Failed"}, +ghg(a){return"Filter"}, +gn_(a){return"Finished"}, +gkN(){return"General"}, +gkP(){return"GitHub"}, +glQ(){return"Global Search"}, +glR(){return"Global Update"}, +gn1(){return"Help"}, +gfL(){return"In library"}, +gn2(){return"Install"}, +gn3(a){return"Installing"}, +gn4(){return"Installing Extension"}, +gqX(){return"True Black"}, +glq(a){return"Languages"}, +gn9(){return"Latest"}, +ghE(){return"Library"}, +ges(){return"Manga"}, +gnb(){return"Manga Grid Size"}, +gnc(){return"Manga Missing Sources"}, +gnd(){return"Alphabetical"}, +gne(){return"Date Added"}, +gnf(){return"Last Read"}, +gng(){return"Unread"}, +gnh(){return"Cancelled"}, +gni(){return"Completed"}, +gnj(){return"Licensed"}, +gnk(){return"On Hiatus"}, +gnl(){return"Ongoing"}, +gnm(){return"Publishing Finished"}, +gnn(){return"Unknown"}, +gnp(){return"Missing Extensions"}, +ghH(){return"Missing Trackers"}, +glw(){return"More"}, +gnq(){return"Move to Bottom"}, +gnr(){return"Move to top"}, +lx(a,b){return b+": "+a}, +gns(){return"New update available"}, +pf(a){return"Next: "+a}, +gkA(){return u.G}, +gnu(){return u.N}, +gnv(){return u.B}, +glz(){return"No Chapters found"}, +gnw(){return"No Downloads"}, +gkB(){return"No Mangas Found"}, +lA(a){return""+a+" Chapters"}, +gnx(){return"No results found"}, +glB(){return"No sources found"}, +glC(){return"You're using the latest version"}, +gny(){return"No updates found"}, +gnz(){return"Show NSFW extensions and sources"}, +gnA(){return"18+"}, +gnB(){return u.u}, +lD(a){return""+a+" Selected"}, +gjW(){return"Obsolete"}, +nD(a,b){return"Page: "+b}, +gnF(a){return"Password"}, +gi0(a){return"Pause"}, +gi1(a){return"Pending"}, +pi(a){return"Previous: "+a}, +grj(){return"Quick Search"}, +gnJ(){return"Go to Category 'C'"}, +gnK(){return"Go to Manga 'M' in Category 'C'"}, +gnL(){return u.k}, +gnM(){return u.R}, +gpj(){return"Tip: Enter '?' to see all commands"}, +gnN(){return"Go to Source 'S'"}, +gnO(){return"Search for Manga 'M' in Source 'S'"}, +glE(){return"Reader"}, +gjm(){return"Magnifier Size"}, +gi4(){return"Reading Mode"}, +gnP(){return"Continuous Horizontal (LTR)"}, +gnQ(){return"Continuous Horizontal (RTL)"}, +gnR(){return"Continuous Vertical"}, +gnS(){return"Default"}, +gnT(){return"Single Horizontal (LTR)"}, +gnU(){return"Single Horizontal (RTL)"}, +gnV(){return"Single Vertical"}, +gnW(){return"Webtoon"}, +ghl(){return"Navigation layout"}, +gnX(){return"Default"}, +gnY(){return"Disabled"}, +gnZ(){return"Edge"}, +go_(){return"Invert tapping"}, +go0(){return"Kindle-ish"}, +go1(){return"L Shaped"}, +go2(){return"Right And Left"}, +gpk(){return"Reader initial overlay"}, +gpl(){return u.A}, +gjn(){return"Reader Padding"}, +go3(){return"Scroll animation"}, +go4(){return"Swipe toggle"}, +go5(){return"Swipe to change chapter in reader"}, +go6(){return"Reddit"}, +gfi(a){return"Refresh"}, +gpn(a){return"Reload"}, +gk_(a){return"Remove"}, +gpo(){return"Remove from Library?"}, +go7(a){return"Reset"}, +go8(){return"Restore Tachidesk from backup"}, +go9(){return"Restore Backup"}, +goa(){return"Backup restored!"}, +gob(){return"Restoring backup"}, +gfC(a){return"Resume"}, +gk5(){return"Retry"}, +gi6(){return"Running"}, +giv(a){return"Save"}, +glT(){return"Scanlators"}, +gkQ(a){return"Search"}, +gkR(){return"Searching for updates"}, +gow(){return"Select in between"}, +gox(){return"Select next 10"}, +goy(){return"Select Unread"}, +gjz(){return"Server"}, +gkS(){return"Server Port"}, +glU(){return"Server port"}, +gkT(){return"Server URL"}, +glV(){return"Server url"}, +glW(){return"Server version"}, +gkU(){return"Settings"}, +gkW(a){return"Sort"}, +gfS(a){return"Source"}, +glZ(){return"Filter"}, +gm_(){return"Latest"}, +gm0(){return"Popular"}, +gm1(){return"Sources"}, +gc2(a){return"Start"}, +goc(){return"Dark"}, +god(){return"Light"}, +goe(){return"System"}, +gog(){return"Today"}, +goh(){return"Uninstall"}, +goi(){return"Uninstalling"}, +goj(){return"Unknown Author"}, +gol(){return"Unknown Manga"}, +gom(){return"Unknown Source"}, +gk9(){return"Unread"}, +gis(a){return"Update"}, +gon(){return"Update Completed"}, +glJ(){return"Updates"}, +glK(){return"Updates Summary"}, +glL(a){return"Updating"}, +goo(){return"User Name"}, +op(a,b){return"Version "+b+" available for "+a+"!!"}, +goq(){return"Web View"}, +gor(){return"What's New?"}, +gos(){return"Yesterday"}} +A.XC.prototype={ +gl2(){return"Acerca de"}, +gki(){return"A\xf1adir categor\xeda"}, +gmg(){return"A\xf1adir a la biblioteca"}, +gmi(){return"Todos los esc\xe1neres"}, +gl7(){return"Idioma de la aplicaci\xf3n"}, +gl8(){return"Tema de la aplicaci\xf3n"}, +gl9(){return"Tachidesk Sorayomi"}, +gla(a){return"Apariencia"}, +glb(){return"Tipo de autenticaci\xf3n"}, +gmk(){return"Autenticaci\xf3n normal"}, +gml(){return"Ninguna"}, +gkk(){return"Copia de seguridad y restauraci\xf3n"}, +gmm(){return"Insignias"}, +gfU(){return"Favoritos"}, +gjL(){return"Explorar"}, +gj5(){return"Fecha de creaci\xf3n"}, +gmo(){return"Cach\xe9 borrada"}, +gdJ(a){return"Cancelar"}, +gld(){return"Categor\xedas"}, +gmq(){return"Actualizar categor\xeda"}, +gfW(a){return"Canal"}, +ms(a){return"Cap\xedtulo "+A.i(a)}, +gmt(){return"Por fecha de b\xfasqueda"}, +gmu(){return"Por fuente"}, +gmv(){return"Por fecha de subida"}, +gmw(){return"Buscar actualizaci\xf3n del servidor"}, +gmx(){return"Buscar actualizaciones"}, +gmy(){return"Borrar la cach\xe9"}, +gmz(a){return"Cliente"}, +gmA(){return"Versi\xf3n del cliente"}, +gdV(a){return"Cerrar"}, +gh9(a){return"Completado"}, +mD(a){return"'"+a+"' \xa1Copiado!"}, +gmF(){return"Copia de seguridad de biblioteca como copia de seguridad de Tachidesk"}, +gmG(){return"Crear copia de seguridad"}, +gle(a){return"Credenciales"}, +mH(a){return"Hace "+a+" d\xedas"}, +gjO(){return"Categor\xeda predeterminada al a\xf1adir un nuevo manga a la biblioteca"}, +gkM(a){return"Eliminar"}, +gmI(){return"\xa1Esto quitar\xe1 todos los mangas de esta categor\xeda y los a\xf1adir\xe1 en predeterminado!"}, +gmJ(){return"\xbfEst\xe1s seguro?"}, +gj7(){return"Discord"}, +gmL(a){return"Vista"}, +glf(){return"Modo de visualizaci\xf3n"}, +gmM(){return"Lista descriptiva"}, +gmN(){return"Cuadr\xedcula"}, +gmO(){return"Lista"}, +gfJ(a){return"Descargados"}, +glg(){return"Descargas"}, +gja(){return"Editar categor\xeda"}, +gmP(){return"El nombre de la categor\xeda no puede estar vac\xedo"}, +glh(){return"No se encontr\xf3 la extensi\xf3n seleccionada"}, +gli(){return"\xa1Archivo no seleccionado!"}, +mQ(a){return"\xa1Por favor, selecciona un archivo con la extensi\xf3n "+a}, +mR(a){return'\xa1Error al abrir!\nCopiando "'+a+'" al portapapeles'}, +gmS(){return"La contrase\xf1a no puede estar en blanco"}, +gjQ(){return"\xa1Algo sali\xf3 mal!"}, +gmT(){return"El nombre de usuario no puede estar en blanco"}, +gmU(){return"\xa1La extensi\xf3n ha sido instalada!"}, +gmV(){return"La lista de extensiones est\xe1 vac\xeda"}, +gmW(a){return"Extensiones"}, +ghA(){return"Fallido"}, +ghg(a){return"Filtro"}, +gn_(a){return"Finalizado"}, +gkN(){return"General"}, +gkP(){return"GitHub"}, +glQ(){return"B\xfasqueda global"}, +glR(){return"Actualizaci\xf3n global"}, +gn1(){return"Ayuda"}, +gfL(){return"En biblioteca"}, +gn2(){return"Instalar"}, +gn3(a){return"Instalando"}, +gn4(){return"Instalando la extensi\xf3n"}, +gqX(){return"True Black"}, +glq(a){return"Idioma"}, +gn9(){return"Reciente"}, +ghE(){return"Biblioteca"}, +ges(){return"Manga"}, +gnb(){return"Tama\xf1o de la cuadr\xedcula del manga"}, +gnc(){return"Fuentes del manga faltantes"}, +gnd(){return"Alfab\xe9tico"}, +gne(){return"Fecha a\xf1adida"}, +gnf(){return"\xdaltima lectura"}, +gng(){return"No le\xeddo"}, +gnh(){return"Cancelado"}, +gni(){return"Completado"}, +gnj(){return"Con licencia"}, +gnk(){return"En receso"}, +gnl(){return"En publicaci\xf3n"}, +gnm(){return"Serie terminada"}, +gnn(){return"Desconocido"}, +gnp(){return"Extensiones faltantes"}, +ghH(){return"Rastreadores faltantes"}, +glw(){return"M\xe1s"}, +gnq(){return"Mover al fondo"}, +gnr(){return"Mover al principio"}, +lx(a,b){return b+": "+a}, +gns(){return"Nueva actualizaci\xf3n disponible"}, +pf(a){return"Siguiente: "+a}, +gkA(){return"No tienes ninguna categor\xeda.\n(Tip: Pulsa el bot\xf3n M\xe1s para crear uno y organizar tu biblioteca)"}, +gnu(){return"No tienes ninguna categor\xeda.\nCrea uno en ajustes para organizar tu biblioteca"}, +gnv(){return"No hay ning\xfan manga en esta categor\xeda.\n(Tip: \xa1Comprueba tus b\xfasquedas y filtros!)"}, +glz(){return"No se encontraron cap\xedtulos"}, +gnw(){return"No hay descargas"}, +gkB(){return"No se encontraron mangas"}, +lA(a){return""+a+" cap\xedtulos"}, +gnx(){return"Sin resultados"}, +glB(){return"No se encontraron fuentes"}, +glC(){return"Est\xe1s usando la \xfaltima versi\xf3n"}, +gny(){return"Sin actualizaciones"}, +gnz(){return"Mostrar fuentes y extensiones NSFW"}, +gnA(){return"18+"}, +gnB(){return"Esto no evita que extensiones no oficiales o marcadas potencialmente de forma incorrecta muestren contenido para adultos (18+) en la aplicaci\xf3n"}, +lD(a){return""+a+" seleccionado"}, +gjW(){return"Obsoleta"}, +nD(a,b){return"P\xe1gina: "+b}, +gnF(a){return"Contrase\xf1a"}, +gi0(a){return"Pausar"}, +gi1(a){return"Pendiente"}, +pi(a){return"Anterior: "+a}, +grj(){return"Quick Search"}, +gnJ(){return"Ir a la categor\xeda 'C'"}, +gnK(){return"Ir al manga 'M' en la categor\xeda 'C'"}, +gnL(){return'Ir al cap\xedtulo "CN" del manga "M" en la categor\xeda "C"'}, +gnM(){return"Busca la consulta X (los resultados se basan en el contexto en pantalla)"}, +gpj(){return"Consejo: Introduce '?' para ver todos los comandos"}, +gnN(){return"Ir a la fuente 'S'"}, +gnO(){return"Buscar el manga 'M' en la fuente 'S'"}, +glE(){return"Lector"}, +gjm(){return"Tama\xf1o de la lupa"}, +gi4(){return"Modo de lectura"}, +gnP(){return"Horizontal continuo (IZQ-DER)"}, +gnQ(){return"Horizontal continuo (DER-IZQ)"}, +gnR(){return"Vertical continuo"}, +gnS(){return"Predeterminado"}, +gnT(){return"Horizontal individual (IZQ-DER)"}, +gnU(){return"Horizontal individual (DER-IZQ)"}, +gnV(){return"Horizontal individual"}, +gnW(){return"Webtoon"}, +ghl(){return"Tipo de navegaci\xf3n"}, +gnX(){return"Predeterminado"}, +gnY(){return"Deshabilitado"}, +gnZ(){return"Borde"}, +go_(){return"Invertir el toque"}, +go0(){return"Estilo Kindle"}, +go1(){return"En forma de L"}, +go2(){return"Derecha e Izquierda"}, +gpk(){return"Superposici\xf3n inicial del lector"}, +gpl(){return"Muestra el t\xedtulo y los ajustes r\xe1pidos al abrir un cap\xedtulo"}, +gjn(){return"Anotaciones del lector"}, +go3(){return"Animaci\xf3n del desplazamiento"}, +go4(){return"Deslizar el dedo"}, +go5(){return"Deslizar para cambiar de cap\xedtulo en el lector"}, +go6(){return"Reddit"}, +gfi(a){return"Refrescar"}, +gpn(a){return"Recargar"}, +gk_(a){return"Quitar"}, +gpo(){return"\xbfQuitar de la biblioteca?"}, +go7(a){return"Restablecer"}, +go8(){return"Restaurar Tachidesk desde copia de seguridad"}, +go9(){return"Restaurar copia de seguridad"}, +goa(){return"\xa1Copia de seguridad restaurada!"}, +gob(){return"Restaurando la copia de seguridad"}, +gfC(a){return"Reanudar"}, +gk5(){return"Reintentar"}, +gi6(){return"Ejecutando"}, +giv(a){return"Guardar"}, +glT(){return"Scans"}, +gkQ(a){return"Buscar"}, +gkR(){return"Buscando actualizaciones"}, +gow(){return"Seleccionar entre"}, +gox(){return"Seleccionar los 10 siguientes"}, +goy(){return"Seleccionar los no le\xeddos"}, +gjz(){return"Servidor"}, +gkS(){return"Puerto del servidor"}, +glU(){return"Puerto del servidor"}, +gkT(){return"Enlace del servidor"}, +glV(){return"Direcci\xf3n Url del servidor"}, +glW(){return"Versi\xf3n del servidor"}, +gkU(){return"Ajustes"}, +gkW(a){return"Ordenar"}, +gfS(a){return"Fuente"}, +glZ(){return"Filtro"}, +gm_(){return"Reciente"}, +gm0(){return"Popular"}, +gm1(){return"Fuentes"}, +gc2(a){return"Empezar"}, +goc(){return"Oscuro"}, +god(){return"Claro"}, +goe(){return"Sistema"}, +gog(){return"Hoy"}, +goh(){return"Desinstalar"}, +goi(){return"Desinstalando"}, +goj(){return"Autor desconocido"}, +gol(){return"Manga desconocido"}, +gom(){return"Fuente desconocida"}, +gk9(){return"Sin leer"}, +gis(a){return"Actualizar"}, +gon(){return"Actualizaci\xf3n completa"}, +glJ(){return"Actualizaciones"}, +glK(){return"Resumen de actualizaciones"}, +glL(a){return"Actualizando"}, +goo(){return"Nombre de usuario"}, +op(a,b){return"\xa1\xa1La versi\xf3n "+b+" est\xe1 disponible para "+a+"!!"}, +goq(){return"WebView"}, +gor(){return"\xbfQu\xe9 hay de nuevo?"}, +gos(){return"Ayer"}} +A.XD.prototype={ +gl2(){return"\xc0 propos"}, +gki(){return"Ajouter une cat\xe9gorie"}, +gmg(){return"Ajouter \xe0 la biblioth\xe8que"}, +gmi(){return""}, +gl7(){return"Langue de l'application"}, +gl8(){return"Th\xe8me de l'application"}, +gl9(){return"Tachidesk Sorayomi"}, +gla(a){return"Apparence"}, +glb(){return"Type d'authentification"}, +gmk(){return"Authentification simple"}, +gml(){return"Aucune"}, +gkk(){return"Sauvegarde et restauration"}, +gmm(){return"Badges"}, +gfU(){return"Marque-pages"}, +gjL(){return"Parcourir"}, +gj5(){return"Temps d'ex\xe9cution"}, +gmo(){return"Cache effac\xe9"}, +gdJ(a){return"Annuler"}, +gld(){return"Cat\xe9gories"}, +gmq(){return"Mise \xe0 jour de la cat\xe9gorie"}, +gfW(a){return"Canal"}, +ms(a){return"Chapitre "+A.i(a)}, +gmt(){return"Par donn\xe9es r\xe9cup\xe9r\xe9es"}, +gmu(){return"Par source"}, +gmv(){return"Par date d'import"}, +gmw(){return"V\xe9rifier les mises \xe0 jour du serveur"}, +gmx(){return"V\xe9rifier les mises \xe0 jour"}, +gmy(){return"Effacer le cache"}, +gmz(a){return"Client"}, +gmA(){return"Version du client"}, +gdV(a){return"Fermer"}, +gh9(a){return"Termin\xe9"}, +mD(a){return"\xab\xa0"+a+"\xa0\xbb copi\xe9\xa0!"}, +gmF(){return"Sauvegarder la biblioth\xe8que en tant que sauvegarde Tachidesk"}, +gmG(){return"Cr\xe9er une sauvegarde"}, +gle(a){return"Identifiants"}, +mH(a){return""+a+" days ago"}, +gjO(){return"Cat\xe9gorie par d\xe9faut lors de l'ajout d'un nouveau manga \xe0 la biblioth\xe8que"}, +gkM(a){return"Supprimer"}, +gmI(){return"Tous les mangas de cette cat\xe9gorie seront ainsi ramen\xe9s \xe0 leur valeur par d\xe9faut\xa0!"}, +gmJ(){return"Voulez-vous continuer\xa0?"}, +gj7(){return"Discord"}, +gmL(a){return"Affichage"}, +glf(){return"Mode d'affichage"}, +gmM(){return"Liste descriptive"}, +gmN(){return"Grille"}, +gmO(){return"Liste"}, +gfJ(a){return"T\xe9l\xe9charg\xe9"}, +glg(){return"T\xe9l\xe9chargements"}, +gja(){return"Modifier la cat\xe9gorie"}, +gmP(){return"Le nom de la cat\xe9gorie ne peut pas \xeatre vide"}, +glh(){return"Impossible de trouver l'extension s\xe9lectionn\xe9e"}, +gli(){return"Aucun fichier s\xe9lectionn\xe9\xa0!"}, +mQ(a){return"Veuillez s\xe9lectionner un fichier avec l'extension "+a}, +mR(a){return"\xc9chec de l'ouverture\xa0!\nCopie de \xab\xa0"+a+"\xa0\xbb dans le presse-papier"}, +gmS(){return"Le mot de passe ne peut pas \xeatre vide"}, +gjQ(){return"Une erreur s'est produite\xa0!"}, +gmT(){return"Le nom d'utilisateur ne peut pas \xeatre vide"}, +gmU(){return"Extension install\xe9e\xa0!"}, +gmV(){return"La liste des extensions est vide"}, +gmW(a){return"Extensions"}, +ghA(){return"\xc9chec"}, +ghg(a){return"Filtrer"}, +gn_(a){return"Termin\xe9"}, +gkN(){return"G\xe9n\xe9ral"}, +gkP(){return"GitHub"}, +glQ(){return"Recherche globale"}, +glR(){return"Mise \xe0 jour globale"}, +gn1(){return"Aide"}, +gfL(){return"Dans la biblioth\xe8que"}, +gn2(){return"Installer"}, +gn3(a){return"Installation"}, +gn4(){return"Installation de l'extension"}, +gqX(){return"True Black"}, +glq(a){return"Langues"}, +gn9(){return"Le plus r\xe9cent"}, +ghE(){return"Biblioth\xe8que"}, +ges(){return"Manga"}, +gnb(){return"Taille de la grille des mangas"}, +gnc(){return"Sources manquantes des mangas"}, +gnd(){return"Ordre alphab\xe9tique"}, +gne(){return"Date d'ajout"}, +gnf(){return"Date de lecture"}, +gng(){return"Non lu"}, +gnh(){return"Annul\xe9"}, +gni(){return"Termin\xe9"}, +gnj(){return"Sous licence"}, +gnk(){return"En suspens"}, +gnl(){return"En cours"}, +gnm(){return"Publication termin\xe9e"}, +gnn(){return"Inconnu"}, +gnp(){return"Extensions manquantes"}, +ghH(){return"Pisteurs manquants"}, +glw(){return"Plus"}, +gnq(){return"D\xe9placer vers le bas"}, +gnr(){return"D\xe9placer vers le haut"}, +lx(a,b){return b+"\xa0: "+a}, +gns(){return"Nouvelle mise \xe0 jour disponible"}, +pf(a){return"Next: "+a}, +gkA(){return"Vous n'avez aucune cat\xe9gorie.\xa0\n(Conseil\xa0: Appuyez sur le bouton Plus pour en cr\xe9er une et organiser votre biblioth\xe8que)"}, +gnu(){return"Vous n'avez aucune cat\xe9gorie. \nCr\xe9ez-en une dans les param\xe8tres pour organiser votre biblioth\xe8que"}, +gnv(){return"Aucun manga trouv\xe9 dans cette cat\xe9gorie. \n(Conseil\xa0: V\xe9rifiez votre recherche et vos filtres\xa0!)"}, +glz(){return"Aucun chapitre trouv\xe9"}, +gnw(){return"Aucun t\xe9l\xe9chargement"}, +gkB(){return"Aucun manga trouv\xe9"}, +lA(a){return""+a+" chapitres"}, +gnx(){return"Aucun r\xe9sultat trouv\xe9"}, +glB(){return"Aucune source trouv\xe9e"}, +glC(){return"Vous utilisez la derni\xe8re version"}, +gny(){return"Aucune mise \xe0 jour disponible"}, +gnz(){return"Afficher les extensions et les sources comportant du contenu explicite"}, +gnA(){return"18+"}, +gnB(){return"Cela n'emp\xeache pas les extensions non officielles ou potentiellement signal\xe9es de mani\xe8re incorrecte de faire appara\xeetre du contenu explicite (18+) dans l'application"}, +lD(a){return""+a+" s\xe9lectionn\xe9"}, +gjW(){return"Obsol\xe8te"}, +nD(a,b){return"Page\xa0: "+b}, +gnF(a){return"Mot de passe"}, +gi0(a){return"Mettre en pause"}, +gi1(a){return"En attente"}, +pi(a){return"Previous: "+a}, +grj(){return"Quick Search"}, +gnJ(){return""}, +gnK(){return""}, +gnL(){return""}, +gnM(){return""}, +gpj(){return"Tip: Enter '?' to see all commands"}, +gnN(){return""}, +gnO(){return""}, +glE(){return"Lecteur"}, +gjm(){return"Taille de la loupe"}, +gi4(){return"Mode de lecture"}, +gnP(){return"Horizontal en continu (De gauche \xe0 droite)"}, +gnQ(){return"Horizontal en continu (De droite \xe0 gauche)"}, +gnR(){return"Vertical en continu"}, +gnS(){return"Par d\xe9faut"}, +gnT(){return"Horizontal simple (De gauche \xe0 droite)"}, +gnU(){return"Horizontal simple (De droite \xe0 gauche)"}, +gnV(){return"Vertical simple"}, +gnW(){return"Webtoon"}, +ghl(){return"Disposition de la navigation"}, +gnX(){return"Par d\xe9faut"}, +gnY(){return"D\xe9sactiv\xe9e"}, +gnZ(){return""}, +go_(){return""}, +go0(){return"Fa\xe7on Kindle"}, +go1(){return"En forme de L"}, +go2(){return"\xc0 droite et \xe0 gauche"}, +gpk(){return"Reader initial overlay"}, +gpl(){return u.A}, +gjn(){return"Marges du lecteur"}, +go3(){return"Animation de d\xe9filement"}, +go4(){return"Swipe toggle"}, +go5(){return"Swipe to change chapter in reader"}, +go6(){return"Reddit"}, +gfi(a){return"Actualiser"}, +gpn(a){return"Reload"}, +gk_(a){return"Remove"}, +gpo(){return"Remove from Library?"}, +go7(a){return"R\xe9initialiser"}, +go8(){return"Restaurer Tachidesk \xe0 partir d'une sauvegarde"}, +go9(){return"Restaurer la sauvegarde"}, +goa(){return"La sauvegarde a \xe9t\xe9 restaur\xe9e\xa0!"}, +gob(){return"Restauration de la sauvegarde"}, +gfC(a){return"Reprendre"}, +gk5(){return"R\xe9essayer"}, +gi6(){return"En cours"}, +giv(a){return"Enregistrer"}, +glT(){return""}, +gkQ(a){return"Rechercher"}, +gkR(){return"Recherche de mises \xe0 jour"}, +gow(){return"Select in between"}, +gox(){return"Select next 10"}, +goy(){return"Select Unread"}, +gjz(){return"Serveur"}, +gkS(){return""}, +glU(){return""}, +gkT(){return"URL du serveur"}, +glV(){return"Saisissez l'URL du serveur"}, +glW(){return"Version du serveur"}, +gkU(){return"Param\xe8tres"}, +gkW(a){return"Trier"}, +gfS(a){return"Source"}, +glZ(){return"Filtrer"}, +gm_(){return"Le plus r\xe9cent"}, +gm0(){return"Populaire"}, +gm1(){return"Sources"}, +gc2(a){return"Commencer"}, +goc(){return"Sombre"}, +god(){return"Clair"}, +goe(){return"Syst\xe8me"}, +gog(){return"Today"}, +goh(){return"D\xe9sinstaller"}, +goi(){return"D\xe9sinstallation"}, +goj(){return"Auteur inconnu"}, +gol(){return"Manga inconnu"}, +gom(){return"Source inconnue"}, +gk9(){return"Non lu"}, +gis(a){return"Mettre \xe0 jour"}, +gon(){return"Mise \xe0 jour termin\xe9e"}, +glJ(){return"Mises \xe0 jour"}, +glK(){return"R\xe9capitulatif des mises \xe0 jour"}, +glL(a){return"Mise \xe0 jour en cours"}, +goo(){return"Nom d'utilisateur"}, +op(a,b){return"Version "+b+" disponible pour l'application "+a+"\xa0!"}, +goq(){return"Vue Web"}, +gor(){return"Quoi de neuf\xa0?"}, +gos(){return"Yesterday"}} +A.XE.prototype={ +gl2(){return"\u3053\u306e\u30a2\u30d7\u30ea\u306b\u3064\u3044\u3066"}, +gki(){return"\u30ab\u30c6\u30b4\u30ea\u30fc\u3092\u8ffd\u52a0"}, +gmg(){return"\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u8ffd\u52a0"}, +gmi(){return"All Scanlators"}, +gl7(){return"App Language"}, +gl8(){return"App Theme Mode"}, +gl9(){return"Tachidesk Sorayomi"}, +gla(a){return"Appearance"}, +glb(){return"Authentication Type"}, +gmk(){return"Basic Auth"}, +gml(){return"None"}, +gkk(){return"Backup & Restore"}, +gmm(){return"Badges"}, +gfU(){return"Bookmarked"}, +gjL(){return"Browse"}, +gj5(){return"Build time"}, +gmo(){return"Cache Cleared"}, +gdJ(a){return"Cancel"}, +gld(){return"Categories"}, +gmq(){return"Category Update"}, +gfW(a){return"Channel"}, +ms(a){return"Chapter "+A.i(a)}, +gmt(){return"By Fetched Date"}, +gmu(){return"By Source"}, +gmv(){return"By Upload Date"}, +gmw(){return"Check for Server updates"}, +gmx(){return"Check for updates"}, +gmy(){return"Clear Cache"}, +gmz(a){return"Client"}, +gmA(){return"Client version"}, +gdV(a){return"Close"}, +gh9(a){return"Completed"}, +mD(a){return"'"+a+"' Copied!"}, +gmF(){return"Backup library as a Tachidesk backup"}, +gmG(){return"Create Backup"}, +gle(a){return"Credentials"}, +mH(a){return""+a+" days ago"}, +gjO(){return u.t}, +gkM(a){return"Delete"}, +gmI(){return u.r}, +gmJ(){return"Are you sure?"}, +gj7(){return"Discord"}, +gmL(a){return"Display"}, +glf(){return"Display Mode"}, +gmM(){return"Descriptive List"}, +gmN(){return"Grid"}, +gmO(){return"List"}, +gfJ(a){return"Downloaded"}, +glg(){return"Downloads"}, +gja(){return"Edit Category"}, +gmP(){return"Category name can't be Empty"}, +glh(){return"Can't find the selected extension"}, +gli(){return"File not selected!"}, +mQ(a){return"Please select a file with "+a+" extension"}, +mR(a){return'Failed to open!\nCopying "'+a+'" to clipboard'}, +gmS(){return"Password can't be empty"}, +gjQ(){return"Something went wrong!"}, +gmT(){return"UserName can't be empty"}, +gmU(){return"Extension Installed!"}, +gmV(){return"Extension list is Empty"}, +gmW(a){return"Extensions"}, +ghA(){return"Failed"}, +ghg(a){return"Filter"}, +gn_(a){return"Finished"}, +gkN(){return"General"}, +gkP(){return"GitHub"}, +glQ(){return"Global Search"}, +glR(){return"Global Update"}, +gn1(){return"Help"}, +gfL(){return"In library"}, +gn2(){return"Install"}, +gn3(a){return"Installing"}, +gn4(){return"Installing Extension"}, +gqX(){return"True Black"}, +glq(a){return"Languages"}, +gn9(){return"Latest"}, +ghE(){return"Library"}, +ges(){return"Manga"}, +gnb(){return"Manga Grid Size"}, +gnc(){return"Manga Missing Sources"}, +gnd(){return"Alphabetical"}, +gne(){return"Date Added"}, +gnf(){return"Last Read"}, +gng(){return"Unread"}, +gnh(){return"Cancelled"}, +gni(){return"Completed"}, +gnj(){return"Licensed"}, +gnk(){return"On Hiatus"}, +gnl(){return"Ongoing"}, +gnm(){return"Publishing Finished"}, +gnn(){return"Unknown"}, +gnp(){return"Missing Extensions"}, +ghH(){return"Missing Trackers"}, +glw(){return"More"}, +gnq(){return"Move to Bottom"}, +gnr(){return"Move to top"}, +lx(a,b){return b+": "+a}, +gns(){return"New update available"}, +pf(a){return"Next: "+a}, +gkA(){return u.G}, +gnu(){return u.N}, +gnv(){return u.B}, +glz(){return"No Chapters found"}, +gnw(){return"No Downloads"}, +gkB(){return"No Mangas Found"}, +lA(a){return""+a+" Chapters"}, +gnx(){return"No results found"}, +glB(){return"No sources found"}, +glC(){return"You're using the latest version"}, +gny(){return"No updates found"}, +gnz(){return"Show NSFW extensions and sources"}, +gnA(){return"18+"}, +gnB(){return u.u}, +lD(a){return""+a+" Selected"}, +gjW(){return"Obsolete"}, +nD(a,b){return"Page: "+b}, +gnF(a){return"Password"}, +gi0(a){return"Pause"}, +gi1(a){return"Pending"}, +pi(a){return"Previous: "+a}, +grj(){return"Quick Search"}, +gnJ(){return"Go to Category 'C'"}, +gnK(){return"Go to Manga 'M' in Category 'C'"}, +gnL(){return u.k}, +gnM(){return u.R}, +gpj(){return"Tip: Enter '?' to see all commands"}, +gnN(){return"Go to Source 'S'"}, +gnO(){return"Search for Manga 'M' in Source 'S'"}, +glE(){return"Reader"}, +gjm(){return"Magnifier Size"}, +gi4(){return"Reading Mode"}, +gnP(){return"Continuous Horizontal (LTR)"}, +gnQ(){return"Continuous Horizontal (RTL)"}, +gnR(){return"Continuous Vertical"}, +gnS(){return"Default"}, +gnT(){return"Single Horizontal (LTR)"}, +gnU(){return"Single Horizontal (RTL)"}, +gnV(){return"Single Vertical"}, +gnW(){return"Webtoon"}, +ghl(){return"Navigation layout"}, +gnX(){return"Default"}, +gnY(){return"Disabled"}, +gnZ(){return"Edge"}, +go_(){return"Invert tapping"}, +go0(){return"Kindle-ish"}, +go1(){return"L Shaped"}, +go2(){return"Right And Left"}, +gpk(){return"Reader initial overlay"}, +gpl(){return u.A}, +gjn(){return"Reader Padding"}, +go3(){return"Scroll animation"}, +go4(){return"Swipe toggle"}, +go5(){return"Swipe to change chapter in reader"}, +go6(){return"Reddit"}, +gfi(a){return"Refresh"}, +gpn(a){return"Reload"}, +gk_(a){return"Remove"}, +gpo(){return"Remove from Library?"}, +go7(a){return"Reset"}, +go8(){return"Restore Tachidesk from backup"}, +go9(){return"Restore Backup"}, +goa(){return"Backup restored!"}, +gob(){return"Restoring backup"}, +gfC(a){return"Resume"}, +gk5(){return"Retry"}, +gi6(){return"Running"}, +giv(a){return"Save"}, +glT(){return"Scanlators"}, +gkQ(a){return"Search"}, +gkR(){return"Searching for updates"}, +gow(){return"Select in between"}, +gox(){return"Select next 10"}, +goy(){return"Select Unread"}, +gjz(){return"Server"}, +gkS(){return"Server Port"}, +glU(){return"Server port"}, +gkT(){return"Server URL"}, +glV(){return"Server url"}, +glW(){return"Server version"}, +gkU(){return"Settings"}, +gkW(a){return"Sort"}, +gfS(a){return"Source"}, +glZ(){return"Filter"}, +gm_(){return"Latest"}, +gm0(){return"Popular"}, +gm1(){return"Sources"}, +gc2(a){return"Start"}, +goc(){return"Dark"}, +god(){return"Light"}, +goe(){return"System"}, +gog(){return"Today"}, +goh(){return"Uninstall"}, +goi(){return"Uninstalling"}, +goj(){return"Unknown Author"}, +gol(){return"Unknown Manga"}, +gom(){return"Unknown Source"}, +gk9(){return"Unread"}, +gis(a){return"Update"}, +gon(){return"Update Completed"}, +glJ(){return"Updates"}, +glK(){return"Updates Summary"}, +glL(a){return"Updating"}, +goo(){return"User Name"}, +op(a,b){return"Version "+b+" available for "+a+"!!"}, +goq(){return"Web View"}, +gor(){return"What's New?"}, +gos(){return"Yesterday"}} +A.XF.prototype={ +gl2(){return"\uc815\ubcf4"}, +gki(){return"\uce74\ud14c\uace0\ub9ac \ucd94\uac00"}, +gmg(){return"\ub77c\uc774\ube0c\ub7ec\ub9ac\uc5d0 \ucd94\uac00"}, +gmi(){return"All Scanlators"}, +gl7(){return"\uc571 \uc5b8\uc5b4"}, +gl8(){return"\uc571 \ud14c\ub9c8"}, +gl9(){return"Tachidesk Sorayomi"}, +gla(a){return"\ubaa8\uc591"}, +glb(){return"\uc778\uc99d \uc720\ud615"}, +gmk(){return"\uae30\ubcf8 \uc778\uc99d"}, +gml(){return"\uc5c6\uc74c"}, +gkk(){return"\ubc31\uc5c5 \ubc0f \ubcf5\uc6d0"}, +gmm(){return"Badges"}, +gfU(){return"\ubd81\ub9c8\ud06c \ub428"}, +gjL(){return"\ucc3e\uc544\ubcf4\uae30"}, +gj5(){return"\ub9cc\ub4e4\uc5b4\uc9c4 \uc2dc\uac04"}, +gmo(){return"\uce90\uc2dc \uc815\ub9ac"}, +gdJ(a){return"\ucde8\uc18c"}, +gld(){return"\uce74\ud14c\uace0\ub9ac"}, +gmq(){return"\uce74\ud14c\uace0\ub9ac \uc5c5\ub370\uc774\ud2b8"}, +gfW(a){return"\ubc84\uc804"}, +ms(a){return"\ucc55\ud130 "+A.i(a)}, +gmt(){return"\ud68c\ucc28 \ubc88\ud638 \uae30\uc900"}, +gmu(){return"\uc18c\uc2a4 \uae30\uc900"}, +gmv(){return"\uc5c5\ub85c\ub4dc \ub0a0\uc9dc \uae30\uc900"}, +gmw(){return"\uc11c\ubc84 \uc5c5\ub370\uc774\ud2b8 \ud655\uc778"}, +gmx(){return"\uc5c5\ub370\uc774\ud2b8 \ud655\uc778"}, +gmy(){return"\uce90\uc2dc \uc815\ub9ac"}, +gmz(a){return"Client"}, +gmA(){return"Client version"}, +gdV(a){return"\ub2eb\uae30"}, +gh9(a){return"\uc644\ub8cc\ub428"}, +mD(a){return"'"+a+"' \ubcf5\uc0ac\ub428!"}, +gmF(){return"Backup library as a Tachidesk backup"}, +gmG(){return"\ubc31\uc5c5 \uc0dd\uc131"}, +gle(a){return"\uc99d\uba85"}, +mH(a){return""+a+" \uc77c \uc9c0\ub0a8"}, +gjO(){return u.t}, +gkM(a){return"Delete"}, +gmI(){return u.r}, +gmJ(){return"Are you sure?"}, +gj7(){return"Discord"}, +gmL(a){return"Display"}, +glf(){return"Display Mode"}, +gmM(){return"Descriptive List"}, +gmN(){return"Grid"}, +gmO(){return"List"}, +gfJ(a){return"Downloaded"}, +glg(){return"Downloads"}, +gja(){return"Edit Category"}, +gmP(){return"Category name can't be Empty"}, +glh(){return"Can't find the selected extension"}, +gli(){return"File not selected!"}, +mQ(a){return"Please select a file with "+a+" extension"}, +mR(a){return'Failed to open!\nCopying "'+a+'" to clipboard'}, +gmS(){return"Password can't be empty"}, +gjQ(){return"Something went wrong!"}, +gmT(){return"UserName can't be empty"}, +gmU(){return"Extension Installed!"}, +gmV(){return"Extension list is Empty"}, +gmW(a){return"Extensions"}, +ghA(){return"Failed"}, +ghg(a){return"Filter"}, +gn_(a){return"Finished"}, +gkN(){return"General"}, +gkP(){return"GitHub"}, +glQ(){return"Global Search"}, +glR(){return"Global Update"}, +gn1(){return"Help"}, +gfL(){return"In library"}, +gn2(){return"Install"}, +gn3(a){return"Installing"}, +gn4(){return"Installing Extension"}, +gqX(){return"True Black"}, +glq(a){return"Languages"}, +gn9(){return"Latest"}, +ghE(){return"Library"}, +ges(){return"Manga"}, +gnb(){return"Manga Grid Size"}, +gnc(){return"Manga Missing Sources"}, +gnd(){return"Alphabetical"}, +gne(){return"Date Added"}, +gnf(){return"Last Read"}, +gng(){return"Unread"}, +gnh(){return"Cancelled"}, +gni(){return"Completed"}, +gnj(){return"Licensed"}, +gnk(){return"On Hiatus"}, +gnl(){return"Ongoing"}, +gnm(){return"Publishing Finished"}, +gnn(){return"Unknown"}, +gnp(){return"Missing Extensions"}, +ghH(){return"Missing Trackers"}, +glw(){return"More"}, +gnq(){return"Move to Bottom"}, +gnr(){return"Move to top"}, +lx(a,b){return b+": "+a}, +gns(){return"New update available"}, +pf(a){return"Next: "+a}, +gkA(){return u.G}, +gnu(){return u.N}, +gnv(){return u.B}, +glz(){return"No Chapters found"}, +gnw(){return"No Downloads"}, +gkB(){return"No Mangas Found"}, +lA(a){return""+a+" Chapters"}, +gnx(){return"No results found"}, +glB(){return"No sources found"}, +glC(){return"You're using the latest version"}, +gny(){return"No updates found"}, +gnz(){return"Show NSFW extensions and sources"}, +gnA(){return"18+"}, +gnB(){return u.u}, +lD(a){return""+a+" Selected"}, +gjW(){return"Obsolete"}, +nD(a,b){return"Page: "+b}, +gnF(a){return"Password"}, +gi0(a){return"Pause"}, +gi1(a){return"Pending"}, +pi(a){return"Previous: "+a}, +grj(){return"Quick Search"}, +gnJ(){return"Go to Category 'C'"}, +gnK(){return"Go to Manga 'M' in Category 'C'"}, +gnL(){return u.k}, +gnM(){return u.R}, +gpj(){return"Tip: Enter '?' to see all commands"}, +gnN(){return"Go to Source 'S'"}, +gnO(){return"Search for Manga 'M' in Source 'S'"}, +glE(){return"Reader"}, +gjm(){return"Magnifier Size"}, +gi4(){return"Reading Mode"}, +gnP(){return"Continuous Horizontal (LTR)"}, +gnQ(){return"Continuous Horizontal (RTL)"}, +gnR(){return"Continuous Vertical"}, +gnS(){return"Default"}, +gnT(){return"Single Horizontal (LTR)"}, +gnU(){return"Single Horizontal (RTL)"}, +gnV(){return"Single Vertical"}, +gnW(){return"Webtoon"}, +ghl(){return"Navigation layout"}, +gnX(){return"Default"}, +gnY(){return"Disabled"}, +gnZ(){return"Edge"}, +go_(){return"Invert tapping"}, +go0(){return"Kindle-ish"}, +go1(){return"L Shaped"}, +go2(){return"Right And Left"}, +gpk(){return"Reader initial overlay"}, +gpl(){return u.A}, +gjn(){return"Reader Padding"}, +go3(){return"Scroll animation"}, +go4(){return"Swipe toggle"}, +go5(){return"Swipe to change chapter in reader"}, +go6(){return"Reddit"}, +gfi(a){return"Refresh"}, +gpn(a){return"Reload"}, +gk_(a){return"Remove"}, +gpo(){return"Remove from Library?"}, +go7(a){return"Reset"}, +go8(){return"Restore Tachidesk from backup"}, +go9(){return"Restore Backup"}, +goa(){return"Backup restored!"}, +gob(){return"Restoring backup"}, +gfC(a){return"Resume"}, +gk5(){return"Retry"}, +gi6(){return"Running"}, +giv(a){return"Save"}, +glT(){return"Scanlators"}, +gkQ(a){return"Search"}, +gkR(){return"Searching for updates"}, +gow(){return"Select in between"}, +gox(){return"Select next 10"}, +goy(){return"Select Unread"}, +gjz(){return"Server"}, +gkS(){return"Server Port"}, +glU(){return"Server port"}, +gkT(){return"Server URL"}, +glV(){return"Server url"}, +glW(){return"Server version"}, +gkU(){return"Settings"}, +gkW(a){return"Sort"}, +gfS(a){return"Source"}, +glZ(){return"Filter"}, +gm_(){return"Latest"}, +gm0(){return"Popular"}, +gm1(){return"Sources"}, +gc2(a){return"Start"}, +goc(){return"Dark"}, +god(){return"Light"}, +goe(){return"System"}, +gog(){return"Today"}, +goh(){return"Uninstall"}, +goi(){return"Uninstalling"}, +goj(){return"Unknown Author"}, +gol(){return"Unknown Manga"}, +gom(){return"Unknown Source"}, +gk9(){return"Unread"}, +gis(a){return"Update"}, +gon(){return"Update Completed"}, +glJ(){return"Updates"}, +glK(){return"Updates Summary"}, +glL(a){return"Updating"}, +goo(){return"User Name"}, +op(a,b){return"Version "+b+" available for "+a+"!!"}, +goq(){return"Web View"}, +gor(){return"What's New?"}, +gos(){return"Yesterday"}} +A.In.prototype={ +gl2(){return"Sobre"}, +gki(){return"Adicionar Categoria"}, +gmg(){return"Adicionar \xe0 biblioteca"}, +gmi(){return"Todas as Scans"}, +gl7(){return"Idioma da aplica\xe7\xe3o"}, +gl8(){return"Tema da Aplica\xe7\xe3o"}, +gl9(){return"Tachidesk Sorayomi"}, +gla(a){return"Apar\xeancia"}, +glb(){return"Tipo de autentica\xe7\xe3o"}, +gmk(){return"Autentica\xe7\xe3o B\xe1sica"}, +gml(){return"Nenhum"}, +gkk(){return"C\xf3pia de seguran\xe7a e restaurar"}, +gmm(){return"Distintivos"}, +gfU(){return"Marcado"}, +gjL(){return"Procurar"}, +gj5(){return"Tempo de compila\xe7\xe3o"}, +gmo(){return"Cache limpo"}, +gdJ(a){return"Cancelar"}, +gld(){return"Categorias"}, +gmq(){return"Atualiza\xe7\xe3o de categoria"}, +gfW(a){return"Canal"}, +ms(a){return"Cap\xedtulo "+A.i(a)}, +gmt(){return"Por dados recolhidos"}, +gmu(){return"Por fonte"}, +gmv(){return"Por ordem de envio"}, +gmw(){return"Procurar atualiza\xe7\xf5es do servidor"}, +gmx(){return"Procurar atualiza\xe7\xf5es"}, +gmy(){return"Limpar Cache"}, +gmz(a){return"Client"}, +gmA(){return"Vers\xe3o Client"}, +gdV(a){return"Fechar"}, +gh9(a){return"Completo"}, +mD(a){return"'"+a+"' Copiado para \xe1rea de transfer\xeancia!"}, +gmF(){return u.p}, +gmG(){return"Criar c\xf3pia de seguran\xe7a"}, +gle(a){return"Credenciais"}, +mH(a){return""+a+" days ago"}, +gjO(){return u.a}, +gkM(a){return"Remover"}, +gmI(){return u.m}, +gmJ(){return"Tem a certeza?"}, +gj7(){return"Discord"}, +gmL(a){return"Exibir"}, +glf(){return"Modo de exibi\xe7\xe3o"}, +gmM(){return"Lista descritiva"}, +gmN(){return"Grelha"}, +gmO(){return"Lista"}, +gfJ(a){return"Transferidos"}, +glg(){return"Transfer\xeancias"}, +gja(){return"Editar Categoria"}, +gmP(){return u.s}, +glh(){return u.L}, +gli(){return"Arquivo n\xe3o selecionado!"}, +mQ(a){return"Por favor selecione um arquivo com "+a+" extens\xe3o"}, +mR(a){return'Falha ao abrir!\nA Copiar "'+a+'" para a \xe1rea de transfer\xeancia'}, +gmS(){return"Senha n\xe3o pode ficar em branco"}, +gjQ(){return"Algo correu mal!"}, +gmT(){return u.P}, +gmU(){return"Extens\xe3o instalada!"}, +gmV(){return"Lista de extens\xe3o est\xe1 vazia"}, +gmW(a){return"Extens\xf5es"}, +ghA(){return"Falha"}, +ghg(a){return"Filtro"}, +gn_(a){return"Conclu\xeddo"}, +gkN(){return"Geral"}, +gkP(){return"GitHub"}, +glQ(){return"Procura global"}, +glR(){return"Atualiza\xe7\xe3o global"}, +gn1(){return"Ajuda"}, +gfL(){return"Na Biblioteca"}, +gn2(){return"Instalar"}, +gn3(a){return"A Instalar"}, +gn4(){return"Instalando extens\xe3o"}, +gqX(){return"True Black"}, +glq(a){return"Idiomas"}, +gn9(){return"Mais recente"}, +ghE(){return"Biblioteca"}, +ges(){return"Manga"}, +gnb(){return"Tamanho da tela do mang\xe1"}, +gnc(){return"Fontes do manga em falta"}, +gnd(){return"Ordem alfab\xe9tica"}, +gne(){return"Data adicionada"}, +gnf(){return"\xdaltima leitura"}, +gng(){return"N\xe3o lido"}, +gnh(){return"Cancelado"}, +gni(){return"Completo"}, +gnj(){return"Licenciado"}, +gnk(){return"Em curso"}, +gnl(){return"Em pausa"}, +gnm(){return"Publica\xe7\xe3o conclu\xedda"}, +gnn(){return"Desconhecido"}, +gnp(){return"Extens\xf5es em falta"}, +ghH(){return"Rasteadores em falta"}, +glw(){return"Mais"}, +gnq(){return"Mover para baixo"}, +gnr(){return"Mover para cima"}, +lx(a,b){return b+": "+a}, +gns(){return"Nova atualiza\xe7\xe3o dispon\xedvel"}, +pf(a){return"Next: "+a}, +gkA(){return"N\xe3o tem nenhuma categoria.\nToque no bot\xe3o mais para criar uma categoria para organizar a sua biblioteca"}, +gnu(){return u._}, +gnv(){return u.H}, +glz(){return"Nenhum cap\xedtulo encontrado"}, +gnw(){return"Nenhuma transfer\xeancia"}, +gkB(){return"Nenhum manga encontrado"}, +lA(a){return""+a+" Cap\xedtulos"}, +gnx(){return"Nenhum resultado encontrado"}, +glB(){return"Nenhuma fonte encontrada"}, +glC(){return"Est\xe1 a usar a vers\xe3o mais recente"}, +gny(){return"Nenhuma atualiza\xe7\xe3o encontrada"}, +gnz(){return"Mostrar extens\xf5es e fontes NSFW"}, +gnA(){return"18+"}, +gnB(){return u.j}, +lD(a){return""+a+" Selecionado"}, +gjW(){return"Obsoleta"}, +nD(a,b){return"P\xe1gina: "+b}, +gnF(a){return"Senha"}, +gi0(a){return"Pausa"}, +gi1(a){return"Pendente"}, +pi(a){return"Previous: "+a}, +grj(){return"Quick Search"}, +gnJ(){return"V\xe1 para categoria 'C'"}, +gnK(){return"Pesquisa o Manga 'M' na categoria 'C'"}, +gnL(){return"Pesquisa o cap\xedtulo 'CN' na manga 'M' na Categoria 'C'"}, +gnM(){return"Pesquisa padr\xe3o (Resultado baseado nas informa\xe7\xf5es da tela)"}, +gpj(){return"Tip: Enter '?' to see all commands"}, +gnN(){return"Pesquisa a fonte 'S'"}, +gnO(){return"Pesquisa o mang\xe1 'M' na fonte 'S'"}, +glE(){return"Leitor"}, +gjm(){return"Tamanho da Lupa"}, +gi4(){return"Modo de leitura"}, +gnP(){return"Horizontal Cont\xednuo (LTR)"}, +gnQ(){return"Horizontal Cont\xednuo (RTL)"}, +gnR(){return"Vertical Cont\xednuo"}, +gnS(){return"Predefinido"}, +gnT(){return"Horizontal \xfanico (LTR)"}, +gnU(){return"Horizontal \xfanico (RTL)"}, +gnV(){return"Vertical \xfanico"}, +gnW(){return"Webtoon"}, +ghl(){return"Disposi\xe7\xe3o de Navega\xe7\xe3o"}, +gnX(){return"Predefinido"}, +gnY(){return"Desativado"}, +gnZ(){return"Borda"}, +go_(){return"Inverter toque"}, +go0(){return"Formato Kindle-ish"}, +go1(){return"Formato L"}, +go2(){return"Direita para Esquerda"}, +gpk(){return"Reader initial overlay"}, +gpl(){return u.A}, +gjn(){return"Preenchimento do leitor"}, +go3(){return"Anima\xe7\xe3o de rolagem"}, +go4(){return"Swipe toggle"}, +go5(){return"Swipe to change chapter in reader"}, +go6(){return"Reddit"}, +gfi(a){return"Recarregar"}, +gpn(a){return"Reload"}, +gk_(a){return"Remove"}, +gpo(){return"Remove from Library?"}, +go7(a){return"Reiniciar"}, +go8(){return u.b}, +go9(){return"Restaurar c\xf3pia de seguran\xe7a"}, +goa(){return"C\xf3pia de seguran\xe7a restaurada!"}, +gob(){return"Restaurando backup"}, +gfC(a){return"Continuar"}, +gk5(){return"Tentar novamente"}, +gi6(){return"Em execu\xe7\xe3o"}, +giv(a){return"Guardar"}, +glT(){return"Scans"}, +gkQ(a){return"Procurar"}, +gkR(){return"Procurando por atualiza\xe7\xf5es"}, +gow(){return"Select in between"}, +gox(){return"Select next 10"}, +goy(){return"Select Unread"}, +gjz(){return"Servidor"}, +gkS(){return"Porta do servidor"}, +glU(){return"Porta do servidor"}, +gkT(){return"URL do Server"}, +glV(){return"URL do servidor"}, +glW(){return"Vers\xe3o do servidor"}, +gkU(){return"Defini\xe7\xf5es"}, +gkW(a){return"Ordenar"}, +gfS(a){return"Fonte"}, +glZ(){return"Filtro"}, +gm_(){return"Mais recentes"}, +gm0(){return"Popular"}, +gm1(){return"Fontes"}, +gc2(a){return"Inicio"}, +goc(){return"Escuro"}, +god(){return"Claro"}, +goe(){return"Sistema"}, +gog(){return"Today"}, +goh(){return"Desinstalar"}, +goi(){return"A Desinstalar"}, +goj(){return"Autor Desconhecido"}, +gol(){return"Manga Desconhecido"}, +gom(){return"Fonte Desconhecida"}, +gk9(){return"N\xe3o lida"}, +gis(a){return"Atualiza\xe7\xe3o"}, +gon(){return"Atualiza\xe7\xe3o Completa"}, +glJ(){return"Atualiza\xe7\xf5es"}, +glK(){return"Resumo de Atualiza\xe7\xf5es"}, +glL(a){return"Atualizando"}, +goo(){return"Nome de Utilizador"}, +op(a,b){return"Vers\xe3o "+b+" disponivel para "+a+"!!"}, +goq(){return"WebView"}, +gor(){return"O que h\xe1 de Novo?"}, +gos(){return"Yesterday"}} +A.XG.prototype={ +gl2(){return"Sobre"}, +gki(){return"Adicionar Categoria"}, +gmg(){return"Adicionar \xe0 biblioteca"}, +gmi(){return"Todas Scans"}, +gl7(){return"Idioma da aplica\xe7\xe3o"}, +gl8(){return"Tema da Aplica\xe7\xe3o"}, +gl9(){return"Tachidesk Sorayomi"}, +gla(a){return"Apar\xeancia"}, +glb(){return"Tipo de autentica\xe7\xe3o"}, +gmk(){return"Autentica\xe7\xe3o B\xe1sica"}, +gml(){return"Nenhum"}, +gkk(){return"C\xf3pia de seguran\xe7a e restaurar"}, +gmm(){return"Distintivos"}, +gfU(){return"Marcado"}, +gjL(){return"Procurar"}, +gj5(){return"Tempo de compila\xe7\xe3o"}, +gmo(){return"Cache limpo"}, +gdJ(a){return"Cancelar"}, +gld(){return"Categorias"}, +gmq(){return"Atualiza\xe7\xe3o de categoria"}, +gfW(a){return"Canal"}, +ms(a){return"Cap\xedtulo "+A.i(a)}, +gmt(){return"Recolhidos por data"}, +gmu(){return"Por fonte"}, +gmv(){return"Por Data de Upload"}, +gmw(){return"Procurar atualiza\xe7\xf5es do servidor"}, +gmx(){return"Procurar atualiza\xe7\xf5es"}, +gmy(){return"Limpar cache"}, +gmz(a){return"Client"}, +gmA(){return"Vers\xe3o Client"}, +gdV(a){return"Fechar"}, +gh9(a){return"Completo"}, +mD(a){return'"'+a+'" Copiado!'}, +gmF(){return u.p}, +gmG(){return"Criar c\xf3pia de seguran\xe7a"}, +gle(a){return"Credenciais"}, +mH(a){return""+a+" dias atr\xe1s"}, +gjO(){return u.a}, +gkM(a){return"Remover"}, +gmI(){return u.m}, +gmJ(){return"Tem a certeza?"}, +gj7(){return"Discord"}, +gmL(a){return"Exibir"}, +glf(){return"Modo de exibi\xe7\xe3o"}, +gmM(){return"Lista descritiva"}, +gmN(){return"Grelha"}, +gmO(){return"Lista"}, +gfJ(a){return"Transferidos"}, +glg(){return"Transfer\xeancias"}, +gja(){return"Editar Categoria"}, +gmP(){return u.s}, +glh(){return u.L}, +gli(){return"Arquivo n\xe3o selecionado!"}, +mQ(a){return"Por favor selecione um arquivo com "+a+" extens\xe3o"}, +mR(a){return'Falha ao abrir!\nA Copiar "'+a+'" para a \xe1rea de transfer\xeancia'}, +gmS(){return"Senha n\xe3o pode ficar em branco"}, +gjQ(){return"Algo correu mal!"}, +gmT(){return u.P}, +gmU(){return"Extens\xe3o instalada!"}, +gmV(){return"Lista de extens\xe3o est\xe1 vazia"}, +gmW(a){return"Extens\xf5es"}, +ghA(){return"Falha"}, +ghg(a){return"Filtro"}, +gn_(a){return"Conclu\xeddo"}, +gkN(){return"Geral"}, +gkP(){return"GitHub"}, +glQ(){return"Procura global"}, +glR(){return"Atualiza\xe7\xe3o global"}, +gn1(){return"Ajuda"}, +gfL(){return"Na Biblioteca"}, +gn2(){return"Instalar"}, +gn3(a){return"A Instalar"}, +gn4(){return"A instalar extens\xf5es"}, +glq(a){return"Idiomas"}, +gn9(){return"Mais recente"}, +ghE(){return"Biblioteca"}, +ges(){return"Manga"}, +gnb(){return"Tamanho do Manga na Grelha"}, +gnc(){return"Fontes do manga em falta"}, +gnd(){return"Ordem alfab\xe9tica"}, +gne(){return"Data adicionada"}, +gnf(){return"\xdaltima leitura"}, +gng(){return"N\xe3o lido"}, +gnh(){return"Cancelado"}, +gni(){return"Completo"}, +gnj(){return"Licenciado"}, +gnk(){return"Em curso"}, +gnl(){return"Em pausa"}, +gnm(){return"Publica\xe7\xe3o conclu\xedda"}, +gnn(){return"Desconhecido"}, +gnp(){return"Extens\xf5es em falta"}, +ghH(){return"Rasteadores em falta"}, +glw(){return"Mais"}, +gnq(){return"Mover para baixo"}, +gnr(){return"Mover para cima"}, +lx(a,b){return b+": "+a}, +gns(){return"Nova atualiza\xe7\xe3o dispon\xedvel"}, +pf(a){return"Pr\xf3ximo: "+a}, +gkA(){return"N\xe3o tem nenhuma categoria.\n(Dica: Toque no bot\xe3o mais para criar uma categoria para organizar a sua biblioteca)"}, +gnu(){return u._}, +gnv(){return u.H}, +glz(){return"Nenhum cap\xedtulo encontrado"}, +gnw(){return"Nenhuma transfer\xeancia"}, +gkB(){return"Nenhum manga encontrado"}, +lA(a){return""+a+" Cap\xedtulos"}, +gnx(){return"Nenhum resultado encontrado"}, +glB(){return"Nenhuma fonte encontrada"}, +glC(){return"Est\xe1 a usar a vers\xe3o mais recente"}, +gny(){return"Nenhuma atualiza\xe7\xe3o encontrada"}, +gnz(){return"Mostrar extens\xf5es e fontes NSFW"}, +gnA(){return"18+"}, +gnB(){return u.j}, +lD(a){return""+a+" Selecionado"}, +gjW(){return"Obsoleta"}, +nD(a,b){return"P\xe1gina: "+b}, +gnF(a){return"Senha"}, +gi0(a){return"Pausa"}, +gi1(a){return"Pendente"}, +pi(a){return"Anterior: "+a}, +gnJ(){return"Ir para a Categoria 'C'"}, +gnK(){return"Ir para o Manga 'M' na Categoria 'C'"}, +gnL(){return"Ir para o Nome do Capitulo 'CN' Do Manga 'M' na Categoria 'C'"}, +gnM(){return""}, +gpj(){return'Dica: Digite "?" Para ver todos os comandos'}, +gnN(){return"Ir para a Fonte 'S'"}, +gnO(){return"Procurar por manga 'M' na Fonte 'S'"}, +glE(){return"Leitor"}, +gjm(){return"Tamanho da lupa"}, +gi4(){return"Modo de leitura"}, +gnP(){return"Horizontal Cont\xednuo (LTR)"}, +gnQ(){return"Horizontal Cont\xednuo (RTL)"}, +gnR(){return"Vertical Cont\xednuo"}, +gnS(){return"Predefinido"}, +gnT(){return"Horizontal \xfanico (LTR)"}, +gnU(){return"Horizontal \xfanico (RTL)"}, +gnV(){return"Vertical \xfanico"}, +gnW(){return"Webtoon"}, +ghl(){return"Disposi\xe7\xe3o de Navega\xe7\xe3o"}, +gnX(){return"Predefinido"}, +gnY(){return"Desativado"}, +gnZ(){return"Borda"}, +go_(){return"Inverter toque"}, +go0(){return"Kindle-ish"}, +go1(){return"Formato L"}, +go2(){return"Direita para Esquerda"}, +gpk(){return"Overlay inicial do Leitor"}, +gpl(){return"Mostrar t\xedtulo e defini\xe7\xf5es r\xe1pidas ao abrir o cap\xedtulo"}, +gjn(){return"Preenchimento do Leitor"}, +go3(){return"Anima\xe7\xe3o do Scroll"}, +go4(){return"Alternar deslize"}, +go5(){return"Deslizar para mudar Capitulo no leitor"}, +go6(){return"Reddit"}, +gfi(a){return"Recarregar"}, +gpn(a){return"recarregar"}, +gk_(a){return"Remover"}, +gpo(){return"Remover da Biblioteca?"}, +go7(a){return"Reiniciar"}, +go8(){return u.b}, +go9(){return"Restaurar c\xf3pia de seguran\xe7a"}, +goa(){return"C\xf3pia de seguran\xe7a restaurada!"}, +gob(){return"A restaurar c\xf3pia de seguran\xe7a"}, +gfC(a){return"Continuar"}, +gk5(){return"Tentar novamente"}, +gi6(){return"Em execu\xe7\xe3o"}, +giv(a){return"Guardar"}, +glT(){return"Scanlators"}, +gkQ(a){return"Procurar"}, +gkR(){return"\xc0 procura de atualiza\xe7\xf5es"}, +gow(){return"Selecionar no Meio"}, +gox(){return"Selecionar os Proximos 10"}, +goy(){return"Selecionar os n\xe3o lidos"}, +gjz(){return"Servidor"}, +gkS(){return"Porta do Servidor"}, +glU(){return"Porta do Servidor"}, +gkT(){return"URL do Server"}, +glV(){return"Url do server"}, +glW(){return"Vers\xe3o do servidor"}, +gkU(){return"Defini\xe7\xf5es"}, +gkW(a){return"Ordenar"}, +gfS(a){return"Fonte"}, +glZ(){return"Filtro"}, +gm_(){return"Mais recentes"}, +gm0(){return"Popular"}, +gm1(){return"Fontes"}, +gc2(a){return"Inicio"}, +goc(){return"Escuro"}, +god(){return"Claro"}, +goe(){return"Sistema"}, +gog(){return"Hoje"}, +goh(){return"Desinstalar"}, +goi(){return"A Desinstalar"}, +goj(){return"Autor Desconhecido"}, +gol(){return"Manga Desconhecido"}, +gom(){return"Fonte Desconhecida"}, +gk9(){return"N\xe3o lida"}, +gis(a){return"Atualiza\xe7\xe3o"}, +gon(){return"Atualiza\xe7\xe3o Completa"}, +glJ(){return"Atualiza\xe7\xf5es"}, +glK(){return"Resumo de Atualiza\xe7\xf5es"}, +glL(a){return"Atualizando"}, +goo(){return"Nome de Utilizador"}, +op(a,b){return"Vers\xe3o "+b+" disponivel para "+a+"!!"}, +goq(){return"WebView"}, +gor(){return"O que h\xe1 de Novo?"}, +gos(){return"Ontem"}} +A.XH.prototype={ +gl2(){return"\u041f\u0440\u043e \u0437\u0430\u0441\u0442\u043e\u0441\u0443\u043d\u043e\u043a"}, +gki(){return"\u0414\u043e\u0434\u0430\u0442\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u044e"}, +gmg(){return"\u0414\u043e\u0434\u0430\u0442\u0438 \u0434\u043e \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0438"}, +gmi(){return"\u0412\u0441\u0456 \u0421\u043a\u0430\u043d\u043b\u0435\u0439\u0442\u043e\u0440\u0438"}, +gl7(){return"\u041c\u043e\u0432\u0430 \u0437\u0430\u0441\u0442\u043e\u0441\u0443\u043d\u043a\u0443"}, +gl8(){return"\u0422\u0435\u043c\u0430 \u0437\u0430\u0441\u0442\u043e\u0441\u0443\u043d\u043a\u0443"}, +gl9(){return"Tachidesk Sorayomi"}, +gla(a){return"\u0417\u043e\u0432\u043d\u0456\u0448\u043d\u0456\u0439 \u0432\u0438\u0433\u043b\u044f\u0434"}, +glb(){return"\u0422\u0438\u043f \u0430\u0432\u0442\u0435\u043d\u0442\u0438\u0444\u0456\u043a\u0430\u0446\u0456\u0457"}, +gmk(){return"\u041e\u0441\u043d\u043e\u0432\u043d\u0430 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0456\u044f"}, +gml(){return"\u041d\u0435\u043c\u0430\u0454"}, +gkk(){return"\u0420\u0435\u0437\u0435\u0440\u0432\u043d\u0435 \u043a\u043e\u043f\u0456\u044e\u0432\u0430\u043d\u043d\u044f \u0442\u0430 \u0432\u0456\u0434\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f"}, +gmm(){return"\u0417\u043d\u0430\u0447\u043a\u0438"}, +gfU(){return"\u0414\u043e\u0434\u0430\u043d\u043e \u0432 \u0437\u0430\u043a\u043b\u0430\u0434\u043a\u0438"}, +gjL(){return"\u041f\u0435\u0440\u0435\u0433\u043b\u044f\u0434"}, +gj5(){return"\u0427\u0430\u0441 \u0437\u0431\u0456\u0440\u043a\u0438"}, +gmo(){return"\u041a\u0435\u0448 \u043e\u0447\u0438\u0449\u0435\u043d\u043e"}, +gdJ(a){return"\u0421\u043a\u0430\u0441\u0443\u0432\u0430\u0442\u0438"}, +gld(){return"\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u0457"}, +gmq(){return"\u041e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u0457"}, +gfW(a){return"\u041a\u0430\u043d\u0430\u043b"}, +ms(a){return"\u0420\u043e\u0437\u0434\u0456\u043b "+A.i(a)}, +gmt(){return"\u0417\u0430 \u0434\u0430\u0442\u043e\u044e \u043e\u0442\u0440\u0438\u043c\u0430\u043d\u043d\u044f"}, +gmu(){return"\u0417\u0430 \u0434\u0436\u0435\u0440\u0435\u043b\u043e\u043c"}, +gmv(){return"\u0417\u0430 \u0434\u0430\u0442\u043e\u044e \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f"}, +gmw(){return"\u041f\u0435\u0440\u0435\u0432\u0456\u0440\u0438\u0442\u0438 \u043d\u0430\u044f\u0432\u043d\u0456\u0441\u0442\u044c \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u0430"}, +gmx(){return"\u041f\u0435\u0440\u0435\u0432\u0456\u0440\u0438\u0442\u0438 \u043d\u0430\u044f\u0432\u043d\u0456\u0441\u0442\u044c \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u044c"}, +gmy(){return"\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u043a\u0435\u0448"}, +gmz(a){return"\u041a\u043b\u0456\u0454\u043d\u0442"}, +gmA(){return"\u0412\u0435\u0440\u0441\u0456\u044f \u043a\u043b\u0456\u0454\u043d\u0442\u0443"}, +gdV(a){return"\u0417\u0430\u043a\u0440\u0438\u0442\u0438"}, +gh9(a){return"\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e"}, +mD(a){return"'"+a+"' \u0421\u043a\u043e\u043f\u0456\u0439\u043e\u0432\u0430\u043d\u043e!"}, +gmF(){return"\u0420\u0435\u0437\u0435\u0440\u0432\u043d\u0430 \u043a\u043e\u043f\u0456\u044f \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0438 \u044f\u043a \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u0430 \u043a\u043e\u043f\u0456\u044f Tachidesk"}, +gmG(){return"\u0421\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u0443 \u043a\u043e\u043f\u0456\u044e"}, +gle(a){return"\u041e\u0431\u043b\u0456\u043a\u043e\u0432\u0456 \u0434\u0430\u043d\u0456"}, +mH(a){return""+a+" \u0434\u043d\u0456\u0432 \u0442\u043e\u043c\u0443"}, +gjO(){return"\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u044f \u0437\u0430 \u0437\u0430\u043c\u043e\u0432\u0447\u0443\u0432\u0430\u043d\u043d\u044f\u043c \u043f\u0440\u0438 \u0434\u043e\u0434\u0430\u0432\u0430\u043d\u043d\u0456 \u043d\u043e\u0432\u043e\u0457 \u043c\u0430\u043d\u0491\u0438 \u0434\u043e \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0438"}, +gkM(a){return"\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438"}, +gmI(){return"\u0426\u0435 \u043e\u0431'\u0454\u0434\u043d\u0430\u0454 \u0432\u0441\u0456 \u043c\u0430\u043d\u0491\u0438 \u0432 \u0446\u0456\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u0457 \u0437\u0430 \u0437\u0430\u043c\u043e\u0432\u0447\u0443\u0432\u0430\u043d\u043d\u044f\u043c!"}, +gmJ(){return"\u0412\u0438 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u0456?"}, +gj7(){return"Discord"}, +gmL(a){return"\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f"}, +glf(){return"\u0420\u0435\u0436\u0438\u043c \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f"}, +gmM(){return"\u041e\u043f\u0438\u0441\u043e\u0432\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a"}, +gmN(){return"\u0421\u0456\u0442\u043a\u0430"}, +gmO(){return"\u0421\u043f\u0438\u0441\u043e\u043a"}, +gfJ(a){return"\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043e"}, +glg(){return"\u0417\u0430\u0430\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f"}, +gja(){return"\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u044e"}, +gmP(){return"\u041d\u0430\u0437\u0432\u0430 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u0457 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0431\u0443\u0442\u0438 \u043f\u043e\u0440\u043e\u0436\u043d\u044c\u043e\u044e"}, +glh(){return"\u041d\u0435 \u0432\u0434\u0430\u0454\u0442\u044c\u0441\u044f \u0437\u043d\u0430\u0439\u0442\u0438 \u0432\u0438\u0431\u0440\u0430\u043d\u0435 \u0440\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f"}, +gli(){return"\u0424\u0430\u0439\u043b \u043d\u0435 \u0432\u0438\u0431\u0440\u0430\u043d\u043e!"}, +mQ(a){return"\u0411\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430, \u0432\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0444\u0430\u0439\u043b \u0437 \u0440\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f\u043c "+a}, +mR(a){return'\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0432\u0456\u0434\u043a\u0440\u0438\u0442\u0438!\n\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u043d\u043d\u044f "'+a+'" \u0432 \u0431\u0443\u0444\u0435\u0440 \u043e\u0431\u043c\u0456\u043d\u0443'}, +gmS(){return"\u041f\u0430\u0440\u043e\u043b\u044c \u043d\u0435 \u043c\u043e\u0436\u0435 \u0431\u0443\u0442\u0438 \u043f\u043e\u0440\u043e\u0436\u043d\u0456\u043c"}, +gjQ(){return"\u0429\u043e\u0441\u044c \u043f\u0456\u0448\u043b\u043e \u043d\u0435 \u0442\u0430\u043a!"}, +gmT(){return"\u0406\u043c\u2019\u044f \u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0431\u0443\u0442\u0438 \u043f\u043e\u0440\u043e\u0436\u043d\u0456\u043c"}, +gmU(){return"\u0420\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e!"}, +gmV(){return"\u0421\u043f\u0438\u0441\u043e\u043a \u0440\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u044c \u043f\u043e\u0440\u043e\u0436\u043d\u0456\u0439"}, +gmW(a){return"\u0420\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f"}, +ghA(){return"\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f"}, +ghg(a){return"\u0424\u0456\u043b\u044c\u0442\u0440"}, +gn_(a){return"\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e"}, +gkN(){return"\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0456"}, +gkP(){return"GitHub"}, +glQ(){return"\u0413\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u0438\u0439 \u043f\u043e\u0448\u0443\u043a"}, +glR(){return"\u0413\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u0435 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f"}, +gn1(){return"\u0414\u043e\u043f\u043e\u043c\u043e\u0433\u0430"}, +gfL(){return"\u0423 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u0446\u0456"}, +gn2(){return"\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0438"}, +gn3(a){return"\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f"}, +gn4(){return"\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0440\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f"}, +gqX(){return"True Black"}, +glq(a){return"\u041c\u043e\u0432\u0438"}, +gn9(){return"\u041e\u0441\u0442\u0430\u043d\u043d\u0456"}, +ghE(){return"\u0411\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0430"}, +ges(){return"\u041c\u0430\u043d\u0491\u0430"}, +gnb(){return"\u0420\u043e\u0437\u043c\u0456\u0440 \u0441\u0456\u0442\u043a\u0438 \u043c\u0430\u043d\u0491\u0438"}, +gnc(){return"\u0412\u0456\u0434\u0441\u0443\u0442\u043d\u0456 \u0434\u0436\u0435\u0440\u0435\u043b\u0430 \u043c\u0430\u043d\u0491\u0438"}, +gnd(){return"\u0417\u0430 \u0430\u043b\u0444\u0430\u0432\u0456\u0442\u043e\u043c"}, +gne(){return"\u0414\u0430\u0442\u0430 \u0434\u043e\u0434\u0430\u0432\u0430\u043d\u043d\u044f"}, +gnf(){return"\u041e\u0441\u0442\u0430\u043d\u043d\u0454 \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u043d\u0435"}, +gng(){return"\u041d\u0435 \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u043d\u043e"}, +gnh(){return"\u0421\u043a\u0430\u0441\u043e\u0432\u0430\u043d\u043e"}, +gni(){return"\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e"}, +gnj(){return"\u041b\u0456\u0446\u0435\u043d\u0437\u043e\u0432\u0430\u043d\u043e"}, +gnk(){return"\u041d\u0430 \u043f\u0435\u0440\u0435\u0440\u0432\u0456"}, +gnl(){return"\u0412\u0438\u0445\u043e\u0434\u0438\u0442\u044c"}, +gnm(){return"\u041f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u044e \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e"}, +gnn(){return"\u041d\u0435\u0432\u0456\u0434\u043e\u043c\u043e"}, +gnp(){return"\u0412\u0456\u0434\u0441\u0443\u0442\u043d\u0456 \u0440\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f"}, +ghH(){return"\u0412\u0456\u0434\u0441\u0443\u0442\u043d\u0456 \u0442\u0440\u0435\u043a\u0435\u0440\u0438"}, +glw(){return"\u0411\u0456\u043b\u044c\u0448\u0435"}, +gnq(){return"\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0438\u0442\u0438 \u0432\u043d\u0438\u0437"}, +gnr(){return"\u041f\u0435\u0440\u0435\u043c\u0456\u0441\u0442\u0438\u0442\u0438 \u0432\u0433\u043e\u0440\u0443"}, +lx(a,b){return b+": "+a}, +gns(){return"\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u0435 \u043d\u043e\u0432\u0435 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f"}, +pf(a){return"Next: "+a}, +gkA(){return'\u0423 \u0432\u0430\u0441 \u043d\u0435\u043c\u0430\u0454 \u0436\u043e\u0434\u043d\u043e\u0457 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u0457. \n(\u041f\u043e\u0440\u0430\u0434\u0430: \u043d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c \u043a\u043d\u043e\u043f\u043a\u0443 "\u041f\u043b\u044e\u0441", \u0449\u043e\u0431 \u0441\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u044e \u0434\u043b\u044f \u0432\u043f\u043e\u0440\u044f\u0434\u043a\u0443\u0432\u0430\u043d\u043d\u044f \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0438)'}, +gnu(){return"\u0423 \u0432\u0430\u0441 \u043d\u0435\u043c\u0430\u0454 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u0439. \n\u0421\u0442\u0432\u043e\u0440\u0456\u0442\u044c \u0457\u0445 \u0443 \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f\u0445 \u0434\u043b\u044f \u043e\u0440\u0433\u0430\u043d\u0456\u0437\u0430\u0446\u0456\u0457 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0438"}, +gnv(){return"\u0423 \u0446\u0456\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u0457 \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e \u0436\u043e\u0434\u043d\u043e\u0457 \u043c\u0430\u043d\u0491\u0438. \n(\u041f\u043e\u0440\u0430\u0434\u0430: \u043f\u0435\u0440\u0435\u0432\u0456\u0440\u0442\u0435 \u043f\u043e\u0448\u0443\u043a \u0442\u0430 \u0444\u0456\u043b\u044c\u0442\u0440\u0438!)"}, +glz(){return"\u041d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e \u0436\u043e\u0434\u043d\u043e\u0433\u043e \u0440\u043e\u0437\u0434\u0456\u043b\u0443"}, +gnw(){return"\u041d\u0435\u043c\u0430\u0454 \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u044c"}, +gkB(){return"\u041c\u0430\u043d\u0491\u0438 \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e"}, +lA(a){return""+a+" \u0420\u043e\u0437\u0434\u0456\u043b\u0456\u0432"}, +gnx(){return"\u041d\u0456\u0447\u043e\u0433\u043e \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e"}, +glB(){return"\u0414\u0436\u0435\u0440\u0435\u043b \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e"}, +glC(){return"\u0412\u0438 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0454\u0442\u0435 \u043e\u0441\u0442\u0430\u043d\u043d\u044e \u0432\u0435\u0440\u0441\u0456\u044e"}, +gny(){return"\u041e\u043d\u043e\u0432\u043b\u0435\u043d\u044c \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e"}, +gnz(){return"\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 NSFW \u0440\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f \u0442\u0430 \u0434\u0436\u0435\u0440\u0435\u043b\u0430"}, +gnA(){return"18+"}, +gnB(){return"\u0426\u0435 \u043d\u0435 \u0437\u0430\u043f\u043e\u0431\u0456\u0433\u0430\u0454 \u043f\u043e\u044f\u0432\u0456 \u043d\u0435\u043e\u0444\u0456\u0446\u0456\u0439\u043d\u0438\u0445 \u0430\u0431\u043e \u043f\u043e\u0442\u0435\u043d\u0446\u0456\u0439\u043d\u043e \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e \u043f\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0445 \u0440\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u044c, \u044f\u043a\u0456 \u043c\u043e\u0436\u0443\u0442\u044c \u043c\u0456\u0441\u0442\u0438\u0442\u0438 NSFW(18+) \u0432\u043c\u0456\u0441\u0442 \u0432 \u0437\u0430\u0441\u0442\u043e\u0441\u0443\u043d\u043a\u0443"}, +lD(a){return""+a+" \u0412\u0438\u0431\u0440\u0430\u043d\u043e"}, +gjW(){return"\u0417\u0430\u0441\u0442\u0430\u0440\u0456\u043b\u0435"}, +nD(a,b){return"\u0421\u0442\u043e\u0440\u0456\u043d\u043a\u0430: "+b}, +gnF(a){return"\u041f\u0430\u0440\u043e\u043b\u044c"}, +gi0(a){return"\u041f\u0430\u0443\u0437\u0430"}, +gi1(a){return"\u0412 \u043e\u0447\u0456\u043a\u0443\u0432\u0430\u043d\u043d\u0456"}, +pi(a){return"Previous: "+a}, +grj(){return"Quick Search"}, +gnJ(){return'\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u0434\u043e \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u0457 "C"'}, +gnK(){return'\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u0434\u043e \u043c\u0430\u043d\u0491\u0438 "M" \u0443 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u044e "C"'}, +gnL(){return'\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u0434\u043e \u043d\u0430\u0437\u0432\u0438 \u0440\u043e\u0437\u0434\u0456\u043b\u0443 "CN" \u0437 \u043c\u0430\u043d\u0491\u0438 "M" \u0432 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u044e "C"'}, +gnM(){return"\u041f\u043e\u0448\u0443\u043a \u0437\u0430 \u0437\u0430\u043f\u0438\u0442\u043e\u043c X (\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0438 \u0431\u0430\u0437\u0443\u044e\u0442\u044c\u0441\u044f \u043d\u0430 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0456 \u0435\u043a\u0440\u0430\u043d\u0430)"}, +gpj(){return"Tip: Enter '?' to see all commands"}, +gnN(){return'\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u0434\u043e \u0434\u0436\u0435\u0440\u0435\u043b\u0430 "S"'}, +gnO(){return'\u041f\u043e\u0448\u0443\u043a \u043c\u0430\u043d\u0491\u0438 "M" \u0443 \u0434\u0436\u0435\u0440\u0435\u043b\u0456 "S"'}, +glE(){return"\u0427\u0438\u0442\u0430\u0447"}, +gjm(){return"\u0420\u043e\u0437\u043c\u0456\u0440 \u0435\u043a\u0440\u0430\u043d\u043d\u043e\u0457 \u043b\u0443\u043f\u0438"}, +gi4(){return"\u0420\u0435\u0436\u0438\u043c \u0447\u0438\u0442\u0430\u043d\u043d\u044f"}, +gnP(){return"\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0438\u0439 \u0431\u0435\u0437\u043f\u0435\u0440\u0435\u0440\u0432\u043d\u0438\u0439 (\u0437\u043b\u0456\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e)"}, +gnQ(){return"\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0438\u0439 \u0431\u0435\u0437\u043f\u0435\u0440\u0435\u0440\u0432\u043d\u0438\u0439 (\u0441\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0456\u0432\u043e)"}, +gnR(){return"\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0438\u0439 \u0431\u0435\u0437\u043f\u0435\u0440\u0435\u0440\u0432\u043d\u0438\u0439"}, +gnS(){return"\u0417\u0430 \u0437\u0430\u043c\u043e\u0432\u0447\u0443\u0432\u0430\u043d\u043d\u044f\u043c"}, +gnT(){return"\u041e\u0434\u0438\u043d\u043e\u0447\u043d\u0438\u0439 \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0438\u0439 (\u0437\u043b\u0456\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e)"}, +gnU(){return"\u041e\u0434\u0438\u043d\u043e\u0447\u043d\u0438\u0439 \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0438\u0439 (\u0441\u043f\u0440\u0430\u0432\u043e \u043d\u0430\u043b\u0456\u0432\u043e)"}, +gnV(){return"\u041e\u0434\u0438\u043d\u043e\u0447\u043d\u0438\u0439 \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0438\u0439"}, +gnW(){return"Webtoon"}, +ghl(){return"\u041c\u0430\u043a\u0435\u0442 \u043d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0457"}, +gnX(){return"\u0417\u0430 \u0437\u0430\u043c\u043e\u0432\u0447\u0443\u0432\u0430\u043d\u043d\u044f\u043c"}, +gnY(){return"\u0412\u0438\u043c\u043a\u043d\u0435\u043d\u043e"}, +gnZ(){return"\u041a\u0440\u0430\u0439"}, +go_(){return"\u0406\u043d\u0432\u0435\u0440\u0442\u0443\u0432\u0430\u0442\u0438 \u0434\u043e\u0442\u0438\u043a"}, +go0(){return"Kindle-ish"}, +go1(){return"\u0424\u043e\u0440\u043c\u0430 L"}, +go2(){return"\u041f\u0440\u0430\u0432\u043e\u0440\u0443\u0447 \u0456 \u043b\u0456\u0432\u043e\u0440\u0443\u0447"}, +gpk(){return"Reader initial overlay"}, +gpl(){return u.A}, +gjn(){return"\u0417\u0430\u043f\u043e\u0432\u043d\u0435\u043d\u043d\u044f \u0447\u0438\u0442\u0430\u0447\u0430"}, +go3(){return"\u0410\u043d\u0456\u043c\u0430\u0446\u0456\u044f \u043f\u0440\u043e\u043a\u0440\u0443\u0442\u043a\u0438"}, +go4(){return"\u041f\u0440\u043e\u0432\u0435\u0434\u0456\u0442\u044c \u043f\u0430\u043b\u044c\u0446\u0435\u043c, \u0449\u043e\u0431 \u043f\u0435\u0440\u0435\u0433\u043e\u0440\u043d\u0443\u0442\u0438"}, +go5(){return"\u041f\u0440\u043e\u0432\u0435\u0434\u0456\u0442\u044c \u043f\u0430\u043b\u044c\u0446\u0435\u043c, \u0449\u043e\u0431 \u0437\u043c\u0456\u043d\u0438\u0442\u0438 \u0440\u043e\u0437\u0434\u0456\u043b \u0432 \u0447\u0438\u0442\u0430\u0447\u0443"}, +go6(){return"Reddit"}, +gfi(a){return"\u041e\u043d\u043e\u0432\u0438\u0442\u0438"}, +gpn(a){return"Reload"}, +gk_(a){return"Remove"}, +gpo(){return"Remove from Library?"}, +go7(a){return"\u0421\u043a\u0438\u043d\u0443\u0442\u0438"}, +go8(){return"\u0412\u0456\u0434\u043d\u043e\u0432\u0438\u0442\u0438 Tachidesk \u0437 \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0457 \u043a\u043e\u043f\u0456\u0457"}, +go9(){return"\u0412\u0456\u0434\u043d\u043e\u0432\u0438\u0442\u0438 \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u0443 \u043a\u043e\u043f\u0456\u044e"}, +goa(){return"\u0420\u0435\u0437\u0435\u0440\u0432\u043d\u0443 \u043a\u043e\u043f\u0456\u044e \u0432\u0456\u0434\u043d\u043e\u0432\u043b\u0435\u043d\u043e!"}, +gob(){return"\u0412\u0456\u0434\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0457 \u043a\u043e\u043f\u0456\u0457"}, +gfC(a){return"\u0412\u0456\u0434\u043d\u043e\u0432\u0438\u0442\u0438"}, +gk5(){return"\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0438"}, +gi6(){return"\u0417\u0430\u043f\u0443\u0449\u0435\u043d\u043e"}, +giv(a){return"\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438"}, +glT(){return"\u041f\u0435\u0440\u0435\u043a\u043b\u0430\u0434\u0430\u0447\u0456"}, +gkQ(a){return"\u041f\u043e\u0448\u0443\u043a"}, +gkR(){return"\u041f\u043e\u0448\u0443\u043a \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u044c"}, +gow(){return"Select in between"}, +gox(){return"Select next 10"}, +goy(){return"Select Unread"}, +gjz(){return"\u0421\u0435\u0440\u0432\u0435\u0440"}, +gkS(){return"\u041f\u043e\u0440\u0442 \u0441\u0435\u0440\u0432\u0435\u0440\u0430"}, +glU(){return"\u041f\u043e\u0440\u0442 \u0441\u0435\u0440\u0432\u0435\u0440\u0430"}, +gkT(){return"URL \u0441\u0435\u0440\u0432\u0435\u0440\u0430"}, +glV(){return"URL-\u0430\u0434\u0440\u0435\u0441\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0430"}, +glW(){return"\u0412\u0435\u0440\u0441\u0456\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u0430"}, +gkU(){return"\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f"}, +gkW(a){return"\u0421\u043e\u0440\u0442\u0443\u0432\u0430\u0442\u0438"}, +gfS(a){return"\u0414\u0436\u0435\u0440\u0435\u043b\u043e"}, +glZ(){return"\u0424\u0456\u043b\u044c\u0442\u0440"}, +gm_(){return"\u041e\u0441\u0442\u0430\u043d\u043d\u0456"}, +gm0(){return"\u041f\u043e\u043f\u0443\u043b\u044f\u0440\u043d\u0435"}, +gm1(){return"\u0414\u0436\u0435\u0440\u0435\u043b\u0430"}, +gc2(a){return"\u041f\u043e\u0447\u0430\u0442\u0438"}, +goc(){return"\u0422\u0435\u043c\u043d\u0430"}, +god(){return"\u0421\u0432\u0456\u0442\u043b\u0430"}, +goe(){return"\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u0430"}, +gog(){return"\u0421\u044c\u043e\u0433\u043e\u0434\u043d\u0456"}, +goh(){return"\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438"}, +goi(){return"\u0412\u0438\u0434\u0430\u043b\u0435\u043d\u043d\u044f"}, +goj(){return"\u041d\u0435\u0432\u0456\u0434\u043e\u043c\u0438\u0439 \u0430\u0432\u0442\u043e\u0440"}, +gol(){return"\u041d\u0435\u0432\u0456\u0434\u043e\u043c\u0430 \u043c\u0430\u043d\u0491\u0430"}, +gom(){return"\u041d\u0435\u0432\u0456\u0434\u043e\u043c\u0435 \u0434\u0436\u0435\u0440\u0435\u043b\u043e"}, +gk9(){return"\u041d\u0435 \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u043d\u043e"}, +gis(a){return"O\u043d\u043e\u0432\u0438\u0442\u0438"}, +gon(){return"\u041e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e"}, +glJ(){return"\u041e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f"}, +glK(){return"\u041f\u0456\u0434\u0441\u0443\u043c\u043e\u043a \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u044c"}, +glL(a){return"\u041e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f"}, +goo(){return"\u0406\u043c'\u044f \u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430"}, +op(a,b){return"\u0412\u0435\u0440\u0441\u0456\u044f "+b+" \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0434\u043b\u044f "+a+"!!!"}, +goq(){return"Web View"}, +gor(){return"\u0429\u043e \u043d\u043e\u0432\u043e\u0433\u043e?"}, +gos(){return"\u0412\u0447\u043e\u0440\u0430"}} +A.Io.prototype={ +gl2(){return"\u5173\u4e8e"}, +gki(){return"\u6dfb\u52a0\u5206\u7c7b"}, +gmg(){return"\u6dfb\u52a0\u5230\u4e66\u67b6"}, +gmi(){return"\u6240\u6709\u8fc7\u6ee4\u5668"}, +gl7(){return"\u5e94\u7528\u8bed\u8a00"}, +gl8(){return"\u5e94\u7528\u4e3b\u9898"}, +gl9(){return"Sorayomi"}, +gla(a){return"\u5916\u89c2"}, +glb(){return"\u9a8c\u8bc1\u65b9\u5f0f"}, +gmk(){return"\u57fa\u672c\u8ba4\u8bc1"}, +gml(){return"\u65e0"}, +gkk(){return"\u5907\u4efd\u548c\u6062\u590d"}, +gmm(){return"\u5fbd\u6807"}, +gfU(){return"\u5df2\u6dfb\u52a0\u4e66\u7b7e"}, +gjL(){return"\u6d4f\u89c8"}, +gj5(){return"\u6784\u5efa\u65f6\u95f4"}, +gmo(){return"\u5df2\u6e05\u9664\u7f13\u5b58"}, +gdJ(a){return"\u53d6\u6d88"}, +gld(){return"\u5206\u7c7b"}, +gmq(){return"\u66f4\u65b0\u5206\u7c7b"}, +gfW(a){return"\u901a\u9053"}, +ms(a){return"\u7b2c "+A.i(a)+" \u7ae0"}, +gmt(){return"\u6309\u6dfb\u52a0\u65e5\u671f"}, +gmu(){return"\u6309\u6765\u6e90"}, +gmv(){return"\u6309\u4e0a\u4f20\u65e5\u671f"}, +gmw(){return"\u68c0\u67e5\u670d\u52a1\u7aef\u66f4\u65b0"}, +gmx(){return"\u68c0\u67e5\u66f4\u65b0"}, +gmy(){return"\u6e05\u9664\u7f13\u5b58"}, +gmz(a){return"\u5ba2\u6237\u7aef"}, +gmA(){return"\u5ba2\u6237\u7aef\u7248\u672c"}, +gdV(a){return"\u5173\u95ed"}, +gh9(a){return"\u9605\u8bfb\u8fc7"}, +mD(a){return"'"+a+"'\u5df2\u590d\u5236\uff01"}, +gmF(){return"\u53ef\u7528\u4e8e\u8fd8\u539f\u5f53\u524d\u4e66\u67b6\u6570\u636e"}, +gmG(){return"\u521b\u5efa\u5907\u4efd"}, +gle(a){return"\u8ba4\u8bc1"}, +mH(a){return""+a+" \u5929\u524d"}, +gjO(){return"\u9ed8\u8ba4\u6dfb\u52a0\u5230\u6b64\u5e93"}, +gkM(a){return"\u5220\u9664"}, +gmI(){return"\u6b64\u5206\u7c7b\u4e0b\u7684\u6f2b\u753b\u5c06\u8fc1\u79fb\u81f3\u9ed8\u8ba4\u5206\u7c7b\uff01"}, +gmJ(){return"\u786e\u5b9a\uff1f"}, +gj7(){return"DIscord"}, +gmL(a){return"\u663e\u793a"}, +glf(){return"\u663e\u793a\u6a21\u5f0f"}, +gmM(){return"\u8be6\u7ec6\u5217\u8868"}, +gmN(){return"\u7f51\u683c"}, +gmO(){return"\u7b80\u5355\u5217\u8868"}, +gfJ(a){return"\u5df2\u4e0b\u8f7d"}, +glg(){return"\u4e0b\u8f7d"}, +gja(){return"\u7f16\u8f91\u5206\u7c7b"}, +gmP(){return"\u5206\u7c7b\u540d\u4e0d\u80fd\u4e3a\u7a7a"}, +glh(){return"\u6240\u9009\u63d2\u4ef6\u4e0d\u5b58\u5728"}, +gli(){return"\u672a\u9009\u62e9\u4efb\u4f55\u6587\u4ef6\uff01"}, +mQ(a){return"\u8bf7\u9009\u62e9\u63d2\u4ef6 "+a}, +mR(a){return"\u6253\u5f00\u5931\u8d25\n\u8be6\u7ec6\u8bb0\u5f55"+a+"\u5df2\u7ecf\u590d\u5236\u5230\u526a\u8d34\u677f"}, +gmS(){return"\u5bc6\u7801\u4e0d\u80fd\u4e3a\u7a7a"}, +gjQ(){return"\u53d1\u751f\u9519\u8bef\uff01"}, +gmT(){return"\u7528\u6237\u540d\u4e0d\u80fd\u4e3a\u7a7a"}, +gmU(){return"\u63d2\u4ef6\u5b89\u88c5\u5b8c\u6210\uff01"}, +gmV(){return"\u63d2\u4ef6\u5217\u8868\u4e3a\u7a7a"}, +gmW(a){return"\u63d2\u4ef6"}, +ghA(){return"\u66f4\u65b0\u5931\u8d25"}, +ghg(a){return"\u7b5b\u9009"}, +gn_(a){return"\u9605\u8bfb\u8fc7"}, +gkN(){return"\u901a\u7528"}, +gkP(){return"GitHub"}, +glQ(){return"\u5168\u5c40\u641c\u7d22"}, +glR(){return"\u5168\u5c40\u66f4\u65b0"}, +gn1(){return"\u5e2e\u52a9"}, +gfL(){return"\u5728\u4e66\u67b6\u4e2d"}, +gn2(){return"\u5b89\u88c5"}, +gn3(a){return"\u5b89\u88c5\u4e2d"}, +gn4(){return"\u6b63\u5728\u5b89\u88c5"}, +gqX(){return"True Black"}, +glq(a){return"\u8bed\u8a00"}, +gn9(){return"\u6700\u65b0"}, +ghE(){return"\u4e66\u67b6"}, +ges(){return"\u6f2b\u753b"}, +gnb(){return"\u7f51\u683c\u5927\u5c0f"}, +gnc(){return"\u6765\u6e90\u672a\u5b89\u88c5"}, +gnd(){return"\u540d\u79f0"}, +gne(){return"\u6dfb\u52a0\u65e5\u671f"}, +gnf(){return"\u6700\u8fd1\u9605\u8bfb"}, +gng(){return"\u672a\u9605\u8bfb"}, +gnh(){return"\u5df2\u53d6\u6d88"}, +gni(){return"\u5df2\u5b8c\u6210"}, +gnj(){return"\u5df2\u8ba4\u8bc1"}, +gnk(){return"\u65ad\u66f4"}, +gnl(){return"\u8fde\u8f7d\u4e2d"}, +gnm(){return"\u5b8c\u7ed3"}, +gnn(){return"\u672a\u77e5"}, +gnp(){return"\u63d2\u4ef6\u7f3a\u5931"}, +ghH(){return"\u8ddf\u8e2a\u5668\u7f3a\u5931"}, +glw(){return"\u66f4\u591a"}, +gnq(){return"\u79fb\u81f3\u5e95\u90e8"}, +gnr(){return"\u79fb\u81f3\u9876\u90e8"}, +lx(a,b){return b+"\uff1a"+a}, +gns(){return"\u6709\u53ef\u7528\u66f4\u65b0"}, +pf(a){return"\u4e0b\u7ae0\uff1a"+a}, +gkA(){return"\u5c1a\u65e0\u4efb\u4f55\u5206\u7c7b\u3002\n\uff08\u63d0\u793a\uff1a\u8f7b\u89e6\u52a0\u53f7\u6309\u94ae\u521b\u5efa\u4e00\u4e2a\u5206\u7c7b\u6765\u7ba1\u7406\u4f60\u7684\u4e66\u67b6\uff09"}, +gnu(){return"\u5c1a\u65e0\u4efb\u4f55\u5206\u7c7b\u3002\n\u63d0\u793a\uff1a\u8f7b\u89e6\u52a0\u53f7\u6309\u94ae\u521b\u5efa\u4e00\u4e2a\u5206\u7c7b\u6765\u7ba1\u7406\u4f60\u7684\u4e66\u67b6"}, +gnv(){return"\u672a\u627e\u5230\u5339\u914d\u9879\n\u63d0\u793a\uff1a\u68c0\u67e5\u641c\u7d22\u6216\u66f4\u6539\u7b5b\u9009\u6761\u4ef6"}, +glz(){return"\u672a\u627e\u5230\u7ae0\u8282"}, +gnw(){return"\u6ca1\u6709\u4e0b\u8f7d\u4e2d\u7684\u4efb\u52a1"}, +gkB(){return"\u672a\u627e\u5230\u6f2b\u753b"}, +lA(a){return"\u5171 "+a+" \u7ae0"}, +gnx(){return"\u672a\u627e\u5230\u7ed3\u679c"}, +glB(){return"\u7ed3\u679c\u4e3a\u7a7a"}, +glC(){return"\u6b63\u5728\u4f7f\u7528\u6700\u65b0\u7248"}, +gny(){return"\u6700\u8fd1\u6ca1\u6709\u66f4\u65b0"}, +gnz(){return"\u5728\u56fe\u6e90\u548c\u63d2\u4ef6\u4e2d\u663e\u793a"}, +gnA(){return"18+"}, +gnB(){return"\u8fd9\u5e76\u4e0d\u80fd\u9632\u6b62\u975e\u5b98\u65b9\u6216\u53ef\u80fd\u88ab\u9519\u8bef\u6807\u8bb0\u7684\u63d2\u4ef6\u5728\u5e94\u7528\u4e2d\u663e\u793a NSFW(18+) \u5185\u5bb9"}, +lD(a){return"\u5df2\u9009\u62e9 "+a+" \u7ae0"}, +gjW(){return"\u5e9f\u5f03"}, +nD(a,b){return"\u7b2c "+b+" \u9875"}, +gnF(a){return"\u5bc6\u7801"}, +gi0(a){return"\u6682\u505c"}, +gi1(a){return"\u7b49\u5f85\u4e2d"}, +pi(a){return"\u4e0a\u7ae0\uff1a"+a}, +grj(){return"Quick Search"}, +gnJ(){return"\u641c\u7d22\u7c7b\u522b 'C'"}, +gnK(){return"\u5728\u7c7b\u522b 'C' \u4e2d\u641c\u7d22\u6f2b\u753b 'M'"}, +gnL(){return"\u5728\u7c7b\u522b 'C' \u4e2d\u641c\u7d22\u6f2b\u753b 'M' \u7684\u7ae0\u8282 'CN'"}, +gnM(){return"\u641c\u7d22\u67e5\u8be2 X"}, +gpj(){return"\u63d0\u793a\uff1a\u8f93\u5165 '?' \u67e5\u770b\u6240\u6709\u6307\u4ee4"}, +gnN(){return"\u641c\u7d22\u6e90 'S'"}, +gnO(){return"\u5728 'S' \u6e90\u4e2d\u641c\u7d22\u6f2b\u753b 'M'"}, +glE(){return"\u9605\u8bfb\u5668"}, +gjm(){return"\u653e\u5927\u5927\u5c0f"}, +gi4(){return"\u9605\u8bfb\u6a21\u5f0f"}, +gnP(){return"\u4ece\u5de6\u5230\u53f3\uff08\u4e0d\u5206\u9875\uff09"}, +gnQ(){return"\u4ece\u53f3\u5230\u5de6\uff08\u4e0d\u5206\u9875\uff09"}, +gnR(){return"\u4ece\u4e0a\u5230\u4e0b\uff08\u4e0d\u5206\u9875\uff09"}, +gnS(){return"\u9ed8\u8ba4"}, +gnT(){return"\u4ece\u5de6\u5230\u53f3\uff08\u5206\u9875\uff09"}, +gnU(){return"\u4ece\u53f3\u5230\u5de6\uff08\u5206\u9875\uff09"}, +gnV(){return"\u4ece\u4e0a\u5230\u4e0b\uff08\u5206\u9875\uff09"}, +gnW(){return"\u6761\u6f2b"}, +ghl(){return"\u70b9\u6309\u5e03\u5c40"}, +gnX(){return"\u9ed8\u8ba4\u5e03\u5c40"}, +gnY(){return"\u5173\u95ed"}, +gnZ(){return"\u8fb9\u7f18\u6a21\u5f0f"}, +go_(){return"\u53cd\u8f6c\u70b9\u6309\u533a\u57df"}, +go0(){return"Kindle \u6a21\u5f0f"}, +go1(){return"L \u6837\u5f0f"}, +go2(){return"\u5de6\u53f3\u6837\u5f0f"}, +gpk(){return"\u9605\u8bfb\u5668\u521d\u59cb\u8986\u76d6\u5c42"}, +gpl(){return"\u6253\u5f00\u7ae0\u8282\u65f6\u663e\u793a\u6807\u9898\u548c\u8bbe\u7f6e"}, +gjn(){return"\u586b\u5145"}, +go3(){return"\u6eda\u52a8\u52a8\u753b"}, +go4(){return"\u6ed1\u52a8\u5207\u6362"}, +go5(){return"\u6ed1\u52a8\u5207\u6362\u7ae0\u8282"}, +go6(){return"Reddit"}, +gfi(a){return"\u5237\u65b0"}, +gpn(a){return"\u5237\u65b0"}, +gk_(a){return"\u5220\u9664"}, +gpo(){return"\u4ece\u4e66\u67b6\u4e2d\u5220\u9664?"}, +go7(a){return"\u91cd\u7f6e"}, +go8(){return"\u4ece\u5907\u4efd\u6587\u4ef6\u4e2d\u8fd8\u539f"}, +go9(){return"\u8fd8\u539f\u5907\u4efd"}, +goa(){return"\u5b8c\u6210\u5907\u4efd\u6062\u590d\uff01"}, +gob(){return"\u6b63\u5728\u8fd8\u539f"}, +gfC(a){return"\u7ee7\u7eed"}, +gk5(){return"\u91cd\u8bd5"}, +gi6(){return"\u8fd0\u884c\u4e2d"}, +giv(a){return"\u4fdd\u5b58"}, +glT(){return"\u626b\u63cf"}, +gkQ(a){return"\u641c\u7d22"}, +gkR(){return"\u641c\u7d22\u66f4\u65b0\u4e2d"}, +gow(){return"\u9009\u53d6\u533a\u95f4"}, +gox(){return"\u9009\u53d6\u4e0b 10 \u4e2a"}, +goy(){return"\u9009\u53d6\u672a\u8bfb"}, +gjz(){return"\u670d\u52a1\u5668"}, +gkS(){return"\u670d\u52a1\u5668\u7aef\u53e3"}, +glU(){return"\u670d\u52a1\u5668\u7aef\u53e3"}, +gkT(){return"\u670d\u52a1\u5668\u5730\u5740"}, +glV(){return"\u670d\u52a1\u5668\u5730\u5740"}, +glW(){return"\u670d\u52a1\u5668\u7248\u672c"}, +gkU(){return"\u8bbe\u7f6e"}, +gkW(a){return"\u6392\u5e8f"}, +gfS(a){return"\u56fe\u6e90"}, +glZ(){return"\u7b5b\u9009"}, +gm_(){return"\u6700\u8fd1\u66f4\u65b0"}, +gm0(){return"\u5e38\u7528"}, +gm1(){return"\u56fe\u6e90"}, +gc2(a){return"\u5f00\u59cb\u9605\u8bfb"}, +goc(){return"\u6df1\u8272\u6a21\u5f0f"}, +god(){return"\u6d45\u8272\u6a21\u5f0f"}, +goe(){return"\u8ddf\u968f\u7cfb\u7edf"}, +gog(){return"\u4eca\u5929"}, +goh(){return"\u5378\u8f7d"}, +goi(){return"\u6b63\u5728\u5378\u8f7d"}, +goj(){return"\u672a\u77e5\u4f5c\u8005"}, +gol(){return"\u672a\u77e5\u6f2b\u753b"}, +gom(){return"\u672a\u77e5\u56fe\u6e90"}, +gk9(){return"\u672a\u9605\u8bfb"}, +gis(a){return"\u66f4\u65b0"}, +gon(){return"\u66f4\u65b0\u5b8c\u6210"}, +glJ(){return"\u66f4\u65b0"}, +glK(){return"\u66f4\u65b0\u6458\u8981"}, +glL(a){return"\u66f4\u65b0\u4e2d"}, +goo(){return"\u7528\u6237\u540d"}, +op(a,b){return a+" \u6709\u66f4\u65b0\u53ef\u7528 "+b+" \uff01"}, +goq(){return"Web View"}, +gor(){return"\u66f4\u65b0\u4e86\u4ec0\u4e48\uff1f"}, +gos(){return"\u6628\u5929"}} +A.XI.prototype={ +gl2(){return"\u5173\u4e8e"}, +gki(){return"\u6dfb\u52a0\u5206\u7c7b"}, +gmg(){return"\u6dfb\u52a0\u5230\u4e66\u67b6"}, +gmi(){return"\u6240\u6709\u8fc7\u6ee4\u5668"}, +gl7(){return"\u5e94\u7528\u8bed\u8a00"}, +gl8(){return"\u5e94\u7528\u4e3b\u9898"}, +gl9(){return"Sorayomi"}, +gla(a){return"\u5916\u89c2"}, +glb(){return"\u9a8c\u8bc1\u65b9\u5f0f"}, +gmk(){return"\u57fa\u672c\u8ba4\u8bc1"}, +gml(){return"\u65e0"}, +gkk(){return"\u5907\u4efd\u548c\u6062\u590d"}, +gmm(){return"\u5fbd\u6807"}, +gfU(){return"\u5df2\u6dfb\u52a0\u4e66\u7b7e"}, +gjL(){return"\u6d4f\u89c8"}, +gj5(){return"\u6784\u5efa\u65f6\u95f4"}, +gmo(){return"\u5df2\u6e05\u9664\u7f13\u5b58"}, +gdJ(a){return"\u53d6\u6d88"}, +gld(){return"\u5206\u7c7b"}, +gmq(){return"\u66f4\u65b0\u5206\u7c7b"}, +gfW(a){return"\u901a\u9053"}, +ms(a){return"\u7b2c "+A.i(a)+" \u7ae0"}, +gmt(){return"\u6309\u6dfb\u52a0\u65e5\u671f"}, +gmu(){return"\u6309\u6765\u6e90"}, +gmv(){return"\u6309\u4e0a\u4f20\u65e5\u671f"}, +gmw(){return"\u68c0\u67e5\u670d\u52a1\u7aef\u66f4\u65b0"}, +gmx(){return"\u68c0\u67e5\u66f4\u65b0"}, +gmy(){return"\u6e05\u9664\u7f13\u5b58"}, +gmz(a){return"\u5ba2\u6237\u7aef"}, +gmA(){return"\u5ba2\u6237\u7aef\u7248\u672c"}, +gdV(a){return"\u5173\u95ed"}, +gh9(a){return"\u9605\u8bfb\u8fc7"}, +mD(a){return"'"+a+"'\u5df2\u590d\u5236\uff01"}, +gmF(){return"\u53ef\u7528\u4e8e\u8fd8\u539f\u5f53\u524d\u4e66\u67b6\u6570\u636e"}, +gmG(){return"\u521b\u5efa\u5907\u4efd"}, +gle(a){return"\u8ba4\u8bc1"}, +mH(a){return""+a+" \u5929\u524d"}, +gjO(){return"\u9ed8\u8ba4\u6dfb\u52a0\u5230\u6b64\u5e93"}, +gkM(a){return"\u5220\u9664"}, +gmI(){return"\u6b64\u5206\u7c7b\u4e0b\u7684\u6f2b\u753b\u5c06\u8fc1\u79fb\u81f3\u9ed8\u8ba4\u5206\u7c7b\uff01"}, +gmJ(){return"\u786e\u5b9a\uff1f"}, +gj7(){return"DIscord"}, +gmL(a){return"\u663e\u793a"}, +glf(){return"\u663e\u793a\u6a21\u5f0f"}, +gmM(){return"\u8be6\u7ec6\u5217\u8868"}, +gmN(){return"\u7f51\u683c"}, +gmO(){return"\u7b80\u5355\u5217\u8868"}, +gfJ(a){return"\u5df2\u4e0b\u8f7d"}, +glg(){return"\u4e0b\u8f7d"}, +gja(){return"\u7f16\u8f91\u5206\u7c7b"}, +gmP(){return"\u5206\u7c7b\u540d\u4e0d\u80fd\u4e3a\u7a7a"}, +glh(){return"\u6240\u9009\u63d2\u4ef6\u4e0d\u5b58\u5728"}, +gli(){return"\u672a\u9009\u62e9\u4efb\u4f55\u6587\u4ef6\uff01"}, +mQ(a){return"\u8bf7\u9009\u62e9\u63d2\u4ef6 "+a}, +mR(a){return"\u6253\u5f00\u5931\u8d25\n\u8be6\u7ec6\u8bb0\u5f55"+a+"\u5df2\u7ecf\u590d\u5236\u5230\u526a\u8d34\u677f"}, +gmS(){return"\u5bc6\u7801\u4e0d\u80fd\u4e3a\u7a7a"}, +gjQ(){return"\u53d1\u751f\u9519\u8bef\uff01"}, +gmT(){return"\u7528\u6237\u540d\u4e0d\u80fd\u4e3a\u7a7a"}, +gmU(){return"\u63d2\u4ef6\u5b89\u88c5\u5b8c\u6210\uff01"}, +gmV(){return"\u63d2\u4ef6\u5217\u8868\u4e3a\u7a7a"}, +gmW(a){return"\u63d2\u4ef6"}, +ghA(){return"\u66f4\u65b0\u5931\u8d25"}, +ghg(a){return"\u7b5b\u9009"}, +gn_(a){return"\u9605\u8bfb\u8fc7"}, +gkN(){return"\u901a\u7528"}, +gkP(){return"GitHub"}, +glQ(){return"\u5168\u5c40\u641c\u7d22"}, +glR(){return"\u5168\u5c40\u66f4\u65b0"}, +gn1(){return"\u5e2e\u52a9"}, +gfL(){return"\u5728\u4e66\u67b6\u4e2d"}, +gn2(){return"\u5b89\u88c5"}, +gn3(a){return"\u5b89\u88c5\u4e2d"}, +gn4(){return"\u6b63\u5728\u5b89\u88c5"}, +glq(a){return"\u8bed\u8a00"}, +gn9(){return"\u6700\u65b0"}, +ghE(){return"\u4e66\u67b6"}, +ges(){return"\u6f2b\u753b"}, +gnb(){return"\u7f51\u683c\u5927\u5c0f"}, +gnc(){return"\u6765\u6e90\u672a\u5b89\u88c5"}, +gnd(){return"\u540d\u79f0"}, +gne(){return"\u6dfb\u52a0\u65e5\u671f"}, +gnf(){return"\u6700\u8fd1\u9605\u8bfb"}, +gng(){return"\u672a\u9605\u8bfb"}, +gnh(){return"\u5df2\u53d6\u6d88"}, +gni(){return"\u5df2\u5b8c\u6210"}, +gnj(){return"\u5df2\u8ba4\u8bc1"}, +gnk(){return"\u65ad\u66f4"}, +gnl(){return"\u8fde\u8f7d\u4e2d"}, +gnm(){return"\u5b8c\u7ed3"}, +gnn(){return"\u672a\u77e5"}, +gnp(){return"\u63d2\u4ef6\u7f3a\u5931"}, +ghH(){return"\u8ddf\u8e2a\u5668\u7f3a\u5931"}, +glw(){return"\u66f4\u591a"}, +gnq(){return"\u79fb\u81f3\u5e95\u90e8"}, +gnr(){return"\u79fb\u81f3\u9876\u90e8"}, +lx(a,b){return b+"\uff1a"+a}, +gns(){return"\u6709\u53ef\u7528\u66f4\u65b0"}, +gkA(){return"\u5c1a\u65e0\u4efb\u4f55\u5206\u7c7b\u3002\n\uff08\u63d0\u793a\uff1a\u8f7b\u89e6\u52a0\u53f7\u6309\u94ae\u521b\u5efa\u4e00\u4e2a\u5206\u7c7b\u6765\u7ba1\u7406\u4f60\u7684\u4e66\u67b6\uff09"}, +gnu(){return"\u5c1a\u65e0\u4efb\u4f55\u5206\u7c7b\u3002\n\u63d0\u793a\uff1a\u8f7b\u89e6\u52a0\u53f7\u6309\u94ae\u521b\u5efa\u4e00\u4e2a\u5206\u7c7b\u6765\u7ba1\u7406\u4f60\u7684\u4e66\u67b6"}, +gnv(){return"\u672a\u627e\u5230\u5339\u914d\u9879\n\u63d0\u793a\uff1a\u68c0\u67e5\u641c\u7d22\u6216\u66f4\u6539\u7b5b\u9009\u6761\u4ef6"}, +glz(){return"\u672a\u627e\u5230\u7ae0\u8282"}, +gnw(){return"\u6ca1\u6709\u4e0b\u8f7d\u4e2d\u7684\u4efb\u52a1"}, +gkB(){return"\u672a\u627e\u5230\u6f2b\u753b"}, +lA(a){return"\u5171 "+a+" \u7ae0"}, +gnx(){return"\u672a\u627e\u5230\u7ed3\u679c"}, +glB(){return"\u7ed3\u679c\u4e3a\u7a7a"}, +glC(){return"\u6b63\u5728\u4f7f\u7528\u6700\u65b0\u7248"}, +gny(){return"\u6700\u8fd1\u6ca1\u6709\u66f4\u65b0"}, +gnz(){return"\u5728\u56fe\u6e90\u548c\u63d2\u4ef6\u4e2d\u663e\u793a"}, +gnA(){return"18+"}, +gnB(){return"\u8fd9\u5e76\u4e0d\u80fd\u9632\u6b62\u975e\u5b98\u65b9\u6216\u53ef\u80fd\u88ab\u9519\u8bef\u6807\u8bb0\u7684\u63d2\u4ef6\u5728\u5e94\u7528\u4e2d\u663e\u793a NSFW(18+) \u5185\u5bb9"}, +lD(a){return"\u5df2\u9009\u62e9 "+a+" \u7ae0"}, +gjW(){return"\u5e9f\u5f03"}, +nD(a,b){return"\u7b2c "+b+" \u9875"}, +gnF(a){return"\u5bc6\u7801"}, +gi0(a){return"\u6682\u505c"}, +gi1(a){return"\u7b49\u5f85\u4e2d"}, +gnJ(){return"\u641c\u7d22\u7c7b\u522b 'C'"}, +gnK(){return"\u5728\u7c7b\u522b 'C' \u4e2d\u641c\u7d22\u6f2b\u753b 'M'"}, +gnL(){return"\u5728\u7c7b\u522b 'C' \u4e2d\u641c\u7d22\u6f2b\u753b 'M' \u7684\u7ae0\u8282 'CN'"}, +gnM(){return"\u641c\u7d22\u67e5\u8be2 X"}, +gnN(){return"\u641c\u7d22\u6e90 'S'"}, +gnO(){return"\u5728 'S' \u6e90\u4e2d\u641c\u7d22\u6f2b\u753b 'M'"}, +glE(){return"\u9605\u8bfb\u5668"}, +gjm(){return"\u653e\u5927\u5927\u5c0f"}, +gi4(){return"\u9605\u8bfb\u6a21\u5f0f"}, +gnP(){return"\u4ece\u5de6\u5230\u53f3\uff08\u4e0d\u5206\u9875\uff09"}, +gnQ(){return"\u4ece\u53f3\u5230\u5de6\uff08\u4e0d\u5206\u9875\uff09"}, +gnR(){return"\u4ece\u4e0a\u5230\u4e0b\uff08\u4e0d\u5206\u9875\uff09"}, +gnS(){return"\u9ed8\u8ba4"}, +gnT(){return"\u4ece\u5de6\u5230\u53f3\uff08\u5206\u9875\uff09"}, +gnU(){return"\u4ece\u53f3\u5230\u5de6\uff08\u5206\u9875\uff09"}, +gnV(){return"\u4ece\u4e0a\u5230\u4e0b\uff08\u5206\u9875\uff09"}, +gnW(){return"\u6761\u6f2b"}, +ghl(){return"\u70b9\u6309\u5e03\u5c40"}, +gnX(){return"\u9ed8\u8ba4\u5e03\u5c40"}, +gnY(){return"\u5173\u95ed"}, +gnZ(){return"\u8fb9\u7f18\u6a21\u5f0f"}, +go_(){return"\u53cd\u8f6c\u70b9\u6309\u533a\u57df"}, +go0(){return"Kindle \u6a21\u5f0f"}, +go1(){return"L \u6837\u5f0f"}, +go2(){return"\u5de6\u53f3\u6837\u5f0f"}, +gjn(){return"\u586b\u5145"}, +go3(){return"\u6eda\u52a8\u52a8\u753b"}, +go4(){return"\u6ed1\u52a8\u5207\u6362"}, +go5(){return"\u6ed1\u52a8\u5207\u6362\u7ae0\u8282"}, +go6(){return"Reddit"}, +gfi(a){return"\u5237\u65b0"}, +go7(a){return"\u91cd\u7f6e"}, +go8(){return"\u4ece\u5907\u4efd\u6587\u4ef6\u4e2d\u8fd8\u539f"}, +go9(){return"\u8fd8\u539f\u5907\u4efd"}, +goa(){return"\u5b8c\u6210\u5907\u4efd\u6062\u590d\uff01"}, +gob(){return"\u6b63\u5728\u8fd8\u539f"}, +gfC(a){return"\u7ee7\u7eed"}, +gk5(){return"\u91cd\u8bd5"}, +gi6(){return"\u8fd0\u884c\u4e2d"}, +giv(a){return"\u4fdd\u5b58"}, +glT(){return"\u626b\u63cf"}, +gkQ(a){return"\u641c\u7d22"}, +gkR(){return"\u641c\u7d22\u66f4\u65b0\u4e2d"}, +gjz(){return"\u670d\u52a1\u5668"}, +gkS(){return"\u670d\u52a1\u5668\u7aef\u53e3"}, +glU(){return"\u670d\u52a1\u5668\u7aef\u53e3"}, +gkT(){return"\u670d\u52a1\u5668\u5730\u5740"}, +glV(){return"\u670d\u52a1\u5668\u5730\u5740"}, +glW(){return"\u670d\u52a1\u5668\u7248\u672c"}, +gkU(){return"\u8bbe\u7f6e"}, +gkW(a){return"\u6392\u5e8f"}, +gfS(a){return"\u56fe\u6e90"}, +glZ(){return"\u7b5b\u9009"}, +gm_(){return"\u6700\u8fd1\u66f4\u65b0"}, +gm0(){return"\u5e38\u7528"}, +gm1(){return"\u56fe\u6e90"}, +gc2(a){return"\u5f00\u59cb\u9605\u8bfb"}, +goc(){return"\u6df1\u8272\u6a21\u5f0f"}, +god(){return"\u6d45\u8272\u6a21\u5f0f"}, +goe(){return"\u8ddf\u968f\u7cfb\u7edf"}, +gog(){return"\u4eca\u5929"}, +goh(){return"\u5378\u8f7d"}, +goi(){return"\u6b63\u5728\u5378\u8f7d"}, +goj(){return"\u672a\u77e5\u4f5c\u8005"}, +gol(){return"\u672a\u77e5\u6f2b\u753b"}, +gom(){return"\u672a\u77e5\u56fe\u6e90"}, +gk9(){return"\u672a\u9605\u8bfb"}, +gis(a){return"\u66f4\u65b0"}, +gon(){return"\u66f4\u65b0\u5b8c\u6210"}, +glJ(){return"\u66f4\u65b0"}, +glK(){return"\u66f4\u65b0\u6458\u8981"}, +glL(a){return"\u66f4\u65b0\u4e2d"}, +goo(){return"\u7528\u6237\u540d"}, +op(a,b){return a+" \u6709\u66f4\u65b0\u53ef\u7528 "+b+" \uff01"}, +goq(){return"Web View"}, +gor(){return"\u66f4\u65b0\u4e86\u4ec0\u4e48\uff1f"}, +gos(){return"\u6628\u5929"}} +A.XJ.prototype={ +gl2(){return"\u95dc\u65bc"}, +gki(){return"\u65b0\u589e\u5206\u985e"}, +gmg(){return"\u65b0\u589e\u81f3\u66f8\u67b6"}, +gmi(){return"\u6240\u6709\u904e\u6ffe\u5668"}, +gl7(){return"\u61c9\u7528\u7a0b\u5f0f\u8a9e\u8a00"}, +gl8(){return"\u61c9\u7528\u7a0b\u5f0f\u4e3b\u984c"}, +gl9(){return"Tachidesk Sorayomi"}, +gla(a){return"\u5916\u89c0"}, +glb(){return"\u9a57\u8b49\u65b9\u5f0f"}, +gmk(){return"\u57fa\u672c\u9a57\u8b49"}, +gml(){return"\u7121"}, +gkk(){return"\u5099\u4efd\u548c\u6062\u5fa9"}, +gmm(){return"\u5fbd\u7ae0"}, +gfU(){return"\u5df2\u65b0\u589e\u66f8\u7c64"}, +gjL(){return"\u700f\u89bd"}, +gj5(){return"\u69cb\u5efa\u6642\u9593"}, +gmo(){return"\u5df2\u6e05\u9664\u5feb\u53d6"}, +gdJ(a){return"\u53d6\u6d88"}, +gld(){return"\u5206\u985e"}, +gmq(){return"\u66f4\u65b0\u5206\u985e"}, +gfW(a){return"\u901a\u9053"}, +ms(a){return"\u7b2c "+A.i(a)+" \u7ae0"}, +gmt(){return"\u6309\u65b0\u589e\u65e5\u671f"}, +gmu(){return"\u6309\u4f86\u6e90"}, +gmv(){return"\u6309\u4e0a\u50b3\u65e5\u671f"}, +gmw(){return"\u6aa2\u67e5\u4f3a\u670d\u5668\u66f4\u65b0"}, +gmx(){return"\u6aa2\u67e5\u66f4\u65b0"}, +gmy(){return"\u6e05\u9664\u5feb\u53d6"}, +gmz(a){return"\u7528\u6236\u7aef"}, +gmA(){return"\u7528\u6236\u7aef\u7248\u672c"}, +gdV(a){return"\u95dc\u9589"}, +gh9(a){return"\u5df2\u95b1"}, +mD(a){return"'"+a+"' \u5df2\u8907\u88fd\uff01"}, +gmF(){return"\u4ee5 Tachidesk \u5099\u4efd\u6a94\u5099\u4efd\u66f8\u67b6"}, +gmG(){return"\u5efa\u7acb\u5099\u4efd"}, +gle(a){return"\u8a8d\u8b49"}, +mH(a){return""+a+" \u5929\u524d"}, +gjO(){return"\u9810\u8a2d\u65b0\u589e\u81f3\u6b64\u5206\u985e"}, +gkM(a){return"\u79fb\u9664"}, +gmI(){return"\u6b64\u5206\u985e\u4e0b\u7684\u6f2b\u756b\u5c07\u5408\u4f75\u81f3\u9810\u8a2d\u5206\u985e\uff01"}, +gmJ(){return"\u78ba\u5b9a\uff1f"}, +gj7(){return"Discord"}, +gmL(a){return"\u986f\u793a"}, +glf(){return"\u986f\u793a\u6a21\u5f0f"}, +gmM(){return"\u8a73\u7d30\u5217\u8868"}, +gmN(){return"\u7db2\u683c"}, +gmO(){return"\u5217\u8868"}, +gfJ(a){return"\u5df2\u4e0b\u8f09"}, +glg(){return"\u4e0b\u8f09"}, +gja(){return"\u7de8\u8f2f\u5206\u985e"}, +gmP(){return"\u5206\u985e\u540d\u4e0d\u80fd\u70ba\u7a7a"}, +glh(){return"\u6240\u9078\u63d2\u4ef6\u4e0d\u5b58\u5728"}, +gli(){return"\u672a\u9078\u53d6\u4efb\u4f55\u6587\u4ef6\uff01"}, +mQ(a){return"\u8acb\u9078\u64c7\u542b "+a+" \u7684\u63d2\u4ef6"}, +mR(a){return'\u6253\u958b\u5931\u6557\n\u5df2\u8907\u88fd "'+a+'" \u81f3\u526a\u8cbc\u7c3f'}, +gmS(){return"\u5bc6\u78bc\u4e0d\u80fd\u70ba\u7a7a"}, +gjQ(){return"\u767c\u751f\u932f\u8aa4\uff01"}, +gmT(){return"\u7528\u6236\u540d\u4e0d\u80fd\u70ba\u7a7a"}, +gmU(){return"\u63d2\u4ef6\u5b89\u88dd\u5b8c\u6210\uff01"}, +gmV(){return"\u63d2\u4ef6\u5217\u8868\u70ba\u7a7a"}, +gmW(a){return"\u63d2\u4ef6"}, +ghA(){return"\u66f4\u65b0\u5931\u6557"}, +ghg(a){return"\u7be9\u9078"}, +gn_(a){return"\u5df2\u95b1"}, +gkN(){return"\u4e00\u822c"}, +gkP(){return"GitHub"}, +glQ(){return"\u5168\u57df\u641c\u5c0b"}, +glR(){return"\u5168\u57df\u66f4\u65b0"}, +gn1(){return"\u5e6b\u52a9"}, +gfL(){return"\u5728\u66f8\u67b6\u4e2d"}, +gn2(){return"\u5b89\u88dd"}, +gn3(a){return"\u5b89\u88dd\u4e2d"}, +gn4(){return"\u6b63\u5728\u5b89\u88dd"}, +glq(a){return"\u8a9e\u8a00"}, +gn9(){return"\u6700\u65b0"}, +ghE(){return"\u66f8\u67b6"}, +ges(){return"\u6f2b\u756b"}, +gnb(){return"\u7db2\u683c\u5927\u5c0f"}, +gnc(){return"\u6f2b\u756b\u4f86\u6e90\u7f3a\u5931"}, +gnd(){return"\u540d\u7a31"}, +gne(){return"\u65b0\u589e\u65e5\u671f"}, +gnf(){return"\u6700\u8fd1\u95b1\u8b80"}, +gng(){return"\u672a\u95b1\u8b80"}, +gnh(){return"\u5df2\u53d6\u6d88"}, +gni(){return"\u5df2\u5b8c\u6210"}, +gnj(){return"\u5df2\u8a8d\u8b49"}, +gnk(){return"\u65b7\u66f4"}, +gnl(){return"\u9023\u8f09\u4e2d"}, +gnm(){return"\u5b8c\u7d50"}, +gnn(){return"\u672a\u77e5"}, +gnp(){return"\u63d2\u4ef6\u7f3a\u5931"}, +ghH(){return"\u8ddf\u8e2a\u5668\u7f3a\u5931"}, +glw(){return"\u66f4\u591a"}, +gnq(){return"\u79fb\u81f3\u5e95\u90e8"}, +gnr(){return"\u79fb\u81f3\u9802\u90e8"}, +lx(a,b){return b+"\uff1a"+a}, +gns(){return"\u6709\u53ef\u7528\u66f4\u65b0"}, +pf(a){return"\u4e0b\u7ae0\uff1a"+a}, +gkA(){return"\u5c1a\u672a\u6709\u4efb\u4f55\u5206\u985e\u3002\n\uff08\u63d0\u793a\uff1a\u8f15\u89f8\u52a0\u865f\u6309\u9375\u5efa\u7acb\u4e00\u500b\u5206\u985e\u4ee5\u7ba1\u7406\u4f60\u7684\u66f8\u67b6\uff09"}, +gnu(){return"\u5c1a\u672a\u6709\u4efb\u4f55\u5206\u985e\u3002\n\u5728\u8a2d\u5b9a\u5167\u5efa\u7acb\u4e00\u500b\u4ee5\u7ba1\u7406\u4f60\u7684\u66f8\u67b6"}, +gnv(){return"\u672a\u5728\u6b64\u5206\u985e\u627e\u5230\u6f2b\u756b\n\uff08\u63d0\u793a\uff1a\u6aa2\u67e5\u4f60\u7684\u641c\u5c0b\u53ca\u7be9\u9078\u5668\uff01\uff09"}, +glz(){return"\u672a\u627e\u5230\u7ae0\u7bc0"}, +gnw(){return"\u7121\u4e0b\u8f09"}, +gkB(){return"\u672a\u627e\u5230\u6f2b\u756b"}, +lA(a){return"\u5171 "+a+" \u7ae0"}, +gnx(){return"\u672a\u627e\u5230\u7d50\u679c"}, +glB(){return"\u672a\u627e\u5230\u4f86\u6e90"}, +glC(){return"\u6b63\u5728\u4f7f\u7528\u6700\u65b0\u7248\u672c"}, +gny(){return"\u7121\u53ef\u7528\u66f4\u65b0"}, +gnz(){return"\u5728\u63d2\u4ef6\u548c\u4f86\u6e90\u4e2d\u986f\u793a NSFW \u5167\u5bb9"}, +gnA(){return"18+"}, +gnB(){return"\u9019\u4e0d\u80fd\u9632\u6b62\u975e\u5b98\u65b9\u6216\u53ef\u80fd\u88ab\u932f\u8aa4\u6a19\u8a18\u7684\u63d2\u4ef6\u5728\u61c9\u7528\u7a0b\u5f0f\u4e2d\u986f\u793a NSFW(18+) \u5167\u5bb9"}, +lD(a){return"\u5df2\u9078\u64c7 "+a+" \u7ae0"}, +gjW(){return"\u5ee2\u68c4"}, +nD(a,b){return"\u7b2c "+b+" \u9801"}, +gnF(a){return"\u5bc6\u78bc"}, +gi0(a){return"\u66ab\u505c"}, +gi1(a){return"\u7b49\u5f85\u4e2d"}, +pi(a){return"\u4e0a\u7ae0\uff1a"+a}, +gnJ(){return"\u641c\u5c0b\u5206\u985e 'C'"}, +gnK(){return"\u5728\u5206\u985e 'C' \u4e2d\u641c\u5c0b\u6f2b\u756b 'M'"}, +gnL(){return"\u5728\u5206\u985e 'C' \u4e2d\u641c\u7d22\u6f2b\u756b 'M' \u7684\u7ae0\u7bc0\u540d 'CN'"}, +gnM(){return"\u641c\u5c0b\u67e5\u8a62 X \uff08\u7d50\u679c\u57fa\u65bc\u986f\u793a\u4e2d\u5167\u5bb9\uff09"}, +gpj(){return"\u63d0\u793a\uff1a\u8f38\u5165 '?' \u4ee5\u67e5\u770b\u6240\u6709\u6307\u4ee4"}, +gnN(){return"\u641c\u5c0b\u4f86\u6e90 'S'"}, +gnO(){return"\u5728\u4f86\u6e90 'S' \u4e2d\u641c\u5c0b\u6f2b\u756b 'M'"}, +glE(){return"\u95b1\u8b80\u5668"}, +gjm(){return"\u653e\u5927\u5927\u5c0f"}, +gi4(){return"\u95b1\u8b80\u6a21\u5f0f"}, +gnP(){return"\u9023\u7e8c\u5de6\u81f3\u53f3"}, +gnQ(){return"\u9023\u7e8c\u53f3\u81f3\u5de6"}, +gnR(){return"\u9023\u7e8c\u4e0a\u81f3\u4e0b"}, +gnS(){return"\u9810\u8a2d"}, +gnT(){return"\u5206\u9801\u5de6\u81f3\u53f3"}, +gnU(){return"\u5206\u9801\u53f3\u81f3\u5de6"}, +gnV(){return"\u5206\u9801\u4e0a\u81f3\u4e0b"}, +gnW(){return"\u689d\u6f2b"}, +ghl(){return"\u624b\u52e2\u4f48\u5c40"}, +gnX(){return"\u9810\u8a2d"}, +gnY(){return"\u505c\u7528"}, +gnZ(){return"\u908a\u7de3"}, +go_(){return"\u53cd\u8f49\u624b\u52e2\u5340\u57df"}, +go0(){return"Kindle \u6a21\u5f0f"}, +go1(){return"L \u5f62"}, +go2(){return"\u5de6\u53f3"}, +gpk(){return"\u95b1\u8b80\u5668\u8d77\u59cb\u8986\u84cb\u5c64"}, +gpl(){return"\u6253\u958b\u7ae0\u7bc0\u6642\u986f\u793a\u6a19\u984c\u548c\u8a2d\u5b9a"}, +gjn(){return"\u586b\u5145"}, +go3(){return"\u6ed1\u52d5\u52d5\u756b"}, +go4(){return"\u6ed1\u52d5\u5207\u63db"}, +go5(){return"\u6ed1\u52d5\u5207\u63db\u7ae0\u7bc0"}, +go6(){return"Reddit"}, +gfi(a){return"\u91cd\u65b0\u6574\u7406"}, +gpn(a){return"\u91cd\u65b0\u6574\u7406"}, +gk_(a){return"\u79fb\u9664"}, +gpo(){return"\u5f9e\u66f8\u67b6\u4e2d\u79fb\u9664\uff1f"}, +go7(a){return"\u91cd\u8a2d"}, +go8(){return"\u5f9e Tachidesk \u5099\u4efd\u4e2d\u9084\u539f"}, +go9(){return"\u9084\u539f\u5099\u4efd"}, +goa(){return"\u5099\u4efd\u9084\u539f\u5df2\u5b8c\u6210\uff01"}, +gob(){return"\u6b63\u5728\u9084\u539f"}, +gfC(a){return"\u7e7c\u7e8c"}, +gk5(){return"\u91cd\u8a66"}, +gi6(){return"\u904b\u4f5c\u4e2d"}, +giv(a){return"\u5132\u5b58"}, +glT(){return"\u6383\u7784"}, +gkQ(a){return"\u641c\u5c0b"}, +gkR(){return"\u641c\u5c0b\u66f4\u65b0\u4e2d"}, +gow(){return"\u9078\u53d6\u5340\u9593"}, +gox(){return"\u9078\u53d6\u4e0b 10 \u500b"}, +goy(){return"\u9078\u53d6\u672a\u8b80"}, +gjz(){return"\u4f3a\u670d\u5668"}, +gkS(){return"\u4f3a\u670d\u5668\u57e0"}, +glU(){return"\u4f3a\u670d\u5668\u57e0"}, +gkT(){return"\u4f3a\u670d\u5668\u7db2\u5740"}, +glV(){return"\u4f3a\u670d\u5668\u7db2\u5740"}, +glW(){return"\u4f3a\u670d\u5668\u7248\u672c"}, +gkU(){return"\u8a2d\u5b9a"}, +gkW(a){return"\u6392\u5e8f"}, +gfS(a){return"\u4f86\u6e90"}, +glZ(){return"\u7be9\u9078"}, +gm_(){return"\u6700\u65b0"}, +gm0(){return"\u71b1\u9580"}, +gm1(){return"\u4f86\u6e90"}, +gc2(a){return"\u958b\u59cb\u95b1\u8b80"}, +goc(){return"\u6df1\u8272"}, +god(){return"\u4eae\u8272"}, +goe(){return"\u7cfb\u7d71"}, +gog(){return"\u4eca\u5929"}, +goh(){return"\u89e3\u9664\u5b89\u88dd"}, +goi(){return"\u6b63\u5728\u89e3\u9664\u5b89\u88dd"}, +goj(){return"\u672a\u77e5\u4f5c\u8005"}, +gol(){return"\u672a\u77e5\u6f2b\u756b"}, +gom(){return"\u672a\u77e5\u4f86\u6e90"}, +gk9(){return"\u672a\u95b1\u8b80"}, +gis(a){return"\u66f4\u65b0"}, +gon(){return"\u66f4\u65b0\u5df2\u5b8c\u6210"}, +glJ(){return"\u66f4\u65b0"}, +glK(){return"\u66f4\u65b0\u6982\u8981"}, +glL(a){return"\u66f4\u65b0\u4e2d"}, +goo(){return"\u7528\u6236\u540d"}, +op(a,b){return a+" \u6709\u66f4\u65b0\u53ef\u7528 "+b+"\uff01"}, +goq(){return"Web View"}, +gor(){return"\u66f4\u65b0\u4e86\u4ec0\u9ebc\uff1f"}, +gos(){return"\u6628\u5929"}} +A.ia.prototype={} +A.ib.prototype={ +M6(){}, +m(){}, +Ah(a){}, +ad(a){var s +a.$0() +s=this.a +s.jS$=!1 +s.el()}} +A.mC.prototype={} +A.a2D.prototype={ +bz(a,b){var s,r,q,p,o=this +if(o.ib$==null){s=new A.mC(A.bxh(o,a),t.H_) +o.ib$=s +r=o.jR$ +r.z8(r.c,s,!1)}else{s=A.p(a) +r=o.ib$.a.c +r.toString +if(s!==A.p(r)){s=o.ib$.a.c +s.toString +q=A.p(s) +A.bmT(o) +throw A.c(A.R("Type mismatch between hooks:\n- previous hook: "+q.l(0)+"\n- new hook: "+A.p(a).l(0)+"\n"))}else{s=o.ib$.a.c +s.toString +if(a!==s)if(A.bIP(s,a)){r=o.ib$.a +r.c=a +r.Ah(s)}else{s=o.h_$ +if(s==null)s=o.h_$=new A.jU(t.n_) +r=o.ib$.a +s.z8(s.c,new A.mC(r,t.H_),!1) +r=o.ib$ +r.toString +r.a=A.bxh(o,a)}}}p=b.a(o.ib$.a.A(o)) +s=o.ib$ +o.ib$=s.gnt(s) +return p}} +A.beD.prototype={ +$1(a){return a.a.$0()}, +$S:239} +A.a2E.prototype={ +bI(a){return new A.anj(null,new A.jU(t.n_),new A.jU(t.gL),null,!1,null,!1,!1,this,B.an)}} +A.anj.prototype={} +A.ahC.prototype={} +A.ahB.prototype={} +A.aqr.prototype={ +bZ(a,b){this.jS$=!1 +this.ajQ(0,b)}, +ca(){this.jS$=!1 +this.HJ()}, +aO(){var s,r,q=this,p=q.jS$!==!0||q.tw$.fa(0,new A.beD()) +q.jS$=null +q.tw$.ab(0) +if(!p){r=q.pS$ +r.toString +return r}r=q.jR$ +q.ib$=r.b===0?null:r.gO(r) +$.bb=q +try{q.pS$=q.ajP()}finally{q.jS$=null +A.bmT(q) +$.bb=null +r=q.h_$ +if(r!=null&&!r.gak(r)){for(r=q.h_$,s=r.gX(r);s!=null;s=s.gBi())s.a.m() +q.h_$=null}}r=q.pS$ +r.toString +return r}, +aj(a){return this.Zq(null,a)}, +kJ(){var s,r,q,p,o,n,m,l=null +this.yC() +p=this.jR$ +if(!p.gak(p))for(s=p.gX(p),p=t.f6;s!=null;s=s.gBi())try{s.a.m()}catch(o){r=A.ak(o) +q=A.aJ(o) +n=A.p(s).l(0) +m=$.jB() +if(m!=null)m.$1(new A.cg(r,q,"hooks library",new A.hI("while disposing "+n,!1,!0,l,l,l,!1,l,B.bq,B.aW,"",!0,!1,l,B.eh,p),l,!1))}}, +fd(){var s,r,q,p,o,n,m,l,k,j=null +for(p=this.jR$,p=A.bmp(p,p.$ti.c),o=t.f6,n=p.$ti.c;p.v();){m=p.c +s=m==null?n.a(m):m +try{s.toString}catch(l){r=A.ak(l) +q=A.aJ(l) +m=A.p(s).l(0) +k=$.jB() +if(k!=null)k.$1(new A.cg(r,q,"hooks library",new A.hI("while deactivating "+m,!1,!0,j,j,j,!1,j,B.bq,B.aW,"",!0,!1,j,B.eh,o),j,!1))}}this.ON()}} +A.Vc.prototype={ +a8(){return new A.aoT()}} +A.aoT.prototype={} +A.Qm.prototype={ +a8(){return new A.ae2()}} +A.ae2.prototype={ +gI0(){var s,r,q,p,o,n,m,l,k=this,j=k.d +if(j===$){s=k.c +r=s.w +q=s.b +p=s.c +o=s.d +n=s.f +m=s.r +l=A.bx(s.x,o,q,n,p,m,s.e,r) +k.d!==$&&A.aq() +k.d=l +j=l}return j}, +Ah(a){var s,r=this +r.OQ(a) +if(r.c.w!==a.w)r.gI0().adv(r.c.w) +s=r.c.b +if(s.a!==a.b.a)r.gI0().e=r.c.b}, +A(a){return this.gI0()}, +m(){this.gI0().m()}} +A.Ug.prototype={ +a8(){return new A.aob()}} +A.aob.prototype={ +A2(a){var s=this.a +s.toString +return this.d=new A.zI(a,"created by "+s.l(0))}, +m(){}, +A(a){var s=this.d +if(s!=null)s.sMA(0,!A.ab2(a)) +return this}, +$iaP:1} +A.RR.prototype={ +a8(){return new A.ahe()}} +A.ahe.prototype={ +gQB(){var s,r,q=this.d +if(q===$){s=this.c +r=A.tL(!0,s.b,!0,!0,s.c,s.d,!1) +q!==$&&A.aq() +this.d=r +q=r}return q}, +Ah(a){var s,r=this,q=r.gQB() +r.c.toString +q.skV(!1) +r.c.toString +q.ser(!0) +r.c.toString +q.sx6(!0) +s=r.c +q.f=s.c +q.r=s.d}, +A(a){return this.gQB()}, +m(){return this.gQB().m()}} +A.Aj.prototype={ +a8(){return new A.GM()}} +A.GM.prototype={ +M6(){this.Zu() +this.c.b.P(0,this.gD8())}, +Ah(a){var s,r,q=this +q.OQ(a) +s=a.b +if(q.c.b!==s){r=q.gD8() +s.H(0,r) +q.c.b.P(0,r)}}, +A(a){}, +RC(){this.ad(new A.b7N())}, +m(){this.c.b.H(0,this.gD8())}} +A.b7N.prototype={ +$0(){}, +$S:0} +A.T6.prototype={ +a8(){return new A.ajU()}} +A.ajU.prototype={ +gqH(a){var s,r,q=this.d +if(q===$){s=this.c +r=A.bld(s.b,!0,s.d) +q!==$&&A.aq() +this.d=r +q=r}return q}, +A(a){return this.gqH(this)}, +m(){return this.gqH(this).m()}} +A.yp.prototype={} +A.biq.prototype={ +$0(){return new A.yp(this.a,this.b.h("yp<0>"))}, +$S(){return this.b.h("yp<0>()")}} +A.bip.prototype={ +$0(){return this.a}, +$S(){return this.b.h("0()")}} +A.hz.prototype={ +a8(){return new A.SM(this.$ti.h("SM<1>"))}, +aQu(){return this.b.$0()}} +A.SM.prototype={ +A(a){var s,r=this,q=r.d +if(q===$){s=r.c.aQu() +r.d!==$&&A.aq() +r.d=s +q=s}return q}} +A.dK.prototype={ +a8(){return new A.agy()}, +a9N(a){return this.b.$0()}} +A.agy.prototype={ +M6(){this.Zu() +this.d=this.c.a9N(0)}, +Ah(a){var s,r=this +r.OQ(a) +if(r.c.a==null){s=r.d +if(s!=null)s.$0() +r.d=r.c.a9N(0)}}, +A(a){}, +m(){var s=this.d +return s==null?null:s.$0()}} +A.dc.prototype={ +a8(){return new A.Hq(this.$ti.h("Hq<1>"))}} +A.Hq.prototype={ +ga5t(){var s,r=this,q=r.d +if(q===$){s=new A.bF(r.c.b,$.aH(),r.$ti.h("bF<1>")) +s.P(0,r.gD8()) +r.d!==$&&A.aq() +r.d=s +q=s}return q}, +m(){var s=this.ga5t() +s.ok$=$.aH() +s.k4$=0}, +A(a){return this.ga5t()}, +RC(){this.ad(new A.bcw())}} +A.bcw.prototype={ +$0(){}, +$S:0} +A.UE.prototype={ +a8(){return new A.anB()}, +gt(a){return this.b}} +A.anB.prototype={ +gqH(a){var s,r,q,p=this,o=p.d +if(o===$){s=p.c +r=s.b +q=A.buy(null,s.d,r,s.c) +p.d!==$&&A.aq() +p.d=q +o=q}return o}, +A(a){return this.gqH(this)}, +m(){return this.gqH(this).m()}} +A.mH.prototype={ +a8(){return new A.anR()}} +A.anR.prototype={ +ga0E(){var s,r,q=this.d +if(q===$){s=this.c.b +s=s==null?B.OX:new A.eQ(s,B.iw,B.ca) +r=new A.rh(s,$.aH()) +q!==$&&A.aq() +q=this.d=r}return q}, +A(a){return this.ga0E()}, +m(){var s=this.ga0E() +s.ok$=$.aH() +s.k4$=0 +return null}} +A.a2j.prototype={$iaA:1} +A.ahq.prototype={ +xB(a){return $.boV().p(0,a.ge0(a))}, +na(a,b){return $.bP0.cK(0,b,new A.b6p(b))}, +w0(a){return!1}, +l(a){return"GlobalCupertinoLocalizations.delegate("+$.boV().a+" locales)"}} +A.b6p.prototype={ +$0(){var s,r,q,p,o,n,m,l,k,j,i +A.bz0() +s=this.a +r=A.j3(s.t5("_")) +q=A.b6("fullYearFormat") +p=A.b6("dayFormat") +o=A.b6("mediumDateFormat") +n=A.b6("singleDigitHourFormat") +m=A.b6("singleDigitMinuteFormat") +l=A.b6("doubleDigitMinuteFormat") +k=A.b6("singleDigitSecondFormat") +j=A.b6("decimalFormat") +i=new A.b6q(q,p,o,n,m,l,k,j) +if(A.a0y(r))i.$1(r) +else if(A.a0y(s.ge0(s)))i.$1(s.ge0(s)) +else i.$1(null) +s=A.bVj(s,q.aH(),p.aH(),o.aH(),n.aH(),m.aH(),l.aH(),k.aH(),j.aH()) +s.toString +return new A.cC(s,t.u4)}, +$S:606} +A.b6q.prototype={ +$1(a){var s=this +s.a.b=A.ayf(a) +s.b.b=A.bGv(a) +s.c.b=A.aye(a) +s.d.b=A.bqA("HH",a) +s.e.b=A.bGw(a) +s.f.b=A.bqA("mm",a) +s.r.b=A.bGx(a) +s.w.b=A.aMp(a)}, +$S:44} +A.ZF.prototype={ +gZ(){return"Kopieer"}, +ga_(){return"Knip"}, +gK(){return"Look Up"}, +ga0(){return"Plak"}, +ga1(){return"Search Web"}, +gM(){return"Kies alles"}, +gbH(){return"Share..."}} +A.ZG.prototype={ +gZ(){return"\u1245\u12f3"}, +ga_(){return"\u1241\u1228\u1325"}, +gK(){return"Look Up"}, +ga0(){return"\u1208\u1325\u134d"}, +ga1(){return"Search Web"}, +gM(){return"\u1201\u1209\u1295\u121d \u121d\u1228\u1325"}, +gbH(){return"Share..."}} +A.ZH.prototype={ +gZ(){return"\u0646\u0633\u062e"}, +ga_(){return"\u0642\u0635"}, +gK(){return"Look Up"}, +ga0(){return"\u0644\u0635\u0642"}, +ga1(){return"Search Web"}, +gM(){return"\u0627\u062e\u062a\u064a\u0627\u0631 \u0627\u0644\u0643\u0644"}, +gbH(){return"Share..."}} +A.ZI.prototype={ +gZ(){return"\u09aa\u09cd\u09f0\u09a4\u09bf\u09b2\u09bf\u09aa\u09bf \u0995\u09f0\u0995"}, +ga_(){return"\u0995\u09be\u099f \u0995\u09f0\u0995"}, +gK(){return"Look Up"}, +ga0(){return"\u09aa\u09c7'\u09b7\u09cd\u099f \u0995\u09f0\u0995"}, +ga1(){return"Search Web"}, +gM(){return"\u09b8\u0995\u09b2\u09cb \u09ac\u09be\u099b\u09a8\u09bf \u0995\u09f0\u0995"}, +gbH(){return"Share..."}} +A.ZJ.prototype={ +gZ(){return"Kopyalay\u0131n"}, +ga_(){return"K\u0259sin"}, +gK(){return"Look Up"}, +ga0(){return"Yerl\u0259\u015fdirin"}, +ga1(){return"Search Web"}, +gM(){return"Ham\u0131s\u0131n\u0131 se\xe7in"}, +gbH(){return"Share..."}} +A.ZK.prototype={ +gZ(){return"\u041a\u0430\u043f\u0456\u0440\u0430\u0432\u0430\u0446\u044c"}, +ga_(){return"\u0412\u044b\u0440\u0430\u0437\u0430\u0446\u044c"}, +gK(){return"Look Up"}, +ga0(){return"\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c"}, +ga1(){return"Search Web"}, +gM(){return"\u0412\u044b\u0431\u0440\u0430\u0446\u044c \u0443\u0441\u0435"}, +gbH(){return"Share..."}} +A.ZL.prototype={ +gZ(){return"\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435"}, +ga_(){return"\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435"}, +gK(){return"Look Up"}, +ga0(){return"\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435"}, +ga1(){return"Search Web"}, +gM(){return"\u0418\u0437\u0431\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u0438"}, +gbH(){return"Share..."}} +A.ZM.prototype={ +gZ(){return"\u0995\u09aa\u09bf \u0995\u09b0\u09c1\u09a8"}, +ga_(){return"\u0995\u09be\u099f \u0995\u09b0\u09c1\u09a8"}, +gK(){return"Look Up"}, +ga0(){return"\u09aa\u09c7\u09b8\u09cd\u099f \u0995\u09b0\u09c1\u09a8"}, +ga1(){return"Search Web"}, +gM(){return"\u09b8\u09ac \u09ac\u09c7\u099b\u09c7 \u09a8\u09bf\u09a8"}, +gbH(){return"Share..."}} +A.ZN.prototype={ +gZ(){return"Kopiraj"}, +ga_(){return"Izre\u017ei"}, +gK(){return"Pogled prema gore"}, +ga0(){return"Zalijepi"}, +ga1(){return"Search Web"}, +gM(){return"Odaberi sve"}, +gbH(){return"Share..."}} +A.ZO.prototype={ +gZ(){return"Copia"}, +ga_(){return"Retalla"}, +gK(){return"Look Up"}, +ga0(){return"Enganxa"}, +ga1(){return"Search Web"}, +gM(){return"Selecciona-ho tot"}, +gbH(){return"Share..."}} +A.ZP.prototype={ +gZ(){return"Kop\xedrovat"}, +ga_(){return"Vyjmout"}, +gK(){return"Look Up"}, +ga0(){return"Vlo\u017eit"}, +ga1(){return"Search Web"}, +gM(){return"Vybrat v\u0161e"}, +gbH(){return"Share..."}} +A.ZQ.prototype={ +gZ(){return"Cop\xefo"}, +ga_(){return"Torri"}, +gK(){return"Look Up"}, +ga0(){return"Gludo"}, +ga1(){return"Search Web"}, +gM(){return"Dewis y Cyfan"}, +gbH(){return"Share..."}} +A.ZR.prototype={ +gZ(){return"Kopi\xe9r"}, +ga_(){return"Klip"}, +gK(){return"Look Up"}, +ga0(){return"Inds\xe6t"}, +ga1(){return"Search Web"}, +gM(){return"V\xe6lg alle"}, +gbH(){return"Share..."}} +A.Jo.prototype={ +gZ(){return"Kopieren"}, +ga_(){return"Ausschneiden"}, +gK(){return"Look Up"}, +ga0(){return"Einsetzen"}, +ga1(){return"Search Web"}, +gM(){return"Alles ausw\xe4hlen"}, +gbH(){return"Share..."}} +A.ZS.prototype={} +A.ZT.prototype={ +gZ(){return"\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae"}, +ga_(){return"\u0391\u03c0\u03bf\u03ba\u03bf\u03c0\u03ae"}, +gK(){return"Look Up"}, +ga0(){return"\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7"}, +ga1(){return"Search Web"}, +gM(){return"\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03cc\u03bb\u03c9\u03bd"}, +gbH(){return"Share..."}} +A.Jp.prototype={ +gZ(){return"Copy"}, +ga_(){return"Cut"}, +gK(){return"Look Up"}, +ga0(){return"Paste"}, +ga1(){return"Search Web"}, +gM(){return"Select All"}, +gbH(){return"Share..."}} +A.ZU.prototype={ +gK(){return"Look up"}, +gM(){return"Select all"}} +A.ZV.prototype={ +gM(){return"Select all"}} +A.ZW.prototype={ +gK(){return"Look up"}, +gM(){return"Select all"}} +A.ZX.prototype={ +gK(){return"Look up"}, +gM(){return"Select all"}} +A.ZY.prototype={ +gK(){return"Look up"}, +gM(){return"Select all"}} +A.ZZ.prototype={ +gK(){return"Look up"}, +gM(){return"Select all"}} +A.a__.prototype={ +gK(){return"Look up"}, +gM(){return"Select all"}} +A.a_0.prototype={ +gK(){return"Look up"}, +gM(){return"Select all"}} +A.Jq.prototype={ +gZ(){return"Copiar"}, +ga_(){return"Cortar"}, +gK(){return"Look Up"}, +ga0(){return"Pegar"}, +ga1(){return"Search Web"}, +gM(){return"Seleccionar todo"}, +gbH(){return"Share..."}} +A.a_1.prototype={ +gK(){return"Mirar hacia arriba"}, +gM(){return"Seleccionar todos"}} +A.a_2.prototype={ +gK(){return"Mirar hacia arriba"}, +gM(){return"Seleccionar todos"}} +A.a_3.prototype={ +gK(){return"Mirar hacia arriba"}, +gM(){return"Seleccionar todos"}} +A.a_4.prototype={ +gK(){return"Mirar hacia arriba"}, +gM(){return"Seleccionar todos"}} +A.a_5.prototype={ +gK(){return"Mirar hacia arriba"}, +gM(){return"Seleccionar todos"}} +A.a_6.prototype={ +gK(){return"Mirar hacia arriba"}, +gM(){return"Seleccionar todos"}} +A.a_7.prototype={ +gK(){return"Mirar hacia arriba"}, +gM(){return"Seleccionar todos"}} +A.a_8.prototype={ +gK(){return"Mirar hacia arriba"}, +gM(){return"Seleccionar todos"}} +A.a_9.prototype={ +gK(){return"Mirar hacia arriba"}, +gM(){return"Seleccionar todos"}} +A.a_a.prototype={ +gK(){return"Mirar hacia arriba"}, +gM(){return"Seleccionar todos"}} +A.a_b.prototype={ +gK(){return"Mirar hacia arriba"}, +gM(){return"Seleccionar todos"}} +A.a_c.prototype={ +gK(){return"Mirar hacia arriba"}, +gM(){return"Seleccionar todos"}} +A.a_d.prototype={ +gK(){return"Mirar hacia arriba"}, +gM(){return"Seleccionar todos"}} +A.a_e.prototype={ +gK(){return"Mirar hacia arriba"}, +gM(){return"Seleccionar todos"}} +A.a_f.prototype={ +gK(){return"Mirar hacia arriba"}, +gM(){return"Seleccionar todos"}} +A.a_g.prototype={ +gK(){return"Mirar hacia arriba"}, +gM(){return"Seleccionar todos"}} +A.a_h.prototype={ +gK(){return"Mirar hacia arriba"}, +gM(){return"Seleccionar todos"}} +A.a_i.prototype={ +gK(){return"Mirar hacia arriba"}, +gM(){return"Seleccionar todos"}} +A.a_j.prototype={ +gK(){return"Mirar hacia arriba"}, +gM(){return"Seleccionar todos"}} +A.a_k.prototype={ +gK(){return"Mirar hacia arriba"}, +gM(){return"Seleccionar todos"}} +A.a_l.prototype={ +gZ(){return"Kopeeri"}, +ga_(){return"L\xf5ika"}, +gK(){return"Look Up"}, +ga0(){return"Kleebi"}, +ga1(){return"Search Web"}, +gM(){return"Vali k\xf5ik"}, +gbH(){return"Share..."}} +A.a_m.prototype={ +gZ(){return"Kopiatu"}, +ga_(){return"Ebaki"}, +gK(){return"Look Up"}, +ga0(){return"Itsatsi"}, +ga1(){return"Search Web"}, +gM(){return"Hautatu dena"}, +gbH(){return"Share..."}} +A.a_n.prototype={ +gZ(){return"\u06a9\u067e\u06cc"}, +ga_(){return"\u0628\u0631\u0634"}, +gK(){return"Look Up"}, +ga0(){return"\u062c\u0627\u06cc\u200c\u06af\u0630\u0627\u0631\u06cc"}, +ga1(){return"Search Web"}, +gM(){return"\u0627\u0646\u062a\u062e\u0627\u0628 \u0647\u0645\u0647"}, +gbH(){return"Share..."}} +A.a_o.prototype={ +gZ(){return"Kopioi"}, +ga_(){return"Leikkaa"}, +gK(){return"Look Up"}, +ga0(){return"Liit\xe4"}, +ga1(){return"Search Web"}, +gM(){return"Valitse kaikki"}, +gbH(){return"Share..."}} +A.a_p.prototype={ +gZ(){return"Kopyahin"}, +ga_(){return"I-cut"}, +gK(){return"Tumingin sa Itaas"}, +ga0(){return"I-paste"}, +ga1(){return"Search Web"}, +gM(){return"Piliin Lahat"}, +gbH(){return"Share..."}} +A.Jr.prototype={ +gZ(){return"Copier"}, +ga_(){return"Couper"}, +gK(){return"Look Up"}, +ga0(){return"Coller"}, +ga1(){return"Search Web"}, +gM(){return"Tout s\xe9lect."}, +gbH(){return"Share..."}} +A.a_q.prototype={ +gM(){return"Tout s\xe9lectionner"}} +A.a_r.prototype={ +gZ(){return"Copiar"}, +ga_(){return"Cortar"}, +gK(){return"Mirar cara arriba"}, +ga0(){return"Pegar"}, +ga1(){return"Search Web"}, +gM(){return"Seleccionar todo"}, +gbH(){return"Share..."}} +A.a_s.prototype={ +gZ(){return"Kopieren"}, +ga_(){return"Ausschneiden"}, +gK(){return"Look Up"}, +ga0(){return"Einsetzen"}, +ga1(){return"Search Web"}, +gM(){return"Alles ausw\xe4hlen"}, +gbH(){return"Share..."}} +A.a_t.prototype={ +gZ(){return"\u0a95\u0ac9\u0aaa\u0abf \u0a95\u0ab0\u0acb"}, +ga_(){return"\u0a95\u0abe\u0aaa\u0acb"}, +gK(){return"Look Up"}, +ga0(){return"\u0aaa\u0ac7\u0ab8\u0acd\u0a9f \u0a95\u0ab0\u0acb"}, +ga1(){return"Search Web"}, +gM(){return"\u0aac\u0aa7\u0abe \u0aaa\u0ab8\u0a82\u0aa6 \u0a95\u0ab0\u0acb"}, +gbH(){return"Share..."}} +A.a_u.prototype={ +gZ(){return"\u05d4\u05e2\u05ea\u05e7\u05d4"}, +ga_(){return"\u05d2\u05d6\u05d9\u05e8\u05d4"}, +gK(){return"Look Up"}, +ga0(){return"\u05d4\u05d3\u05d1\u05e7\u05d4"}, +ga1(){return"Search Web"}, +gM(){return"\u05d1\u05d7\u05d9\u05e8\u05ea \u05d4\u05db\u05d5\u05dc"}, +gbH(){return"Share..."}} +A.a_v.prototype={ +gZ(){return"\u0915\u0949\u092a\u0940 \u0915\u0930\u0947\u0902"}, +ga_(){return"\u0915\u093e\u091f\u0947\u0902"}, +gK(){return"Look Up"}, +ga0(){return"\u091a\u093f\u092a\u0915\u093e\u090f\u0902"}, +ga1(){return"Search Web"}, +gM(){return"\u0938\u092d\u0940 \u091a\u0941\u0928\u0947\u0902"}, +gbH(){return"Share..."}} +A.a_w.prototype={ +gZ(){return"Kopiraj"}, +ga_(){return"Izre\u017ei"}, +gK(){return"Pogled prema gore"}, +ga0(){return"Zalijepi"}, +ga1(){return"Search Web"}, +gM(){return"Odaberi sve"}, +gbH(){return"Share..."}} +A.a_x.prototype={ +gZ(){return"M\xe1sol\xe1s"}, +ga_(){return"Kiv\xe1g\xe1s"}, +gK(){return"Felfel\xe9 n\xe9z\xe9s"}, +ga0(){return"Beilleszt\xe9s"}, +ga1(){return"Search Web"}, +gM(){return"\xd6sszes kijel\xf6l\xe9se"}, +gbH(){return"Share..."}} +A.a_y.prototype={ +gZ(){return"\u054a\u0561\u057f\u0573\u0565\u0576\u0565\u056c"}, +ga_(){return"\u053f\u057f\u0580\u0565\u056c"}, +gK(){return"Look Up"}, +ga0(){return"\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c"}, +ga1(){return"Search Web"}, +gM(){return"\u0546\u0577\u0565\u056c \u0562\u0578\u056c\u0578\u0580\u0568"}, +gbH(){return"Share..."}} +A.a_z.prototype={ +gZ(){return"Salin"}, +ga_(){return"Potong"}, +gK(){return"Look Up"}, +ga0(){return"Tempel"}, +ga1(){return"Search Web"}, +gM(){return"Pilih Semua"}, +gbH(){return"Share..."}} +A.a_A.prototype={ +gZ(){return"Afrita"}, +ga_(){return"Klippa"}, +gK(){return"Look Up"}, +ga0(){return"L\xedma"}, +ga1(){return"Search Web"}, +gM(){return"Velja allt"}, +gbH(){return"Share..."}} +A.a_B.prototype={ +gZ(){return"Copia"}, +ga_(){return"Taglia"}, +gK(){return"Cerca"}, +ga0(){return"Incolla"}, +ga1(){return"Search Web"}, +gM(){return"Seleziona tutto"}, +gbH(){return"Share..."}} +A.a_C.prototype={ +gZ(){return"\u30b3\u30d4\u30fc"}, +ga_(){return"\u5207\u308a\u53d6\u308a"}, +gK(){return"\u8abf\u3079\u308b"}, +ga0(){return"\u8cbc\u308a\u4ed8\u3051"}, +ga1(){return"Search Web"}, +gM(){return"\u3059\u3079\u3066\u9078\u629e"}, +gbH(){return"Share..."}} +A.a_D.prototype={ +gZ(){return"\u10d9\u10dd\u10de\u10d8\u10e0\u10d4\u10d1\u10d0"}, +ga_(){return"\u10d0\u10db\u10dd\u10ed\u10e0\u10d0"}, +gK(){return"Look Up"}, +ga0(){return"\u10e9\u10d0\u10e1\u10db\u10d0"}, +ga1(){return"Search Web"}, +gM(){return"\u10e7\u10d5\u10d4\u10da\u10d0\u10e1 \u10d0\u10e0\u10e9\u10d4\u10d5\u10d0"}, +gbH(){return"Share..."}} +A.a_E.prototype={ +gZ(){return"\u041a\u04e9\u0448\u0456\u0440\u0443"}, +ga_(){return"\u049a\u0438\u044e"}, +gK(){return"Look Up"}, +ga0(){return"\u049a\u043e\u044e"}, +ga1(){return"Search Web"}, +gM(){return"\u0411\u0430\u0440\u043b\u044b\u0493\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u0443"}, +gbH(){return"Share..."}} +A.a_F.prototype={ +gZ(){return"\u1785\u1798\u17d2\u179b\u1784"}, +ga_(){return"\u1780\u17b6\u178f\u17cb"}, +gK(){return"\u179a\u1780\u1798\u17be\u179b"}, +ga0(){return"\u178a\u17b6\u1780\u17cb\u200b\u1785\u17bc\u179b"}, +ga1(){return"Search Web"}, +gM(){return"\u1787\u17d2\u179a\u17be\u179f\u179a\u17be\u179f\u200b\u1791\u17b6\u17c6\u1784\u17a2\u179f\u17cb"}, +gbH(){return"Share..."}} +A.a_G.prototype={ +gZ(){return"\u0ca8\u0c95\u0cb2\u0cbf\u0cb8\u0cbf"}, +ga_(){return"\u0c95\u0ca4\u0ccd\u0ca4\u0cb0\u0cbf\u0cb8\u0cbf"}, +gK(){return"Look Up"}, +ga0(){return"\u0c85\u0c82\u0c9f\u0cbf\u0cb8\u0cbf"}, +ga1(){return"Search Web"}, +gM(){return"\u0c8e\u0cb2\u0ccd\u0cb2\u0cb5\u0ca8\u0ccd\u0ca8\u0cc2 \u0c86\u0caf\u0ccd\u0c95\u0cc6\u0cae\u0cbe\u0ca1\u0cbf"}, +gbH(){return"Share..."}} +A.a_H.prototype={ +gZ(){return"\ubcf5\uc0ac"}, +ga_(){return"\uc798\ub77c\ub0c4"}, +gK(){return"Look Up"}, +ga0(){return"\ubd99\uc5ec\ub123\uae30"}, +ga1(){return"Search Web"}, +gM(){return"\uc804\uccb4 \uc120\ud0dd"}, +gbH(){return"Share..."}} +A.a_I.prototype={ +gZ(){return"\u041a\u04e9\u0447\u04af\u0440\u04af\u04af"}, +ga_(){return"\u041a\u0435\u0441\u04af\u04af"}, +gK(){return"Look Up"}, +ga0(){return"\u0427\u0430\u043f\u0442\u043e\u043e"}, +ga1(){return"Search Web"}, +gM(){return"\u0411\u0430\u0430\u0440\u044b\u043d \u0442\u0430\u043d\u0434\u043e\u043e"}, +gbH(){return"Share..."}} +A.a_J.prototype={ +gZ(){return"\u0eaa\u0eb3\u0ec0\u0e99\u0ebb\u0eb2"}, +ga_(){return"\u0e95\u0eb1\u0e94"}, +gK(){return"Look Up"}, +ga0(){return"\u0ea7\u0eb2\u0e87"}, +ga1(){return"Search Web"}, +gM(){return"\u0ec0\u0ea5\u0eb7\u0ead\u0e81\u0e97\u0eb1\u0e87\u0edd\u0ebb\u0e94"}, +gbH(){return"Share..."}} +A.a_K.prototype={ +gZ(){return"Kopijuoti"}, +ga_(){return"I\u0161kirpti"}, +gK(){return"Look Up"}, +ga0(){return"\u012eklijuoti"}, +ga1(){return"Search Web"}, +gM(){return"Pasirinkti visk\u0105"}, +gbH(){return"Share..."}} +A.a_L.prototype={ +gZ(){return"Kop\u0113t"}, +ga_(){return"Izgriezt"}, +gK(){return"Look Up"}, +ga0(){return"Iel\u012bm\u0113t"}, +ga1(){return"Search Web"}, +gM(){return"Atlas\u012bt visu"}, +gbH(){return"Share..."}} +A.a_M.prototype={ +gZ(){return"\u041a\u043e\u043f\u0438\u0440\u0430\u0458"}, +ga_(){return"\u0418\u0441\u0435\u0447\u0438"}, +gK(){return"Look Up"}, +ga0(){return"\u0417\u0430\u043b\u0435\u043f\u0438"}, +ga1(){return"Search Web"}, +gM(){return"\u0418\u0437\u0431\u0435\u0440\u0438 \u0433\u0438 \u0441\u0438\u0442\u0435"}, +gbH(){return"Share..."}} +A.a_N.prototype={ +gZ(){return"\u0d2a\u0d15\u0d7c\u0d24\u0d4d\u0d24\u0d41\u0d15"}, +ga_(){return"\u0d2e\u0d41\u0d31\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15"}, +gK(){return"\u0d2e\u0d41\u0d15\u0d33\u0d3f\u0d32\u0d47\u0d15\u0d4d\u0d15\u0d4d \u0d28\u0d4b\u0d15\u0d4d\u0d15\u0d41\u0d15"}, +ga0(){return"\u0d12\u0d1f\u0d4d\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15"}, +ga1(){return"Search Web"}, +gM(){return"\u0d0e\u0d32\u0d4d\u0d32\u0d3e\u0d02 \u0d24\u0d3f\u0d30\u0d1e\u0d4d\u0d1e\u0d46\u0d1f\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d15"}, +gbH(){return"Share..."}} +A.a_O.prototype={ +gZ(){return"\u0425\u0443\u0443\u043b\u0430\u0445"}, +ga_(){return"\u0422\u0430\u0441\u043b\u0430\u0445"}, +gK(){return"Look Up"}, +ga0(){return"\u0411\u0443\u0443\u043b\u0433\u0430\u0445"}, +ga1(){return"Search Web"}, +gM(){return"\u0411\u04af\u0433\u0434\u0438\u0439\u0433 \u0441\u043e\u043d\u0433\u043e\u0445"}, +gbH(){return"Share..."}} +A.a_P.prototype={ +gZ(){return"\u0915\u0949\u092a\u0940 \u0915\u0930\u093e"}, +ga_(){return"\u0915\u091f \u0915\u0930\u093e"}, +gK(){return"Look Up"}, +ga0(){return"\u092a\u0947\u0938\u094d\u091f \u0915\u0930\u093e"}, +ga1(){return"Search Web"}, +gM(){return"\u0938\u0930\u094d\u0935 \u0928\u093f\u0935\u0921\u093e"}, +gbH(){return"Share..."}} +A.a_Q.prototype={ +gZ(){return"Salin"}, +ga_(){return"Potong"}, +gK(){return"Lihat ke Atas"}, +ga0(){return"Tampal"}, +ga1(){return"Search Web"}, +gM(){return"Pilih Semua"}, +gbH(){return"Share..."}} +A.a_R.prototype={ +gZ(){return"\u1019\u102d\u1010\u1039\u1010\u1030\u1000\u1030\u1038\u101b\u1014\u103a"}, +ga_(){return"\u1016\u103c\u1010\u103a\u101a\u1030\u101b\u1014\u103a"}, +gK(){return"Look Up"}, +ga0(){return"\u1000\u1030\u1038\u1011\u100a\u1037\u103a\u101b\u1014\u103a"}, +ga1(){return"Search Web"}, +gM(){return"\u1021\u102c\u1038\u101c\u102f\u1036\u1038 \u101b\u103d\u1031\u1038\u101b\u1014\u103a"}, +gbH(){return"Share..."}} +A.a_S.prototype={ +gZ(){return"Kopi\xe9r"}, +ga_(){return"Klipp ut"}, +gK(){return"Look Up"}, +ga0(){return"Lim inn"}, +ga1(){return"Search Web"}, +gM(){return"Velg alle"}, +gbH(){return"Share..."}} +A.a_T.prototype={ +gZ(){return"\u092a\u094d\u0930\u0924\u093f\u0932\u093f\u092a\u093f \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"}, +ga_(){return"\u0915\u093e\u091f\u094d\u0928\u0941\u0939\u094b\u0938\u094d"}, +gK(){return"Look Up"}, +ga0(){return"\u091f\u093e\u0901\u0938\u094d\u0928\u0941\u0939\u094b\u0938\u094d"}, +ga1(){return"Search Web"}, +gM(){return"\u0938\u092c\u0948 \u091a\u092f\u0928 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"}, +gbH(){return"Share..."}} +A.a_U.prototype={ +gZ(){return"Kopi\xebren"}, +ga_(){return"Knippen"}, +gK(){return"Look Up"}, +ga0(){return"Plakken"}, +ga1(){return"Search Web"}, +gM(){return"Alles selecteren"}, +gbH(){return"Share..."}} +A.a_V.prototype={ +gZ(){return"Kopi\xe9r"}, +ga_(){return"Klipp ut"}, +gK(){return"Look Up"}, +ga0(){return"Lim inn"}, +ga1(){return"Search Web"}, +gM(){return"Velg alle"}, +gbH(){return"Share..."}} +A.a_W.prototype={ +gZ(){return"\u0b15\u0b2a\u0b3f \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"}, +ga_(){return"\u0b15\u0b1f\u0b4d \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"}, +gK(){return"Look Up"}, +ga0(){return"\u0b2a\u0b47\u0b37\u0b4d\u0b1f \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"}, +ga1(){return"Search Web"}, +gM(){return"\u0b38\u0b2e\u0b38\u0b4d\u0b24 \u0b1a\u0b5f\u0b28 \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"}, +gbH(){return"Share..."}} +A.a_X.prototype={ +gZ(){return"\u0a15\u0a3e\u0a2a\u0a40 \u0a15\u0a30\u0a4b"}, +ga_(){return"\u0a15\u0a71\u0a1f \u0a15\u0a30\u0a4b"}, +gK(){return"Look Up"}, +ga0(){return"\u0a2a\u0a47\u0a38\u0a1f \u0a15\u0a30\u0a4b"}, +ga1(){return"Search Web"}, +gM(){return"\u0a38\u0a2d \u0a1a\u0a41\u0a23\u0a4b"}, +gbH(){return"Share..."}} +A.a_Y.prototype={ +gZ(){return"Kopiuj"}, +ga_(){return"Wytnij"}, +gK(){return"Sprawd\u017a"}, +ga0(){return"Wklej"}, +ga1(){return"Search Web"}, +gM(){return"Wybierz wszystkie"}, +gbH(){return"Share..."}} +A.Js.prototype={ +gZ(){return"Copiar"}, +ga_(){return"Cortar"}, +gK(){return"Pesquisar"}, +ga0(){return"Colar"}, +ga1(){return"Search Web"}, +gM(){return"Selecionar Tudo"}, +gbH(){return"Share..."}} +A.a_Z.prototype={ +gK(){return"Procurar"}, +gM(){return"Selecionar tudo"}} +A.a0_.prototype={ +gZ(){return"Copia\u021bi"}, +ga_(){return"Decupa\u021bi"}, +gK(){return"Look Up"}, +ga0(){return"Insera\u021bi"}, +ga1(){return"Search Web"}, +gM(){return"Selecta\u021bi-le pe toate"}, +gbH(){return"Share..."}} +A.a00.prototype={ +gZ(){return"\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c"}, +ga_(){return"\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c"}, +gK(){return"Look Up"}, +ga0(){return"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c"}, +ga1(){return"Search Web"}, +gM(){return"\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u0432\u0441\u0435"}, +gbH(){return"Share..."}} +A.a01.prototype={ +gZ(){return"\u0db4\u0dd2\u0da7\u0db4\u0dad\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1"}, +ga_(){return"\u0d9a\u0db4\u0db1\u0dca\u0db1"}, +gK(){return"Look Up"}, +ga0(){return"\u0d85\u0dbd\u0dc0\u0db1\u0dca\u0db1"}, +ga1(){return"Search Web"}, +gM(){return"\u0dc3\u0dd2\u0dba\u0dbd\u0dca\u0dbd \u0dad\u0ddd\u0dbb\u0db1\u0dca\u0db1"}, +gbH(){return"Share..."}} +A.a02.prototype={ +gZ(){return"Kop\xedrova\u0165"}, +ga_(){return"Vystrihn\xfa\u0165"}, +gK(){return"Look Up"}, +ga0(){return"Prilepi\u0165"}, +ga1(){return"Search Web"}, +gM(){return"Vybra\u0165 v\u0161etko"}, +gbH(){return"Share..."}} +A.a03.prototype={ +gZ(){return"Kopiraj"}, +ga_(){return"Izre\u017ei"}, +gK(){return"Look Up"}, +ga0(){return"Prilepi"}, +ga1(){return"Search Web"}, +gM(){return"Izberi vse"}, +gbH(){return"Share..."}} +A.a04.prototype={ +gZ(){return"Kopjo"}, +ga_(){return"Prit"}, +gK(){return"Look Up"}, +ga0(){return"Ngjit"}, +ga1(){return"Search Web"}, +gM(){return"Zgjidhi t\xeb gjitha"}, +gbH(){return"Share..."}} +A.Jt.prototype={ +gZ(){return"\u041a\u043e\u043f\u0438\u0440\u0430\u0458"}, +ga_(){return"\u0418\u0441\u0435\u0446\u0438"}, +gK(){return"Look Up"}, +ga0(){return"\u041d\u0430\u043b\u0435\u043f\u0438"}, +ga1(){return"Search Web"}, +gM(){return"\u0418\u0437\u0430\u0431\u0435\u0440\u0438 \u0441\u0432\u0435"}, +gbH(){return"Share..."}} +A.a05.prototype={} +A.a06.prototype={ +gZ(){return"Kopiraj"}, +ga_(){return"Iseci"}, +ga0(){return"Nalepi"}, +gM(){return"Izaberi sve"}} +A.a07.prototype={ +gZ(){return"Kopiera"}, +ga_(){return"Klipp ut"}, +gK(){return"Look Up"}, +ga0(){return"Klistra in"}, +ga1(){return"Search Web"}, +gM(){return"Markera alla"}, +gbH(){return"Share..."}} +A.a08.prototype={ +gZ(){return"Nakili"}, +ga_(){return"Kata"}, +gK(){return"Look Up"}, +ga0(){return"Bandika"}, +ga1(){return"Search Web"}, +gM(){return"Teua Zote"}, +gbH(){return"Share..."}} +A.a09.prototype={ +gZ(){return"\u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1"}, +ga_(){return"\u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1"}, +gK(){return"Look Up"}, +ga0(){return"\u0b92\u0b9f\u0bcd\u0b9f\u0bc1"}, +ga1(){return"Search Web"}, +gM(){return"\u0b8e\u0bb2\u0bcd\u0bb2\u0bbe\u0bae\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1"}, +gbH(){return"Share..."}} +A.a0a.prototype={ +gZ(){return"\u0c15\u0c3e\u0c2a\u0c40 \u0c1a\u0c47\u0c2f\u0c3f"}, +ga_(){return"\u0c15\u0c24\u0c4d\u0c24\u0c3f\u0c30\u0c3f\u0c02\u0c1a\u0c02\u0c21\u0c3f"}, +gK(){return"Look Up"}, +ga0(){return"\u0c2a\u0c47\u0c38\u0c4d\u0c1f\u0c4d \u0c1a\u0c47\u0c2f\u0c02\u0c21\u0c3f"}, +ga1(){return"Search Web"}, +gM(){return"\u0c05\u0c28\u0c4d\u0c28\u0c3f\u0c02\u0c1f\u0c3f\u0c28\u0c40 \u0c0e\u0c02\u0c1a\u0c41\u0c15\u0c4b\u0c02\u0c21\u0c3f"}, +gbH(){return"Share..."}} +A.a0b.prototype={ +gZ(){return"\u0e04\u0e31\u0e14\u0e25\u0e2d\u0e01"}, +ga_(){return"\u0e15\u0e31\u0e14"}, +gK(){return"Look Up"}, +ga0(){return"\u0e27\u0e32\u0e07"}, +ga1(){return"Search Web"}, +gM(){return"\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14"}, +gbH(){return"Share..."}} +A.a0c.prototype={ +gZ(){return"Kopyahin"}, +ga_(){return"I-cut"}, +gK(){return"Tumingin sa Itaas"}, +ga0(){return"I-paste"}, +ga1(){return"Search Web"}, +gM(){return"Piliin Lahat"}, +gbH(){return"Share..."}} +A.a0d.prototype={ +gZ(){return"Kopyala"}, +ga_(){return"Kes"}, +gK(){return"Look Up"}, +ga0(){return"Yap\u0131\u015ft\u0131r"}, +ga1(){return"Search Web"}, +gM(){return"T\xfcm\xfcn\xfc Se\xe7"}, +gbH(){return"Share..."}} +A.a0e.prototype={ +gZ(){return"\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438"}, +ga_(){return"\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438"}, +gK(){return"Look Up"}, +ga0(){return"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438"}, +ga1(){return"Search Web"}, +gM(){return"\u0412\u0438\u0431\u0440\u0430\u0442\u0438 \u0432\u0441\u0435"}, +gbH(){return"Share..."}} +A.a0f.prototype={ +gZ(){return"\u06a9\u0627\u067e\u06cc \u06a9\u0631\u06cc\u06ba"}, +ga_(){return"\u06a9\u0679 \u06a9\u0631\u06cc\u06ba"}, +gK(){return"Look Up"}, +ga0(){return"\u067e\u06cc\u0633\u0679 \u06a9\u0631\u06cc\u06ba"}, +ga1(){return"Search Web"}, +gM(){return"\u0633\u0628\u06be\u06cc \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba"}, +gbH(){return"Share..."}} +A.a0g.prototype={ +gZ(){return"Nusxa olish"}, +ga_(){return"Kesib olish"}, +gK(){return"Tepaga qarang"}, +ga0(){return"Joylash"}, +ga1(){return"Search Web"}, +gM(){return"Barchasini tanlash"}, +gbH(){return"Share..."}} +A.a0h.prototype={ +gZ(){return"Sao ch\xe9p"}, +ga_(){return"C\u1eaft"}, +gK(){return"Look Up"}, +ga0(){return"D\xe1n"}, +ga1(){return"Search Web"}, +gM(){return"Ch\u1ecdn t\u1ea5t c\u1ea3"}, +gbH(){return"Share..."}} +A.Ju.prototype={ +gZ(){return"\u590d\u5236"}, +ga_(){return"\u526a\u5207"}, +gK(){return"Look Up"}, +ga0(){return"\u7c98\u8d34"}, +ga1(){return"Search Web"}, +gM(){return"\u5168\u9009"}, +gbH(){return"Share..."}} +A.a0i.prototype={} +A.Jv.prototype={ +gZ(){return"\u8907\u88fd"}, +ga_(){return"\u526a\u4e0b"}, +gK(){return"\u67e5\u8a62"}, +ga0(){return"\u8cbc\u4e0a"}, +gM(){return"\u5168\u9078"}} +A.a0j.prototype={} +A.a0k.prototype={} +A.a0l.prototype={ +gZ(){return"Kopisha"}, +ga_(){return"Sika"}, +gK(){return"Look Up"}, +ga0(){return"Namathisela"}, +ga1(){return"Search Web"}, +gM(){return"Khetha konke"}, +gbH(){return"Share..."}} +A.a42.prototype={ +gbq(){return"Opletberig"}, +gbr(){return"Terug"}, +gb8(){return"Onderste blad"}, +gbj(){return"Maak toe"}, +gaW(){return"Uitgevou"}, +gZ(){return"Kopieer"}, +ga_(){return"Knip"}, +gaY(){return"Vee uit"}, +gaG(){return"Dialoog"}, +gbx(){return"Navigasiekieslys"}, +gbl(){return"Ingevou"}, +gaC(){return"dubbeltik om uit te vou"}, +gaQ(){return"Vou uit vir meer besonderhede"}, +gaD(){return"dubbeltik om in te vou"}, +gbs(){return"Vou in"}, +gK(){return"Look Up"}, +gaR(){return"Maak kieslys toe"}, +gaM(){return"Maak toe"}, +gbB(){return"Nog"}, +gaS(){return"Maak navigasiekieslys oop"}, +ga0(){return"Plak"}, +gba(){return"Opspringkieslys"}, +gby(){return"Herlaai"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 karakter oor"}, +gbu(){return"$remainingCount karakters oor"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"Skandeer teks"}, +gaU(){return"Skerm"}, +gbv(){return"Maak $modalRouteContentName toe"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Kies alles"}, +gbw(){return"Wys kieslys"}, +gbo(){return"Oortjie $tabIndex van $tabCount"}} +A.a43.prototype={ +gbq(){return"\u121b\u1295\u1242\u12eb"}, +gbr(){return"\u1270\u1218\u1208\u1235"}, +gb8(){return"\u12e8\u130d\u122d\u130c \u1209\u1205"}, +gbj(){return"\u12dd\u130b"}, +gaW(){return"\u1270\u12d8\u122d\u130d\u1277\u120d"}, +gZ(){return"\u1245\u12f3"}, +ga_(){return"\u1241\u1228\u1325"}, +gaY(){return"\u1230\u122d\u12dd"}, +gaG(){return"\u1218\u1308\u1293\u129b"}, +gbx(){return"\u12e8\u12f3\u1230\u1233 \u121d\u1293\u120c"}, +gbl(){return"\u1270\u1230\u1265\u1235\u1267\u120d"}, +gaC(){return"\u1208\u1218\u12d8\u122d\u130b\u1275 \u12f5\u122d\u1265 \u1201\u1208\u1274 \u1218\u1273 \u12eb\u12f5\u122d\u1309"}, +gaQ(){return"\u1208\u1270\u1328\u121b\u122a \u12dd\u122d\u12dd\u122e\u127d \u12ed\u12d8\u122d\u1309"}, +gaD(){return"\u1208\u1218\u1230\u1265\u1230\u1265 \u1201\u1208\u1274 \u1218\u1273 \u12eb\u12f5\u122d\u1309"}, +gbs(){return"\u1230\u1265\u1235\u1265"}, +gK(){return"Look Up"}, +gaR(){return"\u121d\u1293\u120c\u1295 \u12a0\u1230\u1293\u1265\u1275"}, +gaM(){return"\u12a0\u1230\u1293\u1265\u1275"}, +gbB(){return"\u1270\u1328\u121b\u122a"}, +gaS(){return"\u12e8\u12f3\u1230\u1233 \u121d\u1293\u120c\u1295 \u12ad\u1348\u1275"}, +ga0(){return"\u1208\u1325\u134d"}, +gba(){return"\u12e8\u1265\u1245-\u1263\u12ed \u121d\u1293\u120c"}, +gby(){return"\u12a0\u12f5\u1235"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 \u1241\u121d\u134a \u12ed\u1240\u122b\u120d"}, +gbu(){return"$remainingCount \u1241\u121d\u134a\u12ce\u127d \u12ed\u1240\u122b\u1209"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"\u133d\u1201\u134d\u1295 \u1243\u129d"}, +gaU(){return"\u1308\u12f3\u1262"}, +gbv(){return"$modalRouteContentName\u1295 \u12dd\u130b"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"\u1201\u1209\u1295\u121d \u121d\u1228\u1325"}, +gbw(){return"\u121d\u1293\u120c\u1295 \u12a0\u1233\u12ed"}, +gbo(){return"\u1275\u122d $tabIndex \u12a8$tabCount"}} +A.a44.prototype={ +gbq(){return"\u062a\u0646\u0628\u064a\u0647"}, +gbr(){return"\u0631\u062c\u0648\u0639"}, +gb8(){return"\u0628\u0637\u0627\u0642\u0629 \u0633\u0641\u0644\u064a\u0629"}, +gbj(){return"\u0625\u063a\u0644\u0627\u0642"}, +gaW(){return"\u0645\u0648\u0633\u0651\u064e\u0639"}, +gZ(){return"\u0646\u0633\u062e"}, +ga_(){return"\u0642\u0635"}, +gaY(){return"\u062d\u0630\u0641"}, +gaG(){return"\u0645\u0631\u0628\u0639 \u062d\u0648\u0627\u0631"}, +gbx(){return"\u0642\u0627\u0626\u0645\u0629 \u062a\u0646\u0642\u0644"}, +gbl(){return"\u0645\u0635\u063a\u0651\u064e\u0631"}, +gaC(){return"\u0627\u0646\u0642\u0631 \u0645\u0631\u0651\u062a\u064a\u0646 \u0644\u0644\u062a\u0648\u0633\u064a\u0639"}, +gaQ(){return"\u0648\u0633\u0651\u0650\u0639 \u0627\u0644\u0645\u0631\u0628\u0651\u0639 \u0644\u0639\u0631\u0636 \u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644."}, +gaD(){return"\u064a\u064f\u0631\u062c\u0649 \u0627\u0644\u0646\u0642\u0631 \u0645\u0631\u0651\u062a\u064a\u0646 \u0644\u0644\u062a\u0635\u063a\u064a\u0631."}, +gbs(){return"\u062a\u0635\u063a\u064a\u0631"}, +gK(){return"Look Up"}, +gaR(){return"\u0625\u063a\u0644\u0627\u0642 \u0627\u0644\u0642\u0627\u0626\u0645\u0629"}, +gaM(){return"\u0631\u0641\u0636"}, +gbB(){return"\u0627\u0644\u0645\u0632\u064a\u062f"}, +gaS(){return"\u0641\u062a\u062d \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u062a\u0646\u0642\u0644"}, +ga0(){return"\u0644\u0635\u0642"}, +gba(){return"\u0642\u0627\u0626\u0645\u0629 \u0645\u0646\u0628\u062b\u0642\u0629"}, +gby(){return"\u0625\u0639\u0627\u062f\u0629 \u062a\u062d\u0645\u064a\u0644"}, +gbC(){return"$remainingCount \u0623\u062d\u0631\u0641 \u0645\u062a\u0628\u0642\u064a\u0629"}, +gbE(){return"$remainingCount \u062d\u0631\u0641\u064b\u0627 \u0645\u062a\u0628\u0642\u064a\u064b\u0627"}, +gbn(){return"\u062d\u0631\u0641 \u0648\u0627\u062d\u062f \u0645\u062a\u0628\u0642\u064d"}, +gbu(){return"$remainingCount \u062d\u0631\u0641 \u0645\u062a\u0628\u0642\u064d"}, +gbF(){return"\u062d\u0631\u0641\u0627\u0646 ($remainingCount) \u0645\u062a\u0628\u0642\u064a\u0627\u0646"}, +gbG(){return"\u0644\u0627 \u0623\u062d\u0631\u0641 \u0645\u062a\u0628\u0642\u064a\u0629"}, +gaT(){return"\u0645\u0633\u062d \u0627\u0644\u0646\u0635 \u0636\u0648\u0626\u064a\u064b\u0627"}, +gaU(){return"\u062a\u0645\u0648\u064a\u0647"}, +gbv(){return'\u0625\u063a\u0644\u0627\u0642 "$modalRouteContentName"'}, +gbD(){return B.bN}, +ga1(){return"Search Web"}, +gM(){return"\u0627\u062e\u062a\u064a\u0627\u0631 \u0627\u0644\u0643\u0644"}, +gbw(){return"\u0639\u0631\u0636 \u0627\u0644\u0642\u0627\u0626\u0645\u0629"}, +gbo(){return"\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u062a\u0628\u0648\u064a\u0628 $tabIndex \u0645\u0646 $tabCount"}} +A.a45.prototype={ +gbq(){return"\u09b8\u09a4\u09f0\u09cd\u0995\u09ac\u09be\u09f0\u09cd\u09a4\u09be"}, +gbr(){return"\u0989\u09ad\u09a4\u09bf \u09af\u09be\u0993\u0995"}, +gb8(){return"\u09a4\u09b2\u09f0 \u09b6\u09cd\u09ac\u09c0\u099f"}, +gbj(){return"\u09ac\u09a8\u09cd\u09a7 \u0995\u09f0\u0995"}, +gaW(){return"\u09ac\u09bf\u09b8\u09cd\u09a4\u09be\u09f0 \u0995\u09f0\u09be \u0986\u099b\u09c7"}, +gZ(){return"\u09aa\u09cd\u09f0\u09a4\u09bf\u09b2\u09bf\u09aa\u09bf \u0995\u09f0\u0995"}, +ga_(){return"\u0995\u09be\u099f \u0995\u09f0\u0995"}, +gaY(){return"\u09ae\u099a\u0995"}, +gaG(){return"\u09a1\u09be\u09df\u09b2'\u0997"}, +gbx(){return"\u09a8\u09c7\u09ad\u09bf\u0997\u09c7\u09b6\u09cd\u09ac\u09a8 \u09ae\u09c7\u09a8\u09c1"}, +gbl(){return"\u09b8\u0982\u0995\u09cb\u099a\u09a8 \u0995\u09f0\u09be \u0986\u099b\u09c7"}, +gaC(){return"\u09ac\u09bf\u09b8\u09cd\u09a4\u09be\u09f0 \u0995\u09f0\u09bf\u09ac\u09b2\u09c8 \u09a6\u09c1\u09ac\u09be\u09f0 \u099f\u09bf\u09aa\u0995"}, +gaQ(){return"\u0985\u09a7\u09bf\u0995 \u09b8\u09ac\u09bf\u09b6\u09c7\u09b7 \u099c\u09be\u09a8\u09bf\u09ac\u09b2\u09c8 \u09ac\u09bf\u09b8\u09cd\u09a4\u09be\u09f0 \u0995\u09f0\u0995"}, +gaD(){return"\u09b8\u0982\u0995\u09cb\u099a\u09a8 \u0995\u09f0\u09bf\u09ac\u09b2\u09c8 \u09a6\u09c1\u09ac\u09be\u09f0 \u099f\u09bf\u09aa\u0995"}, +gbs(){return"\u09b8\u0982\u0995\u09cb\u099a\u09a8 \u0995\u09f0\u0995"}, +gK(){return"Look Up"}, +gaR(){return"\u0985\u0997\u09cd\u09f0\u09be\u09b9\u09cd\u09af \u0995\u09f0\u09be\u09f0 \u09ae\u09c7\u09a8\u09c1"}, +gaM(){return"\u0985\u0997\u09cd\u09f0\u09be\u09b9\u09cd\u09af \u0995\u09f0\u0995"}, +gbB(){return"\u0985\u09a7\u09bf\u0995"}, +gaS(){return"\u09a8\u09c7\u09ad\u09bf\u0997\u09c7\u09b6\u09cd\u09ac\u09a8 \u09ae\u09c7\u09a8\u09c1 \u0996\u09cb\u09b2\u0995"}, +ga0(){return"\u09aa\u09c7'\u09b7\u09cd\u099f \u0995\u09f0\u0995"}, +gba(){return"\u09aa'\u09aa\u0986\u09aa \u09ae\u09c7\u09a8\u09c1"}, +gby(){return"\u09f0\u09bf\u09ab\u09cd\u09f0\u09c7\u09b6\u09cd\u09ac \u0995\u09f0\u0995"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"\u09e7\u099f\u09be \u09ac\u09b0\u09cd\u09a3 \u09ac\u09be\u0995\u09c0 \u0986\u099b\u09c7"}, +gbu(){return"$remainingCount\u099f\u09be \u09ac\u09b0\u09cd\u09a3 \u09ac\u09be\u0995\u09c0 \u0986\u099b\u09c7"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"\u09aa\u09be\u09a0 \u09b8\u09cd\u0995\u09c7\u09a8 \u0995\u09f0\u0995"}, +gaU(){return"\u09b8\u09cd\u0995\u09cd\u09f0\u09bf\u09ae"}, +gbv(){return"$modalRouteContentName \u09ac\u09a8\u09cd\u09a7 \u0995\u09f0\u0995"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"\u09b8\u0995\u09b2\u09cb \u09ac\u09be\u099b\u09a8\u09bf \u0995\u09f0\u0995"}, +gbw(){return"\u09ae\u09c7\u09a8\u09c1\u0996\u09a8 \u09a6\u09c7\u0996\u09c1\u09f1\u09be\u0993\u0995"}, +gbo(){return"$tabCount\u09f0 $tabIndex\u099f\u09be \u099f\u09c7\u09ac"}} +A.a46.prototype={ +gbq(){return"Bildiri\u015f"}, +gbr(){return"Geri"}, +gb8(){return"A\u015fa\u011f\u0131dak\u0131 V\u0259r\u0259q"}, +gbj(){return"Ba\u011flay\u0131n"}, +gaW(){return"Geni\u015fl\u0259ndirildi"}, +gZ(){return"Kopyalay\u0131n"}, +ga_(){return"K\u0259sin"}, +gaY(){return"Silin"}, +gaG(){return"Dialoq"}, +gbx(){return"Naviqasiya menyusu"}, +gbl(){return"Y\u0131\u011fcamla\u015fd\u0131r\u0131ld\u0131"}, +gaC(){return"geni\u015fl\u0259ndirm\u0259k \xfc\xe7\xfcn iki d\u0259f\u0259 toxunun"}, +gaQ(){return"Daha \xe7ox detallar \xfc\xe7\xfcn geni\u015fl\u0259ndirin"}, +gaD(){return"y\u0131\u011fcamla\u015fd\u0131rmaq \xfc\xe7\xfcn iki d\u0259f\u0259 toxunun"}, +gbs(){return"Y\u0131\u011fcamla\u015fd\u0131r\u0131n"}, +gK(){return"Look Up"}, +gaR(){return"Menyunu qapad\u0131n"}, +gaM(){return"\u0130mtina edin"}, +gbB(){return"Daha \xe7ox"}, +gaS(){return"Naviqasiya menyusunu a\xe7\u0131n"}, +ga0(){return"Yerl\u0259\u015fdirin"}, +gba(){return"Popap menyusu"}, +gby(){return"Yenil\u0259yin"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 simvol qal\u0131r"}, +gbu(){return"$remainingCount simvol qal\u0131r"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"M\u0259tni skan edin"}, +gaU(){return"K\u0259tan"}, +gbv(){return"Ba\u011flay\u0131n: $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Ham\u0131s\u0131n\u0131 se\xe7in"}, +gbw(){return"Menyunu g\xf6st\u0259rin"}, +gbo(){return"$tabIndex/$tabCount tab"}} +A.a47.prototype={ +gbq(){return"\u0410\u0431\u0432\u0435\u0441\u0442\u043a\u0430"}, +gbr(){return"\u041d\u0430\u0437\u0430\u0434"}, +gb8(){return"\u041d\u0456\u0436\u043d\u0456 \u0430\u0440\u043a\u0443\u0448"}, +gbj(){return"\u0417\u0430\u043a\u0440\u044b\u0446\u044c"}, +gaW(){return"\u0420\u0430\u0437\u0433\u043e\u0440\u043d\u0443\u0442\u0430"}, +gZ(){return"\u041a\u0430\u043f\u0456\u0440\u0430\u0432\u0430\u0446\u044c"}, +ga_(){return"\u0412\u044b\u0440\u0430\u0437\u0430\u0446\u044c"}, +gaY(){return"\u0412\u044b\u0434\u0430\u043b\u0456\u0446\u044c"}, +gaG(){return"\u0414\u044b\u044f\u043b\u043e\u0433\u0430\u0432\u0430\u0435 \u0430\u043a\u043d\u043e"}, +gbx(){return"\u041c\u0435\u043d\u044e \u043d\u0430\u0432\u0456\u0433\u0430\u0446\u044b\u0456"}, +gbl(){return"\u0417\u0433\u043e\u0440\u043d\u0443\u0442\u0430"}, +gaC(){return"\u0434\u0432\u043e\u0439\u0447\u044b \u043d\u0430\u0446\u0456\u0441\u043d\u0443\u0446\u044c, \u043a\u0430\u0431 \u0440\u0430\u0437\u0433\u0430\u0440\u043d\u0443\u0446\u044c"}, +gaQ(){return"\u0420\u0430\u0437\u0433\u0430\u0440\u043d\u0456\u0446\u0435, \u043a\u0430\u0431 \u0434\u0430\u0432\u0435\u0434\u0430\u0446\u0446\u0430 \u0431\u043e\u043b\u044c\u0448"}, +gaD(){return"\u0434\u0432\u043e\u0439\u0447\u044b \u043d\u0430\u0446\u0456\u0441\u043d\u0443\u0446\u044c, \u043a\u0430\u0431 \u0437\u0433\u0430\u0440\u043d\u0443\u0446\u044c"}, +gbs(){return"\u0417\u0433\u0430\u0440\u043d\u0443\u0446\u044c"}, +gK(){return"Look Up"}, +gaR(){return"\u0417\u0430\u043a\u0440\u044b\u0446\u044c \u043c\u0435\u043d\u044e"}, +gaM(){return"\u0410\u0434\u0445\u0456\u043b\u0456\u0446\u044c"}, +gbB(){return"\u042f\u0448\u0447\u044d"}, +gaS(){return"\u0410\u0434\u043a\u0440\u044b\u0446\u044c \u043c\u0435\u043d\u044e \u043d\u0430\u0432\u0456\u0433\u0430\u0446\u044b\u0456"}, +ga0(){return"\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c"}, +gba(){return"\u041c\u0435\u043d\u044e \u045e\u0441\u043f\u043b\u044b\u0432\u0430\u043b\u044c\u043d\u0430\u0433\u0430 \u0430\u043a\u043d\u0430"}, +gby(){return"\u0410\u0431\u043d\u0430\u0432\u0456\u0446\u044c"}, +gbC(){return"\u0417\u0430\u0441\u0442\u0430\u043b\u043e\u0441\u044f $remainingCount\xa0\u0441\u0456\u043c\u0432\u0430\u043b\u044b"}, +gbE(){return"\u0417\u0430\u0441\u0442\u0430\u043b\u043e\u0441\u044f $remainingCount\xa0\u0441\u0456\u043c\u0432\u0430\u043b\u0430\u045e"}, +gbn(){return"\u0417\u0430\u0441\u0442\u0430\u045e\u0441\u044f 1\xa0\u0441\u0456\u043c\u0432\u0430\u043b"}, +gbu(){return"\u0417\u0430\u0441\u0442\u0430\u043b\u043e\u0441\u044f $remainingCount\xa0\u0441\u0456\u043c\u0432\u0430\u043b\u0430"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"\u0421\u043a\u0430\u043d\u0456\u0440\u0430\u0432\u0430\u0446\u044c \u0442\u044d\u043a\u0441\u0442"}, +gaU(){return"\u041f\u0430\u043b\u0430\u0442\u043d\u043e"}, +gbv(){return"\u0417\u0430\u043a\u0440\u044b\u0446\u044c: $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"\u0412\u044b\u0431\u0440\u0430\u0446\u044c \u0443\u0441\u0435"}, +gbw(){return"\u041f\u0430\u043a\u0430\u0437\u0430\u0446\u044c \u043c\u0435\u043d\u044e"}, +gbo(){return"\u0423\u043a\u043b\u0430\u0434\u043a\u0430 $tabIndex \u0437 $tabCount"}} +A.a48.prototype={ +gbq(){return"\u0421\u0438\u0433\u043d\u0430\u043b"}, +gbr(){return"\u041d\u0430\u0437\u0430\u0434"}, +gb8(){return"\u0414\u043e\u043b\u0435\u043d \u043b\u0438\u0441\u0442"}, +gbj(){return"\u0417\u0430\u0442\u0432\u0430\u0440\u044f\u043d\u0435"}, +gaW(){return"\u0420\u0430\u0437\u0433\u044a\u043d\u0430\u0442\u043e"}, +gZ(){return"\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435"}, +ga_(){return"\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435"}, +gaY(){return"\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435"}, +gaG(){return"\u0414\u0438\u0430\u043b\u043e\u0433\u043e\u0432 \u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446"}, +gbx(){return"\u041c\u0435\u043d\u044e \u0437\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f"}, +gbl(){return"\u0421\u0432\u0438\u0442\u043e"}, +gaC(){return"\u0434\u043e\u043a\u043e\u0441\u043d\u0435\u0442\u0435 \u0434\u0432\u0430 \u043f\u044a\u0442\u0438 \u0437\u0430 \u0440\u0430\u0437\u0433\u044a\u0432\u0430\u043d\u0435"}, +gaQ(){return"\u0420\u0430\u0437\u0433\u044a\u0432\u0430\u043d\u0435 \u0437\u0430 \u043e\u0449\u0435 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u0438"}, +gaD(){return"\u0434\u043e\u043a\u043e\u0441\u043d\u0435\u0442\u0435 \u0434\u0432\u0430 \u043f\u044a\u0442\u0438 \u0437\u0430 \u0441\u0432\u0438\u0432\u0430\u043d\u0435"}, +gbs(){return"\u0421\u0432\u0438\u0432\u0430\u043d\u0435"}, +gK(){return"Look Up"}, +gaR(){return"\u041e\u0442\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0435 \u043d\u0430 \u043c\u0435\u043d\u044e\u0442\u043e"}, +gaM(){return"\u041e\u0442\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0435"}, +gbB(){return"\u041e\u0449\u0435"}, +gaS(){return"\u041e\u0442\u0432\u0430\u0440\u044f\u043d\u0435 \u043d\u0430 \u043c\u0435\u043d\u044e\u0442\u043e \u0437\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f"}, +ga0(){return"\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435"}, +gba(){return"\u0418\u0437\u0441\u043a\u0430\u0447\u0430\u0449\u043e \u043c\u0435\u043d\u044e"}, +gby(){return"\u041e\u043f\u0440\u0435\u0441\u043d\u044f\u0432\u0430\u043d\u0435"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"\u041e\u0441\u0442\u0430\u0432\u0430 1 \u0437\u043d\u0430\u043a"}, +gbu(){return"\u041e\u0441\u0442\u0430\u0432\u0430\u0442 $remainingCount \u0437\u043d\u0430\u043a\u0430"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"\u0421\u043a\u0430\u043d\u0438\u0440\u0430\u0439\u0442\u0435 \u0442\u0435\u043a\u0441\u0442"}, +gaU(){return"\u0421\u043a\u0440\u0438\u043c"}, +gbv(){return"\u0417\u0430\u0442\u0432\u0430\u0440\u044f\u043d\u0435 \u043d\u0430 $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"\u0418\u0437\u0431\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u0438"}, +gbw(){return"\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043c\u0435\u043d\u044e\u0442\u043e"}, +gbo(){return"\u0420\u0430\u0437\u0434\u0435\u043b $tabIndex \u043e\u0442 $tabCount"}} +A.a49.prototype={ +gbq(){return"\u09b8\u09a4\u09b0\u09cd\u0995\u09a4\u09be"}, +gbr(){return"\u09ab\u09bf\u09b0\u09c7 \u09af\u09be\u09a8"}, +gb8(){return"\u09b8\u09cd\u0995\u09cd\u09b0\u09bf\u09a8\u09c7\u09b0 \u09a8\u09bf\u099a\u09c7 \u0985\u09cd\u09af\u09be\u099f\u09be\u099a \u0995\u09b0\u09be \u09b6\u09bf\u099f"}, +gbj(){return"\u09ac\u09a8\u09cd\u09a7 \u0995\u09b0\u09c1\u09a8"}, +gaW(){return"\u09ac\u09a1\u09bc \u0995\u09b0\u09be \u09b9\u09df\u09c7\u099b\u09c7"}, +gZ(){return"\u0995\u09aa\u09bf \u0995\u09b0\u09c1\u09a8"}, +ga_(){return"\u0995\u09be\u099f \u0995\u09b0\u09c1\u09a8"}, +gaY(){return"\u09ae\u09c1\u099b\u09c7 \u09a6\u09bf\u09a8"}, +gaG(){return"\u09a1\u09be\u09df\u09be\u09b2\u0997"}, +gbx(){return"\u09a8\u09c7\u09ad\u09bf\u0997\u09c7\u09b6\u09be\u09a8 \u09ae\u09c7\u09a8\u09c1"}, +gbl(){return"\u0986\u09a1\u09bc\u09be\u09b2 \u0995\u09b0\u09be \u09b9\u09df\u09c7\u099b\u09c7"}, +gaC(){return"\u09ac\u09a1\u09bc \u0995\u09b0\u09c7 \u09a6\u09c7\u0996\u09a4\u09c7 \u09a1\u09ac\u09b2 \u099f\u09cd\u09af\u09be\u09aa \u0995\u09b0\u09c1\u09a8"}, +gaQ(){return"\u0986\u09b0\u0993 \u09ac\u09bf\u09ac\u09b0\u09a3 \u09aa\u09c7\u09a4\u09c7 \u09ac\u09a1\u09bc \u0995\u09b0\u09c7 \u09a6\u09c7\u0996\u09c1\u09a8"}, +gaD(){return"\u0986\u09dc\u09be\u09b2 \u0995\u09b0\u09a4\u09c7 \u09a1\u09ac\u09b2 \u099f\u09cd\u09af\u09be\u09aa \u0995\u09b0\u09c1\u09a8"}, +gbs(){return"\u0986\u09dc\u09be\u09b2 \u0995\u09b0\u09c1\u09a8"}, +gK(){return"Look Up"}, +gaR(){return"\u09ac\u09be\u09a4\u09bf\u09b2 \u0995\u09b0\u09be\u09b0 \u09ae\u09c7\u09a8\u09c1"}, +gaM(){return"\u0996\u09be\u09b0\u09bf\u099c \u0995\u09b0\u09c1\u09a8"}, +gbB(){return"\u0986\u09b0\u0993"}, +gaS(){return"\u09a8\u09c7\u09ad\u09bf\u0997\u09c7\u09b6\u09a8 \u09ae\u09c7\u09a8\u09c1 \u0996\u09c1\u09b2\u09c1\u09a8"}, +ga0(){return"\u09aa\u09c7\u09b8\u09cd\u099f \u0995\u09b0\u09c1\u09a8"}, +gba(){return"\u09aa\u09aa-\u0986\u09aa \u09ae\u09c7\u09a8\u09c1"}, +gby(){return"\u09b0\u09bf\u09ab\u09cd\u09b0\u09c7\u09b6 \u0995\u09b0\u09c1\u09a8"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"\u0986\u09b0 \u09e7\u099f\u09bf \u0985\u0995\u09cd\u09b7\u09b0 \u09b2\u09c7\u0996\u09be \u09af\u09be\u09ac\u09c7"}, +gbu(){return"\u0986\u09b0 $remainingCount\u099f\u09bf \u0985\u0995\u09cd\u09b7\u09b0 \u09b2\u09c7\u0996\u09be \u09af\u09be\u09ac\u09c7"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"\u099f\u09c7\u0995\u09cd\u09b8\u099f \u09b8\u09cd\u0995\u09cd\u09af\u09be\u09a8 \u0995\u09b0\u09c1\u09a8"}, +gaU(){return"\u09b8\u09cd\u0995\u09cd\u09b0\u09bf\u09ae"}, +gbv(){return"$modalRouteContentName \u09ac\u09a8\u09cd\u09a7 \u0995\u09b0\u09c1\u09a8"}, +gbD(){return B.bN}, +ga1(){return"Search Web"}, +gM(){return"\u09b8\u09ac \u09ac\u09c7\u099b\u09c7 \u09a8\u09bf\u09a8"}, +gbw(){return"\u09ae\u09c7\u09a8\u09c1 \u09a6\u09c7\u0996\u09be\u09a8"}, +gbo(){return"$tabCount-\u098f\u09b0 \u09ae\u09a7\u09cd\u09af\u09c7 $tabIndex\u099f\u09bf \u099f\u09cd\u09af\u09be\u09ac"}} +A.a4a.prototype={ +gbq(){return"Upozorenje"}, +gbr(){return"Nazad"}, +gb8(){return"Donja tabela"}, +gbj(){return"Zatvaranje"}, +gaW(){return"Pro\u0161ireno"}, +gZ(){return"Kopiraj"}, +ga_(){return"Izre\u017ei"}, +gaY(){return"Brisanje"}, +gaG(){return"Dijalo\u0161ki okvir"}, +gbx(){return"Meni za navigaciju"}, +gbl(){return"Su\u017eeno"}, +gaC(){return"pro\u0161irivanje dvostrukim dodirom"}, +gaQ(){return"Pro\u0161irivanje za vi\u0161e detalja"}, +gaD(){return"su\u017eavanje dvostrukim dodirom"}, +gbs(){return"Su\u017eavanje"}, +gK(){return"Pogled prema gore"}, +gaR(){return"Odbacivanje menija"}, +gaM(){return"Odbaci"}, +gbB(){return"Vi\u0161e"}, +gaS(){return"Otvorite meni za navigaciju"}, +ga0(){return"Zalijepi"}, +gba(){return"Sko\u010dni meni"}, +gby(){return"Osvje\u017ei"}, +gbC(){return"Jo\u0161 $remainingCount znaka"}, +gbE(){return null}, +gbn(){return"Jo\u0161 jedan znak"}, +gbu(){return"Jo\u0161 $remainingCount znakova"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Skeniraj tekst"}, +gaU(){return"Rubno"}, +gbv(){return"Zatvori: $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Odaberi sve"}, +gbw(){return"Prika\u017ei meni"}, +gbo(){return"$tabIndex. kartica od $tabCount"}} +A.a4b.prototype={ +gbq(){return"Alerta"}, +gbr(){return"Enrere"}, +gb8(){return"Full inferior"}, +gbj(){return"Tanca"}, +gaW(){return"S'ha desplegat"}, +gZ(){return"Copia"}, +ga_(){return"Retalla"}, +gaY(){return"Suprimeix"}, +gaG(){return"Di\xe0leg"}, +gbx(){return"Men\xfa de navegaci\xf3"}, +gbl(){return"S'ha replegat"}, +gaC(){return"fes doble toc per desplegar"}, +gaQ(){return"Desplega per obtenir m\xe9s informaci\xf3"}, +gaD(){return"fes doble toc per replegar"}, +gbs(){return"Replega"}, +gK(){return"Look Up"}, +gaR(){return"Ignora el men\xfa"}, +gaM(){return"Ignora"}, +gbB(){return"M\xe9s"}, +gaS(){return"Obre el men\xfa de navegaci\xf3"}, +ga0(){return"Enganxa"}, +gba(){return"Men\xfa emergent"}, +gby(){return"Actualitza"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"Queda 1\xa0car\xe0cter"}, +gbu(){return"Queden $remainingCount\xa0car\xe0cters"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Escaneja text"}, +gaU(){return"Fons atenuat"}, +gbv(){return"Tanca $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Selecciona-ho tot"}, +gbw(){return"Mostra el men\xfa"}, +gbo(){return"Pestanya $tabIndex de $tabCount"}} +A.a4c.prototype={ +gbq(){return"Upozorn\u011bn\xed"}, +gbr(){return"Zp\u011bt"}, +gb8(){return"Spodn\xed tabulka"}, +gbj(){return"Zav\u0159\xedt"}, +gaW(){return"Rozbaleno"}, +gZ(){return"Kop\xedrovat"}, +ga_(){return"Vyjmout"}, +gaY(){return"Smazat"}, +gaG(){return"Dialogov\xe9 okno"}, +gbx(){return"Naviga\u010dn\xed nab\xeddka"}, +gbl(){return"Sbaleno"}, +gaC(){return"dvojit\xfdm klepnut\xedm rozbal\xedte"}, +gaQ(){return"Rozbalte pro dal\u0161\xed podrobnosti"}, +gaD(){return"dvojit\xfdm klepnut\xedm sbal\xedte"}, +gbs(){return"Sbalit"}, +gK(){return"Look Up"}, +gaR(){return"Zav\u0159\xedt nab\xeddku"}, +gaM(){return"Zav\u0159\xedt"}, +gbB(){return"V\xedce"}, +gaS(){return"Otev\u0159\xedt naviga\u010dn\xed nab\xeddku"}, +ga0(){return"Vlo\u017eit"}, +gba(){return"Vyskakovac\xed nab\xeddka"}, +gby(){return"Obnovit"}, +gbC(){return"Zb\xfdvaj\xed $remainingCount znaky"}, +gbE(){return"Zb\xfdv\xe1 $remainingCount znaku"}, +gbn(){return"Zb\xfdv\xe1 1 znak"}, +gbu(){return"Zb\xfdv\xe1 $remainingCount znak\u016f"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Naskenovat text"}, +gaU(){return"Scrim"}, +gbv(){return"Zav\u0159\xedt $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Vybrat v\u0161e"}, +gbw(){return"Zobrazit nab\xeddku"}, +gbo(){return"Karta $tabIndex z\xa0$tabCount"}} +A.a4d.prototype={ +gbq(){return"Rhybudd"}, +gbr(){return"N\xf4l"}, +gb8(){return"Taflen Gwaelod"}, +gbj(){return"Cau"}, +gaW(){return"Wedi'i ehangu"}, +gZ(){return"Cop\xefo"}, +ga_(){return"Torri"}, +gaY(){return"Dileu"}, +gaG(){return"Deialog"}, +gbx(){return"Dewislen llywio"}, +gbl(){return"Wedi'i grebachu"}, +gaC(){return"tapiwch ddwywaith i ehangu"}, +gaQ(){return"Ehangwch am ragor o fanylion"}, +gaD(){return"tapiwch ddwywaith i grebachu"}, +gbs(){return"Crebachu"}, +gK(){return"Look Up"}, +gaR(){return"Diystyru'r ddewislen"}, +gaM(){return"Diystyru"}, +gbB(){return"Rhagor"}, +gaS(){return"Agor y ddewislen llywio"}, +ga0(){return"Gludo"}, +gba(){return"Dewislen ffenestr naid"}, +gby(){return"Ail-lwytho"}, +gbC(){return"$remainingCount nod ar \xf4l"}, +gbE(){return"$remainingCount nod ar \xf4l"}, +gbn(){return"1 nod ar \xf4l"}, +gbu(){return"$remainingCount nod ar \xf4l"}, +gbF(){return"$remainingCount nod ar \xf4l"}, +gbG(){return"Dim nodau ar \xf4l"}, +gaT(){return"Sganio testun"}, +gaU(){return"Scrim"}, +gbv(){return"Cau $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Dewis y Cyfan"}, +gbw(){return"Dangos y ddewislen"}, +gbo(){return"Tab $tabIndex o $tabCount"}} +A.a4e.prototype={ +gbq(){return"Underretning"}, +gbr(){return"Tilbage"}, +gb8(){return"Felt i bunden"}, +gbj(){return"Luk"}, +gaW(){return"Udvidet"}, +gZ(){return"Kopi\xe9r"}, +ga_(){return"Klip"}, +gaY(){return"Slet"}, +gaG(){return"Dialogboks"}, +gbx(){return"Navigationsmenu"}, +gbl(){return"Skjult"}, +gaC(){return"tryk to gange for at udvide"}, +gaQ(){return"Udvid for at f\xe5 flere oplysninger"}, +gaD(){return"tryk to gange for at skjule"}, +gbs(){return"Skjul"}, +gK(){return"Look Up"}, +gaR(){return"Luk menu"}, +gaM(){return"Afvis"}, +gbB(){return"Mere"}, +gaS(){return"\xc5bn navigationsmenuen"}, +ga0(){return"Inds\xe6t"}, +gba(){return"Pop op-menu"}, +gby(){return"Opdater"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"\xc9t tegn tilbage"}, +gbu(){return"$remainingCount tegn tilbage"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Scan tekst"}, +gaU(){return"D\xe6mpesk\xe6rm"}, +gbv(){return"Luk $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Mark\xe9r alt"}, +gbw(){return"Vis menu"}, +gbo(){return"Fane $tabIndex af $tabCount"}} +A.LR.prototype={ +gbq(){return"Benachrichtigung"}, +gbr(){return"Zur\xfcck"}, +gb8(){return"Ansicht am unteren Rand"}, +gbj(){return"Schlie\xdfen"}, +gaW(){return"Maximiert"}, +gZ(){return"Kopieren"}, +ga_(){return"Ausschneiden"}, +gaY(){return"L\xf6schen"}, +gaG(){return"Dialogfeld"}, +gbx(){return"Navigationsmen\xfc"}, +gbl(){return"Minimiert"}, +gaC(){return"Zum Maximieren doppeltippen"}, +gaQ(){return"F\xfcr weitere Details maximieren"}, +gaD(){return"Zum Minimieren doppeltippen"}, +gbs(){return"Minimieren"}, +gK(){return"Look Up"}, +gaR(){return"Men\xfc schlie\xdfen"}, +gaM(){return"Schlie\xdfen"}, +gbB(){return"Mehr"}, +gaS(){return"Navigationsmen\xfc \xf6ffnen"}, +ga0(){return"Einsetzen"}, +gba(){return"Pop-up-Men\xfc"}, +gby(){return"Aktualisieren"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"Noch 1\xa0Zeichen"}, +gbu(){return"Noch $remainingCount\xa0Zeichen"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Text scannen"}, +gaU(){return"Gitter"}, +gbv(){return"$modalRouteContentName schlie\xdfen"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Alle ausw\xe4hlen"}, +gbw(){return"Men\xfc anzeigen"}, +gbo(){return"Tab $tabIndex von $tabCount"}} +A.a4f.prototype={ +gbj(){return"Schliessen"}, +gaM(){return"Schliessen"}} +A.a4g.prototype={ +gbq(){return"\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7"}, +gbr(){return"\u03a0\u03af\u03c3\u03c9"}, +gb8(){return"\u03a6\u03cd\u03bb\u03bb\u03bf \u03ba\u03ac\u03c4\u03c9 \u03bc\u03ad\u03c1\u03bf\u03c5\u03c2"}, +gbj(){return"\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf"}, +gaW(){return"\u0391\u03bd\u03b1\u03c0\u03c4\u03cd\u03c7\u03b8\u03b7\u03ba\u03b5"}, +gZ(){return"\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae"}, +ga_(){return"\u0391\u03c0\u03bf\u03ba\u03bf\u03c0\u03ae"}, +gaY(){return"\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae"}, +gaG(){return"\u03a0\u03b1\u03c1\u03ac\u03b8\u03c5\u03c1\u03bf \u03b4\u03b9\u03b1\u03bb\u03cc\u03b3\u03bf\u03c5"}, +gbx(){return"\u039c\u03b5\u03bd\u03bf\u03cd \u03c0\u03bb\u03bf\u03ae\u03b3\u03b7\u03c3\u03b7\u03c2"}, +gbl(){return"\u03a3\u03c5\u03bc\u03c0\u03c4\u03cd\u03c7\u03b8\u03b7\u03ba\u03b5"}, +gaC(){return"\u03c0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 \u03b4\u03cd\u03bf \u03c6\u03bf\u03c1\u03ad\u03c2 \u03b3\u03b9\u03b1 \u03b1\u03bd\u03ac\u03c0\u03c4\u03c5\u03be\u03b7"}, +gaQ(){return"\u0391\u03bd\u03ac\u03c0\u03c4\u03c5\u03be\u03b7 \u03b3\u03b9\u03b1 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03bb\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2"}, +gaD(){return"\u03c0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 \u03b4\u03cd\u03bf \u03c6\u03bf\u03c1\u03ad\u03c2 \u03b3\u03b9\u03b1 \u03c3\u03cd\u03bc\u03c0\u03c4\u03c5\u03be\u03b7"}, +gbs(){return"\u03a3\u03cd\u03bc\u03c0\u03c4\u03c5\u03be\u03b7"}, +gK(){return"Look Up"}, +gaR(){return"\u03a0\u03b1\u03c1\u03ac\u03b2\u03bb\u03b5\u03c8\u03b7 \u03bc\u03b5\u03bd\u03bf\u03cd"}, +gaM(){return"\u03a0\u03b1\u03c1\u03ac\u03b2\u03bb\u03b5\u03c8\u03b7"}, +gbB(){return"\u03a0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b1"}, +gaS(){return"\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03bc\u03b5\u03bd\u03bf\u03cd \u03c0\u03bb\u03bf\u03ae\u03b3\u03b7\u03c3\u03b7\u03c2"}, +ga0(){return"\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7"}, +gba(){return"\u0391\u03bd\u03b1\u03b4\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd"}, +gby(){return"\u0391\u03bd\u03b1\u03bd\u03ad\u03c9\u03c3\u03b7"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"\u03b1\u03c0\u03bf\u03bc\u03ad\u03bd\u03b5\u03b9 1 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b1\u03c2"}, +gbu(){return"\u03b1\u03c0\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5\u03bd $remainingCount \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"\u03a3\u03ac\u03c1\u03c9\u03c3\u03b7 \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5"}, +gaU(){return"\u0395\u03c0\u03b9\u03ba\u03ac\u03bb\u03c5\u03c8\u03b7"}, +gbv(){return"\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03cc\u03bb\u03c9\u03bd"}, +gbw(){return"\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03bc\u03b5\u03bd\u03bf\u03cd"}, +gbo(){return"\u039a\u03b1\u03c1\u03c4\u03ad\u03bb\u03b1 $tabIndex \u03b1\u03c0\u03cc $tabCount"}} +A.LS.prototype={ +gbq(){return"Alert"}, +gbr(){return"Back"}, +gb8(){return"Bottom Sheet"}, +gbj(){return"Close"}, +gaW(){return"Expanded"}, +gZ(){return"Copy"}, +ga_(){return"Cut"}, +gaY(){return"Delete"}, +gaG(){return"Dialog"}, +gbx(){return"Navigation menu"}, +gbl(){return"Collapsed"}, +gaC(){return"double tap to expand"}, +gaQ(){return"Expand for more details"}, +gaD(){return"double tap to collapse"}, +gbs(){return"Collapse"}, +gK(){return"Look Up"}, +gaR(){return"Dismiss menu"}, +gaM(){return"Dismiss"}, +gbB(){return"More"}, +gaS(){return"Open navigation menu"}, +ga0(){return"Paste"}, +gba(){return"Popup menu"}, +gby(){return"Refresh"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 character remaining"}, +gbu(){return"$remainingCount characters remaining"}, +gbF(){return null}, +gbG(){return"No characters remaining"}, +gaT(){return"Scan text"}, +gaU(){return"Scrim"}, +gbv(){return"Close $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Select all"}, +gbw(){return"Show menu"}, +gbo(){return"Tab $tabIndex of $tabCount"}} +A.a4h.prototype={ +gK(){return"Look up"}, +gaD(){return"double-tap to collapse"}, +gaC(){return"double-tap to expand"}, +gb8(){return"Bottom sheet"}, +gba(){return"Pop-up menu"}, +gaG(){return"Dialogue"}} +A.a4i.prototype={ +gba(){return"Pop-up menu"}, +gaG(){return"Dialogue"}} +A.a4j.prototype={ +gK(){return"Look up"}, +gaD(){return"double-tap to collapse"}, +gaC(){return"double-tap to expand"}, +gb8(){return"Bottom sheet"}, +gba(){return"Pop-up menu"}, +gaG(){return"Dialogue"}} +A.a4k.prototype={ +gK(){return"Look up"}, +gaD(){return"double-tap to collapse"}, +gaC(){return"double-tap to expand"}, +gb8(){return"Bottom sheet"}, +gba(){return"Pop-up menu"}, +gaG(){return"Dialogue"}} +A.a4l.prototype={ +gK(){return"Look up"}, +gaD(){return"double-tap to collapse"}, +gaC(){return"double-tap to expand"}, +gb8(){return"Bottom sheet"}, +gba(){return"Pop-up menu"}, +gaG(){return"Dialogue"}} +A.a4m.prototype={ +gK(){return"Look up"}, +gaD(){return"double-tap to collapse"}, +gaC(){return"double-tap to expand"}, +gb8(){return"Bottom sheet"}, +gba(){return"Pop-up menu"}, +gaG(){return"Dialogue"}} +A.a4n.prototype={ +gK(){return"Look up"}, +gaD(){return"double-tap to collapse"}, +gaC(){return"double-tap to expand"}, +gb8(){return"Bottom sheet"}, +gba(){return"Pop-up menu"}, +gaG(){return"Dialogue"}} +A.a4o.prototype={ +gK(){return"Look up"}, +gaD(){return"double-tap to collapse"}, +gaC(){return"double-tap to expand"}, +gb8(){return"Bottom sheet"}, +gba(){return"Pop-up menu"}, +gaG(){return"Dialogue"}} +A.LT.prototype={ +gbq(){return"Alerta"}, +gbr(){return"Atr\xe1s"}, +gb8(){return"Hoja inferior"}, +gbj(){return"Cerrar"}, +gaW(){return"Desplegado"}, +gZ(){return"Copiar"}, +ga_(){return"Cortar"}, +gaY(){return"Eliminar"}, +gaG(){return"Cuadro de di\xe1logo"}, +gbx(){return"Men\xfa de navegaci\xf3n"}, +gbl(){return"Contra\xeddo"}, +gaC(){return"toca dos veces para desplegar"}, +gaQ(){return"Desplegar para ver m\xe1s detalles"}, +gaD(){return"toca dos veces para contraer"}, +gbs(){return"Contraer"}, +gK(){return"Look Up"}, +gaR(){return"Cerrar men\xfa"}, +gaM(){return"Cerrar"}, +gbB(){return"M\xe1s"}, +gaS(){return"Abrir el men\xfa de navegaci\xf3n"}, +ga0(){return"Pegar"}, +gba(){return"Men\xfa emergente"}, +gby(){return"Actualizar"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"Queda 1 car\xe1cter."}, +gbu(){return"Quedan $remainingCount caracteres"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Escanear texto"}, +gaU(){return"Sombreado"}, +gbv(){return"Cerrar $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Seleccionar todo"}, +gbw(){return"Mostrar men\xfa"}, +gbo(){return"Pesta\xf1a $tabIndex de $tabCount"}} +A.a4p.prototype={ +gaT(){return"Analizar texto"}, +gK(){return"Mirar hacia arriba"}, +gaR(){return"Descartar men\xfa"}, +gaD(){return"presiona dos veces para contraer"}, +gaC(){return"presiona dos veces para expandir"}, +gaQ(){return"Expandir para ver m\xe1s detalles"}, +gaW(){return"Expandido"}, +gaU(){return"L\xe1mina"}, +gaM(){return"Descartar"}, +gaS(){return"Abrir men\xfa de navegaci\xf3n"}, +gaY(){return"Borrar"}, +gaG(){return"Di\xe1logo"}} +A.a4q.prototype={ +gaT(){return"Analizar texto"}, +gK(){return"Mirar hacia arriba"}, +gaR(){return"Descartar men\xfa"}, +gaD(){return"presiona dos veces para contraer"}, +gaC(){return"presiona dos veces para expandir"}, +gaQ(){return"Expandir para ver m\xe1s detalles"}, +gaW(){return"Expandido"}, +gaU(){return"L\xe1mina"}, +gaM(){return"Descartar"}, +gaS(){return"Abrir men\xfa de navegaci\xf3n"}, +gaY(){return"Borrar"}, +gaG(){return"Di\xe1logo"}} +A.a4r.prototype={ +gaT(){return"Analizar texto"}, +gK(){return"Mirar hacia arriba"}, +gaR(){return"Descartar men\xfa"}, +gaD(){return"presiona dos veces para contraer"}, +gaC(){return"presiona dos veces para expandir"}, +gaQ(){return"Expandir para ver m\xe1s detalles"}, +gaW(){return"Expandido"}, +gaU(){return"L\xe1mina"}, +gaM(){return"Descartar"}, +gaS(){return"Abrir men\xfa de navegaci\xf3n"}, +gaY(){return"Borrar"}, +gaG(){return"Di\xe1logo"}} +A.a4s.prototype={ +gaT(){return"Analizar texto"}, +gK(){return"Mirar hacia arriba"}, +gaR(){return"Descartar men\xfa"}, +gaD(){return"presiona dos veces para contraer"}, +gaC(){return"presiona dos veces para expandir"}, +gaQ(){return"Expandir para ver m\xe1s detalles"}, +gaW(){return"Expandido"}, +gaU(){return"L\xe1mina"}, +gaM(){return"Descartar"}, +gaS(){return"Abrir men\xfa de navegaci\xf3n"}, +gaY(){return"Borrar"}, +gaG(){return"Di\xe1logo"}} +A.a4t.prototype={ +gaT(){return"Analizar texto"}, +gK(){return"Mirar hacia arriba"}, +gaR(){return"Descartar men\xfa"}, +gaD(){return"presiona dos veces para contraer"}, +gaC(){return"presiona dos veces para expandir"}, +gaQ(){return"Expandir para ver m\xe1s detalles"}, +gaW(){return"Expandido"}, +gaU(){return"L\xe1mina"}, +gaM(){return"Descartar"}, +gaS(){return"Abrir men\xfa de navegaci\xf3n"}, +gaY(){return"Borrar"}, +gaG(){return"Di\xe1logo"}} +A.a4u.prototype={ +gaT(){return"Analizar texto"}, +gK(){return"Mirar hacia arriba"}, +gaR(){return"Descartar men\xfa"}, +gaD(){return"presiona dos veces para contraer"}, +gaC(){return"presiona dos veces para expandir"}, +gaQ(){return"Expandir para ver m\xe1s detalles"}, +gaW(){return"Expandido"}, +gaU(){return"L\xe1mina"}, +gaM(){return"Descartar"}, +gaS(){return"Abrir men\xfa de navegaci\xf3n"}, +gaY(){return"Borrar"}, +gaG(){return"Di\xe1logo"}} +A.a4v.prototype={ +gaT(){return"Analizar texto"}, +gK(){return"Mirar hacia arriba"}, +gaR(){return"Descartar men\xfa"}, +gaD(){return"presiona dos veces para contraer"}, +gaC(){return"presiona dos veces para expandir"}, +gaQ(){return"Expandir para ver m\xe1s detalles"}, +gaW(){return"Expandido"}, +gaU(){return"L\xe1mina"}, +gaM(){return"Descartar"}, +gaS(){return"Abrir men\xfa de navegaci\xf3n"}, +gaY(){return"Borrar"}, +gaG(){return"Di\xe1logo"}} +A.a4w.prototype={ +gaT(){return"Analizar texto"}, +gK(){return"Mirar hacia arriba"}, +gaR(){return"Descartar men\xfa"}, +gaD(){return"presiona dos veces para contraer"}, +gaC(){return"presiona dos veces para expandir"}, +gaQ(){return"Expandir para ver m\xe1s detalles"}, +gaW(){return"Expandido"}, +gaU(){return"L\xe1mina"}, +gaM(){return"Descartar"}, +gaS(){return"Abrir men\xfa de navegaci\xf3n"}, +gaY(){return"Borrar"}, +gaG(){return"Di\xe1logo"}} +A.a4x.prototype={ +gaT(){return"Analizar texto"}, +gK(){return"Mirar hacia arriba"}, +gaR(){return"Descartar men\xfa"}, +gaD(){return"presiona dos veces para contraer"}, +gaC(){return"presiona dos veces para expandir"}, +gaQ(){return"Expandir para ver m\xe1s detalles"}, +gaW(){return"Expandido"}, +gaU(){return"L\xe1mina"}, +gaM(){return"Descartar"}, +gaS(){return"Abrir men\xfa de navegaci\xf3n"}, +gaY(){return"Borrar"}, +gaG(){return"Di\xe1logo"}} +A.a4y.prototype={ +gaT(){return"Analizar texto"}, +gK(){return"Mirar hacia arriba"}, +gaR(){return"Descartar men\xfa"}, +gaD(){return"presiona dos veces para contraer"}, +gaC(){return"presiona dos veces para expandir"}, +gaQ(){return"Expandir para ver m\xe1s detalles"}, +gaW(){return"Expandido"}, +gaU(){return"L\xe1mina"}, +gaM(){return"Descartar"}, +gaS(){return"Abrir men\xfa de navegaci\xf3n"}, +gaY(){return"Borrar"}, +gaG(){return"Di\xe1logo"}} +A.a4z.prototype={ +gaT(){return"Analizar texto"}, +gK(){return"Mirar hacia arriba"}, +gaR(){return"Descartar men\xfa"}, +gaD(){return"presiona dos veces para contraer"}, +gaC(){return"presiona dos veces para expandir"}, +gaQ(){return"Expandir para ver m\xe1s detalles"}, +gaW(){return"Expandido"}, +gaU(){return"L\xe1mina"}, +gaM(){return"Descartar"}, +gaS(){return"Abrir men\xfa de navegaci\xf3n"}, +gaY(){return"Borrar"}, +gaG(){return"Di\xe1logo"}} +A.a4A.prototype={ +gaT(){return"Analizar texto"}, +gK(){return"Mirar hacia arriba"}, +gaR(){return"Descartar men\xfa"}, +gaD(){return"presiona dos veces para contraer"}, +gaC(){return"presiona dos veces para expandir"}, +gaQ(){return"Expandir para ver m\xe1s detalles"}, +gaW(){return"Expandido"}, +gaU(){return"L\xe1mina"}, +gaM(){return"Descartar"}, +gaS(){return"Abrir men\xfa de navegaci\xf3n"}, +gaY(){return"Borrar"}, +gaG(){return"Di\xe1logo"}} +A.a4B.prototype={ +gaT(){return"Analizar texto"}, +gK(){return"Mirar hacia arriba"}, +gaR(){return"Descartar men\xfa"}, +gaD(){return"presiona dos veces para contraer"}, +gaC(){return"presiona dos veces para expandir"}, +gaQ(){return"Expandir para ver m\xe1s detalles"}, +gaW(){return"Expandido"}, +gaU(){return"L\xe1mina"}, +gaM(){return"Descartar"}, +gaS(){return"Abrir men\xfa de navegaci\xf3n"}, +gaY(){return"Borrar"}, +gaG(){return"Di\xe1logo"}} +A.a4C.prototype={ +gaT(){return"Analizar texto"}, +gK(){return"Mirar hacia arriba"}, +gaR(){return"Descartar men\xfa"}, +gaD(){return"presiona dos veces para contraer"}, +gaC(){return"presiona dos veces para expandir"}, +gaQ(){return"Expandir para ver m\xe1s detalles"}, +gaW(){return"Expandido"}, +gaU(){return"L\xe1mina"}, +gaM(){return"Descartar"}, +gaS(){return"Abrir men\xfa de navegaci\xf3n"}, +gaY(){return"Borrar"}, +gaG(){return"Di\xe1logo"}} +A.a4D.prototype={ +gaT(){return"Analizar texto"}, +gK(){return"Mirar hacia arriba"}, +gaR(){return"Descartar men\xfa"}, +gaD(){return"presiona dos veces para contraer"}, +gaC(){return"presiona dos veces para expandir"}, +gaQ(){return"Expandir para ver m\xe1s detalles"}, +gaW(){return"Expandido"}, +gaU(){return"L\xe1mina"}, +gaM(){return"Descartar"}, +gaS(){return"Abrir men\xfa de navegaci\xf3n"}, +gaY(){return"Borrar"}, +gaG(){return"Di\xe1logo"}} +A.a4E.prototype={ +gaT(){return"Analizar texto"}, +gK(){return"Mirar hacia arriba"}, +gaR(){return"Descartar men\xfa"}, +gaD(){return"presiona dos veces para contraer"}, +gaC(){return"presiona dos veces para expandir"}, +gaQ(){return"Expandir para ver m\xe1s detalles"}, +gaW(){return"Expandido"}, +gaU(){return"L\xe1mina"}, +gaM(){return"Descartar"}, +gaS(){return"Abrir men\xfa de navegaci\xf3n"}, +gaY(){return"Borrar"}, +gaG(){return"Di\xe1logo"}} +A.a4F.prototype={ +gaT(){return"Analizar texto"}, +gK(){return"Mirar hacia arriba"}, +gaR(){return"Descartar men\xfa"}, +gaD(){return"presiona dos veces para contraer"}, +gaC(){return"presiona dos veces para expandir"}, +gaQ(){return"Expandir para ver m\xe1s detalles"}, +gaW(){return"Expandido"}, +gaU(){return"L\xe1mina"}, +gaM(){return"Descartar"}, +gaS(){return"Abrir men\xfa de navegaci\xf3n"}, +gaY(){return"Borrar"}, +gaG(){return"Di\xe1logo"}} +A.a4G.prototype={ +gaT(){return"Analizar texto"}, +gK(){return"Mirar hacia arriba"}, +gaR(){return"Descartar men\xfa"}, +gaD(){return"presiona dos veces para contraer"}, +gaC(){return"presiona dos veces para expandir"}, +gaQ(){return"Expandir para ver m\xe1s detalles"}, +gaW(){return"Expandido"}, +gaU(){return"L\xe1mina"}, +gaM(){return"Descartar"}, +gaY(){return"Borrar"}, +gaS(){return"Abrir men\xfa de navegaci\xf3n"}, +gaG(){return"Di\xe1logo"}} +A.a4H.prototype={ +gaT(){return"Analizar texto"}, +gK(){return"Mirar hacia arriba"}, +gaR(){return"Descartar men\xfa"}, +gaD(){return"presiona dos veces para contraer"}, +gaC(){return"presiona dos veces para expandir"}, +gaQ(){return"Expandir para ver m\xe1s detalles"}, +gaW(){return"Expandido"}, +gaU(){return"L\xe1mina"}, +gaM(){return"Descartar"}, +gaS(){return"Abrir men\xfa de navegaci\xf3n"}, +gaY(){return"Borrar"}, +gaG(){return"Di\xe1logo"}} +A.a4I.prototype={ +gaT(){return"Analizar texto"}, +gK(){return"Mirar hacia arriba"}, +gaR(){return"Descartar men\xfa"}, +gaD(){return"presiona dos veces para contraer"}, +gaC(){return"presiona dos veces para expandir"}, +gaQ(){return"Expandir para ver m\xe1s detalles"}, +gaW(){return"Expandido"}, +gaU(){return"L\xe1mina"}, +gaM(){return"Descartar"}, +gaS(){return"Abrir men\xfa de navegaci\xf3n"}, +gaY(){return"Borrar"}, +gaG(){return"Di\xe1logo"}} +A.a4J.prototype={ +gbq(){return"M\xe4rguanne"}, +gbr(){return"Tagasi"}, +gb8(){return"Alumine leht"}, +gbj(){return"Sule"}, +gaW(){return"Laiendatud"}, +gZ(){return"Kopeeri"}, +ga_(){return"L\xf5ika"}, +gaY(){return"Kustuta"}, +gaG(){return"Dialoog"}, +gbx(){return"Navigeerimismen\xfc\xfc"}, +gbl(){return"Ahendatud"}, +gaC(){return"topeltpuudutage laiendamiseks"}, +gaQ(){return"Laiendage lisateabe n\xe4gemiseks"}, +gaD(){return"topeltpuudutage ahendamiseks"}, +gbs(){return"Ahenda"}, +gK(){return"Look Up"}, +gaR(){return"Sulge men\xfc\xfc"}, +gaM(){return"Loobu"}, +gbB(){return"Rohkem"}, +gaS(){return"Ava navigeerimismen\xfc\xfc"}, +ga0(){return"Kleebi"}, +gba(){return"H\xfcpikmen\xfc\xfc"}, +gby(){return"V\xe4rskendamine"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"J\xe4\xe4nud on 1 t\xe4hem\xe4rk"}, +gbu(){return"J\xe4\xe4nud on $remainingCount t\xe4hem\xe4rki"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Skanni tekst"}, +gaU(){return"Sirm"}, +gbv(){return"Sule $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Vali k\xf5ik"}, +gbw(){return"Kuva men\xfc\xfc"}, +gbo(){return"$tabIndex. vahekaart $tabCount-st"}} +A.a4K.prototype={ +gbq(){return"Alerta"}, +gbr(){return"Atzera"}, +gb8(){return"Behealdeko orria"}, +gbj(){return"Itxi"}, +gaW(){return"Zabalduta"}, +gZ(){return"Kopiatu"}, +ga_(){return"Ebaki"}, +gaY(){return"Ezabatu"}, +gaG(){return"Leihoa"}, +gbx(){return"Nabigazio-menua"}, +gbl(){return"Tolestuta"}, +gaC(){return"zabaltzeko, sakatu birritan"}, +gaQ(){return"Zabaldu hau xehetasun gehiago lortzeko"}, +gaD(){return"tolesteko, sakatu birritan"}, +gbs(){return"Tolestu"}, +gK(){return"Look Up"}, +gaR(){return"Baztertu menua"}, +gaM(){return"Baztertu"}, +gbB(){return"Gehiago"}, +gaS(){return"Ireki nabigazio-menua"}, +ga0(){return"Itsatsi"}, +gba(){return"Menu gainerakorra"}, +gby(){return"Freskatu"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 karaktere geratzen da"}, +gbu(){return"$remainingCount karaktere geratzen dira"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"Eskaneatu testua"}, +gaU(){return"Barrera"}, +gbv(){return"Itxi $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Hautatu guztiak"}, +gbw(){return"Erakutsi menua"}, +gbo(){return"$tabIndex/$tabCount fitxa"}} +A.a4L.prototype={ +gbq(){return"\u0647\u0634\u062f\u0627\u0631"}, +gbr(){return"\u0628\u0631\u06af\u0634\u062a"}, +gb8(){return"\u0628\u0631\u06af \u0632\u06cc\u0631\u06cc\u0646"}, +gbj(){return"\u0628\u0633\u062a\u0646"}, +gaW(){return"\u0627\u0632\u0647\u0645 \u0628\u0627\u0632\u0634\u062f\u0647"}, +gZ(){return"\u06a9\u067e\u06cc"}, +ga_(){return"\u0628\u0631\u0634"}, +gaY(){return"\u062d\u0630\u0641"}, +gaG(){return"\u06a9\u0627\u062f\u0631 \u06af\u0641\u062a\u06af\u0648"}, +gbx(){return"\u0645\u0646\u0648\u06cc \u067e\u06cc\u0645\u0627\u06cc\u0634"}, +gbl(){return"\u062c\u0645\u0639\u200c\u0634\u062f\u0647"}, +gaC(){return"\u0628\u0631\u0627\u06cc \u0627\u0632\u0647\u0645 \u0628\u0627\u0632\u06a9\u0631\u062f\u0646\u060c \u062f\u0648\u0636\u0631\u0628\u0647 \u0628\u0632\u0646\u06cc\u062f"}, +gaQ(){return"\u0627\u0632\u0647\u0645 \u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u0628\u0631\u0627\u06cc \u062c\u0632\u0626\u06cc\u0627\u062a \u0628\u06cc\u0634\u062a\u0631"}, +gaD(){return"\u0628\u0631\u0627\u06cc \u062c\u0645\u0639 \u06a9\u0631\u062f\u0646\u060c \u062f\u0648\u0636\u0631\u0628\u0647 \u0628\u0632\u0646\u06cc\u062f"}, +gbs(){return"\u062c\u0645\u0639 \u06a9\u0631\u062f\u0646"}, +gK(){return"Look Up"}, +gaR(){return"\u0628\u0633\u062a\u0646 \u0645\u0646\u0648"}, +gaM(){return"\u0646\u067e\u0630\u06cc\u0631\u0641\u062a\u0646"}, +gbB(){return"\u0628\u06cc\u0634\u062a\u0631"}, +gaS(){return"\u0628\u0627\u0632 \u06a9\u0631\u062f\u0646 \u0645\u0646\u0648\u06cc \u067e\u06cc\u0645\u0627\u06cc\u0634"}, +ga0(){return"\u062c\u0627\u06cc\u200c\u06af\u0630\u0627\u0631\u06cc"}, +gba(){return"\u0645\u0646\u0648\u06cc \u0628\u0627\u0632\u0634\u0648"}, +gby(){return"\u0628\u0627\u0632\u0622\u0648\u0631\u06cc"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"\u06f1 \u0646\u0648\u06cc\u0633\u0647 \u0628\u0627\u0642\u06cc \u0645\u0627\u0646\u062f\u0647 \u0627\u0633\u062a"}, +gbu(){return"$remainingCount \u0646\u0648\u06cc\u0633\u0647 \u0628\u0627\u0642\u06cc \u0645\u0627\u0646\u062f\u0647 \u0627\u0633\u062a"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"\u0627\u0633\u06a9\u0646 \u06a9\u0631\u062f\u0646 \u0646\u0648\u0634\u062a\u0627\u0631"}, +gaU(){return"\u0631\u0648\u06cc\u0647"}, +gbv(){return"\u0628\u0633\u062a\u0646 $modalRouteContentName"}, +gbD(){return B.bN}, +ga1(){return"Search Web"}, +gM(){return"\u0627\u0646\u062a\u062e\u0627\u0628 \u0647\u0645\u0647"}, +gbw(){return"\u0646\u0645\u0627\u06cc\u0634 \u0645\u0646\u0648"}, +gbo(){return"\u0628\u0631\u06af\u0647 $tabIndex \u0627\u0632 $tabCount"}} +A.a4M.prototype={ +gbq(){return"Ilmoitus"}, +gbr(){return"Takaisin"}, +gb8(){return"Alapaneeli"}, +gbj(){return"Sulje"}, +gaW(){return"Laajennettu"}, +gZ(){return"Kopioi"}, +ga_(){return"Leikkaa"}, +gaY(){return"Poista"}, +gaG(){return"Valintaikkuna"}, +gbx(){return"Navigointivalikko"}, +gbl(){return"Tiivistetty"}, +gaC(){return"laajenna kaksoisnapauttamalla"}, +gaQ(){return"Katso lis\xe4tietoja laajentamalla"}, +gaD(){return"tiivist\xe4 kaksoisnapauttamalla"}, +gbs(){return"Tiivist\xe4"}, +gK(){return"Look Up"}, +gaR(){return"Hylk\xe4\xe4 valikko"}, +gaM(){return"Ohita"}, +gbB(){return"Lis\xe4\xe4"}, +gaS(){return"Avaa navigointivalikko"}, +ga0(){return"Liit\xe4"}, +gba(){return"Ponnahdusvalikko"}, +gby(){return"P\xe4ivitys"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 merkki j\xe4ljell\xe4"}, +gbu(){return"$remainingCount merkki\xe4 j\xe4ljell\xe4"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Skannaa teksti\xe4"}, +gaU(){return"Sermi"}, +gbv(){return"Sulje $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Valitse kaikki"}, +gbw(){return"N\xe4yt\xe4 valikko"}, +gbo(){return"V\xe4lilehti $tabIndex kautta $tabCount"}} +A.a4N.prototype={ +gbq(){return"Alerto"}, +gbr(){return"Bumalik"}, +gb8(){return"Bottom Sheet"}, +gbj(){return"Isara"}, +gaW(){return"Naka-expand"}, +gZ(){return"Kopyahin"}, +ga_(){return"I-cut"}, +gaY(){return"I-delete"}, +gaG(){return"Dialog"}, +gbx(){return"Menu ng navigation"}, +gbl(){return"Naka-collapse"}, +gaC(){return"i-double tap para i-expand"}, +gaQ(){return"I-expand para sa higit pang detalye"}, +gaD(){return"i-double tap para i-collapse"}, +gbs(){return"I-collapse"}, +gK(){return"Tumingin sa Itaas"}, +gaR(){return"I-dismiss ang menu"}, +gaM(){return"I-dismiss"}, +gbB(){return"Higit Pa"}, +gaS(){return"Buksan ang menu ng navigation"}, +ga0(){return"I-paste"}, +gba(){return"Popup na menu"}, +gby(){return"Nagre-refresh"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 character ang natitira"}, +gbu(){return u.Z}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"I-scan ang text"}, +gaU(){return"Scrim"}, +gbv(){return"Isara ang $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Piliin lahat"}, +gbw(){return"Ipakita ang menu"}, +gbo(){return"Tab $tabIndex ng $tabCount"}} +A.LU.prototype={ +gbq(){return"Alerte"}, +gbr(){return"Retour"}, +gb8(){return"Bottom sheet"}, +gbj(){return"Fermer"}, +gaW(){return"D\xe9velopp\xe9"}, +gZ(){return"Copier"}, +ga_(){return"Couper"}, +gaY(){return"Supprimer"}, +gaG(){return"Bo\xeete de dialogue"}, +gbx(){return"Menu de navigation"}, +gbl(){return"R\xe9duit"}, +gaC(){return"appuyez deux fois pour d\xe9velopper"}, +gaQ(){return"D\xe9velopper pour en savoir plus"}, +gaD(){return"appuyez deux fois pour r\xe9duire"}, +gbs(){return"R\xe9duire"}, +gK(){return"Look Up"}, +gaR(){return"Fermer le menu"}, +gaM(){return"Ignorer"}, +gbB(){return"Plus"}, +gaS(){return"Ouvrir le menu de navigation"}, +ga0(){return"Coller"}, +gba(){return"Menu contextuel"}, +gby(){return"Actualiser"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1\xa0caract\xe8re restant"}, +gbu(){return"$remainingCount\xa0caract\xe8res restants"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Scanner du texte"}, +gaU(){return"Fond"}, +gbv(){return"Fermer $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Tout s\xe9lectionner"}, +gbw(){return"Afficher le menu"}, +gbo(){return"Onglet $tabIndex sur $tabCount"}} +A.a4O.prototype={ +gaT(){return"Balayer un texte"}, +gaR(){return"Ignorer le menu"}, +gaD(){return"toucher deux fois pour r\xe9duire"}, +gaC(){return"toucher deux fois pour d\xe9velopper"}, +gaQ(){return"D\xe9velopper le panneau pour plus de d\xe9tails"}, +gaU(){return"Grille"}, +gb8(){return"Zone de contenu dans le bas de l'\xe9cran"}, +gbo(){return"Onglet\xa0$tabIndex sur\xa0$tabCount"}} +A.a4P.prototype={ +gbq(){return"Alerta"}, +gbr(){return"Atr\xe1s"}, +gb8(){return"Panel inferior"}, +gbj(){return"Pechar"}, +gaW(){return"Despregado"}, +gZ(){return"Copiar"}, +ga_(){return"Cortar"}, +gaY(){return"Eliminar"}, +gaG(){return"Cadro de di\xe1logo"}, +gbx(){return"Men\xfa de navegaci\xf3n"}, +gbl(){return"Contra\xeddo"}, +gaC(){return"tocar d\xfaas veces para despregar"}, +gaQ(){return"Despregar para obter m\xe1is detalles"}, +gaD(){return"toca d\xfaas veces para contraer"}, +gbs(){return"Contraer"}, +gK(){return"Mirar cara arriba"}, +gaR(){return"Pechar men\xfa"}, +gaM(){return"Ignorar"}, +gbB(){return"M\xe1is"}, +gaS(){return"Abrir men\xfa de navegaci\xf3n"}, +ga0(){return"Pegar"}, +gba(){return"Men\xfa emerxente"}, +gby(){return"Actualizar"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 car\xe1cter restante"}, +gbu(){return"$remainingCount caracteres restantes"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Escanear texto"}, +gaU(){return"Sombreado"}, +gbv(){return"Pechar $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Seleccionar todo"}, +gbw(){return"Mostrar men\xfa"}, +gbo(){return"Pestana $tabIndex de $tabCount"}} +A.a4Q.prototype={ +gbq(){return"Benachrichtigung"}, +gbr(){return"Zur\xfcck"}, +gb8(){return"Ansicht am unteren Rand"}, +gbj(){return"Schlie\xdfen"}, +gaW(){return"Maximiert"}, +gZ(){return"Kopieren"}, +ga_(){return"Ausschneiden"}, +gaY(){return"L\xf6schen"}, +gaG(){return"Dialogfeld"}, +gbx(){return"Navigationsmen\xfc"}, +gbl(){return"Minimiert"}, +gaC(){return"Zum Maximieren doppeltippen"}, +gaQ(){return"F\xfcr weitere Details maximieren"}, +gaD(){return"Zum Minimieren doppeltippen"}, +gbs(){return"Minimieren"}, +gK(){return"Look Up"}, +gaR(){return"Men\xfc schlie\xdfen"}, +gaM(){return"Schlie\xdfen"}, +gbB(){return"Mehr"}, +gaS(){return"Navigationsmen\xfc \xf6ffnen"}, +ga0(){return"Einsetzen"}, +gba(){return"Pop-up-Men\xfc"}, +gby(){return"Aktualisieren"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"Noch 1\xa0Zeichen"}, +gbu(){return"Noch $remainingCount\xa0Zeichen"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Text scannen"}, +gaU(){return"Gitter"}, +gbv(){return"$modalRouteContentName schlie\xdfen"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Alle ausw\xe4hlen"}, +gbw(){return"Men\xfc anzeigen"}, +gbo(){return"Tab $tabIndex von $tabCount"}} +A.a4R.prototype={ +gbq(){return"\u0a85\u0ab2\u0ab0\u0acd\u0a9f"}, +gbr(){return"\u0aaa\u0abe\u0a9b\u0ab3"}, +gb8(){return"\u0aac\u0acb\u0a9f\u0aae \u0ab6\u0ac0\u0a9f"}, +gbj(){return"\u0aac\u0a82\u0aa7 \u0a95\u0ab0\u0acb"}, +gaW(){return"\u0aae\u0acb\u0a9f\u0ac0 \u0a95\u0ab0\u0ac0"}, +gZ(){return"\u0a95\u0ac9\u0aaa\u0abf \u0a95\u0ab0\u0acb"}, +ga_(){return"\u0a95\u0abe\u0aaa\u0acb"}, +gaY(){return"\u0aa1\u0abf\u0ab2\u0ac0\u0a9f \u0a95\u0ab0\u0acb"}, +gaG(){return"\u0ab8\u0a82\u0ab5\u0abe\u0aa6"}, +gbx(){return"\u0aa8\u0ac5\u0ab5\u0abf\u0a97\u0ac7\u0ab6\u0aa8 \u0aae\u0ac7\u0aa8\u0ac2"}, +gbl(){return"\u0aa8\u0abe\u0aa8\u0ac0 \u0a95\u0ab0\u0ac0"}, +gaC(){return"\u0aae\u0acb\u0a9f\u0ac0 \u0a95\u0ab0\u0ab5\u0abe \u0aae\u0abe\u0a9f\u0ac7 \u0aac\u0ac7 \u0ab5\u0abe\u0ab0 \u0a9f\u0ac5\u0aaa \u0a95\u0ab0\u0acb"}, +gaQ(){return"\u0ab5\u0aa7\u0ac1 \u0ab5\u0abf\u0a97\u0aa4\u0acb \u0aae\u0abe\u0a9f\u0ac7 \u0aae\u0acb\u0a9f\u0ac0 \u0a95\u0ab0\u0acb"}, +gaD(){return"\u0aa8\u0abe\u0aa8\u0ac0 \u0a95\u0ab0\u0ab5\u0abe \u0aae\u0abe\u0a9f\u0ac7 \u0aac\u0ac7 \u0ab5\u0abe\u0ab0 \u0a9f\u0ac5\u0aaa \u0a95\u0ab0\u0acb"}, +gbs(){return"\u0aa8\u0abe\u0aa8\u0ac0 \u0a95\u0ab0\u0acb"}, +gK(){return"Look Up"}, +gaR(){return"\u0aae\u0ac7\u0aa8\u0ac2 \u0a9b\u0acb\u0aa1\u0ac0 \u0aa6\u0acb"}, +gaM(){return"\u0a9b\u0acb\u0aa1\u0ac0 \u0aa6\u0acb"}, +gbB(){return"\u0ab5\u0aa7\u0ac1"}, +gaS(){return"\u0aa8\u0ac5\u0ab5\u0abf\u0a97\u0ac7\u0ab6\u0aa8 \u0aae\u0ac7\u0aa8\u0ac2 \u0a96\u0acb\u0ab2\u0acb"}, +ga0(){return"\u0aaa\u0ac7\u0ab8\u0acd\u0a9f \u0a95\u0ab0\u0acb"}, +gba(){return"\u0aaa\u0ac9\u0aaa\u0a85\u0aaa \u0aae\u0ac7\u0aa8\u0ac2"}, +gby(){return"\u0ab0\u0abf\u0aab\u0acd\u0ab0\u0ac7\u0ab6 \u0a95\u0ab0\u0acb"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 \u0a85\u0a95\u0acd\u0ab7\u0ab0 \u0aac\u0abe\u0a95\u0ac0"}, +gbu(){return"$remainingCount \u0a85\u0a95\u0acd\u0ab7\u0ab0 \u0aac\u0abe\u0a95\u0ac0"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"\u0a9f\u0ac7\u0a95\u0acd\u0ab8\u0acd\u0a9f \u0ab8\u0acd\u0a95\u0ac5\u0aa8 \u0a95\u0ab0\u0acb"}, +gaU(){return"\u0ab8\u0acd\u0a95\u0acd\u0ab0\u0abf\u0aae"}, +gbv(){return"$modalRouteContentName\u0aa8\u0ac7 \u0aac\u0a82\u0aa7 \u0a95\u0ab0\u0acb"}, +gbD(){return B.bN}, +ga1(){return"Search Web"}, +gM(){return"\u0aac\u0aa7\u0abe \u0aaa\u0ab8\u0a82\u0aa6 \u0a95\u0ab0\u0acb"}, +gbw(){return"\u0aae\u0ac7\u0aa8\u0ac2 \u0aac\u0aa4\u0abe\u0ab5\u0acb"}, +gbo(){return"$tabCount\u0aae\u0abe\u0a82\u0aa5\u0ac0 $tabIndex \u0a9f\u0ac5\u0aac"}} +A.a4S.prototype={ +gbq(){return"\u05d4\u05ea\u05e8\u05d0\u05d4"}, +gbr(){return"\u05d4\u05e7\u05d5\u05d3\u05dd"}, +gb8(){return"\u05d2\u05d9\u05dc\u05d9\u05d5\u05df \u05ea\u05d7\u05ea\u05d5\u05df"}, +gbj(){return"\u05e1\u05d2\u05d9\u05e8\u05d4"}, +gaW(){return"\u05de\u05d5\u05e8\u05d7\u05d1"}, +gZ(){return"\u05d4\u05e2\u05ea\u05e7\u05d4"}, +ga_(){return"\u05d2\u05d6\u05d9\u05e8\u05d4"}, +gaY(){return"\u05de\u05d7\u05d9\u05e7\u05d4"}, +gaG(){return"\u05ea\u05d9\u05d1\u05ea \u05d3\u05d5-\u05e9\u05d9\u05d7"}, +gbx(){return"\u05ea\u05e4\u05e8\u05d9\u05d8 \u05e0\u05d9\u05d5\u05d5\u05d8"}, +gbl(){return"\u05de\u05db\u05d5\u05d5\u05e5"}, +gaC(){return"\u05db\u05d3\u05d9 \u05dc\u05d4\u05e8\u05d7\u05d9\u05d1, \u05d9\u05e9 \u05dc\u05d4\u05e7\u05d9\u05e9 \u05d4\u05e7\u05e9\u05d4 \u05db\u05e4\u05d5\u05dc\u05d4"}, +gaQ(){return"\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05e8\u05d7\u05d9\u05d1 \u05dc\u05d4\u05e6\u05d2\u05ea \u05e4\u05e8\u05d8\u05d9\u05dd \u05e0\u05d5\u05e1\u05e4\u05d9\u05dd"}, +gaD(){return"\u05db\u05d3\u05d9 \u05dc\u05db\u05d5\u05d5\u05e5, \u05d9\u05e9 \u05dc\u05d4\u05e7\u05d9\u05e9 \u05d4\u05e7\u05e9\u05d4 \u05db\u05e4\u05d5\u05dc\u05d4"}, +gbs(){return"\u05db\u05d9\u05d5\u05d5\u05e5"}, +gK(){return"Look Up"}, +gaR(){return"\u05e1\u05d2\u05d9\u05e8\u05ea \u05d4\u05ea\u05e4\u05e8\u05d9\u05d8"}, +gaM(){return"\u05e1\u05d2\u05d9\u05e8\u05d4"}, +gbB(){return"\u05e2\u05d5\u05d3"}, +gaS(){return"\u05e4\u05ea\u05d9\u05d7\u05d4 \u05e9\u05dc \u05ea\u05e4\u05e8\u05d9\u05d8 \u05d4\u05e0\u05d9\u05d5\u05d5\u05d8"}, +ga0(){return"\u05d4\u05d3\u05d1\u05e7\u05d4"}, +gba(){return"\u05ea\u05e4\u05e8\u05d9\u05d8 \u05e7\u05d5\u05e4\u05e5"}, +gby(){return"\u05e8\u05e2\u05e0\u05d5\u05df"}, +gbC(){return null}, +gbE(){return"\u05e0\u05d5\u05ea\u05e8\u05d5 $remainingCount \u05ea\u05d5\u05d5\u05d9\u05dd"}, +gbn(){return"\u05e0\u05d5\u05ea\u05e8 \u05ea\u05d5 \u05d0\u05d7\u05d3"}, +gbu(){return"\u05e0\u05d5\u05ea\u05e8\u05d5 $remainingCount \u05ea\u05d5\u05d5\u05d9\u05dd"}, +gbF(){return"\u05e0\u05d5\u05ea\u05e8\u05d5 $remainingCount \u05ea\u05d5\u05d5\u05d9\u05dd"}, +gbG(){return"TBD"}, +gaT(){return"\u05e1\u05e8\u05d9\u05e7\u05ea \u05d8\u05e7\u05e1\u05d8"}, +gaU(){return"\u05de\u05d9\u05e1\u05d5\u05da"}, +gbv(){return"\u05e1\u05d2\u05d9\u05e8\u05ea $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"\u05d1\u05d7\u05d9\u05e8\u05ea \u05d4\u05db\u05d5\u05dc"}, +gbw(){return"\u05d4\u05e6\u05d2\u05ea \u05d4\u05ea\u05e4\u05e8\u05d9\u05d8"}, +gbo(){return"\u05db\u05e8\u05d8\u05d9\u05e1\u05d9\u05d9\u05d4 $tabIndex \u05de\u05ea\u05d5\u05da $tabCount"}} +A.a4T.prototype={ +gbq(){return"\u0905\u0932\u0930\u094d\u091f"}, +gbr(){return"\u0935\u093e\u092a\u0938 \u091c\u093e\u090f\u0902"}, +gb8(){return"\u092c\u0949\u091f\u092e \u0936\u0940\u091f"}, +gbj(){return"\u092c\u0902\u0926 \u0915\u0930\u0947\u0902"}, +gaW(){return"\u092c\u0921\u093c\u093e \u0915\u093f\u092f\u093e \u0917\u092f\u093e"}, +gZ(){return"\u0915\u0949\u092a\u0940 \u0915\u0930\u0947\u0902"}, +ga_(){return"\u0915\u093e\u091f\u0947\u0902"}, +gaY(){return"\u092e\u093f\u091f\u093e\u090f\u0902"}, +gaG(){return"\u0921\u093e\u092f\u0932\u0949\u0917"}, +gbx(){return"\u0928\u0947\u0935\u093f\u0917\u0947\u0936\u0928 \u092e\u0947\u0928\u094d\u092f\u0942"}, +gbl(){return"\u091b\u094b\u091f\u093e \u0915\u093f\u092f\u093e \u0917\u092f\u093e"}, +gaC(){return"\u092c\u0921\u093c\u093e \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0926\u094b \u092c\u093e\u0930 \u091f\u0948\u092a \u0915\u0930\u0947\u0902"}, +gaQ(){return"\u091c\u093c\u094d\u092f\u093e\u0926\u093e \u091c\u093e\u0928\u0915\u093e\u0930\u0940 \u0915\u0947 \u0932\u093f\u090f \u092c\u0921\u093c\u093e \u0915\u0930\u0947\u0902"}, +gaD(){return"\u091b\u094b\u091f\u093e \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0926\u094b \u092c\u093e\u0930 \u091f\u0948\u092a \u0915\u0930\u0947\u0902"}, +gbs(){return"\u091b\u094b\u091f\u093e \u0915\u0930\u0947\u0902"}, +gK(){return"Look Up"}, +gaR(){return"\u092e\u0947\u0928\u094d\u092f\u0942 \u0916\u093e\u0930\u093f\u091c \u0915\u0930\u0947\u0902"}, +gaM(){return"\u0916\u093e\u0930\u093f\u091c \u0915\u0930\u0947\u0902"}, +gbB(){return"\u095b\u094d\u092f\u093e\u0926\u093e"}, +gaS(){return"\u0928\u0947\u0935\u093f\u0917\u0947\u0936\u0928 \u092e\u0947\u0928\u094d\u092f\u0942 \u0916\u094b\u0932\u0947\u0902"}, +ga0(){return"\u091a\u093f\u092a\u0915\u093e\u090f\u0902"}, +gba(){return"\u092a\u0949\u092a\u0905\u092a \u092e\u0947\u0928\u094d\u092f\u0942"}, +gby(){return"\u0930\u0940\u092b\u093c\u094d\u0930\u0947\u0936 \u0915\u0930\u0947\u0902"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"\u090f\u0915 \u0935\u0930\u094d\u0923 \u0906\u0948\u0930 \u0921\u093e\u0932\u093e \u091c\u093e \u0938\u0915\u0924\u093e \u0939\u0948"}, +gbu(){return"$remainingCount \u0935\u0930\u094d\u0923 \u0906\u0948\u0930 \u0921\u093e\u0932\u0947 \u091c\u093e \u0938\u0915\u0924\u0947 \u0939\u0948\u0902"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"\u091f\u0947\u0915\u094d\u0938\u094d\u091f \u0938\u094d\u0915\u0948\u0928 \u0915\u0930\u0947\u0902"}, +gaU(){return"\u0938\u094d\u0915\u094d\u0930\u093f\u092e"}, +gbv(){return"$modalRouteContentName \u0915\u094b \u092c\u0902\u0926 \u0915\u0930\u0947\u0902"}, +gbD(){return B.eH}, +ga1(){return"Search Web"}, +gM(){return"\u0938\u092d\u0940 \u0915\u094b \u091a\u0941\u0928\u0947\u0902"}, +gbw(){return"\u092e\u0947\u0928\u094d\u092f\u0942 \u0926\u093f\u0916\u093e\u090f\u0902"}, +gbo(){return"$tabCount \u0915\u093e \u091f\u0948\u092c $tabIndex"}} +A.a4U.prototype={ +gbq(){return"Upozorenje"}, +gbr(){return"Natrag"}, +gb8(){return"Donja tablica"}, +gbj(){return"Zatvaranje"}, +gaW(){return"Pro\u0161ireno"}, +gZ(){return"Kopiraj"}, +ga_(){return"Izre\u017ei"}, +gaY(){return"Brisanje"}, +gaG(){return"Dijalog"}, +gbx(){return"Navigacijski izbornik"}, +gbl(){return"Sa\u017eeto"}, +gaC(){return"dvaput dodirnite za pro\u0161irivanje"}, +gaQ(){return"Pro\u0161irite da biste saznali vi\u0161e"}, +gaD(){return"dvaput dodirnite za sa\u017eimanje"}, +gbs(){return"Sa\u017emi"}, +gK(){return"Pogled prema gore"}, +gaR(){return"Odbacivanje izbornika"}, +gaM(){return"Odbaci"}, +gbB(){return"Vi\u0161e"}, +gaS(){return"Otvaranje izbornika za navigaciju"}, +ga0(){return"Zalijepi"}, +gba(){return"Sko\u010dni izbornik"}, +gby(){return"Osvje\u017ei"}, +gbC(){return"Preostala su $remainingCount znaka"}, +gbE(){return null}, +gbn(){return"Preostao je 1 znak"}, +gbu(){return"Preostalo je $remainingCount znakova"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Skeniranje teksta"}, +gaU(){return"Rubno"}, +gbv(){return"Zatvori $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Odaberi sve"}, +gbw(){return"Prikaz izbornika"}, +gbo(){return"Kartica $tabIndex od $tabCount"}} +A.a4V.prototype={ +gbq(){return"\xc9rtes\xedt\xe9s"}, +gbr(){return"Vissza"}, +gb8(){return"Als\xf3 lap"}, +gbj(){return"Bez\xe1r\xe1s"}, +gaW(){return"Kibontva"}, +gZ(){return"M\xe1sol\xe1s"}, +ga_(){return"Kiv\xe1g\xe1s"}, +gaY(){return"T\xf6rl\xe9s"}, +gaG(){return"P\xe1rbesz\xe9dablak"}, +gbx(){return"Navig\xe1ci\xf3s men\xfc"}, +gbl(){return"\xd6sszecsukva"}, +gaC(){return"dupl\xe1n koppintva kibonthatja"}, +gaQ(){return"Bontsa ki a tov\xe1bbi r\xe9szletek megtekint\xe9s\xe9hez"}, +gaD(){return"dupl\xe1n koppintva \xf6sszecsukhatja"}, +gbs(){return"\xd6sszecsuk\xe1s"}, +gK(){return"Felfel\xe9 n\xe9z\xe9s"}, +gaR(){return"Men\xfc bez\xe1r\xe1sa"}, +gaM(){return"Elvet\xe9s"}, +gbB(){return"T\xf6bb"}, +gaS(){return"Navig\xe1ci\xf3s men\xfc megnyit\xe1sa"}, +ga0(){return"Beilleszt\xe9s"}, +gba(){return"El\u0151ugr\xf3 men\xfc"}, +gby(){return"Friss\xedt\xe9s"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 karakter maradt"}, +gbu(){return"$remainingCount karakter maradt"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Sz\xf6veg beolvas\xe1sa"}, +gaU(){return"Bor\xedt\xe1s"}, +gbv(){return"$modalRouteContentName bez\xe1r\xe1sa"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"\xd6sszes kijel\xf6l\xe9se"}, +gbw(){return"Men\xfc megjelen\xedt\xe9se"}, +gbo(){return"$tabCount/$tabIndex. lap"}} +A.a4W.prototype={ +gbq(){return"\u053e\u0561\u0576\u0578\u0582\u0581\u0578\u0582\u0574"}, +gbr(){return"\u0540\u0565\u057f"}, +gb8(){return"\u0546\u0565\u0580\u0584\u0587\u056b \u0567\u056f\u0580\u0561\u0576"}, +gbj(){return"\u0553\u0561\u056f\u0565\u056c"}, +gaW(){return"\u053e\u0561\u057e\u0561\u056c\u057e\u0561\u056e \u0567"}, +gZ(){return"\u054a\u0561\u057f\u0573\u0565\u0576\u0565\u056c"}, +ga_(){return"\u053f\u057f\u0580\u0565\u056c"}, +gaY(){return"\u054b\u0576\u057b\u0565\u056c"}, +gaG(){return"\u0535\u0580\u056f\u056d\u0578\u057d\u0578\u0582\u0569\u0575\u0561\u0576 \u057a\u0561\u057f\u0578\u0582\u0570\u0561\u0576"}, +gbx(){return"\u0546\u0561\u057e\u056b\u0563\u0561\u0581\u056b\u0561\u0575\u056b \u0568\u0576\u057f\u0580\u0561\u0581\u0561\u0576\u056f"}, +gbl(){return"\u053e\u0561\u056c\u057e\u0561\u056e \u0567"}, +gaC(){return"\u056f\u0580\u056f\u0576\u0561\u056f\u056b \u0570\u057a\u0565\u0584 \u056e\u0561\u057e\u0561\u056c\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580"}, +gaQ(){return"\u056e\u0561\u057e\u0561\u056c\u0565\u0584\u055d \u0574\u0561\u0576\u0580\u0561\u0574\u0561\u057d\u0576\u0565\u0580\u0568 \u057f\u0565\u057d\u0576\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580"}, +gaD(){return"\u056f\u0580\u056f\u0576\u0561\u056f\u056b \u0570\u057a\u0565\u0584 \u056e\u0561\u056c\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580"}, +gbs(){return"\u053e\u0561\u056c\u0565\u056c"}, +gK(){return"Look Up"}, +gaR(){return"\u0553\u0561\u056f\u0565\u056c \u0568\u0576\u057f\u0580\u0561\u0581\u0561\u0576\u056f\u0568"}, +gaM(){return"\u0553\u0561\u056f\u0565\u056c"}, +gbB(){return"\u0531\u0575\u056c"}, +gaS(){return"\u0532\u0561\u0581\u0565\u056c \u0576\u0561\u057e\u056b\u0563\u0561\u0581\u056b\u0561\u0575\u056b \u0568\u0576\u057f\u0580\u0561\u0581\u0561\u0576\u056f\u0568"}, +ga0(){return"\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c"}, +gba(){return"\u0535\u056c\u0576\u0578\u0572 \u0568\u0576\u057f\u0580\u0561\u0581\u0561\u0576\u056f"}, +gby(){return"\u0539\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056c"}, +gbC(){return"\u0544\u0576\u0561\u0581 $remainingCount \u0576\u056b\u0577"}, +gbE(){return"\u0544\u0576\u0561\u0581 $remainingCount \u0576\u056b\u0577"}, +gbn(){return"\u0544\u0576\u0561\u0581\u0565\u056c \u0567 1 \u0576\u056b\u0577"}, +gbu(){return"\u0544\u0576\u0561\u0581\u0565\u056c \u0567 $remainingCount \u0576\u056b\u0577"}, +gbF(){return null}, +gbG(){return"\u0546\u056b\u0577\u056b \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0579\u056f\u0561"}, +gaT(){return"\u054d\u056f\u0561\u0576\u0561\u057e\u0578\u0580\u0565\u056c \u057f\u0565\u0584\u057d\u057f"}, +gaU(){return"\u0534\u056b\u0574\u0561\u056f"}, +gbv(){return"\u0553\u0561\u056f\u0565\u056c\u055d $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"\u0546\u0577\u0565\u056c \u0562\u0578\u056c\u0578\u0580\u0568"}, +gbw(){return"\u0551\u0578\u0582\u0575\u0581 \u057f\u0561\u056c \u0568\u0576\u057f\u0580\u0561\u0581\u0561\u0576\u056f\u0568"}, +gbo(){return"\u0546\u0565\u0580\u0564\u056b\u0580 $tabIndex\u055d $tabCount-\u056b\u0581"}} +A.a4X.prototype={ +gbq(){return"Notifikasi"}, +gbr(){return"Kembali"}, +gb8(){return"Sheet Bawah"}, +gbj(){return"Tutup"}, +gaW(){return"Diluaskan"}, +gZ(){return"Salin"}, +ga_(){return"Potong"}, +gaY(){return"Hapus"}, +gaG(){return"Dialog"}, +gbx(){return"Menu navigasi"}, +gbl(){return"Diciutkan"}, +gaC(){return"ketuk dua kali untuk meluaskan"}, +gaQ(){return"Luaskan untuk mengetahui detail selengkapnya"}, +gaD(){return"ketuk dua kali untuk menciutkan"}, +gbs(){return"Ciutkan"}, +gK(){return"Look Up"}, +gaR(){return"Tutup menu"}, +gaM(){return"Tutup"}, +gbB(){return"Lainnya"}, +gaS(){return"Buka menu navigasi"}, +ga0(){return"Tempel"}, +gba(){return"Menu pop-up"}, +gby(){return"Memuat ulang"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"Sisa 1 karakter"}, +gbu(){return"Sisa $remainingCount karakter"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Pindai teks"}, +gaU(){return"Scrim"}, +gbv(){return"Tutup $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Pilih semua"}, +gbw(){return"Tampilkan menu"}, +gbo(){return"Tab $tabIndex dari $tabCount"}} +A.a4Y.prototype={ +gbq(){return"Tilkynning"}, +gbr(){return"Til baka"}, +gb8(){return"Bla\xf0 ne\xf0st"}, +gbj(){return"Loka"}, +gaW(){return"St\xe6kka\xf0"}, +gZ(){return"Afrita"}, +ga_(){return"Klippa"}, +gaY(){return"Ey\xf0a"}, +gaG(){return"Gluggi"}, +gbx(){return"Yfirlitsvalmynd"}, +gbl(){return"Minnka\xf0"}, +gaC(){return"\xfdttu tvisvar til a\xf0 st\xe6kka"}, +gaQ(){return"St\xe6kka til a\xf0 sj\xe1 frekari uppl\xfdsingar"}, +gaD(){return"\xfdttu tvisvar til a\xf0 minnka"}, +gbs(){return"Minnka"}, +gK(){return"Look Up"}, +gaR(){return"Loka valmynd"}, +gaM(){return"Hunsa"}, +gbB(){return"Meira"}, +gaS(){return"Opna yfirlitsvalmynd"}, +ga0(){return"L\xedma"}, +gba(){return"Sprettivalmynd"}, +gby(){return"Endurn\xfdja"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 stafur eftir"}, +gbu(){return"$remainingCount stafir eftir"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"Skanna texta"}, +gaU(){return"M\xf6skvi"}, +gbv(){return"Loka $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Velja allt"}, +gbw(){return"S\xfdna valmynd"}, +gbo(){return"Flipi $tabIndex af $tabCount"}} +A.a4Z.prototype={ +gbq(){return"Avviso"}, +gbr(){return"Indietro"}, +gb8(){return"Riquadro inferiore"}, +gbj(){return"Chiudi"}, +gaW(){return"Espanso"}, +gZ(){return"Copia"}, +ga_(){return"Taglia"}, +gaY(){return"Elimina"}, +gaG(){return"Finestra di dialogo"}, +gbx(){return"Menu di navigazione"}, +gbl(){return"Compresso"}, +gaC(){return"Tocca due volte per espandere"}, +gaQ(){return"espandere e visualizzare altri dettagli"}, +gaD(){return"tocca due volte per comprimere"}, +gbs(){return"comprimere"}, +gK(){return"Cerca"}, +gaR(){return"Ignora menu"}, +gaM(){return"Ignora"}, +gbB(){return"Altro"}, +gaS(){return"Apri il menu di navigazione"}, +ga0(){return"Incolla"}, +gba(){return"Menu popup"}, +gby(){return"Aggiorna"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 carattere rimanente"}, +gbu(){return"$remainingCount caratteri rimanenti"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Scansiona testo"}, +gaU(){return"Rete"}, +gbv(){return"Chiudi $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Seleziona tutto"}, +gbw(){return"Mostra il menu"}, +gbo(){return"Scheda $tabIndex di $tabCount"}} +A.a5_.prototype={ +gbq(){return"\u901a\u77e5"}, +gbr(){return"\u623b\u308b"}, +gb8(){return"\u30dc\u30c8\u30e0\u30b7\u30fc\u30c8"}, +gbj(){return"\u9589\u3058\u308b"}, +gaW(){return"\u958b\u304d\u307e\u3057\u305f"}, +gZ(){return"\u30b3\u30d4\u30fc"}, +ga_(){return"\u5207\u308a\u53d6\u308a"}, +gaY(){return"\u524a\u9664"}, +gaG(){return"\u30c0\u30a4\u30a2\u30ed\u30b0"}, +gbx(){return"\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3 \u30e1\u30cb\u30e5\u30fc"}, +gbl(){return"\u9589\u3058\u307e\u3057\u305f"}, +gaC(){return"\u958b\u304f\u306b\u306f\u30c0\u30d6\u30eb\u30bf\u30c3\u30d7\u3057\u307e\u3059"}, +gaQ(){return"\u958b\u3044\u3066\u8a73\u7d30\u3092\u8868\u793a"}, +gaD(){return"\u30c0\u30d6\u30eb\u30bf\u30c3\u30d7\u3059\u308b\u3068\u9589\u3058\u307e\u3059"}, +gbs(){return"\u9589\u3058\u308b"}, +gK(){return"\u8abf\u3079\u308b"}, +gaR(){return"\u30e1\u30cb\u30e5\u30fc\u3092\u9589\u3058\u308b"}, +gaM(){return"\u9589\u3058\u308b"}, +gbB(){return"\u305d\u306e\u4ed6"}, +gaS(){return"\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3 \u30e1\u30cb\u30e5\u30fc\u3092\u958b\u304f"}, +ga0(){return"\u8cbc\u308a\u4ed8\u3051"}, +gba(){return"\u30dd\u30c3\u30d7\u30a2\u30c3\u30d7 \u30e1\u30cb\u30e5\u30fc"}, +gby(){return"\u66f4\u65b0"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"\u6b8b\u308a 1 \u6587\u5b57\uff08\u534a\u89d2\u76f8\u5f53\uff09"}, +gbu(){return"\u6b8b\u308a $remainingCount \u6587\u5b57\uff08\u534a\u89d2\u76f8\u5f53\uff09"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"\u30c6\u30ad\u30b9\u30c8\u3092\u30b9\u30ad\u30e3\u30f3"}, +gaU(){return"\u30b9\u30af\u30ea\u30e0"}, +gbv(){return"$modalRouteContentName \u3092\u9589\u3058\u308b"}, +gbD(){return B.eH}, +ga1(){return"Search Web"}, +gM(){return"\u3059\u3079\u3066\u9078\u629e"}, +gbw(){return"\u30e1\u30cb\u30e5\u30fc\u3092\u8868\u793a"}, +gbo(){return"\u30bf\u30d6: $tabIndex/$tabCount"}} +A.a50.prototype={ +gbq(){return"\u10d2\u10d0\u10e4\u10e0\u10d7\u10ee\u10d8\u10da\u10d4\u10d1\u10d0"}, +gbr(){return"\u10e3\u10d9\u10d0\u10dc"}, +gb8(){return"\u10e5\u10d5\u10d4\u10d3\u10d0 \u10e4\u10e3\u10e0\u10ea\u10d4\u10da\u10d8"}, +gbj(){return"\u10d3\u10d0\u10ee\u10e3\u10e0\u10d5\u10d0"}, +gaW(){return"\u10d2\u10d0\u10e4\u10d0\u10e0\u10d7\u10dd\u10d4\u10d1\u10e3\u10da\u10d8\u10d0"}, +gZ(){return"\u10d9\u10dd\u10de\u10d8\u10e0\u10d4\u10d1\u10d0"}, +ga_(){return"\u10d0\u10db\u10dd\u10ed\u10e0\u10d0"}, +gaY(){return"\u10ec\u10d0\u10e8\u10da\u10d0"}, +gaG(){return"\u10d3\u10d8\u10d0\u10da\u10dd\u10d2\u10d8"}, +gbx(){return"\u10dc\u10d0\u10d5\u10d8\u10d2\u10d0\u10ea\u10d8\u10d8\u10e1 \u10db\u10d4\u10dc\u10d8\u10e3"}, +gbl(){return"\u10e9\u10d0\u10d9\u10d4\u10ea\u10d8\u10da\u10d8\u10d0"}, +gaC(){return"\u10d2\u10d0\u10e1\u10d0\u10e4\u10d0\u10e0\u10d7\u10dd\u10d4\u10d1\u10da\u10d0\u10d3 \u10dd\u10e0\u10ef\u10d4\u10e0 \u10e8\u10d4\u10d4\u10ee\u10d4\u10d7"}, +gaQ(){return"\u10db\u10d4\u10e2\u10d8 \u10d3\u10d4\u10e2\u10d0\u10da\u10d4\u10d1\u10d8\u10e1\u10d7\u10d5\u10d8\u10e1 \u10d2\u10d0\u10d0\u10e4\u10d0\u10e0\u10d7\u10dd\u10d4\u10d7"}, +gaD(){return"\u10dd\u10e0\u10db\u10d0\u10d2\u10d0\u10d3 \u10e8\u10d4\u10d4\u10ee\u10d4\u10d7 \u10e9\u10d0\u10e1\u10d0\u10d9\u10d4\u10ea\u10d0\u10d3"}, +gbs(){return"\u10e9\u10d0\u10d9\u10d4\u10ea\u10d5\u10d0"}, +gK(){return"Look Up"}, +gaR(){return"\u10db\u10d4\u10dc\u10d8\u10e3\u10e1 \u10e3\u10d0\u10e0\u10e7\u10dd\u10e4\u10d0"}, +gaM(){return"\u10d3\u10d0\u10ee\u10e3\u10e0\u10d5\u10d0"}, +gbB(){return"\u10db\u10d4\u10e2\u10d8"}, +gaS(){return"\u10e1\u10d0\u10dc\u10d0\u10d5\u10d8\u10d2\u10d0\u10ea\u10d8\u10dd \u10db\u10d4\u10dc\u10d8\u10e3\u10e1 \u10d2\u10d0\u10ee\u10e1\u10dc\u10d0"}, +ga0(){return"\u10e9\u10d0\u10e1\u10db\u10d0"}, +gba(){return"\u10d0\u10db\u10dd\u10db\u10ee\u10e2\u10d0\u10e0\u10d8 \u10db\u10d4\u10dc\u10d8\u10e3"}, +gby(){return"\u10d2\u10d0\u10dc\u10d0\u10ee\u10da\u10d4\u10d1\u10d0"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"\u10d3\u10d0\u10e0\u10e9\u10d0 1 \u10e1\u10d8\u10db\u10d1\u10dd\u10da\u10dd"}, +gbu(){return"\u10d3\u10d0\u10e0\u10e9\u10d0 $remainingCount \u10e1\u10d8\u10db\u10d1\u10dd\u10da\u10dd"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"\u10e2\u10d4\u10e5\u10e1\u10e2\u10d8\u10e1 \u10e1\u10d9\u10d0\u10dc\u10d8\u10e0\u10d4\u10d1\u10d0"}, +gaU(){return"\u10e1\u10d9\u10e0\u10d8\u10db\u10d8"}, +gbv(){return"$modalRouteContentName-\u10d8\u10e1 \u10d3\u10d0\u10ee\u10e3\u10e0\u10d5\u10d0"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"\u10e7\u10d5\u10d4\u10da\u10d0\u10e1 \u10d0\u10e0\u10e9\u10d4\u10d5\u10d0"}, +gbw(){return"\u10db\u10d4\u10dc\u10d8\u10e3\u10e1 \u10e9\u10d5\u10d4\u10dc\u10d4\u10d1\u10d0"}, +gbo(){return"\u10e9\u10d0\u10dc\u10d0\u10e0\u10d7\u10d8 $tabIndex / $tabCount-\u10d3\u10d0\u10dc"}} +A.a51.prototype={ +gbq(){return"\u0414\u0430\u0431\u044b\u043b"}, +gbr(){return"\u0410\u0440\u0442\u049b\u0430"}, +gb8(){return"\u0422\u04e9\u043c\u0435\u043d\u0433\u0456 \u043f\u0430\u0440\u0430\u049b\u0448\u0430"}, +gbj(){return"\u0416\u0430\u0431\u0443"}, +gaW(){return"\u0416\u0430\u0439\u044b\u043b\u0434\u044b"}, +gZ(){return"\u041a\u04e9\u0448\u0456\u0440\u0443"}, +ga_(){return"\u049a\u0438\u044e"}, +gaY(){return"\u0416\u043e\u044e"}, +gaG(){return"\u0414\u0438\u0430\u043b\u043e\u0433\u0442\u044b\u049b \u0442\u0435\u0440\u0435\u0437\u0435"}, +gbx(){return"\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u043c\u04d9\u0437\u0456\u0440\u0456"}, +gbl(){return"\u0416\u0438\u044b\u043b\u0434\u044b"}, +gaC(){return"\u0436\u0430\u044e \u04af\u0448\u0456\u043d \u0435\u043a\u0456 \u0440\u0435\u0442 \u0442\u04af\u0440\u0442\u0456\u04a3\u0456\u0437"}, +gaQ(){return"\u0422\u043e\u043b\u044b\u049b \u043c\u04d9\u043b\u0456\u043c\u0435\u0442 \u0430\u043b\u0443 \u04af\u0448\u0456\u043d \u0436\u0430\u0439\u044b\u04a3\u044b\u0437."}, +gaD(){return"\u0436\u0438\u044e \u04af\u0448\u0456\u043d \u0435\u043a\u0456 \u0440\u0435\u0442 \u0442\u04af\u0440\u0442\u0456\u04a3\u0456\u0437"}, +gbs(){return"\u0416\u0438\u044e"}, +gK(){return"Look Up"}, +gaR(){return"\u041c\u04d9\u0437\u0456\u0440\u0434\u0456 \u0436\u0430\u0431\u0443"}, +gaM(){return"\u0416\u0430\u0431\u0443"}, +gbB(){return"\u0416\u0430\u044e"}, +gaS(){return"\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u043c\u04d9\u0437\u0456\u0440\u0456\u043d \u0430\u0448\u0443"}, +ga0(){return"\u049a\u043e\u044e"}, +gba(){return"\u049a\u0430\u043b\u049b\u044b\u043c\u0430\u043b\u044b \u0442\u0435\u0440\u0435\u0437\u0435 \u043c\u04d9\u0437\u0456\u0440\u0456"}, +gby(){return"\u0416\u0430\u04a3\u0430\u0440\u0442\u0443"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 \u0442\u0430\u04a3\u0431\u0430 \u049b\u0430\u043b\u0434\u044b."}, +gbu(){return"$remainingCount \u0442\u0430\u04a3\u0431\u0430 \u049b\u0430\u043b\u0434\u044b."}, +gbF(){return null}, +gbG(){return"\u0422\u0430\u04a3\u0431\u0430\u043b\u0430\u0440 \u049b\u0430\u043b\u043c\u0430\u0434\u044b"}, +gaT(){return"\u041c\u04d9\u0442\u0456\u043d\u0434\u0456 \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443"}, +gaU(){return"\u041a\u0435\u043d\u0435\u043f"}, +gbv(){return"$modalRouteContentName \u0436\u0430\u0431\u0443"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"\u0411\u0430\u0440\u043b\u044b\u0493\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u0443"}, +gbw(){return"\u041c\u04d9\u0437\u0456\u0440\u0434\u0456 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443"}, +gbo(){return"$tabCount/$tabIndex \u049b\u043e\u0439\u044b\u043d\u0434\u044b"}} +A.a52.prototype={ +gbq(){return"\u1787\u17bc\u1793\u178a\u17c6\u178e\u17b9\u1784"}, +gbr(){return"\u1790\u1799\u1780\u17d2\u179a\u17c4\u1799"}, +gb8(){return"\u179f\u1793\u17d2\u179b\u17b9\u1780\u200b\u1781\u17b6\u1784\u1780\u17d2\u179a\u17c4\u1798"}, +gbj(){return"\u1794\u17b7\u1791"}, +gaW(){return"\u1794\u17b6\u1793\u200b\u1796\u1784\u17d2\u179a\u17b8\u1780"}, +gZ(){return"\u1785\u1798\u17d2\u179b\u1784"}, +ga_(){return"\u1780\u17b6\u178f\u17cb"}, +gaY(){return"\u179b\u17bb\u1794"}, +gaG(){return"\u1794\u17d2\u179a\u17a2\u1794\u17cb"}, +gbx(){return"\u1798\u17c9\u17ba\u1793\u17bb\u1799\u179a\u17bb\u1780\u179a\u1780"}, +gbl(){return"\u1794\u17b6\u1793\u200b\u1794\u1784\u17d2\u179a\u17bd\u1798"}, +gaC(){return"\u1785\u17bb\u1785\u1796\u17b8\u179a\u178a\u1784 \u178a\u17be\u1798\u17d2\u1794\u17b8\u1796\u1784\u17d2\u179a\u17b8\u1780"}, +gaQ(){return"\u1796\u1784\u17d2\u179a\u17b8\u1780\u200b\u178a\u17be\u1798\u17d2\u1794\u17b8\u1791\u1791\u17bd\u179b\u1794\u17b6\u1793\u200b\u1796\u17d0\u178f\u17cc\u1798\u17b6\u1793\u179b\u1798\u17d2\u17a2\u17b7\u178f\u200b\u1794\u1793\u17d2\u1790\u17c2\u1798"}, +gaD(){return"\u1785\u17bb\u1785\u1796\u17b8\u179a\u178a\u1784 \u178a\u17be\u1798\u17d2\u1794\u17b8\u1794\u1784\u17d2\u179a\u17bd\u1798"}, +gbs(){return"\u1794\u1784\u17d2\u179a\u17bd\u1798"}, +gK(){return"\u179a\u1780\u1798\u17be\u179b"}, +gaR(){return"\u1785\u17d2\u179a\u17b6\u1793\u1785\u17c4\u179b\u200b\u1798\u17c9\u17ba\u1793\u17bb\u1799"}, +gaM(){return"\u1785\u17d2\u179a\u17b6\u1793\u200b\u1785\u17c4\u179b"}, +gbB(){return"\u1785\u17d2\u179a\u17be\u1793\u200b\u1791\u17c0\u178f"}, +gaS(){return"\u1794\u17be\u1780\u200b\u1798\u17c9\u17ba\u1793\u17bb\u1799\u179a\u17bb\u1780\u179a\u1780"}, +ga0(){return"\u178a\u17b6\u1780\u17cb\u200b\u1785\u17bc\u179b"}, +gba(){return"\u200b\u1798\u17c9\u17ba\u1793\u17bb\u1799\u200b\u179b\u17c4\u178f\u200b\u17a1\u17be\u1784"}, +gby(){return"\u1795\u17d2\u1791\u17bb\u1780\u17a1\u17be\u1784\u179c\u17b7\u1789"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"\u1793\u17c5\u179f\u179b\u17cb\u200b 1 \u178f\u17bd\u200b\u1791\u17c0\u178f"}, +gbu(){return"\u1793\u17c5\u179f\u179b\u17cb $remainingCount \u178f\u17bd\u200b\u1791\u17c0\u178f"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"\u179f\u17d2\u1780\u17c1\u1793\u200b\u17a2\u1780\u17d2\u179f\u179a"}, +gaU(){return"\u1795\u17d2\u1791\u17b6\u17c6\u1784\u179f\u17d2\u179a\u17a2\u17b6\u1794\u17cb"}, +gbv(){return"\u1794\u17b7\u1791 $modalRouteContentName"}, +gbD(){return B.eH}, +ga1(){return"Search Web"}, +gM(){return"\u1787\u17d2\u179a\u17be\u179f\u179a\u17be\u179f\u200b\u1791\u17b6\u17c6\u1784\u17a2\u179f\u17cb"}, +gbw(){return"\u1794\u1784\u17d2\u17a0\u17b6\u1789\u200b\u1798\u17c9\u17ba\u1793\u17bb\u1799"}, +gbo(){return"\u1795\u17d2\u1791\u17b6\u17c6\u1784 $tabIndex \u1780\u17d2\u1793\u17bb\u1784\u200b\u1785\u17c6\u178e\u17c4\u1798\u200b $tabCount"}} +A.a53.prototype={ +gbq(){return"\u0c8e\u0c9a\u0ccd\u0c9a\u0cb0\u0cbf\u0c95\u0cc6"}, +gbr(){return"\u0cb9\u0cbf\u0c82\u0ca4\u0cbf\u0cb0\u0cc1\u0c97\u0cbf"}, +gb8(){return"\u0c95\u0cc6\u0cb3\u0cad\u0cbe\u0c97\u0ca6 \u0cb6\u0cc0\u0c9f\u0ccd"}, +gbj(){return"\u0cae\u0cc1\u0c9a\u0ccd\u0c9a\u0cbf\u0cb0\u0cbf"}, +gaW(){return"\u0cb5\u0cbf\u0cb8\u0ccd\u0ca4\u0cb0\u0cbf\u0cb8\u0cb2\u0cbe\u0c97\u0cbf\u0ca6\u0cc6"}, +gZ(){return"\u0ca8\u0c95\u0cb2\u0cbf\u0cb8\u0cbf"}, +ga_(){return"\u0c95\u0ca4\u0ccd\u0ca4\u0cb0\u0cbf\u0cb8\u0cbf"}, +gaY(){return"\u0c85\u0cb3\u0cbf\u0cb8\u0cbf"}, +gaG(){return"\u0ca1\u0cc8\u0cb2\u0cbe\u0c97\u0ccd"}, +gbx(){return"\u0ca8\u0ccd\u0caf\u0cbe\u0cb5\u0cbf\u0c97\u0cc7\u0cb6\u0ca8\u0ccd\u200c \u0cae\u0cc6\u0ca8\u0cc1"}, +gbl(){return"\u0c95\u0cc1\u0c97\u0ccd\u0c97\u0cbf\u0cb8\u0cb2\u0cbe\u0c97\u0cbf\u0ca6\u0cc6"}, +gaC(){return"\u0cb5\u0cbf\u0cb8\u0ccd\u0ca4\u0cb0\u0cbf\u0cb8\u0cb2\u0cc1 \u0ca1\u0cac\u0cb2\u0ccd \u0c9f\u0ccd\u0caf\u0cbe\u0caa\u0ccd \u0cae\u0cbe\u0ca1\u0cbf"}, +gaQ(){return"\u0c87\u0ca8\u0ccd\u0ca8\u0cb7\u0ccd\u0c9f\u0cc1 \u0cb5\u0cbf\u0cb5\u0cb0\u0c97\u0cb3\u0cbf\u0c97\u0cbe\u0c97\u0cbf \u0cb5\u0cbf\u0cb8\u0ccd\u0ca4\u0cb0\u0cbf\u0cb8\u0cbf"}, +gaD(){return"\u0c95\u0cc1\u0c97\u0ccd\u0c97\u0cbf\u0cb8\u0cb2\u0cc1 \u0ca1\u0cac\u0cb2\u0ccd \u0c9f\u0ccd\u0caf\u0cbe\u0caa\u0ccd \u0cae\u0cbe\u0ca1\u0cbf"}, +gbs(){return"\u0c95\u0cc1\u0c97\u0ccd\u0c97\u0cbf\u0cb8\u0cbf"}, +gK(){return"Look Up"}, +gaR(){return"\u0cae\u0cc6\u0ca8\u0cc1\u0cb5\u0ca8\u0ccd\u0ca8\u0cc1 \u0cb5\u0c9c\u0cbe\u0c97\u0cc6\u0cc2\u0cb3\u0cbf\u0cb8\u0cbf"}, +gaM(){return"\u0cb5\u0c9c\u0cbe\u0c97\u0cca\u0cb3\u0cbf\u0cb8\u0cbf"}, +gbB(){return"\u0c87\u0ca8\u0ccd\u0ca8\u0cb7\u0ccd\u0c9f\u0cc1"}, +gaS(){return"\u0ca8\u0ccd\u0caf\u0cbe\u0cb5\u0cbf\u0c97\u0cc7\u0cb6\u0ca8\u0ccd\u200c \u0cae\u0cc6\u0ca8\u0cc1 \u0ca4\u0cc6\u0cb0\u0cc6\u0caf\u0cbf\u0cb0\u0cbf"}, +ga0(){return"\u0c85\u0c82\u0c9f\u0cbf\u0cb8\u0cbf"}, +gba(){return"\u0caa\u0cbe\u0caa\u0ccd\u0c85\u0caa\u0ccd \u0cae\u0cc6\u0ca8\u0cc1"}, +gby(){return"\u0cb0\u0cbf\u0cab\u0ccd\u0cb0\u0cc6\u0cb6\u0ccd \u0cae\u0cbe\u0ca1\u0cbf"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 \u0c85\u0c95\u0ccd\u0cb7\u0cb0 \u0c89\u0cb3\u0cbf\u0ca6\u0cbf\u0ca6\u0cc6"}, +gbu(){return"$remainingCount \u0c85\u0c95\u0ccd\u0cb7\u0cb0\u0c97\u0cb3\u0cc1 \u0c89\u0cb3\u0cbf\u0ca6\u0cbf\u0cb5\u0cc6"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"\u0caa\u0ca0\u0ccd\u0caf\u0cb5\u0ca8\u0ccd\u0ca8\u0cc1 \u0cb8\u0ccd\u0c95\u0ccd\u0caf\u0cbe\u0ca8\u0ccd \u0cae\u0cbe\u0ca1\u0cbf"}, +gaU(){return"\u0cb8\u0ccd\u0c95\u0ccd\u0cb0\u0cbf\u0cae\u0ccd"}, +gbv(){return"$modalRouteContentName \u0c85\u0ca8\u0ccd\u0ca8\u0cc1 \u0cae\u0cc1\u0c9a\u0ccd\u0c9a\u0cbf\u0cb0\u0cbf"}, +gbD(){return B.bN}, +ga1(){return"Search Web"}, +gM(){return"\u0c8e\u0cb2\u0ccd\u0cb2\u0cb5\u0ca8\u0ccd\u0ca8\u0cc2 \u0c86\u0caf\u0ccd\u0c95\u0cc6 \u0cae\u0cbe\u0ca1\u0cbf"}, +gbw(){return"\u0cae\u0cc6\u0ca8\u0cc1 \u0ca4\u0ccb\u0cb0\u0cbf\u0cb8\u0cbf"}, +gbo(){return"$tabCount \u0cb0\u0cb2\u0ccd\u0cb2\u0cbf\u0ca8 $tabIndex \u0c9f\u0ccd\u0caf\u0cbe\u0cac\u0ccd"}} +A.a54.prototype={ +gbq(){return"\uc54c\ub9bc"}, +gbr(){return"\ub4a4\ub85c"}, +gb8(){return"\ud558\ub2e8 \uc2dc\ud2b8"}, +gbj(){return"\ub2eb\uae30"}, +gaW(){return"\ud3bc\uce68"}, +gZ(){return"\ubcf5\uc0ac"}, +ga_(){return"\uc798\ub77c\ub0c4"}, +gaY(){return"\uc0ad\uc81c"}, +gaG(){return"\ub300\ud654\uc0c1\uc790"}, +gbx(){return"\ud0d0\uc0c9 \uba54\ub274"}, +gbl(){return"\uc811\ud798"}, +gaC(){return"\ub450 \ubc88 \ud0ed\ud558\uc5ec \ud3bc\uce58\uae30"}, +gaQ(){return"\uc790\uc138\ud788 \uc54c\uc544\ubcf4\ub824\uba74 \ud3bc\uce58\uae30"}, +gaD(){return"\ub450 \ubc88 \ud0ed\ud558\uc5ec \uc811\uae30"}, +gbs(){return"\uc811\uae30"}, +gK(){return"Look Up"}, +gaR(){return"\uba54\ub274 \ub2eb\uae30"}, +gaM(){return"\ub2eb\uae30"}, +gbB(){return"\ub354\ubcf4\uae30"}, +gaS(){return"\ud0d0\uc0c9 \uba54\ub274 \uc5f4\uae30"}, +ga0(){return"\ubd99\uc5ec\ub123\uae30"}, +gba(){return"\ud31d\uc5c5 \uba54\ub274"}, +gby(){return"\uc0c8\ub85c\uace0\uce68"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1\uc790 \ub0a8\uc74c"}, +gbu(){return"$remainingCount\uc790 \ub0a8\uc74c"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"\ud14d\uc2a4\ud2b8 \uc2a4\uce94"}, +gaU(){return"\uc2a4\ud06c\ub9bc"}, +gbv(){return"$modalRouteContentName \ub2eb\uae30"}, +gbD(){return B.eH}, +ga1(){return"Search Web"}, +gM(){return"\uc804\uccb4 \uc120\ud0dd"}, +gbw(){return"\uba54\ub274 \ud45c\uc2dc"}, +gbo(){return"\ud0ed $tabCount\uac1c \uc911 $tabIndex\ubc88\uc9f8"}} +A.a55.prototype={ +gbq(){return"\u042d\u0441\u043a\u0435\u0440\u0442\u04af\u04af"}, +gbr(){return"\u0410\u0440\u0442\u043a\u0430"}, +gb8(){return"\u042b\u043b\u0434\u044b\u0439\u043a\u044b \u044d\u043a\u0440\u0430\u043d"}, +gbj(){return"\u0416\u0430\u0431\u0443\u0443"}, +gaW(){return"\u0416\u0430\u0439\u044b\u043b\u044b\u043f \u043a\u04e9\u0440\u0441\u04e9\u0442\u04af\u043b\u0434\u04af"}, +gZ(){return"\u041a\u04e9\u0447\u04af\u0440\u04af\u04af"}, +ga_(){return"\u041a\u0435\u0441\u04af\u04af"}, +gaY(){return"\u0416\u043e\u043a \u043a\u044b\u043b\u0443\u0443"}, +gaG(){return"\u0414\u0438\u0430\u043b\u043e\u0433"}, +gbx(){return"\u0427\u0430\u0431\u044b\u0442\u0442\u043e\u043e \u043c\u0435\u043d\u044e\u0441\u0443"}, +gbl(){return"\u0416\u044b\u0439\u044b\u0448\u0442\u044b\u0440\u044b\u043b\u0434\u044b"}, +gaC(){return"\u0436\u0430\u0439\u044b\u043f \u043a\u04e9\u0440\u0441\u04e9\u0442\u04af\u04af \u04af\u0447\u04af\u043d \u044d\u043a\u0438 \u0436\u043e\u043b\u0443 \u0442\u0430\u043f\u0442\u0430\u04a3\u044b\u0437"}, +gaQ(){return"\u0422\u043e\u043b\u0443\u043a \u043c\u0430\u0430\u043b\u044b\u043c\u0430\u0442 \u0430\u043b\u0443\u0443 \u04af\u0447\u04af\u043d \u0436\u0430\u0439\u044b\u043f \u043a\u04e9\u0440\u04af\u04a3\u04af\u0437"}, +gaD(){return"\u0436\u044b\u0439\u044b\u0448\u0442\u044b\u0440\u0443\u0443 \u04af\u0447\u04af\u043d \u044d\u043a\u0438 \u0436\u043e\u043b\u0443 \u0442\u0430\u043f\u0442\u0430\u04a3\u044b\u0437"}, +gbs(){return"\u0416\u044b\u0439\u044b\u0448\u0442\u044b\u0440\u0443\u0443"}, +gK(){return"Look Up"}, +gaR(){return"\u041c\u0435\u043d\u044e\u043d\u0443 \u0436\u0430\u0431\u0443\u0443"}, +gaM(){return"\u0416\u0430\u0431\u0443\u0443"}, +gbB(){return"\u0414\u0430\u0433\u044b"}, +gaS(){return"\u0427\u0430\u0431\u044b\u0442\u0442\u043e\u043e \u043c\u0435\u043d\u044e\u0441\u0443\u043d \u0430\u0447\u0443\u0443"}, +ga0(){return"\u0427\u0430\u043f\u0442\u043e\u043e"}, +gba(){return"\u041a\u0430\u043b\u043a\u044b\u043f \u0447\u044b\u0433\u0443\u0443\u0447\u0443 \u043c\u0435\u043d\u044e"}, +gby(){return"\u0416\u0430\u04a3\u044b\u0440\u0442\u0443\u0443"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 \u0431\u0435\u043b\u0433\u0438 \u043a\u0430\u043b\u0434\u044b"}, +gbu(){return"$remainingCount \u0431\u0435\u043b\u0433\u0438 \u043a\u0430\u043b\u0434\u044b"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"\u0422\u0435\u043a\u0441\u0442\u0442\u0438 \u0441\u043a\u0430\u043d\u0434\u043e\u043e"}, +gaU(){return"\u041a\u0435\u043d\u0435\u043f"}, +gbv(){return"$modalRouteContentName \u0436\u0430\u0431\u0443\u0443"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"\u0411\u0430\u0430\u0440\u044b\u043d \u0442\u0430\u043d\u0434\u043e\u043e"}, +gbw(){return"\u041c\u0435\u043d\u044e\u043d\u0443 \u043a\u04e9\u0440\u0441\u04e9\u0442\u04af\u04af"}, +gbo(){return"$tabCount \u043a\u044b\u043d\u0430\u043b\u043c\u0430 \u0438\u0447\u0438\u043d\u0435\u043d $tabIndex"}} +A.a56.prototype={ +gbq(){return"\u0e81\u0eb2\u0e99\u0ec0\u0e95\u0eb7\u0ead\u0e99"}, +gbr(){return"\u0e81\u0eb1\u0e9a\u0e84\u0eb7\u0e99"}, +gb8(){return"\u0e8a\u0eb5\u0e94\u0ea5\u0eb8\u0ec8\u0ea1\u0eaa\u0eb8\u0e94"}, +gbj(){return"\u0e9b\u0eb4\u0e94"}, +gaW(){return"\u0e82\u0eb0\u0eab\u0e8d\u0eb2\u0e8d\u0ec1\u0ea5\u0ec9\u0ea7"}, +gZ(){return"\u0eaa\u0eb3\u0ec0\u0e99\u0ebb\u0eb2"}, +ga_(){return"\u0e95\u0eb1\u0e94"}, +gaY(){return"\u0ea5\u0eb6\u0e9a"}, +gaG(){return"\u0e82\u0ecd\u0ec9\u0e84\u0ea7\u0eb2\u0ea1"}, +gbx(){return"\u0ec0\u0ea1\u0e99\u0eb9\u0e99\u0eb3\u0e97\u0eb2\u0e87"}, +gbl(){return"\u0eab\u0e8d\u0ecd\u0ec9\u0ea5\u0ebb\u0e87\u0ec1\u0ea5\u0ec9\u0ea7"}, +gaC(){return"\u0ec1\u0e95\u0eb0\u0eaa\u0ead\u0e87\u0ec0\u0e97\u0eb7\u0ec8\u0ead\u0ec0\u0e9e\u0eb7\u0ec8\u0ead\u0e82\u0eb0\u0eab\u0e8d\u0eb2\u0e8d"}, +gaQ(){return"\u0e82\u0eb0\u0eab\u0e8d\u0eb2\u0e8d\u0eaa\u0eb3\u0ea5\u0eb1\u0e9a\u0e82\u0ecd\u0ec9\u0ea1\u0eb9\u0e99\u0ec0\u0e9e\u0eb5\u0ec8\u0ea1\u0ec0\u0e95\u0eb5\u0ea1"}, +gaD(){return"\u0ec1\u0e95\u0eb0\u0eaa\u0ead\u0e87\u0ec0\u0e97\u0eb7\u0ec8\u0ead\u0ec0\u0e9e\u0eb7\u0ec8\u0ead\u0eab\u0e8d\u0ecd\u0ec9\u0ea5\u0ebb\u0e87"}, +gbs(){return"\u0eab\u0e8d\u0ecd\u0ec9\u0ea5\u0ebb\u0e87"}, +gK(){return"Look Up"}, +gaR(){return"\u0e9b\u0eb4\u0e94\u0ec0\u0ea1\u0e99\u0eb9"}, +gaM(){return"\u0e9b\u0eb4\u0e94\u0ec4\u0ea7\u0ec9"}, +gbB(){return"\u0ec0\u0e9e\u0eb5\u0ec8\u0ea1\u0ec0\u0e95\u0eb5\u0ea1"}, +gaS(){return"\u0ec0\u0e9b\u0eb5\u0e94\u0ec0\u0ea1\u0e99\u0eb9\u0e81\u0eb2\u0e99\u0e99\u0eb3\u0e97\u0eb2\u0e87"}, +ga0(){return"\u0ea7\u0eb2\u0e87"}, +gba(){return"\u0ec0\u0ea1\u0e99\u0eb9\u0e9b\u0eb1\u0ead\u0e9a\u0ead\u0eb1\u0e9a"}, +gby(){return"\u0ec2\u0eab\u0ebc\u0e94\u0e84\u0eb7\u0e99\u0ec3\u0edd\u0ec8"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"\u0e8d\u0eb1\u0e87\u0ead\u0eb5\u0e81 1 \u0e95\u0ebb\u0ea7\u0ead\u0eb1\u0e81\u0eaa\u0ead\u0e99"}, +gbu(){return"\u0e8d\u0eb1\u0e87\u0ead\u0eb5\u0e81 $remainingCount \u0e95\u0ebb\u0ea7\u0ead\u0eb1\u0e81\u0eaa\u0ead\u0e99"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"\u0eaa\u0eb0\u0ec1\u0e81\u0e99\u0e82\u0ecd\u0ec9\u0e84\u0ea7\u0eb2\u0ea1"}, +gaU(){return"Scrim"}, +gbv(){return"\u0e9b\u0eb4\u0e94 $modalRouteContentName"}, +gbD(){return B.bN}, +ga1(){return"Search Web"}, +gM(){return"\u0ec0\u0ea5\u0eb7\u0ead\u0e81\u0e97\u0eb1\u0e87\u0edd\u0ebb\u0e94"}, +gbw(){return"\u0eaa\u0eb0\u0ec1\u0e94\u0e87\u0ec0\u0ea1\u0e99\u0eb9"}, +gbo(){return"\u0ec1\u0e96\u0e9a\u0e97\u0eb5 $tabIndex \u0e88\u0eb2\u0e81\u0e97\u0eb1\u0e87\u0edd\u0ebb\u0e94 $tabCount"}} +A.a57.prototype={ +gbq(){return"\u012esp\u0117jimas"}, +gbr(){return"Atgal"}, +gb8(){return"Apatinis lapas"}, +gbj(){return"U\u017edaryti"}, +gaW(){return"I\u0161skleista"}, +gZ(){return"Kopijuoti"}, +ga_(){return"I\u0161kirpti"}, +gaY(){return"I\u0161trinti"}, +gaG(){return"Dialogo langas"}, +gbx(){return"Nar\u0161ymo meniu"}, +gbl(){return"Sutraukta"}, +gaC(){return"dukart palieskite, kad i\u0161skleistum\u0117te"}, +gaQ(){return"I\u0161skleiskite, jei reikia daugiau i\u0161samios informacijos"}, +gaD(){return"dukart palieskite, kad sutrauktum\u0117te"}, +gbs(){return"Sutraukti"}, +gK(){return"Look Up"}, +gaR(){return"Atsisakyti meniu"}, +gaM(){return"Atsisakyti"}, +gbB(){return"Daugiau"}, +gaS(){return"Atidaryti nar\u0161ymo meniu"}, +ga0(){return"\u012eklijuoti"}, +gba(){return"I\u0161\u0161okantysis meniu"}, +gby(){return"Atnaujinti"}, +gbC(){return"Liko $remainingCount simboliai"}, +gbE(){return"Liko $remainingCount simbolio"}, +gbn(){return"Liko 1 simbolis"}, +gbu(){return"Liko $remainingCount simboli\u0173"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Nuskaityti tekst\u0105"}, +gaU(){return"U\u017esklanda"}, +gbv(){return"U\u017edaryti \u201e$modalRouteContentName\u201c"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Pasirinkti visk\u0105"}, +gbw(){return"Rodyti meniu"}, +gbo(){return"$tabIndex skirtukas i\u0161 $tabCount"}} +A.a58.prototype={ +gbq(){return"Br\u012bdin\u0101jums"}, +gbr(){return"Atpaka\u013c"}, +gb8(){return"Ekr\u0101na apak\u0161da\u013cas lapa"}, +gbj(){return"Aizv\u0113rt"}, +gaW(){return"Izv\u0113rsts"}, +gZ(){return"Kop\u0113t"}, +ga_(){return"Izgriezt"}, +gaY(){return"Dz\u0113st"}, +gaG(){return"Dialoglodzi\u0146\u0161"}, +gbx(){return"Navig\u0101cijas izv\u0113lne"}, +gbl(){return"Sak\u013cauts"}, +gaC(){return"dubultsk\u0101riens, lai izv\u0113rstu"}, +gaQ(){return"Izv\u0113rst, lai ieg\u016btu pla\u0161\u0101ku inform\u0101ciju"}, +gaD(){return"dubultsk\u0101riens, lai sak\u013cautu"}, +gbs(){return"Sak\u013caut"}, +gK(){return"Look Up"}, +gaR(){return"Ner\u0101d\u012bt izv\u0113lni"}, +gaM(){return"Ner\u0101d\u012bt"}, +gbB(){return"Vair\u0101k"}, +gaS(){return"Atv\u0113rt navig\u0101cijas izv\u0113lni"}, +ga0(){return"Iel\u012bm\u0113t"}, +gba(){return"Uznirsto\u0161\u0101 izv\u0113lne"}, +gby(){return"Atsvaidzin\u0101t"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"Atlikusi 1\xa0rakstz\u012bme."}, +gbu(){return"Atliku\u0161as $remainingCount\xa0rakstz\u012bmes."}, +gbF(){return null}, +gbG(){return"Nav atlikusi neviena rakstz\u012bme."}, +gaT(){return"Sken\u0113t tekstu"}, +gaU(){return"P\u0101rkl\u0101jums"}, +gbv(){return"Aizv\u0113rt $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Atlas\u012bt visu"}, +gbw(){return"R\u0101d\u012bt izv\u0113lni"}, +gbo(){return"$tabIndex.\xa0cilne no\xa0$tabCount"}} +A.a59.prototype={ +gbq(){return"\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0434\u0443\u0432\u0430\u045a\u0435"}, +gbr(){return"\u041d\u0430\u0437\u0430\u0434"}, +gb8(){return"\u0414\u043e\u043b\u0435\u043d \u043b\u0438\u0441\u0442"}, +gbj(){return"\u0417\u0430\u0442\u0432\u043e\u0440\u0438"}, +gaW(){return"\u041f\u0440\u043e\u0448\u0438\u0440\u0435\u043d\u043e"}, +gZ(){return"\u041a\u043e\u043f\u0438\u0440\u0430\u0458"}, +ga_(){return"\u0418\u0441\u0435\u0447\u0438"}, +gaY(){return"\u0418\u0437\u0431\u0440\u0438\u0448\u0438"}, +gaG(){return"\u0414\u0438\u0458\u0430\u043b\u043e\u0433"}, +gbx(){return"\u041c\u0435\u043d\u0438 \u0437\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0458\u0430"}, +gbl(){return"\u0421\u043e\u0431\u0440\u0430\u043d\u043e"}, +gaC(){return"\u0434\u043e\u043f\u0440\u0438 \u0434\u0432\u0430\u043f\u0430\u0442\u0438 \u0437\u0430 \u043f\u0440\u043e\u0448\u0438\u0440\u0443\u0432\u0430\u045a\u0435"}, +gaQ(){return"\u041f\u0440\u043e\u0448\u0438\u0440\u0438 \u0437\u0430 \u043f\u043e\u0432\u0435\u045c\u0435 \u0434\u0435\u0442\u0430\u043b\u0438"}, +gaD(){return"\u0434\u043e\u043f\u0440\u0435\u0442\u0435 \u0434\u0432\u0430\u043f\u0430\u0442\u0438 \u0437\u0430 \u0441\u043e\u0431\u0438\u0440\u0430\u045a\u0435"}, +gbs(){return"\u0421\u043e\u0431\u0435\u0440\u0438"}, +gK(){return"Look Up"}, +gaR(){return"\u041e\u0442\u0444\u0440\u043b\u0435\u0442\u0435 \u0433\u043e \u043c\u0435\u043d\u0438\u0442\u043e"}, +gaM(){return"\u041e\u0442\u0444\u0440\u043b\u0438"}, +gbB(){return"\u0423\u0448\u0442\u0435"}, +gaS(){return"\u041e\u0442\u0432\u043e\u0440\u0435\u0442\u0435 \u0433\u043e \u043c\u0435\u043d\u0438\u0442\u043e \u0437\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0458\u0430"}, +ga0(){return"\u0417\u0430\u043b\u0435\u043f\u0438"}, +gba(){return"\u0421\u043a\u043e\u043a\u0430\u0447\u043a\u043e \u043c\u0435\u043d\u0438"}, +gby(){return"\u041e\u0441\u0432\u0435\u0436\u0438"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"\u041f\u0440\u0435\u043e\u0441\u0442\u0430\u043d\u0443\u0432\u0430 \u0443\u0448\u0442\u0435 1 \u0437\u043d\u0430\u043a"}, +gbu(){return"\u041f\u0440\u0435\u043e\u0441\u0442\u0430\u043d\u0443\u0432\u0430\u0430\u0442 \u0443\u0448\u0442\u0435 $remainingCount \u0437\u043d\u0430\u0446\u0438"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"\u0421\u043a\u0435\u043d\u0438\u0440\u0430\u0458\u0442\u0435 \u0433\u043e \u0442\u0435\u043a\u0441\u0442\u043e\u0442"}, +gaU(){return"\u0421\u043a\u0440\u0438\u043c"}, +gbv(){return"\u0417\u0430\u0442\u0432\u043e\u0440\u0435\u0442\u0435 \u0458\u0430 $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"\u0418\u0437\u0431\u0435\u0440\u0438 \u0433\u0438 \u0441\u0438\u0442\u0435"}, +gbw(){return"\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u043c\u0435\u043d\u0438"}, +gbo(){return"\u041a\u0430\u0440\u0442\u0438\u0447\u043a\u0430 $tabIndex \u043e\u0434 $tabCount"}} +A.a5a.prototype={ +gbq(){return"\u0d2e\u0d41\u0d28\u0d4d\u0d28\u0d31\u0d3f\u0d2f\u0d3f\u0d2a\u0d4d\u0d2a\u0d4d"}, +gbr(){return"\u0d2e\u0d1f\u0d19\u0d4d\u0d19\u0d41\u0d15"}, +gb8(){return"\u0d2c\u0d4b\u0d1f\u0d4d\u0d1f\u0d02 \u0d37\u0d40\u0d31\u0d4d\u0d31\u0d4d"}, +gbj(){return"\u0d05\u0d1f\u0d2f\u0d4d\u200c\u0d15\u0d4d\u0d15\u0d41\u0d15"}, +gaW(){return"\u0d35\u0d3f\u0d15\u0d38\u0d3f\u0d2a\u0d4d\u0d2a\u0d3f\u0d1a\u0d4d\u0d1a\u0d41"}, +gZ(){return"\u0d2a\u0d15\u0d7c\u0d24\u0d4d\u0d24\u0d41\u0d15"}, +ga_(){return"\u0d2e\u0d41\u0d31\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15"}, +gaY(){return"\u0d07\u0d32\u0d4d\u0d32\u0d3e\u0d24\u0d3e\u0d15\u0d4d\u0d15\u0d41\u0d15"}, +gaG(){return"\u0d21\u0d2f\u0d32\u0d4b\u0d17\u0d4d"}, +gbx(){return"\u0d28\u0d3e\u0d35\u0d3f\u0d17\u0d47\u0d37\u0d7b \u0d2e\u0d46\u0d28\u0d41"}, +gbl(){return"\u0d1a\u0d41\u0d30\u0d41\u0d15\u0d4d\u0d15\u0d3f"}, +gaC(){return"\u0d35\u0d3f\u0d15\u0d38\u0d3f\u0d2a\u0d4d\u0d2a\u0d3f\u0d15\u0d4d\u0d15\u0d3e\u0d7b \u0d21\u0d2c\u0d3f\u0d7e \u0d1f\u0d3e\u0d2a\u0d4d\u0d2a\u0d4d \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d15"}, +gaQ(){return"\u0d15\u0d42\u0d1f\u0d41\u0d24\u0d7d \u0d35\u0d3f\u0d36\u0d26\u0d3e\u0d02\u0d36\u0d19\u0d4d\u0d19\u0d7e\u0d15\u0d4d\u0d15\u0d4d \u0d35\u0d3f\u0d15\u0d38\u0d3f\u0d2a\u0d4d\u0d2a\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15"}, +gaD(){return"\u0d1a\u0d41\u0d30\u0d41\u0d15\u0d4d\u0d15\u0d3e\u0d7b \u0d21\u0d2c\u0d3f\u0d7e \u0d1f\u0d3e\u0d2a\u0d4d\u0d2a\u0d4d \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d15"}, +gbs(){return"\u0d1a\u0d41\u0d30\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d15"}, +gK(){return"\u0d2e\u0d41\u0d15\u0d33\u0d3f\u0d32\u0d47\u0d15\u0d4d\u0d15\u0d4d \u0d28\u0d4b\u0d15\u0d4d\u0d15\u0d41\u0d15"}, +gaR(){return"\u0d2e\u0d46\u0d28\u0d41 \u0d21\u0d3f\u0d38\u0d4d\u0d2e\u0d3f\u0d38\u0d4d \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d15"}, +gaM(){return"\u0d28\u0d3f\u0d30\u0d38\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15"}, +gbB(){return"\u0d15\u0d42\u0d1f\u0d41\u0d24\u0d7d"}, +gaS(){return"\u0d28\u0d3e\u0d35\u0d3f\u0d17\u0d47\u0d37\u0d7b \u0d2e\u0d46\u0d28\u0d41 \u0d24\u0d41\u0d31\u0d15\u0d4d\u0d15\u0d41\u0d15"}, +ga0(){return"\u0d12\u0d1f\u0d4d\u0d1f\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15"}, +gba(){return"\u0d2a\u0d4b\u0d2a\u0d4d\u0d2a\u0d4d \u0d05\u0d2a\u0d4d\u0d2a\u0d4d \u0d2e\u0d46\u0d28\u0d41"}, +gby(){return"\u0d31\u0d40\u0d2b\u0d4d\u0d30\u0d37\u0d4d \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d15"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"\u0d12\u0d30\u0d41 \u0d2a\u0d4d\u0d30\u0d24\u0d40\u0d15\u0d02 \u0d36\u0d47\u0d37\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d41"}, +gbu(){return"$remainingCount \u0d2a\u0d4d\u0d30\u0d24\u0d40\u0d15\u0d19\u0d4d\u0d19\u0d7e \u0d36\u0d47\u0d37\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d28\u0d4d\u0d28\u0d41"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"\u0d1f\u0d46\u0d15\u0d4d\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d \u0d38\u0d4d\u200c\u0d15\u0d3e\u0d7b \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d15"}, +gaU(){return"\u0d38\u0d4d\u0d15\u0d4d\u0d30\u0d3f\u0d02"}, +gbv(){return"$modalRouteContentName \u0d05\u0d1f\u0d2f\u0d4d\u0d15\u0d4d\u0d15\u0d41\u0d15"}, +gbD(){return B.bN}, +ga1(){return"Search Web"}, +gM(){return"\u0d0e\u0d32\u0d4d\u0d32\u0d3e\u0d02 \u0d24\u0d3f\u0d30\u0d1e\u0d4d\u0d1e\u0d46\u0d1f\u0d41\u0d15\u0d4d\u0d15\u0d41\u0d15"}, +gbw(){return"\u0d2e\u0d46\u0d28\u0d41 \u0d15\u0d3e\u0d23\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15"}, +gbo(){return"$tabCount-\u0d7d $tabIndex"}} +A.a5b.prototype={ +gbq(){return"\u0421\u044d\u0440\u044d\u043c\u0436\u043b\u04af\u04af\u043b\u044d\u0433"}, +gbr(){return"\u0411\u0443\u0446\u0430\u0445"}, +gb8(){return"\u0414\u043e\u043e\u0434 \u0445\u04af\u0441\u043d\u044d\u0433\u0442"}, +gbj(){return"\u0425\u0430\u0430\u0445"}, +gaW(){return"\u0414\u044d\u043b\u0433\u044d\u0441\u044d\u043d"}, +gZ(){return"\u0425\u0443\u0443\u043b\u0430\u0445"}, +ga_(){return"\u0422\u0430\u0441\u043b\u0430\u0445"}, +gaY(){return"\u0423\u0441\u0442\u0433\u0430\u0445"}, +gaG(){return"\u0425\u0430\u0440\u0438\u043b\u0446\u0430\u0445 \u0446\u043e\u043d\u0445"}, +gbx(){return"\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u044b\u043d \u0446\u044d\u0441"}, +gbl(){return"\u0425\u0443\u0440\u0430\u0430\u0441\u0430\u043d"}, +gaC(){return"\u0434\u044d\u043b\u0433\u044d\u0445\u0438\u0439\u043d \u0442\u0443\u043b\u0434 \u0445\u043e\u0451\u0440 \u0442\u043e\u0432\u0448\u0438\u043d\u043e \u0443\u0443"}, +gaQ(){return"\u0418\u043b\u04af\u04af \u0434\u044d\u043b\u0433\u044d\u0440\u044d\u043d\u0433\u04af\u0439 \u0430\u0432\u0430\u0445 \u0431\u043e\u043b \u0434\u044d\u043b\u0433\u044d\u043d\u044d \u04af\u04af"}, +gaD(){return"\u0445\u0443\u0440\u0430\u0430\u0445\u044b\u043d \u0442\u0443\u043b\u0434 \u0445\u043e\u0451\u0440 \u0442\u043e\u0432\u0448\u0438\u043d\u043e \u0443\u0443"}, +gbs(){return"\u0425\u0443\u0440\u0430\u0430\u0445"}, +gK(){return"Look Up"}, +gaR(){return"\u0426\u044d\u0441\u0438\u0439\u0433 \u0445\u0430\u0430\u0445"}, +gaM(){return"\u04ae\u043b \u0445\u044d\u0440\u044d\u0433\u0441\u044d\u0445"}, +gbB(){return"\u0411\u0443\u0441\u0430\u0434"}, +gaS(){return"\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u044b\u043d \u0446\u044d\u0441\u0438\u0439\u0433 \u043d\u044d\u044d\u0445"}, +ga0(){return"\u0411\u0443\u0443\u043b\u0433\u0430\u0445"}, +gba(){return"\u041f\u043e\u043f\u0430\u043f \u0446\u044d\u0441"}, +gby(){return"\u0421\u044d\u0440\u0433\u044d\u044d\u0445"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 \u0442\u044d\u043c\u0434\u044d\u0433\u0442 \u04af\u043b\u0434\u0441\u044d\u043d"}, +gbu(){return"$remainingCount \u0442\u044d\u043c\u0434\u044d\u0433\u0442 \u04af\u043b\u0434\u0441\u044d\u043d"}, +gbF(){return null}, +gbG(){return"No characters remaining"}, +gaT(){return"\u0422\u0435\u043a\u0441\u0442\u0438\u0439\u0433 \u0441\u043a\u0430\u043d \u0445\u0438\u0439\u0445"}, +gaU(){return"\u0421\u043a\u0440\u0438\u043c"}, +gbv(){return"$modalRouteContentName-\u0433 \u0445\u0430\u0430\u0445"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"\u0411\u04af\u0433\u0434\u0438\u0439\u0433 \u0441\u043e\u043d\u0433\u043e\u0445"}, +gbw(){return"\u0426\u044d\u0441\u0438\u0439\u0433 \u0445\u0430\u0440\u0443\u0443\u043b\u0430\u0445"}, +gbo(){return"$tabCount-\u043d $tabIndex-\u0440 \u0442\u0430\u0431"}} +A.a5c.prototype={ +gbq(){return"\u0938\u0942\u091a\u0928\u093e"}, +gbr(){return"\u092e\u093e\u0917\u0947"}, +gb8(){return"\u0924\u0933\u093e\u0936\u0940 \u0905\u0938\u0932\u0947\u0932\u0940 \u0936\u0940\u091f"}, +gbj(){return"\u092c\u0902\u0926 \u0915\u0930\u093e"}, +gaW(){return"\u0935\u093f\u0938\u094d\u0924\u093e\u0930 \u0915\u0947\u0932\u0947"}, +gZ(){return"\u0915\u0949\u092a\u0940 \u0915\u0930\u093e"}, +ga_(){return"\u0915\u091f \u0915\u0930\u093e"}, +gaY(){return"\u0939\u091f\u0935\u093e"}, +gaG(){return"\u0921\u093e\u092f\u0932\u0949\u0917"}, +gbx(){return"\u0928\u0947\u0935\u094d\u0939\u093f\u0917\u0947\u0936\u0928 \u092e\u0947\u0928\u0942"}, +gbl(){return"\u0915\u094b\u0932\u0945\u092a\u094d\u0938 \u0915\u0947\u0932\u0947"}, +gaC(){return"\u0935\u093f\u0938\u094d\u0924\u093e\u0930 \u0915\u0930\u0923\u094d\u200d\u092f\u093e\u0938\u093e\u0920\u0940 \u0926\u094b\u0928\u0926\u093e \u091f\u0945\u092a \u0915\u0930\u093e"}, +gaQ(){return"\u0906\u0923\u0916\u0940 \u0924\u092a\u0936\u093f\u0932\u093e\u0902\u0938\u093e\u0920\u0940 \u0935\u093f\u0938\u094d\u0924\u093e\u0930 \u0915\u0930\u093e"}, +gaD(){return"\u0915\u094b\u0932\u0945\u092a\u094d\u0938 \u0915\u0930\u0923\u094d\u092f\u093e\u0938\u093e\u0920\u0940 \u0926\u094b\u0928\u0926\u093e \u091f\u0945\u092a \u0915\u0930\u093e"}, +gbs(){return"\u0915\u094b\u0932\u0945\u092a\u094d\u0938 \u0915\u0930\u093e"}, +gK(){return"Look Up"}, +gaR(){return"\u092e\u0947\u0928\u0942 \u0921\u093f\u0938\u092e\u093f\u0938 \u0915\u0930\u093e"}, +gaM(){return"\u0921\u093f\u0938\u092e\u093f\u0938 \u0915\u0930\u093e"}, +gbB(){return"\u0906\u0923\u0916\u0940"}, +gaS(){return"\u0928\u0947\u0935\u094d\u0939\u093f\u0917\u0947\u0936\u0928 \u092e\u0947\u0928\u0942 \u0909\u0918\u0921\u093e"}, +ga0(){return"\u092a\u0947\u0938\u094d\u091f \u0915\u0930\u093e"}, +gba(){return"\u092a\u0949\u092a\u0905\u092a \u092e\u0947\u0928\u0942"}, +gby(){return"\u0930\u093f\u092b\u094d\u0930\u0947\u0936 \u0915\u0930\u093e"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"\u090f\u0915 \u0935\u0930\u094d\u0923 \u0936\u093f\u0932\u094d\u0932\u0915"}, +gbu(){return"$remainingCount \u0935\u0930\u094d\u0923 \u0936\u093f\u0932\u094d\u0932\u0915"}, +gbF(){return null}, +gbG(){return"\u0915\u094b\u0923\u0924\u0947\u0939\u0940 \u0935\u0930\u094d\u0923 \u0936\u093f\u0932\u094d\u0932\u0915 \u0928\u093e\u0939\u0940\u0924"}, +gaT(){return"\u092e\u091c\u0915\u0942\u0930 \u0938\u094d\u0915\u0945\u0928 \u0915\u0930\u093e"}, +gaU(){return"\u0938\u094d\u0915\u094d\u0930\u093f\u092e"}, +gbv(){return"$modalRouteContentName \u092c\u0902\u0926 \u0915\u0930\u093e"}, +gbD(){return B.eH}, +ga1(){return"Search Web"}, +gM(){return"\u0938\u0930\u094d\u0935 \u0928\u093f\u0935\u0921\u093e"}, +gbw(){return"\u092e\u0947\u0928\u0942 \u0926\u093e\u0916\u0935\u093e"}, +gbo(){return"$tabCount \u092a\u0948\u0915\u0940 $tabIndex \u091f\u0945\u092c"}} +A.a5d.prototype={ +gbq(){return"Makluman"}, +gbr(){return"Kembali"}, +gb8(){return"Helaian Bawah"}, +gbj(){return"Tutup"}, +gaW(){return"Dikembangkan"}, +gZ(){return"Salin"}, +ga_(){return"Potong"}, +gaY(){return"Padam"}, +gaG(){return"Dialog"}, +gbx(){return"Menu navigasi"}, +gbl(){return"Dikuncupkan"}, +gaC(){return"ketik dua kali untuk kembangkan"}, +gaQ(){return"Kembangkan untuk mendapatkan butiran lanjut"}, +gaD(){return"ketik dua kali untuk kuncupkan"}, +gbs(){return"Kuncupkan"}, +gK(){return"Lihat ke Atas"}, +gaR(){return"Ketepikan menu"}, +gaM(){return"Tolak"}, +gbB(){return"Lagi"}, +gaS(){return"Buka menu navigasi"}, +ga0(){return"Tampal"}, +gba(){return"Menu pop timbul"}, +gby(){return"Muat semula"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 aksara lagi"}, +gbu(){return"$remainingCount aksara lagi"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Imbas teks"}, +gaU(){return"Scrim"}, +gbv(){return"Tutup $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Pilih semua"}, +gbw(){return"Tunjukkan menu"}, +gbo(){return"Tab $tabIndex dari $tabCount"}} +A.a5e.prototype={ +gbq(){return"\u101e\u1010\u102d\u1015\u1031\u1038\u1001\u103b\u1000\u103a"}, +gbr(){return"\u1014\u1031\u102c\u1000\u103a\u101e\u102d\u102f\u1037"}, +gb8(){return"\u1021\u1031\u102c\u1000\u103a\u1001\u103c\u1031\u1021\u1015\u102d\u102f\u1006\u1031\u102c\u1004\u103a\u1038 \u1005\u102c\u1019\u103b\u1000\u103a\u1014\u103e\u102c"}, +gbj(){return"\u1015\u102d\u1010\u103a\u101b\u1014\u103a"}, +gaW(){return"\u1016\u103c\u1014\u1037\u103a\u1011\u102c\u1038\u101e\u100a\u103a"}, +gZ(){return"\u1019\u102d\u1010\u1039\u1010\u1030\u1000\u1030\u1038\u101b\u1014\u103a"}, +ga_(){return"\u1016\u103c\u1010\u103a\u101a\u1030\u101b\u1014\u103a"}, +gaY(){return"\u1016\u103b\u1000\u103a\u101b\u1014\u103a"}, +gaG(){return"\u1012\u102d\u102f\u1004\u103a\u101a\u102c\u101c\u1031\u102c\u1037"}, +gbx(){return"\u101c\u1019\u103a\u1038\u100a\u103d\u103e\u1014\u103a \u1019\u102e\u1014\u1030\u1038"}, +gbl(){return"\u1001\u1031\u102b\u1000\u103a\u1011\u102c\u1038\u101e\u100a\u103a"}, +gaC(){return"\u1016\u103c\u1014\u1037\u103a\u101b\u1014\u103a \u1014\u103e\u1005\u103a\u1001\u103b\u1000\u103a\u1010\u102d\u102f\u1037\u1015\u102b"}, +gaQ(){return"\u1021\u101e\u1031\u1038\u1005\u102d\u1010\u103a\u1021\u1010\u103d\u1000\u103a \u1016\u103c\u1014\u1037\u103a\u101b\u1014\u103a"}, +gaD(){return"\u1001\u1031\u102b\u1000\u103a\u101b\u1014\u103a \u1014\u103e\u1005\u103a\u1001\u103b\u1000\u103a\u1010\u102d\u102f\u1037\u1015\u102b"}, +gbs(){return"\u1001\u1031\u102b\u1000\u103a\u101b\u1014\u103a"}, +gK(){return"Look Up"}, +gaR(){return"\u1019\u102e\u1014\u1030\u1038\u1000\u102d\u102f\u1015\u101a\u103a\u1015\u102b"}, +gaM(){return"\u1015\u101a\u103a\u101b\u1014\u103a"}, +gbB(){return"\u1014\u1031\u102c\u1000\u103a\u1011\u1015\u103a"}, +gaS(){return"\u101c\u1019\u103a\u1038\u100a\u103d\u103e\u1014\u103a\u1019\u102e\u1014\u1030\u1038\u1000\u102d\u102f \u1016\u103d\u1004\u1037\u103a\u101b\u1014\u103a"}, +ga0(){return"\u1000\u1030\u1038\u1011\u100a\u1037\u103a\u101b\u1014\u103a"}, +gba(){return"\u1015\u1031\u102b\u1037\u1015\u103a\u1021\u1015\u103a\u1019\u102e\u1014\u1030\u1038"}, +gby(){return"\u1015\u103c\u1014\u103a\u101c\u100a\u103a\u1005\u1010\u1004\u103a\u101b\u1014\u103a"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"\u1021\u1000\u1039\u1001\u101b\u102c \u1041 \u101c\u102f\u1036\u1038\u1000\u103b\u1014\u103a\u101e\u100a\u103a"}, +gbu(){return"\u1021\u1000\u1039\u1001\u101b\u102c $remainingCount \u101c\u102f\u1036\u1038\u1000\u103b\u1014\u103a\u101e\u100a\u103a"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"\u1005\u102c\u101e\u102c\u1038 \u1005\u1000\u1004\u103a\u1016\u1010\u103a\u101b\u1014\u103a"}, +gaU(){return"Scrim"}, +gbv(){return"$modalRouteContentName \u1015\u102d\u1010\u103a\u101b\u1014\u103a"}, +gbD(){return B.bN}, +ga1(){return"Search Web"}, +gM(){return"\u1021\u102c\u1038\u101c\u102f\u1036\u1038 \u101b\u103d\u1031\u1038\u101b\u1014\u103a"}, +gbw(){return"\u1019\u102e\u1014\u1030\u1038 \u1015\u103c\u101b\u1014\u103a"}, +gbo(){return"\u1010\u1018\u103a $tabCount \u1021\u1014\u1000\u103a $tabIndex \u1001\u102f"}} +A.a5f.prototype={ +gbq(){return"Varsel"}, +gbr(){return"Tilbake"}, +gb8(){return"Felt nederst"}, +gbj(){return"Lukk"}, +gaW(){return"Vises"}, +gZ(){return"Kopi\xe9r"}, +ga_(){return"Klipp ut"}, +gaY(){return"Slett"}, +gaG(){return"Dialogboks"}, +gbx(){return"Navigasjonsmeny"}, +gbl(){return"Skjules"}, +gaC(){return"dobbelttrykk for \xe5 vise"}, +gaQ(){return"Vis for \xe5 se mer informasjon"}, +gaD(){return"dobbelttrykk for \xe5 skjule"}, +gbs(){return"Skjul"}, +gK(){return"Look Up"}, +gaR(){return"Lukk menyen"}, +gaM(){return"Avvis"}, +gbB(){return"Mer"}, +gaS(){return"\xc5pne navigasjonsmenyen"}, +ga0(){return"Lim inn"}, +gba(){return"Forgrunnsmeny"}, +gby(){return"Laster inn p\xe5 nytt"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 tegn gjenst\xe5r"}, +gbu(){return"$remainingCount tegn gjenst\xe5r"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"Skann tekst"}, +gaU(){return"Vev"}, +gbv(){return"Lukk $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Velg alle"}, +gbw(){return"Vis meny"}, +gbo(){return"Fane $tabIndex av $tabCount"}} +A.a5g.prototype={ +gbq(){return"\u0905\u0932\u0930\u094d\u091f"}, +gbr(){return"\u092a\u091b\u093e\u0921\u093f \u091c\u093e\u0928\u0941\u0939\u094b\u0938\u094d"}, +gb8(){return"\u092a\u0941\u091b\u093e\u0930\u0915\u094b \u092a\u093e\u0928\u093e"}, +gbj(){return"\u092c\u0928\u094d\u0926 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"}, +gaW(){return"\u090f\u0915\u094d\u0938\u094d\u092a\u093e\u0928\u094d\u0921 \u0917\u0930\u093f\u092f\u094b"}, +gZ(){return"\u092a\u094d\u0930\u0924\u093f\u0932\u093f\u092a\u093f \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"}, +ga_(){return"\u0915\u093e\u091f\u094d\u0928\u0941\u0939\u094b\u0938\u094d"}, +gaY(){return"\u092e\u0947\u091f\u094d\u0928\u0941\u0939\u094b\u0938\u094d"}, +gaG(){return"\u0938\u0902\u0935\u093e\u0926"}, +gbx(){return"\u0928\u0947\u092d\u093f\u0917\u0947\u0938\u0928 \u092e\u0947\u0928\u0941"}, +gbl(){return"\u0915\u094b\u0932\u094d\u092f\u093e\u092a\u094d\u0938 \u0917\u0930\u093f\u092f\u094b"}, +gaC(){return"\u090f\u0915\u094d\u0938\u094d\u092a\u093e\u0928\u094d\u0921 \u0917\u0930\u094d\u0928 \u0921\u092c\u0932 \u091f\u094d\u092f\u093e\u092a \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"}, +gaQ(){return"\u0925\u092a \u0935\u093f\u0935\u0930\u0923 \u0939\u0947\u0930\u094d\u0928 \u090f\u0915\u094d\u0938\u094d\u092a\u093e\u0928\u094d\u0921 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"}, +gaD(){return"\u0915\u094b\u0932\u094d\u092f\u093e\u092a\u094d\u0938 \u0917\u0930\u094d\u0928 \u0921\u092c\u0932 \u091f\u094d\u092f\u093e\u092a \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"}, +gbs(){return"\u0915\u094b\u0932\u094d\u092f\u093e\u092a\u094d\u0938 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"}, +gK(){return"Look Up"}, +gaR(){return"\u092e\u0947\u0928\u0941 \u0916\u093e\u0930\u0947\u091c \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"}, +gaM(){return"\u0916\u093e\u0930\u0947\u091c \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"}, +gbB(){return"\u0925\u092a"}, +gaS(){return"\u0928\u0947\u092d\u093f\u0917\u0947\u0938\u0928 \u092e\u0947\u0928\u0941 \u0916\u094b\u0932\u094d\u0928\u0941\u0939\u094b\u0938\u094d"}, +ga0(){return"\u091f\u093e\u0901\u0938\u094d\u0928\u0941\u0939\u094b\u0938\u094d"}, +gba(){return"\u092a\u092a\u0905\u092a \u092e\u0947\u0928\u0941"}, +gby(){return"\u092a\u0941\u0928\u0903 \u0924\u093e\u091c\u093e \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"\u0967 \u0935\u0930\u094d\u0923 \u092c\u093e\u0901\u0915\u0940"}, +gbu(){return"$remainingCount \u0935\u0930\u094d\u0923\u0939\u0930\u0942 \u092c\u093e\u0901\u0915\u0940"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"\u091f\u0947\u0915\u094d\u0938\u094d\u091f \u0938\u094d\u0915\u094d\u092f\u093e\u0928 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"}, +gaU(){return"\u0938\u094d\u0915\u094d\u0930\u093f\u092e"}, +gbv(){return"$modalRouteContentName \u092c\u0928\u094d\u0926 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"}, +gbD(){return B.bN}, +ga1(){return"Search Web"}, +gM(){return"\u0938\u092c\u0948 \u092c\u091f\u0928\u0939\u0930\u0942 \u091a\u092f\u0928 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938\u094d"}, +gbw(){return"\u092e\u0947\u0928\u0941 \u0926\u0947\u0916\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d"}, +gbo(){return"$tabCount \u092e\u0927\u094d\u092f\u0947 $tabIndex \u091f\u094d\u092f\u093e\u092c"}} +A.a5h.prototype={ +gbq(){return"Melding"}, +gbr(){return"Terug"}, +gb8(){return"Blad onderaan"}, +gbj(){return"Sluiten"}, +gaW(){return"Uitgevouwen"}, +gZ(){return"Kopi\xebren"}, +ga_(){return"Knippen"}, +gaY(){return"Verwijderen"}, +gaG(){return"Dialoogvenster"}, +gbx(){return"Navigatiemenu"}, +gbl(){return"Samengevouwen"}, +gaC(){return"dubbeltik om uit te vouwen"}, +gaQ(){return"Uitvouwen voor meer informatie"}, +gaD(){return"dubbeltik om samen te vouwen"}, +gbs(){return"Samenvouwen"}, +gK(){return"Look Up"}, +gaR(){return"Menu sluiten"}, +gaM(){return"Sluiten"}, +gbB(){return"Meer"}, +gaS(){return"Navigatiemenu openen"}, +ga0(){return"Plakken"}, +gba(){return"Pop-upmenu"}, +gby(){return"Vernieuwen"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 teken resterend"}, +gbu(){return"$remainingCount tekens resterend"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Tekst scannen"}, +gaU(){return"Scrim"}, +gbv(){return"$modalRouteContentName sluiten"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Alles selecteren"}, +gbw(){return"Menu tonen"}, +gbo(){return"Tabblad $tabIndex van $tabCount"}} +A.a5i.prototype={ +gbq(){return"Varsel"}, +gbr(){return"Tilbake"}, +gb8(){return"Felt nederst"}, +gbj(){return"Lukk"}, +gaW(){return"Vises"}, +gZ(){return"Kopi\xe9r"}, +ga_(){return"Klipp ut"}, +gaY(){return"Slett"}, +gaG(){return"Dialogboks"}, +gbx(){return"Navigasjonsmeny"}, +gbl(){return"Skjules"}, +gaC(){return"dobbelttrykk for \xe5 vise"}, +gaQ(){return"Vis for \xe5 se mer informasjon"}, +gaD(){return"dobbelttrykk for \xe5 skjule"}, +gbs(){return"Skjul"}, +gK(){return"Look Up"}, +gaR(){return"Lukk menyen"}, +gaM(){return"Avvis"}, +gbB(){return"Mer"}, +gaS(){return"\xc5pne navigasjonsmenyen"}, +ga0(){return"Lim inn"}, +gba(){return"Forgrunnsmeny"}, +gby(){return"Laster inn p\xe5 nytt"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 tegn gjenst\xe5r"}, +gbu(){return"$remainingCount tegn gjenst\xe5r"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"Skann tekst"}, +gaU(){return"Vev"}, +gbv(){return"Lukk $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Velg alle"}, +gbw(){return"Vis meny"}, +gbo(){return"Fane $tabIndex av $tabCount"}} +A.a5j.prototype={ +gbq(){return"\u0b06\u0b32\u0b30\u0b4d\u0b1f"}, +gbr(){return"\u0b2a\u0b1b\u0b15\u0b41 \u0b2b\u0b47\u0b30\u0b28\u0b4d\u0b24\u0b41"}, +gb8(){return"\u0b2c\u0b1f\u0b2e \u0b38\u0b3f\u0b1f"}, +gbj(){return"\u0b2c\u0b28\u0b4d\u0b26 \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"}, +gaW(){return"\u0b2c\u0b3f\u0b38\u0b4d\u0b24\u0b3e\u0b30 \u0b15\u0b30\u0b3e\u0b2f\u0b3e\u0b07\u0b1b\u0b3f"}, +gZ(){return"\u0b15\u0b2a\u0b3f \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"}, +ga_(){return"\u0b15\u0b1f\u0b4d \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"}, +gaY(){return"\u0b21\u0b3f\u0b32\u0b3f\u0b1f\u0b4d \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"}, +gaG(){return"\u0b21\u0b3e\u0b5f\u0b32\u0b17\u0b4d"}, +gbx(){return"\u0b28\u0b47\u0b2d\u0b3f\u0b17\u0b47\u0b38\u0b28\u0b4d \u0b2e\u0b47\u0b28\u0b41"}, +gbl(){return"\u0b38\u0b19\u0b4d\u0b15\u0b41\u0b1a\u0b3f\u0b24 \u0b15\u0b30\u0b3e\u0b2f\u0b3e\u0b07\u0b1b\u0b3f"}, +gaC(){return"\u0b2c\u0b3f\u0b38\u0b4d\u0b24\u0b3e\u0b30 \u0b15\u0b30\u0b3f\u0b2c\u0b3e \u0b2a\u0b3e\u0b07\u0b01 \u0b26\u0b41\u0b07\u0b25\u0b30 \u0b1f\u0b3e\u0b2a \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"}, +gaQ(){return"\u0b05\u0b27\u0b3f\u0b15 \u0b2c\u0b3f\u0b2c\u0b30\u0b23\u0b40 \u0b2a\u0b3e\u0b07\u0b01 \u0b2c\u0b3f\u0b38\u0b4d\u0b24\u0b3e\u0b30 \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"}, +gaD(){return"\u0b38\u0b19\u0b4d\u0b15\u0b41\u0b1a\u0b3f\u0b24 \u0b15\u0b30\u0b3f\u0b2c\u0b3e \u0b2a\u0b3e\u0b07\u0b01 \u0b26\u0b41\u0b07\u0b25\u0b30 \u0b1f\u0b3e\u0b2a \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"}, +gbs(){return"\u0b38\u0b19\u0b4d\u0b15\u0b41\u0b1a\u0b3f\u0b24 \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"}, +gK(){return"Look Up"}, +gaR(){return"\u0b2e\u0b47\u0b28\u0b41 \u0b16\u0b3e\u0b30\u0b1c \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"}, +gaM(){return"\u0b16\u0b3e\u0b30\u0b1c \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"}, +gbB(){return"\u0b05\u0b27\u0b3f\u0b15"}, +gaS(){return"\u0b28\u0b3e\u0b2d\u0b3f\u0b17\u0b47\u0b38\u0b28\u0b4d \u0b2e\u0b47\u0b28\u0b41 \u0b16\u0b4b\u0b32\u0b28\u0b4d\u0b24\u0b41"}, +ga0(){return"\u0b2a\u0b47\u0b37\u0b4d\u0b1f \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"}, +gba(){return"\u0b2a\u0b2a\u0b4d-\u0b05\u0b2a\u0b4d \u0b2e\u0b47\u0b28\u0b41"}, +gby(){return"\u0b30\u0b3f\u0b2b\u0b4d\u0b30\u0b47\u0b38\u0b4d \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1\u0b1f\u0b3f \u0b05\u0b15\u0b4d\u0b37\u0b30 \u0b2c\u0b3e\u0b15\u0b3f \u0b05\u0b1b\u0b3f"}, +gbu(){return"$remainingCount\u0b1f\u0b3f \u0b05\u0b15\u0b4d\u0b37\u0b30 \u0b2c\u0b3e\u0b15\u0b3f \u0b05\u0b1b\u0b3f"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"\u0b1f\u0b47\u0b15\u0b4d\u0b38\u0b1f\u0b4d \u0b38\u0b4d\u0b15\u0b3e\u0b28\u0b4d \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"}, +gaU(){return"\u0b38\u0b4d\u0b15\u0b4d\u0b30\u0b3f\u0b2e"}, +gbv(){return"$modalRouteContentName\u0b15\u0b41 \u0b2c\u0b28\u0b4d\u0b26 \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"}, +gbD(){return B.bN}, +ga1(){return"Search Web"}, +gM(){return"\u0b38\u0b2c\u0b41 \u0b1a\u0b5f\u0b28 \u0b15\u0b30\u0b28\u0b4d\u0b24\u0b41"}, +gbw(){return"\u0b2e\u0b47\u0b28\u0b41 \u0b26\u0b47\u0b16\u0b3e\u0b28\u0b4d\u0b24\u0b41"}, +gbo(){return"$tabCount\u0b30 $tabIndex \u0b1f\u0b3e\u0b2c\u0b4d"}} +A.a5k.prototype={ +gbq(){return"\u0a38\u0a41\u0a1a\u0a47\u0a24\u0a28\u0a3e"}, +gbr(){return"\u0a2a\u0a3f\u0a71\u0a1b\u0a47"}, +gb8(){return"\u0a39\u0a47\u0a20\u0a32\u0a40 \u0a36\u0a40\u0a1f"}, +gbj(){return"\u0a2c\u0a70\u0a26 \u0a15\u0a30\u0a4b"}, +gaW(){return"\u0a35\u0a3f\u0a38\u0a24\u0a3e\u0a30 \u0a15\u0a40\u0a24\u0a3e \u0a17\u0a3f\u0a06"}, +gZ(){return"\u0a15\u0a3e\u0a2a\u0a40 \u0a15\u0a30\u0a4b"}, +ga_(){return"\u0a15\u0a71\u0a1f \u0a15\u0a30\u0a4b"}, +gaY(){return"\u0a2e\u0a3f\u0a1f\u0a3e\u0a13"}, +gaG(){return"\u0a35\u0a3f\u0a70\u0a21\u0a4b"}, +gbx(){return"\u0a28\u0a48\u0a35\u0a40\u0a17\u0a47\u0a38\u0a3c\u0a28 \u0a2e\u0a40\u0a28\u0a42"}, +gbl(){return"\u0a38\u0a2e\u0a47\u0a1f\u0a3f\u0a06 \u0a17\u0a3f\u0a06"}, +gaC(){return"\u0a35\u0a3f\u0a38\u0a24\u0a3e\u0a30 \u0a15\u0a30\u0a28 \u0a32\u0a08 \u0a21\u0a2c\u0a32 \u0a1f\u0a48\u0a2a \u0a15\u0a30\u0a4b"}, +gaQ(){return"\u0a39\u0a4b\u0a30 \u0a35\u0a47\u0a30\u0a35\u0a3f\u0a06\u0a02 \u0a32\u0a08 \u0a35\u0a3f\u0a38\u0a24\u0a3e\u0a30 \u0a15\u0a30\u0a4b"}, +gaD(){return"\u0a38\u0a2e\u0a47\u0a1f\u0a23 \u0a32\u0a08 \u0a21\u0a2c\u0a32 \u0a1f\u0a48\u0a2a \u0a15\u0a30\u0a4b"}, +gbs(){return"\u0a38\u0a2e\u0a47\u0a1f\u0a4b"}, +gK(){return"Look Up"}, +gaR(){return"\u0a2e\u0a40\u0a28\u0a42 \u0a16\u0a3e\u0a30\u0a1c \u0a15\u0a30\u0a4b"}, +gaM(){return"\u0a16\u0a3e\u0a30\u0a1c \u0a15\u0a30\u0a4b"}, +gbB(){return"\u0a39\u0a4b\u0a30"}, +gaS(){return"\u0a28\u0a48\u0a35\u0a40\u0a17\u0a47\u0a36\u0a28 \u0a2e\u0a40\u0a28\u0a42 \u0a16\u0a4b\u0a32\u0a4d\u0a39\u0a4b"}, +ga0(){return"\u0a2a\u0a47\u0a38\u0a1f \u0a15\u0a30\u0a4b"}, +gba(){return"\u0a2a\u0a4c\u0a2a\u0a05\u0a71\u0a2a \u0a2e\u0a40\u0a28\u0a42"}, +gby(){return"\u0a30\u0a3f\u0a2b\u0a4d\u0a30\u0a48\u0a36 \u0a15\u0a30\u0a4b"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 \u0a05\u0a71\u0a16\u0a30-\u0a1a\u0a3f\u0a70\u0a28\u0a4d\u0a39 \u0a2c\u0a3e\u0a15\u0a40"}, +gbu(){return"$remainingCount \u0a05\u0a71\u0a16\u0a30-\u0a1a\u0a3f\u0a70\u0a28\u0a4d\u0a39 \u0a2c\u0a3e\u0a15\u0a40"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"\u0a32\u0a3f\u0a16\u0a24 \u0a28\u0a42\u0a70 \u0a38\u0a15\u0a48\u0a28 \u0a15\u0a30\u0a4b"}, +gaU(){return"\u0a38\u0a15\u0a4d\u0a30\u0a3f\u0a2e"}, +gbv(){return"$modalRouteContentName \u0a28\u0a42\u0a70 \u0a2c\u0a70\u0a26 \u0a15\u0a30\u0a4b"}, +gbD(){return B.bN}, +ga1(){return"Search Web"}, +gM(){return"\u0a38\u0a2d \u0a1a\u0a41\u0a23\u0a4b"}, +gbw(){return"\u0a2e\u0a40\u0a28\u0a42 \u0a26\u0a3f\u0a16\u0a3e\u0a13"}, +gbo(){return"$tabCount \u0a35\u0a3f\u0a71\u0a1a\u0a4b\u0a02 $tabIndex \u0a1f\u0a48\u0a2c"}} +A.a5l.prototype={ +gbq(){return"Alert"}, +gbr(){return"Wstecz"}, +gb8(){return"Plansza dolna"}, +gbj(){return"Zamknij"}, +gaW(){return"Rozwini\u0119to"}, +gZ(){return"Kopiuj"}, +ga_(){return"Wytnij"}, +gaY(){return"Usu\u0144"}, +gaG(){return"Okno dialogowe"}, +gbx(){return"Menu nawigacyjne"}, +gbl(){return"Zwini\u0119to"}, +gaC(){return"kliknij dwukrotnie, aby rozwin\u0105\u0107"}, +gaQ(){return"Rozwi\u0144, aby wy\u015bwietli\u0107 wi\u0119cej informacji"}, +gaD(){return"kliknij dwukrotnie, aby zwin\u0105\u0107"}, +gbs(){return"Zwi\u0144"}, +gK(){return"Sprawd\u017a"}, +gaR(){return"Zamknij menu"}, +gaM(){return"Zamknij"}, +gbB(){return"Wi\u0119cej"}, +gaS(){return"Otw\xf3rz menu nawigacyjne"}, +ga0(){return"Wklej"}, +gba(){return"Menu kontekstowe"}, +gby(){return"Od\u015bwie\u017c"}, +gbC(){return"Pozosta\u0142y $remainingCount znaki"}, +gbE(){return"Pozosta\u0142o $remainingCount znak\xf3w"}, +gbn(){return"Jeszcze 1 znak"}, +gbu(){return"Pozosta\u0142o $remainingCount znak\xf3w"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Skanuj tekst"}, +gaU(){return"Siatka"}, +gbv(){return"Zamknij: $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Zaznacz wszystko"}, +gbw(){return"Poka\u017c menu"}, +gbo(){return"Karta $tabIndex z\xa0$tabCount"}} +A.a5m.prototype={ +gbq(){return"\u062e\u0628\u0631\u062a\u06cc\u0627"}, +gbr(){return"\u0634\u0627\u062a\u0647"}, +gb8(){return"Bottom Sheet"}, +gbj(){return"\u0628\u0646\u062f\u0647"}, +gaW(){return"Expanded"}, +gZ(){return"\u06a9\u0627\u067e\u06cc"}, +ga_(){return"\u06a9\u0645 \u06a9\u0693\u0626"}, +gaY(){return""}, +gaG(){return"\u062e\u0628\u0631\u06d0 \u0627\u062a\u0631\u06d0"}, +gbx(){return"\u062f \u0646\u06cc\u0648\u06cc\u06af\u06cc\u0634\u0646 \u0645\u06cc\u0646\u0648"}, +gbl(){return"Collapsed"}, +gaC(){return"double tap to expand"}, +gaQ(){return"Expand for more details"}, +gaD(){return"double tap to collapse'"}, +gbs(){return"Collapse"}, +gK(){return"Look Up"}, +gaR(){return"Dismiss menu"}, +gaM(){return"\u0631\u062f \u06a9\u0693\u0647"}, +gbB(){return"More"}, +gaS(){return"\u062f \u067e\u0631\u0627\u0646\u06cc\u0633\u062a\u06cc \u0646\u06cc\u06cc\u0646\u06ab \u0645\u06cc\u0646\u0648"}, +ga0(){return"\u067e\u06cc\u067c \u06a9\u0693\u0626"}, +gba(){return"\u062f \u067e\u0627\u067e \u0627\u067e \u0645\u06cc\u0646\u0648"}, +gby(){return"Refresh"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 character remaining"}, +gbu(){return"$remainingCount characters remaining"}, +gbF(){return null}, +gbG(){return"No characters remaining"}, +gaT(){return"\u0645\u062a\u0646 \u0633\u06a9\u06cc\u0646 \u06a9\u0693\u0626"}, +gaU(){return"Scrim"}, +gbv(){return"Close $modalRouteName"}, +gbD(){return B.bN}, +ga1(){return"Search Web"}, +gM(){return"\u063a\u0648\u0631\u0647 \u06a9\u0693\u0626"}, +gbw(){return"\u063a\u0648\u0631\u0646\u06cd \u069a\u0648\u062f\u0644"}, +gbo(){return"$tabIndex \u062f $tabCount"}} +A.LV.prototype={ +gbq(){return"Alerta"}, +gbr(){return"Voltar"}, +gb8(){return"P\xe1gina inferior"}, +gbj(){return"Fechar"}, +gaW(){return"Aberto."}, +gZ(){return"Copiar"}, +ga_(){return"Cortar"}, +gaY(){return"Excluir"}, +gaG(){return"Caixa de di\xe1logo"}, +gbx(){return"Menu de navega\xe7\xe3o"}, +gbl(){return"Fechado."}, +gaC(){return"Toque duas vezes para abrir"}, +gaQ(){return"Abra para mostrar mais detalhes"}, +gaD(){return"toque duas vezes para fechar"}, +gbs(){return"Feche"}, +gK(){return"Pesquisar"}, +gaR(){return"Dispensar menu"}, +gaM(){return"Dispensar"}, +gbB(){return"Mais"}, +gaS(){return"Abrir menu de navega\xe7\xe3o"}, +ga0(){return"Colar"}, +gba(){return"Menu pop-up"}, +gby(){return"Atualizar"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 caractere restante"}, +gbu(){return"$remainingCount caracteres restantes"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Digitalizar texto"}, +gaU(){return"Scrim"}, +gbv(){return"Fechar $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Selecionar tudo"}, +gbw(){return"Mostrar menu"}, +gbo(){return"Guia $tabIndex de $tabCount"}} +A.a5n.prototype={ +gK(){return"Procurar"}, +gaR(){return"Ignorar menu"}, +gaD(){return"toque duas vezes para reduzir"}, +gaC(){return"toque duas vezes para expandir"}, +gbs(){return"Reduzir"}, +gaQ(){return"Expandir para obter mais detalhes"}, +gbl(){return"Reduzido"}, +gaW(){return"Expandido"}, +gb8(){return"Sec\xe7\xe3o inferior"}, +gbo(){return"Separador $tabIndex de $tabCount"}, +gaY(){return"Eliminar"}, +gaM(){return"Ignorar"}, +gbn(){return"Resta 1 car\xe1ter"}, +gbu(){return"Restam $remainingCount carateres"}} +A.a5o.prototype={ +gbq(){return"Alert\u0103"}, +gbr(){return"\xcenapoi"}, +gb8(){return"Foaie din partea de jos"}, +gbj(){return"\xcenchide\u021bi"}, +gaW(){return"Extins"}, +gZ(){return"Copia\u021bi"}, +ga_(){return"Decupa\u021bi"}, +gaY(){return"\u0218terge\u021bi"}, +gaG(){return"Caset\u0103 de dialog"}, +gbx(){return"Meniu de navigare"}, +gbl(){return"Restr\xe2ns"}, +gaC(){return"atinge\u021bi de dou\u0103 ori pentru a extinde"}, +gaQ(){return"Extinde\u021bi pentru mai multe detalii"}, +gaD(){return"atinge\u021bi de dou\u0103 ori pentru a restr\xe2nge"}, +gbs(){return"Restr\xe2nge\u021bi"}, +gK(){return"Look Up"}, +gaR(){return"Respinge\u021bi meniul"}, +gaM(){return"\xcenchide\u021bi"}, +gbB(){return"Mai multe"}, +gaS(){return"Deschide\u021bi meniul de navigare"}, +ga0(){return"Insera\u021bi"}, +gba(){return"Meniu pop-up"}, +gby(){return"Actualiza\u021bi"}, +gbC(){return"$remainingCount caractere r\u0103mase"}, +gbE(){return null}, +gbn(){return"un caracter r\u0103mas"}, +gbu(){return"$remainingCount de caractere r\u0103mase"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Scana\u021bi textul"}, +gaU(){return"Material"}, +gbv(){return"\xcenchide\u021bi $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Selecta\u021bi tot"}, +gbw(){return"Afi\u0219a\u021bi meniul"}, +gbo(){return"Fila $tabIndex din $tabCount"}} +A.a5p.prototype={ +gbq(){return"\u041e\u043f\u043e\u0432\u0435\u0449\u0435\u043d\u0438\u0435"}, +gbr(){return"\u041d\u0430\u0437\u0430\u0434"}, +gb8(){return"\u041d\u0438\u0436\u043d\u0438\u0439 \u044d\u043a\u0440\u0430\u043d"}, +gbj(){return"\u0417\u0430\u043a\u0440\u044b\u0442\u044c"}, +gaW(){return"\u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u043e"}, +gZ(){return"\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c"}, +ga_(){return"\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c"}, +gaY(){return"\u0423\u0434\u0430\u043b\u0438\u0442\u044c"}, +gaG(){return"\u0414\u0438\u0430\u043b\u043e\u0433\u043e\u0432\u043e\u0435 \u043e\u043a\u043d\u043e"}, +gbx(){return"\u041c\u0435\u043d\u044e \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438"}, +gbl(){return"\u0421\u0432\u0435\u0440\u043d\u0443\u0442\u043e"}, +gaC(){return"\u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u0434\u0432\u0430\u0436\u0434\u044b, \u0447\u0442\u043e\u0431\u044b \u0440\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c"}, +gaQ(){return"\u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f"}, +gaD(){return"\u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u0434\u0432\u0430\u0436\u0434\u044b, \u0447\u0442\u043e\u0431\u044b \u0441\u0432\u0435\u0440\u043d\u0443\u0442\u044c"}, +gbs(){return"\u0421\u0432\u0435\u0440\u043d\u0443\u0442\u044c"}, +gK(){return"Look Up"}, +gaR(){return"\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u043c\u0435\u043d\u044e"}, +gaM(){return"\u0417\u0430\u043a\u0440\u044b\u0442\u044c"}, +gbB(){return"\u0415\u0449\u0451"}, +gaS(){return"\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u043c\u0435\u043d\u044e \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438"}, +ga0(){return"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c"}, +gba(){return"\u0412\u0441\u043f\u043b\u044b\u0432\u0430\u044e\u0449\u0435\u0435 \u043c\u0435\u043d\u044e"}, +gby(){return"\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435"}, +gbC(){return"\u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c $remainingCount\xa0\u0441\u0438\u043c\u0432\u043e\u043b\u0430"}, +gbE(){return"\u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c $remainingCount\xa0\u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432"}, +gbn(){return"\u041e\u0441\u0442\u0430\u043b\u0441\u044f 1\xa0\u0441\u0438\u043c\u0432\u043e\u043b"}, +gbu(){return"\u041e\u0441\u0442\u0430\u043b\u043e\u0441\u044c $remainingCount\xa0\u0441\u0438\u043c\u0432\u043e\u043b\u0430"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"\u0421\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0435\u043a\u0441\u0442"}, +gaU(){return"\u041c\u0430\u0441\u043a\u0430"}, +gbv(){return"\u0417\u0430\u043a\u0440\u044b\u0442\u044c $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u0432\u0441\u0435"}, +gbw(){return"\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043c\u0435\u043d\u044e"}, +gbo(){return"\u0412\u043a\u043b\u0430\u0434\u043a\u0430\xa0$tabIndex \u0438\u0437\xa0$tabCount"}} +A.a5q.prototype={ +gbq(){return"\u0d87\u0d9f\u0dc0\u0dd3\u0db8"}, +gbr(){return"\u0d86\u0db4\u0dc3\u0dd4"}, +gb8(){return"\u0db4\u0dc4\u0dc5\u0db8 \u0db4\u0dad\u0dca\u200d\u0dbb\u0dba"}, +gbj(){return"\u0dc0\u0dc3\u0db1\u0dca\u0db1"}, +gaW(){return"\u0daf\u0dd2\u0d9c \u0dc4\u0dbb\u0dd2\u0db1 \u0dbd\u0daf\u0dd2"}, +gZ(){return"\u0db4\u0dd2\u0da7\u0db4\u0dad\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1"}, +ga_(){return"\u0d9a\u0db4\u0db1\u0dca\u0db1"}, +gaY(){return"\u0db8\u0d9a\u0db1\u0dca\u0db1"}, +gaG(){return"\u0dc3\u0d82\u0dc0\u0dcf\u0daf\u0dba"}, +gbx(){return"\u0dc3\u0d82\u0da0\u0dcf\u0dbd\u0db1 \u0db8\u0dd9\u0db1\u0dd4\u0dc0"}, +gbl(){return"\u0dc4\u0d9a\u0dd4\u0dc5\u0db1 \u0dbd\u0daf\u0dd2"}, +gaC(){return"\u0dc0\u0dd2\u0dc4\u0dd2\u0daf\u0dd4\u0dc0\u0dd3\u0db8\u0da7 \u0daf\u0dd9\u0dc0\u0dbb\u0d9a\u0dca \u0dad\u0da7\u0dca\u0da7\u0dd4 \u0d9a\u0dbb\u0db1\u0dca\u0db1"}, +gaQ(){return"\u0dc0\u0dd0\u0da9\u0dd2 \u0dc0\u0dd2\u0dc3\u0dca\u0dad\u0dbb \u0dc3\u0db3\u0dc4\u0dcf \u0db4\u0dd4\u0dc5\u0dd4\u0dbd\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1"}, +gaD(){return"\u0dc4\u0dd0\u0d9a\u0dd2\u0dc5\u0dc0\u0dd3\u0db8\u0da7 \u0daf\u0dd9\u0dc0\u0dbb\u0d9a\u0dca \u0dad\u0da7\u0dca\u0da7\u0dd4 \u0d9a\u0dbb\u0db1\u0dca\u0db1"}, +gbs(){return"\u0dc4\u0d9a\u0dd4\u0dc5\u0db1\u0dca\u0db1"}, +gK(){return"Look Up"}, +gaR(){return"\u0db8\u0dd9\u0db1\u0dd4\u0dc0 \u0d85\u0dc3\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1"}, +gaM(){return"\u0d89\u0dc0\u0dad \u0dbd\u0db1\u0dca\u0db1"}, +gbB(){return"\u0dad\u0dc0"}, +gaS(){return"\u0dc3\u0d82\u0da0\u0dcf\u0dbd\u0db1 \u0db8\u0dd9\u0db1\u0dd4\u0dc0 \u0dc0\u0dd2\u0dc0\u0dd8\u0dad \u0d9a\u0dbb\u0db1\u0dca\u0db1"}, +ga0(){return"\u0d85\u0dbd\u0dc0\u0db1\u0dca\u0db1"}, +gba(){return"\u0d8b\u0dad\u0dca\u0db4\u0dad\u0db1 \u0db8\u0dd9\u0db1\u0dd4\u0dc0"}, +gby(){return"\u0db1\u0dd0\u0dc0\u0dd4\u0db8\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"\u0d85\u0db1\u0dd4\u0dbd\u0d9a\u0dd4\u0dab\u0dd4 1\u0d9a\u0dca \u0d89\u0dad\u0dd2\u0dbb\u0dd2\u0dba"}, +gbu(){return"\u0d85\u0db1\u0dd4\u0dbd\u0d9a\u0dd4\u0dab\u0dd4 $remainingCount\u0d9a\u0dca \u0d89\u0dad\u0dd2\u0dbb\u0dd2\u0dba"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"\u0db4\u0dd9\u0dc5 \u0dc3\u0dca\u0d9a\u0dd1\u0db1\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1"}, +gaU(){return"\u0dc3\u0dca\u0d9a\u0dca\u200d\u0dbb\u0dd2\u0db8\u0dca"}, +gbv(){return"$modalRouteContentName \u0dc0\u0dc3\u0db1\u0dca\u0db1"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"\u0dc3\u0dd2\u0dba\u0dbd\u0dca\u0dbd \u0dad\u0ddd\u0dbb\u0db1\u0dca\u0db1"}, +gbw(){return"\u0db8\u0dd9\u0db1\u0dd4\u0dc0 \u0db4\u0dd9\u0db1\u0dca\u0dc0\u0db1\u0dca\u0db1"}, +gbo(){return"\u0da7\u0dd0\u0db6 $tabIndex\u0d9a\u0dd2\u0db1\u0dca $tabCount"}} +A.a5r.prototype={ +gbq(){return"Upozornenie"}, +gbr(){return"Sp\xe4\u0165"}, +gb8(){return"Doln\xfd h\xe1rok"}, +gbj(){return"Zavrie\u0165"}, +gaW(){return"Rozbalen\xe9"}, +gZ(){return"Kop\xedrova\u0165"}, +ga_(){return"Vystrihn\xfa\u0165"}, +gaY(){return"Odstr\xe1ni\u0165"}, +gaG(){return"Dial\xf3gov\xe9 okno"}, +gbx(){return"Naviga\u010dn\xe1 ponuka"}, +gbl(){return"Zbalen\xe9"}, +gaC(){return"rozbal\xedte dvojit\xfdm klepnut\xedm"}, +gaQ(){return"Rozbali\u0165 a\xa0zobrazi\u0165 \u010fal\u0161ie podrobnosti"}, +gaD(){return"zbal\xedte dvojit\xfdm klepnut\xedm"}, +gbs(){return"Zbali\u0165"}, +gK(){return"Look Up"}, +gaR(){return"Zavrie\u0165 ponuku"}, +gaM(){return"Odmietnu\u0165"}, +gbB(){return"Viac"}, +gaS(){return"Otvori\u0165 naviga\u010dn\xfa ponuku"}, +ga0(){return"Prilepi\u0165"}, +gba(){return"Kontextov\xe1 ponuka"}, +gby(){return"Obnovi\u0165"}, +gbC(){return"Zost\xe1vaj\xfa $remainingCount\xa0znaky"}, +gbE(){return"$remainingCount characters remaining"}, +gbn(){return"Zost\xe1va 1\xa0znak"}, +gbu(){return"Zost\xe1va $remainingCount\xa0znakov"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Naskenova\u0165 text"}, +gaU(){return"Scrim"}, +gbv(){return"Zavrie\u0165 $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Vybra\u0165 v\u0161etko"}, +gbw(){return"Zobrazi\u0165 ponuku"}, +gbo(){return"Karta $tabIndex z\xa0$tabCount"}} +A.a5s.prototype={ +gbq(){return"Opozorilo"}, +gbr(){return"Nazaj"}, +gb8(){return"Razdelek na dnu zaslona"}, +gbj(){return"Zapiranje"}, +gaW(){return"Raz\u0161irjeno"}, +gZ(){return"Kopiraj"}, +ga_(){return"Izre\u017ei"}, +gaY(){return"Brisanje"}, +gaG(){return"Pogovorno okno"}, +gbx(){return"Meni za krmarjenje"}, +gbl(){return"Strnjeno"}, +gaC(){return"za raz\u0161iritev se dvakrat dotaknite"}, +gaQ(){return"Raz\u0161iritev za ve\u010d podrobnosti"}, +gaD(){return"za strnitev se dvakrat dotaknite"}, +gbs(){return"Strni"}, +gK(){return"Look Up"}, +gaR(){return"Opusti meni"}, +gaM(){return"Opusti"}, +gbB(){return"Ve\u010d"}, +gaS(){return"Odpiranje menija za krmarjenje"}, +ga0(){return"Prilepi"}, +gba(){return"Pojavni meni"}, +gby(){return"Osve\u017ei"}, +gbC(){return"\u0160e $remainingCount znaki"}, +gbE(){return null}, +gbn(){return"\u0160e 1 znak"}, +gbu(){return"\u0160e $remainingCount znakov"}, +gbF(){return"\u0160e $remainingCount znaka"}, +gbG(){return"TBD"}, +gaT(){return"Opti\u010dno preberite besedilo"}, +gaU(){return"Scrim"}, +gbv(){return"Zapiranje \xbb$modalRouteContentName\xab"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Izberi vse"}, +gbw(){return"Prikaz menija"}, +gbo(){return"Zavihek $tabIndex od $tabCount"}} +A.a5t.prototype={ +gbq(){return"Sinjalizim"}, +gbr(){return"Prapa"}, +gb8(){return"Fleta e poshtme"}, +gbj(){return"Mbyll"}, +gaW(){return"U zgjerua"}, +gZ(){return"Kopjo"}, +ga_(){return"Prit"}, +gaY(){return"Fshi"}, +gaG(){return"Dialogu"}, +gbx(){return"Menyja e navigimit"}, +gbl(){return"U palos"}, +gaC(){return"trokit dy her\xeb p\xebr ta zgjeruar"}, +gaQ(){return"Zgjero p\xebr m\xeb shum\xeb detaje"}, +gaD(){return"trokit dy her\xeb p\xebr ta palosur"}, +gbs(){return"Palos"}, +gK(){return"Look Up"}, +gaR(){return"Hiqe menyn\xeb"}, +gaM(){return"Hiq"}, +gbB(){return"M\xeb shum\xeb"}, +gaS(){return"Hap menyn\xeb e navigimit"}, +ga0(){return"Ngjit"}, +gba(){return"Menyja k\xebrcyese"}, +gby(){return"Rifresko"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 karakter i mbetur"}, +gbu(){return"$remainingCount karaktere t\xeb mbetura"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"Skano tekstin"}, +gaU(){return"Kanavac\xeb"}, +gbv(){return"Mbyll $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Zgjidh t\xeb gjitha"}, +gbw(){return"Shfaq menyn\xeb"}, +gbo(){return"Skeda $tabIndex nga $tabCount"}} +A.LW.prototype={ +gbq(){return"\u041e\u0431\u0430\u0432\u0435\u0448\u0442\u0435\u045a\u0435"}, +gbr(){return"\u041d\u0430\u0437\u0430\u0434"}, +gb8(){return"\u0414\u043e\u045a\u0430 \u0442\u0430\u0431\u0435\u043b\u0430"}, +gbj(){return"\u0417\u0430\u0442\u0432\u043e\u0440\u0438\u0442\u0435"}, +gaW(){return"\u041f\u0440\u043e\u0448\u0438\u0440\u0435\u043d\u043e \u0458\u0435"}, +gZ(){return"\u041a\u043e\u043f\u0438\u0440\u0430\u0458"}, +ga_(){return"\u0418\u0441\u0435\u0446\u0438"}, +gaY(){return"\u0418\u0437\u0431\u0440\u0438\u0448\u0438\u0442\u0435"}, +gaG(){return"\u0414\u0438\u0458\u0430\u043b\u043e\u0433"}, +gbx(){return"\u041c\u0435\u043d\u0438 \u0437\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0458\u0443"}, +gbl(){return"\u0421\u043a\u0443\u043f\u0459\u0435\u043d\u043e \u0458\u0435"}, +gaC(){return"\u0434\u0432\u0430\u043f\u0443\u0442 \u0434\u043e\u0434\u0438\u0440\u043d\u0438\u0442\u0435 \u0434\u0430 \u0431\u0438\u0441\u0442\u0435 \u043f\u0440\u043e\u0448\u0438\u0440\u0438\u043b\u0438"}, +gaQ(){return"\u041f\u0440\u043e\u0448\u0438\u0440\u0438\u0442\u0435 \u0437\u0430 \u0458\u043e\u0448 \u0434\u0435\u0442\u0430\u0459\u0430"}, +gaD(){return"\u0434\u0432\u0430\u043f\u0443\u0442 \u0434\u043e\u0434\u0438\u0440\u043d\u0438\u0442\u0435 \u0434\u0430 \u0431\u0438\u0441\u0442\u0435 \u0441\u043a\u0443\u043f\u0438\u043b\u0438"}, +gbs(){return"\u0421\u043a\u0443\u043f\u0438\u0442\u0435"}, +gK(){return"Look Up"}, +gaR(){return"\u041e\u0434\u0431\u0430\u0446\u0438\u0442\u0435 \u043c\u0435\u043d\u0438"}, +gaM(){return"\u041e\u0434\u0431\u0430\u0446\u0438"}, +gbB(){return"\u0408\u043e\u0448"}, +gaS(){return"\u041e\u0442\u0432\u043e\u0440\u0438\u0442\u0435 \u043c\u0435\u043d\u0438 \u0437\u0430 \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0458\u0443"}, +ga0(){return"\u041d\u0430\u043b\u0435\u043f\u0438"}, +gba(){return"\u0418\u0441\u043a\u0430\u0447\u0443\u045b\u0438 \u043c\u0435\u043d\u0438"}, +gby(){return"\u041e\u0441\u0432\u0435\u0436\u0438"}, +gbC(){return"\u041f\u0440\u0435\u043e\u0441\u0442\u0430\u043b\u0430 \u0441\u0443 $remainingCount \u0437\u043d\u0430\u043a\u0430"}, +gbE(){return null}, +gbn(){return"\u041f\u0440\u0435\u043e\u0441\u0442\u0430\u043e \u0458\u0435 1 \u0437\u043d\u0430\u043a"}, +gbu(){return"\u041f\u0440\u0435\u043e\u0441\u0442\u0430\u043b\u043e \u0458\u0435 $remainingCount \u0437\u043d\u0430\u043a\u043e\u0432\u0430"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"\u0421\u043a\u0435\u043d\u0438\u0440\u0430\u0458 \u0442\u0435\u043a\u0441\u0442"}, +gaU(){return"\u0421\u043a\u0440\u0438\u043c"}, +gbv(){return"\u0417\u0430\u0442\u0432\u043e\u0440\u0438: $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"\u0418\u0437\u0430\u0431\u0435\u0440\u0438 \u0441\u0432\u0435"}, +gbw(){return"\u041f\u0440\u0438\u043a\u0430\u0436\u0438 \u043c\u0435\u043d\u0438"}, +gbo(){return"$tabIndex. \u043a\u0430\u0440\u0442\u0438\u0446\u0430 \u043e\u0434 $tabCount"}} +A.a5u.prototype={} +A.a5v.prototype={ +gbq(){return"Obave\u0161tenje"}, +gbr(){return"Nazad"}, +gb8(){return"Donja tabela"}, +gbj(){return"Zatvorite"}, +gaW(){return"Pro\u0161ireno je"}, +gZ(){return"Kopiraj"}, +ga_(){return"Iseci"}, +gaY(){return"Izbri\u0161ite"}, +gaG(){return"Dijalog"}, +gbx(){return"Meni za navigaciju"}, +gbl(){return"Skupljeno je"}, +gaC(){return"dvaput dodirnite da biste pro\u0161irili"}, +gaQ(){return"Pro\u0161irite za jo\u0161 detalja"}, +gaD(){return"dvaput dodirnite da biste skupili"}, +gbs(){return"Skupite"}, +gaR(){return"Odbacite meni"}, +gaM(){return"Odbaci"}, +gbB(){return"Jo\u0161"}, +gaS(){return"Otvorite meni za navigaciju"}, +ga0(){return"Nalepi"}, +gba(){return"Iska\u010duc\u0301i meni"}, +gby(){return"Osve\u017ei"}, +gbC(){return"Preostala su $remainingCount znaka"}, +gbn(){return"Preostao je 1 znak"}, +gbu(){return"Preostalo je $remainingCount znakova"}, +gaT(){return"Skeniraj tekst"}, +gaU(){return"Skrim"}, +gbv(){return"Zatvori: $modalRouteContentName"}, +gM(){return"Izaberi sve"}, +gbw(){return"Prika\u017ei meni"}, +gbo(){return"$tabIndex. kartica od $tabCount"}} +A.a5w.prototype={ +gbq(){return"Varning"}, +gbr(){return"Tillbaka"}, +gb8(){return"Ark p\xe5 nedre delen av sk\xe4rmen"}, +gbj(){return"St\xe4ng"}, +gaW(){return"Ut\xf6kades"}, +gZ(){return"Kopiera"}, +ga_(){return"Klipp ut"}, +gaY(){return"Radera"}, +gaG(){return"Dialogruta"}, +gbx(){return"Navigeringsmeny"}, +gbl(){return"Komprimerades"}, +gaC(){return"tryck snabbt tv\xe5 g\xe5nger f\xf6r att ut\xf6ka"}, +gaQ(){return"Ut\xf6ka f\xf6r mer information"}, +gaD(){return"tryck snabbt tv\xe5 g\xe5nger f\xf6r att komprimera"}, +gbs(){return"Komprimera"}, +gK(){return"Look Up"}, +gaR(){return"St\xe4ng menyn"}, +gaM(){return"St\xe4ng"}, +gbB(){return"Mer"}, +gaS(){return"\xd6ppna navigeringsmenyn"}, +ga0(){return"Klistra in"}, +gba(){return"Popup-meny"}, +gby(){return"Uppdatera"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 tecken kvar"}, +gbu(){return"$remainingCount tecken kvar"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Skanna text"}, +gaU(){return"Scrim"}, +gbv(){return"St\xe4ng $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Markera allt"}, +gbw(){return"Visa meny"}, +gbo(){return"Flik $tabIndex av $tabCount"}} +A.a5x.prototype={ +gbq(){return"Arifa"}, +gbr(){return"Rudi Nyuma"}, +gb8(){return"Safu ya Chini"}, +gbj(){return"Funga"}, +gaW(){return"Imepanuliwa"}, +gZ(){return"Nakili"}, +ga_(){return"Kata"}, +gaY(){return"Futa"}, +gaG(){return"Kidirisha"}, +gbx(){return"Menyu ya kusogeza"}, +gbl(){return"Imekunjwa"}, +gaC(){return"gusa mara mbili ili upanue"}, +gaQ(){return"Panua ili upate maelezo zaidi"}, +gaD(){return"gusa mara mbili ili ukunje"}, +gbs(){return"Kunja"}, +gK(){return"Look Up"}, +gaR(){return"Ondoa menyu"}, +gaM(){return"Ondoa"}, +gbB(){return"Zaidi"}, +gaS(){return"Fungua menyu ya kusogeza"}, +ga0(){return"Bandika"}, +gba(){return"Menyu ibukizi"}, +gby(){return"Onyesha upya"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"Imesalia herufi 1"}, +gbu(){return"Zimesalia herufi $remainingCount"}, +gbF(){return null}, +gbG(){return"Hapana herufi zilizo baki"}, +gaT(){return"Changanua maandishi"}, +gaU(){return"Scrim"}, +gbv(){return"Funga $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Chagua vyote"}, +gbw(){return"Onyesha menyu"}, +gbo(){return"Kichupo cha $tabIndex kati ya $tabCount"}} +A.a5y.prototype={ +gbq(){return"\u0bb5\u0bbf\u0bb4\u0bbf\u0baa\u0bcd\u0baa\u0bc2\u0b9f\u0bcd\u0b9f\u0bb2\u0bcd"}, +gbr(){return"\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf \u0baa\u0b95\u0bcd\u0b95\u0bae\u0bcd"}, +gb8(){return"\u0b95\u0bc0\u0bb4\u0bcd\u0ba4\u0bcd \u0ba4\u0bbf\u0bb0\u0bc8"}, +gbj(){return"\u0bae\u0bc2\u0b9f\u0bc1\u0b95"}, +gaW(){return"\u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1"}, +gZ(){return"\u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1"}, +ga_(){return"\u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1"}, +gaY(){return"\u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1"}, +gaG(){return"\u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b9f\u0bb2\u0bcd"}, +gbx(){return"\u0bb5\u0bb4\u0bbf\u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd \u0bae\u0bc6\u0ba9\u0bc1"}, +gbl(){return"\u0b9a\u0bc1\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1"}, +gaC(){return"\u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95\u0bcd\u0b95 \u0b87\u0bb0\u0bc1\u0bae\u0bc1\u0bb1\u0bc8 \u0ba4\u0b9f\u0bcd\u0b9f\u0bc1\u0b99\u0bcd\u0b95\u0bb3\u0bcd"}, +gaQ(){return"\u0b95\u0bc2\u0b9f\u0bc1\u0ba4\u0bb2\u0bcd \u0bb5\u0bbf\u0bb5\u0bb0\u0b99\u0bcd\u0b95\u0bb3\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95\u0bcd\u0b95\u0bb2\u0bbe\u0bae\u0bcd"}, +gaD(){return"\u0b9a\u0bc1\u0bb0\u0bc1\u0b95\u0bcd\u0b95 \u0b87\u0bb0\u0bc1\u0bae\u0bc1\u0bb1\u0bc8 \u0ba4\u0b9f\u0bcd\u0b9f\u0bb5\u0bc1\u0bae\u0bcd"}, +gbs(){return"\u0b9a\u0bc1\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd"}, +gK(){return"Look Up"}, +gaR(){return"\u0bae\u0bc6\u0ba9\u0bc1\u0bb5\u0bc8 \u0bae\u0bc2\u0b9f\u0bc1\u0bae\u0bcd"}, +gaM(){return"\u0ba8\u0bbf\u0bb0\u0bbe\u0b95\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd"}, +gbB(){return"\u0bae\u0bc7\u0bb2\u0bc1\u0bae\u0bcd"}, +gaS(){return"\u0bb5\u0bb4\u0bbf\u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd \u0bae\u0bc6\u0ba9\u0bc1\u0bb5\u0bc8\u0ba4\u0bcd \u0ba4\u0bbf\u0bb1"}, +ga0(){return"\u0b92\u0b9f\u0bcd\u0b9f\u0bc1"}, +gba(){return"\u0baa\u0bbe\u0baa\u0bcd-\u0b85\u0baa\u0bcd \u0bae\u0bc6\u0ba9\u0bc1"}, +gby(){return"\u0bb0\u0bc6\u0b83\u0baa\u0bcd\u0bb0\u0bc6\u0bb7\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bc1\u0bae\u0bcd"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bc0\u0ba4\u0bae\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1"}, +gbu(){return"$remainingCount \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bb3\u0bcd \u0bae\u0bc0\u0ba4\u0bae\u0bc1\u0bb3\u0bcd\u0bb3\u0ba9"}, +gbF(){return null}, +gbG(){return"\u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd \u0b8e\u0ba4\u0bc1\u0bb5\u0bc1\u0bae\u0bcd \u0b87\u0bb2\u0bcd\u0bb2\u0bc8"}, +gaT(){return"\u0bb5\u0bbe\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4\u0bc8\u0b95\u0bb3\u0bc8 \u0bb8\u0bcd\u0b95\u0bc7\u0ba9\u0bcd \u0b9a\u0bc6\u0baf\u0bcd"}, +gaU(){return"\u0bb8\u0bcd\u0b95\u0bcd\u0bb0\u0bbf\u0bae\u0bcd"}, +gbv(){return"$modalRouteContentName \u0b90 \u0bae\u0bc2\u0b9f\u0bc1\u0b95"}, +gbD(){return B.eH}, +ga1(){return"Search Web"}, +gM(){return"\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1"}, +gbw(){return"\u0bae\u0bc6\u0ba9\u0bc1\u0bb5\u0bc8\u0b95\u0bcd \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1"}, +gbo(){return"\u0ba4\u0bbe\u0bb5\u0bb2\u0bcd $tabIndex / $tabCount"}} +A.a5z.prototype={ +gbq(){return"\u0c05\u0c32\u0c30\u0c4d\u0c1f\u0c4d"}, +gbr(){return"\u0c35\u0c46\u0c28\u0c41\u0c15\u0c15\u0c41"}, +gb8(){return"\u0c26\u0c3f\u0c17\u0c41\u0c35\u0c41\u0c28 \u0c09\u0c28\u0c4d\u0c28 \u0c37\u0c40\u0c1f\u0c4d"}, +gbj(){return"\u0c2e\u0c42\u0c38\u0c3f\u0c35\u0c47\u0c2f\u0c3f"}, +gaW(){return"\u0c35\u0c3f\u0c38\u0c4d\u0c24\u0c30\u0c3f\u0c02\u0c1a\u0c2c\u0c21\u0c3f\u0c02\u0c26\u0c3f"}, +gZ(){return"\u0c15\u0c3e\u0c2a\u0c40 \u0c1a\u0c47\u0c2f\u0c3f"}, +ga_(){return"\u0c15\u0c24\u0c4d\u0c24\u0c3f\u0c30\u0c3f\u0c02\u0c1a\u0c02\u0c21\u0c3f"}, +gaY(){return"\u0c24\u0c4a\u0c32\u0c17\u0c3f\u0c02\u0c1a\u0c02\u0c21\u0c3f"}, +gaG(){return"\u0c21\u0c48\u0c32\u0c3e\u0c17\u0c4d"}, +gbx(){return"\u0c28\u0c3e\u0c35\u0c3f\u0c17\u0c47\u0c37\u0c28\u0c4d \u0c2e\u0c46\u0c28\u0c42"}, +gbl(){return"\u0c15\u0c41\u0c26\u0c3f\u0c02\u0c1a\u0c2c\u0c21\u0c3f\u0c02\u0c26\u0c3f"}, +gaC(){return"\u0c35\u0c3f\u0c38\u0c4d\u0c24\u0c30\u0c3f\u0c02\u0c1a\u0c21\u0c3e\u0c28\u0c3f\u0c15\u0c3f \u0c21\u0c2c\u0c41\u0c32\u0c4d \u0c1f\u0c4d\u0c2f\u0c3e\u0c2a\u0c4d \u0c1a\u0c47\u0c2f\u0c02\u0c21\u0c3f"}, +gaQ(){return"\u0c2e\u0c30\u0c3f\u0c28\u0c4d\u0c28\u0c3f \u0c35\u0c3f\u0c35\u0c30\u0c3e\u0c32 \u0c15\u0c4b\u0c38\u0c02 \u0c35\u0c3f\u0c38\u0c4d\u0c24\u0c30\u0c3f\u0c02\u0c1a\u0c02\u0c21\u0c3f"}, +gaD(){return"\u0c15\u0c41\u0c26\u0c3f\u0c02\u0c1a\u0c21\u0c3e\u0c28\u0c3f\u0c15\u0c3f \u0c21\u0c2c\u0c41\u0c32\u0c4d \u0c1f\u0c4d\u0c2f\u0c3e\u0c2a\u0c4d \u0c1a\u0c47\u0c2f\u0c02\u0c21\u0c3f"}, +gbs(){return"\u0c15\u0c41\u0c26\u0c3f\u0c02\u0c1a\u0c02\u0c21\u0c3f"}, +gK(){return"Look Up"}, +gaR(){return"\u0c2e\u0c46\u0c28\u0c42\u0c28\u0c41 \u0c24\u0c40\u0c38\u0c3f\u0c35\u0c47\u0c2f\u0c02\u0c21\u0c3f"}, +gaM(){return"\u0c35\u0c3f\u0c38\u0c4d\u0c2e\u0c30\u0c3f\u0c02\u0c1a\u0c41"}, +gbB(){return"\u0c2e\u0c30\u0c3f\u0c28\u0c4d\u0c28\u0c3f"}, +gaS(){return"\u0c28\u0c3e\u0c35\u0c3f\u0c17\u0c47\u0c37\u0c28\u0c4d \u0c2e\u0c46\u0c28\u0c42\u0c28\u0c41 \u0c24\u0c46\u0c30\u0c41\u0c35\u0c41"}, +ga0(){return"\u0c2a\u0c47\u0c38\u0c4d\u0c1f\u0c4d \u0c1a\u0c47\u0c2f\u0c02\u0c21\u0c3f"}, +gba(){return"\u0c2a\u0c3e\u0c2a\u0c4d\u200c\u0c05\u0c2a\u0c4d \u0c2e\u0c46\u0c28\u0c42"}, +gby(){return"\u0c30\u0c3f\u0c2b\u0c4d\u0c30\u0c46\u0c37\u0c4d \u0c1a\u0c47\u0c2f\u0c02\u0c21\u0c3f"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 \u0c05\u0c15\u0c4d\u0c37\u0c30\u0c02 \u0c2e\u0c3f\u0c17\u0c3f\u0c32\u0c3f \u0c09\u0c02\u0c26\u0c3f"}, +gbu(){return"$remainingCount \u0c05\u0c15\u0c4d\u0c37\u0c30\u0c3e\u0c32\u0c41 \u0c2e\u0c3f\u0c17\u0c3f\u0c32\u0c3f \u0c09\u0c28\u0c4d\u0c28\u0c3e\u0c2f\u0c3f"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"\u0c1f\u0c46\u0c15\u0c4d\u0c38\u0c4d\u0c1f\u0c4d\u200c\u0c28\u0c41 \u0c38\u0c4d\u0c15\u0c3e\u0c28\u0c4d \u0c1a\u0c47\u0c2f\u0c02\u0c21\u0c3f"}, +gaU(){return"\u0c38\u0c4d\u0c15\u0c4d\u0c30\u0c3f\u0c2e\u0c4d"}, +gbv(){return"$modalRouteContentName\u200c\u0c28\u0c41 \u0c2e\u0c42\u0c38\u0c3f\u0c35\u0c47\u0c2f\u0c02\u0c21\u0c3f"}, +gbD(){return B.bN}, +ga1(){return"Search Web"}, +gM(){return"\u0c05\u0c28\u0c4d\u0c28\u0c3f\u0c02\u0c1f\u0c3f\u0c28\u0c40 \u0c0e\u0c02\u0c1a\u0c41\u0c15\u0c4b\u0c02\u0c21\u0c3f"}, +gbw(){return"\u0c2e\u0c46\u0c28\u0c42\u0c28\u0c41 \u0c1a\u0c42\u0c2a\u0c41"}, +gbo(){return"$tabCount\u0c32\u0c4b $tabIndex\u0c35 \u0c1f\u0c4d\u0c2f\u0c3e\u0c2c\u0c4d"}} +A.a5A.prototype={ +gbq(){return"\u0e01\u0e32\u0e23\u0e41\u0e08\u0e49\u0e07\u0e40\u0e15\u0e37\u0e2d\u0e19"}, +gbr(){return"\u0e01\u0e25\u0e31\u0e1a"}, +gb8(){return"Bottom Sheet"}, +gbj(){return"\u0e1b\u0e34\u0e14"}, +gaW(){return"\u0e02\u0e22\u0e32\u0e22"}, +gZ(){return"\u0e04\u0e31\u0e14\u0e25\u0e2d\u0e01"}, +ga_(){return"\u0e15\u0e31\u0e14"}, +gaY(){return"\u0e25\u0e1a"}, +gaG(){return"\u0e01\u0e25\u0e48\u0e2d\u0e07\u0e42\u0e15\u0e49\u0e15\u0e2d\u0e1a"}, +gbx(){return"\u0e40\u0e21\u0e19\u0e39\u0e01\u0e32\u0e23\u0e19\u0e33\u0e17\u0e32\u0e07"}, +gbl(){return"\u0e22\u0e38\u0e1a"}, +gaC(){return"\u0e41\u0e15\u0e30\u0e2a\u0e2d\u0e07\u0e04\u0e23\u0e31\u0e49\u0e07\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e02\u0e22\u0e32\u0e22"}, +gaQ(){return"\u0e02\u0e22\u0e32\u0e22\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e14\u0e39\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21"}, +gaD(){return"\u0e41\u0e15\u0e30\u0e2a\u0e2d\u0e07\u0e04\u0e23\u0e31\u0e49\u0e07\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e22\u0e38\u0e1a"}, +gbs(){return"\u0e22\u0e38\u0e1a"}, +gK(){return"Look Up"}, +gaR(){return"\u0e1b\u0e34\u0e14\u0e40\u0e21\u0e19\u0e39"}, +gaM(){return"\u0e1b\u0e34\u0e14"}, +gbB(){return"\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21"}, +gaS(){return"\u0e40\u0e1b\u0e34\u0e14\u0e40\u0e21\u0e19\u0e39\u0e01\u0e32\u0e23\u0e19\u0e33\u0e17\u0e32\u0e07"}, +ga0(){return"\u0e27\u0e32\u0e07"}, +gba(){return"\u0e40\u0e21\u0e19\u0e39\u0e1b\u0e4a\u0e2d\u0e1b\u0e2d\u0e31\u0e1b"}, +gby(){return"\u0e23\u0e35\u0e40\u0e1f\u0e23\u0e0a"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"\u0e40\u0e2b\u0e25\u0e37\u0e2d 1 \u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30"}, +gbu(){return"\u0e40\u0e2b\u0e25\u0e37\u0e2d $remainingCount \u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"\u0e2a\u0e41\u0e01\u0e19\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21"}, +gaU(){return"Scrim"}, +gbv(){return"\u0e1b\u0e34\u0e14 $modalRouteContentName"}, +gbD(){return B.bN}, +ga1(){return"Search Web"}, +gM(){return"\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14"}, +gbw(){return"\u0e41\u0e2a\u0e14\u0e07\u0e40\u0e21\u0e19\u0e39"}, +gbo(){return"\u0e41\u0e17\u0e47\u0e1a\u0e17\u0e35\u0e48 $tabIndex \u0e08\u0e32\u0e01 $tabCount"}} +A.a5B.prototype={ +gbq(){return"Alerto"}, +gbr(){return"Bumalik"}, +gb8(){return"Bottom Sheet"}, +gbj(){return"Isara"}, +gaW(){return"Naka-expand"}, +gZ(){return"Kopyahin"}, +ga_(){return"I-cut"}, +gaY(){return"I-delete"}, +gaG(){return"Dialog"}, +gbx(){return"Menu ng navigation"}, +gbl(){return"Naka-collapse"}, +gaC(){return"i-double tap para i-expand"}, +gaQ(){return"I-expand para sa higit pang detalye"}, +gaD(){return"i-double tap para i-collapse"}, +gbs(){return"I-collapse"}, +gK(){return"Tumingin sa Itaas"}, +gaR(){return"I-dismiss ang menu"}, +gaM(){return"I-dismiss"}, +gbB(){return"Higit Pa"}, +gaS(){return"Buksan ang menu ng navigation"}, +ga0(){return"I-paste"}, +gba(){return"Popup na menu"}, +gby(){return"Nagre-refresh"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 character ang natitira"}, +gbu(){return u.Z}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"I-scan ang text"}, +gaU(){return"Scrim"}, +gbv(){return"Isara ang $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Piliin lahat"}, +gbw(){return"Ipakita ang menu"}, +gbo(){return"Tab $tabIndex ng $tabCount"}} +A.a5C.prototype={ +gbq(){return"Uyar\u0131"}, +gbr(){return"Geri"}, +gb8(){return"alt sayfa"}, +gbj(){return"Kapat"}, +gaW(){return"Geni\u015fletildi"}, +gZ(){return"Kopyala"}, +ga_(){return"Kes"}, +gaY(){return"Sil"}, +gaG(){return"\u0130leti\u015fim kutusu"}, +gbx(){return"Gezinme men\xfcs\xfc"}, +gbl(){return"Daralt\u0131ld\u0131"}, +gaC(){return"geni\u015fletmek i\xe7in iki kez dokunun"}, +gaQ(){return"Daha fazla ayr\u0131nt\u0131 i\xe7in geni\u015fletin"}, +gaD(){return"daraltmak i\xe7in iki kez dokunun"}, +gbs(){return"Daralt"}, +gK(){return"Look Up"}, +gaR(){return"Men\xfcy\xfc kapat"}, +gaM(){return"Kapat"}, +gbB(){return"Di\u011fer"}, +gaS(){return"Gezinme men\xfcs\xfcn\xfc a\xe7"}, +ga0(){return"Yap\u0131\u015ft\u0131r"}, +gba(){return"Popup men\xfc"}, +gby(){return"Yenile"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 karakter kald\u0131"}, +gbu(){return"$remainingCount karakter kald\u0131"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Metin tara"}, +gaU(){return"opakl\u0131k katman\u0131"}, +gbv(){return"$modalRouteContentName i\xe7eri\u011fini kapat"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"T\xfcm\xfcn\xfc se\xe7"}, +gbw(){return"Men\xfcy\xfc g\xf6ster"}, +gbo(){return"Sekme $tabIndex / $tabCount"}} +A.a5D.prototype={ +gbq(){return"\u0421\u043f\u043e\u0432\u0456\u0449\u0435\u043d\u043d\u044f"}, +gbr(){return"\u041d\u0430\u0437\u0430\u0434"}, +gb8(){return"\u041d\u0438\u0436\u043d\u0456\u0439 \u0435\u043a\u0440\u0430\u043d"}, +gbj(){return"\u0417\u0430\u043a\u0440\u0438\u0442\u0438"}, +gaW(){return"\u0420\u043e\u0437\u0433\u043e\u0440\u043d\u0443\u0442\u043e"}, +gZ(){return"\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438"}, +ga_(){return"\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438"}, +gaY(){return"\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438"}, +gaG(){return"\u0412\u0456\u043a\u043d\u043e"}, +gbx(){return"\u041c\u0435\u043d\u044e \u043d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0457"}, +gbl(){return"\u0417\u0433\u043e\u0440\u043d\u0443\u0442\u043e"}, +gaC(){return"\u0434\u0432\u0456\u0447\u0456 \u0442\u043e\u0440\u043a\u043d\u0456\u0442\u044c\u0441\u044f, \u0449\u043e\u0431 \u0440\u043e\u0437\u0433\u043e\u0440\u043d\u0443\u0442\u0438"}, +gaQ(){return"\u0420\u043e\u0437\u0433\u043e\u0440\u043d\u0443\u0442\u0438 \u0439 \u0434\u0456\u0437\u043d\u0430\u0442\u0438\u0441\u044f \u0431\u0456\u043b\u044c\u0448\u0435"}, +gaD(){return"\u0434\u0432\u0456\u0447\u0456 \u0442\u043e\u0440\u043a\u043d\u0456\u0442\u044c\u0441\u044f, \u0449\u043e\u0431 \u0437\u0433\u043e\u0440\u043d\u0443\u0442\u0438"}, +gbs(){return"\u0417\u0433\u043e\u0440\u043d\u0443\u0442\u0438"}, +gK(){return"Look Up"}, +gaR(){return"\u0417\u0430\u043a\u0440\u0438\u0442\u0438 \u043c\u0435\u043d\u044e"}, +gaM(){return"\u0417\u0430\u043a\u0440\u0438\u0442\u0438"}, +gbB(){return"\u0406\u043d\u0448\u0456"}, +gaS(){return"\u0412\u0456\u0434\u043a\u0440\u0438\u0442\u0438 \u043c\u0435\u043d\u044e \u043d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u0457"}, +ga0(){return"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438"}, +gba(){return"\u0421\u043f\u043b\u0438\u0432\u0430\u044e\u0447\u0435 \u043c\u0435\u043d\u044e"}, +gby(){return"\u041e\u043d\u043e\u0432\u0438\u0442\u0438"}, +gbC(){return"\u0417\u0430\u043b\u0438\u0448\u0438\u043b\u043e\u0441\u044f $remainingCount \u0441\u0438\u043c\u0432\u043e\u043b\u0438"}, +gbE(){return"\u0417\u0430\u043b\u0438\u0448\u0438\u043b\u043e\u0441\u044f $remainingCount \u0441\u0438\u043c\u0432\u043e\u043b\u0456\u0432"}, +gbn(){return"\u0417\u0430\u043b\u0438\u0448\u0438\u0432\u0441\u044f 1 \u0441\u0438\u043c\u0432\u043e\u043b"}, +gbu(){return"\u0417\u0430\u043b\u0438\u0448\u0438\u043b\u043e\u0441\u044f $remainingCount \u0441\u0438\u043c\u0432\u043e\u043b\u0443"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"\u0412\u0456\u0434\u0441\u043a\u0430\u043d\u0443\u0432\u0430\u0442\u0438 \u0442\u0435\u043a\u0441\u0442"}, +gaU(){return"\u041c\u0430\u0441\u043a\u0443\u0432\u0430\u043b\u044c\u043d\u0438\u0439 \u0444\u043e\u043d"}, +gbv(){return"\u0417\u0430\u043a\u0440\u0438\u0442\u0438: $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"\u0412\u0438\u0431\u0440\u0430\u0442\u0438 \u0432\u0441\u0456"}, +gbw(){return"\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u043c\u0435\u043d\u044e"}, +gbo(){return"\u0412\u043a\u043b\u0430\u0434\u043a\u0430 $tabIndex \u0437 $tabCount"}} +A.a5E.prototype={ +gbq(){return"\u0627\u0644\u0631\u0679"}, +gbr(){return"\u067e\u06cc\u0686\u06be\u06d2"}, +gb8(){return"\u0646\u06cc\u0686\u06d2 \u06a9\u06cc \u0634\u06cc\u0679"}, +gbj(){return"\u0628\u0646\u062f \u06a9\u0631\u06cc\u06ba"}, +gaW(){return"\u067e\u06be\u06cc\u0644\u0627 \u06c1\u0648\u0627"}, +gZ(){return"\u06a9\u0627\u067e\u06cc \u06a9\u0631\u06cc\u06ba"}, +ga_(){return"\u06a9\u0679 \u06a9\u0631\u06cc\u06ba"}, +gaY(){return"\u062d\u0630\u0641 \u06a9\u0631\u06cc\u06ba"}, +gaG(){return"\u0688\u0627\u0626\u0644\u0627\u06af"}, +gbx(){return"\u0646\u06cc\u0648\u06cc\u06af\u06cc\u0634\u0646 \u0645\u06cc\u0646\u06cc\u0648"}, +gbl(){return"\u0633\u06a9\u0691\u0627 \u06c1\u0648\u0627"}, +gaC(){return"\u067e\u06be\u06cc\u0644\u0627\u0646\u06d2 \u06a9\u06d2 \u0644\u06cc\u06d2 \u062f\u0648\u0628\u0627\u0631 \u062a\u06be\u067e\u062a\u06be\u067e\u0627\u0626\u06cc\u06ba"}, +gaQ(){return"\u0645\u0632\u06cc\u062f \u062a\u0641\u0635\u06cc\u0644\u0627\u062a \u06a9\u06d2 \u0644\u06cc\u06d2 \u067e\u06be\u06cc\u0644\u0627\u0626\u06cc\u06ba"}, +gaD(){return"\u0633\u06a9\u06cc\u0691\u0646\u06d2 \u06a9\u06d2 \u0644\u06cc\u06d2 \u062f\u0648\u0628\u0627\u0631 \u062a\u06be\u067e\u062a\u06be\u067e\u0627\u0626\u06cc\u06ba"}, +gbs(){return"\u0633\u06a9\u06cc\u0691\u06cc\u06ba"}, +gK(){return"Look Up"}, +gaR(){return"\u0645\u06cc\u0646\u0648 \u0628\u0631\u062e\u0627\u0633\u062a \u06a9\u0631\u06cc\u06ba"}, +gaM(){return"\u0628\u0631\u062e\u0627\u0633\u062a \u06a9\u0631\u06cc\u06ba"}, +gbB(){return"\u0645\u0632\u06cc\u062f"}, +gaS(){return"\u0646\u06cc\u0648\u06cc\u06af\u06cc\u0634\u0646 \u0645\u06cc\u0646\u06cc\u0648 \u06a9\u06be\u0648\u0644\u06cc\u06ba"}, +ga0(){return"\u067e\u06cc\u0633\u0679 \u06a9\u0631\u06cc\u06ba"}, +gba(){return"\u067e\u0627\u067e \u0627\u067e \u0645\u06cc\u0646\u06cc\u0648"}, +gby(){return"\u0631\u06cc\u0641\u0631\u06cc\u0634 \u06a9\u0631\u06cc\u06ba"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 \u062d\u0631\u0641 \u0628\u0627\u0642\u06cc \u06c1\u06d2"}, +gbu(){return"$remainingCount \u062d\u0631\u0648\u0641 \u0628\u0627\u0642\u06cc \u06c1\u06cc\u06ba"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"\u0679\u06cc\u06a9\u0633\u0679 \u0627\u0633\u06a9\u06cc\u0646 \u06a9\u0631\u06cc\u06ba"}, +gaU(){return"\u0627\u0633\u06a9\u0631\u06cc\u0645"}, +gbv(){return"$modalRouteContentName \u0628\u0646\u062f \u06a9\u0631\u06cc\u06ba"}, +gbD(){return B.bN}, +ga1(){return"Search Web"}, +gM(){return"\u0633\u0628\u06be\u06cc \u06a9\u0648 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba"}, +gbw(){return"\u0645\u06cc\u0646\u06cc\u0648 \u062f\u06a9\u06be\u0627\u0626\u06cc\u06ba"}, +gbo(){return"$tabCount \u0645\u06cc\u06ba \u0633\u06d2 $tabIndex \u0679\u06cc\u0628"}} +A.a5F.prototype={ +gbq(){return"Ogohlantirish"}, +gbr(){return"Orqaga"}, +gb8(){return"Quyi ekran"}, +gbj(){return"Yopish"}, +gaW(){return"Yoyilgan"}, +gZ(){return"Nusxa olish"}, +ga_(){return"Kesib olish"}, +gaY(){return"Olib tashlash"}, +gaG(){return"Muloqot oynasi"}, +gbx(){return"Navigatsiya menyusi"}, +gbl(){return"Yig\u02bbilgan"}, +gaC(){return"yoyish uchun ikki marta bosing"}, +gaQ(){return"Batafsil ko\u02bbrish uchun yoying"}, +gaD(){return"yig\u02bbish uchun ikki marta bosing"}, +gbs(){return"Yig\u02bbish"}, +gK(){return"Tepaga qarang"}, +gaR(){return"Menyuni yopish"}, +gaM(){return"Yopish"}, +gbB(){return"Yana"}, +gaS(){return"Navigatsiya menyusini ochish"}, +ga0(){return"Joylash"}, +gba(){return"Pop-ap menyusi"}, +gby(){return"Yangilash"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 ta belgi qoldi"}, +gbu(){return"$remainingCount ta belgi qoldi"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"Matnni skanerlash"}, +gaU(){return"Kanop"}, +gbv(){return"Yopish: $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Hammasi"}, +gbw(){return"Menyuni ko\u02bbrsatish"}, +gbo(){return"$tabCount varaqdan $tabIndex"}} +A.a5G.prototype={ +gbq(){return"Th\xf4ng b\xe1o"}, +gbr(){return"Quay l\u1ea1i"}, +gb8(){return"B\u1ea3ng d\u01b0\u1edbi c\xf9ng"}, +gbj(){return"\u0110\xf3ng"}, +gaW(){return"\u0110\xe3 m\u1edf r\u1ed9ng"}, +gZ(){return"Sao ch\xe9p"}, +ga_(){return"C\u1eaft"}, +gaY(){return"X\xf3a"}, +gaG(){return"H\u1ed9p tho\u1ea1i"}, +gbx(){return"Menu di chuy\u1ec3n"}, +gbl(){return"\u0110\xe3 thu g\u1ecdn"}, +gaC(){return"nh\u1ea5n \u0111\xfap \u0111\u1ec3 m\u1edf r\u1ed9ng"}, +gaQ(){return"M\u1edf r\u1ed9ng \u0111\u1ec3 xem th\xeam chi ti\u1ebft"}, +gaD(){return"nh\u1ea5n \u0111\xfap \u0111\u1ec3 thu g\u1ecdn"}, +gbs(){return"Thu g\u1ecdn"}, +gK(){return"Look Up"}, +gaR(){return"\u0110\xf3ng tr\xecnh \u0111\u01a1n"}, +gaM(){return"B\u1ecf qua"}, +gbB(){return"Th\xeam"}, +gaS(){return"M\u1edf menu di chuy\u1ec3n"}, +ga0(){return"D\xe1n"}, +gba(){return"Menu b\u1eadt l\xean"}, +gby(){return"L\xe0m m\u1edbi"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"Co\u0300n la\u0323i 1 k\xfd t\u1ef1"}, +gbu(){return"Co\u0300n la\u0323i $remainingCount k\xfd t\u1ef1"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"Qu\xe9t v\u0103n b\u1ea3n"}, +gaU(){return"Scrim"}, +gbv(){return"\u0110\xf3ng $modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Ch\u1ecdn t\u1ea5t c\u1ea3"}, +gbw(){return"Hi\u1ec3n th\u1ecb menu"}, +gbo(){return"Tab $tabIndex trong t\u1ed5ng s\u1ed1 $tabCount"}} +A.LX.prototype={ +gbq(){return"\u63d0\u9192"}, +gbr(){return"\u8fd4\u56de"}, +gb8(){return"\u5e95\u90e8\u52a8\u4f5c\u6761"}, +gbj(){return"\u5173\u95ed"}, +gaW(){return"\u5df2\u5c55\u5f00"}, +gZ(){return"\u590d\u5236"}, +ga_(){return"\u526a\u5207"}, +gaY(){return"\u5220\u9664"}, +gaG(){return"\u5bf9\u8bdd\u6846"}, +gbx(){return"\u5bfc\u822a\u83dc\u5355"}, +gbl(){return"\u5df2\u6536\u8d77"}, +gaC(){return"\u70b9\u6309\u4e24\u6b21\u5373\u53ef\u5c55\u5f00"}, +gaQ(){return"\u5c55\u5f00\u67e5\u770b\u66f4\u591a\u8be6\u60c5"}, +gaD(){return"\u70b9\u6309\u4e24\u6b21\u5373\u53ef\u6536\u8d77"}, +gbs(){return"\u6536\u8d77"}, +gK(){return"Look Up"}, +gaR(){return"\u5173\u95ed\u83dc\u5355"}, +gaM(){return"\u5173\u95ed"}, +gbB(){return"\u66f4\u591a"}, +gaS(){return"\u6253\u5f00\u5bfc\u822a\u83dc\u5355"}, +ga0(){return"\u7c98\u8d34"}, +gba(){return"\u5f39\u51fa\u83dc\u5355"}, +gby(){return"\u5237\u65b0"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"\u8fd8\u53ef\u8f93\u5165 1 \u4e2a\u5b57\u7b26"}, +gbu(){return"\u8fd8\u53ef\u8f93\u5165 $remainingCount \u4e2a\u5b57\u7b26"}, +gbF(){return null}, +gbG(){return"TBD"}, +gaT(){return"\u626b\u63cf\u6587\u5b57"}, +gaU(){return"\u7eb1\u7f69"}, +gbv(){return"\u5173\u95ed $modalRouteContentName"}, +gbD(){return B.eH}, +ga1(){return"Search Web"}, +gM(){return"\u5168\u9009"}, +gbw(){return"\u663e\u793a\u83dc\u5355"}, +gbo(){return"\u7b2c $tabIndex \u4e2a\u6807\u7b7e\uff0c\u5171 $tabCount \u4e2a"}} +A.a5H.prototype={} +A.LY.prototype={ +gbq(){return"\u901a\u77e5"}, +gb8(){return"\u9801\u5e95\u9762\u677f"}, +gbj(){return"\u95dc\u9589"}, +gaW(){return"\u5df2\u5c55\u958b"}, +gZ(){return"\u8907\u88fd"}, +ga_(){return"\u526a\u4e0b"}, +gaY(){return"\u522a\u9664"}, +gaG(){return"\u5c0d\u8a71\u65b9\u584a"}, +gbx(){return"\u5c0e\u89bd\u9078\u55ae"}, +gbl(){return"\u5df2\u6536\u5408"}, +gaC(){return"\u3a52\u5169\u4e0b\u5c31\u53ef\u4ee5\u5c55\u958b"}, +gaQ(){return"\u5c55\u958b\u5c31\u53ef\u4ee5\u67e5\u770b\u8a73\u60c5"}, +gaD(){return"\u3a52\u5169\u4e0b\u5c31\u53ef\u4ee5\u6536\u5408"}, +gbs(){return"\u6536\u5408"}, +gK(){return"\u67e5\u8a62"}, +gaR(){return"\u9582\u9078\u55ae"}, +gaM(){return"\u62d2\u7d55"}, +gaS(){return"\u958b\u555f\u5c0e\u89bd\u9078\u55ae"}, +ga0(){return"\u8cbc\u4e0a"}, +gba(){return"\u5f48\u51fa\u5f0f\u9078\u55ae"}, +gby(){return"\u91cd\u65b0\u6574\u7406"}, +gbn(){return"\u5c1a\u9918 1 \u500b\u5b57\u5143"}, +gbu(){return"\u5c1a\u9918 $remainingCount \u500b\u5b57\u5143"}, +gaT(){return"\u6383\u7784\u6587\u5b57"}, +gaU(){return"Scrim"}, +gbv(){return"\u95dc\u9589 $modalRouteContentName"}, +gM(){return"\u5168\u90e8\u9078\u53d6"}, +gbw(){return"\u986f\u793a\u9078\u55ae"}, +gbo(){return"\u7b2c $tabIndex \u500b\u6a19\u7c64\uff0c\u7e3d\u5171 $tabCount \u500b"}} +A.a5I.prototype={} +A.a5J.prototype={ +gaT(){return"\u6383\u63cf\u6587\u5b57"}, +gaR(){return"\u95dc\u9589\u9078\u55ae"}, +gaD(){return"\u8f15\u89f8\u5169\u4e0b\u5373\u53ef\u6536\u5408"}, +gaC(){return"\u8f15\u89f8\u5169\u4e0b\u5373\u53ef\u5c55\u958b"}, +gaQ(){return"\u5c55\u958b\u66f4\u591a\u8a73\u7d30\u8cc7\u6599"}, +gaU(){return"\u7d17\u7f69"}, +gb8(){return"\u5e95\u90e8\u529f\u80fd\u8868"}, +gbv(){return"\u95dc\u9589\u300c$modalRouteContentName\u300d"}, +gbo(){return"\u7b2c $tabIndex \u500b\u5206\u9801 (\u5171 $tabCount \u500b)"}, +gaM(){return"\u95dc\u9589"}, +gM(){return"\u5168\u9078"}, +gbq(){return"\u5feb\u8a0a"}, +gbn(){return"\u9084\u53ef\u8f38\u5165 1 \u500b\u5b57\u5143"}, +gbu(){return"\u9084\u53ef\u8f38\u5165 $remainingCount \u500b\u5b57\u5143"}} +A.a5K.prototype={ +gbq(){return"Isexwayiso"}, +gbr(){return"Emuva"}, +gb8(){return"Ishidi Eliphansi"}, +gbj(){return"Vala"}, +gaW(){return"Kunwetshiwe"}, +gZ(){return"Kopisha"}, +ga_(){return"Sika"}, +gaY(){return"Susa"}, +gaG(){return"Ingxoxo"}, +gbx(){return"Imenyu yokuzulazula"}, +gbl(){return"Kugoqiwe"}, +gaC(){return"Thepha kabili ukuze unwebe"}, +gaQ(){return"Nweba ukuze uthole imininingwane eyengeziwe"}, +gaD(){return"thepha kabili ukuze ugoqe"}, +gbs(){return"Goqa"}, +gK(){return"Look Up"}, +gaR(){return"Chitha imenyu"}, +gaM(){return"Cashisa"}, +gbB(){return"Okuningi"}, +gaS(){return"Vula imenyu yokuzulazula"}, +ga0(){return"Namathisela"}, +gba(){return"Imenyu ye-popup"}, +gby(){return"Vuselela"}, +gbC(){return null}, +gbE(){return null}, +gbn(){return"1 uhlamvu olusele"}, +gbu(){return"$remainingCount izinhlamvu ezisele"}, +gbF(){return null}, +gbG(){return null}, +gaT(){return"Skena umbhalo"}, +gaU(){return"I-Scrim"}, +gbv(){return"Vala i-$modalRouteContentName"}, +gbD(){return B.N}, +ga1(){return"Search Web"}, +gM(){return"Khetha konke"}, +gbw(){return"Bonisa imenyu"}, +gbo(){return"Ithebhu $tabIndex kwangu-$tabCount"}} +A.abP.prototype={} +A.abQ.prototype={} +A.abR.prototype={} +A.abS.prototype={} +A.abT.prototype={} +A.abU.prototype={} +A.abV.prototype={} +A.abW.prototype={} +A.abX.prototype={} +A.abY.prototype={} +A.abZ.prototype={} +A.ac_.prototype={} +A.ac0.prototype={} +A.PW.prototype={} +A.ac1.prototype={} +A.ac2.prototype={} +A.PX.prototype={} +A.ac3.prototype={} +A.ac4.prototype={} +A.ac5.prototype={} +A.ac6.prototype={} +A.ac7.prototype={} +A.ac8.prototype={} +A.ac9.prototype={} +A.aca.prototype={} +A.PY.prototype={} +A.acb.prototype={} +A.acc.prototype={} +A.acd.prototype={} +A.ace.prototype={} +A.acf.prototype={} +A.acg.prototype={} +A.ach.prototype={} +A.aci.prototype={} +A.acj.prototype={} +A.ack.prototype={} +A.acl.prototype={} +A.acm.prototype={} +A.acn.prototype={} +A.aco.prototype={} +A.acp.prototype={} +A.acq.prototype={} +A.acr.prototype={} +A.acs.prototype={} +A.act.prototype={} +A.acu.prototype={} +A.acv.prototype={} +A.acw.prototype={} +A.acx.prototype={} +A.acy.prototype={} +A.acz.prototype={} +A.PZ.prototype={} +A.acA.prototype={} +A.acB.prototype={} +A.acC.prototype={} +A.acD.prototype={} +A.acE.prototype={} +A.acF.prototype={} +A.acG.prototype={} +A.acH.prototype={} +A.acI.prototype={} +A.acJ.prototype={} +A.acK.prototype={} +A.acL.prototype={} +A.acM.prototype={} +A.acN.prototype={} +A.acO.prototype={} +A.acP.prototype={} +A.acQ.prototype={} +A.acR.prototype={} +A.acS.prototype={} +A.acT.prototype={} +A.acU.prototype={} +A.acV.prototype={} +A.acW.prototype={} +A.acX.prototype={} +A.acY.prototype={} +A.acZ.prototype={} +A.ad_.prototype={} +A.ad0.prototype={} +A.ad1.prototype={} +A.ad2.prototype={} +A.ad3.prototype={} +A.ad4.prototype={} +A.ad5.prototype={} +A.ad6.prototype={} +A.ad7.prototype={} +A.ad8.prototype={} +A.Q_.prototype={} +A.ad9.prototype={} +A.ada.prototype={} +A.adb.prototype={} +A.adc.prototype={} +A.add.prototype={} +A.ade.prototype={} +A.adf.prototype={} +A.Q0.prototype={} +A.adg.prototype={} +A.adh.prototype={} +A.adi.prototype={} +A.adj.prototype={} +A.adk.prototype={} +A.adl.prototype={} +A.adm.prototype={} +A.adn.prototype={} +A.ado.prototype={} +A.adp.prototype={} +A.adq.prototype={} +A.adr.prototype={} +A.ads.prototype={} +A.Q1.prototype={} +A.adt.prototype={} +A.Q2.prototype={} +A.adu.prototype={} +A.adv.prototype={} +A.adw.prototype={} +A.a2k.prototype={ +YF(a){return B.c.vM(this.gbv(),"$modalRouteContentName",a)}, +Nx(a,b){var s=this.x +return B.c.vM(B.c.vM(this.gbo(),"$tabIndex",s.tD(b)),"$tabCount",s.tD(a))}, +gbG(){return null}, +gbn(){return null}, +gbF(){return null}, +gbE(){return null}, +gbC(){return null}, +ad3(a){var s=this,r=s.gbG(),q=s.gbn(),p=s.gbF(),o=s.gbE() +return B.c.vM(A.bJ6(a,s.gbC(),s.a,o,q,s.gbu(),p,r),"$remainingCount",s.x.tD(a))}, +$iaw:1} +A.aj3.prototype={ +xB(a){return $.boY().p(0,a.ge0(a))}, +na(a,b){return $.bPi.cK(0,b,new A.b7Y(b))}, +w0(a){return!1}, +l(a){return"GlobalMaterialLocalizations.delegate("+$.boY().a+" locales)"}} +A.b7Y.prototype={ +$0(){var s,r,q,p,o,n,m,l,k,j,i,h=null +A.bz0() +s=this.a +r=A.j3(s.t5("_")) +if(A.a0y(r)){q=A.ayf(r) +p=A.bjS(r) +o=A.a0x(r) +n=A.aye(r) +m=A.bjR(r) +l=A.bjQ(r) +k=A.bjP(r)}else if(A.a0y(s.ge0(s))){q=A.ayf(s.ge0(s)) +p=A.bjS(s.ge0(s)) +o=A.a0x(s.ge0(s)) +n=A.aye(s.ge0(s)) +m=A.bjR(s.ge0(s)) +l=A.bjQ(s.ge0(s)) +k=A.bjP(s.ge0(s))}else{q=A.ayf(h) +p=A.bjS(h) +o=A.a0x(h) +n=A.aye(h) +m=A.bjR(h) +l=A.bjQ(h) +k=A.bjP(h)}if(A.bla(r)){j=A.aMp(r) +i=A.bl9("00",r)}else if(A.bla(s.ge0(s))){j=A.aMp(s.ge0(s)) +i=A.bl9("00",s.ge0(s))}else{j=A.aMp(h) +i=A.bl9("00",h)}s=A.bVn(s,q,p,o,n,m,l,k,j,i) +s.toString +return new A.cC(s,t.az)}, +$S:607} +A.bhr.prototype={ +$2(a,b){var s,r=B.amM.i(0,a) +if($.X8() instanceof A.FF){$.bR4=A.bRi() +$.ard=$.ar4=null}if($.arH() instanceof A.FF)$.bUe=A.bRh() +if(r==null)A.r(A.bZ("Missing DateTime formatting patterns",null)) +s=b.a +if(a!==s)A.r(A.fh(A.a([a,s],t._m),"Locale does not match symbols.NAME",null)) +J.j5($.X8(),s,b) +J.j5($.arH(),s,r)}, +$S:608} +A.a2m.prototype={$iaz:1, +gcz(){return this.a}} +A.ap6.prototype={ +xB(a){return $.bp1().p(0,a.ge0(a))}, +na(a,b){return $.bQi.cK(0,b,new A.beq(b))}, +w0(a){return!1}, +l(a){return"GlobalWidgetsLocalizations.delegate("+$.bp1().a+" locales)"}} +A.beq.prototype={ +$0(){var s=A.bVq(this.a) +s.toString +return new A.cC(s,t.E8)}, +$S:609} +A.a1Z.prototype={ +xq(a){return this.aJV(a)}, +aJV(a){var s=0,r=A.y(t.z),q,p,o +var $async$xq=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)$async$outer:switch(s){case 0:o=a.a +switch(o){case"remove":try{self.removeSplashFromWeb()}catch(n){o=A.d8('Did you forget to run "dart run flutter_native_splash:create"? \n Could not run the JS command removeSplashFromWeb()') +throw A.c(o)}s=1 +break $async$outer +default:throw A.c(A.a7f("Unimplemented","flutter_native_splash for web doesn't implement '"+o+"'",null,null))}case 1:return A.w(q,r)}}) +return A.x($async$xq,r)}} +A.wD.prototype={ +a8(){return new A.afa(B.m)}} +A.afa.prototype={ +A(a){var s,r=this.a +r.toString +s=this.c +s.toString +return r.aB(a,t.jA.a(s))}} +A.Zp.prototype={ +bI(a){return A.bG5(this)}} +A.Jj.prototype={} +A.BK.prototype={ +gm6(){var s=this.co +return s===$?this.co=A.aOs(this,!0):s}, +ca(){var s,r,q,p,o=this +o.ajM() +s=A.aOs(o,!0) +if(o.gm6()!==s){o.co=s +for(r=o.aK,r=r.gbp(r),q=A.l(r),q=q.h("@<1>").V(q.z[1]),r=new A.bT(J.al(r.a),r.b,q.h("bT<1,2>")),q=q.z[1];r.v();){p=r.a;(p==null?q.a(p):p).ah(0)}o.aK.ab(0)}}, +aO(){var s,r,q,p,o,n=this +try{n.b6=n.aK +for(s=0,q=n.c_;s").V(p.z[1]),q=new A.bT(J.al(q.a),q.b,p.h("bT<1,2>")),p=p.z[1];q.v();){o=q.a +r=o==null?p.a(o):o +J.I1(r)}n.b6=null}}, +N(a,b){if(this.e==null)A.r(A.R(u.w)) +return b.a(J.bEC(this.aK.cK(0,a,new A.axB(this,a,b))))}, +y7(a){return this.N(a,t.z)}, +kJ(){var s,r,q,p +this.ajN() +for(s=this.aK,s=s.gbp(s),r=A.l(s),r=r.h("@<1>").V(r.z[1]),s=new A.bT(J.al(s.a),s.b,r.h("bT<1,2>")),r=r.z[1];s.v();){q=s.a;(q==null?r.a(q):q).ah(0)}for(s=this.c_,p=0;p") +c=document +g=c.querySelector("#toast-content") +if(c.querySelector("#toast-content")!=null){g.toString +J.I3(g)}f=c.createElement("script") +f.id="toast-content" +B.apE.agr(f," var toastElement = Toastify({\n text: '"+h+"',\n gravity: '"+A.i(n)+"',\n position: '"+m+"',\n duration: "+j+",\n close: "+A.i(i)+',\n backgroundColor: "'+l+'",\n });\n toastElement.showToast();\n ') +p=c.querySelector("head") +p.toString +J.Xf(p).F(0,f) +if(k!=null){c=c.querySelector(".toastify") +c.toString +e=B.f.of(k,16) +p=B.c.cm(e,2) +d=B.c.S(e,0,2) +c=c.style +c.toString +B.uW.aBV(c,B.uW.anQ(c,"color"),"#"+(p+d),null)}q=!0 +s=1 +break $async$outer +default:throw A.c(A.a7f("Unimplemented","The fluttertoast plugin for web doesn't implement the method '"+c+"'",null,null))}case 1:return A.w(q,r)}}) +return A.x($async$xq,r)}, +M8(){var s=0,r=A.y(t.H),q,p,o,n,m,l,k,j +var $async$M8=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:n=A.a([],t.mo) +m=A.a([],t._B) +l=$.vS.ya("packages/fluttertoast/assets/toastify.css") +k=document +j=k.createElement("link") +j.id="toast-css" +q=t.N +B.a8l.szH(j,A.am(["rel","stylesheet"],q,q)) +j.href=l +m.push(j) +p=$.vS.ya("packages/fluttertoast/assets/toastify.js") +o=k.createElement("script") +o.async=!0 +o.src=p +q=new A.RG(o,"load",!1,t.rE) +n.push(q.gO(q)) +m.push(o) +k=k.querySelector("head") +k.toString +J.Xf(k).I(0,m) +s=2 +return A.t(A.qv(n,t.H),$async$M8) +case 2:return A.w(null,r)}}) +return A.x($async$M8,r)}} +A.L_.prototype={} +A.cX.prototype={ +k(a,b){if(b==null)return!1 +return this.$ti.b(b)&&A.p(b)===A.p(this)&&J.j(b.b,this.b)}, +gu(a){return A.X(A.p(this),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.oC.prototype={ +k(a,b){if(b==null)return!1 +return this.$ti.b(b)&&A.p(b)===A.p(this)&&J.j(b.c,this.c)}, +gu(a){return A.X(A.p(this),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,B.a)}} +A.aEf.prototype={ +bf(){return null.$0()}} +A.NA.prototype={ +ga0W(a){var s=this.d +if(s instanceof A.uJ)return s.B +else return this.a6}, +bX(a){return this.Ia(B.ar,new A.aQN(this,a))}, +bQ(a){return this.Ia(B.ar,new A.aQL(this,a))}, +bR(a){return this.Ia(B.H,new A.aQM(this,a))}, +bV(a){return this.Ia(B.H,new A.aQK(this,a))}, +Ia(a,b){var s,r=this +if(r.ga0W(r)===a)return r.B +else{s=r.W +if(isFinite(s))return s +else return b.$0()}}, +da(a){var s,r,q=this,p=q.ga0W(q) +if(p!=null){s=q.B +r=q.W +if(p===B.ar)return a.bJ(new A.U(s,r)) +else return a.bJ(new A.U(r,s))}else throw A.c(A.qs("A Gap widget must be placed directly inside a Flex widget or its fallbackDirection must not be null"))}, +ce(){this.id=this.da(t.k.a(A.J.prototype.ga9.call(this)))}, +aE(a,b){}} +A.aQN.prototype={ +$0(){return this.a.aiQ(this.b)}, +$S:41} +A.aQL.prototype={ +$0(){return this.a.aiO(this.b)}, +$S:41} +A.aQM.prototype={ +$0(){return this.a.aiP(this.b)}, +$S:41} +A.aQK.prototype={ +$0(){return this.a.aiN(this.b)}, +$S:41} +A.qw.prototype={ +A(a){var s=null,r=A.lD(a),q=r==null?s:r.a.c,p=q==null?s:A.bU(q) +return new A.akQ(this.c,s,s,p,s)}} +A.akQ.prototype={ +b5(a){var s=new A.NA(this.d,0,this.r,this.f,A.ay(t.T)) +s.b4() +return s}, +bb(a,b){var s=this.d +if(b.B!==s){b.B=s +b.aa()}if(b.W!==0){b.W=0 +b.aa()}s=this.r +if(b.a6!=s){b.a6=s +b.aa()}}} +A.aRS.prototype={ +aFR(a,b,c){var s,r=this,q=b.a +if(J.cf(q)&&b.e==null)return B.a1 +s=r.d +return r.a.$2(a,A.bvN(s,r.c,r.b,null,b,q,s.b,r.e,r.r,r.w))}} +A.Aa.prototype={ +a8(){var s=t.sd +return new A.Rk(new A.CD(A.I(s,t.Js),A.I(t.Kv,s),$.aH()),B.m)}, +aNf(a,b,c){return this.w.$3(a,b,c)}} +A.Rk.prototype={ +b1(a){this.bh(a) +if(!this.a.f.k(0,a.f))this.r=null}, +ca(){var s,r,q=this +q.e8() +if(q.d==null)if(q.c.xo(t.fc)!=null)q.d=A.bsI() +else{s=t.K +r=t.Qu +if(q.c.xo(t.VD)!=null)q.d=new A.xs(null,A.I(s,r)) +else q.d=new A.xs(null,A.I(s,r))}q.r=null}, +aEh(a){var s,r,q,p=this,o=A.a([],t.Im),n=t.sd,m=A.I(n,t._W),l=A.I(n,t.Js) +n=p.a +s=n.f +if(s.e!=null)o.push(p.a_S(a,s)) +else for(n=J.al(n.e);n.v();){s=n.gG(n) +r=p.ao9(a,s) +if(r==null)continue +o.push(r) +m.n(0,r,s) +q=p.a +l.n(0,r,s.wS(q.r,q.f))}p.r=o +p.f.aQk(l) +p.e=m}, +ao9(a,b){if(b instanceof A.h9){if(b instanceof A.ic&&b.d.e!=null)return this.a_S(a,b.d) +return this.aoa(a,b)}if(b instanceof A.jp)return this.aob(a,b) +throw A.c(A.brR("unknown match type "+A.p(b).l(0)))}, +aoa(a,b){var s,r=b.a,q=r.e,p=this.a,o=b.wS(p.r,p.f) +if(q!=null){s=q.$2(a,o) +if(!(s instanceof A.DC))return s}return this.Pv(a,o,new A.e4(new A.b4g(r.f,o),null))}, +aob(a,b){var s,r,q=this,p=q.a,o=b.wS(p.r,p.f) +q.a.toString +s=new A.aUI(new A.b4h(q,b.b,b)) +r=b.a.qE(a,o,s) +if(r!=null&&!(r instanceof A.DC))return r +return q.Pv(a,o,new A.e4(new A.b4i(b,o,s),null))}, +a_W(a){var s,r=this +if(r.w==null){s=a.xo(t.fc) +if(s!=null){if($.ob)$.mO().q6(B.cH,"Using MaterialApp configuration") +r.w=A.bWr() +r.x=new A.b4j()}else{s=a.xo(t.VD) +if(s!=null){if($.ob)$.mO().q6(B.cH,"Using CupertinoApp configuration") +r.w=A.bUd() +r.x=new A.b4k()}else{if($.ob)$.mO().q6(B.cH,"Using WidgetsApp configuration") +r.w=new A.b4l() +r.x=new A.b4m()}}}}, +Pv(a,b,c){var s,r,q +this.a_W(a) +s=this.w +s.toString +r=b.y +q=t.N +q=A.oN(b.r,q,q) +q.I(0,b.b.gri()) +return s.$5$arguments$child$key$name$restorationId(q,c,r,b.e,r.a)}, +a_S(a,b){var s,r,q=this +q.a.toString +s=b.c +r=new A.bn(s,s.gdT(s),null,null,b.f,b.b,null,b.e,new A.bS(s.l(0)+"(error)",t.O)) +q.a_W(a) +q.a.toString +s=q.x.$2(a,r) +s=q.Pv(a,r,s) +return s}, +auo(a,b){var s=t.sd.a(a.b),r=this.e +r===$&&A.b() +r=r.i(0,s) +r.toString +return this.a.aNf(a,b,r)}, +A(a){var s,r,q,p,o,n=this,m=null +if(n.r==null)n.aEh(a) +s=n.d +s.toString +r=n.a +q=r.c +p=r.x +o=n.r +o.toString +return new A.a2q(n.f,A.bs_(A.bt0(B.C,m,q,r.d,A.bz9(),m,n.gaun(),m,o,!1,p),s),m)}} +A.b4g.prototype={ +$1(a){return this.a.$2(a,this.b)}, +$S:13} +A.b4h.prototype={ +$2(a,b){var s=this.b,r=s.gu(s),q=this.a.a,p=q.f,o=q.r,n=a==null?B.afb:a,m=q.w +return A.bvN(o,q.y,q.z,new A.tP(r,t.bT),p,this.c.d,s,b,n,m)}, +$S:614} +A.b4i.prototype={ +$1(a){var s=this.a.a.aG0(a,this.b,this.c) +s.toString +return s}, +$S:13} +A.b4j.prototype={ +$2(a,b){return new A.Dq(b.x,null)}, +$S:615} +A.b4k.prototype={ +$2(a,b){return new A.BN(b.x,null)}, +$S:616} +A.b4l.prototype={ +$5$arguments$child$key$name$restorationId(a,b,c,d,e){return A.bt4(a,b,c,d,e,t.H)}, +$S:617} +A.b4m.prototype={ +$2(a,b){return new A.Cj(b.x,null)}, +$S:618} +A.aRT.prototype={ +ayk(){var s,r=this +r.d.ab(0) +r.Pz("",r.a.a.a) +s=r.aHW() +if($.ob)$.mO().q6(B.cH,s)}, +aG_(a){var s=a.c +return new A.bn(s,s.gdT(s),null,null,a.f,a.b,a.d,null,B.azt)}, +Vk(a,b){var s,r,q,p,o=A.dR(a,0,null).l(0) +if(B.c.hT(o,"?"))o=B.c.S(o,0,o.length-1) +s=A.dR(B.c.adi(B.c.hT(o,"/")&&o!=="/"&&!B.c.p(o,"?")?B.c.S(o,0,o.length-1):o,"/?","?",1),0,null) +r=t.N +q=A.I(r,r) +p=this.as9(s,q) +if(J.cf(p))return new A.ex(B.kp,B.fD,s,b,new A.CB("no routes for location: "+s.l(0)),A.Eo(B.kp)) +return new A.ex(p,q,s,b,null,A.Eo(p))}, +aJ5(a){return this.Vk(a,null)}, +as9(a,b){var s,r,q,p,o +for(s=this.a.a.a,r=this.b,q=0;q<1;++q){p=s[q] +o=A.blt("","",b,a.gdT(a),p,r,a).i(0,null) +if(o==null)o=B.o_ +if(J.hZ(o))return o}return B.o_}, +Xg(a,b,c,d){var s=new A.aRW(this,d,b).$1(c) +return s}, +a1Y(a,b,c,d){var s,r,q,p +if(d>=c.length)return null +s=c[d] +r=new A.aRV(this,a,b,c,d) +q=s.a.r +p=q!=null?q.$2(a,s.wS(this,b)):null +q=t.v +if(q.b(p))return r.$1(p) +return p.be(r,q)}, +a1R(a,b,c){var s,r,q,p,o,n=this +try{s=n.aJ5(a) +q=s +if(B.b.p(c,q)){p=A.a8(c,!0,t.LQ) +p.push(q) +A.r(A.brS("redirect loop detected "+n.a1A(p)))}if(c.length>n.a.a.c){p=A.a8(c,!0,t.LQ) +p.push(q) +A.r(A.brS("too many redirects "+n.a1A(p)))}c.push(q) +q=q.l(0) +if($.ob)$.mO().q6(B.cH,"redirecting to "+q) +return s}catch(o){q=A.ak(o) +if(q instanceof A.CB){r=q +q=r.a +if($.ob)$.mO().q6(B.cH,"Redirection exception: "+q) +return new A.ex(B.kp,B.fD,b,null,r,A.Eo(B.kp))}else throw o}}, +a1A(a){return new A.ad(a,new A.aRU(),A.ab(a).h("ad<1,h>")).ck(0," => ")}, +l(a){return"RouterConfiguration: "+A.i(this.a.a.a)}, +aHW(){var s,r,q=new A.d_("") +q.a=""+"Full paths for routes:\n" +this.Qa(this.a.a.a,"",0,q) +s=this.d +if(s.a!==0){q.a+="known full paths for route names:\n" +for(s=s.gdX(s),s=s.gam(s);s.v();){r=s.gG(s) +q.a+=" "+A.i(r.a)+" => "+A.i(r.b)+"\n"}}s=q.a +return s.charCodeAt(0)==0?s:s}, +Qa(a,b,c,d){var s,r,q,p,o,n +for(s=a.length,r=c*2,q=c+1,p=0;p")),m),!0,m.h("z.E")) +return A.brU(l.length-1,s,l).be(new A.aFs(k,a),t.H)}}return k.a50(a)}, +a50(a){this.d=a +this.ag() +return new A.cC(null,t.kO)}} +A.aFp.prototype={ +$1(a){if(a instanceof A.h9)this.a.push(a) +return!0}, +$S:86} +A.aFq.prototype={ +$1(a){if(a instanceof A.h9)this.a.push(a) +return!0}, +$S:86} +A.aFr.prototype={ +$1(a){return a.a}, +$S:625} +A.aFs.prototype={ +$1(a){if(!a)return new A.cC(null,t.kO) +return this.a.a50(this.b)}, +$S:113} +A.ahv.prototype={} +A.Mk.prototype={ +J(){return"NavigatingType."+this.b}} +A.nz.prototype={} +A.KR.prototype={ +aPn(a,b){var s,r,q=this +switch(b.a){case 0:s=q.c +if(s.gls(s)===a.gls(a)&&B.a0.d7(q.c.c,a.c))return +r=q.c===B.p2 +break +case 1:r=!0 +break +case 2:r=!1 +break +default:r=null}B.l_.qU("selectMultiEntryHistory",t.H) +A.bux(a.gls(a),r,a.c,null) +q.b=q.c=a}, +gj(a){return this.b}, +SD(a,b){var s=this,r=s.b,q=r.gls(r)!==a||!J.j(s.b.c,b) +s.b=new A.lC(a,null,b) +if(q)s.HH()}, +a3Y(a){var s=this,r=null +if(s.b===a)return +if(a.c!=null)s.b=s.c=a +else{s.b=new A.lC(a.gls(a),r,new A.nz(r,r,r,B.ov,t.Qt)) +s.c=B.p2}s.HH()}, +P(a,b){if(this.k4$<=0)$.ap.bd$.push(this) +this.Zm(0,b)}, +H(a,b){this.Zn(0,b) +if(this.k4$<=0)B.b.E($.ap.bd$,this)}, +m(){if(this.k4$>0)B.b.E($.ap.bd$,this) +this.eK()}, +Af(a){this.a3Y(a) +return new A.cC(!0,t.d9)}, +a9A(a){this.a3Y(new A.lC(a,null,null)) +return new A.cC(!0,t.d9)}} +A.aht.prototype={} +A.ahu.prototype={} +A.bi3.prototype={ +$1(a){if(a.a.b>=1000)A.bku(new A.cg(new A.RK(a.r),a.w,a.d,A.c0(a.b),null,!1),!1)}, +$S:627} +A.iQ.prototype={} +A.aS4.prototype={ +$0(){return A.a([],t.K1)}, +$S:159} +A.aS3.prototype={ +$0(){return A.a([],t.K1)}, +$S:159} +A.aS1.prototype={ +$2(a,b){return new A.aS(a,A.lL(b,0,b.length,B.a_,!1),t.mT)}, +$S:629} +A.aS2.prototype={ +$0(){return A.a([],t.K1)}, +$S:159} +A.h9.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.h9&&s.a===b.a&&s.b===b.b&&s.c.k(0,b.c)}, +gu(a){return A.X(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)}, +wS(a,b){var s=this.a +return new A.bn(b.c,this.b,s.c,s.d,b.f,b.b,b.d,null,this.c)}, +gNw(){return this.a}} +A.jp.prototype={ +ga30(){var s=J.ks(this.d) +for(;s instanceof A.jp;)s=J.ks(s.d) +return t.UV.a(s)}, +wS(a,b){var s=this.ga30() +if(s instanceof A.ic)b=s.d +return new A.bn(b.c,this.c,null,null,b.f,b.b,b.d,null,this.e)}, +wZ(a){var s=this +return new A.jp(s.a,s.b,s.c,a,s.e)}, +k(a,b){var s=this +if(b==null)return!1 +return b instanceof A.jp&&s.a===b.a&&s.c===b.c&&B.yj.d7(s.d,b.d)&&s.e.k(0,b.e)}, +gu(a){var s=this +return A.X(s.a,s.c,A.dj(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,B.a)}, +gNw(){return this.a}} +A.ic.prototype={ +wS(a,b){return this.ajo(a,this.d)}, +k(a,b){if(b==null)return!1 +return b instanceof A.ic&&this.e===b.e&&this.d.k(0,b.d)&&this.ajn(0,b)}, +gu(a){var s=this,r=s.d +return A.X(A.h9.prototype.gu.call(s,s),s.e,r.gu(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,B.a)}} +A.aHe.prototype={ +$2(a,b){return A.r(A.d1(null))}, +$S:630} +A.ex.prototype={ +vH(a){var s=this,r=a.d +if(r.e!=null){r=A.a8(s.a,!0,t._W) +r.push(a) +return s.wZ(r)}return s.wZ(A.btR(s.a,r.a,a))}, +E(a,b){var s,r,q,p,o,n=this,m=n.a,l=A.btS(m,b) +if(J.j(l,m))return n +s=A.Eo(l) +if(n.f===s)return n.wZ(l) +r=A.a([],t.s) +A.bzj(s,r) +m=t.N +q=A.qK(r,m) +p=n.b +p=p.gdX(p) +o=A.bsH(p.jw(p,new A.aS7(q)),m,m) +return n.a8W(l,o,n.c.Np(0,A.bzi(s,o)))}, +gX(a){var s=this.a,r=J.ct(s) +if(r.gX(s) instanceof A.h9)return t.UV.a(r.gX(s)) +return t.UD.a(r.gX(s)).ga30()}, +a8W(a,b,c){var s=this,r=c==null?s.c:c,q=b==null?s.b:b +return new A.ex(a,q,r,s.d,s.e,A.Eo(a))}, +wZ(a){return this.a8W(a,null,null)}, +k(a,b){var s=this +if(b==null)return!1 +if(J.a_(b)!==A.p(s))return!1 +return b instanceof A.ex&&s.c.k(0,b.c)&&J.j(s.d,b.d)&&s.e==b.e&&B.yj.d7(s.a,b.a)&&B.ajZ.d7(s.b,b.b)}, +gu(a){var s=this,r=A.dj(s.a),q=s.b +q=q.gdX(q) +return A.X(r,s.c,s.d,s.e,A.bKu(q.ik(q,new A.aS6(),t.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,B.a)}} +A.aS5.prototype={ +$1(a){return!(a instanceof A.ic)}, +$S:86} +A.aS7.prototype={ +$1(a){return this.a.p(0,a.a)}, +$S:631} +A.aS6.prototype={ +$1(a){return A.X(a.a,a.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)}, +$S:632} +A.a8G.prototype={} +A.am4.prototype={ +cV(a){var s,r,q=A.a([],t.qz) +A.a8H(a.a,new A.bbp(q)) +s=t.vD +r=A.a8(new A.ad(q,new A.bbq(this),s),!0,s.h("av.E")) +return this.aDm(a.c.l(0),a.d,r)}, +a61(a,b,c,d){var s,r,q,p=null +try{p=A.b7y(b,B.az.gEL().b,null)}catch(s){if(A.ak(s) instanceof A.CZ){p=A.b7y(null,B.az.gEL().b,null) +r=J.a_(b).l(0) +if($.ob)$.mO().q6(B.a8h,"An extra with complex data type "+r+" is provided without a codec. Consider provide a codec to GoRouter to prevent extra being dropped during serialization.")}else throw s}q=A.am(["codec","json","encoded",p],t.N,t.X) +r=t.X +r=A.I(r,r) +r.n(0,"location",a) +r.n(0,"state",q) +if(c!=null)r.n(0,"imperativeMatches",c) +if(d!=null)r.n(0,"pageKey",d) +return r}, +aDm(a,b,c){return this.a61(a,b,c,null)}, +aDn(a,b,c){return this.a61(a,b,null,c)}} +A.bbp.prototype={ +$1(a){if(a instanceof A.ic)this.a.push(a) +return!0}, +$S:86} +A.bbq.prototype={ +$1(a){var s=a.d +return this.a.aDn(s.c.l(0),s.d,a.c.a)}, +$S:633} +A.am3.prototype={ +cV(a){var s,r,q,p,o,n,m,l,k,j=J.aj(a),i=j.i(a,"location") +i.toString +A.bm(i) +s=j.i(a,"state") +s.toString +r=t.pE +r.a(s) +q=J.aj(s) +if(J.j(q.i(s,"codec"),"json")){p=B.az.ga9n() +s=q.i(s,"encoded") +s.toString +o=A.bfQ(A.bm(s),p.a)}else o=null +n=this.a.Vk(i,o) +m=t.wh.a(j.i(a,"imperativeMatches")) +if(m!=null)for(j=J.bEU(m,r),i=J.al(j.a),j=j.$ti,s=new A.vj(i,j.h("vj<1>")),j=j.c,r=t.O,q=t.Kw,p=t.oe;s.v();){l=j.a(i.gG(i)) +k=this.cV(l) +l=J.b7(l,"pageKey") +l.toString +A.bm(l) +n=n.vH(new A.ic(k,new A.aD(new A.a7($.ac,q),p),A.bsb(k),A.bsc(k),new A.bS(l,r)))}return n}} +A.am2.prototype={} +A.am5.prototype={} +A.Cj.prototype={ +A(a){var s=null,r=this.c +r=r==null?s:"GoException: "+r.a +return A.z8(!0,A.eH(A.cP(A.a([B.axu,B.OA,A.P(r==null?"page not found":r,s,s,s,s,s,s,s),B.OA,new A.QK(new A.aBZ(a),B.axr,s)],t.p),B.w,B.dq,B.O),s,s),!0,B.a8,!0,!0)}} +A.aBZ.prototype={ +$0(){return A.bP(this.a).uf(0,"/",null)}, +$S:0} +A.QK.prototype={ +a8(){return new A.aeF(B.m)}} +A.aeF.prototype={ +ca(){var s,r=this +r.e8() +s=r.c.xo(t.iM) +s=s==null?null:s.dx +if(s==null)s=B.mz +r.d!==$&&A.ck() +r.d=s}, +A(a){var s=null,r=this.a,q=r.c,p=this.d +p===$&&A.b() +return A.dY(s,A.cQ(s,r.d,B.n,p,s,s,s,s,s,B.bh,s),B.D,!1,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,q,s,s,s,s,!1,B.am)}} +A.a2o.prototype={ +l(a){return"GoError: "+this.a}} +A.CB.prototype={ +l(a){return"GoException: "+this.a}, +$icv:1} +A.aFt.prototype={ +$1$1(a,b){var s=A.bP(this.a).c +s===$&&A.b() +s.dO(a) +return null}, +$1(a){return this.$1$1(a,t.X)}, +$0(){return this.$1$1(null,t.X)}, +$1$0(a){return this.$1$1(null,a)}, +$C:"$1", +$R:0, +$D(){return[null]}, +$S:634} +A.tX.prototype={ +dh(a){return!1}} +A.BN.prototype={ +A(a){var s=null,r=this.c +r=r==null?s:"GoException: "+r.a +return new A.Jx(B.a0I,A.eH(A.cP(A.a([A.P(r==null?"page not found":r,s,s,s,s,s,s,s),A.ZB(B.a7,B.bv,B.P8,s,B.ji,44,new A.ay2(a),s,0.4)],t.p),B.w,B.dq,B.O),s,s),s)}} +A.ay2.prototype={ +$0(){return A.bP(this.a).uf(0,"/",null)}, +$S:0} +A.iC.prototype={ +v_(a){var s=null,r=A.l(this),q=A.a([],t.Zt),p=$.ac,o=r.h("a7<1?>"),n=r.h("aD<1?>"),m=A.mf(B.bV),l=A.a([],t.wi),k=$.aH(),j=$.ac +return new A.Rl(!1,!0,!1,s,s,q,A.aW(t.kj),new A.bq(s,r.h("bq>")),new A.bq(s,t.C),new A.p1(),s,0,new A.aD(new A.a7(p,o),n),m,l,this,new A.bF(s,k,t.XR),new A.aD(new A.a7(j,o),n),r.h("Rl<1>"))}} +A.Rl.prototype={ +gqC(){this.$ti.h("iC<1>").a(this.b) +return!1}, +gpJ(){this.$ti.h("iC<1>").a(this.b) +return null}, +gtb(){this.$ti.h("iC<1>").a(this.b) +return null}, +gu7(a){return this.$ti.h("iC<1>").a(this.b).w}, +gNt(){return this.$ti.h("iC<1>").a(this.b).x}, +gtP(){this.$ti.h("iC<1>").a(this.b) +return!0}, +gpY(){this.$ti.h("iC<1>").a(this.b) +return!1}, +gtV(){this.$ti.h("iC<1>").a(this.b) +return!0}, +qE(a,b,c){var s=null,r=this.$ti.h("iC<1>").a(this.b) +return new A.bu(A.bL(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s,s),!1,!0,!1,!1,r.r,s)}, +zL(a,b,c,d){return this.$ti.h("iC<1>").a(this.b).ay.$4(a,b,c,d)}} +A.ma.prototype={} +A.Dq.prototype={ +A(a){var s=null,r=A.eB(s,s,s,s,s,s,B.P9),q=this.c +q=q==null?s:"GoException: "+q.a +if(q==null)q="page not found" +return A.e9(r,s,A.eH(A.cP(A.a([new A.Of(q,s),A.eP(!1,B.P8,B.n,s,s,s,s,s,new A.aJV(a),s,s)],t.p),B.w,B.dq,B.O),s,s),s,s,s,!0,!1,!1,s,s)}} +A.aJV.prototype={ +$0(){return A.bP(this.a).uf(0,"/",null)}, +$S:0} +A.aFl.prototype={ +aNS(a,b){var s,r,q=this,p=a.c +p.toString +if(!(p instanceof A.nz))return q.a4d(b,q.c.b.cV(t.pE.a(p))).be(new A.aFm(q,b),t.LQ) +s=A.b6("initialMatches") +s.sdQ(q.a.Vk(a.gls(a),p.a)) +if(s.aH().e!=null){r=a.gls(a) +if($.ob)$.mO().q6(B.cH,"No initial matches: "+r)}return q.a4d(b,s.aH()).be(new A.aFn(q,b,p),t.LQ)}, +aPd(a){var s,r=a.a,q=J.aj(r) +if(q.gak(r))return null +s=$.brV&&q.gX(r) instanceof A.ic?t.x2.a(q.gX(r)).d.c.l(0):a.c.l(0) +return new A.lC(s,null,this.c.a.cV(a))}, +a4d(a,b){var s=this.a.Xg(0,a,b,A.a([],t.k4)) +if(s instanceof A.ex)return new A.cC(s,t.Zs) +return s}, +aEn(a,b,c,d){var s,r,q +switch(d.a){case 0:b.toString +s=this.a27() +c.toString +return b.vH(A.bkF(c,a,s)) +case 1:s=b.E(0,b.gX(b)) +r=this.a27() +c.toString +return s.vH(A.bkF(c,a,r)) +case 2:q=b.gX(b) +s=b.E(0,q) +c.toString +return s.vH(A.bkF(c,a,q.c)) +case 3:return a +case 4:return b.c.l(0)!==a.c.l(0)?a:b}}, +a27(){var s,r,q=J.oL(32,t.S) +for(s=this.d,r=0;r<32;++r)q[r]=s.xL(33)+89 +return new A.bS(A.jq(q,0,null),t.O)}} +A.aFm.prototype={ +$1(a){if(a.e!=null&&this.a.b!=null)return this.a.b.$2(this.b,a) +return a}, +$S:244} +A.aFn.prototype={ +$1(a){var s,r=this +if(a.e!=null&&r.a.b!=null)return r.a.b.$2(r.b,a) +s=r.c +return r.a.aEn(a,s.c,s.b,s.d)}, +$S:244} +A.bfb.prototype={ +$1(a){return"\\"+A.i(a.b[0])}, +$S:112} +A.uN.prototype={} +A.oH.prototype={} +A.a9j.prototype={} +A.aUI.prototype={} +A.zo.prototype={ +aG0(a,b,c){var s=c.e.$2(this.r,this.x) +return this.e.$3(a,b,s)}, +qE(a,b,c){var s=c.e.$2(this.r,this.x) +return this.f.$3(a,b,s)}} +A.am1.prototype={} +A.aS_.prototype={} +A.a2p.prototype={ +aB(a,b){return A.r(A.d1("One of `build` or `buildPage` must be implemented."))}, +wR(a,b){return B.Jy}, +acZ(a,b,c){return null}} +A.aFi.prototype={ +$1(a){var s,r,q=a.w,p=this.a +if(p.b(q))return q +s=$.bAN() +A.ql(a) +r=s.a.get(a) +if(r==null){r=this.b.$1(a) +s.n(0,a,r) +s=r}else s=r +return p.a(s)}, +$S(){return this.a.h("0(bn)")}} +A.aFh.prototype={ +$2(a,b){return this.a.$1(b).aB(a,b)}, +$S:637} +A.aFj.prototype={ +$2(a,b){return this.a.$1(b).wR(a,b)}, +$S:638} +A.aFk.prototype={ +$2(a,b){return J.bED(this.a.$1(b),a,b)}, +$S:246} +A.a9k.prototype={ +TT(a,b,c){return A.r(A.d1("One of `builder` or `pageBuilder` must be implemented."))}} +A.aUK.prototype={ +$1(a){var s,r=$.bBp() +A.ql(a) +s=r.a.get(a) +if(s==null){s=this.a.$1(a) +r.n(0,a,s) +r=s}else r=s +return this.b.a(r)}, +$S(){return this.b.h("0(bn)")}} +A.aUJ.prototype={ +$3(a,b,c){return this.a.$1(b).TT(a,b,c)}, +$S:640} +A.aUL.prototype={ +$3(a,b,c){this.a.$1(b) +return B.Jy}, +$S:641} +A.DC.prototype={ +v_(a){return A.r(A.aa("Should never be called"))}} +A.aSb.prototype={} +A.CC.prototype={ +amB(a,b,c,d,e,f,g,h,i,j,k,l,m,n,a0){var s,r,q,p=this,o=null +A.bXY(!0) +if($.ap==null)A.bm3() +$.ap.toString +s=t.N +s=new A.aRT(p.r,g,d,A.I(s,s)) +s.ayk() +p.a!==$&&A.ck() +p.a=s +p.e!==$&&A.ck() +p.e=new A.aFl(s,o,new A.a8G(new A.am4(s),new A.am3(s)),B.hc) +r=p.aqP(f) +q=$.aH() +p.d!==$&&A.ck() +p.d=new A.KR(k,new A.lC(r,o,new A.nz(e,o,o,B.ov,t.Qt)),B.p2,q) +r=A.a([],t.tc) +r=A.a8(r,!0,t.JT) +q=new A.KS(!1,s,$.bBh(),q) +q.a=new A.aRS(new A.aFo(p),c,b,s,m,r,q.gaup()) +p.c!==$&&A.ck() +p.c=q}, +uf(a,b,c){var s +if($.ob)$.mO().q6(B.cH,"going to "+b) +s=this.d +s===$&&A.b() +s.SD(b,new A.nz(c,null,null,B.ov,t.Qt))}, +dz(a,b,c){return this.aOc(a,b,c,c.h("0?"))}, +aOc(a,b,c,d){var s=0,r=A.y(d),q,p=this,o,n,m +var $async$dz=A.u(function(e,f){if(e===1)return A.v(f,r) +while(true)switch(s){case 0:if($.ob)$.mO().q6(B.cH,"pushing "+a) +o=p.d +o===$&&A.b() +n=p.c +n===$&&A.b() +n=n.d +m=new A.a7($.ac,c.h("a7<0?>")) +o.SD(a,new A.nz(b,new A.aD(m,c.h("aD<0?>")),n,B.an7,c.h("nz<0>"))) +q=m +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$dz,r)}, +nI(a,b,c){var s,r,q +if($.ob)$.mO().q6(B.cH,"pushReplacement "+a) +s=this.d +s===$&&A.b() +r=this.c +r===$&&A.b() +r=r.d +q=new A.a7($.ac,c.h("a7<0?>")) +s.SD(a,new A.nz(b,new A.aD(q,c.h("aD<0?>")),r,B.an8,c.h("nz<0>"))) +return q}, +aqP(a){var s,r,q=null +$.ap.toString +s=A.dR($.bO().gL8(),0,q) +r=(s.gaaR()?A.fc(q,q,"/",q,s.gri(),q):s).l(0) +if(r==="/")return a +else return r}} +A.aFo.prototype={ +$2(a,b){return new A.tX(this.a,b,null)}, +$S:642} +A.af9.prototype={ +P(a,b){}, +H(a,b){}} +A.bn.prototype={ +k(a,b){var s=this +if(b==null)return!1 +return b instanceof A.bn&&b.b.k(0,s.b)&&b.c===s.c&&b.e==s.e&&b.f===s.f&&b.r===s.r&&J.j(b.w,s.w)&&b.x==s.x&&b.y.k(0,s.y)}, +gu(a){var s=this +return A.X(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,B.a)}} +A.a2q.prototype={} +A.CD.prototype={ +aQk(a){var s,r,q,p,o,n,m={} +m.a=!1 +s=this.b +s=s.gbp(s) +r=A.iJ(s,A.l(s).h("z.E")) +for(s=a.gdX(a),s=s.gam(s),q=this.a;s.v();){p=s.gG(s) +o=p.a +n=q.i(0,o) +if(n!=null){p=p.b +if(!n.k(0,p)){m.a=m.a||r.p(0,o) +q.n(0,o,p)}continue}q.n(0,o,p.b)}q.Nn(q,new A.aFu(m,a,r)) +if(m.a)this.ag()}} +A.aFu.prototype={ +$2(a,b){if(this.b.aq(0,a))return!1 +if(this.c.p(0,a)){this.a.a=!0 +return!1}return!0}, +$S:643} +A.auo.prototype={} +A.auq.prototype={} +A.IJ.prototype={ +k(a,b){if(b==null)return!1 +if(b instanceof A.IJ)return J.j(b.a,this.a)&&J.j(b.b,this.b) +return!1}, +gu(a){return(A.cS(A.p(this))^J.T(this.a)^J.T(this.b))>>>0}} +A.a2B.prototype={ +l(a){return"HiveError: "+this.a}} +A.rl.prototype={} +A.Yo.prototype={ +hJ(a,b){var s,r,q=b.f,p=q+1 +if(p>b.e)A.r(A.cb("Not enough bytes available.")) +b.f=p +s=b.aOz(b.a[q]) +r=A.bOE(s,null) +if(r==null)A.r(A.cn("Could not parse BigInt",s,null)) +return r}, +BK(a,b,c){var s=c.l(0),r=s.length +A.bi(r,null) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=r +b.aep(s,!1)}, +gBE(){return 17}} +A.JJ.prototype={ +hJ(a,b){var s=B.e.au(b.Nh()),r=new A.BT(s,!1) +r.HT(s,!1) +return this.$ti.c.a(r)}, +BK(a,b,c){b.NR(c.a)}, +gBE(){return 16}} +A.BT.prototype={} +A.a0z.prototype={ +hJ(a,b){var s=B.e.au(b.Nh()),r=b.f,q=r+1 +if(q>b.e)A.r(A.cb("Not enough bytes available.")) +b.f=q +return A.n1(s,b.a[r]>0)}, +BK(a,b,c){var s +b.NR(c.a) +s=c.b +A.bi(s,null) +s=s?1:0 +A.bi(s,null) +if(b.b.length-b.d<1)b.bU(1) +b.b[b.d++]=s}, +gBE(){return 18}} +A.Yc.prototype={ +FZ(a,b,c,d,e,f){return this.aND(0,b,c,!0,e,f)}, +aND(a,b,c,d,e,f){var s=0,r=A.y(t.A5),q,p,o,n +var $async$FZ=A.u(function(g,h){if(g===1)return A.v(h,r) +while(true)switch(s){case 0:n=$.bCr() +if(n.aaT("window")){p=window +p.toString +p=p.indexedDB||p.webkitIndexedDB||p.mozIndexedDB}else p=self.indexedDB +p.toString +s=3 +return A.t(B.y_.acq(p,b,new A.atC("box"),1),$async$FZ) +case 3:o=h +p=o.objectStoreNames +s=!B.n0.p(p,"box")?4:5 +break +case 4:A.t4("Creating objectStore box in database "+b+"...") +if(n.aaT("window")){n=window +n.toString +n=n.indexedDB||n.webkitIndexedDB||n.mozIndexedDB}else n=self.indexedDB +n.toString +p=o.version +if(p==null)p=1 +s=6 +return A.t(B.y_.acq(n,b,new A.atD("box"),p+1),$async$FZ) +case 6:o=h +case 5:A.t4("Got object store box in database "+b+".") +q=new A.OZ(o,e,"box",B.Ti) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$FZ,r)}} +A.atC.prototype={ +$1(a){var s=t.Bk.a(new A.o_([],[]).tl(a.target.result,!1)),r=s.objectStoreNames,q=this.a +if(!B.n0.p(r,q))B.v3.a98(s,q)}, +$S:247} +A.atD.prototype={ +$1(a){var s=t.Bk.a(new A.o_([],[]).tl(a.target.result,!1)),r=s.objectStoreNames,q=this.a +if(!B.n0.p(r,q))B.v3.a98(s,q)}, +$S:247} +A.OZ.prototype={ +a2U(a){return a.length>=2&&a[0]===144&&a[1]===169}, +aIz(a){var s,r,q,p,o,n,m,l=a.b,k=this.b,j=k==null +if(j)if(l==null)return l +else if(t.R.b(l)){if(!this.a2U(l))return l.buffer}else if(typeof l=="number"||A.jA(l)||typeof l=="string"||t.ga.b(l)||t.TP.b(l)||t.yp.b(l))return l +s=this.d +r=new A.Yr(s,new Uint8Array(4096)) +r.ael(B.a8H,!1) +if(j)r.eg(0,l) +else{q=new A.Yr(s,new Uint8Array(4096)) +q.aQC(0,l,!0) +p=q.b +o=q.d +j=p.length+32 +if(r.b.length-r.dp)A.r(A.cb("Not enough bytes available.")) +r.f=q +o=this.b +if(o==null)return r.i3(0) +else{n=p-q +m=new Uint8Array(n) +l=o.aR2(r.a,q,n,m,0) +r.f+=n +return A.bq_(m,r.d,l).i3(0)}}else return s}else return a}, +C2(a){var s=this.c,r=a?"readwrite":"readonly" +if(r!=="readonly"&&r!=="readwrite")A.r(A.bZ(r,null)) +s=this.a.transaction(s,r).objectStore(s) +s.toString +return s}, +afm(){var s,r,q,p,o=this.C2(!1) +if("getAllKeys" in o&&!0){s=new A.a7($.ac,t.Jk) +r=new A.aD(s,t.rK) +q=this.C2(!1).getAllKeys(null) +q.toString +p=t.I3 +A.ju(q,"success",new A.aXN(r,q),!1,p) +A.ju(q,"error",new A.aXO(r,q),!1,p) +return s}else{s=B.i4.acr(o,!0) +return new A.o5(new A.aXP(),s,s.$ti.h("o5")).fO(0)}}, +afS(){var s,r,q,p,o=this.C2(!1) +if("getAll" in o&&!0){s=new A.a7($.ac,t.mg) +r=new A.aD(s,t.fw) +q=o.getAll(null) +q.toString +p=t.I3 +A.ju(q,"success",new A.aXQ(this,q,r),!1,p) +A.ju(q,"error",new A.aXR(r,q),!1,p) +return s}else{s=B.i4.acr(o,!0) +return new A.o5(new A.aXS(),s,s.$ti.h("o5")).fO(0)}}, +Fo(a,b,c,d){return this.aLa(0,b,c,d)}, +aLa(a,b,c,d){var s=0,r=A.y(t.S),q,p=this,o,n,m,l,k,j,i +var $async$Fo=A.u(function(e,f){if(e===1)return A.v(f,r) +while(true)switch(s){case 0:p.d=b +s=3 +return A.t(p.afm(),$async$Fo) +case 3:o=f +s=!d?4:6 +break +case 4:i=J +s=7 +return A.t(p.afS(),$async$Fo) +case 7:n=i.al(f),m=J.aj(o),l=0 +case 8:if(!n.v()){s=10 +break}k=n.gG(n) +j=l+1 +c.abc(0,new A.m_(m.i(o,l),k,!1,!1,null,-1),!1) +case 9:l=j +s=8 +break +case 10:s=5 +break +case 6:for(n=J.al(o);n.v();)c.abc(0,new A.m_(n.gG(n),null,!1,!0,null,-1),!1) +case 5:q=0 +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Fo,r)}, +jl(a,b){return this.aOB(0,b)}, +aOB(a,b){var s=0,r=A.y(t.z),q,p=this +var $async$jl=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:s=3 +return A.t(B.i4.afx(p.C2(!1),b.a),$async$jl) +case 3:q=p.a9m(d) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$jl,r)}, +BL(a){return this.aQJ(a)}, +aQJ(a){var s=0,r=A.y(t.H),q=this,p,o,n,m,l +var $async$BL=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:l=q.C2(!0) +p=a.length,o=0 +case 2:if(!(or.e)A.r(A.cb("Not enough bytes available.")) +s=r.b.getFloat64(q,!0) +r.f+=8 +return s}, +acV(a,b){var s,r,q=this,p="Not enough bytes available." +if(a==null){s=q.f+4 +if(s>q.e)A.r(A.cb(p)) +q.f=s +r=q.a +s-=4 +a=(r[s]|r[s+1]<<8|r[s+2]<<16|r[s+3]<<24)>>>0}s=q.f+a +if(s>q.e)A.r(A.cb(p)) +q.f=s +r=q.a +return b.cV(A.eO(r.buffer,r.byteOffset+(s-a),a))}, +aOy(){return this.acV(null,B.de)}, +aOz(a){return this.acV(a,B.de)}, +aOs(){var s,r,q,p,o,n=this,m="Not enough bytes available.",l=n.f+4 +if(l>n.e)A.r(A.cb(m)) +n.f=l +s=n.a +l-=4 +r=(s[l]|s[l+1]<<8|s[l+2]<<16|s[l+3]<<24)>>>0 +if(n.f+r*8>n.e)A.r(A.cb(m)) +q=n.b +p=A.aX(r,0,!0,t.S) +for(o=0;on.e)A.r(A.cb(m)) +n.f=l +s=n.a +l-=4 +r=(s[l]|s[l+1]<<8|s[l+2]<<16|s[l+3]<<24)>>>0 +if(n.f+r*8>n.e)A.r(A.cb(m)) +q=n.b +p=A.aX(r,0,!0,t.i) +for(o=0;oo.e)A.r(A.cb(n)) +o.f=m +s=o.a +m-=4 +r=(s[m]|s[m+1]<<8|s[m+2]<<16|s[m+3]<<24)>>>0 +if(o.f+r>o.e)A.r(A.cb(n)) +q=A.aX(r,!1,!0,t.y) +for(m=o.a,p=0;p0 +return q}, +aOA(){var s,r,q,p,o,n,m,l,k=this,j="Not enough bytes available.",i=k.f+4 +if(i>k.e)A.r(A.cb(j)) +k.f=i +s=k.a +i-=4 +r=(s[i]|s[i+1]<<8|s[i+2]<<16|s[i+3]<<24)>>>0 +q=A.aX(r,"",!0,t.N) +for(i=k.a,p=0;pk.e)A.r(A.cb(j)) +k.f=s +s-=4 +o=(i[s]|i[s+1]<<8|i[s+2]<<16|i[s+3]<<24)>>>0 +s=k.f+o +if(s>k.e)A.r(A.cb(j)) +k.f=s +n=i.buffer +m=i.byteOffset +l=new Uint8Array(n,m+(s-o),o) +q[p]=B.de.cV(l)}return q}, +aOv(){var s,r,q,p,o=this,n=o.f+4 +if(n>o.e)A.r(A.cb("Not enough bytes available.")) +o.f=n +s=o.a +n-=4 +r=(s[n]|s[n+1]<<8|s[n+2]<<16|s[n+3]<<24)>>>0 +q=A.aX(r,null,!0,t.z) +for(p=0;po.e)A.r(A.cb("Not enough bytes available.")) +o.f=n +s=o.a +n-=4 +r=(s[n]|s[n+1]<<8|s[n+2]<<16|s[n+3]<<24)>>>0 +n=t.z +q=A.I(n,n) +for(p=0;pl)A.r(A.cb(o)) +s=p.a +p.f=m +r=s[n] +if(r===0){n=m+4 +if(n>l)A.r(A.cb(o)) +p.f=n +n-=4 +return(s[n]|s[n+1]<<8|s[n+2]<<16|s[n+3]<<24)>>>0}else if(r===1){n=m+1 +if(n>l)A.r(A.cb(o)) +p.f=n +q=s[m] +n+=q +if(n>l)A.r(A.cb(o)) +p.f=n +return B.de.cV(A.eO(s.buffer,s.byteOffset+(n-q),q))}else throw A.c(A.h2("Unsupported key type. Frame might be corrupted."))}, +aOp(){var s,r,q,p,o,n,m,l,k=this,j="Not enough bytes available.",i=k.f+4 +if(i>k.e)A.r(A.cb(j)) +k.f=i +s=k.a +i-=4 +r=(s[i]|s[i+1]<<8|s[i+2]<<16|s[i+3]<<24)>>>0 +i=k.f +s=i+1 +q=k.e +if(s>q)A.r(A.cb(j)) +p=k.a +k.f=s +o=p[i] +i=s+o +if(i>q)A.r(A.cb(j)) +k.f=i +n=A.jq(A.eO(p.buffer,p.byteOffset+(i-o),o),0,null) +m=A.aX(r,null,!0,t.z) +for(l=0;lp.e)A.r(A.cb(o)) +p.f=m +b=p.a[n] +switch(b){case 0:return null +case 1:return B.e.au(p.Nh()) +case 2:return p.Nh() +case 3:n=p.f +m=n+1 +if(m>p.e)A.r(A.cb(o)) +p.f=m +return p.a[n]>0 +case 4:return p.aOy() +case 5:n=p.f+4 +if(n>p.e)A.r(A.cb(o)) +p.f=n +m=p.a +n-=4 +s=(m[n]|m[n+1]<<8|m[n+2]<<16|m[n+3]<<24)>>>0 +n=p.f +m=n+s +if(m>p.e)A.r(A.cb(o)) +r=B.M.cT(p.a,n,m) +p.f+=s +return r +case 6:return p.aOs() +case 7:return p.aOn() +case 8:return p.aOl() +case 9:return p.aOA() +case 10:return p.aOv() +case 11:return p.aOw() +case 12:return p.aOp() +default:q=p.d.aac(b) +if(q==null)throw A.c(A.h2("Cannot read, unknown typeId: "+A.i(b)+". Did you forget to register an adapter?")) +return q.a.hJ(0,p)}}, +i3(a){return this.hJ(a,null)}} +A.Yr.prototype={ +bU(a){var s,r=this,q=r.d,p=(q+a)*2-1 +p|=B.f.dr(p,1) +p|=p>>>2 +p|=p>>>4 +p|=p>>>8 +s=new Uint8Array(((p|p>>>16)>>>0)+1) +B.M.di(s,0,q,r.b) +r.b=s +r.c=null}, +NR(a){var s,r=this +A.bi(a,null) +if(r.b.length-r.d<8)r.bU(8) +s=r.c +if(s==null)s=r.c=A.lq(r.b.buffer,0,null) +s.setFloat64(r.d,a,!0) +r.d+=8}, +aep(a,b){var s,r,q,p,o,n=this +A.bi(a,null) +s=B.aV.cV(a) +if(b){r=s.length +A.bi(r,null) +if(n.b.length-n.d<4)n.bU(4) +q=n.b +p=n.d +q[p]=r +q[p+1]=r>>>8 +q[p+2]=r>>>16 +q[p+3]=r>>>24 +n.d=p+4}A.bi(s,null) +o=s.length +if(n.b.length-n.d>>8 +r[q+2]=s>>>16 +r[q+3]=s>>>24 +o.d=q+4}A.bi(a,null) +p=a.length +if(o.b.length-o.d>>8 +q[p+2]=r>>>16 +q[p+3]=r>>>24 +p+=4 +n.d=p +if(q.length-p>>8 +r[q+2]=s>>>16 +r[q+3]=s>>>24 +j.d=q+4 +p=t.zz.a(a).a +s=p.length +A.bi(s,i) +if(j.b.length-j.d<1)j.bU(1) +j.b[j.d++]=s +s=new A.i2(p) +A.bi(s,i) +o=s.gt(s) +if(j.b.length-j.d")),r=r.c;s.v();){q=s.d +if(q==null)q=r.a(q) +q=q.gn6(q) +if(j.b.length-j.d<1)j.bU(1) +j.b[j.d++]=1 +n=B.aV.cV(q) +q=n.length +if(j.b.length-j.d<1)j.bU(1) +m=j.b +l=j.d +k=l+1 +j.d=k +m[l]=q +if(m.length-k>>0}, +gt(a){return this.e}} +A.wo.prototype={ +gt(a){var s +if(!this.f)A.r(A.h2("Box has already been closed.")) +s=this.e +s===$&&A.b() +return s.c.e}, +aq(a,b){var s +if(!this.f)A.r(A.h2("Box has already been closed.")) +s=this.e +s===$&&A.b() +s=s.c.uy(b) +return(s==null?null:s.b)!=null}, +U7(){var s=0,r=A.y(t.H),q,p=this +var $async$U7=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:if(!p.f)A.r(A.h2("Box has already been closed.")) +p.d.gamr() +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$U7,r)}, +acw(){var s=this.e +s===$&&A.b() +if(this.c.$2(s.c.e,s.e))return this.U7() +return A.cR(null,t.H)}, +ah(a){var s=0,r=A.y(t.H),q,p=this,o,n +var $async$ah=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:if(!p.f){s=1 +break}p.f=!1 +o=p.e +o===$&&A.b() +s=3 +return A.t(o.b.a.ah(0),$async$ah) +case 3:o=p.b +n=p.a.toLowerCase() +o.c.E(0,n) +o.b.E(0,n) +s=4 +return A.t(p.d.ah(0),$async$ah) +case 4:case 1:return A.w(q,r)}}) +return A.x($async$ah,r)}, +$iII:1} +A.Yy.prototype={ +lN(a,b){var s,r +if(!this.f)A.r(A.h2("Box has already been closed.")) +s=this.e +s===$&&A.b() +s=s.c.uy(b) +r=s==null?null:s.b +if(r!=null)return this.$ti.h("1?").a(r.b) +else return null}, +gWa(){return!1}} +A.awE.prototype={ +tR(a){this.a.F(0,new A.IJ(a.a,a.b))}} +A.a3j.prototype={ +gt(a){return this.c.e}, +aq(a,b){var s=this.c.uy(b) +return(s==null?null:s.b)!=null}, +VQ(a,b,c,d){var s,r,q=this,p=b.c,o=b.a +if(!p){if(A.j2(o)&&o>q.f)q.f=o +s=c?b.aPJ():b +r=q.c.fB(0,o,s)}else r=q.c.A5(0,o) +s=r!=null +if(s)++q.e +if(d)p=!p||s +else p=!1 +if(p)q.b.tR(b) +return r}, +xy(a,b){return this.VQ(a,b,!1,!0)}, +abc(a,b,c){return this.VQ(a,b,!1,c)}, +aLc(a,b,c){return this.VQ(a,b,c,!0)}} +A.D7.prototype={ +lN(a,b){return this.af4(0,b,this.$ti.h("1?"))}, +af4(a,b,c){var s=0,r=A.y(c),q,p=this,o,n,m +var $async$lN=A.u(function(d,e){if(d===1)return A.v(e,r) +while(true)switch(s){case 0:if(!p.f)A.r(A.h2("Box has already been closed.")) +o=p.e +o===$&&A.b() +o=o.c.uy(b) +n=o==null?null:o.b +s=n!=null?3:5 +break +case 3:s=6 +return A.t(p.d.jl(0,n),$async$lN) +case 6:m=e +q=p.$ti.h("1?").a(m) +s=1 +break +s=4 +break +case 5:q=null +s=1 +break +case 4:case 1:return A.w(q,r)}}) +return A.x($async$lN,r)}, +Gc(a){return this.aOh(a)}, +aOh(a){var s=0,r=A.y(t.H),q,p=this,o,n,m,l,k,j +var $async$Gc=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:if(!p.f)A.r(A.h2("Box has already been closed.")) +o=A.a([],t.EN) +for(n=A.ie(a,a.r,A.l(a).c);n.v();){m=n.d +o.push(new A.m_(m,a.i(0,m),!1,!1,null,-1)) +if(A.j2(m)){l=p.e +l===$&&A.b() +if(m>l.f)l.f=m}}if(o.length===0){s=1 +break}s=3 +return A.t(p.d.BL(o),$async$Gc) +case 3:for(n=o.length,k=0;k"))}, +ayH(a2,a3,a4,a5,a6,a7,a8,a9,b0,b1,b2){var s=0,r=A.y(b2),q,p=2,o,n=[],m=this,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1 +var $async$z7=A.u(function(b3,b4){if(b3===1){o=b4 +s=p}while(true)switch(s){case 0:a2=a2 +a2=a2.toLowerCase() +g=m.b +s=g.aq(0,a2.toLowerCase())?3:5 +break +case 3:g=a2 +q=b1.h("D6<0>").a(m.a1E(g,!0,b1)) +s=1 +break +s=4 +break +case 5:f=m.c +s=f.aq(0,a2)?6:7 +break +case 6:g=f.i(0,a2) +s=8 +return A.t(t.L0.b(g)?g:A.kU(g,t.z),$async$z7) +case 8:g=a2 +q=b1.h("D6<0>").a(m.a1E(g,!0,b1)) +s=1 +break +case 7:l=new A.aD(new A.a7($.ac,t.LR),t.zh) +f.n(0,a2,l.a) +k=null +p=10 +j=null +e=m.d +if(e==null)e=$.bAP() +d=a2 +c=m.f +s=13 +return A.t(e.FZ(0,d,c,!0,a4,b0),$async$z7) +case 13:j=b4 +e=a2 +d=j +b=new A.D7(e,m,a6,d,b1.h("D7<0>")) +b.e=A.bJq(b,new A.awE(new A.lI(null,null,t.Mx)),a5,b1) +k=b +e=k +d=e.d +c=e.b +a=e.e +a===$&&A.b() +s=14 +return A.t(d.Fo(0,c,a,e.gWa()),$async$z7) +case 14:g.n(0,a2,k) +J.bpr(l) +g=k +q=g +n=[1] +s=11 +break +n.push(12) +s=11 +break +case 10:p=9 +a1=o +i=A.ak(a1) +h=A.aJ(a1) +g=k +if(g!=null)J.I1(g) +l.fc(i,h) +throw a1 +n.push(12) +s=11 +break +case 9:n=[2] +case 11:p=2 +f.E(0,a2) +s=n.pop() +break +case 12:case 4:case 1:return A.w(q,r) +case 2:return A.v(o,r)}}) +return A.x($async$z7,r)}, +MX(a,b,c){return this.aNE(a,b,c,c.h("D6<0>"))}, +aNE(a,b,c,d){var s=0,r=A.y(d),q,p=this,o +var $async$MX=A.u(function(e,f){if(e===1)return A.v(f,r) +while(true)switch(s){case 0:o=c.h("D6<0>") +s=3 +return A.t(p.z7(a,!0,b,A.bUm(),A.bUl(),!0,null,null,null,c),$async$MX) +case 3:q=o.a(f) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$MX,r)}, +a1E(a,b,c){var s,r,q=a.toLowerCase(),p=this.b.i(0,q) +if(p!=null){s=p.gWa() +if(s===b&&A.cs(A.l(p).c)===A.cs(c))return c.h("II<0>").a(p) +else{r=p instanceof A.D7?"LazyBox<"+A.cs(p.$ti.c).l(0)+">":"Box<"+A.cs(A.l(p).c).l(0)+">" +throw A.c(A.h2('The box "'+q+'" is already open and of type '+r+"."))}}else throw A.c(A.h2("Box not found. Did you forget to call Hive.openBox()?"))}} +A.a2A.prototype={} +A.CI.prototype={ +gzK(){var s,r=this,q=r.e +if(q==null){q=r.a +s=r.c.b.i(0,q.toLowerCase()) +if(s==null)throw A.c(A.h2('To use this list, you have to open the box "'+q+'" first.')) +else if(!(s instanceof A.Yy))throw A.c(A.h2('The box "'+q+'" is a lazy box. You can only use HiveLists with normal boxes.')) +else r.e=s +q=s}return q}, +gdc(){var s,r,q,p,o,n,m,l,k,j,i=this +if(i.r)throw A.c(A.h2("HiveList has already been disposed.")) +if(i.f){s=A.a([],i.$ti.h("H<1>")) +for(r=i.d,q=r.length,p=0;p")) +for(q=i.b,m=q.length,r=r.c,p=0;p").V(r.z[1]),s=new A.bT(J.al(s.a),s.b,r.h("bT<1,2>")),q=J.hC(a),r=r.z[1],p=null;s.v();){o=s.a +n=o==null?r.a(o):o +o=n.$ti.c +if(q.gfD(a)===A.cs(o))return n +if(o.b(a)&&p==null)p=n}return p}, +aac(a){return this.a.i(0,a)}, +Nk(a,b,c){var s,r +if(A.cs(c)===B.pR||A.cs(c)===B.Pk)A.t4("Registering type adapters for dynamic type is must be avoided, otherwise all the write requests to Hive will be handled by given adapter. Please explicitly provide adapter type on registerAdapter method to avoid this kind of issues. For example if you want to register MyTypeAdapter for MyType class you can call like this: registerAdapter(MyTypeAdapter())") +s=a.gBE() +if(!b){if(s>223)throw A.c(A.h2("TypeId "+s+" not allowed.")) +s+=32 +if(this.a.i(0,s)!=null){r=A.h2("There is already a TypeAdapter for typeId "+(s-32)+".") +throw A.c(r)}}this.a.n(0,s,new A.NP(a,s,c.h("NP<0>")))}, +Xh(a,b){return this.Nk(a,!1,b)}, +VZ(a){if(a>223)throw A.c(A.h2("TypeId "+a+" not allowed.")) +a+=32 +return this.a.i(0,a)!=null}} +A.a0O.prototype={ +gO(a){return B.b.gO(this.gdc())}, +gX(a){return B.b.gX(this.gdc())}, +gt(a){return this.gdc().length}, +U(a,b){return B.b.U(this.gdc(),b)}, +i(a,b){return this.gdc()[b]}, +fa(a,b){return B.b.fa(this.gdc(),b)}, +kl(a,b){var s=this.gdc() +return new A.iz(s,A.ab(s).h("@<1>").V(b).h("iz<1,2>"))}, +p(a,b){return B.b.p(this.gdc(),b)}, +cn(a,b){return this.gdc()[b]}, +xp(a,b,c){return B.b.xp(this.gdc(),b,c)}, +al(a,b){return B.b.al(this.gdc(),b)}, +BZ(a,b,c){var s=this.gdc() +A.dJ(b,c,s.length,null,null) +return A.fQ(s,b,c,A.ab(s).c)}, +h3(a,b,c){return B.b.h3(this.gdc(),this.$ti.c.a(b),c)}, +eZ(a,b){return this.h3(a,b,0)}, +xw(a,b,c){return B.b.xw(this.gdc(),b,c)}, +xv(a,b){return this.xw(a,b,0)}, +gak(a){return this.gdc().length===0}, +gd2(a){return this.gdc().length!==0}, +gam(a){var s=this.gdc() +return new J.cI(s,s.length,A.ab(s).h("cI<1>"))}, +ck(a,b){return B.b.ck(this.gdc(),b)}, +q4(a){return this.ck(a,"")}, +q5(a,b,c){return B.b.q5(this.gdc(),b,c)}, +ik(a,b,c){var s=this.gdc() +return new A.ad(s,b,A.ab(s).h("@<1>").V(c).h("ad<1,2>"))}, +gaV(a){return B.b.gaV(this.gdc())}, +lX(a,b){var s=this.gdc() +return A.fQ(s,b,null,A.ab(s).c)}, +cT(a,b,c){return B.b.cT(this.gdc(),b,c)}, +fH(a,b){return this.cT(a,b,null)}, +qa(a,b){var s=this.gdc() +return A.fQ(s,0,A.fu(b,"count",t.S),A.ab(s).c)}, +hn(a,b){var s=this.gdc(),r=A.ab(s) +return b?A.a(s.slice(0),r):J.m1(s.slice(0),r.c)}, +fO(a){return this.hn(a,!0)}, +kI(a){var s=this.gdc() +return A.qK(s,A.ab(s).c)}, +jw(a,b){var s=this.gdc() +return new A.ba(s,b,A.ab(s).h("ba<1>"))}, +NQ(a,b){return new A.fb(this.gdc(),b.h("fb<0>"))}} +A.a2Z.prototype={ +gt(a){return this.e}, +fB(a,a0,a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c=this,b=c.uy(a0) +if(b!=null){s=b.b +b.b=a1 +return s}r=c.b +q=0 +while(!0){if(!(r.ac8()&&q<11))break;++q}p=c.d +if(q>=p){c.d=p+1 +q=p}r=q+1 +o=c.$ti +n=A.aX(r,null,!1,o.h("vD<1,2>?")) +r=A.aX(r,0,!1,t.S) +m=new A.vD(a0,a1,n,r,o.h("@<1>").V(o.z[1]).h("vD<1,2>")) +l=c.a +for(k=c.d-1,o=c.c;k>=0;--k){for(;!0;l=j){j=l.c[k] +if(j!=null){i=j.a +i.toString +i=o.$2(a0,i)<0}else i=!0 +if(i)break}if(k>q){j=l.c[k] +if(j!=null){i=j.d +i[k]=i[k]+1}continue}if(k===0)r[0]=1 +else{i=k-1 +h=l.c[i] +g=0 +while(!0){if(h!=null){f=h.a +f.toString +f=o.$2(a0,f)>=0}else f=!1 +if(!f)break +g+=h.d[i] +h=h.c[i]}for(e=k;e<=q;++e)r[e]=r[e]+g +r[k]=r[k]+1}i=l.c +n[k]=i[k] +i[k]=m}for(d=1;d<=q;++d){j=n[d] +if(j!=null){o=j.d +o[d]=o[d]-(r[d]-1)}}++c.e +return null}, +A5(a,b){var s,r,q,p,o,n,m,l,k,j=this,i=j.uy(b) +if(i==null)return null +s=j.a +for(r=j.d-1,q=i.c,p=q.length-1,o=j.c,n=i.d,m=s;r>=0;--r){for(;!0;m=l){l=m.c[r] +if(l!=null){k=l.a +k.toString +k=o.$2(b,k)<=0}else k=!0 +if(k)break}k=m.c +if(r>p){l=k[r] +if(l!=null){k=l.d +k[r]=k[r]-1}}else{l=q[r] +k[r]=l +if(l!=null){k=l.d +k[r]=k[r]+(n[r]-1)}}}q=j.d +o=q-1 +if(p===o&&q>1&&s.c[p]==null)j.d=o;--j.e +return i.b}, +uy(a){var s,r,q,p,o,n=this.a +for(s=this.d-1,r=this.c,q=null;s>=0;--s){q=n.c[s] +while(!0){if(q!=null){p=q.a +p.toString +p=r.$2(a,p)>0}else p=!1 +if(!p)break +o=q.c[s] +n=q +q=o}}if(q!=null){p=q.a +p.toString +p=J.j(r.$2(a,p),0) +r=p}else r=!1 +if(r)return q +return null}, +asc(a){var s,r,q,p +A.bLl(a,this,null,null) +s=this.a +for(r=this.d-1,q=null;r>=0;--r){q=s.c[r] +while(!0){if(!(q!=null&&a>=q.d[r]))break +a-=q.d[r] +p=q.c[r] +s=q +q=p}}q.toString +return q}} +A.vD.prototype={} +A.ai7.prototype={ +v(){var s=this.a.c[0] +this.a=s +return s!=null}} +A.aic.prototype={ +gG(a){var s=this.a.a +s.toString +return s}} +A.Sv.prototype={ +gam(a){var s=this.$ti +return new A.aic(this.a,s.h("@<1>").V(s.z[1]).h("aic<1,2>"))}} +A.beA.prototype={ +$1(a){return a.a.$0()}, +$S:239} +A.a2C.prototype={ +bI(a){return A.bP6(this)}} +A.ahA.prototype={} +A.apB.prototype={ +bZ(a,b){this.jS$=!1 +this.ajO(0,b)}, +ca(){this.jS$=!1 +this.ahy()}, +aO(){var s,r,q=this,p=q.jS$!==!0||q.tw$.fa(0,new A.beA()) +q.jS$=null +q.tw$.ab(0) +if(!p){r=q.pS$ +r.toString +return r}r=q.jR$ +q.ib$=r.b===0?null:r.gO(r) +$.bb=q +try{q.pS$=q.ahx()}finally{q.jS$=null +A.bmT(q) +$.bb=null +r=q.h_$ +if(r!=null&&!r.gak(r)){for(r=q.h_$,s=r.gX(r);s!=null;s=s.gBi())s.a.m() +q.h_$=null}}r=q.pS$ +r.toString +return r}, +aj(a){return this.Zq(null,a)}, +kJ(){var s,r,q,p,o,n,m,l=null +this.ahz() +p=this.jR$ +if(!p.gak(p))for(s=p.gX(p),p=t.f6;s!=null;s=s.gBi())try{s.a.m()}catch(o){r=A.ak(o) +q=A.aJ(o) +n=A.p(s).l(0) +m=$.jB() +if(m!=null)m.$1(new A.cg(r,q,"hooks library",new A.hI("while disposing "+n,!1,!0,l,l,l,!1,l,B.bq,B.aW,"",!0,!1,l,B.eh,p),l,!1))}}, +fd(){var s,r,q,p,o,n,m,l,k,j=null +for(p=this.jR$,p=A.bmp(p,p.$ti.c),o=t.f6,n=p.$ti.c;p.v();){m=p.c +s=m==null?n.a(m):m +try{s.toString}catch(l){r=A.ak(l) +q=A.aJ(l) +m=A.p(s).l(0) +k=$.jB() +if(k!=null)k.$1(new A.cg(r,q,"hooks library",new A.hI("while deactivating "+m,!1,!0,j,j,j,!1,j,B.bq,B.aW,"",!0,!1,j,B.eh,o),j,!1))}}this.ajL()}} +A.bha.prototype={ +$1(a){return a.aBL("GET",this.a,this.b)}, +$S:647} +A.Yi.prototype={ +Jx(a,b,c,d,e){return this.aBM(a,b,c,d,e)}, +aBL(a,b,c){return this.Jx(a,b,c,null,null)}, +aBM(a,b,c,d,e){var s=0,r=A.y(t.Wd),q,p=this,o,n +var $async$Jx=A.u(function(f,g){if(f===1)return A.v(g,r) +while(true)switch(s){case 0:o=A.btM(a,b) +n=A +s=3 +return A.t(p.kc(0,o),$async$Jx) +case 3:q=n.aRz(g) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Jx,r)}, +$iax1:1} +A.Yj.prototype={ +Vi(){if(this.w)throw A.c(A.R("Can't finalize a finalized Request.")) +this.w=!0 +return B.Rp}, +l(a){return this.a+" "+this.b.l(0)}} +A.atU.prototype={ +$2(a,b){return a.toLowerCase()===b.toLowerCase()}, +$S:254} +A.atV.prototype={ +$1(a){return B.c.gu(a.toLowerCase())}, +$S:133} +A.atW.prototype={ +a_c(a,b,c,d,e,f,g){var s=this.b +if(s<100)throw A.c(A.bZ("Invalid status code "+s+".",null))}} +A.IK.prototype={ +kc(a,b){return this.age(0,b)}, +age(a,b){var s=0,r=A.y(t.ZG),q,p=2,o,n=[],m=this,l,k,j,i,h,g,f +var $async$kc=A.u(function(c,d){if(c===1){o=d +s=p}while(true)switch(s){case 0:if(m.c)throw A.c(A.bFR("HTTP request failed. Client is already closed.",b.b)) +b.aho() +s=3 +return A.t(new A.Bi(A.blH(b.y,t.Cm)).adH(),$async$kc) +case 3:j=d +l=new self.XMLHttpRequest() +i=m.a +i.F(0,l) +h=l +h.open(b.a,b.b.l(0),!0) +h.responseType="arraybuffer" +h.withCredentials=!1 +for(h=b.r,h=h.gdX(h),h=h.gam(h);h.v();){g=h.gG(h) +l.setRequestHeader(g.a,g.b)}k=new A.aD(new A.a7($.ac,t.EW),t.FM) +h=t.ba +g=new A.Gn(l,"load",!1,h) +f=t.H +g.gO(g).be(new A.auI(l,k,b),f) +h=new A.Gn(l,"error",!1,h) +h.gO(h).be(new A.auJ(k,b),f) +l.send(j) +p=4 +s=7 +return A.t(k.a,$async$kc) +case 7:h=d +q=h +n=[1] +s=5 +break +n.push(6) +s=5 +break +case 4:n=[2] +case 5:p=2 +i.E(0,l) +s=n.pop() +break +case 6:case 1:return A.w(q,r) +case 2:return A.v(o,r)}}) +return A.x($async$kc,r)}, +ah(a){var s,r,q,p +this.c=!0 +for(s=this.a,r=A.dS(s,s.r,A.l(s).c),q=r.$ti.c;r.v();){p=r.d +if(p==null)p=q.a(p) +p.abort()}s.ab(0)}} +A.auI.prototype={ +$1(a){var s,r,q,p,o,n,m=this,l=m.a,k=A.bxi(l).i(0,"content-length") +if(k!=null){s=$.bCt() +s=!s.b.test(k)}else s=!1 +if(s){m.b.kn(new A.Bx("Invalid content-length header ["+A.i(k)+"].",m.c.b)) +return}r=A.eO(t.pI.a(l.response),0,null) +s=A.blH(r,t.Cm) +q=l.status +p=r.length +o=m.c +n=A.bxi(l) +l=l.statusText +s=new A.F4(A.bYD(new A.Bi(s)),o,q,l,p,n,!1,!0) +s.a_c(q,p,n,!1,!0,l,o) +m.b.cU(0,s)}, +$S:23} +A.auJ.prototype={ +$1(a){this.a.fc(new A.Bx("XMLHttpRequest error.",this.b.b),A.ik())}, +$S:23} +A.Bi.prototype={ +adH(){var s=new A.a7($.ac,t.Qy),r=new A.aD(s,t.gI),q=new A.QN(new A.avc(r),new Uint8Array(1024)) +this.c4(q.gjH(q),!0,q.gdV(q),r.gKO()) +return s}} +A.avc.prototype={ +$1(a){return this.a.cU(0,new Uint8Array(A.mI(a)))}, +$S:136} +A.Bx.prototype={ +l(a){var s=this.b.l(0) +return"ClientException: "+this.a+", uri="+s}, +$icv:1} +A.aRx.prototype={} +A.El.prototype={} +A.F4.prototype={} +A.IS.prototype={} +A.avM.prototype={ +$1(a){return a.toLowerCase()}, +$S:18} +A.M2.prototype={ +l(a){var s=new A.d_(""),r=""+this.a +s.a=r +r+="/" +s.a=r +s.a=r+this.b +J.it(this.c.a,new A.aKe(s)) +r=s.a +return r.charCodeAt(0)==0?r:r}} +A.aKc.prototype={ +$0(){var s,r,q,p,o,n,m,l,k,j,i=A.buq(this.a),h=$.bE_() +i.yn(h) +s=$.bDW() +i.v8(s) +r=i.gB0().i(0,0) +r.toString +i.v8("/") +i.v8(s) +q=i.gB0().i(0,0) +q.toString +i.yn(h) +p=t.N +o=A.I(p,p) +p=i.b +while(!0){n=i.d=B.c.r2(";",p,i.c) +m=i.e=i.c +l=n!=null +n=l?i.e=i.c=n.gcg(n):m +if(!l)break +n=i.d=h.r2(0,p,n) +i.e=i.c +if(n!=null)i.e=i.c=n.gcg(n) +i.v8(s) +if(i.c!==i.e)i.d=null +n=i.d.i(0,0) +n.toString +i.v8("=") +m=i.d=s.r2(0,p,i.c) +k=i.e=i.c +l=m!=null +if(l){m=i.e=i.c=m.gcg(m) +k=m}else m=k +if(l){if(m!==k)i.d=null +m=i.d.i(0,0) +m.toString +j=m}else j=A.bUJ(i) +m=i.d=h.r2(0,p,i.c) +i.e=i.c +if(m!=null)i.e=i.c=m.gcg(m) +o.n(0,n,j)}i.a9Z() +return A.bl2(r,q,o)}, +$S:648} +A.aKe.prototype={ +$2(a,b){var s,r,q=this.a +q.a+="; "+a+"=" +s=$.bDN() +s=s.b.test(b) +r=q.a +if(s){q.a=r+'"' +s=q.a+=A.bnQ(b,$.bCu(),new A.aKd(),null) +q.a=s+'"'}else q.a=r+b}, +$S:184} +A.aKd.prototype={ +$1(a){return"\\"+A.i(a.i(0,0))}, +$S:112} +A.bgH.prototype={ +$1(a){var s=a.i(0,1) +s.toString +return s}, +$S:112} +A.a6H.prototype={} +A.qS.prototype={ +sW5(a){var s=this.a,r=this.$ti +this.sj(0,new A.jl(a,s.b,s.c,r.h("@<1>").V(r.z[1]).h("jl<1,2>")))}, +shz(a,b){var s=this.a,r=this.$ti +this.sj(0,new A.jl(s.a,b,s.c,r.h("@<1>").V(r.z[1]).h("jl<1,2>")))}, +sj(a,b){if(J.bjc(this.a)!==b.gaP(b))this.vA(b.gaP(b)) +this.w8(0,b)}, +Kw(a,b){var s=this,r=s.a.a,q=s.$ti +s.sj(0,new A.jl(B.b.U(r==null?A.a([],s.$ti.h("H<2>")):r,a),null,b,q.h("@<1>").V(q.z[1]).h("jl<1,2>")))}, +aPh(){this.shz(0,null)}, +jp(a){var s=this.$ti +this.sj(0,new A.jl(null,null,this.z,s.h("@<1>").V(s.z[1]).h("jl<1,2>")))}, +vA(a){var s=this.w +if(s.a.length===0)return +B.b.al(A.hl(s,!0,t.KT),new A.aMZ(this,a))}, +acd(a){var s=this.x,r=s==null?null:s.a.length===0 +if(r!==!1)return +s.toString +B.b.al(A.hl(s,!0,this.$ti.h("~(1)")),new A.aMY(this,a))}, +m(){this.x=this.w=null +this.eK()}} +A.aMZ.prototype={ +$1(a){if(this.a.w.p(0,a))a.$1(this.b)}, +$S:649} +A.aMY.prototype={ +$1(a){if(this.a.x.p(0,a))a.$1(this.b)}, +$S(){return this.a.$ti.h("~(~(1))")}} +A.jl.prototype={ +gaP(a){var s=this +if(s.gRj()&&s.c!=null&&s.b==null)return B.JN +if(s.gRj()&&s.c==null)return B.aop +if(s.gIR()==null&&s.b==null)return B.JM +if(s.gRj()&&s.c!=null&&s.b!=null)return B.aos +if(s.gIR()!=null&&s.gIR()===0)return B.aoq +else return B.aor}, +l(a){return"PagingState(itemList: \u2524"+A.i(this.a)+"\u251c, error: "+A.i(this.b)+", nextPageKey: "+A.i(this.c)+")"}, +k(a,b){var s,r,q=this +if(b==null)return!1 +if(q===b)return!0 +if(b instanceof A.jl){s=b.a +r=q.a +s=(s==null?r==null:s===r)&&J.j(b.b,q.b)&&b.c==q.c}else s=!1 +return s}, +gu(a){return A.X(J.T(this.a),J.T(this.b),J.T(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)}, +gIR(){var s=this.a +return s==null?null:s.length}, +gRj(){var s=this.gIR() +return s!=null&&s>0}} +A.lu.prototype={ +J(){return"PagingStatus."+this.b}} +A.XO.prototype={} +A.asF.prototype={ +$2(a,b){if(b===this.a)return this.b.$1(a) +return this.c.$2(a,b)}, +$S:28} +A.asG.prototype={ +$2(a,b){return b}, +$S:249} +A.Ly.prototype={ +a8(){return new A.Sz(B.m)}} +A.Sz.prototype={ +aX(){var s=this +s.b9() +s.a.c.P(0,s.gQU()) +s.a2g()}, +b1(a){var s,r,q=this +q.bh(a) +s=a.c +if(q.a.c!==s){r=q.gQU() +s.H(0,r) +q.a.c.P(0,r)}}, +m(){this.a.c.H(0,this.gQU()) +this.b0()}, +a2g(){this.a.d.$0()}, +A(a){return this.a.e}} +A.KG.prototype={ +A(a){return new A.b4(B.jm,A.eH(this.c,null,null),null)}} +A.DA.prototype={ +A(a){var s=null +return A.jg(!1,s,!0,B.a55,s,!0,s,s,s,s,s,s,s,s,s,this.c,s,s,s,s,s,s,s)}} +A.DB.prototype={ +A(a){return B.a54}} +A.aMO.prototype={ +J(){return"PagedLayoutProtocol."+this.b}} +A.DJ.prototype={ +a8(){var s=this.$ti +return new A.T7(B.m,s.h("@<1>").V(s.z[1]).h("T7<1,2>"))}, +aMl(a,b,c,d){return this.e.$4(a,b,c,d)}, +aIK(a,b,c,d){return this.f.$4(a,b,c,d)}, +aGG(a,b,c,d){return this.r.$4(a,b,c,d)}} +A.T7.prototype={ +garw(){var s=this.a.d +return s.b}, +gaxx(){this.a.toString +return new A.b9e(this)}, +garx(){var s=this.a.d +return s.d}, +gaxz(){var s=this.a.d.e +return s==null?new A.b9f():s}, +gaxD(){var s=this.a.d +return s.f}, +A(a){var s=this,r=s.a.c +return new A.Ly(r,new A.b9k(s),A.bv8(new A.b9l(s),r,s.$ti.h("jl<1,2>")),null)}, +Pu(a,b,c){var s,r,q,p,o=this +if(!o.d){s=A.bfc(o.a.c) +r=o.a +r.toString +q=b===Math.max(0,s-3) +if(r.c.a.c!=null&&q){$.ap.y2$.push(new A.b9d(o)) +o.d=!0}}p=c[b] +return o.a.d.a.$3(a,p,b)}, +axy(a){return this.gaxx().$1(a)}} +A.b9e.prototype={ +$1(a){return new A.DA(this.a.a.c.gaPg(),null)}, +$S:652} +A.b9f.prototype={ +$1(a){return B.anf}, +$S:653} +A.b9k.prototype={ +$0(){var s,r=this.a,q=J.bjc(r.a.c.a) +if(q===B.JM){s=r.a.c +s.acd(s.z)}if(q===B.JN)r.d=!1}, +$S:0} +A.b9l.prototype={ +$3(a,b,c){var s,r,q,p=null,o=this.a,n=o.a.c.a.a +switch(b.gaP(b).a){case 3:s=o.a +r=s.aMl(a,new A.b9g(o,n),A.bfc(s.c),o.gaxz()) +break +case 0:s=o.a +q=A.bfc(s.c) +o.a.toString +r=s.aGG(a,new A.b9h(o,n),q,p) +break +case 2:r=new A.Gs(o.garx(),!1,o.a.x,p) +break +case 5:s=o.a +r=s.aIK(a,new A.b9i(o,n),A.bfc(s.c),new A.b9j(o)) +break +case 1:r=new A.Gs(o.gaxD(),!1,o.a.x,p) +break +default:r=new A.Gs(o.garw(),!1,o.a.x,p)}o.a.toString +return r}, +$S(){return this.a.$ti.h("d(G,jl<1,2>,d?)")}} +A.b9g.prototype={ +$2(a,b){var s=this.b +s.toString +return this.a.Pu(a,b,s)}, +$S:28} +A.b9h.prototype={ +$2(a,b){var s=this.b +s.toString +return this.a.Pu(a,b,s)}, +$S:28} +A.b9i.prototype={ +$2(a,b){var s=this.b +s.toString +return this.a.Pu(a,b,s)}, +$S:28} +A.b9j.prototype={ +$1(a){return this.a.axy(a)}, +$S:13} +A.b9d.prototype={ +$1(a){var s=this.a.a.c,r=s.a.c +r.toString +s.acd(r)}, +$S:5} +A.Gs.prototype={ +A(a){var s +if(this.e===B.oC){s=this.c.$1(a) +return new A.a9D(s,!1,null)}else{s=A.eH(this.c.$1(a),null,null) +return s}}} +A.ME.prototype={ +KC(a){var s=this,r=s.$ti +return new A.MG(s.p3,s.p4,s.R8,!0,!0,!0,!0,!0,!0,!1,null,r.h("@<1>").V(r.z[1]).h("MG<1,2>"))}} +A.MF.prototype={ +KC(a){var s=null,r=this.$ti +return new A.MH(this.p3,this.p4,s,!0,!0,!0,s,s,!1,s,r.h("@<1>").V(r.z[1]).h("MH<1,2>"))}} +A.MG.prototype={ +A(a){var s=this,r=s.$ti +return A.bte(s.d,new A.aMS(s),new A.aMT(s),B.oC,new A.aMU(s),s.c,!1,r.c,r.z[1])}} +A.aMS.prototype={ +$4(a,b,c,d){return A.bm8(!0,!0,!0,d,b,c,!0,new A.aMR(this.a))}, +$C:"$4", +$R:4, +$S:654} +A.aMR.prototype={ +$2(a,b){return A.aVp(b,this.a.e)}, +$S:178} +A.aMU.prototype={ +$4(a,b,c,d){return A.bm8(!0,!0,!0,d,b,c,!0,new A.aMP(this.a))}, +$C:"$4", +$R:4, +$S:251} +A.aMP.prototype={ +$2(a,b){return A.aVp(b,this.a.e)}, +$S:178} +A.aMT.prototype={ +$4(a,b,c,d){return A.bm8(!0,!0,!0,d,b,c,!0,new A.aMQ(this.a))}, +$C:"$4", +$R:4, +$S:251} +A.aMQ.prototype={ +$2(a,b){return A.aVp(b,this.a.e)}, +$S:178} +A.vn.prototype={ +A(a){var s=this,r=s.r,q=r==null?0:1 +return s.e.$2(s.d+q,s.aof(r))}, +aof(a){return A.bpU(!0,!0,!0,a,this.c,this.d,null)}} +A.MH.prototype={ +A(a){var s=this,r=s.$ti +return A.bte(s.d,new A.aMV(s),new A.aMW(s),B.oC,new A.aMX(s),s.c,!1,r.c,r.z[1])}, +Py(a,b,c){var s=A.bpU(!0,!0,!0,c,a,b,null),r=new A.mm(s,null) +return r}} +A.aMV.prototype={ +$4(a,b,c,d){return this.a.Py(b,c,d)}, +$C:"$4", +$R:4, +$S:657} +A.aMX.prototype={ +$4(a,b,c,d){return this.a.Py(b,c,d)}, +$C:"$4", +$R:4, +$S:252} +A.aMW.prototype={ +$4(a,b,c,d){return this.a.Py(b,c,d)}, +$C:"$4", +$R:4, +$S:252} +A.BS.prototype={ +l(a){return this.a}} +A.aHz.prototype={ +$1(a){return"default"}, +$S:18} +A.um.prototype={ +l(a){return this.a}} +A.hj.prototype={ +tD(a){var s,r,q,p=this,o=p.e +if(o==null){if(p.d==null){p.mf("yMMMMd") +p.mf("jms")}o=p.d +o.toString +o=p.a3T(o) +s=A.ab(o).h("da<1>") +s=p.e=A.a8(new A.da(o,s),!0,s.h("av.E")) +o=s}s=o.length +r=0 +q="" +for(;r=12&&s<24?1:0 +return n.b.gjN().CW[r] +case"c":return n.aJq(a) +case"d":return n.b.jD(B.c.eP(""+A.yM(a),l.length,m)) +case"D":q=A.aNV(A.E0(a),2,29,0,0,0,0,!1) +if(!A.j2(q))A.r(A.pQ(q)) +return n.b.jD(B.c.eP(""+A.bUf(A.kG(a),A.yM(a),A.kG(new A.dx(q,!1))===2),l.length,m)) +case"E":q=n.b +l=l.length>=4?q.gjN().y:q.gjN().Q +return l[B.f.aJ(A.a7n(a),7)] +case"G":p=A.E0(a)>0?1:0 +q=n.b +return l.length>=4?q.gjN().c[p]:q.gjN().b[p] +case"h":s=A.r_(a) +if(A.r_(a)>12)s-=12 +return n.b.jD(B.c.eP(""+(s===0?12:s),l.length,m)) +case"H":return n.b.jD(B.c.eP(""+A.r_(a),l.length,m)) +case"K":return n.b.jD(B.c.eP(""+B.f.aJ(A.r_(a),12),l.length,m)) +case"k":return n.b.jD(B.c.eP(""+(A.r_(a)===0?24:A.r_(a)),l.length,m)) +case"L":return n.aJr(a) +case"M":return n.aJo(a) +case"m":return n.b.jD(B.c.eP(""+A.aNQ(a),l.length,m)) +case"Q":return n.aJp(a) +case"S":return n.aJn(a) +case"s":return n.b.jD(B.c.eP(""+A.aNR(a),l.length,m)) +case"y":o=A.E0(a) +if(o<0)o=-o +l=l.length +q=n.b +return l===2?q.jD(B.c.eP(""+B.f.aJ(o,100),2,m)):q.jD(B.c.eP(""+o,l,m)) +default:return""}}, +aJo(a){var s=this.a.length,r=this.b +switch(s){case 5:return r.gjN().d[A.kG(a)-1] +case 4:return r.gjN().f[A.kG(a)-1] +case 3:return r.gjN().w[A.kG(a)-1] +default:return r.jD(B.c.eP(""+A.kG(a),s,"0"))}}, +aJn(a){var s=this.b,r=s.jD(B.c.eP(""+A.btu(a),3,"0")),q=this.a.length-3 +if(q>0)return r+s.jD(B.c.eP(""+0,q,"0")) +else return r}, +aJq(a){var s=this.b +switch(this.a.length){case 5:return s.gjN().ax[B.f.aJ(A.a7n(a),7)] +case 4:return s.gjN().z[B.f.aJ(A.a7n(a),7)] +case 3:return s.gjN().as[B.f.aJ(A.a7n(a),7)] +default:return s.jD(B.c.eP(""+A.yM(a),1,"0"))}}, +aJr(a){var s=this.a.length,r=this.b +switch(s){case 5:return r.gjN().e[A.kG(a)-1] +case 4:return r.gjN().r[A.kG(a)-1] +case 3:return r.gjN().x[A.kG(a)-1] +default:return r.jD(B.c.eP(""+A.kG(a),s,"0"))}}, +aJp(a){var s=B.e.au((A.kG(a)-1)/3),r=this.a.length,q=this.b +switch(r){case 4:return q.gjN().ch[s] +case 3:return q.gjN().ay[s] +default:return q.jD(B.c.eP(""+(s+1),r,"0"))}}} +A.aMn.prototype={ +tD(a){var s,r,q=this +if(isNaN(a))return q.fy.z +s=a==1/0||a==-1/0 +if(s){s=B.f.gcZ(a)?q.a:q.b +return s+q.fy.y}s=B.f.gcZ(a)?q.a:q.b +r=q.k2 +r.a+=s +s=Math.abs(a) +if(q.x)q.arL(s) +else q.QL(s) +s=r.a+=B.f.gcZ(a)?q.c:q.d +r.a="" +return s.charCodeAt(0)==0?s:s}, +arL(a){var s,r,q,p=this +if(a===0){p.QL(a) +p.a1z(0) +return}s=B.e.eC(Math.log(a)/$.boB()) +r=a/Math.pow(10,s) +q=p.z +if(q>1&&q>p.Q)for(;B.f.aJ(s,q)!==0;){r*=10;--s}else{q=p.Q +if(q<1){++s +r/=10}else{--q +s-=q +r*=Math.pow(10,q)}}p.QL(r) +p.a1z(s)}, +a1z(a){var s=this,r=s.fy,q=s.k2,p=q.a+=r.w +if(a<0){a=-a +q.a=p+r.r}else if(s.w)q.a=p+r.f +r=s.ch +p=B.f.l(a) +if(s.k4===0)q.a+=B.c.eP(p,r,"0") +else s.aCn(r,p)}, +a1s(a){var s +if(B.e.gcZ(a)&&!B.e.gcZ(Math.abs(a)))throw A.c(A.bZ("Internal error: expected positive number, got "+A.i(a),null)) +s=B.e.eC(a) +return s}, +aAI(a){if(a==1/0||a==-1/0)return $.biA() +else return B.e.bg(a)}, +QL(a1){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a=this,a0={} +a0.a=null +a0.b=a.at +a0.c=a.ay +s=a1==1/0||a1==-1/0 +if(s){a0.a=B.e.au(a1) +r=0 +q=0 +p=0}else{o=a.a1s(a1) +a0.a=o +n=a1-o +a0.d=n +if(B.e.au(n)!==0){a0.a=a1 +a0.d=0}new A.aMs(a0,a,a1).$0() +p=A.ep(Math.pow(10,a0.b)) +m=p*a.dx +l=B.e.au(a.aAI(a0.d*m)) +if(l>=m){a0.a=a0.a+1 +l-=m}else if(A.bt7(l)>A.bt7(B.f.au(a.a1s(a0.d*m))))a0.d=l/m +q=B.f.i9(l,p) +r=B.f.aJ(l,p)}o=a0.a +if(typeof o=="number"&&o>$.biA()){k=B.e.eV(Math.log(o)/$.boB())-$.bB_() +j=B.e.bg(Math.pow(10,k)) +if(j===0)j=Math.pow(10,k) +i=B.c.av("0",B.f.au(k)) +o=B.e.au(o/j)}else i="" +h=q===0?"":B.f.l(q) +g=a.awO(o) +f=g+(g.length===0?h:B.c.eP(h,a.dy,"0"))+i +e=f.length +if(a0.b>0)d=a0.c>0||r>0 +else d=!1 +if(e!==0||a.Q>0){f=B.c.av("0",a.Q-e)+f +e=f.length +for(s=a.k2,c=a.k4,b=0;bo))break +p=s}for(o=this.k2,r=this.k4,q=1;qs&&B.f.aJ(q-s,r.e)===1)r.k2.a+=r.fy.c}, +l(a){return"NumberFormat("+this.fx+", "+A.i(this.fr)+")"}} +A.aMr.prototype={ +$1(a){return this.a}, +$S:663} +A.aMq.prototype={ +$1(a){return a.Q}, +$S:664} +A.aMs.prototype={ +$0(){}, +$S:0} +A.a6r.prototype={} +A.aMo.prototype={ +axI(){var s,r,q,p,o,n,m,l,k,j=this,i=j.f +i.b=j.Jd() +s=j.az4() +i.d=j.Jd() +r=j.b +if(r.N6()===";"){++r.b +i.a=j.Jd() +for(q=s.length,p=r.a,o=p.length,n=0;n=o.a.length)return!1 +s=o.N6() +if(s==="'"){r=o.WU(2) +if(r.length===2&&r[1]==="'"){++o.b +a.a+="'"}else p.w=!p.w +return!0}if(p.w)a.a+=s +else switch(s){case"#":case"0":case",":case".":case";":return!1 +case"\xa4":a.a+=p.d +break +case"%":o=p.f +q=o.e +if(q!==1&&q!==100)throw A.c(B.xp) +o.e=100 +a.a+=p.a.d +break +case"\u2030":o=p.f +q=o.e +if(q!==1&&q!==1000)throw A.c(B.xp) +o.e=1000 +a.a+=p.a.x +break +default:a.a+=s}return!0}, +az4(){var s,r,q,p,o,n=this,m=new A.d_(""),l=n.b,k=l.a,j=k.length,i=!0 +while(!0){s=l.b +if(!(B.c.S(k,s,Math.min(s+1,j)).length!==0&&i))break +i=n.aNT(m)}l=n.z +if(l===0&&n.y>0&&n.x>=0){r=n.x +if(r===0)r=1 +n.Q=n.y-r +n.y=r-1 +l=n.z=1}q=n.x +if(!(q<0&&n.Q>0)){if(q>=0){j=n.y +j=qj+l}else j=!1 +j=j||n.as===0}else j=!0 +if(j)throw A.c(A.cn('Malformed pattern "'+k+'"',null,null)) +k=n.y +l=k+l +p=l+n.Q +j=n.f +s=q>=0 +o=s?p-q:0 +j.x=o +if(s){l-=q +j.y=l +if(l<0)j.y=0}l=j.w=(s?q:p)-k +if(j.ax){j.r=k+l +if(o===0&&l===0)j.w=1}l=Math.max(0,n.as) +j.Q=l +if(!n.r)j.z=l +j.as=q===0||q===p +l=m.a +return l.charCodeAt(0)==0?l:l}, +aNT(a){var s,r,q,p,o,n=this,m=null,l=n.b,k=l.N6() +switch(k){case"#":if(n.z>0)++n.Q +else ++n.y +s=n.as +if(s>=0&&n.x<0)n.as=s+1 +break +case"0":if(n.Q>0)throw A.c(A.cn('Unexpected "0" in pattern "'+l.a,m,m));++n.z +s=n.as +if(s>=0&&n.x<0)n.as=s+1 +break +case",":s=n.as +if(s>0){n.r=!0 +n.f.z=s}n.as=0 +break +case".":if(n.x>=0)throw A.c(A.cn('Multiple decimal separators in pattern "'+l.l(0)+'"',m,m)) +n.x=n.y+n.z+n.Q +break +case"E":a.a+=k +s=n.f +if(s.ax)throw A.c(A.cn('Multiple exponential symbols in pattern "'+l.l(0)+'"',m,m)) +s.ax=!0 +s.f=0;++l.b +if(l.N6()==="+"){a.a+=l.i3(0) +s.at=!0}for(r=l.a,q=r.length;p=l.b,o=p+1,p=B.c.S(r,p,Math.min(o,q)),p==="0";){l.b=o +a.a+=p;++s.f}if(n.y+n.z<1||s.f<1)throw A.c(A.cn('Malformed exponential pattern "'+l.l(0)+'"',m,m)) +return!1 +default:return!1}a.a+=k;++l.b +return!0}} +A.aYn.prototype={ +hJ(a,b){var s=this.WU(b) +this.b+=b +return s}, +i3(a){return this.hJ(a,1)}, +WU(a){var s=this.a,r=this.b +return B.c.S(s,r,Math.min(r+a,s.length))}, +N6(){return this.WU(1)}, +l(a){return this.a+" at "+this.b}} +A.FF.prototype={ +i(a,b){return A.j3(b)==="en_US"?this.b:this.a5X()}, +aq(a,b){if(A.j3(b)!=="en_US")this.a5X() +return!0}, +a5X(){throw A.c(new A.a3G("Locale data has not been initialized, call "+this.a+"."))}} +A.a3G.prototype={ +l(a){return"LocaleDataException: "+this.a}, +$icv:1} +A.nq.prototype={ +J(){return"PluralCase."+this.b}} +A.xU.prototype={ +k(a,b){if(b==null)return!1 +return b instanceof A.xU&&this.b===b.b}, +bO(a,b){return this.b-b.b}, +gu(a){return this.b}, +l(a){return this.a}, +$icD:1} +A.De.prototype={ +l(a){return"["+this.a.a+"] "+this.d+": "+this.b}} +A.Df.prototype={ +gaaw(){var s=this.b,r=s==null?null:s.a.length!==0,q=this.a +return r===!0?s.gaaw()+"."+q:q}, +gaM2(a){var s,r +if(this.b==null){s=this.c +s.toString +r=s}else{s=$.biy().c +s.toString +r=s}return r}, +q6(a,b){var s,r,q,p,o,n,m=this,l=a.b +if(l>=m.gaM2(m).b){if(l>=2000){s=A.ik() +r="autogenerated stack trace for "+a.l(0)+" "+b}else{r=null +s=null}q=$.ac +l=m.gaaw() +p=Date.now() +o=$.bsB +$.bsB=o+1 +n=new A.De(a,b,l,new A.dx(p,!1),o,r,s,q) +if(m.b==null)m.a42(n) +else $.biy().a42(n)}}, +a21(){if(this.b==null){var s=this.f +if(s==null)s=this.f=new A.o9(null,null,t.FH) +return new A.j_(s,A.l(s).h("j_<1>"))}else return $.biy().a21()}, +a42(a){var s=this.f +return s==null?null:s.F(0,a)}} +A.aIH.prototype={ +$0(){var s,r,q,p=this.a +if(B.c.cc(p,"."))A.r(A.bZ("name shouldn't start with a '.'",null)) +if(B.c.hT(p,"."))A.r(A.bZ("name shouldn't end with a '.'",null)) +s=B.c.vx(p,".") +if(s===-1)r=p!==""?A.aIG(""):null +else{r=A.aIG(B.c.S(p,0,s)) +p=B.c.cm(p,s+1)}q=new A.Df(p,r,A.I(t.N,t.JW)) +if(r==null)q.c=B.cH +else r.d.n(0,p,q) +return q}, +$S:665} +A.aMc.prototype={} +A.aMb.prototype={} +A.Xx.prototype={ +J(){return"AnimationDirection."+this.b}} +A.tG.prototype={ +a8(){return new A.RM(null,null,B.m)}} +A.RM.prototype={ +A(a){var s=this.f +s===$&&A.b() +if(s)return B.a1 +s=this.d +s===$&&A.b() +return new A.cY(s,!1,this.a.c,null)}, +aX(){var s,r,q,p,o=this,n=null +o.b9() +s=A.bx(B.A,n,o.a.d,0,n,1,n,o) +o.e=s +r=A.c5(o.a.f,s,n) +s=o.a.e===B.h6 +q=s?0:1 +p=s?1:0 +s=t.Y +o.d=new A.ax(r,new A.aR(q,p,s),s.h("ax")) +o.e.bS(0) +o.f=!1 +if(o.a.e===B.iP)o.d.a.f8(o.gTE())}, +b1(a){var s,r,q,p,o,n=this +n.bh(a) +s=a.c +r=n.a.c +if(A.p(s)===A.p(r)&&J.j(s.a,r.a))return +s=n.d +s===$&&A.b() +r=n.gTE() +s.a.ee(r) +s=n.e +s===$&&A.b() +s.e=n.a.d +s.sj(0,0) +s=n.e +q=A.c5(n.a.f,s,null) +s=n.a.e===B.h6 +p=s?0:1 +o=s?1:0 +s=t.Y +n.d=new A.ax(q,new A.aR(p,o,s),s.h("ax")) +n.e.bS(0) +n.f=!1 +if(n.a.e===B.iP)n.d.a.f8(r)}, +m(){var s=this,r=s.d +r===$&&A.b() +r.a.ee(s.gTE()) +r=s.e +r===$&&A.b() +r.m() +s.alM()}, +aFy(a){this.ad(new A.b5e(this,a))}, +$iaP:1} +A.b5e.prototype={ +$0(){var s=this.a +s.f=s.a.e===B.iP&&this.b===B.a9}, +$S:0} +A.W2.prototype={ +m(){var s=this,r=s.c3$ +if(r!=null)r.H(0,s.ghP()) +s.c3$=null +s.b0()}, +cf(){this.cW() +this.cO() +this.hQ()}} +A.Mx.prototype={ +a8(){return new A.ajM(B.m)}} +A.ajM.prototype={ +aX(){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d +this.b9() +s=this.a +r=s.c +q=s.d +p=s.e +o=s.f +n=s.r +m=s.w +l=s.x +k=s.y +j=s.z +i=s.Q +h=s.ax +g=s.as +f=s.at +e=s.ay +d=s.ch +this.e=A.bsa(e,!1,s.cx,s.cy,n,i,j,k,l,s.db,h,f,r,q,!1,p,m,o,d,g)}, +b1(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b=this +b.bh(a) +if(!a.c.k(0,b.a.c)){b.a.toString +b.d=null}s=b.a +r=s.c +q=s.d +p=b.d +o=p!=null +p=o?p.gTS():s.e +n=o?null:s.f +m=s.r +l=s.w +k=s.x +j=s.y +i=s.z +h=s.Q +g=s.ax +f=s.as +e=s.at +d=s.ay +c=s.ch +b.e=A.bsa(d,o,s.cx,s.cy,m,h,i,j,k,s.db,g,e,r,q,!1,p,l,n,c,f)}, +A(a){var s,r=this.a,q=r.as +r=r.at +s=this.e +s===$&&A.b() +return A.cZ(s.A(a),r,q)}} +A.Tb.prototype={ +J(){return"_PlaceholderType."+this.b}} +A.a2R.prototype={ +aKW(){var s=this,r=s.z +r===$&&A.b() +switch(r.a){case 0:return s.gavK() +case 1:return s.gazy() +case 2:return s.gazJ()}}, +A(a){var s,r,q=this,p=q.a,o=q.z +o===$&&A.b() +o=o===B.PG?q.gawH():null +s=q.aKW() +r=q.ax!=null?q.gaqZ():null +return A.bs8(q.e,q.w,q.x,r,!1,q.y,q.d,s,q.c,p,new A.bS(p,t.ll),o,!1,q.f,q.b)}, +a5n(a,b){var s=this +return A.fp(B.a7,A.a([new A.tG(a,s.cx,B.h6,s.cy,null),new A.tG(b,s.ch,B.iP,s.CW,null)],t.p),B.C,B.OG,null)}, +avL(a,b,c,d){if(c==null)return b +return this.D1(a,b)}, +azz(a,b,c,d){var s,r=this +if(c==null){s=r.ay +if(s.a!==B.B.a)return new A.tG(r.S6(a),s,B.h6,r.cy,null) +else return r.S6(a)}if(d&&!r.db)return r.D1(a,b) +return r.a5n(r.D1(a,b),r.S6(a))}, +azK(a,b,c,d){this.dx=d +this.dy=c!=null +return b}, +awI(a,b,c){var s,r=this +if(r.dy){if(r.dx)return r.D1(a,b) +return r.a5n(r.D1(a,b),r.Sa(a,null))}s=r.ay +if(s.a!==B.B.a)return new A.tG(r.Sa(a,c),s,B.h6,r.cy,null) +else return r.Sa(a,c)}, +D1(a,b){var s=this.Q +if(s!=null)return s.$2(a,b) +else return b}, +ar_(a,b,c){var s=this.ax +if(s==null)throw A.c(A.R("Try to build errorBuilder with errorBuilder null")) +return s.$3(a,b,c)}, +Sa(a,b){var s=this.at +if(s==null)throw A.c(A.R("Try to build progressIndicatorBuilder with progressIndicatorBuilder null")) +return s.$2(a,b)}, +S6(a){var s=null,r=this.as +if(r!=null)return r.$1(a) +return A.cQ(s,s,B.n,s,s,s,s,s,s,s,s)}, +aq6(){if(this.as!=null)return B.aCy +if(this.at!=null)return B.PG +return B.aCx}} +A.ys.prototype={ +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)s=b instanceof A.ys&&A.p(r)===A.p(b)&&r.a===b.a&&r.b===b.b&&r.c===b.c&&r.d===b.d&&r.e===b.e&&r.f==b.f +else s=!0 +return s}, +gu(a){var s=this +return B.c.gu(s.a)^B.c.gu(s.b)^B.c.gu(s.c)^B.c.gu(s.d)^B.c.gu(s.e)^J.T(s.f)}, +l(a){var s=this +return"PackageInfo(appName: "+s.a+", buildNumber: "+s.d+", packageName: "+s.b+", version: "+s.c+", buildSignature: "+s.e+", installerStore: "+A.i(s.f)+")"}} +A.aMI.prototype={ +aQv(a,b){var s=A.dR(a,0,null),r=A.bE("[^/]+\\.html.*",!0,!1,!1),q=A.bQ6(s),p=s.gdT(s),o=A.dR(q+A.eF(p,r,""),0,null).Xk().adg(0,"") +q=o.e +if(q.length>1)if(!B.c.hT(q,"/"))p=o.Fv("http")||o.Fv("https") +else p=!1 +else p=!1 +if(p)o=o.Np(0,B.c.S(q,0,B.c.vx(q,"/"))) +q=t.N +p=A.a8(o.gxS(),!0,q) +if(!!p.fixed$length)A.r(A.aa("removeWhere")) +B.b.pD(p,new A.aMJ(),!0) +q=A.a8(p,!0,q) +q.push("version.json") +return o.aOX(0,q,"cachebuster="+b)}, +jx(a){var s=0,r=A.y(t.BB),q,p=this,o,n,m,l,k,j +var $async$jx=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:l=Date.now() +s=3 +return A.t(A.bVh(p.aQv(self.window.document.baseURI,l)),$async$jx) +case 3:k=c +j=p.ast(k) +l=J.aj(j) +o=l.i(j,"app_name") +if(o==null)o="" +n=l.i(j,"version") +if(n==null)n="" +m=l.i(j,"build_number") +if(m==null)m="" +l=l.i(j,"package_name") +q=new A.MC(o,l==null?"":l,n,m,"",null) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$jx,r)}, +ast(a){var s,r +if(a.b===200)try{s=B.az.v1(0,A.bUH(J.b7(A.bQW(a.e).c.a,"charset")).ha(0,a.w),null) +return s}catch(r){return A.I(t.N,t.z)}else return A.I(t.N,t.z)}} +A.aMJ.prototype={ +$1(a){return a===""}, +$S:11} +A.aKu.prototype={ +jx(a){var s=0,r=A.y(t.BB),q,p,o,n,m,l,k,j +var $async$jx=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=3 +return A.t(B.amZ.VX("getAll",t.N,t.z),$async$jx) +case 3:j=c +j.toString +p=J.aj(j) +o=p.i(j,"appName") +if(o==null)o="" +n=p.i(j,"packageName") +if(n==null)n="" +m=p.i(j,"version") +if(m==null)m="" +l=p.i(j,"buildNumber") +if(l==null)l="" +k=p.i(j,"buildSignature") +if(k==null)k="" +q=new A.MC(o,n,m,l,k,A.af(p.i(j,"installerStore"))) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$jx,r)}} +A.MC.prototype={} +A.aMH.prototype={} +A.Zr.prototype={ +a7i(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p){var s +A.by1("absolute",A.a([b,c,d,e,f,g,h,i,j,k,l,m,n,o,p],t._m)) +s=this.a +s=s.k6(b)>0&&!s.vw(b) +if(s)return b +s=this.b +return this.abI(0,s==null?A.bgu():s,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p)}, +aF1(a,b){return this.a7i(a,b,null,null,null,null,null,null,null,null,null,null,null,null,null,null)}, +aIj(a){var s,r,q=A.p3(a,this.a) +q.Gk() +s=q.d +r=s.length +if(r===0){s=q.b +return s==null?".":s}if(r===1){s=q.b +return s==null?".":s}B.b.h5(s) +q.e.pop() +q.Gk() +return q.l(0)}, +abI(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q){var s=A.a([b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q],t._m) +A.by1("join",s) +return this.aLR(new A.fb(s,t.Ri))}, +Mk(a,b,c){return this.abI(a,b,c,null,null,null,null,null,null,null,null,null,null,null,null,null,null)}, +aLR(a){var s,r,q,p,o,n,m,l,k +for(s=a.gam(a),r=new A.jt(s,new A.axF(),a.$ti.h("jt")),q=this.a,p=!1,o=!1,n="";r.v();){m=s.gG(s) +if(q.vw(m)&&o){l=A.p3(m,q) +k=n.charCodeAt(0)==0?n:n +n=B.c.S(k,0,q.Bu(k,!0)) +l.b=n +if(q.FT(n))l.e[0]=q.gvX() +n=""+l.l(0)}else if(q.k6(m)>0){o=!q.vw(m) +n=""+m}else{if(!(m.length!==0&&q.Ub(m[0])))if(p)n+=q.gvX() +n+=m}p=q.FT(m)}return n.charCodeAt(0)==0?n:n}, +rL(a,b){var s=A.p3(b,this.a),r=s.d,q=A.ab(r).h("ba<1>") +q=A.a8(new A.ba(r,new A.axG(),q),!0,q.h("z.E")) +s.d=q +r=s.b +if(r!=null)B.b.fB(q,0,r) +return s.d}, +Wn(a,b){var s +if(!this.axv(b))return b +s=A.p3(b,this.a) +s.Wm(0) +return s.l(0)}, +axv(a){var s,r,q,p,o,n,m,l,k=this.a,j=k.k6(a) +if(j!==0){if(k===$.X6())for(s=0;s0)return o.Wn(0,a) +if(m.k6(a)<=0||m.vw(a))a=o.aF1(0,a) +if(m.k6(a)<=0&&m.k6(s)>0)throw A.c(A.bti(n+a+'" from "'+s+'".')) +r=A.p3(s,m) +r.Wm(0) +q=A.p3(a,m) +q.Wm(0) +l=r.d +if(l.length!==0&&J.j(l[0],"."))return q.l(0) +l=r.b +p=q.b +if(l!=p)l=l==null||p==null||!m.WT(l,p) +else l=!1 +if(l)return q.l(0) +while(!0){l=r.d +if(l.length!==0){p=q.d +l=p.length!==0&&m.WT(l[0],p[0])}else l=!1 +if(!l)break +B.b.k0(r.d,0) +B.b.k0(r.e,1) +B.b.k0(q.d,0) +B.b.k0(q.e,1)}l=r.d +if(l.length!==0&&J.j(l[0],".."))throw A.c(A.bti(n+a+'" from "'+s+'".')) +l=t.N +B.b.Fq(q.d,0,A.aX(r.d.length,"..",!1,l)) +p=q.e +p[0]="" +B.b.Fq(p,1,A.aX(r.d.length,m.gvX(),!1,l)) +m=q.d +l=m.length +if(l===0)return"." +if(l>1&&J.j(B.b.gX(m),".")){B.b.h5(q.d) +m=q.e +m.pop() +m.pop() +m.push("")}q.b="" +q.Gk() +return q.l(0)}, +adS(a){var s,r=this.a +if(r.k6(a)<=0)return r.ad2(a) +else{s=this.b +return r.To(this.Mk(0,s==null?A.bgu():s,a))}}, +X_(a){var s,r,q=this,p=A.bn2(a) +if(p.gfk()==="file"&&q.a===$.X5())return p.l(0) +else if(p.gfk()!=="file"&&p.gfk()!==""&&q.a!==$.X5())return p.l(0) +s=q.Wn(0,q.a.N5(A.bn2(p))) +r=q.aOI(s) +return q.rL(0,r).length>q.rL(0,s).length?s:r}} +A.axF.prototype={ +$1(a){return a!==""}, +$S:11} +A.axG.prototype={ +$1(a){return a.length!==0}, +$S:11} +A.bg_.prototype={ +$1(a){return a==null?"null":'"'+a+'"'}, +$S:668} +A.aHy.prototype={ +afK(a){var s=this.k6(a) +if(s>0)return B.c.S(a,0,s) +return this.vw(a)?a[0]:null}, +ad2(a){var s,r=null,q=a.length +if(q===0)return A.fc(r,r,r,r,r,r) +s=A.bjL(r,this).rL(0,a) +if(this.qW(a.charCodeAt(q-1)))B.b.F(s,"") +return A.fc(r,r,r,s,r,r)}, +WT(a,b){return a===b}} +A.a71.prototype={ +gTN(){var s=this,r=t.N,q=new A.a71(s.a,s.b,s.c,A.hl(s.d,!0,r),A.hl(s.e,!0,r)) +q.Gk() +r=q.d +if(r.length===0){r=s.b +return r==null?"":r}return B.b.gX(r)}, +gVH(){var s=this.d +if(s.length!==0)s=J.j(B.b.gX(s),"")||!J.j(B.b.gX(this.e),"") +else s=!1 +return s}, +Gk(){var s,r,q=this +while(!0){s=q.d +if(!(s.length!==0&&J.j(B.b.gX(s),"")))break +B.b.h5(q.d) +q.e.pop()}s=q.e +r=s.length +if(r!==0)s[r-1]=""}, +Wm(a){var s,r,q,p,o,n,m=this,l=A.a([],t.s) +for(s=m.d,r=s.length,q=0,p=0;p0){s=B.c.h3(a,"\\",s+1) +if(s>0)return s}return r}if(r<3)return 0 +if(!A.byU(a.charCodeAt(0)))return 0 +if(a.charCodeAt(1)!==58)return 0 +r=a.charCodeAt(2) +if(!(r===47||r===92))return 0 +return 3}, +k6(a){return this.Bu(a,!1)}, +vw(a){return this.k6(a)===1}, +N5(a){var s,r +if(a.gfk()!==""&&a.gfk()!=="file")throw A.c(A.bZ("Uri "+a.l(0)+" must have scheme 'file:'.",null)) +s=a.gdT(a) +if(a.gpZ(a)===""){if(s.length>=3&&B.c.cc(s,"/")&&A.byW(s,1))s=B.c.vM(s,"/","")}else s="\\\\"+a.gpZ(a)+s +r=A.eF(s,"/","\\") +return A.lL(r,0,r.length,B.a_,!1)}, +To(a){var s,r,q=null,p=A.p3(a,this),o=p.b +o.toString +if(B.c.cc(o,"\\\\")){s=new A.ba(A.a(o.split("\\"),t.s),new A.b0R(),t.gD) +B.b.fB(p.d,0,s.gX(s)) +if(p.gVH())B.b.F(p.d,"") +return A.fc(q,s.gO(s),q,p.d,q,"file")}else{if(p.d.length===0||p.gVH())B.b.F(p.d,"") +o=p.d +r=p.b +r.toString +r=A.eF(r,"/","") +B.b.fB(o,0,A.eF(r,"\\","")) +return A.fc(q,q,q,p.d,q,"file")}}, +aGA(a,b){var s +if(a===b)return!0 +if(a===47)return b===92 +if(a===92)return b===47 +if((a^b)!==32)return!1 +s=a|32 +return s>=97&&s<=122}, +WT(a,b){var s,r +if(a===b)return!0 +s=a.length +if(s!==b.length)return!1 +for(r=0;r>>0}, +bO(a,b){var s,r,q=this,p=q.a,o=b.a +if(p!==o)return B.f.bO(p,o) +p=q.b +o=b.b +if(p!==o)return B.f.bO(p,o) +p=q.c +o=b.c +if(p!==o)return B.f.bO(p,o) +p=q.d +o=p.length===0 +if(o&&b.d.length!==0)return 1 +s=b.d +if(s.length===0&&!o)return-1 +r=q.a0s(p,s) +if(r!==0)return r +p=q.e +o=p.length===0 +if(o&&b.e.length!==0)return-1 +s=b.e +if(s.length===0&&!o)return 1 +return q.a0s(p,s)}, +l(a){return this.f}, +gTV(){var s,r,q=this,p=q.a,o=q.b,n=q.c,m=q.d +m=m.length!==0?B.b.ck(m,"."):null +s=q.e +s=s.length!==0?B.b.ck(s,"."):null +r=""+p+"."+o+"."+n +if(m!=null)r+="-"+m +return A.bv9(p,o,n,m,s,s!=null?r+("+"+s):r).f}, +a0s(a,b){var s,r,q,p,o +for(s=0;r=a.length,q=b.length,s").V(this.b).h("f4<1,2>").a(a).go}, +$S(){return this.a.h("@<0>").V(this.b).h("ci<1>(aU>)")}} +A.beG.prototype={ +$1(a){return this.a.h("f4,0>").a(a).iD$}, +$S(){return this.a.h("ci>(aU>)")}} +A.pZ.prototype={} +A.i_.prototype={ +goL(){var s=this.a +s===$&&A.b() +return s}, +SC(a){A.l(this).h("on,i_.0>").a(a) +this.a!==$&&A.ck() +this.a=a}} +A.B3.prototype={} +A.fw.prototype={ +gcb(){var s,r,q=this,p=q.ch +if(p===$){s=A.l(q) +r=A.bQu(q,s.h("fw.0"),s.h("fw.T")) +p!==$&&A.aq() +q.ch=r +p=r}return p}, +gqS(){var s,r=this,q=r.CW +if(q===$){s=A.bQt(r,A.l(r).h("fw.T")) +q!==$&&A.aq() +r.CW=s +q=s}return q}, +bI(a){var s=A.l(this) +return A.bFc(this,s.h("fw.0"),s.h("fw.T"))}, +rq(a){return A.l(this).h("B3").a(a).aO()}} +A.on.prototype={} +A.c1.prototype={ +sd0(a,b){var s=this +b.vz(0,s.gFX(),s.gtS(s),s.gayd())}, +GM(a,b){return A.brP(a,b)}, +RY(a,b){var s,r=this,q=A.l(r) +A.bjs(r,a,b,q.h("c1.T")) +if(r.ie$==null){s=new A.a7($.ac,q.h("a7")) +r.ie$=new A.aD(s,q.h("aD")) +r.iD$.su2(0,new A.em(s,q.h("em>")))}}, +aye(a){return this.RY(a,!1)}, +B9(a,b,c){var s,r,q,p,o,n,m,l=this +if(l.dy){A.bjs(l,b,c,A.l(l).h("c1.T")) +s=l.e +s===$&&A.b() +r=s.z +q=r.length +p=b.d +o=b.e +n=0 +for(;n>")))}}, +tT(a,b){return this.B9(a,b,!1)}, +Wr(a,b){var s,r,q=this +if(q.dy)A.bjs(q,a,b,A.l(q).h("c1.T")) +s=q.ie$ +if(s!=null){s.cU(0,a.a) +q.ie$=null}else if(q.dy){r=A.l(q) +q.iD$.su2(0,new A.em(A.cR(a.a,r.h("c1.T")),r.h("em>")))}}, +iJ(a){return this.Wr(a,!1)}, +aKn(a,b){this.a2e(new A.aEv(this,a),b)}, +axb(){var s=this.c +s===$&&A.b() +return new A.iU("The provider "+s.l(0)+u.e)}, +aaE(a,b){this.a2e(new A.aEs(this,a),b)}, +a2e(a,b){var s,r,q,p,o,n=this,m=A.l(n).h("c1.T"),l=!b +n.RY(A.bjr(m),l) +try{p=a.$4$data$done$error$last(new A.aEm(n,b),new A.aEn(n),new A.aEo(n,b),new A.aEp(n)) +n.hW$=p +s=p}catch(o){r=A.ak(o) +q=A.aJ(o) +n.B9(0,A.Ir(r,q,m),l)}}} +A.aEv.prototype={ +$4$data$done$error$last(a,b,c,d){var s,r=this.b.$0(),q=r.gfM()?r:r.Kx(new A.aEu(this.a)),p=this.a +A.bRs(q,d,p.gaxa(),A.l(p).h("c1.T")) +s=q.fN(a,b,c) +return s.gdJ(s)}, +$S(){return A.l(this.a).h("S<~>()({data!~(c1.T),done!~(),error!~(C,cw),last!~(S,~())})")}} +A.aEu.prototype={ +$1(a){return a.aI(0)}, +$S(){return A.l(this.a).h("~(ka)")}} +A.aEs.prototype={ +$4$data$done$error$last(a,b,c,d){var s,r={},q=this.b.$0(),p=this.a +if(!A.l(p).h("S").b(q)){a.$1(q) +b.$0() +return null}r.a=!0 +s=new A.aEt(r) +q.fj(new A.aEq(r,p,a,b),new A.aEr(r,c,b),t.P) +d.$2(q,s) +return s}, +$S(){return A.l(this.a).h("~()?({data!~(c1.T),done!~(),error!~(C,cw),last!~(S,~())})")}} +A.aEt.prototype={ +$0(){this.a.a=!1}, +$S:0} +A.aEq.prototype={ +$1(a){if(!this.a.a)return +this.c.$1(a) +this.d.$0()}, +$S(){return A.l(this.b).h("aE(c1.T)")}} +A.aEr.prototype={ +$2(a,b){if(!this.a.a)return +this.b.$2(a,b) +this.c.$0()}, +$S:26} +A.aEm.prototype={ +$1(a){var s=this.a +s.Wr(A.XX(a,A.l(s).h("c1.T")),!this.b)}, +$S(){return A.l(this.a).h("~(c1.T)")}} +A.aEo.prototype={ +$2(a,b){var s=this.a +s.B9(0,A.Ir(a,b,A.l(s).h("c1.T")),!this.b)}, +$S:14} +A.aEp.prototype={ +$2(a,b){var s=this.a +s.ig$=a +s.hV$=b}, +$S(){return A.l(this.a).h("~(S,~())")}} +A.aEn.prototype={ +$0(){var s=this.a,r=s.hV$ +if(r!=null)r.$0() +s.ig$=s.hV$=null}, +$S:0} +A.b28.prototype={ +$1(a){}, +$S(){return A.l(this.a).h("aE(hw.T)")}} +A.b29.prototype={ +$1(a){}, +$S:255} +A.mS.prototype={ +ud(a,b){this.ak3(a,b) +b.$1(this.go)}, +GM(a,b){var s=this.go.f +if(s==null)s=null +else s=s.gw3()==null?null:A.brP(a,b) +return s!==!1}} +A.f4.prototype={ +A_(a,b){var s=this,r=A.l(s),q=r.h("pZ").a(s.d),p=s.go,o=p.f +if(o==null){o=A.aRH(new A.asX(s,q),r.h("f4.0")) +p.su2(0,o)}o.GW(new A.asY(s,q,b),new A.asZ(s,b))}} +A.asX.prototype={ +$0(){var s=this.b.y.$0() +s.SC(this.a) +return s}, +$S(){return A.l(this.a).h("f4.0()")}} +A.asZ.prototype={ +$2(a,b){var s=this.a +s.B9(0,A.Ir(a,b,A.l(s).h("f4.T")),!this.b)}, +$S:26} +A.asY.prototype={ +$1(a){var s=this.a +s.aaE(new A.asW(s,this.b,a),this.c)}, +$S(){return A.l(this.a).h("aE(f4.0)")}} +A.asW.prototype={ +$0(){return this.b.rq(this.c)}, +$S(){return A.l(this.a).h("f4.T/()")}} +A.bff.prototype={ +$1(a){return this.a.a=new A.em(a,this.b.h("em<0>"))}, +$S(){return this.b.h("~(0)")}} +A.bfh.prototype={ +$2(a,b){this.a.a=new A.fA(a,b,this.b.h("fA<0>"))}, +$S:26} +A.bfg.prototype={ +$0(){var s=this,r=s.a.a,q=s.b,p=s.d +if(r!=null)r.r_(0,new A.bfd(q,p),new A.bfe(q,p)) +else{A.KM(q.a,p) +q.fc(s.c.$0(),A.ik())}}, +$S:0} +A.bfd.prototype={ +$1(a){return this.a.cU(0,a.a)}, +$S(){return this.b.h("~(em<0>)")}} +A.bfe.prototype={ +$1(a){var s=this.a +A.KM(s.a,this.b) +s.fc(a.a,a.b)}, +$S(){return this.b.h("aE(fA<0>)")}} +A.F3.prototype={} +A.mX.prototype={ +SC(a){A.l(this).h("B4,mX.0>").a(a) +this.a!==$&&A.ck() +this.a=a}} +A.wi.prototype={} +A.Is.prototype={ +bI(a){var s=null,r=this.$ti,q=t.B +return new A.B4(s,!1,new A.ci(A.aX(0,s,!1,r.h("e3<1>?")),r.h("ci<1>")),new A.ci(A.aX(0,s,!1,r.h("e3>?")),r.h("ci>")),s,s,s,s,this,A.a([],r.h("H>>")),A.a([],q),A.a([],t._),A.a([],q),A.cA(s,s,s,t.M,t.K),r.h("@<1>").V(r.z[1]).h("B4<1,2>"))}} +A.B4.prototype={} +A.P_.prototype={ +A_(a,b){var s=this,r=s.$ti,q=r.h("F3<1,2>").a(s.d),p=s.go,o=p.f +if(o==null){o=A.aRH(new A.aXW(s,q),r.c) +p.su2(0,o)}o.GW(new A.aXX(s,q,b),new A.aXY(s,b))}} +A.aXW.prototype={ +$0(){var s=this.b.y.$0() +s.SC(this.a) +return s}, +$S(){return this.a.$ti.h("1()")}} +A.aXY.prototype={ +$2(a,b){var s=this.a +s.B9(0,A.Ir(a,b,s.$ti.z[1]),!this.b)}, +$S:26} +A.aXX.prototype={ +$1(a){var s=this.a +s.aKn(new A.aXV(s,this.b,a),this.c)}, +$S(){return this.a.$ti.h("aE(1)")}} +A.aXV.prototype={ +$0(){return this.b.$ti.h("wi<2>").a(this.c).aO()}, +$S(){return this.a.$ti.h("bz<2>()")}} +A.hw.prototype={ +pp(){var s=this,r=s.hV$ +if(r!=null)r.$0() +s.ig$=s.hV$=null +r=s.hW$ +if(r!=null)r.$0() +s.hW$=null +s.HK()}, +m(){var s,r,q=this,p=q.ie$ +if(p!=null){s=p.a +A.KM(s,A.l(q).h("hw.T")) +if(q.ig$!=null){r=q.hW$ +if(r!=null)s.fj(new A.b28(q),new A.b29(),t.P).fu(r) +q.hW$=q.hV$=q.ig$=null}else{s=q.c +s===$&&A.b() +p.fc(new A.iU("The provider "+s.l(0)+u.e),A.ik())}}q.ZL()}, +ud(a,b){this.OS(a,b) +b.$1(this.iD$)}} +A.Qr.prototype={ +pp(){var s=this.dK$ +if(s!=null)B.b.ab(s) +this.a_2()}} +A.Qs.prototype={} +A.Qx.prototype={ +pp(){var s=this.dK$ +if(s!=null)B.b.ab(s) +this.a_2()}} +A.Qy.prototype={} +A.F.prototype={ +l(a){var s,r=this,q=t.s,p=A.a([],q) +if(r.gjV()&&!(r instanceof A.f3))p.push("isLoading: "+r.gjV()) +if(r.gpa())p.push("value: "+A.i(r.gj(r))) +if(r.ghz(r)!=null)B.b.I(p,A.a(["error: "+A.i(r.ghz(r)),"stackTrace: "+A.i(r.gke())],q)) +s=B.b.ck(p,", ") +return A.p(r).l(0)+"("+s+")"}, +k(a,b){var s=this +if(b==null)return!1 +return A.p(s)===J.a_(b)&&A.l(s).h("F<1>").b(b)&&b.gjV()===s.gjV()&&b.gpa()===s.gpa()&&J.j(b.ghz(b),s.ghz(s))&&b.gke()==s.gke()&&J.j(A.c_(b),A.c_(s))}, +gu(a){var s=this +return A.X(A.p(s),s.gjV(),s.gpa(),A.c_(s),s.ghz(s),s.gke(),B.a,B.a,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.fX.prototype={ +gpa(){return!0}, +FK(a,b,c,d){return b.$1(this)}, +vz(a,b,c,d){return this.FK(a,b,c,d,t.z)}, +zZ(a,b){return this}, +KZ(a){return this.zZ(a,!0)}, +PD(a){var s=this +if(A.cs(s.$ti.c)===A.cs(a))return a.h("F<0>").a(s) +return new A.fX(a.a(s.a),s.b,s.c,s.d,a.h("fX<0>"))}, +gj(a){return this.a}, +gjV(){return this.b}, +ghz(a){return this.c}, +gke(){return this.d}} +A.f3.prototype={ +gjV(){return!0}, +PD(a){var s=this +if(A.cs(s.$ti.c)===A.cs(a))return a.h("F<0>").a(s) +return new A.f3(s.a,a.h("0?").a(s.b),s.c,s.d,a.h("f3<0>"))}, +FK(a,b,c,d){return d.$1(this)}, +vz(a,b,c,d){return this.FK(a,b,c,d,t.z)}, +zZ(a,b){var s=this +if(b)return a.vz(0,new A.asQ(s),new A.asR(s),new A.asS(s)) +else return a.vz(0,new A.asT(s),new A.asU(s),new A.asV(s))}, +KZ(a){return this.zZ(a,!0)}, +gpa(){return this.a}, +gj(a){return this.b}, +ghz(a){return this.c}, +gke(){return this.d}} +A.asQ.prototype={ +$1(a){return new A.fX(a.a,!0,a.c,a.d,this.a.$ti.h("fX<1>"))}, +$S(){return this.a.$ti.h("fX<1>(fX<1>)")}} +A.asR.prototype={ +$1(a){return new A.eC(!0,a.b,A.c_(a),a.d,a.e,this.a.$ti.h("eC<1>"))}, +$S(){return this.a.$ti.h("eC<1>(eC<1>)")}} +A.asS.prototype={ +$1(a){return this.a}, +$S(){return this.a.$ti.h("f3<1>(f3<1>)")}} +A.asT.prototype={ +$1(a){return new A.f3(!0,A.c_(a),a.c,a.d,this.a.$ti)}, +$S(){return this.a.$ti.h("f3<1>(fX<1>)")}} +A.asU.prototype={ +$1(a){return new A.f3(a.b,A.c_(a),a.d,a.e,this.a.$ti)}, +$S(){return this.a.$ti.h("f3<1>(eC<1>)")}} +A.asV.prototype={ +$1(a){return a}, +$S(){return this.a.$ti.h("f3<1>(f3<1>)")}} +A.eC.prototype={ +gj(a){var s=this +if(!s.b)A.bii(s.d,s.e) +return s.c}, +PD(a){var s=this +if(A.cs(s.$ti.c)===A.cs(a))return a.h("F<0>").a(s) +return new A.eC(s.a,s.b,a.h("0?").a(s.c),s.d,s.e,a.h("eC<0>"))}, +FK(a,b,c,d){return c.$1(this)}, +vz(a,b,c,d){return this.FK(a,b,c,d,t.z)}, +zZ(a,b){var s=this,r=A.c_(a) +return new A.eC(s.a,a.gpa(),r,s.d,s.e,s.$ti)}, +KZ(a){return this.zZ(a,!0)}, +gjV(){return this.a}, +gpa(){return this.b}, +ghz(a){return this.d}, +gke(){return this.e}} +A.atf.prototype={ +$1(a){return null}, +$S(){return this.a.h("aE(fX<0>)")}} +A.atg.prototype={ +$1(a){return a}, +$S(){return this.a.h("eC<0>(eC<0>)")}} +A.ath.prototype={ +$1(a){return null}, +$S(){return this.a.h("aE(f3<0>)")}} +A.ati.prototype={ +$1(a){var s,r,q,p +try{q=this.a.$1(a.a) +return new A.fX(q,a.b,a.c,a.d,this.c.h("fX<0>"))}catch(p){s=A.ak(p) +r=A.aJ(p) +return new A.eC(a.b,!1,null,s,r,this.c.h("eC<0>"))}}, +$S(){return this.c.h("@<0>").V(this.b).h("F<1>(fX<2>)")}} +A.atj.prototype={ +$1(a){return new A.eC(a.a,!1,null,a.d,a.e,this.b.h("eC<0>"))}, +$S(){return this.b.h("@<0>").V(this.a).h("eC<1>(eC<2>)")}} +A.atk.prototype={ +$1(a){return A.bjr(this.b)}, +$S(){return this.b.h("@<0>").V(this.a).h("f3<1>(f3<2>)")}} +A.atl.prototype={ +$1(a){return null}, +$S(){return this.a.h("aE(0)")}} +A.atm.prototype={ +$2(a,b){return null}, +$S:26} +A.atn.prototype={ +$0(){return null}, +$S:4} +A.Xr.prototype={} +A.Xq.prototype={} +A.B2.prototype={} +A.df.prototype={ +ii(){var s,r=this.dK$ +if(r==null)r=this.dK$=A.a([],t.r0) +s=A.b6("link") +s.b=new A.a3f() +r.push(s.aH()) +return s.aH()}, +Mv(){var s,r=this,q=r.dK$ +if(!r.gVG())s=q==null||q.length===0 +else s=!1 +if(s){s=r.e +s===$&&A.b() +s=s.gC6() +s.c.push(r) +s.a4H()}}, +$iaU:1} +A.a3f.prototype={} +A.rO.prototype={ +apH(){var s,r,q=this,p=q.a +if(p.k(0,$.aqU))throw A.c(new A.Z1()) +if($.aqU==null)$.aqU=p +try{r=q.b.bI(0) +r.d=q.b +r.c=p +r.e!==$&&A.ck() +r.e=q.c +r.aMM() +s=r +s.fy.r_(0,new A.bcy(q),new A.bcz(q)) +return s}finally{if(J.j($.aqU,p))$.aqU=null}}} +A.bcy.prototype={ +$1(a){var s,r,q,p,o,n,m +for(r=this.a,q=r.c,p=q.z,o=p.length,r=r.a,n=a.a,m=0;m")) +a.f.push(s) +return s}, +abN(a,b,c){return a.Km(0,this,b,!1,null,c)}, +aM6(a,b){return this.abN(a,b,null,t.z)}, +abQ(a,b,c){return this.abN(a,b,c,t.z)}, +kx(a){var s,r,q,p,o,n=this +if(a instanceof A.bg){s=n.QO(a) +if(s!=null){r=s.e +if(r!=null)r.VV()}}else{t.Sf.a(a) +r=n.x.i(0,a) +r=r==null?null:r.b +q=r==null?n.e:r +for(r=(q==null?n:q).y,r=r.gbp(r),p=A.l(r),p=p.h("@<1>").V(p.z[1]),r=new A.bT(J.al(r.a),r.b,p.h("bT<1,2>")),p=p.z[1];r.v();){o=r.a +if(o==null)o=p.a(o) +if(o.a.e!==a)continue +o=o.e +if(o!=null)o.VV()}}}, +aqq(a){var s,r=this.QO(a) +if(r==null)return +s=r.e +if(s!=null)s.m() +if(r.d)new A.aNY(a,r).$1(this) +else r.e=null}, +aQg(a){var s,r,q,p,o,n,m,l +if(this.as)throw A.c(A.R("Called updateOverrides on a ProviderContainer that was already disposed")) +for(s=this.y,r=this.w,q=0;q<3;++q){p=a[q] +o=p.a +n=s.i(0,o) +n.toString +m=p.b +r.n(0,o,m) +n.b=m +l=n.e +if(l==null)continue +A.bXR(l.gis(l),m)}}, +xW(a,b){var s,r +if(this.as)throw A.c(A.R("Tried to read a provider from a ProviderContainer that was already disposed")) +s=this.azT(a) +r=s.e +if(r==null)r=s.e=s.apH() +return b.h("aU<0>").a(r)}, +QO(a){var s=this.y.i(0,a) +if(s==null){s=this.e +s=s==null?null:s.QO(a)}return s}, +azT(a){var s,r=this.y,q=r.i(0,a) +if(q!=null)return q +s=new A.aNZ(this,a).$0() +r.n(0,a,s) +return s}, +m(){var s,r,q,p=this +if(p.as)return +p.as=!0 +s=p.f +if(s!=null)B.b.E(s.r,p) +if(p.e==null){s=p.gC6() +s.a=!0 +r=s.e +if(r!=null)r.fm(0) +s.e=null}for(s=p.Y7(),s=A.a8(s,!0,s.$ti.h("z.E")),r=A.ab(s).h("da<1>"),s=new A.da(s,r),s=new A.c2(s,s.gt(s),r.h("c2")),r=r.h("av.E");s.v();){q=s.d;(q==null?r.a(q):q).m()}}, +Y7(){return new A.kl(this.af6(),t.Sy)}, +af6(){var s=this +return function(){var r=0,q=1,p,o,n,m,l,k,j,i,h,g,f +return function $async$Y7(a,b,c){if(b===1){p=c +r=q}while(true)switch(r){case 0:h=A.dI(t.M) +g=t.j7 +f=new A.Ac(g) +f.a=f +f.b=f +o=new A.wZ(f,t.oV) +for(n=s.y,n=n.gbp(n),m=A.l(n),m=m.h("@<1>").V(m.z[1]),n=new A.bT(J.al(n.a),n.b,m.h("bT<1,2>")),m=m.z[1],g=g.h("rB<1>");n.v();){l={} +k=n.a +if(k==null)k=m.a(k) +if(k.c!==s)continue +j=k.e +if(j==null)continue +l.a=!1 +j.XY(new A.aO1(l,s)) +if(!l.a){new A.rB(o,j,g).Rz(f.a,f);++o.b}}case 2:if(!!o.gak(o)){r=3 +break}i=f.b.Se(0);--o.b +if(!h.F(0,i)){r=2 +break}r=4 +return a.b=i,1 +case 4:i.ud(new A.aO2(s,h,o),new A.aO3()) +r=2 +break +case 3:return 0 +case 1:return a.c=p,3}}}}} +A.aNY.prototype={ +$1(a){var s=a.y,r=this.a +if(J.j(s.i(0,r),this.b))s.E(0,r) +B.b.al(a.r,this)}, +$S:676} +A.aNZ.prototype={ +$0(){var s,r,q,p,o,n,m=this.b,l=m.e,k=l==null +if(!k){s=this.a.x.i(0,l) +if(s!=null){l=s.b +k=l.y +if(k.aq(0,m)){m=k.i(0,m) +m.toString +return m}new A.aO_(s).$2$origin$override(m,s.a.fF(m)) +k=k.i(0,m) +return k==null?new A.rO(m,m,l,!0):k}}r=this.a +q=r.e +p=q==null +o=!p +if(o){if(!k)l.gf9() +m.gf9()}l=p?null:q.y.aq(0,m) +if(l===!0){m=q.y.i(0,m) +m.toString +return m}n=new A.rO(m,m,p?r:q,!0) +if(o)q.y.n(0,m,n) +return n}, +$S:677} +A.aO_.prototype={ +$2$origin$override(a,b){var s=this.a.b,r=s.y +if(r.i(0,a)==null)r.n(0,a,new A.rO(a,b,s,!0))}, +$S:678} +A.aO1.prototype={ +$1(a){var s=a.e +s===$&&A.b() +if(s===this.b)this.a.a=!0}, +$S:74} +A.aO2.prototype={ +$1(a){var s,r={},q=a.e +q===$&&A.b() +s=this.a +if(q===s){r.a=!0 +a.XY(new A.aO0(r,s,this.b)) +if(r.a)this.c.F(0,a)}}, +$S:74} +A.aO0.prototype={ +$1(a){var s=a.e +s===$&&A.b() +if(s===this.b&&!this.c.p(0,a))this.a.a=!1}, +$S:74} +A.aO3.prototype={ +$1(a){}, +$S:163} +A.E3.prototype={$ibN:1} +A.Z1.prototype={} +A.aU.prototype={ +gVG(){return this.f.length!==0||this.x.length!==0||this.w.length!==0}, +ad(a){var s=this,r=s.fy,q=new A.em(a,A.l(s).h("em")) +s.fy=q +if(s.fx)s.a3v(q,r)}, +gjs(){var s=this.fy +if(s==null)throw A.c(A.R("Tried to read the state of an uninitialized provider")) +return s.GW(new A.aOi(this),A.bYj())}, +aMM(){var s=this +s.dy=!0 +s.a81() +s.fy.r_(0,new A.aOg(s),new A.aOh(s))}, +bZ(a,b){this.d=b}, +VV(){var s,r=this +if(r.cx)return +r.cx=!0 +r.pp() +s=r.e +s===$&&A.b() +s=s.gC6() +s.d.push(r) +s.a4H() +r.ud(new A.aOe(),new A.aOf())}, +p5(a){var s=this +s.a3i() +if(s.cx){s.cx=!1 +s.a3V()}}, +a3i(){if(!this.cy)return +this.cy=!1 +this.XY(new A.aO7())}, +a3V(){var s,r,q,p=this +p.z=p.y +p.y=A.cA(null,null,null,t.M,t.K) +s=p.fy +p.a81() +r=p.fy +if(r!=s){r.toString +p.a3v(r,s)}for(r=p.z,r=r.gdX(r),r=r.gam(r);r.v();){q=r.gG(r).a +B.b.E(q.w,p) +q.Ja()}p.z=null}, +a81(){var s,r,q,p=this,o=p.db +p.fx=p.db=!1 +try{p.dy=!0 +p.A_(0,o)}catch(q){s=A.ak(q) +r=A.aJ(q) +p.fy=new A.fA(s,r,A.l(p).h("fA"))}finally{p.fx=!0}}, +a3v(a,b){var s,r,q,p,o,n,m,l,k=this,j=b==null,i=j?null:b.gw3() +a.r_(0,new A.aO8(k,i),new A.aO9(k)) +if(!j)if(b.gFd())if(a.gFd()){j=i==null?A.l(k).h("aU.0").a(i):i +j=!k.GM(j,a.gjs())}else j=!1 +else j=!1 +else j=!1 +if(j)return +j=k.f +s=J.m1(j.slice(0),A.ab(j).c) +j=k.x +r=J.m1(j.slice(0),A.ab(j).c) +a.r_(0,new A.aOa(k,s,i,r),new A.aOb(k,s,r)) +for(j=k.w,q=0;q").b(a))return q.aM8(a,new A.aOj(q,b),q.gawR(),new A.aOk(q)).i3(0) +s=q.e +s===$&&A.b() +r=s.xW(a,b) +q.y.cK(0,r,new A.aOl(q,r)) +r.p5(0) +return r.gjs()}, +y7(a){return this.N(a,t.z)}, +xW(a,b){var s=this.e +s===$&&A.b() +return s.xW(a,b)}, +RA(a,b,c,d){var s=new A.Ap(new A.aO4(b,d),this,a,c,d.h("Ap<0>")) +a.x.push(s) +this.r.push(s) +return s}, +abO(a,b,c,d){return a.Km(0,this,b,!1,c,d)}, +aM8(a,b,c,d){return this.abO(a,b,c,d,t.z)}, +abQ(a,b,c){return this.abO(a,b,null,c,t.z)}, +abR(a){var s=this.ch;(s==null?this.ch=A.a([],A.l(this).h("H<~(aU.0?,aU.0)>")):s).push(a)}, +ud(a,b){var s,r +for(s=this.w,r=0;r")).al(0,a) +for(r=this.r,s=0;s)")}} +A.aOh.prototype={ +$1(a){var s,r,q,p=this.a.CW +if(p!=null)for(s=a.a,r=a.b,q=0;q)")}} +A.aOe.prototype={ +$1(a){return a.RJ()}, +$S:74} +A.aOf.prototype={ +$1(a){return a.acb()}, +$S:163} +A.aO7.prototype={ +$1(a){a.p5(0)}, +$S:74} +A.aO8.prototype={ +$1(a){var s,r,q,p=this.a.ch +if(p!=null)for(s=this.b,r=a.a,q=0;q)")}} +A.aO9.prototype={ +$1(a){var s,r,q,p=this.a.CW +if(p!=null)for(s=a.a,r=a.b,q=0;q)")}} +A.aOa.prototype={ +$1(a){var s,r,q,p +for(s=this.b,r=this.c,q=a.a,p=0;p)")}} +A.aOb.prototype={ +$1(a){var s,r,q,p +for(s=this.b,r=a.a,q=a.b,p=0;p)")}} +A.aOc.prototype={ +$1(a){}, +$S(){return A.l(this.a).h("aE(em)")}} +A.aOd.prototype={ +$1(a){var s=this.b.gacG(),r=this.a,q=r.c +q===$&&A.b() +r=r.e +r===$&&A.b() +A.bi_(s,q,a.a,a.b,r)}, +$S(){return A.l(this.a).h("aE(fA)")}} +A.aO5.prototype={ +$1(a){return a.RJ()}, +$S:74} +A.aO6.prototype={ +$1(a){return a.acb()}, +$S:163} +A.aOj.prototype={ +$2(a,b){return this.a.RI()}, +$S(){return this.b.h("~(0?,0)")}} +A.aOk.prototype={ +$2(a,b){return this.a.RI()}, +$S:14} +A.aOl.prototype={ +$0(){var s=this.a,r=s.z,q=r==null?null:r.E(0,this.b) +if(q!=null)return q +r=this.b +r.a3C() +r.w.push(s) +return new A.C()}, +$S:316} +A.aO4.prototype={ +$2(a,b){var s=this.b +return this.a.$2(s.h("0?").a(a),s.a(b))}, +$S:87} +A.e5.prototype={$ibN:1} +A.aOp.prototype={ +gf9(){return this.c}} +A.bk.prototype={} +A.kH.prototype={} +A.bg.prototype={ +ga3I(){return this}, +Km(a,b,c,d,e,f){var s,r +if(f==null)f=$.ac.gaaN() +s=A.l(this).h("bg.0") +r=b.xW(this,s) +r.p5(0) +r.a3C() +return b.RA(r,c,f,s)}, +hJ(a,b){var s=b.xW(this,A.l(this).h("bg.0")) +s.p5(0) +s.Mv() +return s.gjs()}, +gu(a){var s=this,r=s.e +if(r==null)return A.C.prototype.gu.call(s,s) +return(r.gu(r)^B.a7W.gu(s.f))>>>0}, +k(a,b){var s,r=this +if(b==null)return!1 +s=r.e +if(s==null)return b===r +return J.a_(b)===A.p(r)&&A.l(r).h("bg").b(b)&&b.e===s&&!0}, +l(a){var s=this,r=s.e!=null?"("+A.i(s.f)+")":"",q=s.a,p=q!=null?q+":":"" +return p+(A.p(s).l(0)+"#"+B.c.eP(B.f.of(s.gu(s)&1048575,16),5,"0"))+r}, +$ibN:1} +A.e2.prototype={ +ah(a){var s +this.d=!0 +s=this.b +B.b.E(s.f,this) +s.Ja()}, +i3(a){var s +if(this.d)throw A.c(A.R(u.h)) +s=this.b +s.p5(0) +return s.gjs()}, +$ikH:1} +A.Ap.prototype={ +ah(a){var s,r=this +B.b.E(r.b.r,r) +s=r.c +B.b.E(s.x,r) +s.Ja()}, +i3(a){var s=this.c +s.p5(0) +return s.gjs()}, +$ikH:1} +A.e8.prototype={} +A.H3.prototype={ +ah(a){this.a.ah(0) +this.b.$0()}, +i3(a){return this.c.$0()}} +A.nu.prototype={ +Km(a,b,c,d,e,f){var s=this,r=s.$ti,q=r.c,p=b.xW(s.a,q),o=s.b.$1(p),n=o.aFf(0,c,e,f) +return new A.H3(b.RA(p,new A.aOm(s),new A.aOn(),q),n,new A.aOo(s,b),r.h("H3<2>"))}, +hJ(a,b){var s,r=b.xW(this.a,this.$ti.c) +r.p5(0) +r.Mv() +s=this.b.$1(r).f +if(s==null)A.r(A.R("Trying to read an uninitialized value.")) +return s.gjs()}, +k(a,b){if(b==null)return!1 +return this.$ti.b(b)&&b.a.k(0,this.a)}, +gu(a){var s=this.a +return s.gu(s)}, +ga3I(){return this.a}} +A.aOo.prototype={ +$0(){return this.a.hJ(0,this.b)}, +$S(){return this.a.$ti.h("2()")}} +A.aOm.prototype={ +$2(a,b){}, +$S(){return this.a.$ti.h("~(1?,1)")}} +A.aOn.prototype={ +$2(a,b){}, +$S:14} +A.a7r.prototype={ +gY_(){if(this.b.a!==0)return new A.aOq(this) +return A.bVg()}, +a4H(){var s=this +if(s.e!=null||s.a)return +s.e=new A.aD(new A.a7($.ac,t.b),t.gR) +s.aQy(s.gaD2())}, +aD3(){var s=this,r=s.e +if(r==null)return +r.fm(0) +s.azl() +s.azg() +B.b.ab(s.d) +B.b.ab(s.c) +s.e=null}, +azl(){var s,r,q +for(s=this.d,r=0;r"))}finally{}}, +aBB(a,b,c,d,e){var s=this,r=s.a4R(new A.em(c,s.$ti.h("em<1>"))) +if(!a.gFd()||!r.gFd()||!J.j(a.gjs(),r.gjs())){d.$1(r) +r.r_(0,new A.b9J(s,b,a),new A.b9K(s,e))}}, +Km(a,b,c,d,e,f){var s,r,q,p=this,o={} +o.a=f +s=f==null?o.a=$.ac.gaaN():f +r=A.b6("lastSelectedValue") +q=b.abQ(p.a,new A.b9Q(o,p,r,c),s) +s=p.$ti +r.b=p.a4R(A.aRH(q.gh4(q),s.c)) +return new A.Hg(q,new A.b9R(p,r),s.h("@<1>").V(s.z[1]).h("Hg<1,2>"))}, +hJ(a,b){return this.b.$1(this.a.hJ(0,b))}} +A.b9L.prototype={ +$1(a){var s=this.a +return new A.em(s.b.$1(a.a),s.$ti.h("em<2>"))}, +$S(){return this.a.$ti.h("En<2>(em<1>)")}} +A.b9M.prototype={ +$1(a){return new A.fA(a.a,a.b,this.a.$ti.h("fA<2>"))}, +$S(){return this.a.$ti.h("En<2>(fA<1>)")}} +A.b9J.prototype={ +$1(a){this.b.$2(this.c.gw3(),a.a)}, +$S(){return this.a.$ti.h("aE(em<2>)")}} +A.b9K.prototype={ +$1(a){return this.b.$2(a.a,a.b)}, +$S(){return this.a.$ti.h("~(fA<2>)")}} +A.b9Q.prototype={ +$2(a,b){var s=this,r=s.b,q=s.c,p=q.aH(),o=s.a.a +o.toString +r.aBB(p,s.d,b,new A.b9P(r,q),o)}, +$S(){return this.b.$ti.h("~(1?,1)")}} +A.b9P.prototype={ +$1(a){return this.b.b=a}, +$S(){return this.a.$ti.h("~(En<2>)")}} +A.b9R.prototype={ +$0(){var s=this.a +return J.bEw(this.b.aH(),new A.b9N(s),new A.b9O(s))}, +$S(){return this.a.$ti.h("2()")}} +A.b9N.prototype={ +$1(a){return a.a}, +$S(){return this.a.$ti.h("2(em<2>)")}} +A.b9O.prototype={ +$1(a){return A.bii(a.a,a.b)}, +$S(){return this.a.$ti.h("0&(fA<2>)")}} +A.Hg.prototype={ +ah(a){this.c=!0 +this.a.ah(0)}, +i3(a){if(this.c)throw A.c(A.R(u.h)) +this.a.i3(0) +return this.b.$0()}, +$ikH:1} +A.zX.prototype={ +gf9(){return null}, +bI(a){var s=this.$ti,r=t.B +return new A.FL(this,A.a([],s.h("H>")),A.a([],r),A.a([],t._),A.a([],r),A.cA(null,null,null,t.M,t.K),s.h("FL<1>"))}} +A.FL.prototype={ +bZ(a,b){var s,r,q,p=this +p.aiF(0,b) +s=p.$ti +r=s.h("zX<1>").a(p.d).y +q=p.fy +q.toString +if(!J.j(r,s.h("em<1>").a(q).a))p.ad(r)}, +A_(a,b){this.ad(this.$ti.h("zX<1>").a(this.d).y)}, +GM(a,b){return!0}} +A.Th.prototype={} +A.Ti.prototype={} +A.Tj.prototype={} +A.Vg.prototype={} +A.Wh.prototype={} +A.b6a.prototype={ +$1(a){}, +$S(){return A.l(this.a).h("aE(fT.T)")}} +A.b6b.prototype={ +$1(a){}, +$S:255} +A.bft.prototype={ +$1(a){return this.a.h("c1<0>").a(a).iD$}, +$S(){return this.a.h("ci>(aU>)")}} +A.mE.prototype={} +A.fY.prototype={ +bI(a){return A.bFe(this,A.l(this).h("fY.T"))}, +gqS(){var s,r=this,q=r.ch +if(q===$){s=A.bRA(r,A.l(r).h("fY.T")) +q!==$&&A.aq() +r.ch=s +q=s}return q}} +A.lU.prototype={$ieG:1} +A.hk.prototype={ +A_(a,b){var s=this +s.aaE(new A.aEw(s,A.l(s).h("mE").a(s.d)),b)}} +A.aEw.prototype={ +$0(){return this.b.ay.$1(this.a)}, +$S(){return A.l(this.a).h("hk.T/()")}} +A.Qu.prototype={} +A.Qt.prototype={ +pp(){var s=this.dK$ +if(s!=null)B.b.ab(s) +this.aki()}} +A.fT.prototype={ +pp(){var s=this,r=s.hV$ +if(r!=null)r.$0() +s.ig$=s.hV$=null +r=s.hW$ +if(r!=null)r.$0() +s.hW$=null +s.HK()}, +m(){var s,r,q=this,p=q.ie$ +if(p!=null){s=p.a +A.KM(s,A.l(q).h("fT.T")) +if(q.ig$!=null){r=q.hW$ +if(r!=null)s.fj(new A.b6a(q),new A.b6b(),t.P).fu(r) +q.hW$=q.hV$=q.ig$=null}else{s=q.c +s===$&&A.b() +p.fc(new A.iU("The provider "+s.l(0)+u.e),A.ik())}}q.ZL()}, +ud(a,b){this.OS(a,b) +b.$1(this.iD$)}} +A.e3.prototype={} +A.ci.prototype={ +su2(a,b){var s=this,r=s.f +s.f=b +b.GW(new A.aOt(s,r),s.gaxF())}} +A.aOt.prototype={ +$1(a){var s=this.b +s=s==null?null:s.gw3() +return this.a.axH(s,a)}, +$S(){return this.a.$ti.h("~(1)")}} +A.Vf.prototype={ +aFf(a,b,c,d){var s,r,q=this,p=q.$ti,o=new A.e3(b,d,c,p.h("e3<1>")),n=q.a,m=q.b,l=m.length +if(n===l){p=p.h("e3<1>?") +if(n===0){p=A.aX(1,null,!1,p) +q.b=p}else{s=A.aX(l*2,null,!1,p) +for(p=q.a,n=q.b,r=0;r?")) +for(o=p.b,r=0;r0){r[q]=null;++p.d}else p.aww(q) +break}}, +RB(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=h.a +if(g===0)return;++h.c +for(s=0;s0){n=h.a-h.d +g=h.b +if(n*2<=g.length){m=A.aX(n,null,!1,h.$ti.h("e3<1>?")) +for(g=h.a,l=h.b,k=0,s=0;s)")}} +A.beg.prototype={ +$1(a){var s=a.b +return s==null?null:s.$2(this.b,this.c)}, +$S(){return this.a.$ti.h("~(e3<1>)")}} +A.bej.prototype={ +$1(a){var s=a.c +return s==null?null:s.$0()}, +$S(){return this.a.$ti.h("~(e3<1>)")}} +A.bX.prototype={ +gd0(a){var s=this.a +s===$&&A.b() +s.p5(0) +return s.gjs()}, +sd0(a,b){var s=this.a +s===$&&A.b() +s.ad(b)}} +A.bfP.prototype={ +$1(a){return this.a.h("@<0>").V(this.b).h("fl<1,2>").a(a).go}, +$S(){return this.a.h("@<0>").V(this.b).h("ci<1>(aU<2>)")}} +A.p_.prototype={} +A.aQ.prototype={ +gxX(){var s=this.a +s===$&&A.b() +return s}} +A.cu.prototype={} +A.f5.prototype={ +gcb(){var s,r,q=this,p=q.ch +if(p===$){s=A.l(q) +r=A.bSw(q,s.h("f5.0"),s.h("f5.T")) +p!==$&&A.aq() +q.ch=r +p=r}return p}, +bI(a){var s=A.l(this) +return A.bFf(this,s.h("f5.0"),s.h("f5.T"))}, +rq(a){return A.l(this).h("cu").a(a).aO()}} +A.mT.prototype={} +A.fl.prototype={ +A_(a,b){var s=this,r=A.l(s),q=r.h("p_").a(s.d),p=s.go,o=p.f +if(o==null){o=A.aRH(new A.aMm(s,q),r.h("fl.0")) +p.su2(0,o)}s.ad(q.rq(o.gjs()))}, +ud(a,b){this.OS(a,b) +b.$1(this.go)}, +GM(a,b){var s=this.go.f +if(s==null)s=null +else s=s.gw3()==null?null:a==null?b!=null:a!==b +return s!==!1}} +A.aMm.prototype={ +$0(){var s=this.b.y.$0(),r=A.cq(s).h("mT,aQ.0>").a(this.a) +s.a!==$&&A.ck() +s.a=r +return s}, +$S(){return A.l(this.a).h("fl.0()")}} +A.Qv.prototype={ +pp(){var s=this.dK$ +if(s!=null)B.b.ab(s) +this.HK()}} +A.iF.prototype={} +A.eg.prototype={ +bI(a){return A.bFg(this,A.l(this).h("eg.T"))}} +A.ix.prototype={$ibJ:1} +A.ew.prototype={ +A_(a,b){var s=this +s.ad(A.l(s).h("iF").a(s.d).ay.$1(s))}, +GM(a,b){return!J.j(a,b)}} +A.Qw.prototype={ +pp(){var s=this.dK$ +if(s!=null)B.b.ab(s) +this.HK()}} +A.Sq.prototype={} +A.em.prototype={ +gFd(){return!0}, +gw3(){return this.a}, +gjs(){return this.a}, +We(a,b,c){return b.$1(this)}, +r_(a,b,c){return this.We(a,b,c,t.z)}, +Y0(a,b){return a.$1(this.a)}, +GW(a,b){return this.Y0(a,b,t.z)}, +k(a,b){if(b==null)return!1 +return this.$ti.b(b)&&A.p(b)===A.p(this)&&J.j(b.a,this.a)}, +gu(a){return A.X(A.p(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)}, +$iEn:1} +A.fA.prototype={ +gFd(){return!1}, +gw3(){return null}, +gjs(){return A.bki(this.a,this.b)}, +We(a,b,c){return c.$1(this)}, +r_(a,b,c){return this.We(a,b,c,t.z)}, +Y0(a,b){return b.$2(this.a,this.b)}, +GW(a,b){return this.Y0(a,b,t.z)}, +k(a,b){var s=this +if(b==null)return!1 +return s.$ti.b(b)&&A.p(b)===A.p(s)&&b.b===s.b&&J.j(b.a,s.a)}, +gu(a){return A.X(A.p(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)}, +$iEn:1} +A.bij.prototype={ +$1(a){return a.gYw()==="riverpod"}, +$S:681} +A.JM.prototype={ +gfM(){return!0}, +c4(a,b,c,d){var s,r,q,p,o=null +try{o=this.a.$0()}catch(q){s=A.ak(q) +r=A.aJ(q) +p=A.bML(s,r,this.$ti.c).c4(a,b,c,d) +return p}return o.c4(a,b,c,d)}, +fN(a,b,c){return this.c4(a,null,b,c)}, +lr(a,b,c){return this.c4(a,b,c,null)}} +A.IB.prototype={ +gw4(a){return new A.vo(this,this.$ti.h("vo<1>"))}} +A.au8.prototype={ +$0(){var s,r,q=this,p=q.a,o=p.c +if(o!=null&&!p.a){p=q.b +return new A.aal(o.a,o.b,q.c.h("aal<0>")).td(new A.j_(p,A.l(p).h("j_<1>")))}s=p.b +if(s!==B.r6&&p.a){p=q.b +r=q.c +return new A.aam(r.a(s),r.h("aam<0>")).td(new A.j_(p,A.l(p).h("j_<1>")))}p=q.b +return new A.j_(p,A.l(p).h("j_<1>"))}, +$S(){return this.c.h("bz<0>()")}} +A.ap8.prototype={} +A.vo.prototype={ +gfM(){return!0}, +gu(a){return(A.cS(this.a)^892482866)>>>0}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +return b instanceof A.vo&&b.a===this.a}, +c4(a,b,c,d){return this.a.c4(a,b,c,d)}, +fN(a,b,c){return this.c4(a,null,b,c)}, +lr(a,b,c){return this.c4(a,b,c,null)}} +A.F9.prototype={ +gw4(a){return new A.Hv(this,this.$ti.h("Hv<1>"))}, +dP(a,b){if(this.c)throw A.c(A.R("You cannot add an error while items are being added from addStream")) +this.aCE(a,b)}, +pF(a){return this.dP(a,null)}, +aCE(a,b){var s,r=this.b +if((r.c&4)===0){s=this.e +s.c=new A.a1v(a,b) +s.a=!1}r.dP(a,b)}, +F(a,b){if(this.c)throw A.c(A.R(u.b0)) +this.aCD(0,b)}, +aCD(a,b){var s,r=this.b +if((r.c&4)===0){s=this.e +s.b=b +s.a=!0}r.F(0,b)}, +ah(a){if(this.c)throw A.c(A.R("You cannot close the subject while items are being added from addStream")) +return this.b.ah(0)}, +$iei:1} +A.Hv.prototype={ +gfM(){return!0}, +gu(a){return(A.cS(this.a)^892482866)>>>0}, +k(a,b){if(b==null)return!1 +if(this===b)return!0 +return b instanceof A.Hv&&b.a===this.a}, +c4(a,b,c,d){return this.a.c4(a,b,c,d)}, +fN(a,b,c){return this.c4(a,null,b,c)}, +lr(a,b,c){return this.c4(a,b,c,null)}} +A.Hp.prototype={ +iJ(a){return this.gpx().F(0,a)}, +nC(a,b,c){return this.gpx().dP(b,c)}, +Wt(){return this.gpx().ah(0)}, +Wp(a){}, +WC(){this.gpx().F(0,this.b)}, +ack(a){}, +acm(a){}} +A.aam.prototype={ +td(a){var s=this.$ti.c +return A.byF(a,new A.aXM(this),s,s)}} +A.aXM.prototype={ +$0(){var s=this.a +return new A.Hp(s.a,s.$ti.h("Hp<1>"))}, +$S(){return this.a.$ti.h("Hp<1>()")}} +A.Ho.prototype={ +iJ(a){return this.gpx().F(0,a)}, +nC(a,b,c){return this.gpx().dP(b,c)}, +Wt(){return this.gpx().ah(0)}, +Wp(a){}, +WC(){this.gpx().dP(this.b,this.c)}, +ack(a){}, +acm(a){}} +A.aal.prototype={ +td(a){var s=this.$ti.c +return A.byF(a,new A.aXL(this),s,s)}} +A.aXL.prototype={ +$0(){var s=this.a +return new A.Ho(s.a,s.b,s.$ti.h("Ho<1>"))}, +$S(){return this.a.$ti.h("Ho<1>()")}} +A.b5_.prototype={ +l(a){return"<>"}} +A.a1v.prototype={ +l(a){return"ErrorAndStackTrace{error: "+A.i(this.a)+", stacktrace: "+A.i(this.b)+"}"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)s=b instanceof A.a1v&&A.p(r)===A.p(b)&&J.j(r.a,b.a)&&r.b==b.b +else s=!0 +return s}, +gu(a){return(J.T(this.a)^J.T(this.b))>>>0}} +A.KK.prototype={ +gpx(){var s=this.a +return s==null?A.r(A.R("Must call setSink(sink) before accessing!")):s}} +A.bfl.prototype={ +$1(a){var s={},r=this.a.$0() +r.a=new A.SP(a,this.c.h("SP<0>")) +s.a=null +s.b=!1 +r.WC() +new A.bfm(s,this.b,r).$0() +a.r=new A.bfk(s,r)}, +$S(){return this.c.h("~(a69<0>)")}} +A.bfm.prototype={ +$1(a){var s,r,q,p=this.a +if(p.b)return +s=this.c +r=s.gFX() +q=s.gtS(s) +p.a=this.b.fN(r,s.gWs(),q)}, +$0(){return this.$1(null)}, +$S:258} +A.bfk.prototype={ +$0(){var s,r,q=this.a +q.b=!0 +s=q.a +r=s==null?null:s.aI(0) +q.a=null +return A.bzI(r,this.b.Wp(0))}, +$S:0} +A.bfp.prototype={ +$0(){return this.a.$0()}, +$S(){return this.b.h("@<0>").V(this.c).h("KK<1,2>()")}} +A.bfq.prototype={ +$0(){var s=this,r=s.c,q=s.d +r.T().a=q +r.T().WC() +new A.bfs(s.a,s.b,r,q).$0()}, +$S:0} +A.bfs.prototype={ +$1(a){var s,r,q,p,o=this,n=o.a +if(n.b)return +s=o.b +r=o.c +q=r.T().gFX() +p=J.bEn(r.T()) +n.a=s.fN(q,r.T().gWs(),p) +if(!s.gfM()){s=o.d +s.sWD(0,new A.bfn(n,r)) +s.sWI(0,new A.bfo(n,r))}}, +$0(){return this.$1(null)}, +$S:258} +A.bfn.prototype={ +$0(){this.a.a.iK(0) +J.bEz(this.b.T())}, +$S:0} +A.bfo.prototype={ +$0(){this.a.a.iq(0) +J.bEA(this.b.T())}, +$S:0} +A.bfr.prototype={ +$0(){var s,r,q=this.a +q.b=!0 +s=q.a +r=s==null?null:s.aI(0) +q.a=null +return A.bzI(r,J.bEy(this.b.T()))}, +$S:0} +A.SP.prototype={ +F(a,b){return this.a.a7u(b)}, +dP(a,b){return this.a.Tr(a,b)}, +ah(a){return this.a.U6()}, +$iei:1} +A.Nq.prototype={ +a8(){return new A.ale(A.aW(t.E),B.m)}} +A.a7U.prototype={ +bI(a){return new A.ald(this,B.an)}} +A.ale.prototype={ +A(a){return new A.Sg(this,this.a.c,null)}} +A.Sg.prototype={ +dh(a){return!0}} +A.ald.prototype={ +xM(a){}, +hI(a,b){var s,r=this +r.OG(a,b) +s=r.aj(t.Ze) +s.toString +s=s.f +r.y2=s +s.d.F(0,r) +s=r.y2 +s.a.d.sj(0,s.d)}, +ca(){var s,r=this +r.HJ() +s=r.aj(t.Ze) +s.toString +s=s.f +r.y2=s +s.d.F(0,r) +s=r.y2 +s.a.d.sj(0,s.d)}, +kJ(){var s=this,r=s.y2 +r===$&&A.b() +r.d.E(0,s) +r=s.y2 +r.a.d.sj(0,r.d) +s.yC()}} +A.kB.prototype={ +k(a,b){var s=this +if(b==null)return!1 +if(J.a_(b)!==A.p(s))return!1 +return b.a===s.a&&b.b===s.b&&b.c===s.c}, +gu(a){return 31*(31*(7+B.f.gu(this.a))+B.e.gu(this.b))+B.e.gu(this.c)}, +l(a){return"ItemPosition(index: "+this.a+", itemLeadingEdge: "+A.i(this.b)+", itemTrailingEdge: "+A.i(this.c)+")"}} +A.CV.prototype={$ia38:1} +A.N3.prototype={ +a8(){return new A.Tf(new A.kR(),new A.bF(null,$.aH(),t.xP),B.m)}, +aLQ(a,b){return this.d.$2(a,b)}} +A.Tf.prototype={ +aX(){var s,r=this +r.b9() +s=r.a.f +r.f!==$&&A.ck() +r.f=s +s.P(0,r.ga4E()) +r.Sw()}, +m(){var s=this.f +s===$&&A.b() +s.H(0,this.ga4E()) +this.b0()}, +b1(a){this.bh(a) +this.Sw()}, +A(a){var s,r,q,p,o,n,m,l,k=this,j=null,i=k.a,h=i.x,g=k.d,f=k.f +f===$&&A.b() +s=i.y +r=i.z +q=i.at +p=i.as +i=i.c +o=A.a([],t.p) +n=k.a +m=n.w +if(m>0){if(n.y===B.H)n.z +else n.z +o.push(new A.zt(new A.aK(0,0,0,0),new A.mm(new A.kJ(new A.b9F(k),2*m,!0,!0,!1,A.t5(),j),j),j))}n=k.a +if(n.y===B.H)if(n.z)m=new A.aK(0,0,0,0) +else m=new A.aK(0,0,0,0) +else if(n.z)m=new A.aK(0,0,0,0) +else m=new A.aK(0,0,0,0) +n=n.c!==0?1:0 +o.push(new A.zt(m,new A.mm(new A.kJ(new A.b9G(k),n,!0,!0,!1,A.t5(),j),j),g)) +n=k.a +m=n.w +if(m>=0&&m0&&o>n-1)s.c=n-1 +p.f.a=m +p=m.ga6J() +s.a.a.P(0,p) +m.e.a.a.P(0,p) +m.d.b.P(0,new A.bbW(m))}, +cf(){this.amd() +this.a.f.a=this}, +fd(){this.a.f.a=null +this.rS()}, +m(){var s=this,r=s.ga6J() +s.d.a.a.H(0,r) +s.e.a.a.H(0,r) +r=s.x +if(r!=null)r.m() +s.ame()}, +b1(a){var s,r,q,p=this +p.bh(a) +s=a.f +r=s.a +if(r===p)s.a=null +s=p.a +r=s.f +q=r.a +if(q!==p){r.a=null +r.a=p}s=s.c +if(s===0)p.ad(new A.bbT(p)) +else{if(p.d.c>s-1)p.ad(new A.bbU(p)) +if(p.e.c>p.a.c-1)p.ad(new A.bbV(p))}}, +A(a){return new A.D5(new A.bbS(this),null)}, +Rw(a,b){var s,r=this,q={} +q.a=b +r.JK(!0) +s=r.a.c-1 +if(b>s)q.a=s +r.ad(new A.bbF(q,r,a))}, +Du(a,b,c,d,e){return this.aBi(a,b,c,d,e)}, +aBi(a,b,c,d,e){var s=0,r=A.y(t.H),q=this,p,o +var $async$Du=A.u(function(f,g){if(f===1)return A.v(g,r) +while(true)switch(s){case 0:o={} +o.a=d +p=q.a.c-1 +if(d>p)o.a=p +else p=d +s=q.w?2:4 +break +case 2:p=new A.a7($.ac,t.b) +q.JK(!0) +$.cB.y2$.push(new A.bbG(o,q,a,c,b,e,new A.aD(p,t.gR))) +s=5 +return A.t(p,$async$Du) +case 5:s=3 +break +case 4:s=6 +return A.t(q.zu(a,b,c,p,e),$async$Du) +case 6:case 3:return A.w(null,r)}}) +return A.x($async$Du,r)}, +zu(a,b,c,d,e){return this.aCy(a,b,c,d,e)}, +aCy(a,b,c,d,e){var s=0,r=A.y(t.H),q=this,p,o,n,m,l,k,j +var $async$zu=A.u(function(f,g){if(f===1)return A.v(g,r) +while(true)switch(s){case 0:l=q.d +k=d>l.c?1:-1 +j=A.bJ9(l.a.a.a,new A.bbJ(d)) +l=q.d.b +s=j!=null?2:4 +break +case 2:p=j.b +l=B.b.gaV(l.f).ax +l.toString +o=q.d.b +n=B.b.gaV(o.f).at +n.toString +m=B.b.gaV(q.d.b.f).ax +m.toString +s=5 +return A.t(o.j3(n+p*l-a*m,b,c),$async$zu) +case 5:s=3 +break +case 4:l=B.b.gaV(l.f).ax +l.toString +p=$.ac +o=t.b +n=new A.a7(p,o) +m=t.gR +o=new A.a7(p,o) +q.r=new A.bbK(q,c,e,k,a,new A.aD(n,m),2*l,b,new A.aD(o,m)) +q.ad(new A.bbL(q,d,a)) +s=6 +return A.t(A.qv(A.a([n,o],t.mo),t.H),$async$zu) +case 6:q.aCC() +case 3:return A.w(null,r)}}) +return A.x($async$zu,r)}, +JK(a){var s,r,q=this +if(!q.w)return +if(a){s=q.d.b +r=s.f +if(r.length!==0){r=B.b.gaV(r).at +r.toString +s.fg(r)}s=q.e.b +r=s.f +if(r.length!==0){r=B.b.gaV(r).at +r.toString +s.fg(r)}}if(q.c!=null)q.ad(new A.bbM(q))}, +aCC(){return this.JK(!1)}, +aEk(){var s,r,q=this,p=J.lT(q.d.a.a.a,new A.bbN()) +if(p.gd2(p)){s=q.c +s.toString +r=A.yu(s) +r.toString +s=q.c +s.toString +r.NT(s,p.lF(0,new A.bbO()))}q.a.r.a.sj(0,p)}, +$iaP:1} +A.bbX.prototype={ +$0(){}, +$S:0} +A.bbW.prototype={ +$0(){var s=this.a,r=B.b.gaV(s.d.b.f).at +r.toString +s.y=r +r=s.w +s.a.toString +if(B.b7.uh(!r,!1))s.a.toString}, +$S:0} +A.bbT.prototype={ +$0(){var s=this.a +s.d.c=0 +s.e.c=0}, +$S:0} +A.bbU.prototype={ +$0(){var s=this.a +s.d.c=s.a.c-1}, +$S:0} +A.bbV.prototype={ +$0(){var s=this.a +s.e.c=s.a.c-1}, +$S:0} +A.bbS.prototype={ +$2(a,b){var s,r,q,p,o,n,m,l,k,j,i,h=null,g=this.a,f=g.a,e=f.Q===B.H?b.d:b.b +f=f.db +s=Math.max(e*2,f) +f=g.d +e=g.r +r=g.f +q=A.a([],t.x8) +p=g.a +o=p.d +n=p.e +m=p.c +l=g.d +k=l.c +j=p.Q +p=p.as +i=t.WA +f=A.a([new A.DX(new A.cY(new A.k_(r,new A.bd(q,t.jc),0),!1,new A.dB(new A.bbP(g),A.bto(!0,!0,!0,l.d,s,l.b,o,m,l.a,h,h,k,p,j,h,n,!1),h,i),h),e,f.e)],t.p) +if(g.w){e=g.e +q=g.r +p=g.a +o=p.d +n=p.e +m=p.c +l=e.c +k=p.Q +p=p.as +f.push(new A.DX(new A.cY(r,!1,new A.dB(new A.bbQ(),A.bto(!0,!0,!0,e.d,s,e.b,o,m,e.a,h,h,l,p,k,h,n,!1),h,i),h),q,e.e))}return A.uc(B.ci,A.fp(B.bu,f,B.C,B.aJ,h),h,h,new A.bbR(g),h,h,h)}, +$S:683} +A.bbR.prototype={ +$1(a){return this.a.JK(!0)}, +$S:81} +A.bbP.prototype={ +$1(a){return this.a.w}, +$S:49} +A.bbQ.prototype={ +$1(a){return!1}, +$S:49} +A.bbF.prototype={ +$0(){var s=this.b +s.d.b.fg(0) +s=s.d +s.c=this.a.a +s.d=this.c}, +$S:0} +A.bbG.prototype={ +$1(a){return this.aeV(a)}, +aeV(a){var s=0,r=A.y(t.H),q=this +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=2 +return A.t(q.b.zu(q.c,q.e,q.d,q.a.a,q.f),$async$$1) +case 2:q.r.fm(0) +return A.w(null,r)}}) +return A.x($async$$1,r)}, +$S:684} +A.bbJ.prototype={ +$1(a){return a.a===this.a}, +$S:153} +A.bbK.prototype={ +$0(){var s=this +$.cB.y2$.push(new A.bbI(s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,s.x))}, +$S:0} +A.bbI.prototype={ +$1(a){var s,r,q,p,o,n=this,m=n.a +m.r=new A.bbH() +s=m.x +if(s!=null)s.m() +s=n.b +r=A.bx(B.A,null,s,0,null,1,null,m) +r.bS(0) +m.x=r +r=n.c +q=t.Od +p=t.Ns +p=A.b_L(A.a([new A.hv(new A.qa(0,0,q),r[0],p),new A.hv(new A.aR(0,1,t.Y),r[1],p),new A.hv(new A.qa(1,1,q),r[2],p)],t.x0),t.i) +m.f.sbP(0,new A.ax(m.x,p,p.$ti.h("ax"))) +p=m.e +r=n.d +q=B.b.gaV(m.d.b.f).ax +q.toString +o=B.b.gaV(m.e.b.f).ax +o.toString +p.b.fg(-r*(2*q-n.e*o)) +o=m.d.b +q=B.b.gaV(o.f).at +q.toString +p=n.w +n.f.cU(0,o.j3(q+r*n.r,p,s)) +n.x.cU(0,m.e.b.j3(0,p,s))}, +$S:5} +A.bbH.prototype={ +$0(){}, +$S:0} +A.bbL.prototype={ +$0(){var s=this.a,r=s.e +r.c=this.b +r.d=this.c +s.w=!0}, +$S:0} +A.bbM.prototype={ +$0(){var s,r=this.a,q=r.f +if(q.gj(q)>=0.5){s=r.d +r.d=r.e +r.e=s}r.w=!1 +q.sbP(0,B.qq)}, +$S:0} +A.bbN.prototype={ +$1(a){return a.b<1&&a.c>0}, +$S:153} +A.bbO.prototype={ +$2(a,b){return a.b=a?s:r +f=e.qM +f.toString +return e.FC(e.gU0(),B.e.hw(s,-f,0),q,b,B.hy,i,a,o,k,p,h)}, +gVI(){return this.Lx}, +XR(a,b){var s,r=this +switch(a.a){case 0:s=r.EX +s===$&&A.b() +r.EX=s+b.a +break +case 1:s=r.EW +s===$&&A.b() +r.EW=s-b.a +break}if(b.x)r.Lx=!0}} +A.JF.prototype={$iJF:1} +A.uX.prototype={ +aq(a,b){return J.jC(this.a,b)}, +E(a,b){J.pW(this.a,b) +return $.biF().E(0,"flutter."+b)}, +wz(a,b,c){var s,r +A.bi(c,"value") +s=this.a +r=J.ct(s) +if(t.yp.b(c))r.n(s,b,J.fg(c)) +else r.n(s,b,c) +return $.biF().w_(a,"flutter."+b,c)}} +A.aKv.prototype={ +E(a,b){return this.aOL(0,b)}, +aOL(a,b){var s=0,r=A.y(t.y),q,p +var $async$E=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:s=3 +return A.t(B.ot.pC("remove",A.am(["key",b],t.N,t.z),!1,t.y),$async$E) +case 3:p=d +p.toString +q=p +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$E,r)}, +w_(a,b,c){return this.agA(a,b,c)}, +agA(a,b,c){var s=0,r=A.y(t.y),q,p +var $async$w_=A.u(function(d,e){if(d===1)return A.v(e,r) +while(true)switch(s){case 0:s=3 +return A.t(B.ot.pC("set"+a,A.am(["key",b,"value",c],t.N,t.z),!1,t.y),$async$w_) +case 3:p=e +p.toString +q=p +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$w_,r)}, +jx(a){var s=0,r=A.y(t.nf),q,p,o,n +var $async$jx=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:p=t.N +o=t.K +s=3 +return A.t(B.ot.VX("getAll",p,o),$async$jx) +case 3:n=c +q=n==null?A.I(p,o):n +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$jx,r)}} +A.aUE.prototype={} +A.aNK.prototype={} +A.aF7.prototype={} +A.aUC.prototype={ +jx(a){var s=0,r=A.y(t.nf),q,p=this +var $async$jx=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:q=p.NU(new A.aF7(new A.aNK("flutter.",null))) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$jx,r)}, +NU(a){return this.af7(a)}, +af7(a){var s=0,r=A.y(t.nf),q,p=this,o,n,m,l,k,j +var $async$NU=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:k=a.a +j=A.I(t.N,t.K) +for(o=p.as3(k.a,k.b),n=J.al(o.a),o=new A.jt(n,o.b,o.$ti.h("jt<1>"));o.v();){m=n.gG(n) +l=self.window.localStorage.getItem(m) +l.toString +j.n(0,m,p.apZ(l))}q=j +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$NU,r)}, +E(a,b){return this.aOM(0,b)}, +aOM(a,b){var s=0,r=A.y(t.y),q +var $async$E=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:self.window.localStorage.removeItem(b) +q=!0 +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$E,r)}, +w_(a,b,c){return this.agB(a,b,c)}, +agB(a,b,c){var s=0,r=A.y(t.y),q +var $async$w_=A.u(function(d,e){if(d===1)return A.v(e,r) +while(true)switch(s){case 0:self.window.localStorage.setItem(b,B.az.pQ(c)) +q=!0 +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$w_,r)}, +as3(a,b){var s=A.bJp(self.window.localStorage) +return new A.ba(s,new A.aUD(a,b),A.ab(s).h("ba<1>"))}, +apZ(a){var s=B.az.ha(0,a) +if(t.j.b(s))return J.j6(s,t.N) +s.toString +return s}} +A.aUD.prototype={ +$1(a){var s +if(B.c.cc(a,this.a))s=!0 +else s=!1 +return s}, +$S:11} +A.EP.prototype={ +J(){return"ShimmerDirection."+this.b}} +A.Os.prototype={ +a8(){return new A.amH(null,null,B.m)}} +A.amH.prototype={ +aX(){var s,r,q=this +q.b9() +q.a.toString +s=A.bx(B.A,null,B.v8,0,null,1,null,q) +s.cF() +r=s.ej$ +r.b=!0 +r.a.push(new A.bci(q)) +q.d=s +q.a.toString +s.bS(0)}, +b1(a){var s +this.a.toString +s=this.d +s===$&&A.b() +s.bS(0) +this.bh(a)}, +A(a){var s=this.d +s===$&&A.b() +return A.hg(s,new A.bch(this),this.a.c)}, +m(){var s=this.d +s===$&&A.b() +s.m() +this.amj()}, +$iaP:1} +A.bci.prototype={ +$1(a){var s +if(a!==B.a9)return +s=this.a;++s.e +s.a.toString +s=s.d +s===$&&A.b() +s.Bq(0)}, +$S:9} +A.bch.prototype={ +$2(a,b){var s=this.a,r=s.a.f +s=s.d +s===$&&A.b() +s=s.x +s===$&&A.b() +return new A.Hi(s,B.aqx,r,b,null)}, +$S:687} +A.Hi.prototype={ +b5(a){var s=new A.amG(this.f,this.r,this.e,null,A.ay(t.T)) +s.b4() +s.sbN(null) +return s}, +bb(a,b){b.saNX(0,this.e) +b.safT(this.r) +b.stu(0,this.f)}} +A.amG.prototype={ +gpG(){return this.k3$!=null}, +saNX(a,b){if(b===this.az)return +this.az=b +this.b_()}, +safT(a){if(a.k(0,this.ac))return +this.ac=a +this.b_()}, +stu(a,b){if(b===this.D)return +this.D=b +this.aa()}, +aE(a,b){var s,r,q,p,o,n,m,l=this,k=l.k3$ +if(k!=null){s=k.gq(k).a +k=l.k3$ +r=k.gq(k).b +k=l.D +if(k===B.aqy){k=s+(-s-s)*l.az-s +q=new A.L(k,0,k+3*s,0+r)}else if(k===B.aqz){k=-r +k=k+(r-k)*l.az-r +q=new A.L(0,k,0+s,k+3*r)}else{p=l.az +if(k===B.aqA){k=r+(-r-r)*p-r +q=new A.L(0,k,0+s,k+3*r)}else{k=-s +p=k+(s-k)*p-s +q=new A.L(p,0,p+3*s,0+r)}}k=t.uv +if(k.a(A.J.prototype.gb2.call(l,l))==null)l.ch.sb2(0,new A.Op(A.I(t.S,t.Q),A.ay(t.kd))) +p=k.a(A.J.prototype.gb2.call(l,l)) +p.toString +o=l.ac.aHL(0,q) +if(o!==p.k3){p.k3=o +p.hF()}o=l.gq(l) +n=b.a +m=b.b +o=new A.L(n,m,n+o.a,m+o.b) +if(!o.k(0,p.k4)){p.k4=o +p.hF()}if(B.iT!==p.ok){p.ok=B.iT +p.hF()}k=k.a(A.J.prototype.gb2.call(l,l)) +k.toString +a.tZ(k,A.ih.prototype.gil.call(l),b)}else l.ch.sb2(0,null)}} +A.Wt.prototype={ +m(){var s=this,r=s.c3$ +if(r!=null)r.H(0,s.ghP()) +s.c3$=null +s.b0()}, +cf(){this.cW() +this.cO() +this.hQ()}} +A.aVP.prototype={ +gt(a){return this.c.length}, +gaM5(a){return this.b.length}, +amR(a,b){var s,r,q,p,o,n +for(s=this.c,r=s.length,q=this.b,p=0;p=r||s[n]!==10)o=10}if(o===10)q.push(p+1)}}, +BV(a){var s,r=this +if(a<0)throw A.c(A.cb("Offset may not be negative, was "+a+".")) +else if(a>r.c.length)throw A.c(A.cb("Offset "+a+u.D+r.gt(r)+".")) +s=r.b +if(a=B.b.gX(s))return s.length-1 +if(r.awd(a)){s=r.d +s.toString +return s}return r.d=r.arg(a)-1}, +awd(a){var s,r,q=this.d +if(q==null)return!1 +s=this.b +if(a=r-1||a=r-2||aa)p=r +else s=r+1}return p}, +NX(a){var s,r,q=this +if(a<0)throw A.c(A.cb("Offset may not be negative, was "+a+".")) +else if(a>q.c.length)throw A.c(A.cb("Offset "+a+" must be not be greater than the number of characters in the file, "+q.gt(q)+".")) +s=q.BV(a) +r=q.b[s] +if(r>a)throw A.c(A.cb("Line "+s+" comes after offset "+a+".")) +return a-r}, +qh(a){var s,r,q,p,o=this +if(a<0)throw A.c(A.cb("Line may not be negative, was "+a+".")) +else{s=o.b +r=s.length +if(a>=r)throw A.c(A.cb("Line "+a+" must be less than the number of lines in the file, "+o.gaM5(o)+"."))}q=s[a] +if(q<=o.c.length){p=a+1 +s=p=s[p]}else s=!0 +if(s)throw A.c(A.cb("Line "+a+" doesn't have 0 columns.")) +return q}} +A.a1J.prototype={ +geR(){return this.a.a}, +geE(a){return this.a.BV(this.b)}, +gfA(){return this.a.NX(this.b)}, +gc5(a){return this.b}} +A.Gr.prototype={ +geR(){return this.a.a}, +gt(a){return this.c-this.b}, +gc2(a){return A.bko(this.a,this.b)}, +gcg(a){return A.bko(this.a,this.c)}, +gef(a){return A.jq(B.ou.cT(this.a.c,this.b,this.c),0,null)}, +gc9(a){var s=this,r=s.a,q=s.c,p=r.BV(q) +if(r.NX(q)===0&&p!==0){if(q-s.b===0)return p===r.b.length-1?"":A.jq(B.ou.cT(r.c,r.qh(p),r.qh(p+1)),0,null)}else q=p===r.b.length-1?r.c.length:r.qh(p+1) +return A.jq(B.ou.cT(r.c,r.qh(r.BV(s.b)),q),0,null)}, +bO(a,b){var s +if(!(b instanceof A.Gr))return this.ajI(0,b) +s=B.f.bO(this.b,b.b) +return s===0?B.f.bO(this.c,b.c):s}, +k(a,b){var s=this +if(b==null)return!1 +if(!(b instanceof A.Gr))return s.ajH(0,b) +return s.b===b.b&&s.c===b.c&&J.j(s.a.a,b.a.a)}, +gu(a){return A.X(this.b,this.c,this.a.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a,B.a)}, +$ird:1} +A.aFT.prototype={ +aKK(a4){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e,d,c,b,a,a0,a1=this,a2=null,a3=a1.a +a1.a7e(B.b.gO(a3).c) +s=a1.e +r=A.aX(s,a2,!1,t.Xk) +for(q=a1.r,s=s!==0,p=a1.b,o=0;o0){m=a3[o-1] +l=m.c +k=n.c +if(!J.j(l,k)){a1.Kc("\u2575") +q.a+="\n" +a1.a7e(k)}else if(m.b+1!==n.b){a1.aF_("...") +q.a+="\n"}}for(l=n.d,k=A.ab(l).h("da<1>"),j=new A.da(l,k),j=new A.c2(j,j.gt(j),k.h("c2")),k=k.h("av.E"),i=n.b,h=n.a;j.v();){g=j.d +if(g==null)g=k.a(g) +f=g.a +e=f.gc2(f) +e=e.geE(e) +d=f.gcg(f) +if(e!==d.geE(d)){e=f.gc2(f) +f=e.geE(e)===i&&a1.awe(B.c.S(h,0,f.gc2(f).gfA()))}else f=!1 +if(f){c=B.b.eZ(r,a2) +if(c<0)A.r(A.bZ(A.i(r)+" contains no null elements.",a2)) +r[c]=g}}a1.aEZ(i) +q.a+=" " +a1.aEY(n,r) +if(s)q.a+=" " +b=B.b.xv(l,new A.aGd()) +a=b===-1?a2:l[b] +k=a!=null +if(k){j=a.a +g=j.gc2(j) +g=g.geE(g)===i?j.gc2(j).gfA():0 +f=j.gcg(j) +a1.aEW(h,g,f.geE(f)===i?j.gcg(j).gfA():h.length,p)}else a1.Ke(h) +q.a+="\n" +if(k)a1.aEX(n,a,r) +for(k=l.length,a0=0;a0")),q=this.r,r=r.h("ae.E");s.v();){p=s.d +if(p==null)p=r.a(p) +if(p===9)q.a+=B.c.av(" ",4) +else q.a+=A.el(p)}}, +Kd(a,b,c){var s={} +s.a=c +if(b!=null)s.a=B.f.l(b+1) +this.oJ(new A.aGb(s,this,a),"\x1b[34m")}, +Kc(a){return this.Kd(a,null,null)}, +aF_(a){return this.Kd(null,null,a)}, +aEZ(a){return this.Kd(null,a,null)}, +Tm(){return this.Kd(null,null,null)}, +Q3(a){var s,r,q,p +for(s=new A.i2(a),r=t.Hz,s=new A.c2(s,s.gt(s),r.h("c2")),r=r.h("ae.E"),q=0;s.v();){p=s.d +if((p==null?r.a(p):p)===9)++q}return q}, +awe(a){var s,r,q +for(s=new A.i2(a),r=t.Hz,s=new A.c2(s,s.gt(s),r.h("c2")),r=r.h("ae.E");s.v();){q=s.d +if(q==null)q=r.a(q) +if(q!==32&&q!==9)return!1}return!0}, +apf(a,b){var s,r=this.b!=null +if(r&&b!=null)this.r.a+=b +s=a.$0() +if(r&&b!=null)this.r.a+="\x1b[0m" +return s}, +oJ(a,b){return this.apf(a,b,t.z)}} +A.aGc.prototype={ +$0(){return this.a}, +$S:114} +A.aFV.prototype={ +$1(a){var s=a.d +s=new A.ba(s,new A.aFU(),A.ab(s).h("ba<1>")) +return s.gt(s)}, +$S:689} +A.aFU.prototype={ +$1(a){var s=a.a,r=s.gc2(s) +r=r.geE(r) +s=s.gcg(s) +return r!==s.geE(s)}, +$S:167} +A.aFW.prototype={ +$1(a){return a.c}, +$S:691} +A.aFY.prototype={ +$1(a){var s=a.a.geR() +return s==null?new A.C():s}, +$S:692} +A.aFZ.prototype={ +$2(a,b){return a.a.bO(0,b.a)}, +$S:693} +A.aG_.prototype={ +$1(a){var s,r,q,p,o,n,m,l,k,j,i,h,g,f,e=a.a,d=a.b,c=A.a([],t.Kx) +for(s=J.ct(d),r=s.gam(d),q=t._Y;r.v();){p=r.gG(r).a +o=p.gc9(p) +n=A.bh_(o,p.gef(p),p.gc2(p).gfA()) +n.toString +n=B.c.t9("\n",B.c.S(o,0,n)) +m=n.gt(n) +p=p.gc2(p) +l=p.geE(p)-m +for(p=o.split("\n"),n=p.length,k=0;kB.b.gX(c).b)c.push(new A.o3(j,l,e,A.a([],q)));++l}}i=A.a([],q) +for(r=c.length,h=0,k=0;k")),p=p.h("av.E");q.v();){n=q.d +if(n==null)n=p.a(n) +f=n.a +f=f.gc2(f) +if(f.geE(f)>j.b)break +i.push(n)}h+=i.length-g +B.b.I(j.d,i)}return c}, +$S:694} +A.aFX.prototype={ +$1(a){var s=a.a +s=s.gcg(s) +return s.geE(s)" +return null}, +$S:0} +A.aG7.prototype={ +$0(){var s=this.b===this.c.b?"\u250c":"\u2514" +this.a.r.a+=s}, +$S:4} +A.aG8.prototype={ +$0(){var s=this.b==null?"\u2500":"\u253c" +this.a.r.a+=s}, +$S:4} +A.aG9.prototype={ +$0(){this.a.r.a+="\u2500" +return null}, +$S:0} +A.aGa.prototype={ +$0(){var s,r,q=this,p=q.a,o=p.a?"\u253c":"\u2502" +if(q.c!=null)q.b.r.a+=o +else{s=q.e +r=s.b +if(q.d===r){s=q.b +s.oJ(new A.aG5(p,s),p.b) +p.a=!0 +if(p.b==null)p.b=s.b}else{if(q.r===r){r=q.f.a +s=r.gcg(r).gfA()===s.a.length}else s=!1 +r=q.b +if(s)r.r.a+="\u2514" +else r.oJ(new A.aG6(r,o),p.b)}}}, +$S:4} +A.aG5.prototype={ +$0(){var s=this.a.a?"\u252c":"\u250c" +this.b.r.a+=s}, +$S:4} +A.aG6.prototype={ +$0(){this.a.r.a+=this.b}, +$S:4} +A.aG1.prototype={ +$0(){var s=this +return s.a.Ke(B.c.S(s.b,s.c,s.d))}, +$S:0} +A.aG2.prototype={ +$0(){var s,r,q=this.a,p=q.r,o=p.a,n=this.c.a,m=n.gc2(n).gfA(),l=n.gcg(n).gfA() +n=this.b.a +s=q.Q3(B.c.S(n,0,m)) +r=q.Q3(B.c.S(n,m,l)) +m+=s*3 +p.a+=B.c.av(" ",m) +p=p.a+=B.c.av("^",Math.max(l+(s+r)*3-m,1)) +return p.length-o.length}, +$S:67} +A.aG3.prototype={ +$0(){var s=this.c.a +return this.a.aEV(this.b,s.gc2(s).gfA())}, +$S:0} +A.aG4.prototype={ +$0(){var s,r=this,q=r.a,p=q.r,o=p.a +if(r.b)p.a+=B.c.av("\u2500",3) +else{s=r.d.a +q.a7d(r.c,Math.max(s.gcg(s).gfA()-1,0),!1)}return p.a.length-o.length}, +$S:67} +A.aGb.prototype={ +$0(){var s=this.b,r=s.r,q=this.a.a +if(q==null)q="" +s=r.a+=B.c.MZ(q,s.d) +q=this.c +r.a=s+(q==null?"\u2502":q)}, +$S:4} +A.jv.prototype={ +l(a){var s,r,q=this.a,p=q.gc2(q) +p=p.geE(p) +s=q.gc2(q).gfA() +r=q.gcg(q) +q=""+"primary "+(""+p+":"+s+"-"+r.geE(r)+":"+q.gcg(q).gfA()) +return q.charCodeAt(0)==0?q:q}} +A.b6L.prototype={ +$0(){var s,r,q,p,o=this.a +if(!(t.D_.b(o)&&A.bh_(o.gc9(o),o.gef(o),o.gc2(o).gfA())!=null)){s=o.gc2(o) +s=A.a9X(s.gc5(s),0,0,o.geR()) +r=o.gcg(o) +r=r.gc5(r) +q=o.geR() +p=A.bU0(o.gef(o),10) +o=A.aXx(s,A.a9X(r,A.bvY(o.gef(o)),p,q),o.gef(o),o.gef(o))}return A.bP3(A.bP5(A.bP4(o)))}, +$S:695} +A.o3.prototype={ +l(a){return""+this.b+': "'+this.a+'" ('+B.b.ck(this.d,", ")+")"}} +A.nH.prototype={ +US(a){var s=this.a +if(!J.j(s,a.geR()))throw A.c(A.bZ('Source URLs "'+A.i(s)+'" and "'+A.i(a.geR())+"\" don't match.",null)) +return Math.abs(this.b-a.gc5(a))}, +bO(a,b){var s=this.a +if(!J.j(s,b.geR()))throw A.c(A.bZ('Source URLs "'+A.i(s)+'" and "'+A.i(b.geR())+"\" don't match.",null)) +return this.b-b.gc5(b)}, +k(a,b){if(b==null)return!1 +return t.y3.b(b)&&J.j(this.a,b.geR())&&this.b===b.gc5(b)}, +gu(a){var s=this.a +s=s==null?null:s.gu(s) +if(s==null)s=0 +return s+this.b}, +l(a){var s=this,r=A.p(s).l(0),q=s.a +return"<"+r+": "+s.b+" "+(A.i(q==null?"unknown source":q)+":"+(s.c+1)+":"+(s.d+1))+">"}, +$icD:1, +geR(){return this.a}, +gc5(a){return this.b}, +geE(a){return this.c}, +gfA(){return this.d}} +A.a9Y.prototype={ +US(a){if(!J.j(this.a.a,a.geR()))throw A.c(A.bZ('Source URLs "'+A.i(this.geR())+'" and "'+A.i(a.geR())+"\" don't match.",null)) +return Math.abs(this.b-a.gc5(a))}, +bO(a,b){if(!J.j(this.a.a,b.geR()))throw A.c(A.bZ('Source URLs "'+A.i(this.geR())+'" and "'+A.i(b.geR())+"\" don't match.",null)) +return this.b-b.gc5(b)}, +k(a,b){if(b==null)return!1 +return t.y3.b(b)&&J.j(this.a.a,b.geR())&&this.b===b.gc5(b)}, +gu(a){var s=this.a.a +s=s==null?null:s.gu(s) +if(s==null)s=0 +return s+this.b}, +l(a){var s=A.p(this).l(0),r=this.b,q=this.a,p=q.a +return"<"+s+": "+r+" "+(A.i(p==null?"unknown source":p)+":"+(q.BV(r)+1)+":"+(q.NX(r)+1))+">"}, +$icD:1, +$inH:1} +A.aae.prototype={ +amS(a,b,c){var s,r=this.b,q=this.a +if(!J.j(r.geR(),q.geR()))throw A.c(A.bZ('Source URLs "'+A.i(q.geR())+'" and "'+A.i(r.geR())+"\" don't match.",null)) +else if(r.gc5(r)'}, +$icD:1} +A.rd.prototype={ +gc9(a){return this.d}} +A.iA.prototype={ +aJg(a){var s=this.a,r=new A.ad(s,new A.awx(a,!1),A.ab(s).h("ad<1,e0>")),q=r.Cq(0,new A.awy(!1)) +if(!q.gam(q).v()&&!r.gak(r))return new A.iA(A.hN(A.a([r.gX(r)],t.ch),t.f3)) +return new A.iA(A.hN(q,t.f3))}, +BA(){var s=this.a +return A.b_t(new A.iD(s,new A.awD(),A.ab(s).h("iD<1,e7>")),null)}, +l(a){var s=this.a,r=A.ab(s) +return new A.ad(s,new A.awB(new A.ad(s,new A.awC(),r.h("ad<1,n>")).p6(0,0,B.iX)),r.h("ad<1,h>")).ck(0,u.C)}, +$icw:1, +gXD(){return this.a}} +A.awv.prototype={ +$0(){return A.bqh(this.a.l(0))}, +$S:697} +A.aww.prototype={ +$1(a){return a.length!==0}, +$S:11} +A.awx.prototype={ +$1(a){return a.Vl(this.a,this.b)}, +$S:698} +A.awy.prototype={ +$1(a){if(a.gtE().length>1)return!0 +if(a.gtE().length===0)return!1 +if(!this.a)return!1 +return J.bEl(B.b.gaV(a.gtE()))!=null}, +$S:699} +A.awD.prototype={ +$1(a){return a.gtE()}, +$S:700} +A.awC.prototype={ +$1(a){var s=a.gtE() +return new A.ad(s,new A.awA(),A.ab(s).h("ad<1,n>")).p6(0,0,B.iX)}, +$S:701} +A.awA.prototype={ +$1(a){return a.gls(a).length}, +$S:264} +A.awB.prototype={ +$1(a){var s=a.gtE() +return new A.ad(s,new A.awz(this.a),A.ab(s).h("ad<1,h>")).q4(0)}, +$S:703} +A.awz.prototype={ +$1(a){return B.c.MZ(a.gls(a),this.a)+" "+A.i(a.gFP())+"\n"}, +$S:181} +A.e7.prototype={ +ghE(){var s=this.a +if(s.gfk()==="data")return"data:..." +return $.HX().X_(s)}, +gYw(){var s=this.a +if(s.gfk()!=="package")return null +return B.b.gO(s.gdT(s).split("/"))}, +gls(a){var s,r=this,q=r.b +if(q==null)return r.ghE() +s=r.c +if(s==null)return r.ghE()+" "+A.i(q) +return r.ghE()+" "+A.i(q)+":"+A.i(s)}, +l(a){return this.gls(this)+" in "+A.i(this.d)}, +gho(){return this.a}, +geE(a){return this.b}, +gfA(){return this.c}, +gFP(){return this.d}} +A.aEc.prototype={ +$0(){var s,r,q,p,o,n,m,l=null,k=this.a +if(k==="...")return new A.e7(A.fc(l,l,l,l,l,l),l,l,"...") +s=$.bDA().lm(k) +if(s==null)return new A.nN(A.fc(l,l,"unparsed",l,l,l),k) +k=s.b +r=k[1] +r.toString +q=$.bCl() +r=A.eF(r,q,"") +p=A.eF(r,"","") +r=k[2] +q=r +q.toString +if(B.c.cc(q,"1?A.eq(n[1],l,l):l +return new A.e7(o,m,k>2?A.eq(n[2],l,l):l,p)}, +$S:95} +A.aEa.prototype={ +$0(){var s,r,q=null,p="",o=this.a,n=$.bDv().lm(o) +if(n==null)return new A.nN(A.fc(q,q,"unparsed",q,q,q),o) +o=new A.aEb(o) +s=n.b +r=s[2] +if(r!=null){r=r +r.toString +s=s[1] +s.toString +s=A.eF(s,"",p) +s=A.eF(s,"Anonymous function",p) +return o.$2(r,A.eF(s,"(anonymous function)",p))}else{s=s[3] +s.toString +return o.$2(s,p)}}, +$S:95} +A.aEb.prototype={ +$2(a,b){var s,r,q,p,o,n=null,m=$.bDu(),l=m.lm(a) +for(;l!=null;a=s){s=l.b[1] +s.toString +l=m.lm(s)}if(a==="native")return new A.e7(A.dR("native",0,n),n,n,b) +r=$.bDz().lm(a) +if(r==null)return new A.nN(A.fc(n,n,"unparsed",n,n,n),this.a) +m=r.b +s=m[1] +s.toString +q=A.bkz(s) +s=m[2] +s.toString +p=A.eq(s,n,n) +o=m[3] +return new A.e7(q,p,o!=null?A.eq(o,n,n):n,b)}, +$S:706} +A.aE7.prototype={ +$0(){var s,r,q,p,o=null,n=this.a,m=$.bCw().lm(n) +if(m==null)return new A.nN(A.fc(o,o,"unparsed",o,o,o),n) +n=m.b +s=n[1] +s.toString +r=A.eF(s,"/<","") +s=n[2] +s.toString +q=A.bkz(s) +n=n[3] +n.toString +p=A.eq(n,o,o) +return new A.e7(q,p,o,r.length===0||r==="anonymous"?"":r)}, +$S:95} +A.aE8.prototype={ +$0(){var s,r,q,p,o,n,m,l=null,k=this.a,j=$.bCy().lm(k) +if(j==null)return new A.nN(A.fc(l,l,"unparsed",l,l,l),k) +s=j.b +r=s[3] +q=r +q.toString +if(B.c.p(q," line "))return A.bIs(k) +k=r +k.toString +p=A.bkz(k) +o=s[1] +if(o!=null){k=s[2] +k.toString +k=B.c.t9("/",k) +o+=B.b.q4(A.aX(k.gt(k),".",!1,t.N)) +if(o==="")o="" +o=B.c.vM(o,$.bCF(),"")}else o="" +k=s[4] +if(k==="")n=l +else{k=k +k.toString +n=A.eq(k,l,l)}k=s[5] +if(k==null||k==="")m=l +else{k=k +k.toString +m=A.eq(k,l,l)}return new A.e7(p,n,m,o)}, +$S:95} +A.aE9.prototype={ +$0(){var s,r,q,p,o=null,n=this.a,m=$.bCC().lm(n) +if(m==null)throw A.c(A.cn("Couldn't parse package:stack_trace stack trace line '"+n+"'.",o,o)) +n=m.b +s=n[1] +if(s==="data:...")r=A.buX("") +else{s=s +s.toString +r=A.dR(s,0,o)}if(r.gfk()===""){s=$.HX() +r=s.adS(A.bTa(s.a.N5(A.bn2(r))))}s=n[2] +if(s==null)q=o +else{s=s +s.toString +q=A.eq(s,o,o)}s=n[3] +if(s==null)p=o +else{s=s +s.toString +p=A.eq(s,o,o)}return new A.e7(r,q,p,n[4])}, +$S:95} +A.Lq.prototype={ +gPE(){var s,r=this,q=r.b +if(q===$){s=r.a.$0() +r.b!==$&&A.aq() +r.b=s +q=s}return q}, +gXD(){return this.gPE().gXD()}, +BA(){return new A.xT(this.gPE().gadR())}, +l(a){return this.gPE().l(0)}, +$icw:1, +$iiA:1} +A.xT.prototype={ +gJU(){var s,r=this,q=r.b +if(q===$){s=r.a.$0() +r.b!==$&&A.aq() +r.b=s +q=s}return q}, +gtE(){return this.gJU().gtE()}, +gd6(){return this.gJU().gd6()}, +Vl(a,b){return new A.xT(new A.aIb(this,a,!1))}, +l(a){return this.gJU().l(0)}, +$icw:1, +$ie0:1} +A.aIb.prototype={ +$0(){return this.a.gJU().Vl(this.b,this.c)}, +$S:93} +A.e0.prototype={ +Vl(a,b){var s,r,q,p,o={} +o.a=a +s=A.a([],t.sR) +for(r=this.a,q=A.ab(r).h("da<1>"),r=new A.da(r,q),r=new A.c2(r,r.gt(r),q.h("c2")),q=q.h("av.E");r.v();){p=r.d +if(p==null)p=q.a(p) +if(p instanceof A.nN||!o.a.$1(p))s.push(p) +else if(s.length===0||!o.a.$1(B.b.gX(s)))s.push(new A.e7(p.gho(),p.geE(p),p.gfA(),p.gFP()))}return A.b_t(new A.da(s,t.zw),this.b.a)}, +l(a){var s=this.a,r=A.ab(s) +return new A.ad(s,new A.b_B(new A.ad(s,new A.b_C(),r.h("ad<1,n>")).p6(0,0,B.iX)),r.h("ad<1,h>")).q4(0)}, +$icw:1, +gtE(){return this.a}, +gd6(){return this.b}} +A.b_y.prototype={ +$0(){var s=this.a,r=s.gtE() +return A.b_t(A.fQ(r,this.b+2,null,A.ab(r).c),s.gd6().a)}, +$S:93} +A.b_z.prototype={ +$0(){return A.buQ(this.a.l(0))}, +$S:93} +A.b_A.prototype={ +$1(a){return a.length!==0}, +$S:11} +A.b_x.prototype={ +$1(a){return!B.c.cc(a,$.bDy())}, +$S:11} +A.b_w.prototype={ +$1(a){return a!=="\tat "}, +$S:11} +A.b_u.prototype={ +$1(a){return a.length!==0&&a!=="[native code]"}, +$S:11} +A.b_v.prototype={ +$1(a){return!B.c.cc(a,"=====")}, +$S:11} +A.b_C.prototype={ +$1(a){return a.gls(a).length}, +$S:264} +A.b_B.prototype={ +$1(a){if(a instanceof A.nN)return a.l(0)+"\n" +return B.c.MZ(a.gls(a),this.a)+" "+A.i(a.gFP())+"\n"}, +$S:181} +A.nN.prototype={ +l(a){return this.w}, +$ie7:1, +gho(){return this.a}, +geE(){return null}, +gfA(){return null}, +gYw(){return null}, +gls(){return"unparsed"}, +gFP(){return this.w}} +A.abD.prototype={ +l(a){var s,r={} +r.a=1 +s=this.a +return new A.ad(s,new A.b0D(r),A.ab(s).h("ad<1,h>")).q4(0)}, +$icw:1} +A.b0D.prototype={ +$1(a){var s,r,q,p=B.c.MZ("#"+this.a.a++,8),o=a.gFP() +o.toString +o=A.bnQ(o,A.bE("[^.]+\\.",!0,!1,!1),new A.b0C(),null) +s=A.eF(o,"","") +r=a.geE(a) +if(r==null)r=0 +q=a.gfA() +if(q==null)q=0 +return p+s+" ("+a.gho().l(0)+":"+r+":"+q+")\n"}, +$S:181} +A.b0C.prototype={ +$1(a){return A.i(a.i(0,1))+".<"+A.i(a.i(0,1))+"_async_body>"}, +$S:112} +A.a2v.prototype={ +amC(a,b,c,d){var s=this,r=$.ac +s.a!==$&&A.ck() +s.a=new A.S1(a,s,new A.aD(new A.a7(r,t.LR),t.zh),b,d.h("S1<0>")) +if(c.a.gfM())c.a=new A.a9s(d.h("@<0>").V(d).h("a9s<1,2>")).td(c.a) +r=A.lE(null,new A.aFA(c,s),null,!0,d) +s.b!==$&&A.ck() +s.b=r}, +a3E(){var s,r +this.d=!0 +s=this.c +if(s!=null)s.aI(0) +r=this.b +r===$&&A.b() +r.ah(0)}} +A.aFA.prototype={ +$0(){var s,r,q=this.b +if(q.d)return +s=this.a.a +r=q.b +r===$&&A.b() +q.c=s.fN(r.gjH(r),new A.aFz(q),r.gwK())}, +$S:0} +A.aFz.prototype={ +$0(){var s=this.a,r=s.a +r===$&&A.b() +r.a3F() +s=s.b +s===$&&A.b() +s.ah(0)}, +$S:0} +A.S1.prototype={ +F(a,b){if(this.e)throw A.c(A.R("Cannot add event after closing.")) +if(this.d)return +this.a.a.F(0,b)}, +dP(a,b){if(this.e)throw A.c(A.R("Cannot add event after closing.")) +if(this.d)return +this.asx(a,b)}, +pF(a){return this.dP(a,null)}, +asx(a,b){var s=this +if(s.w){s.a.a.dP(a,b) +return}s.c.fc(a,b) +s.a3F() +s.b.a3E() +s.a.a.ah(0).mp(new A.b6s())}, +ah(a){var s=this +if(s.e)return s.c.a +s.e=!0 +if(!s.d){s.b.a3E() +s.c.cU(0,s.a.a.ah(0))}return s.c.a}, +a3F(){this.d=!0 +var s=this.c +if((s.a.a&30)===0)s.fm(0) +return}, +$iei:1} +A.b6s.prototype={ +$1(a){}, +$S:37} +A.aap.prototype={} +A.aaq.prototype={} +A.aau.prototype={ +gfS(a){return A.bm(this.c)}} +A.P2.prototype={ +gB0(){var s=this +if(s.c!==s.e)s.d=null +return s.d}, +yn(a){var s,r=this,q=r.d=J.bpC(a,r.b,r.c) +r.e=r.c +s=q!=null +if(s)r.e=r.c=q.gcg(q) +return s}, +a9Y(a,b){var s +if(this.yn(a))return +if(b==null)if(a instanceof A.nb)b="/"+a.a+"/" +else{s=J.cU(a) +s=A.eF(s,"\\","\\\\") +b='"'+A.eF(s,'"','\\"')+'"'}this.a1l(b)}, +v8(a){return this.a9Y(a,null)}, +a9Z(){if(this.c===this.b.length)return +this.a1l("no more input")}, +aIJ(a,b,c,d){var s,r,q,p,o,n,m=this.b +if(d<0)A.r(A.cb("position must be greater than or equal to 0.")) +else if(d>m.length)A.r(A.cb("position must be less than or equal to the string length.")) +s=d+c>m.length +if(s)A.r(A.cb("position plus length must not go beyond the end of the string.")) +s=this.a +r=new A.i2(m) +q=A.a([0],t.t) +p=new Uint32Array(A.mI(r.fO(r))) +o=new A.aVP(s,q,p) +o.amR(r,s) +n=d+c +if(n>p.length)A.r(A.cb("End "+n+u.D+o.gt(o)+".")) +else if(d<0)A.r(A.cb("Start may not be negative, was "+d+".")) +throw A.c(new A.aau(m,b,new A.Gr(o,d,n)))}, +a1l(a){this.aIJ(0,"expected "+a+".",0,this.c)}} +A.bhp.prototype={ +$1(a){return a?1:0}, +$S:707} +A.bhq.prototype={ +$2(a,b){return a+b}, +$S:179} +A.d3.prototype={ +J(){return"DBKeys."+this.b}} +A.hG.prototype={ +J(){return"AuthType."+this.b}, +h6(a){var s +switch(this.a){case 0:s=A.A(a,B.h,t.J).gml() +break +case 1:s=A.A(a,B.h,t.J).gmk() +break +default:s=null}return s}} +A.f_.prototype={ +J(){return"ReaderMode."+this.b}, +h6(a){var s +switch(this.a){case 0:s=A.A(a,B.h,t.J).gnS() +break +case 1:s=A.A(a,B.h,t.J).gnR() +break +case 2:s=A.A(a,B.h,t.J).gnT() +break +case 3:s=A.A(a,B.h,t.J).gnU() +break +case 4:s=A.A(a,B.h,t.J).gnP() +break +case 5:s=A.A(a,B.h,t.J).gnQ() +break +case 6:s=A.A(a,B.h,t.J).gnV() +break +case 7:s=A.A(a,B.h,t.J).gnW() +break +default:s=null}return s}} +A.fn.prototype={ +J(){return"ReaderNavigationLayout."+this.b}, +h6(a){var s +switch(this.a){case 0:s=A.A(a,B.h,t.J).gnX() +break +case 1:s=A.A(a,B.h,t.J).go1() +break +case 2:s=A.A(a,B.h,t.J).go2() +break +case 3:s=A.A(a,B.h,t.J).gnZ() +break +case 4:s=A.A(a,B.h,t.J).go0() +break +case 5:s=A.A(a,B.h,t.J).gnY() +break +default:s=null}return s}} +A.kE.prototype={ +J(){return"MangaSort."+this.b}, +h6(a){var s +switch(this.a){case 0:s=A.A(a,B.h,t.J).gnd() +break +case 1:s=A.A(a,B.h,t.J).gne() +break +case 2:s=A.A(a,B.h,t.J).gng() +break +case 3:s=A.A(a,B.h,t.J).gnf() +break +default:s=null}return s}} +A.l6.prototype={ +J(){return"ChapterSort."+this.b}, +h6(a){var s +switch(this.a){case 0:s=A.A(a,B.h,t.J).gmu() +break +case 2:s=A.A(a,B.h,t.J).gmt() +break +case 1:s=A.A(a,B.h,t.J).gmv() +break +default:s=null}return s}} +A.et.prototype={ +J(){return"DisplayMode."+this.b}, +h6(a){var s +switch(this.a){case 0:s=A.A(a,B.h,t.J).gmN() +break +case 1:s=A.A(a,B.h,t.J).gmO() +break +case 2:s=A.A(a,B.h,t.J).gmM() +break +default:s=null}return s}, +geD(a){return this.c}} +A.m5.prototype={ +J(){return"MangaStatus."+this.b}, +h6(a){var s +switch(this.a){case 0:s=A.A(a,B.h,t.J).gnn() +break +case 1:s=A.A(a,B.h,t.J).gnl() +break +case 2:s=A.A(a,B.h,t.J).gni() +break +case 3:s=A.A(a,B.h,t.J).gnj() +break +case 4:s=A.A(a,B.h,t.J).gnm() +break +case 5:s=A.A(a,B.h,t.J).gnh() +break +case 6:s=A.A(a,B.h,t.J).gnk() +break +default:s=null}return s}, +geD(a){return this.c}} +A.zz.prototype={ +J(){return"SourceType."+this.b}, +h6(a){var s +switch(this.a){case 0:s=A.A(a,B.h,t.J).gm_() +break +case 1:s=A.A(a,B.h,t.J).gm0() +break +case 2:s=A.A(a,B.h,t.J).glZ() +break +default:s=null}return s}, +geD(a){return this.c}} +A.oX.prototype={ +yk(a,b){return this.b.$1(b)}, +geD(a){return this.c}} +A.aLL.prototype={ +$1(a){return B.b.fa(a.e,new A.aLK(this.a))}, +$S:708} +A.aLK.prototype={ +$1(a){return B.c.p(this.a,a)}, +$S:11} +A.aLM.prototype={ +$1(a){return A.A(a,B.h,t.J).ghE()}, +$S:69} +A.aLN.prototype={ +$1(a){return A.A(a,B.h,t.J).glJ()}, +$S:69} +A.aLO.prototype={ +$1(a){return A.A(a,B.h,t.J).gjL()}, +$S:69} +A.aLP.prototype={ +$1(a){return A.A(a,B.h,t.J).glg()}, +$S:69} +A.aLQ.prototype={ +$1(a){return A.A(a,B.h,t.J).glw()}, +$S:69} +A.m9.prototype={} +A.nl.prototype={} +A.md.prototype={} +A.ns.prototype={} +A.tS.prototype={} +A.w8.prototype={ +H1(a){return this.af5(a)}, +af5(a){var s=0,r=A.y(t.ly),q,p=this +var $async$H1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=3 +return A.t(p.a.ot(0,"/settings/about",a,new A.arX(),t.RD,t.ly),$async$H1) +case 3:q=c.a +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$H1,r)}, +KK(){var s=0,r=A.y(t.kh),q,p=this +var $async$KK=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:s=3 +return A.t(p.a.Y6(0,"/settings/check-update",new A.arU(),t.WG,t.B2),$async$KK) +case 3:q=b.a +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$KK,r)}, +E7(a){return this.aGg(a)}, +aGf(){return this.E7(null)}, +aGg(a){var s=0,r=A.y(t.lZ),q,p=this,o,n +var $async$E7=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:o=t.nA +n=A +s=3 +return A.t(A.dE(new A.arV(p,a),o),$async$E7) +case 3:q=n.om(c,new A.arW(p),o,t.rC) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$E7,r)}} +A.arX.prototype={ +$1(a){var s +if(t.a.b(a)){s=J.aj(a) +s=new A.Q4(A.af(s.i(a,"name")),A.af(s.i(a,"version")),A.af(s.i(a,"revision")),A.af(s.i(a,"buildType")),A.bw(s.i(a,"buildTime")),A.af(s.i(a,"github")),A.af(s.i(a,"discord")))}else s=null +return s}, +$S:712} +A.arU.prototype={ +$1(a){var s +if(t.a.b(a)){s=J.aj(a) +s=new A.A_(A.af(s.i(a,"channel")),A.af(s.i(a,"tag")),A.af(s.i(a,"url")))}else s=new A.A_(null,null,null) +return s}, +$S:713} +A.arV.prototype={ +$0(){var s=0,r=A.y(t.nA),q,p=this,o +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:o=t.z +s=3 +return A.t(p.a.a.H_(0,"https://api.github.com/repos/Suwayomi/Tachidesk-Sorayomi/releases/latest",p.b,o,o),$async$$0) +case 3:q=b.a +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$$0,r)}, +$S:714} +A.arW.prototype={ +$1(a){var s,r=a==null?null:J.b7(a,"tag_name"),q=r!=null?A.b0E(r):null,p=A.b0E(this.a.b.c) +if(q!=null)s=q.bO(0,p)>0 +else s=!1 +if(s)return q +return null}, +$S:715} +A.l1.prototype={} +A.b1m.prototype={ +gcP(a){return A.r($.AM())}, +gXW(a){return A.r($.AM())}, +gadx(){return A.r($.AM())}, +gKG(){return A.r($.AM())}, +gj5(){return A.r($.AM())}, +gj7(){return A.r($.AM())}, +bf(){return A.r($.AM())}} +A.Q4.prototype={ +l(a){var s=this +return"About(name: "+A.i(s.a)+", version: "+A.i(s.b)+", revision: "+A.i(s.c)+", buildType: "+A.i(s.d)+", buildTime: "+A.i(s.e)+", github: "+A.i(s.f)+", discord: "+A.i(s.r)+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.Q4){s=b.a==r.a +if(s||s){s=b.b==r.b +if(s||s){s=b.c==r.c +if(s||s){s=b.d==r.d +if(s||s){s=b.e==r.e +if(s||s){s=b.f==r.f +if(s||s){s=b.r==r.r +s=s||s}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=!0 +return s}, +gu(a){var s=this +return A.X(A.p(s),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)}, +bf(){var s=this +return A.am(["name",s.a,"version",s.b,"revision",s.c,"buildType",s.d,"buildTime",s.e,"github",s.f,"discord",s.r],t.N,t.z)}, +$il1:1, +gcP(a){return this.a}, +gXW(a){return this.b}, +gadx(){return this.c}, +gKG(){return this.d}, +gj5(){return this.e}, +gj7(){return this.r}} +A.adK.prototype={} +A.hS.prototype={} +A.b1A.prototype={ +gfW(a){return A.r($.arA())}, +gadC(a){return A.r($.arA())}, +gGP(a){return A.r($.arA())}, +bf(){return A.r($.arA())}} +A.A_.prototype={ +l(a){return"ServerUpdate(channel: "+A.i(this.a)+", tag: "+A.i(this.b)+", url: "+A.i(this.c)+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.A_){s=b.a==r.a +if(s||s){s=b.b==r.b +if(s||s){s=b.c==r.c +s=s||s}else s=!1}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){var s=this +return A.X(A.p(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)}, +bf(){return A.am(["channel",this.a,"tag",this.b,"url",this.c],t.N,t.z)}, +$ihS:1, +gfW(a){return this.a}, +gadC(a){return this.b}, +gGP(a){return this.c}} +A.amy.prototype={} +A.Xk.prototype={ +aGb(a,b,c,d,e){d.rK(0,A.A(b,B.h,t.J).gkR()) +A.dE(e,t.kh).be(new A.as6(d,a,c,b),t.P)}, +ti(a,b,c,d){return this.aGc(a,b,c,d)}, +aGc(a,b,c,d){var s=0,r=A.y(t.H),q,p,o +var $async$ti=A.u(function(e,f){if(e===1)return A.v(f,r) +while(true)switch(s){case 0:c.rK(0,A.A(a,B.h,t.J).gkR()) +s=3 +return A.t(d.$0(),$async$ti) +case 3:p=f +if(a.e!=null){s=1 +break}o=c.b +o===$&&A.b() +o.vK() +A.wg(p,new A.as7(b,a,c),new A.as8(p,c),t.rC,t.X) +case 1:return A.w(q,r)}}) +return A.x($async$ti,r)}, +aB(a,b){var s,r,q,p,o,n,m,l,k,j,i=null,h=b.N(A.eD(a),t.g),g=b.N($.boL(),t._T),f=A.c_(g),e=f==null +if((e?i:f.gKG())==="Stable")s=e?i:f.gXW(f) +else{r=e?i:f.gXW(f) +q=e?i:f.gadx() +s=A.i(r)+"-"+A.i(q)}p=b.N($.arL(),t.A9) +r=A.c_(g) +$.bb.bz(new A.dK(new A.arY(g,h),[r]),t.H) +r=t.J +q=A.eB(i,i,i,i,i,i,A.P(A.A(a,B.h,r).gl2(),i,i,i,i,i,i,i)) +o=A.CN(new A.mR("assets/icons/dark_icon.png",i,i),i,A.aY(a,i,t.l).w.a.b*0.2) +n=A.A(a,B.h,r) +m=t.p +n=A.a([o,B.fh,A.Jc(n.gmz(n),p.a),A.Jc(A.A(a,B.h,r).gmA(),"v"+p.c),A.bI(!1,i,i,i,!0,i,i,!1,i,i,i,i,new A.arZ(p,a,h),!1,i,i,i,i,i,i,A.P(A.A(a,B.h,r).gor(),i,i,i,i,i,i,i),i,i),A.bI(!1,i,i,i,!0,i,i,!1,i,i,i,i,new A.as_(this,p,a,b,h),!1,i,i,i,i,i,i,A.P(A.A(a,B.h,r).gmx(),i,i,i,i,i,i,i),i,i)],m) +if(!e){o=A.Jc(A.A(a,B.h,r).gjz(),f.gcP(f)) +l=A.A(a,B.h,r) +l=A.a([B.fh,o,A.Jc(l.gfW(l),f.gKG())],m) +o=s!=null +if(!(!o||s.length===0))l.push(A.Jc(A.A(a,B.h,r).glW(),s)) +k=A.A(a,B.h,r).gj5() +if(f.gj5()==null)j=i +else{j=f.gj5() +if(j==null||B.f.gcZ(j))j=0 +else j.toString +j=A.n1(j*1000,!1) +j=A.a0x(i).tD(j)}l.push(A.Jc(k,j)) +if(!(!o||s.length===0))l.push(A.bI(!1,i,i,i,!0,i,i,!1,i,i,i,i,new A.as0(this,a,s,f,b,h),!1,i,i,i,i,i,i,A.P(A.A(a,B.h,r).gmw(),i,i,i,i,i,i,i),i,i)) +B.b.I(n,l)}o=A.a([new A.Ds(h,A.A(a,B.h,r).gkP()+" ",B.xw,"https://github.com/Suwayomi/Tachidesk-Sorayomi",i)],m) +e=e?i:f.gj7() +if(!(e==null||e.length===0)){e=A.A(a,B.h,r).gj7() +m=f.gj7() +m.toString +o.push(new A.Ds(h,e,B.a5h,m,i))}o.push(new A.Ds(h,A.A(a,B.h,r).go6(),B.a5g,"https://www.reddit.com/r/Tachidesk",i)) +n.push(new A.b4(B.bh,A.b0S(B.aBm,o,B.q0,0,0),i)) +return A.e9(q,i,A.r2(A.iK(n,i,i,!1),new A.as1(b)),i,i,i,!0,!1,!1,i,i)}} +A.as6.prototype={ +$1(a){var s,r=this,q=r.a,p=q.b +p===$&&A.b() +p.vK() +try{A.wg(a,new A.as4(r.b,r.c,r.d,q),new A.as5(a,q),t.kh,t.X)}catch(s){p=A.A(r.d,B.h,t.J) +q.Hx(p.gjQ())}}, +$S:716} +A.as4.prototype={ +$1(a){var s,r,q,p,o,n=this +if(a==null)return +p=n.a +s=J.bps(a,new A.as2(p),new A.as3()) +r=A.b0E(B.c.cm(n.b,1)) +o=J.bEp(s) +o=o==null?null:B.c.cm(o,1) +q=A.b0E(o==null?"":o) +o=J.AR(q,r) +if(o>0){p=p.gcP(p) +if(p==null)p=A.A(n.c,B.h,t.J).gjz() +A.bnb(n.c,q.gTV()+" ("+A.i(J.bEe(s))+")",p,n.d,J.bEq(s))}else n.d.rK(0,A.A(n.c,B.h,t.J).glC())}, +$S:717} +A.as2.prototype={ +$1(a){return a.gfW(a)==this.a.gKG()}, +$S:718} +A.as3.prototype={ +$0(){return new A.A_(null,null,null)}, +$S:719} +A.as5.prototype={ +$2(a,b){return A.hF(this.a,this.b,!1,t.kh)}, +$S:14} +A.as7.prototype={ +$1(a){var s=this +if(a!=null)A.bnb(s.b,"v"+a.gTV(),s.a,s.c,null) +else s.c.rK(0,A.A(s.b,B.h,t.J).glC())}, +$S:268} +A.as8.prototype={ +$2(a,b){return A.hF(this.a,this.b,!1,t.rC)}, +$S:14} +A.arY.prototype={ +$0(){A.hF(this.a,this.b,!0,t.ly) +return}, +$S:4} +A.as1.prototype={ +$0(){return this.a.jZ(0,$.boL().gqS(),t.uz)}, +$S:2} +A.arZ.prototype={ +$0(){var s=0,r=A.y(t.H),q=this +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:s=2 +return A.t(A.od(q.b,"https://github.com/Suwayomi/Tachidesk-Sorayomi/releases/tag/"+q.a.c,q.c),$async$$0) +case 2:return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.as_.prototype={ +$0(){var s=this +return s.a.ti(s.c,s.b.a,s.e,s.d.ae(0,$.arE(),t.JC).ga8i())}, +$S:0} +A.as0.prototype={ +$0(){var s=this,r=s.c +if(r==null)r="" +return s.a.aGb(s.d,s.b,r,s.f,s.e.ae(0,$.arE(),t.JC).gaGe())}, +$S:0} +A.bg8.prototype={ +$1(a){var s=this,r=null,q=t.J,p=A.P(A.A(a,B.h,q).gns(),r,r,r,r,r,r,r),o=A.P(A.A(a,B.h,q).op(s.a,s.b),r,r,r,r,r,r,r),n=A.A(a,B.h,q) +return A.l2(A.a([A.eP(!1,A.P(n.gdV(n),r,r,r,r,r,r,r),B.n,r,r,r,r,r,new A.bg6(a),r,r),A.bOP(B.a6P,A.P(A.A(a,B.h,q).gkP(),r,r,r,r,r,r,r),new A.bg7(a,s.c,s.d))],t.p),o,r,p)}, +$S:168} +A.bg6.prototype={ +$0(){A.du(this.a,!1).dO(null) +return null}, +$S:0} +A.bg7.prototype={ +$0(){var s=this.a,r=this.b +if(r==null)r="https://github.com/Suwayomi/Tachidesk-Sorayomi/releases/latest" +A.od(s,r,this.c) +A.du(s,!1).dO(null)}, +$S:0} +A.Zi.prototype={ +aB(a,b){var s,r=null,q=A.P(this.e,r,r,r,r,r,r,r),p=this.f,o=p!=null +if(!(!o||p.length===0)){p.toString +s=A.P(p,r,r,r,r,r,r,r)}else s=r +return A.bI(!1,r,r,r,!0,r,r,!1,r,r,r,r,!(!o||p.length===0)?new A.axd(this,b,a):r,!1,r,r,r,r,s,r,q,r,r)}} +A.axd.prototype={ +$0(){var s,r,q=this.a,p=q.e+": "+A.i(q.f) +A.BF(new A.tp(p)) +q=this.c +s=this.b.ae(0,A.eD(q),t.g) +q=A.A(q,B.h,t.J).mD(p) +r=s.b +r===$&&A.b() +r.vK() +J.Xj(s,q)}, +$S:0} +A.Ds.prototype={ +A(a){var s,r,q=this,p=null +if(q.f.length!==0){s=q.d +r=q.e +if(A.aY(a,p,t.l).w.a.a<=600)s=A.dh(p,p,A.h3(r,p,p,p),p,new A.aK6(q,a),p,p,p,s,p) +else{s=A.P(s,p,p,p,p,p,p,p) +s=A.bdf(A.h3(r,p,p,p),s,new A.aK7(q,a),p)}}else s=B.a1 +return s}} +A.aK6.prototype={ +$0(){var s=this.a +return A.od(this.b,s.f,s.c)}, +$S:0} +A.aK7.prototype={ +$0(){var s=this.a +return A.od(this.b,s.f,s.c)}, +$S:0} +A.tF.prototype={ +VS(a,b){return this.aLf(a,b)}, +aLf(a,b){var s=0,r=A.y(t.H),q +var $async$VS=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:if(b!=null)b.gdT(b) +q=A.XK(a).gli() +throw A.c(q) +return A.w(null,r)}}) +return A.x($async$VS,r)}, +ae2(a){var s=t.z +return this.a.H_(0,"/extension/uninstall/"+a,null,s,s)}, +H7(a){return this.afh(a)}, +afh(a){var s=0,r=A.y(t.q6),q,p=this +var $async$H7=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=3 +return A.t(p.a.ot(0,"/extension/list",a,new A.aCf(),t.h1,t.q8),$async$H7) +case 3:q=c.a +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$H7,r)}} +A.aCf.prototype={ +$1(a){var s,r=null +if(t.a.b(a)){s=J.aj(a) +s=new A.FV(A.af(s.i(a,"apkName")),A.cN(s.i(a,"hasUpdate")),A.af(s.i(a,"iconUrl")),A.cN(s.i(a,"installed")),A.cN(s.i(a,"isNsfw")),A.bsq(A.af(s.i(a,"lang"))),A.af(s.i(a,"name")),A.cN(s.i(a,"obsolete")),A.af(s.i(a,"pkgName")),A.bw(s.i(a,"versionCode")),A.af(s.i(a,"versionName")))}else s=new A.FV(r,r,r,r,r,r,r,r,r,r,r) +return s}, +$S:722} +A.EY.prototype={ +Hf(a){return this.afP(a)}, +afP(a){var s=0,r=A.y(t.s5),q,p=this +var $async$Hf=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=3 +return A.t(p.a.ot(0,"/source/list",a,new A.aXm(),t.iW,t.s7),$async$Hf) +case 3:q=c.a +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Hf,r)}, +yd(a,b,c,d,e){return this.afs(a,b,c,d,e)}, +afr(a,b,c,d){return this.yd(null,a,b,c,d)}, +afs(a,b,c,d,e){var s=0,r=A.y(t.NG),q,p=this,o,n,m,l,k,j +var $async$yd=A.u(function(f,g){if(f===1)return A.v(g,r) +while(true)switch(s){case 0:k="/source/"+d +j=p.a +s=e!==B.db?3:5 +break +case 3:s=6 +return A.t(j.ot(0,k+"/"+e.b+"/"+b,null,new A.aXj(),t.KA,t.NG),$async$yd) +case 6:q=g.a +s=1 +break +s=4 +break +case 5:o=t.N +n=A.am(["pageNum",b],o,t.z) +m=c==null?"":c +l=A.a([],t.H7) +if(a!=null)B.b.I(l,a) +s=7 +return A.t(j.Nb(k+"/quick-search",null,A.am(["searchTerm",m,"filter",l],o,t.K),new A.aXk(),n,t.KA,t.NG),$async$yd) +case 7:q=g.a +s=1 +break +case 4:case 1:return A.w(q,r)}}) +return A.x($async$yd,r)}, +H8(a){return this.afk(a)}, +afk(a){var s=0,r=A.y(t.uS),q,p=this +var $async$H8=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=3 +return A.t(p.a.ot(0,"/source/"+a+"/filters",null,new A.aXi(),t.m3,t.we),$async$H8) +case 3:q=c.a +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$H8,r)}, +He(a,b){return this.afO(a,b)}, +afO(a,b){var s=0,r=A.y(t.FO),q,p=this,o +var $async$He=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:o=t.s7 +s=3 +return A.t(p.a.ot(0,"/source/"+b,a,new A.aXn(),o,o),$async$He) +case 3:q=d.a +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$He,r)}, +Hb(a){return this.afF(a)}, +afF(a){var s=0,r=A.y(t.FF),q,p=this +var $async$Hb=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=3 +return A.t(p.a.ot(0,"/source/"+a+"/preferences",null,new A.aXl(),t.To,t.nt),$async$Hb) +case 3:q=c.a +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Hb,r)}, +NN(a,b){return this.aQj(a,b)}, +aQj(a,b){var s=0,r=A.y(t.H),q,p=this,o +var $async$NN=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:o=t.z +s=3 +return A.t(p.a.WX("/source/"+b+"/preferences",null,a,o,o),$async$NN) +case 3:q=d.a +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$NN,r)}} +A.aXm.prototype={ +$1(a){var s=null +return t.a.b(a)?A.bm5(a):new A.A0(s,s,s,s,s,s,s,s)}, +$S:270} +A.aXj.prototype={ +$1(a){return t.a.b(a)?A.bvm(a):null}, +$S:271} +A.aXk.prototype={ +$1(a){return t.a.b(a)?A.bvm(a):null}, +$S:271} +A.aXi.prototype={ +$1(a){return t.a.b(a)?A.bvl(a):new A.nT(null,null)}, +$S:272} +A.aXn.prototype={ +$1(a){var s=null +return t.a.b(a)?A.bm5(a):new A.A0(s,s,s,s,s,s,s,s)}, +$S:270} +A.aXl.prototype={ +$1(a){var s,r +if(t.a.b(a)){s=A.af(J.b7(a,"type")) +A.buk(a,"props") +r=A.bOl(A.buk(a,"props")) +s=new A.nZ(s,r)}else s=new A.nZ(null,null) +return s}, +$S:726} +A.cE.prototype={} +A.b1u.prototype={ +gM0(){return A.r($.pV())}, +gAR(a){return A.r($.pV())}, +gM9(){return A.r($.pV())}, +gW1(){return A.r($.pV())}, +gn8(a){return A.r($.pV())}, +gcP(a){return A.r($.pV())}, +gjW(){return A.r($.pV())}, +gvD(){return A.r($.pV())}, +gXX(){return A.r($.pV())}, +bf(){return A.r($.pV())}} +A.FV.prototype={ +l(a){var s=this +return"Extension(apkName: "+A.i(s.a)+", hasUpdate: "+A.i(s.b)+", iconUrl: "+A.i(s.c)+", installed: "+A.i(s.d)+", isNsfw: "+A.i(s.e)+", lang: "+A.i(s.f)+", name: "+A.i(s.r)+", obsolete: "+A.i(s.w)+", pkgName: "+A.i(s.x)+", versionCode: "+A.i(s.y)+", versionName: "+A.i(s.z)+")"}, +k(a,b){var s,r,q=this +if(b==null)return!1 +if(q!==b)if(J.a_(b)===A.p(q))if(b instanceof A.FV){s=b.a==q.a +if(s||s){s=b.b==q.b +if(s||s){s=b.c==q.c +if(s||s){s=b.d==q.d +if(s||s){s=b.e==q.e +if(s||s){s=b.f +r=q.f +if(s==r||J.j(s,r)){s=b.r==q.r +if(s||s){s=b.w==q.w +if(s||s){s=b.x==q.x +if(s||s){s=b.y==q.y +if(s||s){s=b.z==q.z +s=s||s}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=!0 +return s}, +gu(a){var s=this +return A.X(A.p(s),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)}, +bf(){var s=this,r=s.f +r=r==null?null:r.guW(r) +return A.am(["apkName",s.a,"hasUpdate",s.b,"iconUrl",s.c,"installed",s.d,"isNsfw",s.e,"lang",r,"name",s.r,"obsolete",s.w,"pkgName",s.x,"versionCode",s.y,"versionName",s.z],t.N,t.z)}, +$icE:1, +gM0(){return this.b}, +gAR(a){return this.c}, +gM9(){return this.d}, +gW1(){return this.e}, +gn8(a){return this.f}, +gcP(a){return this.r}, +gjW(){return this.w}, +gvD(){return this.x}, +gXX(){return this.z}} +A.agL.prototype={} +A.by.prototype={} +A.aD2.prototype={ +$0(){var s=t.zJ.a(this.a) +return s.gd0(s)}, +$S:727} +A.b1v.prototype={ +gF3(){return A.r($.biI())}, +bf(){return A.r($.biI())}, +gbK(){return A.r($.biI())}, +a8F(a){return this.gbK().$1$filterState(a)}} +A.FW.prototype={ +$2$filterState$type(a,b){var s=this.a,r=B.d===b?s.a:A.af(b) +return this.b.$1(this.$ti.h("FW.1").a(s.aHo(B.d===a?s.b:t.bZ.a(a),r)))}, +$0(){return this.$2$filterState$type(B.d,B.d)}, +$1$filterState(a){return this.$2$filterState$type(a,B.d)}} +A.VA.prototype={ +$2$filterState$type(a,b){var s=B.d===b?this.a.a:A.af(b),r=B.d===a?this.a.b:t.bZ.a(a) +return this.b.$1(new A.nT(s,r))}, +$0(){return this.$2$filterState$type(B.d,B.d)}, +$1$filterState(a){return this.$2$filterState$type(a,B.d)}} +A.nT.prototype={ +l(a){return"Filter(type: "+A.i(this.a)+", filterState: "+A.i(this.b)+")"}, +k(a,b){var s,r,q=this +if(b==null)return!1 +if(q!==b)if(J.a_(b)===A.p(q))if(b instanceof A.nT){s=b.a==q.a +if(s||s){s=b.b +r=q.b +s=s==r||J.j(s,r)}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){return A.X(A.p(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)}, +gbK(){return new A.VA(this,B.RI,t.Sz)}, +bf(){var s=this.b +s=s==null?null:s.bf() +return A.am(["type",this.a,"filter",s],t.N,t.z)}, +$iby:1, +a8F(a){return this.gbK().$1$filterState(a)}, +aHo(a,b){return this.gbK().$2$filterState$type(a,b)}, +gF3(){return this.b}} +A.agV.prototype={} +A.zu.prototype={} +A.fS.prototype={ +$1$name(a){var s=this.a +return this.b.$1(A.l(this).h("fS.1").a(s.uY(B.d===a?s.gcP(s):A.af(a))))}, +$0(){return this.$1$name(B.d)}} +A.Vz.prototype={ +$1$name(a){var s=this.a,r=B.d===a?s.b:A.af(a) +return this.b.$1(new A.nS(s.a,r,"Header"))}, +$0(){return this.$1$name(B.d)}} +A.nS.prototype={ +l(a){return"FilterState.header(state: "+A.i(this.a)+", name: "+A.i(this.b)+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.nS){s=b.a==r.a +if(s||s){s=b.b==r.b +s=s||s}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){return A.X(A.p(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)}, +gbK(){return new A.Vz(this,B.Ry,t.Za)}, +bf(){return A.am(["state",this.a,"name",this.b,"type",this.c],t.N,t.z)}, +$ijd:1, +uY(a){return this.gbK().$1$name(a)}, +gcP(a){return this.b}} +A.VC.prototype={ +$1$name(a){var s=this.a,r=B.d===a?s.b:A.af(a) +return this.b.$1(new A.nV(s.a,r,"Separator"))}, +$0(){return this.$1$name(B.d)}} +A.nV.prototype={ +l(a){return"FilterState.separator(state: "+A.i(this.a)+", name: "+A.i(this.b)+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.nV){s=b.a==r.a +if(s||s){s=b.b==r.b +s=s||s}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){return A.X(A.p(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)}, +gbK(){return new A.VC(this,B.Rt,t.yl)}, +bf(){return A.am(["state",this.a,"name",this.b,"type",this.c],t.N,t.z)}, +$ijd:1, +uY(a){return this.gbK().$1$name(a)}, +gcP(a){return this.b}} +A.VD.prototype={ +$2$name$state(a,b){var s=B.d===b?this.a.a:A.af(b),r=B.d===a?this.a.b:A.af(a) +return this.b.$1(new A.nX(s,r,"Text"))}, +$0(){return this.$2$name$state(B.d,B.d)}, +$1$state(a){return this.$2$name$state(B.d,a)}, +$1$name(a){return this.$2$name$state(a,B.d)}} +A.nX.prototype={ +l(a){return"FilterState.text(state: "+A.i(this.a)+", name: "+A.i(this.b)+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.nX){s=b.a==r.a +if(s||s){s=b.b==r.b +s=s||s}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){return A.X(A.p(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)}, +gbK(){return new A.VD(this,B.Rx,t.KS)}, +bf(){return A.am(["state",this.a,"name",this.b,"type",this.c],t.N,t.z)}, +$ijd:1, +pN(a){return this.gbK().$1$state(a)}, +uY(a){return this.gbK().$1$name(a)}, +gcP(a){return this.b}} +A.Vx.prototype={ +$2$name$state(a,b){var s=B.d===b?this.a.a:A.cN(b),r=B.d===a?this.a.b:A.af(a) +return this.b.$1(new A.nR(s,r,"CheckBox"))}, +$0(){return this.$2$name$state(B.d,B.d)}, +$1$state(a){return this.$2$name$state(B.d,a)}, +$1$name(a){return this.$2$name$state(a,B.d)}} +A.nR.prototype={ +l(a){return"FilterState.checkBox(state: "+A.i(this.a)+", name: "+A.i(this.b)+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.nR){s=b.a==r.a +if(s||s){s=b.b==r.b +s=s||s}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){return A.X(A.p(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)}, +gbK(){return new A.Vx(this,B.Rw,t.P1)}, +bf(){return A.am(["state",this.a,"name",this.b,"type",this.c],t.N,t.z)}, +$ijd:1, +pN(a){return this.gbK().$1$state(a)}, +uY(a){return this.gbK().$1$name(a)}, +gcP(a){return this.b}} +A.VE.prototype={ +$2$name$state(a,b){var s=B.d===b?this.a.a:A.bw(b),r=B.d===a?this.a.b:A.af(a) +return this.b.$1(new A.nY(s,r,"TriState"))}, +$0(){return this.$2$name$state(B.d,B.d)}, +$1$state(a){return this.$2$name$state(B.d,a)}, +$1$name(a){return this.$2$name$state(a,B.d)}} +A.nY.prototype={ +l(a){return"FilterState.triState(state: "+A.i(this.a)+", name: "+A.i(this.b)+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.nY){s=b.a==r.a +if(s||s){s=b.b==r.b +s=s||s}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){return A.X(A.p(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)}, +gbK(){return new A.VE(this,B.Rv,t.xp)}, +bf(){return A.am(["state",this.a,"name",this.b,"type",this.c],t.N,t.z)}, +$ijd:1, +pN(a){return this.gbK().$1$state(a)}, +uY(a){return this.gbK().$1$name(a)}, +gcP(a){return this.b}} +A.rT.prototype={ +$2$name$state(a,b){var s=this,r=B.d===b?s.a.a:t.eX.a(b),q=B.d===a?s.a.b:A.af(a) +return s.b.$1(new A.nW(r,q,s.a.c,"Sort"))}, +$0(){return this.$2$name$state(B.d,B.d)}, +$1$state(a){return this.$2$name$state(B.d,a)}, +$1$name(a){return this.$2$name$state(a,B.d)}, +gd0(a){var s=this.a.a +if(s==null)return null +return new A.pw(s,new A.bez(this),this.$ti.h("pw<1,zu>"))}} +A.bez.prototype={ +$1(a){var s=this.a +return s.b.$1(s.a.pN(a))}, +$S(){return this.a.$ti.h("1(zu)")}} +A.nW.prototype={ +gbp(a){var s=this.c +if(s==null)return null +if(s instanceof A.cX)return s +return new A.cX(s,s,t.ls)}, +l(a){var s=this +return"FilterState.sort(state: "+A.i(s.a)+", name: "+A.i(s.b)+", values: "+A.i(s.gbp(s))+")"}, +k(a,b){var s,r,q=this +if(b==null)return!1 +if(q!==b)if(J.a_(b)===A.p(q))if(b instanceof A.nW){s=b.a +r=q.a +if(s==r||J.j(s,r)){s=b.b==q.b +s=(s||s)&&B.a0.d7(b.c,q.c)}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){var s=this +return A.X(A.p(s),s.a,s.b,B.a0.dl(0,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)}, +gbK(){return new A.rT(this,B.h9,t.Eg)}, +bf(){var s=this,r=s.a +r=r==null?null:r.bf() +return A.am(["state",r,"name",s.b,"values",s.gbp(s),"type",s.d],t.N,t.z)}, +$ijd:1, +$ibrw:1, +pN(a){return this.gbK().$1$state(a)}, +uY(a){return this.gbK().$1$name(a)}, +gcP(a){return this.b}} +A.VB.prototype={ +$2$name$state(a,b){var s=this,r=B.d===b?s.a.a:A.bw(b),q=B.d===a?s.a.b:A.af(a) +return s.b.$1(new A.nU(r,q,s.a.c,"Select"))}, +$0(){return this.$2$name$state(B.d,B.d)}, +$1$state(a){return this.$2$name$state(B.d,a)}, +$1$name(a){return this.$2$name$state(a,B.d)}} +A.nU.prototype={ +gUR(){var s=this.c +if(s==null)return null +if(s instanceof A.cX)return s +return new A.cX(s,s,t.ls)}, +l(a){return"FilterState.select(state: "+A.i(this.a)+", name: "+A.i(this.b)+", displayValues: "+A.i(this.gUR())+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.nU){s=b.a==r.a +if(s||s){s=b.b==r.b +s=(s||s)&&B.a0.d7(b.c,r.c)}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){var s=this +return A.X(A.p(s),s.a,s.b,B.a0.dl(0,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)}, +gbK(){return new A.VB(this,B.Ru,t.MZ)}, +bf(){var s=this +return A.am(["state",s.a,"name",s.b,"displayValues",s.gUR(),"type",s.d],t.N,t.z)}, +$ijd:1, +$ibrv:1, +pN(a){return this.gbK().$1$state(a)}, +uY(a){return this.gbK().$1$name(a)}, +gcP(a){return this.b}} +A.Vy.prototype={ +$2$name$state(a,b){var s=B.d===b?this.a.a:t.uS.a(b),r=B.d===a?this.a.b:A.af(a) +return this.b.$1(new A.mw(s,r,"Group"))}, +$0(){return this.$2$name$state(B.d,B.d)}, +$1$state(a){return this.$2$name$state(B.d,a)}, +$1$name(a){return this.$2$name$state(a,B.d)}} +A.mw.prototype={ +gd0(a){var s=this.a +if(s==null)return null +if(s instanceof A.cX)return s +return new A.cX(s,s,t.r8)}, +l(a){return"FilterState.group(state: "+A.i(this.gd0(this))+", name: "+A.i(this.b)+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.mw)if(B.a0.d7(b.a,r.a)){s=b.b==r.b +s=s||s}else s=!1 +else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){return A.X(A.p(this),B.a0.dl(0,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)}, +gbK(){return new A.Vy(this,B.Rs,t.T9)}, +bf(){return A.bOc(this)}, +$ijd:1, +$ibru:1, +pN(a){return this.gbK().$1$state(a)}, +uY(a){return this.gbK().$1$name(a)}, +gcP(a){return this.b}} +A.b1B.prototype={ +gdN(a){return A.r($.arz())}, +gTK(){return A.r($.arz())}, +bf(){return A.r($.arz())}, +gbK(){return A.r($.arz())}, +a8Q(a,b){return this.gbK().$2$ascending$index(a,b)}} +A.pw.prototype={ +$2$ascending$index(a,b){var s=this.a,r=B.d===b?s.gdN(s):A.bw(b) +return this.b.$1(A.l(this).h("pw.1").a(s.a8Q(B.d===a?s.gTK():A.cN(a),r)))}, +$0(){return this.$2$ascending$index(B.d,B.d)}, +$1$index(a){return this.$2$ascending$index(B.d,a)}, +$1$ascending(a){return this.$2$ascending$index(a,B.d)}} +A.VI.prototype={ +$2$ascending$index(a,b){var s=B.d===b?this.a.a:A.bw(b),r=B.d===a?this.a.b:A.cN(a) +return this.b.$1(new A.px(s,r))}, +$0(){return this.$2$ascending$index(B.d,B.d)}, +$1$index(a){return this.$2$ascending$index(B.d,a)}, +$1$ascending(a){return this.$2$ascending$index(a,B.d)}} +A.px.prototype={ +l(a){return"SortState(index: "+A.i(this.a)+", ascending: "+A.i(this.b)+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.px){s=b.a==r.a +if(s||s){s=b.b==r.b +s=s||s}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){return A.X(A.p(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)}, +gbK(){return new A.VI(this,B.Rz,t.hb)}, +bf(){return A.am(["index",this.a,"ascending",this.b],t.N,t.z)}, +$izu:1, +a8Q(a,b){return this.gbK().$2$ascending$index(a,b)}, +gdN(a){return this.a}, +gTK(){return this.b}} +A.b16.prototype={ +$1(a){return A.bm(a)}, +$S:36} +A.b15.prototype={ +$1(a){return A.bm(a)}, +$S:36} +A.b13.prototype={ +$1(a){return A.bvl(t.a.a(a))}, +$S:272} +A.b14.prototype={ +$1(a){return a.bf()}, +$S:728} +A.an1.prototype={} +A.D2.prototype={ +ghb(a){var s=this,r=s.gac6() +if(r==null)r=s.gcP(s) +return r==null?s.guW(s):r}} +A.b1w.prototype={ +guW(a){return A.r($.arC())}, +gcP(a){return A.r($.arC())}, +gac6(){return A.r($.arC())}, +bf(){return A.r($.arC())}} +A.FX.prototype={ +l(a){return"Language(code: "+A.i(this.a)+", name: "+A.i(this.b)+", nativeName: "+A.i(this.c)+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.FX){s=b.a==r.a +if(s||s){s=b.b==r.b +if(s||s){s=b.c==r.c +s=s||s}else s=!1}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){var s=this +return A.X(A.p(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)}, +bf(){return A.am(["code",this.a,"name",this.b,"nativeName",this.c],t.N,t.z)}, +guW(a){return this.a}, +gcP(a){return this.b}, +gac6(){return this.c}} +A.aif.prototype={} +A.aig.prototype={} +A.iN.prototype={} +A.b1z.prototype={ +gB4(){return A.r($.biK())}, +gFc(){return A.r($.biK())}, +bf(){return A.r($.biK())}} +A.Qe.prototype={ +gB4(){var s=this.a +if(s==null)return null +if(s instanceof A.cX)return s +return new A.cX(s,s,t.V6)}, +l(a){return"MangaPage(mangaList: "+A.i(this.gB4())+", hasNextPage: "+A.i(this.b)+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.Qe)if(B.a0.d7(b.a,r.a)){s=b.b==r.b +s=s||s}else s=!1 +else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){return A.X(A.p(this),B.a0.dl(0,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)}, +bf(){return A.bOg(this)}, +$iiN:1, +gFc(){return this.b}} +A.b19.prototype={ +$1(a){return A.vl(t.a.a(a))}, +$S:68} +A.b1a.prototype={ +$1(a){return a.bf()}, +$S:94} +A.aiW.prototype={} +A.ai.prototype={} +A.b1C.prototype={ +ghb(a){return A.r($.w3())}, +gAR(a){return A.r($.w3())}, +gaL(a){return A.r($.w3())}, +gabv(){return A.r($.w3())}, +gn8(a){return A.r($.w3())}, +gcP(a){return A.r($.w3())}, +gP3(){return A.r($.w3())}, +bf(){return A.r($.w3())}} +A.A0.prototype={ +l(a){var s=this +return"Source(displayName: "+A.i(s.a)+", iconUrl: "+A.i(s.b)+", id: "+A.i(s.c)+", isConfigurable: "+A.i(s.d)+", isNsfw: "+A.i(s.e)+", lang: "+A.i(s.f)+", name: "+A.i(s.r)+", supportsLatest: "+A.i(s.w)+")"}, +k(a,b){var s,r,q=this +if(b==null)return!1 +if(q!==b)if(J.a_(b)===A.p(q))if(b instanceof A.A0){s=b.a==q.a +if(s||s){s=b.b==q.b +if(s||s){s=b.c==q.c +if(s||s){s=b.d==q.d +if(s||s){s=b.e==q.e +if(s||s){s=b.f +r=q.f +if(s==r||J.j(s,r)){s=b.r==q.r +if(s||s){s=b.w==q.w +s=s||s}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=!0 +return s}, +gu(a){var s=this +return A.X(A.p(s),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)}, +bf(){var s=this,r=s.f +r=r==null?null:r.guW(r) +return A.am(["displayName",s.a,"iconUrl",s.b,"id",s.c,"isConfigurable",s.d,"isNsfw",s.e,"lang",r,"name",s.r,"supportsLatest",s.w],t.N,t.z)}, +$iai:1, +ghb(a){return this.a}, +gAR(a){return this.b}, +gaL(a){return this.c}, +gabv(){return this.d}, +gn8(a){return this.f}, +gcP(a){return this.r}, +gP3(){return this.w}} +A.anb.prototype={} +A.bY.prototype={} +A.aXc.prototype={ +$1(a){return J.cU(a)}, +$S:36} +A.aXd.prototype={ +$1(a){return J.cU(a)}, +$S:36} +A.b1D.prototype={ +gHz(){return A.r($.biH())}, +bf(){return A.r($.biH())}, +gbK(){return A.r($.biH())}, +a8M(a){return this.gbK().$1$sourcePreferenceProp(a)}} +A.FY.prototype={ +$2$sourcePreferenceProp$type(a,b){var s=this.a,r=B.d===b?s.a:A.af(b) +return this.b.$1(this.$ti.h("FY.1").a(s.aHv(B.d===a?s.b:t.QH.a(a),r)))}, +$0(){return this.$2$sourcePreferenceProp$type(B.d,B.d)}, +$1$sourcePreferenceProp(a){return this.$2$sourcePreferenceProp$type(a,B.d)}} +A.VJ.prototype={ +$2$sourcePreferenceProp$type(a,b){var s=B.d===b?this.a.a:A.af(b),r=B.d===a?this.a.b:t.QH.a(a) +return this.b.$1(new A.nZ(s,r))}, +$0(){return this.$2$sourcePreferenceProp$type(B.d,B.d)}, +$1$sourcePreferenceProp(a){return this.$2$sourcePreferenceProp$type(a,B.d)}} +A.nZ.prototype={ +l(a){return"SourcePreference(type: "+A.i(this.a)+", sourcePreferenceProp: "+A.i(this.b)+")"}, +k(a,b){var s,r,q=this +if(b==null)return!1 +if(q!==b)if(J.a_(b)===A.p(q))if(b instanceof A.nZ){s=b.a==q.a +if(s||s){s=b.b +r=q.b +s=s==r||J.j(s,r)}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){return A.X(A.p(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)}, +gbK(){return new A.VJ(this,B.Rr,t.Yj)}, +bf(){var s=this.b +s=s==null?null:s.bf() +return A.am(["type",this.a,"props",s],t.N,t.z)}, +$ibY:1, +a8M(a){return this.gbK().$1$sourcePreferenceProp(a)}, +aHv(a,b){return this.gbK().$2$sourcePreferenceProp$type(a,b)}, +gHz(){return this.b}} +A.an7.prototype={} +A.io.prototype={ +$1$key(a){var s=this.a +return this.b.$1(A.l(this).h("io.1").a(s.zX(B.d===a?s.gn6(s):A.af(a))))}, +$0(){return this.$1$key(B.d)}} +A.Vw.prototype={ +$1$key(a){var s=B.d===a?this.a.a:A.af(a) +return this.b.$1(new A.nQ(s,this.a.b,"Fallback"))}, +$0(){return this.$1$key(B.d)}} +A.nQ.prototype={ +l(a){return"SourcePreferenceProp.fallback(key: "+A.i(this.a)+", currentValue: "+A.i(this.b)+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.nQ){s=b.a==r.a +s=(s||s)&&B.a0.d7(b.b,r.b)}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){return A.X(A.p(this),this.a,B.a0.dl(0,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)}, +gbK(){return new A.Vw(this,B.RC,t.mW)}, +bf(){return A.am(["key",this.a,"currentValue",this.b,"type",this.c],t.N,t.z)}, +$imo:1, +zX(a){return this.gbK().$1$key(a)}, +gn6(a){return this.a}, +gjM(){return this.b}} +A.Vu.prototype={ +$2$currentValue$key(a,b){var s=B.d===b?this.a.a:A.af(b),r=this.a,q=B.d===a?r.e:A.cN(a) +return this.b.$1(A.bvp(null,q,r.d,r.f,s,r.c,r.b))}, +$0(){return this.$2$currentValue$key(B.d,B.d)}, +$1$currentValue(a){return this.$2$currentValue$key(a,B.d)}, +$1$key(a){return this.$2$currentValue$key(B.d,a)}} +A.pr.prototype={ +l(a){var s=this +return"SourcePreferenceProp.checkBoxPreference(key: "+A.i(s.a)+", title: "+A.i(s.b)+", summary: "+A.i(s.c)+", defaultValue: "+A.i(s.d)+", currentValue: "+A.i(s.e)+", defaultValueType: "+A.i(s.f)+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.pr){s=b.a==r.a +if(s||s){s=b.b==r.b +if(s||s){s=b.c==r.c +if(s||s){s=b.d==r.d +if(s||s){s=b.e==r.e +if(s||s){s=b.f==r.f +s=s||s}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){var s=this +return A.X(A.p(s),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)}, +gbK(){return new A.Vu(this,B.RG,t.Bh)}, +bf(){var s=this +return A.am(["key",s.a,"title",s.b,"summary",s.c,"defaultValue",s.d,"currentValue",s.e,"defaultValueType",s.f,"type",s.r],t.N,t.z)}, +$imo:1, +tm(a){return this.gbK().$1$currentValue(a)}, +zX(a){return this.gbK().$1$key(a)}, +gn6(a){return this.a}, +gjM(){return this.e}} +A.VK.prototype={ +$2$currentValue$key(a,b){var s=B.d===b?this.a.a:A.af(b),r=this.a,q=B.d===a?r.e:A.cN(a) +return this.b.$1(A.bvt(null,q,r.d,r.f,s,r.c,r.b))}, +$0(){return this.$2$currentValue$key(B.d,B.d)}, +$1$currentValue(a){return this.$2$currentValue$key(a,B.d)}, +$1$key(a){return this.$2$currentValue$key(B.d,a)}} +A.py.prototype={ +l(a){var s=this +return"SourcePreferenceProp.switchPreferenceCompat(key: "+A.i(s.a)+", title: "+A.i(s.b)+", summary: "+A.i(s.c)+", defaultValue: "+A.i(s.d)+", currentValue: "+A.i(s.e)+", defaultValueType: "+A.i(s.f)+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.py){s=b.a==r.a +if(s||s){s=b.b==r.b +if(s||s){s=b.c==r.c +if(s||s){s=b.d==r.d +if(s||s){s=b.e==r.e +if(s||s){s=b.f==r.f +s=s||s}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){var s=this +return A.X(A.p(s),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)}, +gbK(){return new A.VK(this,B.RF,t.jY)}, +bf(){var s=this +return A.am(["key",s.a,"title",s.b,"summary",s.c,"defaultValue",s.d,"currentValue",s.e,"defaultValueType",s.f,"type",s.r],t.N,t.z)}, +$imo:1, +tm(a){return this.gbK().$1$currentValue(a)}, +zX(a){return this.gbK().$1$key(a)}, +gn6(a){return this.a}, +gjM(){return this.e}} +A.VF.prototype={ +$2$currentValue$key(a,b){var s=B.d===b?this.a.a:A.af(b),r=this.a,q=B.d===a?r.e:A.af(a) +return this.b.$1(A.bvr(null,q,r.d,r.f,r.r,s,r.c,r.b))}, +$0(){return this.$2$currentValue$key(B.d,B.d)}, +$1$currentValue(a){return this.$2$currentValue$key(a,B.d)}, +$1$key(a){return this.$2$currentValue$key(B.d,a)}} +A.pu.prototype={ +gdX(a){var s=this.r +if(s==null)return null +if(s instanceof A.oC)return s +return new A.oC(s,s,t.Kp)}, +l(a){var s=this +return"SourcePreferenceProp.listPreference(key: "+A.i(s.a)+", title: "+A.i(s.b)+", summary: "+A.i(s.c)+", defaultValue: "+A.i(s.d)+", currentValue: "+A.i(s.e)+", defaultValueType: "+A.i(s.f)+", entries: "+A.i(s.gdX(s))+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.pu){s=b.a==r.a +if(s||s){s=b.b==r.b +if(s||s){s=b.c==r.c +if(s||s){s=b.d==r.d +if(s||s){s=b.e==r.e +if(s||s){s=b.f==r.f +s=(s||s)&&B.a0.d7(b.r,r.r)}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){var s=this +return A.X(A.p(s),s.a,s.b,s.c,s.d,s.e,s.f,B.a0.dl(0,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)}, +gbK(){return new A.VF(this,B.RE,t.rH)}, +bf(){var s=this +return A.am(["key",s.a,"title",s.b,"summary",s.c,"defaultValue",s.d,"currentValue",s.e,"defaultValueType",s.f,"entries",s.gdX(s),"type",s.w],t.N,t.z)}, +$imo:1, +tm(a){return this.gbK().$1$currentValue(a)}, +zX(a){return this.gbK().$1$key(a)}, +gn6(a){return this.a}, +gjM(){return this.e}} +A.VH.prototype={ +$2$currentValue$key(a,b){var s=B.d===b?this.a.a:A.af(b),r=this.a,q=B.d===a?r.e:t.Xb.a(a) +return this.b.$1(A.bvs(null,q,r.d,r.f,r.r,s,r.c,r.b))}, +$0(){return this.$2$currentValue$key(B.d,B.d)}, +$1$currentValue(a){return this.$2$currentValue$key(a,B.d)}, +$1$key(a){return this.$2$currentValue$key(B.d,a)}} +A.pv.prototype={ +gL9(a){var s=this.d +if(s==null)return null +if(s instanceof A.cX)return s +return new A.cX(s,s,t.ls)}, +gjM(){var s=this.e +if(s==null)return null +if(s instanceof A.cX)return s +return new A.cX(s,s,t.ls)}, +gdX(a){var s=this.r +if(s==null)return null +if(s instanceof A.oC)return s +return new A.oC(s,s,t.Kp)}, +l(a){var s=this +return"SourcePreferenceProp.multiSelectListPreference(key: "+A.i(s.a)+", title: "+A.i(s.b)+", summary: "+A.i(s.c)+", defaultValue: "+A.i(s.gL9(s))+", currentValue: "+A.i(s.gjM())+", defaultValueType: "+A.i(s.f)+", entries: "+A.i(s.gdX(s))+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.pv){s=b.a==r.a +if(s||s){s=b.b==r.b +if(s||s){s=b.c==r.c +if(s||s)if(B.a0.d7(b.d,r.d))if(B.a0.d7(b.e,r.e)){s=b.f==r.f +s=(s||s)&&B.a0.d7(b.r,r.r)}else s=!1 +else s=!1 +else s=!1}else s=!1}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){var s=this +return A.X(A.p(s),s.a,s.b,s.c,B.a0.dl(0,s.d),B.a0.dl(0,s.e),s.f,B.a0.dl(0,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)}, +gbK(){return new A.VH(this,B.RD,t.X0)}, +bf(){var s=this +return A.am(["key",s.a,"title",s.b,"summary",s.c,"defaultValue",s.gL9(s),"currentValue",s.gjM(),"defaultValueType",s.f,"entries",s.gdX(s),"type",s.w],t.N,t.z)}, +$imo:1, +tm(a){return this.gbK().$1$currentValue(a)}, +zX(a){return this.gbK().$1$key(a)}, +gn6(a){return this.a}} +A.Vv.prototype={ +$2$currentValue$key(a,b){var s=B.d===b?this.a.a:A.af(b),r=this.a,q=B.d===a?r.e:A.af(a) +return this.b.$1(A.bvq(null,q,r.d,r.f,r.w,r.r,s,r.c,r.x,r.b))}, +$0(){return this.$2$currentValue$key(B.d,B.d)}, +$1$currentValue(a){return this.$2$currentValue$key(a,B.d)}, +$1$key(a){return this.$2$currentValue$key(B.d,a)}} +A.ps.prototype={ +l(a){var s=this +return"SourcePreferenceProp.editTextPreference(key: "+A.i(s.a)+", title: "+A.i(s.b)+", summary: "+A.i(s.c)+", defaultValue: "+A.i(s.d)+", currentValue: "+A.i(s.e)+", defaultValueType: "+A.i(s.f)+", dialogTitle: "+A.i(s.r)+", dialogMessage: "+A.i(s.w)+", text: "+A.i(s.x)+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.ps){s=b.a==r.a +if(s||s){s=b.b==r.b +if(s||s){s=b.c==r.c +if(s||s){s=b.d==r.d +if(s||s){s=b.e==r.e +if(s||s){s=b.f==r.f +if(s||s){s=b.r==r.r +if(s||s){s=b.w==r.w +if(s||s){s=b.x==r.x +s=s||s}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=!0 +return s}, +gu(a){var s=this +return A.X(A.p(s),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)}, +gbK(){return new A.Vv(this,B.RB,t.ya)}, +bf(){var s=this +return A.am(["key",s.a,"title",s.b,"summary",s.c,"defaultValue",s.d,"currentValue",s.e,"defaultValueType",s.f,"dialogTitle",s.r,"dialogMessage",s.w,"text",s.x,"type",s.y],t.N,t.z)}, +$imo:1, +$ibrh:1, +tm(a){return this.gbK().$1$currentValue(a)}, +zX(a){return this.gbK().$1$key(a)}, +gn6(a){return this.a}, +gjM(){return this.e}} +A.b17.prototype={ +$2(a,b){return new A.aS(a,A.bm(b),t.mT)}, +$S:160} +A.b1b.prototype={ +$1(a){return A.bm(a)}, +$S:36} +A.b1c.prototype={ +$1(a){return A.bm(a)}, +$S:36} +A.b1d.prototype={ +$2(a,b){return new A.aS(a,A.bm(b),t.mT)}, +$S:160} +A.YC.prototype={ +aB(a,b){var s,r,q,p,o,n,m,l,k,j=null,i=A.bzH(j),h=$.bb.bz(new A.UE(2,i,0,j),t.CY) +$.bb.bz(new A.Aj(h,j),t.H) +s=$.bb.bz(new A.hz(new A.auA(),B.cM,t.Ks),t.yi) +r=$.bb.bz(new A.dc(!1,j,t.Kr),t.G) +q=t.J +p=A.P(A.A(a,B.h,q).gjL(),j,j,j,j,j,j,j) +o=t.p +n=A.a([A.dh(j,j,A.h3(h.d===0?B.a6C:B.xJ,j,j,j),j,new A.auB(r),j,j,j,j,j)],o) +if(h.d===1)B.b.I(n,A.a([B.a7F],o)) +n.push(A.dh(j,j,B.xP,j,new A.auC(a,h),j,j,j,j,j)) +m=A.bho(A.a([!0,r.gj(r)],t.HZ)) +l=A.aY(a,j,t.l).w +k=A.zE(A.A(a,B.h,q).gm1()) +q=A.A(a,B.h,q) +o=A.a([A.aYJ(h,B.E,l.a.a>=600,A.a([k,A.zE(q.gmW(q))],o))],o) +if(r.gj(r))o.push(new A.ef(B.dw,j,j,h.d===0?new A.r8(j,j,j,new A.auD(a),new A.auE(r),!0,B.azn):new A.r8(j,b.ae(0,$.biS(),t.v),new A.auF(b),j,new A.auG(r),!0,B.azo),j)) +return A.e9(A.eB(n,j,new A.uB(A.cP(o,B.w,B.z,B.O),m,j),!0,j,j,p),j,A.aYL(B.af_,h,s),j,j,j,!0,!1,!1,j,j)}} +A.auA.prototype={ +$0(){return new A.bq(null,t.C)}, +$S:732} +A.auB.prototype={ +$0(){this.a.sj(0,!0) +return!0}, +$S:0} +A.auC.prototype={ +$0(){return A.fe(new A.auz(this.b),this.a,t.z)}, +$S:0} +A.auz.prototype={ +$1(a){return this.a.d===0?B.arq:B.a2V}, +$S:733} +A.auD.prototype={ +$1(a){var s +if(!(a==null||a.length===0)){s=A.bo_(new A.tQ(a)) +A.bP(this.a).dz(s,null,t.z)}}, +$S:44} +A.auE.prototype={ +$0(){this.a.sj(0,!1) +return!1}, +$S:0} +A.auF.prototype={ +$1(a){J.eW(this.a.ae(0,$.biS().gcb(),t.ct),a) +return a}, +$S:44} +A.auG.prototype={ +$0(){this.a.sj(0,!1) +return!1}, +$S:0} +A.bgN.prototype={ +$1(a){var s=A.a8(a,!0,t.q8) +s.push(this.a) +return s}, +$S:185} +A.bgO.prototype={ +$0(){return A.a([this.a],t.An)}, +$S:183} +A.bgP.prototype={ +$1(a){var s=A.a8(a,!0,t.q8) +s.push(this.a) +return s}, +$S:185} +A.bgQ.prototype={ +$0(){return A.a([this.a],t.An)}, +$S:183} +A.bgR.prototype={ +$1(a){var s=A.a8(a,!0,t.q8) +s.push(this.a) +return s}, +$S:185} +A.bgS.prototype={ +$0(){return A.a([this.a],t.An)}, +$S:183} +A.bgT.prototype={ +$1(a){return this.a}, +$S:736} +A.xa.prototype={ +aO(){return this.f_(0,B.a0Q)}} +A.bgM.prototype={ +$1(a){return this.a}, +$S:278} +A.bgL.prototype={ +$1(a){var s=this.a +return s.qZ(s,new A.bgK(this.b),t.N,t.h1)}, +$S:278} +A.bgK.prototype={ +$2(a,b){var s=J.lT(b,new A.bgJ(this.a)) +return new A.aS(a,A.a8(s,!0,s.$ti.h("z.E")),t.lY)}, +$S:738} +A.bgJ.prototype={ +$1(a){return A.P1(a.gcP(a),this.a)}, +$S:739} +A.xb.prototype={ +aO(){return null}} +A.agJ.prototype={} +A.agK.prototype={} +A.a1F.prototype={ +Lt(a,b,c,d){var s,r=null +if(a==null||J.cf(a))return A.a([],t.p) +s=A.bI(!1,r,r,r,!0,r,r,!1,r,r,r,r,r,!1,r,r,r,r,r,r,A.P(d,r,r,r,r,r,r,r),r,r) +a.toString +return A.a([new A.iS(s,r),new A.mm(new A.kJ(new A.aCl(a,c),J.b3(a),!0,!0,!0,A.t5(),r),b)],t.p)}, +aB(a,b){var s,r,q,p,o,n=b.N($.bDJ(),t.yG),m=A.I(t.N,t.h1),l=A.c_(n) +if(l!=null)m.I(0,l) +s=m.E(0,"installed") +r=m.E(0,"update") +q=m.E(0,"all") +l=new A.aCk(b) +p=t.H +$.bb.bz(new A.dK(new A.aCh(n,l),[]),p) +o=A.c_(n) +$.bb.bz(new A.dK(new A.aCi(n,b,a),[o]),p) +return A.iw(n,a,new A.aCj(this,m,s,r,q,a,l,b),!1,l,!1,null)}} +A.aCl.prototype={ +$2(a,b){var s=this.a,r=J.aj(s),q=r.i(s,b).gvD() +return new A.Cm(r.i(s,b),this.b,new A.bS(q,t._b))}, +$S:740} +A.aCk.prototype={ +$0(){return this.a.jZ(0,$.arJ().gqS(),t.j0)}, +$S:741} +A.aCh.prototype={ +$0(){if(!this.a.gjV())this.b.$0() +return}, +$S:4} +A.aCi.prototype={ +$0(){A.hF(this.a,this.b.ae(0,A.eD(this.c),t.g),!0,t.Lo) +return}, +$S:4} +A.aCj.prototype={ +$1(a){var s,r,q,p,o,n,m,l,k=this,j=null,i=k.b +if(i.a===0){s=k.c +if(s==null||J.cf(s)){s=k.d +if(s==null||J.cf(s)){s=k.e +s=s==null||J.cf(s)}else s=!1}else s=!1}else s=!1 +if(s){i=k.f +s=t.J +r=A.A(i,B.h,s).gmV() +s=A.A(i,B.h,s) +r=A.i5(A.eP(!1,A.P(s.gfi(s),j,j,j,j,j,j,j),B.n,j,j,j,j,j,k.r,j,j),r) +i=r}else{s=A.a([],t.p) +r=k.d +if(!(r==null||J.cf(r))){q=$.lR().i(0,"update") +q=q==null?j:q.ghb(q) +if(q==null)q="" +B.b.I(s,k.a.Lt(r,B.azu,k.r,q))}r=k.c +if(!(r==null||J.cf(r))){q=$.lR().i(0,"installed") +q=q==null?j:q.ghb(q) +if(q==null)q="" +B.b.I(s,k.a.Lt(r,B.azs,k.r,q))}r=k.e +if(!(r==null||J.cf(r))){q=$.lR().i(0,"all") +q=q==null?j:q.ghb(q) +if(q==null)q="" +B.b.I(s,k.a.Lt(r,B.azr,k.r,q))}for(r=A.ie(i,i.r,A.l(i).c),q=k.r,p=k.a,o=t.O;r.v();){n=r.d +m=$.lR().i(0,n) +if(m==null)m=j +else{l=m.c +if(l==null)l=m.b +m=l==null?m.a:l}if(m==null)m=n +B.b.I(s,p.Lt(i.i(0,n),new A.bS(n,o),q,m))}i=A.r2(A.bjN(j,j,j,B.D,j,j,j,!1,B.H,j,!1,s),new A.aCg(k.w))}return i}, +$S:742} +A.aCg.prototype={ +$0(){return this.a.jZ(0,$.arJ().gqS(),t.uz)}, +$S:2} +A.a1D.prototype={ +aB(a,b){var s,r,q,p=null,o=b.N($.bDI(),t.yp),n=b.N($.arI(),t.Xb),m=t.J,l=A.A(a,B.h,m) +l=A.P(l.glq(l),p,p,p,p,p,p,p) +s=t.l +r=A.aY(a,p,s).w +q=A.aY(a,p,s).w.a.a>=600?0.5:0.8 +s=A.aY(a,p,s).w +s=A.cZ(A.oQ(new A.aC9(o,n,b),J.b3(o),p,p,B.H),0.5*r.a.b,q*s.a.a) +m=A.A(a,B.h,m) +return A.l2(A.a([new A.uy(m.gdV(m),p)],t.p),s,p,l)}} +A.aC9.prototype={ +$2(a,b){var s,r=null,q=J.b7(this.a,b).toLowerCase(),p=$.lR().i(0,q),o=this.b,n=o==null?r:J.bEs(o,q),m=p==null,l=m?r:p.c +if(l==null)l=m?r:p.b +l=A.P(l==null?q:l,r,r,r,r,r,r,r) +s=m?r:p.b +if(!(s==null||s.length===0)){s=m?r:p.c +s=s!=(m?r:p.b) +m=s}else m=!1 +if(m){m=p.b +m.toString +m=A.P(m,r,r,r,r,r,r,r)}else m=r +return A.re(B.jS,new A.bS(q,t.O),new A.aC8(this.c,o,q,n),r,m,l,n!==-1)}, +$S:279} +A.aC8.prototype={ +$1(a){var s,r,q,p=this +if(a){s=p.a.ae(0,$.arI().gcb(),t.TO) +r=A.aW(t.N) +q=p.b +if(q!=null)r.I(0,q) +r.F(0,p.c) +J.eW(s,A.a8(r,!0,r.$ti.c))}else{s=p.d +s=s==null?null:B.f.gcZ(s) +if(s===!1){s=A.a([],t.s) +r=p.b +if(r!=null)B.b.I(s,r) +B.b.E(s,p.c) +J.eW(p.a.ae(0,$.arI().gcb(),t.TO),s)}}}, +$S:7} +A.Cm.prototype={ +aB(a,b){var s,r,q,p,o=null,n=b.N($.biT(),t.FT),m=$.bb.bz(new A.dc(!1,o,t.Kr),t.G),l=this.f,k=l.gAR(l) +if(k==null)k="" +k=A.or(B.bv,new A.a9c(m.gj(m),B.e8,B.ar5,k,o),B.bd) +s=l.gcP(l) +s=A.P(s==null?"":s,o,B.ad,o,o,o,o,o) +if(l.gn8(l)!=null){r=l.gn8(l) +r=A.i(r==null?o:r.ghb(r))+" "}else r=o +q=A.a([],t.VO) +p=l.gXX() +if(!(p==null||p.length===0)){p=l.gXX() +q.push(A.dr(o,B.P5,(p==null?"":p)+" "))}p=l.gW1() +if(p===!0)q.push(A.dr(o,B.atT,A.A(a,B.h,t.J).gnA())) +return A.bI(!1,o,o,o,!0,o,o,!1,this.a,k,o,o,o,!1,o,o,o,o,A.blM(A.dr(q,B.ix,r),o,o),o,s,new A.a1E(l,n,m,b,this.r,o),o)}} +A.a1E.prototype={ +A(a){var s,r=this,q=null,p=r.c,o=p.gjW() +if(o===!0){p=p.gM9() +p=p===!0?new A.aCc(r):q +return new A.a6B(p,q,q,q,q,B.n,q,!1,q,!0,A.P(A.A(a,B.h,t.J).gjW(),q,q,q,q,B.awv,q,q),q)}else{o=p.gM9() +if(o===!0){o=r.e +s=!o.gj(o)?new A.aCd(r,a):q +p=p.gM0() +if(p===!0){p=t.J +if(o.gj(o)){p=A.A(a,B.h,p) +p=p.glL(p)}else{p=A.A(a,B.h,p) +p=p.gis(p)}}else{p=t.J +p=o.gj(o)?A.A(a,B.h,p).goi():A.A(a,B.h,p).goh()}return A.eP(!1,A.P(p,q,q,q,q,q,q,q),B.n,q,q,q,q,q,s,q,q)}else{p=r.e +o=!p.gj(p)?new A.aCe(r,a):q +s=t.J +if(p.gj(p)){p=A.A(a,B.h,s) +p=p.gn3(p)}else p=A.A(a,B.h,s).gn2() +return A.eP(!1,A.P(p,q,q,q,q,q,q,q),B.n,q,q,q,q,q,o,q,q)}}}} +A.aCc.prototype={ +$0(){var s=this.a,r=s.c.gvD() +r.toString +return s.d.ae2(r)}, +$S:0} +A.aCd.prototype={ +$0(){var s=0,r=A.y(t.H),q=1,p,o=this,n,m,l,k,j,i,h +var $async$$0=A.u(function(a,b){if(a===1){p=b +s=q}while(true)switch(s){case 0:q=3 +m=o.a +l=m.e +l.sj(0,!0) +k=o.b +j=t.P +s=6 +return A.t(A.dE(new A.aCb(m,k),j),$async$$0) +case 6:n=b +if(k.e!=null)A.hF(n,m.f.ae(0,A.eD(k),t.g),!1,j) +l.sj(0,!1) +q=1 +s=5 +break +case 3:q=2 +h=p +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$$0,r)}, +$S:2} +A.aCb.prototype={ +$0(){var s=0,r=A.y(t.P),q=this,p,o,n,m +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:o=q.a +n=o.c +m=n.gvD() +if(m==null||m.length===0)throw A.c(A.XK(q.b).glh()) +m=n.gM0() +p=o.d +s=m===!0?2:4 +break +case 2:n=n.gvD() +n.toString +m=t.z +s=5 +return A.t(p.a.H_(0,"/extension/update/"+n,null,m,m),$async$$0) +case 5:s=3 +break +case 4:n=n.gvD() +n.toString +s=6 +return A.t(p.ae2(n),$async$$0) +case 6:case 3:s=7 +return A.t(o.r.$0(),$async$$0) +case 7:return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:53} +A.aCe.prototype={ +$0(){var s=0,r=A.y(t.H),q=1,p,o=this,n,m,l,k,j,i,h +var $async$$0=A.u(function(a,b){if(a===1){p=b +s=q}while(true)switch(s){case 0:q=3 +m=o.a +l=m.e +l.sj(0,!0) +k=o.b +j=t.P +s=6 +return A.t(A.dE(new A.aCa(m,k),j),$async$$0) +case 6:n=b +if(k.e!=null)A.hF(n,m.f.ae(0,A.eD(k),t.g),!1,j) +l.sj(0,!1) +q=1 +s=5 +break +case 3:q=2 +h=p +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$$0,r)}, +$S:2} +A.aCa.prototype={ +$0(){var s=0,r=A.y(t.P),q=this,p,o,n,m,l,k,j +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:l=q.a +k=l.c +j=k.gvD() +if(j==null||j.length===0)throw A.c(A.XK(q.b).glh()) +j=k.gvD() +j.toString +m=t.z +s=2 +return A.t(l.d.a.H_(0,"/extension/install/"+j,null,m,m),$async$$0) +case 2:j=k.gn8(k) +j=j==null?null:j.guW(j) +if(!(j==null||j.length===0)){k=k.gn8(k) +k=k.guW(k) +k.toString +p=k +k=l.f +j=$.Xd() +o=k.ae(0,j,t.Xb) +m=o +if(!(m==null||J.cf(m))){m=o +m.toString +m=!J.oh(m,p)}else m=!1 +if(m){k=k.ae(0,j.gcb(),t.EH) +n=A.iJ(o,t.N) +J.ff(n,p) +n=n +J.eW(k,A.a8(n,!0,A.cq(n).c))}}s=3 +return A.t(l.r.$0(),$async$$0) +case 3:return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:53} +A.a31.prototype={ +Ls(a,b){return this.aIS(a,b)}, +aIS(a,b){var s=0,r=A.y(t.z),q,p,o +var $async$Ls=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:q=a.ae(0,A.eD(b),t.g) +s=2 +return A.t($.bo6().iL(A.a(["apk"],t.s),B.nj),$async$Ls) +case 2:p=d +o=p==null?null:p.a +if(!(o==null||J.cf(o)))if(b.e!=null)q.rK(0,A.A(b,B.h,t.J).gn4()) +A.dE(new A.aHs(a,b,p),t.H).be(new A.aHt(q,a,b),t.X) +return A.w(null,r)}}) +return A.x($async$Ls,r)}, +aB(a,b){var s=null +return A.dh(s,s,B.xX,s,new A.aHp(this,b,a),s,s,s,s,s)}} +A.aHs.prototype={ +$0(){var s=this.a.ae(0,$.biT(),t.FT),r=this.c +r=r==null?null:J.Xh(r.a) +return s.VS(this.b,r)}, +$S:2} +A.aHt.prototype={ +$1(a){var s=this.a +return A.wg(a,new A.aHq(this.b,s,this.c),new A.aHr(a,s),t.H,t.X)}, +$S:1117} +A.aHr.prototype={ +$2(a,b){return A.hF(this.a,this.b,!1,t.H)}, +$S:14} +A.aHq.prototype={ +$1(a){var s,r=this.a,q=$.arJ() +if(r.e==null)A.r(A.R(u.w)) +r.gm6().kx(q) +r=this.b +q=A.A(this.c,B.h,t.J).gmU() +s=r.b +s===$&&A.b() +s.vK() +r.rK(0,q)}, +$S:19} +A.aHp.prototype={ +$0(){return this.a.Ls(this.b,this.c)}, +$S:0} +A.big.prototype={ +$0(){return this.a.N($.AP(),t.v4).afr(1,this.c,this.b,B.db)}, +$S:280} +A.bhT.prototype={ +$2(a,b){var s=A.a8(a,!0,t.s7) +B.b.I(s,b) +return s}, +$S:746} +A.bhU.prototype={ +$1(a){return this.a}, +$S:747} +A.aaa.prototype={ +$2$query(a,b){return A.blE(a,b)}, +$1(a){return this.$2$query(a,null)}, +fF(a){return A.blE(a.fr,a.fx)}, +gf9(){return null}} +A.ON.prototype={ +bI(a){var s=null,r=t.B +return new A.ana(s,!1,new A.ci(A.aX(0,s,!1,t._C),t.ZI),s,s,s,s,this,A.a([],t.Vf),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K))}, +k(a,b){if(b==null)return!1 +return b instanceof A.ON&&b.fr===this.fr&&b.fx==this.fx}, +gu(a){return A.bwq(A.anx(A.anx(A.anx(0,A.cS(A.p(this))),B.c.gu(this.fr)),J.T(this.fx)))}} +A.aXh.prototype={ +$1(a){return A.bif(t.J9.a(a),this.a,this.b)}, +$S:748} +A.OO.prototype={} +A.ana.prototype={} +A.a7x.prototype={ +$1$query(a){return A.blm(a)}, +$0(){return this.$1$query(null)}, +fF(a){return A.blm(a.dy)}, +gf9(){return null}} +A.Nc.prototype={ +bI(a){var s=null,r=t.B +return new A.akJ(s,!1,this,A.a([],t.bx),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K))}, +k(a,b){if(b==null)return!1 +return b instanceof A.Nc&&b.dy==this.dy}, +gu(a){return A.bwq(A.anx(A.anx(0,A.cS(A.p(this))),J.T(this.dy)))}} +A.aOG.prototype={ +$1(a){return A.bX6(t._L.a(a),this.a)}, +$S:749} +A.Nd.prototype={} +A.akJ.prototype={} +A.apV.prototype={} +A.aqo.prototype={} +A.a2l.prototype={ +aB(a,b){var s=null,r=$.bb.bz(new A.dc(this.f,s,t.ar),t.XR),q=b.N(A.blm(r.gj(r)),t.z6),p=A.P(A.A(a,B.h,t.J).glQ(),s,s,s,s,s,s,s),o=A.bho(A.a([!0],t.HZ)) +return A.e9(A.eB(s,s,new A.uB(A.cP(A.a([new A.ef(B.dw,s,s,new A.r8(s,r.gj(r),s,new A.aFe(r),s,!0,s),s)],t.p),B.w,B.z,B.O),o,s),s,s,s,p),s,A.iw(q,a,new A.aFf(a,b,r),!1,s,!1,s),s,s,s,!0,!1,!1,s,s)}} +A.aFe.prototype={ +$1(a){this.a.sj(0,a) +return a}, +$S:44} +A.aFf.prototype={ +$1(a){var s,r=null,q=J.aj(a),p=q.gak(a) +if(p){q=this.a +p=t.J +s=A.A(q,B.h,p).glB() +p=A.A(q,B.h,p) +s=A.i5(A.eP(!1,A.P(p.gfi(p),r,r,r,r,r,r,r),B.n,r,r,r,r,r,new A.aFc(this.b),r,r),s) +q=s}else q=A.oQ(new A.aFd(a,this.c),q.gt(a),r,r,B.H) +return q}, +$S:750} +A.aFc.prototype={ +$0(){var s=this.a,r=$.bj5() +if(s.e==null)A.r(A.R(u.w)) +s.gm6().kx(r) +return null}, +$S:0} +A.aFd.prototype={ +$2(a,b){var s,r=this.a,q=J.aj(r) +if(J.fG(q.i(r,b).b)==null)return B.a1 +else{s=this.b +return new A.aac(q.i(r,b).b,q.i(r,b).a,s.gj(s),null)}}, +$S:28} +A.aac.prototype={ +A(a){var s=null,r=this.c,q=r.ghb(r) +r=q==null?r.gcP(r):q +return A.cP(A.a([A.bI(!1,s,s,s,!0,s,s,!1,s,s,s,s,new A.aXv(this,a),!1,s,s,s,s,s,s,A.P(r==null?"":r,s,s,s,s,s,s,s),B.a6S,s),A.iw(this.d,a,new A.aXw(a),!1,s,!1,s)],t.p),B.dl,B.z,B.ah)}} +A.aXv.prototype={ +$0(){var s=this.a,r=s.c +r=r.gaL(r) +r.toString +s=A.w2(new A.kM(r,B.db,s.e,null)) +return A.bP(this.b).dz(s,null,t.z)}, +$S:0} +A.aXw.prototype={ +$1(a){var s,r,q,p,o,n=null,m=J.aj(a) +if(m.gak(a))m=new A.b4(B.jo,A.P(A.A(this.a,B.h,t.J).gnx(),n,n,n,n,n,n,n),n) +else{s=A.a([],t.p) +for(m=m.gam(a),r=this.a;m.v();){q=m.gG(m) +p=q.gfL() +o=q.gaL(q)!=null?new A.aXu(q,r):n +s.push(new A.fB(144,192,new A.qM(q,o,n,!1,!0,!0,p===!0,n),n))}m=A.nG(A.db(s,B.w,B.z,B.O),n,B.D,n,n,B.ar)}return m}, +$S:751} +A.aXu.prototype={ +$0(){var s=this.a +s=s.gaL(s) +s.toString +s=A.oe(new A.iO(s,null)) +return A.bP(this.b).dz(s,null,t.z)}, +$S:0} +A.bi9.prototype={ +$1(a){var s=A.a8(a,!0,t.s7) +s.push(this.a) +return s}, +$S:328} +A.bia.prototype={ +$0(){return A.a([this.a],t.wb)}, +$S:753} +A.bib.prototype={ +$1(a){return this.a}, +$S:754} +A.zw.prototype={ +aO(){var s,r,q,p=t.N,o=A.I(p,t.iW),n=this.a +n===$&&A.b() +s=A.c_(n.N($.bpj(),t.nS)) +if(s!=null)o.I(0,s) +r=n.N($.Xd(),t.Xb) +o.E(0,"lastUsed") +o.E(0,"localsourcelang") +o=A.a8(new A.cl(o,o.$ti.h("cl<1>")),!0,t.z) +q=A.lo(null,null,p,t.y) +A.bJS(q,o,null,new A.aVQ(r)) +return q}, +aPU(a,b){var s=t.EH,r=this.a +if(!b){r===$&&A.b() +s=r.ae(0,$.Xd().gcb(),s) +r=J.c4(s) +r.sd0(s,new A.aVR(a).$1(r.gd0(s)))}else{r===$&&A.b() +s=r.ae(0,$.Xd().gcb(),s) +r=J.c4(s) +r.sd0(s,new A.aVS(a).$1(r.gd0(s)))}}} +A.aVQ.prototype={ +$1(a){var s=this.a +s=s==null?null:J.oh(s,a) +return s===!0}, +$S:98} +A.aVR.prototype={ +$1(a){var s=A.a([],t.s) +if(a!=null)B.b.I(s,a) +B.b.E(s,this.a) +return s}, +$S:282} +A.aVS.prototype={ +$1(a){var s=A.aW(t.N) +if(a!=null)s.I(0,a) +s.F(0,this.a) +return A.a8(s,!0,s.$ti.c)}, +$S:282} +A.bi8.prototype={ +$1(a){return this.a}, +$S:756} +A.bid.prototype={ +$1(a){return J.lT(a,new A.bic(this.a))}, +$S:757} +A.bic.prototype={ +$1(a){return A.P1(a.gcP(a),this.a)}, +$S:758} +A.bie.prototype={ +$1(a){return a}, +$S:328} +A.zx.prototype={ +aO(){return this.f_(0,B.a0S)}} +A.zy.prototype={ +aO(){return this.f_(0,B.a19)}} +A.aa9.prototype={ +$1$query(a){return A.blD(a)}, +$0(){return this.$1$query(null)}, +fF(a){return A.blD(a.dy)}, +gf9(){return null}} +A.OL.prototype={ +bI(a){var s=null,r=t.B +return new A.an9(s,!1,this,A.a([],t.lB),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K))}, +k(a,b){if(b==null)return!1 +return b instanceof A.OL&&b.dy==this.dy}, +gu(a){var s=A.bwk(A.bwk(0,A.cS(A.p(this))),J.T(this.dy)) +s=s+((s&67108863)<<3)&536870911 +s^=s>>>11 +return s+((s&16383)<<15)&536870911}} +A.aXg.prototype={ +$1(a){return A.bY7(t.ao.a(a),this.a)}, +$S:759} +A.OM.prototype={} +A.an9.prototype={} +A.an3.prototype={} +A.an4.prototype={} +A.aqn.prototype={} +A.aab.prototype={ +aB(a,b){var s,r,q,p,o,n=b.N($.bj6(),t.z1),m=A.I(t.N,t.iW),l=A.c_(n) +if(l!=null)m.I(0,l) +s=m.E(0,"localsourcelang") +r=m.E(0,"lastUsed") +q=m.E(0,"all") +l=new A.aXt(b) +p=t.H +$.bb.bz(new A.dK(new A.aXq(n,l),[]),p) +o=A.c_(n) +$.bb.bz(new A.dK(new A.aXr(n,b,a),[o]),p) +return A.iw(n,a,new A.aXs(m,s,r,a,l,q),!1,l,!1,null)}} +A.aXt.prototype={ +$0(){return this.a.jZ(0,$.bj5().gqS(),t.EJ)}, +$S:760} +A.aXq.prototype={ +$0(){if(!this.a.gjV())this.b.$0() +return}, +$S:4} +A.aXr.prototype={ +$0(){A.hF(this.a,this.b.ae(0,A.eD(this.c),t.g),!0,t.Uz) +return}, +$S:4} +A.aXs.prototype={ +$1(a){var s,r,q,p,o,n,m,l=this,k=null,j=l.a +if(j.a===0){s=l.b +if(s==null||J.cf(s)){s=l.c +s=s==null||J.cf(s)}else s=!1}else s=!1 +if(s){j=l.d +s=t.J +r=A.A(j,B.h,s).glB() +s=A.A(j,B.h,s) +return A.i5(A.eP(!1,A.P(s.gfi(s),k,k,k,k,k,k,k),B.n,k,k,k,k,k,l.e,k,k),r)}s=t.p +r=A.a([],s) +q=l.c +if(!(q==null||J.cf(q))){p=$.lR().i(0,"lastUsed") +p=p==null?k:p.ghb(p) +p=A.bI(!1,k,k,k,!0,k,k,!1,k,k,k,k,k,!1,k,k,k,k,k,k,A.P(p==null?"":p,k,k,k,k,k,k,k),k,k) +q.toString +B.b.I(r,A.a([new A.iS(p,k),new A.iS(new A.rc(J.jD(q),k),k)],s))}q=l.f +p=q==null +if(!(p||J.cf(q))){o=$.lR().i(0,"all") +o=o==null?k:o.ghb(o) +o=A.bI(!1,k,k,k,!0,k,k,!1,k,k,k,k,k,!1,k,k,k,k,k,k,A.P(o==null?"":o,k,k,k,k,k,k,k),k,k) +p=p?k:J.b3(q) +B.b.I(r,A.a([new A.iS(o,k),new A.mm(new A.kJ(new A.aXo(q),p,!0,!0,!0,A.t5(),k),k)],s))}for(q=A.ie(j,j.r,A.l(j).c);q.v();){p=q.d +o=A.a([],s) +n=j.i(0,p) +if(!(n==null||J.cf(n))){n=$.lR().i(0,p) +if(n==null)n=k +else{m=n.c +if(m==null)m=n.b +n=m==null?n.a:m}n=A.bI(!1,k,k,k,!0,k,k,!1,k,k,k,k,k,!1,k,k,k,k,k,k,A.P(n==null?p:n,k,k,k,k,k,k,k),k,k) +m=j.i(0,p) +m=m==null?k:J.b3(m) +B.b.I(o,A.a([new A.iS(n,k),new A.mm(new A.kJ(new A.aXp(j,p),m,!0,!0,!0,A.t5(),k),k)],s))}B.b.I(r,o)}j=l.b +if(!(j==null||J.cf(j))){q=$.lR().i(0,"localsourcelang") +q=q==null?k:q.ghb(q) +q=A.bI(!1,k,k,k,!0,k,k,!1,k,k,k,k,k,!1,k,k,k,k,k,k,A.P(q==null?"":q,k,k,k,k,k,k,k),k,k) +j.toString +B.b.I(r,A.a([new A.iS(q,k),new A.iS(new A.rc(J.jD(j),k),k)],s))}return A.r2(A.bjN(k,k,k,B.D,k,k,k,!1,B.H,k,!1,r),l.e)}, +$S:761} +A.aXo.prototype={ +$2(a,b){var s=this.a +s.toString +return new A.rc(J.b7(s,b),null)}, +$S:283} +A.aXp.prototype={ +$2(a,b){var s=this.a.i(0,this.b) +s.toString +return new A.rc(J.b7(s,b),null)}, +$S:283} +A.a9W.prototype={ +aB(a,b){var s,r,q,p,o,n=null,m=b.N($.bpi(),t.Yl),l=$.bb.bz(new A.dc([],n,t.Dw),t.Wy) +$.bb.bz(new A.dK(new A.aVV(m,l),[]),t.H) +s=t.J +r=A.A(a,B.h,s) +r=A.P(r.glq(r),n,n,n,n,n,n,n) +q=t.l +p=A.aY(a,n,q).w +o=A.aY(a,n,q).w.a.a>=600?0.5:0.8 +q=A.aY(a,n,q).w +q=A.cZ(A.oQ(new A.aVW(l,m,b),J.b3(l.gj(l)),n,n,B.H),0.5*p.a.b,o*q.a.a) +s=A.A(a,B.h,s) +return A.l2(A.a([new A.uy(s.gdV(s),n)],t.p),q,n,r)}} +A.aVV.prototype={ +$0(){var s=this.a,r=J.fg(J.iu(s)) +B.b.fw(r,new A.aVU(s)) +this.b.sj(0,r) +return null}, +$S:4} +A.aVU.prototype={ +$2(a,b){var s,r=this.a,q=J.aj(r),p=q.i(r,a) +r=q.i(r,b) +s=r===!0 +if(p===!0===s)r=B.c.bO(a,b) +else r=s?1:-1 +return r}, +$S:763} +A.aVW.prototype={ +$2(a,b){var s,r,q,p=null,o=this.a,n=J.b7(o.gj(o),b),m=$.lR().i(0,n) +o=J.b7(this.b,n) +s=m==null +r=s?p:m.c +if(r==null)r=s?p:m.b +r=A.P(r==null?n:r,p,p,p,p,p,p,p) +q=s?p:m.b +if(!(q==null||q.length===0)){q=s?p:m.c +q=q!=(s?p:m.b) +s=q}else s=!1 +if(s){s=m.b +s.toString +s=A.P(s,p,p,p,p,p,p,p)}else s=p +return A.re(B.jS,p,new A.aVT(this.c,n),p,s,r,o===!0)}, +$S:279} +A.aVT.prototype={ +$1(a){this.a.ae(0,$.bpi().gcb(),t.u8).aPU(this.b,a)}, +$S:7} +A.rc.prototype={ +aB(a,b){var s,r,q=null,p=this.e,o=p.gAR(p) +o=A.or(B.bv,A.nF(!1,q,o==null?"":o,q,!1,B.e8,q),B.bd) +s=p.gcP(p) +s=A.P(s==null?"":s,q,q,q,q,q,q,q) +r=p.gn8(p) +r=r==null?q:r.ghb(r) +if(!(r==null||r.length===0)){r=p.gn8(p) +r=r==null?q:r.ghb(r) +r=A.P(r==null?"":r,q,q,q,q,q,q,q)}else r=q +p=p.gP3() +p=p===!0?A.eP(!1,A.P(A.A(a,B.h,t.J).gn9(),q,q,q,q,q,q,q),B.n,q,q,q,q,q,new A.aVX(this,b,a),q,q):q +return A.bI(!1,q,q,q,!0,q,q,!1,q,o,q,q,new A.aVY(this,b,a),!1,q,q,q,q,r,q,s,p,q)}} +A.aVY.prototype={ +$0(){var s=0,r=A.y(t.H),q,p=this,o +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:o=p.a.e +if(o.gaL(o)==null){s=1 +break}J.eW(p.b.ae(0,$.arO().gcb(),t.KP),o.gaL(o)) +o=o.gaL(o) +o.toString +o=A.w2(new A.kM(o,B.h_,null,null)) +A.bP(p.c).dz(o,null,t.z) +case 1:return A.w(q,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.aVX.prototype={ +$0(){var s=0,r=A.y(t.H),q=this,p +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:p=q.a.e +J.eW(q.b.ae(0,$.arO().gcb(),t.KP),p.gaL(p)) +p=p.gaL(p) +p.toString +p=A.w2(new A.kM(p,B.ir,null,null)) +A.bP(q.c).dz(p,null,t.z) +return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.k4.prototype={ +aQd(a){var s,r=this.a +r===$&&A.b() +r.p5(0) +s=t.uS +s=A.om(r.gjs(),new A.aWa(a),s,s) +r.ad(s) +return s}, +iN(a){var s=0,r=A.y(t.H),q,p=this,o,n +var $async$iN=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:n=p.a +n===$&&A.b() +o=p.b +o===$&&A.b() +o=A.Yl(o) +n=n.e +n===$&&A.b() +n.kx(o) +q=null +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$iN,r)}, +gaf8(){var s,r,q,p,o=this.a +o===$&&A.b() +s=this.b +s===$&&A.b() +s=A.c_(o.ae(0,A.Yl(s),t.L2)) +r=A.brz(s==null?A.a([],t.dH):s) +o.p5(0) +o=A.c_(o.gjs()) +q=A.brz(o==null?A.a([],t.dH):o) +if(r.length!==q.length)return q +o=A.a([],t.H7) +for(p=0;p=600)A.pa(r).G_() +else A.bnP(new A.aWs(s.a,s.c,s.d,s.e,s.f),null,r,null,t.z)}, +$S:7} +A.aWs.prototype={ +$1(a){var s=this +return s.a.aa9(s.b,s.c,A.c_(s.d),s.e,a)}, +$S:13} +A.aWA.prototype={ +$0(){this.a.sj(0,!1) +return!1}, +$S:0} +A.aWz.prototype={ +$1(a){var s=this,r=s.a +if(r.r===B.db){s.b.sj(0,a) +s.c.jp(0)}else{if(a==null)return +r=A.w2(new A.kM(r.f,B.db,a,null)) +A.bP(s.d).nI(r,null,t.X)}}, +$S:44} +A.aWB.prototype={ +$1(a){var s=this +return s.a.aa9(s.b,s.c,A.c_(s.d),s.e,a)}, +$S:13} +A.aWC.prototype={ +$0(){var s=0,r=A.y(t.H),q,p=this +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:q=p.a.jp(0) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.aWG.prototype={ +$0(){return this.b.jZ(0,A.aa8(this.a.f),t.H)}, +$S:0} +A.aWH.prototype={ +$1(a){var s=null,r=A.A(this.a,B.h,t.J) +return A.e9(A.eB(s,s,s,s,s,s,A.P(r.gfS(r),s,s,s,s,s,s,s)),s,a,s,s,s,!0,!1,!1,s,s)}, +$S:128} +A.xe.prototype={ +aN0(a){return this.d.$1(this.c.a8F(a))}, +xN(a){return this.aN0(a,t.AK)}, +A(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=this,a4=null,a5={},a6=a3.c.gF3(),a7=A.bM("#0#9",new A.aCT(a6)),a8=A.bM("#0#11",new A.aCU(a6)) +$label0$0:{if(a6 instanceof A.nS){s=a6.b +r=s +q=!0 +p=!0}else{r=a4 +s=r +q=!1 +p=!1}if(p){if(!(r==null||r.length===0)){r.toString +p=A.bI(!1,a4,!0,a4,!0,a4,a4,!1,a4,a4,a4,a4,a4,!1,a4,a4,a4,a4,a4,a4,A.P(r,a4,a4,a4,a4,a4,a4,a4),a4,a4)}else p=B.a1 +break $label0$0}if(a6 instanceof A.nV){p=B.fh +break $label0$0}if(a6 instanceof A.nX){if(!q){s=a6.b +q=!0}if(q)r=s +else{s=a6.b +r=s +q=!0}o=a6.a +n=o +m=!0 +p=!0}else{n=a4 +r=n +o=r +m=!1 +p=!1}if(p){p=new A.r8(r,n,new A.aCV(a3,a6),a4,a4,!1,a4) +break $label0$0}if(a6 instanceof A.nR){if(!q){s=a6.b +q=!0}if(q)r=s +else{s=a6.b +r=s +q=!0}if(m)p=o +else{o=a6.a +p=o +m=!0}if(t.u.b(p)){if(m)n=o +else{o=a6.a +n=o +m=!0}p=!0}else{n=a4 +p=!1}}else{n=a4 +r=n +p=!1}if(p){p=A.Bo(a4,B.fq,a4,a4,new A.aCW(a3,a6),a4,A.P(r==null?"":r,a4,a4,a4,a4,a4,a4,a4),!1,n===!0) +break $label0$0}if(a6 instanceof A.nY){if(!q){s=a6.b +q=!0}if(q)r=s +else{s=a6.b +r=s +q=!0}if(m)p=o +else{o=a6.a +p=o +m=!0}if(t.bo.b(p)){if(m)n=o +else{o=a6.a +n=o +m=!0}p=!0}else{n=a4 +p=!1}}else{n=a4 +r=n +p=!1}if(p){p=n==null||n===0?a4:n===1 +p=A.Bo(a4,B.fq,a4,a4,new A.aCX(a3,a6),a4,A.P(r==null?"":r,a4,a4,a4,a4,a4,a4,a4),!0,p) +break $label0$0}if(a6 instanceof A.nW){if(!q){s=a6.b +q=!0}if(q)r=s +else{s=a6.b +r=s +q=!0}if(m)p=o +else{o=a6.a +p=o +m=!0}if(t.eX.b(p)){if(m)n=o +else{o=a6.a +n=o +m=!0}if(t.Xb.b(a7.T())){l=a7.T() +p=!0}else{l=a4 +p=!1}}else{l=a4 +n=l +p=!1}}else{l=a4 +n=l +r=n +p=!1}if(p){p=r==null?"":r +p=A.P(p,a4,a4,a4,a4,A.B(a9).p3.as,a4,a4) +k=A.a([],t.p) +j=n==null +i=l==null +h=!i +g=A.i(r)+"-" +f=t.O +e=0 +while(!0){d=i?a4:J.b3(l) +if(d!=null)c=d===0?1/d<0:d<0 +else c=!0 +if(c)d=0 +else d.toString +if(!(e>") +i=A.db(A.a([j,A.dN(new A.K4(new A.b4(B.dJ,new A.C6(A.a8(new A.ad(a1,new A.aD_(a5,a9),p),!0,p.h("av.E")),n,i,new A.aD0(a3,a6),B.a77,!0,a4,t.CB),a4),a4),1)],t.p),B.w,B.z,B.ah) +p=i +break $label0$0}a5.b=null +if(a6 instanceof A.mw){if(!q){s=a6.b +q=!0}r=q?s:a6.b +if(m)p=o +else{o=a6.gd0(a6) +p=o +m=!0}if(t.uS.b(p)){a5.b=m?o:a6.gd0(a6) +p=!0}else p=!1}else{r=a4 +p=!1}if(p){p=r==null?"":r +p=A.P(p,a4,a4,a4,a4,A.B(a9).p3.as,a4,a4) +k=A.a([],t.p) +j=A.i(r)+"-" +i=t.O +e=0 +while(!0){h=a5.b +h=h==null?a4:J.b3(h) +if(h!=null)g=h===0?1/h<0:h<0 +else g=!0 +if(g)h=0 +else h.toString +if(!(e>>16&255,s.gj(s)>>>8&255,s.gj(s)&255),r,r)}return new A.b4(B.a2z,new A.Z_(q,o,this.e,p,r),r)}} +A.k5.prototype={ +NM(a,b){return this.aQi(a,b)}, +aQi(a,b){var s=0,r=A.y(t.z),q=this,p,o,n,m +var $async$NM=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:n=b.gHz() +m=n==null?null:n.gjM() +n=q.a +n===$&&A.b() +p=n.ae(0,$.AP(),t.v4) +o=q.b +o===$&&A.b() +s=2 +return A.t(p.NN(A.am(["position",a,"value",t.j.b(m)?B.az.xe(m,null):m],t.N,t.z),o),$async$NM) +case 2:p=A.atZ(o) +n=n.e +n===$&&A.b() +n.kx(p) +return A.w(null,r)}}) +return A.x($async$NM,r)}} +A.Ym.prototype={ +$1(a){return A.atZ(a)}, +fF(a){return A.atZ(a.fr)}, +gf9(){return null}} +A.Iy.prototype={ +bI(a){var s=null,r=t.B +return new A.aer(s,!1,new A.ci(A.aX(0,s,!1,t.I4),t.hZ),s,s,s,s,this,A.a([],t.VV),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K))}, +k(a,b){if(b==null)return!1 +return b instanceof A.Iy&&b.fr===this.fr}, +gu(a){return A.bwr(A.bd_(A.bd_(0,A.cS(A.p(this))),B.c.gu(this.fr)))}} +A.au_.prototype={ +$1(a){return t.nw.a(a).ae(0,$.AP(),t.v4).Hb(this.a)}, +$S:789} +A.Iz.prototype={} +A.aer.prototype={} +A.adI.prototype={} +A.aa5.prototype={ +$1(a){return A.blC(a)}, +fF(a){return A.blC(a.fx)}, +gf9(){return null}} +A.OJ.prototype={ +rq(a){var s=a.a +s===$&&A.b() +return s.N(A.atZ(this.fx),t.AC)}, +bI(a){var s=null,r=t.B +return new A.an6(s,!1,new A.ci(A.aX(0,s,!1,t.DJ),t.h6),this,A.a([],t.VV),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K))}, +k(a,b){if(b==null)return!1 +return b instanceof A.OJ&&b.fx===this.fx}, +gu(a){return A.bwr(A.bd_(A.bd_(0,A.cS(A.p(this))),B.c.gu(this.fx)))}} +A.aWT.prototype={ +$0(){var s=new A.k5() +s.b=this.a +return s}, +$S:790} +A.aWU.prototype={} +A.an6.prototype={} +A.apf.prototype={} +A.aql.prototype={} +A.aa6.prototype={ +aB(a,b){var s=null,r=this.f,q=b.N(A.aa8(r),t.uR),p=A.blC(r),o=b.N(p,t.AC),n=A.c_(o) +r=A.c_(q) +r=r==null?s:J.bEg(r) +if(r==null)r="" +return A.e9(A.eB(s,s,s,s,s,s,A.P(r,s,s,s,s,A.B(a).p3.r,s,s)),s,A.iw(o,a,new A.aWX(n,b,p),!1,s,!1,s),s,s,s,!0,!1,!1,s,s)}} +A.aWX.prototype={ +$1(a){var s=this.a,r=s==null?null:J.b3(s) +if(r==null)r=0 +return A.oQ(new A.aWW(s,this.b,this.c),r,null,null,B.H)}, +$S:791} +A.aWW.prototype={ +$2(a,b){var s=this.a,r=s==null?null:J.b7(s,b) +if(r==null)return B.a1 +s=r.gHz() +s=s==null?null:s.gn6(s) +return new A.aa7(r,new A.aWV(this.b,this.c,b),new A.bS("Source-preference-"+A.i(s),t.O))}, +$S:28} +A.aWV.prototype={ +$1(a){this.a.ae(0,this.b.gcb(),t.Sb).NM(this.c,a)}, +$S:792} +A.aa7.prototype={ +acg(a,b){this.d.$1(this.c.a8M(a)) +if(b!=null)A.du(b,!1).dO(null)}, +Wq(a,b){return this.acg(a,b,t.ZR)}, +acf(a){return this.acg(a,null,t.ZR)}, +A(a8){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=null,a4={},a5=a2.c.gHz(),a6=A.bM("#0#12",new A.aX5(a5)),a7=A.bM("#0#13",new A.aX6(a5)) +$label0$0:{if(a5 instanceof A.pr){s=a5.a +r=a5.b +q=a5.c +p=a5.d +o=a5.e +n=o +m=p +l=!0 +k=!0 +j=q +i=!0 +h=r +g=!0 +f=s +e=!0 +d=!0}else{n=a3 +m=n +j=m +h=j +f=h +o=f +p=o +q=p +r=q +s=r +e=!1 +d=!1 +g=!1 +i=!1 +l=!1 +k=!1}if(k){k=f==null?"":f +c=A.P(h==null?"":h,a3,a3,a3,a3,a3,a3,a3) +if(!(j==null||j.length===0)){j.toString +b=A.P(j,a3,a3,a3,a3,a3,a3,a3)}else b=a3 +a=m===!0 +a=n==null?a:n +a=A.Bo(a3,B.cI,a3,new A.bS(k,t.O),new A.aX7(a2,a5),b,c,!1,a) +k=a +break $label0$0}if(a5 instanceof A.py){if(!e){s=a5.a +e=!0}if(e)f=s +else{s=a5.a +f=s +e=!0}if(!d){r=a5.b +d=!0}if(d)h=r +else{r=a5.b +h=r +d=!0}if(!g){q=a5.c +g=!0}if(g)j=q +else{q=a5.c +j=q +g=!0}if(!i){p=a5.d +i=!0}if(i)m=p +else{p=a5.d +m=p +i=!0}if(!l){o=a5.e +l=!0}if(l)n=o +else{o=a5.e +n=o +l=!0}k=!0}else{n=a3 +m=n +j=m +h=j +f=h +k=!1}if(k){k=f==null?"":f +c=A.P(h==null?"":h,a3,a3,a3,a3,a3,a3,a3) +if(!(j==null||j.length===0)){j.toString +b=A.P(j,a3,a3,a3,a3,a3,a3,a3)}else b=a3 +a=m===!0 +a=n==null?a:n +a=A.re(B.cI,new A.bS(k,t.O),new A.aX8(a2,a5),a3,b,c,a) +k=a +break $label0$0}a4.a=a4.b=a4.c=a4.d=null +if(a5 instanceof A.pu){if(!e){s=a5.a +e=!0}if(e)f=s +else{s=a5.a +f=s +e=!0}if(!d){r=a5.b +d=!0}if(d)h=r +else{r=a5.b +h=r +d=!0}a4.d=h +if(i)k=p +else{p=a5.d +k=p +i=!0}c=t.v +if(c.b(k)){if(i)m=p +else{p=a5.d +m=p +i=!0}a4.c=m +if(l)k=o +else{o=a5.e +k=o +l=!0}if(c.b(k)){if(l)n=o +else{o=a5.e +n=o +l=!0}a4.b=n +a0=a5.gdX(a5) +if(t.YH.b(a0)){a4.a=a0 +k=!0}else k=!1 +c=n +a1=!0}else{c=a3 +a0=c +a1=!1 +k=!1}}else{c=a3 +a0=c +a1=!1 +k=!1}b=c +c=h}else{b=a3 +c=b +f=c +a0=f +a1=!1 +k=!1}if(k){k=f==null?"":f +c=A.P(c==null?"":c,a3,a3,a3,a3,a3,a3,a3) +if(!(b==null||b.length===0)){b.toString +b=A.P(b,a3,a3,a3,a3,a3,a3,a3)}else b=a3 +c=A.bI(!1,a3,a3,a3,!0,a3,a3,!1,new A.bS(k,t.O),a3,a3,a3,new A.aX9(a4,a2,a8,a5),!1,a3,a3,a3,a3,b,a3,c,a3,a3) +k=c +break $label0$0}a4.e=a4.f=a4.r=a4.w=null +if(a5 instanceof A.pv){if(!e){s=a5.a +e=!0}if(e)f=s +else{s=a5.a +f=s +e=!0}if(!d){r=a5.b +d=!0}if(d)h=r +else{r=a5.b +h=r +d=!0}a4.w=h +if(!g){q=a5.c +g=!0}if(g)j=q +else{q=a5.c +j=q +g=!0}if(i)k=p +else{p=a5.gL9(a5) +k=p +i=!0}c=t.Xb +if(c.b(k)){if(i)m=p +else{p=a5.gL9(a5) +m=p +i=!0}a4.r=m +if(l)k=o +else{o=a5.gjM() +k=o +l=!0}if(c.b(k)){if(l)n=o +else{o=a5.gjM() +n=o +l=!0}a4.f=n +if(a1)k=a0 +else{a0=a5.gdX(a5) +k=a0 +a1=!0}if(t.YH.b(k)){a4.e=a1?a0:a5.gdX(a5) +k=!0}else k=!1}else k=!1}else k=!1 +c=h}else{c=a3 +j=c +f=j +k=!1}if(k){k=f==null?"":f +c=A.P(c==null?"":c,a3,a3,a3,a3,a3,a3,a3) +if(!(j==null||j.length===0)){j.toString +b=A.P(j,a3,a3,a3,a3,a3,a3,a3)}else b=a3 +c=A.bI(!1,a3,a3,a3,!0,a3,a3,!1,new A.bS(k,t.O),a3,a3,a3,new A.aXa(a4,a2,a8,a5),!1,a3,a3,a3,a3,b,a3,c,a3,a3) +k=c +break $label0$0}a4.x=a4.y=a4.z=a4.Q=a4.as=a4.at=null +if(a5 instanceof A.ps){if(!e){s=a5.a +e=!0}f=e?s:a5.a +if(!d){r=a5.b +d=!0}h=d?r:a5.b +a4.at=h +if(!g){q=a5.c +g=!0}j=g?q:a5.c +a4.as=j +if(i)k=p +else{p=a5.d +k=p +i=!0}c=t.v +if(c.b(k)){a4.Q=i?p:a5.d +if(l)k=o +else{o=a5.e +k=o +l=!0}if(c.b(k)){a4.z=l?o:a5.e +if(c.b(a6.T())){a4.y=a6.T() +if(c.b(a7.T())){a4.x=a7.T() +k=!0}else k=!1}else k=!1}else k=!1}else k=!1 +c=j +b=c +c=h}else{b=a3 +c=b +f=c +k=!1}if(k){k=f==null?"":f +c=A.P(c==null?"":c,a3,a3,a3,a3,a3,a3,a3) +if(!(b==null||b.length===0)){b.toString +b=A.P(b,a3,a3,a3,a3,a3,a3,a3)}else b=a3 +c=A.bI(!1,a3,a3,a3,!0,a3,a3,!1,new A.bS(k,t.O),a3,a3,a3,new A.aXb(a4,a2,a8,a5),!1,a3,a3,a3,a3,b,a3,c,a3,a3) +k=c +break $label0$0}if(a5==null||a5 instanceof A.nQ){k=B.a1 +break $label0$0}k=a3}return k}} +A.aX7.prototype={ +$1(a){return this.a.acf(this.b.tm(a))}, +$S:34} +A.aX8.prototype={ +$1(a){return this.a.acf(this.b.tm(a))}, +$S:7} +A.aX9.prototype={ +$0(){var s=this +return A.fe(new A.aX4(s.a,s.b,s.d),s.c,t.z)}, +$S:0} +A.aX4.prototype={ +$1(a){var s,r,q=this.a,p=q.d +if(p==null)p="" +s=q.a +s=s==null?null:J.fg(J.iu(s)) +if(s==null)s=A.a([],t.s) +r=q.b +if(r==null)r=q.c +if(r==null)r="" +return A.uD(null,new A.aX0(q),new A.aX1(this.b,this.c,a),s,p,r,t.N)}, +$S:793} +A.aX1.prototype={ +$1(a){return this.a.Wq(this.b.tm(a),this.c)}, +$S:25} +A.aX0.prototype={ +$1(a){var s=this.a.a +s=s==null?null:J.b7(s,a) +return s==null?a:s}, +$S:18} +A.aXa.prototype={ +$0(){var s=this +return A.fe(new A.aX3(s.a,s.b,s.d),s.c,t.z)}, +$S:0} +A.aX3.prototype={ +$1(a){var s,r,q=this.a,p=q.w +if(p==null)p="" +s=q.e +s=s==null?null:J.fg(J.iu(s)) +if(s==null)s=A.a([],t.s) +r=q.f +if(r==null)r=q.r +if(r==null)r=A.a([],t.s) +return new A.yi(p,s,r,new A.aWZ(this.b,this.c,a),new A.aX_(q),null,t.y_)}, +$S:794} +A.aWZ.prototype={ +$1(a){return this.a.Wq(this.b.tm(a),this.c)}, +$S:795} +A.aX_.prototype={ +$1(a){var s=this.a.e +s=s==null?null:J.b7(s,a) +return s==null?a:s}, +$S:18} +A.aX5.prototype={ +$0(){return t.c0.a(this.a).r}, +$S:114} +A.aX6.prototype={ +$0(){return t.c0.a(this.a).w}, +$S:114} +A.aXb.prototype={ +$0(){var s=this +return A.fe(new A.aX2(s.a,s.b,s.d),s.c,t.z)}, +$S:0} +A.aX2.prototype={ +$1(a){var s,r,q=this.a,p=q.y +if(p==null)p=q.at +if(p==null)p="" +s=q.x +if(s==null)s=q.as +if(s==null)s="" +r=q.z +q=r==null?q.Q:r +return new A.Fn(p,s,q,new A.aWY(this.b,this.c,a),null)}, +$S:796} +A.aWY.prototype={ +$1(a){return this.a.Wq(this.b.tm(a),this.c)}, +$S:25} +A.tm.prototype={ +H4(a){return this.afc(a)}, +afc(a){var s=0,r=A.y(t.IL),q,p=this +var $async$H4=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=3 +return A.t(p.a.ot(0,"/category",a,new A.awl(),t.pU,t.oo),$async$H4) +case 3:q=c.a +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$H4,r)}, +Lo(a){return this.aIu(a)}, +aIu(a){var s=0,r=A.y(t.H),q,p=this,o,n +var $async$Lo=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=a.gaL(a)!=null?3:5 +break +case 3:o=a.gaL(a) +o.toString +n=t.z +s=6 +return A.t(p.a.N4("/category/"+o,null,A.Cv(A.aJS(a.bf(),t.N,n)),n,n),$async$Lo) +case 6:n=c +o=n +s=4 +break +case 5:o=null +case 4:q=o +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Lo,r)}, +UC(a){return this.aI8(a)}, +aI8(a){var s=0,r=A.y(t.H),q,p=this,o,n +var $async$UC=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:if(a.gaL(a)!=null){o=a.gaL(a) +o.toString +n=t.z +n=p.a.aI3(0,"/category/"+o,null,n,n) +o=n}else o=null +q=o +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$UC,r)}, +H9(a,b){return this.aft(a,b)}, +aft(a,b){var s=0,r=A.y(t.aQ),q,p=this +var $async$H9=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:s=3 +return A.t(p.a.Y6(0,"/category/"+b,new A.awm(),t.YN,t.nn),$async$H9) +case 3:q=d.a +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$H9,r)}} +A.awl.prototype={ +$1(a){var s=null +return t.a.b(a)?A.bvj(a):new A.lH(s,s,s,s)}, +$S:291} +A.awm.prototype={ +$1(a){var s=null +return t.a.b(a)?A.vl(a):A.bm6(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +$S:68} +A.aT.prototype={} +A.b1o.prototype={ +gaL(a){return A.r($.HW())}, +gcP(a){return A.r($.HW())}, +gWN(a){return A.r($.HW())}, +gjO(){return A.r($.HW())}, +bf(){return A.r($.HW())}, +gbK(){return A.r($.HW())}, +a8S(a,b){return this.gbK().$2$defaultCategory$name(a,b)}} +A.FS.prototype={ +$4$defaultCategory$id$name$order(a,b,c,d){var s=this.a,r=B.d===b?s.a:A.bw(b),q=B.d===c?s.b:A.af(c),p=B.d===d?s.c:A.bw(d) +return this.b.$1(this.$ti.h("FS.1").a(s.aHB(B.d===a?s.d:A.cN(a),r,q,p)))}, +$0(){return this.$4$defaultCategory$id$name$order(B.d,B.d,B.d,B.d)}, +$1$name(a){return this.$4$defaultCategory$id$name$order(B.d,B.d,a,B.d)}, +$2$defaultCategory$name(a,b){return this.$4$defaultCategory$id$name$order(a,B.d,b,B.d)}} +A.Vs.prototype={ +$4$defaultCategory$id$name$order(a,b,c,d){var s=this,r=B.d===b?s.a.a:A.bw(b),q=B.d===c?s.a.b:A.af(c),p=B.d===d?s.a.c:A.bw(d),o=B.d===a?s.a.d:A.cN(a) +return s.b.$1(new A.lH(r,q,p,o))}, +$0(){return this.$4$defaultCategory$id$name$order(B.d,B.d,B.d,B.d)}, +$1$name(a){return this.$4$defaultCategory$id$name$order(B.d,B.d,a,B.d)}, +$2$defaultCategory$name(a,b){return this.$4$defaultCategory$id$name$order(a,B.d,b,B.d)}} +A.lH.prototype={ +l(a){var s=this +return"Category(id: "+A.i(s.a)+", name: "+A.i(s.b)+", order: "+A.i(s.c)+", defaultCategory: "+A.i(s.d)+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.lH){s=b.a==r.a +if(s||s){s=b.b==r.b +if(s||s){s=b.c==r.c +if(s||s){s=b.d==r.d +s=s||s}else s=!1}else s=!1}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){var s=this +return A.X(A.p(s),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)}, +gbK(){return new A.Vs(this,B.RA,t.iC)}, +bf(){var s=this +return A.am(["id",s.a,"name",s.b,"order",s.c,"default",s.d],t.N,t.z)}, +$iaT:1, +a8S(a,b){return this.gbK().$2$defaultCategory$name(a,b)}, +aHB(a,b,c,d){return this.gbK().$4$defaultCategory$id$name$order(a,b,c,d)}, +gaL(a){return this.a}, +gcP(a){return this.b}, +gWN(a){return this.c}, +gjO(){return this.d}} +A.aeN.prototype={} +A.ww.prototype={ +aO(){var s=0,r=A.y(t.IL),q,p=this,o +var $async$aO=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:o=p.a +o===$&&A.b() +q=p.xF(o) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$aO,r)}, +xF(a){return this.aMg(a)}, +aMg(a){var s=0,r=A.y(t.IL),q,p,o +var $async$xF=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:o=new A.i0(new A.aD(new A.a7($.ac,t.Ic),t.L4)) +a.jX(o.gdJ(o)) +s=3 +return A.t(a.N($.Xa(),t.ad).H4(o),$async$xF) +case 3:p=c +a.ii() +q=p +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$xF,r)}, +Lb(a){return this.aI7(a)}, +aI7(a){var s=0,r=A.y(t.H),q=this,p +var $async$Lb=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=2 +return A.t(A.dE(new A.avQ(q,a),t.IL),$async$Lb) +case 2:p=c +q.goL().sd0(0,p) +return A.w(null,r)}}) +return A.x($async$Lb,r)}, +EI(a){return this.aIt(a)}, +aIt(a){var s=0,r=A.y(t.H),q=this,p +var $async$EI=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:p=q.a +p===$&&A.b() +s=2 +return A.t(A.dE(new A.avR(q,a,p.ae(0,$.Xa(),t.ad)),t.IL),$async$EI) +case 2:p=c +q.goL().sd0(0,p) +return A.w(null,r)}}) +return A.x($async$EI,r)}, +Gl(a,b){return this.aOV(a,b)}, +aOV(a,b){var s=0,r=A.y(t.H),q=this,p +var $async$Gl=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:p=q.a +p===$&&A.b() +s=2 +return A.t(A.dE(new A.avS(q,p.ae(0,$.Xa(),t.ad),a,b),t.IL),$async$Gl) +case 2:p=d +q.goL().sd0(0,p) +return A.w(null,r)}}) +return A.x($async$Gl,r)}} +A.avQ.prototype={ +$0(){var s=0,r=A.y(t.IL),q,p=this,o,n +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:o=p.a +n=o.a +n===$&&A.b() +s=3 +return A.t(n.ae(0,$.Xa(),t.ad).UC(p.b),$async$$0) +case 3:q=o.xF(n) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$$0,r)}, +$S:109} +A.avR.prototype={ +$0(){var s=0,r=A.y(t.IL),q,p=this,o,n,m +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:n=p.b +m=p.c +s=n.gaL(n)==null?3:5 +break +case 3:o=t.z +s=6 +return A.t(m.a.WX("/category",null,A.Cv(A.aJS(n.bf(),t.N,o)),o,o),$async$$0) +case 6:s=4 +break +case 5:s=7 +return A.t(m.Lo(n),$async$$0) +case 7:case 4:n=p.a +m=n.a +m===$&&A.b() +q=n.xF(m) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$$0,r)}, +$S:109} +A.avS.prototype={ +$0(){var s=0,r=A.y(t.IL),q,p=this,o,n +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:n=t.z +s=3 +return A.t(p.b.a.aNV("/category/reorder",A.Cv(A.am(["from",p.c,"to",p.d],t.N,n)),n,n),$async$$0) +case 3:n=p.a +o=n.a +o===$&&A.b() +q=n.xF(o) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$$0,r)}, +$S:109} +A.bgk.prototype={ +$1(a){return A.P1(a.gcP(a),this.a)}, +$S:799} +A.YQ.prototype={ +$1$query(a){return A.bjA(a)}, +fF(a){return A.bjA(a.dy)}, +gf9(){return null}} +A.IU.prototype={ +bI(a){var s=null,r=t.B +return new A.aeK(s,!1,this,A.a([],t.SX),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K))}, +k(a,b){if(b==null)return!1 +return b instanceof A.IU&&b.dy===this.dy}, +gu(a){var s=A.bwl(A.bwl(0,A.cS(A.p(this))),B.c.gu(this.dy)) +s=s+((s&67108863)<<3)&536870911 +s^=s>>>11 +return s+((s&16383)<<15)&536870911}} +A.avW.prototype={ +$1(a){return A.bTA(t._v.a(a),this.a)}, +$S:800} +A.IV.prototype={} +A.aeK.prototype={} +A.apg.prototype={} +A.a1h.prototype={ +aB(a,b){var s,r=null,q=b.N($.kr(),t.Pa),p=A.c_(q) +$.bb.bz(new A.dK(new A.aAj(q,b,a),[p]),t.H) +p=A.eB(r,r,r,r,r,r,A.P(A.A(a,B.h,t.J).gja(),r,r,r,r,r,r,r)) +s=A.bF7(q,t.IL) +s=(s==null?r:s.d)!=null?r:B.Tw +return A.e9(p,r,A.iw(q,a,new A.aAk(a,b),!1,new A.aAl(b),!1,r),r,r,r,!0,!1,!1,s,r)}} +A.aAj.prototype={ +$0(){A.hF(this.a,this.b.ae(0,A.eD(this.c),t.g),!0,t.IL) +return}, +$S:4} +A.aAk.prototype={ +$1(a){var s,r,q=null,p=a==null,o=!p +if(!(!o||J.cf(a))){if(!(!o||J.cf(a))){a.toString +o=J.b3(a)===1}else o=!1 +if(o){if(p)p=q +else{p=A.xL(a) +p=p==null?q:J.fG(p)}p=p===0}else p=!1}else p=!0 +o=this.b +if(p){p=this.a +s=t.J +r=A.A(p,B.h,s).gkA() +s=A.A(p,B.h,s) +return A.i5(A.eP(!1,A.P(s.gfi(s),q,q,q,q,q,q,q),B.n,q,q,q,q,q,new A.aAg(o),q,q),r)}else{a.toString +p=J.ct(a) +return A.r2(A.oQ(new A.aAh(a,J.fG(p.gO(a))===0),p.gt(a),q,q,B.H),new A.aAi(o))}}, +$S:293} +A.aAg.prototype={ +$0(){return this.a.jZ(0,$.kr().gqS(),t.H)}, +$S:0} +A.aAh.prototype={ +$2(a,b){var s,r=this.a,q=J.aj(r),p=q.i(r,b) +if(p.gaL(p)===0)return B.a1 +else{s=p.gaL(p) +r=this.b?q.gt(r)-1:q.gt(r) +return new A.YT(p,r,new A.bS(s,t.Am))}}, +$S:28} +A.aAi.prototype={ +$0(){return this.a.jZ(0,$.kr().gqS(),t.uz)}, +$S:2} +A.aAl.prototype={ +$0(){return this.a.jZ(0,$.kr().gqS(),t.H)}, +$S:0} +A.YP.prototype={ +aB(a,b){var s=null,r=$.bb.bz(new A.dc(!1,s,t.Kr),t.G),q=r.gj(r)?s:new A.avV(a,r,b),p=A.aY(a,s,t.l).w.a.a>=600&&!r.gj(r),o=A.P(A.A(a,B.h,t.J).gki(),s,s,s,s,s,s,s) +return A.a1W(r.gj(r)?A.bl4(A.B(a).ok.f,s):B.xX,p,o,q)}} +A.avV.prototype={ +$0(){A.fe(new A.avU(this.b,this.c),this.a,t.z)}, +$S:0} +A.avU.prototype={ +$1(a){return A.brg(null,new A.avT(this.a,this.b))}, +$S:294} +A.avT.prototype={ +$1(a){return this.aeA(a)}, +aeA(a){var s=0,r=A.y(t.H),q=1,p,o=this,n,m,l +var $async$$1=A.u(function(b,c){if(b===1){p=c +s=q}while(true)switch(s){case 0:q=3 +n=o.a +n.sj(0,!0) +s=6 +return A.t(o.b.ae(0,$.kr().gcb(),t.PY).EI(a),$async$$1) +case 6:n.sj(0,!1) +q=1 +s=5 +break +case 3:q=2 +l=p +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$$1,r)}, +$S:803} +A.YT.prototype={ +aB(a,b){var s,r,q=this,p=null,o=q.f,n=o.gWN(o) +if(n==null||B.f.gcZ(n))s=0 +else{n.toString +s=n}o=o.gcP(o) +o=A.bI(!1,p,p,p,!0,p,p,!1,p,B.nB,p,p,p,!1,p,p,p,p,p,p,A.P(o==null?"":o,p,p,p,p,p,p,p),p,p) +n=A.dh(B.bK,p,B.xN,p,s<=1?p:new A.awr(b,s),p,p,p,p,B.eT) +r=t.p +return A.q5(new A.b4(B.bW,A.cP(A.a([o,A.db(A.a([n,A.dh(B.bK,p,B.xV,p,s>=q.r?p:new A.aws(b,s),p,p,p,p,B.eT),B.pu,A.dh(B.bK,p,B.a7g,p,new A.awt(q,a,b),p,p,p,p,B.eT),A.dh(B.bK,p,B.a6Z,p,new A.awu(q,a,b),p,p,p,p,B.eT)],r),B.w,B.z,B.O),B.xt],r),B.w,B.z,B.O),p),p,p,B.jo,p)}} +A.awr.prototype={ +$0(){var s=this.b +return this.a.ae(0,$.kr().gcb(),t.PY).Gl(s,s-1)}, +$S:0} +A.aws.prototype={ +$0(){var s=this.b +return this.a.ae(0,$.kr().gcb(),t.PY).Gl(s,s+1)}, +$S:0} +A.awt.prototype={ +$0(){return A.fe(new A.awq(this.a,this.c),this.b,t.z)}, +$S:0} +A.awq.prototype={ +$1(a){return A.brg(this.a.f,new A.awo(this.b))}, +$S:294} +A.awo.prototype={ +$1(a){return this.a.ae(0,$.kr().gcb(),t.PY).EI(a)}, +$S:804} +A.awu.prototype={ +$0(){return A.fe(new A.awp(this.a,this.c),this.b,t.z)}, +$S:0} +A.awp.prototype={ +$1(a){var s=null,r=t.J,q=A.P(A.A(a,B.h,r).gmJ(),s,s,s,s,s,s,s),p=A.P(A.A(a,B.h,r).gmI(),s,s,s,s,s,s,s) +r=A.A(a,B.h,r) +return A.l2(A.a([B.e5,A.x2(!1,A.P(r.gkM(r),s,s,s,s,s,s,s),B.n,s,s,s,s,s,new A.awn(this.a,this.b,a),s,s)],t.p),p,s,q)}, +$S:168} +A.awn.prototype={ +$0(){this.b.ae(0,$.kr().gcb(),t.PY).Lb(this.a.f) +A.du(this.c,!1).dO(null)}, +$S:0} +A.Ca.prototype={ +HC(a,b){return this.ahg(a,b)}, +ahg(a,b){var s=0,r=A.y(t.H),q,p=this,o +var $async$HC=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:o=p.f +q=p.r.$1((o==null?new A.lH(null,null,null,null):o).a8S(b,a)) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$HC,r)}, +aB(a,b){var s,r,q,p,o,n=null,m=this.f,l=m==null,k=l?n:m.gcP(m) +k=$.bb.bz(new A.mH(k,n),t.QX) +m=l?n:m.gjO() +m=$.bb.bz(new A.dc(m===!0,n,t.Kr),t.G) +s=t.J +r=A.P(l?A.A(a,B.h,s).gki():A.A(a,B.h,s).gja(),n,n,n,n,n,n,n) +q=A.tZ(n,B.eB,n,n,n,n,n,n,!0,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,l?A.A(a,B.h,s).gki():A.A(a,B.h,s).gja(),n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n,n) +l=k.a.a +q=A.Fm(!0,B.c3,!0,n,!0,B.C,n,A.WY(),k,n,n,n,n,2,q,B.D,!0,n,!0,n,!1,n,n,n,n,n,n,n,1,n,n,!1,"\u2022",n,n,n,l.length!==0?new A.aAd(this,k,m,a):n,n,n,!1,n,!0,n,B.dK,n,n,B.cd,B.bS,n,n,n,n,n,n,B.b2,n,B.eb,n,n,n,n) +p=m.gj(m) +o=t.p +p=A.cP(A.a([q,A.Bo(n,B.fq,!0,n,new A.aAe(m),n,A.P(A.A(a,B.h,s).gjO(),n,n,n,n,n,n,n),!1,p)],o),B.w,B.z,B.ah) +s=A.A(a,B.h,s) +return A.l2(A.a([B.e5,A.x2(!1,A.P(s.giv(s),n,n,n,n,n,n,n),B.n,n,n,n,n,n,new A.aAf(this,k,b,a,m),n,n)],o),p,n,r)}} +A.aAd.prototype={ +$1(a){var s=this,r=s.c +s.a.HC(s.b.a.a,r.gj(r)) +A.du(s.d,!1).dO(null)}, +$S:25} +A.aAe.prototype={ +$1(a){if(a!=null)this.a.sj(0,a)}, +$S:34} +A.aAf.prototype={ +$0(){var s,r=this,q=r.b.a.a +if(q.length===0){q=r.d +J.Xj(r.c.ae(0,A.eD(q),t.g),A.A(q,B.h,t.J).gmP()) +return}s=r.e +r.a.HC(q,s.gj(s)) +A.du(r.d,!1).dO(null)}, +$S:0} +A.wx.prototype={ +aB(a,b){var s=b.N(A.bjB(this.f),t.ng),r=b.N($.biV(),t.CE),q=new A.awj(this,b) +$.bb.bz(new A.dK(new A.awh(s,q),[]),t.H) +return A.iw(s,a,new A.awi(this,a,q,r,b),!1,q,!1,null)}} +A.awj.prototype={ +$0(){var s=this.b,r=A.IX(this.a.f) +if(s.e==null)A.r(A.R(u.w)) +s.gm6().kx(r) +return null}, +$S:0} +A.awh.prototype={ +$0(){if(!this.a.gjV())this.b.$0() +return}, +$S:4} +A.awi.prototype={ +$1(a){var s,r,q,p=this,o=null,n=a==null +if(n||J.cf(a)){n=p.b +s=t.J +r=A.A(n,B.h,s).gnv() +s=A.A(n,B.h,s) +return A.i5(A.eP(!1,A.P(s.gfi(s),o,o,o,o,o,o,o),B.n,o,o,o,o,o,p.c,o,o),r)}q=p.d +$label0$0:{if(B.jk===q||q==null){n=n?o:J.b3(a) +if(n==null||B.f.gcZ(n))n=0 +else n.toString +n=A.oQ(new A.awd(p.a,a,p.c),n,96,o,B.H) +break $label0$0}if(B.dm===q){s=A.bz5(p.e.N($.arK(),t.PM)) +n=n?o:J.b3(a) +if(n==null||B.f.gcZ(n))n=0 +else n.toString +r=!0 +r=r?B.dx:o +n=new A.a2t(s,new A.kJ(new A.awe(p.a,a,p.c),n,!0,!0,!0,A.t5(),o),o,B.H,!1,o,o,r,o,!1,o,0,o,n,B.D,B.eK,o,B.C,o) +break $label0$0}if(B.n_===q){n=n?o:J.b3(a) +if(n==null||B.f.gcZ(n))n=0 +else n.toString +n=A.oQ(new A.awf(p.a,a,p.c),n,176,o,B.H) +break $label0$0}n=o}return A.r2(n,new A.awg(p.c))}, +$S:805} +A.awd.prototype={ +$2(a,b){var s=this.b +s.toString +return A.bkX(J.b7(s,b),new A.awb(s,b,a,this.c),new A.awc(this.a,s,b,a),!0)}, +$S:806} +A.awc.prototype={ +$0(){var s=this,r=s.b,q=s.c,p=J.aj(r) +if(J.fG(p.i(r,q))!=null){r=J.fG(p.i(r,q)) +r.toString +r=A.oe(new A.iO(r,s.a.f)) +A.bP(s.d).dz(r,null,t.z)}}, +$S:0} +A.awb.prototype={ +$0(){var s=0,r=A.y(t.H),q=this,p,o +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:p=q.a +o=q.b +s=J.fG(J.b7(p,o))!=null?2:3 +break +case 2:s=4 +return A.t(A.fe(new A.aw6(p,o),q.c,t.z),$async$$0) +case 4:q.d.$0() +case 3:return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.aw6.prototype={ +$1(a){var s=this.a,r=this.b,q=J.aj(s),p=J.fG(q.i(s,r)) +p.toString +return A.a1i(p,J.bjd(q.i(s,r)))}, +$S:85} +A.awe.prototype={ +$2(a,b){var s=this.b +s.toString +return A.bkW(J.b7(s,b),new A.aw9(s,b,a,this.c),new A.awa(this.a,s,b,a),!0,!0,!1,!0)}, +$S:808} +A.aw9.prototype={ +$0(){var s=0,r=A.y(t.H),q=this,p,o +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:p=q.a +o=q.b +s=J.fG(J.b7(p,o))!=null?2:3 +break +case 2:s=4 +return A.t(A.fe(new A.aw5(p,o),q.c,t.z),$async$$0) +case 4:q.d.$0() +case 3:return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.aw5.prototype={ +$1(a){var s=this.a,r=this.b,q=J.aj(s),p=J.fG(q.i(s,r)) +p.toString +return A.a1i(p,J.bjd(q.i(s,r)))}, +$S:85} +A.awa.prototype={ +$0(){var s=this,r=s.b,q=s.c,p=J.aj(r) +if(J.fG(p.i(r,q))!=null){r=J.fG(p.i(r,q)) +r.toString +r=A.oe(new A.iO(r,s.a.f)) +A.bP(s.d).dz(r,null,t.z)}}, +$S:0} +A.awf.prototype={ +$2(a,b){var s=this.b +s.toString +return A.bsF(J.b7(s,b),new A.aw7(s,b,a,this.c),new A.aw8(this.a,s,b,a),null,!0)}, +$S:809} +A.aw8.prototype={ +$0(){var s=this,r=s.b,q=s.c,p=J.aj(r) +if(J.fG(p.i(r,q))!=null){r=J.fG(p.i(r,q)) +r.toString +r=A.oe(new A.iO(r,s.a.f)) +A.bP(s.d).dz(r,null,t.z)}}, +$S:0} +A.aw7.prototype={ +$0(){var s=0,r=A.y(t.H),q=this,p,o +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:p=q.a +o=q.b +s=J.fG(J.b7(p,o))!=null?2:3 +break +case 2:s=4 +return A.t(A.fe(new A.aw4(p,o),q.c,t.z),$async$$0) +case 4:q.d.$0() +case 3:return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.aw4.prototype={ +$1(a){var s=this.a,r=this.b,q=J.aj(s),p=J.fG(q.i(s,r)) +p.toString +return A.a1i(p,J.bjd(q.i(s,r)))}, +$S:85} +A.awg.prototype={ +$0(){var s=0,r=A.y(t.H),q,p=this +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:q=p.a.$0() +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.kt.prototype={ +aFQ(a){var s,r,q,p,o,n,m,l=this.a +l===$&&A.b() +s=l.N(A.IX(a),t.ng) +r=l.N($.biY(),t.v) +q=t.u +p=l.N($.bp5(),q) +o=l.N($.bp4(),q) +n=l.N($.bp3(),q) +m=l.N($.biX(),t.aU) +if(m==null)m=B.oq +l=l.N($.biW(),q) +return s.vz(0,new A.aw1(new A.aw_(p,o,n,r),new A.aw0(l!==!1,m)),new A.aw2(),new A.aw3())}} +A.aw_.prototype={ +$1(a){var s,r=this,q=r.a +if(q!=null){s=a.gu8() +q=B.b7.yN(q,s==null?!1:s>0)}else q=!1 +if(q)return!1 +q=r.b +if(q!=null){s=a.gxb() +q=B.b7.yN(q,s==null?!1:s>0)}else q=!1 +if(q)return!1 +q=r.c +if(q!=null){s=a.gaP(a) +q=B.b7.yN(q,(s==null?null:s.d)==="COMPLETED")}else q=!1 +if(q)return!1 +if(!a.acS(0,r.d))return!1 +return!0}, +$S:296} +A.aw0.prototype={ +$2(a,b){var s,r,q=this.a?1:-1 +switch(this.b.a){case 0:s=a.ghm(a) +if(s==null)s="" +r=b.ghm(b) +s=B.c.bO(s,r==null?"":r) +break +case 2:s=a.gu8() +if(s==null||B.f.gcZ(s))s=0 +else s.toString +r=b.gu8() +if(r==null||B.f.gcZ(r))r=0 +else r.toString +r=B.f.bO(s,r) +s=r +break +case 1:s=a.gM4() +if(s==null||B.f.gcZ(s))s=0 +else s.toString +r=b.gM4() +if(r==null||B.f.gcZ(r))r=0 +else r.toString +r=B.f.bO(s,r) +s=r +break +case 3:s=b.gMm() +if(s==null||B.f.gcZ(s))s=0 +else s.toString +r=a.gMm() +if(r==null||B.f.gcZ(r))r=0 +else r.toString +r=B.f.bO(s,r) +s=r +break +default:s=null}return s*q}, +$S:811} +A.aw1.prototype={ +$1(a){var s=A.c_(a) +if(s==null)s=null +else{s=J.lT(s,this.a) +s=A.a8(s,!0,s.$ti.h("z.E"))}if(s==null)s=null +else B.b.fw(s,this.b) +return A.XX(s,t.aQ)}, +$S:812} +A.aw2.prototype={ +$1(a){return a}, +$S:813} +A.aw3.prototype={ +$1(a){return a}, +$S:814} +A.y0.prototype={ +aO(){return null}} +A.xX.prototype={ +aO(){return this.f_(0,B.a13)}} +A.xY.prototype={ +aO(){return this.f_(0,B.a14)}} +A.xW.prototype={ +aO(){return this.f_(0,B.a15)}} +A.xZ.prototype={ +aO(){return this.tG(0,B.a0T,B.B1)}} +A.y_.prototype={ +aO(){return this.f_(0,B.a1j)}} +A.xV.prototype={ +aO(){return this.tG(0,B.a0U,B.Dz)}} +A.YR.prototype={ +$1(a){return A.IX(a)}, +fF(a){return A.IX(a.fr)}, +gf9(){return null}} +A.IW.prototype={ +bI(a){var s=null,r=t.B +return new A.aeL(s,!1,new A.ci(A.aX(0,s,!1,t.qP),t.EB),s,s,s,s,this,A.a([],t.LP),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K))}, +k(a,b){if(b==null)return!1 +return b instanceof A.IW&&b.fr===this.fr}, +gu(a){return A.bwp(A.bcZ(A.bcZ(0,A.cS(A.p(this))),B.f.gu(this.fr)))}} +A.avX.prototype={ +$1(a){return A.bgl(t.rB.a(a),this.a)}, +$S:815} +A.IY.prototype={} +A.aeL.prototype={} +A.adC.prototype={} +A.YS.prototype={ +$1$categoryId(a){return A.bjB(a)}, +fF(a){return A.bjB(a.fx)}, +gf9(){return null}} +A.IZ.prototype={ +rq(a){return a.aFQ(this.fx)}, +bI(a){var s=null,r=t.B +return new A.aeM(s,!1,new A.ci(A.aX(0,s,!1,t.OZ),t.OD),this,A.a([],t.LP),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K))}, +k(a,b){if(b==null)return!1 +return b instanceof A.IZ&&b.fx===this.fx}, +gu(a){return A.bwp(A.bcZ(A.bcZ(0,A.cS(A.p(this))),B.f.gu(this.fx)))}} +A.avY.prototype={ +$0(){var s=new A.kt() +s.b=this.a +return s}, +$S:816} +A.avZ.prototype={} +A.aeM.prototype={} +A.ais.prototype={} +A.ait.prototype={} +A.aiu.prototype={} +A.aiv.prototype={} +A.aix.prototype={} +A.aiw.prototype={} +A.aiy.prototype={} +A.aph.prototype={} +A.api.prototype={} +A.a3A.prototype={ +aB(a,b){var s=b.N(A.eD(a),t.g),r=b.N($.kr(),t.Pa),q=$.bb.bz(new A.dc(!1,null,t.Kr),t.G),p=A.c_(r) +$.bb.bz(new A.dK(new A.aIs(r,s),[p]),t.H) +return A.iw(r,a,new A.aIt(this,a,b,q),!1,new A.aIu(b),!1,new A.aIv(a))}} +A.aIs.prototype={ +$0(){A.hF(this.a,this.b,!0,t.IL) +return}, +$S:4} +A.aIt.prototype={ +$1(a){var s,r,q,p,o,n,m,l,k,j,i,h=this,g=null +if(a==null||J.cf(a)){s=h.b +r=t.J +q=A.A(s,B.h,r).gkA() +r=A.A(s,B.h,r) +q=A.i5(A.eP(!1,A.P(r.gfi(r),g,g,g,g,g,g,g),B.n,g,g,g,g,g,new A.aIj(h.c),g,g),q) +s=q}else{a.toString +s=J.aj(a) +r=s.gt(a) +q=h.a.f +if(q==null||B.f.gcZ(q))q=0 +else q.toString +q=Math.min(q,s.gt(a)-1) +p=h.b +o=t.J +n=A.P(A.A(p,B.h,o).ghE(),g,g,g,g,g,g,g) +m=s.gt(a) +l=h.d +m=A.bho(A.a([m>1,l.gj(l)],t.HZ)) +k=t.p +j=A.a([],k) +i=s.gt(a) +if(i>1){i=s.ik(a,new A.aIk(),t.xw) +j.push(A.aYJ(g,B.E,!0,A.a8(i,!0,A.l(i).h("av.E"))))}if(l.gj(l)){i=h.c +j.push(new A.ef(B.dw,g,g,new A.r8(g,i.ae(0,$.biY(),t.v),new A.aIl(i),g,new A.aIm(l),!0,g),g))}j=A.cP(j,B.w,B.z,B.O) +n=A.eB(A.a([A.dh(g,g,B.ny,g,new A.aIn(l),g,g,g,g,g),new A.e4(new A.aIo(),g),new A.e4(new A.aIp(a),g)],k),g,new A.uB(j,m,g),!0,g,g,n) +m=s.gak(a) +if(m){s=A.A(p,B.h,o).gkA() +o=A.A(p,B.h,o) +s=A.i5(A.eP(!1,A.P(o.gfi(o),g,g,g,g,g,g,g),B.n,g,g,g,g,g,new A.aIq(h.c),g,g),s)}else{s=s.ik(a,new A.aIr(),t.y6) +s=new A.b4(B.bW,A.aYL(A.a8(s,!0,A.l(s).h("av.E")),g,g),g)}r=A.bjV(A.e9(n,g,s,g,g,B.a1T,!1,!1,!1,g,g),q,r) +s=r}return s}, +$S:293} +A.aIj.prototype={ +$0(){return this.a.jZ(0,$.kr(),t.H)}, +$S:0} +A.aIk.prototype={ +$1(a){var s=a.gcP(a) +return A.zE(s==null?"":s)}, +$S:817} +A.aIl.prototype={ +$1(a){J.eW(this.a.ae(0,$.biY().gcb(),t.iG),a) +return a}, +$S:44} +A.aIm.prototype={ +$0(){this.a.sj(0,!1) +return!1}, +$S:0} +A.aIn.prototype={ +$0(){this.a.sj(0,!0) +return!0}, +$S:0} +A.aIo.prototype={ +$1(a){var s=null +return A.dh(s,s,B.xZ,s,new A.aIi(a),s,s,s,s,s)}, +$S:173} +A.aIi.prototype={ +$0(){var s=this.a +if(A.aY(s,null,t.l).w.a.a>=600)A.pa(s).G_() +else A.bnP(new A.aIg(),B.C,s,new A.cM(B.qC,B.u),t.z)}, +$S:0} +A.aIg.prototype={ +$1(a){return B.ye}, +$S:819} +A.aIp.prototype={ +$1(a){return new A.vf(new A.aIh(this.a,a),!0,null)}, +$S:820} +A.aIh.prototype={ +$0(){var s=this.a,r=J.aj(s),q=r.gak(s) +return!q?r.i(s,A.bjW(this.b).d):null}, +$S:821} +A.aIq.prototype={ +$0(){return this.a.jZ(0,$.kr(),t.H)}, +$S:0} +A.aIr.prototype={ +$1(a){var s=a.gaL(a) +if(s==null||B.f.gcZ(s))s=0 +else s.toString +return new A.wx(s,null)}, +$S:822} +A.aIu.prototype={ +$0(){return this.a.jZ(0,$.kr(),t.H)}, +$S:0} +A.aIv.prototype={ +$1(a){var s=null +return A.e9(A.eB(s,s,s,!0,s,s,A.P(A.A(this.a,B.h,t.J).ghE(),s,s,s,s,s,s,s)),s,a,s,s,s,!0,!1,!1,s,s)}, +$S:128} +A.a3x.prototype={ +aB(a,b){var s,r,q=null,p=b.N($.biV(),t.CE),o=t.J,n=A.bI(!1,q,!0,q,!0,q,q,!1,q,q,q,q,q,!1,q,q,q,q,q,q,A.P(A.A(a,B.h,o).glf(),q,q,q,q,A.B(a).p3.as,q,q),q,q),m=p==null?B.dm:p,l=A.bI(!1,q,!0,q,!0,q,q,!1,q,q,q,q,q,!1,q,q,q,q,q,q,A.P(A.A(a,B.h,o).gmm(),q,q,q,q,A.B(a).p3.as,q,q),q,q),k=A.A(a,B.h,o) +k=k.gfJ(k) +s=$.biQ() +r=t.Pj +r=A.wM(J.j7(b.ae(0,s.gcb(),r)),s,k,!1,r) +o=A.A(a,B.h,o).gk9() +k=$.bj7() +s=t.EI +return A.iK(A.a([n,new A.yP(B.Dz,m,new A.aIc(b),new A.aId(a),q,q,t.FA),l,r,A.wM(J.j7(b.ae(0,k.gcb(),s)),k,o,!1,s)],t.p),q,q,!1)}} +A.aId.prototype={ +$1(a){return a.h6(this.a)}, +$S:288} +A.aIc.prototype={ +$1(a){J.eW(this.a.ae(0,$.biV().gcb(),t.XH),a) +return a}, +$S:823} +A.a3y.prototype={ +aB(a,b){var s,r=t.J,q=A.A(a,B.h,r).gk9(),p=$.bp5(),o=t.Ah +o=A.wM(J.j7(b.ae(0,p.gcb(),o)),p,q,!0,o) +q=A.A(a,B.h,r) +q=q.gh9(q) +p=$.bp3() +s=t.tF +s=A.wM(J.j7(b.ae(0,p.gcb(),s)),p,q,!0,s) +r=A.A(a,B.h,r) +r=r.gfJ(r) +q=$.bp4() +p=t.Ls +return A.iK(A.a([o,s,A.wM(J.j7(b.ae(0,q.gcb(),p)),q,r,!0,p)],t.p),null,null,!1)}} +A.D8.prototype={ +A(a){var s,r,q,p=null,o=t.J,n=A.A(a,B.h,o) +n=A.zE(n.ghg(n)) +s=A.A(a,B.h,o) +s=A.zE(s.gkW(s)) +o=A.A(a,B.h,o) +r=t.p +o=A.aYJ(p,p,!1,A.a([n,s,A.zE(o.gmL(o))],r)) +s=A.a([],r) +for(q=0;q<4;++q)s.push(new A.a3z(B.B1[q],p)) +return A.bjV(A.e9(o,p,A.aYL(A.a([B.a8j,A.iK(s,p,p,!1),B.a8i],r),p,p),p,p,p,!0,!1,!1,p,p),0,3)}} +A.a3z.prototype={ +aB(a,b){var s=null,r=b.N($.biX(),t.aU),q=b.N($.biW(),t.u),p=this.e,o=A.P(p.h6(a),s,s,s,s,s,s,s) +return A.buj(q!==!1,s,new A.aIe(b,q),new A.aIf(this,b),p===r,o)}} +A.aIe.prototype={ +$1(a){var s=this.a.ae(0,$.biW().gcb(),t.O7),r=this.b!==!0 +J.eW(s,r) +return r}, +$S:34} +A.aIf.prototype={ +$0(){var s=this.a.e +J.eW(this.b.ae(0,$.biX().gcb(),t.KZ),s) +return s}, +$S:0} +A.qe.prototype={ +um(){var s=t.z +return this.a.ru(0,"/downloads/start",s,s)}, +ahe(){var s=t.z +return this.a.ru(0,"/downloads/stop",s,s)}, +aGs(){var s=t.z +return this.a.ru(0,"/downloads/clear",s,s)}, +ah_(a,b){var s,r,q=this.a.a.Lz$ +q===$&&A.b() +q=q.ve$ +q===$&&A.b() +q=A.bup(q) +q.toString +s=A.bs4(A.dR(q+"/downloads",0,null),null) +q=s.r.b +q===$&&A.b() +q=q.b +q===$&&A.b() +q=new A.d6(q,A.l(q).h("d6<1>")).a7K(new A.azV(),t.BP) +r=s.gpx() +return new A.Tn(r.gdV(r),q)}} +A.azV.prototype={ +$1(a){return A.WJ(new A.azU(),a,null,t.N,t.BP)}, +$S:824} +A.azU.prototype={ +$1(a){return A.bO9(B.az.ha(0,a))}, +$S:825} +A.x0.prototype={ +aO(){var s,r,q,p=this.a +p===$&&A.b() +s=p.N($.og(),t.vm) +r=p.N($.w5(),t.Wr) +if(r==null)r=B.ec +q=s.ah_(r,p.N($.HY(),t.v)) +p.jX(q.a) +return q.b}} +A.bgA.prototype={ +$1(a){return J.b7(a,this.a)}, +$S:826} +A.bgC.prototype={ +$1(a){return A.om(a,new A.bgB(),t.BP,t.v)}, +$S:827} +A.bgB.prototype={ +$1(a){return a.gaP(a)}, +$S:828} +A.bi4.prototype={ +$1(a){return a.gd0(a)!=="Error"||a.gNG()!==3}, +$S:829} +A.a18.prototype={ +$1(a){return A.azS(a)}, +fF(a){return A.azS(a.dy)}, +gf9(){return null}} +A.JY.prototype={ +bI(a){var s=null,r=t.B +return new A.agm(s,!1,this,A.a([],t.ZS),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K))}, +k(a,b){if(b==null)return!1 +return b instanceof A.JY&&b.dy===this.dy}, +gu(a){var s=A.bwn(A.bwn(0,A.cS(A.p(this))),B.f.gu(this.dy)) +s=s+((s&67108863)<<3)&536870911 +s^=s>>>11 +return s+((s&16383)<<15)&536870911}} +A.azT.prototype={ +$1(a){return A.bUw(t.t9.a(a),this.a)}, +$S:830} +A.JZ.prototype={} +A.agm.prototype={} +A.aps.prototype={} +A.ue.prototype={ +ac2(a){var s=t.z,r=A.aJS(A.bO5(a),t.N,s) +return this.a.acA("/chapter/batch",r,s,s)}, +BX(a,b,c){return this.afp(a,b,c)}, +afo(a,b){return this.BX(a,b,!1)}, +afp(a,b,c){var s=0,r=A.y(t.l8),q,p=this +var $async$BX=A.u(function(d,e){if(d===1)return A.v(e,r) +while(true)switch(s){case 0:s=3 +return A.t(p.a.y9(0,"/manga/"+b+"/full",a,new A.aIX(),A.am(["onlineFetch",c],t.N,t.z),t.nn,t.l8),$async$BX) +case 3:q=e.a +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$BX,r)}, +H5(a,b){return this.afd(a,b)}, +afd(a,b){var s=0,r=A.y(t.ep),q,p=this +var $async$H5=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:s=3 +return A.t(p.a.ot(0,"/manga/"+b+"/chapter/"+a,null,new A.aIV(),t.ja,t.ep),$async$H5) +case 3:q=d.a +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$H5,r)}, +Gd(a,b,c){return this.aOi(a,b,c)}, +aOi(a,b,c){var s=0,r=A.y(t.H),q,p=this +var $async$Gd=A.u(function(d,e){if(d===1)return A.v(e,r) +while(true)switch(s){case 0:s=3 +return A.t(p.a.aOg(0,"/manga/"+b+"/chapter/"+a,null,A.Cv(A.aJS(A.bO8(c),t.N,t.z)),t.ja,t.ep),$async$Gd) +case 3:q=e +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Gd,r)}, +vC(a,b,c){return this.aNW(a,b,c)}, +aNW(a,b,c){var s=0,r=A.y(t.H),q,p=this,o +var $async$vC=A.u(function(d,e){if(d===1)return A.v(e,r) +while(true)switch(s){case 0:o=J.cU(c) +s=3 +return A.t(p.a.N4("/manga/"+b+"/meta",null,A.Cv(A.am(["key",a,"value",o],t.N,t.z)),t.ja,t.ep),$async$vC) +case 3:q=e +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$vC,r)}, +BP(a,b,c){return this.afe(a,b,c)}, +afe(a,b,c){var s=0,r=A.y(t.U_),q,p=this +var $async$BP=A.u(function(d,e){if(d===1)return A.v(e,r) +while(true)switch(s){case 0:s=3 +return A.t(p.a.y9(0,"/manga/"+b+"/chapters",a,new A.aIU(),A.am(["onlineFetch",c],t.N,t.z),t.Py,t.ja),$async$BP) +case 3:q=e.a +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$BP,r)}, +BY(a){return this.afq(a)}, +afq(a){var s=0,r=A.y(t.IL),q,p=this +var $async$BY=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=3 +return A.t(p.a.ot(0,"/manga/"+a+"/category",null,new A.aIW(),t.pU,t.oo),$async$BY) +case 3:q=c.a +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$BY,r)}} +A.aIX.prototype={ +$1(a){return t.a.b(a)?A.vl(a):null}, +$S:831} +A.aIV.prototype={ +$1(a){return t.a.b(a)?A.adB(a):null}, +$S:832} +A.aIU.prototype={ +$1(a){var s=null +return t.a.b(a)?A.adB(a):A.bvo(s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s)}, +$S:833} +A.aIW.prototype={ +$1(a){var s=null +return t.a.b(a)?A.bvj(a):new A.lH(s,s,s,s)}, +$S:291} +A.vg.prototype={ +Hc(a){return this.afJ(a)}, +afJ(a){var s=0,r=A.y(t.If),q,p=this +var $async$Hc=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=3 +return A.t(p.a.ot(0,"/update/recentChapters/"+a,null,new A.b02(),t.ic,t.If),$async$Hc) +case 3:q=c.a +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Hc,r)}, +aa1(a){var s=t.z,r=A.I(t.N,s) +if(a!=null&&a!==0)r.n(0,"categoryId",a) +return this.a.WX("/update/fetch",null,A.Cv(r),s,s)}, +aa0(){return this.aa1(null)}, +HE(a){return this.ahk(a)}, +ahk(a){var s=0,r=A.y(t.YO),q,p=this +var $async$HE=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=3 +return A.t(p.a.ot(0,"/update/summary",a,new A.b05(),t.S5,t.YO),$async$HE) +case 3:q=c.a +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$HE,r)}, +ah0(a,b){var s,r,q=this.a.a.Lz$ +q===$&&A.b() +q=q.ve$ +q===$&&A.b() +q=A.bup(q) +q.toString +s=A.bs4(A.dR(q+"/update",0,null),null) +q=s.r.b +q===$&&A.b() +q=q.b +q===$&&A.b() +q=new A.d6(q,A.l(q).h("d6<1>")).a7K(new A.b04(),t.S5) +r=s.gpx() +return new A.Tn(r.gdV(r),q)}} +A.b02.prototype={ +$1(a){return t.a.b(a)?A.bO6(a):null}, +$S:834} +A.b05.prototype={ +$1(a){return t.a.b(a)?A.bvn(J.b7(a,"statusMap")):null}, +$S:835} +A.b04.prototype={ +$1(a){return A.WJ(new A.b03(),a,null,t.N,t.S5)}, +$S:836} +A.b03.prototype={ +$1(a){var s,r=A.I(t.N,t.z),q=J.b7(B.az.ha(0,a),"statusMap") +if(q!=null)for(q=J.Xg(q),q=q.gam(q);q.v();){s=q.gG(q) +r.n(0,s.a,s.b)}return A.bvn(r)}, +$S:837} +A.zW.prototype={ +aO(){var s,r,q,p=this.a +p===$&&A.b() +s=p.N($.I0(),t.BA) +r=p.N($.w5(),t.Wr) +if(r==null)r=B.ec +q=s.ah0(r,p.N($.HY(),t.v)) +p.jX(q.a) +return q.b}} +A.a5.prototype={ +BS(a){var s,r=this,q=r.gcP(r) +if(q==null){q=A.A(a,B.h,t.J) +q.toString +s=r.gKJ() +if(s==null){s=r.gdN(r) +if(s==null)s=null}q=q.ms(s==null?0:s)}return q}} +A.b1p.prototype={ +gaL(a){return A.r($.kq())}, +gfU(){return A.r($.kq())}, +gKJ(){return A.r($.kq())}, +gfJ(a){return A.r($.kq())}, +gAw(){return A.r($.kq())}, +gdN(a){return A.r($.kq())}, +gxC(){return A.r($.kq())}, +giH(){return A.r($.kq())}, +gcP(a){return A.r($.kq())}, +gtW(){return A.r($.kq())}, +gh4(a){return A.r($.kq())}, +gvI(){return A.r($.kq())}, +grD(){return A.r($.kq())}, +gGO(){return A.r($.kq())}, +bf(){return A.r($.kq())}} +A.Q9.prototype={ +glu(){var s=this.CW +if(s==null)return null +if(s instanceof A.oC)return s +return new A.oC(s,s,t.Kp)}, +l(a){var s=this +return"Chapter(id: "+A.i(s.a)+", bookmarked: "+A.i(s.b)+", chapterCount: "+A.i(s.c)+", chapterNumber: "+A.i(s.d)+", downloaded: "+A.i(s.e)+", fetchedAt: "+A.i(s.f)+", index: "+A.i(s.r)+", lastPageRead: "+A.i(s.w)+", lastReadAt: "+A.i(s.x)+", mangaId: "+A.i(s.y)+", name: "+A.i(s.z)+", pageCount: "+A.i(s.Q)+", read: "+A.i(s.as)+", realUrl: "+A.i(s.at)+", scanlator: "+A.i(s.ax)+", uploadDate: "+A.i(s.ay)+", url: "+A.i(s.ch)+", meta: "+A.i(s.glu())+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.Q9){s=b.a==r.a +if(s||s){s=b.b==r.b +if(s||s){s=b.c==r.c +if(s||s){s=b.d==r.d +if(s||s){s=b.e==r.e +if(s||s){s=b.f==r.f +if(s||s){s=b.r==r.r +if(s||s){s=b.w==r.w +if(s||s){s=b.x==r.x +if(s||s){s=b.y==r.y +if(s||s){s=b.z==r.z +if(s||s){s=b.Q==r.Q +if(s||s){s=b.as==r.as +if(s||s){s=b.at==r.at +if(s||s){s=b.ax==r.ax +if(s||s){s=b.ay==r.ay +if(s||s){s=b.ch==r.ch +s=(s||s)&&B.a0.d7(b.CW,r.CW)}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=!0 +return s}, +gu(a){var s=this +return A.X(A.p(s),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,B.a0.dl(0,s.CW),B.a)}, +bf(){var s=this +return A.am(["id",s.a,"bookmarked",s.b,"chapterCount",s.c,"chapterNumber",s.d,"downloaded",s.e,"fetchedAt",s.f,"index",s.r,"lastPageRead",s.w,"lastReadAt",s.x,"mangaId",s.y,"name",s.z,"pageCount",s.Q,"read",s.as,"realUrl",s.at,"scanlator",s.ax,"uploadDate",s.ay,"url",s.ch,"meta",s.glu()],t.N,t.z)}, +gaL(a){return this.a}, +gfU(){return this.b}, +gKJ(){return this.d}, +gfJ(a){return this.e}, +gAw(){return this.f}, +gdN(a){return this.r}, +gxC(){return this.w}, +giH(){return this.y}, +gcP(a){return this.z}, +gtW(){return this.Q}, +gh4(a){return this.as}, +gvI(){return this.at}, +grD(){return this.ax}, +gGO(){return this.ay}} +A.aeP.prototype={} +A.b0Z.prototype={ +$2(a,b){return new A.aS(a,A.bm(b),t.mT)}, +$S:160} +A.aeT.prototype={} +A.Q8.prototype={ +gU_(){var s=this.a +if(s==null)return null +if(s instanceof A.cX)return s +return new A.cX(s,s,t.ka)}, +l(a){return"ChapterBatch(chapterIds: "+A.i(this.gU_())+", change: "+A.i(this.b)+")"}, +k(a,b){var s,r,q=this +if(b==null)return!1 +if(q!==b)if(J.a_(b)===A.p(q))if(b instanceof A.Q8)if(B.a0.d7(b.a,q.a)){s=b.b +r=q.b +s=s==r||J.j(s,r)}else s=!1 +else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){return A.X(A.p(this),B.a0.dl(0,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)}, +bf(){var s=this.gU_(),r=this.b +return A.am(["chapterIds",s,"change",r==null?null:A.bvk(r)],t.N,t.z)}} +A.rs.prototype={ +l(a){var s=this +return"ChapterChange(isRead: "+A.i(s.a)+", isBookmarked: "+A.i(s.b)+", lastPageRead: "+A.i(s.c)+", delete: "+A.i(s.d)+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.rs){s=b.a==r.a +if(s||s){s=b.b==r.b +if(s||s){s=b.c==r.c +if(s||s){s=b.d==r.d +s=s||s}else s=!1}else s=!1}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){var s=this +return A.X(A.p(s),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)}, +bf(){var s=this +return A.am(["isRead",s.a,"isBookmarked",s.b,"lastPageRead",s.c,"delete",s.d],t.N,t.z)}} +A.l5.prototype={} +A.ku.prototype={} +A.b1q.prototype={ +gfb(){return A.r($.AN())}, +ges(){return A.r($.AN())}, +bf(){return A.r($.AN())}, +gbK(){return A.r($.AN())}, +a8D(a){return this.gbK().$1$chapter(a)}} +A.FT.prototype={ +$2$chapter$manga(a,b){var s=this.a,r=B.d===a?s.a:t.ep.a(a) +return this.b.$1(this.$ti.h("FT.1").a(s.aHk(r,B.d===b?s.b:t.l8.a(b))))}, +$0(){return this.$2$chapter$manga(B.d,B.d)}, +$1$chapter(a){return this.$2$chapter$manga(a,B.d)}} +A.Vt.prototype={ +$2$chapter$manga(a,b){var s=B.d===a?this.a.a:t.ep.a(a),r=B.d===b?this.a.b:t.l8.a(b) +return this.b.$1(new A.pq(s,r))}, +$0(){return this.$2$chapter$manga(B.d,B.d)}, +$1$chapter(a){return this.$2$chapter$manga(a,B.d)}} +A.pq.prototype={ +l(a){return"ChapterMangaPair(chapter: "+A.i(this.a)+", manga: "+A.i(this.b)+")"}, +k(a,b){var s,r,q=this +if(b==null)return!1 +if(q!==b)if(J.a_(b)===A.p(q))if(b instanceof A.pq){s=b.a +r=q.a +if(s==r||J.j(s,r)){s=b.b +r=q.b +s=s==r||J.j(s,r)}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){return A.X(A.p(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)}, +gbK(){return new A.Vt(this,B.Rq,t.Lz)}, +bf(){var s,r=this.a +r=r==null?null:r.bf() +s=this.b +return A.am(["chapter",r,"manga",s==null?null:s.bf()],t.N,t.z)}, +$il5:1, +a8D(a){return this.gbK().$1$chapter(a)}, +aHk(a,b){return this.gbK().$2$chapter$manga(a,b)}, +gfb(){return this.a}, +ges(){return this.b}} +A.b1r.prototype={ +gFc(){return A.r($.AN())}, +gjY(a){return A.r($.AN())}, +bf(){return A.r($.AN())}} +A.Qa.prototype={ +gjY(a){var s=this.b +if(s==null)return null +if(s instanceof A.cX)return s +return new A.cX(s,s,t.dQ)}, +l(a){return"ChapterPage(hasNextPage: "+A.i(this.a)+", page: "+A.i(this.gjY(this))+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.Qa){s=b.a==r.a +s=(s||s)&&B.a0.d7(b.b,r.b)}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){return A.X(A.p(this),this.a,B.a0.dl(0,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)}, +bf(){return A.bO7(this)}, +$iku:1, +gFc(){return this.a}} +A.b1_.prototype={ +$1(a){var s,r,q=t.a +q.a(a) +s=J.aj(a) +r=s.i(a,"chapter")==null?null:A.adB(q.a(s.i(a,"chapter"))) +return new A.pq(r,s.i(a,"manga")==null?null:A.vl(q.a(s.i(a,"manga"))))}, +$S:838} +A.b10.prototype={ +$1(a){return a.bf()}, +$S:839} +A.aeQ.prototype={} +A.aeR.prototype={} +A.FU.prototype={ +l(a){var s=this +return"ChapterPut(read: "+A.i(s.a)+", bookmarked: "+A.i(s.b)+", markPrevRead: "+A.i(s.c)+", lastPageRead: "+A.i(s.d)+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.FU){s=b.a==r.a +if(s||s){s=b.b==r.b +if(s||s){s=b.c==r.c +if(s||s){s=b.d==r.d +s=s||s}else s=!1}else s=!1}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){var s=this +return A.X(A.p(s),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)}, +bf(){var s=this +return A.am(["read",s.a,"bookmarked",s.b,"markPrevRead",s.c,"lastPageRead",s.d],t.N,t.z)}} +A.i4.prototype={} +A.b1s.prototype={ +gBm(){return A.r($.biJ())}, +gaP(a){return A.r($.biJ())}, +bf(){return A.r($.biJ())}} +A.Qb.prototype={ +gBm(){var s=this.a +if(s==null)return null +if(s instanceof A.cX)return s +return new A.cX(s,s,t.Mq)}, +l(a){return"Downloads(queue: "+A.i(this.gBm())+", status: "+A.i(this.b)+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.Qb)if(B.a0.d7(b.a,r.a)){s=b.b==r.b +s=s||s}else s=!1 +else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){return A.X(A.p(this),B.a0.dl(0,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)}, +bf(){return A.bOa(this)}, +$ii4:1, +gaP(a){return this.b}} +A.b11.prototype={ +$1(a){var s,r,q,p,o,n=t.a +n.a(a) +s=J.aj(a) +r=s.i(a,"chapter")==null?null:A.adB(n.a(s.i(a,"chapter"))) +q=A.bw(s.i(a,"chapterIndex")) +n=s.i(a,"manga")==null?null:A.vl(n.a(s.i(a,"manga"))) +p=A.bw(s.i(a,"mangaId")) +o=A.beF(s.i(a,"progress")) +if(o==null)o=null +return new A.Qc(r,q,n,p,o,A.af(s.i(a,"state")),A.bw(s.i(a,"tries")))}, +$S:840} +A.b12.prototype={ +$1(a){return a.bf()}, +$S:841} +A.ago.prototype={} +A.cK.prototype={} +A.b1t.prototype={ +gfb(){return A.r($.w4())}, +gwT(){return A.r($.w4())}, +ges(){return A.r($.w4())}, +giH(){return A.r($.w4())}, +gre(){return A.r($.w4())}, +gd0(a){return A.r($.w4())}, +gNG(){return A.r($.w4())}, +bf(){return A.r($.w4())}} +A.Qc.prototype={ +l(a){var s=this +return"DownloadsQueue(chapter: "+A.i(s.a)+", chapterIndex: "+A.i(s.b)+", manga: "+A.i(s.c)+", mangaId: "+A.i(s.d)+", progress: "+A.i(s.e)+", state: "+A.i(s.f)+", tries: "+A.i(s.r)+")"}, +k(a,b){var s,r,q=this +if(b==null)return!1 +if(q!==b)if(J.a_(b)===A.p(q))if(b instanceof A.Qc){s=b.a +r=q.a +if(s==r||J.j(s,r)){s=b.b==q.b +if(s||s){s=b.c +r=q.c +if(s==r||J.j(s,r)){s=b.d==q.d +if(s||s){s=b.e==q.e +if(s||s){s=b.f==q.f +if(s||s){s=b.r==q.r +s=s||s}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=!0 +return s}, +gu(a){var s=this +return A.X(A.p(s),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)}, +bf(){var s,r=this,q=r.a +q=q==null?null:q.bf() +s=r.c +s=s==null?null:s.bf() +return A.am(["chapter",q,"chapterIndex",r.b,"manga",s,"mangaId",r.d,"progress",r.e,"state",r.f,"tries",r.r],t.N,t.z)}, +$icK:1, +gfb(){return this.a}, +gwT(){return this.b}, +ges(){return this.c}, +giH(){return this.d}, +gre(){return this.e}, +gd0(a){return this.f}, +gNG(){return this.r}} +A.agn.prototype={} +A.a3.prototype={ +af0(a,b){var s,r=a==null?null:J.cx(a,new A.aJO(),t.N).kI(0),q=b==null?null:new A.ad(b,new A.aJP(),A.ab(b).h("ad<1,h>")).kI(0) +if(r==null)s=null +else s=r.aGO(q==null?A.aW(t.N):q) +return s!==!1}, +acS(a,b){var s,r=this +if(!A.P1(r.ghm(r),b))if(!A.P1(r.gzI(),b)){s=r.gvP() +s=r.af0(s,b==null?null:A.a(b.split(","),t.s))}else s=!0 +else s=!0 +return s}} +A.aJO.prototype={ +$1(a){return a.toLowerCase()}, +$S:18} +A.aJP.prototype={ +$1(a){return B.c.dn(a.toLowerCase())}, +$S:18} +A.LL.prototype={} +A.b1x.prototype={ +ga7D(a){return A.r($.dL())}, +gzI(){return A.r($.dL())}, +gLe(a){return A.r($.dL())}, +gxb(){return A.r($.dL())}, +ga8g(){return A.r($.dL())}, +gMm(){return A.r($.dL())}, +gW8(){return A.r($.dL())}, +gaat(){return A.r($.dL())}, +gvP(){return A.r($.dL())}, +gfL(){return A.r($.dL())}, +gaL(a){return A.r($.dL())}, +gM4(){return A.r($.dL())}, +gab8(){return A.r($.dL())}, +gvI(){return A.r($.dL())}, +gfS(a){return A.r($.dL())}, +gZa(){return A.r($.dL())}, +gaP(a){return A.r($.dL())}, +gqc(){return A.r($.dL())}, +gadF(){return A.r($.dL())}, +ghm(a){return A.r($.dL())}, +gu8(){return A.r($.dL())}, +gabK(){return A.r($.dL())}, +ga8h(){return A.r($.dL())}, +gGP(a){return A.r($.dL())}, +glu(){return A.r($.dL())}, +bf(){return A.r($.dL())}, +gbK(){return A.r($.dL())}, +KX(a){return this.gbK().$1$source(a)}, +Ul(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 this.gbK().$25$artist$author$chapterCount$chaptersLastFetchedAt$description$downloadCount$freshData$genre$id$inLibrary$inLibraryAt$initialized$lastChapterRead$lastFetchedAt$lastReadAt$meta$realUrl$source$sourceId$status$thumbnailUrl$thumbnailUrlLastFetched$title$unreadCount$url(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)}, +KV(a){return this.gbK().$1$inLibrary(a)}} +A.vm.prototype={ +$25$artist$author$chapterCount$chaptersLastFetchedAt$description$downloadCount$freshData$genre$id$inLibrary$inLibraryAt$initialized$lastChapterRead$lastFetchedAt$lastReadAt$meta$realUrl$source$sourceId$status$thumbnailUrl$thumbnailUrlLastFetched$title$unreadCount$url(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){var s=this.a,r=B.d===a6?s.ga7D(s):A.af(a6),q=B.d===a7?s.gzI():A.af(a7),p=B.d===b0?s.gLe(s):A.af(b0),o=B.d===b1?s.gxb():A.bw(b1),n=B.d===a8?s.ga8g():A.bw(a8),m=B.d===c0?s.gMm():A.bw(c0),l=B.d===b8?s.gW8():t.ep.a(b8),k=B.d===b2?s.gaat():A.cN(b2),j=B.d===b3?s.gvP():t.Xb.a(b3),i=B.d===b5?s.gfL():A.cN(b5),h=B.d===b4?s.gaL(s):A.bw(b4),g=B.d===b6?s.gM4():A.bw(b6),f=B.d===b7?s.gab8():A.cN(b7),e=B.d===c2?s.gvI():A.af(c2),d=B.d===c3?s.gfS(s):t.FO.a(c3),c=B.d===c4?s.gZa():A.af(c4),b=B.d===c5?s.gaP(s):t.Qq.a(c5),a=B.d===c6?s.gqc():A.af(c6),a0=B.d===c7?s.gadF():A.bw(c7),a1=B.d===c8?s.ghm(s):A.af(c8),a2=B.d===c9?s.gu8():A.bw(c9),a3=B.d===b9?s.gabK():A.bw(b9),a4=B.d===a9?s.ga8h():A.bw(a9),a5=B.d===d0?s.gGP(s):A.af(d0) +return this.b.$1(A.l(this).h("vm.1").a(s.Ul(r,q,n,a4,p,o,k,j,h,i,g,f,l,a3,m,B.d===c1?s.glu():t.O0.a(c1),e,d,c,b,a,a0,a1,a2,a5)))}, +$0(){return this.$25$artist$author$chapterCount$chaptersLastFetchedAt$description$downloadCount$freshData$genre$id$inLibrary$inLibraryAt$initialized$lastChapterRead$lastFetchedAt$lastReadAt$meta$realUrl$source$sourceId$status$thumbnailUrl$thumbnailUrlLastFetched$title$unreadCount$url(B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d)}, +$1$url(a){return this.$25$artist$author$chapterCount$chaptersLastFetchedAt$description$downloadCount$freshData$genre$id$inLibrary$inLibraryAt$initialized$lastChapterRead$lastFetchedAt$lastReadAt$meta$realUrl$source$sourceId$status$thumbnailUrl$thumbnailUrlLastFetched$title$unreadCount$url(B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,a)}, +$1$sourceId(a){return this.$25$artist$author$chapterCount$chaptersLastFetchedAt$description$downloadCount$freshData$genre$id$inLibrary$inLibraryAt$initialized$lastChapterRead$lastFetchedAt$lastReadAt$meta$realUrl$source$sourceId$status$thumbnailUrl$thumbnailUrlLastFetched$title$unreadCount$url(B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,a,B.d,B.d,B.d,B.d,B.d,B.d)}, +$1$source(a){return this.$25$artist$author$chapterCount$chaptersLastFetchedAt$description$downloadCount$freshData$genre$id$inLibrary$inLibraryAt$initialized$lastChapterRead$lastFetchedAt$lastReadAt$meta$realUrl$source$sourceId$status$thumbnailUrl$thumbnailUrlLastFetched$title$unreadCount$url(B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,a,B.d,B.d,B.d,B.d,B.d,B.d,B.d)}, +$1$inLibrary(a){return this.$25$artist$author$chapterCount$chaptersLastFetchedAt$description$downloadCount$freshData$genre$id$inLibrary$inLibraryAt$initialized$lastChapterRead$lastFetchedAt$lastReadAt$meta$realUrl$source$sourceId$status$thumbnailUrl$thumbnailUrlLastFetched$title$unreadCount$url(B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,a,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d)}} +A.VG.prototype={ +$25$artist$author$chapterCount$chaptersLastFetchedAt$description$downloadCount$freshData$genre$id$inLibrary$inLibraryAt$initialized$lastChapterRead$lastFetchedAt$lastReadAt$meta$realUrl$source$sourceId$status$thumbnailUrl$thumbnailUrlLastFetched$title$unreadCount$url(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){var s=this,r=B.d===a6?s.a.a:A.af(a6),q=B.d===a7?s.a.b:A.af(a7),p=B.d===b0?s.a.c:A.af(b0),o=B.d===b1?s.a.d:A.bw(b1),n=B.d===a8?s.a.e:A.bw(a8),m=B.d===c0?s.a.f:A.bw(c0),l=B.d===b8?s.a.r:t.ep.a(b8),k=B.d===b2?s.a.w:A.cN(b2),j=B.d===b3?s.a.x:t.Xb.a(b3),i=B.d===b5?s.a.y:A.cN(b5),h=B.d===b4?s.a.z:A.bw(b4),g=B.d===b6?s.a.Q:A.bw(b6),f=B.d===b7?s.a.as:A.cN(b7),e=B.d===c2?s.a.at:A.af(c2),d=B.d===c3?s.a.ax:t.FO.a(c3),c=B.d===c4?s.a.ay:A.af(c4),b=B.d===c5?s.a.ch:t.Qq.a(c5),a=B.d===c6?s.a.CW:A.af(c6),a0=B.d===c7?s.a.cx:A.bw(c7),a1=B.d===c8?s.a.cy:A.af(c8),a2=B.d===c9?s.a.db:A.bw(c9),a3=B.d===b9?s.a.dx:A.bw(b9),a4=B.d===a9?s.a.dy:A.bw(a9),a5=B.d===d0?s.a.fr:A.af(d0) +return s.b.$1(A.bm6(r,q,n,a4,p,o,k,j,h,i,g,f,l,a3,m,B.d===c1?s.a.fx:t.O0.a(c1),e,d,c,b,a,a0,a1,a2,a5))}, +$0(){return this.$25$artist$author$chapterCount$chaptersLastFetchedAt$description$downloadCount$freshData$genre$id$inLibrary$inLibraryAt$initialized$lastChapterRead$lastFetchedAt$lastReadAt$meta$realUrl$source$sourceId$status$thumbnailUrl$thumbnailUrlLastFetched$title$unreadCount$url(B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d)}, +$1$url(a){return this.$25$artist$author$chapterCount$chaptersLastFetchedAt$description$downloadCount$freshData$genre$id$inLibrary$inLibraryAt$initialized$lastChapterRead$lastFetchedAt$lastReadAt$meta$realUrl$source$sourceId$status$thumbnailUrl$thumbnailUrlLastFetched$title$unreadCount$url(B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,a)}, +$1$sourceId(a){return this.$25$artist$author$chapterCount$chaptersLastFetchedAt$description$downloadCount$freshData$genre$id$inLibrary$inLibraryAt$initialized$lastChapterRead$lastFetchedAt$lastReadAt$meta$realUrl$source$sourceId$status$thumbnailUrl$thumbnailUrlLastFetched$title$unreadCount$url(B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,a,B.d,B.d,B.d,B.d,B.d,B.d)}, +$1$source(a){return this.$25$artist$author$chapterCount$chaptersLastFetchedAt$description$downloadCount$freshData$genre$id$inLibrary$inLibraryAt$initialized$lastChapterRead$lastFetchedAt$lastReadAt$meta$realUrl$source$sourceId$status$thumbnailUrl$thumbnailUrlLastFetched$title$unreadCount$url(B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,a,B.d,B.d,B.d,B.d,B.d,B.d,B.d)}, +$1$inLibrary(a){return this.$25$artist$author$chapterCount$chaptersLastFetchedAt$description$downloadCount$freshData$genre$id$inLibrary$inLibraryAt$initialized$lastChapterRead$lastFetchedAt$lastReadAt$meta$realUrl$source$sourceId$status$thumbnailUrl$thumbnailUrlLastFetched$title$unreadCount$url(B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,a,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d,B.d)}} +A.rt.prototype={ +gvP(){var s=this.x +if(s==null)return null +if(s instanceof A.cX)return s +return new A.cX(s,s,t.ls)}, +l(a){var s=this +return"Manga(artist: "+A.i(s.a)+", author: "+A.i(s.b)+", description: "+A.i(s.c)+", downloadCount: "+A.i(s.d)+", chapterCount: "+A.i(s.e)+", lastReadAt: "+A.i(s.f)+", lastChapterRead: "+A.i(s.r)+", freshData: "+A.i(s.w)+", genre: "+A.i(s.gvP())+", inLibrary: "+A.i(s.y)+", id: "+A.i(s.z)+", inLibraryAt: "+A.i(s.Q)+", initialized: "+A.i(s.as)+", realUrl: "+A.i(s.at)+", source: "+A.i(s.ax)+", sourceId: "+A.i(s.ay)+", status: "+A.i(s.ch)+", thumbnailUrl: "+A.i(s.CW)+", thumbnailUrlLastFetched: "+A.i(s.cx)+", title: "+A.i(s.cy)+", unreadCount: "+A.i(s.db)+", lastFetchedAt: "+A.i(s.dx)+", chaptersLastFetchedAt: "+A.i(s.dy)+", url: "+A.i(s.fr)+", meta: "+A.i(s.fx)+")"}, +k(a,b){var s,r,q=this +if(b==null)return!1 +if(q!==b)if(J.a_(b)===A.p(q))if(b instanceof A.rt){s=b.a==q.a +if(s||s){s=b.b==q.b +if(s||s){s=b.c==q.c +if(s||s){s=b.d==q.d +if(s||s){s=b.e==q.e +if(s||s){s=b.f==q.f +if(s||s){s=b.r +r=q.r +if(s==r||J.j(s,r)){s=b.w==q.w +if(s||s)if(B.a0.d7(b.x,q.x)){s=b.y==q.y +if(s||s){s=b.z==q.z +if(s||s){s=b.Q==q.Q +if(s||s){s=b.as==q.as +if(s||s){s=b.at==q.at +if(s||s){s=b.ax +r=q.ax +if(s==r||J.j(s,r)){s=b.ay==q.ay +if(s||s){s=b.ch==q.ch +if(s||s){s=b.CW==q.CW +if(s||s){s=b.cx==q.cx +if(s||s){s=b.cy==q.cy +if(s||s){s=b.db==q.db +if(s||s){s=b.dx==q.dx +if(s||s){s=b.dy==q.dy +if(s||s){s=b.fr==q.fr +if(s||s){s=b.fx +r=q.fx +s=s==r||J.j(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=!0 +return s}, +gu(a){var s=this +return A.dj([A.p(s),s.a,s.b,s.c,s.d,s.e,s.f,s.r,s.w,B.a0.dl(0,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])}, +gbK(){return new A.VG(this,B.RH,t._V)}, +bf(){var s,r,q,p,o=this,n=null,m=o.r +m=m==null?n:m.bf() +s=o.gvP() +r=o.ax +r=r==null?n:r.bf() +q=o.ch +q=q==null?n:q.d +if(q==null)q="UNKNOWN" +p=o.fx +p=p==null?n:p.bf() +return A.am(["artist",o.a,"author",o.b,"description",o.c,"downloadCount",o.d,"chapterCount",o.e,"lastReadAt",o.f,"lastChapterRead",m,"freshData",o.w,"genre",s,"inLibrary",o.y,"id",o.z,"inLibraryAt",o.Q,"initialized",o.as,"realUrl",o.at,"source",r,"sourceId",o.ay,"status",q,"thumbnailUrl",o.CW,"thumbnailUrlLastFetched",o.cx,"title",o.cy,"unreadCount",o.db,"lastFetchedAt",o.dx,"chaptersLastFetchedAt",o.dy,"url",o.fr,"meta",p],t.N,t.z)}, +KX(a){return this.gbK().$1$source(a)}, +Ul(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 this.gbK().$25$artist$author$chapterCount$chaptersLastFetchedAt$description$downloadCount$freshData$genre$id$inLibrary$inLibraryAt$initialized$lastChapterRead$lastFetchedAt$lastReadAt$meta$realUrl$source$sourceId$status$thumbnailUrl$thumbnailUrlLastFetched$title$unreadCount$url(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)}, +KV(a){return this.gbK().$1$inLibrary(a)}, +ga7D(a){return this.a}, +gzI(){return this.b}, +gLe(a){return this.c}, +gxb(){return this.d}, +ga8g(){return this.e}, +gMm(){return this.f}, +gW8(){return this.r}, +gaat(){return this.w}, +gfL(){return this.y}, +gaL(a){return this.z}, +gM4(){return this.Q}, +gab8(){return this.as}, +gvI(){return this.at}, +gfS(a){return this.ax}, +gZa(){return this.ay}, +gaP(a){return this.ch}, +gqc(){return this.CW}, +gadF(){return this.cx}, +ghm(a){return this.cy}, +gu8(){return this.db}, +gabK(){return this.dx}, +ga8h(){return this.dy}, +gGP(a){return this.fr}, +glu(){return this.fx}} +A.aiL.prototype={ +gbK(){return A.r($.dL())}, +KX(a){return this.gbK().$1$source(a)}, +Ul(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 this.gbK().$25$artist$author$chapterCount$chaptersLastFetchedAt$description$downloadCount$freshData$genre$id$inLibrary$inLibraryAt$initialized$lastChapterRead$lastFetchedAt$lastReadAt$meta$realUrl$source$sourceId$status$thumbnailUrl$thumbnailUrlLastFetched$title$unreadCount$url(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)}, +KV(a){return this.gbK().$1$inLibrary(a)}} +A.b1y.prototype={ +ghl(){return A.r($.dL())}, +gi4(){return A.r($.dL())}, +gjn(){return A.r($.dL())}, +gjm(){return A.r($.dL())}, +grD(){return A.r($.dL())}, +bf(){return A.r($.dL())}} +A.Qd.prototype={ +l(a){var s=this +return"MangaMeta(invertTap: "+A.i(s.a)+", readerNavigationLayout: "+A.i(s.b)+", readerMode: "+A.i(s.c)+", readerPadding: "+A.i(s.d)+", readerMagnifierSize: "+A.i(s.e)+", scanlator: "+A.i(s.f)+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.Qd){s=b.a==r.a +if(s||s){s=b.b==r.b +if(s||s){s=b.c==r.c +if(s||s){s=b.d==r.d +if(s||s){s=b.e==r.e +if(s||s){s=b.f==r.f +s=s||s}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){var s=this +return A.X(A.p(s),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)}, +bf(){var s=this +return A.am(["flutter_readerNavigationLayoutInvert",s.a,"flutter_readerNavigationLayout",B.Jb.i(0,s.b),"flutter_readerMode",B.Jc.i(0,s.c),"flutter_readerPadding",s.d,"flutter_readerMagnifierSize",s.e,"flutter_scanlator",s.f],t.N,t.z)}, +$iLL:1, +ghl(){return this.b}, +gi4(){return this.c}, +gjn(){return this.d}, +gjm(){return this.e}, +grD(){return this.f}} +A.b18.prototype={ +$1(a){return A.bm(a)}, +$S:36} +A.aiZ.prototype={} +A.aiV.prototype={} +A.eS.prototype={ +gGD(a){var s,r,q,p=this,o=null,n=p.gi1(p) +n=n==null?o:J.b3(n) +if(n==null||B.f.gcZ(n))n=0 +else n.toString +s=p.gi6() +s=s==null?o:J.b3(s) +if(s==null||B.f.gcZ(s))s=0 +else s.toString +r=p.gh9(p) +r=r==null?o:J.b3(r) +if(r==null||B.f.gcZ(r))r=0 +else r.toString +q=p.ghA() +q=q==null?o:J.b3(q) +if(q==null||B.f.gcZ(q))q=0 +else q.toString +return n+s+r+q}, +gXL(){var s,r=this.gh9(this) +r=r==null?null:J.b3(r) +if(r==null||B.f.gcZ(r))r=0 +else r.toString +s=this.ghA() +s=s==null?null:J.b3(s) +if(s==null||B.f.gcZ(s))s=0 +else s.toString +return r+s}} +A.b1E.prototype={ +gi1(a){return A.r($.X9())}, +gi6(){return A.r($.X9())}, +gh9(a){return A.r($.X9())}, +ghA(){return A.r($.X9())}, +bf(){return A.r($.X9())}} +A.Qh.prototype={ +gi1(a){var s=this.a +if(s==null)return null +if(s instanceof A.cX)return s +return new A.cX(s,s,t.V6)}, +gi6(){var s=this.b +if(s==null)return null +if(s instanceof A.cX)return s +return new A.cX(s,s,t.V6)}, +gh9(a){var s=this.c +if(s==null)return null +if(s instanceof A.cX)return s +return new A.cX(s,s,t.V6)}, +ghA(){var s=this.d +if(s==null)return null +if(s instanceof A.cX)return s +return new A.cX(s,s,t.V6)}, +l(a){var s=this +return"UpdateStatus(pending: "+A.i(s.gi1(s))+", running: "+A.i(s.gi6())+", completed: "+A.i(s.gh9(s))+", failed: "+A.i(s.ghA())+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)s=J.a_(b)===A.p(r)&&b instanceof A.Qh&&B.a0.d7(b.a,r.a)&&B.a0.d7(b.b,r.b)&&B.a0.d7(b.c,r.c)&&B.a0.d7(b.d,r.d) +else s=!0 +return s}, +gu(a){var s=this +return A.X(A.p(s),B.a0.dl(0,s.a),B.a0.dl(0,s.b),B.a0.dl(0,s.c),B.a0.dl(0,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)}, +bf(){return A.bOi(this)}} +A.aoR.prototype={} +A.b1e.prototype={ +$1(a){return A.vl(t.a.a(a))}, +$S:68} +A.b1f.prototype={ +$1(a){return A.vl(t.a.a(a))}, +$S:68} +A.b1g.prototype={ +$1(a){return A.vl(t.a.a(a))}, +$S:68} +A.b1h.prototype={ +$1(a){return A.vl(t.a.a(a))}, +$S:68} +A.b1i.prototype={ +$1(a){return a.bf()}, +$S:94} +A.b1j.prototype={ +$1(a){return a.bf()}, +$S:94} +A.b1k.prototype={ +$1(a){return a.bf()}, +$S:94} +A.b1l.prototype={ +$1(a){return a.bf()}, +$S:94} +A.aoS.prototype={} +A.a19.prototype={ +aB(a,b){var s=null,r=b.N(A.eD(a),t.g),q=b.N($.bDF(),t.Cm),p=b.N($.bDG(),t.TX),o=b.N($.bDT(),t.y),n=A.P(A.A(a,B.h,t.J).glg(),s,s,s,s,s,s,s),m=A.a([],t.p),l=J.cf(q) +if(!l)m.push(A.dh(s,s,B.a6N,s,new A.azX(b),s,s,s,s,s)) +n=A.eB(m,s,s,s,s,s,n) +if(o){m=A.c_(p) +m=new A.a17(m==null?"":m,s)}else m=s +return A.e9(n,s,A.iw(p,a,new A.azY(a,q,r),!1,s,!0,s),s,s,s,!0,!1,!1,m,s)}} +A.azX.prototype={ +$0(){return A.dE(this.a.ae(0,$.og(),t.vm).gaGr(),t.H)}, +$S:0} +A.azY.prototype={ +$1(a){var s,r,q,p,o=this +if(a==null)return A.i5(null,A.A(o.a,B.h,t.J).gjQ()) +else{s=o.b +r=J.aj(s) +q=r.gak(s) +if(q)return A.i5(null,A.A(o.a,B.h,t.J).gnw()) +else{p=r.gt(s) +r=B.f.gcZ(p) +if(r)p=0 +return A.oQ(new A.azW(p,s,o.c),p+1,104,null,B.H)}}}, +$S:842} +A.azW.prototype={ +$2(a,b){var s,r=this.a +if(b===r)return B.a58 +s=J.b7(this.b,b) +return new A.a15(s,this.c,b,r,new A.bS(A.i(s),t.O))}, +$S:28} +A.a15.prototype={ +GA(a,b,c,d,e){return this.aPR(a,b,c,d,e)}, +aPR(a,b,c,d,e){var s=0,r=A.y(t.z),q=1,p,o,n,m,l +var $async$GA=A.u(function(f,g){if(f===1){p=g +s=q}while(true)switch(s){case 0:q=3 +o=t.P +l=A +s=6 +return A.t(A.dE(new A.azF(b,d,e,c),o),$async$GA) +case 6:l.hF(g,a,!1,o) +q=1 +s=5 +break +case 3:q=2 +m=p +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$GA,r)}, +aB(a,b){var s,r,q=this,p=null,o=$.bb.bz(new A.dc(p,p,t.ar),t.XR),n=b.N(A.azS(q.f),t.fC),m=n==null,l=m?p:n.gd0(n),k=m?p:n.gre(),j=m?p:n.gNG() +$.bb.bz(new A.dK(new A.azA(o,n),[l,k,j]),t.H) +if(m)return B.a1 +m=t.p +l=A.a([],m) +k=n.ges() +k=k==null?p:k.gqc() +if(!(k==null||k.length===0)){k=n.ges().gqc() +k.toString +l.push(new A.b4(B.bh,A.jg(!1,p,!0,A.or(B.bv,A.nF(!1,p,k,p,!1,B.ar9,p),B.bd),p,!0,p,p,p,p,p,p,p,p,p,new A.azB(n,a),p,p,p,p,p,p,p),p))}k=n.ges() +k=k==null?p:k.ghm(k) +if(k==null)k="" +k=A.P(k,p,B.ad,p,p,A.B(a).p3.as,p,p) +j=n.gfb() +j=j==null?p:j.gcP(j) +if(j==null){j=n.gfb() +j=j==null?p:J.cU(j.gKJ())}if(j==null)j="" +j=A.P(j,p,B.ad,p,p,A.B(a).p3.ax,p,p) +if(o.gj(o)==null)o=p +else{o=o.gj(o) +o.toString +o=A.P(o,p,B.ad,p,p,p,p,p)}o=A.bI(!1,B.a8,!0,p,!0,p,p,!1,p,p,p,p,p,!1,p,p,p,p,j,p,k,o,p) +k=n.gre() +if(k==null)k=0 +j=n.gre() +j=B.e.au((j==null?0:j)*100) +s=q.w +r=A.dh(B.bK,p,B.xN,p,s===0?p:new A.azC(q,b,n),p,p,p,p,B.eT) +l.push(A.dN(new A.b4(B.fj,A.cP(A.a([o,new A.Lt(k,p,p,p,p,""+j+"%",p),A.db(A.a([r,A.dh(B.bK,p,B.xV,p,s>=q.x-1?p:new A.azD(q,b,n),p,p,p,p,B.eT)],m),B.w,B.z,B.O)],m),B.dl,B.z,B.O),p),1)) +l.push(A.aNH(p,new A.azE(q,n,b),new A.cM(B.cW,B.u),t.z)) +return A.q5(new A.b4(B.bW,A.db(l,B.w,B.z,B.O),p),p,p,B.jo,p)}} +A.azF.prototype={ +$0(){var s=0,r=A.y(t.P),q=this,p,o,n +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:p=q.a.ae(0,$.og(),t.vm) +o="/download/"+q.b+"/chapter/"+q.c +n=t.z +s=2 +return A.t(p.a.A6(0,o,n,n),$async$$0) +case 2:s=q.d?3:4 +break +case 3:s=5 +return A.t(p.a.ru(0,o,n,n),$async$$0) +case 5:case 4:return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:53} +A.azA.prototype={ +$0(){var s,r=null,q=this.b,p=q==null +if((p?r:q.gd0(q))==="Downloading"){q=p?r:q.gre() +q=""+B.e.au((q==null?0:q)*100)+"%"}else if((p?r:q.gd0(q))==="Error"){s=p?r:q.gd0(q) +q=p?r:q.gNG() +q=A.i(s)+"("+A.i(q)+")"}else q=p?r:q.gd0(q) +this.a.sj(0,q) +return r}, +$S:4} +A.azB.prototype={ +$0(){var s=this.a.giH() +s.toString +s=A.oe(new A.iO(s,null)) +return A.bP(this.b).dz(s,null,t.z)}, +$S:0} +A.azC.prototype={ +$0(){var s,r=this.b.ae(0,$.og(),t.vm),q=this.c,p=q.giH() +p.toString +q=q.gwT() +q.toString +s=t.z +return r.a.N3("/download/"+p+"/chapter/"+q+"/reorder/"+(this.a.w-1),s,s)}, +$S:0} +A.azD.prototype={ +$0(){var s,r=this.b.ae(0,$.og(),t.vm),q=this.c,p=q.giH() +p.toString +q=q.gwT() +q.toString +s=t.z +return r.a.N3("/download/"+p+"/chapter/"+q+"/reorder/"+(this.a.w+1),s,s)}, +$S:0} +A.azE.prototype={ +$1(a){var s,r,q,p,o,n=this,m=null,l=A.a([],t.nm),k=n.b +if(k.gd0(k)==="Error")l.push(A.nr(A.P(A.A(a,B.h,t.J).gk5(),m,m,m,m,m,m,m),new A.azw(n.a,n.c,k),t.z)) +s=t.J +r=A.A(a,B.h,s) +q=n.a +p=n.c +o=t.z +l.push(A.nr(A.P(r.gkM(r),m,m,m,m,m,m,m),new A.azx(q,p,k),o)) +r=q.w +if(r!==0)l.push(A.nr(A.P(A.A(a,B.h,s).gnr(),m,m,m,m,m,m,m),new A.azy(p,k),o)) +if(r=600,o,new A.azQ(b,p))}else{o=A.A(a,B.h,s) +o=A.P(o.gi0(o),q,q,q,q,q,q,q) +return A.a1W(B.a6W,A.aY(a,q,r).w.a.a>=600,o,new A.azR(b,p))}}} +A.azQ.prototype={ +$0(){var s=0,r=A.y(t.H),q=this,p,o +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:p=t.H +o=A +s=2 +return A.t(A.dE(q.a.ae(0,$.og(),t.vm).gOy(),p),$async$$0) +case 2:o.hF(b,q.b,!1,p) +return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.azR.prototype={ +$0(){var s=0,r=A.y(t.H),q=this,p,o +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:p=t.H +o=A +s=2 +return A.t(A.dE(q.a.ae(0,$.og(),t.vm).gahd(),p),$async$$0) +case 2:o.hF(b,q.b,!1,p) +return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.iP.prototype={ +tf(a){return this.aFU(a)}, +aFU(a){var s=0,r=A.y(t.l8),q,p=this,o,n,m +var $async$tf=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:n=new A.i0(new A.aD(new A.a7($.ac,t.Ic),t.L4)) +m=p.a +m===$&&A.b() +m.jX(n.gdJ(n)) +s=3 +return A.t(m.N($.fv(),t.W).afo(n,a),$async$tf) +case 3:o=c +m.ii() +q=o +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$tf,r)}, +vJ(a,b){return this.aOF(0,b)}, +aOF(a,b){var s=0,r=A.y(t.H),q=this,p,o,n +var $async$vJ=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:o=new A.i0(new A.aD(new A.a7($.ac,t.Ic),t.L4)) +n=q.a +n===$&&A.b() +n.jX(o.gdJ(o)) +s=2 +return A.t(A.dE(new A.aJN(q,o,b),t.l8),$async$vJ) +case 2:p=d +n.ii() +if(p.ghz(p)!=null){q.goL().p5(0) +n=p.KZ(q.goL().gjs()) +q.goL().sd0(0,n)}else q.goL().sd0(0,p) +return A.w(null,r)}}) +return A.x($async$vJ,r)}} +A.aJN.prototype={ +$0(){var s=this.a,r=s.a +r===$&&A.b() +r=r.N($.fv(),t.W) +s=s.b +s===$&&A.b() +return r.BX(this.b,s,this.c)}, +$S:844} +A.iM.prototype={ +tf(a){return this.aFT(a)}, +aFT(a){var s=0,r=A.y(t.U_),q,p=this,o,n,m +var $async$tf=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:n=new A.i0(new A.aD(new A.a7($.ac,t.Ic),t.L4)) +m=p.a +m===$&&A.b() +m.jX(n.gdJ(n)) +s=3 +return A.t(m.N($.fv(),t.W).BP(n,a,!1),$async$tf) +case 3:o=c +m.ii() +q=o +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$tf,r)}, +vJ(a,b){return this.aOE(0,b)}, +aOE(a,b){var s=0,r=A.y(t.H),q=this,p,o,n +var $async$vJ=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:o=new A.i0(new A.aD(new A.a7($.ac,t.Ic),t.L4)) +n=q.a +n===$&&A.b() +n.jX(o.gdJ(o)) +s=2 +return A.t(A.dE(new A.aJ9(q,o,b),t.U_),$async$vJ) +case 2:p=d +n.ii() +if(p.ghz(p)!=null){q.goL().p5(0) +n=p.KZ(q.goL().gjs()) +q.goL().sd0(0,n)}else q.goL().sd0(0,p) +return A.w(null,r)}}) +return A.x($async$vJ,r)}} +A.aJ9.prototype={ +$0(){var s=this.a,r=s.a +r===$&&A.b() +r=r.ae(0,$.fv(),t.W) +s=s.b +s===$&&A.b() +return r.BP(this.b,s,this.c)}, +$S:845} +A.bhA.prototype={ +$1(a){var s,r,q,p +if(a==null)return +for(s=J.al(a),r=this.a;s.v();){q=s.gG(s) +p=q.grD() +if(!(p==null||p.length===0)){q=q.grD() +q.toString +r.F(0,q)}}}, +$S:846} +A.jW.prototype={ +bZ(a,b){return this.aQ9(0,b)}, +aQ9(a,b){var s=0,r=A.y(t.z),q=this,p,o,n +var $async$bZ=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:s=2 +return A.t(A.dE(new A.aJ3(q,b),t.H),$async$bZ) +case 2:p=q.a +p===$&&A.b() +o=q.b +o===$&&A.b() +o=A.oS(o) +n=p.e +n===$&&A.b() +n.kx(o) +p.ad(b==null?"flutter_scanlator":b) +return A.w(null,r)}}) +return A.x($async$bZ,r)}} +A.aJ3.prototype={ +$0(){var s,r="flutter_scanlator",q=this.a,p=q.a +p===$&&A.b() +p=p.ae(0,$.fv(),t.W) +q=q.b +q===$&&A.b() +s=this.b +return p.vC(r,q,s==null?r:s)}, +$S:2} +A.bhx.prototype={ +$1(a){var s,r=this,q=r.a +if(q!=null){s=a.gh4(a) +q=B.b7.yN(q,s!==!0)}else q=!1 +if(q)return!1 +q=r.b +if(q!=null){s=a.gfJ(a) +q=B.b7.yN(q,s===!0)}else q=!1 +if(q)return!1 +q=r.c +if(q!=null){s=a.gfU() +q=B.b7.yN(q,s===!0)}else q=!1 +if(q)return!1 +q=r.d +if(q!=="flutter_scanlator"&&a.grD()!==q)return!1 +return!0}, +$S:27} +A.bhy.prototype={ +$2(a,b){var s,r,q=this.a?1:-1 +switch(this.b.a){case 2:s=a.gAw() +if(s==null)s=0 +r=b.gAw() +s=B.f.bO(s,r==null?0:r) +break +case 0:s=a.gdN(a) +if(s==null)s=0 +r=b.gdN(b) +s=B.f.bO(s,r==null?0:r) +break +case 1:s=a.gGO() +if(s==null)s=0 +r=b.gGO() +s=B.f.bO(s,r==null?0:r) +break +default:s=null}return s*q}, +$S:848} +A.bhz.prototype={ +$1(a){var s=A.a([],t.D3),r=a==null?null:J.lT(a,this.a) +if(r!=null)B.b.I(s,r) +B.b.fw(s,this.b) +return s}, +$S:849} +A.bh0.prototype={ +$1(a){var s=a.gh4(a) +return s===!1}, +$S:27} +A.bh1.prototype={ +$1(a){var s=a.gh4(a) +return s===!1}, +$S:27} +A.bh9.prototype={ +$1(a){return A.i(a.gdN(a))===this.a}, +$S:27} +A.ya.prototype={ +aO(){return this.tG(0,B.a0P,B.BU)}} +A.yb.prototype={ +aO(){return this.f_(0,B.a1_)}} +A.y7.prototype={ +aO(){return this.f_(0,B.a16)}} +A.y8.prototype={ +aO(){return this.f_(0,B.a17)}} +A.y6.prototype={ +aO(){return this.f_(0,B.a18)}} +A.iL.prototype={ +A(a){return this.aFS(a)}, +aFS(a){var s=0,r=A.y(t.Em),q,p=this,o,n,m,l,k +var $async$A=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:k=p.a +k===$&&A.b() +s=3 +return A.t(k.N($.fv(),t.W).BY(a),$async$A) +case 3:o=c +k=A.I(t.N,t.oo) +n=J.al(o==null?A.a([],t.vN):o) +for(;n.v();){m=n.gG(n) +l=m.gaL(m) +k.n(0,A.i(l==null?"":l),m)}q=k +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$A,r)}, +jp(a){var s=0,r=A.y(t.H),q=this,p,o +var $async$jp=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:p=t.IL +o=A +s=2 +return A.t(A.dE(new A.aJ_(q),p),$async$jp) +case 2:p=o.om(c,new A.aJ0(),p,t.Em) +q.goL().sd0(0,p) +return A.w(null,r)}}) +return A.x($async$jp,r)}} +A.aJ_.prototype={ +$0(){var s=this.a,r=s.a +r===$&&A.b() +r=r.N($.fv(),t.W) +s=s.b +s===$&&A.b() +return r.BY(s)}, +$S:109} +A.aJ0.prototype={ +$1(a){var s,r,q=A.I(t.N,t.oo),p=J.al(a==null?A.a([],t.vN):a) +for(;p.v();){s=p.gG(p) +r=s.gaL(s) +q.n(0,A.i(r==null?"":r),s)}return q}, +$S:850} +A.a3Y.prototype={ +$1$mangaId(a){return A.bkY(a)}, +fF(a){return A.bkY(a.dy)}, +gf9(){return null}} +A.LM.prototype={ +bI(a){var s=null,r=t.B +return new A.aiX(s,!1,this,A.a([],t.Rc),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K))}, +k(a,b){if(b==null)return!1 +return b instanceof A.LM&&b.dy===this.dy}, +gu(a){return A.AC(A.j1(A.j1(0,A.cS(A.p(this))),B.f.gu(this.dy)))}} +A.aJJ.prototype={ +$1(a){return A.bWh(t.KM.a(a),this.a)}, +$S:851} +A.LN.prototype={} +A.aiX.prototype={} +A.a3R.prototype={ +$1$mangaId(a){return A.a3S(a)}, +fF(a){return A.a3S(a.dy)}, +gf9(){return null}} +A.LI.prototype={ +bI(a){var s=null,r=t.B +return new A.aiS(s,!1,this,A.a([],t.d2),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K))}, +k(a,b){if(b==null)return!1 +return b instanceof A.LI&&b.dy===this.dy}, +gu(a){return A.AC(A.j1(A.j1(0,A.cS(A.p(this))),B.f.gu(this.dy)))}} +A.aJ8.prototype={ +$1(a){return A.bWg(t.dq.a(a),this.a)}, +$S:852} +A.LJ.prototype={} +A.aiS.prototype={} +A.a1P.prototype={ +$1$mangaId(a){return A.bkq(a)}, +fF(a){return A.bkq(a.dy)}, +gf9(){return null}} +A.Kq.prototype={ +bI(a){var s=null,r=t.B +return new A.agX(s,!1,this,A.a([],t.qk),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K))}, +k(a,b){if(b==null)return!1 +return b instanceof A.Kq&&b.dy===this.dy}, +gu(a){return A.AC(A.j1(A.j1(0,A.cS(A.p(this))),B.f.gu(this.dy)))}} +A.aDb.prototype={ +$1(a){return A.bV4(t.OJ.a(a),this.a)}, +$S:853} +A.Kr.prototype={} +A.agX.prototype={} +A.a2g.prototype={ +$3$chapterIndex$mangaId$shouldAscSort(a,b,c){return A.aF8(a,b,c)}, +$2$chapterIndex$mangaId(a,b){return this.$3$chapterIndex$mangaId$shouldAscSort(a,b,!0)}, +fF(a){return A.aF8(a.fr,a.dy,a.fx)}, +gf9(){return null}} +A.KO.prototype={ +bI(a){var s=null,r=t.B +return new A.ahp(s,!1,this,A.a([],t.Q0),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K))}, +k(a,b){if(b==null)return!1 +return b instanceof A.KO&&b.dy===this.dy&&b.fr===this.fr&&b.fx===this.fx}, +gu(a){var s=this +return A.AC(A.j1(A.j1(A.j1(A.j1(0,A.cS(A.p(s))),B.f.gu(s.dy)),B.c.gu(s.fr)),B.b7.gu(s.fx)))}} +A.aF9.prototype={ +$1(a){return A.bVo(t.HJ.a(a),this.b,this.a,this.c)}, +$S:854} +A.KP.prototype={} +A.ahp.prototype={} +A.adG.prototype={} +A.a3Z.prototype={ +$1$mangaId(a){return A.oS(a)}, +fF(a){return A.oS(a.fy)}, +gf9(){return null}} +A.LO.prototype={ +rq(a){return a.tf(this.fy)}, +bI(a){var s=null,r=t.B +return new A.aiY(s,!1,new A.ci(A.aX(0,s,!1,t.pL),t.Io),new A.ci(A.aX(0,s,!1,t.dY),t.tb),s,s,s,s,this,A.a([],t.NQ),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K))}, +k(a,b){if(b==null)return!1 +return b instanceof A.LO&&b.fy===this.fy}, +gu(a){return A.AC(A.j1(A.j1(0,A.cS(A.p(this))),B.f.gu(this.fy)))}} +A.aJL.prototype={ +$0(){var s=new A.iP() +s.b=this.a +return s}, +$S:855} +A.aJM.prototype={} +A.aiY.prototype={} +A.adF.prototype={} +A.a3Q.prototype={ +$1$mangaId(a){return A.Dl(a)}, +fF(a){return A.Dl(a.fy)}, +gf9(){return null}} +A.LH.prototype={ +rq(a){return a.tf(this.fy)}, +bI(a){var s=null,r=t.B +return new A.aiR(s,!1,new A.ci(A.aX(0,s,!1,t.rY),t.dd),new A.ci(A.aX(0,s,!1,t.UO),t.jp),s,s,s,s,this,A.a([],t.d2),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K))}, +k(a,b){if(b==null)return!1 +return b instanceof A.LH&&b.fy===this.fy}, +gu(a){return A.AC(A.j1(A.j1(0,A.cS(A.p(this))),B.f.gu(this.fy)))}} +A.aJ6.prototype={ +$0(){var s=new A.iM() +s.b=this.a +return s}, +$S:856} +A.aJ7.prototype={} +A.aiR.prototype={} +A.adE.prototype={} +A.a3P.prototype={ +$1$mangaId(a){return A.LG(a)}, +fF(a){return A.LG(a.fx)}, +gf9(){return null}} +A.LF.prototype={ +rq(a){var s=a.a +s===$&&A.b() +s=A.c_(s.N(A.oS(this.fx),t.ms)) +if(s==null)s=null +else{s=s.glu() +s=s==null?null:s.grD()}return s==null?"flutter_scanlator":s}, +bI(a){var s=null,r=t.B +return new A.aiP(s,!1,new A.ci(A.aX(0,s,!1,t.Df),t.PG),this,A.a([],t.sP),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K))}, +k(a,b){if(b==null)return!1 +return b instanceof A.LF&&b.fx===this.fx}, +gu(a){return A.AC(A.j1(A.j1(0,A.cS(A.p(this))),B.f.gu(this.fx)))}} +A.aJ1.prototype={ +$0(){var s=new A.jW() +s.b=this.a +return s}, +$S:857} +A.aJ2.prototype={} +A.aiP.prototype={} +A.adD.prototype={} +A.a3N.prototype={ +$1(a){return A.bkV(a)}, +fF(a){return A.bkV(a.fy)}, +gf9(){return null}} +A.LE.prototype={ +rq(a){return a.A(this.fy)}, +bI(a){var s=null,r=t.B +return new A.aiM(s,!1,new A.ci(A.aX(0,s,!1,t.Nj),t.S6),new A.ci(A.aX(0,s,!1,t.m4),t.Is),s,s,s,s,this,A.a([],t.x_),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K))}, +k(a,b){if(b==null)return!1 +return b instanceof A.LE&&b.fy===this.fy}, +gu(a){return A.AC(A.j1(A.j1(0,A.cS(A.p(this))),B.f.gu(this.fy)))}} +A.aIY.prototype={ +$0(){var s=new A.iL() +s.b=this.a +return s}, +$S:858} +A.aIZ.prototype={} +A.aiM.prototype={} +A.aiN.prototype={} +A.aiO.prototype={} +A.aiQ.prototype={} +A.aiU.prototype={} +A.aiT.prototype={} +A.apw.prototype={} +A.apz.prototype={} +A.apF.prototype={} +A.apG.prototype={} +A.apH.prototype={} +A.apI.prototype={} +A.apJ.prototype={} +A.apK.prototype={} +A.a3X.prototype={ +aB(a,b){var s,r,q,p,o=this.f,n=A.oS(o),m=A.Dl(o),l=A.a3S(o),k=b.N(n,t.ms),j=b.N(l,t.uV),i=b.N(A.bkq(o),t.ep) +o=$.bb.bz(new A.dc(A.I(t.S,t.ja),null,t.gK),t.rh) +s=t.db +r=A.w1(new A.aJC(b,n),[n],s) +q=A.w1(new A.aJD(b,m),[m],s) +p=A.w1(new A.aJE(a,b,r,q,k),[a,r,q],t.N4) +$.bb.bz(new A.dK(new A.aJF(j,k,p),[]),t.H) +return new A.DR(A.iw(k,a,new A.aJG(this,o,a,j,p,q,i,r),!1,p,!1,new A.aJH(a)),new A.aJI(this,b),!0,null)}} +A.aJC.prototype={ +$1(a){return this.aeJ(a)}, +$0(){return this.$1(!1)}, +$C:"$1", +$R:0, +$D(){return[!1]}, +aeJ(a){var s=0,r=A.y(t.H),q,p=this +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=3 +return A.t(J.bpD(p.a.ae(0,p.b.gcb(),t.cM),a),$async$$1) +case 3:q=c +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$$1,r)}, +$S:300} +A.aJD.prototype={ +$1(a){return this.aeI(a)}, +$0(){return this.$1(!1)}, +$C:"$1", +$R:0, +$D(){return[!1]}, +aeI(a){var s=0,r=A.y(t.H),q,p=this +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:s=3 +return A.t(J.bpD(p.a.ae(0,p.b.gcb(),t.GV),a),$async$$1) +case 3:q=c +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$$1,r)}, +$S:300} +A.aJE.prototype={ +$1(a){var s=0,r=A.y(t.P),q=this,p,o,n,m,l +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:l=q.a +if(l.e!=null&&a){p=q.b.ae(0,A.eD(l),t.g) +o=A.A(l,B.h,t.J) +J.bpF(p,o.glL(o),!0)}s=2 +return A.t(q.c.$1(a),$async$$1) +case 2:s=3 +return A.t(q.d.$1(a),$async$$1) +case 3:if(l.e!=null&&a){p=q.e +o=q.b +n=t.g +m=t.J +if(p.ghz(p)!=null)o.ae(0,A.eD(l),n).Hx(A.A(l,B.h,m).gjQ()) +else J.bpF(o.ae(0,A.eD(l),n),A.A(l,B.h,m).gon(),!0)}return A.w(null,r)}}) +return A.x($async$$1,r)}, +$0(){return this.$1(!1)}, +$C:"$1", +$R:0, +$D(){return[!1]}, +$S:860} +A.aJF.prototype={ +$0(){if(!this.a.gjV()&&!this.b.gjV())this.c.$0() +return}, +$S:4} +A.aJI.prototype={ +$1(a){return this.aeH(a)}, +aeH(a){var s=0,r=A.y(t.H),q=this,p,o +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:if(a&&q.a.r!=null){p=q.b +o=q.a.r +o.toString +o=A.IX(o) +if(p.e==null)A.r(A.R(u.w)) +p.gm6().kx(o)}return A.w(null,r)}}) +return A.x($async$$1,r)}, +$S:113} +A.aJG.prototype={ +$1(a){var s,r,q,p,o,n,m,l,k,j,i=this,h=null,g=i.b +if(J.hZ(g.gj(g))){s=A.dh(h,h,B.jD,h,new A.aJu(g),h,h,h,h,h) +r=i.c +q=A.A(r,B.h,t.J) +q.toString +q=A.P(q.lD(J.b3(g.gj(g))),h,h,h,h,h,h,h) +p=i.d +q=A.eB(A.a([A.dh(h,h,B.a7k,h,new A.aJv(p,g),h,h,h,h,h),A.dh(h,h,B.a6V,h,new A.aJw(p,g),h,h,h,h,h),new A.a68(p,g,h)],t.p),h,h,h,h,s,q) +s=q}else{s=a==null?h:a.ghm(a) +s=A.P(s==null?A.A(i.c,B.h,t.J).ges():s,h,h,h,h,h,h,h) +r=t.p +q=A.a([],r) +p=i.c +o=t.l +if(A.aY(p,h,o).w.a.a>=600)B.b.I(q,A.a([A.dh(h,h,B.a6R,h,new A.aJx(i.e),h,h,h,h,h),A.dh(h,h,B.a71,h,new A.aJy(i.a,p),h,h,h,h,h)],r)) +r=i.a +q.push(new A.e4(new A.aJz(r),h)) +if(!(A.aY(p,h,o).w.a.a>=600))q.push(A.aNH(B.nz,new A.aJA(r,i.e),new A.cM(B.cW,B.u),t.z)) +s=A.eB(q,h,h,h,h,h,s) +r=p}q=i.a +p=q.f +o=A.bkf(new A.y9(p,h),B.cS,384) +n=J.hZ(g.gj(g))?A.bsR(i.f,!0,g):h +m=i.r +if(m!=null&&J.cf(g.gj(g))){l=A.aY(r,h,t.l).w +if(a==null)k=h +else{k=a.gW8() +k=k==null?h:k.gdN(k)}j=t.J +if(k!=null){k=A.A(r,B.h,j) +k=k.gfC(k)}else{k=A.A(r,B.h,j) +k=k.gc2(k)}m=A.a1W(B.a73,l.a.a>=600,A.P(k,h,h,h,h,h,h,h),new A.aJB(q,m,r)) +q=m}else q=h +if(a!=null){m=i.d +l=i.e +k=i.w +g=A.aY(r,h,t.l).w.a.a>=600?new A.Yp(a,p,i.f,k,l,g,m,h):new A.a9K(p,a,l,g,m,k,h)}else{g=t.J +p=A.A(r,B.h,g).gkB() +g=A.A(r,B.h,g) +p=A.i5(A.eP(!1,A.P(g.gfi(g),h,h,h,h,h,h,h),B.n,h,h,h,h,h,i.e,h,h),p) +g=p}return A.e9(s,h,g,h,n,o,!0,!1,!1,q,h)}, +$S:861} +A.aJu.prototype={ +$0(){var s=A.I(t.S,t.ja) +this.a.sj(0,s) +return s}, +$S:0} +A.aJv.prototype={ +$0(){var s,r,q,p,o=A.a([],t.D3),n=A.c_(this.a) +if(n!=null)B.b.I(o,n) +n=A.I(t.S,t.ja) +for(s=o.length,r=0;r=600)A.pa(s).G_() +else A.bnP(new A.aJp(this.a),B.C,s,new A.cM(B.qC,B.u),t.z)}, +$S:0} +A.aJp.prototype={ +$1(a){return new A.y9(this.a.f,null)}, +$S:862} +A.aJA.prototype={ +$1(a){var s=null,r=t.J,q=t.z,p=A.nr(A.P(A.A(a,B.h,r).gja(),s,s,s,s,s,s,s),new A.aJq(this.a,a),q) +r=A.A(a,B.h,r) +return A.a([p,A.nr(A.P(r.gfi(r),s,s,s,s,s,s,s),new A.aJr(this.b),q)],t.nm)}, +$S:104} +A.aJq.prototype={ +$0(){return A.tO(new A.aJo(this.a,this.b),t.z)}, +$S:0} +A.aJo.prototype={ +$0(){return A.fe(new A.aJn(this.a),this.b,t.z)}, +$S:35} +A.aJn.prototype={ +$1(a){return A.a1i(this.a.f,null)}, +$S:85} +A.aJr.prototype={ +$0(){return this.a.$1(!0)}, +$S:0} +A.aJB.prototype={ +$0(){var s=this.b,r=s.giH() +if(r==null)r=this.a.f +s=s.gdN(s) +s=A.mN(new A.ig(r,s==null?0:s,null,null,!0)) +A.bP(this.c).dz(s,null,t.z)}, +$S:0} +A.aJH.prototype={ +$1(a){var s=null +return A.e9(A.eB(s,s,s,s,s,s,A.P(A.A(this.a,B.h,t.J).ges(),s,s,s,s,s,s,s)),s,a,s,s,s,!0,!1,!1,s,s)}, +$S:128} +A.a68.prototype={ +A(a){return A.aNH(B.nz,new A.aLm(this),new A.cM(B.cW,B.u),t.z)}} +A.aLm.prototype={ +$1(a){var s=null,r=this.a,q=t.J,p=t.z +return A.a([A.nr(A.P(A.A(a,B.h,q).gox(),s,s,s,s,s,s,s),new A.aLj(r),p),A.nr(A.P(A.A(a,B.h,q).goy(),s,s,s,s,s,s,s),new A.aLk(r),p),A.nr(A.P(A.A(a,B.h,q).gow(),s,s,s,s,s,s,s),new A.aLl(r),p)],t.nm)}, +$S:104} +A.aLj.prototype={ +$0(){var s,r,q,p,o=A.a([],t.D3),n=this.a,m=A.c_(n.c) +if(m!=null)B.b.I(o,m) +n=n.d +s=B.b.abL(o,new A.aLi(J.ks(J.iu(n.gj(n))))) +r=Math.min(o.length,s+10) +m=A.oN(n.gj(n),t.S,t.ja) +for(q=s+1;q1){l=A.a([A.bI(!1,m,!0,m,!0,m,m,!1,m,m,m,m,m,!1,m,m,m,m,m,m,A.P(A.A(a,B.h,l).glT(),m,m,m,m,A.B(a).p3.as,m,m),m,m),A.bln(m,i,new A.aJ4(this,b),m,A.P(A.A(a,B.h,l).gmi(),m,m,m,m,m,m,m),"flutter_scanlator",j)],n) +for(s=k.gam(k);s.v();){r=s.gG(s) +l.push(A.bln(m,i,new A.aJ5(this,b),m,A.P(r,m,m,m,m,m,m,m),r,j))}B.b.I(o,l)}return A.iK(o,m,m,!1)}} +A.aJ4.prototype={ +$1(a){return J.bpK(this.b.ae(0,A.LG(this.a.e).gcb(),t.Hv),a)}, +$S:44} +A.aJ5.prototype={ +$1(a){return J.bpK(this.b.ae(0,A.LG(this.a.e).gcb(),t.Hv),a)}, +$S:44} +A.y9.prototype={ +A(a){var s,r=null,q=t.J,p=A.A(a,B.h,q) +p=A.zE(p.ghg(p)) +q=A.A(a,B.h,q) +s=t.p +return A.bjV(A.e9(A.aYJ(r,r,!1,A.a([p,A.zE(q.gkW(q))],s)),r,A.aYL(A.a([new A.a3O(this.c,r),B.ajP],s),r,r),r,r,r,!0,!1,!1,r,r),0,2)}} +A.a3T.prototype={ +aB(a,b){var s,r=A.a([B.a1N],t.p) +for(s=0;s<3;++s)r.push(new A.a3U(B.BU[s],null)) +return A.iK(r,null,null,!1)}} +A.a3U.prototype={ +aB(a,b){var s=null,r=b.N($.biZ(),t.cu),q=b.N($.Xc(),t.u),p=this.e,o=A.P(p.h6(a),s,s,s,s,s,s,s) +return A.buj(q!==!1,s,new A.aJa(b,q),new A.aJb(this,b),p===r,o)}} +A.aJa.prototype={ +$1(a){var s=this.a.ae(0,$.Xc().gcb(),t.Sr),r=this.b!==!0 +J.eW(s,r) +return r}, +$S:34} +A.aJb.prototype={ +$0(){var s=this.a.e +J.eW(this.b.ae(0,$.biZ().gcb(),t.LO),s) +return s}, +$S:0} +A.a3W.prototype={ +aB(a,b){var s,r,q,p,o,n,m,l,k,j=null,i=A.aY(a,j,t.l).w +i=$.bb.bz(new A.dc(i.a.a>=600,j,t.Kr),t.G) +s=this.f +r=A.bsF(s,j,j,new A.aJh(a),!1) +q=s.gfL() +p=A.aaM(j,j,j,j,j,j,j,j,j,B.bK,j,j,j,j,j,j,j,j,j) +o=t.J +n=t.p +p=A.a([new A.Y0(q===!0,new A.aJi(this,a,b),B.a6J,A.P(A.A(a,B.h,o).gfL(),j,j,j,j,j,j,j),B.a6U,A.P(A.A(a,B.h,o).gmg(),j,j,j,j,j,j,j),p,j)],n) +q=s.gvI() +if(!(q==null||q.length===0)){q=A.aaM(j,j,j,j,j,j,j,j,j,B.bK,j,j,j,j,j,j,j,j,j) +p.push(A.bdf(B.xS,A.P(A.A(a,B.h,o).goq(),j,j,j,j,j,j,j),new A.aJj(this,a,b),q))}r=A.a([r,new A.b4(B.bh,A.db(p,B.w,B.kO,B.O),j)],n) +q=s.gLe(s) +if(!(q==null||q.length===0)){q=s.gLe(s) +p=i.gj(i)?j:3 +p=A.P(A.i(q)+"\n",p,j,j,j,j,j,j) +q=A.B(a).as +q=A.a([new A.cd(0,B.a4,A.K(B.e.bg(178.5),q.gj(q)>>>16&255,q.gj(q)>>>8&255,q.gj(q)&255),B.i,0)],t.c) +o=A.B(a).as +o=A.K(0,o.gj(o)>>>16&255,o.gj(o)>>>8&255,o.gj(o)&255) +m=A.B(a).as +m=A.K(B.e.bg(76.5),m.gj(m)>>>16&255,m.gj(m)>>>8&255,m.gj(m)&255) +l=A.B(a).as +l=A.K(B.e.bg(127.5),l.gj(l)>>>16&255,l.gj(l)>>>8&255,l.gj(l)&255) +k=A.B(a).as +k=A.a([o,m,l,A.K(153,k.gj(k)>>>16&255,k.gj(k)>>>8&255,k.gj(k)&255)],t.t_) +r.push(new A.b4(B.jn,A.fp(B.PS,A.a([p,A.jg(!1,j,!0,A.cQ(j,A.eH(A.h3(i.gj(i)?B.a6c:B.a6b,j,j,j),j,j),B.n,j,j,new A.dU(j,j,j,j,q,new A.ub(B.f0,B.iN,B.cT,k,j,j),B.aK),j,j,B.a8,j,j),j,!0,j,j,j,j,j,j,j,j,j,new A.aJk(i),j,j,j,j,j,j,j)],n),B.C,B.aJ,j),j))}if(i.gj(i)){i=A.a([],n) +s=s.gvP() +s=s==null?j:J.cx(s,new A.aJl(),t.l7) +if(s!=null)B.b.I(i,s) +r.push(new A.b4(B.dJ,A.b0S(B.iH,i,B.q0,8,8),j))}else{i=A.a([],n) +s=s.gvP() +s=s==null?j:J.cx(s,new A.aJm(),t.l7) +if(s!=null)B.b.I(i,s) +r.push(new A.b4(B.dJ,A.nG(A.db(i,B.w,B.z,B.O),j,B.D,j,j,B.ar),j))}return A.cP(r,B.dl,B.z,B.O)}} +A.aJh.prototype={ +$1(a){var s=A.bo_(new A.tQ(a)) +return A.bP(this.a).dz(s,null,t.z)}, +$S:44} +A.aJi.prototype={ +$0(){var s=0,r=A.y(t.H),q=this,p,o,n +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:p=t.P +s=2 +return A.t(A.dE(new A.aJg(q.a),p),$async$$0) +case 2:o=b +n=q.b +if(n.e!=null)A.hF(o,q.c.ae(0,A.eD(n),t.g),!1,p) +return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.aJg.prototype={ +$0(){var s=0,r=A.y(t.P),q=this,p,o +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:p=q.a +o=p.f.gfL() +s=o===!0?2:4 +break +case 2:s=5 +return A.t(p.w.$0(),$async$$0) +case 5:s=3 +break +case 4:s=6 +return A.t(p.x.$0(),$async$$0) +case 6:case 3:s=7 +return A.t(p.r.$0(),$async$$0) +case 7:return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:53} +A.aJj.prototype={ +$0(){var s=0,r=A.y(t.H),q=this,p,o +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:p=q.b +o=q.a.f.gvI() +if(o==null)o="" +A.od(p,o,q.c.ae(0,A.eD(p),t.mk)) +return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.aJk.prototype={ +$0(){var s=this.a,r=!s.gj(s) +s.sj(0,r) +return r}, +$S:0} +A.aJl.prototype={ +$1(a){var s=null +return A.bjC(s,A.P(a,s,s,s,s,s,s,s),s)}, +$S:868} +A.aJm.prototype={ +$1(a){var s=null +return new A.b4(B.dL,A.bjC(s,A.P(a,s,s,s,s,s,s,s),s),s)}, +$S:869} +A.a9K.prototype={ +aB(a,b){var s,r=this,q=null,p=r.x,o=A.c_(p),n=A.nG(A.bsG(new A.aVE(r,b),r.f,new A.aVF(r),new A.aVG(r,b)),q,B.D,q,q,B.H),m=A.A(a,B.h,t.J) +m.toString +s=o==null?q:J.b3(o) +return A.r2(A.bjN(q,q,q,B.D,q,B.dx,q,!1,B.H,q,!1,A.a([new A.iS(n,q),new A.iS(A.bI(!1,q,q,q,!0,q,q,!1,q,q,q,q,q,!1,q,q,q,q,q,q,A.P(m.lA(s==null?0:s),q,q,q,q,q,q,q),q,q),q),A.iw(p,a,new A.aVH(r,o,a),!1,new A.aVI(r),!1,new A.aVJ(a)),B.arm],t.p)),new A.aVK(r))}} +A.aVK.prototype={ +$0(){return this.a.r.$1(!0)}, +$S:2} +A.aVF.prototype={ +$0(){return this.a.z.$1(!1)}, +$S:2} +A.aVG.prototype={ +$0(){var s=t.z +return this.b.ae(0,$.fv(),t.W).a.A6(0,"/manga/"+this.a.e+"/library",s,s)}, +$S:2} +A.aVE.prototype={ +$0(){var s=t.z +return this.b.ae(0,$.fv(),t.W).a.ru(0,"/manga/"+this.a.e+"/library",s,s)}, +$S:2} +A.aVH.prototype={ +$1(a){var s,r,q=null,p=a==null||J.cf(a),o=this.a +if(!p){p=this.b +p.toString +return new A.mm(new A.kJ(new A.aVC(o,p),J.b3(p),!0,!0,!0,A.t5(),q),q)}else{p=this.c +s=t.J +r=A.A(p,B.h,s).glz() +s=A.A(p,B.h,s) +return new A.iS(A.i5(A.eP(!1,A.P(s.gfi(s),q,q,q,q,q,q,q),B.n,q,q,q,q,q,new A.aVD(o),q,q),r),q)}}, +$S:870} +A.aVC.prototype={ +$2(a,b){var s=this.b,r=J.aj(s),q=J.fG(r.i(s,b)),p=this.a,o=r.i(s,b),n=p.w +s=J.jC(n.gj(n),J.fG(r.i(s,b))) +return new A.wy(p.f,o,new A.aVA(p),new A.aVB(p),J.hZ(n.gj(n)),s,new A.bS(A.i(q),t.O))}, +$S:871} +A.aVA.prototype={ +$0(){return this.a.r.$1(!1)}, +$S:2} +A.aVB.prototype={ +$1(a){var s,r,q +if(a.gaL(a)==null)return +s=this.a.w +r=s.gj(s) +q=a.gaL(a) +q.toString +s.sj(0,A.bkZ(r,q,a,t.S,t.ja))}, +$S:165} +A.aVD.prototype={ +$0(){return this.a.z.$1(!0)}, +$S:0} +A.aVI.prototype={ +$0(){return this.a.r.$1(!1)}, +$S:0} +A.aVJ.prototype={ +$1(a){return new A.iS(A.cZ(a,A.aY(this.a,null,t.l).w.a.b*0.5,null),null)}, +$S:872} +A.Dn.prototype={ +A(a){var s=null,r=A.eB(s,B.E,s,s,s,s,s),q=$.au().Eo(3,3,B.cT),p=A.B(a).ax.CW +p=A.K(B.e.bg(25.5),p.gj(p)>>>16&255,p.gj(p)>>>8&255,p.gj(p)&255) +return A.dY(s,A.e9(r,B.E,A.atA(A.cQ(s,new A.Lb(A.eH(A.nF(!1,s,this.c,s,!1,s,s),s,s),4,s),B.n,s,s,new A.dU(p,s,s,s,s,s,B.aK),s,s,s,s,s),q),s,s,s,!0,!1,!1,s,s),B.D,!1,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,new A.aJK(a),s,s,s,s,!1,B.am)}} +A.aJK.prototype={ +$0(){var s=A.bP(this.a).c +s===$&&A.b() +s.dO(null) +return null}, +$S:0} +A.YU.prototype={ +$2$chapterIndex$mangaId(a,b){return A.YW(a,b)}, +fF(a){return A.YW(a.fx,a.fr)}, +gf9(){return null}} +A.J_.prototype={ +bI(a){var s=null,r=t.B +return new A.aeS(s,!1,new A.ci(A.aX(0,s,!1,t.yq),t.AX),s,s,s,s,this,A.a([],t.pV),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K))}, +k(a,b){if(b==null)return!1 +return b instanceof A.J_&&b.fr===this.fr&&b.fx===this.fx}, +gu(a){var s=A.bmA(A.bmA(A.bmA(0,A.cS(A.p(this))),B.f.gu(this.fr)),B.f.gu(this.fx)) +s=s+((s&67108863)<<3)&536870911 +s^=s>>>11 +return s+((s&16383)<<15)&536870911}} +A.awR.prototype={ +$1(a){return A.bgm(t.eW.a(a),this.b,this.a)}, +$S:873} +A.J0.prototype={} +A.aeS.prototype={} +A.apm.prototype={} +A.a7O.prototype={ +aB(a,b){var s=this,r=s.f,q=A.oS(r),p=A.YW(s.r,r),o=b.N(q,t.ms),n=b.N(p,t.Zx),m=b.N($.bj1(),t.yZ),l=A.w1(new A.aPt(n,A.bnX(null,t.dN),A.w1(new A.aPu(s,n,b),[A.c_(n)],t.ef)),[n],t.Dp) +$.bb.bz(new A.dK(new A.aPv(),[]),t.H) +return new A.DR(A.a8T(A.uP(a).KW(!1),A.z8(!0,A.iw(o,a,new A.aPw(s,n,a,m,l,b,p),!0,new A.aPx(b,q),!1,null),!0,B.a8,!0,!0)),new A.aPy(s,b,p),!0,null)}} +A.aPu.prototype={ +$1(a){return this.aeP(a)}, +aeP(a){var s=0,r=A.y(t.P),q=this,p,o,n +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:n=A.c_(q.b) +if(n!=null){p=n.gh4(n) +if(p!==!0){p=n.gtW() +if(p==null||B.f.gcZ(p))p=0 +else p.toString +p=a>=p-1 +o=p}else o=!0}else o=!1 +s=2 +return A.t(A.dE(new A.aPs(q.a,q.c,o,a),t.H),$async$$1) +case 2:return A.w(null,r)}}) +return A.x($async$$1,r)}, +$S:874} +A.aPs.prototype={ +$0(){var s=this,r=s.b.ae(0,$.fv(),t.W),q=s.a,p=s.c,o=p?0:s.d +return r.Gd(q.r,q.f,new A.FU(p,null,null,o))}, +$S:2} +A.aPt.prototype={ +$1(a){return this.aeO(a)}, +aeO(a){var s=0,r=A.y(t.H),q,p=this,o,n,m,l,k,j +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:m=p.a +l=A.c_(m) +k=l==null +j=k?null:l.gh4(l) +if(j!==!0){k=k?null:l.gxC() +if(k==null||B.f.gcZ(k))k=0 +else k.toString +k=k>=a}else k=!0 +if(k){s=1 +break}k=p.b +o=k.a +j=o==null +n=j?null:o.b!=null +if(n===!0)if(!j)o.aI(0) +m=A.c_(m) +m=m==null?null:m.gtW() +if(m==null||B.f.gcZ(m))m=0 +else m.toString +j=p.c +if(a>=m-1)j.$1(a) +else k.a=A.d0(B.ej,new A.aPr(j,a)) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$$1,r)}, +$S:875} +A.aPr.prototype={ +$0(){return this.a.$1(this.b)}, +$S:0} +A.aPv.prototype={ +$0(){A.zC(B.OJ,null) +return new A.aPq()}, +$S:71} +A.aPq.prototype={ +$0(){return A.zC(B.OK,B.aeM)}, +$S:0} +A.aPy.prototype={ +$1(a){return this.aeN(a)}, +aeN(a){var s=0,r=A.y(t.H),q=this,p,o +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:if(a){p=q.b +if(p.e==null)A.r(A.R(u.w)) +p.gm6().kx(q.c) +o=A.Dl(q.a.f) +if(p.e==null)A.r(A.R(u.w)) +p.gm6().kx(o)}return A.w(null,r)}}) +return A.x($async$$1,r)}, +$S:113} +A.aPw.prototype={ +$1(a){var s=this +if(a==null)return B.a1 +return A.iw(s.b,s.c,new A.aPo(s.a,a,s.d,s.e),!0,new A.aPp(s.f,s.r),!1,null)}, +$S:877} +A.aPo.prototype={ +$1(a){var s,r,q,p=this +if(a==null)return B.a1 +s=p.b +r=s.glu() +q=r==null?null:r.gi4() +if(q==null)q=p.c +$label0$0:{if(B.oU===q){s=A.bly(a,s,p.d,!1,B.H,p.a.w) +break $label0$0}if(B.oR===q){s=A.bly(a,s,p.d,!0,B.ar,p.a.w) +break $label0$0}if(B.oS===q){s=A.Zv(a,s,p.d,!1,B.ar,p.a.w,!1) +break $label0$0}if(B.oT===q){s=A.Zv(a,s,p.d,!0,B.ar,p.a.w,!1) +break $label0$0}if(B.oQ===q){s=A.bly(a,s,p.d,!1,B.ar,!1) +break $label0$0}if(B.oP===q){s=A.Zv(a,s,p.d,!1,B.H,p.a.w,!0) +break $label0$0}if(B.ia===q){s=A.Zv(a,s,p.d,!1,B.H,p.a.w,!1) +break $label0$0}if(B.lg===q||q==null){s=A.Zv(a,s,p.d,!1,B.H,p.a.w,!1) +break $label0$0}s=null}return s}, +$S:878} +A.aPp.prototype={ +$0(){return this.a.jZ(0,this.b,t.H)}, +$S:0} +A.aPx.prototype={ +$0(){return this.a.jZ(0,this.b,t.H)}, +$S:0} +A.YX.prototype={ +aB(a,b){var s,r,q,p,o,n,m,l=this,k=null,j=l.e,i=j.gaL(j) +i.toString +s=l.f +r=b.N(A.aF8(A.i(s.gdN(s)),i,!0),t.cq) +q=b.N($.arM(),t.dr) +i=j.glu() +if((i==null?k:i.ghl())!==B.eG){i=j.glu() +if((i==null?k:i.ghl())!=null){j=j.glu() +j=(j==null?k:j.ghl())===B.fR}else j=!0 +p=j&&q===B.eG}else p=!0 +j=A.a([B.jB],t.p) +if(p)i=(r==null?k:r.b)!=null&&l.r +else i=!1 +if(i){i=A.A(a,B.h,t.J) +i.toString +if(r==null)o=k +else{o=r.b +o=o==null?k:o.BS(a)}j.push(new A.b4(B.jm,A.bkp(A.P(i.pi(o==null?"":o),k,k,k,k,k,k,k),new A.awS(r,a)),k))}i=l.r +o=t.J +if(i){n=A.A(a,B.h,o) +n=n.gc2(n)}else{n=A.A(a,B.h,o) +n=n.gn_(n)}m=A.B(a).p3.w +j.push(A.P(n,k,B.ad,k,k,m==null?k:m.a8G(B.d1),k,k)) +s=s.BS(a) +n=A.B(a).p3.z +j.push(A.P(s,k,B.ad,k,k,n==null?k:n.a8G(B.d1),k,k)) +if(p)i=(r==null?k:r.a)!=null&&!i +else i=!1 +if(i){i=A.A(a,B.h,o) +i.toString +if(r==null)s=k +else{s=r.a +s=s==null?k:s.BS(a)}j.push(new A.b4(B.jm,A.bkp(A.P(i.pf(s==null?"":s),k,k,k,k,k,k,k),new A.awT(r,a)),k))}j.push(B.jB) +return A.eH(A.nG(A.cP(j,B.w,B.dq,B.O),k,B.D,k,k,B.H),k,k)}} +A.awS.prototype={ +$0(){var s=this.a.b,r=s.giH() +r.toString +s=J.t9(s) +s.toString +s=A.mN(new A.ig(r,s,null,null,!1)) +return A.bP(this.b).nI(s,null,t.X)}, +$S:0} +A.awT.prototype={ +$0(){var s=this.a.a,r=s.giH() +r.toString +s=J.t9(s) +s.toString +s=A.mN(new A.ig(r,s,null,null,!1)) +return A.bP(this.b).nI(s,null,t.X)}, +$S:0} +A.a6F.prototype={ +A(a){var s,r,q=this,p=null,o=q.c,n=A.P(""+(o+1),p,p,p,p,p,p,p),m=q.f,l=q.d +o=Math.min(o,l) +s=l-1 +o=A.bue(Math.max(s,1),p,s,0,new A.aML(q),o) +s=m?-1:1 +r=A.a([n,A.dN(new A.rk(A.ug(s,1,1),B.a7,!0,p,o,p),1),A.P(""+l,p,p,p,p,p,p,p)],t.p) +o=A.B(a).RG.a +o=o==null?p:A.K(B.e.bg(178.5),o.gj(o)>>>16&255,o.gj(o)>>>8&255,o.gj(o)&255) +if(m){n=t.H8 +n=A.a8(new A.da(r,n),!0,n.h("av.E"))}else n=r +return A.q5(new A.b4(B.dJ,A.db(n,B.w,B.z,B.O),p),p,o,p,new A.cM(B.Qi,B.u))}} +A.aML.prototype={ +$1(a){return this.a.e.$1(B.e.au(a))}, +$S:47} +A.Zu.prototype={ +aB(a,b){var s,r,q,p,o,n=this,m=null,l=$.bb.bz(new A.hz(new A.axM(),B.cM,t.Md),t.Cr),k=$.bb.bz(new A.hz(new A.axN(),B.cM,t.lg),t.Wq),j=n.r,i=j.gh4(j) +if(i===!0)i=0 +else{i=j.gxC() +if(i==null||B.f.gcZ(i))i=0 +else i.toString}i=$.bb.bz(new A.dc(i,m,t.Om),t.N8) +s=i.gj(i) +r=t.H +$.bb.bz(new A.dK(new A.axO(n,i),[s]),r) +$.bb.bz(new A.dK(new A.axP(k,i),[]),r) +r=t.u +s=b.ae(0,$.bj2(),r) +q=s!==!1 +b.ae(0,$.bDO(),r) +s=n.y +i=i.gj(i) +r=j.gh4(j) +if(r===!0)r=0 +else{r=j.gxC() +if(r==null||B.f.gcZ(r))r=0 +else r.toString}p=j.gtW() +if(p==null)p=0 +o=t.l +o=s===B.H?A.aY(a,m,o).w.a.b*2:A.aY(a,m,o).w.a.a*2 +return A.btB(j,A.B0(m,new A.O9(p,new A.axQ(n),new A.axR(n),l,k,m,r,s,n.z,o,m)),i,n.f,new A.axS(l),new A.axT(k,q,l),new A.axU(k,q,l),s,n.Q)}} +A.axM.prototype={ +$0(){return new A.xJ()}, +$S:879} +A.axN.prototype={ +$0(){return new A.CV(new A.bF(A.a([],t.zX),$.aH(),t.HR))}, +$S:880} +A.axO.prototype={ +$0(){var s=this.b +this.a.x.$1(s.gj(s)) +return}, +$S:4} +A.axP.prototype={ +$0(){var s=this.a,r=new A.axV(s,this.b) +s.a.P(0,r) +return new A.axJ(s,r)}, +$S:71} +A.axV.prototype={ +$0(){var s,r=J.fg(this.a.a.a),q=B.b.gak(r) +if(!q&&r.length===1)this.b.sj(0,B.b.gO(r).a) +else{s=new A.ba(r,new A.axK(),A.ab(r).h("ba<1>")) +q=s.gak(s) +if(q)return +this.b.sj(0,s.lF(0,new A.axL()).a)}}, +$S:4} +A.axK.prototype={ +$1(a){var s=a.c +return s>=0&&s<=1}, +$S:153} +A.axL.prototype={ +$2(a,b){return b.c>a.c?b:a}, +$S:260} +A.axJ.prototype={ +$0(){return this.a.a.H(0,this.b)}, +$S:0} +A.axS.prototype={ +$1(a){this.a.a.Rw(0,a) +return null}, +$S:33} +A.axU.prototype={ +$0(){var s=B.b.gO(J.fg(this.a.a.a)),r=this.c,q=s.a,p=s.b+0.8 +if(this.b)r.YH(0,p,B.bB,B.bD,q) +else r.a.Rw(p,q)}, +$S:0} +A.axT.prototype={ +$0(){var s,r=J.jD(this.a.a.a),q=r.c,p=r.a +if(q>1)s=r.b-0.8 +else{++p +s=0}q=this.c +if(this.b)q.YH(0,s,B.bB,B.bD,p) +else q.a.Rw(s,p)}, +$S:0} +A.axR.prototype={ +$2(a,b){return this.a.w?B.jB:B.a1}, +$S:28} +A.axQ.prototype={ +$2(a,b){var s,r,q,p,o,n=null,m=this.a,l=m.y,k=l===B.H,j=k?B.QK:B.QL,i=m.r,h=i.gdN(i) +h.toString +s=m.f +r=s.gaL(s) +r.toString +q=A.nF(!0,j,"/manga/"+r+"/chapter/"+h+"/page/"+b,new A.axH(),!0,n,new A.axI(m,a)) +j=b===0 +if(!j){h=i.gtW() +h=b===(h==null?1:h)-1}else h=!0 +if(h){p=l===B.ar&&m.z +m=!k?A.aY(a,n,t.l).w.a.a*0.5:n +o=A.cZ(new A.YX(s,i,j,n),n,m) +m=t.p +return A.bI6(j!==p?A.a([o,q],m):A.a([q,o],m),B.jf,l,n,B.z,B.ah,n,n,B.cz)}else return q}, +$S:28} +A.axH.prototype={ +$3(a,b,c){var s=null +return A.eH(A.bqm(s,s,s,s,s,0,s,4,c.gre(),s),s,s)}, +$S:881} +A.axI.prototype={ +$1(a){var s=null,r=this.a.y===B.H,q=r?A.aY(this.b,s,t.l).w.a.b*0.7:s +return A.cZ(a,q,!r?A.aY(this.b,s,t.l).w.a.a*0.7:s)}, +$S:882} +A.a9r.prototype={ +aB(a,b){var s,r,q,p,o=this,n=null,m=$.bb.bz(new A.hz(new A.aV2(),B.cM,t.p2),t.IG),l=o.r,k=l.gh4(l) +if(k===!0)k=0 +else{k=l.gxC() +if(k==null||B.f.gcZ(k))k=0 +else k.toString}k=$.bb.bz(new A.T6(k,!0,1,n),t.QA) +s=k.as +s=$.bb.bz(new A.dc(s,n,t.Om),t.N8) +r=s.gj(s) +q=t.H +$.bb.bz(new A.dK(new A.aV3(o,s,m,b),[r]),q) +$.bb.bz(new A.dK(new A.aV4(k,s),[k]),q) +q=b.ae(0,$.bj2(),t.u) +p=q!==!1 +r=o.y +s=s.gj(s) +q=l.gtW() +if(q==null||B.f.gcZ(q))q=0 +else q.toString +return A.btB(l,new A.DI(!0,r,o.x,k,n,new A.kJ(new A.aV5(o),q,!0,!0,!0,A.t5(),n),B.D,B.C,n),s,o.f,new A.aV6(k),new A.aV7(k,p),new A.aV8(k,p),r,o.z)}} +A.aV2.prototype={ +$0(){return $.biu()}, +$S:883} +A.aV3.prototype={ +$0(){var s,r,q,p=this,o=p.a,n=p.b +o.w.$1(n.gj(n)) +s=n.gj(n) +if(s>0){n=o.r +n=n.gdN(n) +n.toString +r=o.f +r=r.gaL(r) +r.toString +A.IQ(p.c,p.d,"/manga/"+r+"/chapter/"+n+"/page/"+(s-1))}n=o.r +r=n.gtW() +if(r==null||B.f.gcZ(r))r=0 +else r.toString +if(s8)this.b.$0() +else this.c.$0()}}, +$S:31} +A.aPD.prototype={ +$1(a){var s=this.a +if(s.e===B.ar&&s.as){s=a.b +if(s==null)return +else if(s>8)this.b.$0() +else this.c.$0()}}, +$S:31} +A.abu.prototype={ +Qv(a,b,c){return this.ard(a,b,c)}, +ard(a,b,c){var s=0,r=A.y(t.H) +var $async$Qv=A.u(function(d,e){if(d===1)return A.v(e,r) +while(true)switch(s){case 0:A.dE(new A.b08(a,c),t.If).be(new A.b09(b,c),t.X) +return A.w(null,r)}}) +return A.x($async$Qv,r)}, +aB(a,b){var s,r,q,p,o=null,n=t.S,m=t.dA,l=A.bzG(0,n,m),k=b.N($.I0(),t.BA),j=$.bj9() +j=b.N(new A.rI(j,new A.b0f(),j.$ti.h("rI")),t.u) +s=j===!0 +j=$.bb.bz(new A.dc(A.I(n,t.ja),o,t.gK),t.rh) +r=t.H +$.bb.bz(new A.dK(new A.b0g(this,l,k),[]),r) +$.bb.bz(new A.dK(new A.b0h(s,j,l),[s]),r) +r=J.cf(j.gj(j))?B.azf:o +q=t.J +if(J.hZ(j.gj(j))){p=A.dh(o,o,B.jD,o,new A.b0i(j),o,o,o,o,o) +q=A.A(a,B.h,q) +q.toString +q=A.eB(o,o,o,o,o,p,A.P(q.lD(J.b3(j.gj(j))),o,o,o,o,o,o,o))}else q=A.eB(B.ai_,o,o,o,o,o,A.P(A.A(a,B.h,q).glJ(),o,o,o,o,o,o,o)) +p=J.hZ(j.gj(j))?A.bsR(new A.b0j(l),!1,j):o +return A.e9(q,o,A.r2(A.btf(A.ble(new A.b0k(l),new A.b0l(),new A.b0m(l,b,j),o,new A.b0n(l),m),l,n,m),new A.b0o(j,l)),o,p,o,!0,!1,!1,r,o)}} +A.b08.prototype={ +$0(){var s=0,r=A.y(t.If),q,p=this +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:s=3 +return A.t(p.a.Hc(p.b),$async$$0) +case 3:q=b +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$$0,r)}, +$S:897} +A.b09.prototype={ +$1(a){var s=this.a +return A.wg(a,new A.b06(s,this.b),new A.b07(s),t.If,t.X)}, +$S:898} +A.b06.prototype={ +$1(a){var s,r,q,p,o,n,m,l +try{if(a!=null){o=a.gFc() +n=this.a +m=t.k3 +if(o===!0){s=A.a([],m) +r=a.gjY(a) +if(r!=null)J.w7(s,r) +n.Kw(s,this.b+1)}else{q=A.a([],m) +p=a.gjY(a) +if(p!=null)J.w7(q,p) +n.Kw(q,null)}}}catch(l){}}, +$S:899} +A.b07.prototype={ +$2(a,b){this.a.shz(0,a) +return a}, +$S:284} +A.b0f.prototype={ +$1(a){var s,r,q=A.c_(a) +if(q==null)q=null +else{s=J.c4(q) +r=s.gGD(q) +q=r>0&&s.gGD(q)!==q.gXL()}return q}, +$S:900} +A.b0g.prototype={ +$0(){var s=this.b,r=s.x +r.b=!0 +r.a.push(new A.b0e(this.a,this.c,s)) +return}, +$S:4} +A.b0e.prototype={ +$1(a){return this.a.Qv(this.b,this.c,a)}, +$S:33} +A.b0h.prototype={ +$0(){var s +if(!this.a)try{this.b.sj(0,A.I(t.S,t.ja)) +this.c.jp(0)}catch(s){}return null}, +$S:4} +A.b0i.prototype={ +$0(){var s=A.I(t.S,t.ja) +this.a.sj(0,s) +return s}, +$S:0} +A.b0j.prototype={ +$0(){var s=0,r=A.y(t.H),q,p=this +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:q=p.a.jp(0) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.b0o.prototype={ +$0(){var s=0,r=A.y(t.H),q=this +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:q.a.sj(0,A.I(t.S,t.ja)) +q.b.jp(0) +return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.b0l.prototype={ +$1(a){return B.ee}, +$S:116} +A.b0k.prototype={ +$1(a){var s=null,r=this.a,q=J.cU(r.a.b) +return A.i5(A.eP(!1,A.P(A.A(a,B.h,t.J).gk5(),s,s,s,s,s,s,s),B.n,s,s,s,s,s,new A.b0d(r),s,s),q)}, +$S:82} +A.b0d.prototype={ +$0(){return this.a.jp(0)}, +$S:0} +A.b0n.prototype={ +$1(a){var s=null,r=t.J,q=A.A(a,B.h,r).gny() +r=A.A(a,B.h,r) +return A.i5(A.eP(!1,A.P(r.gfi(r),s,s,s,s,s,s,s),B.n,s,s,s,s,s,new A.b0a(this.a),s,s),q)}, +$S:82} +A.b0a.prototype={ +$0(){return this.a.jp(0)}, +$S:0} +A.b0m.prototype={ +$3(a,b,c){var s,r,q,p,o,n,m=this,l=null,k=null +try{s=m.a.a.a +if(s==null)r=l +else{s=s[c-1].gfb() +r=s==null?l:s.gAw()}k=r}catch(q){k=null}s=m.c +p=s.gj(s) +o=b.gfb() +o=o.gaL(o) +o.toString +o=J.jC(p,o) +n=new A.YV(b,new A.b0b(b,m.b,a,m.a,c),new A.b0c(s),J.hZ(s.gj(s)),o,l) +s=b.gfb() +s=s==null?l:s.gAw() +if(A.bJ1(s,k))return n +else return A.cP(A.a([A.bI(!1,l,l,l,!0,l,l,!1,l,l,l,l,l,!1,l,l,l,l,l,l,A.P(A.bJ3(b.gfb().gAw(),a),l,l,l,l,l,l,l),l,l),n],t.p),B.w,B.z,B.ah)}, +$S:901} +A.b0b.prototype={ +$0(){var s=0,r=A.y(t.H),q,p=this,o,n,m,l,k,j,i,h +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:i=p.a +h=i.ges() +if((h==null?null:h.gaL(h))!=null){h=i.gfb() +h=(h==null?null:h.gdN(h))==null}else h=!0 +if(h){s=1 +break}else{h=p.b +l=i.ges() +l=l.gaL(l) +l.toString +k=i.gfb() +k=k.gdN(k) +k.toString +l=h.jZ(0,A.YW(k,l),t.Zx) +A.hF(l,h.ae(0,A.eD(p.c),t.g),!1,t.ep) +o=A.c_(l) +try{h=p.d +l=t.k3 +n=A.a([],l) +m=h.a.a +if(m!=null)J.w7(n,m) +n=n +m=p.e +k=o +J.bEI(n,m,m+1,A.a([i.a8D(k==null?i.gfb():k)],l)) +h.sW5(n)}catch(g){}}case 1:return A.w(q,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.b0c.prototype={ +$1(a){var s,r,q +if(a.gaL(a)==null)return +s=this.a +r=s.gj(s) +q=a.gaL(a) +q.toString +s.sj(0,A.bkZ(r,q,a,t.S,t.ja))}, +$S:165} +A.YV.prototype={ +A(a){var s,r,q,p,o,n,m,l,k=this,j=null,i=k.c,h=i.gfb() +h=h==null?j:h.gh4(h) +s=h===!0?B.bK:j +h=i.gfb()!=null?new A.awN(k):j +r=t.p +q=A.a([],r) +p=i.gfb() +p=p==null?j:p.gfU() +if(p===!0)B.b.I(q,A.a([B.a6Y,B.nt],r)) +r=i.ges() +r=r==null?j:r.ghm(r) +if(r==null)r="" +q.push(A.dN(A.P(r,j,j,j,j,A.hb(j,j,s,j,j,j,j,j,j,j,j,j,j,j,j,j,j,!0,j,j,j,j,j,j,j,j),j,j),1)) +q=A.db(q,B.w,B.z,B.ah) +r=i.ges() +r=r==null?j:r.gqc() +r=A.or(B.bv,A.jg(!1,j,!0,A.nF(!1,j,r==null?"":r,j,!1,B.e8,j),j,!0,j,j,j,j,j,j,j,j,j,new A.awO(k,a),j,j,j,j,j,j,j),B.bd) +p=i.gfb() +p=p==null?j:p.gcP(p) +if(p==null){p=i.gfb() +p=p==null?j:J.cU(p.gKJ())}if(p==null)p="" +p=A.P(p,j,j,j,j,A.hb(j,j,s,j,j,j,j,j,j,j,j,j,j,j,j,j,j,!0,j,j,j,j,j,j,j,j),j,j) +o=i.ges() +if((o==null?j:o.gaL(o))!=null){o=i.gfb() +o=(o==null?j:o.gdN(o))!=null}else o=!1 +if(o){o=i.gfb() +o=o==null?j:o.gfJ(o) +n=i.ges() +n=n.gaL(n) +n.toString +m=i.gfb() +m.toString +n=A.bre(m,o===!0,n,k.d) +o=n}else o=j +n=A.B(a) +m=A.B(a).ax.a===B.S?B.eg:B.jd +l=i.gfb()!=null&&i.ges()!=null?new A.awP(k,a):j +i=i.gfb()!=null?new A.awQ(k):j +return A.dY(j,A.bI(!1,j,j,j,!0,j,j,!1,j,r,j,i,l,k.r,n.ax.db,m,j,j,p,j,q,o,j),B.D,!1,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,j,h,j,j,j,j,j,j,j,j,!1,B.am)}} +A.awN.prototype={ +$0(){var s=this.a,r=s.c.gfb() +r.toString +return s.e.$1(r)}, +$S:0} +A.awO.prototype={ +$0(){var s=this.a.c,r=s.ges() +if((r==null?null:r.gaL(r))!=null){s=s.ges() +s=s.gaL(s) +s.toString +s=A.oe(new A.iO(s,null)) +A.bP(this.b).dz(s,null,t.z)}}, +$S:0} +A.awP.prototype={ +$0(){var s=this.a,r=s.c +if(s.f){r=r.gfb() +r.toString +s.e.$1(r)}else{s=r.ges() +s=s.gaL(s) +s.toString +r=r.gfb() +r=r.gdN(r) +r.toString +r=A.mN(new A.ig(s,r,null,null,!0)) +A.bP(this.b).dz(r,null,t.z)}}, +$S:0} +A.awQ.prototype={ +$0(){var s=this.a,r=s.c.gfb() +r.toString +return s.e.$1(r)}, +$S:0} +A.a64.prototype={ +aB(a,b){var s=null +return A.dh(s,s,A.h3(this.w,s,s,s),s,new A.aL0(this,b,a),s,s,s,s,s)}, +geD(a){return this.w}} +A.aL0.prototype={ +$0(){var s=0,r=A.y(t.H),q=this,p,o,n,m,l +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:p=q.a +o=q.b +n=t.H +s=2 +return A.t(A.dE(new A.aL_(p,o),n),$async$$0) +case 2:m=b +l=q.c +if(l.e!=null)A.hF(m,o.ae(0,A.eD(l),t.g),!1,n) +s=3 +return A.t(p.r.$1(p.f!=null),$async$$0) +case 3:return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.aL_.prototype={ +$0(){var s=this.a,r=s.f,q=this.b +s=s.e +if(r==null){r=t.z +r=q.ae(0,$.og(),t.vm).a.acA("/download/batch",A.am(["chapterIds",s],t.N,t.Cm),r,r) +s=r}else s=q.ae(0,$.fv(),t.W).ac2(new A.Q8(s,r)) +return s}, +$S:2} +A.a65.prototype={ +aB(a,b){var s,r,q,p,o=null,n=new A.aL7(this),m=this.f,l=J.bje(m.gj(m)),k=A.a([],t.p),j=J.ct(l) +if(j.fa(l,new A.aL1()))k.push(A.Mc(new A.rs(o,!1,o,o),J.fg(J.iu(m.gj(m))),B.a5s,n)) +if(j.fa(l,new A.aL2()))k.push(A.Mc(new A.rs(o,!0,o,o),J.fg(J.iu(m.gj(m))),B.a5r,n)) +s=j.gak(l) +if(!s&&j.gt(l)===1&&this.w){s=J.b7(m.gj(m),B.b.gO(J.fg(J.iu(m.gj(m))))) +s.toString +s=J.t9(s) +s.toString +r=J.b7(m.gj(m),B.b.gO(J.fg(J.iu(m.gj(m))))).giH() +r.toString +k.push(A.bu4(s,new A.FU(o,o,!0,o),o,A.CN(new A.mR("assets/icons/previous_done.png",o,o),A.B(a).y2.b,o),r,n))}if(j.fa(l,new A.aL3()))k.push(A.Mc(new A.rs(!0,o,0,o),J.fg(J.iu(m.gj(m))),B.a5u,n)) +if(j.fa(l,new A.aL4()))k.push(A.Mc(new A.rs(!1,o,o,o),J.fg(J.iu(m.gj(m))),B.a5w,n)) +if(j.fa(l,new A.aL5())){s=A.a([],t.t) +for(r=j.gam(l);r.v();){q=r.gG(r) +p=q.gfJ(q) +if(p===!1){q=q.gaL(q) +q.toString +s.push(q)}}k.push(A.Mc(o,s,B.a5v,n))}if(j.fa(l,new A.aL6()))k.push(A.Mc(new A.rs(o,o,o,!0),J.fg(J.iu(m.gj(m))),B.a5t,n)) +return new A.b4(B.bh,A.db(k,B.w,B.kO,B.O),o)}} +A.aL7.prototype={ +aeK(a){var s=0,r=A.y(t.P),q=this,p +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:p=q.a +p.f.sj(0,A.I(t.S,t.ja)) +s=a?2:3 +break +case 2:s=4 +return A.t(p.r.$0(),$async$$1) +case 4:case 3:return A.w(null,r)}}) +return A.x($async$$1,r)}, +$1(a){return this.aeK(a)}, +$0(){return this.$1(!0)}, +$C:"$1", +$R:0, +$D(){return[!0]}, +$S:902} +A.aL1.prototype={ +$1(a){var s=a.gfU() +return s===!0}, +$S:27} +A.aL2.prototype={ +$1(a){var s=a.gfU() +return s!==!0}, +$S:27} +A.aL3.prototype={ +$1(a){var s=a.gh4(a) +return s!==!0}, +$S:27} +A.aL4.prototype={ +$1(a){var s=a.gh4(a) +return s===!0}, +$S:27} +A.aL5.prototype={ +$1(a){var s=a.gfJ(a) +return s!==!0}, +$S:27} +A.aL6.prototype={ +$1(a){var s=a.gfJ(a) +return s===!0}, +$S:27} +A.a9p.prototype={ +aB(a,b){var s=null,r=this.y +if(r==null)r=A.h3(this.x,s,s,s) +return A.dh(s,s,r,s,new A.aUW(this,b,a),s,s,s,s,s)}, +geD(a){return this.x}} +A.aUW.prototype={ +$0(){var s=0,r=A.y(t.H),q=this,p,o,n,m,l +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:p=q.a +o=q.b +n=t.H +s=2 +return A.t(A.dE(new A.aUV(p,o),n),$async$$0) +case 2:m=b +l=q.c +if(l.e!=null)A.hF(m,o.ae(0,A.eD(l),t.g),!1,n) +s=3 +return A.t(p.w.$0(),$async$$0) +case 3:return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.aUV.prototype={ +$0(){var s=this.a +return this.b.ae(0,$.fv(),t.W).Gd(s.e,s.f,s.r)}, +$S:2} +A.a16.prototype={ +FU(a,b){return this.aMS(a,b)}, +aMS(a,b){var s=0,r=A.y(t.H),q=1,p,o=this,n,m +var $async$FU=A.u(function(c,d){if(c===1){p=d +s=q}while(true)switch(s){case 0:q=3 +b.$1(!0) +s=6 +return A.t(o.f.$0(),$async$FU) +case 6:b.$1(!1) +q=1 +s=5 +break +case 3:q=2 +m=p +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$FU,r)}, +BB(a,b,c,d,e){return this.aPS(a,b,c,d,e)}, +aPO(a,b,c){return this.BB(a,b,c,!1,!1)}, +aPQ(a,b,c){return this.BB(a,b,!1,!1,c)}, +aPP(a,b,c){return this.BB(a,b,!1,c,!1)}, +aPS(a,b,c,d,e){var s=0,r=A.y(t.z),q,p=2,o,n=this,m,l,k,j +var $async$BB=A.u(function(f,g){if(f===1){o=g +s=p}while(true)switch(s){case 0:p=4 +m=n.r +if(m.gdN(m)==null){s=1 +break}m=t.P +j=A +s=7 +return A.t(A.dE(new A.azP(n,b,e,d,c),m),$async$BB) +case 7:j.hF(g,a,!1,m) +p=2 +s=6 +break +case 4:p=3 +k=o +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$BB,r)}, +aB(a,b){var s,r,q=this,p=null,o=$.bb.bz(new A.dc(!1,p,t.Kr),t.G),n=b.N(A.eD(a),t.g),m=q.r +m=m.gaL(m) +s=b.N(A.azS(m==null?-1:m),t.fC) +m=s==null +r=m?p:s.gd0(s) +$.bb.bz(new A.dK(new A.azK(q,s,b,o),[r]),t.H) +if(o.gj(o))return new A.b4(B.bW,A.bl4(A.B(a).ok.f,p),p) +else if(!m)if(s.gd0(s)==="Error")return A.dh(p,p,B.a7d,p,new A.azL(q,n,b),p,p,p,p,p) +else{o=s.gre()===0?p:s.gre() +return A.dh(p,p,A.bl4(A.B(a).ok.f,o),p,new A.azM(q,n,b),p,p,p,p,p)}else if(q.x)return A.dh(p,p,B.a7c,p,new A.azN(q,b,n,o),p,p,p,p,p) +else return A.dh(p,p,B.a7_,p,new A.azO(q,n,b),p,p,p,p,p)}} +A.azP.prototype={ +$0(){var s=0,r=A.y(t.P),q=this,p,o,n,m +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:m=q.b.ae(0,$.og(),t.vm) +s=q.c||q.d?2:3 +break +case 2:p=q.a +o=p.r +o=o.gdN(o) +o.toString +n=t.z +s=4 +return A.t(m.a.A6(0,"/download/"+p.w+"/chapter/"+o,n,n),$async$$0) +case 4:case 3:s=q.e||q.d?5:6 +break +case 5:p=q.a +o=p.r +o=o.gdN(o) +o.toString +n=t.z +s=7 +return A.t(m.a.ru(0,"/download/"+p.w+"/chapter/"+o,n,n),$async$$0) +case 7:case 6:return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:53} +A.azK.prototype={ +$0(){var s=this,r=s.b +if((r==null?null:r.gd0(r))==="Finished")A.tO(new A.azJ(s.a,s.c,s.d),t.H) +return}, +$S:4} +A.azJ.prototype={ +$0(){return this.a.FU(this.b,new A.azG(this.c))}, +$S:2} +A.azG.prototype={ +$1(a){this.a.sj(0,a) +return a}, +$S:7} +A.azL.prototype={ +$0(){return this.a.aPP(this.b,this.c,!0)}, +$S:0} +A.azM.prototype={ +$0(){return this.a.aPQ(this.b,this.c,!0)}, +$S:0} +A.azN.prototype={ +$0(){var s=0,r=A.y(t.H),q=this,p,o,n,m +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:p=q.a +o=q.b +n=t.H +m=A +s=2 +return A.t(A.dE(new A.azH(p,o),n),$async$$0) +case 2:m.hF(b,q.c,!1,n) +s=3 +return A.t(p.FU(o,new A.azI(q.d)),$async$$0) +case 3:return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.azH.prototype={ +$0(){var s=this.b.ae(0,$.fv(),t.W),r=this.a.r +r=r.gaL(r) +r.toString +return s.ac2(new A.Q8(A.a([r],t.t),new A.rs(null,null,null,!0)))}, +$S:2} +A.azI.prototype={ +$1(a){this.a.sj(0,a) +return a}, +$S:7} +A.azO.prototype={ +$0(){this.a.aPO(this.b,this.c,!0)}, +$S:0} +A.abs.prototype={ +aB(a,b){var s,r,q,p=null,o=b.N($.bj9(),t.QO),n=A.c_(o) +if(n==null)n=p +else{s=J.c4(n) +r=s.gGD(n) +n=r>0&&s.gGD(n)!==n.gXL()}q=n===!0 +n=q?p:B.xQ +if(q){s=A.c_(o) +s=s==null?p:A.bkH(s.gXL()) +r=A.c_(o) +r=r==null?p:A.bkH(J.bpy(r)) +r=A.P(A.i(s)+"/"+A.i(r),p,p,p,p,p,p,p) +s=r}else{s=A.A(a,B.h,t.J) +s=A.P(s.gis(s),p,p,p,p,p,p,p)}return A.a1W(n,!0,s,new A.b_V(q,a,b))}} +A.b_V.prototype={ +$0(){if(this.a){var s=A.ej("/update-status",null) +s=A.bP(this.b).dz(s,null,t.z)}else s=this.c.ae(0,$.I0(),t.BA).aa0() +return s}, +$S:0} +A.vf.prototype={ +aB(a,b){return A.aNH(B.nz,new A.b_Z(this,b),new A.cM(B.cW,B.u),t.z)}} +A.b_Z.prototype={ +$1(a){var s,r,q=null,p=this.a,o=p.e,n=o==null?q:o.$0() +o=A.a([],t.nm) +if(n!=null&&n.gaL(n)!=null&&n.gaL(n)!==0)o.push(A.nr(A.P(A.A(a,B.h,t.J).gmq(),q,q,q,q,q,q,q),new A.b_W(this.b,n),t.z)) +s=t.J +r=t.z +o.push(A.nr(A.P(A.A(a,B.h,s).glR(),q,q,q,q,q,q,q),new A.b_X(this.b),r)) +if(p.f)o.push(A.nr(A.P(A.A(a,B.h,s).glK(),q,q,q,q,q,q,q),new A.b_Y(a),r)) +return o}, +$S:104} +A.b_W.prototype={ +$0(){var s=this.b +return this.a.ae(0,$.I0(),t.BA).aa1(s.gaL(s))}, +$S:0} +A.b_X.prototype={ +$0(){return this.a.ae(0,$.I0(),t.BA).aa0()}, +$S:0} +A.b_Y.prototype={ +$0(){var s=A.ej("/update-status",null) +return A.bP(this.a).dz(s,null,t.z)}, +$S:0} +A.abt.prototype={ +aB(a,b){var s,r=null,q=b.N($.bj8(),t.vM),p=b.N($.bj9(),t.QO),o=A.c_(p) +if(o==null)o=r +else o=J.bpy(o)>0 +s=o===!0?p:q +return A.e9(A.eB(B.ai0,r,r,r,r,r,A.P(A.A(a,B.h,t.J).glK(),r,r,r,r,r,r,r)),r,A.iw(s,a,new A.b00(b,a),!1,new A.b01(b),!1,r),r,r,r,!0,!1,!1,r,r)}} +A.b00.prototype={ +$1(a){var s,r=this,q=null,p=A.a([],t.p),o=a==null,n=o?q:a.gi6() +if(!(n==null||J.cf(n))){n=a.gi6() +n.toString +p.push(new A.zV(n,A.A(r.b,B.h,t.J).gi6(),!0,q))}n=o?q:a.gi1(a) +if(!(n==null||J.cf(n))){n=a.gi1(a) +n.toString +s=A.A(r.b,B.h,t.J) +p.push(new A.zV(n,s.gi1(s),!1,q))}n=o?q:a.gh9(a) +if(!(n==null||J.cf(n))){n=a.gh9(a) +n.toString +s=A.A(r.b,B.h,t.J) +p.push(new A.zV(n,s.gh9(s),!1,q))}o=o?q:a.ghA() +if(!(o==null||J.cf(o))){o=a.ghA() +o.toString +p.push(new A.zV(o,A.A(r.b,B.h,t.J).ghA(),!0,q))}return A.r2(A.iK(p,q,q,!1),new A.b0_(r.a))}, +$S:903} +A.b0_.prototype={ +$0(){return this.a.jZ(0,$.bj8().gqS(),t.uz)}, +$S:2} +A.b01.prototype={ +$0(){var s=this.a,r=$.bj8() +if(s.e==null)A.r(A.R(u.w)) +s.gm6().kx(r) +return null}, +$S:0} +A.zV.prototype={ +A(a){var s=null,r=this.c,q=J.aj(r),p=A.P(this.d+" ("+A.i(A.bkH(q.gt(r)))+")",s,s,s,s,s,s,s),o=A.B(a),n=A.B(a) +r=q.ik(r,new A.b_U(a),t.ur) +return A.bkm(A.a8(r,!0,A.l(r).h("av.E")),n.dy,this.e,B.cS,o.dy,p)}} +A.b_U.prototype={ +$1(a){return A.bkX(a,null,new A.b_T(a,this.a),!0)}, +$S:904} +A.b_T.prototype={ +$0(){var s=this.a +s=s.gaL(s) +s.toString +s=A.oe(new A.iO(s,null)) +return A.bP(this.b).dz(s,null,t.z)}, +$S:0} +A.pt.prototype={ +l(a){return"QuickSearchResult.helpText(prefill: "+this.a+", pattern: "+A.i(this.b)+", hintText: "+this.c+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)if(J.a_(b)===A.p(r))if(b instanceof A.pt){s=b.a===r.a +if(s||s){s=b.b==r.b +if(s||s){s=b.c===r.c +s=s||s}else s=!1}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){var s=this +return A.X(A.p(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)}, +qe(a,b,c,d,e,f,g,h,i){return f.$3(this.a,this.b,this.c)}, +BJ(a,b,c,d,e,f,g,h,i){return this.qe(a,b,c,d,e,f,g,h,i,t.X)}, +$icp:1} +A.Qf.prototype={ +l(a){return"QuickSearchResult.source(source: "+this.a.l(0)+")"}, +k(a,b){var s,r +if(b==null)return!1 +if(this!==b)if(J.a_(b)===A.p(this))if(b instanceof A.Qf){s=b.a +r=this.a +s=s===r||s.k(0,r)}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){return A.X(A.p(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)}, +qe(a,b,c,d,e,f,g,h,i){return h.$1(this.a)}, +BJ(a,b,c,d,e,f,g,h,i){return this.qe(a,b,c,d,e,f,g,h,i,t.X)}, +$icp:1} +A.Qg.prototype={ +l(a){return"QuickSearchResult.sourceSearch(source: "+this.a.l(0)+", query: "+this.b+")"}, +k(a,b){var s,r,q=this +if(b==null)return!1 +if(q!==b)if(J.a_(b)===A.p(q))if(b instanceof A.Qg){s=b.a +r=q.a +if(s===r||s.k(0,r)){s=b.b===q.b +s=s||s}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){return A.X(A.p(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)}, +qe(a,b,c,d,e,f,g,h,i){return i.$2(this.a,this.b)}, +BJ(a,b,c,d,e,f,g,h,i){return this.qe(a,b,c,d,e,f,g,h,i,t.X)}, +$icp:1} +A.Q7.prototype={ +l(a){return"QuickSearchResult.category(category: "+this.a.l(0)+")"}, +k(a,b){var s,r +if(b==null)return!1 +if(this!==b)if(J.a_(b)===A.p(this))if(b instanceof A.Q7){s=b.a +r=this.a +s=s===r||s.k(0,r)}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){return A.X(A.p(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)}, +qe(a,b,c,d,e,f,g,h,i){return a.$1(this.a)}, +BJ(a,b,c,d,e,f,g,h,i){return this.qe(a,b,c,d,e,f,g,h,i,t.X)}, +$icp:1} +A.Q6.prototype={ +l(a){return"QuickSearchResult.categoryManga(category: "+this.a.l(0)+", manga: "+this.b.l(0)+")"}, +k(a,b){var s,r,q=this +if(b==null)return!1 +if(q!==b)if(J.a_(b)===A.p(q))if(b instanceof A.Q6){s=b.a +r=q.a +if(s===r||s.k(0,r)){s=b.b +r=q.b +s=s===r||s.k(0,r)}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){return A.X(A.p(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)}, +qe(a,b,c,d,e,f,g,h,i){return b.$2(this.a,this.b)}, +BJ(a,b,c,d,e,f,g,h,i){return this.qe(a,b,c,d,e,f,g,h,i,t.X)}, +$icp:1} +A.Q5.prototype={ +l(a){return"QuickSearchResult.categoryMangaChapter(category: "+A.i(this.a)+", manga: "+this.b.l(0)+", chapter: "+this.c.l(0)+")"}, +k(a,b){var s,r,q=this +if(b==null)return!1 +if(q!==b)if(J.a_(b)===A.p(q))if(b instanceof A.Q5){s=b.a +r=q.a +if(s==r||J.j(s,r)){s=b.b +r=q.b +if(s===r||s.k(0,r)){s=b.c +r=q.c +s=s===r||s.k(0,r)}else s=!1}else s=!1}else s=!1 +else s=!1 +else s=!0 +return s}, +gu(a){var s=this +return A.X(A.p(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)}, +qe(a,b,c,d,e,f,g,h,i){return c.$3(this.a,this.b,this.c)}, +BJ(a,b,c,d,e,f,g,h,i){return this.qe(a,b,c,d,e,f,g,h,i,t.X)}, +$icp:1} +A.yN.prototype={ +aO(){return null}} +A.bhL.prototype={ +$1(a){return new A.Qg(a,this.a[1])}, +$S:310} +A.bhM.prototype={ +$1(a){return new A.Qf(a)}, +$S:310} +A.bhI.prototype={ +$3$category$query(a,b,c){var s,r=a.gaL(a) +r.toString +r=A.c_(this.a.N(A.Dl(r),t.uV)) +if(r==null)s=null +else{r=J.lT(r,new A.bhJ(c)) +s=A.a8(r,!0,r.$ti.h("z.E"))}if(s==null)r=null +else{r=A.ab(s).h("ad<1,cp>") +r=A.a8(new A.ad(s,new A.bhK(b,a),r),!0,r.h("av.E"))}return r}, +$1(a){return this.$3$category$query(a,null,null)}, +$2$query(a,b){return this.$3$category$query(a,null,b)}, +$S:906} +A.bhJ.prototype={ +$1(a){var s,r=this.a +if(!A.P1(a.gcP(a),r)){s=a.gdN(a) +r=s==A.me(r,null)}else r=!0 +return r}, +$S:27} +A.bhK.prototype={ +$1(a){return new A.Q5(this.a,this.b,a)}, +$S:907} +A.bhN.prototype={ +$1(a){var s,r,q,p,o,n=null,m=(B.c.cc(a,"#")?B.c.cm(a,1):a).split("/"),l=this.a,k=l.N(A.bjA(B.b.gO(m)),t.IL) +if(m.length>1){s=A.xL(k) +if((s==null?n:s.gaL(s))==null)return n +r=J.bjh(m[1],":") +q=s.gaL(s) +q.toString +q=A.c_(l.N(A.IX(q),t.ng)) +p=q==null?n:J.lT(q,new A.bhO(r)) +if(r.length>1){o=A.xL(p) +if(o!=null&&o.gaL(o)!=null)return this.b.$3$category$query(o,s,r[1])}else{if(p==null)l=n +else{l=p.$ti.h("eu<1,cp>") +l=A.a8(new A.eu(p,new A.bhP(s),l),!0,l.h("z.E"))}return l}}if(k==null)l=n +else{l=J.cx(k,new A.bhQ(),t.WM) +l=A.a8(l,!0,A.l(l).h("av.E"))}return l}, +$S:908} +A.bhO.prototype={ +$1(a){return a.acS(0,A.xL(this.a))}, +$S:296} +A.bhP.prototype={ +$1(a){return new A.Q6(this.a,a)}, +$S:909} +A.bhQ.prototype={ +$1(a){return new A.Q7(a)}, +$S:910} +A.a7p.prototype={ +$1$context(a){return A.blk(a)}, +fF(a){return A.blk(a.dy)}, +gf9(){return null}} +A.N6.prototype={ +bI(a){var s=null,r=t.B +return new A.akD(s,!1,this,A.a([],t.o2),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K))}, +k(a,b){if(b==null)return!1 +return b instanceof A.N6&&b.dy===this.dy}, +gu(a){var s=A.bwj(A.bwj(0,A.cS(A.p(this))),A.cS(this.dy)) +s=s+((s&67108863)<<3)&536870911 +s^=s>>>11 +return s+((s&16383)<<15)&536870911}} +A.aNW.prototype={ +$1(a){return A.bX5(t.eP.a(a),this.a)}, +$S:911} +A.N7.prototype={} +A.akD.prototype={} +A.akI.prototype={} +A.apU.prototype={} +A.a7y.prototype={ +A(a){var s,r,q=null,p=$.bb.bz(new A.mH(q,q),t.QX) +$.bb.bz(new A.dK(new A.aOI(p),[]),t.H) +s=t.l +r=0.1*A.aY(a,q,s).w.a.a +s=0.05*A.aY(a,q,s).w.a.b +return new A.b4(new A.aK(r,s,r,s),new A.ef(B.f0,q,q,A.aDz(!1,A.cP(A.a([B.xs,new A.a7w(p,q),new A.oE(1,B.fm,new A.a7v(this.d,p,q),q),A.h5(B.T,!0,q,A.P(A.A(a,B.h,t.J).gpj(),q,q,q,q,q,q,q),B.n,B.E,0,q,q,q,q,q,B.cv)],t.p),B.w,B.z,B.ah),q,q,q),q),q)}} +A.aOI.prototype={ +$0(){A.tO(new A.aOH(this.a),t.hL) +return null}, +$S:4} +A.aOH.prototype={ +$0(){var s=this.a,r=A.dq(B.t,0,s.a.a.length,!1) +s.syr(r) +return r}, +$S:912} +A.lW.prototype={ +A(a){var s,r,q,p,o=this,n=null,m=o.d,l=m==null,k=l?n:m.ghm(m) +if(k==null||k.length===0){k=o.c +s=k==null?n:k.gcP(k) +if(s==null)s=""}else{k=o.e +r=k==null +q=r?n:k.gcP(k) +if(q==null||q.length===0){s=l?n:m.ghm(m) +if(s==null)s=""}else{s=r?n:k.BS(a) +if(s==null)s=""}}k=l?n:m.gqc() +if(k==null||k.length===0)k=A.h3(B.xD,A.B(a).ch,n,n) +else{k=l?n:m.gqc() +k=A.nF(!1,n,k==null?"":k,n,!1,B.e8,n)}k=A.or(B.bv,k,B.bd) +r=t.p +q=A.a([],r) +p=l?n:m.ghm(m) +if(!(p==null||p.length===0)){p=o.e +p=p==null?n:p.gcP(p) +if(p==null||p.length===0){m=o.c +m=m==null?n:m.gcP(m) +m=(m==null?"":m)+"/ "}else{m=l?n:m.ghm(m) +m=(m==null?"":m)+"/"}l=A.B(a).p3.Q +q.push(A.P(m,1,B.ad,n,n,l==null?n:l.a8U(A.B(a).db,0.1,0.1),n,n))}q.push(A.P(s,1,B.ad,n,n,A.B(a).p3.w,n,n)) +return A.jg(!1,n,!0,A.db(A.a([new A.b4(B.bh,k,n),A.dN(A.cP(q,B.dl,B.z,B.O),1)],r),B.w,B.z,B.O),n,!0,n,n,n,n,n,n,n,n,n,new A.awk(o,a),n,n,n,n,n,n,n)}} +A.awk.prototype={ +$0(){var s,r,q=this,p=null,o=q.a,n=o.e +if((n==null?p:n.gdN(n))!=null){s=o.d +s=s.gaL(s) +s.toString +n=n.gdN(n) +n.toString +n=A.mN(new A.ig(s,n,p,p,!0)) +A.bP(q.b).dz(n,p,t.z)}else{n=o.d +s=n==null?p:n.gaL(n) +r=o.c +if(s!=null){n=n.gaL(n) +n.toString +n=A.oe(new A.iO(n,r==null?p:r.gaL(r))) +A.bP(q.b).dz(n,p,t.z)}else{n=A.bis(new A.u7(r==null?p:r.gWN(r))) +A.bP(q.b).dz(n,p,t.z)}}o.f.$0()}, +$S:0} +A.a7v.prototype={ +aB(a,b){var s,r=null,q=b.N(A.blk(a),t.Xv) +if(q==null||J.cf(q))return B.a1 +q.toString +s=J.cx(q,new A.aOz(this),t.OV) +return A.q5(A.nG(A.cP(A.a8(s,!0,A.l(s).h("av.E")),B.w,B.z,B.ah),r,B.D,r,r,B.H),B.C,r,r,r)}} +A.aOz.prototype={ +$1(a){var s=this.a +return new A.zg(a,s.e,s.f,null)}, +$S:913} +A.a7w.prototype={ +aB(a,b){var s,r=null,q=$.bb.bz(new A.RR(r,r,r,!1,!0,!0,r),t.mx),p=t.H +$.bb.bz(new A.dK(new A.aOC(q),[]),p) +s=this.f +$.bb.bz(new A.dK(new A.aOD(this,b),[s]),p) +p=A.A(a,B.h,t.J) +return A.q5(A.Fm(!0,B.c3,!0,r,!0,B.C,r,A.WY(),s,r,r,r,r,2,A.tZ(r,new A.mc(4,B.cW,B.mh),r,r,r,r,r,r,!0,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,p.gkQ(p),r,r,r,r,r,!0,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r),B.D,!0,r,!0,r,!1,q,r,r,r,r,r,r,1,r,r,!1,"\u2022",r,r,new A.aOE(a),r,r,r,!1,r,!0,r,B.dK,r,r,B.cd,B.bS,r,r,r,r,r,r,B.b2,r,B.eb,r,r,r,r),r,r,r,new A.cM(B.cW,B.u))}} +A.aOC.prototype={ +$0(){var s=this.a +s.lG() +return new A.aOB(s)}, +$S:71} +A.aOB.prototype={ +$0(){return this.a.pq()}, +$S:0} +A.aOD.prototype={ +$0(){var s=this.a,r=new A.aOF(s,this.b) +s.f.P(0,r) +return new A.aOA(s,r)}, +$S:71} +A.aOF.prototype={ +$0(){var s=this.b.ae(0,$.bpc().gcb(),t.TF),r=this.a.f.a.a +J.eW(s,r) +return r}, +$S:0} +A.aOA.prototype={ +$0(){return this.a.f.H(0,this.b)}, +$S:0} +A.aOE.prototype={ +$0(){var s=A.a22(this.a),r=s.e +r.toString +A.xj(r).De(s,!0)}, +$S:0} +A.zg.prototype={ +A(a){var s=this +return s.c.BJ(new A.aTp(s),new A.aTq(s),new A.aTr(s),new A.aTs(),new A.aTt(),new A.aTu(s,a),new A.aTv(),new A.aTw(s),new A.aTx(s))}} +A.aTu.prototype={ +$3(a,b,c){var s=null +return A.bI(!1,s,s,s,!0,s,s,!1,s,A.P(a,s,s,s,s,s,s,s),s,s,new A.aTo(this.a,b),!1,s,s,s,s,s,s,A.P(c,s,s,s,s,A.hb(s,s,A.B(this.b).db,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s),s,s),s,s)}, +$S:914} +A.aTo.prototype={ +$0(){var s=this.b +if(!(s==null||s.length===0)){s.toString +this.a.e.sef(0,s)}else s=null +return s}, +$S:0} +A.aTw.prototype={ +$1(a){return A.bul(this.a.d,null,a)}, +$S:915} +A.aTx.prototype={ +$2(a,b){return A.bul(this.a.d,b,a)}, +$S:916} +A.aTp.prototype={ +$1(a){return new A.lW(a,null,null,this.a.d,null)}, +$S:917} +A.aTq.prototype={ +$2(a,b){return new A.lW(a,b,null,this.a.d,null)}, +$S:918} +A.aTr.prototype={ +$3(a,b,c){return new A.lW(a,b,c,this.a.d,null)}, +$S:919} +A.aTv.prototype={ +$2(a,b){return B.a1}, +$S:920} +A.aTs.prototype={ +$3(a,b,c){return B.a1}, +$S:921} +A.aTt.prototype={ +$0(){return B.a1}, +$S:922} +A.v0.prototype={ +aB(a,b){var s,r,q,p,o=null,n=this.e,m=n.gAR(n) +m=A.or(B.bv,A.nF(!1,o,m==null?"":m,o,!1,B.e8,o),B.bd) +s=this.f +r=s==null +if(!(r||s.length===0)){q=n.ghb(n) +if(q==null)q=n.gcP(n) +if(q==null)q="" +p=A.B(a).p3.Q +p=p==null?o:p.a8U(A.B(a).db,0.1,0.1) +q=A.dr(o,p,q+"/ ") +if(r)s="" +s=A.bls(o,o,B.aU,o,o,!0,o,A.dr(A.a([q,A.dr(o,A.B(a).p3.w,s)],t.VO),o,o),B.b2,o,o,B.aw,B.at)}else{s=n.ghb(n) +if(s==null)s=n.gcP(n) +s=A.P(s==null?"":s,o,o,o,o,o,o,o)}r=n.gn8(n) +r=r==null?o:r.ghb(r) +if(!(r==null||r.length===0)){n=n.gn8(n) +n=n==null?o:n.ghb(n) +if(n==null)n="" +n=A.P(n,o,o,o,o,A.hb(o,o,A.B(a).db,o,o,o,o,o,o,o,o,o,o,o,o,o,o,!0,o,o,o,o,o,o,o,o),o,o)}else n=o +return A.bI(!1,o,o,o,!0,o,o,!1,o,m,o,o,new A.aXf(this,b,a),!1,o,o,o,o,n,o,s,o,o)}} +A.aXf.prototype={ +$0(){var s=0,r=A.y(t.H),q,p=this,o,n,m +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:n=p.a +m=n.e +if(m.gaL(m)==null){s=1 +break}J.eW(p.b.ae(0,$.arO().gcb(),t.KP),m.gaL(m)) +m=m.gaL(m) +m.toString +o=n.f +m=A.w2(new A.kM(m,o==null||o.length===0?B.h_:B.db,o,null)) +A.bP(p.c).dz(m,null,t.z) +n.r.$0() +case 1:return A.w(q,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.uY.prototype={} +A.tR.prototype={} +A.a9_.prototype={ +aB(a,b){var s,r,q=null,p=$.bb.bz(new A.dc(!1,q,t.Kr),t.G),o=b.N($.bpd(),t.u) +if(o!==!0)return this.f +o=A.a([],t.p) +o.push(this.f) +if(p.gj(p)){s=$.au().Eo(5,5,B.cT) +r=A.B(a).as +o.push(A.dY(q,A.atA(A.cQ(q,new A.a7y(new A.aTy(p),q),B.n,q,B.iV,new A.dU(A.K(B.e.bg(25.5),r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255),q,q,q,q,q,B.aK),q,q,q,q,q),s),B.D,!1,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,new A.aTz(p),q,q,q,q,!1,B.am))}return new A.a7z(A.fp(B.bu,o,B.C,B.aJ,q),p,q)}} +A.aTz.prototype={ +$0(){this.a.sj(0,!1) +return!1}, +$S:0} +A.aTy.prototype={ +$0(){this.a.sj(0,!1) +return!1}, +$S:0} +A.a7z.prototype={ +A(a){var s=this,r=null,q=A.am([new A.bl(B.o5,!0,!1,!1,!1),new A.uY(),B.pg,new A.tR()],t.Vz,t.vz),p=t.h,o=t.o +return A.Ov(A.pY(A.am([B.ayr,new A.cz(new A.aOJ(s),new A.bd(A.a([],p),o),t.D5),B.ay1,new A.cz(new A.aOK(s),new A.bd(A.a([],p),o),t.iw)],t.n,t.od),A.dY(r,s.c,B.D,!1,r,r,r,r,r,r,r,new A.aOL(s),r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,!1,B.am)),r,q)}} +A.aOJ.prototype={ +$1(a){this.a.d.sj(0,!0) +return null}, +$S:923} +A.aOK.prototype={ +$1(a){this.a.d.sj(0,!1) +return null}, +$S:924} +A.aOL.prototype={ +$0(){this.a.d.sj(0,!0) +return!0}, +$S:0} +A.te.prototype={ +Nr(a,b){return this.aPc(a,b)}, +aPc(a,b){var s=0,r=A.y(t.ab),q,p=this,o,n +var $async$Nr=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:o=b==null +n=o?null:b.b +if(!(n==null||n.length===0)){o=o?null:b.c +o=o==null||B.M.gak(o) +if(!o)o=!1 +else o=!0}else o=!0 +if(o)throw A.c(A.XK(a).gli()) +if(!B.c.hT(b.b,".proto.gz"))throw A.c(A.XK(a).mQ(".proto.gz")) +o=b.c +o.toString +s=3 +return A.t(p.a.aO8("/backup/import/file",A.Cv(A.am(["backup.proto.gz",A.bKh(o,"backup.proto.gz")],t.N,t.z)),new A.atL(),t.e8,t.ab),$async$Nr) +case 3:q=d.a +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$Nr,r)}} +A.atL.prototype={ +$1(a){return t.a.b(a)?A.bO4(a):null}, +$S:925} +A.l4.prototype={ +ghg(a){var s,r="removeWhere",q=t.s,p=A.a([],q),o=this.gxJ() +if(o!=null)B.b.I(p,o) +if(!!p.fixed$length)A.r(A.aa(r)) +B.b.pD(p,new A.atI(),!0) +o=A.a([],q) +s=this.ghH() +if(s!=null)B.b.I(o,s) +if(!!o.fixed$length)A.r(A.aa(r)) +B.b.pD(o,new A.atJ(),!0) +q=A.a([],q) +s=this.gxH() +if(s!=null)B.b.I(q,s) +if(!!q.fixed$length)A.r(A.aa(r)) +B.b.pD(q,new A.atK(),!0) +return new A.FR(p,o,q)}} +A.atI.prototype={ +$1(a){return a.length===0}, +$S:11} +A.atJ.prototype={ +$1(a){return a.length===0}, +$S:11} +A.atK.prototype={ +$1(a){return a.length===0}, +$S:11} +A.b1n.prototype={ +gxJ(){return A.r($.arB())}, +ghH(){return A.r($.arB())}, +gxH(){return A.r($.arB())}, +bf(){return A.r($.arB())}} +A.FR.prototype={ +gxJ(){var s=this.a +if(s==null)return null +if(s instanceof A.cX)return s +return new A.cX(s,s,t.ls)}, +ghH(){var s=this.b +if(s==null)return null +if(s instanceof A.cX)return s +return new A.cX(s,s,t.ls)}, +gxH(){var s=this.c +if(s==null)return null +if(s instanceof A.cX)return s +return new A.cX(s,s,t.ls)}, +l(a){return"BackupMissing(missingSources: "+A.i(this.gxJ())+", missingTrackers: "+A.i(this.ghH())+", mangasMissingSources: "+A.i(this.gxH())+")"}, +k(a,b){var s,r=this +if(b==null)return!1 +if(r!==b)s=J.a_(b)===A.p(r)&&b instanceof A.FR&&B.a0.d7(b.a,r.a)&&B.a0.d7(b.b,r.b)&&B.a0.d7(b.c,r.c) +else s=!0 +return s}, +gu(a){var s=this +return A.X(A.p(s),B.a0.dl(0,s.a),B.a0.dl(0,s.b),B.a0.dl(0,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)}, +bf(){return A.am(["missingSources",this.gxJ(),"missingTrackers",this.ghH(),"mangasMissingSources",this.gxH()],t.N,t.z)}} +A.aek.prototype={} +A.b0W.prototype={ +$1(a){return A.bm(a)}, +$S:36} +A.b0X.prototype={ +$1(a){return A.bm(a)}, +$S:36} +A.b0Y.prototype={ +$1(a){return A.bm(a)}, +$S:36} +A.ael.prototype={} +A.XN.prototype={ +aB(a,b){var s,r=null,q=b.N($.arF(),t.YX),p=A.A(a,B.h,t.J) +p=A.eB(r,r,r,r,r,r,A.P(p.gla(p),r,r,r,r,r,r,r)) +s=A.a([B.qt],t.p) +if(q!==B.Pa)s.push(B.a7V) +s.push(B.PV) +s.push(B.a5c) +return A.e9(p,r,A.iK(s,r,r,!1),r,r,r,!0,!1,!1,r,r)}} +A.wd.prototype={ +aO(){return this.tG(0,B.a0R,J.fg(B.hX.gcN(B.hX)))}} +A.XM.prototype={ +aB(a,b){var s=null,r=$.bb.bz(new A.hz(new A.asD(),B.cM,t.KR),t.R4) +return new A.b4(B.jn,A.cZ(A.oQ(new A.asE(r,b.N($.biN(),t.GL),b),J.b3(r),s,s,B.ar),148,s),s)}} +A.asD.prototype={ +$0(){return J.fg(B.hX.gcN(B.hX))}, +$S:926} +A.asE.prototype={ +$2(a,b){var s,r,q,p,o,n=null,m=this.a,l=J.aj(m),k=B.hX.i(0,l.i(m,b)) +if(k==null)return B.a1 +s=k.a +r=k.d +q=A.B(a).ax.a===B.S?A.K(47,0,0,0):A.K(63,255,255,255) +p=A.B(a).ax.a===B.S?A.K(79,0,0,0):A.K(95,255,255,255) +o=this.b +l=l.i(m,b) +return new A.b4(B.dL,A.b_e(new A.Kv(r,o==null?l==null:o===l,new A.asC(this.c,m,b),16,64,32,8,q,p,n),n,s,n,n),n)}, +$S:927} +A.asC.prototype={ +$0(){var s=this.a.ae(0,$.biN().gcb(),t.m2),r=J.b7(this.b,this.c) +J.eW(s,r) +return r}, +$S:0} +A.aea.prototype={} +A.xr.prototype={ +aO(){return this.f_(0,B.a0K)}} +A.a2r.prototype={ +aB(a,b){var s=A.A(a,B.h,t.J).gnb(),r=b.N($.arK(),t.PM) +if(r==null)r=192 +return A.a9B(192,new A.aFx(),B.xH,999,100,new A.aFy(b),s,r,t.z)}} +A.aFx.prototype={ +$1(a){return B.f.l(B.e.bg(a))}, +$S:80} +A.aFy.prototype={ +$1(a){var s=this.a.ae(0,$.arK().gcb(),t.XW),r=B.e.Gp(a) +J.eW(s,r) +return r}, +$S:47} +A.ahw.prototype={} +A.xI.prototype={ +aO(){return this.f_(0,B.a12)}} +A.a37.prototype={ +aB(a,b){var s=null,r=A.P(A.A(a,B.h,t.J).gqX(),s,s,s,s,s,s,s),q=$.boU(),p=J.j7(b.ae(0,q.gcb(),t.GG)) +q=b.N(q,t.u) +return A.re(B.cI,s,p,B.a7l,s,r,q===!0)}} +A.ai6.prototype={} +A.Yd.prototype={ +E2(a,b){return this.aFJ(a,b)}, +aFJ(a,b){var s=0,r=A.y(t.z),q,p,o,n +var $async$E2=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:p=new A.atQ(a) +s=2 +return A.t($.bo6().iL(A.a(["gz"],t.s),B.nj),$async$E2) +case 2:o=d +n=o==null?null:o.a +if(!(n==null||J.cf(n)))if(b.e!=null)J.Xj(p.$1(b),A.A(b,B.h,t.J).gob()) +n=t.ab +s=3 +return A.t(A.dE(new A.atN(a,b,o),n),$async$E2) +case 3:q=d +A.wg(q,new A.atO(b,p),new A.atP(b,q,p),n,t.H) +return A.w(null,r)}}) +return A.x($async$E2,r)}, +aB(a,b){var s,r=null,q=t.J,p=A.eB(r,r,r,r,r,r,A.P(A.A(a,B.h,q).gkk(),r,r,r,r,r,r,r)),o=A.P(A.A(a,B.h,q).gmG(),r,r,r,r,r,r,r) +o=A.bI(!1,r,r,r,!0,r,r,!1,r,B.a6K,r,r,new A.atR(b,a),!1,r,r,r,r,A.P(A.A(a,B.h,q).gmF(),r,r,r,r,r,r,r),r,o,r,r) +s=A.P(A.A(a,B.h,q).go9(),r,r,r,r,r,r,r) +return A.e9(p,r,A.iK(A.a([o,A.bI(!1,r,r,r,!0,r,r,!1,r,B.a6I,r,r,new A.atS(this,b,a),!1,r,r,r,r,A.P(A.A(a,B.h,q).go8(),r,r,r,r,r,r,r),r,s,r,r)],t.p),r,r,!1),r,r,r,!0,!1,!1,r,r)}} +A.atQ.prototype={ +$1(a){return this.a.ae(0,A.eD(a),t.g)}, +$S:928} +A.atN.prototype={ +$0(){var s=this.a.ae(0,$.bDB(),t.nc),r=this.c +r=r==null?null:J.Xh(r.a) +return s.Nr(this.b,r)}, +$S:929} +A.atP.prototype={ +$2(a,b){var s=this.a +if(s.e!=null)A.hF(this.b,this.c.$1(s),!1,t.ab)}, +$S:14} +A.atO.prototype={ +$1(a){var s,r,q,p=a==null?null:a.ghg(a),o=this.a +if(o.e!=null){s=this.b.$1(o) +r=A.A(o,B.h,t.J).goa() +q=s.b +q===$&&A.b() +q.vK() +J.Xj(s,r)}if(p!=null){s=p.gxJ() +if(s==null||J.cf(s)){s=p.ghH() +if(s==null||J.cf(s)){s=p.gxH() +s=s==null||J.cf(s)}else s=!1}else s=!1 +s=!s}else s=!1 +if(s)A.fe(new A.atM(p),o,t.z)}, +$S:930} +A.atM.prototype={ +$1(a){return new A.B8(this.a,null)}, +$S:931} +A.atR.prototype={ +$0(){var s=0,r=A.y(t.H),q=this,p,o,n,m,l +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:p=q.a +o=q.b +n=p.ae(0,A.eD(o),t.g) +m=p.ae(0,$.I_(),t.v) +l=p.ae(0,$.AO(),t.bo) +p=p.N($.HZ(),t.u) +A.od(o,A.aBr(p===!0,!0,m,l)+"/backup/export/file",n) +return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.atS.prototype={ +$0(){return this.a.E2(this.b,this.c)}, +$S:0} +A.B8.prototype={ +A(a){var s,r=null,q=t.p,p=A.a([],q),o=this.c,n=o.gxJ() +if(!(n==null||J.cf(n))){n=A.a([A.P(A.A(a,B.h,t.J).gnp(),r,r,r,r,A.B(a).p3.w,r,r)],q) +s=o.gxJ() +s=s==null?r:J.cx(s,new A.atF(),t.l7) +if(s!=null)B.b.I(n,s) +B.b.I(p,n)}n=o.ghH() +if(!(n==null||J.cf(n))){n=A.a([A.P(A.A(a,B.h,t.J).ghH(),r,r,r,r,A.B(a).p3.w,r,r)],q) +s=o.ghH() +s=s==null?r:J.cx(s,new A.atG(),t.l7) +if(s!=null)B.b.I(n,s) +B.b.I(p,n)}n=o.gxH() +if(!(n==null||J.cf(n))){n=A.a([A.P(A.A(a,B.h,t.J).gnc(),r,r,r,r,A.B(a).p3.w,r,r)],q) +o=o.gxH() +o=o==null?r:J.cx(o,new A.atH(),t.l7) +if(o!=null)B.b.I(n,o) +B.b.I(p,n)}p=A.nG(A.cP(p,B.w,B.z,B.ah),r,B.D,r,r,B.H) +o=A.A(a,B.h,t.J) +return A.l2(A.a([new A.uy(o.gdV(o),r)],q),p,r,r)}} +A.atF.prototype={ +$1(a){var s=null +return A.bI(!1,s,s,s,!0,s,s,!1,s,B.a7b,s,s,s,!1,s,s,s,s,s,s,A.P(a,s,s,s,s,s,s,s),s,s)}, +$S:146} +A.atG.prototype={ +$1(a){var s=null +return A.bI(!1,s,s,s,!0,s,s,!1,s,B.a7i,s,s,s,!1,s,s,s,s,s,s,A.P(a,s,s,s,s,s,s,s),s,s)}, +$S:146} +A.atH.prototype={ +$1(a){var s=null +return A.bI(!1,s,s,s,!0,s,s,!1,s,B.a76,s,s,s,!1,s,s,s,s,s,s,A.P(a,s,s,s,s,s,s,s),s,s)}, +$S:146} +A.YD.prototype={ +A(a){var s=null,r=t.J +return A.e9(A.eB(s,s,s,s,s,s,A.P(A.A(a,B.h,r).gjL(),s,s,s,s,s,s,s)),s,A.iK(A.a([B.aqB,A.bI(!1,s,!0,s,!0,s,s,!1,s,B.xT,s,s,s,!1,s,s,s,s,A.P(A.A(a,B.h,r).gnB(),s,s,s,s,s,s,s),s,s,s,s),B.fh],t.p),s,s,!1),s,s,s,!0,!1,!1,s,s)}} +A.zr.prototype={ +aO(){return this.f_(0,B.a1f)}} +A.a9m.prototype={ +aB(a,b){var s=null,r=A.P(A.A(a,B.h,t.J).gnz(),s,s,s,s,s,s,s),q=$.bph(),p=J.j7(b.ae(0,q.gcb(),t.of)) +q=b.N(q,t.u) +return A.re(B.cI,s,p,B.a6M,s,r,q===!0)}} +A.amM.prototype={} +A.a2c.prototype={ +aB(a,b){var s=null,r=t.J,q=A.eB(s,s,s,s,s,s,A.P(A.A(a,B.h,r).gkN(),s,s,s,s,s,s,s)),p=A.P(A.A(a,B.h,r).gl7(),s,s,s,s,s,s,s),o=a.aj(t.Gk).r.f +o.toString +return A.e9(q,s,A.iK(A.a([A.bI(!1,s,s,s,!0,s,s,!1,s,B.xP,s,s,new A.aEI(a,b),!1,s,s,s,s,A.P(A.byO(o),s,s,s,s,s,s,s),s,p,s,s),A.bI(!1,s,s,s,!0,s,s,!1,s,B.a7h,s,s,new A.aEJ(b,a),!1,s,s,s,s,s,s,A.P(A.A(a,B.h,r).gmy(),s,s,s,s,s,s,s),s,s),B.apg],t.p),s,s,!1),s,s,s,!0,!1,!1,s,s)}} +A.aEI.prototype={ +$0(){return A.fe(new A.aEH(this.b),this.a,t.z)}, +$S:0} +A.aEH.prototype={ +$1(a){var s=A.A(a,B.h,t.J).gl7(),r=a.aj(t.Gk).r.f +r.toString +return A.uD(A.bW1(),A.bW0(),new A.aEG(this.a,a),B.Ef,s,r,t.da)}, +$S:933} +A.aEG.prototype={ +$1(a){J.eW(this.a.ae(0,$.bp2().gcb(),t.CV),a) +A.du(this.b,!1).dO(null)}, +$S:934} +A.aEJ.prototype={ +$0(){var s=0,r=A.y(t.H),q=this,p,o +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:o=q.a +s=2 +return A.t(o.N($.boT(),t.tR).aGp(),$async$$0) +case 2:$.biu().b.Aq() +p=q.b +if(p.e!=null)J.Xj(o.ae(0,A.eD(p),t.g),A.A(p,B.h,t.J).gmo()) +return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.yO.prototype={ +aO(){return this.f_(0,B.a1c)}} +A.a7A.prototype={ +aB(a,b){var s=null,r=A.P(A.A(a,B.h,t.J).grj(),s,s,s,s,s,s,s),q=$.bpd(),p=J.j7(b.ae(0,q.gcb(),t.P0)) +q=b.N(q,t.u) +return A.re(B.cI,s,p,B.ny,s,r,q===!0)}} +A.akK.prototype={} +A.a3B.prototype={ +A(a){var s=null,r=t.J +return A.e9(A.eB(s,s,s,s,s,s,A.P(A.A(a,B.h,r).ghE(),s,s,s,s,s,s,s)),s,A.iK(A.a([A.bI(!1,s,s,s,!0,s,s,!1,s,B.nB,s,s,new A.aIw(a),!1,s,s,s,s,s,s,A.P(A.A(a,B.h,r).gld(),s,s,s,s,s,s,s),s,s)],t.p),s,s,!1),s,s,s,!0,!1,!1,s,s)}} +A.aIw.prototype={ +$0(){var s=A.ej("/settings/library/edit-categories",null) +return A.bP(this.a).dz(s,null,t.z)}, +$S:0} +A.a62.prototype={ +aB(a,b){var s=null,r=t.J +return A.e9(A.eB(s,s,s,s,s,s,A.P(A.A(a,B.h,r).glw(),s,s,s,s,s,s,s)),s,A.iK(A.a([A.CN(new A.mR("assets/icons/dark_icon.png",s,s),s,A.aY(a,s,t.l).w.a.b*0.2),B.fh,B.O6,A.bI(!1,s,s,s,!0,s,s,!1,s,B.nB,s,s,new A.aKN(a),!1,s,s,s,s,s,s,A.P(A.A(a,B.h,r).gld(),s,s,s,s,s,s,s),s,s),B.qt,A.bI(!1,s,s,s,!0,s,s,!1,s,B.xR,s,s,new A.aKO(a),!1,s,s,s,s,s,s,A.P(A.A(a,B.h,r).gkk(),s,s,s,s,s,s,s),s,s),B.fh,A.bI(!1,s,s,s,!0,s,s,!1,s,B.nA,s,s,new A.aKP(a),!1,s,s,s,s,s,s,A.P(A.A(a,B.h,r).gkU(),s,s,s,s,s,s,s),s,s),A.bI(!1,s,s,s,!0,s,s,!1,s,B.xT,s,s,new A.aKQ(a),!1,s,s,s,s,s,s,A.P(A.A(a,B.h,r).gl2(),s,s,s,s,s,s,s),s,s),A.bI(!1,s,s,s,!0,s,s,!1,s,B.a70,s,s,new A.aKR(a,b),!1,s,s,s,s,s,s,A.P(A.A(a,B.h,r).gn1(),s,s,s,s,s,s,s),s,s)],t.p),s,s,!1),s,s,s,!0,!1,!1,s,s)}} +A.aKN.prototype={ +$0(){var s=A.ej("/settings/library/edit-categories",null) +return A.bP(this.a).dz(s,null,t.z)}, +$S:0} +A.aKO.prototype={ +$0(){var s=A.ej("/settings/backup",null) +return A.bP(this.a).dz(s,null,t.z)}, +$S:0} +A.aKP.prototype={ +$0(){var s=A.ej("/settings",null) +return A.bP(this.a).dz(s,null,t.z)}, +$S:0} +A.aKQ.prototype={ +$0(){var s=A.ej("/about",null) +return A.bP(this.a).dz(s,null,t.z)}, +$S:0} +A.aKR.prototype={ +$0(){var s=this.a +return A.od(s,"https://github.com/Suwayomi/Tachidesk-Server/wiki",this.b.ae(0,A.eD(s),t.mk))}, +$S:0} +A.a7Q.prototype={ +aB(a,b){var s,r,q=null +b.N($.bpm(),t.u) +s=A.eB(q,q,q,q,q,q,A.P(A.A(a,B.h,t.J).glE(),q,q,q,q,q,q,q)) +r=A.a([B.apn,B.apo,B.apl,B.apk,B.as0,B.apq,B.app,B.apm],t.p) +r.push(B.a59) +return A.e9(s,q,A.iK(r,q,q,!1),q,q,q,!0,!1,!1,q,q)}} +A.yR.prototype={ +aO(){return this.f_(0,B.a1k)}} +A.a7H.prototype={ +aB(a,b){var s,r,q=null,p=t.J,o=A.P(A.A(a,B.h,p).gpk(),q,q,q,q,q,q,q) +p=A.P(A.A(a,B.h,p).gpl(),q,q,q,q,q,q,q) +s=$.bpe() +r=J.j7(b.ae(0,s.gcb(),t.NF)) +s=b.N(s,t.u) +return A.re(B.cI,q,r,B.a7j,p,o,s===!0)}} +A.akV.prototype={} +A.xH.prototype={ +aO(){return this.f_(0,B.a0Z)}} +A.a7I.prototype={ +aB(a,b){var s=null,r=A.P(A.A(a,B.h,t.J).go_(),s,s,s,s,s,s,s),q=$.biU(),p=J.j7(b.ae(0,q.gcb(),t.tA)) +q=b.N(q,t.u) +return A.re(B.cI,s,p,B.a75,s,r,q===!0)}} +A.ai5.prototype={} +A.yS.prototype={ +aO(){return this.f_(0,B.a0L)}} +A.a7J.prototype={ +aB(a,b){var s,r=$.bpf(),q=b.N(r,t.PM) +if(q==null)q=1 +s=A.A(a,B.h,t.J).gjm() +return A.a9B(1,new A.aPc(),B.nv,5,1,J.j7(b.ae(0,r.gcb(),t.pf)),s,q,t.z)}} +A.aPc.prototype={ +$1(a){return B.e.aF(a,2)}, +$S:80} +A.XZ.prototype={ +aB(a,b){var s=this.r +return A.a9B(1,new A.at0(),B.nv,5,1,A.w1(new A.at1(this,A.bnX(null,t.dN)),[],t.qO),A.A(a,B.h,t.J).gjm(),s.gj(s),t.z)}} +A.at1.prototype={ +$1(a){return this.aeu(a)}, +aeu(a){var s=0,r=A.y(t.H),q,p=this,o,n,m,l,k +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:k=p.a +k.r.sj(0,a) +o=p.b +n=o.a +m=n==null +l=m?null:n.b!=null +if(l===!0)if(!m)n.aI(0) +o.a=A.d0(B.bD,new A.at_(k,a)) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$$1,r)}, +$S:312} +A.at_.prototype={ +$0(){return this.a.f.$1(this.b)}, +$S:0} +A.at0.prototype={ +$1(a){return B.e.aF(a,2)}, +$S:80} +A.akW.prototype={} +A.yT.prototype={ +aO(){return this.tG(0,B.a0V,B.nW)}} +A.a7K.prototype={ +aB(a,b){var s=null,r=b.N($.bj1(),t.yZ),q=r!=null?A.P(r.h6(a),s,s,s,s,s,s,s):s +return A.bI(!1,s,s,s,!0,s,s,!1,s,B.a6X,s,s,new A.aPg(a,r,b),!1,s,s,s,s,q,s,A.P(A.A(a,B.h,t.J).gi4(),s,s,s,s,s,s,s),s,s)}} +A.aPg.prototype={ +$0(){return A.fe(new A.aPf(this.b,this.c),this.a,t.z)}, +$S:0} +A.aPf.prototype={ +$1(a){var s=A.A(a,B.h,t.J).gi4(),r=B.b.fH(B.nW,1),q=this.a +if(q==null)q=B.ia +return A.uD(null,new A.aPd(a),new A.aPe(this.b,a),r,s,q,t.uM)}, +$S:304} +A.aPd.prototype={ +$1(a){return a.h6(this.a)}, +$S:305} +A.aPe.prototype={ +$1(a){return this.aeL(a)}, +aeL(a){var s=0,r=A.y(t.H),q=this,p +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:J.eW(q.a.ae(0,$.bj1().gcb(),t.jC),a) +p=q.b +if(p.e!=null)A.du(p,!1).dO(null) +return A.w(null,r)}}) +return A.x($async$$1,r)}, +$S:306} +A.akX.prototype={} +A.yU.prototype={ +aO(){return this.tG(0,B.a0Y,B.nT)}} +A.a7L.prototype={ +aB(a,b){var s=null,r=b.N($.arM(),t.dr),q=r!=null?A.P(r.h6(a),s,s,s,s,s,s,s):s +return A.bI(!1,s,s,s,!0,s,s,!1,s,B.xW,s,s,new A.aPk(a,r,b),!1,s,s,s,s,q,s,A.P(A.A(a,B.h,t.J).ghl(),s,s,s,s,s,s,s),s,s)}} +A.aPk.prototype={ +$0(){return A.fe(new A.aPj(this.b,this.c),this.a,t.z)}, +$S:0} +A.aPj.prototype={ +$1(a){var s=A.A(a,B.h,t.J).ghl(),r=B.b.fH(B.nT,1),q=this.a +if(q==null)q=B.eG +return A.uD(null,new A.aPh(a),new A.aPi(this.b,a),r,s,q,t.lR)}, +$S:307} +A.aPh.prototype={ +$1(a){return a.h6(this.a)}, +$S:308} +A.aPi.prototype={ +$1(a){return this.aeM(a)}, +aeM(a){var s=0,r=A.y(t.H),q=this,p +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:J.eW(q.a.ae(0,$.arM().gcb(),t.j1),a) +p=q.b +if(p.e!=null)A.du(p,!1).dO(null) +return A.w(null,r)}}) +return A.x($async$$1,r)}, +$S:309} +A.akY.prototype={} +A.yV.prototype={ +aO(){return this.f_(0,B.a0J)}} +A.a7N.prototype={ +aB(a,b){var s,r=$.bpg(),q=b.N(r,t.PM) +if(q==null)q=0 +s=A.A(a,B.h,t.J).gjn() +return A.a9B(0,new A.aPm(),B.xL,0.4,0,J.j7(b.ae(0,r.gcb(),t.WJ)),s,q,t.z)}} +A.aPm.prototype={ +$1(a){return B.e.aF(a*2.5,2)}, +$S:80} +A.Y_.prototype={ +aB(a,b){var s=this.r +return A.a9B(0,new A.at3(),B.xL,0.4,0,A.w1(new A.at4(this,A.bnX(null,t.dN)),[],t.qO),A.A(a,B.h,t.J).gjn(),s.gj(s),t.z)}} +A.at4.prototype={ +$1(a){return this.aev(a)}, +aev(a){var s=0,r=A.y(t.H),q,p=this,o,n,m,l,k +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:k=p.a +k.r.sj(0,a) +o=p.b +n=o.a +m=n==null +l=m?null:n.b!=null +if(l===!0)if(!m)n.aI(0) +o.a=A.d0(B.bD,new A.at2(k,a)) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$$1,r)}, +$S:312} +A.at2.prototype={ +$0(){return this.a.f.$1(this.b)}, +$S:0} +A.at3.prototype={ +$1(a){return B.e.aF(a*2.5,2)}, +$S:80} +A.akZ.prototype={} +A.yx.prototype={ +aO(){return this.f_(0,B.a1l)}} +A.ak0.prototype={} +A.yW.prototype={ +aO(){return this.f_(0,B.a1e)}} +A.a7P.prototype={ +aB(a,b){var s=null,r=A.P(A.A(a,B.h,t.J).go3(),s,s,s,s,s,s,s),q=$.bj2(),p=J.j7(b.ae(0,q.gcb(),t.sx)) +q=b.N(q,t.u) +return A.re(B.cI,s,p,B.a7a,s,r,q===!0)}} +A.al_.prototype={} +A.zB.prototype={ +aO(){return this.f_(0,B.a1d)}} +A.aaz.prototype={ +aB(a,b){var s,r,q=null,p=t.J,o=A.P(A.A(a,B.h,p).go4(),q,q,q,q,q,q,q) +p=A.P(A.A(a,B.h,p).go5(),q,q,q,q,q,q,q) +s=$.bpk() +r=J.j7(b.ae(0,s.gcb(),t.ou)) +s=b.N(s,t.u) +return A.re(B.cI,q,r,B.a7q,p,o,s===!0)}} +A.ans.prototype={} +A.zZ.prototype={ +aO(){return this.f_(0,B.a11)}} +A.ap_.prototype={} +A.zY.prototype={ +aO(){return this.f_(0,B.a10)}} +A.ap0.prototype={} +A.a9e.prototype={ +aB(a,b){var s=null,r=b.N($.w5(),t.Wr),q=t.J,p=A.eB(s,s,s,s,s,s,A.P(A.A(a,B.h,q).gjz(),s,s,s,s,s,s,s)),o=A.a([B.O6,B.aqg,B.PZ],t.p) +if(r!=null&&r!==B.ec){q=A.A(a,B.h,q) +o.push(A.bI(!1,s,s,s,!0,s,s,!1,s,B.a7e,s,s,new A.aUh(a),!1,s,s,s,s,s,s,A.P(q.gle(q),s,s,s,s,s,s,s),s,s))}return A.e9(p,s,A.iK(o,s,s,!1),s,s,s,!0,!1,!1,s,s)}} +A.aUh.prototype={ +$0(){A.fe(new A.aUg(),this.a,t.z)}, +$S:0} +A.aUg.prototype={ +$1(a){return B.a0m}, +$S:936} +A.Y4.prototype={ +aB(a,b){var s=null,r=b.N($.w5(),t.Wr),q=r!=null?A.P(r.h6(a),s,s,s,s,s,s,s):s +return A.bI(!1,s,s,s,!0,s,s,!1,s,B.a7p,s,s,new A.att(a,r,b),!1,s,s,s,s,q,s,A.P(A.A(a,B.h,t.J).glb(),s,s,s,s,s,s,s),s,s)}} +A.att.prototype={ +$0(){return A.fe(new A.ats(this.b,this.c),this.a,t.z)}, +$S:0} +A.ats.prototype={ +$1(a){var s=A.A(a,B.h,t.J).glb(),r=this.a +if(r==null)r=B.ec +return A.uD(null,new A.atq(a),new A.atr(this.b,a),B.zy,s,r,t.qC)}, +$S:937} +A.atq.prototype={ +$1(a){return a.h6(this.a)}, +$S:938} +A.atr.prototype={ +$1(a){J.eW(this.a.ae(0,$.w5().gcb(),t.ca),a) +A.du(this.b,!1).dO(null)}, +$S:939} +A.wF.prototype={ +aO(){return this.f_(0,B.a1a)}} +A.BM.prototype={ +aB(a,b){var s,r,q,p,o,n,m=null,l=t.QX,k=$.bb.bz(new A.mH(m,m),l) +l=$.bb.bz(new A.mH(m,m),l) +s=t.J +r=A.A(a,B.h,s) +r=A.P(r.gle(r),m,m,m,m,m,m,m) +q=$.boS() +p=A.buA(k,A.tZ(m,B.eB,m,m,m,m,m,m,!0,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,A.A(a,B.h,s).goo(),m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),!1,new A.axW(a)) +o=A.A(a,B.h,s) +n=t.p +o=A.cP(A.a([p,B.nt,A.buA(l,A.tZ(m,B.eB,m,m,m,m,m,m,!0,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,o.gnF(o),m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m,m),!0,new A.axX(a))],n),B.w,B.z,B.ah) +s=A.A(a,B.h,s) +return A.l2(A.a([B.e5,A.x2(!1,A.P(s.giv(s),m,m,m,m,m,m,m),B.n,m,m,m,m,m,new A.axY(this,b,k,l,a),m,m)],n),new A.KH(o,B.qx,q),m,r)}} +A.axW.prototype={ +$1(a){return a.length===0?A.A(this.a,B.h,t.J).gmT():null}, +$S:313} +A.axX.prototype={ +$1(a){return a.length===0?A.A(this.a,B.h,t.J).gmS():null}, +$S:313} +A.axY.prototype={ +$0(){var s=0,r=A.y(t.H),q=this,p,o +var $async$$0=A.u(function(a,b){if(a===1)return A.v(b,r) +while(true)switch(s){case 0:o=$.boS().gR() +if(o==null)o=null +else{o.e=!0 +o.a1w() +o=o.wF()}if(o===!0){o=q.b.ae(0,$.HY().gcb(),t.W8) +p=B.aV.cV(q.c.a.a+":"+q.d.a.a) +J.eW(o,"Basic "+B.qK.gEL().cV(p)) +A.du(q.e,!1).dO(null)}return A.w(null,r)}}) +return A.x($async$$0,r)}, +$S:2} +A.aft.prototype={} +A.a9g.prototype={ +A(a){var s=null,r=t.J,q=A.eB(s,s,s,s,s,s,A.P(A.A(a,B.h,r).gkU(),s,s,s,s,s,s,s)),p=A.bI(!1,s,s,s,!0,s,s,!1,s,B.a74,s,s,new A.aUp(a),!1,s,s,s,s,s,s,A.P(A.A(a,B.h,r).gkN(),s,s,s,s,s,s,s),s,s),o=A.A(a,B.h,r) +return A.e9(q,s,A.iK(A.a([p,A.bI(!1,s,s,s,!0,s,s,!1,s,B.a6O,s,s,new A.aUq(a),!1,s,s,s,s,s,s,A.P(o.gla(o),s,s,s,s,s,s,s),s,s),A.bI(!1,s,s,s,!0,s,s,!1,s,B.a72,s,s,new A.aUr(a),!1,s,s,s,s,s,s,A.P(A.A(a,B.h,r).ghE(),s,s,s,s,s,s,s),s,s),A.bI(!1,s,s,s,!0,s,s,!1,s,B.a78,s,s,new A.aUs(a),!1,s,s,s,s,s,s,A.P(A.A(a,B.h,r).glE(),s,s,s,s,s,s,s),s,s),A.bI(!1,s,s,s,!0,s,s,!1,s,B.a79,s,s,new A.aUt(a),!1,s,s,s,s,s,s,A.P(A.A(a,B.h,r).gjL(),s,s,s,s,s,s,s),s,s),A.bI(!1,s,s,s,!0,s,s,!1,s,B.xR,s,s,new A.aUu(a),!1,s,s,s,s,s,s,A.P(A.A(a,B.h,r).gkk(),s,s,s,s,s,s,s),s,s),A.bI(!1,s,s,s,!0,s,s,!1,s,B.xY,s,s,new A.aUv(a),!1,s,s,s,s,s,s,A.P(A.A(a,B.h,r).gjz(),s,s,s,s,s,s,s),s,s)],t.p),s,s,!1),s,s,s,!0,!1,!1,s,s)}} +A.aUp.prototype={ +$0(){var s=A.ej("/settings/general",null) +return A.bP(this.a).dz(s,null,t.z)}, +$S:0} +A.aUq.prototype={ +$0(){var s=A.ej("/settings/appearance",null) +return A.bP(this.a).dz(s,null,t.z)}, +$S:0} +A.aUr.prototype={ +$0(){var s=A.ej("/settings/library",null) +return A.bP(this.a).dz(s,null,t.z)}, +$S:0} +A.aUs.prototype={ +$0(){var s=A.ej("/settings/reader",null) +return A.bP(this.a).dz(s,null,t.z)}, +$S:0} +A.aUt.prototype={ +$0(){var s=A.ej("/settings/browse",null) +return A.bP(this.a).dz(s,null,t.z)}, +$S:0} +A.aUu.prototype={ +$0(){var s=A.ej("/settings/backup",null) +return A.bP(this.a).dz(s,null,t.z)}, +$S:0} +A.aUv.prototype={ +$0(){var s=A.ej("/settings/server",null) +return A.bP(this.a).dz(s,null,t.z)}, +$S:0} +A.we.prototype={ +aO(){return this.tG(0,B.a0W,B.E3)}} +A.XL.prototype={ +aB(a,b){var s=null,r=b.N($.arF(),t.YX),q=A.h3(A.B(a).ax.a===B.S?B.a5Z:B.a6e,s,s,s),p=r!=null?A.P(A.buI(r,a),s,s,s,s,s,s,s):s +return A.bI(!1,s,s,s,!0,s,s,!1,s,q,s,s,new A.asB(a,r,b),!1,s,s,s,s,p,s,A.P(A.A(a,B.h,t.J).gl8(),s,s,s,s,s,s,s),s,s)}} +A.asB.prototype={ +$0(){return A.fe(new A.asA(this.b,this.c),this.a,t.z)}, +$S:0} +A.asA.prototype={ +$1(a){var s=A.A(a,B.h,t.J).gl8(),r=this.a +if(r==null)r=B.iz +return A.uD(null,new A.asy(a),new A.asz(this.b,a),B.E3,s,r,t.jm)}, +$S:941} +A.asy.prototype={ +$1(a){return A.buI(a,this.a)}, +$S:942} +A.asz.prototype={ +$1(a){return this.aes(a)}, +aes(a){var s=0,r=A.y(t.H),q=this,p +var $async$$1=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:J.eW(q.a.ae(0,$.arF().gcb(),t.XJ),a) +p=q.b +if(p.e!=null)A.du(p,!1).dO(null) +return A.w(null,r)}}) +return A.x($async$$1,r)}, +$S:943} +A.aeb.prototype={} +A.zk.prototype={ +aO(){return this.f_(0,B.a0N)}} +A.zl.prototype={ +aO(){return this.ab7(0,B.a1i,!1)}} +A.a9d.prototype={ +aB(a,b){var s,r,q=null,p=b.N($.AO(),t.bo),o=b.N($.HZ(),t.u),n=o===!0 +o=A.P(A.A(a,B.h,t.J).gkS(),q,q,q,q,q,q,q) +s=n&&p!=null?A.P(B.f.l(p),q,q,q,q,q,q,q):q +r=A.buu(q,q,q,!1,B.D,q,q,q,q,q,q,new A.aUe(b),q,q,q,q,q,q,q,q,n) +return A.bI(!1,q,q,q,!0,q,q,!1,q,B.a7n,q,q,n?new A.aUf(a,p):q,!1,q,q,q,q,s,q,o,r,q)}} +A.aUe.prototype={ +$1(a){J.eW(this.a.ae(0,$.HZ().gcb(),t.Qm),a)}, +$S:7} +A.aUf.prototype={ +$0(){return A.fe(new A.aUd(this.b),this.a,t.z)}, +$S:0} +A.aUd.prototype={ +$1(a){return new A.EH(this.a,null)}, +$S:944} +A.EH.prototype={ +aB(a,b){var s,r,q,p=null,o=this.f +o=J.cU(o==null?"":o) +o=$.bb.bz(new A.mH(o,p),t.QX) +s=t.J +r=A.P(A.A(a,B.h,s).gkS(),p,p,p,p,p,p,p) +q=A.a([$.bAF()],t.VS) +q=A.Fm(!0,B.c3,!0,p,!0,B.C,p,A.WY(),o,p,p,p,p,2,A.tZ(p,B.eB,p,p,B.a1,p,p,p,!0,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,A.A(a,B.h,s).glU(),p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p,p),B.D,!0,p,!0,p,!1,p,q,p,B.asq,p,5,p,1,p,p,!1,"\u2022",p,p,p,new A.aUb(this,o,b,a),p,p,!1,p,!0,p,B.dK,p,p,B.cd,B.bS,p,p,p,p,p,p,B.b2,p,B.eb,p,p,p,p) +s=A.A(a,B.h,s) +return A.l2(A.a([B.e5,A.x2(!1,A.P(s.giv(s),p,p,p,p,p,p,p),B.n,p,p,p,p,p,new A.aUc(this,o,b,a),p,p)],t.p),q,p,r)}} +A.aUb.prototype={ +$1(a){var s=A.me(this.b.a.a,null) +J.eW(this.c.ae(0,$.AO().gcb(),t.Ev),s) +A.du(this.d,!1).dO(null)}, +$S:25} +A.aUc.prototype={ +$0(){var s=A.me(this.b.a.a,null) +J.eW(this.c.ae(0,$.AO().gcb(),t.Ev),s) +A.du(this.d,!1).dO(null)}, +$S:0} +A.amx.prototype={} +A.amw.prototype={} +A.zm.prototype={ +aO(){var s=A.abx() +return this.ab7(0,B.a1b,s.gBe(s))}} +A.a9f.prototype={ +aB(a,b){var s,r=null,q=b.N($.I_(),t.v),p=A.P(A.A(a,B.h,t.J).gkT(),r,r,r,r,r,r,r) +if(!(q==null||q.length===0)){q.toString +s=A.P(q,r,r,r,r,r,r,r)}else s=r +return A.bI(!1,r,r,r,!0,r,r,!1,r,B.xY,r,r,new A.aUl(a,q),!1,r,r,r,r,s,r,p,r,r)}} +A.aUl.prototype={ +$0(){return A.fe(new A.aUk(this.b),this.a,t.z)}, +$S:0} +A.aUk.prototype={ +$1(a){return new A.EJ(this.a,null)}, +$S:945} +A.EJ.prototype={ +a4Y(a,b,c){var s=B.c.hT(b,"/")?B.c.S(b,0,b.length-1):b +J.eW(c.ae(0,$.I_().gcb(),t.Tb),s)}, +aB(a,b){var s=null,r=$.bb.bz(new A.mH(this.f,s),t.QX),q=t.J,p=A.P(A.A(a,B.h,q).gkT(),s,s,s,s,s,s,s),o=A.Fm(!0,B.c3,!0,s,!0,B.C,s,A.WY(),r,s,s,s,s,2,A.tZ(s,B.eB,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,A.A(a,B.h,q).glV(),s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s),B.D,!0,s,!0,s,!1,s,s,s,s,s,s,s,1,s,s,!1,"\u2022",s,s,s,new A.aUi(this,r,b,a),s,s,!1,s,!0,s,B.dK,s,s,B.cd,B.bS,s,s,s,s,s,s,B.b2,s,B.eb,s,s,s,s) +q=A.A(a,B.h,q) +return A.l2(A.a([B.e5,A.x2(!1,A.P(q.giv(q),s,s,s,s,s,s,s),B.n,s,s,s,s,s,new A.aUj(this,r,b,a),s,s)],t.p),o,s,p)}} +A.aUi.prototype={ +$1(a){var s=this +s.a.a4Y(0,s.b.a.a,s.c) +A.du(s.d,!1).dO(null)}, +$S:25} +A.aUj.prototype={ +$0(){var s=this +s.a.a4Y(0,s.b.a.a,s.c) +A.du(s.d,!1).dO(null)}, +$S:0} +A.amz.prototype={} +A.OB.prototype={ +A(a){var s=this,r=null,q=s.e,p=s.y.$1(q),o=A.h3(s.d,r,r,r),n=A.P(s.c,r,r,r,r,r,r,r),m=A.dh(r,r,B.xQ,r,new A.aVl(s),r,r,r,r,r) +return A.bI(!1,r,!1,r,!0,r,r,!0,r,o,r,r,r,!1,r,r,r,r,A.db(A.a([A.dN(A.bue(r,p,s.x,s.r,new A.aVm(s),q),1),A.P(p,r,r,r,r,r,r,r)],t.p),B.w,B.z,B.O),r,n,m,r)}, +geD(a){return this.d}} +A.aVl.prototype={ +$0(){var s=this.a +return s.f.$1(s.w)}, +$S:0} +A.aVm.prototype={ +$1(a){return this.a.f.$1(a)}, +$S:47} +A.wh.prototype={ +aO(){return this.tG(0,B.a0O,B.zy)}} +A.u5.prototype={ +aPI(a){var s,r=t.N +r=A.I(r,r) +s=a.geW() +if(!(s==null||s.length===0)){s=a.geW() +s.toString +r.n(0,"countryCode",s)}s=a.ge0(a) +if(s.length!==0)r.n(0,"languageCode",a.ge0(a)) +s=a.b +if(!(s==null||s.length===0)){s.toString +r.n(0,"scriptCode",s)}return r}, +aJu(a){var s,r,q,p="languageCode" +if(!t.a.b(a)||J.b7(a,p)==null)s=null +else{s=J.aj(a) +r=s.i(a,p) +r.toString +r=J.cU(r) +q=s.i(a,"scriptCode") +q=q==null?null:J.cU(q) +s=s.i(a,"countryCode") +s=new A.di(r,q,s==null?null:J.cU(s))}return s}, +aO(){return this.aL9(0,B.a0X,this.gaJt(),this.gaPH())}} +A.bhV.prototype={ +$0(){this.a.aI(0)}, +$S:0} +A.a7D.prototype={ +$1(a){return A.blo(a)}, +$0(){return this.$1(null)}, +fF(a){return A.blo(a.dy)}, +gf9(){return null}} +A.Nh.prototype={ +bI(a){var s=null,r=t.B +return new A.akP(s,!1,this,A.a([],t.gu),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K))}, +k(a,b){if(b==null)return!1 +return b instanceof A.Nh&&b.dy==this.dy}, +gu(a){var s=A.bwo(A.bwo(0,A.cS(A.p(this))),J.T(this.dy)) +s=s+((s&67108863)<<3)&536870911 +s^=s>>>11 +return s+((s&16383)<<15)&536870911}} +A.aOT.prototype={ +$1(a){return A.bX9(t.Yb.a(a),this.a)}, +$S:948} +A.Ni.prototype={} +A.akP.prototype={} +A.aeg.prototype={} +A.aie.prototype={} +A.apW.prototype={} +A.E4.prototype={ +TT(a,b,c){var s,r,q,p,o,n,m,l=null +A.zC(B.as5,l) +s=A.B(a) +r=A.B(a).ax.CW +q=r +p=A.b6("appBarColor") +o=A.B(a).ax +r=A.B(a).RG.a +if(r==null)r=o.a===B.S?o.cy:o.b +p.b=r +A.iX(p.aH()) +n=A.K(153,q.gj(q)>>>16&255,q.gj(q)>>>8&255,q.gj(q)&255) +m=s.ax.a===B.S?B.a2:B.S +return A.bjq(new A.a9_(c,l),new A.mp(n,B.E,m,!1,l,l,l,!1),t.lu)}} +A.EO.prototype={ +TT(a,b,c){return new A.a9l(c,null)}} +A.CJ.prototype={ +acZ(a,b,c){return"/library"}} +A.u7.prototype={ +wR(a,b){var s=null +return A.bt4(s,new A.a3A(this.a,s),s,s,s,t.H)}} +A.FJ.prototype={ +wR(a,b){return B.ang}} +A.Bg.prototype={ +wR(a,b){return B.anj}} +A.C3.prototype={ +wR(a,b){return B.anh}} +A.Dv.prototype={ +wR(a,b){return B.ani}} +A.iO.prototype={ +aB(a,b){return new A.a3X(this.a,this.b,null)}} +A.FI.prototype={ +aB(a,b){return B.azi}} +A.tQ.prototype={ +aB(a,b){var s=this.a +return new A.a2l(s,new A.bS(s,t._b))}} +A.kM.prototype={ +aB(a,b){var s=this,r=s.a +return new A.aa3(r,s.b,s.c,s.d,new A.bS(r,t.O))}} +A.EX.prototype={ +aB(a,b){return new A.aa6(this.a,null)}} +A.AT.prototype={ +aB(a,b){return B.PP}} +A.ig.prototype={ +wR(a,b){var s=this,r=null +return A.bGt(r,new A.a7O(s.a,s.b,s.e,r),b.y,r,r,B.bC,B.bC,new A.aPn(s),t.H)}} +A.aPn.prototype={ +$4(a,b,c,d){var s=this.a,r=s.c===!0,q=r?0:1,p=B.i.U(0,new A.m(q,r?1:0)) +if(s.d===!0)p=p.av(0,-1) +s=t.Ni +return A.Oz(d,new A.ax(b,new A.aR(p,B.i,s),s.h("ax")),null,!0)}, +$C:"$4", +$R:4, +$S:314} +A.EM.prototype={ +aB(a,b){return B.aqw}} +A.D9.prototype={ +aB(a,b){return B.a8k}} +A.C9.prototype={ +aB(a,b){return B.a2F}} +A.EI.prototype={ +aB(a,b){return B.aqh}} +A.Ec.prototype={ +aB(a,b){return B.apr}} +A.B1.prototype={ +aB(a,b){return B.PW}} +A.Cy.prototype={ +aB(a,b){return B.a5a}} +A.Bh.prototype={ +aB(a,b){return B.Rl}} +A.B9.prototype={ +aB(a,b){return B.Q1}} +A.arm.prototype={ +$1(a){var s=A.bis(this.a) +return A.bP(a).uf(0,s,null)}, +$S:84} +A.aro.prototype={ +$1(a){var s=A.ej("/updates",null) +return A.bP(a).uf(0,s,null)}, +$S:84} +A.ark.prototype={ +$1(a){var s=A.ej("/browse",null) +return A.bP(a).uf(0,s,null)}, +$S:84} +A.arl.prototype={ +$1(a){var s=A.ej("/downloads",null) +return A.bP(a).uf(0,s,null)}, +$S:84} +A.arn.prototype={ +$1(a){var s=A.ej("/more",null) +return A.bP(a).uf(0,s,null)}, +$S:84} +A.bfi.prototype={ +$1(a){return J.j(a.b,this.a)}, +$S(){return this.b.h("q(aS<0,h>)")}} +A.a9R.prototype={ +aB(a,b){var s=null,r=b.N($.bDR(),t.aq),q=b.N($.arF(),t.YX),p=b.N($.bp2(),t.x5),o=b.N($.biN(),t.GL),n=b.N($.boU(),t.u),m=A.bHY(),l=A.bI9(s,s,s,s,!0,s,0,s,s,s,s,s,s,s,s,s,!1,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,o,s,s,s,s,s,s,s,!1,!1,s,s,s,s,s,!1,!0,s,!0,!0,6,s).gadQ().a8N(B.OO),k=A.bI8(s,s,s,s,!0,s,0,s,s,s,n===!0,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,s,o,s,s,s,s,s,s,s,!1,!1,s,s,s,s,s,!1,!0,s,!0,!0,6,s).gadQ().a8N(B.OO),j=q==null?B.iz:q +return new A.Do(r,m,new A.aVN(),l,k,j,p,B.a8t,B.Ef,!1,s)}} +A.aVN.prototype={ +$1(a){return A.A(a,B.h,t.J).gl9()}, +$S:69} +A.at7.prototype={ +$2(a,b){var s=this.a,r=s.b +r===$&&A.b() +r.vK() +s.Hx(J.cU(a))}, +$S:26} +A.atb.prototype={ +$0(){return A.bpV(this.a,this.b,this.c)}, +$S:0} +A.atc.prototype={ +$1(a){var s=null +return A.e9(A.eB(s,s,s,s,s,s,s),s,a,s,s,s,!0,!1,!1,s,s)}, +$S:128} +A.atd.prototype={ +$2(a,b){var s,r=this,q=null,p=r.a.a,o=r.b?A.A(r.c,B.h,t.J).gjQ():J.cU(a),n=r.d +if(n!=null){s=A.A(r.c,B.h,t.J) +n=A.eP(!1,A.P(s.gfi(s),q,q,q,q,q,q,q),B.n,q,q,q,q,q,n,q,q)}else n=q +return A.B0(p,A.i5(n,o))}, +$S:951} +A.ate.prototype={ +$0(){return A.B0(this.a.a,B.ee)}, +$S:952} +A.at8.prototype={ +$1(a){return A.XX(this.a.$1(a),this.c)}, +$S(){return this.c.h("@<0>").V(this.b).h("fX<1>(2)")}} +A.at9.prototype={ +$2(a,b){return A.Ir(a,b,this.a)}, +$S(){return this.a.h("eC<0>(C,cw)")}} +A.ata.prototype={ +$0(){return A.bjr(this.a)}, +$S(){return this.a.h("f3<0>()")}} +A.aJT.prototype={ +$2(a,b){if(b!=null)this.a.n(0,a,b)}, +$S(){return this.b.h("@<0>").V(this.c).h("~(1,2)")}} +A.H0.prototype={ +a8(){var s=this.$ti +return new A.T8(s.h("@<1>").V(s.z[1]).h("T8<1,2>"))}} +A.T8.prototype={ +gqH(a){var s,r,q,p,o,n,m,l=this,k=l.d +if(k===$){s=l.c +r=s.b +s=s.c +q=l.$ti +p=A.a([],t.WL) +o=A.a([],q.h("H<~(1)>")) +n=q.h("@<1>").V(q.z[1]) +m=$.aH() +l.d!==$&&A.aq() +k=l.d=new A.qS(new A.bd(p,t.Zo),new A.bd(o,q.h("bd<~(1)>")),s,r,new A.jl(null,null,r,n.h("jl<1,2>")),m,n.h("qS<1,2>"))}return k}, +A(a){return this.gqH(this)}, +m(){var s=this.gqH(this) +s.x=s.w=null +s.eK() +return null}} +A.ey.prototype={ +Z2(a,b,c){var s +if(c)A.tO(new A.b_6(this,b),t.H) +else{s=this.b +s===$&&A.b() +s.Ou(A.blS(null,b),B.pH)}}, +rK(a,b){return this.Z2(a,b,!1)}, +Hx(a){var s=this.b +s===$&&A.b() +return s.Ou(A.blS(B.a_4,a),B.axz)}} +A.b_6.prototype={ +$0(){var s=this.a.b +s===$&&A.b() +return s.Ou(A.blS(null,this.b),B.pH)}, +$S:0} +A.ab7.prototype={ +A(a){var s=null,r=A.P(this.c,s,s,s,s,A.hb(s,s,B.l,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s),B.eS,s),q=this.e +if(q==null)q=B.aa +return A.cQ(s,r,B.n,s,s,new A.dU(q,s,s,B.cW,s,s,B.aK),s,s,s,B.n5,s)}, +geD(){return null}} +A.ab5.prototype={ +$1(a){return A.eD(a)}, +fF(a){return A.eD(a.dy)}, +gf9(){return null}} +A.PF.prototype={ +bI(a){var s=null,r=t.B +return new A.aoe(s,!1,this,A.a([],t.nd),A.a([],r),A.a([],t._),A.a([],r),A.cA(s,s,s,t.M,t.K))}, +k(a,b){if(b==null)return!1 +return b instanceof A.PF&&b.dy===this.dy}, +gu(a){var s=A.bwm(A.bwm(0,A.cS(A.p(this))),A.cS(this.dy)) +s=s+((s&67108863)<<3)&536870911 +s^=s>>>11 +return s+((s&16383)<<15)&536870911}} +A.b_3.prototype={ +$1(a){var s,r,q +t.W_.a(a) +s=this.a +r=new A.ey(s) +q=$.bAD() +q.a=s +r.b=q +return r}, +$S:953} +A.PG.prototype={} +A.aoe.prototype={} +A.aqx.prototype={} +A.aV.prototype={ +VO(a,b,c,d,e){var s=this,r=s.gxX().N($.bj3(),t.cZ) +s.dv$!==$&&A.ck() +s.dv$=r +s.du$!==$&&A.ck() +s.du$=b.b +r=d==null?b.c:d +s.e4$!==$&&A.ck() +s.e4$=r +s.eb$!==$&&A.ck() +s.eb$=e +s.ec$!==$&&A.ck() +s.ec$=c +s.S5(s.gxX()) +r=s.gaC3(s) +if(r==null){r=s.e4$ +r===$&&A.b()}return r}, +f_(a,b){return this.VO(a,b,null,null,null)}, +ab7(a,b,c){return this.VO(a,b,null,c,null)}, +aL9(a,b,c,d){return this.VO(a,b,c,null,d)}, +bZ(a,b){this.sd0(0,b) +return b}, +gaC3(a){var s,r,q=this,p=q.dv$ +p===$&&A.b() +s=q.du$ +s===$&&A.b() +r=J.b7(p.a,s) +p=q.ec$ +p===$&&A.b() +if(p!=null)return p.$1(B.az.v1(0,J.cU(r),null)) +if(r!=null&&t.j.b(r)){p=J.cx(r,new A.aUz(),t.N) +return A.l(q).h("aV.T?").a(A.a8(p,!0,A.l(p).h("av.E")))}if(A.l(q).h("aV.T?").b(r))p=r +else{p=q.e4$ +p===$&&A.b()}return p}, +S5(a){return a.abR(new A.aUA(this))}, +qu(a){var s=0,r=A.y(t.y),q,p=this,o,n,m +var $async$qu=A.u(function(b,c){if(b===1)return A.v(c,r) +while(true)switch(s){case 0:if(a==null){o=p.dv$ +o===$&&A.b() +n=p.du$ +n===$&&A.b() +q=o.E(0,n) +s=1 +break}o=p.eb$ +o===$&&A.b() +if(o!=null){n=p.dv$ +n===$&&A.b() +m=p.du$ +m===$&&A.b() +n.wz("String",m,B.az.xe(o.$1(a),null))}s=A.jA(a)?3:5 +break +case 3:o=p.dv$ +o===$&&A.b() +n=p.du$ +n===$&&A.b() +s=6 +return A.t(o.wz("Bool",n,a),$async$qu) +case 6:q=c +s=1 +break +s=4 +break +case 5:s=typeof a=="number"?7:9 +break +case 7:o=p.dv$ +o===$&&A.b() +n=p.du$ +n===$&&A.b() +s=10 +return A.t(o.wz("Double",n,a),$async$qu) +case 10:q=c +s=1 +break +s=8 +break +case 9:s=A.j2(a)?11:13 +break +case 11:o=p.dv$ +o===$&&A.b() +n=p.du$ +n===$&&A.b() +s=14 +return A.t(o.wz("Int",n,a),$async$qu) +case 14:q=c +s=1 +break +s=12 +break +case 13:s=typeof a=="string"?15:17 +break +case 15:o=p.dv$ +o===$&&A.b() +n=p.du$ +n===$&&A.b() +s=18 +return A.t(o.wz("String",n,a),$async$qu) +case 18:q=c +s=1 +break +s=16 +break +case 17:s=t.yp.b(a)?19:20 +break +case 19:o=p.dv$ +o===$&&A.b() +n=p.du$ +n===$&&A.b() +s=21 +return A.t(o.wz("StringList",n,a),$async$qu) +case 21:q=c +s=1 +break +case 20:case 16:case 12:case 8:case 4:q=!1 +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$qu,r)}} +A.aUz.prototype={ +$1(a){return J.cU(a)}, +$S:36} +A.aUA.prototype={ +$2(a,b){return this.a.qu(b)}, +$S(){return A.l(this.a).h("~(aV.T?,aV.T?)")}} +A.eb.prototype={ +tG(a,b,c){var s,r,q,p=this +p.p_$=p.gxX().N($.bj3(),t.cZ) +p.oZ$=b.b +p.qO$=b.c +p.pU$=c +p.S5(p.gxX()) +s=p.p_$ +s===$&&A.b() +r=p.oZ$ +r===$&&A.b() +r=A.bw(J.b7(s.a,r)) +s=p.pU$ +s===$&&A.b() +q=s.length +if(r!=null&&r>=0&&r<=q-1){r.toString +s=s[r]}else s=p.qO$ +return s}, +qu(a){var s,r,q=this +if(a==null){s=q.p_$ +s===$&&A.b() +r=q.oZ$ +r===$&&A.b() +return s.E(0,r)}s=q.p_$ +s===$&&A.b() +r=q.oZ$ +r===$&&A.b() +return s.wz("Int",r,a)}, +S5(a){return a.abR(new A.aUB(this))}} +A.aUB.prototype={ +$2(a,b){var s,r=this.a +if(b==null)s=null +else{s=r.pU$ +s===$&&A.b() +s=B.b.eZ(s,b)}return r.qu(s)}, +$S(){return A.l(this.a).h("~(eb.T?,eb.T?)")}} +A.F1.prototype={} +A.tx.prototype={ +y9(a,b,c,d,e,f,g){return this.rZ(d,new A.ayD(this,b,e,null,c,null),f,g)}, +ot(a,b,c,d,e,f){return this.y9(a,b,c,d,null,e,f)}, +Y6(a,b,c,d,e){return this.y9(a,b,null,c,null,d,e)}, +H_(a,b,c,d,e){return this.y9(a,b,c,null,null,d,e)}, +ru(a,b,c,d){return this.y9(a,b,null,null,null,c,d)}, +Nb(a,b,c,d,e,f,g){return this.rZ(d,new A.ayF(this,a,c,e,null,b,null,null),f,g)}, +WX(a,b,c,d,e){return this.Nb(a,b,c,null,null,d,e)}, +acA(a,b,c,d){return this.Nb(a,null,b,null,null,c,d)}, +aO8(a,b,c,d,e){return this.Nb(a,null,b,c,null,d,e)}, +N4(a,b,c,d,e){var s=null +return this.rZ(s,new A.ayE(this,a,c,s,s,b,s,s),d,e)}, +N3(a,b,c){return this.N4(a,null,null,b,c)}, +aNV(a,b,c,d){return this.N4(a,null,b,c,d)}, +aOg(a,b,c,d,e,f){var s=null +return this.rZ(s,new A.ayG(this,b,d,s,s,c,s,s),e,f)}, +a9s(a,b,c,d,e,f,g,h,i){return this.rZ(e,new A.ayC(this,b,d,g,f,c),h,i)}, +A6(a,b,c,d){return this.a9s(a,b,null,null,null,null,null,c,d)}, +aI3(a,b,c,d,e){return this.a9s(a,b,c,null,null,null,null,d,e)}, +rZ(a,b,c,d){return this.asy(a,b,c,d,c.h("fy<0?>"))}, +asy(a0,a1,a2,a3,a4){var s=0,r=A.y(a4),q,p=2,o,n=this,m,l,k,j,i,h,g,f,e,d,c,b,a +var $async$rZ=A.u(function(a5,a6){if(a5===1){o=a6 +s=p}while(true)switch(s){case 0:p=4 +s=7 +return A.t(a1.$0(),$async$rZ) +case 7:m=a6 +l=null +s=a0!=null?8:10 +break +case 8:s=11 +return A.t(n.Ds(a0,m.a,a2,a3),$async$rZ) +case 11:l=a6 +s=9 +break +case 10:if(a2.h("0?").b(m.a))l=m.a +case 9:j=m +i=l +if(i==null){i=j.a +i=a2.h("0?").b(i)?i:null}h=j.e +g=j.b +f=j.f +e=j.c +d=j.d +c=j.r +j=j.w +j=A.a8w(i,j,h,f,c,g,e,d,a2) +q=j +s=1 +break +p=2 +s=6 +break +case 4:p=3 +a=o +j=A.ak(a) +if(j instanceof A.hJ){k=j +throw A.c(A.bGS(k))}else throw A.c("Unexpected error occurred") +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$rZ,r)}, +Ds(a,b,c,d){return this.aAz(a,b,c,d,c.h("0?"))}, +aAz(a,b,c,d,e){var s=0,r=A.y(e),q,p,o +var $async$Ds=A.u(function(f,g){if(f===1)return A.v(g,r) +while(true)switch(s){case 0:p=c.h("0?") +s=t.j.b(b)?3:5 +break +case 3:o=p +s=6 +return A.t(A.WJ(new A.ayB(a,d),b,null,t.z,d.h("f<0>")),$async$Ds) +case 6:q=o.a(g) +s=1 +break +s=4 +break +case 5:o=p +s=7 +return A.t(A.WJ(a,b,null,t.a,d),$async$Ds) +case 7:q=o.a(g) +s=1 +break +case 4:case 1:return A.w(q,r)}}) +return A.x($async$Ds,r)}} +A.ayD.prototype={ +$0(){var s=this +return s.a.a.aP3(0,s.b,s.e,null,s.f,A.a0X("GET",s.d),s.c,t.z)}, +$S:101} +A.ayF.prototype={ +$0(){var s=this +return s.a.a.y0(0,s.b,s.f,s.c,s.w,s.r,A.a0X("POST",s.e),s.d,t.z)}, +$S:101} +A.ayE.prototype={ +$0(){var s=this +return s.a.a.y0(0,s.b,s.f,s.c,s.w,s.r,A.a0X("PATCH",s.e),s.d,t.z)}, +$S:101} +A.ayG.prototype={ +$0(){var s=this +return s.a.a.y0(0,s.b,s.f,s.c,s.w,s.r,A.a0X("PUT",s.e),s.d,t.z)}, +$S:101} +A.ayC.prototype={ +$0(){var s=this +return s.a.a.aP2(0,s.b,s.f,s.c,A.a0X("DELETE",s.e),s.d,t.z)}, +$S:101} +A.ayB.prototype={ +$1(a){var s,r,q=A.a([],this.b.h("H<0>")) +for(s=J.al(a),r=this.a;s.v();)q.push(r.$1(s.gG(s))) +return q}, +$S(){return this.b.h("f<0>(@)")}} +A.BZ.prototype={ +aOa(a,b,c,d,e,f){var s=null,r=A.a([401,403],t.t),q=new A.a34(A.a([B.Sh],t.i6)),p=new A.atE(A.bTo()),o=new A.ayH($,q,$,p,!1),n=t.N,m=t.z,l=new A.atT($,$,s,"GET",!1,s,s,B.fS,A.bzd(),!0,A.I(n,m),!0,5,!0,s,s,B.jR) +l.a_e(s,s,s,s,s,s,s,s,!1,s,s,s,s,B.fS,s,s) +l.EY$=A.I(n,m) +l.ve$="" +l.sUa(s) +n=l +o.Lz$=n +o.aa2$=new A.auM(A.aW(t.Gf)) +p.a=A.bWA() +n.ve$=A.aBr(a,!0,c,f) +n.sUa(B.vb) +n.e=B.vb +n.sUc(0,"application/json") +n.saaW(0,A.am(["Content-Type","application/json; charset=utf-8"],t.N,t.z)) +e.toString +q.F(q,new A.JP(new A.avj(B.r8,r,B.a1Y,B.ra,e),e)) +q.F(q,new A.a35(new A.az_(b,d),s,s,s)) +return o}} +A.az_.prototype={ +$2(a,b){var s,r +if(this.a===B.iS){s=this.b +if(!(s==null||s.length===0)){r=a.b +r===$&&A.b() +r.cK(0,"Authorization",new A.ayZ(s))}}return b.fs(0,a)}, +$S:73} +A.ayZ.prototype={ +$0(){return this.a}, +$S:114} +A.XW.prototype={ +A(a){var s=this,r=null,q=s.d,p=$.bb.bz(new A.dc(q,r,t.Kr),t.G) +$.bb.bz(new A.dK(new A.asN(s,p),[q]),t.H) +q=p.gj(p) +return A.Bo(r,B.jS,r,r,new A.asO(s,p),r,s.f,!1,q)}} +A.asN.prototype={ +$0(){this.b.sj(0,this.a.d) +return null}, +$S:4} +A.asO.prototype={ +$1(a){var s=a===!0 +this.b.sj(0,s) +this.a.e.$1(s)}, +$S:34} +A.Y0.prototype={ +A(a){var s,r,q=this,p=q.d,o=$.bb.bz(new A.dc(p,null,t.Kr),t.G) +$.bb.bz(new A.dK(new A.at5(q,o),[p]),t.H) +p=o.gj(o)?null:q.z +s=o.gj(o) +s=!s?q.w:q.f +r=o.gj(o) +r=!r?q.x:q.r +return A.bdf(s,r,new A.at6(q,o),p)}} +A.at5.prototype={ +$0(){this.b.sj(0,this.a.d) +return null}, +$S:4} +A.at6.prototype={ +$0(){var s=this.b +s.sj(0,!s.gj(s)) +this.a.e.$0()}, +$S:0} +A.JC.prototype={ +aB(a,b){var s,r=this,q=null,p=b.N(r.f,t.u),o=A.B(a),n=r.w +if(n)s=p +else s=p!==!1 +return A.Bo(o.dy,B.fq,q,q,r.r,q,A.P(r.e,q,q,q,q,q,q,q),n,s)}} +A.q8.prototype={ +A(a){var s=null,r=t.l +return A.eH(A.cZ(B.OF,A.aY(a,s,r).w.a.b*0.35,A.aY(a,s,r).w.a.a*0.35),s,s)}} +A.a9S.prototype={ +A(a){var s=null,r=A.B(a),q=A.B(a) +return A.bu2(r.ax.CW,A.CN(new A.mR("assets/icons/dark_icon.png",s,s),s,s),q.dy)}} +A.a60.prototype={ +A(a){var s=null +return new A.b4(B.bh,new A.fB(16,16,A.bqm(s,this.c,s,s,s,0,s,3,this.d,s),s),s)}} +A.Cg.prototype={ +A(a){var s,r=null,q=A.P($.bb.bz(new A.hz(new A.aBn(),B.cM,t.Nb),t.N),r,r,r,r,A.B(a).p3.b,B.eS,r) +q=A.a([q,B.jB],t.p) +s=this.d +if(s.length!==0)q.push(A.P(s,3,B.ad,r,r,A.B(a).p3.w,B.eS,r)) +s=this.f +if(s!=null)q.push(s) +return new A.b4(B.bh,A.eH(A.cP(q,B.w,B.dq,B.ah),r,r),r)}} +A.aBn.prototype={ +$0(){var s=B.ad8[B.hc.xL(6)] +s.toString +return s}, +$S:15} +A.qM.prototype={ +A(a){var s,r,q,p,o,n,m,l,k=this,j=null,i=k.d +if(i==null)i=new A.aJf(k,a) +s=k.w?A.bkU(k.c,j,k.f):j +r=k.r +if(r){q=k.c +p=q.ghm(q) +q=p==null?q.gzI():p +q=A.bI(!1,B.bW,!0,j,!0,j,j,!1,j,j,j,j,j,!1,j,j,j,j,j,j,A.P(q==null?"":q,2,B.ad,j,j,j,j,j),j,j)}else q=j +p=k.c +o=p.gqc() +if(!(o==null||o.length===0)){o=A.bq1(A.B(a).as,0) +if(k.x){n=A.B(a).as +n=A.a([new A.cd(0,B.a4,A.K(B.e.bg(127.5),n.gj(n)>>>16&255,n.gj(n)>>>8&255,n.gj(n)&255),B.i,0)],t.c)}else n=j +if(r){r=A.B(a).as +r=A.K(0,r.gj(r)>>>16&255,r.gj(r)>>>8&255,r.gj(r)&255) +m=A.B(a).as +m=A.K(102,m.gj(m)>>>16&255,m.gj(m)>>>8&255,m.gj(m)&255) +l=A.B(a).as +l=new A.ub(B.a7,B.iN,B.cT,A.a([r,m,A.K(B.e.bg(229.5),l.gj(l)>>>16&255,l.gj(l)>>>8&255,l.gj(l)&255)],t.t_),j,j) +r=l}else r=j +p=p.gqc() +r=A.cQ(j,A.nF(!1,j,p==null?"":p,j,!1,j,j),B.n,j,j,j,new A.dU(j,j,o,j,n,r,B.aK),j,j,j,j)}else{r=t.l +p=A.aY(a,j,r).w +p=A.cZ(A.CN(new A.mR("assets/icons/dark_icon.png",j,j),j,A.aY(a,j,r).w.a.b*0.2),p.a.b*0.3,j) +r=p}return A.bIZ(!1,j,!0,A.q5(new A.a2s(s,q,r,j),B.bd,j,j,new A.cM(B.qB,B.u)),!1,j,!0,!1,j,j,j,B.iW,j,j,j,j,j,j,j,j,k.e,j,j,j,j,i,j,j,j,j,j,j,j,j)}} +A.aJf.prototype={ +$0(){var s=null,r=A.a([],t.Zt),q=$.ac,p=t.LR,o=t.zh,n=A.mf(B.bV),m=A.a([],t.wi),l=$.aH(),k=$.ac +return A.du(this.b,!1).Bj(new A.MD(new A.aJd(this.a),new A.aJe(),!1,!0,!0,!1,s,s,r,A.aW(t.kj),new A.bq(s,t.Ts),new A.bq(s,t.C),new A.p1(),s,0,new A.aD(new A.a7(q,p),o),n,m,B.fU,new A.bF(s,l,t.XR),new A.aD(new A.a7(k,p),o),t.vo),t.z)}, +$S:0} +A.aJd.prototype={ +$3(a,b,c){var s=this.a.c.gqc() +return new A.Dn(s==null?"":s,null)}, +$C:"$3", +$R:3, +$S:955} +A.aJe.prototype={ +$4(a,b,c,d){var s=t.Ni +return A.Oz(d,new A.ax(A.c5(B.aO,b,null),new A.aR(B.oz,B.i,s),s.h("ax")),null,!0)}, +$C:"$4", +$R:4, +$S:314} +A.Dm.prototype={ +A(a){var s,r,q,p,o,n,m,l=this,k=null,j=l.c,i=j.gfS(j) +i=i==null?k:i.ghb(i) +if(i==null)i=A.A(a,B.h,t.J).gom() +s=A.cZ(A.bkW(j,k,k,!1,!1,!1,!1),160,120) +r=l.w!=null?new A.aJc(l):k +q=j.ghm(j) +if(q==null)q=A.A(a,B.h,t.J).gol() +p=A.B(a) +r=A.jg(!1,k,!0,A.P(q,2,B.ad,j.ghm(j),k,p.p3.r,k,k),k,!0,k,k,k,k,k,k,k,k,k,r,k,k,k,k,k,k,k) +p=j.gzI() +q=p==null?A.A(a,B.h,t.J).goj():p +q=A.P(q,k,B.ad,k,k,A.B(a).p3.Q,k,k) +p=t.p +o=A.a([],p) +if(j.gaP(j)!=null){n=j.gaP(j).c +m=A.B(a).p3.Q +B.b.I(o,A.a([A.h3(n,m==null?k:m.b,k,16),A.P(" "+j.gaP(j).h6(a),k,k,k,k,A.B(a).p3.Q,k,k)],p))}n=j.gfS(j) +if((n==null?k:n.ghb(n))!=null)o.push(A.P(" \u2022 "+i,k,k,k,k,A.B(a).p3.Q,k,k)) +i=A.a([r,new A.b4(B.a2l,q,k),A.b0S(B.iH,o,B.aBn,0,0)],p) +if(l.d)i.push(A.aY(a,k,t.l).w.a.a>=600?new A.a3V(j,!0,k):A.bkU(j,B.cF,!0)) +return A.jg(!1,k,!0,new A.b4(B.bh,A.db(A.a([s,A.dN(new A.b4(B.bh,A.cP(i,B.dl,B.z,B.ah),k),3)],p),B.w,B.z,B.O),k),k,!0,k,k,k,k,k,k,k,k,l.r,l.f,k,k,k,k,k,k,k)}} +A.aJc.prototype={ +$0(){var s=this.a,r=s.w +r.toString +s=s.c +return r.$1(s.ghm(s))}, +$S:0} +A.ne.prototype={ +A(a){var s,r=this,q=null,p=r.c,o=p.gqc() +o=A.or(B.bv,A.nF(!1,q,o==null?"":o,q,!1,B.ara,q),B.bd) +s=p.ghm(p) +if(s==null)s=p.gzI() +o=A.a([new A.b4(B.bh,o,q),A.dN(new A.b4(B.bW,A.P(s==null?"":s,3,B.ad,q,q,q,q,q),q),1)],t.p) +o.push(A.bkU(p,q,r.f)) +return A.jg(!1,q,!0,A.db(o,B.w,B.z,B.O),q,!0,q,q,q,q,q,q,q,q,r.e,r.d,q,q,q,q,q,q,q)}} +A.x_.prototype={ +aO(){return this.f_(0,B.a1g)}} +A.zU.prototype={ +aO(){return this.f_(0,B.a1h)}} +A.agl.prototype={} +A.aoP.prototype={} +A.a3M.prototype={ +aB(a,b){var s,r,q,p,o,n,m,l=this,k=null,j=t.u,i=b.N($.biQ(),j),h=i!==!1 +j=b.N($.bj7(),j) +s=j!==!1 +j=l.w +if(j==null)j=B.bh +i=t.p +r=A.a([],i) +q=l.r +if(!q){p=l.e.gfL() +p=p===!0}else p=!1 +if(p)r.push(A.or(B.bv,new A.Dk(k,B.nw,A.B(a).ax.b,A.B(a).ax.c,k),B.bd)) +if(q){q=A.a([],i) +p=l.e +o=p.gu8() +if((o==null?!1:o>0)&&s){o=p.gu8() +if(o==null||B.f.gcZ(o))o=0 +else o.toString +q.push(new A.Dk(""+o,k,A.B(a).ax.b,A.B(a).ax.c,k))}o=p.gxb() +if((o==null?!1:o>0)&&h){p=p.gxb() +if(p==null||B.f.gcZ(p))p=0 +else p.toString +o=A.B(a).ax +n=o.y +o=n==null?o.f:n +n=A.B(a).ax +m=n.z +n=m==null?n.r:m +q.push(new A.Dk(""+p,k,o,n,k))}i=A.a([A.or(B.bv,A.db(q,B.w,B.z,B.ah),B.bd)],i) +B.b.I(r,i)}return new A.b4(j,A.db(r,B.w,B.z,B.ah),k)}} +A.Dk.prototype={ +A(a){var s=this,r=null,q=s.c,p=q==null||q.length===0,o=s.f +if(!p){q.toString +q=A.P(q,r,r,r,r,A.hb(r,r,o,r,r,r,r,r,r,r,r,r,r,r,r,r,r,!0,r,r,r,r,r,r,r,r),r,r)}else q=A.h3(s.d,o,r,16) +return A.q5(new A.b4(B.fj,q,r),r,s.e,B.a8,B.cS)}, +geD(a){return this.d}} +A.a3V.prototype={ +aB(a,b){var s,r,q,p,o,n,m=t.u,l=b.N($.biQ(),m),k=l!==!1 +m=b.N($.bj7(),m) +s=m!==!1 +m=t.p +l=A.a([],m) +r=A.a([],m) +q=this.e +p=q.gu8() +if((p==null?!1:p>0)&&s){p=t.J +o=A.A(a,B.h,p) +o.toString +n=q.gu8() +if(n==null||B.f.gcZ(n))n=0 +else n.toString +r.push(new A.LK(o.lx(n,A.A(a,B.h,p).gk9()),A.B(a).ax.b,A.B(a).ax.c,null))}p=q.gxb() +if((p==null?!1:p>0)&&k){p=t.J +o=A.A(a,B.h,p) +o.toString +q=q.gxb() +if(q==null||B.f.gcZ(q))q=0 +else q.toString +p=A.A(a,B.h,p) +p=o.lx(q,p.gfJ(p)) +q=A.B(a).ax +o=q.y +q=o==null?q.f:o +o=A.B(a).ax +n=o.z +r.push(new A.LK(p,q,n==null?o.r:n,null))}B.b.I(l,A.a([A.db(r,B.w,B.z,B.ah)],m)) +return new A.b4(B.cF,A.b0S(B.iH,l,B.q0,0,0),null)}} +A.LK.prototype={ +A(a){var s=null +return new A.b4(B.a2y,A.bjC(this.d,A.P(this.c,s,s,s,s,s,s,s),A.hb(s,s,this.e,s,s,s,s,s,s,s,s,s,s,s,s,s,s,!0,s,s,s,s,s,s,s,s)),s)}} +A.yi.prototype={ +Yo(){var s,r,q,p,o,n,m=A.I(this.$ti.c,t.y) +for(s=this.e,r=s.length,q=this.f,p=J.aj(q),o=0;o>")),m.h("bF>")) +$.bb.bz(new A.dK(new A.aLo(p,n),[p.f,p.e]),t.H) +s=A.P(p.d,o,o,o,o,o,o,o) +r=n.gj(n) +q=A.A(a,B.h,t.J) +return A.l2(A.a([B.e5,A.x2(!1,A.P(q.giv(q),o,o,o,o,o,o,o),B.n,o,o,o,o,o,new A.aLp(p,n),o,o)],t.p),new A.Bp(r,new A.aLq(p,n),p.w,o,o,m.h("Bp<1>")),B.cF,s)}} +A.aLo.prototype={ +$0(){this.b.sj(0,this.a.Yo()) +return null}, +$S:4} +A.aLq.prototype={ +$1(a){var s=this.b,r=s.gj(s) +J.j5(r,a.a,a.b) +s.sj(0,r)}, +$S(){return this.a.$ti.h("~(aS<1,q>)")}} +A.aLp.prototype={ +$0(){var s=this.b,r=s.gj(s) +s=this.a +s.r.$1(J.lT(J.iu(r),new A.aLn(s,r)).fO(0))}, +$S:0} +A.aLn.prototype={ +$1(a){var s=J.b7(this.b,a) +return s===!0}, +$S(){return this.a.$ti.h("q(1)")}} +A.Bp.prototype={ +a8(){return new A.QV(B.m,this.$ti.h("QV<1>"))}} +A.QV.prototype={ +aff(a,b,c){var s=null,r=b.a,q=B.f.l(J.T(r)),p=A.B(a),o=this.a.e.$1(r) +r=A.P(o==null?"MapEntry("+A.i(r)+": "+A.i(b.b)+")":o,s,s,s,s,s,s,s) +this.a.toString +return A.Bo(p.dy,B.jS,s,new A.bS(q,t.O),new A.b3w(c),s,r,!1,b.b)}, +A(a){var s=null,r=A.aY(a,s,t.l).w,q=J.Xg(this.a.c) +return new A.eX(new A.aN(0,1/0,0,r.a.b*0.7),A.nG(A.cP(q.ik(q,new A.b3v(this,a),t.l7).fO(0),B.w,B.z,B.ah),s,B.D,s,s,B.H),s)}} +A.b3w.prototype={ +$1(a){this.a.$1(a===!0)}, +$S:34} +A.b3v.prototype={ +$1(a){var s=this.a +return s.aff(this.b,a,new A.b3u(s,a))}, +$S(){return this.a.$ti.h("d(aS<1,q>)")}} +A.b3u.prototype={ +$1(a){var s=this.a +s.ad(new A.b3t(s,this.b,a))}, +$S:7} +A.b3t.prototype={ +$0(){var s=this.a +s.a.d.$1(new A.aS(this.b.a,this.c,s.$ti.h("aS<1,q>")))}, +$S:0} +A.uy.prototype={ +A(a){var s=null,r=this.c +if(r==null){r=A.A(a,B.h,t.J) +r=r.gdJ(r)}return A.eP(!1,A.P(r,s,s,s,s,s,s,s),B.n,s,s,s,s,s,new A.aNF(a),s,s)}} +A.aNF.prototype={ +$0(){A.du(this.a,!1).dO(null) +return null}, +$S:0} +A.hP.prototype={ +A(a){var s=this,r=null +return A.l2(B.ade,new A.yP(s.d,s.e,s.f,s.r,s.w,r,s.$ti.h("yP<1>")),B.cF,A.P(s.c,r,r,r,r,r,r,r))}} +A.yP.prototype={ +afI(a,b){var s,r=this,q=null,p=A.B(a),o=r.f.$1(b) +o=A.P(o==null?J.cU(b):o,q,q,q,q,q,q,q) +s=r.r +s=s!=null?A.P(s.$1(b),q,q,q,q,q,q,q):q +return A.bln(p.dy,r.d,new A.aOP(r),s,o,b,r.$ti.c)}, +A(a){var s=null,r=this.c,q=A.ab(r).h("ad<1,d>") +return new A.eX(new A.aN(0,1/0,0,A.aY(a,s,t.l).w.a.b*0.7),A.nG(A.cP(A.a8(new A.ad(r,new A.aOO(this,a),q),!0,q.h("av.E")),B.w,B.z,B.ah),s,B.D,s,s,B.H),s)}} +A.aOP.prototype={ +$1(a){if(a!=null)this.a.e.$1(a)}, +$S(){return this.a.$ti.h("~(1?)")}} +A.aOO.prototype={ +$1(a){return this.a.afI(this.b,a)}, +$S(){return this.a.$ti.h("d(1)")}} +A.r8.prototype={ +A(a){var s,r=this,q=null,p=$.bb.bz(new A.mH(r.e,q),t.QX),o=r.w!=null?A.dh(q,q,B.jD,q,new A.aTm(r),q,q,q,q,q):q,n=t.l +n=A.aY(a,q,n).w.a.a>=720?0.3*A.aY(a,q,n).w.a.a:q +s=r.d +if(s==null){s=A.A(a,B.h,t.J) +s=s.gkQ(s)}return A.cZ(new A.b4(B.n5,A.Fm(!0,B.c3,r.x,q,!0,B.C,q,A.WY(),p,q,q,q,q,2,A.tZ(q,B.eB,q,q,q,q,q,q,!0,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,q,!0,q,q,s,q,q,q,q,q,q,q,q,o,q,q,q,q),B.D,!0,q,!0,q,!1,q,q,q,q,q,q,q,1,q,q,!1,"\u2022",q,r.f,q,r.r,q,q,!1,q,!0,q,B.dK,q,q,B.cd,B.bS,q,q,q,q,q,q,B.b2,q,B.eb,q,q,q,q),q),q,n)}} +A.aTm.prototype={ +$0(){var s=this.a,r=s.w +if(r!=null)r.$0() +r=s.f +if(r!=null)r.$1(null) +s=s.r +if(s!=null)s.$1(null)}, +$S:0} +A.a9b.prototype={ +aB(a,b){var s,r,q,p,o,n,m,l=this,k=null,j=$.bb.bz(new A.dc(new A.kR(),k,t.o9),t.kV),i=b.N($.w5(),t.Wr),h=t.v,g=b.N($.HY(),h) +h=b.N($.I_(),h) +s=b.N($.AO(),t.bo) +r=b.N($.HZ(),t.u) +q=A.aBr(r===!0,l.x,h,s)+l.f +h=i===B.iS +if(h&&g!=null){s=t.N +p=A.am(["Authorization",g],s,s)}else p=k +o=h&&g!=null?B.a7y:B.a7x +h=j.gj(j) +s=l.r +r=s==null +n=r?k:s.b +m=$.biu() +s=r?k:s.a +r=l.w +if(r==null)r=B.QJ +return new A.IR(new A.tl(m,q,k,k,p,k,k,o),q,new A.aUa(l),new A.aU8(l,j),s,n,r,h)}} +A.aUa.prototype={ +$3(a,b,c){var s=this.a,r=s.y +r=r==null?null:r.$3(a,b,c) +if(r==null)r=B.ee +return A.B0(s.z,r)}, +$S:956} +A.aU8.prototype={ +$3(a,b,c){var s=null,r=this.a,q=r.z +if(r.Q){r=A.A(a,B.h,t.J) +return A.B0(q,new A.b4(B.bh,A.eH(A.cP(A.a([B.xU,B.xs,A.eP(!1,A.P(r.gpn(r),s,s,s,s,s,s,s),B.n,s,s,s,s,s,new A.aU9(this.b),s,s)],t.p),B.w,B.dq,B.ah),s,s),s))}else return A.B0(q,B.xU)}, +$S:957} +A.aU9.prototype={ +$0(){this.a.sj(0,new A.kR())}, +$S:0} +A.a9c.prototype={ +A(a){var s=this,r=null,q=s.f,p=s.d +if(s.c)return A.a9w(A.fp(B.PQ,A.a([B.aom,A.nF(!1,r,q,new A.aU7(),!1,s.e,r)],t.p),B.C,B.aJ,r),p) +else return A.nF(!1,r,q,r,!1,p,r)}} +A.aU7.prototype={ +$3(a,b,c){return B.ee}, +$S:303} +A.Yq.prototype={ +A(a){var s,r,q,p,o=null,n="assets/icons/dark_icon.png",m=t.l +if(A.aY(a,o,m).w.a.a>=1200){s=A.CN(new A.mR(n,o,o),o,48) +r=A.P(A.A(a,B.h,t.J).gl9(),o,o,o,o,o,o,o) +q=A.B(a).p3.y +p=A.bdf(s,r,new A.auj(a),A.aaM(o,o,o,o,o,o,o,o,o,q==null?o:q.b,o,o,o,o,o,o,o,o,o))}else p=A.dh(o,o,A.CN(new A.mR(n,o,o),o,48),o,new A.auk(a),o,o,o,o,o) +s=A.aY(a,o,m).w +m=A.aY(a,o,m).w.a.a>=1200?B.ow:B.and +r=$.X4() +q=A.ab(r).h("ad<1,Dy>") +return new A.Mn(s.a.a>=1200,p,A.a8(new A.ad(r,new A.aul(this,a),q),!0,q.h("av.E")),A.bsZ(this.c),new A.aum(a),5,m,!0,o)}} +A.auj.prototype={ +$0(){var s=A.ej("/about",null) +return A.bP(this.a).dz(s,null,t.z)}, +$S:0} +A.auk.prototype={ +$0(){var s=A.ej("/about",null) +return A.bP(this.a).dz(s,null,t.z)}, +$S:0} +A.aul.prototype={ +$1(a){var s=null,r=A.h3(a.c,s,s,s),q=A.P(a.a.$1(this.b),s,s,s,s,s,s,s),p=A.h3(a.d,s,s,s) +return new A.Dy(r,p,q)}, +$S:958} +A.aum.prototype={ +$1(a){return J.bpz($.X4()[a],this.a)}, +$S:33} +A.a9l.prototype={ +ti(a,b,c,d){return this.aGd(a,b,c,d)}, +aGd(a,b,c,d){var s=0,r=A.y(t.H),q,p,o +var $async$ti=A.u(function(e,f){if(e===1)return A.v(f,r) +while(true)switch(s){case 0:s=3 +return A.t(d.$0(),$async$ti) +case 3:p=f +o=c.b +o===$&&A.b() +o.vK() +if(a.e!=null)A.wg(p,new A.aUO(b,a,c),null,t.rC,t.P) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$ti,r)}, +aB(a,b){var s,r=null +$.bb.bz(new A.dK(new A.aUN(this,b,a),[]),t.H) +s=this.f +if(A.aY(a,r,t.l).w.a.a>=600)return A.e9(r,r,A.db(A.a([new A.Yq(A.Zs(a),r),A.dN(s,1)],t.p),B.w,B.z,B.O),r,r,r,!0,!1,!1,r,r) +else return A.e9(r,r,s,new A.a9L(A.Zs(a),r),r,r,!0,!1,!1,r,B.r5)}} +A.aUO.prototype={ +$1(a){if(a!=null)A.bnb(this.b,"v"+a.gTV(),this.a,this.c,null)}, +$S:268} +A.aUN.prototype={ +$0(){A.tO(new A.aUM(this.a,this.b,this.c),t.H) +return}, +$S:4} +A.aUM.prototype={ +$0(){var s=this.b,r=s.ae(0,$.arL(),t.A9).a,q=this.c,p=s.ae(0,$.arE(),t.JC).ga8i() +return this.a.ti(q,r,s.ae(0,A.eD(q),t.g),p)}, +$S:2} +A.a9L.prototype={ +A(a){var s=null,r=A.bsZ(this.c),q=$.X4(),p=A.ab(q).h("ad<1,yn>") +return A.bt_(new A.a6g(r,A.a8(new A.ad(q,new A.aVL(this,a),p),!0,p.h("av.E")),new A.aVM(a),s),new A.ym(s,s,s,s,s,s,s,new A.cG(B.awJ,t.wG),s,s,s))}} +A.aVM.prototype={ +$1(a){return J.bpz($.X4()[a],this.a)}, +$S:33} +A.aVL.prototype={ +$1(a){var s=null,r=this.b,q=A.h3(a.c,s,s,s),p=a.a.$1(r) +return new A.yn(q,A.h3(a.d,s,s,s),p,a.a.$1(r),s)}, +$S:959} +A.OH.prototype={ +A(a){var s=this,r=null,q=s.c?B.a5N:B.a5J,p=s.d?A.h3(q,A.B(a).dy,r,r):A.cZ(r,r,A.B(a).ok.a) +return A.bI(!1,r,r,r,!0,r,r,!1,r,p,r,r,new A.aVO(s),!1,r,r,r,r,r,r,s.r,r,r)}} +A.aVO.prototype={ +$0(){var s=this.a +return s.d?s.e.$1(!s.c):s.f.$0()}, +$S:0} +A.Fn.prototype={ +A(a){var s=this,r=null,q=$.bb.bz(new A.mH(s.f,r),t.QX),p=s.d,o=A.P(p,r,r,r,r,r,r,r),n=t.p,m=A.a([],n),l=s.e +if(l.length!==0)m.push(new A.b4(B.a2o,A.P(l,r,r,r,r,r,r,r),r)) +m.push(new A.b4(B.jm,A.Fm(!0,B.c3,!0,r,!0,B.C,r,A.WY(),q,r,r,r,r,2,A.tZ(r,B.eB,r,r,r,r,r,r,!0,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,p,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r),B.D,!0,r,!0,r,!1,r,r,r,r,r,r,r,1,r,r,!1,"\u2022",r,r,r,new A.aZ1(s,a),r,r,!1,r,!0,r,B.dK,r,r,B.cd,B.bS,r,r,r,r,r,r,B.b2,r,B.eb,r,r,r,r),r)) +p=A.cP(m,B.w,B.z,B.ah) +m=A.A(a,B.h,t.J) +return A.l2(A.a([B.e5,A.x2(!1,A.P(m.giv(m),r,r,r,r,r,r,r),B.n,r,r,r,r,r,new A.aZ2(s,q),r,r)],n),new A.b4(B.bW,p,r),B.jn,o)}} +A.aZ1.prototype={ +$1(a){this.a.r.$1(a) +A.du(this.b,!1).dO(null)}, +$S:25} +A.aZ2.prototype={ +$0(){this.a.r.$1(this.b.a.a)}, +$S:0} +A.ro.prototype={ +gt(a){return this.b}, +i(a,b){if(b>=this.b)throw A.c(A.a2Y(b,this,null,null,null)) +return this.a[b]}, +n(a,b,c){if(b>=this.b)throw A.c(A.a2Y(b,this,null,null,null)) +this.a[b]=c}, +st(a,b){var s,r,q,p=this,o=p.b +if(bo){if(o===0)q=new Uint8Array(b) +else q=p.JX(b) +B.M.di(q,0,p.b,p.a) +p.a=q}}p.b=b}, +T0(a,b){var s=this,r=s.b +if(r===s.a.length)s.a6f(r) +s.a[s.b++]=b}, +F(a,b){var s=this,r=s.b +if(r===s.a.length)s.a6f(r) +s.a[s.b++]=b}, +I(a,b){A.fN(0,"start") +this.aDN(b,0,null)}, +aDN(a,b,c){var s,r,q +if(t.j.b(a))c=J.b3(a) +if(c!=null){this.aDP(this.b,a,b,c) +return}for(s=J.al(a),r=0;s.v();){q=s.gG(s) +if(r>=b)this.T0(0,q);++r}if(rs.gt(b)||d>s.gt(b))throw A.c(A.R("Too few elements"))}r=d-c +q=o.b+r +o.aDO(q) +s=o.a +p=a+r +B.M.cv(s,p,o.b+r,s,a) +B.M.cv(o.a,a,p,b,c) +o.b=q}, +fB(a,b,c){var s,r,q=this,p=q.b +if(b>p)throw A.c(A.cT(b,0,p,null,null)) +s=q.a +if(ps)throw A.c(A.cT(c,0,s,null,null)) +s=this.a +if(A.l(this).h("ro").b(d))B.M.cv(s,b,c,d.a,e) +else B.M.cv(s,b,c,d,e)}, +di(a,b,c,d){return this.cv(a,b,c,d,0)}} +A.ai_.prototype={} +A.abh.prototype={} +A.D3.prototype={ +J(){return"LaunchMode."+this.b}} +A.b0N.prototype={} +A.aKw.prototype={ +FA(a,b,c,d,e,f,g,h){var s=t.y +return B.amY.pC("launch",A.am(["url",a,"useSafariVC",f,"useWebView",g,"enableJavaScript",!0,"enableDomStorage",!0,"universalLinksOnly",e,"headers",d],t.N,t.K),!1,s).be(new A.aKx(),s)}} +A.aKx.prototype={ +$1(a){return a===!0}, +$S:960} +A.yK.prototype={ +J(){return"PreferredLaunchMode."+this.b}} +A.a2X.prototype={} +A.a3p.prototype={} +A.b0u.prototype={ +FA(a,b,c,d,e,f,g,h){throw A.c(A.d1("launch() has not been implemented."))}, +FB(a,b){var s,r,q=B.c.cc(a,"http:")||B.c.cc(a,"https:"),p=b.a +if(p!==B.Ni)if(p!==B.Nj){s=q&&p===B.oI +r=s}else r=!0 +else r=!0 +return this.FA(a,!0,!0,b.b.c,p===B.Nk,r,r,b.d)}} +A.b0v.prototype={ +aNF(a,b){var s=A.bNR(a) +if(B.aqn.p(0,s==null?null:s.gfk()))return null +return this.a.open(a,b,"noopener,noreferrer")}, +FA(a,b,c,d,e,f,g,h){return this.aLX(a,!0,!0,d,e,f,g,h)}, +aLX(a,b,c,d,e,f,g,h){var s=0,r=A.y(t.y),q,p=this +var $async$FA=A.u(function(i,j){if(i===1)return A.v(j,r) +while(true)switch(s){case 0:q=p.FB(a,new A.a3p(B.oI,B.a7C,h)) +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$FA,r)}, +FB(a,b){return this.aLY(a,b)}, +aLY(a,b){var s=0,r=A.y(t.y),q,p=this +var $async$FB=A.u(function(c,d){if(c===1)return A.v(d,r) +while(true)switch(s){case 0:q=p.aNF(a,b.d)!=null +s=1 +break +case 1:return A.w(q,r)}}) +return A.x($async$FB,r)}} +A.abE.prototype={ +J(){return"ValidationMode."+this.b}} +A.aOM.prototype={ +Y4(){var s=this.af_() +return s}} +A.a5R.prototype={ +af_(){var s,r,q=new Uint8Array(16),p=$.bAY() +for(s=0;s<16;s+=4){r=p.xL(B.e.au(Math.pow(2,32))) +q[s]=r +q[s+1]=B.f.dr(r,8) +q[s+2]=B.f.dr(r,16) +q[s+3]=B.f.dr(r,24)}return q}} +A.abC.prototype={ +aee(){return new A.b0z(null).aeY(null)}} +A.b0z.prototype={ +avN(){if($.bv4)return +var s=new A.a5R().Y4() +$.bv7=A.a([s[0]|1,s[1],s[2],s[3],s[4],s[5]],t.t) +$.blY=(s[6]<<8|s[7])&262143 +$.bv4=!0}, +aeY(a){var s,r,q,p,o,n,m,l,k,j,i +this.avN() +s=new Uint8Array(16) +r=$.blY +q=1000*Date.now() +p=$.bv6 +o=p+1 +n=$.bv5 +p=q-n+(o-p)/1e4<0 +if(p)m=!0 +else m=!1 +if(m)r=r+1&16383 +if(p||q>n)p=!0 +else p=!1 +if(p)o=0 +if(o>=1e4)throw A.c(A.d8("uuid.v1(): Can't create more than 10M uuids/sec")) +$.bv5=q +$.bv6=o +$.blY=r +q+=122192928e5 +l=((q&268435455)*1e4+o)%4294967296 +s[0]=l>>>24&255 +s[1]=l>>>16&255 +s[2]=l>>>8&255 +s[3]=l&255 +k=B.e.eC(q/4294967296*1e4)&268435455 +s[4]=k>>>8&255 +s[5]=k&255 +s[6]=k>>>24&255 +s[7]=k>>>16&255 +s[8]=r>>>8&63 +s[9]=r&255 +s[6]=s[6]&15|16 +s[8]=s[8]|128 +j=$.bv7 +for(i=0;i<6;++i)s[10+i]=j[i] +return A.blX(s)}} +A.b0A.prototype={ +aeZ(a,b,c){var s,r,q,p,o,n,m=new A.a5R().Y4() +m[6]=m[6]&15|64 +m[8]=m[8]&63|128 +A.blX(m) +s=A.bNV(a) +r=A.a([],t.t) +for(q=new A.i2(b),p=t.Hz,q=new A.c2(q,q.gt(q),p.h("c2")),p=p.h("ae.E");q.v();){o=q.d +r.push(o==null?p.a(o):o)}q=A.a8(s,!0,t.S) +B.b.I(q,r) +n=B.Tl.cV(q).a +n[6]=n[6]&15|80 +n[8]=n[8]&63|128 +return A.blX(B.M.cT(n,0,16))}} +A.bQ.prototype={ +c6(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]}, +l(a){var s=this +return"[0] "+s.Hd(0).l(0)+"\n[1] "+s.Hd(1).l(0)+"\n[2] "+s.Hd(2).l(0)+"\n[3] "+s.Hd(3).l(0)+"\n"}, +i(a,b){return this.a[b]}, +n(a,b,c){this.a[b]=c}, +k(a,b){var s,r,q +if(b==null)return!1 +if(b instanceof A.bQ){s=this.a +r=s[0] +q=b.a +s=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]}else s=!1 +return s}, +gu(a){return A.dj(this.a)}, +Oo(a,b){var s=b.a,r=this.a +r[a]=s[0] +r[4+a]=s[1] +r[8+a]=s[2] +r[12+a]=s[3]}, +Hd(a){var s=new Float64Array(4),r=this.a +s[0]=r[a] +s[1]=r[4+a] +s[2]=r[8+a] +s[3]=r[12+a] +return new A.nO(s)}, +av(a,b){var s=new A.bQ(new Float64Array(16)) +s.c6(this) +s.rC(0,b,null,null) +return s}, +U(a,b){var s,r=new Float64Array(16),q=new A.bQ(r) +q.c6(this) +s=b.a +r[0]=r[0]+s[0] +r[1]=r[1]+s[1] +r[2]=r[2]+s[2] +r[3]=r[3]+s[3] +r[4]=r[4]+s[4] +r[5]=r[5]+s[5] +r[6]=r[6]+s[6] +r[7]=r[7]+s[7] +r[8]=r[8]+s[8] +r[9]=r[9]+s[9] +r[10]=r[10]+s[10] +r[11]=r[11]+s[11] +r[12]=r[12]+s[12] +r[13]=r[13]+s[13] +r[14]=r[14]+s[14] +r[15]=r[15]+s[15] +return q}, +a4(a,b){var s,r=new Float64Array(16),q=new A.bQ(r) +q.c6(this) +s=b.a +r[0]=r[0]-s[0] +r[1]=r[1]-s[1] +r[2]=r[2]-s[2] +r[3]=r[3]-s[3] +r[4]=r[4]-s[4] +r[5]=r[5]-s[5] +r[6]=r[6]-s[6] +r[7]=r[7]-s[7] +r[8]=r[8]-s[8] +r[9]=r[9]-s[9] +r[10]=r[10]-s[10] +r[11]=r[11]-s[11] +r[12]=r[12]-s[12] +r[13]=r[13]-s[13] +r[14]=r[14]-s[14] +r[15]=r[15]-s[15] +return q}, +bi(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}, +Nv(a){var s=Math.cos(a),r=Math.sin(a),q=this.a,p=q[0],o=q[4],n=q[1],m=q[5],l=q[2],k=q[6],j=q[3],i=q[7],h=-r +q[0]=p*s+o*r +q[1]=n*s+m*r +q[2]=l*s+k*r +q[3]=j*s+i*r +q[4]=p*h+o*s +q[5]=n*h+m*s +q[6]=l*h+k*s +q[7]=j*h+i*s}, +rC(a,b,c,d){var s=c==null?b:c,r=d==null?b:d,q=this.a +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] +q[15]=q[15]}, +c0(a,b){return this.rC(a,b,null,null)}, +iT(a,b,c){return this.rC(a,b,c,null)}, +Z_(){var s=this.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}, +fQ(){var s=this.a +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}, +Ob(){var s=this.a,r=s[14],q=s[13],p=s[12] +s=new A.de(new Float64Array(3)) +s.h7(p,q,r) +return s}, +YZ(a){var s=a.a,r=s[2],q=s[1],p=s[0],o=this.a +o[14]=r +o[13]=q +o[12]=p}, +ye(){var s=this.a,r=s[0],q=s[1],p=s[2],o=s[4],n=s[5],m=s[6],l=s[8],k=s[9] +s=s[10] +return Math.sqrt(Math.max(r*r+q*q+p*p,Math.max(o*o+n*n+m*m,l*l+k*k+s*s)))}, +j6(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.c6(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}, +eN(b5,b6){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],b=b6.a,a=b[0],a0=b[4],a1=b[8],a2=b[12],a3=b[1],a4=b[5],a5=b[9],a6=b[13],a7=b[2],a8=b[6],a9=b[10],b0=b[14],b1=b[3],b2=b[7],b3=b[11],b4=b[15] +s[0]=r*a+q*a3+p*a7+o*b1 +s[4]=r*a0+q*a4+p*a8+o*b2 +s[8]=r*a1+q*a5+p*a9+o*b3 +s[12]=r*a2+q*a6+p*b0+o*b4 +s[1]=n*a+m*a3+l*a7+k*b1 +s[5]=n*a0+m*a4+l*a8+k*b2 +s[9]=n*a1+m*a5+l*a9+k*b3 +s[13]=n*a2+m*a6+l*b0+k*b4 +s[2]=j*a+i*a3+h*a7+g*b1 +s[6]=j*a0+i*a4+h*a8+g*b2 +s[10]=j*a1+i*a5+h*a9+g*b3 +s[14]=j*a2+i*a6+h*b0+g*b4 +s[3]=f*a+e*a3+d*a7+c*b1 +s[7]=f*a0+e*a4+d*a8+c*b2 +s[11]=f*a1+e*a5+d*a9+c*b3 +s[15]=f*a2+e*a6+d*b0+c*b4}, +Mz(a){var s=new A.bQ(new Float64Array(16)) +s.c6(this) +s.eN(0,a) +return s}, +rs(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] +r=r[14] +s[0]=q*p+o*n+m*l+k +s[1]=j*p+i*n+h*l+g +s[2]=f*p+e*n+d*l+r +return a}, +a5(a2,a3){var s=a3.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=s[3],i=r[1],h=r[5],g=r[9],f=r[13],e=r[2],d=r[6],c=r[10],b=r[14],a=r[3],a0=r[7],a1=r[11] +r=r[15] +s[0]=q*p+o*n+m*l+k*j +s[1]=i*p+h*n+g*l+f*j +s[2]=e*p+d*n+c*l+b*j +s[3]=a*p+a0*n+a1*l+r*j +return a3}, +N8(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}, +abH(){var s=this.a +return 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}} +A.a7t.prototype={} +A.de.prototype={ +h7(a,b,c){var s=this.a +s[0]=a +s[1]=b +s[2]=c}, +c6(a){var s=a.a,r=this.a +r[0]=s[0] +r[1]=s[1] +r[2]=s[2]}, +l(a){var s=this.a +return"["+A.i(s[0])+","+A.i(s[1])+","+A.i(s[2])+"]"}, +k(a,b){var s,r,q +if(b==null)return!1 +if(b instanceof A.de){s=this.a +r=s[0] +q=b.a +s=r===q[0]&&s[1]===q[1]&&s[2]===q[2]}else s=!1 +return s}, +gu(a){return A.dj(this.a)}, +a4(a,b){var s,r=new Float64Array(3),q=new A.de(r) +q.c6(this) +s=b.a +r[0]=r[0]-s[0] +r[1]=r[1]-s[1] +r[2]=r[2]-s[2] +return q}, +U(a,b){var s,r=new Float64Array(3),q=new A.de(r) +q.c6(this) +s=b.a +r[0]=r[0]+s[0] +r[1]=r[1]+s[1] +r[2]=r[2]+s[2] +return q}, +av(a,b){return this.Og(b)}, +i(a,b){return this.a[b]}, +n(a,b,c){this.a[b]=c}, +gt(a){var s=this.a,r=s[0],q=s[1] +s=s[2] +return Math.sqrt(r*r+q*q+s*s)}, +xa(a){var s=a.a,r=this.a +return r[0]*s[0]+r[1]*s[1]+r[2]*s[2]}, +Og(a){var s=new Float64Array(3),r=new A.de(s) +r.c6(this) +s[2]=s[2]*a +s[1]=s[1]*a +s[0]=s[0]*a +return r}} +A.nO.prototype={ +Ht(a,b,c,d){var s=this.a +s[3]=d +s[2]=c +s[1]=b +s[0]=a}, +c6(a){var s=a.a,r=this.a +r[3]=s[3] +r[2]=s[2] +r[1]=s[1] +r[0]=s[0]}, +l(a){var s=this.a +return A.i(s[0])+","+A.i(s[1])+","+A.i(s[2])+","+A.i(s[3])}, +k(a,b){var s,r,q +if(b==null)return!1 +if(b instanceof A.nO){s=this.a +r=s[0] +q=b.a +s=r===q[0]&&s[1]===q[1]&&s[2]===q[2]&&s[3]===q[3]}else s=!1 +return s}, +gu(a){return A.dj(this.a)}, +a4(a,b){var s,r=new Float64Array(4),q=new A.nO(r) +q.c6(this) +s=b.a +r[0]=r[0]-s[0] +r[1]=r[1]-s[1] +r[2]=r[2]-s[2] +r[3]=r[3]-s[3] +return q}, +U(a,b){var s,r=new Float64Array(4),q=new A.nO(r) +q.c6(this) +s=b.a +r[0]=r[0]+s[0] +r[1]=r[1]+s[1] +r[2]=r[2]+s[2] +r[3]=r[3]+s[3] +return q}, +av(a,b){var s=new A.nO(new Float64Array(4)) +s.c6(this) +s.c0(0,b) +return s}, +i(a,b){return this.a[b]}, +n(a,b,c){this.a[b]=c}, +gt(a){var s=this.a,r=s[0],q=s[1],p=s[2] +s=s[3] +return Math.sqrt(r*r+q*q+p*p+s*s)}, +c0(a,b){var s=this.a +s[0]=s[0]*b +s[1]=s[1]*b +s[2]=s[2]*b +s[3]=s[3]*b}} +A.bkk.prototype={} +A.Gn.prototype={ +uQ(a,b){return this}, +Kx(a){return this.uQ(a,null)}, +gfM(){return!0}, +c4(a,b,c,d){return A.bOQ(this.a,this.b,a,!1,this.$ti.c)}, +fN(a,b,c){return this.c4(a,null,b,c)}, +lr(a,b,c){return this.c4(a,b,c,null)}} +A.Gp.prototype={ +aI(a){var s=this,r=A.cR(null,t.H) +if(s.b==null)return r +s.SN() +s.d=s.b=null +return r}, +iJ(a){var s,r=this +if(r.b==null)throw A.c(A.R("Subscription has been canceled.")) +r.SN() +s=A.by5(new A.b57(a),t.e) +s=s==null?null:A.cH(s) +r.d=s +r.SM()}, +tT(a,b){}, +io(a,b){var s=this +if(s.b==null)return;++s.a +s.SN() +if(b!=null)b.fu(s.gfC(s))}, +iK(a){return this.io(a,null)}, +iq(a){var s=this +if(s.b==null||s.a<=0)return;--s.a +s.SM()}, +SM(){var s=this,r=s.d +if(r!=null&&s.a<=0)s.b.addEventListener(s.c,r,!1)}, +SN(){var s=this.d +if(s!=null)this.b.removeEventListener(this.c,s,!1)}, +$ika:1} +A.b55.prototype={ +$1(a){return this.a.$1(a)}, +$S:3} +A.b57.prototype={ +$1(a){return this.a.$1(a)}, +$S:3} +A.aGw.prototype={ +gpx(){var s,r=this,q=r.w +if(q===$){s=r.r.b +s===$&&A.b() +s=s.a +s===$&&A.b() +q!==$&&A.aq() +q=r.w=new A.S9(r,s)}return q}, +amD(a){var s=this,r=s.f=new A.aD(new A.a7($.ac,t.b),t.gR),q=s.a,p=q.readyState +p.toString +if(p===1){r.fm(0) +s.a34()}else{if(p===2||p===3)r.kn(new A.PU("WebSocket state error: "+p)) +r=new A.kT(q,"open",!1,t._F) +r.gO(r).be(new A.aGy(s),t.P)}r=new A.kT(q,"error",!1,t._F) +p=t.P +r.gO(r).be(new A.aGz(s),p) +A.ju(q,"message",new A.aGA(s),!1,t.SA) +q=new A.kT(q,"close",!1,t.rR) +q.gO(q).be(new A.aGB(s),p)}, +a34(){var s=this.r.a +s===$&&A.b() +s=s.b +s===$&&A.b() +new A.d6(s,A.l(s).h("d6<1>")).aM7(B.azw.gagc(this.a),new A.aGx(this))}} +A.aGy.prototype={ +$1(a){var s=this.a,r=s.f +r===$&&A.b() +r.fm(0) +s.a34()}, +$S:317} +A.aGz.prototype={ +$1(a){var s=new A.PU("WebSocket connection failed."),r=this.a,q=r.f +q===$&&A.b() +q.kn(s) +r=r.r.a +r===$&&A.b() +q=r.a +q===$&&A.b() +q.pF(s) +r=r.a +r===$&&A.b() +r.ah(0)}, +$S:317} +A.aGA.prototype={ +$1(a){var s,r=new A.o_([],[]).tl(a.data,!0) +if(t.pI.b(r))r=A.eO(r,0,null) +s=this.a.r.a +s===$&&A.b() +s=s.a +s===$&&A.b() +s.F(0,r)}, +$S:962} +A.aGB.prototype={ +$1(a){var s +a.code +a.reason +s=this.a.r.a +s===$&&A.b() +s=s.a +s===$&&A.b() +s.ah(0)}, +$S:963} +A.aGx.prototype={ +$0(){var s=this.a,r=s.d,q=r!=null +if(q&&s.e!=null)s.a.close(r,s.e) +else{s=s.a +if(q)s.close(r) +else s.close()}}, +$S:0} +A.S9.prototype={ +wW(a,b,c){var s=this.b +s.d=b +s.e=c +return this.ahJ(0)}, +ah(a){return this.wW(a,null,null)}, +U5(a,b){return this.wW(a,b,null)}} +A.bm1.prototype={} +A.PU.prototype={ +l(a){return"WebSocketChannelException: "+this.a}, +$icv:1} +A.bhv.prototype={ +$0(){return A.are()}, +$S:0} +A.bhu.prototype={ +$0(){var s,r,q,p,o=$.bDY(),n=$.bAE() +A.MZ(n,$.X3(),!1) +$.bI1=n +new A.m7("flutter_native_splash",B.bU,o).ui(new A.a1Z().gVt()) +s=new A.a20() +s.M8() +new A.m7("PonnamKarthik/fluttertoast",B.bU,o).ui(s.gVt()) +n=$.bAZ() +r=new A.aMc() +q=$.AL() +q.n(0,r,n) +A.MZ(r,n,!1) +n=$.bo7() +r=new A.aMI() +q.n(0,r,n) +A.MZ(r,n,!1) +$.bKA=r +$.bBN() +$.bBO() +$.bBP() +r=$.bB1() +n=new A.b0M() +q.n(0,n,r) +A.MZ(n,r,!1) +r=$.bob() +n=new A.aUC() +q.n(0,n,r) +A.MZ(n,r,!0) +$.bMl=n +n=self +n=n.window +r=$.bof() +p=new A.b0v(n) +q.n(0,p,r) +n=n.navigator +p.b=J.oh(n.userAgent,"Safari")&&!J.oh(n.userAgent,"Chrome") +A.MZ(p,r,!0) +$.bNS=p +$.bDQ() +$.biB().Xi("__url_launcher::link",A.bW9(),!1) +$.bzk=o.gaJK()}, +$S:0};(function aliases(){var s=A.am9.prototype +s.akR=s.ab +s.akX=s.eo +s.akV=s.dg +s.al_=s.bi +s.akY=s.iT +s.akW=s.u3 +s.akZ=s.a5 +s.akU=s.uV +s.akT=s.wV +s.akS=s.oT +s=A.BL.prototype +s.ahC=s.rd +s=A.Ro.prototype +s.a_5=s.bI +s=A.fm.prototype +s.aiC=s.Nu +s.ZF=s.aO +s.Ct=s.wM +s.ZJ=s.bZ +s.ZI=s.ro +s.ZG=s.oX +s.ZH=s.xV +s=A.h7.prototype +s.aiz=s.xV +s.aiA=s.pm +s.rQ=s.bZ +s.aiB=s.ro +s.yI=s.oX +s=A.a7m.prototype +s.rR=s.it +s.Cu=s.m +s=A.JL.prototype +s.OK=s.AT +s.ahI=s.XO +s.ahG=s.mK +s.ahH=s.V_ +s=J.CT.prototype +s.ai0=s.l +s.ai_=s.C +s=J.u6.prototype +s.aic=s.l +s=A.jh.prototype +s.ai2=s.abj +s.ai3=s.abl +s.ai5=s.abn +s.ai4=s.abm +s=A.mz.prototype +s.ak6=s.wb +s.ak8=s.F +s.ak9=s.ah +s.ak7=s.CE +s=A.hx.prototype +s.HR=s.oF +s.yL=s.kg +s.P2=s.rV +s=A.Uw.prototype +s.alc=s.td +s=A.rD.prototype +s.akj=s.yU +s.akk=s.a1D +s.akm=s.a4Z +s.akl=s.t6 +s=A.ae.prototype +s.ZA=s.cv +s=A.cm.prototype +s.ahF=s.aJv +s=A.Hu.prototype +s.ald=s.ah +s=A.z.prototype +s.Cq=s.jw +s.ai1=s.agX +s=A.C.prototype +s.rP=s.k +s.e2=s.l +s=A.cO.prototype +s.OM=s.qJ +s=A.aL.prototype +s.ahP=s.zz +s=A.Uf.prototype +s.alb=s.uO +s=A.qH.prototype +s.ai6=s.i +s.ai7=s.n +s=A.GJ.prototype +s.a_6=s.n +s=A.e.prototype +s.aht=s.k +s.ahu=s.l +s=A.BV.prototype +s.ahJ=s.ah +s=A.bV.prototype +s.HF=s.Gz +s=A.tc.prototype +s.Zg=s.H +s.Zh=s.ee +s=A.ML.prototype +s.aiy=s.a5 +s=A.If.prototype +s.Cp=s.m +s=A.VT.prototype +s.alD=s.m +s=A.VU.prototype +s.alE=s.m +s=A.VV.prototype +s.alF=s.m +s=A.VY.prototype +s.alI=s.m +s=A.HI.prototype +s.alG=s.m +s=A.VX.prototype +s.alH=s.m +s=A.VZ.prototype +s.alJ=s.m +s=A.Wj.prototype +s.am0=s.aw +s.am1=s.ap +s=A.Ys.prototype +s.ahp=s.kw +s.ahq=s.xx +s.ahr=s.XJ +s=A.i1.prototype +s.Zm=s.P +s.Zn=s.H +s.eK=s.m +s.HH=s.ag +s=A.bF.prototype +s.w8=s.sj +s=A.aI.prototype +s.ahK=s.f4 +s=A.n2.prototype +s.ahL=s.f4 +s=A.CA.prototype +s.ahW=s.Fi +s.ahV=s.aIk +s=A.kD.prototype +s.aid=s.n5 +s=A.eN.prototype +s.Zs=s.Kh +s.yF=s.n5 +s.Zt=s.m +s=A.My.prototype +s.Cr=s.l4 +s.ZD=s.AM +s.ZE=s.L +s.pz=s.m +s.aiu=s.Cn +s=A.DY.prototype +s.aiD=s.l4 +s.ZK=s.l3 +s.aiE=s.jq +s=A.kO.prototype +s.ajR=s.n5 +s=A.UG.prototype +s.ale=s.ku +s.alf=s.jq +s=A.QC.prototype +s.ak4=s.l4 +s.ak5=s.m +s=A.VO.prototype +s.aly=s.m +s=A.VQ.prototype +s.alz=s.m +s=A.VR.prototype +s.alB=s.aX +s.alA=s.m +s=A.Wi.prototype +s.am_=s.m +s=A.Ru.prototype +s.akd=s.m +s=A.Cf.prototype +s.ahO=s.tr +s=A.W1.prototype +s.alL=s.m +s=A.W6.prototype +s.alR=s.aX +s.alQ=s.fd +s=A.VN.prototype +s.alx=s.m +s=A.W5.prototype +s.alP=s.m +s=A.W7.prototype +s.alS=s.m +s=A.oK.prototype +s.rO=s.m +s=A.Wp.prototype +s.amf=s.m +s=A.Wc.prototype +s.alX=s.m +s=A.Wx.prototype +s.amp=s.m +s=A.Wy.prototype +s.amq=s.m +s=A.G5.prototype +s.akc=s.aE +s=A.VS.prototype +s.alC=s.m +s=A.W9.prototype +s.alU=s.m +s=A.HJ.prototype +s.alY=s.m +s=A.HK.prototype +s.alZ=s.m +s=A.Tq.prototype +s.akx=s.m +s=A.TU.prototype +s.al0=s.m +s=A.TV.prototype +s.al1=s.m +s=A.TW.prototype +s.al3=s.b1 +s.al2=s.ca +s.al4=s.m +s=A.W3.prototype +s.alN=s.m +s=A.Wl.prototype +s.am4=s.aw +s.am5=s.ap +s=A.Wn.prototype +s.am8=s.aw +s.am9=s.ap +s=A.Wu.prototype +s.amk=s.m +s=A.Wa.prototype +s.alV=s.m +s=A.Wb.prototype +s.alW=s.m +s=A.W_.prototype +s.alK=s.m +s=A.Fi.prototype +s.ajS=s.tr +s=A.Ww.prototype +s.amn=s.b1 +s.amm=s.ca +s.amo=s.m +s=A.Fw.prototype +s.ajV=s.m +s=A.UX.prototype +s.ali=s.m +s=A.IE.prototype +s.Zk=s.HD +s.Zj=s.F +s=A.dw.prototype +s.HP=s.f0 +s.HQ=s.f1 +s=A.h6.prototype +s.yG=s.f0 +s.yH=s.f1 +s=A.la.prototype +s.OI=s.f0 +s.OJ=s.f1 +s=A.Yz.prototype +s.Zl=s.m +s=A.eL.prototype +s.Zp=s.F +s=A.aeI.prototype +s.a_3=s.m +s=A.xD.prototype +s.Zv=s.P +s.ahY=s.ii +s.Zw=s.H +s.ahX=s.J0 +s=A.kz.prototype +s.Zy=s.k +s=A.hT.prototype +s.ajD=s.k +s=A.OT.prototype +s.ajJ=s.hK +s=A.Ek.prototype +s.aj6=s.Vu +s.aj8=s.VD +s.aj7=s.Vx +s.aj5=s.UW +s=A.aN.prototype +s.ahs=s.k +s=A.iy.prototype +s.HG=s.l +s=A.O.prototype +s.aiQ=s.bX +s.aiO=s.bQ +s.aiP=s.bR +s.aiN=s.bV +s.HL=s.hS +s.w6=s.aa +s.OU=s.cS +s.ZR=s.xT +s.qk=s.dm +s.aiM=s.eL +s=A.Tv.prototype +s.aky=s.aw +s.akz=s.ap +s=A.Tx.prototype +s.akA=s.aw +s.akB=s.ap +s=A.Ty.prototype +s.akC=s.aw +s.akD=s.ap +s=A.uJ.prototype +s.aiR=s.ce +s=A.Tz.prototype +s.akE=s.m +s=A.h4.prototype +s.ai8=s.CV +s.Zz=s.m +s.aib=s.NO +s.ai9=s.aw +s.aia=s.ap +s=A.hH.prototype +s.un=s.ll +s.ahA=s.aw +s.ahB=s.ap +s=A.nm.prototype +s.ait=s.ll +s=A.dP.prototype +s.Cs=s.ap +s=A.J.prototype +s.iU=s.m +s.ZS=s.mh +s.eS=s.aw +s.eT=s.ap +s.aiV=s.aa +s.aiU=s.cS +s.aiW=s.b_ +s.aiS=s.eL +s.aiX=s.Hk +s.jA=s.hy +s.OV=s.wU +s.yJ=s.jv +s.ZT=s.zG +s.aiT=s.p9 +s.aiY=s.f4 +s.HM=s.i8 +s=A.b5.prototype +s.ZX=s.jo +s=A.ar.prototype +s.OH=s.VP +s.ahE=s.E +s.ahD=s.FR +s.Zo=s.jo +s.HI=s.ci +s=A.uH.prototype +s.OT=s.Cw +s=A.kh.prototype +s.ako=s.Kp +s=A.TG.prototype +s.akF=s.aw +s.akG=s.ap +s=A.UM.prototype +s.alg=s.ap +s=A.ih.prototype +s.P_=s.bX +s.OY=s.bQ +s.OZ=s.bR +s.OX=s.bV +s.aj0=s.da +s.yK=s.ce +s.HN=s.dZ +s.aj_=s.eL +s.oE=s.aE +s=A.NK.prototype +s.aj1=s.dm +s=A.TI.prototype +s.yM=s.aw +s.uq=s.ap +s=A.TJ.prototype +s.akH=s.hS +s=A.z_.prototype +s.aj3=s.aE +s.aj2=s.dZ +s=A.TL.prototype +s.a_7=s.aw +s.a_8=s.ap +s=A.rb.prototype +s.ajE=s.l +s=A.hr.prototype +s.ajF=s.l +s=A.TN.prototype +s.akI=s.aw +s.akJ=s.ap +s=A.NM.prototype +s.ZY=s.ce +s=A.z1.prototype +s.aj4=s.WY +s=A.kj.prototype +s.akM=s.aw +s.akN=s.ap +s=A.iY.prototype +s.ak1=s.FS +s.ak0=s.fX +s=A.ij.prototype +s.ajp=s.Vq +s=A.zI.prototype +s.a_0=s.m +s=A.XU.prototype +s.Zi=s.xG +s=A.EK.prototype +s.ajB=s.Fa +s.ajC=s.vr +s=A.m7.prototype +s.aie=s.pC +s=A.cc.prototype +s.Zf=s.j2 +s.ahm=s.tK +s.ahl=s.Tq +s.ahn=s.Nl +s=A.VM.prototype +s.alw=s.m +s=A.wj.prototype +s.OF=s.A +s=A.Cp.prototype +s.ahQ=s.bb +s=A.fR.prototype +s.ak2=s.Lg +s=A.TP.prototype +s.a_9=s.hI +s=A.Vj.prototype +s.alj=s.kw +s.alk=s.XJ +s=A.Vk.prototype +s.alm=s.kw +s.aln=s.xx +s=A.Vl.prototype +s.alo=s.kw +s.alp=s.xx +s=A.Vm.prototype +s.alr=s.kw +s.alq=s.Fa +s=A.Vn.prototype +s.als=s.kw +s=A.Vo.prototype +s.alu=s.kw +s.alv=s.xx +s=A.RB.prototype +s.ake=s.aX +s=A.RC.prototype +s.akf=s.m +s=A.a23.prototype +s.yE=s.aLq +s.ahR=s.TZ +s=A.lg.prototype +s.ahS=s.Lf +s.ahU=s.kF +s.ahT=s.m +s=A.Gv.prototype +s.akg=s.b1 +s.akh=s.m +s=A.a9.prototype +s.b9=s.aX +s.bh=s.b1 +s.rS=s.fd +s.cW=s.cf +s.b0=s.m +s.e8=s.ca +s=A.aG.prototype +s.ZW=s.bb +s=A.bD.prototype +s.ahM=s.fE +s.OP=s.hI +s.yD=s.bZ +s.ahN=s.GN +s.Zr=s.Fl +s.py=s.n0 +s.OL=s.cf +s.ON=s.fd +s.yC=s.kJ +s.OO=s.Aa +s.Zq=s.a9u +s.HJ=s.ca +s.yB=s.ph +s=A.Jh.prototype +s.OG=s.hI +s.ahv=s.Qx +s.ahw=s.ph +s=A.F2.prototype +s.ajP=s.aO +s.ajQ=s.bZ +s=A.il.prototype +s.ajK=s.aO +s.ajO=s.bZ +s.ajL=s.fd +s.ajN=s.kJ +s.ajM=s.ca +s=A.Na.prototype +s.ZM=s.aO +s.aiG=s.bZ +s.aiH=s.XT +s=A.jf.prototype +s.Zx=s.xM +s=A.bR.prototype +s.w7=s.hI +s.uo=s.bZ +s.OW=s.ph +s.ZU=s.fd +s.ZV=s.kJ +s.aiZ=s.GN +s=A.kF.prototype +s.ZB=s.pc +s.ZC=s.pe +s.aih=s.q9 +s.aig=s.hI +s.aii=s.bZ +s=A.CP.prototype +s.ahZ=s.aX +s=A.GG.prototype +s.akn=s.m +s=A.W8.prototype +s.alT=s.m +s=A.dd.prototype +s.ajl=s.vv +s.aji=s.Ez +s.ajd=s.Ev +s.ajj=s.UK +s.ajm=s.pr +s.ajg=s.qK +s.ajh=s.Ae +s.aje=s.Ew +s.ajf=s.Ex +s.ajc=s.pK +s.ajb=s.KI +s.ajk=s.m +s=A.alS.prototype +s.akQ=s.KQ +s=A.T_.prototype +s.akq=s.cf +s.akr=s.m +s=A.T0.prototype +s.akt=s.b1 +s.aks=s.ca +s.aku=s.m +s=A.a6o.prototype +s.OR=s.fX +s=A.Au.prototype +s.akL=s.ce +s.akK=s.aE +s=A.Wm.prototype +s.am6=s.aw +s.am7=s.ap +s=A.T4.prototype +s.akv=s.fX +s=A.W4.prototype +s.alO=s.m +s=A.Wv.prototype +s.aml=s.m +s=A.h8.prototype +s.aQX=s.m +s=A.mh.prototype +s.aja=s.UN +s=A.dv.prototype +s.P0=s.sj +s=A.lK.prototype +s.akO=s.AL +s.akP=s.Bz +s=A.mA.prototype +s.aka=s.Ki +s.akb=s.Nm +s.a_4=s.VW +s=A.HL.prototype +s.amb=s.b1 +s.ama=s.ca +s.amc=s.m +s=A.DE.prototype +s.aix=s.vv +s.aiv=s.qK +s.aiw=s.m +s=A.fr.prototype +s.ajW=s.Uo +s.ak_=s.vv +s.ajZ=s.Ez +s.ajX=s.Ev +s.ajY=s.qK +s.a_1=s.m +s=A.ek.prototype +s.aif=s.Ex +s=A.Al.prototype +s.akp=s.pr +s=A.a8R.prototype +s.HO=s.m +s=A.zb.prototype +s.ajq=s.aw +s=A.k1.prototype +s.Cv=s.fX +s=A.U_.prototype +s.al6=s.fX +s=A.zd.prototype +s.ajr=s.Kq +s.ajs=s.A0 +s=A.nC.prototype +s.ajt=s.uK +s.P1=s.agt +s.ajv=s.qB +s.ZZ=s.pI +s.aju=s.E_ +s.ajz=s.V2 +s.ajw=s.oQ +s.ajy=s.m +s.ajx=s.fX +s=A.TY.prototype +s.al5=s.fX +s=A.zf.prototype +s.ajA=s.uK +s=A.U4.prototype +s.al7=s.m +s=A.U5.prototype +s.al9=s.b1 +s.al8=s.ca +s.ala=s.m +s=A.p7.prototype +s.ZQ=s.aX +s.aiI=s.ca +s.aiL=s.LW +s.ZP=s.LY +s.ZO=s.LX +s.aiJ=s.Vr +s.aiK=s.Vs +s.ZN=s.m +s=A.H5.prototype +s.akw=s.m +s=A.Dw.prototype +s.aij=s.UH +s.aiq=s.aKl +s.air=s.aKm +s.aim=s.aJy +s.aip=s.aJM +s.aio=s.aJA +s.ais=s.VA +s.ail=s.m +s.aik=s.jP +s=A.Wq.prototype +s.amg=s.m +s=A.Wk.prototype +s.am2=s.aw +s.am3=s.ap +s=A.kL.prototype +s.ajG=s.V4 +s=A.Pu.prototype +s.a__=s.Ba +s.ajU=s.Bc +s.ajT=s.Bb +s=A.Wr.prototype +s.amh=s.m +s=A.Ws.prototype +s.ami=s.m +s=A.ib.prototype +s.Zu=s.M6 +s.OQ=s.Ah +s=A.BK.prototype +s.ahy=s.ca +s.ahx=s.aO +s.ahz=s.kJ +s=A.UV.prototype +s.alh=s.m +s=A.h9.prototype +s.ajn=s.k +s.ajo=s.wS +s=A.Yj.prototype +s.aho=s.Vi +s=A.W2.prototype +s.alM=s.m +s=A.hw.prototype +s.a_2=s.pp +s.ak3=s.ud +s=A.aU.prototype +s.aiF=s.bZ +s.OS=s.ud +s.ZL=s.m +s.HK=s.pp +s=A.fT.prototype +s.aki=s.pp +s=A.Wo.prototype +s.amd=s.cf +s.ame=s.m +s=A.Wt.prototype +s.amj=s.m +s=A.F_.prototype +s.ajI=s.bO +s.ajH=s.k})();(function installTearOffs(){var s=hunkHelpers._static_2,r=hunkHelpers._static_1,q=hunkHelpers.installStaticTearOff,p=hunkHelpers._instance_0u,o=hunkHelpers._instance_1u,n=hunkHelpers._instance_1i,m=hunkHelpers._instance_0i,l=hunkHelpers.installInstanceTearOff,k=hunkHelpers._static_0,j=hunkHelpers._instance_2u,i=hunkHelpers._instance_2i +s(A,"bRl","bTz",250) +r(A,"bRj","bFl",3) +q(A,"bxf",1,function(){return{params:null}},["$2$params","$1"],["bxc",function(a){return A.bxc(a,null)}],966,0) +r(A,"bRk","bSv",46) +r(A,"aqY","bRg",30) +p(A.I4.prototype,"gST","aDl",0) +var h +o(h=A.a2I.prototype,"gaAb","aAc",33) +o(h,"gavS","avT",33) +o(A.Z8.prototype,"gaFc","aFd",818) +o(h=A.pf.prototype,"gapz","apA",3) +o(h,"gapx","apy",3) +o(A.aax.prototype,"gaAh","aAi",447) +o(A.a2_.prototype,"gax8","ax9",415) +n(h=A.a1H.prototype,"gjH","F",503) +p(h,"gOy","um",2) +o(A.a3i.prototype,"gayb","ayc",157) +n(A.Md.prototype,"gWF","WG",12) +n(A.Ox.prototype,"gWF","WG",12) +o(A.a2y.prototype,"gay7","ay8",3) +p(h=A.a1u.prototype,"gex","m",0) +o(h,"ga6A","aE8",7) +o(A.a7i.prototype,"gRZ","ayg",464) +o(A.v8.prototype,"gazD","azE",556) +o(A.aah.prototype,"gaMC","Wh",564) +p(A.a8J.prototype,"gex","m",0) +o(h=A.Zn.prototype,"gasU","asV",3) +o(h,"gasW","asX",3) +o(h,"gasS","asT",3) +o(h=A.JL.prototype,"gF9","aaA",3) +o(h,"gLP","aJx",3) +o(h,"gFO","aMB",3) +o(A.a0u.prototype,"ganO","anP",107) +o(A.a2b.prototype,"gayF","ayG",3) +s(J,"bS1","bJe",111) +m(h=A.Bm.prototype,"gdJ","aI",35) +o(h,"gaxT","axU",12) +l(h,"gi0",1,0,null,["$1","$0"],["io","iK"],187,0,0) +m(h,"gfC","iq",0) +n(A.o1.prototype,"gtk","p",54) +k(A,"bSf","bL6",67) +n(A.kw.prototype,"gtk","p",54) +n(A.h0.prototype,"gtk","p",54) +r(A,"bTj","bOp",45) +r(A,"bTk","bOq",45) +r(A,"bTl","bOr",45) +r(A,"bTi","bIB",54) +q(A,"byb",1,function(){return[null]},["$2","$1"],["brO",function(a){return A.brO(a,null)}],968,0) +k(A,"byc","bSP",0) +r(A,"bTm","bSx",30) +s(A,"bTn","bSz",14) +k(A,"bg9","bSy",0) +p(h=A.A5.prototype,"gDg","qq",0) +p(h,"gDh","qr",0) +n(h=A.mz.prototype,"gjH","F",12) +m(h,"gdV","ah",35) +j(h,"gHW","kg",14) +n(h=A.G2.prototype,"gjH","F",12) +l(h,"gwK",0,1,function(){return[null]},["$2","$1"],["dP","pF"],188,0,0) +m(h,"gdV","ah",35) +l(A.A8.prototype,"gKO",0,1,function(){return[null]},["$2","$1"],["fc","kn"],188,0,0) +j(A.a7.prototype,"gyT","iz",14) +n(h=A.vN.prototype,"gjH","F",12) +l(h,"gwK",0,1,function(){return[null]},["$2","$1"],["dP","pF"],188,0,0) +m(h,"gdV","ah",35) +n(h,"ganC","oF",12) +j(h,"gHW","kg",14) +p(h,"gapb","rV",0) +p(h=A.vs.prototype,"gDg","qq",0) +p(h,"gDh","qr",0) +l(h=A.hx.prototype,"gi0",1,0,null,["$1","$0"],["io","iK"],172,0,0) +m(h,"gfC","iq",0) +m(h,"gdJ","aI",35) +p(h,"gDg","qq",0) +p(h,"gDh","qr",0) +l(h=A.Gg.prototype,"gi0",1,0,null,["$1","$0"],["io","iK"],172,0,0) +m(h,"gfC","iq",0) +m(h,"gdJ","aI",35) +p(h,"ga3D","ayf",0) +p(h=A.G1.prototype,"gaxO","zg",0) +p(h,"ganF","anG",0) +l(h=A.vp.prototype,"gi0",1,0,null,["$1","$0"],["io","iK"],172,0,0) +m(h,"gfC","iq",0) +m(h,"gdJ","aI",35) +o(h=A.o8.prototype,"ganD","anE",12) +j(h,"gay0","ay1",14) +p(h,"gaxV","axW",0) +p(h=A.Gw.prototype,"gDg","qq",0) +p(h,"gDh","qr",0) +o(h,"gQW","QX",12) +j(h,"gR3","R4",465) +p(h,"gQY","QZ",0) +p(h=A.Hk.prototype,"gDg","qq",0) +p(h,"gDh","qr",0) +o(h,"gQW","QX",12) +j(h,"gR3","R4",14) +p(h,"gQY","QZ",0) +j(A.am_.prototype,"gaaN","aKz",14) +s(A,"bnf","bR7",151) +r(A,"bng","bR8",70) +s(A,"bTH","bJE",111) +s(A,"bTI","bRf",111) +l(h=A.pA.prototype,"gRT",0,0,null,["$1$0","$0"],["Df","RU"],180,0,0) +n(h,"gtk","p",54) +l(h=A.kW.prototype,"gRT",0,0,null,["$1$0","$0"],["Df","RU"],180,0,0) +n(h,"gtk","p",54) +l(h=A.F0.prototype,"gaxA",0,0,null,["$1$0","$0"],["a3t","zf"],180,0,0) +n(h,"gtk","p",54) +q(A,"bTX",1,function(){return{toEncodable:null}},["$2$toEncodable","$1"],["bz_",function(a){return A.bz_(a,null)}],969,0) +q(A,"bTW",1,function(){return{reviver:null}},["$2$reviver","$1"],["byZ",function(a){return A.byZ(a,null)}],970,0) +r(A,"bnj","bRa",62) +m(A.St.prototype,"gdV","ah",0) +n(h=A.QN.prototype,"gjH","F",12) +m(h,"gdV","ah",0) +l(A.ai9.prototype,"gan9",0,3,null,["$3"],["ana"],500,0,0) +r(A,"byo","bVF",70) +q(A,"byp",1,function(){return{onError:null,radix:null}},["$3$onError$radix","$1","$2$onError"],["eq",function(a){return A.eq(a,null,null)},function(a,b){return A.eq(a,b,null)}],971,0) +s(A,"byn","bVE",151) +s(A,"byl","bG1",972) +q(A,"bTZ",1,null,["$2$encoding","$1"],["bv_",function(a){return A.bv_(a,B.a_)}],973,0) +r(A,"bTY","bNQ",18) +k(A,"bU_","bQb",974) +s(A,"bym","bSY",975) +n(A.z.prototype,"gtk","p",54) +l(A.d_.prototype,"gaQN",0,0,null,["$1","$0"],["BN","aQO"],285,0,0) +q(A,"bVB",4,null,["$4"],["bP7"],319,0) +q(A,"bVC",4,null,["$4"],["bP8"],319,0) +n(A.FN.prototype,"gagc","kc",30) +m(h=A.Go.prototype,"gdJ","aI",35) +l(h,"gi0",1,0,null,["$1","$0"],["io","iK"],187,0,0) +m(h,"gfC","iq",0) +p(h=A.agQ.prototype,"gazZ","Sd",0) +m(h,"gaw9","awa",0) +m(A.RN.prototype,"gt","vy",175) +m(h=A.Ar.prototype,"gdV","ah",2) +m(h,"gt","vy",175) +r(A,"bW_","bmP",105) +r(A,"bVZ","bmO",977) +q(A,"bz7",2,null,["$1$2","$2"],["bz8",function(a,b){return A.bz8(a,b,t.Jy)}],978,1) +q(A,"X1",3,null,["$3"],["aVc"],979,0) +q(A,"X2",3,null,["$3"],["ag"],980,0) +q(A,"ds",3,null,["$3"],["W"],981,0) +o(A.Ut.prototype,"gabo","hi",46) +p(A.rx.prototype,"ga14","aqz",0) +j(h=A.IR.prototype,"gaxL","axM",778) +l(h,"gaxJ",0,3,null,["$3"],["axK"],263,0,0) +o(h=A.a67.prototype,"gaxl","axm",5) +p(h,"gaxn","a3n",0) +n(h,"gDT","P",164) +j(h=A.a0F.prototype,"gaIH","d7",151) +n(h,"gaKD","dl",70) +o(h,"gaLN","aLO",54) +l(A.i0.prototype,"gdJ",1,0,function(){return[null]},["$1","$0"],["a8c","aI"],285,0,0) +j(h=A.kA.prototype,"gMQ","pg",73) +j(h,"gWH","r5",155) +i(h,"gtS","nC",156) +j(h=A.ai2.prototype,"gMQ","pg",73) +j(h,"gWH","r5",155) +i(h,"gtS","nC",156) +j(A.L2.prototype,"gMQ","pg",73) +r(A,"bzd","bRb",982) +r(A,"bTo","bR5",88) +j(h=A.JP.prototype,"gMQ","pg",73) +j(h,"gWH","r5",155) +i(h,"gtS","nC",156) +r(A,"c4c","avk",983) +m(A.M4.prototype,"gt","vy",175) +s(A,"bWs","bR9",984) +o(A.M5.prototype,"gaI1","aI2",417) +r(A,"bYU","bVT",11) +l(h=A.mP.prototype,"gadw",1,0,null,["$1$from","$0"],["Xr","d3"],451,0,0) +o(h,"gaqd","aqe",456) +o(h,"gPo","anv",5) +o(A.k_.prototype,"gzv","JG",9) +o(A.wL.prototype,"gJY","JZ",9) +o(h=A.zN.prototype,"gzv","JG",9) +p(h,"gTg","aEI",0) +o(h=A.BI.prototype,"ga3h","ax3",9) +p(h,"ga3g","ax2",0) +p(A.wc.prototype,"geO","ag",0) +o(A.tb.prototype,"gace","vA",9) +o(h=A.R6.prototype,"gaos","aot",38) +o(h,"gaou","aov",78) +p(h,"gaoq","aor",0) +o(A.R7.prototype,"gWw","Wx",7) +o(h=A.R8.prototype,"gaxZ","ay_",79) +o(h,"gay2","ay3",65) +p(A.Rc.prototype,"gRH","a37",0) +s(A,"bWu","bSh",985) +q(A,"bWw",3,null,["$3"],["bSu"],986,0) +q(A,"bWv",5,null,["$5"],["bSt"],220,0) +l(A.QA.prototype,"gaoc",0,3,null,["$3"],["aod"],486,0,0) +p(A.R9.prototype,"gayK","ayL",0) +o(h=A.Gb.prototype,"gazX","azY",34) +o(h,"gWw","Wx",7) +o(h=A.Ga.prototype,"gaAN","aAO",39) +o(h,"gaAP","aAQ",20) +o(h,"gaAL","aAM",31) +p(h,"gaAJ","aAK",0) +o(h,"gaAR","aAS",81) +p(A.Ra.prototype,"gaaM","LW",0) +o(h=A.Rb.prototype,"gaCV","aCW",38) +l(h,"gSO",0,0,function(){return[null]},["$1","$0"],["a5x","aCU"],108,0,0) +o(h,"gaCX","aCY",78) +p(h,"gavc","avd",0) +o(h,"gaCQ","aCR",39) +o(h,"gaCS","aCT",20) +o(h,"gaCO","aCP",31) +o(h,"gays","ayt",7) +q(A,"bYz",4,null,["$4"],["bGn"],987,0) +o(h=A.Rf.prototype,"gay9","aya",31) +p(h,"gau3","a2o",0) +p(h,"gauv","a2r",0) +o(h,"gJH","aCz",9) +o(h=A.Rd.prototype,"gayw","ayx",38) +o(h,"gayy","ayz",78) +p(h,"gayu","ayv",0) +o(h=A.Fx.prototype,"gaDA","aDB",38) +l(h,"ga65",0,0,function(){return[null]},["$1","$0"],["a66","aDz"],108,0,0) +l(h,"ga67",0,0,null,["$1","$0"],["a68","aDC"],243,0,0) +o(h,"gaDx","aDy",7) +q(A,"bTh",1,null,["$2$forceReport","$1"],["bku",function(a){return A.bku(a,!1)}],988,0) +n(h=A.i1.prototype,"gDT","P",45) +n(h,"gad7","H",45) +p(h,"gex","m",0) +p(h,"geO","ag",0) +r(A,"bYi","bMI",989) +o(h=A.CA.prototype,"gauc","aud",581) +o(h,"gaq8","aq9",588) +o(h,"gaG8","aG9",33) +p(h,"garA","QA",0) +o(h,"gaug","a2p",32) +p(h,"gauB","auC",0) +q(A,"c4G",3,null,["$3"],["brJ"],990,0) +o(A.n7.prototype,"gvq","ku",32) +r(A,"bz1","bJJ",66) +r(A,"bnC","bHn",228) +r(A,"bnD","bHo",66) +o(A.K_.prototype,"gvq","ku",32) +r(A,"bWt","bHk",66) +p(A.afs.prototype,"gayA","ayB",0) +o(h=A.n4.prototype,"gJ5","axo",32) +o(h,"gaAa","Dq",605) +p(h,"gaxp","wr",0) +r(A,"HT","bIF",66) +o(A.DY.prototype,"gvq","ku",32) +o(A.nB.prototype,"gvq","ku",32) +o(h=A.UG.prototype,"gvq","ku",32) +p(h,"gapv","apw",0) +o(A.IA.prototype,"gvq","ku",32) +j(h=A.SD.prototype,"gaw3","aw4",658) +j(h,"gawX","awY",51) +o(A.Qo.prototype,"gPp","anx",673) +o(h=A.QI.prototype,"ga_N","anK",39) +o(h,"ga_O","anL",20) +o(h,"ga_M","anJ",31) +o(h,"gV9","Va",137) +o(h,"gat6","at7",7) +o(h=A.Tr.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +o(h=A.GT.prototype,"gaJD","aJE",39) +l(h,"gaJB",0,1,null,["$2$isClosing","$1"],["aaB","aJC"],232,0,0) +o(h=A.TB.prototype,"gbW","bX",1) +o(h,"gcs","bR",1) +o(h,"gc1","bQ",1) +o(h,"gcR","bV",1) +p(A.QL.prototype,"gxs","VB",0) +o(h=A.TC.prototype,"gbW","bX",1) +o(h,"gcs","bR",1) +o(h,"gc1","bQ",1) +o(h,"gcR","bV",1) +p(A.J2.prototype,"gavu","avv",0) +o(h=A.Tk.prototype,"gap_","ap0",38) +p(h,"gaoY","aoZ",0) +p(h,"gaoW","aoX",0) +o(h=A.Tt.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +q(A,"bUs",4,null,["$4"],["bQy"],320,0) +p(h=A.C4.prototype,"gans","ant",0) +o(h,"gaqB","aqC",9) +p(h,"gatw","atx",0) +o(h,"gat4","at5",229) +p(h,"gat2","at3",0) +o(h,"ga3l","axe",20) +o(h,"ga58","aBZ",31) +m(h,"gdV","ah",0) +o(h=A.Gl.prototype,"gaqF","aqG",7) +p(h,"gau6","au7",0) +p(A.Gi.prototype,"gaqH","Qm",0) +p(h=A.RL.prototype,"gar8","ar9",0) +j(h,"ganV","anW",51) +o(h=A.Ts.prototype,"gbW","bX",1) +o(h,"gcs","bR",1) +p(h=A.Sl.prototype,"gaux","auy",0) +o(h,"ganS","anT",13) +p(A.L6.prototype,"gavU","avV",0) +o(A.tY.prototype,"gasA","asB",9) +o(A.L7.prototype,"gavX","avY",9) +o(A.L8.prototype,"gavZ","aw_",9) +o(h=A.CR.prototype,"gO9","C_",152) +o(h,"gaHU","aHV",843) +o(h=A.Sj.prototype,"gaF3","aF4",847) +l(h,"gagT",0,0,null,["$1","$0"],["Z5","agU"],108,0,0) +p(h,"gagR","agS",0) +p(h,"gxs","VB",0) +o(h,"gaaD","aJH",226) +o(h,"gaJI","aJJ",7) +o(h,"gaKs","aKt",38) +o(h,"gaKu","aKv",78) +o(h,"gaKh","aKi",38) +o(h,"gaKj","aKk",78) +p(h,"gVC","LU",0) +p(h,"gaKq","aKr",0) +p(h,"gaJT","aaH",0) +p(h,"gaKd","aKe",0) +p(h,"gaKf","aKg",0) +o(h,"gaJY","aJZ",79) +o(h,"gaK_","aK0",65) +p(A.S4.prototype,"gRq","Rr",0) +o(h=A.Tw.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +o(h,"gaoP","aoQ",225) +j(h,"gayS","ayT",16) +p(A.So.prototype,"gRq","Rr",0) +o(h=A.TF.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +p(A.UL.prototype,"gQf","a0R",0) +o(A.Sd.prototype,"gO9","C_",152) +o(A.Ri.prototype,"ga6W","a6X",9) +p(A.SX.prototype,"gaxq","a3q",0) +o(A.Sc.prototype,"gO9","C_",152) +p(h=A.HH.prototype,"gB8","aN_",0) +o(h,"gB7","aMZ",9) +o(h=A.Vq.prototype,"gDi","S_",30) +p(h,"gex","m",0) +o(h=A.Vr.prototype,"gDi","S_",30) +p(h,"gex","m",0) +p(A.DU.prototype,"gVC","LU",0) +p(A.DT.prototype,"gagJ","agK",0) +o(A.H4.prototype,"gazV","azW",34) +o(h=A.No.prototype,"gauF","auG",49) +o(h,"gatE","atF",331) +o(h=A.RP.prototype,"gaut","auu",9) +p(h,"gayh","ayi",0) +o(h=A.Ev.prototype,"gaqT","aqU",7) +p(h,"gav5","av6",0) +o(h=A.Hn.prototype,"gaB5","aB6",39) +l(h,"gaB3",0,1,null,["$2$isClosing","$1"],["a4x","aB4"],232,0,0) +o(h,"gav7","av8",9) +o(h,"gV9","Va",137) +q(A,"bzz",3,null,["$3"],["bSg"],992,0) +s(A,"bXU","bM8",150) +o(h=A.amn.prototype,"gWz","Ba",58) +o(h,"gWy","FY",58) +o(h,"gacn","WJ",91) +o(h,"gWL","Bc",123) +o(h,"gWK","Bb",83) +p(h=A.U7.prototype,"ga3y","axQ",0) +j(h,"gaBD","aBE",208) +p(h,"gaBF","aBG",0) +o(h=A.Uh.prototype,"gasO","asP",47) +o(h,"gR1","R2",47) +o(h,"gR_","R0",47) +o(h,"gan3","an4",344) +o(h,"gatq","atr",7) +o(h,"gaty","atz",7) +p(h=A.H9.prototype,"gaqW","Qo",0) +o(h,"gR1","R2",39) +o(h,"gat8","at9",20) +o(h,"gR_","R0",31) +o(h,"gavf","avg",38) +o(h,"gavm","avn",78) +o(h,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +p(h,"gaL5","M5",0) +p(h,"gaI_","L6",0) +o(h=A.SI.prototype,"gaCK","aCL",39) +o(h,"gaCM","aCN",20) +o(h,"gaCI","aCJ",31) +o(h,"gaCG","aCH",34) +p(h=A.UA.prototype,"gat_","at0",0) +p(h,"gex","m",0) +p(A.rg.prototype,"gex","m",0) +p(A.Se.prototype,"geG","b_",0) +p(h=A.UC.prototype,"gwm","Rc",0) +p(h,"gRd","ava",0) +l(h,"gaB1",0,3,null,["$3"],["aB2"],349,0,0) +p(h=A.UD.prototype,"gwm","Rc",0) +o(h,"gaD_","aD0",49) +s(A,"WY","bN2",150) +o(h=A.anT.prototype,"gWz","Ba",58) +o(h,"gWy","FY",58) +o(h,"gWL","Bc",123) +o(h,"gWK","Bb",83) +p(h=A.UJ.prototype,"gJQ","aD5",0) +j(h,"gaD6","aD7",208) +p(h,"gauN","auO",0) +s(A,"bYy","bN4",150) +p(A.Hy.prototype,"gQV","asY",0) +s(A,"bYA","bNe",994) +o(h=A.zL.prototype,"gaDv","aDw",38) +l(h,"ga63",0,0,function(){return[null]},["$1","$0"],["a64","aDu"],108,0,0) +l(h,"ga2v",0,0,null,["$1","$0"],["a2w","avh"],243,0,0) +o(h,"gaDq","aDr",7) +o(h,"gaDs","aDt",7) +p(A.Fw.prototype,"gex","m",0) +o(h=A.Fz.prototype,"gaDF","aDG",9) +o(h,"gaue","auf",81) +o(h,"ga2k","att",32) +p(h,"gavi","avj",0) +p(h,"gatI","atJ",0) +p(h,"gaur","aus",0) +o(h,"ga69","aDD",79) +o(h,"ga6a","aDE",65) +o(h,"gaok","aol",13) +l(h=A.MJ.prototype,"gaLi",0,1,null,["$4$allowUpscaling$cacheHeight$cacheWidth","$1"],["abh","aLj"],362,0,0) +l(h,"gaLl",0,1,null,["$2$getTargetSize","$1"],["abi","aLm"],363,0,0) +q(A,"bnc",3,null,["$3"],["bta"],995,0) +q(A,"bnm",3,null,["$3"],["fJ"],996,0) +n(h=A.xD.prototype,"gDT","P",164) +o(h,"gaP0","aP1",200) +o(h=A.a66.prototype,"gasQ","asR",261) +o(h,"gasG","asH",5) +n(h,"gDT","P",164) +j(A.FQ.prototype,"gaCi","aCj",382) +q(A,"WZ",3,null,["$3"],["c7"],997,0) +n(h=A.a2a.prototype,"gaQP","hK",1) +n(h,"gUX","j9",1) +r(A,"bTs","bOL",197) +o(h=A.Ek.prototype,"gavx","avy",5) +o(h,"gau8","au9",5) +p(A.QE.prototype,"gex","m",0) +o(h=A.O.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +p(h,"gtQ","aa",0) +j(A.e_.prototype,"ga9q","x5",16) +o(h=A.Nw.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +o(h=A.Nx.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +p(h=A.yZ.prototype,"geG","b_",0) +p(h,"gJB","aCd",0) +o(h,"gauY","auZ",25) +o(h,"gauW","auX",392) +o(h,"gatY","atZ",7) +o(h,"gatU","atV",7) +o(h,"gau_","au0",7) +o(h,"gatW","atX",7) +o(h,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +o(h,"gaqM","aqN",38) +p(h,"gaqK","aqL",0) +p(h,"gaqI","aqJ",0) +j(h,"gayQ","a3M",16) +o(h=A.Nz.prototype,"gc1","bQ",1) +o(h,"gcR","bV",1) +o(h=A.uJ.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +o(h=A.NC.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +o(h=A.NF.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +r(A,"bzb","bLB",21) +r(A,"bzc","bLC",21) +p(A.qT.prototype,"ga6S","a6T",0) +o(h=A.J.prototype,"gXf","rk",21) +p(h,"geG","b_",0) +l(h,"gil",0,2,null,["$2"],["aE"],16,0,1) +p(h,"gB5","bY",0) +l(h,"ga3c",0,1,null,["$2$isMergeUp","$1"],["IY","awS"],400,0,0) +l(h,"gyu",0,0,null,["$4$curve$descendant$duration$rect","$0","$1$rect","$3$curve$duration$rect","$2$descendant$rect"],["i8","Cj","w1","yv","w2"],182,0,0) +o(h=A.ar.prototype,"ga8j","aGk","ar.0?(C?)") +o(h,"gU0","aGj","ar.0?(C?)") +p(A.uH.prototype,"guD","aBf",0) +o(h=A.NJ.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +o(h,"gaoR","aoS",225) +o(h=A.ih.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +l(h,"gil",0,2,null,["$2"],["aE"],16,0,1) +o(h=A.Eh.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +o(h=A.NE.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +p(A.Nt.prototype,"gK1","T8",0) +p(A.H7.prototype,"gIX","zb",0) +o(h=A.NH.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +p(h=A.r3.prototype,"gazo","azp",0) +p(h,"gazq","azr",0) +p(h,"gazs","azt",0) +p(h,"gazm","azn",0) +p(h=A.NL.prototype,"gazv","azw",0) +p(h,"gazh","azi",0) +p(h,"gaze","azf",0) +p(h,"gaz6","az7",0) +p(h,"gaz8","az9",0) +p(h,"gazj","azk",0) +p(h,"gaza","azb",0) +p(h,"gazc","azd",0) +p(A.a94.prototype,"ga4V","a4W",0) +o(h=A.z_.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +l(h,"gil",0,2,null,["$2"],["aE"],16,0,1) +o(h=A.NI.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +o(h=A.Ny.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +l(A.dk.prototype,"gaKP",0,1,null,["$3$crossAxisPosition$mainAxisPosition"],["aaX"],406,0,0) +o(h=A.Ei.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +j(h,"gacu","N2",16) +j(A.ND.prototype,"gacu","N2",16) +o(h=A.r4.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +j(h,"gaEL","a76",16) +l(h,"gyu",0,0,null,["$4$curve$descendant$duration$rect","$0","$1$rect","$3$curve$duration$rect","$2$descendant$rect"],["i8","Cj","w1","yv","w2"],182,0,0) +o(h=A.NO.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +s(A,"bTu","bLU",998) +q(A,"bTv",0,null,["$2$priority$scheduler"],["bUj"],999,0) +o(h=A.ij.prototype,"gar4","ar5",281) +p(h,"gaAV","aAW",0) +o(h,"gasK","asL",5) +p(h,"gatb","atc",0) +p(h,"gaqo","aqp",0) +o(A.zI.prototype,"gJR","aDi",5) +p(h=A.a95.prototype,"gaqb","aqc",0) +p(h,"gauV","a2t",0) +o(h,"gauT","auU",413) +o(A.ea.prototype,"ga4c","aA5",414) +p(A.Ol.prototype,"gex","m",0) +o(A.nD.prototype,"gaFm","Ty",421) +r(A,"bTt","bMg",1000) +p(h=A.EK.prototype,"ganf","ang",427) +o(h,"gatG","R7",428) +o(h,"gaua","IE",77) +o(h=A.a3h.prototype,"gaJN","aJO",157) +o(h,"gaKb","Vz",431) +o(h,"gapC","apD",432) +o(A.NS.prototype,"gax6","RO",193) +o(h=A.fz.prototype,"gaAC","aAD",194) +o(h,"ga4a","a4b",194) +o(A.aaT.prototype,"gawM","IV",77) +o(A.abn.prototype,"gavr","Rf",77) +o(A.Qj.prototype,"ga2b","asz",446) +o(h=A.RT.prototype,"ga2j","ats",226) +o(h,"gatQ","atR",79) +o(h,"gatS","atT",65) +o(h,"gatn","ato",7) +s(A,"by8","bF1",1001) +s(A,"by7","bF0",1002) +o(A.Ql.prototype,"gaEC","Td",448) +o(h=A.Vi.prototype,"gaq1","aq2",199) +o(h,"gay5","ay6",452) +o(h,"gayD","ayE",453) +o(A.Qz.prototype,"ganb","anc",455) +p(A.Lj.prototype,"gex","m",0) +p(h=A.PV.prototype,"gaJR","aJS",0) +o(h,"gau1","au2",77) +p(h,"gasM","asN",0) +p(h=A.Vp.prototype,"gaJX","Vu",0) +p(h,"gaKx","VD",0) +p(h,"gaK4","Vx",0) +o(h,"gaJw","Vq",965) +o(A.Rz.prototype,"gPm","a_C",9) +p(h=A.tA.prototype,"ga3x","axP",0) +p(h,"gay4","a3A",0) +p(h,"gaAA","aAB",0) +p(h,"gDF","aDT",0) +p(h,"gaxX","axY",0) +p(h,"gaxR","axS",0) +p(h,"ga3z","RX",0) +p(h,"gIh","a0U",0) +p(h,"gR6","atp",0) +o(h,"gapi","apj",463) +l(h,"gaBb",0,0,function(){return[null]},["$1","$0"],["a4C","a4B"],202,0,0) +o(h,"gaO_","aO0",25) +l(h,"gaxf",0,3,null,["$3"],["axg"],203,0,0) +l(h,"gaxi",0,3,null,["$3"],["axj"],203,0,0) +p(h,"gaoF","a0_",97) +p(h,"gaxB","axC",97) +p(h,"gawt","awu",97) +p(h,"gaz1","az2",97) +p(h,"gaqu","aqv",97) +o(h,"gaDL","aDM",467) +o(h,"gaAo","a4l",468) +o(h,"gaBj","aBk",469) +o(h,"gaBg","aBh",470) +o(h,"gara","arb",471) +o(h,"gaEq","aEr",472) +o(h,"gavD","avE",473) +o(h,"gaq3","aq4",81) +p(A.eM.prototype,"gex","m",0) +p(h=A.KA.prototype,"gex","m",0) +p(h,"gaFC","aFD",0) +o(h=A.ahx.prototype,"gaaI","Vy",32) +o(h,"gaaG","aJP",483) +p(A.Gt.prototype,"gQC","arD",0) +q(A,"bV9",1,null,["$5$alignment$alignmentPolicy$curve$duration","$1","$2$alignmentPolicy"],["bkv",function(a){return A.bkv(a,null,null,null,null)},function(a,b){return A.bkv(a,null,b,null,null)}],1003,0) +r(A,"bh2","bP9",24) +s(A,"bnq","bHz",1004) +r(A,"byL","bHy",24) +o(A.a9.prototype,"gagz","ad",45) +o(h=A.ahQ.prototype,"gaDV","a6h",24) +p(h,"gaDW","aDX",0) +o(A.bD.prototype,"gaHT","Er",24) +o(h=A.E8.prototype,"garO","arP",81) +o(h,"gauh","aui",513) +o(h,"gaEx","aEy",514) +o(h=A.rF.prototype,"gao7","ao8",13) +o(h,"ga2c","a2d",9) +p(h,"gWM","aNz",0) +o(h=A.xs.prototype,"gatk","atl",517) +l(h,"gaq_",0,5,null,["$5"],["aq0"],220,0,0) +q(A,"byQ",3,null,["$3"],["qC"],1005,0) +j(h=A.Sa.prototype,"gatC","atD",522) +o(h,"gatA","atB",200) +p(A.AZ.prototype,"gasC","asD",0) +p(A.GH.prototype,"gRg","avt",0) +o(h=A.Sp.prototype,"gayo","ayp",528) +o(h,"gayq","ayr",529) +o(h,"gaym","ayn",530) +o(h,"gaA1","aA2",161) +p(h,"gJ7","axN",0) +p(h,"gJb","ayl",0) +p(h,"ga3G","ayC",0) +o(A.GK.prototype,"ga31","awj",12) +o(h=A.TD.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +s(A,"bz9","bKq",1006) +r(A,"pU","bPI",92) +r(A,"bza","bPJ",92) +r(A,"WT","bPK",92) +o(A.GW.prototype,"gFV","tR",125) +o(A.GV.prototype,"gFV","tR",125) +o(A.SY.prototype,"gFV","tR",125) +o(A.SZ.prototype,"gFV","tR",125) +p(h=A.ls.prototype,"ga2l","atv",0) +o(h,"gaxr","axs",81) +o(h,"gaul","aum",32) +o(h=A.H8.prototype,"gcs","bR",1) +o(h,"gcR","bV",1) +o(h,"gbW","bX",1) +o(h,"gc1","bQ",1) +r(A,"bWD","bPG",21) +l(A.Au.prototype,"gil",0,2,null,["$2"],["aE"],16,0,1) +o(h=A.vK.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +o(A.S0.prototype,"gS0","S1",49) +p(h=A.S_.prototype,"gex","m",0) +o(h,"gPG","PH",9) +o(h,"gaDj","aDk",5) +o(A.Uy.prototype,"gS0","S1",49) +o(h=A.Ux.prototype,"gPG","PH",9) +p(h,"gex","m",0) +o(A.a0J.prototype,"gax4","RN",193) +p(A.TQ.prototype,"gSl","aAm",0) +p(A.h8.prototype,"gex","m",0) +o(A.mh.prototype,"gaEl","T9",553) +o(h=A.Hc.prototype,"gaAr","aAs",5) +p(h,"gIG","a2s",0) +p(h,"gQT","asJ",292) +p(h,"gRa","auA",0) +o(h=A.Es.prototype,"gagp","agq",148) +o(h,"gagw","agx",148) +o(A.fr.prototype,"ga2u","av9",9) +p(h=A.ek.prototype,"ga2q","R9",0) +o(h,"gao3","ao4",13) +o(h,"gao5","ao6",13) +p(h=A.Ye.prototype,"gSz","SA",0) +p(h,"gSx","Sy",0) +p(h=A.a1f.prototype,"gSz","SA",0) +p(h,"gSx","Sy",0) +p(A.zb.prototype,"gex","m",0) +s(A,"t5","bxu",249) +n(h=A.Ua.prototype,"gjH","F",76) +n(h,"gk_","E",76) +r(A,"HU","bUk",49) +p(h=A.nC.prototype,"gaIh","aIi",0) +p(h,"gex","m",0) +p(A.zf.prototype,"gex","m",0) +o(h=A.EA.prototype,"ga4L","aBl",229) +o(h,"ga4N","aBn",39) +o(h,"ga4O","aBo",20) +o(h,"ga4M","aBm",31) +p(h,"ga4J","a4K",0) +p(h,"gaql","aqm",0) +p(h,"gaqj","aqk",0) +o(h,"gaBt","aBu",161) +o(h,"gaBp","aBq",32) +o(h,"gaBr","aBs",141) +p(h=A.U2.prototype,"ga4A","aB9",0) +p(h,"gex","m",0) +p(A.EB.prototype,"gex","m",0) +o(h=A.p7.prototype,"gaEG","aEH",9) +p(h,"gaaM","LW",0) +o(h,"gavp","avq",38) +o(h,"gauD","auE",141) +o(h,"gaBv","aBw",49) +o(h,"gauj","auk",32) +o(h,"gaBx","aBy",161) +n(h=A.Dw.prototype,"gjH","F",76) +n(h,"gk_","E",76) +j(h,"gPX","apg",578) +p(h,"gRb","auI",0) +p(h,"gex","m",0) +j(A.Ue.prototype,"gau4","au5",189) +p(A.Ou.prototype,"gex","m",0) +p(A.Ud.prototype,"ga5b","aC5",0) +p(h=A.TM.prototype,"gIK","avB",0) +o(h,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +l(h,"gyu",0,0,null,["$4$curve$descendant$duration$rect","$0","$1$rect","$3$curve$duration$rect","$2$descendant$rect"],["i8","Cj","w1","yv","w2"],182,0,0) +o(A.EW.prototype,"gaON","ad5",586) +p(A.Ha.prototype,"gJ9","ayj",0) +p(A.Rm.prototype,"gex","m",0) +o(A.Ur.prototype,"gPn","anu",9) +p(h=A.aaX.prototype,"ga6Y","Tc",0) +o(h,"gauJ","auK",39) +o(h,"gauL","auM",20) +o(h,"gauP","auQ",39) +o(h,"gauR","auS",20) +o(h,"gasE","asF",31) +o(h=A.a93.prototype,"gav1","av2",39) +o(h,"gav3","av4",20) +o(h,"gav_","av0",31) +o(h,"gatf","atg",39) +o(h,"gath","ati",20) +o(h,"gatd","ate",31) +o(h,"gaog","aoh",13) +o(h,"ganY","anZ",13) +o(h,"gaoi","aoj",13) +p(A.Ub.prototype,"gJT","SU",0) +p(A.U9.prototype,"gRh","Ri",0) +p(h=A.Pu.prototype,"gaNx","aNy",0) +p(h,"gaNv","aNw",0) +o(h,"gaNt","aNu",120) +o(h,"gWz","Ba",58) +o(h,"gWy","FY",58) +o(h,"gWL","Bc",123) +p(h,"gaNq","aNr",0) +o(h,"gWK","Bb",83) +o(h,"gacn","WJ",91) +o(h,"gaNo","aNp",135) +p(h,"gaNj","aNk",0) +o(h,"gaNl","aNm",38) +o(h,"gaN3","aN4",120) +o(h,"gaNA","aNB",120) +o(h,"gaN7","aN8",236) +o(h,"gaN9","aNa",237) +o(h,"gaN5","aN6",238) +p(h=A.UN.prototype,"ga2y","avl",0) +p(h,"ga2x","avk",0) +o(h,"ga5R","aDc",120) +o(h,"ga5S","aDd",123) +p(h,"ga5Q","aDb",0) +o(h,"ga5O","aD9",236) +o(h,"ga5P","aDa",237) +o(h,"ga5N","aD8",238) +o(h,"garH","arI",58) +o(h,"garF","arG",58) +o(h,"gatO","atP",83) +o(h,"gatM","atN",91) +o(h,"gatK","atL",135) +p(A.Je.prototype,"gex","m",0) +p(A.fO.prototype,"ghP","hQ",0) +p(A.dQ.prototype,"gep","ev",0) +r(A,"bYN","bLS",322) +r(A,"bYM","bLK",322) +p(A.Qk.prototype,"gSZ","aDK",0) +p(h=A.FD.prototype,"gae1","GG",0) +p(h,"gad_","Gh",0) +o(h,"gaDQ","aDR",597) +o(h,"gaA6","aA7",598) +p(h,"gSb","a43",0) +p(h,"gR5","a2i",0) +p(A.PO.prototype,"gex","m",0) +p(A.HG.prototype,"gTh","aEJ",0) +o(h=A.TK.prototype,"gcR","bV",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gbW","bX",1) +p(A.GM.prototype,"gD8","RC",0) +p(A.Hq.prototype,"gD8","RC",0) +o(A.a1Z.prototype,"gVt","xq",77) +o(A.V0.prototype,"ga1v","arC",45) +l(A.a7V.prototype,"gaJK",0,3,null,["$3"],["LQ"],611,0,0) +o(A.a20.prototype,"gVt","xq",77) +o(h=A.NA.prototype,"gbW","bX",1) +o(h,"gc1","bQ",1) +o(h,"gcs","bR",1) +o(h,"gcR","bV",1) +j(A.Rk.prototype,"gaun","auo",613) +l(h=A.KS.prototype,"gaup",0,3,null,["$3"],["auq"],624,0,0) +o(h,"gTS","A",13) +o(h,"gYX","On",148) +p(A.KR.prototype,"gex","m",0) +q(A,"bUd",0,null,["$5$arguments$child$key$name$restorationId"],["bWF"],1008,0) +q(A,"ar6",4,null,["$4"],["bKr"],320,0) +q(A,"bWr",0,null,["$5$arguments$child$key$name$restorationId"],["bWG"],1009,0) +s(A,"bXp","bLO",246) +o(A.OZ.prototype,"gaHZ","a9m",62) +p(h=A.qS.prototype,"gaPg","aPh",0) +p(h,"gex","m",0) +p(A.Sz.prototype,"gQU","a2g",0) +r(A,"pS","a0y",323) +r(A,"bWC","bla",323) +r(A,"bVN","bST",18) +k(A,"ko","bRd",8) +k(A,"he","bQs",8) +k(A,"eV","bQl",8) +k(A,"AJ","bQn",8) +k(A,"bnG","bQo",8) +k(A,"bWM","bQv",8) +k(A,"bWN","bQw",8) +k(A,"bhF","bQx",8) +k(A,"bhG","bQB",8) +k(A,"bzm","bR1",8) +k(A,"bWO","bR2",8) +k(A,"bWP","bR3",8) +k(A,"arf","bRn",8) +k(A,"bzl","bQK",8) +k(A,"bnH","bRy",8) +k(A,"bWR","bRB",8) +k(A,"bzn","bRS",8) +k(A,"bWQ","bRu",8) +k(A,"bWS","bSd",8) +k(A,"bnF","bQm",8) +k(A,"bWT","bSj",8) +k(A,"bWU","bSk",8) +k(A,"bWV","bSp",8) +k(A,"bWX","bSs",8) +k(A,"bWY","bSB",8) +k(A,"bzo","bSD",8) +k(A,"bWW","bSq",8) +k(A,"bzp","bSF",8) +k(A,"bWZ","bSN",8) +k(A,"bX_","bSO",8) +r(A,"bX0","bWa",11) +o(A.RM.prototype,"gTE","aFy",9) +o(h=A.a2R.prototype,"gTS","A",13) +l(h,"gavK",0,4,null,["$4"],["avL"],174,0,0) +l(h,"gazy",0,4,null,["$4"],["azz"],174,0,0) +l(h,"gazJ",0,4,null,["$4"],["azK"],174,0,0) +l(h,"gawH",0,3,null,["$3"],["awI"],667,0,0) +l(h,"gaqZ",0,3,null,["$3"],["ar_"],263,0,0) +l(h=A.c1.prototype,"gayd",0,1,null,["$2$seamless","$1"],["RY","aye"],169,0,0) +l(h,"gtS",1,1,null,["$2$seamless","$1"],["B9","tT"],169,0,0) +l(h,"gFX",0,1,null,["$2$seamless","$1"],["Wr","iJ"],169,0,0) +p(h,"gaxa","axb",672) +r(A,"bVg","bRc",45) +n(h=A.aU.prototype,"gis","bZ",12) +p(h,"gawR","RJ",0) +m(A.e2.prototype,"gh4","i3","1()") +m(A.Ap.prototype,"gh4","i3","1()") +m(A.H3.prototype,"gh4","i3","1()") +p(A.a7r.prototype,"gaD2","aD3",0) +m(A.Hg.prototype,"gh4","i3","2()") +n(A.FL.prototype,"gis","bZ",12) +j(A.Vf.prototype,"gaxF","axG",14) +s(A,"bYj","bii",1012) +n(A.F9.prototype,"gjH","F",12) +o(h=A.Hp.prototype,"gFX","iJ",12) +i(h,"gtS","nC",14) +p(h,"gWs","Wt",0) +o(h=A.Ho.prototype,"gFX","iJ",12) +i(h,"gtS","nC",14) +p(h,"gWs","Wt",0) +p(A.Tf.prototype,"ga4E","Sw",0) +p(A.U0.prototype,"ga6J","aEk",0) +p(A.iA.prototype,"gadR","BA",93) +r(A,"bVf","bIz",132) +r(A,"byK","bIy",132) +r(A,"bVd","bIw",132) +r(A,"bVe","bIx",132) +p(A.Lq.prototype,"gadR","BA",93) +r(A,"bYL","bNy",326) +r(A,"bYK","bNx",326) +r(A,"bT9","bT6",1015) +p(h=A.w8.prototype,"gaGe","KK",710) +l(h,"ga8i",0,0,null,["$1$cancelToken","$0"],["E7","aGf"],711,0,0) +r(A,"bUX","bUP",1016) +r(A,"bYh","bY8",1017) +q(A,"bV2",1,null,["$1$1","$1"],["bvu",function(a){return A.bvu(a,t.z)}],64,1) +q(A,"vX",1,null,["$1$1","$1"],["bvv",function(a){return A.bvv(a,t.z)}],64,1) +q(A,"bYg",1,null,["$1$1","$1"],["bvw",function(a){return A.bvw(a,t.z)}],64,1) +q(A,"WX",1,null,["$1$1","$1"],["bvx",function(a){return A.bvx(a,t.z)}],64,1) +r(A,"bUS","bgI",1019) +r(A,"bUU","bUM",162) +r(A,"bUT","bUL",1021) +k(A,"bUQ","bHW",1022) +r(A,"bUV","bUN",162) +r(A,"bUW","bUO",162) +k(A,"bUR","bHX",1023) +r(A,"bYc","bi7",1024) +r(A,"bYd","bY5",1025) +k(A,"bY9","bMC",1026) +r(A,"bYe","bY6",1027) +k(A,"bYa","bMD",1028) +k(A,"bYb","bME",1029) +k(A,"bYf","bMB",1030) +r(A,"bTD","bTB",1031) +q(A,"bTC",1,null,["$1$1","$1"],["bvy",function(a){return A.bvy(a,t.z)}],64,1) +k(A,"bUG","bFD",1032) +k(A,"bW8","bJy",1033) +k(A,"bW4","bJu",1034) +k(A,"bW5","bJv",1035) +k(A,"bW3","bJt",1036) +k(A,"bW7","bJx",1037) +k(A,"bW6","bJw",1038) +k(A,"bW2","bJs",1039) +r(A,"bUD","bUy",1040) +k(A,"bUA","bHm",1041) +r(A,"bUC","bUx",1042) +r(A,"bUB","bUv",1043) +r(A,"bUE","bUz",1044) +r(A,"bUF","bY0",1045) +p(h=A.qe.prototype,"gOy","um",2) +p(h,"gahd","ahe",2) +p(h,"gaGr","aGs",2) +r(A,"bWi","bWf",1046) +r(A,"bYT","bYQ",1047) +r(A,"bYS","bio",1048) +k(A,"bYR","bNL",1049) +q(A,"bTE",1,null,["$1$1","$1"],["bvz",function(a){return A.bvz(a,t.z)}],64,1) +q(A,"bWq",1,null,["$1$1","$1"],["bvA",function(a){return A.bvA(a,t.z)}],64,1) +k(A,"bWp","bJQ",1050) +k(A,"bWo","bJP",1051) +k(A,"bWm","bJN",1052) +k(A,"bWn","bJO",1053) +k(A,"bWl","bJM",1054) +k(A,"bX7","bLe",1055) +r(A,"bTq","bTp",1056) +k(A,"bTe","bF4",1057) +k(A,"bVx","bIJ",1058) +k(A,"bVY","bJ8",1059) +k(A,"bY2","bMn",1060) +k(A,"bX8","bLf",1061) +k(A,"bXb","bLq",1062) +k(A,"bXc","bJ7",1063) +k(A,"bXd","bLr",1064) +k(A,"bXe","bLs",1065) +k(A,"bXf","bLt",1066) +k(A,"bXg","bLu",1067) +k(A,"bXh","bKF",1068) +k(A,"bXi","bLv",1069) +k(A,"bXj","bMS",1070) +k(A,"bXk","bO_",1071) +k(A,"bXl","bO0",1072) +k(A,"bUc","bG7",1073) +k(A,"bTd","bF5",1074) +k(A,"bXW","bMc",1075) +k(A,"bXV","bMb",1076) +k(A,"bXX","bMd",1077) +r(A,"bVu","bUu",1078) +k(A,"bVr","bFb",1079) +k(A,"bVs","bJr",1080) +r(A,"bVw","bXZ",1081) +r(A,"bVt","bTc",1082) +r(A,"bVv","bVA",1083) +o(h=A.u5.prototype,"gaPH","aPI",946) +o(h,"gaJt","aJu",947) +r(A,"bXO","bXo",1084) +r(A,"bXE","bA4",1085) +r(A,"bXJ","bAa",1086) +r(A,"bXz","bzX",1087) +r(A,"bXA","bzY",1088) +r(A,"bXN","bAe",1089) +r(A,"bXt","bzN",1090) +r(A,"bXv","bzR",1091) +r(A,"bXD","bA1",1092) +r(A,"bXC","bA0",1093) +r(A,"bXM","bAd",1094) +r(A,"bXy","bzW",1095) +r(A,"bXL","bAc",1096) +r(A,"bXK","bAb",1097) +r(A,"bXq","bzK",1098) +r(A,"bXF","bA5",1099) +r(A,"bXI","bA8",1100) +r(A,"bXB","bA_",1101) +r(A,"bXw","bzU",1102) +r(A,"bXH","bA7",1103) +r(A,"bXG","bA6",1104) +r(A,"bXr","bzL",1105) +r(A,"bXx","bzV",1106) +r(A,"bXu","bzQ",1107) +r(A,"bXs","bzM",1108) +r(A,"bnL","bOm",11) +n(A.aV.prototype,"gis","bZ",12) +r(A,"bWy","bSA",88) +r(A,"bWA","bWL",88) +r(A,"bWz","bWx",1109) +k(A,"bWj","bHl",1110) +k(A,"bWk","bNK",1111) +m(h=A.Gp.prototype,"gdJ","aI",2) +l(h,"gi0",1,0,null,["$1","$0"],["io","iK"],187,0,0) +m(h,"gfC","iq",0) +l(A.S9.prototype,"gdV",1,0,function(){return[null,null]},["$2","$0","$1"],["wW","ah","U5"],964,0,0) +r(A,"bW9","bJC",1112) +k(A,"c4g","bnS",154) +q(A,"bTR",2,null,["$2$3$debugLabel","$2","$2$2"],["WK",function(a,b){return A.WK(a,b,null,t.z,t.z)},function(a,b,c,d){return A.WK(a,b,null,c,d)}],1113,0) +q(A,"bnI",1,null,["$2$wrapWidth","$1"],["byw",function(a){return A.byw(a,null)}],1114,0) +k(A,"bX4","bxa",0) +s(A,"t1","bqk",130) +s(A,"vY","bFI",130) +s(A,"bUl","bUh",301) +s(A,"bUm","bUi",111) +r(A,"bXS","bXQ",45) +r(A,"bW0","byO",248) +r(A,"bW1","bVm",248) +r(A,"bT7","bg5",1116) +r(A,"bT8","bWE",744)})();(function inheritance(){var s=hunkHelpers.mixin,r=hunkHelpers.mixinHard,q=hunkHelpers.inheritMany,p=hunkHelpers.inherit +q(null,[A.C,A.JF]) +q(A.C,[A.I4,A.asu,A.tr,A.b51,A.am9,A.axE,A.l7,A.avH,A.a3L,A.Z4,A.a2I,A.un,A.nk,A.z,A.a1k,A.pn,A.a9x,A.yY,A.ve,A.xl,A.aVe,A.a2P,A.Bv,A.Z6,A.Z2,A.YE,A.iI,A.aNL,A.aN_,A.a3r,A.aI6,A.aI7,A.aE6,A.axv,A.awX,A.Z8,A.aLI,A.js,A.Zw,A.Bw,A.J7,A.Zb,A.tn,A.aOS,A.YK,A.a9o,A.P4,A.pf,A.Zc,A.aax,A.Za,A.J9,A.J8,A.Z9,A.Z7,A.awZ,A.d7,A.Jd,A.axb,A.axc,A.aC3,A.aC4,A.aBx,A.aDp,A.azi,A.aSX,A.a2L,A.aGH,A.a2K,A.KY,A.a13,A.JU,A.agd,A.agi,A.a12,A.a2_,A.aBw,A.a8N,A.z9,A.am8,A.aSl,A.aDH,A.aoK,A.a1H,A.Cu,A.xm,A.KF,A.Iq,A.jQ,A.Zx,A.G8,A.fm,A.eo,A.aYp,A.Ro,A.aYx,A.aYw,A.Fa,A.aay,A.kv,A.aOw,A.axx,A.af8,A.ay_,A.v4,A.aN6,A.DM,A.uu,A.r1,A.aVd,A.aN7,A.uq,A.aQh,A.fa,A.b9m,A.aRo,A.bek,A.aGp,A.Fb,A.aYq,A.aMk,A.aUy,A.aBA,A.qi,A.a1r,A.a9h,A.Oq,A.zn,A.vH,A.aNM,A.KW,A.Oy,A.a2H,A.I6,A.qE,A.a3i,A.oF,A.aHT,A.axC,A.aKS,A.auL,A.qN,A.Kk,A.a1t,A.a1s,A.a2y,A.aNl,A.abJ,A.a7e,A.aNo,A.aNq,A.aSj,A.a7i,A.aNC,A.SA,A.b2r,A.ap2,A.pE,A.A6,A.H2,A.aNu,A.bll,A.aOW,A.a2i,A.a2h,A.aMv,A.as9,A.a7m,A.r5,A.AU,A.Ch,A.aBs,A.a9a,A.a98,A.zj,A.aBN,A.aTT,A.aTP,A.afZ,A.ae,A.m6,A.aHB,A.aHD,A.aXF,A.aXJ,A.b0T,A.a7G,A.aYu,A.YL,A.yv,A.aN4,A.F8,A.avJ,A.aGl,A.aZd,A.aZc,A.b68,A.b69,A.b67,A.v8,A.aIx,A.aah,A.a8J,A.aZC,A.oB,A.p2,A.Kd,A.Kf,A.Ke,A.Pp,A.aYX,A.aaS,A.eE,A.rp,A.auH,A.Zn,A.aBB,A.aBC,A.Pk,A.aBt,A.Y5,A.Fl,A.Cd,A.aHo,A.aZg,A.aYY,A.aGK,A.aBa,A.aAq,A.a3I,A.dp,A.aCw,A.ayA,A.aBm,A.Cs,A.abK,A.bkJ,A.KX,A.b6v,J.CT,J.cI,A.bz,A.Bm,A.b3e,A.YO,A.bo,A.aU6,A.c2,A.bT,A.jt,A.a1B,A.aaG,A.a9y,A.a9z,A.a1l,A.a24,A.vj,A.Ks,A.abq,A.rf,A.rJ,A.yd,A.BJ,A.vx,A.ml,A.Le,A.b_M,A.a6q,A.Ki,A.Uq,A.bbd,A.aIz,A.Db,A.nb,A.GP,A.ru,A.F6,A.bcF,A.b3l,A.b72,A.mi,A.ahl,A.UZ,A.bcH,A.LA,A.UT,A.Qp,A.aed,A.Ss,A.pH,A.XY,A.hx,A.mz,A.A8,A.mD,A.a7,A.aec,A.aar,A.vN,A.anv,A.Qq,A.Ay,A.adR,A.ag1,A.b4B,A.pC,A.Gg,A.vp,A.o8,A.RJ,A.GB,A.bes,A.GC,A.mF,A.b7L,A.vy,A.GL,A.ji,A.aj_,A.HD,A.Rq,A.agk,A.aiE,A.ang,A.anf,A.pF,A.nJ,A.n_,A.cm,A.IP,A.QB,A.aen,A.Z0,A.amN,A.b7z,A.b7v,A.b3I,A.bcG,A.aoU,A.Vd,A.iZ,A.pM,A.dx,A.bj,A.a6A,A.OV,A.RK,A.lh,A.a33,A.aS,A.aE,A.pG,A.k9,A.aSe,A.d_,A.V9,A.abw,A.mG,A.Ck,A.uT,A.axZ,A.bkj,A.Go,A.GE,A.bH,A.Ms,A.Uf,A.anr,A.Co,A.bbz,A.aoV,A.bcJ,A.b1F,A.qO,A.xc,A.jc,A.aCR,A.Ar,A.Kn,A.qH,A.a6p,A.b7q,A.ba_,A.b7r,A.a1o,A.b3n,A.Ut,A.rx,A.awG,A.a6u,A.L,A.b8,A.lx,A.kC,A.e,A.ye,A.bkE,A.uU,A.tV,A.tN,A.di,A.EF,A.p4,A.N_,A.f0,A.en,A.aU4,A.lZ,A.lY,A.Pl,A.Po,A.hs,A.bW,A.dl,A.ur,A.avz,A.a2f,A.asK,A.av3,A.aFH,A.aNr,A.BV,A.ag4,A.jT,A.ahO,A.b8z,A.a2T,A.F5,A.mW,A.B7,A.axn,A.cW,A.a0H,A.xK,A.y1,A.vO,A.GO,A.yc,A.a0F,A.a2x,A.wW,A.ayz,A.aFG,A.z4,A.auM,A.i0,A.ag6,A.hJ,A.ayI,A.fx,A.b2t,A.kA,A.ai2,A.KI,A.KU,A.uj,A.a6y,A.bbc,A.aMz,A.fy,A.b_E,A.tk,A.avj,A.q4,A.wt,A.YI,A.avn,A.rl,A.axo,A.M5,A.agP,A.aKk,A.aCQ,A.hO,A.qq,A.aCS,A.azh,A.aiC,A.aNm,A.tH,A.aHJ,A.aOu,A.lv,A.ah_,A.qr,A.ah0,A.ah1,A.ah2,A.ah3,A.ah4,A.ah5,A.anh,A.at,A.aUU,A.tc,A.ML,A.Ig,A.If,A.wc,A.tb,A.aC,A.hv,A.ai4,A.i1,A.aZR,A.ahM,A.fK,A.a0G,A.S5,A.b8I,A.b8H,A.b8B,A.Jy,A.dd,A.k0,A.R5,A.afU,A.Yz,A.alw,A.afI,A.UP,A.Mq,A.afL,A.afJ,A.a0t,A.Fx,A.h_,A.aha,A.Ys,A.b8V,A.aI,A.n2,A.id,A.bmC,A.m3,A.DN,A.bdZ,A.b0U,A.Nn,A.nI,A.cC,A.eY,A.Cz,A.Gz,A.aEL,A.bbe,A.CA,A.qf,A.oz,A.oA,A.jL,A.akd,A.hc,A.adM,A.afc,A.afm,A.afh,A.aff,A.afg,A.afe,A.afi,A.afq,A.afo,A.afp,A.afn,A.afk,A.afl,A.afj,A.afd,A.xn,A.a0R,A.lj,A.HC,A.qz,A.Dh,A.LD,A.Dg,A.rS,A.bmr,A.aND,A.a3u,A.afs,A.Hx,A.aNy,A.aNB,A.jk,A.Ao,A.NZ,A.O_,A.Ew,A.aiz,A.Fg,A.v6,A.anF,A.anI,A.anH,A.anJ,A.anG,A.UG,A.af6,A.aEO,A.kS,A.vh,A.Tc,A.kf,A.adP,A.a8S,A.aUX,A.ae7,A.rz,A.aem,A.aj0,A.aex,A.aey,A.aeA,A.aeE,A.aeG,A.aip,A.ajm,A.aeH,A.aeJ,A.aeX,A.ca,A.af0,A.b3C,A.af2,A.af5,A.afO,A.afQ,A.ag5,A.agb,A.agr,A.lJ,A.b8i,A.agu,A.agC,A.rC,A.aC5,A.agH,A.agS,A.b4r,A.ah7,A.aDm,A.a1G,A.aCs,A.aCt,A.aDl,A.ahL,A.oK,A.CS,A.dw,A.a1X,A.afS,A.baG,A.L9,A.ahW,A.aiG,A.a0I,A.aew,A.ao4,A.Sw,A.bt,A.cG,A.M0,A.aje,A.ajb,A.ajd,A.air,A.aL8,A.ajv,A.ajy,A.Dy,A.ajz,A.ajP,A.M_,A.qR,A.ajV,A.HH,A.akB,A.akE,A.akN,A.aSn,A.a8O,A.axz,A.adQ,A.Eu,A.amg,A.amh,A.aiq,A.ami,A.amj,A.Pu,A.ai0,A.amS,A.aVk,A.aVn,A.aVo,A.atX,A.b4J,A.an0,A.bcM,A.anu,A.aqu,A.anA,A.anO,A.anW,A.ao5,A.ao9,A.GF,A.agM,A.aoZ,A.aoc,A.aof,A.zL,A.aoh,A.aoG,A.wa,A.aaL,A.MJ,A.IE,A.a1Q,A.ax2,A.n8,A.aet,A.b2y,A.eL,A.b3J,A.aFv,A.aGT,A.aeI,A.ajX,A.xC,A.ok,A.lk,A.ll,A.ahN,A.ahP,A.aHb,A.Xn,A.qF,A.anp,A.DO,A.kP,A.bdv,A.bdz,A.Ai,A.Ae,A.aaW,A.ki,A.aXC,A.b3Q,A.b96,A.be2,A.PI,A.Ek,A.ak1,A.dP,A.Sr,A.e_,A.ayj,A.zG,A.b0G,A.b7G,A.Ik,A.Xy,A.aii,A.a3q,A.D4,A.ajn,A.apO,A.b5,A.fj,A.ar,A.uH,A.bc7,A.amt,A.nE,A.a87,A.aqe,A.ih,A.Nt,A.hR,A.a94,A.aTA,A.uR,A.amp,A.a9I,A.amW,A.a8o,A.aVs,A.aVt,A.aVq,A.nc,A.aRj,A.lz,A.PS,A.p9,A.TS,A.Gx,A.aN9,A.ij,A.zI,A.zJ,A.PB,A.a95,A.aTS,A.Br,A.YY,A.BR,A.dT,A.amr,A.amu,A.rv,A.o7,A.rP,A.nD,A.amv,A.aTQ,A.XU,A.A3,A.td,A.It,A.aun,A.EK,A.auK,A.tp,A.aib,A.aFE,A.Ll,A.a3h,A.aI3,A.aid,A.oU,A.yy,A.M7,A.aYm,A.aHC,A.aHE,A.aXG,A.aXK,A.aKT,A.Ma,A.tg,A.m7,A.aC_,A.akR,A.akS,A.aP_,A.f1,A.fz,A.v3,A.OR,A.ayp,A.asH,A.mp,A.anS,A.ri,A.ajq,A.bdg,A.Fp,A.aZh,A.aOU,A.eQ,A.aZS,A.aZf,A.zi,A.aZi,A.aaT,A.Pq,A.apS,A.abn,A.b_S,A.adO,A.H_,A.vq,A.a6o,A.wj,A.fR,A.PV,A.fH,A.Zt,A.a10,A.Fy,A.kV,A.bbD,A.ahs,A.aei,A.aDw,A.ahf,A.ahc,A.ahx,A.Gu,A.ahj,A.Gf,A.ag7,A.az0,A.aq_,A.apZ,A.ahQ,A.av5,A.Mt,A.b8W,A.aRK,A.tW,A.xq,A.aTR,A.b6G,A.rF,A.oY,A.aO,A.YM,A.lA,A.H1,A.a0N,A.oR,A.aaV,A.y5,A.M1,A.r6,A.abe,A.vC,A.alS,A.qQ,A.Au,A.aMB,A.Us,A.p1,A.agY,A.zd,A.aKt,A.aNn,A.mh,A.lC,A.mA,A.a8E,A.Lz,A.a3F,A.a8R,A.aT3,A.ber,A.uZ,A.mj,A.kg,A.abL,A.a91,A.a8Y,A.aAb,A.amO,A.apc,A.amI,A.amL,A.iT,A.mn,A.Rm,A.OQ,A.aaX,A.a93,A.nL,A.Px,A.fO,A.dQ,A.R2,A.FE,A.aoJ,A.avh,A.aGU,A.avm,A.axw,A.avg,A.lf,A.a6m,A.lV,A.aKf,A.aCP,A.a2M,A.a7u,A.b0J,A.fW,A.ahC,A.ahB,A.a2D,A.yp,A.a2j,A.a2k,A.a2m,A.a1Z,A.aCm,A.aod,A.a20,A.aEf,A.aRS,A.aRT,A.nz,A.am2,A.am5,A.CB,A.am1,A.aUI,A.aS_,A.aSb,A.CC,A.bn,A.auo,A.auq,A.IJ,A.Yc,A.OY,A.m_,A.wo,A.awE,A.a3j,A.b_O,A.a2A,A.S6,A.NP,A.b8X,A.a0O,A.a2Z,A.vD,A.ai7,A.Yi,A.Yj,A.atW,A.Bx,A.M2,A.a6H,A.jl,A.BS,A.um,A.hj,A.vt,A.aMn,A.a6r,A.aMo,A.aYn,A.FF,A.a3G,A.xU,A.De,A.Df,A.a2R,A.ys,A.MC,A.Zr,A.aYo,A.a71,A.a72,A.lG,A.Aq,A.eZ,A.Nb,A.hh,A.aOp,A.aU,A.c1,A.F,A.Xr,A.Xq,A.B2,A.df,A.a3f,A.rO,A.E2,A.E3,A.e5,A.bk,A.kH,A.e2,A.Ap,A.e8,A.Ti,A.a7r,A.Wh,A.Hg,A.e3,A.Vf,A.bX,A.em,A.fA,A.ap8,A.KK,A.b5_,A.a1v,A.SP,A.kB,A.CV,A.xJ,A.aiD,A.uX,A.aNK,A.aF7,A.aVP,A.a9Y,A.F_,A.aFT,A.jv,A.o3,A.nH,A.aaf,A.iA,A.e7,A.Lq,A.xT,A.e0,A.nN,A.abD,A.aaq,A.S1,A.aap,A.P2,A.oX,A.w8,A.adK,A.b1m,A.Q4,A.amy,A.b1A,A.A_,A.tF,A.EY,A.agL,A.b1u,A.FV,A.agV,A.b1v,A.FW,A.nT,A.an1,A.fS,A.nS,A.nV,A.nX,A.nR,A.nY,A.nW,A.nU,A.mw,A.b1B,A.pw,A.px,A.aig,A.b1w,A.aiW,A.b1z,A.Qe,A.anb,A.b1C,A.A0,A.an7,A.b1D,A.FY,A.nZ,A.io,A.nQ,A.pr,A.py,A.pu,A.pv,A.ps,A.OO,A.Nd,A.OM,A.OP,A.Ix,A.aW9,A.Iz,A.aWU,A.tm,A.aeN,A.b1o,A.FS,A.lH,A.IV,A.IY,A.avZ,A.qe,A.JZ,A.ue,A.vg,A.aeT,A.b1p,A.Q8,A.rs,A.aeQ,A.aeR,A.b1q,A.FT,A.pq,A.b1r,A.Qa,A.FU,A.ago,A.b1s,A.Qb,A.agn,A.b1t,A.Qc,A.aiZ,A.aiV,A.b1x,A.vm,A.b1y,A.Qd,A.aoS,A.b1E,A.LN,A.LJ,A.Kr,A.KP,A.aJM,A.aJ7,A.aJ2,A.aIZ,A.J0,A.pt,A.Qf,A.Qg,A.Q7,A.Q6,A.Q5,A.N7,A.te,A.ael,A.b1n,A.Ni,A.ey,A.PG,A.aV,A.eb,A.F1,A.tx,A.BZ,A.b0N,A.a2X,A.a3p,A.aOM,A.abC,A.b0z,A.b0A,A.bQ,A.a7t,A.de,A.nO,A.bkk,A.Gp,A.PU]) +q(A.tr,[A.Zl,A.asx,A.asv,A.awV,A.beR,A.bf9,A.bf8,A.aGu,A.aGv,A.aGr,A.aGs,A.aGt,A.bgy,A.bgx,A.aVj,A.bhX,A.aGZ,A.bfj,A.awY,A.Zm,A.bfx,A.axk,A.axl,A.axf,A.axg,A.axe,A.axi,A.axj,A.axh,A.azr,A.azt,A.bfZ,A.bi2,A.bi1,A.aDI,A.aDJ,A.aDK,A.aDL,A.aDM,A.aDN,A.aDQ,A.aDO,A.bgV,A.bgW,A.bgX,A.bgU,A.aMl,A.aGj,A.aGk,A.aGh,A.aGi,A.bhh,A.aDq,A.aDo,A.bh3,A.bh4,A.bfA,A.bfB,A.bfC,A.bfD,A.bfE,A.bfF,A.bfG,A.bfH,A.aHO,A.aHP,A.aHQ,A.aHS,A.aHZ,A.aI2,A.bhH,A.aLa,A.aUZ,A.aV_,A.aCu,A.aBK,A.aBG,A.aBH,A.aBI,A.aBJ,A.aBF,A.aBD,A.aBM,A.aSk,A.b2s,A.b9q,A.b9s,A.b9t,A.b9u,A.b9v,A.b9w,A.b9x,A.bdT,A.bdU,A.bdV,A.bdW,A.bdX,A.b8t,A.b8u,A.b8v,A.b8w,A.b8x,A.b8y,A.aOX,A.aOY,A.aP1,A.asc,A.asd,A.aHj,A.aHk,A.aTj,A.aTk,A.aTY,A.aBP,A.ayw,A.aKE,A.aYU,A.aZ3,A.aZ4,A.aZ5,A.aZ6,A.aZ8,A.avK,A.aBu,A.aBv,A.ayq,A.ayr,A.ays,A.ayt,A.aGQ,A.aGR,A.aGO,A.asq,A.aD9,A.aDa,A.aGL,A.aAr,A.bgg,A.ay8,A.ayb,A.aEj,A.b6x,A.b6y,A.b3j,A.avN,A.a32,A.aaK,A.aHI,A.aHH,A.bhd,A.bhf,A.bcI,A.b2b,A.b2a,A.beK,A.beJ,A.bcW,A.bcY,A.bcX,A.aEE,A.aEB,A.aEC,A.aEk,A.b6g,A.b6n,A.aXZ,A.aY1,A.aY5,A.aY3,A.aYi,A.aYf,A.aYd,A.aYg,A.aYj,A.aYb,A.aY9,A.aY7,A.bcD,A.bbj,A.b6u,A.b4f,A.b7K,A.aJQ,A.aXy,A.aXB,A.bf0,A.b7u,A.b2x,A.be5,A.be9,A.bf4,A.bf5,A.aBb,A.b54,A.b56,A.aMj,A.aMi,A.bck,A.bcl,A.bdb,A.beZ,A.aD3,A.aD4,A.aD5,A.beV,A.aMu,A.b5n,A.b5r,A.b5p,A.b5v,A.b5u,A.b5B,A.b5D,A.b5A,A.b5x,A.b5w,A.ba0,A.ba3,A.ba2,A.ba4,A.ba1,A.bf1,A.bf2,A.bg2,A.bg3,A.bg4,A.bhn,A.bhR,A.bhS,A.bgv,A.aHN,A.bge,A.aFK,A.aFI,A.aVb,A.aLd,A.aH1,A.aH2,A.avB,A.avD,A.avG,A.auP,A.auR,A.auS,A.auT,A.auU,A.auV,A.auW,A.ayS,A.ayU,A.ayV,A.ayX,A.ayP,A.ayQ,A.ayJ,A.ayK,A.ayN,A.ayO,A.ayY,A.aDZ,A.aE0,A.aDX,A.aDW,A.aDY,A.aFM,A.aYA,A.aYD,A.bgD,A.bgE,A.bgj,A.ave,A.aGC,A.aGE,A.aGF,A.aRy,A.b5h,A.b5k,A.b5g,A.b8g,A.aKn,A.bhZ,A.aBT,A.aBU,A.aBV,A.aBW,A.aBX,A.aBY,A.aCL,A.aCM,A.aCN,A.aCO,A.aCJ,A.aCK,A.aCE,A.aCF,A.aCG,A.aCD,A.aHK,A.aHL,A.aOv,A.bgY,A.bgZ,A.aDd,A.aDe,A.aDh,A.b3S,A.b3Z,A.b3R,A.b3W,A.b3X,A.b4_,A.b4a,A.baz,A.baA,A.bay,A.baB,A.baC,A.ay7,A.aMe,A.b4b,A.aDt,A.aDu,A.aDv,A.bgw,A.aXD,A.aYE,A.b6o,A.aNw,A.aNx,A.aNE,A.aSJ,A.aSN,A.atx,A.aty,A.atz,A.axp,A.axq,A.axr,A.aA6,A.aA7,A.aA8,A.aBo,A.aBp,A.aBq,A.asm,A.asn,A.aso,A.b7S,A.aJX,A.b4G,A.b4H,A.b8j,A.aKI,A.b2C,A.b3a,A.b3b,A.b3c,A.b2O,A.b2P,A.b2Q,A.b30,A.b33,A.b34,A.b35,A.b36,A.b37,A.b38,A.b39,A.b2R,A.b2S,A.b2T,A.b31,A.b2M,A.b32,A.b2L,A.b2U,A.b2V,A.b2W,A.b2X,A.b2Y,A.b2Z,A.b3_,A.b3x,A.b3y,A.b3s,A.b3q,A.b3p,A.b3r,A.b3F,A.ayy,A.b4R,A.b4O,A.b4P,A.b4M,A.b4K,A.b4L,A.b4N,A.b4V,A.b4X,A.b4Z,A.b4W,A.b4Y,A.b5a,A.b5E,A.b5G,A.b5I,A.b5F,A.b5H,A.b6Q,A.b6N,A.b6P,A.b6O,A.b5K,A.b5L,A.b5N,A.b5M,A.b5O,A.b5P,A.b5R,A.b5Q,A.b91,A.b92,A.b94,A.b95,A.b93,A.b78,A.b75,A.baI,A.b7i,A.b7f,A.b7d,A.b7k,A.b7l,A.b7m,A.b7j,A.b7g,A.b7h,A.b7e,A.aIE,A.baR,A.aIC,A.aZB,A.b89,A.b7U,A.b7V,A.b7W,A.b7X,A.aK0,A.aLV,A.aLW,A.b8N,A.b8M,A.b8D,A.b8E,A.b8Q,A.b8Y,A.b9_,A.b90,A.b8Z,A.bev,A.bew,A.bex,A.bey,A.aMN,A.b9C,A.b9B,A.aNI,A.b9z,A.b9W,A.b9X,A.b9U,A.b9V,A.aQp,A.aSm,A.aSz,A.aSy,A.b82,A.b8_,A.b81,A.b80,A.b7Z,A.bct,A.bb_,A.baY,A.baX,A.bcn,A.b8b,A.b8c,A.b8d,A.bcU,A.bcQ,A.bcR,A.bcS,A.bcP,A.bcN,A.bd8,A.bd4,A.bd1,A.bd2,A.bda,A.bdc,A.bde,A.bdd,A.bdt,A.bdu,A.bfN,A.aZa,A.aZb,A.bb1,A.bb2,A.bb4,A.bb5,A.b23,A.b_0,A.b3N,A.b3M,A.b3O,A.ax3,A.ax4,A.ax5,A.bfT,A.bfz,A.aIy,A.b3f,A.aH8,A.aH3,A.asI,A.aHc,A.aHd,A.aHn,A.aHm,A.bce,A.bcf,A.bcg,A.aZQ,A.aZL,A.aZK,A.aZT,A.aEh,A.aRw,A.aRs,A.aux,A.aQC,A.aQB,A.aQz,A.aQX,A.aQY,A.aQT,A.aQU,A.aQV,A.aQW,A.aQR,A.aQS,A.aKW,A.aKV,A.aR2,A.aR3,A.aQZ,A.aR_,A.aR0,A.aQt,A.aR9,A.aRa,A.aR5,A.aRe,A.aRg,A.aRi,A.aRh,A.aRn,A.aRl,A.aRm,A.aRk,A.aRr,A.aRq,A.aSR,A.aSQ,A.b_2,A.aTW,A.aTU,A.bcc,A.bcb,A.bc9,A.bca,A.beS,A.aU_,A.aTZ,A.aTH,A.aTL,A.aTJ,A.aTM,A.aTK,A.aTN,A.aTO,A.avx,A.aNk,A.asM,A.b27,A.aUn,A.b4o,A.au7,A.aKy,A.aC0,A.aRE,A.aRF,A.aRD,A.aD6,A.aZ_,A.aZw,A.aZv,A.aZx,A.b9o,A.bfy,A.ash,A.ask,A.asi,A.asj,A.asl,A.b65,A.b62,A.b60,A.b61,A.b64,A.b20,A.b21,A.b22,A.bel,A.bem,A.b2k,A.b2p,A.be0,A.be_,A.ax8,A.bep,A.beo,A.axD,A.ayo,A.azk,A.azl,A.aB1,A.aB6,A.aB2,A.aB4,A.aAt,A.aAB,A.aB3,A.aAF,A.aAA,A.aB9,A.aAs,A.aAO,A.bbE,A.aDy,A.bfu,A.aDC,A.aDE,A.aDD,A.bah,A.az2,A.az3,A.az5,A.az6,A.az1,A.azd,A.aze,A.azf,A.azg,A.bae,A.baf,A.bac,A.aQg,A.aE3,A.b6Z,A.aBh,A.aBf,A.aBe,A.aBi,A.aBk,A.aBc,A.aBg,A.aBd,A.aN5,A.aL9,A.aET,A.aF_,A.aF1,A.aF3,A.aF5,A.aEV,A.aEX,A.aEZ,A.b4t,A.b4u,A.b4v,A.b4y,A.b4z,A.b4A,A.aFS,A.aFQ,A.aFP,A.aGS,A.b6W,A.aHh,A.aHg,A.aHf,A.b1O,A.b1T,A.b1U,A.b1V,A.b1W,A.b1X,A.b1Y,A.b1N,A.b1M,A.b1P,A.b1Q,A.b1R,A.b1S,A.aHl,A.bfK,A.bfL,A.bfM,A.b7Q,A.b7R,A.aIP,A.aIR,A.aIO,A.aZA,A.aIS,A.aK8,A.aKb,A.aKa,A.aSa,A.aS9,A.aM9,A.bbl,A.bbo,A.aM2,A.aM8,A.aM1,A.aM7,A.aMA,A.bba,A.bb8,A.bb9,A.bb7,A.baL,A.baM,A.aMM,A.b9b,A.bbg,A.bbu,A.bbs,A.atw,A.b_K,A.b_H,A.aIF,A.b8r,A.b8o,A.aKM,A.aKJ,A.aT_,A.aT0,A.aT1,A.aT2,A.aT5,A.aT6,A.aT7,A.aT9,A.aTh,A.aTe,A.aTg,A.bbY,A.aTl,A.aP6,A.aP2,A.aP3,A.aP4,A.aP8,A.aPa,A.aPb,A.aLC,A.aLD,A.aLE,A.aLA,A.aLB,A.aLF,A.aLG,A.aVy,A.aTD,A.aTF,A.aTE,A.aTC,A.aTB,A.bc5,A.bdB,A.bdD,A.bdF,A.bdH,A.bdJ,A.b_R,A.bfX,A.b0I,A.b0O,A.aDn,A.avi,A.avp,A.avq,A.b0K,A.b0L,A.beD,A.b6q,A.aQs,A.aCq,A.b5d,A.b4g,A.b4i,A.b4l,A.aRW,A.aRX,A.aRZ,A.aRY,A.aRV,A.aRU,A.aFp,A.aFq,A.aFr,A.aFs,A.bi3,A.aS5,A.aS7,A.aS6,A.bbp,A.bbq,A.aFt,A.aFm,A.aFn,A.bfb,A.aFi,A.aUK,A.aUJ,A.aUL,A.atC,A.atD,A.aXN,A.aXO,A.aXP,A.aXQ,A.aXR,A.aXS,A.beA,A.bha,A.atV,A.auI,A.auJ,A.avc,A.avM,A.aKd,A.bgH,A.aMZ,A.aMY,A.b9e,A.b9f,A.b9l,A.b9j,A.b9d,A.aMS,A.aMU,A.aMT,A.aMV,A.aMX,A.aMW,A.aHz,A.l9,A.aMr,A.aMq,A.aMJ,A.axF,A.axG,A.bg_,A.b0R,A.b0F,A.aOy,A.beH,A.beG,A.aEv,A.aEu,A.aEs,A.aEq,A.aEm,A.b28,A.b29,A.asY,A.bff,A.bfd,A.bfe,A.aXX,A.asQ,A.asR,A.asS,A.asT,A.asU,A.asV,A.atf,A.atg,A.ath,A.ati,A.atj,A.atk,A.atl,A.bcy,A.bcz,A.aNY,A.aO_,A.aO1,A.aO2,A.aO0,A.aO3,A.aOi,A.aOg,A.aOh,A.aOe,A.aOf,A.aO7,A.aO8,A.aO9,A.aOa,A.aOb,A.aOc,A.aOd,A.aO5,A.aO6,A.aOq,A.b9L,A.b9M,A.b9J,A.b9K,A.b9P,A.b9N,A.b9O,A.b6a,A.b6b,A.bft,A.aOt,A.beh,A.beg,A.bej,A.bfP,A.bij,A.bfl,A.bfm,A.bfs,A.b9E,A.bbR,A.bbP,A.bbQ,A.bbG,A.bbJ,A.bbI,A.bbN,A.aUD,A.bci,A.aFV,A.aFU,A.aFW,A.aFY,A.aG_,A.aFX,A.aGd,A.aww,A.awx,A.awy,A.awD,A.awC,A.awA,A.awB,A.awz,A.b_A,A.b_x,A.b_w,A.b_u,A.b_v,A.b_C,A.b_B,A.b0D,A.b0C,A.b6s,A.bhp,A.aLL,A.aLK,A.aLM,A.aLN,A.aLO,A.aLP,A.aLQ,A.arX,A.arU,A.arW,A.as6,A.as4,A.as2,A.as7,A.bg8,A.aCf,A.aXm,A.aXj,A.aXk,A.aXi,A.aXn,A.aXl,A.bez,A.b16,A.b15,A.b13,A.b14,A.b19,A.b1a,A.aXc,A.aXd,A.b1b,A.b1c,A.auz,A.auD,A.auF,A.bgN,A.bgP,A.bgR,A.bgT,A.bgM,A.bgL,A.bgJ,A.aCj,A.aC8,A.aHt,A.aHq,A.bhU,A.aXh,A.aOG,A.aFe,A.aFf,A.aXw,A.bi9,A.bib,A.aVQ,A.aVR,A.aVS,A.bi8,A.bid,A.bic,A.bie,A.aXg,A.aXs,A.aVT,A.aWa,A.aXe,A.atY,A.aWr,A.aWo,A.aWI,A.aWD,A.aWF,A.aWw,A.aWx,A.aWy,A.aWt,A.aWs,A.aWz,A.aWB,A.aWH,A.aCV,A.aCW,A.aCX,A.aCY,A.aD_,A.aD0,A.aD1,A.aW0,A.aVZ,A.aW_,A.aW2,A.aW5,A.aWb,A.aWk,A.aWm,A.aWj,A.aWn,A.aWl,A.aWP,A.aWR,A.aWO,A.aWS,A.aWQ,A.au_,A.aWX,A.aWV,A.aX7,A.aX8,A.aX4,A.aX1,A.aX0,A.aX3,A.aWZ,A.aX_,A.aX2,A.aWY,A.awl,A.awm,A.bgk,A.avW,A.aAk,A.avU,A.avT,A.awq,A.awo,A.awp,A.aAd,A.aAe,A.awi,A.aw6,A.aw5,A.aw4,A.aw_,A.aw1,A.aw2,A.aw3,A.avX,A.aIt,A.aIk,A.aIl,A.aIo,A.aIg,A.aIp,A.aIr,A.aIv,A.aId,A.aIc,A.aIe,A.azV,A.azU,A.bgA,A.bgC,A.bgB,A.bi4,A.azT,A.aIX,A.aIV,A.aIU,A.aIW,A.b02,A.b05,A.b04,A.b03,A.b1_,A.b10,A.b11,A.b12,A.aJO,A.aJP,A.b18,A.b1e,A.b1f,A.b1g,A.b1h,A.b1i,A.b1j,A.b1k,A.b1l,A.azY,A.azE,A.bhA,A.bhx,A.bhz,A.bh0,A.bh1,A.bh9,A.aJ0,A.aJJ,A.aJ8,A.aDb,A.aF9,A.aJC,A.aJD,A.aJE,A.aJI,A.aJG,A.aJt,A.aJz,A.aJp,A.aJA,A.aJn,A.aJH,A.aLm,A.aLi,A.aLg,A.aLh,A.aug,A.aua,A.aAp,A.aAo,A.aAn,A.aJ4,A.aJ5,A.aJa,A.aJh,A.aJl,A.aJm,A.aVH,A.aVB,A.aVJ,A.awR,A.aPu,A.aPt,A.aPy,A.aPw,A.aPo,A.aML,A.axK,A.axS,A.axH,A.axI,A.aV6,A.aV0,A.aPS,A.aPK,A.aPL,A.aPR,A.aPI,A.aPJ,A.aPP,A.aQ9,A.aQa,A.aQc,A.aPZ,A.aQ_,A.aQ0,A.aQ1,A.aQ2,A.aQ3,A.aPC,A.aPA,A.aPB,A.aPz,A.aPD,A.b09,A.b06,A.b0f,A.b0e,A.b0l,A.b0k,A.b0n,A.b0m,A.b0c,A.aL7,A.aL1,A.aL2,A.aL3,A.aL4,A.aL5,A.aL6,A.azG,A.azI,A.b_Z,A.b00,A.b_U,A.bhL,A.bhM,A.bhI,A.bhJ,A.bhK,A.bhN,A.bhO,A.bhP,A.bhQ,A.aNW,A.aOz,A.aTu,A.aTw,A.aTp,A.aTr,A.aTs,A.aOJ,A.aOK,A.atL,A.atI,A.atJ,A.atK,A.b0W,A.b0X,A.b0Y,A.aFx,A.aFy,A.atQ,A.atO,A.atM,A.atF,A.atG,A.atH,A.aEH,A.aEG,A.aPc,A.at1,A.at0,A.aPf,A.aPd,A.aPe,A.aPj,A.aPh,A.aPi,A.aPm,A.at4,A.at3,A.aUg,A.ats,A.atq,A.atr,A.axW,A.axX,A.asA,A.asy,A.asz,A.aUe,A.aUd,A.aUb,A.aUk,A.aUi,A.aVm,A.aOT,A.aPn,A.arm,A.aro,A.ark,A.arl,A.arn,A.bfi,A.aVN,A.atc,A.at8,A.b_3,A.aUz,A.ayB,A.asO,A.aJd,A.aJe,A.aLq,A.aLn,A.b3w,A.b3v,A.b3u,A.aOP,A.aOO,A.aUa,A.aU8,A.aU7,A.aul,A.aum,A.aUO,A.aVM,A.aVL,A.aZ1,A.aKx,A.b55,A.b57,A.aGy,A.aGz,A.aGA,A.aGB]) +q(A.Zl,[A.asw,A.aVf,A.aVg,A.aVh,A.aVi,A.aEd,A.aEe,A.avI,A.ax_,A.aDP,A.aCv,A.aNc,A.aGq,A.aYs,A.aYt,A.aFw,A.av1,A.av2,A.bhj,A.bhk,A.aDr,A.beN,A.aI_,A.aI0,A.aI1,A.aHV,A.aHW,A.aHX,A.aBL,A.bhm,A.aNp,A.b9r,A.aNv,A.aOZ,A.aP0,A.asa,A.aS8,A.asb,A.aTi,A.aBO,A.aBR,A.aBQ,A.aKF,A.aZ7,A.aZ9,A.aGm,A.aGn,A.aGo,A.aSi,A.aGP,A.aD8,A.aYZ,A.aBy,A.aBz,A.b6w,A.b6D,A.b6C,A.b6z,A.b6A,A.b6B,A.b3i,A.avP,A.bhD,A.aNS,A.b2c,A.b2d,A.bdO,A.bdN,A.beI,A.b2f,A.b2g,A.b2i,A.b2j,A.b2h,A.b2e,A.aEz,A.aEy,A.aEx,A.aED,A.b6c,A.b6j,A.b6i,A.b6f,A.b6e,A.b6d,A.b6m,A.b6l,A.b6k,A.aY2,A.aY0,A.aY4,A.aYe,A.aYc,A.aYh,A.aYk,A.aYa,A.aY8,A.aY6,A.bcC,A.bcB,A.b1K,A.b2K,A.b2J,A.b9n,A.b8A,A.beP,A.beQ,A.bfS,A.bbi,A.b0y,A.b0x,A.b5t,A.b5m,A.b5C,A.b5z,A.awH,A.awI,A.aHM,A.bgf,A.av4,A.aFJ,A.aVa,A.avt,A.avr,A.avu,A.avs,A.aH0,A.avF,A.auQ,A.auZ,A.av_,A.av0,A.auY,A.ayT,A.ayW,A.ayR,A.ayL,A.aE_,A.aLH,A.aYB,A.bir,A.aGG,A.aGD,A.aKh,A.aKi,A.aKj,A.aKr,A.aKs,A.b5f,A.b5i,A.b8h,A.aKl,A.aKo,A.aKp,A.aKm,A.aDc,A.aDf,A.aDg,A.b5S,A.b3T,A.b3U,A.b45,A.b44,A.b43,A.b8J,A.ay3,A.ay4,A.ay5,A.b40,A.b41,A.b42,A.baq,A.bar,A.bas,A.bat,A.bau,A.bav,A.baD,A.baE,A.b49,A.b47,A.b48,A.b46,A.b_b,A.b_d,A.b_8,A.bfV,A.beM,A.aDs,A.aur,A.awF,A.aEN,A.aEM,A.aEQ,A.aER,A.aDT,A.aDR,A.aDS,A.aIL,A.aIK,A.aIJ,A.azZ,A.aA3,A.aA4,A.aA_,A.aA0,A.aA1,A.aA2,A.aNA,A.aNO,A.aSL,A.aSM,A.aSH,A.aSI,A.aYO,A.aYP,A.aYQ,A.aYR,A.aYS,A.au5,A.au6,A.au3,A.au4,A.au1,A.au2,A.au0,A.aEP,A.b1H,A.ast,A.b25,A.aJW,A.b2F,A.b2D,A.b2E,A.b8l,A.b2B,A.b3d,A.b2N,A.ba6,A.ba5,A.ba7,A.ba9,A.baa,A.bab,A.aA9,A.b4Q,A.b5b,A.b59,A.bfw,A.bfv,A.b74,A.b77,A.b79,A.b73,A.b76,A.b6F,A.b7n,A.bdx,A.bdw,A.bdy,A.aJZ,A.aK_,A.aLR,A.b70,A.b4c,A.b4d,A.b4e,A.b8T,A.b8R,A.b8S,A.b7_,A.aON,A.aQm,A.aQk,A.aQl,A.aQn,A.aQo,A.b5T,A.aSw,A.aSE,A.aSC,A.aSA,A.aSD,A.aSv,A.aSs,A.aSt,A.aSu,A.aSp,A.aSq,A.aSo,A.aSr,A.aSB,A.aSG,A.b88,A.b87,A.b86,A.b84,A.b85,A.b83,A.bc2,A.bc1,A.bc3,A.bcr,A.bcs,A.bcp,A.bcq,A.bco,A.baZ,A.b8a,A.aYy,A.aYM,A.bd0,A.bd3,A.bd5,A.bd6,A.bd7,A.bdh,A.bdj,A.bdi,A.bdl,A.bdm,A.bdn,A.bdo,A.bdp,A.bdq,A.bdk,A.bdL,A.bdK,A.b_1,A.b_a,A.b_c,A.b_7,A.b_9,A.b_l,A.b_m,A.b_n,A.b_o,A.b_p,A.b_q,A.b_s,A.b_r,A.b_j,A.b_k,A.b_g,A.b_h,A.b_i,A.aGW,A.aGV,A.b7O,A.aH5,A.aH6,A.aLb,A.aZD,A.aZF,A.aZE,A.aZG,A.aZH,A.aZI,A.aZJ,A.aZN,A.aZO,A.aZP,A.aZM,A.aZU,A.aZV,A.aQu,A.aRu,A.aRv,A.aQw,A.aQy,A.aQx,A.aQA,A.aI8,A.aI9,A.aKZ,A.aKY,A.aKX,A.aN2,A.aN1,A.aN0,A.aR1,A.aR4,A.aR6,A.aRf,A.aST,A.aSU,A.aSV,A.avw,A.aUm,A.aC1,A.aC2,A.aOV,A.aRB,A.aRC,A.aRA,A.aYH,A.aZy,A.aZz,A.b1I,A.b63,A.b5Z,A.b6_,A.b5Y,A.b2_,A.ben,A.b2o,A.b2m,A.b2n,A.b2l,A.aRI,A.aRJ,A.b0P,A.aRL,A.aRM,A.aAx,A.aAQ,A.aAR,A.aAS,A.aAT,A.aAU,A.aAV,A.aAW,A.aAX,A.aAY,A.aAZ,A.aB_,A.aB0,A.aAy,A.aAz,A.aAu,A.aAw,A.aAG,A.aAI,A.aAH,A.aB5,A.aB7,A.aB8,A.aAC,A.aAD,A.aAE,A.aAK,A.aAM,A.aAL,A.aAJ,A.b5U,A.b5V,A.b5W,A.b5X,A.aE4,A.aE5,A.aE2,A.aE1,A.av6,A.axt,A.axu,A.aES,A.aEU,A.aF0,A.aF2,A.aF4,A.aF6,A.aEW,A.aEY,A.b4x,A.b4w,A.b6K,A.b6J,A.b6I,A.b6S,A.b6V,A.b6U,A.b6X,A.b6Y,A.asr,A.b7o,A.b7D,A.b7E,A.b7F,A.b7P,A.b8e,A.aKH,A.bbn,A.bbm,A.bbk,A.aM3,A.aM4,A.aM5,A.aM6,A.aM0,A.baS,A.b97,A.aMF,A.aME,A.aMG,A.aMD,A.aMC,A.b98,A.b9a,A.b99,A.b6r,A.bbf,A.aRG,A.bbx,A.bby,A.bbw,A.bbr,A.bbv,A.bbt,A.b3g,A.b_I,A.b_J,A.b8m,A.aKL,A.aKK,A.aSZ,A.bc6,A.aT4,A.aTd,A.aTf,A.aP9,A.aP5,A.aP7,A.aLr,A.aLs,A.aLt,A.aLu,A.aLv,A.aLw,A.aLx,A.aLy,A.aLz,A.aUP,A.aUR,A.aUS,A.aVw,A.aVx,A.aVv,A.aVz,A.bcA,A.aZX,A.aZZ,A.aZY,A.bc4,A.bdA,A.bdC,A.bdE,A.bdG,A.bdI,A.b1Z,A.bfW,A.bef,A.avo,A.b7N,A.biq,A.bip,A.bcw,A.b6p,A.b7Y,A.beq,A.axB,A.be1,A.aCp,A.aCo,A.b_5,A.b_4,A.aQN,A.aQL,A.aQM,A.aQK,A.aS4,A.aS3,A.aS2,A.aBZ,A.ay2,A.aJV,A.aKc,A.b9k,A.aMs,A.aIH,A.b5e,A.b9S,A.aOx,A.aEt,A.aEn,A.asX,A.asW,A.bfg,A.aXW,A.aXV,A.atn,A.aNZ,A.aOl,A.aOo,A.aOr,A.b9R,A.aEw,A.bei,A.aMm,A.au8,A.aXM,A.aXL,A.bfk,A.bfp,A.bfq,A.bfn,A.bfo,A.bfr,A.bbX,A.bbW,A.bbT,A.bbU,A.bbV,A.bbF,A.bbK,A.bbH,A.bbL,A.bbM,A.aGc,A.aG0,A.aG7,A.aG8,A.aG9,A.aGa,A.aG5,A.aG6,A.aG1,A.aG2,A.aG3,A.aG4,A.aGb,A.b6L,A.awv,A.aEc,A.aEa,A.aE7,A.aE8,A.aE9,A.aIb,A.b_y,A.b_z,A.aFA,A.aFz,A.arV,A.as3,A.arY,A.as1,A.arZ,A.as_,A.as0,A.bg6,A.bg7,A.axd,A.aK6,A.aK7,A.aD2,A.auA,A.auB,A.auC,A.auE,A.auG,A.bgO,A.bgQ,A.bgS,A.aCk,A.aCh,A.aCi,A.aCg,A.aCc,A.aCd,A.aCb,A.aCe,A.aCa,A.aHs,A.aHp,A.big,A.aFc,A.aXv,A.aXu,A.bia,A.aXt,A.aXq,A.aXr,A.aVV,A.aVY,A.aVX,A.aW8,A.aWq,A.aWJ,A.aWE,A.aWu,A.aWv,A.aWA,A.aWC,A.aWG,A.aCT,A.aCZ,A.aCU,A.aW1,A.aW3,A.aW4,A.aW6,A.aW7,A.aWc,A.aWd,A.aWi,A.aWf,A.aWg,A.aWh,A.aWN,A.aWK,A.aWL,A.aWM,A.aWT,A.aX9,A.aXa,A.aX5,A.aX6,A.aXb,A.avQ,A.avR,A.avS,A.aAj,A.aAg,A.aAi,A.aAl,A.avV,A.awr,A.aws,A.awt,A.awu,A.awn,A.aAf,A.awj,A.awh,A.awc,A.awb,A.aw9,A.awa,A.aw8,A.aw7,A.awg,A.avY,A.aIs,A.aIj,A.aIm,A.aIn,A.aIi,A.aIh,A.aIq,A.aIu,A.aIf,A.azX,A.azF,A.azA,A.azB,A.azC,A.azD,A.azw,A.azx,A.azy,A.azz,A.azQ,A.azR,A.aJN,A.aJ9,A.aJ3,A.aJ_,A.aJL,A.aJ6,A.aJ1,A.aIY,A.aJF,A.aJu,A.aJv,A.aJw,A.aJx,A.aJy,A.aJs,A.aJq,A.aJo,A.aJr,A.aJB,A.aLj,A.aLk,A.aLl,A.aui,A.auf,A.aud,A.aue,A.au9,A.auc,A.auh,A.awM,A.awJ,A.awK,A.awL,A.aAm,A.aJb,A.aJi,A.aJg,A.aJj,A.aJk,A.aVK,A.aVF,A.aVG,A.aVE,A.aVA,A.aVD,A.aVI,A.aJK,A.aPs,A.aPr,A.aPv,A.aPq,A.aPp,A.aPx,A.awS,A.awT,A.axM,A.axN,A.axO,A.axP,A.axV,A.axJ,A.axU,A.axT,A.aV2,A.aV3,A.aV4,A.aV9,A.aV1,A.aV8,A.aV7,A.aPl,A.aPT,A.aPH,A.aPU,A.aPG,A.aPV,A.aQ5,A.aPQ,A.aQ6,A.aQ7,A.aQ8,A.aPO,A.aPN,A.aQb,A.aPW,A.aPX,A.aPY,A.aPM,A.aQ4,A.aPE,A.aPF,A.b08,A.b0g,A.b0h,A.b0i,A.b0j,A.b0o,A.b0d,A.b0a,A.b0b,A.awN,A.awO,A.awP,A.awQ,A.aL0,A.aL_,A.aUW,A.aUV,A.azP,A.azK,A.azJ,A.azL,A.azM,A.azN,A.azH,A.azO,A.b_V,A.b_W,A.b_X,A.b_Y,A.b0_,A.b01,A.b_T,A.aOI,A.aOH,A.awk,A.aOC,A.aOB,A.aOD,A.aOF,A.aOA,A.aOE,A.aTo,A.aTt,A.aXf,A.aTz,A.aTy,A.aOL,A.asD,A.asC,A.atN,A.atR,A.atS,A.aEI,A.aEJ,A.aIw,A.aKN,A.aKO,A.aKP,A.aKQ,A.aKR,A.at_,A.aPg,A.aPk,A.at2,A.aUh,A.att,A.axY,A.aUp,A.aUq,A.aUr,A.aUs,A.aUt,A.aUu,A.aUv,A.asB,A.aUf,A.aUc,A.aUl,A.aUj,A.aVl,A.bhV,A.atb,A.ate,A.ata,A.b_6,A.ayD,A.ayF,A.ayE,A.ayG,A.ayC,A.ayZ,A.asN,A.at5,A.at6,A.aBn,A.aJf,A.aJc,A.aLo,A.aLp,A.b3t,A.aNF,A.aTm,A.aU9,A.auj,A.auk,A.aUN,A.aUM,A.aVO,A.aZ2,A.aGx,A.bhv,A.bhu]) +q(A.b51,[A.IL,A.qP,A.yj,A.Bk,A.Lc,A.axs,A.yw,A.wO,A.Ip,A.QU,A.nt,A.z7,A.ase,A.xp,A.Oo,A.Kc,A.u9,A.Cw,A.QZ,A.agW,A.Fj,A.PM,A.d5,A.fC,A.Zd,A.a73,A.Lk,A.P3,A.aaw,A.a70,A.q0,A.By,A.auu,A.xd,A.oj,A.Im,A.ayd,A.qV,A.p5,A.DQ,A.uv,A.nK,A.Pi,A.aYW,A.aaU,A.mr,A.Ph,A.Yx,A.auy,A.ab3,A.Bf,A.a2U,A.ty,A.CU,A.Em,A.a3E,A.Bj,A.ws,A.a1L,A.tI,A.aDi,A.bG,A.aSW,A.n6,A.oi,A.G_,A.Xw,A.aon,A.A9,A.JN,A.ow,A.ha,A.a2e,A.Af,A.Rr,A.a1a,A.KN,A.He,A.Rs,A.ht,A.G7,A.ava,A.av8,A.b3z,A.b3A,A.pz,A.b3D,A.a1c,A.b5J,A.ah8,A.b6R,A.vv,A.Ky,A.iq,A.aIB,A.Lw,A.aID,A.o4,A.uf,A.dy,A.aLT,A.a6j,A.b1J,A.b9Y,A.b9Z,A.vI,A.aQr,A.b71,A.kY,A.bcu,A.a9A,A.Hl,A.aUT,A.OE,A.bcV,A.bcT,A.aYK,A.Ff,A.HA,A.yg,A.O0,A.Nv,A.Y6,A.abF,A.B6,A.Yu,A.YB,A.wq,A.CO,A.Fq,A.aZW,A.OU,A.Eg,A.GI,A.a1T,A.a3K,A.ud,A.wG,A.KV,A.a0D,A.uS,A.Oh,A.Fo,A.ED,A.Oi,A.Pv,A.a2u,A.aak,A.YH,A.O5,A.ady,A.adz,A.za,A.ayk,A.XT,A.D1,A.a3g,A.xS,A.lp,A.wU,A.P7,A.P6,A.aaC,A.a5U,A.a9M,A.a9N,A.kc,A.aYV,A.Kx,A.mk,A.abm,A.ot,A.u3,A.abo,A.tK,A.aDx,A.zQ,A.abf,A.atv,A.bcx,A.Gm,A.CH,A.RZ,A.aN3,A.a6z,A.hy,A.aM_,A.UW,A.Eq,A.ir,A.TR,A.a6D,A.GA,A.anl,A.Ht,A.aS0,A.a8U,A.ze,A.a8X,A.a8V,A.Oa,A.a9O,A.BE,A.qx,A.a1K,A.PE,A.Mk,A.lu,A.aMO,A.nq,A.Xx,A.Tb,A.EP,A.d3,A.hG,A.f_,A.fn,A.kE,A.l6,A.et,A.m5,A.zz,A.D3,A.yK,A.abE]) +p(A.avL,A.am9) +q(A.Z4,[A.J3,A.J5,A.Bu]) +q(A.z,[A.Me,A.hX,A.rA,A.o1,A.ao,A.eu,A.ba,A.iD,A.zF,A.ra,A.zs,A.qt,A.fb,A.Ah,A.adS,A.anm,A.kl,A.jU,A.wZ,A.fq,A.bd,A.CG,A.apA,A.Sv]) +q(A.Z6,[A.QX,A.QY]) +p(A.J4,A.YE) +q(A.iI,[A.BL,A.a7a]) +q(A.BL,[A.a8A,A.Yb,A.Ze,A.Zh,A.Zg,A.a6x,A.PL,A.a2Q,A.a9i]) +p(A.a6v,A.PL) +p(A.Z5,A.a9o) +q(A.Zm,[A.aYv,A.bgs,A.bgn,A.aNb,A.bhi,A.bh5,A.aHY,A.aHU,A.aBE,A.aXH,A.beW,A.bi0,A.aGM,A.ay9,A.b6E,A.b3k,A.avO,A.axy,A.aNP,A.aHG,A.bhe,A.beL,A.bg1,A.aEF,A.aEA,A.aEl,A.b6h,A.aY_,A.b1L,A.beO,A.bbh,A.b6t,A.aFF,A.aIA,A.aJR,A.aXA,A.aXz,A.b7A,A.b7w,A.b2w,A.aMg,A.b0s,A.b0p,A.b0q,A.b0r,A.be8,A.be7,A.bf3,A.aKz,A.aKA,A.aKB,A.aKC,A.aSc,A.aSd,A.aXT,A.aXU,A.bee,A.bcK,A.bcL,A.b1G,A.bgr,A.b5o,A.b5q,A.b5s,A.b5y,A.ato,A.atp,A.aLe,A.aLf,A.aH_,A.avA,A.avC,A.avE,A.auO,A.auN,A.auX,A.ayM,A.aDU,A.aDV,A.aFL,A.aFN,A.bfY,A.b_F,A.b_G,A.aYC,A.bgF,A.bgG,A.bgi,A.avl,A.aKg,A.aKq,A.b5j,A.b5l,A.aCI,A.ay1,A.b8K,A.baw,A.baF,A.bax,A.aNz,A.aSK,A.aSO,A.aJU,A.b7T,A.b8k,A.baN,A.baO,A.ba8,A.bal,A.bao,A.bap,A.bam,A.ban,A.b4S,A.b4T,A.b4U,A.baK,A.baJ,A.baH,A.baQ,A.aLS,A.aLU,A.aLY,A.aLZ,A.aLX,A.b8F,A.b4C,A.b8G,A.bet,A.beu,A.b9D,A.b7I,A.b7J,A.b3H,A.bak,A.aQq,A.b2z,A.aSx,A.aSF,A.bcv,A.bbB,A.bb0,A.bdr,A.bds,A.beE,A.bdM,A.bb3,A.b__,A.b3L,A.aGX,A.aH7,A.aH4,A.asJ,A.aLc,A.aRt,A.aQv,A.aQD,A.aQH,A.aQF,A.aQG,A.aQE,A.aKU,A.aNg,A.aNf,A.aNh,A.aNi,A.aQP,A.aR8,A.aR7,A.aRb,A.aRc,A.aRp,A.aQJ,A.aQI,A.aRd,A.aQO,A.aSS,A.bc8,A.aU0,A.aU1,A.aTI,A.avy,A.b4p,A.aXI,A.aAv,A.aAN,A.aAP,A.az8,A.aza,A.az9,A.azb,A.azc,A.az4,A.az7,A.bag,A.bad,A.aQe,A.aQf,A.b66,A.aBj,A.aFR,A.b6H,A.aFO,A.b6T,A.ayu,A.b6M,A.b8U,A.bb6,A.bcE,A.b9c,A.beB,A.beC,A.b8q,A.b8p,A.b8n,A.aT8,A.bc0,A.bbZ,A.bc_,A.aTc,A.aUQ,A.aUY,A.baW,A.baV,A.b0H,A.baU,A.baT,A.bhr,A.axA,A.aCn,A.b4h,A.b4j,A.b4k,A.b4m,A.aS1,A.aHe,A.aFh,A.aFj,A.aFk,A.aFo,A.aFu,A.atU,A.aKe,A.asF,A.asG,A.b9g,A.b9h,A.b9i,A.aMR,A.aMP,A.aMQ,A.ayg,A.ayh,A.ayi,A.aEr,A.aEo,A.aEp,A.asZ,A.bfh,A.aXY,A.atm,A.aOj,A.aOk,A.aO4,A.aOm,A.aOn,A.b9Q,A.b9F,A.b9G,A.b9H,A.bbS,A.bbO,A.bch,A.aFZ,A.aEb,A.bhq,A.as5,A.as8,A.b17,A.b1d,A.bgK,A.aCl,A.aC9,A.aHr,A.bhT,A.aFd,A.aXo,A.aXp,A.aVU,A.aVW,A.aWp,A.aWe,A.aWW,A.aAh,A.awd,A.awe,A.awf,A.aw0,A.b0Z,A.azW,A.bhy,A.aub,A.aVC,A.axL,A.axR,A.axQ,A.aV5,A.b07,A.aTx,A.aTq,A.aTv,A.asE,A.atP,A.at7,A.atd,A.at9,A.aJT,A.aUA,A.aUB,A.az_]) +q(A.d7,[A.YJ,A.i9,A.lm,A.rm,A.a3a,A.abp,A.afN,A.a8K,A.agF,A.CZ,A.wf,A.l3,A.a6l,A.abr,A.zR,A.iU,A.Zo,A.ahb,A.a2o,A.a2B,A.Z1]) +p(A.a1p,A.azi) +q(A.i9,[A.a26,A.KD,A.KE]) +q(A.fm,[A.h7,A.a76]) +q(A.h7,[A.MP,A.ajZ,A.ajY,A.MQ,A.MS,A.MT,A.MU,A.MV,A.MW,A.MX]) +q(A.aBw,[A.q_,A.agc]) +p(A.MR,A.ajZ) +p(A.a74,A.ajY) +p(A.azm,A.agc) +p(A.a77,A.a76) +q(A.fa,[A.K1,A.MI,A.a6W,A.a7_,A.a6Y,A.a6X,A.a6Z]) +q(A.K1,[A.a6K,A.a6J,A.a6I,A.a6O,A.a6Q,A.a6U,A.a6T,A.a6M,A.a6P,A.a6L,A.a6S,A.a6V,A.a6N,A.a6R]) +p(A.CE,A.aBA) +q(A.qi,[A.QF,A.SJ]) +q(A.a1r,[A.M9,A.aK2]) +p(A.a2G,A.KW) +q(A.auL,[A.Md,A.Ox]) +p(A.a1u,A.aNl) +q(A.b2r,[A.apT,A.bdS,A.apN]) +p(A.b9p,A.apT) +p(A.b8s,A.apN) +q(A.a7m,[A.awU,A.a0W,A.aH9,A.aHi,A.aNs,A.aTb,A.aEK,A.av7,A.aZ0]) +q(A.r5,[A.Ep,A.Ct,A.Ln,A.y4,A.Pg]) +q(A.aTP,[A.ayv,A.aKD]) +p(A.JL,A.afZ) +q(A.JL,[A.aU3,A.a2n,A.a8L]) +q(A.ae,[A.pL,A.FG,A.aeZ,A.ip,A.a1O,A.a34,A.ro]) +p(A.ahZ,A.pL) +p(A.abg,A.ahZ) +p(A.DP,A.aN4) +q(A.F8,[A.YZ,A.a8C]) +q(A.aZd,[A.aIa,A.aCr,A.b0B]) +q(A.aZc,[A.b3K,A.u8,A.wk]) +p(A.aij,A.b3K) +p(A.aik,A.aij) +p(A.ail,A.aik) +p(A.nd,A.ail) +p(A.a1j,A.nd) +q(A.aBB,[A.aMf,A.aBS,A.azv,A.aFg,A.aMd,A.aNN,A.aTn,A.aU5]) +q(A.aBC,[A.aMh,A.aZt,A.aMt,A.ayl,A.aNe,A.aBl,A.b0t,A.a6a]) +q(A.a2n,[A.aGN,A.asp,A.aD7]) +q(A.aZg,[A.aZn,A.aZu,A.aZp,A.aZs,A.aZo,A.aZr,A.aZe,A.aZk,A.aZq,A.aZm,A.aZl,A.aZj]) +q(A.ayA,[A.a0u,A.a2b]) +q(A.aBm,[A.aya,A.aEi]) +p(A.a9t,A.Cs) +p(A.a1q,A.a9t) +p(A.b3P,A.b6v) +q(J.CT,[J.Ld,J.CY,J.k,J.xN,J.xO,J.u1,J.qG]) +q(J.k,[J.u6,J.H,A.yk,A.hm,A.aL,A.Xm,A.th,A.b0,A.n0,A.dM,A.afv,A.jH,A.a0w,A.a11,A.age,A.JW,A.agg,A.a14,A.agN,A.jR,A.a2z,A.ahE,A.CM,A.a3H,A.a5V,A.ajf,A.ajg,A.jX,A.ajh,A.ajA,A.jZ,A.ak3,A.am7,A.EN,A.k6,A.anc,A.k7,A.ank,A.iV,A.ao6,A.ab4,A.ke,A.aoi,A.aba,A.aby,A.apn,A.apx,A.apP,A.aqp,A.aqs,A.JB,A.L0,A.D0,A.Mv,A.ln,A.ain,A.lt,A.ajK,A.a7h,A.ann,A.lF,A.aoo,A.Y1,A.aef]) +q(J.u6,[J.a7d,J.pm,J.oM]) +p(J.aHF,J.H) +q(J.u1,[J.CX,J.Lf]) +q(A.bz,[A.IT,A.Hs,A.zA,A.G1,A.RH,A.Am,A.RW,A.QJ,A.kT,A.agQ,A.JM,A.vo,A.Hv,A.Gn]) +q(A.o1,[A.wu,A.VP,A.q7,A.q6]) +p(A.RE,A.wu) +p(A.QT,A.VP) +p(A.iz,A.QT) +q(A.bo,[A.wv,A.jh,A.rD,A.Su,A.aee]) +q(A.FG,[A.i2,A.zT]) +q(A.ao,[A.av,A.jM,A.cl,A.rE,A.SC,A.rM,A.Ax,A.Ul]) +q(A.av,[A.kb,A.ad,A.da,A.Lv,A.ai8,A.RY]) +p(A.qh,A.eu) +p(A.K9,A.zF) +p(A.Ce,A.ra) +p(A.K8,A.qt) +q(A.rJ,[A.al1,A.al2,A.al3]) +q(A.al1,[A.eT,A.H6,A.Tn,A.al4,A.al5,A.al6,A.al7]) +q(A.al2,[A.al8,A.al9,A.ala,A.To]) +p(A.Tp,A.al3) +p(A.V6,A.yd) +p(A.mu,A.V6) +q(A.mu,[A.wC,A.oC]) +q(A.BJ,[A.a2,A.dg]) +q(A.ml,[A.Ji,A.Hh]) +q(A.Ji,[A.kw,A.h0]) +p(A.cr,A.a32) +p(A.Mu,A.rm) +q(A.aaK,[A.aan,A.Bc]) +q(A.jh,[A.Lh,A.xQ,A.Sy]) +q(A.hm,[A.Mf,A.Dx]) +q(A.Dx,[A.SS,A.SU]) +p(A.ST,A.SS) +p(A.uk,A.ST) +p(A.SV,A.SU) +p(A.lr,A.SV) +q(A.uk,[A.Mg,A.a6c]) +q(A.lr,[A.a6d,A.Mh,A.a6e,A.a6f,A.Mi,A.Mj,A.yl]) +p(A.V_,A.agF) +p(A.d6,A.Hs) +p(A.j_,A.d6) +q(A.hx,[A.vs,A.Gw,A.Hk]) +p(A.A5,A.vs) +q(A.mz,[A.o9,A.lI]) +p(A.G2,A.o9) +q(A.A8,[A.aD,A.AB]) +q(A.vN,[A.mx,A.pI]) +p(A.Uu,A.adR) +q(A.ag1,[A.j0,A.Ab]) +p(A.SQ,A.mx) +p(A.o5,A.RW) +q(A.aar,[A.Uw,A.a9s,A.aam,A.aal]) +p(A.Uv,A.Uw) +p(A.am_,A.bes) +q(A.rD,[A.vw,A.Rj]) +q(A.Hh,[A.pA,A.kW]) +q(A.Rq,[A.rB,A.Ac]) +q(A.ang,[A.kk,A.jx]) +q(A.anf,[A.Um,A.Un]) +p(A.OS,A.Um) +q(A.pF,[A.rN,A.Up,A.Aw]) +p(A.Uo,A.Un) +p(A.F0,A.Uo) +q(A.nJ,[A.Hu,A.aoN,A.aeo,A.Az]) +p(A.St,A.Hu) +q(A.n_,[A.n5,A.Yf,A.a3b,A.a8G]) +q(A.n5,[A.XQ,A.a3m,A.abA,A.aaB]) +q(A.cm,[A.aoM,A.aoL,A.Yh,A.Yg,A.RX,A.a3e,A.a3d,A.abB,A.PQ,A.a2w,A.am4,A.am3]) +q(A.aoM,[A.XS,A.a3o]) +q(A.aoL,[A.XR,A.a3n]) +q(A.IP,[A.b52,A.bcj,A.b2q,A.QM,A.QN,A.aih,A.bec,A.beb]) +p(A.b2I,A.QB) +q(A.b2q,[A.b26,A.bea]) +p(A.a3c,A.CZ) +q(A.Z0,[A.b7t,A.ai9]) +q(A.b7z,[A.b7x,A.aia]) +p(A.apE,A.aia) +p(A.b7B,A.apE) +p(A.b7C,A.aih) +p(A.aqP,A.aoU) +p(A.Ve,A.aqP) +q(A.l3,[A.E7,A.L3]) +p(A.afP,A.V9) +q(A.aL,[A.bs,A.Kl,A.a1M,A.a25,A.xw,A.Du,A.a6n,A.k3,A.Uj,A.kd,A.iW,A.UQ,A.abH,A.FN,A.vk,A.po,A.wN,A.Y3,A.tf]) +q(A.bs,[A.cO,A.oq,A.qc,A.G3]) +q(A.cO,[A.bc,A.bh]) +q(A.bc,[A.Xt,A.XP,A.Ba,A.wl,A.a27,A.xG,A.Lu,A.O1,A.a90,A.Pa,A.aaE,A.aaF,A.Fh]) +q(A.b0,[A.tq,A.ui,A.lw,A.vi]) +p(A.Zy,A.n0) +p(A.wH,A.afv) +q(A.jH,[A.Zz,A.ZA]) +p(A.agf,A.age) +p(A.JV,A.agf) +p(A.agh,A.agg) +p(A.JX,A.agh) +p(A.i6,A.th) +p(A.agO,A.agN) +p(A.Cn,A.agO) +p(A.ahF,A.ahE) +p(A.xu,A.ahF) +p(A.xv,A.xw) +p(A.a5Y,A.ajf) +p(A.a5Z,A.ajg) +p(A.aji,A.ajh) +p(A.a6_,A.aji) +p(A.ajB,A.ajA) +p(A.Mr,A.ajB) +p(A.ak4,A.ak3) +p(A.a7g,A.ak4) +p(A.a8I,A.am7) +p(A.Uk,A.Uj) +p(A.a9U,A.Uk) +p(A.and,A.anc) +p(A.aai,A.and) +p(A.aao,A.ank) +p(A.ao7,A.ao6) +p(A.ab0,A.ao7) +p(A.UR,A.UQ) +p(A.ab1,A.UR) +p(A.aoj,A.aoi) +p(A.ab9,A.aoj) +p(A.apo,A.apn) +p(A.afu,A.apo) +p(A.Rp,A.JW) +p(A.apy,A.apx) +p(A.ahm,A.apy) +p(A.apQ,A.apP) +p(A.SR,A.apQ) +p(A.aqq,A.aqp) +p(A.ane,A.aqq) +p(A.aqt,A.aqs) +p(A.anq,A.aqt) +p(A.RF,A.aee) +p(A.RG,A.kT) +p(A.anK,A.Uf) +p(A.Uz,A.bcJ) +p(A.o_,A.b1F) +p(A.ov,A.JB) +q(A.jc,[A.MM,A.MN,A.MO]) +p(A.RN,A.aCR) +q(A.qH,[A.Lg,A.GJ]) +p(A.xP,A.GJ) +p(A.aio,A.ain) +p(A.a3w,A.aio) +p(A.ajL,A.ajK) +p(A.a6s,A.ajL) +p(A.Ex,A.bh) +p(A.ano,A.ann) +p(A.aat,A.ano) +p(A.aop,A.aoo) +p(A.abc,A.aop) +q(A.a6u,[A.m,A.U]) +p(A.Y2,A.aef) +p(A.a6t,A.tf) +p(A.a0S,A.ag4) +q(A.a0S,[A.d,A.bD,A.kz,A.Oj,A.a99]) +q(A.d,[A.a4,A.N,A.aG,A.ajF,A.b2,A.NW,A.ajI]) +q(A.a4,[A.IR,A.Av,A.ZC,A.a0m,A.ak_,A.a0n,A.aej,A.QA,A.UY,A.ajw,A.a0o,A.ZD,A.a0r,A.a0s,A.adN,A.A1,A.Y9,A.Zk,A.a1e,A.a1n,A.Xp,A.agp,A.QH,A.YN,A.J2,A.Bs,A.Z_,A.a0P,A.BW,A.a0V,A.AW,A.C_,A.abG,A.K2,A.Rv,A.agE,A.xg,A.a2s,A.xy,A.CR,A.qL,A.a3J,A.Uc,A.a6g,A.yn,A.a6i,A.ajs,A.ag3,A.ajt,A.aju,A.akO,A.FZ,A.apb,A.Td,A.Nf,A.aeu,A.a8Z,A.aaA,A.Fc,A.zD,A.anQ,A.aaY,A.anX,A.ao_,A.ab_,A.Fu,A.aog,A.ajG,A.a3_,A.a7k,A.iG,A.e4,A.Zq,A.ajH,A.a0K,A.JR,A.a1A,A.a2d,A.bB,A.a2S,A.rw,A.ai1,A.Ea,A.aiK,A.a61,A.ajk,A.Mo,A.DH,A.uB,A.a8M,A.a8W,A.a9q,A.a9E,A.a9D,A.aag,A.ajJ,A.mq,A.Fv,A.abI,A.FM,A.a2E,A.Gq,A.qw,A.Cj,A.BN,A.Dq,A.KG,A.DA,A.DB,A.Gs,A.MG,A.vn,A.MH,A.DX,A.Ds,A.a1E,A.aac,A.xe,A.v1,A.aa7,A.D8,A.a68,A.wy,A.y9,A.Dn,A.a6F,A.a1g,A.a3k,A.a3l,A.a8y,A.YV,A.zV,A.lW,A.zg,A.a7z,A.B8,A.YD,A.a3B,A.a9g,A.OB,A.ab7,A.q8,A.a9S,A.a60,A.qM,A.Dm,A.ne,A.Dk,A.LK,A.uy,A.hP,A.yP,A.a9c,A.Yq,A.a9L,A.OH]) +q(A.jT,[A.tl,A.XV,A.O3]) +p(A.xD,A.ahO) +q(A.xD,[A.a67,A.adL,A.b53,A.a66]) +q(A.vO,[A.FH,A.EL]) +p(A.amA,A.a2w) +p(A.bcd,A.aFG) +p(A.ayH,A.ag6) +q(A.b2t,[A.z3,A.z5,A.x3]) +q(A.kA,[A.ai3,A.L2,A.JP]) +p(A.a35,A.ai3) +q(A.bbc,[A.aep,A.alP]) +p(A.atT,A.aep) +p(A.lB,A.alP) +p(A.aYz,A.b_E) +p(A.atE,A.aYz) +p(A.qA,A.avn) +q(A.rl,[A.QQ,A.QO,A.QP,A.Yo,A.JJ,A.a0z]) +p(A.bai,A.axo) +q(A.M5,[A.aja,A.M4]) +p(A.M3,A.aja) +p(A.b8f,A.aCQ) +p(A.Ed,A.hO) +q(A.Ed,[A.hK,A.le]) +p(A.a8B,A.hK) +p(A.b9I,A.aCS) +q(A.aNm,[A.aCz,A.aMb,A.aMH,A.aNa,A.aUE,A.b0u]) +q(A.aCz,[A.aCH,A.aCA,A.aCC,A.aCB]) +p(A.a1R,A.ah_) +p(A.a1S,A.ah0) +p(A.aM,A.ah1) +p(A.c6,A.ah2) +p(A.a1U,A.ah3) +p(A.jN,A.ah4) +p(A.a1V,A.ah5) +q(A.N,[A.Kv,A.Jl,A.Jm,A.Jn,A.wI,A.JA,A.Ie,A.Jw,A.Jx,A.BO,A.G9,A.Eb,A.Jz,A.Re,A.tu,A.Do,A.Il,A.IG,A.Ak,A.Nm,A.IN,A.J1,A.Nj,A.K3,A.Gk,A.Gj,A.Ad,A.C6,A.Kj,A.U6,A.xE,A.Sk,A.QG,A.S3,A.xF,A.Pr,A.LP,A.a2W,A.SW,A.OX,A.vL,A.Rh,A.Mn,A.vQ,A.vR,A.N1,A.DS,A.a7q,A.E5,A.yX,A.NY,A.RO,A.nA,A.vM,A.Of,A.OA,A.SH,A.JK,A.P8,A.P9,A.Pm,A.qu,A.UO,A.PJ,A.pX,A.xk,A.Ib,A.Ic,A.FP,A.B5,A.OW,A.K0,A.C7,A.Cc,A.TX,A.xi,A.KB,A.KH,A.nv,A.qy,A.CL,A.Lb,A.LB,A.SL,A.Mp,A.rG,A.yr,A.MB,A.KQ,A.P0,A.DI,A.DR,A.uL,A.NV,A.Er,A.GU,A.Hf,A.O6,A.O8,A.U3,A.EC,A.Or,A.zq,A.Ot,A.rL,A.U8,A.Pt,A.zK,A.FC,A.FK,A.Q3,A.Zp,A.N8,A.UU,A.Aa,A.QK,A.Ly,A.DJ,A.tG,A.Mx,A.Nq,A.N3,A.O9,A.Os,A.Bp]) +p(A.a9,A.anh) +q(A.a9,[A.ah6,A.VT,A.VU,A.VV,A.R8,A.VY,A.afD,A.R9,A.HI,A.Ga,A.H5,A.VX,A.VZ,A.Rd,A.SD,A.Qo,A.QI,A.GT,A.apY,A.VO,A.VQ,A.apX,A.Ru,A.Gl,A.Rw,A.Ry,A.W0,A.W1,A.amm,A.Sl,A.W6,A.VN,A.W5,A.W7,A.UL,A.apL,A.GG,A.ajx,A.Wp,A.Ri,A.Wc,A.Wx,A.Wy,A.DU,A.DT,A.W9,A.VS,A.HJ,A.Tq,A.TU,A.W3,A.TV,A.Hn,A.U7,A.Wu,A.Wa,A.W_,A.UC,A.UD,A.Ww,A.Gv,A.aqw,A.UX,A.Qj,A.RT,A.apd,A.VM,A.aqS,A.Qz,A.ani,A.agq,A.Rz,A.RB,A.amc,A.Gt,A.ahi,A.KJ,A.E8,A.GD,A.apD,A.W8,A.aiI,A.apM,A.T_,A.GY,A.ajT,A.ajS,A.W4,A.Wv,A.ajW,A.akA,A.aqd,A.TQ,A.HL,A.kX,A.aqh,A.O7,A.U4,A.amf,A.aqg,A.amE,A.Ue,A.Ud,A.Ur,A.Ws,A.Wr,A.UN,A.aoa,A.Qk,A.V1,A.HG,A.ap7,A.Jj,A.a7s,A.UV,A.Rk,A.aeF,A.Sz,A.T7,A.W2,A.ajM,A.ale,A.Tf,A.Wo,A.Wt,A.QV]) +q(A.at,[A.bV,A.a0v,A.PR,A.vA,A.anw,A.JD,A.Es]) +q(A.bV,[A.ae3,A.adT,A.adU,A.wb,A.akF,A.alV,A.afM,A.aok,A.R_,A.VL,A.apl,A.apt]) +p(A.ae4,A.ae3) +p(A.ae5,A.ae4) +p(A.mP,A.ae5) +q(A.aUU,[A.b7p,A.bbb,A.a2a,A.OT,A.b4E,A.auw,A.ax0]) +p(A.akG,A.akF) +p(A.akH,A.akG) +p(A.N9,A.akH) +p(A.alW,A.alV) +p(A.k_,A.alW) +p(A.wL,A.afM) +p(A.aol,A.aok) +p(A.aom,A.aol) +p(A.zN,A.aom) +p(A.R0,A.R_) +p(A.R1,A.R0) +p(A.BI,A.R1) +q(A.BI,[A.Ih,A.Qn]) +q(A.ML,[A.jJ,A.b2G,A.b2H]) +q(A.jJ,[A.Sx,A.NX,A.dZ,A.PA,A.f7,A.Pz,A.jO,A.afR]) +p(A.ax,A.VL) +q(A.aC,[A.dz,A.aR,A.eI,A.PN]) +q(A.aR,[A.NT,A.dG,A.a9v,A.uF,A.u_,A.qa,A.LZ,A.Sn,A.uW,A.zH,A.a0E,A.K6,A.x1,A.wm,A.Yv,A.pk,A.Ee]) +p(A.afx,A.VT) +q(A.a0v,[A.afw,A.anV,A.afy,A.aiH,A.ags,A.ahV,A.amC,A.aiA,A.G5,A.aga,A.Se,A.anU,A.ahr]) +p(A.R6,A.VU) +p(A.app,A.VV) +p(A.R7,A.app) +q(A.i1,[A.ab8,A.bF,A.Fw,A.Sm,A.a9P,A.ama,A.rg,A.iY,A.zb,A.QE,A.uI,A.a63,A.Ol,A.NS,A.Lj,A.Hb,A.h8,A.S_,A.Ux,A.EB,A.OG,A.CD]) +q(A.ab8,[A.aeV,A.akM]) +q(A.e,[A.afA,A.os,A.a5M]) +p(A.eh,A.afA) +q(A.aZR,[A.ay0,A.ay6,A.ayx,A.aK1]) +p(A.apq,A.ay0) +p(A.afz,A.apq) +p(A.d4,A.ahM) +p(A.afB,A.d4) +p(A.ZE,A.afB) +q(A.fK,[A.afC,A.aj2,A.ap5,A.ae9,A.ahq,A.aj3,A.ap6]) +p(A.Rc,A.VY) +q(A.Ie,[A.agZ,A.amB,A.anE,A.Xv,A.ER,A.a5S,A.a9u,A.N4,A.a0C,A.a0L,A.Lx]) +p(A.VW,A.HI) +p(A.Gb,A.VW) +q(A.dd,[A.DE,A.ajC]) +p(A.fr,A.DE) +p(A.Al,A.fr) +p(A.ek,A.Al) +q(A.ek,[A.jY,A.N2]) +q(A.jY,[A.Wf,A.Wg,A.MD,A.Rl]) +p(A.rH,A.Wf) +p(A.hn,A.k0) +q(A.hn,[A.jI,A.nf,A.iC,A.DC]) +p(A.la,A.afU) +q(A.la,[A.o2,A.vc,A.dU,A.hT]) +q(A.Yz,[A.b3Y,A.be3,A.aeB,A.amD]) +q(A.Eb,[A.BP,A.GQ]) +p(A.p7,A.H5) +q(A.p7,[A.Ra,A.aj4]) +p(A.Rb,A.VX) +q(A.aG,[A.a3t,A.bv,A.Rg,A.Ui,A.fM,A.tt,A.GZ,A.a9J,A.Tm]) +q(A.a3t,[A.afE,A.amR,A.aoW,A.a7E,A.a1z,A.akQ]) +p(A.J,A.alw) +q(A.J,[A.O,A.alL,A.dk]) +q(A.O,[A.TI,A.TL,A.Wj,A.aq0,A.aq2,A.aq7,A.Wl,A.Wn,A.alp,A.aqb,A.Tv,A.Tx,A.alm,A.Nz,A.NC,A.alr,A.TG,A.alH,A.kj,A.alN,A.aq5,A.aq8,A.Wm,A.Wk,A.aqa,A.NA]) +p(A.TJ,A.TI) +p(A.a8g,A.TJ) +q(A.a8g,[A.Eh,A.alu,A.TA,A.ao2,A.NK,A.Nx,A.a89,A.NE,A.a8b,A.alf,A.a7Y,A.H7,A.a82,A.a8t,A.a85,A.a8h,A.NB,A.NH,A.Nr,A.NL,A.a7Z,A.a8a,A.a83,A.a86,A.a88,A.a84,A.Nu,A.ali,A.alt,A.alA,A.aq3,A.TE,A.alz,A.Ha,A.alM,A.amG]) +q(A.Eh,[A.alj,A.alh]) +p(A.afF,A.ay6) +p(A.a0q,A.afF) +q(A.bv,[A.afH,A.ae8,A.aez,A.ahX,A.ahY,A.af_,A.GS,A.aeY,A.ahU,A.ajc,A.ao1,A.Mb,A.ae_,A.Ii,A.a6w,A.Ya,A.JE,A.BC,A.Zf,A.Bz,A.a78,A.a79,A.rk,A.wB,A.BH,A.a28,A.b4,A.ef,A.l8,A.fB,A.eX,A.a3C,A.DD,A.a36,A.iS,A.zt,A.Dd,A.ii,A.CK,A.Xl,A.bu,A.uh,A.Yt,A.qk,A.CQ,A.ts,A.a0B,A.af7,A.aho,A.aiJ,A.amq,A.ag_,A.ame,A.Hj,A.amV,A.amT,A.a9Q,A.aaJ,A.aaI,A.cY,A.aoY,A.aeh,A.Hi]) +p(A.z_,A.TL) +q(A.z_,[A.alk,A.a7W,A.Tr,A.TB,A.TC,A.alv,A.NI,A.Ny]) +p(A.Rf,A.VZ) +q(A.afy,[A.aim,A.alX]) +q(A.bD,[A.bR,A.ajE,A.Jh,A.TP,A.ajD]) +q(A.bR,[A.afG,A.kF,A.Ow,A.a3s,A.a8u,A.GK,A.ajR,A.EW,A.OD]) +p(A.aq1,A.Wj) +p(A.As,A.aq1) +p(A.wK,A.afI) +q(A.b2,[A.bf,A.ho,A.dB,A.a7U]) +q(A.bf,[A.Sf,A.Rt,A.K4,A.Kw,A.dO,A.T9,A.An,A.agI,A.TT,A.amb,A.UF,A.Qi,A.aoI,A.ky,A.RV,A.oJ,A.SB,A.xt,A.At,A.DZ,A.zS,A.am6,A.SO,A.O4,A.TZ,A.U1,A.EE,A.amK,A.RD,A.AD,A.Ta,A.Vh,A.FB,A.tX,A.Sg]) +p(A.afK,A.Mq) +p(A.BQ,A.afK) +p(A.b4q,A.wK) +q(A.h_,[A.hI,A.wV,A.a0U]) +p(A.vu,A.hI) +q(A.vu,[A.Ci,A.a1y,A.a1w]) +p(A.cg,A.aha) +p(A.xh,A.ahb) +q(A.wV,[A.ah9,A.a0T,A.ams]) +q(A.id,[A.jV,A.hM]) +q(A.jV,[A.kR,A.bS]) +p(A.Ls,A.m3) +q(A.bdZ,[A.ahk,A.vr,A.S2]) +p(A.Kz,A.cg) +p(A.c9,A.akd) +p(A.aqC,A.adM) +p(A.aqD,A.aqC) +p(A.aou,A.aqD) +q(A.c9,[A.ak5,A.akq,A.akg,A.akb,A.ake,A.ak9,A.aki,A.aky,A.jn,A.akm,A.ako,A.akk,A.ak7]) +p(A.ak6,A.ak5) +p(A.yz,A.ak6) +q(A.aou,[A.aqy,A.aqK,A.aqF,A.aqB,A.aqE,A.aqA,A.aqG,A.aqO,A.aqM,A.aqN,A.aqL,A.aqI,A.aqJ,A.aqH,A.aqz]) +p(A.aoq,A.aqy) +p(A.akr,A.akq) +p(A.yF,A.akr) +p(A.aoB,A.aqK) +p(A.akh,A.akg) +p(A.qX,A.akh) +p(A.aow,A.aqF) +p(A.akc,A.akb) +p(A.uw,A.akc) +p(A.aot,A.aqB) +p(A.akf,A.ake) +p(A.ux,A.akf) +p(A.aov,A.aqE) +p(A.aka,A.ak9) +p(A.qW,A.aka) +p(A.aos,A.aqA) +p(A.akj,A.aki) +p(A.yC,A.akj) +p(A.aox,A.aqG) +p(A.akz,A.aky) +p(A.yJ,A.akz) +p(A.aoF,A.aqO) +q(A.jn,[A.aku,A.akw,A.aks]) +p(A.akv,A.aku) +p(A.yH,A.akv) +p(A.aoD,A.aqM) +p(A.akx,A.akw) +p(A.yI,A.akx) +p(A.aoE,A.aqN) +p(A.akt,A.aks) +p(A.yG,A.akt) +p(A.aoC,A.aqL) +p(A.akn,A.akm) +p(A.qY,A.akn) +p(A.aoz,A.aqI) +p(A.akp,A.ako) +p(A.yE,A.akp) +p(A.aoA,A.aqJ) +p(A.akl,A.akk) +p(A.yD,A.akl) +p(A.aoy,A.aqH) +p(A.ak8,A.ak7) +p(A.yA,A.ak8) +p(A.aor,A.aqz) +q(A.eY,[A.ahn,A.A7]) +p(A.eN,A.ahn) +q(A.eN,[A.My,A.n4]) +q(A.My,[A.n7,A.DY,A.K_,A.nB,A.QC]) +q(A.HC,[A.SK,A.GX]) +q(A.DY,[A.kD,A.Yn]) +q(A.K_,[A.nP,A.n9,A.np]) +q(A.Yn,[A.kO,A.G0]) +p(A.Pb,A.anF) +p(A.Pe,A.anI) +p(A.Pd,A.anH) +p(A.Pf,A.anJ) +p(A.Pc,A.anG) +p(A.IA,A.QC) +q(A.IA,[A.pi,A.pj]) +p(A.xx,A.kf) +p(A.Di,A.xx) +q(A.adN,[A.Y7,A.Zj,A.a1d,A.a1m]) +p(A.AV,A.adP) +p(A.aJY,A.a8S) +q(A.aUX,[A.bdP,A.agt,A.b9A,A.bdR,A.a0Q,A.aaZ]) +p(A.Tg,A.U) +q(A.a7W,[A.alg,A.Ts,A.a7X,A.a8f]) +p(A.B_,A.ae7) +p(A.b24,A.B_) +p(A.Dr,A.uF) +p(A.Iv,A.aem) +p(A.LQ,A.aj0) +p(A.Bb,A.aex) +p(A.IF,A.aey) +q(A.N2,[A.M8,A.Nk,A.Rx,A.Te]) +p(A.wn,A.aeA) +p(A.b2A,A.wn) +p(A.akT,A.apY) +p(A.IM,A.aeE) +p(A.cy,A.aeG) +p(A.QL,A.VO) +p(A.ev,A.ajm) +q(A.ev,[A.a5N,A.ag0,A.ph]) +q(A.a5N,[A.ajl,A.agz,A.RI,A.agA]) +p(A.YF,A.aeH) +p(A.Bl,A.aeJ) +p(A.b3h,A.Bl) +p(A.VR,A.VQ) +p(A.aeW,A.VR) +q(A.Fw,[A.aeU,A.akL,A.UA]) +p(A.Bq,A.aeX) +p(A.b3o,A.Bq) +p(A.Wi,A.apX) +p(A.Tk,A.Wi) +q(A.ca,[A.ahT,A.ahG,A.ahI,A.apC,A.ahS,A.UI,A.anM,A.aqv]) +p(A.OC,A.Ui) +q(A.OC,[A.af1,A.afV,A.aiF]) +p(A.Tt,A.aq0) +p(A.Bt,A.af2) +q(A.Bt,[A.b3B,A.b3E]) +p(A.wz,A.af5) +q(A.os,[A.Dp,A.a40]) +p(A.JH,A.afO) +p(A.JI,A.afQ) +p(A.apr,A.ayx) +p(A.ag2,A.apr) +p(A.JO,A.Nk) +p(A.BX,A.ag5) +p(A.b4D,A.BX) +p(A.C0,A.agb) +p(A.b4F,A.C0) +p(A.C4,A.Ru) +p(A.C5,A.agr) +p(A.b4I,A.C5) +p(A.qg,A.Rv) +p(A.Gi,A.W0) +p(A.K5,A.agu) +q(A.IN,[A.Cf,A.a1N,A.ahK,A.a6B,A.Fi]) +p(A.agD,A.Cf) +q(A.cy,[A.agB,A.agR,A.ahJ,A.agT,A.agU,A.ajQ,A.ajO,A.anN]) +p(A.Kb,A.agC) +p(A.RL,A.W1) +p(A.Cl,A.agH) +p(A.b58,A.Cl) +p(A.Ko,A.agS) +p(A.Cq,A.ah7) +p(A.b5c,A.Cq) +q(A.aDm,[A.aXE,A.bdY]) +q(A.aXE,[A.apj,A.apu]) +p(A.apk,A.apj) +p(A.b3m,A.apk) +p(A.apv,A.apu) +p(A.b50,A.apv) +p(A.bbC,A.aDl) +p(A.ahH,A.apC) +p(A.qB,A.ahL) +q(A.dO,[A.KZ,A.y2,A.Ml,A.Si,A.tw,A.xA,A.BU]) +q(A.oK,[A.L6,A.u0]) +q(A.u0,[A.tY,A.L7,A.L8]) +q(A.CS,[A.b7a,A.b7b]) +p(A.Sj,A.W6) +q(A.CR,[A.a30,A.Sd,A.Sc]) +q(A.dw,[A.m0,A.h6,A.mB,A.Yw]) +q(A.m0,[A.nM,A.mc]) +p(A.aev,A.VN) +p(A.S4,A.W5) +p(A.Tw,A.aq2) +p(A.So,A.W7) +p(A.La,A.ahW) +p(A.b7c,A.La) +p(A.TF,A.aq7) +p(A.Dc,A.aiG) +p(A.b7M,A.Dc) +p(A.aj5,A.apL) +q(A.a2W,[A.SE,A.Id,A.I8,A.Ia,A.I7,A.I5,A.I9]) +p(A.CP,A.GG) +q(A.CP,[A.AZ,A.adW]) +q(A.AZ,[A.aj1,A.ae1,A.adX,A.adZ,A.adV,A.adY]) +p(A.GR,A.a5M) +p(A.be,A.aew) +p(A.a5L,A.be) +p(A.SF,A.a5L) +p(A.D,A.ao4) +p(A.a5O,A.D) +p(A.aj7,A.a5O) +q(A.bF,[A.a5P,A.rh,A.af3,A.abd,A.PO,A.qS]) +p(A.Dt,A.aje) +p(A.a5W,A.Dt) +p(A.M6,A.ajb) +p(A.a5X,A.ajd) +q(A.aL8,[A.b8L,A.bbA,A.bdQ]) +p(A.Hr,A.OX) +p(A.aml,A.Wp) +p(A.ym,A.ajv) +p(A.b8C,A.ym) +p(A.Mm,A.ajy) +p(A.SX,A.Wc) +p(A.Dz,A.ajz) +q(A.Dz,[A.b8O,A.b8P]) +p(A.MA,A.ajP) +p(A.T5,A.Wg) +p(A.ap9,A.Wx) +p(A.apa,A.Wy) +q(A.qR,[A.adA,A.a0p]) +p(A.a6G,A.ajV) +q(A.a9P,[A.Vq,A.Vr]) +p(A.uz,A.N1) +p(A.DV,A.akB) +p(A.b9y,A.DV) +q(A.a7q,[A.Lt,A.mZ]) +p(A.aiB,A.W9) +p(A.QW,A.VS) +p(A.alb,A.G5) +p(A.Np,A.mZ) +p(A.alc,A.QW) +p(A.E1,A.akE) +q(A.E1,[A.b3G,A.b7H]) +p(A.HK,A.HJ) +p(A.H4,A.HK) +p(A.E6,A.akN) +p(A.b9T,A.E6) +p(A.No,A.Tq) +p(A.a8P,A.TU) +q(A.axz,[A.aN,A.v_]) +p(A.G4,A.aN) +p(A.RP,A.W3) +p(A.TW,A.TV) +p(A.Ev,A.TW) +p(A.cc,A.adQ) +q(A.cc,[A.a1_,A.f6,A.cz,A.abN,A.JS,A.R4,A.a8v,A.a6k,A.a7l,A.JQ]) +q(A.a1_,[A.ag8,A.ag9]) +p(A.MY,A.Eu) +p(A.Ob,A.amg) +p(A.Oc,A.amh) +p(A.Od,A.ami) +p(A.Oe,A.amj) +p(A.ao3,A.rh) +q(A.Pu,[A.amn,A.anT]) +p(A.Uh,A.Wu) +p(A.H9,A.Wl) +p(A.bA,A.ai0) +q(A.bA,[A.o0,A.ta,A.tj,A.kx,A.r0,A.yo,A.yL,A.tz,A.hQ,A.JT,A.a0Y,A.r9,A.ou,A.ut,A.uG,A.ny,A.vd,A.mv,A.va,A.m9,A.nl,A.md,A.ns,A.tS,A.uY,A.tR]) +p(A.alK,A.Wn) +p(A.ES,A.amS) +p(A.bcm,A.ES) +p(A.am0,A.aVo) +p(A.aRR,A.am0) +p(A.aRQ,A.aVn) +q(A.aVk,[A.aRP,A.aRO,A.aQj,A.aAa]) +p(A.OF,A.an0) +p(A.Wb,A.Wa) +p(A.SI,A.Wb) +p(A.Fd,A.anu) +p(A.bcO,A.Fd) +p(A.ant,A.aqu) +p(A.v5,A.anA) +p(A.afY,A.W_) +p(A.alq,A.alp) +p(A.Tz,A.alq) +p(A.uJ,A.Tz) +p(A.anD,A.uJ) +q(A.fM,[A.Cp,A.anY,A.tv,A.a3D,A.v2,A.adx,A.a8x,A.RA,A.a6C,A.US,A.rq,A.a9n]) +q(A.Cp,[A.anC,A.Et,A.wA]) +p(A.aeO,A.apl) +p(A.Gh,A.apt) +p(A.amd,A.iY) +p(A.nC,A.amd) +p(A.zf,A.nC) +q(A.zf,[A.UB,A.vF]) +q(A.zb,[A.anz,A.yt]) +p(A.bd9,A.v5) +p(A.anL,A.aqv) +p(A.anP,A.Fi) +p(A.Pj,A.anO) +p(A.UJ,A.Ww) +p(A.Pn,A.qu) +p(A.lg,A.Gv) +p(A.Hy,A.lg) +p(A.aj8,A.aK1) +p(A.a5Q,A.aj8) +p(A.Pw,A.anW) +p(A.ao0,A.aqw) +q(A.kF,[A.anZ,A.ahR,A.ao8,A.aqQ]) +p(A.alJ,A.aqb) +p(A.eR,A.ao5) +p(A.mt,A.ao9) +p(A.a41,A.BQ) +p(A.rr,A.aoZ) +p(A.PC,A.aoc) +p(A.PH,A.aof) +p(A.agG,A.Mb) +q(A.NK,[A.NG,A.a8e,A.r3,A.Tu,A.NN,A.Ej]) +p(A.alo,A.NG) +p(A.Fz,A.UX) +p(A.PK,A.aoh) +p(A.vb,A.aoG) +q(A.wa,[A.hE,A.iv,A.ajj]) +q(A.IE,[A.dt,A.q1,A.SN]) +q(A.Yw,[A.er,A.j8]) +p(A.cd,A.uU) +q(A.h6,[A.hi,A.cM,A.jw,A.k8,A.jy,A.jz]) +q(A.eL,[A.aK,A.fk,A.vB]) +p(A.ub,A.aFv) +q(A.aeI,[A.QR,A.GN]) +p(A.mR,A.XV) +p(A.jS,A.ahN) +p(A.aHa,A.ahP) +q(A.kz,[A.a7c,A.v9]) +p(A.F7,A.anp) +q(A.kP,[A.FQ,A.aoQ,A.Bn,A.Da,A.MK,A.wX,A.af4]) +p(A.uQ,A.OT) +p(A.qT,A.ak1) +p(A.afX,A.qT) +p(A.z1,A.alL) +p(A.alU,A.z1) +q(A.qz,[A.q3,A.EV]) +q(A.lj,[A.wr,A.a9H]) +q(A.dP,[A.iy,A.UM,A.rb,A.pe]) +p(A.R3,A.iy) +p(A.Jk,A.R3) +q(A.Jk,[A.m8,A.i8,A.oO,A.fP,A.pp,A.pB,A.jr]) +p(A.all,A.Tv) +p(A.Nw,A.all) +p(A.Ty,A.Tx) +p(A.aln,A.Ty) +p(A.yZ,A.aln) +q(A.uI,[A.UK,A.QS,A.G6]) +p(A.h4,A.aii) +q(A.h4,[A.a7b,A.hH]) +q(A.hH,[A.nm,A.BD,A.BB,A.BA,A.Op,A.Iu,A.Lr,A.KC,A.Ij]) +q(A.nm,[A.L1,A.zP,A.Mz]) +p(A.als,A.alr) +p(A.NF,A.als) +p(A.ajo,A.apO) +p(A.DK,A.ax2) +q(A.bc7,[A.afb,A.kh]) +q(A.kh,[A.alZ,A.Sb,A.AA]) +p(A.qU,A.nE) +p(A.ms,A.UM) +p(A.alx,A.TG) +p(A.aly,A.alx) +p(A.NJ,A.aly) +p(A.aqf,A.aqe) +p(A.rK,A.aqf) +p(A.Ns,A.alf) +q(A.JD,[A.uV,A.afT,A.agj]) +q(A.H7,[A.a81,A.a80,A.a8_,A.TH]) +q(A.TH,[A.a8c,A.a8d]) +q(A.aTA,[A.Jb,A.Og]) +p(A.zh,A.amp) +p(A.a9G,A.amW) +q(A.rb,[A.amX,A.amY]) +p(A.pd,A.amX) +p(A.an_,A.pe) +p(A.k2,A.an_) +q(A.dk,[A.alF,A.TN,A.alB]) +p(A.alG,A.alF) +p(A.a8r,A.alG) +q(A.a8r,[A.a8s,A.a8j]) +p(A.alD,A.TN) +p(A.alE,A.alD) +p(A.p8,A.alE) +q(A.p8,[A.a8l,A.a8n,A.a8p]) +q(A.a8l,[A.a8k,A.a8m]) +p(A.aVu,A.aVt) +p(A.aVr,A.aVq) +p(A.amZ,A.amY) +p(A.hr,A.amZ) +p(A.EU,A.hr) +p(A.NM,A.alB) +q(A.NM,[A.a8q,A.alC]) +p(A.alI,A.alH) +p(A.Ei,A.alI) +p(A.ND,A.Ei) +p(A.r4,A.kj) +q(A.r4,[A.uK,A.a8i]) +p(A.alO,A.alN) +p(A.NO,A.alO) +p(A.a97,A.amr) +p(A.ea,A.amu) +p(A.EG,A.amv) +p(A.yq,A.EG) +q(A.aTQ,[A.ass,A.b_f,A.aIM,A.aYT]) +p(A.avv,A.XU) +p(A.aNj,A.avv) +q(A.aun,[A.b4n,A.a7V]) +p(A.u2,A.aib) +q(A.u2,[A.xR,A.u4,A.Lm]) +p(A.aI4,A.aid) +q(A.aI4,[A.o,A.M]) +p(A.any,A.Ma) +p(A.nn,A.m7) +p(A.Nl,A.akR) +p(A.nw,A.akS) +q(A.nw,[A.p6,A.E9]) +p(A.a7F,A.Nl) +p(A.im,A.dl) +p(A.v7,A.anS) +q(A.v7,[A.aaO,A.aaN,A.aaP,A.Fk]) +q(A.ri,[A.Kp,A.a3v]) +p(A.ak2,A.apS) +p(A.asf,A.adO) +q(A.f6,[A.a7o,A.Wd,A.We,A.ry,A.V7,A.V8,A.amk,A.afr,A.O2]) +p(A.T2,A.Wd) +p(A.T3,A.We) +p(A.ae0,A.apd) +p(A.Ql,A.VM) +p(A.Vi,A.aqS) +q(A.a6o,[A.D_,A.ul,A.m2,A.T4,A.TY]) +q(A.Jh,[A.Na,A.F2,A.il]) +q(A.Na,[A.jf,A.us,A.apR,A.ald]) +q(A.jf,[A.aoH,A.L4,A.GH,A.V0]) +p(A.lX,A.aoI) +p(A.mY,A.ef) +q(A.ho,[A.Lo,A.uA,A.oE,A.Li,A.ap3]) +q(A.Ow,[A.ajN,A.aqi]) +p(A.Tl,A.v2) +p(A.tD,A.oE) +p(A.NU,A.TP) +p(A.Vj,A.Ys) +p(A.Vk,A.Vj) +p(A.Vl,A.Vk) +p(A.Vm,A.Vl) +p(A.Vn,A.Vm) +p(A.Vo,A.Vn) +p(A.Vp,A.Vo) +p(A.abO,A.Vp) +q(A.ky,[A.Sh,A.RQ,A.a2q]) +p(A.agv,A.RB) +p(A.RC,A.agv) +p(A.agw,A.RC) +p(A.agx,A.agw) +p(A.tA,A.agx) +p(A.FO,A.a7c) +p(A.o6,A.FO) +p(A.Je,A.af3) +p(A.ap1,A.Je) +p(A.ahg,A.ahf) +p(A.eM,A.ahg) +q(A.eM,[A.tM,A.RS]) +p(A.ahd,A.ahc) +p(A.KA,A.ahd) +p(A.a21,A.xi) +p(A.ahh,A.Gt) +p(A.a23,A.ahj) +p(A.hd,A.aq_) +p(A.pD,A.apZ) +p(A.al0,A.a23) +p(A.aQd,A.al0) +q(A.hM,[A.bq,A.tP,A.Rn]) +q(A.xq,[A.dH,A.ae6]) +p(A.b4s,A.aTR) +p(A.xs,A.oY) +p(A.Sa,A.apD) +p(A.Sp,A.W8) +p(A.D5,A.tt) +p(A.aq6,A.aq5) +p(A.TD,A.aq6) +p(A.Dj,A.hT) +q(A.oJ,[A.nh,A.amF]) +p(A.aj9,A.apM) +p(A.a0M,A.abe) +p(A.hA,A.r6) +q(A.vC,[A.GW,A.GV,A.SY,A.SZ]) +p(A.ahy,A.apA) +p(A.T0,A.T_) +p(A.ls,A.T0) +q(A.alS,[A.ajr,A.bm7]) +q(A.h8,[A.ahz,A.dv]) +p(A.T1,A.apR) +p(A.aq9,A.aq8) +p(A.H8,A.aq9) +p(A.DF,A.ajT) +p(A.HB,A.fP) +p(A.aqc,A.Wm) +p(A.vK,A.aqc) +q(A.ji,[A.vE,A.vz,A.mC]) +p(A.aq4,A.aq3) +p(A.vJ,A.aq4) +p(A.S0,A.W4) +p(A.Uy,A.Wv) +p(A.uo,A.T4) +p(A.Kt,A.agY) +p(A.a6E,A.Kt) +q(A.zd,[A.RU,A.DG,A.a7C,A.IH,A.Ja,A.Xs]) +p(A.a0J,A.aNn) +p(A.alT,A.aqd) +q(A.dv,[A.lK,A.alQ,A.alR]) +q(A.lK,[A.TO,A.NR]) +q(A.TO,[A.NQ,A.z6]) +p(A.Hc,A.HL) +p(A.Y8,A.mA) +p(A.alY,A.Y8) +p(A.a8z,A.alY) +q(A.PR,[A.a8F,A.af9]) +q(A.a8R,[A.tT,A.aGg,A.aA5,A.Ye,A.a1f]) +p(A.Hd,A.bS) +q(A.uZ,[A.kJ,A.a9C]) +p(A.Ua,A.aqh) +p(A.U_,A.m2) +p(A.k1,A.U_) +q(A.k1,[A.Ez,A.kI,A.no,A.pb,A.abz]) +p(A.zc,A.TY) +q(A.a8W,[A.JG,A.YA]) +q(A.YA,[A.y3,A.a2t,A.ME,A.MF]) +p(A.U5,A.U4) +p(A.EA,A.U5) +p(A.ajp,A.a91) +p(A.Dw,A.ajp) +p(A.U2,A.Dw) +p(A.pJ,A.kD) +p(A.pK,A.kO) +p(A.Wq,A.aqg) +p(A.amo,A.Wq) +p(A.amP,A.amO) +p(A.bl,A.amP) +p(A.A2,A.apc) +p(A.amJ,A.amI) +p(A.zp,A.amJ) +p(A.Ou,A.amL) +p(A.aqj,A.aqi) +p(A.amQ,A.aqj) +p(A.TM,A.Wk) +p(A.kL,A.a9J) +q(A.kL,[A.mm,A.a9F,A.ET,A.amU]) +p(A.aaQ,A.aaI) +q(A.a0Y,[A.wR,A.wT,A.wS,A.jb,A.r7]) +q(A.jb,[A.qm,A.qo,A.x9,A.x5,A.x6,A.ld,A.tE,A.qp,A.x7,A.x8,A.qn]) +p(A.Ub,A.Ws) +p(A.U9,A.Wr) +p(A.ap4,A.zI) +q(A.a5S,[A.a8Q,A.a8D]) +p(A.Xu,A.Lx) +p(A.FD,A.V1) +p(A.akU,A.a8u) +p(A.aqR,A.aqQ) +p(A.aoX,A.aqR) +p(A.TK,A.aqa) +p(A.afW,A.avh) +p(A.wQ,A.afW) +q(A.lf,[A.lc,A.oD]) +p(A.aGJ,A.aCP) +p(A.a2J,A.KX) +q(A.fW,[A.Xz,A.XA,A.XB,A.XC,A.XD,A.XE,A.XF,A.In,A.XH,A.Io]) +p(A.XG,A.In) +q(A.Io,[A.XI,A.XJ]) +p(A.ia,A.ahC) +p(A.ib,A.ahB) +q(A.F2,[A.aqr,A.akC]) +p(A.anj,A.aqr) +q(A.ia,[A.Aj,A.Qm,A.Ug,A.RR,A.T6,A.hz,A.dK,A.dc,A.UE,A.mH,A.H0]) +p(A.Vc,A.Aj) +q(A.ib,[A.GM,A.ae2,A.aob,A.ahe,A.ajU,A.SM,A.agy,A.Hq,A.anB,A.anR,A.T8]) +p(A.aoT,A.GM) +q(A.a2j,[A.ZF,A.ZG,A.ZH,A.ZI,A.ZJ,A.ZK,A.ZL,A.ZM,A.ZN,A.ZO,A.ZP,A.ZQ,A.ZR,A.Jo,A.ZT,A.Jp,A.Jq,A.a_l,A.a_m,A.a_n,A.a_o,A.a_p,A.Jr,A.a_r,A.a_s,A.a_t,A.a_u,A.a_v,A.a_w,A.a_x,A.a_y,A.a_z,A.a_A,A.a_B,A.a_C,A.a_D,A.a_E,A.a_F,A.a_G,A.a_H,A.a_I,A.a_J,A.a_K,A.a_L,A.a_M,A.a_N,A.a_O,A.a_P,A.a_Q,A.a_R,A.a_S,A.a_T,A.a_U,A.a_V,A.a_W,A.a_X,A.a_Y,A.Js,A.a0_,A.a00,A.a01,A.a02,A.a03,A.a04,A.Jt,A.a07,A.a08,A.a09,A.a0a,A.a0b,A.a0c,A.a0d,A.a0e,A.a0f,A.a0g,A.a0h,A.Ju,A.a0l]) +p(A.ZS,A.Jo) +q(A.Jp,[A.ZU,A.ZV,A.ZW,A.ZX,A.ZY,A.ZZ,A.a__,A.a_0]) +q(A.Jq,[A.a_1,A.a_2,A.a_3,A.a_4,A.a_5,A.a_6,A.a_7,A.a_8,A.a_9,A.a_a,A.a_b,A.a_c,A.a_d,A.a_e,A.a_f,A.a_g,A.a_h,A.a_i,A.a_j,A.a_k]) +p(A.a_q,A.Jr) +p(A.a_Z,A.Js) +q(A.Jt,[A.a05,A.a06]) +q(A.Ju,[A.a0i,A.Jv]) +q(A.Jv,[A.a0j,A.a0k]) +q(A.a2k,[A.a42,A.a43,A.a44,A.a45,A.a46,A.a47,A.a48,A.a49,A.a4a,A.a4b,A.a4c,A.a4d,A.a4e,A.LR,A.a4g,A.LS,A.LT,A.a4J,A.a4K,A.a4L,A.a4M,A.a4N,A.LU,A.a4P,A.a4Q,A.a4R,A.a4S,A.a4T,A.a4U,A.a4V,A.a4W,A.a4X,A.a4Y,A.a4Z,A.a5_,A.a50,A.a51,A.a52,A.a53,A.a54,A.a55,A.a56,A.a57,A.a58,A.a59,A.a5a,A.a5b,A.a5c,A.a5d,A.a5e,A.a5f,A.a5g,A.a5h,A.a5i,A.a5j,A.a5k,A.a5l,A.a5m,A.LV,A.a5o,A.a5p,A.a5q,A.a5r,A.a5s,A.a5t,A.LW,A.a5w,A.a5x,A.a5y,A.a5z,A.a5A,A.a5B,A.a5C,A.a5D,A.a5E,A.a5F,A.a5G,A.LX,A.a5K]) +p(A.a4f,A.LR) +q(A.LS,[A.a4h,A.a4i,A.a4j,A.a4k,A.a4l,A.a4m,A.a4n,A.a4o]) +q(A.LT,[A.a4p,A.a4q,A.a4r,A.a4s,A.a4t,A.a4u,A.a4v,A.a4w,A.a4x,A.a4y,A.a4z,A.a4A,A.a4B,A.a4C,A.a4D,A.a4E,A.a4F,A.a4G,A.a4H,A.a4I]) +p(A.a4O,A.LU) +p(A.a5n,A.LV) +q(A.LW,[A.a5u,A.a5v]) +q(A.LX,[A.a5H,A.LY]) +q(A.LY,[A.a5I,A.a5J]) +q(A.a2m,[A.abP,A.abQ,A.abR,A.abS,A.abT,A.abU,A.abV,A.abW,A.abX,A.abY,A.abZ,A.ac_,A.ac0,A.PW,A.ac2,A.PX,A.PY,A.acv,A.acw,A.acx,A.acy,A.acz,A.PZ,A.acB,A.acC,A.acD,A.acE,A.acF,A.acG,A.acH,A.acI,A.acJ,A.acK,A.acL,A.acM,A.acN,A.acO,A.acP,A.acQ,A.acR,A.acS,A.acT,A.acU,A.acV,A.acW,A.acX,A.acY,A.acZ,A.ad_,A.ad0,A.ad1,A.ad2,A.ad3,A.ad4,A.ad5,A.ad6,A.ad7,A.ad8,A.Q_,A.ada,A.adb,A.adc,A.add,A.ade,A.adf,A.Q0,A.adi,A.adj,A.adk,A.adl,A.adm,A.adn,A.ado,A.adp,A.adq,A.adr,A.ads,A.Q1,A.adw]) +p(A.ac1,A.PW) +q(A.PX,[A.ac3,A.ac4,A.ac5,A.ac6,A.ac7,A.ac8,A.ac9,A.aca]) +q(A.PY,[A.acb,A.acc,A.acd,A.ace,A.acf,A.acg,A.ach,A.aci,A.acj,A.ack,A.acl,A.acm,A.acn,A.aco,A.acp,A.acq,A.acr,A.acs,A.act,A.acu]) +p(A.acA,A.PZ) +p(A.ad9,A.Q_) +q(A.Q0,[A.adg,A.adh]) +q(A.Q1,[A.adt,A.Q2]) +q(A.Q2,[A.adu,A.adv]) +p(A.wD,A.Zp) +p(A.afa,A.Jj) +p(A.BK,A.il) +p(A.aNt,A.a7V) +p(A.ab6,A.UV) +p(A.L_,A.aO) +p(A.cX,A.zT) +p(A.ahv,A.Es) +p(A.KS,A.ahv) +p(A.aht,A.a8F) +p(A.ahu,A.aht) +p(A.KR,A.ahu) +p(A.iQ,A.am2) +q(A.iQ,[A.h9,A.jp]) +p(A.ic,A.h9) +p(A.ex,A.am5) +p(A.ma,A.iC) +p(A.aFl,A.a8E) +p(A.uN,A.am1) +q(A.uN,[A.oH,A.a9j]) +p(A.zo,A.a9j) +q(A.aS_,[A.a2p,A.a9k]) +p(A.BT,A.dx) +p(A.OZ,A.OY) +p(A.aup,A.auo) +p(A.Yr,A.auq) +q(A.wo,[A.Yy,A.D7]) +p(A.aGf,A.b_O) +p(A.S7,A.S6) +p(A.S8,A.S7) +p(A.CI,A.S8) +p(A.aic,A.ai7) +q(A.wD,[A.a2C,A.Zi,A.a1D,A.a31,A.rc,A.a9Z,A.aa_,A.aa2,A.aa4,A.a3x,A.a3y,A.a3z,A.a19,A.a17,A.Yp,A.a3O,A.a3T,A.a3U,A.a9K,A.YX,A.a64,A.a9p,A.abs,A.vf,A.abt,A.a7v,A.v0,A.XN,A.a2r,A.Yd,A.a9m,A.a2c,A.a62,A.a7Q,A.a7J,A.a7K,A.a7L,A.a7N,A.a9e,A.Y4,A.XL,A.a9d,A.a9f,A.a9R,A.JC,A.a3M,A.a3V]) +p(A.apB,A.BK) +p(A.ahA,A.apB) +p(A.IK,A.Yi) +q(A.zA,[A.Bi,A.F9]) +p(A.aRx,A.Yj) +q(A.atW,[A.El,A.F4]) +p(A.IS,A.cW) +p(A.XO,A.kJ) +q(A.vt,[A.Gc,A.Ge,A.Gd]) +p(A.aMc,A.aMb) +p(A.RM,A.W2) +q(A.aMH,[A.aMI,A.aKu]) +p(A.aHy,A.aYo) +q(A.aHy,[A.aNJ,A.b0w,A.b0Q]) +p(A.b0M,A.aNa) +p(A.Th,A.aOp) +p(A.bg,A.Th) +q(A.bg,[A.pZ,A.F3,A.Vg,A.mE,A.p_,A.Sq]) +q(A.hh,[A.i_,A.mX]) +q(A.i_,[A.B3,A.adG,A.adF,A.adD]) +p(A.Qs,A.pZ) +p(A.fw,A.Qs) +q(A.aU,[A.hw,A.FL,A.fT,A.fl,A.ew]) +p(A.mS,A.hw) +q(A.mS,[A.f4,A.P_]) +p(A.Qr,A.f4) +p(A.on,A.Qr) +p(A.wi,A.mX) +p(A.Qy,A.F3) +p(A.Is,A.Qy) +p(A.Qx,A.P_) +p(A.B4,A.Qx) +q(A.F,[A.fX,A.f3,A.eC]) +p(A.H3,A.kH) +p(A.Tj,A.Ti) +p(A.nu,A.Tj) +p(A.rI,A.Wh) +p(A.zX,A.Vg) +p(A.Qu,A.mE) +p(A.fY,A.Qu) +p(A.hk,A.fT) +p(A.Qt,A.hk) +p(A.lU,A.Qt) +p(A.ci,A.Vf) +p(A.aQ,A.bX) +q(A.aQ,[A.cu,A.adH,A.adI,A.adC,A.adE]) +p(A.f5,A.p_) +p(A.Qv,A.fl) +p(A.mT,A.Qv) +p(A.iF,A.Sq) +p(A.eg,A.iF) +p(A.Qw,A.ew) +p(A.ix,A.Qw) +p(A.IB,A.F9) +q(A.KK,[A.Hp,A.Ho]) +p(A.abj,A.JG) +p(A.U0,A.Wo) +p(A.abl,A.rq) +p(A.abk,A.uK) +q(A.aUE,[A.aKv,A.aUC]) +p(A.amH,A.Wt) +p(A.a1J,A.a9Y) +q(A.F_,[A.Gr,A.aae]) +p(A.EZ,A.aaf) +p(A.rd,A.aae) +q(A.aaq,[A.a2v,A.aGw,A.bm1]) +p(A.aau,A.EZ) +p(A.l1,A.adK) +p(A.hS,A.amy) +q(A.a2C,[A.Xk,A.YC,A.a1F,A.Cm,A.a2l,A.aab,A.a9W,A.aa3,A.aa6,A.a1h,A.YP,A.YT,A.Ca,A.wx,A.a3A,A.a15,A.a3X,A.Cb,A.a3W,A.a7O,A.Zu,A.a9r,A.a7M,A.a7S,A.abu,A.a65,A.a16,A.a7w,A.a9_,A.XM,A.a37,A.a7A,A.a7H,A.a7I,A.XZ,A.Y_,A.a7P,A.aaz,A.BM,A.EH,A.EJ,A.a9b,A.a9l]) +p(A.cE,A.agL) +p(A.by,A.agV) +p(A.VA,A.FW) +p(A.zu,A.an1) +q(A.fS,[A.Vz,A.VC,A.VD,A.Vx,A.VE,A.rT,A.VB,A.Vy]) +p(A.VI,A.pw) +p(A.D2,A.aig) +p(A.aif,A.D2) +p(A.FX,A.aif) +p(A.iN,A.aiW) +p(A.ai,A.anb) +p(A.bY,A.an7) +p(A.VJ,A.FY) +q(A.io,[A.Vw,A.Vu,A.VK,A.VF,A.VH,A.Vv]) +q(A.cu,[A.agJ,A.agK,A.zw,A.an3,A.an4,A.an2,A.aiy,A.aiu,A.aiv,A.ait,A.aix,A.aiw,A.ais,A.aiU,A.aiT,A.aiO,A.aiQ,A.aiN,A.akI,A.aea,A.ahw,A.ai6,A.amM,A.akK,A.akV,A.ai5,A.akW,A.akX,A.akY,A.akZ,A.ak0,A.al_,A.ans,A.ap_,A.ap0,A.aft,A.aeb,A.amx,A.amw,A.amz,A.aeg,A.aie,A.agl,A.aoP]) +p(A.xa,A.agJ) +p(A.xb,A.agK) +q(A.e5,[A.aaa,A.a7x,A.aa9,A.a9V,A.Yk,A.aa1,A.Ym,A.aa5,A.YQ,A.YR,A.YS,A.a18,A.a3Y,A.a3R,A.a1P,A.a2g,A.a3Z,A.a3Q,A.a3P,A.a3N,A.YU,A.a7p,A.a7D,A.ab5]) +q(A.fY,[A.ON,A.OK,A.Iw,A.Iy,A.IW,A.J_]) +q(A.lU,[A.aqo,A.aqm,A.ape,A.apf,A.aph,A.apm]) +p(A.ana,A.aqo) +q(A.eg,[A.Nc,A.OL,A.IU,A.JY,A.LM,A.LI,A.Kq,A.KO,A.N6,A.Nh,A.PF]) +q(A.ix,[A.apV,A.aqn,A.apg,A.aps,A.apJ,A.apI,A.apw,A.apz,A.apU,A.apW,A.aqx]) +p(A.akJ,A.apV) +p(A.zx,A.an3) +p(A.zy,A.an4) +p(A.an9,A.aqn) +p(A.k4,A.adH) +p(A.zv,A.an2) +p(A.an8,A.aqm) +p(A.aeq,A.ape) +q(A.f5,[A.OI,A.OJ,A.IZ,A.LF]) +q(A.mT,[A.aqk,A.aql,A.api,A.apG]) +p(A.an5,A.aqk) +q(A.a2E,[A.aa0,A.a7R,A.a7y,A.XW,A.Y0,A.Cg,A.yi,A.r8,A.Fn]) +p(A.k5,A.adI) +p(A.aer,A.apf) +p(A.an6,A.aql) +p(A.aT,A.aeN) +p(A.Vs,A.FS) +p(A.ww,A.B3) +p(A.aeK,A.apg) +p(A.kt,A.adC) +p(A.y0,A.aiy) +p(A.xX,A.aiu) +p(A.xY,A.aiv) +p(A.xW,A.ait) +p(A.xZ,A.aix) +p(A.y_,A.aiw) +p(A.xV,A.ais) +p(A.aeL,A.aph) +p(A.aeM,A.api) +q(A.wi,[A.x0,A.zW]) +p(A.agm,A.aps) +p(A.a5,A.aeT) +p(A.aeP,A.a5) +p(A.Q9,A.aeP) +p(A.l5,A.aeQ) +p(A.ku,A.aeR) +p(A.Vt,A.FT) +p(A.i4,A.ago) +p(A.cK,A.agn) +p(A.a3,A.aiZ) +p(A.LL,A.aiV) +p(A.VG,A.vm) +p(A.aiL,A.a3) +p(A.rt,A.aiL) +p(A.eS,A.aoS) +p(A.aoR,A.eS) +p(A.Qh,A.aoR) +p(A.iP,A.adG) +p(A.iM,A.adF) +p(A.jW,A.adE) +p(A.ya,A.aiU) +p(A.yb,A.aiT) +p(A.y7,A.aiO) +p(A.y8,A.aiQ) +p(A.y6,A.aiN) +p(A.iL,A.adD) +p(A.aiX,A.apJ) +p(A.aiS,A.apI) +p(A.agX,A.apw) +p(A.ahp,A.apz) +q(A.fw,[A.LO,A.LH,A.LE]) +q(A.on,[A.apK,A.apH,A.apF]) +p(A.aiY,A.apK) +p(A.aiR,A.apH) +p(A.aiP,A.apG) +p(A.aiM,A.apF) +p(A.aeS,A.apm) +p(A.yN,A.akI) +p(A.akD,A.apU) +p(A.l4,A.ael) +p(A.aek,A.l4) +p(A.FR,A.aek) +p(A.wd,A.aea) +p(A.xr,A.ahw) +p(A.xI,A.ai6) +p(A.zr,A.amM) +p(A.yO,A.akK) +p(A.yR,A.akV) +p(A.xH,A.ai5) +p(A.yS,A.akW) +p(A.yT,A.akX) +p(A.yU,A.akY) +p(A.yV,A.akZ) +p(A.yx,A.ak0) +p(A.yW,A.al_) +p(A.zB,A.ans) +p(A.zZ,A.ap_) +p(A.zY,A.ap0) +p(A.wF,A.aft) +p(A.we,A.aeb) +p(A.zk,A.amx) +p(A.zl,A.amw) +p(A.zm,A.amz) +p(A.wh,A.aeg) +p(A.u5,A.aie) +p(A.akP,A.apW) +q(A.a9k,[A.E4,A.EO]) +q(A.a2p,[A.CJ,A.u7,A.FJ,A.Bg,A.C3,A.Dv,A.iO,A.FI,A.tQ,A.kM,A.EX,A.AT,A.ig,A.EM,A.D9,A.C9,A.EI,A.Ec,A.B1,A.Cy,A.Bh,A.B9]) +p(A.aoe,A.aqx) +p(A.x_,A.agl) +p(A.zU,A.aoP) +p(A.ai_,A.ro) +p(A.abh,A.ai_) +q(A.b0u,[A.aKw,A.b0v]) +p(A.a5R,A.aOM) +p(A.S9,A.BV) +s(A.afZ,A.Zn) +s(A.agc,A.aSl) +s(A.aij,A.b68) +s(A.aik,A.b69) +s(A.ail,A.b67) +r(A.ajY,A.Ro) +r(A.ajZ,A.Ro) +s(A.apN,A.ap2) +s(A.apT,A.ap2) +s(A.FG,A.abq) +s(A.VP,A.ae) +s(A.SS,A.ae) +s(A.ST,A.Ks) +s(A.SU,A.ae) +s(A.SV,A.Ks) +s(A.mx,A.Qq) +s(A.pI,A.anv) +s(A.Um,A.bo) +s(A.Un,A.z) +s(A.Uo,A.ml) +s(A.V6,A.HD) +s(A.apE,A.b7v) +s(A.aqP,A.nJ) +s(A.afv,A.axZ) +s(A.age,A.ae) +s(A.agf,A.bH) +s(A.agg,A.ae) +s(A.agh,A.bH) +s(A.agN,A.ae) +s(A.agO,A.bH) +s(A.ahE,A.ae) +s(A.ahF,A.bH) +s(A.ajf,A.bo) +s(A.ajg,A.bo) +s(A.ajh,A.ae) +s(A.aji,A.bH) +s(A.ajA,A.ae) +s(A.ajB,A.bH) +s(A.ak3,A.ae) +s(A.ak4,A.bH) +s(A.am7,A.bo) +s(A.Uj,A.ae) +s(A.Uk,A.bH) +s(A.anc,A.ae) +s(A.and,A.bH) +s(A.ank,A.bo) +s(A.ao6,A.ae) +s(A.ao7,A.bH) +s(A.UQ,A.ae) +s(A.UR,A.bH) +s(A.aoi,A.ae) +s(A.aoj,A.bH) +s(A.apn,A.ae) +s(A.apo,A.bH) +s(A.apx,A.ae) +s(A.apy,A.bH) +s(A.apP,A.ae) +s(A.apQ,A.bH) +s(A.aqp,A.ae) +s(A.aqq,A.bH) +s(A.aqs,A.ae) +s(A.aqt,A.bH) +r(A.GJ,A.ae) +s(A.ain,A.ae) +s(A.aio,A.bH) +s(A.ajK,A.ae) +s(A.ajL,A.bH) +s(A.ann,A.ae) +s(A.ano,A.bH) +s(A.aoo,A.ae) +s(A.aop,A.bH) +s(A.aef,A.bo) +s(A.ag6,A.ayI) +s(A.ai3,A.ai2) +s(A.aep,A.a6y) +s(A.alP,A.a6y) +s(A.aja,A.azh) +s(A.ah_,A.aI) +s(A.ah0,A.aI) +s(A.ah1,A.aI) +s(A.ah2,A.aI) +s(A.ah3,A.aI) +s(A.ah4,A.aI) +s(A.ah5,A.aI) +s(A.ae3,A.If) +s(A.ae4,A.wc) +s(A.ae5,A.tb) +s(A.R_,A.Ig) +s(A.R0,A.wc) +s(A.R1,A.tb) +s(A.afM,A.tc) +s(A.akF,A.Ig) +s(A.akG,A.wc) +s(A.akH,A.tb) +s(A.alV,A.Ig) +s(A.alW,A.tb) +s(A.aok,A.If) +s(A.aol,A.wc) +s(A.aom,A.tb) +s(A.VL,A.tc) +r(A.VT,A.fO) +r(A.VU,A.fO) +r(A.VV,A.dQ) +s(A.app,A.Fx) +s(A.afA,A.aI) +s(A.apq,A.nL) +s(A.afB,A.aI) +r(A.VY,A.fO) +r(A.HI,A.dQ) +s(A.VW,A.Fx) +r(A.Wf,A.Jy) +r(A.VX,A.dQ) +s(A.afF,A.nL) +r(A.VZ,A.dQ) +r(A.Wj,A.ar) +s(A.aq1,A.e_) +s(A.afI,A.aI) +s(A.afK,A.aI) +s(A.ahb,A.n2) +s(A.aha,A.aI) +s(A.ag4,A.aI) +s(A.ak5,A.hc) +s(A.ak6,A.afc) +s(A.ak7,A.hc) +s(A.ak8,A.afd) +s(A.ak9,A.hc) +s(A.aka,A.afe) +s(A.akb,A.hc) +s(A.akc,A.aff) +s(A.akd,A.aI) +s(A.ake,A.hc) +s(A.akf,A.afg) +s(A.akg,A.hc) +s(A.akh,A.afh) +s(A.aki,A.hc) +s(A.akj,A.afi) +s(A.akk,A.hc) +s(A.akl,A.afj) +s(A.akm,A.hc) +s(A.akn,A.afk) +s(A.ako,A.hc) +s(A.akp,A.afl) +s(A.akq,A.hc) +s(A.akr,A.afm) +s(A.aks,A.hc) +s(A.akt,A.afn) +s(A.aku,A.hc) +s(A.akv,A.afo) +s(A.akw,A.hc) +s(A.akx,A.afp) +s(A.aky,A.hc) +s(A.akz,A.afq) +s(A.aqy,A.afc) +s(A.aqz,A.afd) +s(A.aqA,A.afe) +s(A.aqB,A.aff) +s(A.aqC,A.aI) +s(A.aqD,A.hc) +s(A.aqE,A.afg) +s(A.aqF,A.afh) +s(A.aqG,A.afi) +s(A.aqH,A.afj) +s(A.aqI,A.afk) +s(A.aqJ,A.afl) +s(A.aqK,A.afm) +s(A.aqL,A.afn) +s(A.aqM,A.afo) +s(A.aqN,A.afp) +s(A.aqO,A.afq) +s(A.ahn,A.n2) +r(A.QC,A.UG) +s(A.anF,A.aI) +s(A.anG,A.aI) +s(A.anH,A.aI) +s(A.anI,A.aI) +s(A.anJ,A.aI) +s(A.adP,A.aI) +s(A.ae7,A.aI) +s(A.aem,A.aI) +s(A.aj0,A.aI) +s(A.aex,A.aI) +s(A.aey,A.aI) +s(A.aeA,A.aI) +s(A.apY,A.M0) +s(A.aeE,A.aI) +s(A.aeG,A.aI) +r(A.VO,A.dQ) +s(A.aeH,A.aI) +s(A.aeJ,A.aI) +r(A.VQ,A.dQ) +r(A.VR,A.zL) +s(A.aeX,A.aI) +s(A.apX,A.M0) +r(A.Wi,A.dQ) +r(A.aq0,A.mn) +s(A.af2,A.aI) +s(A.af5,A.aI) +s(A.afO,A.aI) +s(A.afQ,A.aI) +s(A.apr,A.nL) +s(A.ag5,A.aI) +s(A.agb,A.aI) +r(A.Ru,A.fO) +s(A.agr,A.aI) +s(A.W0,A.fR) +s(A.agu,A.aI) +s(A.agC,A.aI) +r(A.W1,A.fO) +s(A.agH,A.aI) +s(A.agS,A.aI) +s(A.apj,A.aCs) +s(A.apk,A.a1G) +s(A.apu,A.aCt) +s(A.apv,A.a1G) +s(A.ah7,A.aI) +s(A.apC,A.aI) +s(A.ahL,A.aI) +r(A.W6,A.wj) +s(A.ahW,A.aI) +r(A.VN,A.dQ) +r(A.W5,A.fO) +r(A.W7,A.dQ) +r(A.aq2,A.mn) +r(A.aq7,A.mn) +s(A.aiG,A.aI) +r(A.apL,A.dQ) +s(A.ajb,A.aI) +s(A.ajd,A.aI) +s(A.aje,A.aI) +r(A.Wp,A.fO) +s(A.ajv,A.aI) +s(A.ajy,A.aI) +r(A.Wc,A.dQ) +s(A.ajz,A.aI) +s(A.ajP,A.aI) +s(A.Wg,A.M_) +s(A.ajV,A.aI) +r(A.Wx,A.HH) +r(A.Wy,A.HH) +s(A.akB,A.aI) +r(A.VS,A.fO) +r(A.W9,A.fO) +s(A.akE,A.aI) +r(A.HJ,A.dQ) +r(A.HK,A.zL) +s(A.akN,A.aI) +r(A.Tq,A.dQ) +r(A.TU,A.dQ) +r(A.TV,A.dQ) +r(A.TW,A.mh) +r(A.W3,A.dQ) +s(A.amg,A.aI) +s(A.amh,A.aI) +s(A.ami,A.aI) +s(A.amj,A.aI) +r(A.Wl,A.uH) +r(A.Wn,A.uH) +r(A.Wu,A.dQ) +s(A.am0,A.atX) +s(A.amS,A.aI) +s(A.an0,A.aI) +r(A.Wa,A.dQ) +r(A.Wb,A.zL) +s(A.aqu,A.bcM) +s(A.anu,A.aI) +s(A.anA,A.aI) +r(A.W_,A.fO) +s(A.apl,A.tc) +s(A.apt,A.tc) +s(A.aqv,A.aI) +s(A.anO,A.aI) +r(A.Ww,A.mh) +s(A.aj8,A.nL) +s(A.anW,A.aI) +r(A.aqb,A.ar) +r(A.aqw,A.dQ) +s(A.ao5,A.aI) +s(A.ao9,A.aI) +s(A.aoZ,A.aI) +s(A.aoc,A.aI) +s(A.aof,A.aI) +r(A.UX,A.fO) +s(A.aoh,A.aI) +s(A.aoG,A.aI) +s(A.aew,A.aI) +s(A.afU,A.aI) +s(A.ahN,A.aI) +s(A.ahP,A.aI) +s(A.ahO,A.aI) +s(A.anp,A.aI) +s(A.ao4,A.aI) +r(A.R3,A.fj) +r(A.Tv,A.ar) +s(A.all,A.e_) +r(A.Tx,A.uH) +r(A.Ty,A.ar) +s(A.aln,A.a87) +r(A.alp,A.ar) +s(A.alq,A.e_) +r(A.Tz,A.ayj) +s(A.aii,A.n2) +r(A.alr,A.ar) +s(A.als,A.e_) +s(A.apO,A.aI) +s(A.ak1,A.n2) +s(A.alw,A.n2) +r(A.TG,A.ar) +s(A.alx,A.a87) +r(A.aly,A.uH) +r(A.UM,A.fj) +s(A.aqe,A.hR) +s(A.aqf,A.i1) +r(A.alf,A.Nt) +r(A.TI,A.b5) +r(A.TJ,A.ih) +s(A.amp,A.aI) +r(A.TL,A.b5) +r(A.alF,A.b5) +s(A.alG,A.a8o) +s(A.amW,A.aI) +r(A.amX,A.fj) +r(A.an_,A.fj) +r(A.TN,A.ar) +s(A.alD,A.a8o) +s(A.alE,A.aRj) +r(A.amY,A.fj) +s(A.amZ,A.nc) +r(A.alB,A.b5) +r(A.alH,A.ar) +s(A.alI,A.e_) +r(A.alL,A.b5) +r(A.kj,A.ar) +r(A.alN,A.ar) +s(A.alO,A.e_) +s(A.amr,A.aI) +s(A.amu,A.n2) +s(A.amv,A.aI) +s(A.aib,A.aI) +s(A.aid,A.aI) +s(A.ajm,A.aI) +s(A.akS,A.aI) +s(A.akR,A.aI) +s(A.anS,A.aI) +s(A.apS,A.Pq) +s(A.adQ,A.aI) +s(A.adO,A.aI) +s(A.ai0,A.aI) +r(A.Wd,A.H_) +r(A.We,A.H_) +r(A.apd,A.fO) +r(A.VM,A.dQ) +s(A.aqS,A.fR) +r(A.TP,A.aRK) +r(A.Vj,A.CA) +r(A.Vk,A.ij) +r(A.Vl,A.EK) +r(A.Vm,A.MJ) +r(A.Vn,A.a95) +r(A.Vo,A.Ek) +r(A.Vp,A.PV) +r(A.RB,A.wj) +s(A.agv,A.fR) +r(A.RC,A.dQ) +s(A.agw,A.aZS) +s(A.agx,A.aZf) +s(A.ahc,A.n2) +s(A.ahd,A.i1) +s(A.ahf,A.n2) +s(A.ahg,A.i1) +s(A.ahj,A.aI) +r(A.al0,A.az0) +s(A.apZ,A.aI) +s(A.aq_,A.aI) +r(A.Gv,A.mh) +s(A.anh,A.aI) +s(A.ahM,A.aI) +s(A.apD,A.fR) +r(A.GG,A.fO) +r(A.W8,A.dQ) +r(A.aq5,A.b5) +s(A.aq6,A.lA) +s(A.apM,A.fR) +r(A.T_,A.dQ) +r(A.T0,A.mh) +s(A.apA,A.i1) +s(A.apR,A.Mt) +r(A.aq8,A.ar) +s(A.aq9,A.e_) +r(A.ajT,A.dQ) +s(A.aq3,A.Au) +s(A.aq4,A.ji) +r(A.Wm,A.ar) +s(A.aqc,A.Au) +r(A.T4,A.kg) +r(A.W4,A.dQ) +r(A.Wv,A.dQ) +r(A.aqd,A.mh) +s(A.alY,A.fR) +r(A.HL,A.mh) +r(A.Al,A.a3F) +r(A.aqh,A.wj) +s(A.agY,A.mj) +r(A.U_,A.kg) +r(A.TY,A.kg) +s(A.amd,A.mj) +r(A.U4,A.dQ) +r(A.U5,A.mh) +r(A.H5,A.dQ) +s(A.ajp,A.i1) +s(A.aqg,A.hR) +r(A.Wq,A.a94) +s(A.amI,A.aI) +s(A.amJ,A.i1) +s(A.amL,A.i1) +s(A.amO,A.aI) +s(A.amP,A.aKt) +s(A.apc,A.aI) +r(A.Wk,A.b5) +s(A.aqi,A.Mt) +s(A.aqj,A.abL) +r(A.Ui,A.iT) +s(A.af3,A.fR) +r(A.Wr,A.fO) +r(A.Ws,A.fO) +s(A.V1,A.b_S) +s(A.aqQ,A.Mt) +s(A.aqR,A.abL) +r(A.aqa,A.b5) +s(A.afW,A.aGU) +s(A.ahC,A.aI) +s(A.ahB,A.aI) +r(A.aqr,A.a2D) +r(A.UV,A.fO) +s(A.ahv,A.i1) +s(A.aht,A.fR) +s(A.ahu,A.i1) +s(A.am2,A.aI) +s(A.am5,A.aI) +s(A.am1,A.aI) +s(A.S6,A.a2A) +s(A.S7,A.ae) +s(A.S8,A.a0O) +r(A.apB,A.a2D) +r(A.W2,A.fO) +r(A.hw,A.c1) +r(A.Qr,A.df) +s(A.Qs,A.B2) +r(A.Qx,A.df) +s(A.Qy,A.B2) +s(A.Th,A.bk) +s(A.Ti,A.bk) +s(A.Tj,A.Xr) +s(A.Vg,A.Xq) +s(A.Wh,A.bk) +s(A.Qu,A.B2) +r(A.Qt,A.df) +r(A.fT,A.c1) +r(A.Qv,A.df) +r(A.Qw,A.df) +s(A.Sq,A.e8) +r(A.Wo,A.dQ) +r(A.Wt,A.fO) +s(A.adK,A.b1m) +s(A.amy,A.b1A) +s(A.agL,A.b1u) +s(A.agV,A.b1v) +s(A.an1,A.b1B) +s(A.aig,A.b1w) +s(A.aiW,A.b1z) +s(A.anb,A.b1C) +s(A.an7,A.b1D) +s(A.agJ,A.aV) +s(A.agK,A.F1) +s(A.apV,A.Nd) +s(A.aqo,A.OO) +s(A.an3,A.aV) +s(A.an4,A.aV) +s(A.aqn,A.OM) +s(A.an2,A.eb) +s(A.ape,A.Ix) +s(A.aqk,A.aW9) +s(A.aqm,A.OP) +s(A.apf,A.Iz) +s(A.aql,A.aWU) +s(A.aeN,A.b1o) +s(A.apg,A.IV) +s(A.ais,A.eb) +s(A.ait,A.aV) +s(A.aiu,A.aV) +s(A.aiv,A.aV) +s(A.aix,A.eb) +s(A.aiw,A.aV) +s(A.aiy,A.F1) +s(A.aph,A.IY) +s(A.api,A.avZ) +s(A.aps,A.JZ) +s(A.aeT,A.b1p) +s(A.aeQ,A.b1q) +s(A.aeR,A.b1r) +s(A.ago,A.b1s) +s(A.agn,A.b1t) +s(A.aiZ,A.b1x) +s(A.aiV,A.b1y) +s(A.aoS,A.b1E) +s(A.aiN,A.aV) +s(A.aiO,A.aV) +s(A.aiQ,A.aV) +s(A.aiU,A.eb) +s(A.aiT,A.aV) +s(A.apw,A.Kr) +s(A.apz,A.KP) +s(A.apF,A.aIZ) +s(A.apG,A.aJ2) +s(A.apH,A.aJ7) +s(A.apI,A.LJ) +s(A.apJ,A.LN) +s(A.apK,A.aJM) +s(A.apm,A.J0) +s(A.akI,A.F1) +s(A.apU,A.N7) +s(A.ael,A.b1n) +s(A.aea,A.eb) +s(A.ahw,A.aV) +s(A.ai6,A.aV) +s(A.amM,A.aV) +s(A.akK,A.aV) +s(A.akV,A.aV) +s(A.ai5,A.aV) +s(A.akW,A.aV) +s(A.akX,A.eb) +s(A.akY,A.eb) +s(A.akZ,A.aV) +s(A.ak0,A.aV) +s(A.al_,A.aV) +s(A.ans,A.aV) +s(A.ap_,A.aV) +s(A.ap0,A.aV) +s(A.aft,A.aV) +s(A.aeb,A.eb) +s(A.amx,A.aV) +s(A.amw,A.aV) +s(A.amz,A.aV) +s(A.aeg,A.eb) +s(A.aie,A.aV) +s(A.apW,A.Ni) +s(A.aqx,A.PG) +s(A.agl,A.aV) +s(A.aoP,A.aV)})() +var v={typeUniverse:{eC:new Map(),tR:{},eT:{},tPV:{},sEA:[]},mangledGlobalNames:{n:"int",Y:"double",dm:"num",h:"String",q:"bool",aE:"Null",f:"List"},mangledNames:{},types:["~()","Y(Y)","S<~>()","~(k)","aE()","~(bj)","e(bC)","~(q)","nq()","~(oi)","q()","q(h)","~(C?)","d(G)","~(C,cw)","h()","~(DK,m)","q(q3,m)","h(h)","aE(~)","~(oA)","~(J)","Y(O)","aE(k)","~(bD)","~(h)","aE(C,cw)","q(a5)","d(G,n)","e?(bC)","~(@)","~(jL)","~(c9)","~(n)","~(q?)","S<@>()","h(@)","aE(@)","~(Fg)","~(oz)","f()","Y()","q(eM)","~(h,@)","~(h?)","~(~())","~(es?)","~(Y)","q(bD)","q(k1)","q(qN)","d(G,d?)","aR(@)","S()","q(C?)","~(@,@)","ph(bC)","D(bC)","~(xn)","~(b0)","q(oF)","~(h8,~())","@(@)","n(eM,eM)","0^(0^)","~(ux)","q(n)","n()","a3(@)","h(G)","n(C?)","~()()","Y(O,Y)","~(lB,z3)","~(aU)","n(bmf)","~(hR)","S<@>(oU)","~(v6)","~(uw)","h(Y)","~(qW)","Cg(G)","~(Dh)","~(G)","Cb(G)","q(iQ)","~(C?,C?)","@(h)","ca?(cy?)","e(e)","~(LD)","q(hA)","e0()","a6(a3)","e7()","n(n)","kP()","q(@)","q(kz)","q(jf)","S>()","be(bC)","d(G)?(AV?)","f>(G)","C?(C?)","aE(q)","~(U)","~([bA?])","S?>()","m()","n(@,@)","h(yf)","S<~>(q)","h?()","Y(Y,Y)","q8(G)","aO(G)","h(aw)","~(lw)","~(Pb)","e()","dG(@)","~(Pe)","aE(@,@)","~(oY)","f()","L()","nA(d)","n(J,J)","U(O,aN)","Y?()","e7(h)","n(h)","Y(U)","~(Dg)","~(f)","q(a1b)","bu(G,d?)","nP()","~(nP)","q(zc)","S>()","ca?(cy?)","ev(bC)","q(ea)","qL(h)","aE(lw)","S<~>(C?)","Y(bC)","d(G,tA)","q(C?,C?)","L()?(O)","q(kB)","dx()","~(fy<@>,z5)","~(hJ,x3)","q(kC)","n(ea,ea)","f()","aS(h,@)","~(jn)","F>>(bJ>>>)","~(ci)","~(ll)","~(a5)","k()","q(jv)","AW(G)","~(C?{seamless:q})","S<@>(@)","Ps?()","~([S<~>?])","xy(G)","d(G,d,n?,q)","S()","hs(hs)","q(xk)","ET(n,uZ)","n(n,n)","bC<0^>()","h(e7)","~({curve:jJ,descendant:J?,duration:bj,rect:L?})","f()","~(h,h)","f(f)","~(e1)","~([S<@>?])","~(C[cw?])","u3(eM,nw)","~(v_)","q(q3)","S(es?)","S<~>(oU)","~(fz)","a6()","kh(nD)","~(blw)","mr()","q(ul)","~(jS)","q(azj)","~([bj?])","bW(bW,q,kP)","xD()","~(PD)","U()","e?()","~(im,mk?)","n(hd,hd)","kO()","~(kO)","kD()","~(kD)","n9()","~(n9)","np()","~(np)","vR(G,bV,d?)","~(n7)","d(G,bV,CH,G,G)","aR<@>?(aR<@>?,@,aR<@>(@))","vQ(G,bV,d?)","nh(G)","~(O?)","Br(f)","~(tK)","l8(G)","kf(c9)","~(qf)","ca?(cy?)","q(hR,Y)","~(jL{isClosing:q?})","q(hR)","rL(G)","f(o7)","~(Pd)","~(Pf)","~(Pc)","q(mC)","ex/(h?)","Y(Ao)","ha()","~([v6?])","ex(ex)","e?(e?)","h?/(G,bn)","~(vi)","h(di)","n(d,n)","h(h,h)","vn(G,d(G,n),n,d(G))","kL(G,d(G,n),n,d(G))","hO?(hK,h,hO?)","q(h,h)","aE(C)","h(h,C?)","~(h,f)","~([~])","S(e1)","kB(kB,kB)","~(jG)","z()","d(G,C,cw?)","n(e7)","rx()","S(yQ)","Ar(C?)","aE(lG?)","~(yQ)","ai(@)","iN?(@)","by(@)","aE(e1)","n7()","q(oZ)","q(bs)","~(e1,h,n)","a6>(a6>)","Fc(G,n)","S()","~(f)","f(f?)","rc(G,n)","C(C,cw)","~([C?])","f?()","~(by)","h(et)","@()","~(h,h?)","aT(@)","S()","d(f?)","Ca(G)","~(aS)","q(a3)","h(n)","~(zj)","~(xp)","S<~>([q])","q(n,n)","kC()","q8(G,h,lc)","hP(G)","h(f_)","S<~>(f_)","hP(G)","h(fn)","S<~>(fn)","cp(ai)","aE(C?)","S<~>(Y)","h?(h?)","ER(G,bV,bV,d)","as([k?])","C()","aE(b0)","q(e)","q(cO,h,h,GE)","d(G,bV,bV,d)","aE(h)","bQ(Y)","q(h?)","f()","pn?(n)","e0(h)","S([k?])","f(f)","S<~>(C,cw?)","@(C)(~(hJ,x3))","q(uo)","nh(G,aN)","dB(G)","d(G,~(~()))","pX(G,d?)","ef(G,d?)","S<@>(C)","q(bC)","fx()","h(C?)","~(fy<@>)","0&(hJ)","aS(aS)","~(o0)","aE(~())","aE(h,C?)","BH(G)","bV(q)","~(f,mr,Y)","hM>(d)","mY(n)","xF(G,d?)","zS(lg)","zH(@)","mt()","aS>(C,pl<@>)","q(aS>)","D()","dU()","Bf()","eR()","S(tV{allowUpscaling:q,cacheHeight:n?,cacheWidth:n?})","S(tV{getTargetSize:bMX(n,n)?})","eL(eL,dw)","dw(dw)","q(dw)","h(dw)","q(Y)","e(Y)","GN()","~(lk?,q)","aE(f,k)","S<@>(aS)","aE(asL)","aS>(h,f)","~(C,cw?)?(ll)","~(jS)?(ll)","h?(h)","up(cd)","L(cd)","DL(cd)","q(n,q)","bz>()","nK()","aE(@,cw)","ua(ua)","up?()","S<~>(hJ)","qz(m,n)","h(Y,Y,h)","~(C?,h)","~(im)","q(qF)","L(L?,hs)","~(n,@)","ev(oW)","~(oW,bQ)","q(oW)","a7<@>?()","~(f{isMergeUp:q})","~(P2,a6,f)","hK?(hK,q)","~(rK)","q(rK)","Ed?(hK,q)","q(EV{crossAxisPosition!Y,mainAxisPosition!Y})","le()","~(le)","q(O)","q(dk)","le(le)","~(n,Gx)","~(EF)","~(ea)","~(U?)","ea(rP)","~(hO)","hO?(hK,h,hO?,n,n)","n(ea)","ea(n)","~(nE)","~(f0,~(C?))","S()","es(es?)","S(h)","td(a6)","bz()","S(h?)","q(P4,l7)","S<~>(es?,~(es?))","S>(@)","~(nw)","~(i6,e1?,h?,bz>?)","S(es?)","Nl()","q/()","S(h)","~(n,q(oF))","f()","f(f)","Y(dm)","f<@>(h)","f(zi)","vb()","a7<@>(@)","~(cc)","~(pf)","~(vq)","d(vq)","q(d)","zJ({from:Y?})","dd<@>?(k0)","dd<@>(k0)","Fv(G)","q(D_)","~(G_)","Bz(G)","Ps()","S<~>(@)","tw(G)","~(f,k)","L(azj)","~(h4)","~(z)","~(@,cw)","h(h,e)","~(va)","~(ny)","~(r7)","~(hQ)","~(aC7)","~(mv)","C?(kx)","eQ(eQ,ri)","A6()","n(un)","S<~>(ut)","~(eQ)","q(eQ?,eQ)","wB(G,iY)","q(lj)","qy(G)","q(Ll)","~(Gu)","q(Gf)","d(G,h?,d?)","q(zQ)","bC(hd)","H2()","f(G)","L(hd)","n(pD,pD)","f(hd,z)","q(hd)","q(lg<@>)","hI(bD)","bD?(bD)","C?(n,bD?)","ve()","~(e1,n,n)","n4()","~(n4)","~(qN)","~(f)","~(P5,@)","S<~>(~)","oB(p2)","a6(a6,h)","nB()","~(nB)","~(h,n)","~(h,n?)","~(qY)","~(r3)","~(il,C)","uA(G,d?)","~(rF)","b8()","q(rF)","nh(G,d?)","xA(G)","~(lk,q)","~(C,cw?)","mY(d)","x1(@)","pk(@)","wm(@)","~(NZ)","~(O_)","~(Ew)","~(n,n,n)","S<@>(H1)","a6(f<@>)","a6(a6)","aE(a6)","aE(G,y5,bF)","e1(@,@)","~(r6?,q)","q(dd<@>?)","q(qQ)","S<+(h,i9?)>()","i9?()","hA(dd<@>)","ha?()","aS>(@,@)","O?()","At()","O(n)","~(aN)","BC(G,d?)","rq(G,iY)","aE(fz?)","~(h8)","cC(q)","S(q)","~(p2)","uL(G,d?)","pX(G)","CK(G,d?)","q(aNG)","xx(c9)","Di(c9)","Ci(h)","~(nd)","~(u9,n)","d(G,iY)","q(kI)","aE(f<~>)","h(eY)","~(h,C?)","q(mj?)","pJ()","~(pJ)","Gz()","pK()","~(pK)","~(qX)","n(hR,hR)","L(L)","q(L)","~(N_)","~(EQ,bA)","f()","C?()","Hj(G,iY)","~(O)","bD?()","Y?(n)","~(bs,bs?)","q(p4)","hc?(p4)","@(@,@)","pi()","~(pi)","pj()","~(pj)","~(vd)","~(uG)","AD(G,qT)","qx(q)","q(lf)","avf(q)","S(lV?)","f(f)","~(Hx)","cC()","cC()","~(h,BS)","cC()","kH()","S<~>(h,es?,~(es?)?)","Gq(G,d?)","q(dd,C?)","Aa(f?,h?)","Dq(G,bn)","BN(G,bn)","ma<~>({arguments!C?,child!d,key!jV,name!h?,restorationId!h})","Cj(G,bn)","ex/(ex)","a6<~(c9),bQ?>()","~(~(c9),bQ?)","h?/(h?)","h(ex)","q(dd,C?,iQ)","oH(h9)","cO(bs)","~(De)","~(cO)","aS(h,h)","0&(G,bn)","q(aS)","n(aS)","a6(ic)","~([0^?])","A7()","xm(@)","d(G,bn)","hn<~>(G,bn)","~(h,k)","d(G,bn,d)","hn<~>(G,bn,d)","tX(G,d)","q(hn,bn)","~(Cd?,Fl?)","C?(ov)","@(ov)","S(ax1)","M2()","~(~(lu))","tu(fH)","BW(fH)","DA(G)","DB(G)","vn(G,d(G,n),n,d(G)?)","wI(fH)","Dr(L?,L?)","kL(G,d(G,n),n,d(G)?)","d(G,~())","dx(n,n,n,n,n,n,n,q)","Ge(h,hj)","Gd(h,hj)","Gc(h,hj)","h?(um)","h(um)","Df()","Cu(@)","d(G,d,jS?)","h(h?)","C(h)","q(Aq<@>)","Y(@)","iU()","~(k1)","~(em)","~(fA)","~(E2)","rO()","~({origin!bg,override!bg})","Y(rz)","Fb()","q(e7)","S(yQ,n)","Dd(G,aN)","S<~>(bj)","aE(n)","S(n)","Hi(G,d?)","e1(C?)","n(o3)","Lg(@)","C(o3)","C(jv)","n(jv,jv)","f(aS>)","rd()","0^?(0^?(cy?))","iA()","e0(e0)","q(e0)","f(e0)","n(e0)","0^?(ca<0^>?(cy?))","h(e0)","xP<@>(@)","ca?(cy?)","e7(h,h)","n(q)","q(oX)","qH(@)","S?>()","S>({cancelToken:i0?})","l1?(@)","hS(@)","S?>()","lG?(a6?)","aE(F?>)","aE(f?)","q(hS)","hS()","ca?(cy?)","yY?(YG,h,h)","cE(@)","ca?(cy?)","ca?(cy?)","ev?(bC)","bY(@)","f?()","a6(by)","ev?(cy?)","e?(cy?)","rr?(cy?)","hM>()","wD(G)","yg?(cy?)","bj?(cy?)","a6>(f?)","q?(cy?)","aS>(h,f)","q(cE)","Cm(G,n)","S?>()","d(a6>)","wa?(cy?)","ys(@)","CS?(cy?)","f(f,f)","f<+mangaList,source(F>,ai)>(a6>?)","S>(eG>)","F>,ai)>>(bJ>,ai)>>>)","a4(f<+mangaList,source(F>,ai)>)","d(f)","~(f,k)","f()","a6>(f?)","S<~>([k?])","a6>(a6>)","z(f)","q(ai)","f?(bJ?>)","S?>()","d(a6>?)","~(C)","n(h,h)","f?(f?)","ai?/(eG)","S?>(eG?>)","k4()","C?(F)","aE(iN?)","xE(G,d?)","~(f?)","nA(ai?)","v1(G)","m(U,Y)","d(G,bV,bV)","qg(n)","~(n?)","d(G,jS?)","hP(G)","U(k)","S<~>(et)","S?>(a3)","xe(G,n)","~(ta)","~(tj)","qM(G,a3,n)","Et(G)","ne(G,a3,n)","S?>(eG?>)","k5()","y3(f?)","~(bY)","hP(G)","yi(G)","~(f)","Fn(G)","aG(d)","l7(tn)","q(aT)","f?(bJ?>)","n(uq,uq)","q(e?)","S<~>(aT)","~(aT)","d(f?)","ne(G,n)","be?(bC)","qM(G,n)","Dm(G,n)","n(vH,vH)","n(a3,a3)","fX?>(fX?>)","eC?>(eC?>)","f3?>(f3?>)","S?>(eG?>)","kt()","zD(aT)","~(l7)","D8(G)","vf(G)","aT?()","wx(aT)","~(et)","S(@)","i4(h)","cK?(a6)","F(F)","h?(i4)","q(cK)","cK?(bJ)","a3?(@)","a5?(@)","a5(@)","ku?(@)","eS?(@)","S(@)","eS(h)","l5(@)","a6(l5)","cK(@)","a6(cK)","a4(h?)","q(G)","S()","S?>()","aE(f?)","~(bA?)","n(a5,a5)","f(f?)","a6(f?)","bC(bJ>)","F?>(bJ?>>)","a5?(bJ)","+first,second(a5?,a5?)?(bJ<+first,second(a5?,a5?)?>)","iP()","iM()","jW()","iL()","S(h,a6)","S([@])","nA(a3?)","y9(G)","d(f?)","a4(G,n)","q(tY?)","eX(f?)","wA(a6?)","Bs(h)","b4(h)","aG(f?)","wy(G,n)","iS(d)","a5?/(eG)","S(n)","S<~>(n)","e(vv)","d(a3?)","d(a5?)","xJ()","a38()","mY(G,h,lc)","fB(d)","wQ()","~(n,n)","aE(as)","as()","aS>(h,h)","e?(e?,e?,e?[e?])","y2(G)","N?(G,y5,bF)","~(qx)","~(md)","~(m9)","aE(ns)","~(nl)","aE(tS)","S()","C?(F)","aE(ku?)","q?(F)","d(G,l5,n)","S([q])","yX(eS?)","ne(a3)","q(m2)","f?(a3{category:aT?,query:h?})","cp(a5)","f?(h)","cp(a3)","cp(aT)","f?(bJ?>)","im()","zg(cp)","qL(h,h?,h)","v0(ai)","v0(ai,h)","lW(aT)","lW(aT,a3)","lW(aT?,a3,a5)","fB(ai?,a3)","fB(ai?,a3,a5)","fB()","aE(uY)","aE(tR)","l4?(@)","f()","bv(G,n)","ey(@)","S()","~(l4?)","B8(G)","aE(li,li)","hP(G)","~(di)","S()","BM(G)","hP(G)","h(hG)","~(hG)","uW(@)","hP(G)","h(ht)","S<~>(ht)","EH(G)","EJ(G)","a6(di)","di?(@)","eZ(bJ)","An(G,bV)","v2(G)","d(C,cw)","d()","ey(bJ)","b4(G)","Dn(G,bV,bV)","d(G,h,lc)","d(G,h,@)","Dy(oX)","yn(oX)","q(q?)","rk(G,d?)","~(ui)","aE(tq)","S<@>([n?,h?])","~(oj)","k(n{params:C?})","vL(G,d?)","~(C?[C?])","h(C?{toEncodable:C?(C?)?})","@(h{reviver:C?(C?,C?)?})","n(h{onError:n(h)?,radix:n?})","n(cD<@>,cD<@>)","h(h{encoding:n5})","f()","f(h,f)","cY(G,bV)","C?(@)","0^(0^,0^)","U?(U?,U?,Y)","Y?(dm?,dm?,Y)","e?(e?,e?,Y)","q(n?)","h(lB)","~(h,qq)","uF(L?,L?)","d(G,U,d)","d(G,m,m,d)","~(cg{forceReport:q})","nI?(h)","Y(Y,Y,Y)","tv(G,bV)","q?(q?,q?,Y)","d(G,bV)","d(G,d)","h6?(h6?,h6?,Y)","eL?(eL?,eL?,Y)","D?(D?,D?,Y)","n(UH<@>,UH<@>)","q({priority!n,scheduler!ij})","f(h)","d(d,bV)","d(d?,f)","~(eM{alignment:Y?,alignmentPolicy:ze?,curve:jJ?,duration:bj?})","n(bD,bD)","d4(d4?,d4?,Y)","f>(ls,h)","@(@)(~(lB,z3))","jI<~>({arguments!C?,child!d,key!jV,name!h?,restorationId!h})","nf<~>({arguments!C?,child!d,key!jV,name!h?,restorationId!h})","d4(bC)","bV(mP)","0&(C,cw)","@(@,h)","@(@)(~(fy<@>,z5))","w8(@)","tF(bJ)","EY(@)","qR?(ha)","S?>(eG?>)","cY(G,d?)","f(bJ>)","xa()","xb()","S?>(eG?>)","F>>(bJ>>>)","zw()","F>?>(bJ>?>>)","zx()","zy()","zv()","tm(bJ)","ww()","y0()","xX()","xY()","xW()","xZ()","y_()","xV()","qe(bJ)","x0()","a6(bJ>)","f(bJ>)","F(bJ>)","q(bJ)","ue(bJ)","vg(bJ)","S(eG)","zW()","ya()","yb()","y7()","y8()","y6()","yN()","te(bJ)","wd()","xr()","xI()","zr()","yO()","yR()","xH()","yS()","yT()","yU()","yV()","yx()","yW()","zB()","zZ()","zY()","wF()","we()","zk()","zl()","zm()","tx(bJ)","wh()","u5()","uX(@)","a0Z?(@)","qA(bJ)","CC(@)","E4(bn)","EO(bn)","CJ(bn)","u7(bn)","FJ(bn)","Bg(bn)","C3(bn)","Dv(bn)","iO(bn)","FI(bn)","tQ(bn)","EX(bn)","kM(bn)","AT(bn)","ig(bn)","EM(bn)","D9(bn)","C9(bn)","EI(bn)","Ec(bn)","B1(bn)","Cy(bn)","Bh(bn)","B9(bn)","BZ(@)","x_()","zU()","k(n)","S<1^>(1^/(0^),0^{debugLabel:h?})","~(h?{wrapWidth:n?})","~(Y,Y)","S(eG)","C?(F<~>)"],interceptorsByTag:null,leafTags:null,arrayRti:Symbol("$ti"),rttc:{"2;":(a,b)=>c=>c instanceof A.eT&&a.b(c.a)&&b.b(c.b),"2;cacheSize,maxTextLength":(a,b)=>c=>c instanceof A.H6&&a.b(c.a)&&b.b(c.b),"2;closeStream,stream":(a,b)=>c=>c instanceof A.Tn&&a.b(c.a)&&b.b(c.b),"2;first,second":(a,b)=>c=>c instanceof A.al4&&a.b(c.a)&&b.b(c.b),"2;key,value":(a,b)=>c=>c instanceof A.al5&&a.b(c.a)&&b.b(c.b),"2;mangaList,source":(a,b)=>c=>c instanceof A.al6&&a.b(c.a)&&b.b(c.b),"2;wordEnd,wordStart":(a,b)=>c=>c instanceof A.al7&&a.b(c.a)&&b.b(c.b),"3;":(a,b,c)=>d=>d instanceof A.al8&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"3;breaks,graphemes,words":(a,b,c)=>d=>d instanceof A.al9&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"3;large,medium,small":(a,b,c)=>d=>d instanceof A.ala&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"3;x,y,z":(a,b,c)=>d=>d instanceof A.To&&a.b(d.a)&&b.b(d.b)&&c.b(d.c),"4;domBlurListener,domFocusListener,element,semanticsNodeId":a=>b=>b instanceof A.Tp&&A.bWI(a,b.a)}} +A.bQ3(v.typeUniverse,JSON.parse('{"a7d":"u6","pm":"u6","oM":"u6","c_r":"k","c_s":"k","bZ7":"k","bZ0":"b0","bZV":"b0","bZ9":"tf","bZ2":"aL","c_I":"aL","c0l":"aL","bZ_":"bh","c_b":"bh","c1I":"lw","bZa":"bc","c_C":"bc","c0o":"bs","bZO":"bs","c_h":"qc","c10":"iW","bZx":"po","bZg":"oq","c0E":"oq","c_z":"cO","c_m":"xw","c_k":"xu","bZn":"dM","bZp":"n0","bZs":"iV","bZt":"jH","bZo":"jH","bZq":"jH","J4":{"jG":[]},"i9":{"d7":[]},"h7":{"fm":[]},"oB":{"ua":[]},"Z4":{"q9":[]},"J3":{"q9":[]},"J5":{"q9":[]},"Bu":{"q9":[]},"Me":{"z":["nk"],"z.E":"nk"},"a2P":{"cv":[]},"Z6":{"q9":[]},"QX":{"q9":[]},"QY":{"q9":[]},"Z2":{"jG":[]},"BL":{"iI":[]},"a8A":{"iI":[]},"Yb":{"iI":[],"atB":[]},"Ze":{"iI":[],"ax7":[]},"Zh":{"iI":[],"axa":[]},"Zg":{"iI":[],"ax9":[]},"a6x":{"iI":[],"aMy":[]},"PL":{"iI":[],"abb":[]},"a6v":{"iI":[],"abb":[],"aMw":[]},"a2Q":{"iI":[],"aGY":[]},"a9i":{"iI":[],"aUw":[]},"a7a":{"iI":[]},"Bw":{"up":[]},"J7":{"DL":[]},"a9o":{"bjD":[]},"Z5":{"bjD":[]},"Z7":{"ua":[]},"YJ":{"d7":[]},"a2L":{"bs5":[]},"a2K":{"cv":[]},"KY":{"cv":[]},"hX":{"z":["1"],"z.E":"1"},"rA":{"z":["1"],"z.E":"1"},"a26":{"i9":[],"d7":[]},"KD":{"i9":[],"d7":[]},"KE":{"i9":[],"d7":[]},"MP":{"h7":[],"fm":[],"atB":[]},"MR":{"h7":[],"fm":[],"axa":[]},"a74":{"h7":[],"fm":[],"ax9":[]},"MQ":{"h7":[],"fm":[],"ax7":[]},"MS":{"h7":[],"fm":[],"aGY":[]},"MT":{"h7":[],"fm":[],"aMw":[]},"MU":{"h7":[],"fm":[],"aMy":[]},"Fa":{"up":[]},"v4":{"DL":[]},"a77":{"fm":[]},"K1":{"fa":[]},"MI":{"fa":[]},"a6W":{"fa":[]},"a7_":{"fa":[]},"a6Y":{"fa":[]},"a6X":{"fa":[]},"a6Z":{"fa":[]},"a6K":{"fa":[]},"a6J":{"fa":[]},"a6I":{"fa":[]},"a6O":{"fa":[]},"a6Q":{"fa":[]},"a6U":{"fa":[]},"a6T":{"fa":[]},"a6M":{"fa":[]},"a6P":{"fa":[]},"a6L":{"fa":[]},"a6S":{"fa":[]},"a6V":{"fa":[]},"a6N":{"fa":[]},"a6R":{"fa":[]},"MV":{"h7":[],"fm":[]},"MW":{"h7":[],"fm":[],"aUw":[]},"QF":{"qi":[]},"SJ":{"qi":[]},"a1r":{"qi":[]},"M9":{"qi":[]},"a76":{"fm":[]},"MX":{"h7":[],"fm":[],"abb":[]},"KW":{"jG":[]},"a2G":{"jG":[]},"Oy":{"KL":[]},"YE":{"jG":[]},"I6":{"KL":[]},"Ep":{"r5":[]},"Ct":{"r5":[]},"Ln":{"r5":[]},"y4":{"r5":[]},"a9a":{"blw":[]},"Pg":{"r5":[]},"pL":{"ae":["1"],"f":["1"],"ao":["1"],"z":["1"]},"ahZ":{"pL":["n"],"ae":["n"],"f":["n"],"ao":["n"],"z":["n"]},"abg":{"pL":["n"],"ae":["n"],"f":["n"],"ao":["n"],"z":["n"],"ae.E":"n","z.E":"n","pL.E":"n"},"DP":{"yv":[]},"YZ":{"F8":[]},"a8C":{"F8":[]},"a1j":{"nd":[]},"a1q":{"Cs":[]},"KX":{"cv":[]},"k":{"as":[]},"Ld":{"q":[],"ec":[]},"CY":{"aE":[],"ec":[]},"u6":{"k":[],"as":[]},"H":{"f":["1"],"k":[],"ao":["1"],"as":[],"z":["1"],"co":["1"],"z.E":"1"},"aHF":{"H":["1"],"f":["1"],"k":[],"ao":["1"],"as":[],"z":["1"],"co":["1"],"z.E":"1"},"u1":{"Y":[],"dm":[],"cD":["dm"]},"CX":{"Y":[],"n":[],"dm":[],"cD":["dm"],"ec":[]},"Lf":{"Y":[],"dm":[],"cD":["dm"],"ec":[]},"qG":{"h":[],"cD":["h"],"co":["@"],"ec":[]},"IT":{"bz":["2"],"bz.T":"2"},"Bm":{"ka":["2"]},"o1":{"z":["2"]},"wu":{"o1":["1","2"],"z":["2"],"z.E":"2"},"RE":{"wu":["1","2"],"o1":["1","2"],"ao":["2"],"z":["2"],"z.E":"2"},"QT":{"ae":["2"],"f":["2"],"o1":["1","2"],"ao":["2"],"z":["2"]},"iz":{"QT":["1","2"],"ae":["2"],"f":["2"],"o1":["1","2"],"ao":["2"],"z":["2"],"ae.E":"2","z.E":"2"},"q7":{"bC":["2"],"o1":["1","2"],"ao":["2"],"z":["2"],"z.E":"2"},"wv":{"bo":["3","4"],"a6":["3","4"],"bo.V":"4","bo.K":"3"},"q6":{"o1":["1","2"],"ao":["2"],"z":["2"],"z.E":"2"},"lm":{"d7":[]},"i2":{"ae":["n"],"f":["n"],"ao":["n"],"z":["n"],"ae.E":"n","z.E":"n"},"ao":{"z":["1"]},"av":{"ao":["1"],"z":["1"]},"kb":{"av":["1"],"ao":["1"],"z":["1"],"av.E":"1","z.E":"1"},"eu":{"z":["2"],"z.E":"2"},"qh":{"eu":["1","2"],"ao":["2"],"z":["2"],"z.E":"2"},"ad":{"av":["2"],"ao":["2"],"z":["2"],"av.E":"2","z.E":"2"},"ba":{"z":["1"],"z.E":"1"},"iD":{"z":["2"],"z.E":"2"},"zF":{"z":["1"],"z.E":"1"},"K9":{"zF":["1"],"ao":["1"],"z":["1"],"z.E":"1"},"ra":{"z":["1"],"z.E":"1"},"Ce":{"ra":["1"],"ao":["1"],"z":["1"],"z.E":"1"},"zs":{"z":["1"],"z.E":"1"},"jM":{"ao":["1"],"z":["1"],"z.E":"1"},"qt":{"z":["1"],"z.E":"1"},"K8":{"qt":["1"],"ao":["1"],"z":["1"],"z.E":"1"},"fb":{"z":["1"],"z.E":"1"},"FG":{"ae":["1"],"f":["1"],"ao":["1"],"z":["1"]},"da":{"av":["1"],"ao":["1"],"z":["1"],"av.E":"1","z.E":"1"},"rf":{"P5":[]},"wC":{"mu":["1","2"],"yd":["1","2"],"HD":["1","2"],"a6":["1","2"]},"BJ":{"a6":["1","2"]},"a2":{"BJ":["1","2"],"a6":["1","2"]},"Ah":{"z":["1"],"z.E":"1"},"dg":{"BJ":["1","2"],"a6":["1","2"]},"Ji":{"ml":["1"],"bC":["1"],"ao":["1"],"z":["1"]},"kw":{"ml":["1"],"bC":["1"],"ao":["1"],"z":["1"],"z.E":"1"},"h0":{"ml":["1"],"bC":["1"],"ao":["1"],"z":["1"],"z.E":"1"},"a32":{"li":[]},"cr":{"li":[]},"Mu":{"rm":[],"d7":[]},"a3a":{"d7":[]},"abp":{"d7":[]},"a6q":{"cv":[]},"Uq":{"cw":[]},"tr":{"li":[]},"Zl":{"li":[]},"Zm":{"li":[]},"aaK":{"li":[]},"aan":{"li":[]},"Bc":{"li":[]},"afN":{"d7":[]},"a8K":{"d7":[]},"jh":{"bo":["1","2"],"a6":["1","2"],"bo.V":"2","bo.K":"1"},"cl":{"ao":["1"],"z":["1"],"z.E":"1"},"Lh":{"jh":["1","2"],"bo":["1","2"],"a6":["1","2"],"bo.V":"2","bo.K":"1"},"xQ":{"jh":["1","2"],"bo":["1","2"],"a6":["1","2"],"bo.V":"2","bo.K":"1"},"nb":{"btD":[]},"GP":{"a7T":[],"yf":[]},"adS":{"z":["a7T"],"z.E":"a7T"},"F6":{"yf":[]},"anm":{"z":["yf"],"z.E":"yf"},"yk":{"k":[],"as":[],"YG":[],"ec":[]},"hm":{"k":[],"as":[],"fs":[]},"Mf":{"hm":[],"k":[],"es":[],"as":[],"fs":[],"ec":[]},"Dx":{"hm":[],"cF":["1"],"k":[],"as":[],"fs":[],"co":["1"]},"uk":{"ae":["Y"],"f":["Y"],"hm":[],"cF":["Y"],"k":[],"ao":["Y"],"as":[],"fs":[],"co":["Y"],"z":["Y"]},"lr":{"ae":["n"],"f":["n"],"hm":[],"cF":["n"],"k":[],"ao":["n"],"as":[],"fs":[],"co":["n"],"z":["n"]},"Mg":{"uk":[],"ae":["Y"],"aDj":[],"f":["Y"],"hm":[],"cF":["Y"],"k":[],"ao":["Y"],"as":[],"fs":[],"co":["Y"],"z":["Y"],"ec":[],"ae.E":"Y","z.E":"Y"},"a6c":{"uk":[],"ae":["Y"],"aDk":[],"f":["Y"],"hm":[],"cF":["Y"],"k":[],"ao":["Y"],"as":[],"fs":[],"co":["Y"],"z":["Y"],"ec":[],"ae.E":"Y","z.E":"Y"},"a6d":{"lr":[],"ae":["n"],"aHu":[],"f":["n"],"hm":[],"cF":["n"],"k":[],"ao":["n"],"as":[],"fs":[],"co":["n"],"z":["n"],"ec":[],"ae.E":"n","z.E":"n"},"Mh":{"lr":[],"ae":["n"],"aHv":[],"f":["n"],"hm":[],"cF":["n"],"k":[],"ao":["n"],"as":[],"fs":[],"co":["n"],"z":["n"],"ec":[],"ae.E":"n","z.E":"n"},"a6e":{"lr":[],"ae":["n"],"aHw":[],"f":["n"],"hm":[],"cF":["n"],"k":[],"ao":["n"],"as":[],"fs":[],"co":["n"],"z":["n"],"ec":[],"ae.E":"n","z.E":"n"},"a6f":{"lr":[],"ae":["n"],"b_P":[],"f":["n"],"hm":[],"cF":["n"],"k":[],"ao":["n"],"as":[],"fs":[],"co":["n"],"z":["n"],"ec":[],"ae.E":"n","z.E":"n"},"Mi":{"lr":[],"ae":["n"],"FA":[],"f":["n"],"hm":[],"cF":["n"],"k":[],"ao":["n"],"as":[],"fs":[],"co":["n"],"z":["n"],"ec":[],"ae.E":"n","z.E":"n"},"Mj":{"lr":[],"ae":["n"],"b_Q":[],"f":["n"],"hm":[],"cF":["n"],"k":[],"ao":["n"],"as":[],"fs":[],"co":["n"],"z":["n"],"ec":[],"ae.E":"n","z.E":"n"},"yl":{"lr":[],"ae":["n"],"e1":[],"f":["n"],"hm":[],"cF":["n"],"k":[],"ao":["n"],"as":[],"fs":[],"co":["n"],"z":["n"],"ec":[],"ae.E":"n","z.E":"n"},"UZ":{"kQ":[]},"agF":{"d7":[]},"V_":{"rm":[],"d7":[]},"a7":{"S":["1"]},"a69":{"ei":["1"]},"hx":{"ka":["1"],"hx.T":"1"},"GB":{"ei":["1"]},"UT":{"PD":[]},"Qp":{"Jg":["1"]},"kl":{"z":["1"],"z.E":"1"},"XY":{"d7":[]},"j_":{"d6":["1"],"Hs":["1"],"bz":["1"],"bz.T":"1"},"A5":{"vs":["1"],"hx":["1"],"ka":["1"],"hx.T":"1"},"mz":{"ei":["1"]},"o9":{"mz":["1"],"ei":["1"]},"lI":{"mz":["1"],"ei":["1"]},"G2":{"o9":["1"],"mz":["1"],"ei":["1"]},"A8":{"Jg":["1"]},"aD":{"A8":["1"],"Jg":["1"]},"AB":{"A8":["1"],"Jg":["1"]},"zA":{"bz":["1"],"bz.T":"1"},"vN":{"ei":["1"]},"mx":{"Qq":["1"],"vN":["1"],"ei":["1"]},"pI":{"vN":["1"],"ei":["1"]},"d6":{"Hs":["1"],"bz":["1"],"bz.T":"1"},"vs":{"hx":["1"],"ka":["1"],"hx.T":"1"},"Ay":{"ei":["1"]},"Uu":{"adR":["1"]},"Hs":{"bz":["1"]},"Gg":{"ka":["1"]},"G1":{"bz":["1"],"bz.T":"1"},"vp":{"ka":["1"]},"RH":{"bz":["1"],"bz.T":"1"},"Am":{"bz":["1"],"bz.T":"1"},"SQ":{"mx":["1"],"Qq":["1"],"vN":["1"],"a69":["1"],"ei":["1"]},"RW":{"bz":["2"]},"Gw":{"hx":["2"],"ka":["2"],"hx.T":"2"},"o5":{"RW":["1","2"],"bz":["2"],"bz.T":"2"},"RJ":{"ei":["1"]},"Hk":{"hx":["2"],"ka":["2"],"hx.T":"2"},"QJ":{"bz":["2"],"bz.T":"2"},"Uv":{"Uw":["1","2"]},"rD":{"bo":["1","2"],"a6":["1","2"],"bo.V":"2","bo.K":"1"},"vw":{"rD":["1","2"],"bo":["1","2"],"a6":["1","2"],"bo.V":"2","bo.K":"1"},"Rj":{"rD":["1","2"],"bo":["1","2"],"a6":["1","2"],"bo.V":"2","bo.K":"1"},"rE":{"ao":["1"],"z":["1"],"z.E":"1"},"Sy":{"jh":["1","2"],"bo":["1","2"],"a6":["1","2"],"bo.V":"2","bo.K":"1"},"pA":{"Hh":["1"],"ml":["1"],"bC":["1"],"ao":["1"],"z":["1"],"z.E":"1"},"kW":{"Hh":["1"],"ml":["1"],"bsw":["1"],"bC":["1"],"ao":["1"],"z":["1"],"z.E":"1"},"zT":{"ae":["1"],"f":["1"],"ao":["1"],"z":["1"],"ae.E":"1","z.E":"1"},"jU":{"z":["1"],"z.E":"1"},"ae":{"f":["1"],"ao":["1"],"z":["1"]},"bo":{"a6":["1","2"]},"SC":{"ao":["2"],"z":["2"],"z.E":"2"},"yd":{"a6":["1","2"]},"mu":{"yd":["1","2"],"HD":["1","2"],"a6":["1","2"]},"rB":{"Rq":["1"],"brc":["1"]},"Ac":{"Rq":["1"]},"wZ":{"ao":["1"],"z":["1"],"z.E":"1"},"Lv":{"av":["1"],"ao":["1"],"z":["1"],"av.E":"1","z.E":"1"},"ml":{"bC":["1"],"ao":["1"],"z":["1"]},"Hh":{"ml":["1"],"bC":["1"],"ao":["1"],"z":["1"]},"OS":{"bo":["1","2"],"a6":["1","2"],"bo.V":"2","bo.K":"1"},"rM":{"ao":["1"],"z":["1"],"z.E":"1"},"Ax":{"ao":["2"],"z":["2"],"z.E":"2"},"Ul":{"ao":["aS<1,2>"],"z":["aS<1,2>"],"z.E":"aS<1,2>"},"rN":{"pF":["1","2","1"],"pF.T":"1"},"Up":{"pF":["1","jx<1,2>","2"],"pF.T":"2"},"Aw":{"pF":["1","jx<1,2>","aS<1,2>"],"pF.T":"aS<1,2>"},"F0":{"ml":["1"],"bC":["1"],"ao":["1"],"z":["1"],"z.E":"1"},"n5":{"n_":["h","f"]},"Su":{"bo":["h","@"],"a6":["h","@"],"bo.V":"@","bo.K":"h"},"ai8":{"av":["h"],"ao":["h"],"z":["h"],"av.E":"h","z.E":"h"},"St":{"nJ":[]},"XQ":{"n5":[],"n_":["h","f"]},"aoM":{"cm":["h","f"]},"XS":{"cm":["h","f"],"cm.S":"h","cm.T":"f"},"aoN":{"nJ":[]},"aoL":{"cm":["f","h"]},"XR":{"cm":["f","h"],"cm.S":"f","cm.T":"h"},"Yf":{"n_":["f","h"]},"Yh":{"cm":["f","h"],"cm.S":"f","cm.T":"h"},"Yg":{"cm":["h","f"],"cm.S":"h","cm.T":"f"},"aeo":{"nJ":[]},"RX":{"cm":["1","3"],"cm.S":"1","cm.T":"3"},"CZ":{"d7":[]},"a3c":{"d7":[]},"a3b":{"n_":["C?","h"]},"a3e":{"cm":["C?","h"],"cm.S":"C?","cm.T":"h"},"a3d":{"cm":["h","C?"],"cm.S":"h","cm.T":"C?"},"a3m":{"n5":[],"n_":["h","f"]},"a3o":{"cm":["h","f"],"cm.S":"h","cm.T":"f"},"a3n":{"cm":["f","h"],"cm.S":"f","cm.T":"h"},"Hu":{"nJ":[]},"Az":{"nJ":[]},"abA":{"n5":[],"n_":["h","f"]},"abB":{"cm":["h","f"],"cm.S":"h","cm.T":"f"},"Ve":{"nJ":[]},"PQ":{"cm":["f","h"],"cm.S":"f","cm.T":"h"},"IC":{"cD":["IC"]},"dx":{"cD":["dx"]},"Y":{"dm":[],"cD":["dm"]},"bj":{"cD":["bj"]},"iU":{"d7":[]},"n":{"dm":[],"cD":["dm"]},"f":{"ao":["1"],"z":["1"]},"dm":{"cD":["dm"]},"a7T":{"yf":[]},"bC":{"ao":["1"],"z":["1"]},"h":{"cD":["h"]},"iZ":{"IC":[],"cD":["IC"]},"wf":{"d7":[]},"rm":{"d7":[]},"l3":{"d7":[]},"E7":{"d7":[]},"L3":{"d7":[]},"a6l":{"d7":[]},"abr":{"d7":[]},"zR":{"d7":[]},"Zo":{"d7":[]},"a6A":{"d7":[]},"OV":{"d7":[]},"RK":{"cv":[]},"lh":{"cv":[]},"a33":{"cv":[],"d7":[]},"RY":{"av":["1"],"ao":["1"],"z":["1"],"av.E":"1","z.E":"1"},"pG":{"cw":[]},"V9":{"abv":[]},"mG":{"abv":[]},"afP":{"abv":[]},"bc":{"cO":[],"bs":[],"k":[],"as":[]},"tq":{"b0":[],"k":[],"as":[]},"dM":{"k":[],"as":[]},"cO":{"bs":[],"k":[],"as":[]},"b0":{"k":[],"as":[]},"i6":{"th":[],"k":[],"as":[]},"jR":{"k":[],"as":[]},"xv":{"k":[],"as":[]},"ui":{"b0":[],"k":[],"as":[]},"jX":{"k":[],"as":[]},"bs":{"k":[],"as":[]},"jZ":{"k":[],"as":[]},"lw":{"b0":[],"k":[],"as":[]},"k3":{"k":[],"as":[]},"k6":{"k":[],"as":[]},"k7":{"k":[],"as":[]},"iV":{"k":[],"as":[]},"kd":{"k":[],"as":[]},"iW":{"k":[],"as":[]},"ke":{"k":[],"as":[]},"GE":{"oZ":[]},"Xm":{"k":[],"as":[]},"Xt":{"bc":[],"cO":[],"bs":[],"k":[],"as":[]},"XP":{"bc":[],"cO":[],"bs":[],"k":[],"as":[]},"Ba":{"bc":[],"cO":[],"bs":[],"k":[],"as":[]},"th":{"k":[],"as":[]},"wl":{"bc":[],"cO":[],"bs":[],"k":[],"as":[]},"oq":{"bs":[],"k":[],"as":[]},"Zy":{"k":[],"as":[]},"wH":{"k":[],"as":[]},"jH":{"k":[],"as":[]},"n0":{"k":[],"as":[]},"Zz":{"k":[],"as":[]},"ZA":{"k":[],"as":[]},"a0w":{"k":[],"as":[]},"qc":{"bs":[],"k":[],"as":[]},"a11":{"k":[],"as":[]},"JV":{"ae":["ly"],"bH":["ly"],"f":["ly"],"cF":["ly"],"k":[],"ao":["ly"],"as":[],"z":["ly"],"co":["ly"],"bH.E":"ly","ae.E":"ly","z.E":"ly"},"JW":{"k":[],"ly":["dm"],"as":[]},"JX":{"ae":["h"],"bH":["h"],"f":["h"],"cF":["h"],"k":[],"ao":["h"],"as":[],"z":["h"],"co":["h"],"bH.E":"h","ae.E":"h","z.E":"h"},"a14":{"k":[],"as":[]},"aeZ":{"ae":["cO"],"f":["cO"],"ao":["cO"],"z":["cO"],"ae.E":"cO","z.E":"cO"},"aL":{"k":[],"as":[]},"Cn":{"ae":["i6"],"bH":["i6"],"f":["i6"],"cF":["i6"],"k":[],"ao":["i6"],"as":[],"z":["i6"],"co":["i6"],"bH.E":"i6","ae.E":"i6","z.E":"i6"},"Kl":{"k":[],"as":[]},"a1M":{"k":[],"as":[]},"a25":{"k":[],"as":[]},"a27":{"bc":[],"cO":[],"bs":[],"k":[],"as":[]},"a2z":{"k":[],"as":[]},"xu":{"ae":["bs"],"bH":["bs"],"f":["bs"],"cF":["bs"],"k":[],"ao":["bs"],"as":[],"z":["bs"],"co":["bs"],"bH.E":"bs","ae.E":"bs","z.E":"bs"},"xw":{"k":[],"as":[]},"CM":{"k":[],"as":[]},"xG":{"bc":[],"cO":[],"bs":[],"k":[],"as":[]},"Lu":{"bc":[],"cO":[],"bs":[],"k":[],"as":[]},"a3H":{"k":[],"as":[]},"a5V":{"k":[],"as":[]},"Du":{"k":[],"as":[]},"a5Y":{"k":[],"bo":["h","@"],"as":[],"a6":["h","@"],"bo.V":"@","bo.K":"h"},"a5Z":{"k":[],"bo":["h","@"],"as":[],"a6":["h","@"],"bo.V":"@","bo.K":"h"},"a6_":{"ae":["jX"],"bH":["jX"],"f":["jX"],"cF":["jX"],"k":[],"ao":["jX"],"as":[],"z":["jX"],"co":["jX"],"bH.E":"jX","ae.E":"jX","z.E":"jX"},"ip":{"ae":["bs"],"f":["bs"],"ao":["bs"],"z":["bs"],"ae.E":"bs","z.E":"bs"},"Mr":{"ae":["bs"],"bH":["bs"],"f":["bs"],"cF":["bs"],"k":[],"ao":["bs"],"as":[],"z":["bs"],"co":["bs"],"bH.E":"bs","ae.E":"bs","z.E":"bs"},"a6n":{"k":[],"as":[]},"a7g":{"ae":["jZ"],"bH":["jZ"],"f":["jZ"],"cF":["jZ"],"k":[],"ao":["jZ"],"as":[],"z":["jZ"],"co":["jZ"],"bH.E":"jZ","ae.E":"jZ","z.E":"jZ"},"a8I":{"k":[],"bo":["h","@"],"as":[],"a6":["h","@"],"bo.V":"@","bo.K":"h"},"O1":{"bc":[],"cO":[],"bs":[],"k":[],"as":[]},"a90":{"bc":[],"cO":[],"bs":[],"k":[],"as":[]},"EN":{"k":[],"as":[]},"a9U":{"ae":["k3"],"bH":["k3"],"f":["k3"],"cF":["k3"],"k":[],"ao":["k3"],"as":[],"z":["k3"],"co":["k3"],"bH.E":"k3","ae.E":"k3","z.E":"k3"},"aai":{"ae":["k6"],"bH":["k6"],"f":["k6"],"cF":["k6"],"k":[],"ao":["k6"],"as":[],"z":["k6"],"co":["k6"],"bH.E":"k6","ae.E":"k6","z.E":"k6"},"aao":{"k":[],"bo":["h","h"],"as":[],"a6":["h","h"],"bo.V":"h","bo.K":"h"},"Pa":{"bc":[],"cO":[],"bs":[],"k":[],"as":[]},"aaE":{"bc":[],"cO":[],"bs":[],"k":[],"as":[]},"aaF":{"bc":[],"cO":[],"bs":[],"k":[],"as":[]},"Fh":{"bc":[],"cO":[],"bs":[],"k":[],"as":[]},"ab0":{"ae":["iW"],"bH":["iW"],"f":["iW"],"cF":["iW"],"k":[],"ao":["iW"],"as":[],"z":["iW"],"co":["iW"],"bH.E":"iW","ae.E":"iW","z.E":"iW"},"ab1":{"ae":["kd"],"bH":["kd"],"f":["kd"],"cF":["kd"],"k":[],"ao":["kd"],"as":[],"z":["kd"],"co":["kd"],"bH.E":"kd","ae.E":"kd","z.E":"kd"},"ab4":{"k":[],"as":[]},"ab9":{"ae":["ke"],"bH":["ke"],"f":["ke"],"cF":["ke"],"k":[],"ao":["ke"],"as":[],"z":["ke"],"co":["ke"],"bH.E":"ke","ae.E":"ke","z.E":"ke"},"aba":{"k":[],"as":[]},"aby":{"k":[],"as":[]},"abH":{"k":[],"as":[]},"FN":{"k":[],"as":[]},"vk":{"k":[],"as":[]},"po":{"k":[],"as":[]},"G3":{"bs":[],"k":[],"as":[]},"afu":{"ae":["dM"],"bH":["dM"],"f":["dM"],"cF":["dM"],"k":[],"ao":["dM"],"as":[],"z":["dM"],"co":["dM"],"bH.E":"dM","ae.E":"dM","z.E":"dM"},"Rp":{"k":[],"ly":["dm"],"as":[]},"ahm":{"ae":["jR?"],"bH":["jR?"],"f":["jR?"],"cF":["jR?"],"k":[],"ao":["jR?"],"as":[],"z":["jR?"],"co":["jR?"],"bH.E":"jR?","ae.E":"jR?","z.E":"jR?"},"SR":{"ae":["bs"],"bH":["bs"],"f":["bs"],"cF":["bs"],"k":[],"ao":["bs"],"as":[],"z":["bs"],"co":["bs"],"bH.E":"bs","ae.E":"bs","z.E":"bs"},"ane":{"ae":["k7"],"bH":["k7"],"f":["k7"],"cF":["k7"],"k":[],"ao":["k7"],"as":[],"z":["k7"],"co":["k7"],"bH.E":"k7","ae.E":"k7","z.E":"k7"},"anq":{"ae":["iV"],"bH":["iV"],"f":["iV"],"cF":["iV"],"k":[],"ao":["iV"],"as":[],"z":["iV"],"co":["iV"],"bH.E":"iV","ae.E":"iV","z.E":"iV"},"aee":{"bo":["h","h"],"a6":["h","h"]},"RF":{"bo":["h","h"],"a6":["h","h"],"bo.V":"h","bo.K":"h"},"kT":{"bz":["1"],"bz.T":"1"},"RG":{"kT":["1"],"bz":["1"],"bz.T":"1"},"Go":{"ka":["1"]},"Ms":{"oZ":[]},"Uf":{"oZ":[]},"anK":{"oZ":[]},"anr":{"oZ":[]},"a1O":{"ae":["cO"],"f":["cO"],"ao":["cO"],"z":["cO"],"ae.E":"cO","z.E":"cO"},"ov":{"k":[],"as":[]},"wN":{"k":[],"as":[]},"vi":{"b0":[],"k":[],"as":[]},"JB":{"k":[],"as":[]},"L0":{"k":[],"as":[]},"D0":{"k":[],"as":[]},"Mv":{"k":[],"as":[]},"Ar":{"yQ":[]},"qO":{"cv":[]},"jc":{"cv":[]},"MM":{"cv":[]},"MN":{"cv":[]},"MO":{"cv":[]},"agQ":{"bz":["f"],"bz.T":"f"},"RN":{"a1I":[]},"aaB":{"n5":[],"n_":["h","f"]},"xP":{"ae":["1"],"f":["1"],"ao":["1"],"z":["1"],"ae.E":"1","z.E":"1"},"a6p":{"cv":[]},"ly":{"c1G":["1"]},"ln":{"k":[],"as":[]},"lt":{"k":[],"as":[]},"lF":{"k":[],"as":[]},"a3w":{"ae":["ln"],"bH":["ln"],"f":["ln"],"k":[],"ao":["ln"],"as":[],"z":["ln"],"bH.E":"ln","ae.E":"ln","z.E":"ln"},"a6s":{"ae":["lt"],"bH":["lt"],"f":["lt"],"k":[],"ao":["lt"],"as":[],"z":["lt"],"bH.E":"lt","ae.E":"lt","z.E":"lt"},"a7h":{"k":[],"as":[]},"Ex":{"bh":[],"cO":[],"bs":[],"k":[],"as":[]},"aat":{"ae":["h"],"bH":["h"],"f":["h"],"k":[],"ao":["h"],"as":[],"z":["h"],"bH.E":"h","ae.E":"h","z.E":"h"},"bh":{"cO":[],"bs":[],"k":[],"as":[]},"abc":{"ae":["lF"],"bH":["lF"],"f":["lF"],"k":[],"ao":["lF"],"as":[],"z":["lF"],"bH.E":"lF","ae.E":"lF","z.E":"lF"},"es":{"fs":[]},"aHw":{"f":["n"],"ao":["n"],"z":["n"],"fs":[]},"e1":{"f":["n"],"ao":["n"],"z":["n"],"fs":[]},"b_Q":{"f":["n"],"ao":["n"],"z":["n"],"fs":[]},"aHu":{"f":["n"],"ao":["n"],"z":["n"],"fs":[]},"b_P":{"f":["n"],"ao":["n"],"z":["n"],"fs":[]},"aHv":{"f":["n"],"ao":["n"],"z":["n"],"fs":[]},"FA":{"f":["n"],"ao":["n"],"z":["n"],"fs":[]},"aDj":{"f":["Y"],"ao":["Y"],"z":["Y"],"fs":[]},"aDk":{"f":["Y"],"ao":["Y"],"z":["Y"],"fs":[]},"a9t":{"Cs":[]},"Y1":{"k":[],"as":[]},"Y2":{"k":[],"bo":["h","@"],"as":[],"a6":["h","@"],"bo.V":"@","bo.K":"h"},"Y3":{"k":[],"as":[]},"tf":{"k":[],"as":[]},"a6t":{"k":[],"as":[]},"BV":{"ei":["1"]},"IR":{"a4":[],"d":[]},"tl":{"jT":["tl"],"jT.T":"tl"},"fq":{"z":["h"],"z.E":"h"},"cW":{"a6":["2","3"]},"FH":{"vO":["1","z<1>"],"vO.E":"1"},"EL":{"vO":["1","bC<1>"],"vO.E":"1"},"a2w":{"cm":["f","wW"]},"amA":{"cm":["f","wW"],"cm.S":"f","cm.T":"wW"},"hJ":{"cv":[]},"a35":{"kA":[]},"a34":{"ae":["kA"],"f":["kA"],"ao":["kA"],"z":["kA"],"ae.E":"kA","z.E":"kA"},"L2":{"kA":[]},"JP":{"kA":[]},"QQ":{"rl":["q4"]},"QO":{"rl":["tk"]},"QP":{"rl":["ws"]},"M3":{"bk4":[],"Km":[],"a0Z":[]},"M4":{"bkn":[],"Km":[],"a1I":[]},"agP":{"ei":["f"]},"M5":{"Km":[]},"Ed":{"hO":[]},"hK":{"hO":[]},"le":{"hO":[]},"bJA":{"hO":[]},"a8B":{"hK":[],"hO":[]},"aiC":{"bmf":[]},"Kv":{"N":[],"d":[]},"ah6":{"a9":["Kv"]},"Av":{"a4":[],"d":[]},"bV":{"at":[]},"mP":{"bV":["Y"],"at":[]},"adT":{"bV":["Y"],"at":[]},"adU":{"bV":["Y"],"at":[]},"wb":{"bV":["1"],"at":[]},"N9":{"bV":["Y"],"at":[]},"k_":{"bV":["Y"],"at":[]},"wL":{"bV":["Y"],"at":[]},"zN":{"bV":["Y"],"at":[]},"BI":{"bV":["1"],"at":[]},"Ih":{"bV":["1"],"at":[]},"Sx":{"jJ":[]},"NX":{"jJ":[]},"dZ":{"jJ":[]},"PA":{"jJ":[]},"f7":{"jJ":[]},"Pz":{"jJ":[]},"jO":{"jJ":[]},"afR":{"jJ":[]},"aR":{"aC":["1"],"aR.T":"1","aC.T":"1"},"dG":{"aR":["e?"],"aC":["e?"],"aR.T":"e?","aC.T":"e?"},"uF":{"aR":["L?"],"aC":["L?"],"aR.T":"L?","aC.T":"L?"},"ax":{"bV":["1"],"at":[]},"dz":{"aC":["1"],"aC.T":"1"},"NT":{"aR":["1"],"aC":["1"],"aR.T":"1","aC.T":"1"},"a9v":{"aR":["U?"],"aC":["U?"],"aR.T":"U?","aC.T":"U?"},"u_":{"aR":["n"],"aC":["n"],"aR.T":"n","aC.T":"n"},"qa":{"aR":["1"],"aC":["1"],"aR.T":"1","aC.T":"1"},"eI":{"aC":["Y"],"aC.T":"Y"},"PN":{"aC":["1"],"aC.T":"1"},"Jl":{"N":[],"d":[]},"afx":{"a9":["Jl"],"aP":[]},"afw":{"at":[]},"Jm":{"N":[],"d":[]},"R6":{"a9":["Jm"],"aP":[]},"Jn":{"N":[],"d":[]},"R7":{"a9":["Jn"],"aP":[]},"aeV":{"at":[]},"eh":{"e":[]},"afz":{"nL":[]},"ZC":{"a4":[],"d":[]},"wI":{"N":[],"d":[]},"R8":{"a9":["wI"]},"ZE":{"d4":[]},"afC":{"fK":["aA"],"fK.T":"aA"},"a0G":{"aA":[]},"JA":{"N":[],"d":[]},"Rc":{"a9":["JA"],"aP":[]},"a0m":{"a4":[],"d":[]},"Jw":{"N":[],"qZ":[],"d":[]},"agZ":{"N":[],"d":[]},"afD":{"a9":["Jw"]},"ak_":{"a4":[],"d":[]},"a0n":{"a4":[],"d":[]},"aej":{"a4":[],"d":[]},"QA":{"a4":[],"d":[]},"UY":{"a4":[],"d":[]},"ajw":{"a4":[],"d":[]},"Jx":{"N":[],"d":[]},"R9":{"a9":["Jx"]},"BO":{"N":[],"d":[]},"Gb":{"a9":["BO<1>"],"aP":[]},"akM":{"at":[]},"jI":{"hn":["1"],"k0":[]},"G9":{"N":[],"d":[]},"rH":{"Jy":["1"],"ek":["1"],"fr":["1"],"dd":["1"],"ek.T":"1"},"a0o":{"a4":[],"d":[]},"ZD":{"a4":[],"d":[]},"Ga":{"a9":["G9<1>"]},"o2":{"la":[]},"BP":{"N":[],"d":[]},"Ra":{"p7":["BP"],"a9":["BP"],"aP":[]},"Jz":{"N":[],"d":[]},"Rb":{"a9":["Jz"],"aP":[]},"afE":{"aG":[],"d":[]},"alj":{"O":[],"b5":["O"],"J":[],"aB":[]},"anV":{"at":[]},"a0q":{"nL":[]},"Re":{"N":[],"d":[]},"a0r":{"a4":[],"d":[]},"afH":{"bv":[],"aG":[],"d":[]},"alk":{"O":[],"b5":["O"],"J":[],"aB":[]},"Rf":{"a9":["Re"],"aP":[]},"aim":{"at":[]},"alX":{"at":[]},"afy":{"at":[]},"Rg":{"aG":[],"d":[]},"afG":{"bR":[],"bD":[],"G":[]},"As":{"e_":["O","jr"],"O":[],"ar":["O","jr"],"J":[],"aB":[],"ar.1":"jr","e_.1":"jr","ar.0":"O"},"ajE":{"bD":[],"G":[]},"ajF":{"d":[]},"tu":{"N":[],"d":[]},"Rd":{"a9":["tu"]},"aiH":{"at":[]},"Sf":{"bf":[],"b2":[],"d":[]},"a0s":{"a4":[],"d":[]},"ab8":{"at":[]},"vu":{"hI":["f"],"h_":[]},"Ci":{"vu":[],"hI":["f"],"h_":[]},"a1y":{"vu":[],"hI":["f"],"h_":[]},"a1w":{"vu":[],"hI":["f"],"h_":[]},"xh":{"wf":[],"d7":[]},"ah9":{"wV":["cg"],"h_":[]},"i1":{"at":[]},"bF":{"at":[]},"PR":{"at":[]},"vA":{"at":[]},"hI":{"h_":[]},"wV":{"h_":[]},"a0T":{"wV":["a0S"],"h_":[]},"a0U":{"h_":[]},"jV":{"id":[]},"kR":{"jV":[],"id":[]},"bS":{"jV":[],"id":[],"bS.T":"1"},"Ls":{"m3":[]},"bd":{"z":["1"],"z.E":"1"},"CG":{"z":["1"],"z.E":"1"},"cC":{"S":["1"]},"CA":{"aB":[]},"Kz":{"cg":[]},"hc":{"c9":[]},"qX":{"c9":[]},"uw":{"c9":[]},"ux":{"c9":[]},"qW":{"c9":[]},"jn":{"c9":[]},"qY":{"c9":[]},"adM":{"c9":[]},"aou":{"c9":[]},"yz":{"c9":[]},"aoq":{"yz":[],"c9":[]},"yF":{"c9":[]},"aoB":{"yF":[],"c9":[]},"aow":{"qX":[],"c9":[]},"aot":{"uw":[],"c9":[]},"aov":{"ux":[],"c9":[]},"aos":{"qW":[],"c9":[]},"yC":{"c9":[]},"aox":{"yC":[],"c9":[]},"yJ":{"c9":[]},"aoF":{"yJ":[],"c9":[]},"yH":{"jn":[],"c9":[]},"aoD":{"yH":[],"jn":[],"c9":[]},"yI":{"jn":[],"c9":[]},"aoE":{"yI":[],"jn":[],"c9":[]},"yG":{"jn":[],"c9":[]},"aoC":{"yG":[],"jn":[],"c9":[]},"aoz":{"qY":[],"c9":[]},"yE":{"c9":[]},"aoA":{"yE":[],"c9":[]},"yD":{"c9":[]},"aoy":{"yD":[],"c9":[]},"yA":{"c9":[]},"aor":{"yA":[],"c9":[]},"n7":{"eN":[],"eY":[]},"SK":{"HC":[]},"GX":{"HC":[]},"kD":{"eN":[],"eY":[]},"nP":{"eN":[],"eY":[]},"n9":{"eN":[],"eY":[]},"np":{"eN":[],"eY":[]},"K_":{"eN":[],"eY":[]},"n4":{"eN":[],"eY":[]},"eN":{"eY":[]},"My":{"eN":[],"eY":[]},"DY":{"eN":[],"eY":[]},"nB":{"eN":[],"eY":[]},"kO":{"eN":[],"eY":[]},"Yn":{"eN":[],"eY":[]},"pi":{"eN":[],"eY":[]},"pj":{"eN":[],"eY":[]},"IA":{"eN":[],"eY":[]},"A7":{"eY":[]},"af6":{"Cz":[]},"xx":{"kf":[]},"Di":{"kf":[]},"adN":{"a4":[],"d":[]},"A1":{"a4":[],"d":[]},"Y9":{"a4":[],"d":[]},"Y7":{"a4":[],"d":[]},"Zk":{"a4":[],"d":[]},"Zj":{"a4":[],"d":[]},"a1e":{"a4":[],"d":[]},"a1d":{"a4":[],"d":[]},"a1n":{"a4":[],"d":[]},"a1m":{"a4":[],"d":[]},"bEV":{"dO":[],"bf":[],"b2":[],"d":[]},"Xp":{"a4":[],"d":[]},"Do":{"N":[],"d":[]},"SD":{"a9":["Do"]},"Il":{"N":[],"qZ":[],"d":[]},"Tg":{"U":[]},"Qo":{"a9":["Il"]},"ae8":{"bv":[],"aG":[],"d":[]},"alg":{"O":[],"b5":["O"],"J":[],"aB":[]},"Dr":{"aR":["L?"],"aC":["L?"],"aR.T":"L?","aC.T":"L?"},"LZ":{"aR":["m"],"aC":["m"],"aR.T":"m","aC.T":"m"},"bJV":{"dO":[],"bf":[],"b2":[],"d":[]},"IG":{"N":[],"d":[]},"Ak":{"N":[],"d":[]},"QI":{"a9":["IG"]},"agp":{"a4":[],"d":[]},"aez":{"bv":[],"aG":[],"d":[]},"Tr":{"O":[],"b5":["O"],"J":[],"aB":[]},"GT":{"a9":["Ak<1>"]},"M8":{"ek":["1"],"fr":["1"],"dd":["1"],"ek.T":"1"},"QH":{"a4":[],"d":[]},"Nm":{"N":[],"d":[]},"akT":{"a9":["Nm"]},"ahX":{"bv":[],"aG":[],"d":[]},"TB":{"O":[],"b5":["O"],"J":[],"aB":[]},"aip":{"ca":["be?"]},"IN":{"N":[],"d":[]},"QL":{"a9":["IN"],"aP":[]},"ajl":{"ev":[],"ca":["ev"]},"ahY":{"bv":[],"aG":[],"d":[]},"TC":{"O":[],"b5":["O"],"J":[],"aB":[]},"bFv":{"dO":[],"bf":[],"b2":[],"d":[]},"YN":{"a4":[],"d":[]},"J1":{"N":[],"d":[]},"aeW":{"a9":["J1"],"aP":[]},"aeU":{"at":[]},"J2":{"a4":[],"d":[]},"bFF":{"bf":[],"b2":[],"d":[]},"Bs":{"a4":[],"d":[]},"Nj":{"N":[],"d":[]},"Tk":{"a9":["Nj"],"aP":[]},"ahT":{"ca":["e?"]},"af_":{"bv":[],"aG":[],"d":[]},"alh":{"O":[],"b5":["O"],"J":[],"aB":[]},"af1":{"iT":["pz","O"],"aG":[],"d":[],"iT.0":"pz","iT.1":"O"},"Tt":{"O":[],"mn":["pz","O"],"J":[],"aB":[]},"bFJ":{"dO":[],"bf":[],"b2":[],"d":[]},"Z_":{"a4":[],"d":[]},"Dp":{"os":["n"],"e":[],"os.T":"n"},"a40":{"os":["n"],"e":[],"os.T":"n"},"ag2":{"nL":[]},"a0P":{"a4":[],"d":[]},"BW":{"a4":[],"d":[]},"AW":{"a4":[],"d":[]},"a0V":{"a4":[],"d":[]},"JO":{"ek":["1"],"fr":["1"],"dd":["1"],"ek.T":"1"},"C_":{"a4":[],"d":[]},"abG":{"a4":[],"d":[]},"bH0":{"dO":[],"bf":[],"b2":[],"d":[]},"Rt":{"bf":[],"b2":[],"d":[]},"K3":{"N":[],"d":[]},"C4":{"a9":["K3"],"aP":[]},"K2":{"a4":[],"d":[]},"bHq":{"dO":[],"bf":[],"b2":[],"d":[]},"Gk":{"N":[],"d":[]},"Gj":{"N":[],"d":[]},"Ad":{"N":[],"d":[]},"GS":{"bv":[],"aG":[],"d":[]},"qg":{"a4":[],"d":[]},"K4":{"bf":[],"b2":[],"d":[]},"C6":{"N":[],"d":[]},"ags":{"at":[]},"Gl":{"a9":["Gk<1>"]},"Rw":{"a9":["Gj<1>"]},"Rx":{"ek":["lJ<1>"],"fr":["lJ<1>"],"dd":["lJ<1>"],"ek.T":"lJ<1>"},"Ry":{"a9":["Ad<1>"]},"alu":{"O":[],"b5":["O"],"J":[],"aB":[]},"Rv":{"a4":[],"d":[]},"Gi":{"a9":["C6<1>"],"fR":[]},"Cf":{"N":[],"d":[]},"agD":{"N":[],"d":[]},"agE":{"a4":[],"d":[]},"agB":{"cy":[]},"bHB":{"dO":[],"bf":[],"b2":[],"d":[]},"Kj":{"N":[],"d":[]},"RL":{"a9":["Kj"],"aP":[]},"bHT":{"dO":[],"bf":[],"b2":[],"d":[]},"a1N":{"N":[],"d":[]},"agR":{"cy":[]},"bI4":{"dO":[],"bf":[],"b2":[],"d":[]},"Kw":{"bf":[],"b2":[],"d":[]},"xg":{"a4":[],"d":[]},"agz":{"ev":[],"ca":["ev"]},"aeY":{"bv":[],"aG":[],"d":[]},"Ts":{"O":[],"b5":["O"],"J":[],"aB":[]},"Qn":{"bV":["1"],"at":[]},"a2s":{"a4":[],"d":[]},"xy":{"a4":[],"d":[]},"U6":{"N":[],"d":[]},"amm":{"a9":["U6"]},"ahK":{"N":[],"d":[]},"ahG":{"ca":["e?"]},"ahI":{"ca":["e?"]},"ahH":{"ca":["ev?"]},"ahJ":{"cy":[]},"agT":{"cy":[]},"agU":{"cy":[]},"ajQ":{"cy":[]},"KZ":{"dO":[],"bf":[],"b2":[],"d":[]},"xE":{"N":[],"d":[]},"Sl":{"a9":["xE"]},"L6":{"oK":[]},"tY":{"u0":[],"oK":[]},"L7":{"u0":[],"oK":[]},"L8":{"u0":[],"oK":[]},"u0":{"oK":[]},"T9":{"bf":[],"b2":[],"d":[]},"Sk":{"N":[],"d":[]},"CR":{"a4":[],"d":[]},"Sj":{"a9":["Sk"],"bmt":[]},"a30":{"a4":[],"d":[]},"m0":{"dw":[]},"nM":{"m0":[],"dw":[]},"mc":{"m0":[],"dw":[]},"QG":{"N":[],"d":[]},"S3":{"N":[],"d":[]},"xF":{"N":[],"d":[]},"Sm":{"at":[]},"Sn":{"aR":["m0"],"aC":["m0"],"aR.T":"m0","aC.T":"m0"},"ahV":{"at":[]},"aev":{"a9":["QG"],"aP":[]},"amB":{"N":[],"d":[]},"S4":{"a9":["S3"],"aP":[]},"Tw":{"O":[],"mn":["iq","O"],"J":[],"aB":[]},"afV":{"iT":["iq","O"],"aG":[],"d":[],"iT.0":"iq","iT.1":"O"},"So":{"a9":["xF"],"aP":[]},"qL":{"a4":[],"d":[]},"ahS":{"ca":["e?"]},"aiF":{"iT":["o4","O"],"aG":[],"d":[],"iT.0":"o4","iT.1":"O"},"TF":{"O":[],"mn":["o4","O"],"J":[],"aB":[]},"y2":{"dO":[],"bf":[],"b2":[],"d":[]},"Pr":{"N":[],"d":[]},"UL":{"a9":["Pr"]},"a3J":{"a4":[],"d":[]},"LP":{"N":[],"d":[]},"TA":{"O":[],"b5":["O"],"J":[],"aB":[]},"uW":{"aR":["dw?"],"aC":["dw?"],"aR.T":"dw?","aC.T":"dw?"},"SE":{"N":[],"d":[]},"aj5":{"a9":["LP"],"aP":[]},"ahU":{"bv":[],"aG":[],"d":[]},"aj1":{"a9":["SE"],"aP":[]},"Uc":{"a4":[],"d":[]},"amC":{"at":[]},"aj2":{"fK":["aw"],"fK.T":"aw"},"a0I":{"aw":[]},"a5M":{"e":[],"ca":["e"]},"GR":{"e":[],"ca":["e"]},"a5N":{"ev":[],"ca":["ev"]},"RI":{"ev":[],"ca":["ev"]},"a5L":{"be":[],"ca":["be?"]},"SF":{"be":[],"ca":["be?"]},"a5O":{"D":[],"ca":["D"]},"aj7":{"D":[],"ca":["D"]},"Sw":{"ca":["1?"]},"bt":{"ca":["1"]},"cG":{"ca":["1"]},"a5P":{"bF":["bC"],"at":[]},"air":{"ca":["be?"]},"yn":{"a4":[],"d":[]},"SW":{"N":[],"d":[]},"An":{"bf":[],"b2":[],"d":[]},"vL":{"N":[],"d":[]},"Rh":{"N":[],"d":[]},"a6g":{"a4":[],"d":[]},"ajx":{"a9":["SW"]},"Sd":{"a4":[],"d":[]},"a6i":{"a4":[],"d":[]},"ajs":{"a4":[],"d":[]},"ag3":{"a4":[],"d":[]},"ajt":{"a4":[],"d":[]},"aju":{"a4":[],"d":[]},"Hr":{"N":[],"d":[]},"aml":{"a9":["vL"],"aP":[]},"Ri":{"a9":["Rh"]},"Ml":{"dO":[],"bf":[],"b2":[],"d":[]},"Mn":{"N":[],"d":[]},"SX":{"a9":["Mn"],"aP":[]},"akO":{"a4":[],"d":[]},"Sc":{"a4":[],"d":[]},"FZ":{"a4":[],"d":[]},"agI":{"bf":[],"b2":[],"d":[]},"bKo":{"dO":[],"bf":[],"b2":[],"d":[]},"a6B":{"N":[],"d":[]},"ajO":{"cy":[]},"bKx":{"dO":[],"bf":[],"b2":[],"d":[]},"nf":{"hn":["1"],"k0":[]},"T5":{"M_":["1"],"ek":["1"],"fr":["1"],"dd":["1"],"ek.T":"1"},"vQ":{"N":[],"d":[]},"vR":{"N":[],"d":[]},"apb":{"a4":[],"d":[]},"ap9":{"a9":["vQ"]},"apa":{"a9":["vR"]},"adA":{"qR":[]},"a0p":{"qR":[]},"Vq":{"at":[]},"Vr":{"at":[]},"uz":{"N":[],"d":[]},"DS":{"N":[],"d":[]},"N1":{"N":[],"d":[]},"ajc":{"bv":[],"aG":[],"d":[]},"alv":{"O":[],"b5":["O"],"J":[],"aB":[]},"DU":{"a9":["2"]},"Td":{"a4":[],"d":[]},"Te":{"ek":["1"],"fr":["1"],"dd":["1"],"ek.T":"1"},"DT":{"a9":["DS<1>"]},"agA":{"ev":[],"ca":["ev"]},"bL_":{"dO":[],"bf":[],"b2":[],"d":[]},"Lt":{"N":[],"d":[]},"mZ":{"N":[],"d":[]},"a7q":{"N":[],"d":[]},"aiA":{"at":[]},"aiB":{"a9":["Lt"],"aP":[]},"G5":{"at":[]},"QW":{"a9":["mZ"],"aP":[]},"alb":{"at":[]},"Np":{"N":[],"d":[]},"alc":{"a9":["mZ"],"aP":[]},"bLb":{"dO":[],"bf":[],"b2":[],"d":[]},"E5":{"N":[],"d":[]},"H4":{"a9":["E5<1>"],"aP":[]},"akL":{"at":[]},"Nf":{"a4":[],"d":[]},"bLh":{"bf":[],"b2":[],"d":[]},"yX":{"N":[],"d":[]},"No":{"a9":["yX"],"aP":[]},"NY":{"N":[],"d":[]},"TT":{"bf":[],"b2":[],"d":[]},"RO":{"N":[],"d":[]},"nA":{"N":[],"d":[]},"Ev":{"a9":["nA"],"aP":[]},"vM":{"N":[],"d":[]},"Hn":{"a9":["vM"]},"a8P":{"a9":["NY"],"aP":[]},"ama":{"at":[]},"G4":{"aN":[]},"aeu":{"a4":[],"d":[]},"RP":{"a9":["RO"],"aP":[]},"ag8":{"cc":["kx"],"cc.T":"kx"},"MY":{"Eu":["vM","1"]},"amb":{"bf":[],"b2":[],"d":[]},"GQ":{"N":[],"d":[]},"a8Z":{"a4":[],"d":[]},"aj4":{"p7":["GQ"],"a9":["GQ"],"aP":[]},"bM0":{"dO":[],"bf":[],"b2":[],"d":[]},"aiq":{"ca":["be?"]},"Of":{"N":[],"d":[]},"ao3":{"rh":[],"bF":["eQ"],"at":[]},"U7":{"a9":["Of"]},"OA":{"N":[],"d":[]},"o0":{"bA":[]},"Uh":{"a9":["OA"],"aP":[]},"amR":{"aG":[],"d":[]},"H9":{"O":[],"J":[],"aB":[]},"aoW":{"aG":[],"d":[]},"alK":{"O":[],"J":[],"aB":[]},"bMs":{"dO":[],"bf":[],"b2":[],"d":[]},"bMw":{"N":[],"d":[]},"SH":{"N":[],"d":[]},"aaA":{"a4":[],"d":[]},"SI":{"a9":["SH"],"aP":[]},"UA":{"at":[]},"Fc":{"a4":[],"d":[]},"bMT":{"bf":[],"b2":[],"d":[]},"rg":{"at":[]},"UF":{"bf":[],"b2":[],"d":[]},"JK":{"N":[],"d":[]},"afY":{"a9":["JK"],"aP":[]},"vc":{"la":[]},"zD":{"a4":[],"qZ":[],"d":[]},"P8":{"N":[],"qZ":[],"d":[]},"P9":{"N":[],"d":[]},"anE":{"N":[],"d":[]},"anD":{"e_":["O","i8"],"O":[],"ar":["O","i8"],"J":[],"aB":[],"ar.1":"i8","e_.1":"i8","ar.0":"O"},"anC":{"fM":[],"aG":[],"d":[]},"aga":{"at":[]},"Se":{"at":[]},"aeO":{"bV":["Y"],"at":[]},"Gh":{"bV":["Y"],"at":[]},"UB":{"nC":[],"iY":[],"at":[],"mj":[]},"anz":{"at":[]},"UC":{"a9":["P8"]},"UD":{"a9":["P9"]},"Fi":{"N":[],"d":[]},"UI":{"ca":["e?"]},"anM":{"ca":["e?"]},"anL":{"ca":["ev?"]},"anP":{"N":[],"d":[]},"anQ":{"a4":[],"d":[]},"anN":{"cy":[]},"bMY":{"dO":[],"bf":[],"b2":[],"d":[]},"Pm":{"N":[],"d":[]},"UJ":{"a9":["Pm"]},"Pn":{"qu":["h"],"N":[],"d":[],"qu.T":"h"},"Hy":{"lg":["h"],"a9":["qu"]},"a5Q":{"nL":[]},"anU":{"at":[]},"bN5":{"dO":[],"bf":[],"b2":[],"d":[]},"UO":{"N":[],"d":[]},"aaY":{"a4":[],"d":[]},"ao0":{"a9":["UO"],"aP":[]},"ao1":{"bv":[],"aG":[],"d":[]},"ao2":{"O":[],"b5":["O"],"J":[],"aB":[]},"anY":{"fM":[],"aG":[],"d":[]},"anZ":{"bR":[],"bD":[],"G":[]},"alJ":{"O":[],"ar":["O","jr"],"J":[],"aB":[],"ar.1":"jr","ar.0":"O"},"anX":{"a4":[],"d":[]},"ao_":{"a4":[],"d":[]},"ab_":{"a4":[],"d":[]},"Si":{"dO":[],"bf":[],"b2":[],"d":[]},"zH":{"aR":["mt"],"aC":["mt"],"aR.T":"mt","aC.T":"mt"},"Id":{"N":[],"d":[]},"Fu":{"a4":[],"d":[]},"ae1":{"a9":["Id"],"aP":[]},"Fw":{"at":[]},"PJ":{"N":[],"d":[]},"Fz":{"a9":["PJ"],"aP":[]},"agG":{"bv":[],"aG":[],"d":[]},"alo":{"O":[],"b5":["O"],"J":[],"oW":[],"aB":[]},"aog":{"a4":[],"d":[]},"bNo":{"dO":[],"bf":[],"b2":[],"d":[]},"MJ":{"ij":[]},"anw":{"at":[]},"h6":{"dw":[]},"mB":{"dw":[]},"er":{"dw":[]},"Yw":{"dw":[]},"j8":{"dw":[]},"dU":{"la":[]},"cd":{"uU":[]},"hi":{"h6":[],"dw":[]},"os":{"e":[]},"aK":{"eL":[]},"fk":{"eL":[]},"vB":{"eL":[]},"XV":{"jT":["ok"]},"mR":{"jT":["ok"],"jT.T":"ok"},"a7c":{"kz":[]},"cM":{"h6":[],"dw":[]},"jw":{"h6":[],"dw":[]},"hT":{"la":[]},"k8":{"h6":[],"dw":[]},"jy":{"h6":[],"dw":[]},"jz":{"h6":[],"dw":[]},"FQ":{"kP":[]},"aoQ":{"kP":[]},"ki":{"Ps":[]},"v9":{"kz":[],"oW":[],"aB":[]},"a7X":{"O":[],"b5":["O"],"J":[],"aB":[]},"Ek":{"ij":[],"aB":[]},"QE":{"at":[]},"afX":{"qT":[]},"alU":{"z1":[],"b5":["O"],"J":[],"aB":[]},"q3":{"qz":[]},"O":{"J":[],"aB":[]},"wr":{"lj":["O"]},"iy":{"dP":[]},"Jk":{"iy":[],"fj":["1"],"dP":[]},"m8":{"iy":[],"fj":["O"],"dP":[]},"Nw":{"e_":["O","m8"],"O":[],"ar":["O","m8"],"J":[],"aB":[],"ar.1":"m8","e_.1":"m8","ar.0":"O"},"a0v":{"at":[]},"Nx":{"O":[],"b5":["O"],"J":[],"aB":[]},"uI":{"at":[]},"yZ":{"O":[],"ar":["O","ms"],"J":[],"aB":[],"ar.1":"ms","ar.0":"O"},"alm":{"O":[],"J":[],"aB":[]},"UK":{"uI":[],"at":[]},"QS":{"uI":[],"at":[]},"G6":{"uI":[],"at":[]},"Nz":{"O":[],"J":[],"aB":[]},"i8":{"iy":[],"fj":["O"],"dP":[]},"uJ":{"e_":["O","i8"],"O":[],"ar":["O","i8"],"J":[],"aB":[],"ar.1":"i8","e_.1":"i8","ar.0":"O"},"NC":{"O":[],"J":[],"aB":[]},"hH":{"h4":[]},"BD":{"hH":[],"h4":[]},"BB":{"hH":[],"h4":[]},"BA":{"hH":[],"h4":[]},"zP":{"nm":[],"hH":[],"h4":[]},"Mz":{"nm":[],"hH":[],"h4":[]},"a7b":{"h4":[]},"nm":{"hH":[],"h4":[]},"L1":{"nm":[],"hH":[],"h4":[]},"Op":{"hH":[],"h4":[]},"Iu":{"hH":[],"h4":[]},"Lr":{"hH":[],"h4":[]},"KC":{"hH":[],"h4":[]},"Ij":{"hH":[],"h4":[]},"oO":{"iy":[],"fj":["O"],"dP":[]},"NF":{"e_":["O","oO"],"O":[],"ar":["O","oO"],"J":[],"aB":[],"ar.1":"oO","e_.1":"oO","ar.0":"O"},"a63":{"at":[]},"J":{"aB":[]},"fj":{"dP":[]},"alZ":{"kh":[]},"Sb":{"kh":[]},"AA":{"kh":[]},"qU":{"nE":[]},"ms":{"fj":["O"],"dP":[]},"rK":{"hR":[],"at":[]},"NJ":{"O":[],"ar":["O","ms"],"J":[],"aB":[],"ar.1":"ms","ar.0":"O"},"Ns":{"O":[],"b5":["O"],"J":[],"aB":[]},"uV":{"at":[]},"Nr":{"O":[],"b5":["O"],"J":[],"aB":[]},"r3":{"O":[],"b5":["O"],"J":[],"aB":[]},"a8g":{"O":[],"b5":["O"],"J":[],"aB":[]},"NK":{"O":[],"b5":["O"],"J":[],"aB":[]},"Eh":{"O":[],"b5":["O"],"J":[],"aB":[]},"a89":{"O":[],"b5":["O"],"J":[],"aB":[]},"NE":{"O":[],"b5":["O"],"J":[],"aB":[]},"a8b":{"O":[],"b5":["O"],"J":[],"aB":[]},"a7Y":{"O":[],"b5":["O"],"J":[],"aB":[]},"JD":{"at":[]},"H7":{"O":[],"b5":["O"],"J":[],"aB":[]},"a81":{"O":[],"b5":["O"],"J":[],"aB":[]},"a80":{"O":[],"b5":["O"],"J":[],"aB":[]},"a8_":{"O":[],"b5":["O"],"J":[],"aB":[]},"TH":{"O":[],"b5":["O"],"J":[],"aB":[]},"a8c":{"O":[],"b5":["O"],"J":[],"aB":[]},"a8d":{"O":[],"b5":["O"],"J":[],"aB":[]},"a82":{"O":[],"b5":["O"],"J":[],"aB":[]},"a8t":{"O":[],"b5":["O"],"J":[],"aB":[]},"a85":{"O":[],"b5":["O"],"J":[],"aB":[]},"a8e":{"O":[],"b5":["O"],"J":[],"aB":[]},"NG":{"O":[],"b5":["O"],"J":[],"oW":[],"aB":[]},"a8h":{"O":[],"b5":["O"],"J":[],"aB":[]},"NB":{"O":[],"b5":["O"],"J":[],"aB":[]},"NH":{"O":[],"b5":["O"],"J":[],"aB":[]},"NL":{"O":[],"b5":["O"],"J":[],"aB":[]},"a7Z":{"O":[],"b5":["O"],"J":[],"aB":[]},"a8a":{"O":[],"b5":["O"],"J":[],"aB":[]},"a83":{"O":[],"b5":["O"],"J":[],"aB":[]},"a86":{"O":[],"b5":["O"],"J":[],"aB":[]},"a88":{"O":[],"b5":["O"],"J":[],"aB":[]},"a84":{"O":[],"b5":["O"],"J":[],"aB":[]},"Nu":{"O":[],"b5":["O"],"J":[],"aB":[]},"hR":{"at":[]},"z_":{"O":[],"b5":["O"],"J":[],"aB":[]},"NI":{"O":[],"b5":["O"],"J":[],"aB":[]},"a7W":{"O":[],"b5":["O"],"J":[],"aB":[]},"a8f":{"O":[],"b5":["O"],"J":[],"aB":[]},"Ny":{"O":[],"b5":["O"],"J":[],"aB":[]},"EV":{"qz":[]},"pd":{"rb":[],"fj":["dk"],"dP":[]},"k2":{"pe":[],"fj":["dk"],"dP":[]},"dk":{"J":[],"aB":[]},"a9H":{"lj":["dk"]},"rb":{"dP":[]},"pe":{"dP":[]},"a8r":{"dk":[],"b5":["O"],"J":[],"aB":[]},"a8s":{"dk":[],"b5":["O"],"J":[],"aB":[]},"a8k":{"p8":[],"dk":[],"ar":["O","hr"],"J":[],"aB":[],"ar.1":"hr","ar.0":"O"},"a8j":{"dk":[],"b5":["O"],"J":[],"aB":[]},"a8l":{"p8":[],"dk":[],"ar":["O","hr"],"J":[],"aB":[]},"a8m":{"p8":[],"dk":[],"ar":["O","hr"],"J":[],"aB":[],"ar.1":"hr","ar.0":"O"},"EU":{"hr":[],"rb":[],"fj":["O"],"nc":[],"dP":[]},"a8n":{"p8":[],"dk":[],"ar":["O","hr"],"J":[],"aB":[],"ar.1":"hr","ar.0":"O"},"a8p":{"p8":[],"dk":[],"ar":["O","hr"],"J":[],"aB":[],"ar.1":"hr","ar.0":"O"},"nc":{"dP":[]},"hr":{"rb":[],"fj":["O"],"nc":[],"dP":[]},"p8":{"dk":[],"ar":["O","hr"],"J":[],"aB":[]},"NM":{"dk":[],"b5":["dk"],"J":[],"aB":[]},"a8q":{"dk":[],"b5":["dk"],"J":[],"aB":[]},"fP":{"iy":[],"fj":["O"],"dP":[]},"Ei":{"e_":["O","fP"],"O":[],"ar":["O","fP"],"J":[],"aB":[],"ar.1":"fP","e_.1":"fP","ar.0":"O"},"ND":{"e_":["O","fP"],"O":[],"ar":["O","fP"],"J":[],"aB":[],"ar.1":"fP","e_.1":"fP","ar.0":"O"},"z1":{"b5":["O"],"J":[],"aB":[]},"r4":{"kj":["1"],"O":[],"ar":["dk","1"],"Ef":[],"J":[],"aB":[]},"uK":{"r4":["k2"],"kj":["k2"],"O":[],"ar":["dk","k2"],"Ef":[],"J":[],"aB":[],"ar.1":"k2","kj.0":"k2","ar.0":"dk"},"a8i":{"r4":["pd"],"kj":["pd"],"O":[],"ar":["dk","pd"],"Ef":[],"J":[],"aB":[],"ar.1":"pd","kj.0":"pd","ar.0":"dk"},"iY":{"at":[]},"pp":{"iy":[],"fj":["O"],"dP":[]},"NO":{"e_":["O","pp"],"O":[],"ar":["O","pp"],"J":[],"aB":[],"ar.1":"pp","e_.1":"pp","ar.0":"O"},"zJ":{"S":["~"]},"PB":{"cv":[]},"rv":{"cD":["rv"]},"o7":{"cD":["o7"]},"rP":{"cD":["rP"]},"EG":{"cD":["EG"]},"ams":{"wV":["ea"],"h_":[]},"Ol":{"at":[]},"yq":{"cD":["EG"]},"A3":{"asL":[]},"EK":{"ij":[]},"xR":{"u2":[]},"u4":{"u2":[]},"Lm":{"u2":[]},"yy":{"cv":[]},"M7":{"cv":[]},"ph":{"ev":[]},"ag0":{"ev":[]},"any":{"Ma":[]},"p6":{"nw":[]},"E9":{"nw":[]},"NS":{"at":[]},"Bn":{"kP":[]},"Da":{"kP":[]},"MK":{"kP":[]},"wX":{"kP":[]},"aaO":{"v7":[]},"aaN":{"v7":[]},"aaP":{"v7":[]},"Fk":{"v7":[]},"Kp":{"ri":[]},"a3v":{"ri":[]},"ak2":{"Pq":[]},"pX":{"N":[],"d":[]},"Qi":{"bf":[],"b2":[],"d":[]},"xk":{"N":[],"d":[]},"bm0":{"bA":[]},"bH3":{"bA":[]},"bH2":{"bA":[]},"ta":{"bA":[]},"tj":{"bA":[]},"kx":{"bA":[]},"r0":{"bA":[]},"f6":{"cc":["1"]},"cz":{"cc":["1"],"cc.T":"1"},"Qj":{"a9":["pX"]},"RT":{"a9":["xk"]},"abN":{"cc":["bm0"],"cc.T":"bm0"},"JS":{"cc":["bA"],"cc.T":"bA"},"a1_":{"cc":["kx"]},"a7o":{"f6":["r0"],"cc":["r0"],"cc.T":"r0","f6.T":"r0"},"T2":{"Wd":["1"],"f6":["1"],"H_":["1"],"cc":["1"],"cc.T":"1","f6.T":"1"},"T3":{"We":["1"],"f6":["1"],"H_":["1"],"cc":["1"],"cc.T":"1","f6.T":"1"},"R4":{"cc":["1"],"cc.T":"1"},"Ib":{"N":[],"d":[]},"ae0":{"a9":["Ib"],"aP":[]},"ae_":{"bv":[],"aG":[],"d":[]},"Ic":{"N":[],"d":[]},"Ql":{"a9":["Ic"],"aP":[]},"Ii":{"bv":[],"aG":[],"d":[]},"FP":{"N":[],"d":[]},"Vi":{"a9":["FP"],"fR":[]},"B5":{"N":[],"d":[]},"Qz":{"a9":["B5"]},"Lj":{"at":[]},"ajG":{"a4":[],"d":[]},"lX":{"bf":[],"b2":[],"d":[]},"BC":{"bv":[],"aG":[],"d":[]},"Bz":{"bv":[],"aG":[],"d":[]},"rk":{"bv":[],"aG":[],"d":[]},"wB":{"bv":[],"aG":[],"d":[]},"BH":{"bv":[],"aG":[],"d":[]},"b4":{"bv":[],"aG":[],"d":[]},"ef":{"bv":[],"aG":[],"d":[]},"mY":{"bv":[],"aG":[],"d":[]},"l8":{"bv":[],"aG":[],"d":[]},"Lo":{"ho":["m8"],"b2":[],"d":[],"ho.T":"m8"},"tv":{"fM":[],"aG":[],"d":[]},"fB":{"bv":[],"aG":[],"d":[]},"eX":{"bv":[],"aG":[],"d":[]},"iS":{"bv":[],"aG":[],"d":[]},"v2":{"fM":[],"aG":[],"d":[]},"uA":{"ho":["fP"],"b2":[],"d":[],"ho.T":"fP"},"Et":{"fM":[],"aG":[],"d":[]},"wA":{"fM":[],"aG":[],"d":[]},"bGF":{"bf":[],"b2":[],"d":[]},"Dd":{"bv":[],"aG":[],"d":[]},"CK":{"bv":[],"aG":[],"d":[]},"bu":{"bv":[],"aG":[],"d":[]},"OW":{"N":[],"d":[]},"aoH":{"jf":[],"bD":[],"G":[]},"aoI":{"bf":[],"b2":[],"d":[]},"a6w":{"bv":[],"aG":[],"d":[]},"Ya":{"bv":[],"aG":[],"d":[]},"JE":{"bv":[],"aG":[],"d":[]},"Zf":{"bv":[],"aG":[],"d":[]},"a78":{"bv":[],"aG":[],"d":[]},"a79":{"bv":[],"aG":[],"d":[]},"a28":{"bv":[],"aG":[],"d":[]},"a3C":{"bv":[],"aG":[],"d":[]},"DD":{"bv":[],"aG":[],"d":[]},"ajN":{"bR":[],"bD":[],"G":[]},"a36":{"bv":[],"aG":[],"d":[]},"zt":{"bv":[],"aG":[],"d":[]},"a3D":{"fM":[],"aG":[],"d":[]},"a3_":{"a4":[],"d":[]},"Tl":{"fM":[],"aG":[],"d":[]},"ahR":{"bR":[],"bD":[],"G":[]},"a7k":{"a4":[],"d":[]},"Cp":{"fM":[],"aG":[],"d":[]},"oE":{"ho":["i8"],"b2":[],"d":[],"ho.T":"i8"},"tD":{"ho":["i8"],"b2":[],"d":[],"ho.T":"i8"},"adx":{"fM":[],"aG":[],"d":[]},"a8x":{"fM":[],"aG":[],"d":[]},"a7E":{"aG":[],"d":[]},"Mb":{"bv":[],"aG":[],"d":[]},"ii":{"bv":[],"aG":[],"d":[]},"Xl":{"bv":[],"aG":[],"d":[]},"uh":{"bv":[],"aG":[],"d":[]},"Yt":{"bv":[],"aG":[],"d":[]},"qk":{"bv":[],"aG":[],"d":[]},"CQ":{"bv":[],"aG":[],"d":[]},"iG":{"a4":[],"d":[]},"e4":{"a4":[],"d":[]},"ani":{"a9":["OW"]},"ts":{"bv":[],"aG":[],"d":[]},"Tu":{"O":[],"b5":["O"],"J":[],"aB":[]},"PV":{"ij":[],"aB":[]},"NW":{"d":[]},"NU":{"bD":[],"G":[]},"abO":{"ij":[],"aB":[]},"a0B":{"bv":[],"aG":[],"d":[]},"Zq":{"a4":[],"d":[]},"afT":{"at":[]},"tw":{"dO":[],"bf":[],"b2":[],"d":[]},"ajH":{"a4":[],"d":[]},"a0K":{"a4":[],"d":[]},"JR":{"a4":[],"d":[]},"a1b":{"kg":[]},"K0":{"N":[],"d":[]},"Hb":{"at":[]},"Sh":{"ky":["Hb"],"bf":[],"b2":[],"d":[],"ky.T":"Hb"},"agq":{"a9":["K0"]},"C7":{"N":[],"d":[]},"Rz":{"a9":["C7"]},"rh":{"bF":["eQ"],"at":[]},"Cc":{"N":[],"d":[]},"tA":{"a9":["Cc"],"fR":[],"aP":[]},"TX":{"N":[],"d":[]},"o6":{"FO":[],"kz":[]},"af7":{"bv":[],"aG":[],"d":[]},"ali":{"O":[],"b5":["O"],"J":[],"aB":[]},"RA":{"fM":[],"aG":[],"d":[]},"amc":{"a9":["TX"],"btV":[]},"af4":{"kP":[]},"ry":{"f6":["1"],"cc":["1"],"cc.T":"1","f6.T":"1"},"V7":{"f6":["1"],"cc":["1"],"cc.T":"1","f6.T":"1"},"V8":{"f6":["1"],"cc":["1"],"cc.T":"1","f6.T":"1"},"amk":{"f6":["r9"],"cc":["r9"],"cc.T":"r9","f6.T":"r9"},"afr":{"f6":["ou"],"cc":["ou"],"cc.T":"ou","f6.T":"ou"},"ap1":{"bF":["BE"],"at":[],"fR":[]},"eM":{"at":[]},"tM":{"eM":[],"at":[]},"KA":{"at":[]},"xi":{"N":[],"d":[]},"RQ":{"ky":["eM"],"bf":[],"b2":[],"d":[],"ky.T":"eM"},"Gt":{"a9":["xi"]},"a21":{"N":[],"d":[]},"ahh":{"a9":["xi"]},"a1A":{"a4":[],"d":[]},"KB":{"N":[],"d":[]},"blr":{"bA":[]},"yo":{"bA":[]},"yL":{"bA":[]},"tz":{"bA":[]},"RS":{"eM":[],"at":[]},"ahi":{"a9":["KB"]},"a8v":{"cc":["blr"],"cc.T":"blr"},"a6k":{"cc":["yo"],"cc.T":"yo"},"a7l":{"cc":["yL"],"cc.T":"yL"},"JQ":{"cc":["tz"],"cc.T":"tz"},"KH":{"N":[],"d":[]},"KJ":{"a9":["KH"]},"RV":{"bf":[],"b2":[],"d":[]},"qu":{"N":[],"d":[]},"lg":{"a9":["qu<1>"]},"hM":{"id":[]},"bq":{"hM":["1"],"id":[]},"a4":{"d":[]},"N":{"d":[]},"aG":{"d":[]},"bv":{"aG":[],"d":[]},"bD":{"G":[]},"il":{"bD":[],"G":[]},"us":{"bD":[],"G":[]},"jf":{"bD":[],"G":[]},"tP":{"hM":["1"],"id":[]},"b2":{"d":[]},"ho":{"b2":[],"d":[]},"bf":{"b2":[],"d":[]},"a3t":{"aG":[],"d":[]},"fM":{"aG":[],"d":[]},"a1z":{"aG":[],"d":[]},"Jh":{"bD":[],"G":[]},"F2":{"bD":[],"G":[]},"Na":{"bD":[],"G":[]},"bR":{"bD":[],"G":[]},"a3s":{"bR":[],"bD":[],"G":[]},"Ow":{"bR":[],"bD":[],"G":[]},"kF":{"bR":[],"bD":[],"G":[]},"a8u":{"bR":[],"bD":[],"G":[]},"ajD":{"bD":[],"G":[]},"ajI":{"d":[]},"nv":{"N":[],"d":[]},"E8":{"a9":["nv"]},"dH":{"xq":["1"]},"a2d":{"a4":[],"d":[]},"aho":{"bv":[],"aG":[],"d":[]},"qy":{"N":[],"d":[]},"GD":{"a9":["qy"]},"xs":{"oY":[]},"bB":{"a4":[],"d":[]},"xA":{"dO":[],"bf":[],"b2":[],"d":[]},"CL":{"N":[],"d":[]},"Sa":{"a9":["CL"],"fR":[]},"a2S":{"a4":[],"d":[]},"x1":{"aR":["eL"],"aC":["eL"],"aR.T":"eL","aC.T":"eL"},"wm":{"aR":["dt?"],"aC":["dt?"],"aR.T":"dt?","aC.T":"dt?"},"pk":{"aR":["D"],"aC":["D"],"aR.T":"D","aC.T":"D"},"I8":{"N":[],"d":[]},"Ia":{"N":[],"d":[]},"I7":{"N":[],"d":[]},"I5":{"N":[],"d":[]},"I9":{"N":[],"d":[]},"a0E":{"aR":["la"],"aC":["la"],"aR.T":"la","aC.T":"la"},"K6":{"aR":["aK"],"aC":["aK"],"aR.T":"aK","aC.T":"aK"},"Yv":{"aR":["er?"],"aC":["er?"],"aR.T":"er?","aC.T":"er?"},"a2W":{"N":[],"d":[]},"CP":{"a9":["1"],"aP":[]},"AZ":{"a9":["1"],"aP":[]},"adX":{"a9":["I8"],"aP":[]},"adZ":{"a9":["Ia"],"aP":[]},"adW":{"a9":["I7"],"aP":[]},"adV":{"a9":["I5"],"aP":[]},"adY":{"a9":["I9"],"aP":[]},"oJ":{"bf":[],"b2":[],"d":[]},"L4":{"jf":[],"bD":[],"G":[]},"ky":{"bf":[],"b2":[],"d":[]},"GH":{"jf":[],"bD":[],"G":[]},"dO":{"bf":[],"b2":[],"d":[]},"rw":{"a4":[],"d":[]},"Lb":{"N":[],"d":[]},"Sp":{"a9":["Lb"],"aP":[]},"ai1":{"a4":[],"d":[]},"abd":{"bF":["bQ"],"at":[]},"tt":{"aG":[],"d":[]},"GK":{"bR":[],"bD":[],"G":[]},"D5":{"tt":["aN"],"aG":[],"d":[],"tt.0":"aN"},"TD":{"lA":["aN","O"],"O":[],"b5":["O"],"J":[],"aB":[],"lA.0":"aN"},"SB":{"bf":[],"b2":[],"d":[]},"LB":{"N":[],"d":[]},"ap5":{"fK":["az"],"fK.T":"az"},"a0N":{"az":[]},"aiI":{"a9":["LB"]},"bsC":{"bf":[],"b2":[],"d":[]},"Dj":{"hT":[],"la":[]},"Ea":{"a4":[],"d":[]},"aiK":{"a4":[],"d":[]},"agj":{"at":[]},"aiJ":{"bv":[],"aG":[],"d":[]},"alt":{"O":[],"b5":["O"],"J":[],"aB":[]},"nh":{"oJ":["hy"],"bf":[],"b2":[],"d":[],"oJ.T":"hy"},"SL":{"N":[],"d":[]},"aj9":{"a9":["SL"],"fR":[]},"G0":{"eN":[],"eY":[]},"amq":{"bv":[],"aG":[],"d":[]},"alA":{"O":[],"b5":["O"],"J":[],"aB":[]},"a61":{"a4":[],"d":[]},"Xv":{"N":[],"d":[]},"ae6":{"xq":["G0"]},"ajk":{"a4":[],"d":[]},"Mo":{"a4":[],"d":[]},"hn":{"k0":[]},"xt":{"bf":[],"b2":[],"d":[]},"Mp":{"N":[],"d":[]},"hA":{"r6":[]},"ls":{"a9":["Mp"],"aP":[]},"ajC":{"dd":["~"]},"GW":{"vC":[]},"GV":{"vC":[]},"SY":{"vC":[]},"SZ":{"vC":[]},"ahy":{"z":["hA"],"at":[],"z.E":"hA"},"ahz":{"h8":["a6>?"],"at":[]},"dB":{"b2":[],"d":[]},"T1":{"bD":[],"G":[]},"pB":{"iy":[],"fj":["O"],"dP":[]},"a6C":{"fM":[],"aG":[],"d":[]},"H8":{"e_":["O","pB"],"O":[],"ar":["O","pB"],"J":[],"aB":[],"ar.1":"pB","e_.1":"pB","ar.0":"O"},"qQ":{"at":[]},"rG":{"N":[],"d":[]},"GY":{"a9":["rG"]},"yr":{"N":[],"d":[]},"DF":{"a9":["yr"],"aP":[]},"vK":{"O":[],"ar":["O","fP"],"J":[],"aB":[],"ar.1":"fP","ar.0":"O"},"MB":{"N":[],"d":[]},"vE":{"ji":["vE"],"ji.E":"vE"},"At":{"bf":[],"b2":[],"d":[]},"vJ":{"O":[],"b5":["O"],"J":[],"aB":[],"ji":["vJ"],"ji.E":"vJ"},"TE":{"O":[],"b5":["O"],"J":[],"aB":[]},"US":{"fM":[],"aG":[],"d":[]},"ao8":{"bR":[],"bD":[],"G":[]},"HB":{"fP":[],"iy":[],"fj":["O"],"dP":[]},"ajS":{"a9":["MB"]},"GZ":{"aG":[],"d":[]},"ajR":{"bR":[],"bD":[],"G":[]},"ag_":{"bv":[],"aG":[],"d":[]},"KQ":{"N":[],"d":[]},"P0":{"N":[],"d":[]},"uo":{"kg":[]},"S0":{"a9":["KQ"],"aP":[]},"S_":{"at":[]},"ahr":{"at":[]},"Uy":{"a9":["P0"],"aP":[]},"Ux":{"at":[]},"btd":{"bS":["1"],"jV":[],"id":[]},"DH":{"a4":[],"d":[]},"yt":{"at":[]},"DI":{"N":[],"d":[]},"a6E":{"mj":[]},"vF":{"nC":[],"iY":[],"at":[],"mj":[]},"ajW":{"a9":["DI"]},"jY":{"ek":["1"],"fr":["1"],"dd":["1"]},"MD":{"ek":["1"],"fr":["1"],"dd":["1"],"ek.T":"1"},"DR":{"N":[],"d":[]},"akA":{"a9":["DR"],"aNG":[]},"uB":{"a4":[],"qZ":[],"d":[]},"DZ":{"bf":[],"b2":[],"d":[]},"uL":{"N":[],"d":[]},"zS":{"bf":[],"b2":[],"d":[]},"NV":{"N":[],"d":[]},"h8":{"at":[]},"alT":{"a9":["uL"]},"TQ":{"a9":["NV"]},"dv":{"h8":["1"],"at":[]},"lK":{"h8":["1"],"at":[]},"TO":{"lK":["1"],"h8":["1"],"at":[]},"NQ":{"lK":["1"],"h8":["1"],"at":[],"dv.T":"1","lK.T":"1"},"z6":{"lK":["q"],"h8":["q"],"at":[],"dv.T":"q","lK.T":"q"},"NR":{"lK":["h?"],"h8":["h?"],"at":[],"dv.T":"h?","lK.T":"h?"},"Er":{"N":[],"d":[]},"bqj":{"mA":["S"]},"Hc":{"a9":["Er<1>"]},"am6":{"bf":[],"b2":[],"d":[]},"Y8":{"mA":["S"]},"a8z":{"mA":["S"],"fR":[],"mA.T":"S"},"Es":{"at":[]},"a8F":{"at":[]},"alQ":{"h8":["lC?"],"at":[],"dv.T":"lC?"},"SO":{"bf":[],"b2":[],"d":[]},"GU":{"N":[],"d":[]},"kX":{"a9":["GU<1>"]},"ek":{"fr":["1"],"dd":["1"]},"DE":{"dd":["1"]},"fr":{"dd":["1"]},"ag9":{"cc":["kx"],"cc.T":"kx"},"N2":{"ek":["1"],"fr":["1"],"dd":["1"]},"Nk":{"ek":["1"],"fr":["1"],"dd":["1"]},"a8M":{"a4":[],"d":[]},"O3":{"jT":["1"],"jT.T":"1"},"O4":{"bf":[],"b2":[],"d":[]},"zb":{"at":[]},"Hf":{"N":[],"d":[]},"Hd":{"bS":["id"],"jV":[],"id":[],"bS.T":"id"},"kJ":{"uZ":[]},"a9C":{"uZ":[]},"Ua":{"a9":["Hf"]},"Kt":{"mj":[]},"k1":{"m2":[],"kg":[]},"kI":{"k1":[],"m2":[],"kg":[]},"Ez":{"k1":[],"m2":[],"kg":[]},"no":{"k1":[],"m2":[],"kg":[]},"pb":{"k1":[],"m2":[],"kg":[]},"abz":{"k1":[],"m2":[],"kg":[]},"TZ":{"bf":[],"b2":[],"d":[]},"vz":{"ji":["vz"],"ji.E":"vz"},"O6":{"N":[],"d":[]},"O7":{"a9":["O6"]},"nC":{"iY":[],"at":[],"mj":[]},"zc":{"kg":[]},"zf":{"nC":[],"iY":[],"at":[],"mj":[]},"y3":{"a4":[],"d":[]},"a8W":{"a4":[],"d":[]},"JG":{"a4":[],"d":[]},"YA":{"a4":[],"d":[]},"a2t":{"a4":[],"d":[]},"O8":{"N":[],"d":[]},"U1":{"bf":[],"b2":[],"d":[]},"U3":{"N":[],"d":[]},"EA":{"a9":["O8"],"aP":[]},"amf":{"a9":["U3"]},"U2":{"at":[]},"ame":{"bv":[],"aG":[],"d":[]},"alz":{"O":[],"b5":["O"],"J":[],"aB":[]},"alR":{"h8":["Y?"],"at":[],"dv.T":"Y?"},"hQ":{"bA":[]},"O2":{"f6":["hQ"],"cc":["hQ"],"cc.T":"hQ","f6.T":"hQ"},"Eb":{"N":[],"d":[]},"pJ":{"kD":[],"eN":[],"eY":[]},"pK":{"kO":[],"eN":[],"eY":[]},"EB":{"at":[]},"p7":{"a9":["1"],"aP":[]},"Dw":{"at":[]},"EC":{"N":[],"d":[]},"EE":{"bf":[],"b2":[],"d":[]},"amo":{"hR":[],"a9":["EC"],"at":[]},"a91":{"at":[]},"Or":{"N":[],"d":[]},"amE":{"a9":["Or"]},"amF":{"oJ":["C"],"bf":[],"b2":[],"d":[],"oJ.T":"C"},"bl":{"EQ":[]},"zq":{"N":[],"d":[]},"Ot":{"N":[],"d":[]},"zp":{"at":[]},"Ue":{"a9":["zq"]},"Ou":{"at":[]},"Ud":{"a9":["Ot"]},"amK":{"bf":[],"b2":[],"d":[]},"Hj":{"bv":[],"aG":[],"d":[]},"a9q":{"a4":[],"d":[]},"amQ":{"bR":[],"bD":[],"G":[]},"TM":{"O":[],"b5":["O"],"Ef":[],"J":[],"aB":[]},"kL":{"aG":[],"d":[]},"ET":{"kL":[],"aG":[],"d":[]},"a9J":{"aG":[],"d":[]},"mm":{"kL":[],"aG":[],"d":[]},"a9F":{"kL":[],"aG":[],"d":[]},"EW":{"bR":[],"bD":[],"G":[]},"Li":{"ho":["nc"],"b2":[],"d":[],"ho.T":"nc"},"a9E":{"a4":[],"d":[]},"amU":{"kL":[],"aG":[],"d":[]},"amV":{"bv":[],"aG":[],"d":[]},"alC":{"dk":[],"b5":["dk"],"J":[],"aB":[]},"a9D":{"a4":[],"d":[]},"amT":{"bv":[],"aG":[],"d":[]},"OC":{"iT":["1","2"],"aG":[],"d":[]},"OD":{"bR":[],"bD":[],"G":[]},"OG":{"at":[]},"a9Q":{"bv":[],"aG":[],"d":[]},"Ha":{"O":[],"b5":["O"],"J":[],"aB":[]},"a9P":{"at":[]},"Rm":{"at":[]},"aag":{"a4":[],"d":[]},"OX":{"N":[],"d":[]},"Ur":{"a9":["OX"]},"NN":{"O":[],"b5":["O"],"J":[],"aB":[]},"Ej":{"O":[],"b5":["O"],"J":[],"aB":[]},"aaJ":{"bv":[],"aG":[],"d":[]},"aaI":{"bv":[],"aG":[],"d":[]},"aaQ":{"bv":[],"aG":[],"d":[]},"BU":{"dO":[],"bf":[],"b2":[],"d":[]},"bGJ":{"dO":[],"bf":[],"b2":[],"d":[]},"ajJ":{"a4":[],"d":[]},"mq":{"a4":[],"d":[]},"JT":{"bA":[]},"wR":{"bA":[]},"wT":{"bA":[]},"wS":{"bA":[]},"jb":{"bA":[]},"qm":{"jb":[],"bA":[]},"qo":{"jb":[],"bA":[]},"x9":{"jb":[],"bA":[]},"x5":{"jb":[],"bA":[]},"x6":{"jb":[],"bA":[]},"ld":{"jb":[],"bA":[]},"tE":{"jb":[],"bA":[]},"qp":{"jb":[],"bA":[]},"x7":{"jb":[],"bA":[]},"x8":{"jb":[],"bA":[]},"qn":{"jb":[],"bA":[]},"r7":{"bA":[]},"aC7":{"bA":[]},"r9":{"bA":[]},"ou":{"bA":[]},"ut":{"bA":[]},"uG":{"bA":[]},"ny":{"bA":[]},"vd":{"bA":[]},"mv":{"bA":[]},"va":{"bA":[]},"a0Y":{"bA":[]},"jr":{"iy":[],"fj":["O"],"dP":[]},"rL":{"N":[],"d":[]},"U8":{"N":[],"d":[]},"Pt":{"N":[],"d":[]},"Ub":{"a9":["rL"],"aP":[]},"U9":{"a9":["U8"],"aP":[]},"UN":{"a9":["Pt"]},"Je":{"bF":["BE"],"at":[],"fR":[]},"zK":{"N":[],"d":[]},"RD":{"bf":[],"b2":[],"d":[]},"aoa":{"a9":["zK"]},"R2":{"at":[]},"Fv":{"a4":[],"d":[]},"Ie":{"N":[],"d":[]},"ER":{"N":[],"d":[]},"cY":{"bv":[],"aG":[],"d":[]},"Qk":{"a9":["Ie"]},"a5S":{"N":[],"d":[]},"a8Q":{"N":[],"d":[]},"a8D":{"N":[],"d":[]},"a9u":{"N":[],"d":[]},"Ee":{"aR":["lz"],"aC":["lz"],"aR.T":"lz","aC.T":"lz"},"N4":{"N":[],"d":[]},"a0C":{"N":[],"d":[]},"a0L":{"N":[],"d":[]},"Lx":{"N":[],"d":[]},"Xu":{"N":[],"d":[]},"FC":{"N":[],"d":[]},"FD":{"a9":["FC<1>"]},"PO":{"bF":["FE"],"at":[]},"FK":{"N":[],"d":[]},"HG":{"a9":["FK<1>"]},"AD":{"bf":[],"b2":[],"d":[]},"Ta":{"bf":[],"b2":[],"d":[]},"abI":{"a4":[],"d":[]},"Tm":{"aG":[],"d":[]},"akU":{"bR":[],"bD":[],"G":[]},"Rn":{"hM":["1"],"id":[]},"rq":{"fM":[],"aG":[],"d":[]},"aoX":{"bR":[],"bD":[],"G":[]},"a9n":{"fM":[],"aG":[],"d":[]},"Vh":{"bf":[],"b2":[],"d":[]},"FM":{"a4":[],"d":[]},"aoY":{"bv":[],"aG":[],"d":[]},"alM":{"O":[],"b5":["O"],"J":[],"aB":[]},"FO":{"kz":[]},"ap3":{"ho":["ms"],"b2":[],"d":[],"ho.T":"ms"},"aeh":{"bv":[],"aG":[],"d":[]},"TK":{"O":[],"b5":["O"],"J":[],"aB":[]},"Q3":{"N":[],"d":[]},"ap7":{"a9":["Q3"]},"lc":{"lf":[]},"oD":{"lf":[]},"a6m":{"avf":[]},"a2M":{"brr":[]},"a2J":{"cv":[]},"ae9":{"fK":["fW"],"fK.T":"fW"},"Xz":{"fW":[]},"XA":{"fW":[]},"XB":{"fW":[]},"XC":{"fW":[]},"XD":{"fW":[]},"XE":{"fW":[]},"XF":{"fW":[]},"In":{"fW":[]},"XG":{"fW":[]},"XH":{"fW":[]},"Io":{"fW":[]},"XI":{"fW":[]},"XJ":{"fW":[]},"mC":{"ji":["mC<1>"],"ji.E":"mC<1>"},"a2E":{"a4":[],"d":[]},"anj":{"bD":[],"G":[]},"Qm":{"ia":["mP"]},"Ug":{"ia":["aP"]},"RR":{"ia":["eM"]},"Aj":{"ia":["~"]},"T6":{"ia":["yt"]},"hz":{"ia":["1"]},"dK":{"ia":["~"]},"dc":{"ia":["bF<1>"]},"UE":{"ia":["rg"]},"mH":{"ia":["rh"]},"Vc":{"ia":["~"]},"aoT":{"ib":["~","Aj"]},"ae2":{"ib":["mP","Qm"]},"aob":{"ib":["aP","Ug"],"aP":[]},"ahe":{"ib":["eM","RR"]},"GM":{"ib":["~","Aj"]},"ajU":{"ib":["yt","T6"]},"SM":{"ib":["1","hz<1>"]},"agy":{"ib":["~","dK"]},"Hq":{"ib":["bF<1>","dc<1>"]},"anB":{"ib":["rg","UE"]},"anR":{"ib":["rh","mH"]},"a2j":{"aA":[]},"ahq":{"fK":["aA"],"fK.T":"aA"},"ZF":{"aA":[]},"ZG":{"aA":[]},"ZH":{"aA":[]},"ZI":{"aA":[]},"ZJ":{"aA":[]},"ZK":{"aA":[]},"ZL":{"aA":[]},"ZM":{"aA":[]},"ZN":{"aA":[]},"ZO":{"aA":[]},"ZP":{"aA":[]},"ZQ":{"aA":[]},"ZR":{"aA":[]},"Jo":{"aA":[]},"ZS":{"aA":[]},"ZT":{"aA":[]},"Jp":{"aA":[]},"ZU":{"aA":[]},"ZV":{"aA":[]},"ZW":{"aA":[]},"ZX":{"aA":[]},"ZY":{"aA":[]},"ZZ":{"aA":[]},"a__":{"aA":[]},"a_0":{"aA":[]},"Jq":{"aA":[]},"a_1":{"aA":[]},"a_2":{"aA":[]},"a_3":{"aA":[]},"a_4":{"aA":[]},"a_5":{"aA":[]},"a_6":{"aA":[]},"a_7":{"aA":[]},"a_8":{"aA":[]},"a_9":{"aA":[]},"a_a":{"aA":[]},"a_b":{"aA":[]},"a_c":{"aA":[]},"a_d":{"aA":[]},"a_e":{"aA":[]},"a_f":{"aA":[]},"a_g":{"aA":[]},"a_h":{"aA":[]},"a_i":{"aA":[]},"a_j":{"aA":[]},"a_k":{"aA":[]},"a_l":{"aA":[]},"a_m":{"aA":[]},"a_n":{"aA":[]},"a_o":{"aA":[]},"a_p":{"aA":[]},"Jr":{"aA":[]},"a_q":{"aA":[]},"a_r":{"aA":[]},"a_s":{"aA":[]},"a_t":{"aA":[]},"a_u":{"aA":[]},"a_v":{"aA":[]},"a_w":{"aA":[]},"a_x":{"aA":[]},"a_y":{"aA":[]},"a_z":{"aA":[]},"a_A":{"aA":[]},"a_B":{"aA":[]},"a_C":{"aA":[]},"a_D":{"aA":[]},"a_E":{"aA":[]},"a_F":{"aA":[]},"a_G":{"aA":[]},"a_H":{"aA":[]},"a_I":{"aA":[]},"a_J":{"aA":[]},"a_K":{"aA":[]},"a_L":{"aA":[]},"a_M":{"aA":[]},"a_N":{"aA":[]},"a_O":{"aA":[]},"a_P":{"aA":[]},"a_Q":{"aA":[]},"a_R":{"aA":[]},"a_S":{"aA":[]},"a_T":{"aA":[]},"a_U":{"aA":[]},"a_V":{"aA":[]},"a_W":{"aA":[]},"a_X":{"aA":[]},"a_Y":{"aA":[]},"Js":{"aA":[]},"a_Z":{"aA":[]},"a0_":{"aA":[]},"a00":{"aA":[]},"a01":{"aA":[]},"a02":{"aA":[]},"a03":{"aA":[]},"a04":{"aA":[]},"Jt":{"aA":[]},"a05":{"aA":[]},"a06":{"aA":[]},"a07":{"aA":[]},"a08":{"aA":[]},"a09":{"aA":[]},"a0a":{"aA":[]},"a0b":{"aA":[]},"a0c":{"aA":[]},"a0d":{"aA":[]},"a0e":{"aA":[]},"a0f":{"aA":[]},"a0g":{"aA":[]},"a0h":{"aA":[]},"Ju":{"aA":[]},"a0i":{"aA":[]},"Jv":{"aA":[]},"a0j":{"aA":[]},"a0k":{"aA":[]},"a0l":{"aA":[]},"a42":{"aw":[]},"a43":{"aw":[]},"a44":{"aw":[]},"a45":{"aw":[]},"a46":{"aw":[]},"a47":{"aw":[]},"a48":{"aw":[]},"a49":{"aw":[]},"a4a":{"aw":[]},"a4b":{"aw":[]},"a4c":{"aw":[]},"a4d":{"aw":[]},"a4e":{"aw":[]},"LR":{"aw":[]},"a4f":{"aw":[]},"a4g":{"aw":[]},"LS":{"aw":[]},"a4h":{"aw":[]},"a4i":{"aw":[]},"a4j":{"aw":[]},"a4k":{"aw":[]},"a4l":{"aw":[]},"a4m":{"aw":[]},"a4n":{"aw":[]},"a4o":{"aw":[]},"LT":{"aw":[]},"a4p":{"aw":[]},"a4q":{"aw":[]},"a4r":{"aw":[]},"a4s":{"aw":[]},"a4t":{"aw":[]},"a4u":{"aw":[]},"a4v":{"aw":[]},"a4w":{"aw":[]},"a4x":{"aw":[]},"a4y":{"aw":[]},"a4z":{"aw":[]},"a4A":{"aw":[]},"a4B":{"aw":[]},"a4C":{"aw":[]},"a4D":{"aw":[]},"a4E":{"aw":[]},"a4F":{"aw":[]},"a4G":{"aw":[]},"a4H":{"aw":[]},"a4I":{"aw":[]},"a4J":{"aw":[]},"a4K":{"aw":[]},"a4L":{"aw":[]},"a4M":{"aw":[]},"a4N":{"aw":[]},"LU":{"aw":[]},"a4O":{"aw":[]},"a4P":{"aw":[]},"a4Q":{"aw":[]},"a4R":{"aw":[]},"a4S":{"aw":[]},"a4T":{"aw":[]},"a4U":{"aw":[]},"a4V":{"aw":[]},"a4W":{"aw":[]},"a4X":{"aw":[]},"a4Y":{"aw":[]},"a4Z":{"aw":[]},"a5_":{"aw":[]},"a50":{"aw":[]},"a51":{"aw":[]},"a52":{"aw":[]},"a53":{"aw":[]},"a54":{"aw":[]},"a55":{"aw":[]},"a56":{"aw":[]},"a57":{"aw":[]},"a58":{"aw":[]},"a59":{"aw":[]},"a5a":{"aw":[]},"a5b":{"aw":[]},"a5c":{"aw":[]},"a5d":{"aw":[]},"a5e":{"aw":[]},"a5f":{"aw":[]},"a5g":{"aw":[]},"a5h":{"aw":[]},"a5i":{"aw":[]},"a5j":{"aw":[]},"a5k":{"aw":[]},"a5l":{"aw":[]},"a5m":{"aw":[]},"LV":{"aw":[]},"a5n":{"aw":[]},"a5o":{"aw":[]},"a5p":{"aw":[]},"a5q":{"aw":[]},"a5r":{"aw":[]},"a5s":{"aw":[]},"a5t":{"aw":[]},"LW":{"aw":[]},"a5u":{"aw":[]},"a5v":{"aw":[]},"a5w":{"aw":[]},"a5x":{"aw":[]},"a5y":{"aw":[]},"a5z":{"aw":[]},"a5A":{"aw":[]},"a5B":{"aw":[]},"a5C":{"aw":[]},"a5D":{"aw":[]},"a5E":{"aw":[]},"a5F":{"aw":[]},"a5G":{"aw":[]},"LX":{"aw":[]},"a5H":{"aw":[]},"LY":{"aw":[]},"a5I":{"aw":[]},"a5J":{"aw":[]},"a5K":{"aw":[]},"abP":{"az":[]},"abQ":{"az":[]},"abR":{"az":[]},"abS":{"az":[]},"abT":{"az":[]},"abU":{"az":[]},"abV":{"az":[]},"abW":{"az":[]},"abX":{"az":[]},"abY":{"az":[]},"abZ":{"az":[]},"ac_":{"az":[]},"ac0":{"az":[]},"PW":{"az":[]},"ac1":{"az":[]},"ac2":{"az":[]},"PX":{"az":[]},"ac3":{"az":[]},"ac4":{"az":[]},"ac5":{"az":[]},"ac6":{"az":[]},"ac7":{"az":[]},"ac8":{"az":[]},"ac9":{"az":[]},"aca":{"az":[]},"PY":{"az":[]},"acb":{"az":[]},"acc":{"az":[]},"acd":{"az":[]},"ace":{"az":[]},"acf":{"az":[]},"acg":{"az":[]},"ach":{"az":[]},"aci":{"az":[]},"acj":{"az":[]},"ack":{"az":[]},"acl":{"az":[]},"acm":{"az":[]},"acn":{"az":[]},"aco":{"az":[]},"acp":{"az":[]},"acq":{"az":[]},"acr":{"az":[]},"acs":{"az":[]},"act":{"az":[]},"acu":{"az":[]},"acv":{"az":[]},"acw":{"az":[]},"acx":{"az":[]},"acy":{"az":[]},"acz":{"az":[]},"PZ":{"az":[]},"acA":{"az":[]},"acB":{"az":[]},"acC":{"az":[]},"acD":{"az":[]},"acE":{"az":[]},"acF":{"az":[]},"acG":{"az":[]},"acH":{"az":[]},"acI":{"az":[]},"acJ":{"az":[]},"acK":{"az":[]},"acL":{"az":[]},"acM":{"az":[]},"acN":{"az":[]},"acO":{"az":[]},"acP":{"az":[]},"acQ":{"az":[]},"acR":{"az":[]},"acS":{"az":[]},"acT":{"az":[]},"acU":{"az":[]},"acV":{"az":[]},"acW":{"az":[]},"acX":{"az":[]},"acY":{"az":[]},"acZ":{"az":[]},"ad_":{"az":[]},"ad0":{"az":[]},"ad1":{"az":[]},"ad2":{"az":[]},"ad3":{"az":[]},"ad4":{"az":[]},"ad5":{"az":[]},"ad6":{"az":[]},"ad7":{"az":[]},"ad8":{"az":[]},"Q_":{"az":[]},"ad9":{"az":[]},"ada":{"az":[]},"adb":{"az":[]},"adc":{"az":[]},"add":{"az":[]},"ade":{"az":[]},"adf":{"az":[]},"Q0":{"az":[]},"adg":{"az":[]},"adh":{"az":[]},"adi":{"az":[]},"adj":{"az":[]},"adk":{"az":[]},"adl":{"az":[]},"adm":{"az":[]},"adn":{"az":[]},"ado":{"az":[]},"adp":{"az":[]},"adq":{"az":[]},"adr":{"az":[]},"ads":{"az":[]},"Q1":{"az":[]},"adt":{"az":[]},"Q2":{"az":[]},"adu":{"az":[]},"adv":{"az":[]},"adw":{"az":[]},"a2k":{"aw":[]},"aj3":{"fK":["aw"],"fK.T":"aw"},"a2m":{"az":[]},"ap6":{"fK":["az"],"fK.T":"az"},"wD":{"N":[],"d":[]},"afa":{"a9":["wD"]},"Zp":{"N":[],"d":[]},"Jj":{"a9":["1"]},"BK":{"il":[],"bD":[],"G":[],"bm2":[]},"N8":{"N":[],"d":[]},"FB":{"bf":[],"b2":[],"d":[]},"a7s":{"a9":["N8"]},"V0":{"jf":[],"bD":[],"G":[]},"Gq":{"a4":[],"d":[]},"UU":{"N":[],"d":[]},"ab6":{"a9":["UU"],"aP":[]},"cX":{"zT":["1"],"ae":["1"],"f":["1"],"ao":["1"],"z":["1"],"ae.E":"1","z.E":"1"},"oC":{"mu":["1","2"],"yd":["1","2"],"HD":["1","2"],"a6":["1","2"]},"NA":{"O":[],"J":[],"aB":[]},"qw":{"a4":[],"d":[]},"akQ":{"aG":[],"d":[]},"Aa":{"N":[],"d":[]},"Rk":{"a9":["Aa"]},"KS":{"at":[]},"KR":{"at":[],"fR":[]},"h9":{"iQ":[]},"ic":{"h9":[],"iQ":[]},"jp":{"iQ":[]},"a8G":{"n_":["ex","a6"]},"am4":{"cm":["ex","a6"],"cm.S":"ex","cm.T":"a6"},"am3":{"cm":["a6","ex"],"cm.S":"a6","cm.T":"ex"},"Cj":{"a4":[],"d":[]},"QK":{"N":[],"d":[]},"aeF":{"a9":["QK"]},"a2o":{"d7":[]},"CB":{"cv":[]},"tX":{"bf":[],"b2":[],"d":[]},"BN":{"a4":[],"d":[]},"ma":{"iC":["1"],"hn":["1"],"k0":[]},"iC":{"hn":["1"],"k0":[]},"Rl":{"ek":["1"],"fr":["1"],"dd":["1"],"ek.T":"1"},"Dq":{"a4":[],"d":[]},"oH":{"uN":[]},"a9j":{"uN":[]},"zo":{"uN":[]},"DC":{"hn":["~"],"k0":[]},"af9":{"at":[]},"CD":{"at":[]},"a2q":{"ky":["CD"],"bf":[],"b2":[],"d":[],"ky.T":"CD"},"D6":{"II":["1"]},"a2B":{"d7":[]},"Yo":{"rl":["IC"]},"BT":{"dx":[],"cD":["dx"]},"JJ":{"rl":["1"]},"a0z":{"rl":["dx"]},"OZ":{"OY":[]},"wo":{"II":["1"]},"Yy":{"wo":["1"],"II":["1"]},"D7":{"wo":["1"],"D6":["1"],"II":["1"]},"CI":{"ae":["1"],"a0O":["1"],"f":["1"],"ao":["1"],"z":["1"],"ae.E":"1","z.E":"1"},"Sv":{"z":["1"],"z.E":"1"},"a2C":{"N":[],"d":[]},"ahA":{"il":[],"bD":[],"G":[],"bm2":[]},"Yi":{"ax1":[]},"IK":{"ax1":[]},"Bi":{"zA":["f"],"bz":["f"],"bz.T":"f"},"Bx":{"cv":[]},"IS":{"cW":["h","h","1"],"a6":["h","1"],"cW.V":"1","cW.K":"h","cW.C":"h"},"qS":{"bF":["jl<1,2>"],"at":[]},"XO":{"uZ":[]},"Ly":{"N":[],"d":[]},"Sz":{"a9":["Ly"]},"KG":{"a4":[],"d":[]},"DA":{"a4":[],"d":[]},"DB":{"a4":[],"d":[]},"DJ":{"N":[],"d":[]},"T7":{"a9":["DJ<1,2>"]},"Gs":{"a4":[],"d":[]},"ME":{"a4":[],"d":[]},"MF":{"a4":[],"d":[]},"vn":{"a4":[],"d":[]},"MG":{"a4":[],"d":[]},"MH":{"a4":[],"d":[]},"Gc":{"vt":[]},"Ge":{"vt":[]},"Gd":{"vt":[]},"a3G":{"cv":[]},"xU":{"cD":["xU"]},"tG":{"N":[],"d":[]},"RM":{"a9":["tG"],"aP":[]},"Mx":{"N":[],"d":[]},"ajM":{"a9":["Mx"]},"a72":{"cv":[]},"lG":{"cD":["bva"]},"Nb":{"cv":[]},"pZ":{"bg":["F<2>"],"bk":["F<2>"],"bN":[]},"i_":{"hh":["1"]},"B3":{"i_":["1"],"hh":["1"]},"fw":{"pZ":["1","2"],"bg":["F<2>"],"bk":["F<2>"],"bN":[],"bg.0":"F<2>","fw.0":"1","fw.T":"2","bk.0":"F<2>"},"on":{"f4":["1","2"],"mS":["1","2"],"hw":["1","2"],"c1":["2"],"df":["F<2>"],"aU":["F<2>"],"aU.0":"F<2>","hw.T":"2","f4.0":"1","f4.T":"2","c1.T":"2"},"mS":{"hw":["1","2"],"c1":["2"],"aU":["F<2>"]},"f4":{"mS":["1","2"],"hw":["1","2"],"c1":["2"],"aU":["F<2>"]},"F3":{"bg":["F<2>"],"bk":["F<2>"],"bN":[]},"mX":{"hh":["1"]},"wi":{"mX":["1"],"hh":["1"]},"Is":{"F3":["1","2"],"bg":["F<2>"],"bk":["F<2>"],"bN":[],"bg.0":"F<2>","bk.0":"F<2>"},"B4":{"P_":["1","2"],"mS":["1","2"],"hw":["1","2"],"c1":["2"],"df":["F<2>"],"aU":["F<2>"],"aU.0":"F<2>","hw.T":"2","c1.T":"2"},"P_":{"mS":["1","2"],"hw":["1","2"],"c1":["2"],"aU":["F<2>"]},"fX":{"F":["1"]},"f3":{"F":["1"]},"eC":{"F":["1"]},"df":{"aU":["1"]},"e5":{"bN":[]},"bg":{"bk":["1"],"bN":[]},"e2":{"kH":["1"]},"Ap":{"kH":["1"]},"E3":{"bN":[]},"Z1":{"d7":[]},"H3":{"kH":["1"]},"nu":{"bk":["2"],"bk.0":"2"},"rI":{"bk":["2"],"bk.0":"2"},"Hg":{"kH":["2"]},"zX":{"bg":["1"],"bk":["1"],"bN":[],"bg.0":"1","bk.0":"1"},"FL":{"aU":["1"],"aU.0":"1"},"mE":{"bg":["F<1>"],"bk":["F<1>"],"bN":[]},"fY":{"mE":["1"],"bg":["F<1>"],"bk":["F<1>"],"bN":[],"bg.0":"F<1>","fY.T":"1","bk.0":"F<1>"},"lU":{"hk":["1"],"fT":["1"],"c1":["1"],"df":["F<1>"],"eG":["1"],"aU":["F<1>"],"aU.0":"F<1>","c1.T":"1","fT.T":"1","hk.T":"1"},"hk":{"fT":["1"],"c1":["1"],"aU":["F<1>"]},"ci":{"Vf":["1"]},"p_":{"bg":["2"],"bk":["2"],"bN":[]},"aQ":{"bX":["1"]},"cu":{"aQ":["1"],"bX":["1"]},"f5":{"p_":["1","2"],"bg":["2"],"bk":["2"],"bN":[],"bg.0":"2","f5.0":"1","f5.T":"2","bk.0":"2"},"mT":{"fl":["1","2"],"df":["2"],"aU":["2"],"aU.0":"2","fl.0":"1","fl.T":"2"},"fl":{"aU":["2"]},"iF":{"e8":["1"],"bg":["1"],"bk":["1"],"bN":[]},"eg":{"iF":["1"],"e8":["1"],"bg":["1"],"bk":["1"],"bN":[],"e8.0":"1","bg.0":"1","eg.T":"1","bk.0":"1"},"ix":{"ew":["1"],"df":["1"],"bJ":["1"],"aU":["1"],"aU.0":"1","ew.0":"1"},"ew":{"aU":["1"]},"em":{"En":["1"]},"fA":{"En":["1"]},"JM":{"bz":["1"],"bz.T":"1"},"IB":{"F9":["1"],"zA":["1"],"ei":["1"],"bz":["1"],"bz.T":"1"},"vo":{"bz":["1"],"bz.T":"1"},"F9":{"zA":["1"],"ei":["1"],"bz":["1"]},"Hv":{"bz":["1"],"bz.T":"1"},"SP":{"ei":["1"]},"Nq":{"N":[],"d":[]},"Sg":{"bf":[],"b2":[],"d":[]},"a7U":{"b2":[],"d":[]},"ale":{"a9":["Nq"]},"ald":{"bD":[],"G":[]},"CV":{"a38":[]},"N3":{"N":[],"d":[]},"Tf":{"a9":["N3"]},"DX":{"a4":[],"d":[]},"akC":{"bD":[],"G":[]},"abj":{"a4":[],"d":[]},"O9":{"N":[],"d":[]},"U0":{"a9":["O9"],"aP":[]},"abl":{"rq":[],"fM":[],"aG":[],"d":[]},"abk":{"uK":[],"r4":["k2"],"kj":["k2"],"O":[],"ar":["dk","k2"],"Ef":[],"J":[],"aB":[],"ar.1":"k2","kj.0":"k2","ar.0":"dk"},"JF":{"ar.1":"bGs","kj.0":"bGs","ar.0":"dk"},"Os":{"N":[],"d":[]},"Hi":{"bv":[],"aG":[],"d":[]},"amH":{"a9":["Os"],"aP":[]},"amG":{"O":[],"b5":["O"],"J":[],"aB":[]},"a1J":{"nH":[],"cD":["nH"]},"Gr":{"rd":[],"cD":["aad"]},"nH":{"cD":["nH"]},"a9Y":{"nH":[],"cD":["nH"]},"aad":{"cD":["aad"]},"aae":{"cD":["aad"]},"aaf":{"cv":[]},"EZ":{"lh":[],"cv":[]},"F_":{"cD":["aad"]},"rd":{"cD":["aad"]},"iA":{"cw":[]},"Lq":{"iA":[],"cw":[]},"xT":{"e0":[],"cw":[]},"e0":{"cw":[]},"nN":{"e7":[]},"abD":{"cw":[]},"S1":{"ei":["1"]},"aau":{"lh":[],"cv":[]},"m9":{"bA":[]},"nl":{"bA":[]},"md":{"bA":[]},"ns":{"bA":[]},"tS":{"bA":[]},"Q4":{"l1":[]},"A_":{"hS":[]},"Xk":{"N":[],"d":[]},"Zi":{"N":[],"d":[]},"Ds":{"a4":[],"d":[]},"FV":{"cE":[]},"nT":{"by":[]},"VA":{"FW":["1","nT"],"FW.1":"nT"},"nS":{"jd":[]},"nV":{"jd":[]},"nX":{"jd":[]},"nR":{"jd":[]},"nY":{"jd":[]},"nW":{"brw":[],"jd":[]},"nU":{"brv":[],"jd":[]},"mw":{"bru":[],"jd":[]},"px":{"zu":[]},"fS":{"fS.1":"2"},"Vz":{"fS":["1","nS"],"fS.1":"nS"},"VC":{"fS":["1","nV"],"fS.1":"nV"},"VD":{"fS":["1","nX"],"fS.1":"nX"},"Vx":{"fS":["1","nR"],"fS.1":"nR"},"VE":{"fS":["1","nY"],"fS.1":"nY"},"rT":{"fS":["1","nW"],"fS.1":"nW"},"VB":{"fS":["1","nU"],"fS.1":"nU"},"Vy":{"fS":["1","mw"],"fS.1":"mw"},"pw":{"pw.1":"2"},"VI":{"pw":["1","px"],"pw.1":"px"},"FX":{"D2":[]},"aif":{"D2":[]},"Qe":{"iN":[]},"A0":{"ai":[]},"nZ":{"bY":[]},"VJ":{"FY":["1","nZ"],"FY.1":"nZ"},"nQ":{"mo":[]},"pr":{"mo":[]},"py":{"mo":[]},"pu":{"mo":[]},"pv":{"mo":[]},"ps":{"brh":[],"mo":[]},"io":{"io.1":"2"},"Vw":{"io":["1","nQ"],"io.1":"nQ"},"Vu":{"io":["1","pr"],"io.1":"pr"},"VK":{"io":["1","py"],"io.1":"py"},"VF":{"io":["1","pu"],"io.1":"pu"},"VH":{"io":["1","pv"],"io.1":"pv"},"Vv":{"io":["1","ps"],"io.1":"ps"},"YC":{"N":[],"d":[]},"xa":{"cu":["f?"],"aQ":["f?"],"bX":["f?"],"aV":["f"],"aV.T":"f","aQ.0":"f?"},"xb":{"cu":["h?"],"aQ":["h?"],"bX":["h?"],"aQ.0":"h?"},"a1F":{"N":[],"d":[]},"a1D":{"N":[],"d":[]},"Cm":{"N":[],"d":[]},"a1E":{"a4":[],"d":[]},"a31":{"N":[],"d":[]},"ON":{"fY":["f"],"mE":["f"],"bg":["F>"],"bk":["F>"],"bN":[],"bg.0":"F>","fY.T":"f","bk.0":"F>"},"Nc":{"eg":["F>,ai)>>"],"iF":["F>,ai)>>"],"e8":["F>,ai)>>"],"bg":["F>,ai)>>"],"bk":["F>,ai)>>"],"bN":[],"e8.0":"F>,ai)>>","bg.0":"F>,ai)>>","eg.T":"F>,ai)>>","bk.0":"F>,ai)>>"},"aaa":{"e5":["F>"],"bN":[]},"ana":{"lU":["f"],"hk":["f"],"fT":["f"],"OO":[],"c1":["f"],"df":["F>"],"eG":["f"],"aU":["F>"],"aU.0":"F>","c1.T":"f","fT.T":"f","hk.T":"f"},"a7x":{"e5":["F>,ai)>>"],"bN":[]},"akJ":{"ix":["F>,ai)>>"],"Nd":[],"ew":["F>,ai)>>"],"df":["F>,ai)>>"],"bJ":["F>,ai)>>"],"aU":["F>,ai)>>"],"aU.0":"F>,ai)>>","ew.0":"F>,ai)>>"},"a2l":{"N":[],"d":[]},"aac":{"a4":[],"d":[]},"zw":{"cu":["a6"],"aQ":["a6"],"bX":["a6"],"aQ.0":"a6"},"zx":{"cu":["f?"],"aQ":["f?"],"bX":["f?"],"aV":["f"],"aV.T":"f","aQ.0":"f?"},"zy":{"cu":["h?"],"aQ":["h?"],"bX":["h?"],"aV":["h"],"aV.T":"h","aQ.0":"h?"},"OL":{"eg":["f?"],"iF":["f?"],"e8":["f?"],"bg":["f?"],"bk":["f?"],"bN":[],"e8.0":"f?","bg.0":"f?","eg.T":"f?","bk.0":"f?"},"aa9":{"e5":["f?"],"bN":[]},"an9":{"ix":["f?"],"OM":[],"ew":["f?"],"df":["f?"],"bJ":["f?"],"aU":["f?"],"aU.0":"f?","ew.0":"f?"},"aab":{"N":[],"d":[]},"a9W":{"N":[],"d":[]},"rc":{"N":[],"d":[]},"k4":{"aQ":["F?>"],"bX":["F?>"],"aQ.0":"F?>"},"zv":{"cu":["et?"],"aQ":["et?"],"bX":["et?"],"eb":["et"],"eb.T":"et","aQ.0":"et?"},"OK":{"fY":["ai?"],"mE":["ai?"],"bg":["F"],"bk":["F"],"bN":[],"bg.0":"F","fY.T":"ai?","bk.0":"F"},"Iw":{"fY":["f?"],"mE":["f?"],"bg":["F?>"],"bk":["F?>"],"bN":[],"bg.0":"F?>","fY.T":"f?","bk.0":"F?>"},"OI":{"f5":["k4","F?>"],"p_":["k4","F?>"],"bg":["F?>"],"bk":["F?>"],"bN":[],"bg.0":"F?>","f5.0":"k4","f5.T":"F?>","bk.0":"F?>"},"a9V":{"e5":["F"],"bN":[]},"an8":{"lU":["ai?"],"hk":["ai?"],"fT":["ai?"],"OP":[],"c1":["ai?"],"df":["F"],"eG":["ai?"],"aU":["F"],"aU.0":"F","c1.T":"ai?","fT.T":"ai?","hk.T":"ai?"},"Yk":{"e5":["F?>"],"bN":[]},"aeq":{"lU":["f?"],"hk":["f?"],"fT":["f?"],"Ix":[],"c1":["f?"],"df":["F?>"],"eG":["f?"],"aU":["F?>"],"aU.0":"F?>","c1.T":"f?","fT.T":"f?","hk.T":"f?"},"adH":{"aQ":["F?>"],"bX":["F?>"]},"aa1":{"e5":["F?>"],"bN":[]},"an5":{"mT":["k4","F?>"],"fl":["k4","F?>"],"df":["F?>"],"aU":["F?>"],"aU.0":"F?>","fl.0":"k4","fl.T":"F?>"},"aa3":{"N":[],"d":[]},"xe":{"a4":[],"d":[]},"a9Z":{"N":[],"d":[]},"aa_":{"N":[],"d":[]},"aa0":{"a4":[],"d":[]},"aa2":{"N":[],"d":[]},"aa4":{"N":[],"d":[]},"v1":{"a4":[],"d":[]},"k5":{"aQ":["F?>"],"bX":["F?>"],"aQ.0":"F?>"},"Iy":{"fY":["f?"],"mE":["f?"],"bg":["F?>"],"bk":["F?>"],"bN":[],"bg.0":"F?>","fY.T":"f?","bk.0":"F?>"},"OJ":{"f5":["k5","F?>"],"p_":["k5","F?>"],"bg":["F?>"],"bk":["F?>"],"bN":[],"bg.0":"F?>","f5.0":"k5","f5.T":"F?>","bk.0":"F?>"},"Ym":{"e5":["F?>"],"bN":[]},"aer":{"lU":["f?"],"hk":["f?"],"fT":["f?"],"Iz":[],"c1":["f?"],"df":["F?>"],"eG":["f?"],"aU":["F?>"],"aU.0":"F?>","c1.T":"f?","fT.T":"f?","hk.T":"f?"},"adI":{"aQ":["F?>"],"bX":["F?>"]},"aa5":{"e5":["F?>"],"bN":[]},"an6":{"mT":["k5","F?>"],"fl":["k5","F?>"],"df":["F?>"],"aU":["F?>"],"aU.0":"F?>","fl.0":"k5","fl.T":"F?>"},"aa6":{"N":[],"d":[]},"aa7":{"a4":[],"d":[]},"lH":{"aT":[]},"Vs":{"FS":["1","lH"],"FS.1":"lH"},"ww":{"B3":["f?"],"i_":["f?"],"hh":["f?"],"i_.0":"f?"},"IU":{"eg":["f?"],"iF":["f?"],"e8":["f?"],"bg":["f?"],"bk":["f?"],"bN":[],"e8.0":"f?","bg.0":"f?","eg.T":"f?","bk.0":"f?"},"YQ":{"e5":["f?"],"bN":[]},"aeK":{"ix":["f?"],"IV":[],"ew":["f?"],"df":["f?"],"bJ":["f?"],"aU":["f?"],"aU.0":"f?","ew.0":"f?"},"a1h":{"N":[],"d":[]},"YP":{"N":[],"d":[]},"YT":{"N":[],"d":[]},"Ca":{"N":[],"d":[]},"wx":{"N":[],"d":[]},"kt":{"aQ":["F?>"],"bX":["F?>"],"aQ.0":"F?>"},"y0":{"cu":["h?"],"aQ":["h?"],"bX":["h?"],"aQ.0":"h?"},"xX":{"cu":["q?"],"aQ":["q?"],"bX":["q?"],"aV":["q"],"aV.T":"q","aQ.0":"q?"},"xY":{"cu":["q?"],"aQ":["q?"],"bX":["q?"],"aV":["q"],"aV.T":"q","aQ.0":"q?"},"xW":{"cu":["q?"],"aQ":["q?"],"bX":["q?"],"aV":["q"],"aV.T":"q","aQ.0":"q?"},"xZ":{"cu":["kE?"],"aQ":["kE?"],"bX":["kE?"],"eb":["kE"],"eb.T":"kE","aQ.0":"kE?"},"y_":{"cu":["q?"],"aQ":["q?"],"bX":["q?"],"aV":["q"],"aV.T":"q","aQ.0":"q?"},"xV":{"cu":["et?"],"aQ":["et?"],"bX":["et?"],"eb":["et"],"eb.T":"et","aQ.0":"et?"},"IW":{"fY":["f?"],"mE":["f?"],"bg":["F?>"],"bk":["F?>"],"bN":[],"bg.0":"F?>","fY.T":"f?","bk.0":"F?>"},"IZ":{"f5":["kt","F?>"],"p_":["kt","F?>"],"bg":["F?>"],"bk":["F?>"],"bN":[],"bg.0":"F?>","f5.0":"kt","f5.T":"F?>","bk.0":"F?>"},"YR":{"e5":["F?>"],"bN":[]},"aeL":{"lU":["f?"],"hk":["f?"],"fT":["f?"],"IY":[],"c1":["f?"],"df":["F?>"],"eG":["f?"],"aU":["F?>"],"aU.0":"F?>","c1.T":"f?","fT.T":"f?","hk.T":"f?"},"adC":{"aQ":["F?>"],"bX":["F?>"]},"YS":{"e5":["F?>"],"bN":[]},"aeM":{"mT":["kt","F?>"],"fl":["kt","F?>"],"df":["F?>"],"aU":["F?>"],"aU.0":"F?>","fl.0":"kt","fl.T":"F?>"},"a3A":{"N":[],"d":[]},"a3x":{"N":[],"d":[]},"a3y":{"N":[],"d":[]},"D8":{"a4":[],"d":[]},"a3z":{"N":[],"d":[]},"x0":{"wi":["i4"],"mX":["i4"],"hh":["i4"],"mX.0":"i4"},"JY":{"eg":["cK?"],"iF":["cK?"],"e8":["cK?"],"bg":["cK?"],"bk":["cK?"],"bN":[],"e8.0":"cK?","bg.0":"cK?","eg.T":"cK?","bk.0":"cK?"},"a18":{"e5":["cK?"],"bN":[]},"agm":{"ix":["cK?"],"JZ":[],"ew":["cK?"],"df":["cK?"],"bJ":["cK?"],"aU":["cK?"],"aU.0":"cK?","ew.0":"cK?"},"zW":{"wi":["eS"],"mX":["eS"],"hh":["eS"],"mX.0":"eS"},"Q9":{"a5":[]},"aeP":{"a5":[]},"pq":{"l5":[]},"Vt":{"FT":["1","pq"],"FT.1":"pq"},"Qa":{"ku":[]},"Qb":{"i4":[]},"Qc":{"cK":[]},"rt":{"a3":[]},"vm":{"vm.1":"2"},"VG":{"vm":["1","rt"],"vm.1":"rt"},"aiL":{"a3":[]},"Qd":{"LL":[]},"Qh":{"eS":[]},"aoR":{"eS":[]},"a19":{"N":[],"d":[]},"a15":{"N":[],"d":[]},"a17":{"N":[],"d":[]},"iP":{"i_":["a3?"],"hh":["a3?"],"i_.0":"a3?"},"iM":{"i_":["f?"],"hh":["f?"],"i_.0":"f?"},"jW":{"aQ":["h"],"bX":["h"],"aQ.0":"h"},"ya":{"cu":["l6?"],"aQ":["l6?"],"bX":["l6?"],"eb":["l6"],"eb.T":"l6","aQ.0":"l6?"},"yb":{"cu":["q?"],"aQ":["q?"],"bX":["q?"],"aV":["q"],"aV.T":"q","aQ.0":"q?"},"y7":{"cu":["q?"],"aQ":["q?"],"bX":["q?"],"aV":["q"],"aV.T":"q","aQ.0":"q?"},"y8":{"cu":["q?"],"aQ":["q?"],"bX":["q?"],"aV":["q"],"aV.T":"q","aQ.0":"q?"},"y6":{"cu":["q?"],"aQ":["q?"],"bX":["q?"],"aV":["q"],"aV.T":"q","aQ.0":"q?"},"iL":{"i_":["a6?"],"hh":["a6?"],"i_.0":"a6?"},"LM":{"eg":["bC"],"iF":["bC"],"e8":["bC"],"bg":["bC"],"bk":["bC"],"bN":[],"e8.0":"bC","bg.0":"bC","eg.T":"bC","bk.0":"bC"},"LI":{"eg":["F?>"],"iF":["F?>"],"e8":["F?>"],"bg":["F?>"],"bk":["F?>"],"bN":[],"e8.0":"F?>","bg.0":"F?>","eg.T":"F?>","bk.0":"F?>"},"Kq":{"eg":["a5?"],"iF":["a5?"],"e8":["a5?"],"bg":["a5?"],"bk":["a5?"],"bN":[],"e8.0":"a5?","bg.0":"a5?","eg.T":"a5?","bk.0":"a5?"},"KO":{"eg":["+first,second(a5?,a5?)?"],"iF":["+first,second(a5?,a5?)?"],"e8":["+first,second(a5?,a5?)?"],"bg":["+first,second(a5?,a5?)?"],"bk":["+first,second(a5?,a5?)?"],"bN":[],"e8.0":"+first,second(a5?,a5?)?","bg.0":"+first,second(a5?,a5?)?","eg.T":"+first,second(a5?,a5?)?","bk.0":"+first,second(a5?,a5?)?"},"LO":{"fw":["iP","a3?"],"pZ":["iP","a3?"],"bg":["F"],"bk":["F"],"bN":[],"bg.0":"F","fw.0":"iP","fw.T":"a3?","bk.0":"F"},"LH":{"fw":["iM","f?"],"pZ":["iM","f?"],"bg":["F?>"],"bk":["F?>"],"bN":[],"bg.0":"F?>","fw.0":"iM","fw.T":"f?","bk.0":"F?>"},"LF":{"f5":["jW","h"],"p_":["jW","h"],"bg":["h"],"bk":["h"],"bN":[],"bg.0":"h","f5.0":"jW","f5.T":"h","bk.0":"h"},"LE":{"fw":["iL","a6?"],"pZ":["iL","a6?"],"bg":["F?>"],"bk":["F?>"],"bN":[],"bg.0":"F?>","fw.0":"iL","fw.T":"a6?","bk.0":"F?>"},"a3Y":{"e5":["bC"],"bN":[]},"aiX":{"ix":["bC"],"LN":[],"ew":["bC"],"df":["bC"],"bJ":["bC"],"aU":["bC"],"aU.0":"bC","ew.0":"bC"},"a3R":{"e5":["F?>"],"bN":[]},"aiS":{"ix":["F?>"],"LJ":[],"ew":["F?>"],"df":["F?>"],"bJ":["F?>"],"aU":["F?>"],"aU.0":"F?>","ew.0":"F?>"},"a1P":{"e5":["a5?"],"bN":[]},"agX":{"ix":["a5?"],"Kr":[],"ew":["a5?"],"df":["a5?"],"bJ":["a5?"],"aU":["a5?"],"aU.0":"a5?","ew.0":"a5?"},"a2g":{"e5":["+first,second(a5?,a5?)?"],"bN":[]},"ahp":{"ix":["+first,second(a5?,a5?)?"],"KP":[],"ew":["+first,second(a5?,a5?)?"],"df":["+first,second(a5?,a5?)?"],"bJ":["+first,second(a5?,a5?)?"],"aU":["+first,second(a5?,a5?)?"],"aU.0":"+first,second(a5?,a5?)?","ew.0":"+first,second(a5?,a5?)?"},"adG":{"i_":["a3?"],"hh":["a3?"]},"a3Z":{"e5":["F"],"bN":[]},"aiY":{"on":["iP","a3?"],"f4":["iP","a3?"],"mS":["iP","a3?"],"hw":["iP","a3?"],"c1":["a3?"],"df":["F"],"aU":["F"],"aU.0":"F","hw.T":"a3?","f4.0":"iP","f4.T":"a3?","c1.T":"a3?"},"adF":{"i_":["f?"],"hh":["f?"]},"a3Q":{"e5":["F?>"],"bN":[]},"aiR":{"on":["iM","f?"],"f4":["iM","f?"],"mS":["iM","f?"],"hw":["iM","f?"],"c1":["f?"],"df":["F?>"],"aU":["F?>"],"aU.0":"F?>","hw.T":"f?","f4.0":"iM","f4.T":"f?","c1.T":"f?"},"adE":{"aQ":["h"],"bX":["h"]},"a3P":{"e5":["h"],"bN":[]},"aiP":{"mT":["jW","h"],"fl":["jW","h"],"df":["h"],"aU":["h"],"aU.0":"h","fl.0":"jW","fl.T":"h"},"adD":{"i_":["a6?"],"hh":["a6?"]},"a3N":{"e5":["F?>"],"bN":[]},"aiM":{"on":["iL","a6?"],"f4":["iL","a6?"],"mS":["iL","a6?"],"hw":["iL","a6?"],"c1":["a6?"],"df":["F?>"],"aU":["F?>"],"aU.0":"F?>","hw.T":"a6?","f4.0":"iL","f4.T":"a6?","c1.T":"a6?"},"a3X":{"N":[],"d":[]},"a68":{"a4":[],"d":[]},"Yp":{"N":[],"d":[]},"wy":{"a4":[],"d":[]},"Cb":{"N":[],"d":[]},"a3O":{"N":[],"d":[]},"y9":{"a4":[],"d":[]},"a3T":{"N":[],"d":[]},"a3U":{"N":[],"d":[]},"a3W":{"N":[],"d":[]},"a9K":{"N":[],"d":[]},"Dn":{"a4":[],"d":[]},"J_":{"fY":["a5?"],"mE":["a5?"],"bg":["F"],"bk":["F"],"bN":[],"bg.0":"F","fY.T":"a5?","bk.0":"F"},"YU":{"e5":["F"],"bN":[]},"aeS":{"lU":["a5?"],"hk":["a5?"],"fT":["a5?"],"J0":[],"c1":["a5?"],"df":["F"],"eG":["a5?"],"aU":["F"],"aU.0":"F","c1.T":"a5?","fT.T":"a5?","hk.T":"a5?"},"a7O":{"N":[],"d":[]},"YX":{"N":[],"d":[]},"a6F":{"a4":[],"d":[]},"Zu":{"N":[],"d":[]},"a9r":{"N":[],"d":[]},"a1g":{"a4":[],"d":[]},"a3k":{"a4":[],"d":[]},"a3l":{"a4":[],"d":[]},"a8y":{"a4":[],"d":[]},"a7M":{"N":[],"d":[]},"a7S":{"N":[],"d":[]},"a7R":{"a4":[],"d":[]},"abu":{"N":[],"d":[]},"YV":{"a4":[],"d":[]},"a64":{"N":[],"d":[]},"a65":{"N":[],"d":[]},"a9p":{"N":[],"d":[]},"a16":{"N":[],"d":[]},"abs":{"N":[],"d":[]},"vf":{"N":[],"d":[]},"abt":{"N":[],"d":[]},"zV":{"a4":[],"d":[]},"pt":{"cp":[]},"Qf":{"cp":[]},"Qg":{"cp":[]},"Q7":{"cp":[]},"Q6":{"cp":[]},"Q5":{"cp":[]},"yN":{"cu":["h?"],"aQ":["h?"],"bX":["h?"],"aQ.0":"h?"},"N6":{"eg":["f?"],"iF":["f?"],"e8":["f?"],"bg":["f?"],"bk":["f?"],"bN":[],"e8.0":"f?","bg.0":"f?","eg.T":"f?","bk.0":"f?"},"a7p":{"e5":["f?"],"bN":[]},"akD":{"ix":["f?"],"N7":[],"ew":["f?"],"df":["f?"],"bJ":["f?"],"aU":["f?"],"aU.0":"f?","ew.0":"f?"},"a7y":{"a4":[],"d":[]},"lW":{"a4":[],"d":[]},"a7v":{"N":[],"d":[]},"a7w":{"N":[],"d":[]},"zg":{"a4":[],"d":[]},"v0":{"N":[],"d":[]},"uY":{"bA":[]},"tR":{"bA":[]},"a9_":{"N":[],"d":[]},"a7z":{"a4":[],"d":[]},"FR":{"l4":[]},"aek":{"l4":[]},"XN":{"N":[],"d":[]},"wd":{"cu":["bG?"],"aQ":["bG?"],"bX":["bG?"],"eb":["bG"],"eb.T":"bG","aQ.0":"bG?"},"XM":{"N":[],"d":[]},"xr":{"cu":["Y?"],"aQ":["Y?"],"bX":["Y?"],"aV":["Y"],"aV.T":"Y","aQ.0":"Y?"},"a2r":{"N":[],"d":[]},"xI":{"cu":["q?"],"aQ":["q?"],"bX":["q?"],"aV":["q"],"aV.T":"q","aQ.0":"q?"},"a37":{"N":[],"d":[]},"Yd":{"N":[],"d":[]},"B8":{"a4":[],"d":[]},"YD":{"a4":[],"d":[]},"zr":{"cu":["q?"],"aQ":["q?"],"bX":["q?"],"aV":["q"],"aV.T":"q","aQ.0":"q?"},"a9m":{"N":[],"d":[]},"a2c":{"N":[],"d":[]},"yO":{"cu":["q?"],"aQ":["q?"],"bX":["q?"],"aV":["q"],"aV.T":"q","aQ.0":"q?"},"a7A":{"N":[],"d":[]},"a3B":{"a4":[],"d":[]},"a62":{"N":[],"d":[]},"a7Q":{"N":[],"d":[]},"yR":{"cu":["q?"],"aQ":["q?"],"bX":["q?"],"aV":["q"],"aV.T":"q","aQ.0":"q?"},"a7H":{"N":[],"d":[]},"xH":{"cu":["q?"],"aQ":["q?"],"bX":["q?"],"aV":["q"],"aV.T":"q","aQ.0":"q?"},"a7I":{"N":[],"d":[]},"yS":{"cu":["Y?"],"aQ":["Y?"],"bX":["Y?"],"aV":["Y"],"aV.T":"Y","aQ.0":"Y?"},"a7J":{"N":[],"d":[]},"XZ":{"N":[],"d":[]},"yT":{"cu":["f_?"],"aQ":["f_?"],"bX":["f_?"],"eb":["f_"],"eb.T":"f_","aQ.0":"f_?"},"a7K":{"N":[],"d":[]},"yU":{"cu":["fn?"],"aQ":["fn?"],"bX":["fn?"],"eb":["fn"],"eb.T":"fn","aQ.0":"fn?"},"a7L":{"N":[],"d":[]},"yV":{"cu":["Y?"],"aQ":["Y?"],"bX":["Y?"],"aV":["Y"],"aV.T":"Y","aQ.0":"Y?"},"a7N":{"N":[],"d":[]},"Y_":{"N":[],"d":[]},"yx":{"cu":["q?"],"aQ":["q?"],"bX":["q?"],"aV":["q"],"aV.T":"q","aQ.0":"q?"},"yW":{"cu":["q?"],"aQ":["q?"],"bX":["q?"],"aV":["q"],"aV.T":"q","aQ.0":"q?"},"a7P":{"N":[],"d":[]},"zB":{"cu":["q?"],"aQ":["q?"],"bX":["q?"],"aV":["q"],"aV.T":"q","aQ.0":"q?"},"aaz":{"N":[],"d":[]},"zZ":{"cu":["q?"],"aQ":["q?"],"bX":["q?"],"aV":["q"],"aV.T":"q","aQ.0":"q?"},"zY":{"cu":["q?"],"aQ":["q?"],"bX":["q?"],"aV":["q"],"aV.T":"q","aQ.0":"q?"},"a9e":{"N":[],"d":[]},"Y4":{"N":[],"d":[]},"wF":{"cu":["h?"],"aQ":["h?"],"bX":["h?"],"aV":["h"],"aV.T":"h","aQ.0":"h?"},"BM":{"N":[],"d":[]},"a9g":{"a4":[],"d":[]},"we":{"cu":["ht?"],"aQ":["ht?"],"bX":["ht?"],"eb":["ht"],"eb.T":"ht","aQ.0":"ht?"},"XL":{"N":[],"d":[]},"zk":{"cu":["n?"],"aQ":["n?"],"bX":["n?"],"aV":["n"],"aV.T":"n","aQ.0":"n?"},"zl":{"cu":["q?"],"aQ":["q?"],"bX":["q?"],"aV":["q"],"aV.T":"q","aQ.0":"q?"},"EH":{"N":[],"d":[]},"a9d":{"N":[],"d":[]},"zm":{"cu":["h?"],"aQ":["h?"],"bX":["h?"],"aV":["h"],"aV.T":"h","aQ.0":"h?"},"EJ":{"N":[],"d":[]},"a9f":{"N":[],"d":[]},"OB":{"a4":[],"d":[]},"wh":{"cu":["hG?"],"aQ":["hG?"],"bX":["hG?"],"eb":["hG"],"eb.T":"hG","aQ.0":"hG?"},"u5":{"cu":["di?"],"aQ":["di?"],"bX":["di?"],"aV":["di"],"aV.T":"di","aQ.0":"di?"},"Nh":{"eg":["eZ"],"iF":["eZ"],"e8":["eZ"],"bg":["eZ"],"bk":["eZ"],"bN":[],"e8.0":"eZ","bg.0":"eZ","eg.T":"eZ","bk.0":"eZ"},"a7D":{"e5":["eZ"],"bN":[]},"akP":{"ix":["eZ"],"Ni":[],"ew":["eZ"],"df":["eZ"],"bJ":["eZ"],"aU":["eZ"],"aU.0":"eZ","ew.0":"eZ"},"a9R":{"N":[],"d":[]},"H0":{"ia":["qS<1,2>"]},"T8":{"ib":["qS<1,2>","H0<1,2>"]},"PF":{"eg":["ey"],"iF":["ey"],"e8":["ey"],"bg":["ey"],"bk":["ey"],"bN":[],"e8.0":"ey","bg.0":"ey","eg.T":"ey","bk.0":"ey"},"ab7":{"a4":[],"d":[]},"ab5":{"e5":["ey"],"bN":[]},"aoe":{"ix":["ey"],"PG":[],"ew":["ey"],"df":["ey"],"bJ":["ey"],"aU":["ey"],"aU.0":"ey","ew.0":"ey"},"XW":{"a4":[],"d":[]},"Y0":{"a4":[],"d":[]},"JC":{"N":[],"d":[]},"q8":{"a4":[],"d":[]},"a9S":{"a4":[],"d":[]},"a60":{"a4":[],"d":[]},"Cg":{"a4":[],"d":[]},"qM":{"a4":[],"d":[]},"Dm":{"a4":[],"d":[]},"ne":{"a4":[],"d":[]},"x_":{"cu":["q?"],"aQ":["q?"],"bX":["q?"],"aV":["q"],"aV.T":"q","aQ.0":"q?"},"zU":{"cu":["q?"],"aQ":["q?"],"bX":["q?"],"aV":["q"],"aV.T":"q","aQ.0":"q?"},"a3M":{"N":[],"d":[]},"Dk":{"a4":[],"d":[]},"a3V":{"N":[],"d":[]},"LK":{"a4":[],"d":[]},"yi":{"a4":[],"d":[]},"Bp":{"N":[],"d":[]},"QV":{"a9":["Bp<1>"]},"uy":{"a4":[],"d":[]},"hP":{"a4":[],"d":[]},"yP":{"a4":[],"d":[]},"r8":{"a4":[],"d":[]},"a9b":{"N":[],"d":[]},"a9c":{"a4":[],"d":[]},"Yq":{"a4":[],"d":[]},"a9l":{"N":[],"d":[]},"a9L":{"a4":[],"d":[]},"OH":{"a4":[],"d":[]},"Fn":{"a4":[],"d":[]},"ro":{"ae":["1"],"f":["1"],"ao":["1"],"z":["1"]},"ai_":{"ro":["n"],"ae":["n"],"f":["n"],"ao":["n"],"z":["n"]},"abh":{"ro":["n"],"ae":["n"],"f":["n"],"ao":["n"],"z":["n"],"ae.E":"n","z.E":"n","ro.E":"n"},"Gn":{"bz":["1"],"bz.T":"1"},"Gp":{"ka":["1"]},"S9":{"ei":["@"]},"PU":{"cv":[]},"bk4":{"Km":[],"a0Z":[]},"bkn":{"Km":[],"a1I":[]},"bG9":{"N":[],"d":[]},"bGp":{"bf":[],"b2":[],"d":[]},"bJU":{"N":[],"d":[]},"bPT":{"bf":[],"b2":[],"d":[]},"bOt":{"bf":[],"b2":[],"d":[]},"bva":{"cD":["bva"]}}')) +A.bQ2(v.typeUniverse,JSON.parse('{"Ks":1,"abq":1,"FG":1,"VP":2,"Ji":1,"Dx":1,"ei":1,"a69":1,"aar":2,"anv":1,"ag1":1,"ang":2,"anf":2,"Um":2,"Un":1,"Uo":1,"V6":2,"Z0":1,"Hu":1,"cD":1,"GJ":1,"BV":1,"tc":1,"BI":1,"R_":1,"R0":1,"R1":1,"ML":1,"VL":1,"HI":1,"VW":1,"Wf":1,"Fx":1,"PR":1,"W0":1,"M0":1,"Wg":1,"HH":1,"N1":1,"HJ":1,"HK":1,"zL":1,"Jk":1,"R3":1,"ih":1,"Nt":1,"JD":1,"H7":1,"TH":1,"UH":1,"wj":1,"Gv":1,"CP":1,"AZ":1,"GG":1,"hn":1,"abe":1,"btd":1,"jY":1,"h8":1,"mh":1,"dv":1,"TO":1,"a8E":1,"Es":1,"HL":1,"DE":1,"a3F":1,"N2":1,"Nk":1,"Al":1,"H5":1,"OC":2,"Ui":2,"fO":1,"dQ":1,"V1":1,"ia":1,"Jj":1,"a2A":1,"S6":1,"S7":1,"S8":1,"ai7":3,"hh":1,"Qr":2,"Qs":2,"Qx":2,"Qy":2,"df":1,"e5":1,"Xr":1,"Xq":1,"B2":1,"Th":1,"Ti":2,"Tj":2,"Vg":1,"Wh":2,"eG":1,"Qu":1,"Qt":1,"bX":1,"Qv":2,"bJ":1,"Qw":1,"Sq":1,"En":1,"KK":2,"aaq":1,"F1":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",D:" must not be greater than the number of characters in the file, ",v:" or improve the response time of the server.",e:" was disposed during loading state, yet no value could be emitted.",x:'"recorder" must not already be associated with another Canvas.',Z:"$remainingCount na character ang natitira",T:"% of the way to being a CircleBorder that is ",W:"' has been assigned during initialization.",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",M:": URI should have a non-empty host name: ",C:"===== asynchronous gap ===========================\n",U:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",X:"Broadcast stream controllers do not support pause callbacks",J:"Cannot change handlers of asBroadcastStream source subscription.",F:"Cannot extract a file path from a URI with a fragment component",z:"Cannot extract a file path from a URI with a query component",Q:"Cannot extract a non-Windows file path from a file URI with an authority",c:"Cannot fire new event. Controller is already firing an event",w:'Cannot use "ref" after the widget was disposed.',a:"Categoria predefinida quando um novo mang\xe1 \xe9 adicionado \xe0 biblioteca",p:"C\xf3pia da Biblioteca como c\xf3pia de seguran\xe7a de Tachidesk",t:"Default category when adding new manga to library",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',l:"Error handler must accept one Object or one Object and a StackTrace as arguments, and return a value of the returned future's type",d:"Error: Context is null, Please call init(context) before showing toast.",O:"Failed to load network image.\nImage URL: ",k:"Go to Chapter Name 'CN' from Manga 'M' in Category 'C'",m:"Isto ir\xe1 fundir todos os mangas desta categoria para predefinidos!",j:"Isto n\xe3o impede extens\xf5es n\xe3o oficiais ou incorretamente marcadas de mostrarem conte\xfado NSFW (18+) dentro da aplica\xe7\xe3o",o:"It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods",H:"Nenhum manga encontrado nesta categoria.\n(Dica: Verifique as suas pesquisas e filtros!)",B:"No manga found in this Category. \n(Tip: Check your search & filters!)",s:"Nome da categoria n\xe3o pode ficar em branco",P:"Nome de utilizador n\xe3o pode ficar em branco",L:"N\xe3o foi poss\xedvel encontrar a extens\xe3o selecionada",_:"N\xe3o tem nenhuma categoria.\nCria uma nas defini\xe7\xf5es para organizar a sua biblioteca",b:"Restaurar Tachidesk pela c\xf3pia de seguran\xe7a",R:"Search for query X (Results are based on screen context)",A:"Shows title and quick settings when opening a chapter",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.",Y:"SystemChrome.setApplicationSwitcherDescription",f:"TextInputClient.updateEditingStateWithDeltas",n:"TextInputClient.updateEditingStateWithTag",g:"The request was manually cancelled by the user.",i:"There was a problem trying to load FontManifest.json",u:"This does not prevent unofficial or potentially incorrectly flagged extensions from surfacing NSFW(18+) content within app",r:"This will merge all Mangas in this Category to Default!",b0:"You cannot add items while items are being added from addStream",G:"You don't have any Categories. \n(Tip: Tap the Plus button to create one for organizing your library)",N:"You don't have any Categories. \nCreate one in settings for organizing your library",b2:"]. Custom extension filters are only allowed with FileType.custom, please change it or remove filters.",h:"called ProviderSubscription.read on a subscription that was closed",y:"handleError callback must take either an Object (the error), or both an Object (the error) and a StackTrace.",E:"max must be in range 0 < max \u2264 2^32, was ",ba:"\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.ah +return{RD:s("l1"),JC:s("w8"),uY:s("AT"),vH:s("bEV"),od:s("cc"),pC:s("wa"),ZU:s("wb"),A_:s("mP"),so:s("bV"),Jo:s("bV"),rb:s("bV"),m:s("bV"),Bs:s("bV"),s1:s("Im"),J:s("fW"),m2:s("wd"),XJ:s("we"),Ao:s("B1"),vp:s("wf"),S7:s("Iq"),jo:s("asL"),pR:s("td"),rv:s("F"),uw:s("F>"),z6:s("F>,ai)>>"),yG:s("F>>"),nS:s("F>>"),QO:s("F"),_T:s("F"),Zx:s("F"),Pa:s("F?>"),uV:s("F?>"),Ep:s("F?>"),L2:s("F?>"),ng:s("F?>"),uU:s("F?>"),AC:s("F?>"),ms:s("F"),Lq:s("F?>"),z1:s("F>?>"),uR:s("F"),TX:s("F"),vM:s("F"),lZ:s("F"),qC:s("hG"),ca:s("wh"),M1:s("Y5"),e8:s("l4"),nc:s("te"),kk:s("B9"),N3:s("Ba"),uJ:s("Ix"),nw:s("Iz"),Al:s("tg"),UL:s("IB"),jj:s("th"),C4:s("wl"),m_:s("dt"),k:s("aN"),q:s("iy"),i4:s("Bg"),y7:s("Bh"),Xj:s("bFv"),pI:s("YG"),V4:s("es"),M8:s("tk"),Pt:s("avf"),LE:s("lV"),PL:s("ws"),JS:s("q4"),uq:s("wt"),wY:s("cz"),nz:s("cz"),OX:s("cz"),vr:s("cz"),Ft:s("cz"),iw:s("cz"),oC:s("cz"),yz:s("cz"),gv:s("cz"),S9:s("cz"),KI:s("cz"),fN:s("cz"),Tx:s("cz"),fn:s("cz"),sl:s("cz"),D5:s("cz"),j5:s("cz"),_n:s("cz"),Vg:s("cz"),zB:s("cz"),zI:s("YL"),d0:s("iz?,dd<@>>"),oo:s("aT"),PY:s("ww"),_v:s("IV"),y6:s("wx"),rB:s("IY"),ad:s("tm"),Uc:s("iA"),vg:s("i1"),ja:s("a5"),dA:s("l5"),ic:s("ku"),eW:s("J0"),ES:s("bFF"),Ox:s("bqj"),aL:s("bFJ"),Lh:s("J4"),XY:s("Bv"),p1:s("q9"),qo:s("Bw"),tG:s("Z9"),m6:s("Za"),E_:s("J7"),Bn:s("Zb"),wW:s("tn"),S3:s("J8"),BQ:s("J9"),nR:s("Jb"),xG:s("BA"),FG:s("BB"),O5:s("BD"),Hz:s("i2"),hP:s("jG"),n8:s("e"),IC:s("dG"),b8:s("cD<@>"),F6:s("wC"),w:s("a2"),eL:s("a2"),fF:s("kw"),Bx:s("qa"),Od:s("qa"),vn:s("BL"),T:s("hH"),Az:s("ar>"),W8:s("wF"),d1:s("Zx"),VD:s("bG9"),ho:s("aA"),gF:s("jI<~>"),My:s("Jy<@>"),H5:s("bGp"),WS:s("ov"),HY:s("eI"),ip:s("JE"),I7:s("BR"),Bk:s("wN"),fs:s("BS"),W7:s("dx"),l4:s("bGF"),IG:s("wQ"),Uf:s("tw"),uy:s("bGJ"),sp:s("BU"),Je:s("bZH"),f6:s("hI<~>"),JX:s("a0W"),w6:s("tx"),_Z:s("hJ"),lm:s("BZ"),I:s("lX"),ra:s("bZN"),Db:s("bk4"),Tg:s("hK"),xm:s("kx"),zo:s("et"),uZ:s("a10>"),Jj:s("bH0"),VF:s("qc"),yN:s("a12"),oV:s("wZ>"),Pj:s("x_"),BP:s("i4"),t9:s("JZ"),b6:s("cK"),vm:s("qe"),g7:s("C3"),uL:s("oz"),zk:s("oA"),ty:s("bHq"),U2:s("K4"),CB:s("C6"),b_:s("qg"),Tu:s("bj"),A0:s("eL"),NA:s("C9"),c0:s("brh"),Ee:s("ao<@>"),lU:s("cO"),E:s("bD"),ds:s("bHB"),m1:s("qi"),IH:s("Kd"),iR:s("a1s"),X8:s("a1t"),Q4:s("Kf"),dQ:s("cX"),Mq:s("cX"),r8:s("cX"),V6:s("cX"),ls:s("cX"),ka:s("cX"),Kp:s("oC"),Lt:s("d7"),I3:s("b0"),VI:s("cv"),IX:s("iD"),bh:s("x5"),oB:s("x6"),ii:s("Ck"),o6:s("bHT"),_w:s("qm"),HH:s("qn"),OO:s("ld"),cP:s("x7"),b7:s("x8"),P9:s("qo"),eI:s("x9"),q8:s("cE"),TO:s("xa"),ct:s("xb"),FT:s("tF"),Ie:s("Kk"),Sf:s("e5<@>"),gw:s("e5"),rq:s("i6"),IP:s("oD"),yX:s("Cn"),jL:s("le"),cL:s("lf"),nZ:s("brr"),vi:s("Km"),hS:s("bkn"),lC:s("a1I"),Q9:s("bI4"),we:s("by"),zJ:s("bru"),fM:s("brv"),xe:s("brw"),AK:s("jd"),OJ:s("Kr"),US:s("i8"),KL:s("Kw"),s4:s("aDj"),OE:s("aDk"),mx:s("eM"),l5:s("tM"),zq:s("Cu"),ia:s("xl"),VW:s("xm"),FK:s("i9"),jU:s("KF"),gx:s("lg<@>"),bE:s("lh"),OP:s("e7"),Uy:s("KL"),Nh:s("jQ"),_8:s("li"),N4:s("S([@])"),ef:s("S(n)"),Z9:s("S"),xd:s("S(h,a6)"),wF:s("S"),UA:s("S()"),L0:s("S<@>"),AJ:s("S<@>()"),T8:s("S"),f8:s("S"),j0:s("S?>"),EJ:s("S?>"),uz:s("S<~>"),db:s("S<~>([q])"),Dp:s("S<~>(n)"),p5:s("dg"),Fp:s("dg"),pl:s("dg"),b4:s("h0"),Lu:s("h0"),MA:s("h0"),Ih:s("h0"),RQ:s("Cy"),SP:s("Cz"),ne:s("eN"),uA:s("dH"),C1:s("dH"),Uv:s("dH"),jn:s("dH"),YC:s("dH"),lG:s("dH"),hg:s("dH"),_U:s("dH"),UN:s("dH"),ok:s("dH"),fi:s("dH"),EK:s("dH"),xR:s("xq"),HJ:s("KP"),yi:s("hM>"),rO:s("tP"),bT:s("tP>"),Ul:s("tQ"),aq:s("CC"),Js:s("bn"),rQ:s("c_a"),XW:s("xr"),op:s("CG<~(tK)>"),G7:s("a2x>"),rA:s("qy"),mS:s("xt"),AL:s("lj"),Fn:s("qz"),zE:s("aB"),tR:s("qA"),zz:s("CI"),Ae:s("CJ"),gc:s("a2H"),Lk:s("bs5"),Gf:s("xv"),g5:s("KZ"),Oh:s("xA"),oA:s("jS"),J2:s("CM"),bi:s("jT"),dW:s("ll"),SG:s("tV"),x2:s("ic"),nT:s("a2Z<@,m_>"),Bc:s("tW"),pq:s("jf"),q0:s("tX"),og:s("dO"),WB:s("bf"),U1:s("m0"),R_:s("xG"),JZ:s("aHu"),XO:s("aHv"),pT:s("aHw"),Hd:s("u_"),vz:s("bA"),nQ:s("u0"),Ya:s("CS"),oF:s("fx"),FN:s("fx"),Pm:s("fx>"),OL:s("fx<@>"),tA:s("xH"),GG:s("xI"),Wq:s("a38"),Cr:s("xJ"),K9:s("xK<@>"),JY:s("z<@>"),VG:s("z"),QP:s("H"),NS:s("H

"),eZ:s("H>"),Pv:s("H"),c:s("H"),Cs:s("H"),vN:s("H"),D3:s("H"),k3:s("H"),SJ:s("H"),qN:s("H"),Cu:s("H"),t_:s("H"),LU:s("H>"),td:s("H"),KV:s("H"),ZD:s("H"),F:s("H"),vl:s("H"),dP:s("H"),Up:s("H"),mt:s("H"),lX:s("H"),An:s("H"),XS:s("H"),dH:s("H"),bp:s("H"),z8:s("H"),Wv:s("H"),uf:s("H"),EN:s("H"),kZ:s("H>"),no:s("H"),sR:s("H"),wQ:s("H>"),Rh:s("H>"),mo:s("H>"),iQ:s("H"),om:s("H>"),_B:s("H"),XZ:s("H"),qz:s("H"),Fa:s("H"),fJ:s("H"),VB:s("H"),VO:s("H"),O_:s("H"),zX:s("H"),A:s("H"),r0:s("H"),K0:s("H"),Li:s("H"),k5:s("H"),cN:s("H"),s9:s("H"),Y4:s("H"),_f:s("H"),ER:s("H"),X_:s("H>"),i1:s("H>"),Zb:s("H>"),Eo:s("H"),u6:s("H"),ss:s("H"),a9:s("H>"),So:s("H"),cS:s("H>"),Iq:s("H>"),H7:s("H>"),n4:s("H>"),Xr:s("H"),Ji:s("H"),YE:s("H"),tc:s("H"),qF:s("H"),Qg:s("H"),jl:s("H"),yv:s("H"),wi:s("H"),jT:s("H"),AT:s("H"),g8:s("H>"),Im:s("H>"),EO:s("H"),nx:s("H"),OB:s("H"),zY:s("H"),OM:s("H>"),wc:s("H"),cD:s("H"),UY:s("H"),M6:s("H"),D9:s("H"),nm:s("H>"),NK:s("H"),_:s("H>"),BF:s("H"),ha:s("H>"),RI:s("H"),kG:s("H"),Du:s("H<+mangaList,source(F>,ai)>"),Co:s("H<+(h,ve)>"),AO:s("H"),Bw:s("H"),Pc:s("H"),Ik:s("H"),xT:s("H"),TT:s("H"),Ry:s("H"),QT:s("H"),VM:s("H"),yo:s("H"),i3:s("H"),K1:s("H"),k4:s("H"),Fm:s("H"),CK:s("H"),vj:s("H"),ZP:s("H"),D1:s("H
"),u1:s("H"),q1:s("H"),QF:s("H"),o4:s("H"),Qo:s("H"),vU:s("H"),fe:s("H"),b5:s("H"),N_:s("H"),X4:s("H"),wb:s("H"),s:s("H"),oU:s("H"),XT:s("H"),bt:s("H"),y1:s("H"),Lx:s("H"),sD:s("H"),VS:s("H"),fm:s("H"),Ne:s("H"),a5:s("H>>"),ch:s("H"),BC:s("H>"),x0:s("H>"),XE:s("H"),LX:s("H"),p:s("H"),GA:s("H"),Na:s("H"),SW:s("H"),TV:s("H"),ob:s("H"),Kj:s("H"),Vf:s("H>>>"),bx:s("H>,ai)>>>>"),pV:s("H>>"),d2:s("H?>>>"),bG:s("H?>>>"),LP:s("H?>>>"),VV:s("H?>>>"),NQ:s("H>>"),x_:s("H?>>>"),gn:s("H>>"),gu:s("H>"),Rc:s("H>>"),sP:s("H>"),nd:s("H>"),qk:s("H>"),ZS:s("H>"),SX:s("H?>>"),o2:s("H?>>"),lB:s("H?>>"),Q0:s("H>"),_Y:s("H"),CZ:s("H"),mz:s("H"),Kx:s("H"),he:s("H"),zj:s("H"),ML:s("H"),m5:s("H

"),Ei:s("H"),B:s("H>"),F1:s("H>"),jE:s("H"),qi:s("H"),uD:s("H"),M7:s("H"),au:s("H"),s6:s("H"),lb:s("H"),PN:s("H"),Z6:s("H"),cR:s("H"),NM:s("H"),HZ:s("H"),up:s("H"),ee:s("H<@>"),t:s("H"),i6:s("H"),tZ:s("H"),L:s("H"),JK:s("H"),cA:s("H"),Rs:s("H"),ny:s("H?>"),Fi:s("H"),_m:s("H"),Z:s("H"),a0:s("H"),Zt:s("H()>"),iO:s("H()>"),xf:s("H"),sA:s("H"),sQ:s("H<~(xp)?>"),qj:s("H<~()>"),SM:s("H<~(C,cw?)>"),h:s("H<~(cc)>"),x8:s("H<~(oi)>"),j2:s("H<~(bj)>"),Jh:s("H<~(f)>"),WL:s("H<~(lu)>"),RP:s("co<@>"),bz:s("CY"),gZ:s("as"),lT:s("oM"),dC:s("cF<@>"),e:s("k"),sW:s("xP<@>"),Hf:s("jh"),Cl:s("nc"),D2:s("id"),M2:s("D0"),SQ:s("D1"),Di:s("xS"),CV:s("u5"),bR:s("bq"),NE:s("bq"),ku:s("bq"),hA:s("bq"),C:s("bq>"),Ts:s("bq>"),af:s("bq"),Xw:s("bq"),L6:s("iI"),h_:s("a3r"),kd:s("h4"),jh:s("D6"),rf:s("Lr"),XH:s("xV"),tF:s("xW"),Ls:s("xX"),Ah:s("xY"),KZ:s("xZ"),O7:s("y_"),iG:s("y0"),BH:s("u7"),Fs:s("D9"),hz:s("m3"),jQ:s("d5"),C5:s("bJA"),uF:s("bsw"),or:s("ji>"),n_:s("jU>>>"),gL:s("jU>"),z_:s("jU"),oM:s("jU"),U9:s("oO"),wO:s("y1<@>"),NJ:s("y2"),Rk:s("f"),a6:s("f"),pU:s("f"),Py:s("f"),h1:s("f"),m3:s("f"),R4:s("f"),gS:s("f"),E9:s("f"),YN:s("f"),UX:s("f"),LF:s("f"),gV:s("f<+mangaList,source(F>,ai)>"),I1:s("f"),kT:s("f"),V1:s("f"),WG:s("f"),iW:s("f"),To:s("f"),yp:s("f"),JF:s("f"),Z4:s("f"),TP:s("f"),Ly:s("f"),j:s("f<@>"),Cm:s("f"),Dn:s("f"),ga:s("f"),I_:s("at"),f0:s("jV"),da:s("di"),JW:s("Df"),bd:s("o"),bS:s("bsC"),nn:s("a3"),W:s("ue"),z9:s("iL"),xN:s("y6"),Y3:s("y7"),Hv:s("jW"),eE:s("y8"),GV:s("iM"),dq:s("LJ"),LO:s("ya"),Sr:s("yb"),ur:s("ne"),KA:s("iN"),sy:s("iO"),KM:s("LN"),cM:s("iP"),tO:s("aS"),YB:s("aS"),mT:s("aS"),UH:s("aS"),DC:s("aS"),q9:s("aS"),sw:s("aS>"),lY:s("aS>"),Kc:s("aS>"),qE:s("aS>"),Dx:s("yc<@,@>"),bU:s("a6"),nf:s("a6"),GU:s("a6"),Yl:s("a6"),a:s("a6"),_P:s("a6"),e3:s("a6"),f:s("a6<@,@>"),yy:s("a6"),Lo:s("a6>"),Zk:s("a6>"),xE:s("a6"),pE:s("a6"),rr:s("a6<~(c9),bQ?>"),tN:s("eu"),C9:s("eu"),iU:s("ad"),a4:s("ad"),B5:s("ad"),cj:s("ad"),J3:s("ad"),qn:s("ad"),vD:s("ad>"),Tr:s("ad"),fc:s("Do"),iB:s("bJV"),D:s("aw"),sS:s("nf<~>"),Le:s("M_<@>"),ui:s("dy"),h9:s("cG"),Ak:s("cG"),kU:s("cG
"),iL:s("cG"),XL:s("cG"),QL:s("cG"),Il:s("cG"),wG:s("cG"),Oc:s("yg"),xV:s("bQ"),l:s("nh"),SA:s("ui"),tB:s("Du"),Pw:s("oU"),Kv:s("ek"),xS:s("lp"),Ig:s("Dv"),Pb:s("ev"),ZA:s("Ma"),_h:s("oW"),Wz:s("m8"),Lb:s("fM"),y_:s("yi"),RZ:s("yk"),jW:s("uk"),A4:s("lr"),F4:s("hm"),u9:s("yl"),XD:s("Ml"),Ka:s("bKo"),JT:s("oY"),uK:s("ls"),hC:s("ma<~>"),_A:s("hO"),iy:s("bs"),K3:s("dB"),Jd:s("dB"),Tm:s("dB"),w3:s("dB
    "),eq:s("dB"),ji:s("dB"),WA:s("dB"),ZE:s("dB"),Te:s("qN"),P:s("aE"),zr:s("um"),K:s("C"),xA:s("C(n)"),_a:s("C(n{params:C?})"),yw:s("bd"),CT:s("bd()>"),fy:s("bd<~()>"),o:s("bd<~(cc)>"),jc:s("bd<~(oi)>"),Zo:s("bd<~(lu)>"),EP:s("m"),gY:s("nm"),o0:s("Mz"),BR:s("bKx"),Ms:s("qQ"),N1:s("DF"),A9:s("ys"),BB:s("MC"),QA:s("yt"),vo:s("MD<@>"),Mf:s("DH"),pw:s("hn<@>"),sd:s("hn"),FE:s("ME"),Q2:s("up"),Fw:s("ho"),oR:s("ho"),ke:s("DL"),zM:s("h7"),IF:s("MV"),ix:s("fm"),v3:s("M"),sv:s("qT"),lO:s("DP"),hD:s("lv"),qa:s("c_M"),ge:s("yz"),Ko:s("yA"),Au:s("p5"),pY:s("qW"),qL:s("c9"),es:s("c_U"),XA:s("qX"),n2:s("yC"),WQ:s("yD"),w5:s("qY"),DB:s("yE"),PB:s("yF"),RH:s("yG"),Mj:s("yH"),xb:s("yI"),ks:s("jn"),oN:s("yJ"),kj:s("aNG"),xF:s("bL_"),dx:s("DX"),ZQ:s("qZ"),bb:s("DZ"),eP:s("N7"),_p:s("lw"),C0:s("bLb"),WK:s("bg"),M:s("aU"),o8:s("bk"),I0:s("kH"),OD:s("ci"),ZI:s("ci>>"),AX:s("ci>"),jp:s("ci?>>"),dK:s("ci?>>"),EB:s("ci?>>"),hZ:s("ci?>>"),tb:s("ci>"),Is:s("ci?>>"),Hq:s("ci>"),S6:s("ci"),PG:s("ci"),dd:s("ci"),Io:s("ci"),ew:s("ci"),h6:s("ci"),yH:s("b2"),aV:s("eZ"),ax:s("a7u"),TF:s("yN"),WM:s("cp"),_L:s("Nd"),hN:s("E4"),P0:s("yO"),FA:s("yP"),FL:s("bLh"),YK:s("yQ"),Yb:s("Ni"),jV:s("Eb"),NF:s("yR"),pf:s("yS"),uM:s("f_"),jC:s("yT"),lR:s("fn"),j1:s("yU"),WJ:s("yV"),gy:s("ig"),sx:s("yW"),N7:s("Ec"),pK:s("c03"),Rp:s("+()"),BZ:s("+(h,i9?)"),YT:s("L"),Bb:s("ly"),nP:s("Np"),Qz:s("a7T"),MD:s("Ee"),MY:s("Nr"),NW:s("Ef"),re:s("Ns"),x:s("O"),DW:s("yZ"),f1:s("NB"),I9:s("J"),F5:s("aG"),GM:s("b5"),Wx:s("r3"),nl:s("dk"),Ss:s("p8"),Cn:s("Ej"),dw:s("NN"),Ju:s("z1"),E1:s("uK"),UM:s("ny"),mu:s("lB"),Wd:s("El"),Ol:s("z4"),k8:s("fy<@>"),dZ:s("NQ"),yb:s("h8"),z4:s("fz"),k2:s("NT"),zw:s("da"),Rr:s("da"),H8:s("da"),MV:s("da"),o_:s("da"),b9:s("NW"),Qt:s("nz<~>"),UV:s("h9"),_W:s("iQ"),LQ:s("ex"),oj:s("Eq"),Kh:s("r6"),pO:s("dd<@>(G,C?)"),SB:s("Er"),Sv:s("z9"),nY:s("Eu"),BL:s("Eu"),Np:s("Ev"),MF:s("Ex"),JE:s("O3"),Cy:s("O4"),FS:s("O7"),gt:s("nC"),sm:s("EB"),Nn:s("bM0"),OV:s("zg"),qd:s("c0f"),hI:s("c0g"),x9:s("hR"),mb:s("Og"),Wu:s("EE"),_S:s("f0"),ZX:s("nD"),bu:s("ea"),UF:s("zj"),g3:s("nE"),Ev:s("zk"),Qm:s("zl"),yc:s("EI"),B2:s("hS"),Tb:s("zm"),HS:s("uT"),n5:s("EL<@>"),hi:s("bC"),c8:s("bC"),Ro:s("bC<@>"),G2:s("EM"),RY:s("dw"),jH:s("uV"),WE:s("EN"),cZ:s("uX"),ti:s("EO"),UD:s("jp"),Vz:s("EQ"),yE:s("c0s"),of:s("zr"),Mp:s("bv"),FW:s("U"),Ws:s("zs"),Dj:s("bMs"),r:s("v_"),h5:s("EU"),Xp:s("rb"),Gt:s("EW"),V:s("hr"),M0:s("kL"),jB:s("pe"),s7:s("ai"),bA:s("zv"),u8:s("zw"),EH:s("zx"),KP:s("zy"),y3:s("nH"),Vi:s("k4"),xy:s("kM"),nt:s("bY"),Sb:s("k5"),ZR:s("mo"),GP:s("EX"),ao:s("OM"),J9:s("OO"),mn:s("OP"),v4:s("EY"),D_:s("rd"),IU:s("zz"),Qv:s("fP"),Km:s("cw"),MG:s("il"),d3:s("N"),Iz:s("a4"),A5:s("OY"),Z5:s("aap<@>"),NP:s("bz"),ZG:s("F4"),N:s("h"),Vc:s("bMN"),NC:s("nJ"),Vh:s("Fa"),Ci:s("v4"),ky:s("Fb"),ry:s("bh"),ou:s("zB"),OK:s("bMT"),kL:s("cC"),WT:s("cC"),FB:s("cC"),u4:s("cC"),rg:s("cC>"),az:s("cC"),Zs:s("cC"),E8:s("cC"),d9:s("cC"),hr:s("cC"),kO:s("cC<~>"),ZC:s("ph"),lu:s("mp"),xw:s("zD"),CY:s("rg"),aW:s("Fh"),_0:s("Pi"),if:s("bMY"),QX:s("rh"),mr:s("Pn"),mi:s("aaW"),ot:s("ms"),tp:s("Ps"),hL:s("im"),qY:s("nL"),jZ:s("bN5"),AS:s("v9"),em:s("D"),ta:s("pk"),ff:s("mt"),ZM:s("zH"),ZF:s("pl>"),Ag:s("pl<@>"),jm:s("ht"),qb:s("aP"),qe:s("PD"),g:s("ey"),W_:s("PG"),yS:s("jr"),U4:s("bNo"),f3:s("e0"),bq:s("zP"),zW:s("ec"),kS:s("hv"),Ns:s("hv"),Ni:s("aR"),qU:s("aR"),Y:s("aR"),n:s("kQ"),ns:s("rm"),e2:s("fs"),w7:s("b_P"),rd:s("FA"),Po:s("b_Q"),R:s("e1"),F9:s("FB"),pm:s("FC"),MX:s("rp"),d:s("eE"),gA:s("js"),Sc:s("js"),ZJ:s("pm"),lQ:s("zS"),G5:s("mu"),N2:s("FH<@>"),EI:s("zU"),gU:s("mv"),S5:s("eS"),kg:s("FI"),BA:s("vg"),wR:s("FJ"),Xu:s("abv"),ll:s("bS>"),gz:s("bS"),xc:s("bS"),O:s("bS"),zm:s("bS"),Ll:s("bS"),_b:s("bS"),Am:s("bS"),Tt:s("bF"),HR:s("bF>"),cz:s("bF>"),Wy:s("bF>"),kr:s("bF"),rh:s("bF>"),Lm:s("bF"),kV:s("bF"),G:s("bF"),gX:s("bF"),N8:s("bF"),xP:s("bF?>"),XR:s("bF"),ft:s("bF"),GY:s("kf"),mv:s("vi"),Dg:s("rq"),rS:s("kg"),X3:s("rr"),gD:s("ba"),Tv:s("fb"),FI:s("fb"),ZK:s("fb"),Ri:s("fb"),ow:s("fb"),kE:s("fb<~(C,cw?)>"),r7:s("fb<~(jS)>"),Pi:s("vj"),l7:s("d"),jA:s("bm2"),a7:s("FO"),iM:s("FP"),X5:s("fR"),Uh:s("az"),BJ:s("vk"),oL:s("po"),aP:s("pp"),L1:s("Qi"),CL:s("A3"),Mx:s("lI"),jx:s("lI"),Qh:s("lI"),vh:s("lI<@>"),pA:s("lI"),h8:s("aD"),L4:s("aD"),xt:s("aD"),nj:s("aD>"),fw:s("aD>"),rK:s("aD>"),rM:s("aD"),Iy:s("aD"),FM:s("aD"),gI:s("aD"),VY:s("aD"),zh:s("aD<@>"),yB:s("aD"),It:s("aD"),Eq:s("aD?>"),bI:s("aD"),oe:s("aD"),F0:s("aD"),gR:s("aD<~>"),IS:s("G3"),BY:s("bOt"),fh:s("G4"),ZW:s("A6"),B6:s("QR"),me:s("vq"),A3:s("ip"),Wb:s("pz"),EG:s("A7"),bY:s("Rg"),TC:s("A9"),uC:s("iq"),rZ:s("ry"),Fb:s("ry"),UB:s("ry"),Q8:s("Rn>"),UJ:s("ag7"),qr:s("hX"),VA:s("rA"),j7:s("Ac>"),Pg:s("Rt"),l3:s("RD"),rE:s("RG"),Wt:s("Ae"),H_:s("mC>>"),rR:s("kT"),_F:s("kT"),ba:s("Gn"),fg:s("kT"),pz:s("c1r"),Eh:s("RQ"),fk:s("Gu"),Jp:s("RV"),Jc:s("Gx"),Lv:s("a7"),Ic:s("a7"),qc:s("a7"),wM:s("a7>"),mg:s("a7>"),Jk:s("a7>"),A6:s("a7"),Gl:s("a7"),EW:s("a7"),Qy:s("a7"),tq:s("a7"),LR:s("a7<@>"),wJ:s("a7"),gg:s("a7"),LY:s("a7"),ma:s("a7?>"),st:s("a7"),Kw:s("a7"),X6:s("a7"),b:s("a7<~>"),cK:s("Gz"),Qu:s("rF"),U3:s("GD"),UR:s("jv"),R9:s("vv"),Fy:s("vw"),WD:s("Sf"),Ze:s("Sg"),tM:s("Sh"),Nr:s("Si"),pp:s("kh"),oc:s("Sr"),YL:s("Ai"),cB:s("o4"),Sx:s("vz"),pt:s("GN"),Gk:s("SB"),PJ:s("GO"),yI:s("bt"),h2:s("bt"),bN:s("bt"),Lf:s("bt"),pj:s("bt"),Sq:s("bt"),U:s("bt"),gO:s("bt"),Y6:s("bt"),ol:s("bt"),p2:s("hz"),Ks:s("hz>>"),lg:s("hz"),Md:s("hz"),KR:s("hz>"),Nb:s("hz"),Fe:s("SO"),xg:s("ajn"),kY:s("An"),Tp:s("vC"),C2:s("vD<@,m_>"),pi:s("pB"),Vl:s("vE"),KJ:s("rG"),eU:s("GZ"),gQ:s("vF"),sZ:s("T9"),j4:s("ajX"),Ln:s("Ta"),y2:s("Ao"),mm:s("H2"),gT:s("Aq"),c_:s("Tl"),mP:s("Tm"),h7:s("pD"),zP:s("hd"),ri:s("Tu"),l0:s("As"),Lj:s("vJ"),zd:s("TA"),SN:s("TE"),Tq:s("H8"),kb:s("H9"),xL:s("Ha"),im:s("vK"),Ap:s("At"),Ez:s("hA"),Pu:s("TT"),yd:s("TZ"),jF:s("U1"),kW:s("amN"),oY:s("vM"),n7:s("dc>"),Dw:s("dc>"),gK:s("dc>"),kA:s("dc"),o9:s("dc"),Kr:s("dc"),hp:s("dc"),Om:s("dc"),ar:s("dc"),w4:s("rO"),S8:s("Ut"),r2:s("o8"),Hb:s("o8"),c6:s("AA"),FH:s("o9"),Ua:s("kl"),Sy:s("kl>"),bm:s("kl"),oq:s("UF"),HE:s("Hx"),iN:s("Hy"),f2:s("US"),i9:s("HB"),tH:s("bPT"),yW:s("UY"),Wp:s("V8"),vF:s("Vc"),_l:s("AD"),ps:s("Vh"),xs:s("pM>"),DH:s("ap4"),Bi:s("ap8"),iC:s("Vs"),Lz:s("Vt"),Bh:s("Vu"),ya:s("Vv"),mW:s("Vw"),P1:s("Vx"),T9:s("Vy"),Za:s("Vz"),Sz:s("VA"),MZ:s("VB"),yl:s("VC"),Eg:s("rT"),KS:s("VD"),xp:s("VE"),rH:s("VF"),_V:s("VG"),X0:s("VH"),hb:s("VI"),Yj:s("VJ"),jY:s("VK"),y:s("q"),i:s("Y"),z:s("@"),C_:s("@(C)"),Hg:s("@(C,cw)"),S:s("n"),Lw:s("0&*"),ub:s("C*"),ly:s("l1?"),aO:s("F<~>?"),Wr:s("hG?"),tX:s("atB?"),hh:s("Iu?"),ab:s("l4?"),VC:s("q_?"),Vx:s("er?"),sa:s("j8?"),eJ:s("wm?"),oI:s("be?"),CD:s("es?"),OC:s("tk?"),Cq:s("lV?"),FR:s("q4?"),ep:s("a5?"),If:s("ku?"),cu:s("l6?"),fz:s("q9?"),eQ:s("Bw?"),MB:s("bjD?"),L5:s("ax7?"),JG:s("BA?"),cW:s("ax9?"),eG:s("BB?"),GB:s("axa?"),EM:s("BD?"),VE:s("tp?"),MH:s("e?"),YJ:s("dG?"),Z7:s("dx?"),V2:s("lX?"),je:s("a0Z?"),y9:s("hK?"),CE:s("et?"),fC:s("cK?"),pc:s("eL?"),QS:s("x1?"),Dv:s("bD?"),fd:s("Ke?"),TK:s("oD?"),fW:s("tH?"),bZ:s("jd?"),GL:s("bG?"),pk:s("eM?"),RC:s("KC?"),U5:s("i9?"),ZY:s("S?"),eS:s("a2i?"),xJ:s("hM?"),_I:s("xt?"),Wm:s("qA?"),GK:s("n9?"),lF:s("d4?"),C6:s("aGY?"),ET:s("tX?"),Pr:s("tY?"),Ef:s("m0?"),E5:s("id?"),SC:s("iG?"),IL:s("f?"),U_:s("f?"),q6:s("f?"),uS:s("f?"),aQ:s("f?"),Xv:s("f?"),kh:s("f?"),s5:s("f?"),FF:s("f?"),Xb:s("f?"),EZ:s("f?"),kc:s("f<@>?"),z7:s("f?"),wh:s("f?"),x5:s("di?"),oD:s("o?"),qA:s("kD?"),l8:s("a3?"),O0:s("LL?"),NG:s("iN?"),aU:s("kE?"),Qq:s("m5?"),Em:s("a6?"),YH:s("a6?"),nA:s("a6?"),Xx:s("a6<@,@>?"),Uz:s("a6>?"),J1:s("a6?"),iD:s("bQ?"),WV:s("ev?"),X:s("C?"),Ff:s("aMw?"),dJ:s("nm?"),Zr:s("aMy?"),KX:s("h6?"),Zl:s("np?"),xO:s("us?"),MT:s("MP?"),Cp:s("MQ?"),p7:s("MR?"),ev:s("MS?"),Gr:s("MT?"),BN:s("MU?"),zN:s("MW?"),mc:s("fm?"),e_:s("MX?"),yZ:s("f_?"),dr:s("fn?"),cq:s("+first,second(a5?,a5?)?"),aA:s("O?"),CA:s("yZ?"),p3:s("bR?"),ym:s("r3?"),IT:s("dk?"),T2:s("r4>?"),WN:s("fy<@>?"),oW:s("r6?"),_N:s("EA?"),Ej:s("ea?"),M9:s("aUw?"),uv:s("Op?"),Zi:s("dw?"),TZ:s("uW?"),pg:s("hT?"),tW:s("U?"),MR:s("hr?"),eX:s("zu?"),FO:s("ai?"),QH:s("mo?"),lE:s("il?"),Dt:s("bz?"),v:s("h?"),aE:s("Fa?"),zn:s("kO?"),p8:s("D?"),Dh:s("pk?"),YX:s("ht?"),dN:s("PD?"),mk:s("ey?"),qf:s("abb?"),zV:s("zP?"),ir:s("aR?"),n6:s("e1?"),MQ:s("FB?"),YO:s("eS?"),rC:s("lG?"),Wn:s("nP?"),Xk:s("jv?"),OZ:s("e3?"),_C:s("e3>>?"),yq:s("e3>?"),UO:s("e3?>>?"),gN:s("e3?>>?"),qP:s("e3?>>?"),I4:s("e3?>>?"),dY:s("e3>?"),m4:s("e3?>>?"),UT:s("e3>?"),Nj:s("e3?"),Df:s("e3?"),rY:s("e3?"),pL:s("e3?"),wB:s("e3?"),DJ:s("e3?"),gJ:s("vD<@,m_>?"),av:s("Tc?"),x6:s("vJ?"),gW:s("vK?"),IA:s("hA?"),JI:s("UH<@>?"),u:s("q?"),PM:s("Y?"),bo:s("n?"),Nw:s("~()?"),Jy:s("dm"),H:s("~"),Q:s("~()"),CF:s("~(C,cw?)"),Vu:s("~(bj)"),Su:s("~(tK)"),ph:s("~(f)"),mX:s("~(C)"),hK:s("~(C,cw)"),KT:s("~(lu)"),Ld:s("~(c9)"),iS:s("~(nw)"),qO:s("~(Y)"),HT:s("~(C?)"),NN:s("~(~())")}})();(function constants(){var s=hunkHelpers.makeConstList +B.qz=A.wl.prototype +B.uW=A.wH.prototype +B.v3=A.wN.prototype +B.n0=A.JX.prototype +B.vv=A.Kl.prototype +B.xv=A.xv.prototype +B.y_=A.L0.prototype +B.y0=A.xG.prototype +B.a7G=J.CT.prototype +B.b=J.H.prototype +B.b7=J.Ld.prototype +B.f=J.CX.prototype +B.a7W=J.CY.prototype +B.e=J.u1.prototype +B.c=J.qG.prototype +B.a82=J.oM.prototype +B.a83=J.k.prototype +B.a8l=A.Lu.prototype +B.Jx=A.yk.prototype +B.kX=A.Mf.prototype +B.i2=A.Mg.prototype +B.i3=A.Mh.prototype +B.ou=A.Mi.prototype +B.M=A.yl.prototype +B.i4=A.Mv.prototype +B.Ng=J.a7d.prototype +B.apE=A.O1.prototype +B.OP=A.Pa.prototype +B.pT=J.pm.prototype +B.azw=A.FN.prototype +B.Pp=A.vk.prototype +B.PP=new A.Xk(null) +B.aCU=new A.ase(0,"unknown") +B.PQ=new A.iv(0,0) +B.qn=new A.iv(0,1) +B.qo=new A.iv(0,-1) +B.qp=new A.iv(1,0) +B.PR=new A.iv(1,-1) +B.cV=new A.iv(-1,0) +B.PS=new A.iv(-1,1) +B.bu=new A.iv(-1,-1) +B.a7=new A.hE(0,0) +B.iN=new A.hE(0,1) +B.f0=new A.hE(0,-1) +B.dw=new A.hE(1,0) +B.iO=new A.hE(-1,0) +B.f1=new A.hE(-1,-1) +B.dx=new A.Xs(null) +B.qq=new A.wb(0,A.ah("wb")) +B.A=new A.Xw(0,"normal") +B.PT=new A.Xw(1,"preserve") +B.h6=new A.Xx(0,"forward") +B.iP=new A.Xx(1,"reverse") +B.R=new A.oi(0,"dismissed") +B.b4=new A.oi(1,"forward") +B.b5=new A.oi(2,"reverse") +B.a9=new A.oi(3,"completed") +B.PU=new A.B_(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.qr=new A.Im(0,"exit") +B.qs=new A.Im(1,"cancel") +B.h7=new A.oj(0,"detached") +B.iQ=new A.oj(1,"resumed") +B.mc=new A.oj(2,"inactive") +B.md=new A.oj(3,"hidden") +B.iR=new A.oj(4,"paused") +B.qt=new A.XL(null) +B.PV=new A.XM(null) +B.PW=new A.XN(null) +B.PX=new A.XR(!1,127) +B.PY=new A.XS(127) +B.me=new A.Ip(0,"polite") +B.qu=new A.XT(0,"polite") +B.mf=new A.Ip(1,"assertive") +B.qv=new A.XT(1,"assertive") +B.PZ=new A.Y4(null) +B.ec=new A.hG(0,"none") +B.iS=new A.hG(1,"basic") +B.c3=A.a(s([]),t.s) +B.t=new A.Ph(1,"downstream") +B.iw=new A.im(-1,-1,B.t,!1,-1,-1) +B.ca=new A.dl(-1,-1) +B.OX=new A.eQ("",B.iw,B.ca) +B.qw=new A.It(!1,"",B.c3,B.OX,null) +B.qx=new A.atv(0,"disabled") +B.aj=new A.B6(0,"up") +B.f2=new A.B6(1,"right") +B.ak=new A.B6(2,"down") +B.dy=new A.B6(3,"left") +B.ar=new A.Y6(0,"horizontal") +B.H=new A.Y6(1,"vertical") +B.Q_=new A.Y9(null) +B.Q0=new A.Y7(B.Q_,null,null,null) +B.Q1=new A.Yd(null) +B.Q2=new A.Iv(null,null,null,null,null,null,null,null) +B.bp=new A.aXG() +B.mg=new A.tg("flutter/accessibility",B.bp,t.Al) +B.ed=new A.aHC() +B.Q3=new A.tg("flutter/keyevent",B.ed,t.Al) +B.mn=new A.aYm() +B.Q4=new A.tg("flutter/lifecycle",B.mn,A.ah("tg")) +B.Q5=new A.tg("flutter/system",B.ed,t.Al) +B.jA=new A.Cw(2,"previous") +B.Q6=new A.wk(null,B.jA,0,0) +B.Q7=new A.q0(12,"plus") +B.Q8=new A.q0(13,"modulate") +B.qy=new A.q0(20,"hardLight") +B.Q9=new A.q0(26,"saturation") +B.dz=new A.q0(3,"srcOver") +B.iT=new A.q0(5,"srcIn") +B.Qa=new A.q0(9,"srcATop") +B.a4=new A.auu(0,"normal") +B.da=new A.b8(16,16) +B.L=new A.b8(0,0) +B.Qb=new A.q1(B.da,B.L,B.da,B.L) +B.Qc=new A.q1(B.L,B.da,B.L,B.da) +B.aG=new A.dt(B.L,B.L,B.L,B.L) +B.eF=new A.b8(4,4) +B.qD=new A.dt(B.eF,B.eF,B.L,B.L) +B.qC=new A.dt(B.da,B.da,B.L,B.L) +B.e6=new A.b8(2,2) +B.iU=new A.dt(B.e6,B.e6,B.e6,B.e6) +B.h8=new A.dt(B.eF,B.eF,B.eF,B.eF) +B.lf=new A.b8(7,7) +B.Qd=new A.dt(B.lf,B.lf,B.lf,B.lf) +B.e7=new A.b8(8,8) +B.bv=new A.dt(B.e7,B.e7,B.e7,B.e7) +B.la=new A.b8(12,12) +B.qB=new A.dt(B.la,B.la,B.la,B.la) +B.cW=new A.dt(B.da,B.da,B.da,B.da) +B.lb=new A.b8(22,22) +B.Qh=new A.dt(B.lb,B.lb,B.lb,B.lb) +B.lc=new A.b8(32,32) +B.Qi=new A.dt(B.lc,B.lc,B.lc,B.lc) +B.ld=new A.b8(40,40) +B.qA=new A.dt(B.ld,B.ld,B.ld,B.ld) +B.le=new A.b8(60,50) +B.Qe=new A.dt(B.le,B.le,B.le,B.le) +B.ZO=new A.e(4293454056) +B.I=new A.Yu(1,"solid") +B.Qj=new A.be(B.ZO,1,B.I,-1) +B.o=new A.e(4278190080) +B.bn=new A.Yu(0,"none") +B.u=new A.be(B.o,0,B.bn,-1) +B.E=new A.e(0) +B.Qm=new A.be(B.E,0,B.I,-1) +B.mi=new A.be(B.E,1,B.I,-1) +B.Ql=new A.be(B.E,2,B.I,-1) +B.mh=new A.be(B.o,1,B.I,-1) +B.qE=new A.er(B.mi,B.u,B.mi,B.u) +B.qF=new A.er(B.u,B.u,B.u,B.u) +B.TK=new A.e(1291845632) +B.Qn=new A.be(B.TK,0,B.I,-1) +B.qG=new A.er(B.u,B.u,B.Qn,B.u) +B.Qp=new A.Bb(null,null,null,null,null,null,null) +B.Qq=new A.IF(null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.Qr=new A.wn(null,null,null,null,null,null,null,null,null,null,null,null,null) +B.Qs=new A.wn(B.E,null,0,null,null,null,null,null,null,null,null,null,null) +B.apF=new A.a8U(0,"normal") +B.oO=new A.a7C(null) +B.Qt=new A.IH(B.apF,B.oO) +B.NH=new A.a8U(1,"fast") +B.Qu=new A.IH(B.NH,B.oO) +B.Qv=new A.aN(40,40,40,40) +B.Qw=new A.aN(56,56,56,56) +B.Qx=new A.aN(59,59,39,39) +B.Qy=new A.aN(96,96,96,96) +B.iV=new A.aN(1/0,1/0,1/0,1/0) +B.Qz=new A.aN(0,1/0,56,56) +B.QA=new A.aN(112,280,0,1/0) +B.qH=new A.aN(0,640,0,1/0) +B.f3=new A.aN(0,1/0,0,1/0) +B.QF=new A.aN(50,1/0,0,1/0) +B.QB=new A.aN(280,1/0,0,1/0) +B.QD=new A.aN(36,1/0,36,1/0) +B.QC=new A.aN(0,1/0,48,1/0) +B.QE=new A.aN(48,1/0,48,1/0) +B.TJ=new A.e(1006632960) +B.JB=new A.m(0,4) +B.QV=new A.cd(0.5,B.a4,B.TJ,B.JB,10) +B.ahg=A.a(s([B.QV]),t.c) +B.aK=new A.YB(0,"rectangle") +B.QG=new A.dU(null,null,null,B.bv,B.ahg,null,B.aK) +B.mI=new A.e(4290624957) +B.Qk=new A.be(B.mI,0,B.I,-1) +B.Qo=new A.er(B.u,B.u,B.Qk,B.u) +B.QH=new A.dU(null,null,B.Qo,null,null,null,B.aK) +B.QI=new A.wq(1,"contain") +B.QJ=new A.wq(2,"cover") +B.QK=new A.wq(3,"fitWidth") +B.QL=new A.wq(4,"fitHeight") +B.qI=new A.wq(6,"scaleDown") +B.cd=new A.Yx(0,"tight") +B.qJ=new A.Yx(5,"strut") +B.iW=new A.YB(1,"circle") +B.bS=new A.auy(0,"tight") +B.S=new A.Bf(0,"dark") +B.a2=new A.Bf(1,"light") +B.Rl=new A.YD(null) +B.dA=new A.IL(0,"blink") +B.al=new A.IL(1,"webkit") +B.cX=new A.IL(2,"firefox") +B.Rm=new A.av8(1,"padded") +B.Rn=new A.IM(null,null,null,null,null,null,null,null,null) +B.Ro=new A.ava(0,"normal") +B.Tb=new A.RH(A.ah("RH>")) +B.Rp=new A.Bi(B.Tb) +B.RI=new A.cr(A.bV2(),A.ah("cr")) +B.Rw=new A.cr(A.vX(),A.ah("cr")) +B.Rs=new A.cr(A.vX(),A.ah("cr")) +B.Ry=new A.cr(A.vX(),A.ah("cr")) +B.Ru=new A.cr(A.vX(),A.ah("cr")) +B.Rt=new A.cr(A.vX(),A.ah("cr")) +B.h9=new A.cr(A.vX(),A.ah("cr")) +B.Rx=new A.cr(A.vX(),A.ah("cr")) +B.Rv=new A.cr(A.vX(),A.ah("cr")) +B.Rz=new A.cr(A.vX(),A.ah("cr")) +B.Rr=new A.cr(A.bYg(),A.ah("cr")) +B.RG=new A.cr(A.WX(),A.ah("cr")) +B.RB=new A.cr(A.WX(),A.ah("cr")) +B.RC=new A.cr(A.WX(),A.ah("cr")) +B.RE=new A.cr(A.WX(),A.ah("cr")) +B.RD=new A.cr(A.WX(),A.ah("cr")) +B.RF=new A.cr(A.WX(),A.ah("cr")) +B.RA=new A.cr(A.bTC(),A.ah("cr")) +B.Rq=new A.cr(A.bTE(),A.ah("cr")) +B.RH=new A.cr(A.bWq(),A.ah("cr")) +B.iY=new A.cr(A.bz7(),A.ah("cr")) +B.iX=new A.cr(A.bz7(),A.ah("cr")) +B.RJ=new A.AT() +B.RK=new A.asf() +B.RM=new A.B1() +B.ce=new A.XQ() +B.RN=new A.B9() +B.RP=new A.Yh() +B.qK=new A.Yf() +B.RO=new A.Yg() +B.RQ=new A.Yk() +B.RR=new A.Ym() +B.mj=new A.Bg() +B.RS=new A.Bh() +B.qL=new A.av3() +B.RT=new A.YQ() +B.RU=new A.YR() +B.RV=new A.YS() +B.RW=new A.YU() +B.RX=new A.axn() +B.RY=new A.ayl() +B.RZ=new A.a0G() +B.iZ=new A.a0H(A.ah("a0H<0&>")) +B.S_=new A.a0I() +B.S0=new A.a0M(A.ah("a0M<@>")) +B.S1=new A.a0N() +B.V=new A.JT() +B.S2=new A.azv() +B.S3=new A.a18() +B.mk=new A.C3() +B.S4=new A.aAa() +B.S5=new A.C9() +B.S6=new A.aBl() +B.qP=new A.jM(A.ah("jM")) +B.S7=new A.jM(A.ah("jM")) +B.S8=new A.jM(A.ah("jM")) +B.qQ=new A.a1l(A.ah("a1l<0&>")) +B.qR=new A.a1o() +B.bo=new A.a1o() +B.S9=new A.aBS() +B.Sa=new A.a1P() +B.di=new A.a1R() +B.Sb=new A.a1V() +B.qS=new A.a1X() +B.d=new A.aEf() +B.Sc=new A.Cy() +B.aCV=new A.a2f() +B.Sd=new A.a2g() +B.Se=new A.aFg() +B.Sf=new A.aFH() +B.Sg=new A.CJ() +B.Sh=new A.L2() +B.Si=new A.a33() +B.aH=new A.aHB() +B.bT=new A.aHD() +B.ha=new A.aHE() +B.az=new A.a3b() +B.cC=new A.a3m() +B.Sj=new A.D9() +B.Sk=new A.a3N() +B.Sl=new A.a3P() +B.Sm=new A.a3Q() +B.Sn=new A.a3R() +B.So=new A.a3Y() +B.Sp=new A.a3Z() +B.Sq=new A.aJY() +B.ml=new A.Dv() +B.Sr=new A.a6a() +B.Ss=new A.aMd() +B.St=new A.aMf() +B.qU=new A.aMh() +B.Su=new A.aMt() +B.qV=new A.C() +B.Sv=new A.a6A() +B.bO=new A.ha(0,"android") +B.b1=new A.ha(2,"iOS") +B.dc=new A.ha(4,"macOS") +B.r4=new A.adA() +B.qN=new A.a0p() +B.kP=new A.dg([B.bO,B.r4,B.b1,B.qN,B.dc,B.qN],A.ah("dg")) +B.Sw=new A.a6G() +B.Sx=new A.a6W() +B.mm=new A.MI() +B.aM=new A.mk(4,"keyboard") +B.qW=new A.ut() +B.Sy=new A.aNe() +B.aCW=new A.aNC() +B.Sz=new A.aNN() +B.SB=new A.a7p() +B.SC=new A.a7x() +B.SD=new A.E4() +B.SE=new A.a7D() +B.SF=new A.Ec() +B.qY=new A.uG() +B.SG=new A.aRO() +B.SH=new A.aRP() +B.SI=new A.aRQ() +B.SJ=new A.aRR() +B.SK=new A.aSX() +B.SL=new A.a8S() +B.SM=new A.aTn() +B.qZ=new A.r9() +B.SN=new A.aU5() +B.a=new A.aU6() +B.SO=new A.EI() +B.r_=new A.EM() +B.SP=new A.EO() +B.SQ=new A.a9V() +B.SR=new A.aa1() +B.SS=new A.aa5() +B.ST=new A.aa9() +B.SU=new A.aaa() +B.dB=new A.aXF() +B.f4=new A.aXJ() +B.bU=new A.aXK() +B.aCX=new A.aaB() +B.SV=new A.aZe() +B.SW=new A.aZk() +B.SX=new A.aZl() +B.SY=new A.aZm() +B.SZ=new A.aZq() +B.T_=new A.aZs() +B.T0=new A.aZt() +B.T1=new A.aZu() +B.T2=new A.ab5() +B.r0=new A.va() +B.r1=new A.vd() +B.T3=new A.FI() +B.mo=new A.FJ() +B.T4=new A.b0t() +B.a_=new A.abA() +B.aV=new A.abB() +B.r2=new A.abC() +B.W=new A.L(0,0,0,0) +B.iB=new A.abK(0,0,0,0) +B.af8=A.a(s([]),A.ah("H")) +B.r3=new A.abJ() +B.c6={} +B.fD=new A.a2(B.c6,[],t.w) +B.aCY=new A.b0N() +B.f5=new A.adT() +B.bV=new A.adU() +B.r5=new A.b3m() +B.T6=new A.R2(A.ah("R2")) +B.T7=new A.afC() +B.dC=new A.afR() +B.T8=new A.b4n() +B.T9=new A.b4r() +B.aCZ=new A.Rm() +B.cD=new A.ag0() +B.hb=new A.b4B() +B.Ta=new A.b4J() +B.r6=new A.b5_() +B.mp=new A.b50() +B.Td=new A.b7a() +B.Te=new A.b7b() +B.hc=new A.b7q() +B.Y=new A.Sx() +B.Tf=new A.aiC() +B.Tg=new A.aj2() +B.bq=new A.b8V() +B.Ti=new A.b8X() +B.hd=new A.b9I() +B.Tj=new A.bai() +B.r7=new A.bbd() +B.b6=new A.am_() +B.Tk=new A.bbC() +B.Tl=new A.amA() +B.Tm=new A.ap5() +B.he=new A.YH(0,"pixel") +B.To=new A.YH(1,"viewport") +B.mq=new A.Bj(0,"forceCache") +B.r8=new A.Bj(1,"refreshForceCache") +B.r9=new A.Bj(2,"noCache") +B.Tp=new A.Bj(4,"request") +B.Tq=new A.ws(0,"low") +B.ra=new A.ws(1,"normal") +B.Tr=new A.ws(2,"high") +B.Tv=new A.Bl(null,null,null,null,null,null,null) +B.Tw=new A.YP(null) +B.ee=new A.q8(null,null) +B.Tz=new A.Bq(null,null,null,null,null,null,null,null,null) +B.TA=new A.Bt(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.f6=new A.hi(0,B.u) +B.TD=new A.Ja(B.oO) +B.rc=new A.Ja(null) +B.apT=new A.Oh(2,"clear") +B.mr=new A.Jb(B.apT) +B.TE=new A.Zd(0,"difference") +B.f7=new A.Zd(1,"intersect") +B.n=new A.By(0,"none") +B.C=new A.By(1,"hardEdge") +B.bd=new A.By(2,"antiAlias") +B.f8=new A.By(3,"antiAliasWithSaveLayer") +B.ms=new A.BE(0,"pasteable") +B.mt=new A.BE(1,"unknown") +B.TF=new A.Zk(null) +B.TG=new A.Zj(B.TF,null,null,null) +B.aD_=new A.axs(0,"mode") +B.j8=new A.e(4284960932) +B.l=new A.e(4294967295) +B.mM=new A.e(4293582335) +B.UR=new A.e(4280352861) +B.tv=new A.e(4284636017) +B.mL=new A.e(4293451512) +B.UK=new A.e(4280097067) +B.mE=new A.e(4286403168) +B.mP=new A.e(4294957284) +B.V9=new A.e(4281405725) +B.Yj=new A.e(4289930782) +B.uG=new A.e(4294565596) +B.Vt=new A.e(4282453515) +B.uN=new A.e(4294966270) +B.j3=new A.e(4280032031) +B.ZL=new A.e(4293386476) +B.mC=new A.e(4282991951) +B.WI=new A.e(4286149758) +B.ug=new A.e(4291478736) +B.t1=new A.e(4281413683) +B.a_e=new A.e(4294242292) +B.jc=new A.e(4291869951) +B.TH=new A.wz(B.a2,B.j8,B.l,B.mM,B.UR,B.tv,B.l,B.mL,B.UK,B.mE,B.l,B.mP,B.V9,B.Yj,B.l,B.uG,B.Vt,B.uN,B.j3,B.uN,B.j3,B.ZL,B.mC,B.WI,B.ug,B.o,B.o,B.t1,B.a_e,B.jc,B.j8) +B.hl=new A.e(4284612846) +B.dj=new A.e(4278442694) +B.as=new A.e(4289724448) +B.aD0=new A.wz(B.a2,B.hl,B.l,null,null,B.dj,B.o,null,null,null,null,null,null,B.as,B.l,null,null,B.l,B.o,B.l,B.o,null,null,null,null,null,null,null,null,null,null) +B.Vi=new A.e(4281867890) +B.tm=new A.e(4283381643) +B.uh=new A.e(4291609308) +B.Vb=new A.e(4281544001) +B.tj=new A.e(4283057240) +B.mN=new A.e(4293900488) +B.VK=new A.e(4282983730) +B.tw=new A.e(4284693320) +B.a_9=new A.e(4294097077) +B.Wh=new A.e(4284486672) +B.Xc=new A.e(4287372568) +B.mK=new A.e(4293321189) +B.Xw=new A.e(4287860633) +B.TI=new A.wz(B.S,B.jc,B.Vi,B.tm,B.mM,B.uh,B.Vb,B.tj,B.mL,B.mN,B.VK,B.tw,B.mP,B.a_9,B.Wh,B.Xc,B.uG,B.j3,B.mK,B.j3,B.mK,B.mC,B.ug,B.Xw,B.mC,B.o,B.o,B.mK,B.t1,B.j8,B.jc) +B.re=new A.e(1087163596) +B.TL=new A.e(134217728) +B.ri=new A.e(144613022) +B.TM=new A.e(1612257561) +B.TN=new A.e(1627389952) +B.TO=new A.e(1660944383) +B.rl=new A.e(16777215) +B.TP=new A.e(167772160) +B.mv=new A.e(1723645116) +B.TQ=new A.e(1724434632) +B.TR=new A.e(2155905152) +B.aa=new A.e(2315255808) +B.TT=new A.e(2583691263) +B.ap=new A.e(3019898879) +B.af=new A.e(3707764736) +B.TV=new A.e(402653184) +B.TW=new A.e(4039164096) +B.ef=new A.e(4279374354) +B.rG=new A.e(4279858898) +B.my=new A.e(4280191205) +B.rN=new A.e(4280361249) +B.mz=new A.e(4280391411) +B.mA=new A.e(4281348144) +B.hj=new A.e(4281479730) +B.Vs=new A.e(4282449922) +B.dk=new A.e(4282532418) +B.eg=new A.e(4284572001) +B.tx=new A.e(4284809178) +B.ty=new A.e(4285071365) +B.cf=new A.e(4286119936) +B.hn=new A.e(4287679225) +B.bA=new A.e(4287823882) +B.tO=new A.e(4288362317) +B.tR=new A.e(4288585374) +B.bw=new A.e(4290386458) +B.u8=new A.e(4290502395) +B.a5=new A.e(4291782265) +B.uk=new A.e(4292030255) +B.jd=new A.e(4292927712) +B.up=new A.e(4293128957) +B.fc=new A.e(4293848814) +B.a_4=new A.e(4293874512) +B.uB=new A.e(4294309365) +B.uI=new A.e(4294638330) +B.br=new A.e(4294948011) +B.bx=new A.e(4294957782) +B.a0b=new A.e(436207616) +B.a0c=new A.e(452984831) +B.cE=new A.e(520093696) +B.a0d=new A.e(536870911) +B.a0g=new A.ts(B.ri,null,null) +B.uQ=new A.ot(0,"cut") +B.uR=new A.ot(1,"copy") +B.uS=new A.ot(2,"paste") +B.uT=new A.ot(3,"selectAll") +B.a0i=new A.ot(5,"lookUp") +B.a0j=new A.ot(6,"searchWeb") +B.a0k=new A.ot(7,"share") +B.a0l=new A.ot(8,"liveTextInput") +B.uU=new A.ou(!1) +B.uV=new A.ou(!0) +B.a0m=new A.BM(null) +B.dl=new A.wG(0,"start") +B.a0n=new A.wG(1,"end") +B.w=new A.wG(2,"center") +B.jf=new A.wG(3,"stretch") +B.mR=new A.wG(4,"baseline") +B.uX=new A.f7(0.18,1,0.04,1) +B.a0o=new A.f7(0.215,0.61,0.355,1) +B.uY=new A.f7(0.2,0,0,1) +B.uZ=new A.f7(0,0,0.2,1) +B.v_=new A.f7(0.31,0,0.56,1) +B.a0q=new A.f7(0.05,0,0.133333,0.06) +B.aO=new A.f7(0.25,0.1,0.25,1) +B.bB=new A.f7(0.42,0,1,1) +B.v0=new A.f7(0.67,0.03,0.65,0.09) +B.v1=new A.f7(0.175,0.885,0.32,1.275) +B.a0t=new A.f7(0.075,0.82,0.165,1) +B.a0u=new A.f7(0.208333,0.82,0.25,1) +B.a6=new A.f7(0.4,0,0.2,1) +B.fe=new A.f7(0.35,0.91,0.33,0.97) +B.d_=new A.f7(0,0,0.58,1) +B.dE=new A.f7(0.42,0,0.58,1) +B.hp=new A.e(4289967027) +B.a0w=new A.eh(B.hp,"offSwitchLabel",null,B.hp,B.hp,B.l,B.l,B.hp,B.hp,B.l,B.l,0) +B.mx=new A.e(4278221567) +B.rA=new A.e(4278879487) +B.rp=new A.e(4278206685) +B.tc=new A.e(4282424575) +B.jg=new A.eh(B.mx,"systemBlue",null,B.mx,B.rA,B.rp,B.tc,B.mx,B.rA,B.rp,B.tc,0) +B.hg=new A.e(268435456) +B.j0=new A.e(285212671) +B.a0x=new A.eh(B.hg,null,null,B.hg,B.j0,B.hg,B.j0,B.hg,B.j0,B.hg,B.j0,0) +B.hq=new A.e(4290295992) +B.j6=new A.e(4284177243) +B.a0y=new A.eh(B.hq,null,null,B.hq,B.j6,B.hq,B.j6,B.hq,B.j6,B.hq,B.j6,0) +B.mQ=new A.e(678983808) +B.rh=new A.e(1366849664) +B.rd=new A.e(1031305344) +B.rm=new A.e(1719171200) +B.a0z=new A.eh(B.mQ,"secondarySystemFill",null,B.mQ,B.rh,B.rd,B.rm,B.mQ,B.rh,B.rd,B.rm,0) +B.hr=new A.e(4294375158) +B.j4=new A.e(4280427042) +B.a0A=new A.eh(B.hr,null,null,B.hr,B.j4,B.hr,B.j4,B.hr,B.j4,B.hr,B.j4,0) +B.ho=new A.e(4288256409) +B.hm=new A.e(4285887861) +B.dF=new A.eh(B.ho,"inactiveGray",null,B.ho,B.hm,B.ho,B.hm,B.ho,B.hm,B.ho,B.hm,0) +B.hk=new A.e(4282137668) +B.je=new A.e(4293651445) +B.a0B=new A.eh(B.hk,null,null,B.hk,B.je,B.hk,B.je,B.hk,B.je,B.hk,B.je,0) +B.jh=new A.eh(B.o,null,null,B.o,B.l,B.o,B.l,B.o,B.l,B.o,B.l,0) +B.hh=new A.e(3003121663) +B.j1=new A.e(2989502512) +B.a0C=new A.eh(B.hh,null,null,B.hh,B.j1,B.hh,B.j1,B.hh,B.j1,B.hh,B.j1,0) +B.mB=new A.e(4281648985) +B.rZ=new A.e(4281389400) +B.rQ=new A.e(4280584765) +B.t_=new A.e(4281391963) +B.a0D=new A.eh(B.mB,"systemGreen",null,B.mB,B.rZ,B.rQ,B.t_,B.mB,B.rZ,B.rQ,B.t_,0) +B.fb=new A.e(4292269782) +B.a0E=new A.eh(B.fb,null,null,B.fb,B.dk,B.fb,B.dk,B.fb,B.dk,B.fb,B.dk,0) +B.mu=new A.e(1279016003) +B.rg=new A.e(1290529781) +B.rj=new A.e(1614560323) +B.rk=new A.e(1626074101) +B.a0F=new A.eh(B.mu,"placeholderText",null,B.mu,B.rg,B.rj,B.rk,B.mu,B.rg,B.rj,B.rk,0) +B.ff=new A.eh(B.o,"label",null,B.o,B.l,B.o,B.l,B.o,B.l,B.o,B.l,0) +B.mw=new A.e(343176320) +B.uP=new A.e(762738304) +B.uO=new A.e(678720640) +B.rf=new A.e(1115059840) +B.ji=new A.eh(B.mw,"quaternarySystemFill",null,B.mw,B.uP,B.uO,B.rf,B.mw,B.uP,B.uO,B.rf,0) +B.hf=new A.e(1493172224) +B.j_=new A.e(2164260863) +B.a0H=new A.eh(B.hf,null,null,B.hf,B.j_,B.hf,B.j_,B.hf,B.j_,B.hf,B.j_,0) +B.P9=new A.mq("Page Not Found",null,null,null,null,null,null,null,null,null) +B.q6=new A.S5(null) +B.a0I=new A.Jw(null) +B.UJ=new A.e(4280032286) +B.UX=new A.e(4280558630) +B.v2=new A.eh(B.l,"systemBackground",null,B.l,B.o,B.l,B.o,B.l,B.UJ,B.l,B.UX,0) +B.hi=new A.e(4042914297) +B.j2=new A.e(4028439837) +B.a0G=new A.eh(B.hi,null,null,B.hi,B.j2,B.hi,B.j2,B.hi,B.j2,B.hi,B.j2,0) +B.aBA=new A.afJ(B.ff,B.dF) +B.q3=new A.afL(null,B.jg,B.v2,B.a0G,B.v2,!1,B.aBA) +B.dG=new A.BQ(B.q3,null,null,null,null,null,null,null) +B.a0J=new A.d3(0,11,"readerPadding") +B.a0K=new A.d3(192,35,"gridMangaCoverWidth") +B.a0L=new A.d3(1,12,"readerMagnifierSize") +B.xH=new A.aO(63428,"MaterialIcons",null,!1) +B.dm=new A.et(B.xH,0,"grid") +B.a0M=new A.d3(B.dm,34,"sourceDisplayMode") +B.a0N=new A.d3(4567,1,"serverPort") +B.a0O=new A.d3(B.ec,8,"authType") +B.rb=new A.l6(0,"source") +B.a0P=new A.d3(B.rb,31,"chapterSort") +B.ag_=A.a(s(["installed","update","en","all"]),t.s) +B.a0Q=new A.d3(B.ag_,4,"extensionLanguageFilter") +B.hw=new A.bG(0,"material") +B.a0R=new A.d3(B.hw,40,"flexScheme") +B.aeE=A.a(s(["all","lastUsed","en","localsourcelang"]),t.s) +B.a0S=new A.d3(B.aeE,3,"sourceLanguageFilter") +B.oq=new A.kE(0,"alphabetical") +B.a0T=new A.d3(B.oq,29,"mangaSort") +B.a0U=new A.d3(B.dm,33,"libraryDisplayMode") +B.ia=new A.f_(7,"webtoon") +B.a0V=new A.d3(B.ia,10,"readerMode") +B.iz=new A.ht(0,"system") +B.a0W=new A.d3(B.iz,6,"themeMode") +B.Eh=new A.di("en",null,null) +B.a0X=new A.d3(B.Eh,22,"l10n") +B.eG=new A.fn(5,"disabled") +B.a0Y=new A.d3(B.eG,13,"readerNavigationLayout") +B.a0Z=new A.d3(!1,14,"invertTap") +B.a1_=new A.d3(!1,32,"chapterSortDirection") +B.a10=new A.d3(!1,37,"volumeTap") +B.a11=new A.d3(!1,38,"volumeTapInvert") +B.a12=new A.d3(!1,7,"isTrueBlack") +B.a13=new A.d3(null,23,"mangaFilterDownloaded") +B.a14=new A.d3(null,24,"mangaFilterUnread") +B.a15=new A.d3(null,25,"mangaFilterCompleted") +B.a16=new A.d3(null,26,"chapterFilterDownloaded") +B.a17=new A.d3(null,27,"chapterFilterUnread") +B.a18=new A.d3(null,28,"chapterFilterBookmarked") +B.a19=new A.d3(null,5,"sourceLastUsed") +B.a1a=new A.d3(null,9,"basicCredentials") +B.a1b=new A.d3("http://127.0.0.1",0,"serverUrl") +B.a1c=new A.d3(!0,15,"quickSearchToggle") +B.a1d=new A.d3(!0,16,"swipeToggle") +B.a1e=new A.d3(!0,17,"scrollAnimation") +B.a1f=new A.d3(!0,18,"showNSFW") +B.a1g=new A.d3(!0,19,"downloadedBadge") +B.a1h=new A.d3(!0,20,"unreadBadge") +B.a1i=new A.d3(!0,2,"serverPortToggle") +B.a1j=new A.d3(!0,30,"mangaSortDirection") +B.a1k=new A.d3(!0,36,"readerOverlay") +B.a1l=new A.d3(!0,39,"pinchToZoom") +B.a1m=new A.ayd(1,"latency") +B.a1n=new A.JH(null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.a1o=new A.JI(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,null,null,null,null) +B.v4=new A.wO(0,"uninitialized") +B.a1p=new A.wO(1,"initializingServices") +B.v5=new A.wO(2,"initializedServices") +B.a1q=new A.wO(3,"initializingUi") +B.a1r=new A.wO(4,"initialized") +B.a1s=new A.ayk(1,"traversalOrder") +B.dH=new A.a0D(0,"background") +B.v6=new A.a0D(1,"foreground") +B.a0=new A.a0F(!1) +B.aCv=new A.ajH(null) +B.fg=new A.tw(null,null,null,B.aCv,null) +B.iy=new A.D(!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.aU=new A.Fq(0,"clip") +B.at=new A.aZW(0,"parent") +B.aCw=new A.ajJ(null) +B.mS=new A.BU(B.iy,null,!0,B.aU,null,B.at,null,B.aCw,null) +B.mT=new A.wR(!1) +B.mU=new A.wR(!0) +B.mV=new A.wS(!1) +B.mW=new A.wS(!0) +B.mX=new A.wT(!1) +B.mY=new A.wT(!0) +B.aW=new A.JN(3,"info") +B.a1x=new A.JN(5,"hint") +B.a1y=new A.JN(6,"summary") +B.aD1=new A.ow(1,"sparse") +B.a1z=new A.ow(10,"shallow") +B.a1A=new A.ow(11,"truncateChildren") +B.a1B=new A.ow(5,"error") +B.a1C=new A.ow(6,"whitespace") +B.mZ=new A.ow(7,"flat") +B.eh=new A.ow(8,"singleLine") +B.cg=new A.ow(9,"errorProperty") +B.a1D=new A.BX(null,null,null,null,null,null,null,null,null,null) +B.a1E=new A.ty(0,"connectionTimeout") +B.a1F=new A.ty(2,"receiveTimeout") +B.a1G=new A.ty(4,"badResponse") +B.jj=new A.ty(5,"cancel") +B.a1H=new A.ty(6,"connectionError") +B.a1I=new A.ty(7,"unknown") +B.xK=new A.aO(983690,"MaterialIcons",null,!0) +B.jk=new A.et(B.xK,1,"list") +B.n_=new A.et(B.xK,2,"descriptiveList") +B.a1L=new A.C0(null,null,null,null,null) +B.a1M=new A.C_(0,null) +B.fh=new A.C_(null,null) +B.a1N=new A.C_(0.5,null) +B.n1=new A.a1a(0,"down") +B.D=new A.a1a(1,"start") +B.a1P=new A.a1c(0,"start") +B.a1Q=new A.a1c(1,"end") +B.a1R=new A.a1e(null) +B.a1S=new A.C5(null,null,null,null,null,null,null,null) +B.cS=new A.cM(B.aG,B.u) +B.ye=new A.D8(null) +B.a1T=new A.K2(B.cS,384,B.ye,null) +B.a1U=new A.K5(null,null,null) +B.B=new A.bj(0) +B.v7=new A.bj(1) +B.aX=new A.bj(1e5) +B.ei=new A.bj(1e6) +B.a1V=new A.bj(1e7) +B.a1W=new A.bj(12e4) +B.a1X=new A.bj(12e5) +B.a1Y=new A.bj(12096e8) +B.n2=new A.bj(125e3) +B.a1Z=new A.bj(14e4) +B.a2_=new A.bj(15e3) +B.d0=new A.bj(15e4) +B.v8=new A.bj(15e5) +B.a20=new A.bj(16667) +B.dI=new A.bj(167e3) +B.a21=new A.bj(18e4) +B.a22=new A.bj(18e5) +B.a23=new A.bj(195e3) +B.a24=new A.bj(2e4) +B.T=new A.bj(2e5) +B.ej=new A.bj(2e6) +B.a25=new A.bj(225e3) +B.a26=new A.bj(246e3) +B.jl=new A.bj(25e4) +B.a27=new A.bj(2592e9) +B.a28=new A.bj(2961926e3) +B.bC=new A.bj(3e5) +B.a29=new A.bj(3e6) +B.v9=new A.bj(35e4) +B.va=new A.bj(375e3) +B.a2a=new A.bj(4e4) +B.n3=new A.bj(4e5) +B.a2b=new A.bj(45e3) +B.ek=new A.bj(5e4) +B.bD=new A.bj(5e5) +B.hs=new A.bj(6e5) +B.vb=new A.bj(6e7) +B.vc=new A.bj(6048e8) +B.vd=new A.bj(7e4) +B.fi=new A.bj(75e3) +B.a2c=new A.bj(-38e3) +B.a2d=new A.fk(12,8,16,8) +B.n4=new A.fk(16,0,24,0) +B.a2e=new A.fk(4,0,6,0) +B.a2f=new A.fk(52,0,0,0) +B.ve=new A.fk(6,0,0,0) +B.a2g=new A.fk(6,0,2,0) +B.a2i=new A.fk(8,0,12,0) +B.a8=new A.aK(0,0,0,0) +B.aD2=new A.aK(0,0,0,10) +B.a2j=new A.aK(0,12,0,12) +B.a2k=new A.aK(0,13,0,13) +B.jm=new A.aK(0,16,0,16) +B.a2l=new A.aK(0,2,0,2) +B.a2m=new A.aK(0,48,0,0) +B.a2n=new A.aK(0,4,0,0) +B.a2o=new A.aK(0,4,0,4) +B.cF=new A.aK(0,8,0,8) +B.a2p=new A.aK(12,0,12,0) +B.vf=new A.aK(12,12,12,12) +B.a2q=new A.aK(12,20,12,12) +B.a2r=new A.aK(12,24,12,16) +B.vg=new A.aK(12,8,12,8) +B.dJ=new A.aK(16,0,16,0) +B.a2s=new A.aK(16,13,16,13) +B.jn=new A.aK(16,16,16,16) +B.a2t=new A.aK(16,18,16,18) +B.jo=new A.aK(16,4,16,4) +B.n5=new A.aK(16,8,16,8) +B.a2u=new A.aK(20,0,20,3) +B.dK=new A.aK(20,20,20,20) +B.a2v=new A.aK(24,0,24,0) +B.a2w=new A.aK(24,0,24,24) +B.jp=new A.aK(3,3,3,3) +B.a2x=new A.aK(40,24,40,24) +B.a2y=new A.aK(4,0,0,0) +B.dL=new A.aK(4,0,4,0) +B.fj=new A.aK(4,4,4,4) +B.aD3=new A.aK(4,4,4,5) +B.a2z=new A.aK(4,8,4,8) +B.a2A=new A.aK(64,14,64,14) +B.a2B=new A.aK(6,6,6,6) +B.bW=new A.aK(8,0,8,0) +B.a2C=new A.aK(8,16,8,16) +B.a2D=new A.aK(8,2,8,5) +B.a2E=new A.aK(8,4,8,4) +B.bh=new A.aK(8,8,8,8) +B.vh=new A.aK(0.5,1,0.5,1) +B.a2F=new A.a1h(null) +B.a2G=new A.Kb(null) +B.a2H=new A.Kc(0,"noOpinion") +B.a2I=new A.Kc(1,"enabled") +B.jq=new A.Kc(2,"disabled") +B.a2J=new A.a1n(null) +B.aD4=new A.Ch(0) +B.a2K=new A.aC_("dart-tools.dev/flutter_android_volume_keydown") +B.n6=new A.x5(!1,!1,!1,!1) +B.n7=new A.x5(!1,!1,!1,!0) +B.vi=new A.x6(!1,!1,!1,!1) +B.vj=new A.x6(!1,!1,!1,!0) +B.fl=new A.a1T(0,"tight") +B.OD=new A.fB(1/0,1/0,null,null) +B.n8=new A.tD(1,B.fl,B.OD,null) +B.a2L=new A.tD(2,B.fl,B.OD,null) +B.a2M=new A.Cl(null,null,null,null,null,null,null,null,null,null,null) +B.n9=new A.qm(!1,!1,!1,!1) +B.na=new A.qm(!1,!1,!1,!0) +B.ht=new A.qm(!0,!1,!1,!1) +B.hu=new A.qm(!0,!1,!1,!0) +B.vk=new A.qn(!1,!1,!1,!1) +B.vl=new A.qn(!1,!1,!1,!0) +B.jr=new A.qn(!0,!1,!1,!1) +B.js=new A.qn(!0,!1,!1,!0) +B.vm=new A.ld(!1,!1,!1,!1) +B.vn=new A.ld(!1,!1,!1,!0) +B.a2N=new A.ld(!1,!1,!0,!1) +B.a2O=new A.ld(!1,!1,!0,!0) +B.el=new A.ld(!0,!1,!1,!1) +B.em=new A.ld(!0,!1,!1,!0) +B.a2P=new A.ld(!0,!1,!0,!1) +B.a2Q=new A.ld(!0,!1,!0,!0) +B.a2R=new A.x7(!1,!1,!1,!1) +B.a2S=new A.x7(!1,!1,!1,!0) +B.vo=new A.x8(!1,!0,!1,!1) +B.vp=new A.x8(!1,!0,!1,!0) +B.a2T=new A.qo(!1,!1,!1,!1) +B.a2U=new A.qo(!1,!1,!1,!0) +B.nb=new A.qo(!0,!1,!1,!1) +B.nc=new A.qo(!0,!1,!1,!0) +B.vq=new A.x9(!1,!0,!1,!1) +B.vr=new A.x9(!1,!0,!1,!0) +B.nd=new A.tE(!1,!1,!1,!1) +B.ne=new A.tE(!1,!1,!1,!0) +B.jt=new A.tE(!0,!1,!1,!1) +B.ju=new A.tE(!0,!1,!1,!0) +B.nf=new A.qp(!1,!1,!1,!1) +B.ng=new A.qp(!1,!1,!1,!0) +B.vs=new A.qp(!0,!1,!1,!1) +B.vt=new A.qp(!0,!1,!1,!0) +B.a2V=new A.a1D(null) +B.nh=new A.xc(0) +B.ni=new A.xc(1) +B.a2X=new A.xc(2) +B.vu=new A.xc(3) +B.a2Y=new A.xc(4) +B.a2Z=new A.a1K(1,"Cache") +B.a3_=new A.a1K(2,"Online") +B.fk=new A.Kn(0) +B.en=new A.Kn(1) +B.jv=new A.Kn(2) +B.vw=new A.jc("All nodes must have a parent.","",null) +B.a30=new A.qq(0) +B.a31=new A.qq(2) +B.a32=new A.qq(3) +B.a33=new A.qq(4) +B.vx=new A.qq(6) +B.aD5=new A.a1L(0,"any") +B.nj=new A.a1L(5,"custom") +B.a34=new A.Ko(null) +B.jw=new A.xd(0,"none") +B.hv=new A.xd(1,"low") +B.vy=new A.xd(2,"medium") +B.nk=new A.xd(3,"high") +B.y=new A.U(0,0) +B.a35=new A.a1Q(B.y,B.y) +B.vz=new A.tI(0,"primary") +B.vA=new A.tI(1,"material") +B.vB=new A.tI(2,"surface") +B.vC=new A.tI(3,"background") +B.vD=new A.tI(4,"scaffoldBackground") +B.vE=new A.tI(5,"custom") +B.fm=new A.a1T(1,"loose") +B.dD=new A.e(4279308561) +B.a4O=new A.jN(B.dD,B.hj,B.l,B.dD,B.dD,B.dD) +B.jx=new A.jN(B.l,B.fc,B.ef,B.l,B.l,B.l) +B.jy=new A.jN(B.ef,B.hj,B.l,B.ef,B.ef,B.ef) +B.fa=new A.e(4279242768) +B.fd=new A.e(4294835709) +B.a4P=new A.jN(B.fa,B.hj,B.fd,B.fa,B.fa,B.fa) +B.a4Q=new A.jN(B.l,B.fc,B.dD,B.l,B.l,B.l) +B.a4R=new A.jN(B.fd,B.fc,B.fa,B.fd,B.fd,B.fd) +B.a4S=new A.jN(B.dD,B.hj,B.l,B.dD,B.fa,B.ef) +B.a4T=new A.jN(B.l,B.fc,B.dD,B.l,B.fd,B.l) +B.a4V=new A.n6(0,"level") +B.a4W=new A.n6(1,"highBackgroundLowScaffold") +B.a4X=new A.n6(2,"highSurfaceLowScaffold") +B.a4Y=new A.n6(3,"highScaffoldLowSurface") +B.a4Z=new A.n6(4,"highScaffoldLevelSurface") +B.a5_=new A.n6(5,"levelSurfacesLowScaffold") +B.nl=new A.n6(6,"highScaffoldLowSurfaces") +B.a50=new A.n6(7,"levelSurfacesLowScaffoldVariantDialog") +B.xi=new A.n6(8,"highScaffoldLowSurfacesVariantDialog") +B.xj=new A.aDi(2,"flutterDefault") +B.a51=new A.Cq(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.xk=new A.Kx(0,"Start") +B.nm=new A.Kx(1,"Update") +B.nn=new A.Kx(2,"End") +B.no=new A.Ky(0,"never") +B.xl=new A.Ky(1,"auto") +B.np=new A.Ky(2,"always") +B.nq=new A.tK(0,"touch") +B.jz=new A.tK(1,"traditional") +B.aD6=new A.aDx(0,"automatic") +B.d1=new A.lZ(6,700) +B.aDi=new A.b1J(0,"material") +B.TB=new A.mZ(4,0,null,null,null,null,null,null,null,null) +B.a54=new A.KG(B.TB,null) +B.dq=new A.ud(2,"center") +B.O=new A.a3K(1,"max") +B.cz=new A.abF(1,"down") +B.eS=new A.nK(2,"center") +B.axs=new A.mq("Something went wrong. Tap to try again.",null,null,B.eS,null,null,null,null,null,null) +B.arh=new A.fB(null,4,null,null) +B.xB=new A.aO(58644,"MaterialIcons",null,!1) +B.a6T=new A.bB(B.xB,16,null,null,null) +B.afO=A.a(s([B.axs,B.arh,B.a6T]),t.p) +B.a0h=new A.wA(B.H,B.dq,B.O,B.w,null,B.cz,null,B.afO,null) +B.a55=new A.KG(B.a0h,null) +B.xo=new A.lh("Invalid method call",null,null) +B.a56=new A.lh("Expected envelope, got nothing",null,null) +B.ch=new A.lh("Message corrupted",null,null) +B.xp=new A.lh("Too many percent/permill",null,null) +B.a57=new A.lh("Invalid envelope",null,null) +B.xq=new A.Cw(0,"ltr") +B.xr=new A.Cw(1,"rtl") +B.ns=new A.Cw(3,"sandwich") +B.a58=new A.qw(104,null) +B.a59=new A.qw(128,null) +B.jB=new A.qw(16,null) +B.xs=new A.qw(32,null) +B.nt=new A.qw(4,null) +B.xt=new A.qw(8,null) +B.a5a=new A.a2c(null) +B.cG=new A.a2e(0,"accepted") +B.aP=new A.a2e(1,"rejected") +B.xu=new A.xp(0,"pointerEvents") +B.eo=new A.xp(1,"browserGestures") +B.dM=new A.KN(0,"ready") +B.jC=new A.KN(1,"possible") +B.a5b=new A.KN(2,"defunct") +B.a5c=new A.a2r(null) +B.hy=new A.a2u(0,"forward") +B.nu=new A.a2u(1,"reverse") +B.a5d=new A.qx(0,"volume_up") +B.a5e=new A.qx(1,"volume_down") +B.ep=new A.CH(0,"push") +B.eq=new A.CH(1,"pop") +B.ci=new A.KV(0,"deferToChild") +B.bE=new A.KV(1,"opaque") +B.aQ=new A.KV(2,"translucent") +B.a5f=new A.qB(null) +B.a5g=new A.L_(61857,"FontAwesomeBrands","font_awesome_flutter",!1) +B.a5h=new A.L_(62354,"FontAwesomeBrands","font_awesome_flutter",!1) +B.xw=new A.L_(61595,"FontAwesomeBrands","font_awesome_flutter",!1) +B.xx=new A.aO(57490,"MaterialIcons",null,!0) +B.xy=new A.aO(57585,"MaterialIcons",null,!1) +B.a5k=new A.aO(57706,"MaterialIcons",null,!1) +B.xz=new A.aO(58332,"MaterialIcons",null,!1) +B.a5o=new A.aO(58370,"MaterialIcons",null,!1) +B.xA=new A.aO(58372,"MaterialIcons",null,!1) +B.nv=new A.aO(58727,"MaterialIcons",null,!1) +B.a5r=new A.aO(59374,"MaterialIcons",null,!1) +B.a5s=new A.aO(59377,"MaterialIcons",null,!1) +B.a5t=new A.aO(59576,"MaterialIcons",null,!1) +B.a5u=new A.aO(59635,"MaterialIcons",null,!1) +B.a5v=new A.aO(59648,"MaterialIcons",null,!1) +B.a5w=new A.aO(60430,"MaterialIcons",null,!1) +B.a5z=new A.aO(61289,"MaterialIcons",null,!1) +B.a5A=new A.aO(61426,"MaterialIcons",null,!1) +B.a5B=new A.aO(61495,"MaterialIcons",null,!1) +B.a5F=new A.aO(61927,"MaterialIcons",null,!1) +B.xC=new A.aO(61966,"MaterialIcons",null,!1) +B.a5J=new A.aO(62837,"MaterialIcons",null,!1) +B.a5N=new A.aO(62846,"MaterialIcons",null,!1) +B.a5P=new A.aO(62927,"MaterialIcons",null,!1) +B.a5Q=new A.aO(62929,"MaterialIcons",null,!1) +B.xD=new A.aO(63012,"MaterialIcons",null,!1) +B.nw=new A.aO(63062,"MaterialIcons",null,!1) +B.a5Z=new A.aO(63116,"MaterialIcons",null,!1) +B.a64=new A.aO(63199,"MaterialIcons",null,!1) +B.xE=new A.aO(63268,"MaterialIcons",null,!1) +B.a6b=new A.aO(63531,"MaterialIcons",null,!1) +B.a6c=new A.aO(63534,"MaterialIcons",null,!1) +B.a6e=new A.aO(63570,"MaterialIcons",null,!1) +B.a6f=new A.aO(63705,"MaterialIcons",null,!1) +B.xI=new A.aO(983040,"MaterialIcons",null,!1) +B.xJ=new A.aO(983357,"MaterialIcons",null,!1) +B.a6C=new A.aO(983633,"MaterialIcons",null,!1) +B.xL=new A.aO(985135,"MaterialIcons",null,!1) +B.a6F=new A.d4(32,null,null,null,null,null,null,null) +B.a6G=new A.d4(null,null,null,null,null,B.o,null,null) +B.nx=new A.d4(24,0,400,0,48,B.o,1,null) +B.a6H=new A.d4(null,null,null,null,null,B.l,null,null) +B.a5W=new A.aO(63047,"MaterialIcons",null,!1) +B.jD=new A.bB(B.a5W,null,null,null,null) +B.a5l=new A.aO(57926,"MaterialIcons",null,!1) +B.xM=new A.bB(B.a5l,null,null,null,null) +B.a6o=new A.aO(983307,"MaterialIcons",null,!1) +B.a6I=new A.bB(B.a6o,null,null,null,null) +B.a5O=new A.aO(62883,"MaterialIcons",null,!1) +B.a6K=new A.bB(B.a5O,null,null,null,null) +B.xF=new A.aO(63288,"MaterialIcons",null,!1) +B.a6J=new A.bB(B.xF,null,null,null,null) +B.a6L=new A.bB(B.nv,null,null,null,null) +B.a6E=new A.aO(985052,"MaterialIcons",null,!1) +B.a6M=new A.bB(B.a6E,null,null,null,null) +B.a5L=new A.aO(62840,"MaterialIcons",null,!1) +B.xN=new A.bB(B.a5L,null,null,null,null) +B.a5X=new A.aO(63064,"MaterialIcons",null,!1) +B.a6O=new A.bB(B.a5X,null,null,null,null) +B.a60=new A.aO(63128,"MaterialIcons",null,!1) +B.a6N=new A.bB(B.a60,null,null,null,null) +B.a6P=new A.bB(B.xw,null,null,null,null) +B.a5x=new A.aO(61054,"MaterialIcons",null,!1) +B.xO=new A.bB(B.a5x,null,null,null,null) +B.a6B=new A.aO(983632,"MaterialIcons",null,!1) +B.xP=new A.bB(B.a6B,null,null,null,null) +B.a6m=new A.aO(983273,"MaterialIcons",null,!1) +B.a6R=new A.bB(B.a6m,null,null,null,null) +B.ny=new A.bB(B.xJ,null,null,null,null) +B.a6w=new A.aO(983443,"MaterialIcons",null,!1) +B.a6Q=new A.bB(B.a6w,null,null,null,null) +B.xQ=new A.bB(B.xB,null,null,null,null) +B.a5M=new A.aO(62842,"MaterialIcons",null,!0) +B.a6S=new A.bB(B.a5M,null,null,null,null) +B.a5C=new A.aO(61514,"MaterialIcons",null,!1) +B.a6U=new A.bB(B.a5C,null,null,null,null) +B.a68=new A.aO(63351,"MaterialIcons",null,!1) +B.a6V=new A.bB(B.a68,null,null,null,null) +B.a5q=new A.aO(58608,"MaterialIcons",null,!1) +B.xS=new A.bB(B.a5q,null,null,null,null) +B.a5I=new A.aO(62827,"MaterialIcons",null,!1) +B.a6X=new A.bB(B.a5I,null,null,null,null) +B.a6j=new A.aO(983126,"MaterialIcons",null,!1) +B.a6W=new A.bB(B.a6j,null,null,null,null) +B.a6s=new A.aO(983382,"MaterialIcons",null,!1) +B.xR=new A.bB(B.a6s,null,null,null,null) +B.a6Y=new A.bB(B.xy,20,null,null,null) +B.a6a=new A.aO(63510,"MaterialIcons",null,!1) +B.xT=new A.bB(B.a6a,null,null,null,null) +B.a6_=new A.aO(63127,"MaterialIcons",null,!1) +B.a6Z=new A.bB(B.a6_,null,null,null,null) +B.a5R=new A.aO(62956,"MaterialIcons",null,!1) +B.ak6=new A.dg([50,B.uI,100,B.uB,200,B.fc,300,B.jd,350,B.fb,400,B.mI,500,B.tR,600,B.hm,700,B.eg,800,B.dk,850,B.mA,900,B.rN],t.pl) +B.bK=new A.Dp(B.ak6,4288585374) +B.xU=new A.bB(B.a5R,null,B.bK,null,null) +B.a5K=new A.aO(62839,"MaterialIcons",null,!1) +B.xV=new A.bB(B.a5K,null,null,null,null) +B.a71=new A.bB(B.xD,null,null,null,null) +B.a72=new A.bB(B.nw,null,null,null,null) +B.a63=new A.aO(63198,"MaterialIcons",null,!1) +B.a7_=new A.bB(B.a63,null,null,null,null) +B.a69=new A.aO(63461,"MaterialIcons",null,!0) +B.a70=new A.bB(B.a69,null,null,null,null) +B.a6k=new A.aO(983200,"MaterialIcons",null,!1) +B.a73=new A.bB(B.a6k,null,null,null,null) +B.a6y=new A.aO(983553,"MaterialIcons",null,!1) +B.a75=new A.bB(B.a6y,null,null,null,null) +B.a6D=new A.aO(983640,"MaterialIcons",null,!1) +B.a74=new A.bB(B.a6D,null,null,null,null) +B.a5m=new A.aO(57928,"MaterialIcons",null,!1) +B.a76=new A.bB(B.a5m,null,null,null,null) +B.a5n=new A.aO(58195,"MaterialIcons",null,!1) +B.a77=new A.bB(B.a5n,null,null,null,null) +B.a5H=new A.aO(62820,"MaterialIcons",null,!1) +B.a7a=new A.bB(B.a5H,null,null,null,null) +B.a5U=new A.aO(63038,"MaterialIcons",null,!0) +B.a78=new A.bB(B.a5U,null,null,null,null) +B.a79=new A.bB(B.xE,null,null,null,null) +B.a66=new A.aO(63276,"MaterialIcons",null,!1) +B.a7b=new A.bB(B.a66,null,null,null,null) +B.a6A=new A.aO(983621,"MaterialIcons",null,!1) +B.xW=new A.bB(B.a6A,null,null,null,null) +B.a5T=new A.aO(63029,"MaterialIcons",null,!1) +B.a7c=new A.bB(B.a5T,null,null,null,null) +B.a6g=new A.aO(63708,"MaterialIcons",null,!1) +B.nz=new A.bB(B.a6g,null,null,null,null) +B.a6t=new A.aO(983396,"MaterialIcons",null,!1) +B.nA=new A.bB(B.a6t,null,null,null,null) +B.a6h=new A.aO(983120,"MaterialIcons",null,!1) +B.a7e=new A.bB(B.a6h,null,null,null,null) +B.a6n=new A.aO(983292,"MaterialIcons",null,!1) +B.a7d=new A.bB(B.a6n,null,null,null,null) +B.a5G=new A.aO(62775,"MaterialIcons",null,!1) +B.xX=new A.bB(B.a5G,null,null,null,null) +B.a5p=new A.aO(58571,"MaterialIcons",null,!1) +B.a7f=new A.bB(B.a5p,null,null,null,null) +B.a5Y=new A.aO(63073,"MaterialIcons",null,!1) +B.xY=new A.bB(B.a5Y,null,null,null,null) +B.a5V=new A.aO(63043,"MaterialIcons",null,!1) +B.a7h=new A.bB(B.a5V,null,null,null,null) +B.a65=new A.aO(63227,"MaterialIcons",null,!1) +B.a7g=new A.bB(B.a65,null,null,null,null) +B.a6z=new A.aO(983559,"MaterialIcons",null,!1) +B.a7i=new A.bB(B.a6z,null,null,null,null) +B.a5E=new A.aO(61783,"MaterialIcons",null,!1) +B.a7j=new A.bB(B.a5E,null,null,null,null) +B.a6r=new A.aO(983363,"MaterialIcons",null,!1) +B.a7k=new A.bB(B.a6r,null,null,null,null) +B.xG=new A.aO(63323,"MaterialIcons",null,!1) +B.xZ=new A.bB(B.xG,null,null,null,null) +B.a5j=new A.aO(57699,"MaterialIcons",null,!1) +B.a7l=new A.bB(B.a5j,null,B.o,null,null) +B.a6d=new A.aO(63549,"MaterialIcons",null,!0) +B.nB=new A.bB(B.a6d,null,null,null,null) +B.a5i=new A.aO(57657,"MaterialIcons",null,!1) +B.a7m=new A.bB(B.a5i,18,null,null,null) +B.a61=new A.aO(63169,"MaterialIcons",null,!1) +B.a7n=new A.bB(B.a61,null,null,null,null) +B.a6q=new A.aO(983358,"MaterialIcons",null,!1) +B.a7p=new A.bB(B.a6q,null,null,null,null) +B.a6v=new A.aO(983442,"MaterialIcons",null,!1) +B.a7o=new A.bB(B.a6v,null,null,null,null) +B.a6x=new A.aO(983550,"MaterialIcons",null,!1) +B.a7q=new A.bB(B.a6x,null,null,null,null) +B.a7x=new A.a2U(0,"HtmlImage") +B.a7y=new A.a2U(1,"HttpGet") +B.a7z=new A.CO(0,"repeat") +B.a7A=new A.CO(1,"repeatX") +B.a7B=new A.CO(2,"repeatY") +B.fn=new A.CO(3,"noRepeat") +B.a7C=new A.a2X(!0,!0,B.fD) +B.aS=A.a(s([]),t.oU) +B.a7D=new A.qF("\ufffc",null,null,!0,!0,B.aS) +B.a7E=new A.La(null,null,null,null,null,null,null,null,B.xl,B.qS,!1,null,!1,null,null,null,null,null,null,!1,null,null,null,null,null,null,null,null,null,null,null,!1,null) +B.aD7=new A.L9(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,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,!0,null,null,null) +B.a7F=new A.a31(null) +B.dN=new A.CU(0,"next") +B.y1=new A.CU(1,"resolve") +B.y2=new A.CU(2,"resolveCallFollowing") +B.y3=new A.CU(4,"rejectCallFollowing") +B.a0v=new A.f7(0.1,0,0.45,1) +B.a7H=new A.dZ(0.7038888888888889,1,B.a0v) +B.a7L=new A.dZ(0,0.1,B.Y) +B.y6=new A.dZ(0,0.25,B.Y) +B.a7I=new A.dZ(0,0.3333333333333333,B.Y) +B.y4=new A.dZ(0,0.6666666666666666,B.Y) +B.y5=new A.dZ(0.1,0.33,B.Y) +B.a7N=new A.dZ(0.125,0.25,B.Y) +B.a7J=new A.dZ(0.25,0.5,B.Y) +B.a7K=new A.dZ(0.25,0.75,B.Y) +B.a7M=new A.dZ(0.6,1,B.Y) +B.y7=new A.dZ(0.75,1,B.Y) +B.a0p=new A.f7(0.2,0,0.8,1) +B.a7O=new A.dZ(0,0.4166666666666667,B.a0p) +B.y8=new A.dZ(0.5,1,B.aO) +B.a7P=new A.dZ(0.2075,0.4175,B.Y) +B.a7R=new A.dZ(0,0.5,B.a6) +B.a7Q=new A.dZ(0.5,1,B.a6) +B.a0r=new A.f7(0,0,0.65,1) +B.a7S=new A.dZ(0.5555555555555556,0.8705555555555555,B.a0r) +B.a7T=new A.dZ(0.0825,0.2075,B.Y) +B.a0s=new A.f7(0.4,0,1,1) +B.a7U=new A.dZ(0.185,0.6016666666666667,B.a0s) +B.y9=new A.Lc(0,"grapheme") +B.ya=new A.Lc(1,"word") +B.a7V=new A.a37(null) +B.jE=new A.xK(B.iZ,A.ah("xK")) +B.a7X=function(hooks) { + if (typeof dartExperimentalFixupGetTag != "function") return hooks; + hooks.getTag = dartExperimentalFixupGetTag(hooks.getTag); +} +B.a7Y=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.yb=function(hooks) { return hooks; } + +B.a7Z=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.a8_=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.a80=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.a81=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.yc=function getTagFallback(o) { + var s = Object.prototype.toString.call(o); + return s.substring(8, s.length - 1); +} +B.yd=new A.a3d(null) +B.a84=new A.a3e(null) +B.a85=new A.a3g(0,"rawKeyData") +B.a86=new A.a3g(1,"keyDataThenRawKeyData") +B.d2=new A.Lk(0,"down") +B.a87=new A.kC(B.B,B.d2,0,0,null,!1) +B.hz=new A.u3(0,"handled") +B.hA=new A.u3(1,"ignored") +B.jF=new A.u3(2,"skipRemainingHandlers") +B.cj=new A.Lk(1,"up") +B.a88=new A.Lk(2,"repeat") +B.kI=new A.o(4294967562) +B.a89=new A.D1(B.kI,0,"numLock") +B.kJ=new A.o(4294967564) +B.a8a=new A.D1(B.kJ,1,"scrollLock") +B.hQ=new A.o(4294967556) +B.a8b=new A.D1(B.hQ,2,"capsLock") +B.fo=new A.xS(0,"any") +B.dn=new A.xS(3,"all") +B.a8c=new A.a3n(!1,255) +B.a8d=new A.a3o(255) +B.aD8=new A.D3(0,"platformDefault") +B.a8e=new A.D3(1,"inAppWebView") +B.a8f=new A.D3(2,"inAppBrowserView") +B.a8g=new A.D3(3,"externalApplication") +B.cH=new A.xU("INFO",800) +B.a8h=new A.xU("WARNING",900) +B.a8i=new A.a3x(null) +B.a8j=new A.a3y(null) +B.yf=new A.u7(null) +B.a8k=new A.a3B(null) +B.er=new A.u9(0,"opportunity") +B.U=new A.u9(1,"prohibited") +B.dO=new A.u9(2,"mandatory") +B.dP=new A.u9(3,"endOfText") +B.nC=new A.d5(0,"CM") +B.jI=new A.d5(1,"BA") +B.es=new A.d5(10,"PO") +B.hB=new A.d5(11,"OP") +B.hC=new A.d5(12,"CP") +B.jJ=new A.d5(13,"IS") +B.hD=new A.d5(14,"HY") +B.nD=new A.d5(15,"SY") +B.dQ=new A.d5(16,"NU") +B.nE=new A.d5(17,"CL") +B.nF=new A.d5(18,"GL") +B.yg=new A.d5(19,"BB") +B.hE=new A.d5(2,"LF") +B.ck=new A.d5(20,"HL") +B.jK=new A.d5(21,"JL") +B.hF=new A.d5(22,"JV") +B.hG=new A.d5(23,"JT") +B.nG=new A.d5(24,"NS") +B.nH=new A.d5(25,"ZW") +B.nI=new A.d5(26,"ZWJ") +B.nJ=new A.d5(27,"B2") +B.yh=new A.d5(28,"IN") +B.nK=new A.d5(29,"WJ") +B.jL=new A.d5(3,"BK") +B.nL=new A.d5(30,"ID") +B.jM=new A.d5(31,"EB") +B.hH=new A.d5(32,"H2") +B.hI=new A.d5(33,"H3") +B.nM=new A.d5(34,"CB") +B.jN=new A.d5(35,"RI") +B.jO=new A.d5(36,"EM") +B.jP=new A.d5(4,"CR") +B.fp=new A.d5(5,"SP") +B.yi=new A.d5(6,"EX") +B.nN=new A.d5(7,"QU") +B.cl=new A.d5(8,"AL") +B.jQ=new A.d5(9,"PR") +B.yj=new A.y1(B.iZ,A.ah("y1")) +B.jR=new A.a3E(4,"multi") +B.a8m=new A.a3E(5,"multiCompatible") +B.fq=new A.Lw(0,"leading") +B.cI=new A.Lw(1,"trailing") +B.jS=new A.Lw(2,"platform") +B.nO=new A.aIB(1,"drawer") +B.yk=new A.Dc(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.a8n=new A.aID(0,"threeLine") +B.yl=new A.qL(null,null,null,null,!1,null,null,null,null,null,null,!0,null,null,null,!1,null,null,!1,null,null,null,null) +B.a8r=A.a(s(["\xee.Hr.","d.Hr."]),t.s) +B.a0e=new A.e(637534208) +B.e2=new A.m(0,3) +B.QW=new A.cd(0,B.a4,B.a0e,B.e2,8) +B.TS=new A.e(251658240) +B.QX=new A.cd(0,B.a4,B.TS,B.e2,1) +B.ym=A.a(s([B.QW,B.QX]),t.c) +B.a8p=A.a(s(["1e kwartaal","2e kwartaal","3e kwartaal","4e kwartaal"]),t.s) +B.yo=A.a(s(["EEEE d MMMM y","d MMMM y","d MMM y","dd/MM/y"]),t.s) +B.a8v=A.a(s(["EEEE d MMMM y","d MMMM y","d MMM y","dd/MM/yy"]),t.s) +B.a8q=A.a(s(["{0} \u0b20\u0b3e\u0b30\u0b47 {1}","{0} \u0b20\u0b3e\u0b30\u0b47 {1}","{1}, {0}","{1}, {0}"]),t.s) +B.a8x=A.a(s(["\uc81c 1/4\ubd84\uae30","\uc81c 2/4\ubd84\uae30","\uc81c 3/4\ubd84\uae30","\uc81c 4/4\ubd84\uae30"]),t.s) +B.a8o=A.a(s(["file","directory","link","unixDomainSock","pipe","notFound"]),t.s) +B.dR=A.a(s(["domingo","lunes","martes","mi\xe9rcoles","jueves","viernes","s\xe1bado"]),t.s) +B.yq=A.a(s(["sk","pr","an","tr","kt","pn","\u0161t"]),t.s) +B.jT=A.a(s(["\u043d","\u043f","\u0432","\u0441","\u0447","\u043f","\u0441"]),t.s) +B.yn=A.a(s(["januar","februar","marts","april","maj","juni","juli","august","september","oktober","november","december"]),t.s) +B.a8y=A.a(s(["\u041d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440","\u0425\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440","\u0413\u0443\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440","\u0414\u04e9\u0440\u04e9\u0432\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440","\u0422\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440","\u0417\u0443\u0440\u0433\u0430\u0430\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440","\u0414\u043e\u043b\u043e\u043e\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440","\u041d\u0430\u0439\u043c\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440","\u0415\u0441\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440","\u0410\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440","\u0410\u0440\u0432\u0430\u043d \u043d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440","\u0410\u0440\u0432\u0430\u043d \u0445\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440"]),t.s) +B.a8s=A.a(s(["\u044f\u043d\u0432.","\u0444\u0435\u0432\u0440.","\u043c\u0430\u0440\u0442","\u0430\u043f\u0440.","\u043c\u0430\u0439","\u0438\u044e\u043d\u044c","\u0438\u044e\u043b\u044c","\u0430\u0432\u0433.","\u0441\u0435\u043d\u0442.","\u043e\u043a\u0442.","\u043d\u043e\u044f\u0431.","\u0434\u0435\u043a."]),t.s) +B.yp=A.a(s(["\u10d8\u10d0\u10dc","\u10d7\u10d4\u10d1","\u10db\u10d0\u10e0","\u10d0\u10de\u10e0","\u10db\u10d0\u10d8","\u10d8\u10d5\u10dc","\u10d8\u10d5\u10da","\u10d0\u10d2\u10d5","\u10e1\u10d4\u10e5","\u10dd\u10e5\u10e2","\u10dc\u10dd\u10d4","\u10d3\u10d4\u10d9"]),t.s) +B.T5=new A.ae9() +B.Th=new A.aj3() +B.Tc=new A.ahq() +B.Tn=new A.ap6() +B.a8t=A.a(s([B.T5,B.Th,B.Tc,B.Tn]),t.a9) +B.a8u=A.a(s(["vm.","nm."]),t.s) +B.a8w=A.a(s(["\u0c9c\u0ca8","\u0cab\u0cc6\u0cac\u0ccd\u0cb0","\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd","\u0c8f\u0caa\u0ccd\u0cb0\u0cbf","\u0cae\u0cc7","\u0c9c\u0cc2\u0ca8\u0ccd","\u0c9c\u0cc1\u0cb2\u0cc8","\u0c86\u0c97","\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82","\u0c85\u0c95\u0ccd\u0c9f\u0ccb","\u0ca8\u0cb5\u0cc6\u0c82","\u0ca1\u0cbf\u0cb8\u0cc6\u0c82"]),t.s) +B.yr=A.a(s(["ne","po","\xfat","st","\u010dt","p\xe1","so"]),t.s) +B.a8z=A.a(s(["urtarrilak","otsailak","martxoak","apirilak","maiatzak","ekainak","uztailak","abuztuak","irailak","urriak","azaroak","abenduak"]),t.s) +B.ys=A.a(s(["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"]),t.s) +B.a8A=A.a(s(["\u049b\u0430\u04a3\u0442\u0430\u0440","\u0430\u049b\u043f\u0430\u043d","\u043d\u0430\u0443\u0440\u044b\u0437","\u0441\u04d9\u0443\u0456\u0440","\u043c\u0430\u043c\u044b\u0440","\u043c\u0430\u0443\u0441\u044b\u043c","\u0448\u0456\u043b\u0434\u0435","\u0442\u0430\u043c\u044b\u0437","\u049b\u044b\u0440\u043a\u04af\u0439\u0435\u043a","\u049b\u0430\u0437\u0430\u043d","\u049b\u0430\u0440\u0430\u0448\u0430","\u0436\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d"]),t.s) +B.a8B=A.a(s(["B.","B.E.","\xc7.A.","\xc7.","C.A.","C.","\u015e."]),t.s) +B.a8C=A.a(s([0,1]),t.up) +B.a8D=A.a(s([0,6,12,18]),t.t) +B.a8E=A.a(s(["\u0e81\u0ec8\u0ead\u0e99 \u0e84.\u0eaa.","\u0e84.\u0eaa."]),t.s) +B.a8F=A.a(s(["y\u5e74M\u6708d\u65e5 EEEE","y\u5e74M\u6708d\u65e5","y\u5e74M\u6708d\u65e5","y/M/d"]),t.s) +B.jU=A.a(s(["Enero","Pebrero","Marso","Abril","Mayo","Hunyo","Hulyo","Agosto","Setyembre","Oktubre","Nobyembre","Disyembre"]),t.s) +B.yt=A.a(s(["\u12a5","\u1230","\u121b","\u1228","\u1210","\u12d3","\u1245"]),t.s) +B.yu=A.a(s(["Oca","\u015eub","Mar","Nis","May","Haz","Tem","A\u011fu","Eyl","Eki","Kas","Ara"]),t.s) +B.a8G=A.a(s(["Sebelum Masehi","Masehi"]),t.s) +B.a8H=A.a(s([144,169]),t.t) +B.a8I=A.a(s(["EEEE, d MMMM y '\u0433'.","d MMMM y '\u0433'.","d MMM y '\u0433'.","d.MM.yy"]),t.s) +B.yv=A.a(s(["\u044f","\u0444","\u043c","\u0430","\u043c","\u044e","\u044e","\u0430","\u0441","\u043e","\u043d","\u0434"]),t.s) +B.a8J=A.a(s(["EEEE, d. MMMM y.","d. MMMM y.","d. MMM y.","d. M. y."]),t.s) +B.dS=A.a(s(["ene","feb","mar","abr","may","jun","jul","ago","sept","oct","nov","dic"]),t.s) +B.a8K=A.a(s(["EEEE d. MMMM y","d. MMMM y","d. M. y","d. M. y"]),t.s) +B.a8L=A.a(s(["\u5348\u524d","\u5348\u5f8c"]),t.s) +B.nP=A.a(s(["HH.mm.ss zzzz","HH.mm.ss z","HH.mm.ss","HH.mm"]),t.s) +B.yw=A.a(s([200,202]),t.t) +B.a8M=A.a(s(["\u043f.\u043d.\u0435.","\u043d.\u0435."]),t.s) +B.a8N=A.a(s([239,191,189]),t.t) +B.jV=A.a(s(["\u0e21.\u0e04.","\u0e01.\u0e1e.","\u0e21\u0e35.\u0e04.","\u0e40\u0e21.\u0e22.","\u0e1e.\u0e04.","\u0e21\u0e34.\u0e22.","\u0e01.\u0e04.","\u0e2a.\u0e04.","\u0e01.\u0e22.","\u0e15.\u0e04.","\u0e1e.\u0e22.","\u0e18.\u0e04."]),t.s) +B.yx=A.a(s(["\u10d8","\u10d7","\u10db","\u10d0","\u10db","\u10d8","\u10d8","\u10d0","\u10e1","\u10dd","\u10dc","\u10d3"]),t.s) +B.a8O=A.a(s(["e.\u0259.","y.e."]),t.s) +B.yy=A.a(s(["\u0b30\u0b2c\u0b3f","\u0b38\u0b4b\u0b2e","\u0b2e\u0b19\u0b4d\u0b17\u0b33","\u0b2c\u0b41\u0b27","\u0b17\u0b41\u0b30\u0b41","\u0b36\u0b41\u0b15\u0b4d\u0b30","\u0b36\u0b28\u0b3f"]),t.s) +B.a8Q=A.a(s(["trim. I","trim. II","trim. III","trim. IV"]),t.s) +B.a8R=A.a(s(["{1} 'n\xeb' {0}","{1} 'n\xeb' {0}","{1}, {0}","{1}, {0}"]),t.s) +B.a8T=A.a(s(["Tr\u01b0\u1edbc CN","Sau CN"]),t.s) +B.a8S=A.a(s(["\u0c95\u0ccd\u0cb0\u0cbf.\u0caa\u0cc2","\u0c95\u0ccd\u0cb0\u0cbf.\u0cb6"]),t.s) +B.yz=A.a(s(["dg","dl","dt","dc","dj","dv","ds"]),t.s) +B.yA=A.a(s(["\u0642\u0628\u0644 \u0645\u0633\u06cc\u062d","\u0639\u06cc\u0633\u0648\u06cc"]),t.s) +B.a8U=A.a(s(["{1} '\xe0s' {0}","{1} '\xe0s' {0}","{1}, {0}","{1}, {0}"]),t.s) +B.a8V=A.a(s(["p.K.","mb.K."]),t.s) +B.yB=A.a(s(["H:mm:ss (zzzz)","H:mm:ss z","H:mm:ss","H:mm"]),t.s) +B.a8W=A.a(s(["Th\xe1ng 1","Th\xe1ng 2","Th\xe1ng 3","Th\xe1ng 4","Th\xe1ng 5","Th\xe1ng 6","Th\xe1ng 7","Th\xe1ng 8","Th\xe1ng 9","Th\xe1ng 10","Th\xe1ng 11","Th\xe1ng 12"]),t.s) +B.yC=A.a(s(["\u10d9","\u10dd","\u10e1","\u10dd","\u10ee","\u10de","\u10e8"]),t.s) +B.a8X=A.a(s(["{0} {1}","{0} {1}","{0}, {1}","{0}, {1}"]),t.s) +B.a8Y=A.a(s(["\u0e01\u0e48\u0e2d\u0e19 \u0e04.\u0e28.","\u0e04.\u0e28."]),t.s) +B.yD=A.a(s(["\u09b0","\u09b8\u09cb","\u09ae","\u09ac\u09c1","\u09ac\u09c3","\u09b6\u09c1","\u09b6"]),t.s) +B.a8Z=A.a(s(["\u0a88\u0ab8\u0ab5\u0ac0\u0ab8\u0aa8 \u0aaa\u0ac2\u0ab0\u0acd\u0ab5\u0ac7","\u0a87\u0ab8\u0ab5\u0ac0\u0ab8\u0aa8"]),t.s) +B.a9_=A.a(s(["EEEE, d 'de' MMMM 'de' y","d 'de' MMMM 'de' y","d MMM y","dd/MM/yy"]),t.s) +B.bX=A.a(s(["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sept","Oct","Nov","Dec"]),t.s) +B.a92=A.a(s(["y MMMM d, EEEE","y MMMM d","y MMM d","y-MM-dd"]),t.s) +B.a90=A.a(s(["\u09e7\u09ae\u0983 \u09a4\u09bf\u0983","\u09e8\u09af\u09bc\u0983 \u09a4\u09bf\u0983","\u09e9\u09af\u09bc\u0983 \u09a4\u09bf\u0983","\u09ea\u09f0\u09cd\u09a5\u0983 \u09a4\u09bf\u0983"]),t.s) +B.yE=A.a(s(["\u0436\u0441","\u0434\u0441","\u0441\u0441","\u0441\u0440","\u0431\u0441","\u0436\u043c","\u0441\u0431"]),t.s) +B.yG=A.a(s(["\u043d\u0435\u0434\u0435\u0459\u0430","\u043f\u043e\u043d\u0435\u0434\u0435\u0459\u0430\u043a","\u0443\u0442\u043e\u0440\u0430\u043a","\u0441\u0440\u0435\u0434\u0430","\u0447\u0435\u0442\u0432\u0440\u0442\u0430\u043a","\u043f\u0435\u0442\u0430\u043a","\u0441\u0443\u0431\u043e\u0442\u0430"]),t.s) +B.a91=A.a(s(["s","l","m","k","m","c","l","s","w","p","l","g"]),t.s) +B.yF=A.a(s(["\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940","\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940","\u092e\u093e\u0930\u094d\u091a","\u090f\u092a\u094d\u0930\u093f\u0932","\u092e\u0947","\u091c\u0942\u0928","\u091c\u0941\u0932\u0948","\u0911\u0917\u0938\u094d\u091f","\u0938\u092a\u094d\u091f\u0947\u0902\u092c\u0930","\u0911\u0915\u094d\u091f\u094b\u092c\u0930","\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930","\u0921\u093f\u0938\u0947\u0902\u092c\u0930"]),t.s) +B.a93=A.a(s(["\u0da2\u0db1","\u0db4\u0dd9\u0db6","\u0db8\u0dcf\u0dbb\u0dca","\u0d85\u0db4\u0dca\u200d\u0dbb\u0dda\u0dbd\u0dca","\u0db8\u0dd0\u0dba\u0dd2","\u0da2\u0dd6\u0db1\u0dd2","\u0da2\u0dd6\u0dbd\u0dd2","\u0d85\u0d9c\u0ddd","\u0dc3\u0dd0\u0db4\u0dca","\u0d94\u0d9a\u0dca","\u0db1\u0ddc\u0dc0\u0dd0","\u0daf\u0dd9\u0dc3\u0dd0"]),t.s) +B.yH=A.a(s(["\u0e27\u0e31\u0e19\u0e2d\u0e32\u0e17\u0e34\u0e15\u0e22\u0e4c","\u0e27\u0e31\u0e19\u0e08\u0e31\u0e19\u0e17\u0e23\u0e4c","\u0e27\u0e31\u0e19\u0e2d\u0e31\u0e07\u0e04\u0e32\u0e23","\u0e27\u0e31\u0e19\u0e1e\u0e38\u0e18","\u0e27\u0e31\u0e19\u0e1e\u0e24\u0e2b\u0e31\u0e2a\u0e1a\u0e14\u0e35","\u0e27\u0e31\u0e19\u0e28\u0e38\u0e01\u0e23\u0e4c","\u0e27\u0e31\u0e19\u0e40\u0e2a\u0e32\u0e23\u0e4c"]),t.s) +B.yI=A.a(s([304]),t.t) +B.a94=A.a(s(["\u05dc\u05e4\u05e0\u05d9 \u05d4\u05e1\u05e4\u05d9\u05e8\u05d4","\u05dc\u05e1\u05e4\u05d9\u05e8\u05d4"]),t.s) +B.yJ=A.a(s(["Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember"]),t.s) +B.jW=A.a(s(["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"]),t.s) +B.a95=A.a(s(["EEEE, d. MMMM y","d. MMMM y","d. MMM y","d.M.y"]),t.s) +B.nQ=A.a(s(["EEEE, d. MMMM y","d. MMMM y","dd.MM.y","dd.MM.yy"]),t.s) +B.a96=A.a(s([3,4]),t.t) +B.a97=A.a(s(["\u091c\u0928","\u092b\u0947\u092c","\u092e\u093e\u0930\u094d\u091a","\u0905\u092a\u094d\u0930","\u092e\u0947","\u091c\u0941\u0928","\u091c\u0941\u0932","\u0905\u0917","\u0938\u0947\u092a","\u0905\u0915\u094d\u091f\u094b","\u0928\u094b\u092d\u0947","\u0921\u093f\u0938\u0947"]),t.s) +B.a98=A.a(s(["\uc624\uc804","\uc624\ud6c4"]),t.s) +B.yK=A.a(s(["\u0930\u0935\u093f\u0935\u093e\u0930","\u0938\u094b\u092e\u0935\u093e\u0930","\u092e\u0902\u0917\u0932\u0935\u093e\u0930","\u092c\u0941\u0927\u0935\u093e\u0930","\u0917\u0941\u0930\u0941\u0935\u093e\u0930","\u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930","\u0936\u0928\u093f\u0935\u093e\u0930"]),t.s) +B.yL=A.a(s(["\u0906","\u0938\u094b","\u092e","\u092c\u0941","\u092c\u093f","\u0936\u0941","\u0936"]),t.s) +B.a99=A.a(s(["eram\u0131zdan \u0259vv\u0259l","yeni era"]),t.s) +B.a9a=A.a(s([40,20,40]),t.up) +B.yM=A.a(s(["januar","februar","marec","april","maj","junij","julij","avgust","september","oktober","november","december"]),t.s) +B.a9o=A.a(s(["\u0db4\u0dd9.\u0dc0.","\u0db4.\u0dc0."]),t.s) +B.a9r=A.a(s(["EEEE, d MMMM y","d MMMM y","d MMM y","dd/MM/yy"]),t.s) +B.a9t=A.a(s(["Dom.","Luns","Mar.","M\xe9r.","Xov.","Ven.","S\xe1b."]),t.s) +B.a9s=A.a(s(["d.","l.","m.","m.","x.","v.","s."]),t.s) +B.a9w=A.a(s(["1. \u010dtvrtlet\xed","2. \u010dtvrtlet\xed","3. \u010dtvrtlet\xed","4. \u010dtvrtlet\xed"]),t.s) +B.yO=A.a(s(["\u05d9\u05d5\u05dd \u05e8\u05d0\u05e9\u05d5\u05df","\u05d9\u05d5\u05dd \u05e9\u05e0\u05d9","\u05d9\u05d5\u05dd \u05e9\u05dc\u05d9\u05e9\u05d9","\u05d9\u05d5\u05dd \u05e8\u05d1\u05d9\u05e2\u05d9","\u05d9\u05d5\u05dd \u05d7\u05de\u05d9\u05e9\u05d9","\u05d9\u05d5\u05dd \u05e9\u05d9\u05e9\u05d9","\u05d9\u05d5\u05dd \u05e9\u05d1\u05ea"]),t.s) +B.yN=A.a(s(["\u062d","\u0646","\u062b","\u0631","\u062e","\u062c","\u0633"]),t.s) +B.a9x=A.a(s(["Die","H\xebn","Mar","M\xebr","Enj","Pre","Sht"]),t.s) +B.yQ=A.a(s(["H:mm:ss (zzzz)","H:mm:ss (z)","H:mm:ss","H:mm"]),t.s) +B.a9B=A.a(s(["a h\uc2dc m\ubd84 s\ucd08 zzzz","a h\uc2dc m\ubd84 s\ucd08 z","a h:mm:ss","a h:mm"]),t.s) +B.yP=A.a(s(["\u0399","\u03a6","\u039c","\u0391","\u039c","\u0399","\u0399","\u0391","\u03a3","\u039f","\u039d","\u0394"]),t.s) +B.yR=A.a(s(["\u0da2","\u0db4\u0dd9","\u0db8\u0dcf","\u0d85","\u0db8\u0dd0","\u0da2\u0dd6","\u0da2\u0dd6","\u0d85","\u0dc3\u0dd0","\u0d94","\u0db1\u0dd9","\u0daf\u0dd9"]),t.s) +B.a9E=A.a(s(["M\xd6","MS"]),t.s) +B.a9F=A.a(s(["y\u5e74M\u6708d\u65e5EEEE","y\u5e74M\u6708d\u65e5","y\u5e74M\u6708d\u65e5","y/M/d"]),t.s) +B.a9C=A.a(s(["Sul","Llun","Maw","Mer","Iau","Gwen","Sad"]),t.s) +B.a9D=A.a(s(["n","p","w","\u015b","c","p","s"]),t.s) +B.yT=A.a(s(["jan.","feb.","mar.","apr.","maj","jun.","jul.","avg.","sep.","okt.","nov.","dec."]),t.s) +B.yS=A.a(s(["\u0441","\u043b","\u0441","\u043a","\u043c","\u0447","\u043b","\u0436","\u0432","\u043a","\u043b","\u0441"]),t.s) +B.cm=A.a(s([4098969767,1098797925,387629988,658151006,2872822635,2636116293,4205620056,3813380867,807425530,1991112301,3431502198,49620300,3847224535,717608907,891715652,1656065955,2984135002,3123013403,3930429454,4267565504,801309301,1283527408,1183687575,3547055865,2399397727,2450888092,1841294202,1385552473,3201576323,1951978273,3762891113,3381544136,3262474889,2398386297,1486449470,3106397553,3787372111,2297436077,550069932,3464344634,3747813450,451248689,1368875059,1398949247,1689378935,1807451310,2180914336,150574123,1215322216,1167006205,3734275948,2069018616,1940595667,1265820162,534992783,1432758955,3954313e3,3039757250,3313932923,936617224,674296455,3206787749,50510442,384654466,3481938716,2041025204,133427442,1766760930,3664104948,84334014,886120290,2797898494,775200083,4087521365,2315596513,4137973227,2198551020,1614850799,1901987487,1857900816,557775242,3717610758,1054715397,3863824061,1418835341,3295741277,100954068,1348534037,2551784699,3184957417,1082772547,3647436702,3903896898,2298972299,434583643,3363429358,2090944266,1115482383,2230896926,0,2148107142,724715757,287222896,1517047410,251526143,2232374840,2923241173,758523705,252339417,1550328230,1536938324,908343854,168604007,1469255655,4004827798,2602278545,3229634501,3697386016,2002413899,303830554,2481064634,2696996138,574374880,454171927,151915277,2347937223,3056449960,504678569,4049044761,1974422535,2582559709,2141453664,33005350,1918680309,1715782971,4217058430,1133213225,600562886,3988154620,3837289457,836225756,1665273989,2534621218,3330547729,1250262308,3151165501,4188934450,700935585,2652719919,3000824624,2249059410,3245854947,3005967382,1890163129,2484206152,3913753188,4238918796,4037024319,2102843436,857927568,1233635150,953795025,3398237858,3566745099,4121350017,2057644254,3084527246,2906629311,976020637,2018512274,1600822220,2119459398,2381758995,3633375416,959340279,3280139695,1570750080,3496574099,3580864813,634368786,2898803609,403744637,2632478307,1004239803,650971512,1500443672,2599158199,1334028442,2514904430,4289363686,3156281551,368043752,3887782299,1867173430,2682967049,2955531900,2754719666,1059729699,2781229204,2721431654,1316239292,2197595850,2430644432,2805143e3,82922136,3963746266,3447656016,2434215926,1299615190,4014165424,2865517645,2531581700,3516851125,1783372680,750893087,1699118929,1587348714,2348899637,2281337716,201010753,1739807261,3683799762,283718486,3597472583,3617229921,2704767500,4166618644,334203196,2848910887,1639396809,484568549,1199193265,3533461983,4065673075,337148366,3346251575,4149471949,4250885034,1038029935,1148749531,2949284339,1756970692,607661108,2747424576,488010435,3803974693,1009290057,234832277,2822336769,201907891,3034094820,1449431233,3413860740,852848822,1816687708,3100656215]),t.t) +B.yU=A.a(s(["\u0a10","\u0a38\u0a4b","\u0a2e\u0a70","\u0a2c\u0a41\u0a71","\u0a35\u0a40","\u0a38\u0a3c\u0a41\u0a71","\u0a38\u0a3c"]),t.s) +B.a9G=A.a(s(["\u1798\u17bb\u1793 \u1782.\u179f.","\u1782.\u179f."]),t.s) +B.yV=A.a(s(["dg.","dl.","dt.","dc.","dj.","dv.","ds."]),t.s) +B.jX=A.a(s(["H:mm:ss zzzz","H:mm:ss z","H:mm:ss","H:mm"]),t.s) +B.aeq=A.a(s([137,80,78,71,13,10,26,10]),t.Z) +B.a7r=new A.qE(B.aeq,"image/png") +B.a9H=A.a(s([71,73,70,56,55,97]),t.Z) +B.a7v=new A.qE(B.a9H,"image/gif") +B.a9I=A.a(s([71,73,70,56,57,97]),t.Z) +B.a7w=new A.qE(B.a9I,"image/gif") +B.a8P=A.a(s([255,216,255]),t.Z) +B.a7s=new A.qE(B.a8P,"image/jpeg") +B.abm=A.a(s([82,73,70,70,null,null,null,null,87,69,66,80]),t.Z) +B.a7u=new A.qE(B.abm,"image/webp") +B.aa1=A.a(s([66,77]),t.Z) +B.a7t=new A.qE(B.aa1,"image/bmp") +B.a9J=A.a(s([B.a7r,B.a7v,B.a7w,B.a7s,B.a7u,B.a7t]),A.ah("H")) +B.yW=A.a(s(["\u0930\u0935\u093f","\u0938\u094b\u092e","\u092e\u0902\u0917\u0933","\u092c\u0941\u0927","\u0917\u0941\u0930\u0941","\u0936\u0941\u0915\u094d\u0930","\u0936\u0928\u093f"]),t.s) +B.a9K=A.a(s([4,4]),t.t) +B.yX=A.a(s([4,5]),t.t) +B.a9L=A.a(s([4,9,14,19]),t.t) +B.yY=A.a(s(["So.","Mo.","Di.","Mi.","Do.","Fr.","Sa."]),t.s) +B.a9M=A.a(s(["EEEE\u060c d MMMM y","d MMMM y","dd\u200f/MM\u200f/y","d\u200f/M\u200f/y"]),t.s) +B.fr=A.a(s(["1\uc6d4","2\uc6d4","3\uc6d4","4\uc6d4","5\uc6d4","6\uc6d4","7\uc6d4","8\uc6d4","9\uc6d4","10\uc6d4","11\uc6d4","12\uc6d4"]),t.s) +B.a9N=A.a(s(["p\u0159ed na\u0161\xedm letopo\u010dtem","na\u0161eho letopo\u010dtu"]),t.s) +B.a9O=A.a(s(["\u05e8\u05d1\u05e2\u05d5\u05df 1","\u05e8\u05d1\u05e2\u05d5\u05df 2","\u05e8\u05d1\u05e2\u05d5\u05df 3","\u05e8\u05d1\u05e2\u05d5\u05df 4"]),t.s) +B.a9P=A.a(s(["1. \u043a\u0432.","2. \u043a\u0432.","3. \u043a\u0432.","4. \u043a\u0432."]),t.s) +B.yZ=A.a(s(["\u0570\u0576\u057e","\u0583\u057f\u057e","\u0574\u0580\u057f","\u0561\u057a\u0580","\u0574\u0575\u057d","\u0570\u0576\u057d","\u0570\u056c\u057d","\u0585\u0563\u057d","\u057d\u0565\u057a","\u0570\u0578\u056f","\u0576\u0578\u0575","\u0564\u0565\u056f"]),t.s) +B.hJ=A.a(s(["s\xf8n.","man.","tir.","ons.","tor.","fre.","l\xf8r."]),t.s) +B.a9W=A.a(s(["\u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09aa\u09c2\u09b0\u09cd\u09ac","\u0996\u09c3\u09b7\u09cd\u099f\u09be\u09ac\u09cd\u09a6"]),t.s) +B.z_=A.a(s(["\u0d89","\u0dc3","\u0d85","\u0db6","\u0db6\u0dca\u200d\u0dbb","\u0dc3\u0dd2","\u0dc3\u0dd9"]),t.s) +B.nR=A.a(s([0,0,65498,45055,65535,34815,65534,18431]),t.t) +B.v=A.a(s([5,6]),t.t) +B.a9Z=A.a(s(["\u0434\u0430 \u043d.\u044d.","\u043d.\u044d."]),t.s) +B.z0=A.a(s(["saus.","vas.","kov.","bal.","geg.","bir\u017e.","liep.","rugp.","rugs.","spal.","lapkr.","gruod."]),t.s) +B.z1=A.a(s(["Su.","M.","Tu.","W.","Th.","F.","Sa."]),t.s) +B.aa_=A.a(s([65533]),t.t) +B.aa0=A.a(s(["sije\u010dnja","velja\u010de","o\u017eujka","travnja","svibnja","lipnja","srpnja","kolovoza","rujna","listopada","studenoga","prosinca"]),t.s) +B.Ts=new A.Bk(0,"auto") +B.Tt=new A.Bk(1,"full") +B.Tu=new A.Bk(2,"chromium") +B.aa2=A.a(s([B.Ts,B.Tt,B.Tu]),A.ah("H")) +B.z2=A.a(s(["d","h","m","m","e","p","sh"]),t.s) +B.aa3=A.a(s(["\u0c9c\u0ca8\u0cb5\u0cb0\u0cbf","\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cbf","\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd","\u0c8f\u0caa\u0ccd\u0cb0\u0cbf","\u0cae\u0cc7","\u0c9c\u0cc2\u0ca8\u0ccd","\u0c9c\u0cc1\u0cb2\u0cc8","\u0c86\u0c97","\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82","\u0c85\u0c95\u0ccd\u0c9f\u0ccb","\u0ca8\u0cb5\u0cc6\u0c82","\u0ca1\u0cbf\u0cb8\u0cc6\u0c82"]),t.s) +B.z3=A.a(s(["januar","februar","mart","april","maj","jun","jul","avgust","septembar","oktobar","novembar","decembar"]),t.s) +B.z4=A.a(s(["\u0436\u0435\u043a\u0441\u0435\u043d\u0431\u0456","\u0434\u04af\u0439\u0441\u0435\u043d\u0431\u0456","\u0441\u0435\u0439\u0441\u0435\u043d\u0431\u0456","\u0441\u04d9\u0440\u0441\u0435\u043d\u0431\u0456","\u0431\u0435\u0439\u0441\u0435\u043d\u0431\u0456","\u0436\u04b1\u043c\u0430","\u0441\u0435\u043d\u0431\u0456"]),t.s) +B.aa4=A.a(s(["Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"]),t.s) +B.aa5=A.a(s(["EEEE, d MMMM y '\u0433'.","d MMMM y '\u0433'.","d.MM.y '\u0433'.","d.MM.yy '\u0433'."]),t.s) +B.bQ=new A.pz(0,"label") +B.bf=new A.pz(1,"avatar") +B.cA=new A.pz(2,"deleteIcon") +B.aa6=A.a(s([B.bQ,B.bf,B.cA]),A.ah("H")) +B.aa7=A.a(s(["\u0b16\u0b4d\u0b30\u0b40\u0b37\u0b4d\u0b1f\u0b2a\u0b42\u0b30\u0b4d\u0b2c","\u0b16\u0b4d\u0b30\u0b40\u0b37\u0b4d\u0b1f\u0b3e\u0b2c\u0b4d\u0b26"]),t.s) +B.z5=A.a(s(["ne","po","ut","st","\u0161t","pi","so"]),t.s) +B.aa8=A.a(s(["Thg 1","Thg 2","Thg 3","Thg 4","Thg 5","Thg 6","Thg 7","Thg 8","Thg 9","Thg 10","Thg 11","Thg 12"]),t.s) +B.cJ=A.a(s([6,6]),t.t) +B.aa9=A.a(s(["1r trimestre","2n trimestre","3r trimestre","4t trimestre"]),t.s) +B.z7=A.a(s(["\u10d9\u10d5\u10d8","\u10dd\u10e0\u10e8","\u10e1\u10d0\u10db","\u10dd\u10d7\u10ee","\u10ee\u10e3\u10d7","\u10de\u10d0\u10e0","\u10e8\u10d0\u10d1"]),t.s) +B.z6=A.a(s(["Ionawr","Chwefror","Mawrth","Ebrill","Mai","Mehefin","Gorffennaf","Awst","Medi","Hydref","Tachwedd","Rhagfyr"]),t.s) +B.aaa=A.a(s(["d MMMM y, EEEE","d MMMM y","d MMM y","dd.MM.yy"]),t.s) +B.aab=A.a(s(["\u1018\u102e\u1005\u102e","\u1021\u1012\u1031\u102e"]),t.s) +B.z8=A.a(s(["\u0cad\u0cbe","\u0cb8\u0ccb","\u0cae\u0c82","\u0cac\u0cc1","\u0c97\u0cc1","\u0cb6\u0cc1","\u0cb6"]),t.s) +B.z9=A.a(s(["\u0cad\u0cbe\u0ca8\u0cc1\u0cb5\u0cbe\u0cb0","\u0cb8\u0ccb\u0cae\u0cb5\u0cbe\u0cb0","\u0cae\u0c82\u0c97\u0cb3\u0cb5\u0cbe\u0cb0","\u0cac\u0cc1\u0ca7\u0cb5\u0cbe\u0cb0","\u0c97\u0cc1\u0cb0\u0cc1\u0cb5\u0cbe\u0cb0","\u0cb6\u0cc1\u0c95\u0ccd\u0cb0\u0cb5\u0cbe\u0cb0","\u0cb6\u0ca8\u0cbf\u0cb5\u0cbe\u0cb0"]),t.s) +B.aac=A.a(s(["\u0d1e","\u0d24\u0d3f","\u0d1a\u0d4a","\u0d2c\u0d41","\u0d35\u0d4d\u0d2f\u0d3e","\u0d35\u0d46","\u0d36"]),t.s) +B.za=A.a(s(["yan","fev","mar","apr","may","iyn","iyl","avq","sen","okt","noy","dek"]),t.s) +B.aad=A.a(s(["\u1014\u1036\u1014\u1000\u103a","\u100a\u1014\u1031"]),t.s) +B.aae=A.a(s(["\u04af.\u04e9.","\u04af.\u0445."]),t.s) +B.zb=A.a(s(["\u067e\u06c1\u0644\u06cc \u0633\u06c1 \u0645\u0627\u06c1\u06cc","\u062f\u0648\u0633\u0631\u06cc \u0633\u06c1 \u0645\u0627\u06c1\u06cc","\u062a\u06cc\u0633\u0631\u06cc \u0633\u06c1 \u0645\u0627\u06c1\u06cc","\u0686\u0648\u062a\u0647\u06cc \u0633\u06c1 \u0645\u0627\u06c1\u06cc"]),t.s) +B.nS=A.a(s(["\u4e0a\u5348","\u4e0b\u5348"]),t.s) +B.aaf=A.a(s(["janu\xe1r","febru\xe1r","marec","apr\xedl","m\xe1j","j\xfan","j\xfal","august","september","okt\xf3ber","november","december"]),t.s) +B.zc=A.a(s(["n","p","t","s","\u010d","p","s"]),t.s) +B.aag=A.a(s(["th\xe1ng 1","th\xe1ng 2","th\xe1ng 3","th\xe1ng 4","th\xe1ng 5","th\xe1ng 6","th\xe1ng 7","th\xe1ng 8","th\xe1ng 9","th\xe1ng 10","th\xe1ng 11","th\xe1ng 12"]),t.s) +B.zd=A.a(s([B.nC,B.jI,B.hE,B.jL,B.jP,B.fp,B.yi,B.nN,B.cl,B.jQ,B.es,B.hB,B.hC,B.jJ,B.hD,B.nD,B.dQ,B.nE,B.nF,B.yg,B.ck,B.jK,B.hF,B.hG,B.nG,B.nH,B.nI,B.nJ,B.yh,B.nK,B.nL,B.jM,B.hH,B.hI,B.nM,B.jN,B.jO]),A.ah("H")) +B.ze=A.a(s(["\u0d1c\u0d28\u0d41","\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41","\u0d2e\u0d3e\u0d7c","\u0d0f\u0d2a\u0d4d\u0d30\u0d3f","\u0d2e\u0d47\u0d2f\u0d4d","\u0d1c\u0d42\u0d7a","\u0d1c\u0d42\u0d32\u0d48","\u0d13\u0d17","\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d02","\u0d12\u0d15\u0d4d\u0d1f\u0d4b","\u0d28\u0d35\u0d02","\u0d21\u0d3f\u0d38\u0d02"]),t.s) +B.zf=A.a(s(["I","Ch","M","E","M","M","G","A","M","H","T","Rh"]),t.s) +B.zg=A.a(s(["\u05d9\u05e0\u05d5\u05f3","\u05e4\u05d1\u05e8\u05f3","\u05de\u05e8\u05e5","\u05d0\u05e4\u05e8\u05f3","\u05de\u05d0\u05d9","\u05d9\u05d5\u05e0\u05d9","\u05d9\u05d5\u05dc\u05d9","\u05d0\u05d5\u05d2\u05f3","\u05e1\u05e4\u05d8\u05f3","\u05d0\u05d5\u05e7\u05f3","\u05e0\u05d5\u05d1\u05f3","\u05d3\u05e6\u05de\u05f3"]),t.s) +B.aai=A.a(s(["\u0434\u043e \u043d\u0430\u0448\u043e\u0457 \u0435\u0440\u0438","\u043d\u0430\u0448\u043e\u0457 \u0435\u0440\u0438"]),t.s) +B.aah=A.a(s(["EEEE, d. MMMM y","d. MMMM y","d. MMM y","d. MM. yy"]),t.s) +B.zh=A.a(s(["avant J\xe9sus-Christ","apr\xe8s J\xe9sus-Christ"]),t.s) +B.aaj=A.a(s(["ah:mm:ss [zzzz]","ah:mm:ss [z]","ah:mm:ss","ah:mm"]),t.s) +B.aal=A.a(s(["1 \u0dc0\u0db1 \u0d9a\u0dcf\u0dbb\u0dca\u0dad\u0dd4\u0dc0","2 \u0dc0\u0db1 \u0d9a\u0dcf\u0dbb\u0dca\u0dad\u0dd4\u0dc0","3 \u0dc0\u0db1 \u0d9a\u0dcf\u0dbb\u0dca\u0dad\u0dd4\u0dc0","4 \u0dc0\u0db1 \u0d9a\u0dcf\u0dbb\u0dca\u0dad\u0dd4\u0dc0"]),t.s) +B.aak=A.a(s(["\u044f\u043d\u0432\u0430\u0440\u044f","\u0444\u0435\u0432\u0440\u0430\u043b\u044f","\u043c\u0430\u0440\u0442\u0430","\u0430\u043f\u0440\u0435\u043b\u044f","\u043c\u0430\u044f","\u0438\u044e\u043d\u044f","\u0438\u044e\u043b\u044f","\u0430\u0432\u0433\u0443\u0441\u0442\u0430","\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f","\u043e\u043a\u0442\u044f\u0431\u0440\u044f","\u043d\u043e\u044f\u0431\u0440\u044f","\u0434\u0435\u043a\u0430\u0431\u0440\u044f"]),t.s) +B.aam=A.a(s(["EEEE, d MMMM y","d MMMM y","d/MM/y","d/MM/yy"]),t.s) +B.aan=A.a(s(["{1}, {0}","{1}, {0}","{1}, {0}","{1} {0}"]),t.s) +B.aao=A.a(s(["\u0642.\u0645.","\u0645."]),t.s) +B.aap=A.a(s(["\u0a2a\u0a42.\u0a26\u0a41.","\u0a2c\u0a3e.\u0a26\u0a41."]),t.s) +B.jY=A.a(s(["EEEE, d MMMM y","d MMMM y","d MMM y","d/M/yy"]),t.s) +B.aaq=A.a(s(["{1} {0}\u0c15\u0c3f","{1} {0}\u0c15\u0c3f","{1} {0}","{1} {0}"]),t.s) +B.zi=A.a(s(["zo","ma","di","wo","do","vr","za"]),t.s) +B.aas=A.a(s(["i. e.","i. sz."]),t.s) +B.aat=A.a(s(["I. negyed\xe9v","II. negyed\xe9v","III. negyed\xe9v","IV. negyed\xe9v"]),t.s) +B.aau=A.a(s(["y\ub144 M\uc6d4 d\uc77c EEEE","y\ub144 M\uc6d4 d\uc77c","y. M. d.","yy. M. d."]),t.s) +B.aBV=new A.kV(0,1) +B.aC0=new A.kV(0.5,1) +B.aC1=new A.kV(0.5375,0.75) +B.aC_=new A.kV(0.575,0.5) +B.aC3=new A.kV(0.6125,0.25) +B.aC4=new A.kV(0.65,0) +B.aC2=new A.kV(0.85,0) +B.aBZ=new A.kV(0.8875,0.25) +B.aBX=new A.kV(0.925,0.5) +B.aBY=new A.kV(0.9625,0.75) +B.aBW=new A.kV(1,1) +B.aar=A.a(s([B.aBV,B.aC0,B.aC1,B.aC_,B.aC3,B.aC4,B.aC2,B.aBZ,B.aBX,B.aBY,B.aBW]),A.ah("H")) +B.aaw=A.a(s(["1-\u0447\u0435\u0439\u0440\u0435\u043a","2-\u0447\u0435\u0439\u0440\u0435\u043a","3-\u0447\u0435\u0439\u0440\u0435\u043a","4-\u0447\u0435\u0439\u0440\u0435\u043a"]),t.s) +B.aay=A.a(s(["{1} '\u043e' {0}","{1} '\u043e' {0}","{1}, {0}","{1}, {0}"]),t.s) +B.aav=A.a(s(["{1} '\u0443' {0}","{1} '\u0443' {0}","{1}, {0}","{1}, {0}"]),t.s) +B.zj=A.a(s(["Y","D","S","C","P","J","S"]),t.s) +B.aax=A.a(s(["sv\u0113tdiena","pirmdiena","otrdiena","tre\u0161diena","ceturtdiena","piektdiena","sestdiena"]),t.s) +B.aaz=A.a(s(["I kwarta\u0142","II kwarta\u0142","III kwarta\u0142","IV kwarta\u0142"]),t.s) +B.zk=A.a(s(["1\u0b2e \u0b24\u0b4d\u0b30\u0b5f\u0b2e\u0b3e\u0b38","2\u0b5f \u0b24\u0b4d\u0b30\u0b5f\u0b2e\u0b3e\u0b38","3\u0b5f \u0b24\u0b4d\u0b30\u0b5f\u0b2e\u0b3e\u0b38","4\u0b30\u0b4d\u0b25 \u0b24\u0b4d\u0b30\u0b5f\u0b2e\u0b3e\u0b38"]),t.s) +B.aaA=A.a(s(["D","L","M","M","X","V","S"]),t.s) +B.aaB=A.a(s(["EEEE\u0e17\u0e35\u0e48 d MMMM G y","d MMMM G y","d MMM y","d/M/yy"]),t.s) +B.zl=A.a(s(["niedziela","poniedzia\u0142ek","wtorek","\u015broda","czwartek","pi\u0105tek","sobota"]),t.s) +B.zm=A.a(s(["1-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b","2-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b","3-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b","4-\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b"]),t.s) +B.aaC=A.a(s(["\u17a2\u17b6\u1791\u17b7\u178f\u17d2\u1799","\u1785\u17d0\u1793\u17d2\u1791","\u17a2\u1784\u17d2\u1782\u17b6\u179a","\u1796\u17bb\u1792","\u1796\u17d2\u179a\u17a0\u179f\u17d2\u1794\u178f\u17b7\u17cd","\u179f\u17bb\u1780\u17d2\u179a","\u179f\u17c5\u179a\u17cd"]),t.s) +B.zn=A.a(s(["niedz.","pon.","wt.","\u015br.","czw.","pt.","sob."]),t.s) +B.zo=A.a(s(["{1} '\xe0' {0}","{1} '\xe0' {0}","{1}, {0}","{1} {0}"]),t.s) +B.aaD=A.a(s(["\u0635","\u0645"]),t.s) +B.aaE=A.a(s(["EEEE, dd MMMM y","d MMMM y","d MMM y","dd/MM/yy"]),t.s) +B.zp=A.a(s(["vas\xe1rnap","h\xe9tf\u0151","kedd","szerda","cs\xfct\xf6rt\xf6k","p\xe9ntek","szombat"]),t.s) +B.aaF=A.a(s(["yanvar","fevral","mart","aprel","may","iyun","iyul","avgust","sentabr","oktabr","noyabr","dekabr"]),t.s) +B.zq=A.a(s(["sty","lut","mar","kwi","maj","cze","lip","sie","wrz","pa\u017a","lis","gru"]),t.s) +B.aaG=A.a(s(["\u0e81\u0ec8\u0ead\u0e99\u0e97\u0ec8\u0ebd\u0e87","\u0eab\u0ebc\u0eb1\u0e87\u0e97\u0ec8\u0ebd\u0e87"]),t.s) +B.jZ=A.a(s(["\u06cc\u06a9\u0634\u0646\u0628\u0647","\u062f\u0648\u0634\u0646\u0628\u0647","\u0633\u0647\u200c\u0634\u0646\u0628\u0647","\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647","\u067e\u0646\u062c\u0634\u0646\u0628\u0647","\u062c\u0645\u0639\u0647","\u0634\u0646\u0628\u0647"]),t.s) +B.zr=A.a(s(["af","am","ar","as","az","be","bg","bn","bs","ca","cs","cy","da","de","el","en","es","et","eu","fa","fi","fil","fr","gl","gsw","gu","he","hi","hr","hu","hy","id","is","it","ja","ka","kk","km","kn","ko","ky","lo","lt","lv","mk","ml","mn","mr","ms","my","nb","ne","nl","no","or","pa","pl","ps","pt","ro","ru","si","sk","sl","sq","sr","sv","sw","ta","te","th","tl","tr","uk","ur","uz","vi","zh","zu"]),t.s) +B.zs=A.a(s(["e diel","e h\xebn\xeb","e mart\xeb","e m\xebrkur\xeb","e enjte","e premte","e shtun\xeb"]),t.s) +B.aaH=A.a(s(["\u043d\u044f\u043c","\u0434\u0430\u0432\u0430\u0430","\u043c\u044f\u0433\u043c\u0430\u0440","\u043b\u0445\u0430\u0433\u0432\u0430","\u043f\u04af\u0440\u044d\u0432","\u0431\u0430\u0430\u0441\u0430\u043d","\u0431\u044f\u043c\u0431\u0430"]),t.s) +B.aaI=A.a(s(["1-\u0440 \u0443\u043b\u0438\u0440\u0430\u043b","2-\u0440 \u0443\u043b\u0438\u0440\u0430\u043b","3-\u0440 \u0443\u043b\u0438\u0440\u0430\u043b","4-\u0440 \u0443\u043b\u0438\u0440\u0430\u043b"]),t.s) +B.zt=A.a(s(["janv.","febr.","marts","apr.","maijs","j\u016bn.","j\u016bl.","aug.","sept.","okt.","nov.","dec."]),t.s) +B.k_=A.a(s(["a. C.","d. C."]),t.s) +B.aaJ=A.a(s(["dom.","luns","mar.","m\xe9r.","xov.","ven.","s\xe1b."]),t.s) +B.aaK=A.a(s(["\u1798\u17bb\u1793\u200b\u1782\u17d2\u179a\u17b7\u179f\u17d2\u178f\u179f\u1780\u179a\u17b6\u1787","\u1782\u17d2\u179a\u17b7\u179f\u17d2\u178f\u179f\u1780\u179a\u17b6\u1787"]),t.s) +B.ac=A.a(s(["AM","PM"]),t.s) +B.k0=A.a(s(["\u1010\u1014\u1004\u103a\u1039\u1002\u1014\u103d\u1031","\u1010\u1014\u1004\u103a\u1039\u101c\u102c","\u1021\u1004\u103a\u1039\u1002\u102b","\u1017\u102f\u1012\u1039\u1013\u101f\u1030\u1038","\u1000\u103c\u102c\u101e\u1015\u1010\u1031\u1038","\u101e\u1031\u102c\u1000\u103c\u102c","\u1005\u1014\u1031"]),t.s) +B.aaL=A.a(s(["\u0406 \u0442\u043e\u049b\u0441\u0430\u043d","\u0406\u0406 \u0442\u043e\u049b\u0441\u0430\u043d","\u0406\u0406\u0406 \u0442\u043e\u049b\u0441\u0430\u043d","IV \u0442\u043e\u049b\u0441\u0430\u043d"]),t.s) +B.aaM=A.a(s(["\u09aa\u09c2\u09f0\u09cd\u09ac\u09be\u09b9\u09cd\u09a8","\u0985\u09aa\u09f0\u09be\u09b9\u09cd\u09a8"]),t.s) +B.aaN=A.a(s(["HH:mm:ss (zzzz)","HH:mm:ss z","HH:mm:ss","HH:mm"]),t.s) +B.k1=A.a(s(["dim.","lun.","mar.","mer.","jeu.","ven.","sam."]),t.s) +B.aaO=A.a(s(["a h.mm.ss zzzz","a h.mm.ss z","a h.mm.ss","a h.mm"]),t.s) +B.k2=A.a(s([B.h7,B.iQ,B.mc,B.md,B.iR]),t.QP) +B.aaP=A.a(s(["v.Chr.","n.Chr."]),t.s) +B.zu=A.a(s(["\u039a","\u0394","\u03a4","\u03a4","\u03a0","\u03a0","\u03a3"]),t.s) +B.k3=A.a(s(["\u0930","\u0938\u094b","\u092e\u0902","\u092c\u0941","\u0917\u0941","\u0936\u0941","\u0936"]),t.s) +B.aaQ=A.a(s([B.h7]),t.QP) +B.zv=A.a(s(["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","November","Desember"]),t.s) +B.aaR=A.a(s([B.me,B.mf]),A.ah("H")) +B.zw=A.a(s(["Januwari","Februwari","Mashi","Ephreli","Meyi","Juni","Julayi","Agasti","Septhemba","Okthoba","Novemba","Disemba"]),t.s) +B.dp=A.a(s(["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]),t.s) +B.zx=A.a(s(["bind","if","ref","repeat","syntax"]),t.s) +B.cK=A.a(s(["1st quarter","2nd quarter","3rd quarter","4th quarter"]),t.s) +B.zy=A.a(s([B.ec,B.iS]),A.ah("H")) +B.aaS=A.a(s(["{1}\u060c \u0633\u0627\u0639\u062a {0}","{1}\u060c \u0633\u0627\u0639\u062a {0}","{1}\u060c\u200f {0}","{1}\u060c\u200f {0}"]),t.s) +B.aaT=A.a(s(["avanti Cristo","dopo Cristo"]),t.s) +B.aaU=A.a(s(["\u0a08. \u0a2a\u0a42.","\u0a38\u0a70\u0a28"]),t.s) +B.aaY=A.a(s(["pirms m\u016bsu \u0113ras","m\u016bsu \u0113r\u0101"]),t.s) +B.aaW=A.a(s(["1-ci kvartal","2-ci kvartal","3-c\xfc kvartal","4-c\xfc kvartal"]),t.s) +B.aaV=A.a(s(["1ste kwartaal","2de kwartaal","3de kwartaal","4de kwartaal"]),t.s) +B.aaX=A.a(s(["HH 'h' mm 'min' ss 's' zzzz","HH 'h' mm 'min' ss 's' z","HH 'h' mm 'min' ss 's'","HH 'h' mm"]),t.s) +B.zz=A.a(s(["\u062c\u0646\u0648\u0631\u064a","\u0641\u0628\u0631\u0648\u0631\u064a","\u0645\u0627\u0631\u0686","\u0627\u067e\u0631\u06cc\u0644","\u0645\u06cd","\u062c\u0648\u0646","\u062c\u0648\u0644\u0627\u06cc","\u0627\u06ab\u0633\u062a","\u0633\u06d0\u067e\u062a\u0645\u0628\u0631","\u0627\u06a9\u062a\u0648\u0628\u0631","\u0646\u0648\u0645\u0628\u0631","\u062f\u0633\u0645\u0628\u0631"]),t.s) +B.by=A.a(s(["BC","AD"]),t.s) +B.a5y=new A.aO(61137,"MaterialIcons",null,!1) +B.Ja=new A.m5(B.a5y,"UNKNOWN",0,"unknown") +B.a6p=new A.aO(983339,"MaterialIcons",null,!1) +B.ajT=new A.m5(B.a6p,"ONGOING",1,"ongoing") +B.a62=new A.aO(63186,"MaterialIcons",null,!1) +B.ajU=new A.m5(B.a62,"COMPLETED",2,"completed") +B.a6u=new A.aO(983403,"MaterialIcons",null,!1) +B.ajV=new A.m5(B.a6u,"LICENSED",3,"licensed") +B.a6l=new A.aO(983239,"MaterialIcons",null,!1) +B.ajY=new A.m5(B.a6l,"PUBLISHING_FINISHED",4,"publishingFinished") +B.a5S=new A.aO(62998,"MaterialIcons",null,!1) +B.ajW=new A.m5(B.a5S,"CANCELLED",5,"cancelled") +B.a6i=new A.aO(983124,"MaterialIcons",null,!1) +B.ajX=new A.m5(B.a6i,"ON_HIATUS",6,"onHiatus") +B.aaZ=A.a(s([B.Ja,B.ajT,B.ajU,B.ajV,B.ajY,B.ajW,B.ajX]),A.ah("H")) +B.zA=A.a(s(["ig.","al.","ar.","az.","og.","or.","lr."]),t.s) +B.ab_=A.a(s(["prvi kvartal","drugi kvartal","tre\u0107i kvartal","\u010detvrti kvartal"]),t.s) +B.k4=A.a(s(["EEEE, d MMMM, y","d MMMM, y","d MMM, y","d/M/yy"]),t.s) +B.ab0=A.a(s(["HH:mm:ss, zzzz","HH:mm:ss z","HH:mm:ss","HH:mm"]),t.s) +B.ab1=A.a(s(["\u12d3/\u12d3","\u12d3/\u121d"]),t.s) +B.zB=A.a(s(["P\xfchap\xe4ev","Esmasp\xe4ev","Teisip\xe4ev","Kolmap\xe4ev","Neljap\xe4ev","Reede","Laup\xe4ev"]),t.s) +B.zC=A.a(s(["ianuarie","februarie","martie","aprilie","mai","iunie","iulie","august","septembrie","octombrie","noiembrie","decembrie"]),t.s) +B.k5=A.a(s(["1.\xba trimestre","2.\xba trimestre","3.\xba trimestre","4.\xba trimestre"]),t.s) +B.zD=A.a(s(["EEEE d. MMMM y","d. MMMM y","d. MMM y","dd.MM.y"]),t.s) +B.zE=A.a(s([0,4,12,1,5,13,3,7,15]),t.t) +B.zF=A.a(s(["\u0930\u0935\u093f\u0935\u093e\u0930","\u0938\u094b\u092e\u0935\u093e\u0930","\u092e\u0902\u0917\u0933\u0935\u093e\u0930","\u092c\u0941\u0927\u0935\u093e\u0930","\u0917\u0941\u0930\u0941\u0935\u093e\u0930","\u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930","\u0936\u0928\u093f\u0935\u093e\u0930"]),t.s) +B.ab2=A.a(s(["Sul","Llun","Maw","Mer","Iau","Gwe","Sad"]),t.s) +B.ab3=A.a(s(["\u0441\u0442\u0443","\u043b\u044e\u0442","\u0441\u0430\u043a","\u043a\u0440\u0430","\u043c\u0430\u0439","\u0447\u044d\u0440","\u043b\u0456\u043f","\u0436\u043d\u0456","\u0432\u0435\u0440","\u043a\u0430\u0441","\u043b\u0456\u0441","\u0441\u043d\u0435"]),t.s) +B.ab4=A.a(s(["CC","OC"]),t.s) +B.ab5=A.a(s(["pointerdown","pointermove","pointerleave","pointerup","pointercancel","touchstart","touchend","touchmove","touchcancel","mousedown","mousemove","mouseleave","mouseup","keyup","keydown"]),t.s) +B.zG=A.a(s(["gen","feb","mar","apr","mag","giu","lug","ago","set","ott","nov","dic"]),t.s) +B.ab6=A.a(s(["\u062c\u0646\u0648\u0631\u064a","\u0641\u06d0\u0628\u0631\u0648\u0631\u064a","\u0645\u0627\u0631\u0686","\u0627\u067e\u0631\u06cc\u0644","\u0645\u06cd","\u062c\u0648\u0646","\u062c\u0648\u0644\u0627\u06cc","\u0627\u06ab\u0633\u062a","\u0633\u067e\u062a\u0645\u0628\u0631","\u0627\u06a9\u062a\u0648\u0628\u0631","\u0646\u0648\u0645\u0628\u0631","\u062f\u0633\u0645\u0628\u0631"]),t.s) +B.zH=A.a(s(["\u0d89\u0dbb\u0dd2\u0daf\u0dcf","\u0dc3\u0db3\u0dd4\u0daf\u0dcf","\u0d85\u0d9f\u0dc4\u0dbb\u0dd4\u0dc0\u0dcf\u0daf\u0dcf","\u0db6\u0daf\u0dcf\u0daf\u0dcf","\u0db6\u0dca\u200d\u0dbb\u0dc4\u0dc3\u0dca\u0db4\u0dad\u0dd2\u0db1\u0dca\u0daf\u0dcf","\u0dc3\u0dd2\u0d9a\u0dd4\u0dbb\u0dcf\u0daf\u0dcf","\u0dc3\u0dd9\u0db1\u0dc3\u0dd4\u0dbb\u0dcf\u0daf\u0dcf"]),t.s) +B.zI=A.a(s(["sun.","m\xe1n.","\xferi.","mi\xf0.","fim.","f\xf6s.","lau."]),t.s) +B.ab8=A.a(s(["y-'\u0436'., d-MMMM, EEEE","y-'\u0436'., d-MMMM","y-'\u0436'., d-MMM","d/M/yy"]),t.s) +B.ab7=A.a(s(["\u0698\u0627\u0646\u0648\u06cc\u0647\u0654","\u0641\u0648\u0631\u06cc\u0647\u0654","\u0645\u0627\u0631\u0633","\u0622\u0648\u0631\u06cc\u0644","\u0645\u0647\u0654","\u0698\u0648\u0626\u0646","\u0698\u0648\u0626\u06cc\u0647\u0654","\u0627\u0648\u062a","\u0633\u067e\u062a\u0627\u0645\u0628\u0631","\u0627\u06a9\u062a\u0628\u0631","\u0646\u0648\u0627\u0645\u0628\u0631","\u062f\u0633\u0627\u0645\u0628\u0631"]),t.s) +B.ab9=A.a(s(["\xc71","\xc72","\xc73","\xc74"]),t.s) +B.aba=A.a(s(["sausio","vasario","kovo","baland\u017eio","gegu\u017e\u0117s","bir\u017eelio","liepos","rugpj\u016b\u010dio","rugs\u0117jo","spalio","lapkri\u010dio","gruod\u017eio"]),t.s) +B.abb=A.a(s(["H\u6642mm\u5206ss\u79d2 zzzz","H:mm:ss z","H:mm:ss","H:mm"]),t.s) +B.abc=A.a(s(["Ch1","Ch2","Ch3","Ch4"]),t.s) +B.zJ=A.a(s(["E","P","M","A","M","Hun","Hul","Ago","Set","Okt","Nob","Dis"]),t.s) +B.zK=A.a(s(["\u0b9e\u0bbe\u0baf\u0bbf\u0bb1\u0bc1","\u0ba4\u0bbf\u0b99\u0bcd\u0b95\u0bb3\u0bcd","\u0b9a\u0bc6\u0bb5\u0bcd\u0bb5\u0bbe\u0baf\u0bcd","\u0baa\u0bc1\u0ba4\u0ba9\u0bcd","\u0bb5\u0bbf\u0baf\u0bbe\u0bb4\u0ba9\u0bcd","\u0bb5\u0bc6\u0bb3\u0bcd\u0bb3\u0bbf","\u0b9a\u0ba9\u0bbf"]),t.s) +B.abe=A.a(s(["cccc d. MMMM y","d. MMMM y","d.M.y","d.M.y"]),t.s) +B.abf=A.a(s(["I kw.","II kw.","III kw.","IV kw."]),t.s) +B.zL=A.a(s(["nedelja","ponedeljak","utorak","sreda","\u010detvrtak","petak","subota"]),t.s) +B.abg=A.a(s(["\u0431.\u0437.\u0447.","\u0431.\u0437."]),t.s) +B.fR=new A.fn(0,"defaultNavigation") +B.oV=new A.fn(1,"lShaped") +B.oW=new A.fn(2,"rightAndLeft") +B.oX=new A.fn(3,"edge") +B.oY=new A.fn(4,"kindlish") +B.nT=A.a(s([B.fR,B.oV,B.oW,B.oX,B.oY,B.eG]),A.ah("H")) +B.abh=A.a(s(["a h:mm:ss zzzz","a h:mm:ss z","a h:mm:ss","a h:mm"]),t.s) +B.zM=A.a(s(["pr. Kr.","po Kr."]),t.s) +B.abi=A.a(s(["\u0bae\u0bc1\u0bb1\u0bcd\u0baa\u0b95\u0bb2\u0bcd","\u0baa\u0bbf\u0bb1\u0bcd\u0baa\u0b95\u0bb2\u0bcd"]),t.s) +B.k6=A.a(s(["\u091c\u0928\u0935\u0930\u0940","\u092b\u0947\u092c\u094d\u0930\u0941\u0905\u0930\u0940","\u092e\u093e\u0930\u094d\u091a","\u0905\u092a\u094d\u0930\u093f\u0932","\u092e\u0947","\u091c\u0941\u0928","\u091c\u0941\u0932\u093e\u0908","\u0905\u0917\u0938\u094d\u091f","\u0938\u0947\u092a\u094d\u091f\u0947\u092e\u094d\u092c\u0930","\u0905\u0915\u094d\u091f\u094b\u092c\u0930","\u0928\u094b\u092d\u0947\u092e\u094d\u092c\u0930","\u0921\u093f\u0938\u0947\u092e\u094d\u092c\u0930"]),t.s) +B.abk=A.a(s(["1\u0c35 \u0c24\u0c4d\u0c30\u0c48\u0c2e\u0c3e\u0c38\u0c3f\u0c15\u0c02","2\u0c35 \u0c24\u0c4d\u0c30\u0c48\u0c2e\u0c3e\u0c38\u0c3f\u0c15\u0c02","3\u0c35 \u0c24\u0c4d\u0c30\u0c48\u0c2e\u0c3e\u0c38\u0c3f\u0c15\u0c02","4\u0c35 \u0c24\u0c4d\u0c30\u0c48\u0c2e\u0c3e\u0c38\u0c3f\u0c15\u0c02"]),t.s) +B.abj=A.a(s(["sunnuntaina","maanantaina","tiistaina","keskiviikkona","torstaina","perjantaina","lauantaina"]),t.s) +B.zN=A.a(s(["\u09b0\u09ac\u09bf","\u09b8\u09cb\u09ae","\u09ae\u0999\u09cd\u0997\u09b2","\u09ac\u09c1\u09a7","\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf","\u09b6\u09c1\u0995\u09cd\u09b0","\u09b6\u09a8\u09bf"]),t.s) +B.abl=A.a(s(["H.mm.ss zzzz","H.mm.ss z","H.mm.ss","H.mm"]),t.s) +B.zO=A.a(s(["Dydd Sul","Dydd Llun","Dydd Mawrth","Dydd Mercher","Dydd Iau","Dydd Gwener","Dydd Sadwrn"]),t.s) +B.abn=A.a(s(["Xan.","Feb.","Mar.","Abr.","Maio","Xu\xf1o","Xul.","Ago.","Set.","Out.","Nov.","Dec."]),t.s) +B.abo=A.a(s(["1. \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435","2. \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435","3. \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435","4. \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435"]),t.s) +B.aY=A.a(s(["January","February","March","April","May","June","July","August","September","October","November","December"]),t.s) +B.abp=A.a(s(["\u0434\u0430 \u043d\u0430\u0440\u0430\u0434\u0436\u044d\u043d\u043d\u044f \u0425\u0440\u044b\u0441\u0442\u043e\u0432\u0430","\u0430\u0434 \u043d\u0430\u0440\u0430\u0434\u0436\u044d\u043d\u043d\u044f \u0425\u0440\u044b\u0441\u0442\u043e\u0432\u0430"]),t.s) +B.hK=A.a(s(["1. kvartal","2. kvartal","3. kvartal","4. kvartal"]),t.s) +B.fs=A.a(s(["Ene","Peb","Mar","Abr","May","Hun","Hul","Ago","Set","Okt","Nob","Dis"]),t.s) +B.zP=A.a(s(["HH:mm:ss (zzzz)","HH:mm:ss (z)","HH:mm:ss","HH:mm"]),t.s) +B.a3=A.a(s(["HH:mm:ss zzzz","HH:mm:ss z","HH:mm:ss","HH:mm"]),t.s) +B.zQ=A.a(s(["\u10d8\u10d0\u10dc\u10d5\u10d0\u10e0\u10d8","\u10d7\u10d4\u10d1\u10d4\u10e0\u10d5\u10d0\u10da\u10d8","\u10db\u10d0\u10e0\u10e2\u10d8","\u10d0\u10de\u10e0\u10d8\u10da\u10d8","\u10db\u10d0\u10d8\u10e1\u10d8","\u10d8\u10d5\u10dc\u10d8\u10e1\u10d8","\u10d8\u10d5\u10da\u10d8\u10e1\u10d8","\u10d0\u10d2\u10d5\u10d8\u10e1\u10e2\u10dd","\u10e1\u10d4\u10e5\u10e2\u10d4\u10db\u10d1\u10d4\u10e0\u10d8","\u10dd\u10e5\u10e2\u10dd\u10db\u10d1\u10d4\u10e0\u10d8","\u10dc\u10dd\u10d4\u10db\u10d1\u10d4\u10e0\u10d8","\u10d3\u10d4\u10d9\u10d4\u10db\u10d1\u10d4\u10e0\u10d8"]),t.s) +B.abu=A.a(s(["y '\u0436'. d MMMM, EEEE","y '\u0436'. d MMMM","y '\u0436'. dd MMM","dd.MM.yy"]),t.s) +B.abv=A.a(s(["EEEE, d MMMM y","d MMMM y","d MMM y","d.MM.y"]),t.s) +B.abw=A.a(s(["thg 1","thg 2","thg 3","thg 4","thg 5","thg 6","thg 7","thg 8","thg 9","thg 10","thg 11","thg 12"]),t.s) +B.aby=A.a(s(["f.h.","e.h."]),t.s) +B.abx=A.a(s(["1-\u0448\u044b \u043a\u0432.","2-\u0433\u0456 \u043a\u0432.","3-\u0446\u0456 \u043a\u0432.","4-\u0442\u044b \u043a\u0432."]),t.s) +B.k7=A.a(s(["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"]),t.s) +B.abz=A.a(s(["1-\u056b\u0576 \u0565\u057c\u0574\u057d.","2-\u0580\u0564 \u0565\u057c\u0574\u057d.","3-\u0580\u0564 \u0565\u057c\u0574\u057d.","4-\u0580\u0564 \u0565\u057c\u0574\u057d."]),t.s) +B.zR=A.a(s(["\u0e2d\u0e32","\u0e08","\u0e2d","\u0e1e","\u0e1e\u0e24","\u0e28","\u0e2a"]),t.s) +B.abA=A.a(s(["{1} \u0915\u094b {0}","{1} \u0915\u094b {0}","{1}, {0}","{1}, {0}"]),t.s) +B.zS=A.a(s(["Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu"]),t.s) +B.zT=A.a(s(["\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435","\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a","\u0432\u0442\u043e\u0440\u043d\u0438\u043a","\u0441\u0440\u0435\u0434\u0430","\u0447\u0435\u0442\u0432\u0435\u0440\u0433","\u043f\u044f\u0442\u043d\u0438\u0446\u0430","\u0441\u0443\u0431\u0431\u043e\u0442\u0430"]),t.s) +B.zU=A.a(s(["duminic\u0103","luni","mar\u021bi","miercuri","joi","vineri","s\xe2mb\u0103t\u0103"]),t.s) +B.zV=A.a(s(["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"]),t.s) +B.abB=A.a(s(["\u0d1e\u0d3e\u0d2f\u0d31\u0d3e\u0d34\u0d4d\u200c\u0d1a","\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d33\u0d3e\u0d34\u0d4d\u200c\u0d1a","\u0d1a\u0d4a\u0d35\u0d4d\u0d35\u0d3e\u0d34\u0d4d\u0d1a","\u0d2c\u0d41\u0d27\u0d28\u0d3e\u0d34\u0d4d\u200c\u0d1a","\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d3e\u0d34\u0d4d\u200c\u0d1a","\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u200c\u0d1a","\u0d36\u0d28\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u200c\u0d1a"]),t.s) +B.zW=A.a(s(["igandea","astelehena","asteartea","asteazkena","osteguna","ostirala","larunbata"]),t.s) +B.k8=A.a(s(["janeiro","fevereiro","mar\xe7o","abril","maio","junho","julho","agosto","setembro","outubro","novembro","dezembro"]),t.s) +B.zX=A.a(s(["\u0b1c\u0b3e","\u0b2b\u0b47","\u0b2e\u0b3e","\u0b05","\u0b2e\u0b07","\u0b1c\u0b41","\u0b1c\u0b41","\u0b05","\u0b38\u0b47","\u0b05","\u0b28","\u0b21\u0b3f"]),t.s) +B.zY=A.a(s(["S","V","K","B","G","B","L","R","R","S","L","G"]),t.s) +B.abC=A.a(s(["F1","F2","F3","F4"]),t.s) +B.abD=A.a(s(["y- MMMM d- EEEE","y- MMMM d","y- MMM d","dd-MM-yy"]),t.s) +B.cn=A.a(s([1667483301,2088564868,2004348569,2071721613,4076011277,1802229437,1869602481,3318059348,808476752,16843267,1734856361,724260477,4278118169,3621238114,2880130534,1987505306,3402272581,2189565853,3385428288,2105408135,4210749205,1499050731,1195871945,4042324747,2913812972,3570709351,2728550397,2947499498,2627478463,2762232823,1920132246,3233848155,3082253762,4261273884,2475900334,640044138,909536346,1061125697,4160222466,3435955023,875849820,2779075060,3857043764,4059166984,1903288979,3638078323,825320019,353708607,67373068,3351745874,589514341,3284376926,404238376,2526427041,84216335,2593796021,117902857,303178806,2155879323,3806519101,3958099238,656887401,2998042573,1970662047,151589403,2206408094,741103732,437924910,454768173,1852759218,1515893998,2694863867,1381147894,993752653,3604395873,3014884814,690573947,3823361342,791633521,2223248279,1397991157,3520182632,0,3991781676,538984544,4244431647,2981198280,1532737261,1785386174,3419114822,3200149465,960066123,1246401758,1280088276,1482207464,3486483786,3503340395,4025468202,2863288293,4227591446,1128498885,1296931543,859006549,2240090516,1162185423,4193904912,33686534,2139094657,1347461360,1010595908,2678007226,2829601763,1364304627,2745392638,1077969088,2408514954,2459058093,2644320700,943222856,4126535940,3166462943,3065411521,3671764853,555827811,269492272,4294960410,4092853518,3537026925,3452797260,202119188,320022069,3974939439,1600110305,2543269282,1145342156,387395129,3301217111,2812761586,2122251394,1027439175,1684326572,1566423783,421081643,1936975509,1616953504,2172721560,1330618065,3705447295,572671078,707417214,2425371563,2290617219,1179028682,4008625961,3099093971,336865340,3739133817,1583267042,185275933,3688607094,3772832571,842163286,976909390,168432670,1229558491,101059594,606357612,1549580516,3267534685,3553869166,2896970735,1650640038,2442213800,2509582756,3840201527,2038035083,3890730290,3368586051,926379609,1835915959,2374828428,3587551588,1313774802,2846444e3,1819072692,1448520954,4109693703,3941256997,1701169839,2054878350,2930657257,134746136,3132780501,2021191816,623200879,774790258,471611428,2795919345,3031724999,3334903633,3907570467,3722289532,1953818780,522141217,1263245021,3183305180,2341145990,2324303749,1886445712,1044282434,3048567236,1718013098,1212715224,50529797,4143380225,235805714,1633796771,892693087,1465364217,3115936208,2256934801,3250690392,488454695,2661164985,3789674808,4177062675,2560109491,286335539,1768542907,3654920560,2391672713,2492740519,2610638262,505297954,2273777042,3924412704,3469641545,1431677695,673730680,3755976058,2357986191,2711706104,2307459456,218962455,3216991706,3873888049,1111655622,1751699640,1094812355,2576951728,757946999,252648977,2964356043,1414834428,3149622742,370551866]),t.t) +B.abE=A.a(s(["\u043f\u0440\u0432\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b","\u0434\u0440\u0443\u0433\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b","\u0442\u0440\u0435\u045b\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b","\u0447\u0435\u0442\u0432\u0440\u0442\u0438 \u043a\u0432\u0430\u0440\u0442\u0430\u043b"]),t.s) +B.k9=A.a(s(["D","S","T","Q","Q","S","S"]),t.s) +B.zZ=A.a(s(["\u0540","\u0553","\u0544","\u0531","\u0544","\u0540","\u0540","\u0555","\u054d","\u0540","\u0546","\u0534"]),t.s) +B.A_=A.a(s(["S.M.","TM"]),t.s) +B.abF=A.a(s(["\u0996\u09cd\u09f0\u09c0\u0983 \u09aa\u09c2\u0983","\u0996\u09cd\u09f0\u09c0\u0983"]),t.s) +B.A0=A.a(s(["N","P","\xda","S","\u010c","P","S"]),t.s) +B.ft=A.a(s(["s\xf8ndag","mandag","tirsdag","onsdag","torsdag","fredag","l\xf8rdag"]),t.s) +B.abG=A.a(s(["{1} \u05d1\u05e9\u05e2\u05d4 {0}","{1} \u05d1\u05e9\u05e2\u05d4 {0}","{1}, {0}","{1}, {0}"]),t.s) +B.abH=A.a(s(["\u09aa\u09cd\u09f0\u09a5\u09ae \u09a4\u09bf\u09a8\u09bf\u09ae\u09be\u09b9","\u09a6\u09cd\u09ac\u09bf\u09a4\u09c0\u09af\u09bc \u09a4\u09bf\u09a8\u09bf\u09ae\u09be\u09b9","\u09a4\u09c3\u09a4\u09c0\u09af\u09bc \u09a4\u09bf\u09a8\u09bf\u09ae\u09be\u09b9","\u099a\u09a4\u09c1\u09f0\u09cd\u09a5 \u09a4\u09bf\u09a8\u09bf\u09ae\u09be\u09b9"]),t.s) +B.ka=A.a(s(["\u0b1c\u0b3e\u0b28\u0b41\u0b06\u0b30\u0b40","\u0b2b\u0b47\u0b2c\u0b43\u0b06\u0b30\u0b40","\u0b2e\u0b3e\u0b30\u0b4d\u0b1a\u0b4d\u0b1a","\u0b05\u0b2a\u0b4d\u0b30\u0b47\u0b32","\u0b2e\u0b07","\u0b1c\u0b41\u0b28","\u0b1c\u0b41\u0b32\u0b3e\u0b07","\u0b05\u0b17\u0b37\u0b4d\u0b1f","\u0b38\u0b47\u0b2a\u0b4d\u0b1f\u0b47\u0b2e\u0b4d\u0b2c\u0b30","\u0b05\u0b15\u0b4d\u0b1f\u0b4b\u0b2c\u0b30","\u0b28\u0b2d\u0b47\u0b2e\u0b4d\u0b2c\u0b30","\u0b21\u0b3f\u0b38\u0b47\u0b2e\u0b4d\u0b2c\u0b30"]),t.s) +B.A1=A.a(s(["\u0ab0\u0ab5\u0abf","\u0ab8\u0acb\u0aae","\u0aae\u0a82\u0a97\u0ab3","\u0aac\u0ac1\u0aa7","\u0a97\u0ac1\u0ab0\u0ac1","\u0ab6\u0ac1\u0a95\u0acd\u0ab0","\u0ab6\u0aa8\u0abf"]),t.s) +B.abI=A.a(s(["EEEE, d. MMMM y","d. MMMM y","d. MMM y","dd.MM.yy"]),t.s) +B.abJ=A.a(s(["\u0e81\u0ec8\u0ead\u0e99\u0e84\u0ea3\u0eb4\u0e94\u0eaa\u0eb1\u0e81\u0e81\u0eb0\u0ea5\u0eb2\u0e94","\u0e84\u0ea3\u0eb4\u0e94\u0eaa\u0eb1\u0e81\u0e81\u0eb0\u0ea5\u0eb2\u0e94"]),t.s) +B.A2=A.a(s([0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0]),t.up) +B.abK=A.a(s(["\u0633\u0647\u200c\u0645\u0627\u0647\u0647\u0654 \u0627\u0648\u0644","\u0633\u0647\u200c\u0645\u0627\u0647\u0647\u0654 \u062f\u0648\u0645","\u0633\u0647\u200c\u0645\u0627\u0647\u0647\u0654 \u0633\u0648\u0645","\u0633\u0647\u200c\u0645\u0627\u0647\u0647\u0654 \u0686\u0647\u0627\u0631\u0645"]),t.s) +B.abM=A.a(s(["\u10eb\u10d5\u10d4\u10da\u10d8 \u10ec\u10d4\u10da\u10d7\u10d0\u10e6\u10e0\u10d8\u10ea\u10ee\u10d5\u10d8\u10d7","\u10d0\u10ee\u10d0\u10da\u10d8 \u10ec\u10d4\u10da\u10d7\u10d0\u10e6\u10e0\u10d8\u10ea\u10ee\u10d5\u10d8\u10d7"]),t.s) +B.A3=A.a(s(["U","O","M","A","M","E","U","A","I","U","A","A"]),t.s) +B.A4=A.a(s(["\u17a2\u17b6\u1791\u17b7\u178f\u17d2\u1799","\u1785\u1793\u17d2\u1791","\u17a2\u1784\u17d2\u1782\u17b6\u179a","\u1796\u17bb\u1792","\u1796\u17d2\u179a\u17a0","\u179f\u17bb\u1780\u17d2\u179a","\u179f\u17c5\u179a\u17cd"]),t.s) +B.A5=A.a(s(["Jan.","Feb.","M\xe4rz","Apr.","Mai","Juni","Juli","Aug.","Sept.","Okt.","Nov.","Dez."]),t.s) +B.abN=A.a(s(["\u7b2c\u4e00\u5b63\u5ea6","\u7b2c\u4e8c\u5b63\u5ea6","\u7b2c\u4e09\u5b63\u5ea6","\u7b2c\u56db\u5b63\u5ea6"]),t.s) +B.abO=A.a(s(["sije\u010danj","velja\u010da","o\u017eujak","travanj","svibanj","lipanj","srpanj","kolovoz","rujan","listopad","studeni","prosinac"]),t.s) +B.A6=A.a(s(["janu\xe1r","febru\xe1r","m\xe1rcius","\xe1prilis","m\xe1jus","j\xfanius","j\xfalius","augusztus","szeptember","okt\xf3ber","november","december"]),t.s) +B.abP=A.a(s(["\u0434\u043e \u043d. \u0435.","\u043d. \u0435."]),t.s) +B.A7=A.a(s(["\u09a4\u09cd\u09b0\u09c8\u09ae\u09be\u09b8\u09bf\u0995","\u09a6\u09cd\u09ac\u09bf\u09a4\u09c0\u09af\u09bc \u09a4\u09cd\u09b0\u09c8\u09ae\u09be\u09b8\u09bf\u0995","\u09a4\u09c3\u09a4\u09c0\u09af\u09bc \u09a4\u09cd\u09b0\u09c8\u09ae\u09be\u09b8\u09bf\u0995","\u099a\u09a4\u09c1\u09b0\u09cd\u09a5 \u09a4\u09cd\u09b0\u09c8\u09ae\u09be\u09b8\u09bf\u0995"]),t.s) +B.abQ=A.a(s(["\u0411\u0456\u0437\u0434\u0456\u04a3 \u0437\u0430\u043c\u0430\u043d\u044b\u043c\u044b\u0437\u0493\u0430 \u0434\u0435\u0439\u0456\u043d","\u0431\u0456\u0437\u0434\u0456\u04a3 \u0437\u0430\u043c\u0430\u043d\u044b\u043c\u044b\u0437"]),t.s) +B.abR=A.a(s(["\u0642\u0628\u0644 \u0627\u0644\u0645\u064a\u0644\u0627\u062f","\u0645\u064a\u0644\u0627\u062f\u064a"]),t.s) +B.abS=A.a(s(["xaneiro","febreiro","marzo","abril","maio","xu\xf1o","xullo","agosto","setembro","outubro","novembro","decembro"]),t.s) +B.A8=A.a(s(["\u0436\u0435\u043a.","\u0434\u04af\u0439.","\u0448\u0435\u0439\u0448.","\u0448\u0430\u0440\u0448.","\u0431\u0435\u0439\u0448.","\u0436\u0443\u043c\u0430","\u0438\u0448\u043c."]),t.s) +B.abT=A.a(s(["\u0421","\u041b","\u0411","\u041a","\u0422","\u0427","\u041b","\u0421","\u0412","\u0416","\u041b","\u0413"]),t.s) +B.abU=A.a(s(["{1} \u1793\u17c5\u200b\u1798\u17c9\u17c4\u1784 {0}","{1} \u1793\u17c5\u200b\u1798\u17c9\u17c4\u1784 {0}","{1}, {0}","{1}, {0}"]),t.s) +B.A9=A.a(s(["Ch\u1ee7 Nh\u1eadt","Th\u1ee9 Hai","Th\u1ee9 Ba","Th\u1ee9 T\u01b0","Th\u1ee9 N\u0103m","Th\u1ee9 S\xe1u","Th\u1ee9 B\u1ea3y"]),t.s) +B.abV=A.a(s(["\u099c\u09be\u09a8\u09c1","\u09ab\u09c7\u09ac","\u09ae\u09be\u09b0\u09cd\u099a","\u098f\u09aa\u09cd\u09b0\u09bf\u09b2","\u09ae\u09c7","\u099c\u09c1\u09a8","\u099c\u09c1\u09b2\u09be\u0987","\u0986\u0997\u09b8\u09cd\u099f","\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0","\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0","\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0","\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"]),t.s) +B.Aa=A.a(s(["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"]),t.s) +B.Ab=A.a(s(["\u0da2\u0db1\u0dc0\u0dcf\u0dbb\u0dd2","\u0db4\u0dd9\u0db6\u0dbb\u0dc0\u0dcf\u0dbb\u0dd2","\u0db8\u0dcf\u0dbb\u0dca\u0dad\u0dd4","\u0d85\u0db4\u0dca\u200d\u0dbb\u0dda\u0dbd\u0dca","\u0db8\u0dd0\u0dba\u0dd2","\u0da2\u0dd6\u0db1\u0dd2","\u0da2\u0dd6\u0dbd\u0dd2","\u0d85\u0d9c\u0ddd\u0dc3\u0dca\u0dad\u0dd4","\u0dc3\u0dd0\u0db4\u0dca\u0dad\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca","\u0d94\u0d9a\u0dca\u0dad\u0ddd\u0db6\u0dbb\u0dca","\u0db1\u0ddc\u0dc0\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca","\u0daf\u0dd9\u0dc3\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca"]),t.s) +B.abW=A.a(s(["\u0ca4\u0ccd\u0cb0\u0cc8 1","\u0ca4\u0ccd\u0cb0\u0cc8 2","\u0ca4\u0ccd\u0cb0\u0cc8 3","\u0ca4\u0ccd\u0cb0\u0cc8 4"]),t.s) +B.Ac=A.a(s(["\u0ea1.\u0e81.","\u0e81.\u0e9e.","\u0ea1.\u0e99.","\u0ea1.\u0eaa.","\u0e9e.\u0e9e.","\u0ea1\u0eb4.\u0e96.","\u0e81.\u0ea5.","\u0eaa.\u0eab.","\u0e81.\u0e8d.","\u0e95.\u0ea5.","\u0e9e.\u0e88.","\u0e97.\u0ea7."]),t.s) +B.Ad=A.a(s(["j","sh","m","p","m","q","k","g","sh","t","n","dh"]),t.s) +B.dT=A.a(s(["dom","lun","mar","mi\xe9","jue","vie","s\xe1b"]),t.s) +B.Ae=A.a(s(["I","A","A","A","O","O","L"]),t.s) +B.abX=A.a(s(["\u091c\u0928","\u092b\u0947\u0947\u092c","\u092e\u093e\u0930\u094d\u091a","\u0905\u092a\u094d\u0930","\u092e\u0947","\u091c\u0941\u0928","\u091c\u0941\u0932","\u0905\u0917","\u0938\u0947\u092a","\u0905\u0915\u094d\u091f\u094b","\u0928\u094b\u092d\u0947","\u0921\u093f\u0938\u0947"]),t.s) +B.Af=A.a(s(["\u053f","\u0535","\u0535","\u0549","\u0540","\u0548","\u0547"]),t.s) +B.abY=A.a(s(["{1} \u0a8f {0} \u0ab5\u0abe\u0a97\u0acd\u0aaf\u0ac7","{1} \u0a8f {0} \u0ab5\u0abe\u0a97\u0acd\u0aaf\u0ac7","{1} {0}","{1} {0}"]),t.s) +B.abZ=A.a(s(["\u092a\u094d\u0930\u0925\u092e \u0924\u093f\u092e\u093e\u0939\u0940","\u0926\u094d\u0935\u093f\u0924\u0940\u092f \u0924\u093f\u092e\u093e\u0939\u0940","\u0924\u0943\u0924\u0940\u092f \u0924\u093f\u092e\u093e\u0939\u0940","\u091a\u0924\u0941\u0930\u094d\u0925 \u0924\u093f\u092e\u093e\u0939\u0940"]),t.s) +B.ac_=A.a(s(["tammikuuta","helmikuuta","maaliskuuta","huhtikuuta","toukokuuta","kes\xe4kuuta","hein\xe4kuuta","elokuuta","syyskuuta","lokakuuta","marraskuuta","joulukuuta"]),t.s) +B.Ag=A.a(s(["p. n. e.","n. e."]),t.s) +B.Ah=A.a(s(["\u0b9c\u0ba9\u0bb5\u0bb0\u0bbf","\u0baa\u0bbf\u0baa\u0bcd\u0bb0\u0bb5\u0bb0\u0bbf","\u0bae\u0bbe\u0bb0\u0bcd\u0b9a\u0bcd","\u0b8f\u0baa\u0bcd\u0bb0\u0bb2\u0bcd","\u0bae\u0bc7","\u0b9c\u0bc2\u0ba9\u0bcd","\u0b9c\u0bc2\u0bb2\u0bc8","\u0b86\u0b95\u0bb8\u0bcd\u0b9f\u0bcd","\u0b9a\u0bc6\u0baa\u0bcd\u0b9f\u0bae\u0bcd\u0baa\u0bb0\u0bcd","\u0b85\u0b95\u0bcd\u0b9f\u0bcb\u0baa\u0bb0\u0bcd","\u0ba8\u0bb5\u0bae\u0bcd\u0baa\u0bb0\u0bcd","\u0b9f\u0bbf\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd"]),t.s) +B.ac0=A.a(s(["N","P","W","\u015a","C","P","S"]),t.s) +B.Ai=A.a(s(["{1} 'nang' {0}","{1} 'nang' {0}","{1}, {0}","{1}, {0}"]),t.s) +B.ac1=A.a(s(["EEEE, d MMMM y '\u0433'.","d MMMM y '\u0433'.","d MMM y '\u0433'.","dd.MM.y"]),t.s) +B.Aj=A.a(s(["\u0d1c","\u0d2b\u0d46","\u0d2e\u0d3e","\u0d0f","\u0d2e\u0d46","\u0d1c\u0d42\u0d7a","\u0d1c\u0d42","\u0d13","\u0d38\u0d46","\u0d12","\u0d28","\u0d21\u0d3f"]),t.s) +B.ac2=A.a(s(["\u0ec4\u0e95\u0ea3\u0ea1\u0eb2\u0e94 1","\u0ec4\u0e95\u0ea3\u0ea1\u0eb2\u0e94 2","\u0ec4\u0e95\u0ea3\u0ea1\u0eb2\u0e94 3","\u0ec4\u0e95\u0ea3\u0ea1\u0eb2\u0e94 4"]),t.s) +B.ac3=A.a(s(["EEEE, d MMMM, y","d MMMM, y","d MMM, y","dd/MM/y"]),t.s) +B.kb=A.a(s(["\u65e5","\u6708","\u706b","\u6c34","\u6728","\u91d1","\u571f"]),t.s) +B.ac4=A.a(s(["\u05dc\u05e4\u05e0\u05d4\u05f4\u05e6","\u05d0\u05d7\u05d4\u05f4\u05e6"]),t.s) +B.ac5=A.a(s(["\u0c15\u0c4d\u0c30\u0c40\u0c38\u0c4d\u0c24\u0c41 \u0c2a\u0c42\u0c30\u0c4d\u0c35\u0c02","\u0c15\u0c4d\u0c30\u0c40\u0c38\u0c4d\u0c24\u0c41 \u0c36\u0c15\u0c02"]),t.s) +B.ac6=A.a(s(["\u0399\u03b1\u03bd\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2","\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2","\u039c\u03ac\u03c1\u03c4\u03b9\u03bf\u03c2","\u0391\u03c0\u03c1\u03af\u03bb\u03b9\u03bf\u03c2","\u039c\u03ac\u03b9\u03bf\u03c2","\u0399\u03bf\u03cd\u03bd\u03b9\u03bf\u03c2","\u0399\u03bf\u03cd\u03bb\u03b9\u03bf\u03c2","\u0391\u03cd\u03b3\u03bf\u03c5\u03c3\u03c4\u03bf\u03c2","\u03a3\u03b5\u03c0\u03c4\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2","\u039f\u03ba\u03c4\u03ce\u03b2\u03c1\u03b9\u03bf\u03c2","\u039d\u03bf\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2","\u0394\u03b5\u03ba\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2"]),t.s) +B.P=A.a(s(["J","F","M","A","M","J","J","A","S","O","N","D"]),t.s) +B.ac7=A.a(s(["\u043f\u0440\u0435 \u043d\u043e\u0432\u0435 \u0435\u0440\u0435","\u043d\u043e\u0432\u0435 \u0435\u0440\u0435"]),t.s) +B.ac9=A.a(s(["ikota yesi-1","ikota yesi-2","ikota yesi-3","ikota yesi-4"]),t.s) +B.ac8=A.a(s(["\u0d1e\u0d3e","\u0d24\u0d3f","\u0d1a\u0d4a","\u0d2c\u0d41","\u0d35\u0d4d\u0d2f\u0d3e","\u0d35\u0d46","\u0d36"]),t.s) +B.fu=A.a(s(["{1} {0}","{1} {0}","{1}, {0}","{1}, {0}"]),t.s) +B.Ak=A.a(s(["\u65e5\u66dc\u65e5","\u6708\u66dc\u65e5","\u706b\u66dc\u65e5","\u6c34\u66dc\u65e5","\u6728\u66dc\u65e5","\u91d1\u66dc\u65e5","\u571f\u66dc\u65e5"]),t.s) +B.aca=A.a(s(["\u062c\u0646\u0648\u0631\u064a","\u0641\u0628\u0631\u0648\u0631\u064a","\u0645\u0627\u0631\u0686","\u0627\u067e\u0631\u06cc\u0644","\u0645\u06cd","\u062c\u0648\u0646","\u062c\u0648\u0644\u0627\u06cc","\u0627\u06ab\u0633\u062a","\u0633\u067e\u062a\u0645\u0628\u0631","\u0627\u06a9\u062a\u0648\u0628\u0631","\u0646\u0648\u0645\u0628\u0631","\u062f\u0633\u0645\u0628\u0631"]),t.s) +B.nU=A.a(s(["A::href","AREA::href","BLOCKQUOTE::cite","BODY::background","COMMAND::icon","DEL::cite","FORM::action","IMG::src","INPUT::src","INS::cite","Q::cite","VIDEO::poster"]),t.s) +B.et=A.a(s(["K1","K2","K3","K4"]),t.s) +B.acb=A.a(s(["ap.","ip."]),t.s) +B.acc=A.a(s(["Ion","Chwef","Maw","Ebr","Mai","Meh","Gorff","Awst","Medi","Hyd","Tach","Rhag"]),t.s) +B.Al=A.a(s(["CN","Th 2","Th 3","Th 4","Th 5","Th 6","Th 7"]),t.s) +B.acd=A.a(s(["{1}, 'a' 'les' {0}","{1}, 'a' 'les' {0}","{1}, {0}","{1} {0}"]),t.s) +B.ace=A.a(s(["KK","BK"]),t.s) +B.Am=A.a(s(["1-\u0439 \u043a\u0432.","2-\u0439 \u043a\u0432.","3-\u0439 \u043a\u0432.","4-\u0439 \u043a\u0432."]),t.s) +B.acf=A.a(s(["\u0c24\u0c4d\u0c30\u0c481","\u0c24\u0c4d\u0c30\u0c482","\u0c24\u0c4d\u0c30\u0c483","\u0c24\u0c4d\u0c30\u0c484"]),t.s) +B.acg=A.a(s(["y MMMM d, EEEE","d MMMM y","d MMM y","dd/MM/y"]),t.s) +B.An=A.a(s(["\u049b\u0430\u04a3.","\u0430\u049b\u043f.","\u043d\u0430\u0443.","\u0441\u04d9\u0443.","\u043c\u0430\u043c.","\u043c\u0430\u0443.","\u0448\u0456\u043b.","\u0442\u0430\u043c.","\u049b\u044b\u0440.","\u049b\u0430\u0437.","\u049b\u0430\u0440.","\u0436\u0435\u043b."]),t.s) +B.ach=A.a(s(["KV1","KV2","KV3","KV4"]),t.s) +B.aci=A.a(s(["\u0caa\u0cc2\u0cb0\u0ccd\u0cb5\u0cbe\u0cb9\u0ccd\u0ca8","\u0c85\u0caa\u0cb0\u0cbe\u0cb9\u0ccd\u0ca8"]),t.s) +B.Ao=A.a(s(["\u10d9\u10d5\u10d8\u10e0\u10d0","\u10dd\u10e0\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8","\u10e1\u10d0\u10db\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8","\u10dd\u10d7\u10ee\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8","\u10ee\u10e3\u10d7\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8","\u10de\u10d0\u10e0\u10d0\u10e1\u10d9\u10d4\u10d5\u10d8","\u10e8\u10d0\u10d1\u10d0\u10d7\u10d8"]),t.s) +B.acj=A.a(s(["EEEE, MMMM d, y","MMMM d, y","MMM d, y","y-MM-dd"]),t.s) +B.ack=A.a(s(["y MMMM d, EEEE","y MMMM d","y MMM d","yy/M/d"]),t.s) +B.acl=A.a(s(["\u043c\u0430\u043d\u0430\u0439 \u044d\u0440\u0438\u043d\u0438\u0439 \u04e9\u043c\u043d\u04e9\u0445","\u043c\u0430\u043d\u0430\u0439 \u044d\u0440\u0438\u043d\u0438\u0439"]),t.s) +B.acw=A.a(s(["EEEE, d MMMM y","d MMMM y","d MMM y","dd.MM.y"]),t.s) +B.Ap=A.a(s(["7","1","2","3","4","5","6"]),t.s) +B.acx=A.a(s(["\u0b95\u0bbe\u0bb2\u0bbe.1","\u0b95\u0bbe\u0bb2\u0bbe.2","\u0b95\u0bbe\u0bb2\u0bbe.3","\u0b95\u0bbe\u0bb2\u0bbe.4"]),t.s) +B.acy=A.a(s(["de gen.","de febr.","de mar\xe7","d\u2019abr.","de maig","de juny","de jul.","d\u2019ag.","de set.","d\u2019oct.","de nov.","de des."]),t.s) +B.acz=A.a(s(["\u0441","\u043b","\u0431","\u043a","\u0442","\u0447","\u043b","\u0441","\u0432","\u0436","\u043b","\u0433"]),t.s) +B.acA=A.a(s(["y 'm'. MMMM d 'd'., EEEE","y 'm'. MMMM d 'd'.","y-MM-dd","y-MM-dd"]),t.s) +B.co=A.a(s([1364240372,2119394625,449029143,982933031,1003187115,535905693,2896910586,1267925987,542505520,2918608246,2291234508,4112862210,1341970405,3319253802,645940277,3046089570,3729349297,627514298,1167593194,1575076094,3271718191,2165502028,2376308550,1808202195,65494927,362126482,3219880557,2514114898,3559752638,1490231668,1227450848,2386872521,1969916354,4101536142,2573942360,668823993,3199619041,4028083592,3378949152,2108963534,1662536415,3850514714,2539664209,1648721747,2984277860,3146034795,4263288961,4187237128,1884842056,2400845125,2491903198,1387788411,2871251827,1927414347,3814166303,1714072405,2986813675,788775605,2258271173,3550808119,821200680,598910399,45771267,3982262806,2318081231,2811409529,4092654087,1319232105,1707996378,114671109,3508494900,3297443494,882725678,2728416755,87220618,2759191542,188345475,1084944224,1577492337,3176206446,1056541217,2520581853,3719169342,1296481766,2444594516,1896177092,74437638,1627329872,421854104,3600279997,2311865152,1735892697,2965193448,126389129,3879230233,2044456648,2705787516,2095648578,4173930116,0,159614592,843640107,514617361,1817080410,4261150478,257308805,1025430958,908540205,174381327,1747035740,2614187099,607792694,212952842,2467293015,3033700078,463376795,2152711616,1638015196,1516850039,471210514,3792353939,3236244128,1011081250,303896347,235605257,4071475083,767142070,348694814,1468340721,2940995445,4005289369,2751291519,4154402305,1555887474,1153776486,1530167035,2339776835,3420243491,3060333805,3093557732,3620396081,1108378979,322970263,2216694214,2239571018,3539484091,2920362745,3345850665,491466654,3706925234,233591430,2010178497,728503987,2845423984,301615252,1193436393,2831453436,2686074864,1457007741,586125363,2277985865,3653357880,2365498058,2553678804,2798617077,2770919034,3659959991,1067761581,753179962,1343066744,1788595295,1415726718,4139914125,2431170776,777975609,2197139395,2680062045,1769771984,1873358293,3484619301,3359349164,279411992,3899548572,3682319163,3439949862,1861490777,3959535514,2208864847,3865407125,2860443391,554225596,4024887317,3134823399,1255028335,3939764639,701922480,833598116,707863359,3325072549,901801634,1949809742,4238789250,3769684112,857069735,4048197636,1106762476,2131644621,389019281,1989006925,1129165039,3428076970,3839820950,2665723345,1276872810,3250069292,1182749029,2634345054,22885772,4201870471,4214112523,3009027431,2454901467,3912455696,1829980118,2592891351,930745505,1502483704,3951639571,3471714217,3073755489,3790464284,2050797895,2623135698,1430221810,410635796,1941911495,1407897079,1599843069,3742658365,2022103876,3397514159,3107898472,942421028,3261022371,376619805,3154912738,680216892,4282488077,963707304,148812556,3634160820,1687208278,2069988555,3580933682,1215585388,3494008760]),t.t) +B.acB=A.a(s(["\u0a88.\u0ab8.\u0aaa\u0ac2\u0ab0\u0acd\u0ab5\u0ac7","\u0a88.\u0ab8."]),t.s) +B.acC=A.a(s(["tammikuu","helmikuu","maaliskuu","huhtikuu","toukokuu","kes\xe4kuu","hein\xe4kuu","elokuu","syyskuu","lokakuu","marraskuu","joulukuu"]),t.s) +B.ai7=new A.di("en",null,"US") +B.acD=A.a(s([B.ai7]),t.ss) +B.acE=A.a(s(["\u0d9a\u0dca\u200d\u0dbb\u0dd2\u0dc3\u0dca\u0dad\u0dd4 \u0db4\u0dd6\u0dbb\u0dca\u0dc0","\u0d9a\u0dca\u200d\u0dbb\u0dd2\u0dc3\u0dca\u0dad\u0dd4 \u0dc0\u0dbb\u0dca\u0dc2"]),t.s) +B.acF=A.a(s(["EEEE 'den' d. MMMM y","d. MMMM y","d. MMM y","dd.MM.y"]),t.s) +B.acG=A.a(s(["K.a.","K.o."]),t.s) +B.fv=A.a(s([0,0,24576,1023,65534,34815,65534,18431]),t.t) +B.Aq=A.a(s(["\u0a10\u0a24\u0a35\u0a3e\u0a30","\u0a38\u0a4b\u0a2e\u0a35\u0a3e\u0a30","\u0a2e\u0a70\u0a17\u0a32\u0a35\u0a3e\u0a30","\u0a2c\u0a41\u0a71\u0a27\u0a35\u0a3e\u0a30","\u0a35\u0a40\u0a30\u0a35\u0a3e\u0a30","\u0a38\u0a3c\u0a41\u0a71\u0a15\u0a30\u0a35\u0a3e\u0a30","\u0a38\u0a3c\u0a28\u0a3f\u0a71\u0a1a\u0a30\u0a35\u0a3e\u0a30"]),t.s) +B.Ar=A.a(s(["EEEE, d MMMM y","d MMMM y","d MMM y","dd/MM/y"]),t.s) +B.acH=A.a(s(["HEAD","AREA","BASE","BASEFONT","BR","COL","COLGROUP","EMBED","FRAME","FRAMESET","HR","IMAGE","IMG","INPUT","ISINDEX","LINK","META","PARAM","SOURCE","STYLE","TITLE","WBR"]),t.s) +B.As=A.a(s(["Sunntig","M\xe4\xe4ntig","Ziischtig","Mittwuch","Dunschtig","Friitig","Samschtig"]),t.s) +B.cp=A.a(s([2774754246,2222750968,2574743534,2373680118,234025727,3177933782,2976870366,1422247313,1345335392,50397442,2842126286,2099981142,436141799,1658312629,3870010189,2591454956,1170918031,2642575903,1086966153,2273148410,368769775,3948501426,3376891790,200339707,3970805057,1742001331,4255294047,3937382213,3214711843,4154762323,2524082916,1539358875,3266819957,486407649,2928907069,1780885068,1513502316,1094664062,49805301,1338821763,1546925160,4104496465,887481809,150073849,2473685474,1943591083,1395732834,1058346282,201589768,1388824469,1696801606,1589887901,672667696,2711000631,251987210,3046808111,151455502,907153956,2608889883,1038279391,652995533,1764173646,3451040383,2675275242,453576978,2659418909,1949051992,773462580,756751158,2993581788,3998898868,4221608027,4132590244,1295727478,1641469623,3467883389,2066295122,1055122397,1898917726,2542044179,4115878822,1758581177,0,753790401,1612718144,536673507,3367088505,3982187446,3194645204,1187761037,3653156455,1262041458,3729410708,3561770136,3898103984,1255133061,1808847035,720367557,3853167183,385612781,3309519750,3612167578,1429418854,2491778321,3477423498,284817897,100794884,2172616702,4031795360,1144798328,3131023141,3819481163,4082192802,4272137053,3225436288,2324664069,2912064063,3164445985,1211644016,83228145,3753688163,3249976951,1977277103,1663115586,806359072,452984805,250868733,1842533055,1288555905,336333848,890442534,804056259,3781124030,2727843637,3427026056,957814574,1472513171,4071073621,2189328124,1195195770,2892260552,3881655738,723065138,2507371494,2690670784,2558624025,3511635870,2145180835,1713513028,2116692564,2878378043,2206763019,3393603212,703524551,3552098411,1007948840,2044649127,3797835452,487262998,1994120109,1004593371,1446130276,1312438900,503974420,3679013266,168166924,1814307912,3831258296,1573044895,1859376061,4021070915,2791465668,2828112185,2761266481,937747667,2339994098,854058965,1137232011,1496790894,3077402074,2358086913,1691735473,3528347292,3769215305,3027004632,4199962284,133494003,636152527,2942657994,2390391540,3920539207,403179536,3585784431,2289596656,1864705354,1915629148,605822008,4054230615,3350508659,1371981463,602466507,2094914977,2624877800,555687742,3712699286,3703422305,2257292045,2240449039,2423288032,1111375484,3300242801,2858837708,3628615824,84083462,32962295,302911004,2741068226,1597322602,4183250862,3501832553,2441512471,1489093017,656219450,3114180135,954327513,335083755,3013122091,856756514,3144247762,1893325225,2307821063,2811532339,3063651117,572399164,2458355477,552200649,1238290055,4283782570,2015897680,2061492133,2408352771,4171342169,2156497161,386731290,3669999461,837215959,3326231172,3093850320,3275833730,2962856233,1999449434,286199582,3417354363,4233385128,3602627437,974525996]),t.t) +B.acI=A.a(s(["EEEE, d 'de' MMMM 'de' y","d 'de' MMMM 'de' y","d 'de' MMM 'de' y","dd/MM/yy"]),t.s) +B.acJ=A.a(s(["pre nove ere","nove ere"]),t.s) +B.fw=A.a(s(["v. Chr.","n. Chr."]),t.s) +B.acK=A.a(s(["\u0908\u0938\u0935\u0940\u0938\u0928\u092a\u0942\u0930\u094d\u0935","\u0908\u0938\u0935\u0940\u0938\u0928"]),t.s) +B.acL=A.a(s(["\u0441\u0456\u0447\u043d\u044f","\u043b\u044e\u0442\u043e\u0433\u043e","\u0431\u0435\u0440\u0435\u0437\u043d\u044f","\u043a\u0432\u0456\u0442\u043d\u044f","\u0442\u0440\u0430\u0432\u043d\u044f","\u0447\u0435\u0440\u0432\u043d\u044f","\u043b\u0438\u043f\u043d\u044f","\u0441\u0435\u0440\u043f\u043d\u044f","\u0432\u0435\u0440\u0435\u0441\u043d\u044f","\u0436\u043e\u0432\u0442\u043d\u044f","\u043b\u0438\u0441\u0442\u043e\u043f\u0430\u0434\u0430","\u0433\u0440\u0443\u0434\u043d\u044f"]),t.s) +B.At=A.a(s([0,0,26624,1023,65534,2047,65534,2047]),t.t) +B.acM=A.a(s(["\u041c\u042d\u04e8","\u041c\u042d"]),t.s) +B.acO=A.a(s(["1\u0ca8\u0cc7 \u0ca4\u0ccd\u0cb0\u0cc8\u0cae\u0cbe\u0cb8\u0cbf\u0c95","2\u0ca8\u0cc7 \u0ca4\u0ccd\u0cb0\u0cc8\u0cae\u0cbe\u0cb8\u0cbf\u0c95","3\u0ca8\u0cc7 \u0ca4\u0ccd\u0cb0\u0cc8\u0cae\u0cbe\u0cb8\u0cbf\u0c95","4\u0ca8\u0cc7 \u0ca4\u0ccd\u0cb0\u0cc8\u0cae\u0cbe\u0cb8\u0cbf\u0c95"]),t.s) +B.acN=A.a(s(["EEEE, MMMM d, y","MMMM d, y","MMM d, y","d/M/yy"]),t.s) +B.acP=A.a(s(["\u044f\u043d\u0432.","\u0444\u0435\u0432.","\u043c\u0430\u0440.","\u0430\u043f\u0440.","\u043c\u0430\u0439","\u0438\u044e\u043d.","\u0438\u044e\u043b.","\u0430\u0432\u0433.","\u0441\u0435\u043d.","\u043e\u043a\u0442.","\u043d\u043e\u044f.","\u0434\u0435\u043a."]),t.s) +B.Au=A.a(s(["I","F","M","A","M","I","I","A","S","O","N","D"]),t.s) +B.acQ=A.a(s(["EEEE, d MMMM y","d MMMM y","d MMM y","d.M.yy"]),t.s) +B.acR=A.a(s(["1. \u010det.","2. \u010det.","3. \u010det.","4. \u010det."]),t.s) +B.Av=A.a(s(["1er trimestre","2e trimestre","3e trimestre","4e trimestre"]),t.s) +B.aD=A.a(s(["S","M","T","W","T","F","S"]),t.s) +B.Aw=A.a(s(["janv.","f\xe9vr.","mars","avr.","mai","juin","juill.","ao\xfbt","sept.","oct.","nov.","d\xe9c."]),t.s) +B.acS=A.a(s(["e paradites","e pasdites"]),t.s) +B.Ax=A.a(s(["jan","shk","mar","pri","maj","qer","korr","gush","sht","tet","n\xebn","dhj"]),t.s) +B.aBH=new A.rC(0,0) +B.aBM=new A.rC(1,0.05) +B.aBL=new A.rC(3,0.08) +B.aBI=new A.rC(6,0.11) +B.aBJ=new A.rC(8,0.12) +B.aBK=new A.rC(12,0.14) +B.Ay=A.a(s([B.aBH,B.aBM,B.aBL,B.aBI,B.aBJ,B.aBK]),A.ah("H")) +B.acT=A.a(s(["\u1001\u101b\u1005\u103a\u1010\u1031\u102c\u103a \u1019\u1015\u1031\u102b\u103a\u1019\u102e\u1014\u103e\u1005\u103a","\u1001\u101b\u1005\u103a\u1014\u103e\u1005\u103a"]),t.s) +B.acU=A.a(s(["\u0c95\u0ccd\u0cb0\u0cbf\u0cb8\u0ccd\u0ca4 \u0caa\u0cc2\u0cb0\u0ccd\u0cb5","\u0c95\u0ccd\u0cb0\u0cbf\u0cb8\u0ccd\u0ca4 \u0cb6\u0c95"]),t.s) +B.aZ=A.a(s(["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]),t.s) +B.Az=A.a(s(["\u0412","\u041f","\u0412","\u0421","\u0427","\u041f","\u0421"]),t.s) +B.kc=A.a(s(["\u064a\u0648\u0646\u06cd","\u062f\u0648\u0646\u06cd","\u062f\u0631\u06d0\u0646\u06cd","\u0685\u0644\u0631\u0646\u06cd","\u067e\u064a\u0646\u0681\u0646\u06cd","\u062c\u0645\u0639\u0647","\u0627\u0648\u0646\u06cd"]),t.s) +B.acV=A.a(s(["y\u5e74M\u6708d\u65e5EEEE","y\u5e74M\u6708d\u65e5","y/MM/dd","y/MM/dd"]),t.s) +B.acX=A.a(s(["EEEE d MMMM y","d MMMM y","d MMM y","dd-MM-y"]),t.s) +B.nV=A.a(s(["{1} 'kl'. {0}","{1} 'kl'. {0}","{1}, {0}","{1}, {0}"]),t.s) +B.acW=A.a(s(["{1}, '\u0432\u043e' {0}","{1}, '\u0432\u043e' {0}","{1}, '\u0432\u043e' {0}","{1}, '\u0432\u043e' {0}"]),t.s) +B.AA=A.a(s(["\u0b9c","\u0baa\u0bbf","\u0bae\u0bbe","\u0b8f","\u0bae\u0bc7","\u0b9c\u0bc2","\u0b9c\u0bc2","\u0b86","\u0b9a\u0bc6","\u0b85","\u0ba8","\u0b9f\u0bbf"]),t.s) +B.AB=A.a(s(["1-\u0440 \u0441\u0430\u0440","2-\u0440 \u0441\u0430\u0440","3-\u0440 \u0441\u0430\u0440","4-\u0440 \u0441\u0430\u0440","5-\u0440 \u0441\u0430\u0440","6-\u0440 \u0441\u0430\u0440","7-\u0440 \u0441\u0430\u0440","8-\u0440 \u0441\u0430\u0440","9-\u0440 \u0441\u0430\u0440","10-\u0440 \u0441\u0430\u0440","11-\u0440 \u0441\u0430\u0440","12-\u0440 \u0441\u0430\u0440"]),t.s) +B.AC=A.a(s(["\u0432\u0441","\u043f\u043d","\u0432\u0442","\u0441\u0440","\u0447\u0442","\u043f\u0442","\u0441\u0431"]),t.s) +B.AD=A.a(s(["D","L","M","X","J","V","S"]),t.s) +B.acY=A.a(s(["\u0642\u0628\u0644\u200c\u0627\u0632\u0638\u0647\u0631","\u0628\u0639\u062f\u0627\u0632\u0638\u0647\u0631"]),t.s) +B.AE=A.a(s(["s\xf6ndag","m\xe5ndag","tisdag","onsdag","torsdag","fredag","l\xf6rdag"]),t.s) +B.acZ=A.a(s(["\u0441\u0442\u0443","\u043b\u044e\u0442","\u0441\u0430\u043a","\u043a\u0440\u0430","\u043c\u0430\u044f","\u0447\u044d\u0440","\u043b\u0456\u043f","\u0436\u043d\u0456","\u0432\u0435\u0440","\u043a\u0430\u0441","\u043b\u0456\u0441","\u0441\u043d\u0435"]),t.s) +B.ad_=A.a(s(["\u0458\u0430\u043d-\u043c\u0430\u0440","\u0430\u043f\u0440-\u0458\u0443\u043d","\u0458\u0443\u043b-\u0441\u0435\u043f","\u043e\u043a\u0442-\u0434\u0435\u043a"]),t.s) +B.AF=A.a(s(["A","I","S","R","K","J","S"]),t.s) +B.kd=A.a(s(["jan.","fev.","mar.","abr.","mai.","jun.","jul.","ago.","set.","out.","nov.","dez."]),t.s) +B.AG=A.a(s(["\u09a6\u09c7\u0993\u09ac\u09be\u09f0","\u09b8\u09cb\u09ae\u09ac\u09be\u09f0","\u09ae\u0999\u09cd\u0997\u09b2\u09ac\u09be\u09f0","\u09ac\u09c1\u09a7\u09ac\u09be\u09f0","\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09f0","\u09b6\u09c1\u0995\u09cd\u09f0\u09ac\u09be\u09f0","\u09b6\u09a8\u09bf\u09ac\u09be\u09f0"]),t.s) +B.ad0=A.a(s([0,0,32722,12287,65534,34815,65534,18431]),t.t) +B.AH=A.a(s(["\u041d","\u041f","\u0412","\u0421","\u0427","\u041f","\u0421"]),t.s) +B.ad1=A.a(s(["Krisztus el\u0151tt","id\u0151sz\xe1m\xedt\xe1sunk szerint"]),t.s) +B.AI=A.a(s(["\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1\u0a86\u0ab0\u0ac0","\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1\u0a86\u0ab0\u0ac0","\u0aae\u0abe\u0ab0\u0acd\u0a9a","\u0a8f\u0aaa\u0acd\u0ab0\u0abf\u0ab2","\u0aae\u0ac7","\u0a9c\u0ac2\u0aa8","\u0a9c\u0ac1\u0ab2\u0abe\u0a88","\u0a91\u0a97\u0ab8\u0acd\u0a9f","\u0ab8\u0aaa\u0acd\u0a9f\u0ac7\u0aae\u0acd\u0aac\u0ab0","\u0a91\u0a95\u0acd\u0a9f\u0acb\u0aac\u0ab0","\u0aa8\u0ab5\u0ac7\u0aae\u0acd\u0aac\u0ab0","\u0aa1\u0abf\u0ab8\u0ac7\u0aae\u0acd\u0aac\u0ab0"]),t.s) +B.AJ=A.a(s(["\u0d89\u0dbb\u0dd2\u0daf\u0dcf","\u0dc3\u0db3\u0dd4\u0daf\u0dcf","\u0d85\u0d9f\u0dc4","\u0db6\u0daf\u0dcf\u0daf\u0dcf","\u0db6\u0dca\u200d\u0dbb\u0dc4\u0dc3\u0dca","\u0dc3\u0dd2\u0d9a\u0dd4","\u0dc3\u0dd9\u0db1"]),t.s) +B.ad2=A.a(s(["EEEE, d 'de' MMMM 'de' y","d 'de' MMMM 'de' y","dd/MM/y","dd/MM/yy"]),t.s) +B.ad3=A.a(s(["\u0a2a\u0a39\u0a3f\u0a32\u0a40 \u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a40","\u0a26\u0a42\u0a1c\u0a40 \u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a40","\u0a24\u0a40\u0a1c\u0a40 \u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a40","\u0a1a\u0a4c\u0a25\u0a40 \u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a40"]),t.s) +B.ke=A.a(s(["\u062c\u0646\u0648\u0631\u06cc","\u0641\u0631\u0648\u0631\u06cc","\u0645\u0627\u0631\u0686","\u0627\u067e\u0631\u06cc\u0644","\u0645\u0626\u06cc","\u062c\u0648\u0646","\u062c\u0648\u0644\u0627\u0626\u06cc","\u0627\u06af\u0633\u062a","\u0633\u062a\u0645\u0628\u0631","\u0627\u06a9\u062a\u0648\u0628\u0631","\u0646\u0648\u0645\u0628\u0631","\u062f\u0633\u0645\u0628\u0631"]),t.s) +B.ad4=A.a(s(["\u0d15\u0d4d\u0d30\u0d3f.\u0d2e\u0d41.","\u0d0e\u0d21\u0d3f"]),t.s) +B.AK=A.a(s(["\u099c\u09be\u09a8\u09c1","\u09ab\u09c7\u09ac\u09cd\u09f0\u09c1","\u09ae\u09be\u09f0\u09cd\u099a","\u098f\u09aa\u09cd\u09f0\u09bf\u09b2","\u09ae\u09c7\u2019","\u099c\u09c1\u09a8","\u099c\u09c1\u09b2\u09be\u0987","\u0986\u0997","\u099b\u09c7\u09aa\u09cd\u09a4\u09c7","\u0985\u0995\u09cd\u099f\u09cb","\u09a8\u09f1\u09c7","\u09a1\u09bf\u099a\u09c7"]),t.s) +B.ad5=A.a(s(["ennen Kristuksen syntym\xe4\xe4","j\xe4lkeen Kristuksen syntym\xe4n"]),t.s) +B.AL=A.a(s(["\u0416","\u0414","\u0421","\u0421","\u0411","\u0416","\u0421"]),t.s) +B.ad6=A.a(s(["\uae30\uc6d0\uc804","\uc11c\uae30"]),t.s) +B.kf=A.a(s(["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"]),t.s) +B.ad7=A.a(s(["y('e')'ko' MMMM'ren' d('a'), EEEE","y('e')'ko' MMMM'ren' d('a')","y('e')'ko' MMM d('a')","yy/M/d"]),t.s) +B.ad8=A.a(s(["(\uff65o\uff65;)","\u03a3(\u0ca0_\u0ca0)","\u0ca5_\u0ca5","(\u02d8\uff65_\uff65\u02d8)","(\uff1b\uffe3\u0414\uffe3)","(\uff65\u0414\uff65\u3002"]),t.s) +B.AM=A.a(s(["\u044f\u043d\u0443\u0430\u0440\u0438","\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438","\u043c\u0430\u0440\u0442","\u0430\u043f\u0440\u0438\u043b","\u043c\u0430\u0439","\u044e\u043d\u0438","\u044e\u043b\u0438","\u0430\u0432\u0433\u0443\u0441\u0442","\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438","\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438","\u043d\u043e\u0435\u043c\u0432\u0440\u0438","\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438"]),t.s) +B.ad9=A.a(s(["PG","PTG"]),t.s) +B.ada=A.a(s(["\u0b95\u0bbf\u0bb1\u0bbf\u0bb8\u0bcd\u0ba4\u0bc1\u0bb5\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd","\u0b85\u0ba9\u0bcd\u0ba9\u0bcb \u0b9f\u0bcb\u0bae\u0bbf\u0ba9\u0bbf"]),t.s) +B.AN=A.a(s(["\u0ead\u0eb2\u0e97\u0eb4\u0e94","\u0e88\u0eb1\u0e99","\u0ead\u0eb1\u0e87\u0e84\u0eb2\u0e99","\u0e9e\u0eb8\u0e94","\u0e9e\u0eb0\u0eab\u0eb1\u0e94","\u0eaa\u0eb8\u0e81","\u0ec0\u0eaa\u0ebb\u0eb2"]),t.s) +B.adb=A.a(s(["Yanvar","Fevral","Mart","Aprel","May","Iyun","Iyul","Avgust","Sentabr","Oktabr","Noyabr","Dekabr"]),t.s) +B.adc=A.a(s(["H:mm:ss '\u0447'. zzzz","H:mm:ss '\u0447'. z","H:mm:ss '\u0447'.","H:mm '\u0447'."]),t.s) +B.AO=A.a(s([B.dm,B.jk]),t.dP) +B.add=A.a(s(["\u03a41","\u03a42","\u03a43","\u03a44"]),t.s) +B.e5=new A.uy(null,null) +B.ade=A.a(s([B.e5]),t.p) +B.AP=A.a(s(["\u0416","\u0414","\u0428","\u0428","\u0411","\u0416","\u0418"]),t.s) +B.AQ=A.a(s(["jan","feb","mar","apr","maj","jun","jul","aug","sep","okt","nov","dec"]),t.s) +B.aL=A.a(s(["Q1","Q2","Q3","Q4"]),t.s) +B.AR=A.a(s(["\u09a6","\u09b8","\u09ae","\u09ac","\u09ac","\u09b6","\u09b6"]),t.s) +B.cL=A.a(s(["D","L","M","M","J","V","S"]),t.s) +B.lg=new A.f_(0,"defaultReader") +B.oP=new A.f_(1,"continuousVertical") +B.oQ=new A.f_(2,"singleHorizontalLTR") +B.oR=new A.f_(3,"singleHorizontalRTL") +B.oS=new A.f_(4,"continuousHorizontalLTR") +B.oT=new A.f_(5,"continuousHorizontalRTL") +B.oU=new A.f_(6,"singleVertical") +B.nW=A.a(s([B.lg,B.oP,B.oQ,B.oR,B.oS,B.oT,B.oU,B.ia]),A.ah("H")) +B.AS=A.a(s(["\u0c9c\u0ca8\u0cb5\u0cb0\u0cbf","\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cbf","\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd","\u0c8f\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd","\u0cae\u0cc7","\u0c9c\u0cc2\u0ca8\u0ccd","\u0c9c\u0cc1\u0cb2\u0cc8","\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd","\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd","\u0c85\u0c95\u0ccd\u0c9f\u0ccb\u0cac\u0cb0\u0ccd","\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd","\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd"]),t.s) +B.adf=A.a(s(["Kabla ya Kristo","Baada ya Kristo"]),t.s) +B.adg=A.a(s(["\u0907. \u0938. \u092a\u0942.","\u0907. \u0938."]),t.s) +B.adh=A.a(s(["de.","du."]),t.s) +B.adi=A.a(s(["H:mm:ss (zzzz)","H:mm:ss (z)","HH:mm:ss","HH:mm"]),t.s) +B.AT=A.a(s(["\u091c\u0928\u0935\u0930\u0940","\u092b\u093c\u0930\u0935\u0930\u0940","\u092e\u093e\u0930\u094d\u091a","\u0905\u092a\u094d\u0930\u0948\u0932","\u092e\u0908","\u091c\u0942\u0928","\u091c\u0941\u0932\u093e\u0908","\u0905\u0917\u0938\u094d\u0924","\u0938\u093f\u0924\u0902\u092c\u0930","\u0905\u0915\u094d\u0924\u0942\u092c\u0930","\u0928\u0935\u0902\u092c\u0930","\u0926\u093f\u0938\u0902\u092c\u0930"]),t.s) +B.adj=A.a(s(["1-chorak","2-chorak","3-chorak","4-chorak"]),t.s) +B.AU=A.a(s(["\u0458\u0430\u043d.","\u0444\u0435\u0432.","\u043c\u0430\u0440.","\u0430\u043f\u0440.","\u043c\u0430\u0458","\u0458\u0443\u043d.","\u0458\u0443\u043b.","\u0430\u0432\u0433.","\u0441\u0435\u043f\u0442.","\u043e\u043a\u0442.","\u043d\u043e\u0435\u043c.","\u0434\u0435\u043a."]),t.s) +B.AV=A.a(s(["ISonto","UMsombuluko","ULwesibili","ULwesithathu","ULwesine","ULwesihlanu","UMgqibelo"]),t.s) +B.adk=A.a(s(["dop.","odp."]),t.s) +B.adl=A.a(s(["p.n.e.","n.e."]),t.s) +B.kg=A.a(s(["nedjelja","ponedjeljak","utorak","srijeda","\u010detvrtak","petak","subota"]),t.s) +B.adm=A.a(s(["\u062c","\u0641","\u0645","\u0627","\u0645","\u062c","\u062c","\u0627","\u0633","\u0627","\u0646","\u062f"]),t.s) +B.AW=A.a(s(["\u091c\u093e","\u092b\u0947","\u092e\u093e","\u090f","\u092e\u0947","\u091c\u0942","\u091c\u0941","\u0911","\u0938","\u0911","\u0928\u094b","\u0921\u093f"]),t.s) +B.adn=A.a(s(["Domingo","Luns","Martes","M\xe9rcores","Xoves","Venres","S\xe1bado"]),t.s) +B.AX=A.a(s(["1\xba trimestre","2\xba trimestre","3\xba trimestre","4\xba trimestre"]),t.s) +B.ado=A.a(s(["trimestrul I","trimestrul al II-lea","trimestrul al III-lea","trimestrul al IV-lea"]),t.s) +B.AY=A.a(s(["Januar","Februar","M\xe4rz","April","Mai","Juni","Juli","Auguscht","Sept\xe4mber","Oktoober","Nov\xe4mber","Dez\xe4mber"]),t.s) +B.AZ=A.a(s(["Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ogo","Sep","Okt","Nov","Dis"]),t.s) +B.adp=A.a(s(["\u0908\u0938\u093e-\u092a\u0942\u0930\u094d\u0935","\u0908\u0938\u0935\u0940 \u0938\u0928"]),t.s) +B.adq=A.a(s(["{1} 'am' {0}","{1} 'am' {0}","{1} {0}","{1} {0}"]),t.s) +B.adr=A.a(s(["{1} 'om' {0}","{1} 'om' {0}","{1} {0}","{1} {0}"]),t.s) +B.ads=A.a(s(["\u12d3\u1218\u1270 \u12d3\u1208\u121d","\u12d3\u1218\u1270 \u121d\u1215\u1228\u1275"]),t.s) +B.kh=A.a(s(["\u041d\u044f","\u0414\u0430","\u041c\u044f","\u041b\u0445","\u041f\u04af","\u0411\u0430","\u0411\u044f"]),t.s) +B.B_=A.a(s(["\u05d0\u05f3","\u05d1\u05f3","\u05d2\u05f3","\u05d3\u05f3","\u05d4\u05f3","\u05d5\u05f3","\u05e9\u05f3"]),t.s) +B.adt=A.a(s(["\u0a08\u0a38\u0a35\u0a40 \u0a2a\u0a42\u0a30\u0a35","\u0a08\u0a38\u0a35\u0a40 \u0a38\u0a70\u0a28"]),t.s) +B.adu=A.a(s(["\u043f\u0440.\u0425\u0440.","\u0441\u043b.\u0425\u0440."]),t.s) +B.B0=A.a(s(["\u178f\u17d2\u179a\u17b8\u1798\u17b6\u179f\u1791\u17b8 1","\u178f\u17d2\u179a\u17b8\u1798\u17b6\u179f\u1791\u17b8 2","\u178f\u17d2\u179a\u17b8\u1798\u17b6\u179f\u1791\u17b8 3","\u178f\u17d2\u179a\u17b8\u1798\u17b6\u179f\u1791\u17b8 4"]),t.s) +B.ajQ=new A.kE(1,"dateAdded") +B.ajR=new A.kE(2,"unread") +B.ajS=new A.kE(3,"lastRead") +B.B1=A.a(s([B.oq,B.ajQ,B.ajR,B.ajS]),A.ah("H")) +B.adv=A.a(s(["para Krishtit","mbas Krishtit"]),t.s) +B.B2=A.a(s(["\u0c06","\u0c38\u0c4b","\u0c2e","\u0c2c\u0c41","\u0c17\u0c41","\u0c36\u0c41","\u0c36"]),t.s) +B.adw=A.a(s(["S1","S2","S3","S4"]),t.s) +B.adx=A.a(s(["X","F","M","A","M","X","X","A","S","O","N","D"]),t.s) +B.ady=A.a(s(["SA","CH"]),t.s) +B.B3=A.a(s(["\u0c9c","\u0cab\u0cc6","\u0cae\u0cbe","\u0c8f","\u0cae\u0cc7","\u0c9c\u0cc2","\u0c9c\u0cc1","\u0c86","\u0cb8\u0cc6","\u0c85","\u0ca8","\u0ca1\u0cbf"]),t.s) +B.adz=A.a(s(["\u03c0.\u03bc.","\u03bc.\u03bc."]),t.s) +B.adA=A.a(s(["Bh:mm:ss [zzzz]","Bh:mm:ss [z]","Bh:mm:ss","Bh:mm"]),t.s) +B.adB=A.a(s(["y\u5e74M\u6708d\u65e5EEEE","y\u5e74M\u6708d\u65e5","y\u5e74M\u6708d\u65e5","d/M/y"]),t.s) +B.adC=A.a(s(["SM","M"]),t.s) +B.adD=A.a(s(["\u0e95\u0ea11","\u0e95\u0ea12","\u0e95\u0ea13","\u0e95\u0ea14"]),t.s) +B.adE=A.a(s(["1Hh","2Hh","3Hh","4Hh"]),t.s) +B.B4=A.a(s(["\u4e00\u6708","\u4e8c\u6708","\u4e09\u6708","\u56db\u6708","\u4e94\u6708","\u516d\u6708","\u4e03\u6708","\u516b\u6708","\u4e5d\u6708","\u5341\u6708","\u5341\u4e00\u6708","\u5341\u4e8c\u6708"]),t.s) +B.adL=A.a(s(["\u1229\u12651","\u1229\u12652","\u1229\u12653","\u1229\u12654"]),t.s) +B.B5=A.a(s(["diumenge","dilluns","dimarts","dimecres","dijous","divendres","dissabte"]),t.s) +B.adM=A.a(s(["\u03c0\u03c1\u03bf \u03a7\u03c1\u03b9\u03c3\u03c4\u03bf\u03cd","\u03bc\u03b5\u03c4\u03ac \u03a7\u03c1\u03b9\u03c3\u03c4\u03cc\u03bd"]),t.s) +B.d3=A.a(s(["T1","T2","T3","T4"]),t.s) +B.B6=A.a(s(["\u0a1c","\u0a2b\u0a3c","\u0a2e\u0a3e","\u0a05","\u0a2e","\u0a1c\u0a42","\u0a1c\u0a41","\u0a05","\u0a38","\u0a05","\u0a28","\u0a26"]),t.s) +B.adN=A.a(s(["yan","fev","mar","apr","may","iyn","iyl","avg","sen","okt","noy","dek"]),t.s) +B.adO=A.a(s(["TO","TK"]),t.s) +B.aT=new A.Ph(0,"upstream") +B.adP=A.a(s([B.aT,B.t]),A.ah("H")) +B.ab=new A.mr(0,"rtl") +B.j=new A.mr(1,"ltr") +B.B7=A.a(s([B.ab,B.j]),A.ah("H")) +B.Pt=new A.G7(0,"topLeft") +B.Pw=new A.G7(3,"bottomRight") +B.aBB=new A.rz(B.Pt,B.Pw) +B.aBE=new A.rz(B.Pw,B.Pt) +B.Pu=new A.G7(1,"topRight") +B.Pv=new A.G7(2,"bottomLeft") +B.aBC=new A.rz(B.Pu,B.Pv) +B.aBD=new A.rz(B.Pv,B.Pu) +B.adQ=A.a(s([B.aBB,B.aBE,B.aBC,B.aBD]),A.ah("H")) +B.B8=A.a(s(["dom","lun","mar","mer","gio","ven","sab"]),t.s) +B.adR=A.a(s(["h:mm:ss\u202fa zzzz","h:mm:ss\u202fa z","h:mm:ss\u202fa","h:mm\u202fa"]),t.s) +B.adS=A.a(s(["\u0434\u043e \u043d. \u044d.","\u043d. \u044d."]),t.s) +B.B9=A.a(s(["domingo","segunda","ter\xe7a","quarta","quinta","sexta","s\xe1bado"]),t.s) +B.Ba=A.a(s(["T","H","M","H","T","K","H","E","S","L","M","J"]),t.s) +B.Bb=A.a(s(["hh:mm:ss a zzzz","hh:mm:ss a z","hh:mm:ss a","hh:mm a"]),t.s) +B.adT=A.a(s(["\u0996\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09aa\u09c2\u09b0\u09cd\u09ac","\u0996\u09cd\u09b0\u09c0\u09b7\u09cd\u099f\u09be\u09ac\u09cd\u09a6"]),t.s) +B.Bd=A.a(s(["\u17a2","\u1785","\u17a2","\u1796","\u1796","\u179f","\u179f"]),t.s) +B.Bc=A.a(s(["gennaio","febbraio","marzo","aprile","maggio","giugno","luglio","agosto","settembre","ottobre","novembre","dicembre"]),t.s) +B.RL=new A.ta() +B.ic=new A.a8V(1,"page") +B.ll=new A.hQ(B.ak,B.ic) +B.adU=A.a(s([B.RL,B.ll]),A.ah("H")) +B.adV=A.a(s(["prije nove ere","nove ere"]),t.s) +B.Be=A.a(s(["CN","T2","T3","T4","T5","T6","T7"]),t.s) +B.Bf=A.a(s(["GN","FB","M\xc7","AB","MG","JN","JL","AG","ST","OC","NV","DS"]),t.s) +B.b_=A.a(s(["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]),t.s) +B.adW=A.a(s(["\u049a\u0430\u04a3\u0442\u0430\u0440","\u0410\u049b\u043f\u0430\u043d","\u041d\u0430\u0443\u0440\u044b\u0437","\u0421\u04d9\u0443\u0456\u0440","\u041c\u0430\u043c\u044b\u0440","\u041c\u0430\u0443\u0441\u044b\u043c","\u0428\u0456\u043b\u0434\u0435","\u0422\u0430\u043c\u044b\u0437","\u049a\u044b\u0440\u043a\u04af\u0439\u0435\u043a","\u049a\u0430\u0437\u0430\u043d","\u049a\u0430\u0440\u0430\u0448\u0430","\u0416\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d"]),t.s) +B.Bg=A.a(s(["\u06cc","\u062f","\u0633","\u0686","\u067e","\u062c","\u0634"]),t.s) +B.adX=A.a(s(["y, MMMM d, EEEE","y, MMMM d","y, MMM d","d/M/yy"]),t.s) +B.adY=A.a(s(["EEEE, d MMMM, y","d MMMM y","dd-MMM-y","dd/MM/yy"]),t.s) +B.Bh=A.a(s(["\u0c1c\u0c28","\u0c2b\u0c3f\u0c2c\u0c4d\u0c30","\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f","\u0c0f\u0c2a\u0c4d\u0c30\u0c3f","\u0c2e\u0c47","\u0c1c\u0c42\u0c28\u0c4d","\u0c1c\u0c41\u0c32\u0c48","\u0c06\u0c17","\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02","\u0c05\u0c15\u0c4d\u0c1f\u0c4b","\u0c28\u0c35\u0c02","\u0c21\u0c3f\u0c38\u0c46\u0c02"]),t.s) +B.adZ=A.a(s(["antes de Cristo","despois de Cristo"]),t.s) +B.Bi=A.a(s(["Januari","Februari","Machi","Aprili","Mei","Juni","Julai","Agosti","Septemba","Oktoba","Novemba","Desemba"]),t.s) +B.ae_=A.a(s(["I k.","II k.","III k.","IV k."]),t.s) +B.ae0=A.a(s(["x.","f.","m.","a.","m.","x.","x.","a.","s.","o.","n.","d."]),t.s) +B.Bj=A.a(s(["I","II","III","IV","V","VI","VII","VIII","IX","X","XI","XII"]),t.s) +B.ae1=A.a(s(["\u063a.\u0645.","\u063a.\u0648."]),t.s) +B.Bk=A.a(s(["ian.","feb.","mar.","apr.","mai","iun.","iul.","aug.","sept.","oct.","nov.","dec."]),t.s) +B.ae2=A.a(s(["1. kvt.","2. kvt.","3. kvt.","4. kvt."]),t.s) +B.Bl=A.a(s(["\u099c\u09be\u09a8\u09c1\u09f1\u09be\u09f0\u09c0","\u09ab\u09c7\u09ac\u09cd\u09f0\u09c1\u09f1\u09be\u09f0\u09c0","\u09ae\u09be\u09f0\u09cd\u099a","\u098f\u09aa\u09cd\u09f0\u09bf\u09b2","\u09ae\u09c7\u2019","\u099c\u09c1\u09a8","\u099c\u09c1\u09b2\u09be\u0987","\u0986\u0997\u09b7\u09cd\u099f","\u099b\u09c7\u09aa\u09cd\u09a4\u09c7\u09ae\u09cd\u09ac\u09f0","\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09f0","\u09a8\u09f1\u09c7\u09ae\u09cd\u09ac\u09f0","\u09a1\u09bf\u099a\u09c7\u09ae\u09cd\u09ac\u09f0"]),t.s) +B.Bm=A.a(s(["O","\u015e","M","N","M","H","T","A","E","E","K","A"]),t.s) +B.Bn=A.a(s(["\u05d9\u05e0\u05d5\u05d0\u05e8","\u05e4\u05d1\u05e8\u05d5\u05d0\u05e8","\u05de\u05e8\u05e5","\u05d0\u05e4\u05e8\u05d9\u05dc","\u05de\u05d0\u05d9","\u05d9\u05d5\u05e0\u05d9","\u05d9\u05d5\u05dc\u05d9","\u05d0\u05d5\u05d2\u05d5\u05e1\u05d8","\u05e1\u05e4\u05d8\u05de\u05d1\u05e8","\u05d0\u05d5\u05e7\u05d8\u05d5\u05d1\u05e8","\u05e0\u05d5\u05d1\u05de\u05d1\u05e8","\u05d3\u05e6\u05de\u05d1\u05e8"]),t.s) +B.ae3=A.a(s(["\u044f\u043d\u0432.","\u0444\u0435\u0432\u0440.","\u043c\u0430\u0440.","\u0430\u043f\u0440.","\u043c\u0430\u044f","\u0438\u044e\u043d.","\u0438\u044e\u043b.","\u0430\u0432\u0433.","\u0441\u0435\u043d\u0442.","\u043e\u043a\u0442.","\u043d\u043e\u044f\u0431.","\u0434\u0435\u043a."]),t.s) +B.dU=A.a(s(["E","F","M","A","M","J","J","A","S","O","N","D"]),t.s) +B.Bo=A.a(s(["Ahd","Isn","Sel","Rab","Kha","Jum","Sab"]),t.s) +B.ki=A.a(s(["\u042f","\u0424","\u041c","\u0410","\u041c","\u0418","\u0418","\u0410","\u0421","\u041e","\u041d","\u0414"]),t.s) +B.ae4=A.a(s(["I \u0443\u043b\u0438\u0440\u0430\u043b","II \u0443\u043b\u0438\u0440\u0430\u043b","III \u0443\u043b\u0438\u0440\u0430\u043b","IV \u0443\u043b\u0438\u0440\u0430\u043b"]),t.s) +B.ae5=A.a(s(["prie\u0161piet","popiet"]),t.s) +B.ae6=A.a(s(["\u0441\u0442\u0443\u0434\u0437\u0435\u043d\u044f","\u043b\u044e\u0442\u0430\u0433\u0430","\u0441\u0430\u043a\u0430\u0432\u0456\u043a\u0430","\u043a\u0440\u0430\u0441\u0430\u0432\u0456\u043a\u0430","\u043c\u0430\u044f","\u0447\u044d\u0440\u0432\u0435\u043d\u044f","\u043b\u0456\u043f\u0435\u043d\u044f","\u0436\u043d\u0456\u045e\u043d\u044f","\u0432\u0435\u0440\u0430\u0441\u043d\u044f","\u043a\u0430\u0441\u0442\u0440\u044b\u0447\u043d\u0456\u043a\u0430","\u043b\u0456\u0441\u0442\u0430\u043f\u0430\u0434\u0430","\u0441\u043d\u0435\u0436\u043d\u044f"]),t.s) +B.ae7=A.a(s(["\u0406 \u0442\u049b\u0441.","\u0406\u0406 \u0442\u049b\u0441.","\u0406\u0406\u0406 \u0442\u049b\u0441.","IV \u0442\u049b\u0441."]),t.s) +B.Bp=A.a(s(["\u0436\u0435\u043a\u0448\u0435\u043c\u0431\u0438","\u0434\u04af\u0439\u0448\u04e9\u043c\u0431\u04af","\u0448\u0435\u0439\u0448\u0435\u043c\u0431\u0438","\u0448\u0430\u0440\u0448\u0435\u043c\u0431\u0438","\u0431\u0435\u0439\u0448\u0435\u043c\u0431\u0438","\u0436\u0443\u043c\u0430","\u0438\u0448\u0435\u043c\u0431\u0438"]),t.s) +B.ae8=A.a(s(["\u0431\u0438\u0437\u0434\u0438\u043d \u0437\u0430\u043c\u0430\u043d\u0433\u0430 \u0447\u0435\u0439\u0438\u043d","\u0431\u0438\u0437\u0434\u0438\u043d \u0437\u0430\u043c\u0430\u043d"]),t.s) +B.Bq=A.a(s(["Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ago","Sep","Okt","Nov","Des"]),t.s) +B.ae9=A.a(s(["\u0570\u0578\u0582\u0576\u057e\u0561\u0580","\u0583\u0565\u057f\u0580\u057e\u0561\u0580","\u0574\u0561\u0580\u057f","\u0561\u057a\u0580\u056b\u056c","\u0574\u0561\u0575\u056b\u057d","\u0570\u0578\u0582\u0576\u056b\u057d","\u0570\u0578\u0582\u056c\u056b\u057d","\u0585\u0563\u0578\u057d\u057f\u0578\u057d","\u057d\u0565\u057a\u057f\u0565\u0574\u0562\u0565\u0580","\u0570\u0578\u056f\u057f\u0565\u0574\u0562\u0565\u0580","\u0576\u0578\u0575\u0565\u0574\u0562\u0565\u0580","\u0564\u0565\u056f\u057f\u0565\u0574\u0562\u0565\u0580"]),t.s) +B.Br=A.a(s(["\u0a1c\u0a28\u0a35\u0a30\u0a40","\u0a2b\u0a3c\u0a30\u0a35\u0a30\u0a40","\u0a2e\u0a3e\u0a30\u0a1a","\u0a05\u0a2a\u0a4d\u0a30\u0a48\u0a32","\u0a2e\u0a08","\u0a1c\u0a42\u0a28","\u0a1c\u0a41\u0a32\u0a3e\u0a08","\u0a05\u0a17\u0a38\u0a24","\u0a38\u0a24\u0a70\u0a2c\u0a30","\u0a05\u0a15\u0a24\u0a42\u0a2c\u0a30","\u0a28\u0a35\u0a70\u0a2c\u0a30","\u0a26\u0a38\u0a70\u0a2c\u0a30"]),t.s) +B.aea=A.a(s([0,0,32722,12287,65535,34815,65534,18431]),t.t) +B.Bs=A.a(s([0,0,65490,12287,65535,34815,65534,18431]),t.t) +B.aeb=A.a(s(["y '\u043e\u043d\u044b' MMMM'\u044b\u043d' d, EEEE '\u0433\u0430\u0440\u0430\u0433'","y '\u043e\u043d\u044b' MMMM'\u044b\u043d' d","y '\u043e\u043d\u044b' MMM'\u044b\u043d' d","y.MM.dd"]),t.s) +B.Bt=A.a(s(["jan","feb","mar","apr","m\xe1j","j\xfan","j\xfal","aug","sep","okt","nov","dec"]),t.s) +B.aec=A.a(s(["\u0441\u0456\u0447","\u043b\u044e\u0442","\u0431\u0435\u0440","\u043a\u0432\u0456","\u0442\u0440\u0430","\u0447\u0435\u0440","\u043b\u0438\u043f","\u0441\u0435\u0440","\u0432\u0435\u0440","\u0436\u043e\u0432","\u043b\u0438\u0441","\u0433\u0440\u0443"]),t.s) +B.aed=A.a(s(["EEEE, d-MMMM, y","d-MMMM, y","d-MMM, y","dd/MM/yy"]),t.s) +B.Bu=A.a(s(["sekmadienis","pirmadienis","antradienis","tre\u010diadienis","ketvirtadienis","penktadienis","\u0161e\u0161tadienis"]),t.s) +B.aee=A.a(s(["\u041d\u044f\u043c","\u0414\u0430\u0432\u0430\u0430","\u041c\u044f\u0433\u043c\u0430\u0440","\u041b\u0445\u0430\u0433\u0432\u0430","\u041f\u04af\u0440\u044d\u0432","\u0411\u0430\u0430\u0441\u0430\u043d","\u0411\u044f\u043c\u0431\u0430"]),t.s) +B.aef=A.a(s(["\u0431.\u0437.\u0434.","\u0431.\u0437."]),t.s) +B.aeg=A.a(s(["K.a.","Kristo ondoren"]),t.s) +B.Bv=A.a(s(["led","\xfano","b\u0159e","dub","kv\u011b","\u010dvn","\u010dvc","srp","z\xe1\u0159","\u0159\xedj","lis","pro"]),t.s) +B.Bw=A.a(s(["\u7d00\u5143\u524d","\u897f\u66a6"]),t.s) +B.aei=A.a(s(["\u0434\u043e \u0420\u043e\u0436\u0434\u0435\u0441\u0442\u0432\u0430 \u0425\u0440\u0438\u0441\u0442\u043e\u0432\u0430","\u043e\u0442 \u0420\u043e\u0436\u0434\u0435\u0441\u0442\u0432\u0430 \u0425\u0440\u0438\u0441\u0442\u043e\u0432\u0430"]),t.s) +B.aej=A.a(s(["Kuartal ke-1","Kuartal ke-2","Kuartal ke-3","Kuartal ke-4"]),t.s) +B.aek=A.a(s(["{0} 'do' {1}","{0} 'do' {1}","{0}, {1}","{0}, {1}"]),t.s) +B.ael=A.a(s(["1. fj\xf3r\xf0ungur","2. fj\xf3r\xf0ungur","3. fj\xf3r\xf0ungur","4. fj\xf3r\xf0ungur"]),t.s) +B.aem=A.a(s(["\u043f\u0440\u0435\u0434\u0438 \u0425\u0440\u0438\u0441\u0442\u0430","\u0441\u043b\u0435\u0434 \u0425\u0440\u0438\u0441\u0442\u0430"]),t.s) +B.Bx=A.a(s(["\u099c","\u09ab","\u09ae","\u098f","\u09ae","\u099c","\u099c","\u0986","\u099b","\u0985","\u09a8","\u09a1"]),t.s) +B.aen=A.a(s(["\u042f\u043d\u0432","\u0424\u0435\u0432","\u041c\u0430\u0440","\u0410\u043f\u0440","\u041c\u0430\u0439","\u0418\u044e\u043d","\u0418\u044e\u043b","\u0410\u0432\u0433","\u0421\u0435\u043d","\u041e\u043a\u0442","\u041d\u043e\u044f","\u0414\u0435\u043a"]),t.s) +B.aeo=A.a(s(["\u0924\u093f\u0967","\u0924\u093f\u0968","\u0924\u093f\u0969","\u0924\u093f\u096a"]),t.s) +B.By=A.a(s(["\u1015\u1011\u1019 \u101e\u102f\u1036\u1038\u101c\u1015\u1010\u103a","\u1012\u102f\u1010\u102d\u101a \u101e\u102f\u1036\u1038\u101c\u1015\u1010\u103a","\u1010\u1010\u102d\u101a \u101e\u102f\u1036\u1038\u101c\u1015\u1010\u103a","\u1005\u1010\u102f\u1010\u1039\u1011 \u101e\u102f\u1036\u1038\u101c\u1015\u1010\u103a"]),t.s) +B.Bz=A.a(s([0,0,32776,33792,1,10240,0,0]),t.t) +B.aep=A.a(s([47,47,47,47,72,97,122,147]),t.t) +B.bF=A.a(s([82,9,106,213,48,54,165,56,191,64,163,158,129,243,215,251,124,227,57,130,155,47,255,135,52,142,67,68,196,222,233,203,84,123,148,50,166,194,35,61,238,76,149,11,66,250,195,78,8,46,161,102,40,217,36,178,118,91,162,73,109,139,209,37,114,248,246,100,134,104,152,22,212,164,92,204,93,101,182,146,108,112,72,80,253,237,185,218,94,21,70,87,167,141,157,132,144,216,171,0,140,188,211,10,247,228,88,5,184,179,69,6,208,44,30,143,202,63,15,2,193,175,189,3,1,19,138,107,58,145,17,65,79,103,220,234,151,242,207,206,240,180,230,115,150,172,116,34,231,173,53,133,226,249,55,232,28,117,223,110,71,241,26,113,29,41,197,137,111,183,98,14,170,24,190,27,252,86,62,75,198,210,121,32,154,219,192,254,120,205,90,244,31,221,168,51,136,7,199,49,177,18,16,89,39,128,236,95,96,81,127,169,25,181,74,13,45,229,122,159,147,201,156,239,160,224,59,77,174,42,245,176,200,235,187,60,131,83,153,97,23,43,4,126,186,119,214,38,225,105,20,99,85,33,12,125]),t.t) +B.aer=A.a(s(["1. ceturksnis","2. ceturksnis","3. ceturksnis","4. ceturksnis"]),t.s) +B.aes=A.a(s(["I ketvirtis","II ketvirtis","III ketvirtis","IV ketvirtis"]),t.s) +B.aet=A.a(s(["stycznia","lutego","marca","kwietnia","maja","czerwca","lipca","sierpnia","wrze\u015bnia","pa\u017adziernika","listopada","grudnia"]),t.s) +B.aeu=A.a(s(["1:a kvartalet","2:a kvartalet","3:e kvartalet","4:e kvartalet"]),t.s) +B.aev=A.a(s(["EEEE dd MMMM y","dd MMMM y","dd MMM y","y-MM-dd"]),t.s) +B.BA=A.a(s(["ned.","pon.","tor.","sre.","\u010det.","pet.","sob."]),t.s) +B.BB=A.a(s(["\u043d\u0434","\u043f\u043d","\u0430\u045e","\u0441\u0440","\u0447\u0446","\u043f\u0442","\u0441\u0431"]),t.s) +B.BC=A.a(s(["januari","februari","mars","april","maj","juni","juli","augusti","september","oktober","november","december"]),t.s) +B.aew=A.a(s(["Sv\u0113td.","Pirmd.","Otrd.","Tre\u0161d.","Ceturtd.","Piektd.","Sestd."]),t.s) +B.kj=A.a(s(["\uc77c","\uc6d4","\ud654","\uc218","\ubaa9","\uae08","\ud1a0"]),t.s) +B.aex=A.a(s(["\u0642.\u0645","\u0645"]),t.s) +B.BD=A.a(s(["\u1007\u1014\u103a\u1014\u101d\u102b\u101b\u102e","\u1016\u1031\u1016\u1031\u102c\u103a\u101d\u102b\u101b\u102e","\u1019\u1010\u103a","\u1027\u1015\u103c\u102e","\u1019\u1031","\u1007\u103d\u1014\u103a","\u1007\u1030\u101c\u102d\u102f\u1004\u103a","\u1029\u1002\u102f\u1010\u103a","\u1005\u1000\u103a\u1010\u1004\u103a\u1018\u102c","\u1021\u1031\u102c\u1000\u103a\u1010\u102d\u102f\u1018\u102c","\u1014\u102d\u102f\u101d\u1004\u103a\u1018\u102c","\u1012\u102e\u1007\u1004\u103a\u1018\u102c"]),t.s) +B.BE=A.a(s(["EEEE, d 'de' MMMM 'de' y","d 'de' MMMM 'de' y","d MMM y","d/M/yy"]),t.s) +B.aey=A.a(s(["p\u0159. n. l.","n. l."]),t.s) +B.nX=A.a(s(["1. Quartal","2. Quartal","3. Quartal","4. Quartal"]),t.s) +B.BF=A.a(s(["\u044f\u043d\u0443","\u0444\u0435\u0432","\u043c\u0430\u0440\u0442","\u0430\u043f\u0440","\u043c\u0430\u0439","\u044e\u043d\u0438","\u044e\u043b\u0438","\u0430\u0432\u0433","\u0441\u0435\u043f","\u043e\u043a\u0442","\u043d\u043e\u0435","\u0434\u0435\u043a"]),t.s) +B.aez=A.a(s(["aC","dC"]),t.s) +B.BG=A.a(s(["\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1","\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1","\u0aae\u0abe\u0ab0\u0acd\u0a9a","\u0a8f\u0aaa\u0acd\u0ab0\u0abf\u0ab2","\u0aae\u0ac7","\u0a9c\u0ac2\u0aa8","\u0a9c\u0ac1\u0ab2\u0abe\u0a88","\u0a91\u0a97\u0ab8\u0acd\u0a9f","\u0ab8\u0aaa\u0acd\u0a9f\u0ac7","\u0a91\u0a95\u0acd\u0a9f\u0acb","\u0aa8\u0ab5\u0ac7","\u0aa1\u0abf\u0ab8\u0ac7"]),t.s) +B.aeB=A.a(s(["\u0d15\u0d4d\u0d30\u0d3f\u0d38\u0d4d\u200c\u0d24\u0d41\u0d35\u0d3f\u0d28\u0d4d \u0d2e\u0d41\u0d2e\u0d4d\u0d2a\u0d4d","\u0d06\u0d28\u0d4d\u0d28\u0d4b \u0d21\u0d4a\u0d2e\u0d3f\u0d28\u0d3f"]),t.s) +B.aeC=A.a(s(["\u17a2\u17b6\u1791\u17b7\u178f\u17d2\u1799","\u1785\u1793\u17d2\u1791","\u17a2\u1784\u17d2\u1782\u17b6\u179a","\u1796\u17bb\u1792","\u1796\u17d2\u179a\u17a0\u179f\u17d2\u1794\u178f\u17b7\u17cd","\u179f\u17bb\u1780\u17d2\u179a","\u179f\u17c5\u179a\u17cd"]),t.s) +B.aR=A.a(s(["h:mm:ss a zzzz","h:mm:ss a z","h:mm:ss a","h:mm a"]),t.s) +B.d4=A.a(s(["{1} 'at' {0}","{1} 'at' {0}","{1}, {0}","{1}, {0}"]),t.s) +B.BH=A.a(s(["{1} 'um' {0}","{1} 'um' {0}","{1}, {0}","{1}, {0}"]),t.s) +B.BI=A.a(s(["\u0cad\u0cbe\u0ca8\u0cc1","\u0cb8\u0ccb\u0cae","\u0cae\u0c82\u0c97\u0cb3","\u0cac\u0cc1\u0ca7","\u0c97\u0cc1\u0cb0\u0cc1","\u0cb6\u0cc1\u0c95\u0ccd\u0cb0","\u0cb6\u0ca8\u0cbf"]),t.s) +B.BJ=A.a(s(["\u0627\u0644\u0631\u0628\u0639 \u0627\u0644\u0623\u0648\u0644","\u0627\u0644\u0631\u0628\u0639 \u0627\u0644\u062b\u0627\u0646\u064a","\u0627\u0644\u0631\u0628\u0639 \u0627\u0644\u062b\u0627\u0644\u062b","\u0627\u0644\u0631\u0628\u0639 \u0627\u0644\u0631\u0627\u0628\u0639"]),t.s) +B.aeD=A.a(s(["de gener","de febrer","de mar\xe7","d\u2019abril","de maig","de juny","de juliol","d\u2019agost","de setembre","d\u2019octubre","de novembre","de desembre"]),t.s) +B.fx=A.a(s(["S","M","D","M","D","F","S"]),t.s) +B.BK=A.a(s(["P","P","S","\xc7","P","C","C"]),t.s) +B.kk=A.a(s(["janvier","f\xe9vrier","mars","avril","mai","juin","juillet","ao\xfbt","septembre","octobre","novembre","d\xe9cembre"]),t.s) +B.aeF=A.a(s(["d MMMM y EEEE","d MMMM y","d MMM y","d.MM.y"]),t.s) +B.eu=A.a(s(["am","pm"]),t.s) +B.kl=A.a(s(["\u0627\u0644\u0623\u062d\u062f","\u0627\u0644\u0627\u062b\u0646\u064a\u0646","\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621","\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621","\u0627\u0644\u062e\u0645\u064a\u0633","\u0627\u0644\u062c\u0645\u0639\u0629","\u0627\u0644\u0633\u0628\u062a"]),t.s) +B.aeG=A.a(s(["\u0996\u09cd\u09f0\u09c0\u09b7\u09cd\u099f\u09aa\u09c2\u09f0\u09cd\u09ac","\u0996\u09cd\u09f0\u09c0\u09b7\u09cd\u099f\u09be\u09ac\u09cd\u09a6"]),t.s) +B.aeH=A.a(s(["EEEE, dd MMMM y","dd MMMM y","dd MMM y","y/MM/dd"]),t.s) +B.BL=A.a(s(["\u0d1e\u0d3e\u0d2f\u0d7c","\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d7e","\u0d1a\u0d4a\u0d35\u0d4d\u0d35","\u0d2c\u0d41\u0d27\u0d7b","\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d02","\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f","\u0d36\u0d28\u0d3f"]),t.s) +B.aeI=A.a(s(["\u0e1b\u0e35\u0e01\u0e48\u0e2d\u0e19\u0e04\u0e23\u0e34\u0e2a\u0e15\u0e01\u0e32\u0e25","\u0e04\u0e23\u0e34\u0e2a\u0e15\u0e4c\u0e28\u0e31\u0e01\u0e23\u0e32\u0e0a"]),t.s) +B.BM=A.a(s(["domenica","luned\xec","marted\xec","mercoled\xec","gioved\xec","venerd\xec","sabato"]),t.s) +B.BN=A.a(s(["\u091c\u093e\u0928\u0947","\u092b\u0947\u092c\u094d\u0930\u0941","\u092e\u093e\u0930\u094d\u091a","\u090f\u092a\u094d\u0930\u093f","\u092e\u0947","\u091c\u0942\u0928","\u091c\u0941\u0932\u0948","\u0911\u0917","\u0938\u092a\u094d\u091f\u0947\u0902","\u0911\u0915\u094d\u091f\u094b","\u0928\u094b\u0935\u094d\u0939\u0947\u0902","\u0921\u093f\u0938\u0947\u0902"]),t.s) +B.a1t=new A.wU(0,"portraitUp") +B.a1u=new A.wU(1,"landscapeLeft") +B.a1v=new A.wU(2,"portraitDown") +B.a1w=new A.wU(3,"landscapeRight") +B.aeJ=A.a(s([B.a1t,B.a1u,B.a1v,B.a1w]),A.ah("H")) +B.aE=new A.iq(0,"icon") +B.bg=new A.iq(1,"input") +B.aB=new A.iq(2,"label") +B.bl=new A.iq(3,"hint") +B.ba=new A.iq(4,"prefix") +B.bb=new A.iq(5,"suffix") +B.ay=new A.iq(6,"prefixIcon") +B.bc=new A.iq(7,"suffixIcon") +B.bm=new A.iq(8,"helperError") +B.b3=new A.iq(9,"counter") +B.dv=new A.iq(10,"container") +B.aeK=A.a(s([B.aE,B.bg,B.aB,B.bl,B.ba,B.bb,B.ay,B.bc,B.bm,B.b3,B.dv]),A.ah("H")) +B.BO=A.a(s(["Ocak","\u015eubat","Mart","Nisan","May\u0131s","Haziran","Temmuz","A\u011fustos","Eyl\xfcl","Ekim","Kas\u0131m","Aral\u0131k"]),t.s) +B.BP=A.a(s(["S","P","A","T","K","P","\u0160"]),t.s) +B.aeL=A.a(s(["\u0924\u093f1","\u0924\u093f2","\u0924\u093f3","\u0924\u093f4"]),t.s) +B.as6=new A.P7(0,"top") +B.as7=new A.P7(1,"bottom") +B.aeM=A.a(s([B.as6,B.as7]),A.ah("H")) +B.BQ=A.a(s(["\u1007","\u1016","\u1019","\u1027","\u1019","\u1007","\u1007","\u1029","\u1005","\u1021","\u1014","\u1012"]),t.s) +B.cq=A.a(s([1673962851,2096661628,2012125559,2079755643,4076801522,1809235307,1876865391,3314635973,811618352,16909057,1741597031,727088427,4276558334,3618988759,2874009259,1995217526,3398387146,2183110018,3381215433,2113570685,4209972730,1504897881,1200539975,4042984432,2906778797,3568527316,2724199842,2940594863,2619588508,2756966308,1927583346,3231407040,3077948087,4259388669,2470293139,642542118,913070646,1065238847,4160029431,3431157708,879254580,2773611685,3855693029,4059629809,1910674289,3635114968,828527409,355090197,67636228,3348452039,591815971,3281870531,405809176,2520228246,84545285,2586817946,118360327,304363026,2149292928,3806281186,3956090603,659450151,2994720178,1978310517,152181513,2199756419,743994412,439627290,456535323,1859957358,1521806938,2690382752,1386542674,997608763,3602342358,3011366579,693271337,3822927587,794718511,2215876484,1403450707,3518589137,0,3988860141,541089824,4242743292,2977548465,1538714971,1792327274,3415033547,3194476990,963791673,1251270218,1285084236,1487988824,3481619151,3501943760,4022676207,2857362858,4226619131,1132905795,1301993293,862344499,2232521861,1166724933,4192801017,33818114,2147385727,1352724560,1014514748,2670049951,2823545768,1369633617,2740846243,1082179648,2399505039,2453646738,2636233885,946882616,4126213365,3160661948,3061301686,3668932058,557998881,270544912,4293204735,4093447923,3535760850,3447803085,202904588,321271059,3972214764,1606345055,2536874647,1149815876,388905239,3297990596,2807427751,2130477694,1031423805,1690872932,1572530013,422718233,1944491379,1623236704,2165938305,1335808335,3701702620,574907938,710180394,2419829648,2282455944,1183631942,4006029806,3094074296,338181140,3735517662,1589437022,185998603,3685578459,3772464096,845436466,980700730,169090570,1234361161,101452294,608726052,1555620956,3265224130,3552407251,2890133420,1657054818,2436475025,2503058581,3839047652,2045938553,3889509095,3364570056,929978679,1843050349,2365688973,3585172693,1318900302,2840191145,1826141292,1454176854,4109567988,3939444202,1707781989,2062847610,2923948462,135272456,3127891386,2029029496,625635109,777810478,473441308,2790781350,3027486644,3331805638,3905627112,3718347997,1961401460,524165407,1268178251,3177307325,2332919435,2316273034,1893765232,1048330814,3044132021,1724688998,1217452104,50726147,4143383030,236720654,1640145761,896163637,1471084887,3110719673,2249691526,3248052417,490350365,2653403550,3789109473,4176155640,2553000856,287453969,1775418217,3651760345,2382858638,2486413204,2603464347,507257374,2266337927,3922272489,3464972750,1437269845,676362280,3752164063,2349043596,2707028129,2299101321,219813645,3211123391,3872862694,1115997762,1758509160,1099088705,2569646233,760903469,253628687,2960903088,1420360788,3144537787,371997206]),t.t) +B.BR=A.a(s(["\u0c06\u0c26\u0c3f","\u0c38\u0c4b\u0c2e","\u0c2e\u0c02\u0c17\u0c33","\u0c2c\u0c41\u0c27","\u0c17\u0c41\u0c30\u0c41","\u0c36\u0c41\u0c15\u0c4d\u0c30","\u0c36\u0c28\u0c3f"]),t.s) +B.dV=A.a(s(["a.m.","p.m."]),t.s) +B.BT=A.a(s(["\u0a10\u0a24","\u0a38\u0a4b\u0a2e","\u0a2e\u0a70\u0a17\u0a32","\u0a2c\u0a41\u0a71\u0a27","\u0a35\u0a40\u0a30","\u0a38\u0a3c\u0a41\u0a71\u0a15\u0a30","\u0a38\u0a3c\u0a28\u0a3f\u0a71\u0a1a\u0a30"]),t.s) +B.hx=new A.lZ(0,100) +B.a52=new A.lZ(1,200) +B.nr=new A.lZ(2,300) +B.p=new A.lZ(3,400) +B.aq=new A.lZ(4,500) +B.xm=new A.lZ(5,600) +B.a53=new A.lZ(7,800) +B.xn=new A.lZ(8,900) +B.BS=A.a(s([B.hx,B.a52,B.nr,B.p,B.aq,B.xm,B.d1,B.a53,B.xn]),A.ah("H")) +B.aeN=A.a(s(["zzzz HH:mm:ss","z HH:mm:ss","HH:mm:ss","HH:mm"]),t.s) +B.aeO=A.a(s(["J","F","M","E","M","J","J","A","S","O","N","D"]),t.s) +B.Tx=new A.l6(1,"uploadDate") +B.Ty=new A.l6(2,"fetchedDate") +B.BU=A.a(s([B.rb,B.Tx,B.Ty]),A.ah("H")) +B.cr=A.a(s([3332727651,4169432188,4003034999,4136467323,4279104242,3602738027,3736170351,2438251973,1615867952,33751297,3467208551,1451043627,3877240574,3043153879,1306962859,3969545846,2403715786,530416258,2302724553,4203183485,4011195130,3001768281,2395555655,4211863792,1106029997,3009926356,1610457762,1173008303,599760028,1408738468,3835064946,2606481600,1975695287,3776773629,1034851219,1282024998,1817851446,2118205247,4110612471,2203045068,1750873140,1374987685,3509904869,4178113009,3801313649,2876496088,1649619249,708777237,135005188,2505230279,1181033251,2640233411,807933976,933336726,168756485,800430746,235472647,607523346,463175808,3745374946,3441880043,1315514151,2144187058,3936318837,303761673,496927619,1484008492,875436570,908925723,3702681198,3035519578,1543217312,2767606354,1984772923,3076642518,2110698419,1383803177,3711886307,1584475951,328696964,2801095507,3110654417,0,3240947181,1080041504,3810524412,2043195825,3069008731,3569248874,2370227147,1742323390,1917532473,2497595978,2564049996,2968016984,2236272591,3144405200,3307925487,1340451498,3977706491,2261074755,2597801293,1716859699,294946181,2328839493,3910203897,67502594,4269899647,2700103760,2017737788,632987551,1273211048,2733855057,1576969123,2160083008,92966799,1068339858,566009245,1883781176,4043634165,1675607228,2009183926,2943736538,1113792801,540020752,3843751935,4245615603,3211645650,2169294285,403966988,641012499,3274697964,3202441055,899848087,2295088196,775493399,2472002756,1441965991,4236410494,2051489085,3366741092,3135724893,841685273,3868554099,3231735904,429425025,2664517455,2743065820,1147544098,1417554474,1001099408,193169544,2362066502,3341414126,1809037496,675025940,2809781982,3168951902,371002123,2910247899,3678134496,1683370546,1951283770,337512970,2463844681,201983494,1215046692,3101973596,2673722050,3178157011,1139780780,3299238498,967348625,832869781,3543655652,4069226873,3576883175,2336475336,1851340599,3669454189,25988493,2976175573,2631028302,1239460265,3635702892,2902087254,4077384948,3475368682,3400492389,4102978170,1206496942,270010376,1876277946,4035475576,1248797989,1550986798,941890588,1475454630,1942467764,2538718918,3408128232,2709315037,3902567540,1042358047,2531085131,1641856445,226921355,260409994,3767562352,2084716094,1908716981,3433719398,2430093384,100991747,4144101110,470945294,3265487201,1784624437,2935576407,1775286713,395413126,2572730817,975641885,666476190,3644383713,3943954680,733190296,573772049,3535497577,2842745305,126455438,866620564,766942107,1008868894,361924487,3374377449,2269761230,2868860245,1350051880,2776293343,59739276,1509466529,159418761,437718285,1708834751,3610371814,2227585602,3501746280,2193834305,699439513,1517759789,504434447,2076946608,2835108948,1842789307,742004246]),t.t) +B.dW=A.a(s(["S","M","T","O","T","F","L"]),t.s) +B.BV=A.a(s(["\u0ab0","\u0ab8\u0acb","\u0aae\u0a82","\u0aac\u0ac1","\u0a97\u0ac1","\u0ab6\u0ac1","\u0ab6"]),t.s) +B.aeP=A.a(s(["\u0399\u03b1\u03bd\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5","\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5","\u039c\u03b1\u03c1\u03c4\u03af\u03bf\u03c5","\u0391\u03c0\u03c1\u03b9\u03bb\u03af\u03bf\u03c5","\u039c\u03b1\u0390\u03bf\u03c5","\u0399\u03bf\u03c5\u03bd\u03af\u03bf\u03c5","\u0399\u03bf\u03c5\u03bb\u03af\u03bf\u03c5","\u0391\u03c5\u03b3\u03bf\u03cd\u03c3\u03c4\u03bf\u03c5","\u03a3\u03b5\u03c0\u03c4\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5","\u039f\u03ba\u03c4\u03c9\u03b2\u03c1\u03af\u03bf\u03c5","\u039d\u03bf\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5","\u0394\u03b5\u03ba\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5"]),t.s) +B.aeR=A.a(s(["1. kv.","2. kv.","3. kv.","4. kv."]),t.s) +B.aeQ=A.a(s(["EEEE \u062f y \u062f MMMM d","\u062f y \u062f MMMM d","y MMM d","y/M/d"]),t.s) +B.aeS=A.a(s(["Yan","Fev","Mar","Apr","May","Iyn","Iyl","Avg","Sen","Okt","Noy","Dek"]),t.s) +B.aeT=A.a(s(["click","scroll"]),t.s) +B.rn=new A.e(419430400) +B.i=new A.m(0,0) +B.QU=new A.cd(0.2,B.a4,B.rn,B.i,11) +B.aeU=A.a(s([B.QU]),t.c) +B.km=A.a(s(["Jan","Feb","M\xe4r","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"]),t.s) +B.aeW=A.a(s(["I \u10d9\u10d5.","II \u10d9\u10d5.","III \u10d9\u10d5.","IV \u10d9\u10d5."]),t.s) +B.aeY=A.a(s(["prije Krista","poslije Krista"]),t.s) +B.aeX=A.a(s(["{1} - {0}","{1} - {0}","{1}, {0}","{1}, {0}"]),t.s) +B.BX=A.a(s(["1.","2.","3.","4.","5.","6.","7.","8.","9.","10.","11.","12."]),t.s) +B.BW=A.a(s(["\u0698","\u0641","\u0645","\u0622","\u0645","\u0698","\u0698","\u0627","\u0633","\u0627","\u0646","\u062f"]),t.s) +B.BY=A.a(s(["yakshanba","dushanba","seshanba","chorshanba","payshanba","juma","shanba"]),t.s) +B.BZ=A.a(s(["janv.","f\xe9vr.","mars","avr.","mai","juin","juil.","ao\xfbt","sept.","oct.","nov.","d\xe9c."]),t.s) +B.C_=A.a(s(["jan.","feb.","mar.","apr.","maj","jun.","jul.","aug.","sep.","okt.","nov.","dec."]),t.s) +B.aeZ=A.a(s(["S","L","M","K","M","C","L","S","W","P","L","G"]),t.s) +B.ars=new A.aab(null) +B.a2W=new A.a1F(null) +B.af_=A.a(s([B.ars,B.a2W]),t.p) +B.af0=A.a(s(["\u0441\u0442\u0443\u0434\u0437\u0435\u043d\u044c","\u043b\u044e\u0442\u044b","\u0441\u0430\u043a\u0430\u0432\u0456\u043a","\u043a\u0440\u0430\u0441\u0430\u0432\u0456\u043a","\u043c\u0430\u0439","\u0447\u044d\u0440\u0432\u0435\u043d\u044c","\u043b\u0456\u043f\u0435\u043d\u044c","\u0436\u043d\u0456\u0432\u0435\u043d\u044c","\u0432\u0435\u0440\u0430\u0441\u0435\u043d\u044c","\u043a\u0430\u0441\u0442\u0440\u044b\u0447\u043d\u0456\u043a","\u043b\u0456\u0441\u0442\u0430\u043f\u0430\u0434","\u0441\u043d\u0435\u0436\u0430\u043d\u044c"]),t.s) +B.C0=A.a(s(["jaanuar","veebruar","m\xe4rts","aprill","mai","juuni","juuli","august","september","oktoober","november","detsember"]),t.s) +B.af1=A.a(s(["eKr","pKr"]),t.s) +B.dX=A.a(s(["j","f","m","a","m","j","j","a","s","o","n","d"]),t.s) +B.af2=A.a(s(["y \u0569. MMMM d, EEEE","dd MMMM, y \u0569.","dd MMM, y \u0569.","dd.MM.yy"]),t.s) +B.af3=A.a(s(["1\u03bf \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf","2\u03bf \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf","3\u03bf \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf","4\u03bf \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf"]),t.s) +B.bY=A.a(s(["1\u6708","2\u6708","3\u6708","4\u6708","5\u6708","6\u6708","7\u6708","8\u6708","9\u6708","10\u6708","11\u6708","12\u6708"]),t.s) +B.C1=A.a(s(["\u043d\u0435\u0434\u0435\u043b\u044f","\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a","\u0432\u0442\u043e\u0440\u043d\u0438\u043a","\u0441\u0440\u044f\u0434\u0430","\u0447\u0435\u0442\u0432\u044a\u0440\u0442\u044a\u043a","\u043f\u0435\u0442\u044a\u043a","\u0441\u044a\u0431\u043e\u0442\u0430"]),t.s) +B.kn=A.a(s(["\u043d\u0434","\u043f\u043d","\u0432\u0442","\u0441\u0440","\u0447\u0442","\u043f\u0442","\u0441\u0431"]),t.s) +B.C2=A.a(s(["\u0e2d\u0e32.","\u0e08.","\u0e2d.","\u0e1e.","\u0e1e\u0e24.","\u0e28.","\u0e2a."]),t.s) +B.C3=A.a(s(["\u0930\u0935\u093f","\u0938\u094b\u092e","\u092e\u0902\u0917\u0932","\u092c\u0941\u0927","\u0917\u0941\u0930\u0941","\u0936\u0941\u0915\u094d\u0930","\u0936\u0928\u093f"]),t.s) +B.af4=A.a(s([0,0,32754,11263,65534,34815,65534,18431]),t.t) +B.ko=A.a(s(["Jumapili","Jumatatu","Jumanne","Jumatano","Alhamisi","Ijumaa","Jumamosi"]),t.s) +B.af5=A.a(s(["1kv","2kv","3kv","4kv"]),t.s) +B.afe=A.a(s([]),t.QP) +B.C6=A.a(s([]),t.c) +B.C7=A.a(s([]),A.ah("H")) +B.af7=A.a(s([]),t.F) +B.afi=A.a(s([]),t.fJ) +B.af9=A.a(s([]),t.ER) +B.aD9=A.a(s([]),t.ss) +B.afb=A.a(s([]),t.tc) +B.cM=A.a(s([]),t.jl) +B.C5=A.a(s([]),t.wi) +B.afd=A.a(s([]),t.jT) +B.aDa=A.a(s([]),t.AT) +B.afa=A.a(s([]),A.ah("H>")) +B.nY=A.a(s([]),t.AO) +B.C8=A.a(s([]),t.Bw) +B.b8=A.a(s([]),t.yo) +B.kp=A.a(s([]),t.i3) +B.o_=A.a(s([]),t.K1) +B.afc=A.a(s([]),t.D1) +B.nZ=A.a(s([]),t.QF) +B.afg=A.a(s([]),t.Lx) +B.afh=A.a(s([]),t.fm) +B.af6=A.a(s([]),t.p) +B.hL=A.a(s([]),t.t) +B.C4=A.a(s([]),t.ee) +B.aff=A.a(s([]),t._m) +B.C9=A.a(s(["\u099c\u09be","\u09ab\u09c7","\u09ae\u09be","\u098f","\u09ae\u09c7","\u099c\u09c1\u09a8","\u099c\u09c1","\u0986","\u09b8\u09c7","\u0985","\u09a8","\u09a1\u09bf"]),t.s) +B.Ca=A.a(s(["\u12a5\u1211\u12f5","\u1230\u129e","\u121b\u12ad\u1230","\u1228\u1261\u12d5","\u1210\u1219\u1235","\u12d3\u122d\u1265","\u1245\u12f3\u121c"]),t.s) +B.afj=A.a(s(["1\u0ab2\u0acb \u0aa4\u0acd\u0ab0\u0abf\u0aae\u0abe\u0ab8","2\u0a9c\u0acb \u0aa4\u0acd\u0ab0\u0abf\u0aae\u0abe\u0ab8","3\u0a9c\u0acb \u0aa4\u0acd\u0ab0\u0abf\u0aae\u0abe\u0ab8","4\u0aa5\u0acb \u0aa4\u0acd\u0ab0\u0abf\u0aae\u0abe\u0ab8"]),t.s) +B.afk=A.a(s(["urtarrila","otsaila","martxoa","apirila","maiatza","ekaina","uztaila","abuztua","iraila","urria","azaroa","abendua"]),t.s) +B.afl=A.a(s(["{1} \u0641\u064a {0}","{1} \u0641\u064a {0}","{1}, {0}","{1}, {0}"]),t.s) +B.afm=A.a(s(["priek\u0161pusdien\u0101","p\u0113cpusdien\u0101"]),t.s) +B.Cb=A.a(s(["J","F","M","A","M","J","J","\xc1","S","O","N","D"]),t.s) +B.Cc=A.a(s(["S","M","T","K","T","P","L"]),t.s) +B.afn=A.a(s(["fm","em"]),t.s) +B.afo=A.a(s(["eKr.","jKr."]),t.s) +B.afp=A.a(s(["pred Kr.","po Kr."]),t.s) +B.afs=A.a(s(["\u0c15\u0c4d\u0c30\u0c40\u0c2a\u0c42","\u0c15\u0c4d\u0c30\u0c40\u0c36"]),t.s) +B.Cd=A.a(s(["\uc77c\uc694\uc77c","\uc6d4\uc694\uc77c","\ud654\uc694\uc77c","\uc218\uc694\uc77c","\ubaa9\uc694\uc77c","\uae08\uc694\uc77c","\ud1a0\uc694\uc77c"]),t.s) +B.aft=A.a(s(["pred Kristom","po Kristovi"]),t.s) +B.afu=A.a(s(["Qu\xfd 1","Qu\xfd 2","Qu\xfd 3","Qu\xfd 4"]),t.s) +B.afv=A.a(s(["fyrir Krist","eftir Krist"]),t.s) +B.Ce=A.a(s(["V","H","K","Sze","Cs","P","Szo"]),t.s) +B.Cf=A.a(s(["\u0b30","\u0b38\u0b4b","\u0b2e","\u0b2c\u0b41","\u0b17\u0b41","\u0b36\u0b41","\u0b36"]),t.s) +B.Cg=A.a(s(["S","M","\xde","M","F","F","L"]),t.s) +B.afw=A.a(s(["\u043f\u0440.\u043e\u0431.","\u0441\u043b.\u043e\u0431."]),t.s) +B.Ch=A.a(s(["\u0ab0\u0ab5\u0abf\u0ab5\u0abe\u0ab0","\u0ab8\u0acb\u0aae\u0ab5\u0abe\u0ab0","\u0aae\u0a82\u0a97\u0ab3\u0ab5\u0abe\u0ab0","\u0aac\u0ac1\u0aa7\u0ab5\u0abe\u0ab0","\u0a97\u0ac1\u0ab0\u0ac1\u0ab5\u0abe\u0ab0","\u0ab6\u0ac1\u0a95\u0acd\u0ab0\u0ab5\u0abe\u0ab0","\u0ab6\u0aa8\u0abf\u0ab5\u0abe\u0ab0"]),t.s) +B.Ci=A.a(s(["{1}, {0}","{1}, {0}","{1} {0}","{1}, {0}"]),t.s) +B.kY=new A.m(0,2) +B.QT=new A.cd(0.75,B.a4,B.rn,B.kY,1.5) +B.Cj=A.a(s([B.QT]),t.c) +B.Ck=A.a(s(["jan.","feb.","mar.","apr.","ma\xed","j\xfan.","j\xfal.","\xe1g\xfa.","sep.","okt.","n\xf3v.","des."]),t.s) +B.afy=A.a(s(["1. nelj\xe4nnes","2. nelj\xe4nnes","3. nelj\xe4nnes","4. nelj\xe4nnes"]),t.s) +B.afz=A.a(s(["\u03c0.\u03a7.","\u03bc.\u03a7."]),t.s) +B.Cm=A.a(s(["V","H","K","Sz","Cs","P","Sz"]),t.s) +B.Cl=A.a(s(["yanvar","fevral","mart","aprel","may","iyun","iyul","avqust","sentyabr","oktyabr","noyabr","dekabr"]),t.s) +B.Cn=A.a(s(["av. J.-C.","ap. J.-C."]),t.s) +B.afA=A.a(s(["v.C.","n.C."]),t.s) +B.afD=A.a(s(["\u0434\u043f","\u043f\u043f"]),t.s) +B.afB=A.a(s(["1-\u0448\u044b \u043a\u0432\u0430\u0440\u0442\u0430\u043b","2-\u0433\u0456 \u043a\u0432\u0430\u0440\u0442\u0430\u043b","3-\u0446\u0456 \u043a\u0432\u0430\u0440\u0442\u0430\u043b","4-\u0442\u044b \u043a\u0432\u0430\u0440\u0442\u0430\u043b"]),t.s) +B.afC=A.a(s(["\u092a\u0939\u0932\u0940 \u0924\u093f\u092e\u093e\u0939\u0940","\u0926\u0942\u0938\u0930\u0940 \u0924\u093f\u092e\u093e\u0939\u0940","\u0924\u0940\u0938\u0930\u0940 \u0924\u093f\u092e\u093e\u0939\u0940","\u091a\u094c\u0925\u0940 \u0924\u093f\u092e\u093e\u0939\u0940"]),t.s) +B.Co=A.a(s(["\u12a5\u1211\u12f5","\u1230\u129e","\u121b\u12ad\u1230\u129e","\u1228\u1261\u12d5","\u1210\u1219\u1235","\u12d3\u122d\u1265","\u1245\u12f3\u121c"]),t.s) +B.Cp=A.a(s(["N","P","U","S","\u010c","P","S"]),t.s) +B.afG=A.a(s(["xan.","feb.","mar.","abr.","maio","xu\xf1o","xul.","ago.","set.","out.","nov.","dec."]),t.s) +B.afH=A.a(s(["\u0d9a\u0dca\u200d\u0dbb\u0dd2.\u0db4\u0dd6.","\u0d9a\u0dca\u200d\u0dbb\u0dd2.\u0dc0."]),t.s) +B.afI=A.a(s(["\xeenainte de Hristos","dup\u0103 Hristos"]),t.s) +B.afJ=A.a(s(["1-ch","2-ch","3-ch","4-ch"]),t.s) +B.Cr=A.a(s(["\u0906\u0907\u0924","\u0938\u094b\u092e","\u092e\u0919\u094d\u0917\u0932","\u092c\u0941\u0927","\u092c\u093f\u0939\u093f","\u0936\u0941\u0915\u094d\u0930","\u0936\u0928\u093f"]),t.s) +B.Cq=A.a(s(["janv\u0101ris","febru\u0101ris","marts","apr\u012blis","maijs","j\u016bnijs","j\u016blijs","augusts","septembris","oktobris","novembris","decembris"]),t.s) +B.Cs=A.a(s(["\u043d","\u043f","\u0443","\u0441","\u0447","\u043f","\u0441"]),t.s) +B.Ct=A.a(s(["\u0e44\u0e15\u0e23\u0e21\u0e32\u0e2a 1","\u0e44\u0e15\u0e23\u0e21\u0e32\u0e2a 2","\u0e44\u0e15\u0e23\u0e21\u0e32\u0e2a 3","\u0e44\u0e15\u0e23\u0e21\u0e32\u0e2a 4"]),t.s) +B.kq=A.a(s(["\u0627\u062a\u0648\u0627\u0631","\u067e\u06cc\u0631","\u0645\u0646\u06af\u0644","\u0628\u062f\u06be","\u062c\u0645\u0639\u0631\u0627\u062a","\u062c\u0645\u0639\u06c1","\u06c1\u0641\u062a\u06c1"]),t.s) +B.Cu=A.a(s(["\u0d12\u0d28\u0d4d\u0d28\u0d3e\u0d02 \u0d2a\u0d3e\u0d26\u0d02","\u0d30\u0d23\u0d4d\u0d1f\u0d3e\u0d02 \u0d2a\u0d3e\u0d26\u0d02","\u0d2e\u0d42\u0d28\u0d4d\u0d28\u0d3e\u0d02 \u0d2a\u0d3e\u0d26\u0d02","\u0d28\u0d3e\u0d32\u0d3e\u0d02 \u0d2a\u0d3e\u0d26\u0d02"]),t.s) +B.afP=A.a(s(["ledna","\xfanora","b\u0159ezna","dubna","kv\u011btna","\u010dervna","\u010dervence","srpna","z\xe1\u0159\xed","\u0159\xedjna","listopadu","prosince"]),t.s) +B.afQ=A.a(s(["EEEE\u060c d MMMM\u060c y","d MMMM\u060c y","d MMM\u060c y","d/M/yy"]),t.s) +B.afR=A.a(s(["H \u0ec2\u0ea1\u0e87 m \u0e99\u0eb2\u0e97\u0eb5 ss \u0ea7\u0eb4\u0e99\u0eb2\u0e97\u0eb5 zzzz","H \u0ec2\u0ea1\u0e87 m \u0e99\u0eb2\u0e97\u0eb5 ss \u0ea7\u0eb4\u0e99\u0eb2\u0e97\u0eb5 z","H:mm:ss","H:mm"]),t.s) +B.afS=A.a(s(["\u0d1e\u0d3e\u0d2f\u0d31\u0d3e\u0d34\u0d4d\u200c\u0d1a","\u0d24\u0d3f\u0d19\u0d4d\u0d15\u0d33\u0d3e\u0d34\u0d4d\u200c\u0d1a","\u0d1a\u0d4a\u0d35\u0d4d\u0d35\u0d3e\u0d34\u0d4d\u200c\u0d1a","\u0d2c\u0d41\u0d27\u0d28\u0d3e\u0d34\u0d4d\u200c\u0d1a","\u0d35\u0d4d\u0d2f\u0d3e\u0d34\u0d3e\u0d34\u0d4d\u200c\u0d1a","\u0d35\u0d46\u0d33\u0d4d\u0d33\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u200c\u0d1a","\u0d36\u0d28\u0d3f\u0d2f\u0d3e\u0d34\u0d4d\u200c\u0d1a"]),t.s) +B.Cv=A.a(s(["sij","velj","o\u017eu","tra","svi","lip","srp","kol","ruj","lis","stu","pro"]),t.s) +B.Cw=A.a(s(["EEEE d MMMM y","d MMMM y","d MMM y","d/M/yy"]),t.s) +B.kr=A.a(s(["antes de Cristo","despu\xe9s de Cristo"]),t.s) +B.afT=A.a(s(["\u10eb\u10d5. \u10ec.","\u10d0\u10ee. \u10ec."]),t.s) +B.Cx=A.a(s(["\u039a\u03c5\u03c1","\u0394\u03b5\u03c5","\u03a4\u03c1\u03af","\u03a4\u03b5\u03c4","\u03a0\u03ad\u03bc","\u03a0\u03b1\u03c1","\u03a3\u03ac\u03b2"]),t.s) +B.Cy=A.a(s(["J","V","M","A","M","J","J","A","S","O","N","D"]),t.s) +B.afV=A.a(s(["gener","febrer","mar\xe7","abril","maig","juny","juliol","agost","setembre","octubre","novembre","desembre"]),t.s) +B.Cz=A.a(s(["\u0c1c\u0c28\u0c35\u0c30\u0c3f","\u0c2b\u0c3f\u0c2c\u0c4d\u0c30\u0c35\u0c30\u0c3f","\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f","\u0c0f\u0c2a\u0c4d\u0c30\u0c3f\u0c32\u0c4d","\u0c2e\u0c47","\u0c1c\u0c42\u0c28\u0c4d","\u0c1c\u0c41\u0c32\u0c48","\u0c06\u0c17\u0c38\u0c4d\u0c1f\u0c41","\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02\u0c2c\u0c30\u0c4d","\u0c05\u0c15\u0c4d\u0c1f\u0c4b\u0c2c\u0c30\u0c4d","\u0c28\u0c35\u0c02\u0c2c\u0c30\u0c4d","\u0c21\u0c3f\u0c38\u0c46\u0c02\u0c2c\u0c30\u0c4d"]),t.s) +B.afW=A.a(s(["\u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a401","\u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a402","\u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a403","\u0a24\u0a3f\u0a2e\u0a3e\u0a39\u0a404"]),t.s) +B.CA=A.a(s(["Yak","Dush","Sesh","Chor","Pay","Jum","Shan"]),t.s) +B.afX=A.a(s(["prie\u0161 Krist\u0173","po Kristaus"]),t.s) +B.CB=A.a(s(["\u0b30\u0b2c\u0b3f\u0b2c\u0b3e\u0b30","\u0b38\u0b4b\u0b2e\u0b2c\u0b3e\u0b30","\u0b2e\u0b19\u0b4d\u0b17\u0b33\u0b2c\u0b3e\u0b30","\u0b2c\u0b41\u0b27\u0b2c\u0b3e\u0b30","\u0b17\u0b41\u0b30\u0b41\u0b2c\u0b3e\u0b30","\u0b36\u0b41\u0b15\u0b4d\u0b30\u0b2c\u0b3e\u0b30","\u0b36\u0b28\u0b3f\u0b2c\u0b3e\u0b30"]),t.s) +B.afY=A.a(s(["abans de Crist","despr\xe9s de Crist"]),t.s) +B.CC=A.a(s(["dum.","lun.","mar.","mie.","joi","vin.","s\xe2m."]),t.s) +B.CD=A.a(s(["\u049a","\u0410","\u041d","\u0421","\u041c","\u041c","\u0428","\u0422","\u049a","\u049a","\u049a","\u0416"]),t.s) +B.afZ=A.a(s(["Suku pertama","Suku Ke-2","Suku Ke-3","Suku Ke-4"]),t.s) +B.ks=A.a(s(["\u516c\u5143\u524d","\u516c\u5143"]),t.s) +B.CE=A.a(s(["antes de Cristo","depois de Cristo"]),t.s) +B.ag0=A.a(s(["1. \xe7eyrek","2. \xe7eyrek","3. \xe7eyrek","4. \xe7eyrek"]),t.s) +B.CF=A.a(s(["EEEE d MMMM y","d MMMM y","d MMM y","y-MM-dd"]),t.s) +B.CG=A.a(s(["jan.","feb.","mar.","apr.","mai","jun.","jul.","aug.","sep.","okt.","nov.","des."]),t.s) +B.CH=A.a(s(["M","S","S","R","K","J","S"]),t.s) +B.CI=A.a(s(["\u043d\u0435\u0434","\u043f\u043e\u043d","\u0443\u0442\u043e","\u0441\u0440\u0435","\u0447\u0435\u0442","\u043f\u0435\u0442","\u0441\u0443\u0431"]),t.s) +B.kt=A.a(s(["\u064a\u0646\u0627\u064a\u0631","\u0641\u0628\u0631\u0627\u064a\u0631","\u0645\u0627\u0631\u0633","\u0623\u0628\u0631\u064a\u0644","\u0645\u0627\u064a\u0648","\u064a\u0648\u0646\u064a\u0648","\u064a\u0648\u0644\u064a\u0648","\u0623\u063a\u0633\u0637\u0633","\u0633\u0628\u062a\u0645\u0628\u0631","\u0623\u0643\u062a\u0648\u0628\u0631","\u0646\u0648\u0641\u0645\u0628\u0631","\u062f\u064a\u0633\u0645\u0628\u0631"]),t.s) +B.ag1=A.a(s(["am Vormittag","am Namittag"]),t.s) +B.CJ=A.a(s(["\u0d1c\u0d28\u0d41\u0d35\u0d30\u0d3f","\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41\u0d35\u0d30\u0d3f","\u0d2e\u0d3e\u0d7c\u0d1a\u0d4d\u0d1a\u0d4d","\u0d0f\u0d2a\u0d4d\u0d30\u0d3f\u0d7d","\u0d2e\u0d47\u0d2f\u0d4d","\u0d1c\u0d42\u0d7a","\u0d1c\u0d42\u0d32\u0d48","\u0d13\u0d17\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d","\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d02\u0d2c\u0d7c","\u0d12\u0d15\u0d4d\u200c\u0d1f\u0d4b\u0d2c\u0d7c","\u0d28\u0d35\u0d02\u0d2c\u0d7c","\u0d21\u0d3f\u0d38\u0d02\u0d2c\u0d7c"]),t.s) +B.CK=A.a(s(["\u0ead\u0eb2","\u0e88","\u0ead","\u0e9e","\u0e9e\u0eab","\u0eaa\u0eb8","\u0eaa"]),t.s) +B.fy=A.a(s(["f.Kr.","e.Kr."]),t.s) +B.ag2=A.a(s(["1. nelj.","2. nelj.","3. nelj.","4. nelj."]),t.s) +B.lB=new A.nK(0,"left") +B.pA=new A.nK(1,"right") +B.lC=new A.nK(3,"justify") +B.b2=new A.nK(4,"start") +B.pB=new A.nK(5,"end") +B.ag3=A.a(s([B.lB,B.pA,B.eS,B.lC,B.b2,B.pB]),A.ah("H")) +B.ag4=A.a(s(["\u7b2c1\u56db\u534a\u671f","\u7b2c2\u56db\u534a\u671f","\u7b2c3\u56db\u534a\u671f","\u7b2c4\u56db\u534a\u671f"]),t.s) +B.ag5=A.a(s(["\u0441\u0456\u0447\u0435\u043d\u044c","\u043b\u044e\u0442\u0438\u0439","\u0431\u0435\u0440\u0435\u0437\u0435\u043d\u044c","\u043a\u0432\u0456\u0442\u0435\u043d\u044c","\u0442\u0440\u0430\u0432\u0435\u043d\u044c","\u0447\u0435\u0440\u0432\u0435\u043d\u044c","\u043b\u0438\u043f\u0435\u043d\u044c","\u0441\u0435\u0440\u043f\u0435\u043d\u044c","\u0432\u0435\u0440\u0435\u0441\u0435\u043d\u044c","\u0436\u043e\u0432\u0442\u0435\u043d\u044c","\u043b\u0438\u0441\u0442\u043e\u043f\u0430\u0434","\u0433\u0440\u0443\u0434\u0435\u043d\u044c"]),t.s) +B.ag6=A.a(s(["\u043d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440","\u0445\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440","\u0433\u0443\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440","\u0434\u04e9\u0440\u04e9\u0432\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440","\u0442\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440","\u0437\u0443\u0440\u0433\u0430\u0430\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440","\u0434\u043e\u043b\u043e\u043e\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440","\u043d\u0430\u0439\u043c\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440","\u0435\u0441\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440","\u0430\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440","\u0430\u0440\u0432\u0430\u043d \u043d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440","\u0430\u0440\u0432\u0430\u043d \u0445\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440"]),t.s) +B.CL=A.a(s(["\u05d9\u05d5\u05dd \u05d0\u05f3","\u05d9\u05d5\u05dd \u05d1\u05f3","\u05d9\u05d5\u05dd \u05d2\u05f3","\u05d9\u05d5\u05dd \u05d3\u05f3","\u05d9\u05d5\u05dd \u05d4\u05f3","\u05d9\u05d5\u05dd \u05d5\u05f3","\u05e9\u05d1\u05ea"]),t.s) +B.dY=A.a(s(["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"]),t.s) +B.ag8=A.a(s(["p.m.\u0113.","m.\u0113."]),t.s) +B.ag7=A.a(s(["EEEE d. MMMM y","d. MMMM y","d. M. y","dd.MM.yy"]),t.s) +B.CM=A.a(s(["bazar","bazar ert\u0259si","\xe7\u0259r\u015f\u0259nb\u0259 ax\u015fam\u0131","\xe7\u0259r\u015f\u0259nb\u0259","c\xfcm\u0259 ax\u015fam\u0131","c\xfcm\u0259","\u015f\u0259nb\u0259"]),t.s) +B.ag9=A.a(s(["\u043f\u0440\u0432\u043e \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435","\u0432\u0442\u043e\u0440\u043e \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435","\u0442\u0440\u0435\u0442\u043e \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435","\u0447\u0435\u0442\u0432\u0440\u0442\u043e \u0442\u0440\u043e\u043c\u0435\u0441\u0435\u0447\u0458\u0435"]),t.s) +B.aga=A.a(s(["sunnuntai","maanantai","tiistai","keskiviikko","torstai","perjantai","lauantai"]),t.s) +B.agb=A.a(s(["Cyn Crist","Oed Crist"]),t.s) +B.agc=A.a(s(["af","am","ar","as","az","be","bg","bn","bs","ca","cs","cy","da","de","el","en","es","et","eu","fa","fi","fil","fr","gl","gsw","gu","he","hi","hr","hu","hy","id","is","it","ja","ka","kk","km","kn","ko","ky","lo","lt","lv","mk","ml","mn","mr","ms","my","nb","ne","nl","no","or","pa","pl","pt","ro","ru","si","sk","sl","sq","sr","sv","sw","ta","te","th","tl","tr","uk","ur","uz","vi","zh","zu"]),t.s) +B.cs=A.a(s([1353184337,1399144830,3282310938,2522752826,3412831035,4047871263,2874735276,2466505547,1442459680,4134368941,2440481928,625738485,4242007375,3620416197,2151953702,2409849525,1230680542,1729870373,2551114309,3787521629,41234371,317738113,2744600205,3338261355,3881799427,2510066197,3950669247,3663286933,763608788,3542185048,694804553,1154009486,1787413109,2021232372,1799248025,3715217703,3058688446,397248752,1722556617,3023752829,407560035,2184256229,1613975959,1165972322,3765920945,2226023355,480281086,2485848313,1483229296,436028815,2272059028,3086515026,601060267,3791801202,1468997603,715871590,120122290,63092015,2591802758,2768779219,4068943920,2997206819,3127509762,1552029421,723308426,2461301159,4042393587,2715969870,3455375973,3586000134,526529745,2331944644,2639474228,2689987490,853641733,1978398372,971801355,2867814464,111112542,1360031421,4186579262,1023860118,2919579357,1186850381,3045938321,90031217,1876166148,4279586912,620468249,2548678102,3426959497,2006899047,3175278768,2290845959,945494503,3689859193,1191869601,3910091388,3374220536,0,2206629897,1223502642,2893025566,1316117100,4227796733,1446544655,517320253,658058550,1691946762,564550760,3511966619,976107044,2976320012,266819475,3533106868,2660342555,1338359936,2720062561,1766553434,370807324,179999714,3844776128,1138762300,488053522,185403662,2915535858,3114841645,3366526484,2233069911,1275557295,3151862254,4250959779,2670068215,3170202204,3309004356,880737115,1982415755,3703972811,1761406390,1676797112,3403428311,277177154,1076008723,538035844,2099530373,4164795346,288553390,1839278535,1261411869,4080055004,3964831245,3504587127,1813426987,2579067049,4199060497,577038663,3297574056,440397984,3626794326,4019204898,3343796615,3251714265,4272081548,906744984,3481400742,685669029,646887386,2764025151,3835509292,227702864,2613862250,1648787028,3256061430,3904428176,1593260334,4121936770,3196083615,2090061929,2838353263,3004310991,999926984,2809993232,1852021992,2075868123,158869197,4095236462,28809964,2828685187,1701746150,2129067946,147831841,3873969647,3650873274,3459673930,3557400554,3598495785,2947720241,824393514,815048134,3227951669,935087732,2798289660,2966458592,366520115,1251476721,4158319681,240176511,804688151,2379631990,1303441219,1414376140,3741619940,3820343710,461924940,3089050817,2136040774,82468509,1563790337,1937016826,776014843,1511876531,1389550482,861278441,323475053,2355222426,2047648055,2383738969,2302415851,3995576782,902390199,3991215329,1018251130,1507840668,1064563285,2043548696,3208103795,3939366739,1537932639,342834655,2262516856,2180231114,1053059257,741614648,1598071746,1925389590,203809468,2336832552,1100287487,1895934009,3736275976,2632234200,2428589668,1636092795,1890988757,1952214088,1113045200]),t.t) +B.fz=A.a(s(["\u65e5","\u4e00","\u4e8c","\u4e09","\u56db","\u4e94","\u516d"]),t.s) +B.CN=A.a(s(["Paz","Pzt","Sal","\xc7ar","Per","Cum","Cmt"]),t.s) +B.agd=A.a(s(["1. \u0442\u0440\u0438\u043c.","2. \u0442\u0440\u0438\u043c.","3. \u0442\u0440\u0438\u043c.","4. \u0442\u0440\u0438\u043c."]),t.s) +B.CO=A.a(s(["\u0908\u0938\u093e \u092a\u0942\u0930\u094d\u0935","\u0938\u0928\u094d"]),t.s) +B.age=A.a(s(["\u05dc\u05e4\u05e0\u05d4\u05f4\u05e1","\u05dc\u05e1\u05e4\u05d9\u05e8\u05d4"]),t.s) +B.CP=A.a(s(["Min","Sen","Sel","Rab","Kam","Jum","Sab"]),t.s) +B.CR=A.a(s(["D","L","M","M","G","V","S"]),t.s) +B.CQ=A.a(s(["Jan.","Feb.","Mrt.","Apr.","Mei","Jun.","Jul.","Aug.","Sep.","Okt.","Nov.","Des."]),t.s) +B.ku=A.a(s(["domingo","segunda-feira","ter\xe7a-feira","quarta-feira","quinta-feira","sexta-feira","s\xe1bado"]),t.s) +B.CS=A.a(s(["Z","M","D","W","D","V","Z"]),t.s) +B.CT=A.a(s(["\u09b0\u09ac\u09bf\u09ac\u09be\u09b0","\u09b8\u09cb\u09ae\u09ac\u09be\u09b0","\u09ae\u0999\u09cd\u0997\u09b2\u09ac\u09be\u09b0","\u09ac\u09c1\u09a7\u09ac\u09be\u09b0","\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09b0","\u09b6\u09c1\u0995\u09cd\u09b0\u09ac\u09be\u09b0","\u09b6\u09a8\u09bf\u09ac\u09be\u09b0"]),t.s) +B.agk=A.a(s(["die","h\xebn","mar","m\xebr","enj","pre","sht"]),t.s) +B.agl=A.a(s(["\u043f. \u043d. \u0435.","\u043d. \u0435."]),t.s) +B.agm=A.a(s(["\u0644\u0647 \u0645\u06cc\u0644\u0627\u062f \u0648\u0693\u0627\u0646\u062f\u06d0","\u0645."]),t.s) +B.CU=A.a(s(["nede\u013ea","pondelok","utorok","streda","\u0161tvrtok","piatok","sobota"]),t.s) +B.CV=A.a(s(["G","F","M","A","M","G","L","A","S","O","N","D"]),t.s) +B.agn=A.a(s(["\u1325\u12cb\u1275","\u12a8\u1230\u12d3\u1275"]),t.s) +B.CW=A.a(s(["jan.","feb.","mars","apr.","maj","juni","juli","aug.","sep.","okt.","nov.","dec."]),t.s) +B.ago=A.a(s(["1. \u010detrtletje","2. \u010detrtletje","3. \u010detrtletje","4. \u010detrtletje"]),t.s) +B.agp=A.a(s(["\u042f\u043d\u0432\u0430\u0440\u044c","\u0424\u0435\u0432\u0440\u0430\u043b\u044c","\u041c\u0430\u0440\u0442","\u0410\u043f\u0440\u0435\u043b\u044c","\u041c\u0430\u0439","\u0418\u044e\u043d\u044c","\u0418\u044e\u043b\u044c","\u0410\u0432\u0433\u0443\u0441\u0442","\u0421\u0435\u043d\u0442\u044f\u0431\u0440\u044c","\u041e\u043a\u0442\u044f\u0431\u0440\u044c","\u041d\u043e\u044f\u0431\u0440\u044c","\u0414\u0435\u043a\u0430\u0431\u0440\u044c"]),t.s) +B.CX=A.a(s(["\u044f\u043d\u0432\u0430\u0440\u044c","\u0444\u0435\u0432\u0440\u0430\u043b\u044c","\u043c\u0430\u0440\u0442","\u0430\u043f\u0440\u0435\u043b\u044c","\u043c\u0430\u0439","\u0438\u044e\u043d\u044c","\u0438\u044e\u043b\u044c","\u0430\u0432\u0433\u0443\u0441\u0442","\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c","\u043e\u043a\u0442\u044f\u0431\u0440\u044c","\u043d\u043e\u044f\u0431\u0440\u044c","\u0434\u0435\u043a\u0430\u0431\u0440\u044c"]),t.s) +B.agq=A.a(s(["\u0644\u0647 \u0645\u06cc\u0644\u0627\u062f \u0685\u062e\u0647 \u0648\u0693\u0627\u0646\u062f\u06d0","\u0644\u0647 \u0645\u06cc\u0644\u0627\u062f \u0685\u062e\u0647 \u0648\u0631\u0648\u0633\u062a\u0647"]),t.s) +B.bi=A.a(s(["1","2","3","4","5","6","7","8","9","10","11","12"]),t.s) +B.CY=A.a(s(["\u0458\u0430\u043d\u0443\u0430\u0440\u0438","\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438","\u043c\u0430\u0440\u0442","\u0430\u043f\u0440\u0438\u043b","\u043c\u0430\u0458","\u0458\u0443\u043d\u0438","\u0458\u0443\u043b\u0438","\u0430\u0432\u0433\u0443\u0441\u0442","\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438","\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438","\u043d\u043e\u0435\u043c\u0432\u0440\u0438","\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438"]),t.s) +B.ags=A.a(s(["1. hiruhilekoa","2. hiruhilekoa","3. hiruhilekoa","4. hiruhilekoa"]),t.s) +B.agt=A.a(s(["EEEE d MMMM y","d MMMM y","d MMM y","y/M/d"]),t.s) +B.agu=A.a(s(["EEEE, y. 'gada' d. MMMM","y. 'gada' d. MMMM","y. 'gada' d. MMM","dd.MM.yy"]),t.s) +B.fH=new A.m(1,0) +B.anH=new A.m(1,1) +B.cw=new A.m(0,1) +B.ao7=new A.m(-1,1) +B.oz=new A.m(-1,0) +B.ao8=new A.m(-1,-1) +B.JE=new A.m(0,-1) +B.anJ=new A.m(1,-1) +B.kv=A.a(s([B.fH,B.anH,B.cw,B.ao7,B.oz,B.ao8,B.JE,B.anJ]),t.yv) +B.agv=A.a(s(["przed nasz\u0105 er\u0105","naszej ery"]),t.s) +B.CZ=A.a(s(["\u043d\u0435\u0434\u0456\u043b\u044f","\u043f\u043e\u043d\u0435\u0434\u0456\u043b\u043e\u043a","\u0432\u0456\u0432\u0442\u043e\u0440\u043e\u043a","\u0441\u0435\u0440\u0435\u0434\u0430","\u0447\u0435\u0442\u0432\u0435\u0440","\u043f\u02bc\u044f\u0442\u043d\u0438\u0446\u044f","\u0441\u0443\u0431\u043e\u0442\u0430"]),t.s) +B.agw=A.a(s(["sv\u0113td.","pirmd.","otrd.","tre\u0161d.","ceturtd.","piektd.","sestd."]),t.s) +B.D_=A.a(s(["\u0b9e\u0bbe","\u0ba4\u0bbf","\u0b9a\u0bc6","\u0baa\u0bc1","\u0bb5\u0bbf","\u0bb5\u0bc6","\u0b9a"]),t.s) +B.agx=A.a(s(["da manh\xe3","da tarde"]),t.s) +B.D0=A.a(s(["\u5468\u65e5","\u5468\u4e00","\u5468\u4e8c","\u5468\u4e09","\u5468\u56db","\u5468\u4e94","\u5468\u516d"]),t.s) +B.o0=A.a(s(["\u7b2c1\u5b63","\u7b2c2\u5b63","\u7b2c3\u5b63","\u7b2c4\u5b63"]),t.s) +B.D1=A.a(s(["jaan","veebr","m\xe4rts","apr","mai","juuni","juuli","aug","sept","okt","nov","dets"]),t.s) +B.D2=A.a(s(["\u091c\u0928\u0970","\u092b\u093c\u0930\u0970","\u092e\u093e\u0930\u094d\u091a","\u0905\u092a\u094d\u0930\u0948\u0932","\u092e\u0908","\u091c\u0942\u0928","\u091c\u0941\u0932\u0970","\u0905\u0917\u0970","\u0938\u093f\u0924\u0970","\u0905\u0915\u094d\u0924\u0942\u0970","\u0928\u0935\u0970","\u0926\u093f\u0938\u0970"]),t.s) +B.agy=A.a(s(["miloddan avvalgi","milodiy"]),t.s) +B.o1=A.a(s(["Mon","Tue","Wed","Thu","Fri","Sat","Sun"]),t.s) +B.D3=A.a(s(["n","p","u","s","\u0161","p","s"]),t.s) +B.agC=A.a(s(["1-\u0447\u0435\u0439.","2-\u0447\u0435\u0439.","3-\u0447\u0435\u0439.","4-\u0447\u0435\u0439."]),t.s) +B.D4=A.a(s(["su","ma","ti","ke","to","pe","la"]),t.s) +B.D5=A.a(s(["\u091c","\u092b\u093c","\u092e\u093e","\u0905","\u092e","\u091c\u0942","\u091c\u0941","\u0905","\u0938\u093f","\u0905","\u0928","\u0926\u093f"]),t.s) +B.agD=A.a(s(["\u0e01\u0e48\u0e2d\u0e19\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07","\u0e2b\u0e25\u0e31\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e07"]),t.s) +B.agE=A.a(s(["EEEE, d MMMM y '\u0440'.","d MMMM y '\u0440'.","d MMM y '\u0440'.","dd.MM.yy"]),t.s) +B.D6=A.a(s(["jan\xfaar","febr\xfaar","mars","apr\xedl","ma\xed","j\xfan\xed","j\xfal\xed","\xe1g\xfast","september","okt\xf3ber","n\xf3vember","desember"]),t.s) +B.D7=A.a(s(["ika-1 quarter","ika-2 quarter","ika-3 quarter","ika-4 na quarter"]),t.s) +B.D8=A.a(s(["ned","pon","uto","sre","\u010det","pet","sub"]),t.s) +B.agG=A.a(s(["1-\u056b\u0576 \u0565\u057c\u0561\u0574\u057d\u0575\u0561\u056f","2-\u0580\u0564 \u0565\u057c\u0561\u0574\u057d\u0575\u0561\u056f","3-\u0580\u0564 \u0565\u057c\u0561\u0574\u057d\u0575\u0561\u056f","4-\u0580\u0564 \u0565\u057c\u0561\u0574\u057d\u0575\u0561\u056f"]),t.s) +B.agF=A.a(s(["EEEE, d. MMMM y.","d. MMMM y.","d. MMM y.","dd. MM. y."]),t.s) +B.agI=A.a(s(["tremujori i par\xeb","tremujori i dyt\xeb","tremujori i tret\xeb","tremujori i kat\xebrt"]),t.s) +B.agH=A.a(s(["stycze\u0144","luty","marzec","kwiecie\u0144","maj","czerwiec","lipiec","sierpie\u0144","wrzesie\u0144","pa\u017adziernik","listopad","grudzie\u0144"]),t.s) +B.hM=A.a(s([0,0,65490,45055,65535,34815,65534,18431]),t.t) +B.D9=A.a(s(["voor Christus","na Christus"]),t.s) +B.Da=A.a(s(["\u0458\u0430\u043d\u0443\u0430\u0440","\u0444\u0435\u0431\u0440\u0443\u0430\u0440","\u043c\u0430\u0440\u0442","\u0430\u043f\u0440\u0438\u043b","\u043c\u0430\u0458","\u0458\u0443\u043d","\u0458\u0443\u043b","\u0430\u0432\u0433\u0443\u0441\u0442","\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440","\u043e\u043a\u0442\u043e\u0431\u0430\u0440","\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440","\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440"]),t.s) +B.c4=A.a(s(["Before Christ","Anno Domini"]),t.s) +B.agJ=A.a(s(["{1} 'klo' {0}","{1} 'klo' {0}","{1} 'klo' {0}","{1} {0}"]),t.s) +B.agK=A.a(s(["1. \u0161tvr\u0165rok","2. \u0161tvr\u0165rok","3. \u0161tvr\u0165rok","4. \u0161tvr\u0165rok"]),t.s) +B.Db=A.a(s(["\u0b9e\u0bbe\u0baf\u0bbf.","\u0ba4\u0bbf\u0b99\u0bcd.","\u0b9a\u0bc6\u0bb5\u0bcd.","\u0baa\u0bc1\u0ba4.","\u0bb5\u0bbf\u0baf\u0bbe.","\u0bb5\u0bc6\u0bb3\u0bcd.","\u0b9a\u0ba9\u0bbf"]),t.s) +B.agL=A.a(s(["zzzz HH:mm:ss","z HH:mm:ss","H:mm:ss","H:mm"]),t.s) +B.agM=A.a(s(["\u0399\u03b1\u03bd","\u03a6\u03b5\u03b2","\u039c\u03b1\u03c1","\u0391\u03c0\u03c1","\u039c\u03b1\u0390","\u0399\u03bf\u03c5\u03bd","\u0399\u03bf\u03c5\u03bb","\u0391\u03c5\u03b3","\u03a3\u03b5\u03c0","\u039f\u03ba\u03c4","\u039d\u03bf\u03b5","\u0394\u03b5\u03ba"]),t.s) +B.agN=A.a(s(["\u0da2\u0db1","\u0db4\u0dd9\u0db6","\u0db8\u0dcf\u0dbb\u0dca\u0dad\u0dd4","\u0d85\u0db4\u0dca\u200d\u0dbb\u0dda\u0dbd\u0dca","\u0db8\u0dd0\u0dba\u0dd2","\u0da2\u0dd6\u0db1\u0dd2","\u0da2\u0dd6\u0dbd\u0dd2","\u0d85\u0d9c\u0ddd","\u0dc3\u0dd0\u0db4\u0dca","\u0d94\u0d9a\u0dca","\u0db1\u0ddc\u0dc0\u0dd0","\u0daf\u0dd9\u0dc3\u0dd0"]),t.s) +B.agO=A.a(s(["\u043f\u0440\u0435\u0434 \u043d\u0430\u0448\u0430\u0442\u0430 \u0435\u0440\u0430","\u043e\u0434 \u043d\u0430\u0448\u0430\u0442\u0430 \u0435\u0440\u0430"]),t.s) +B.Dc=A.a(s(["EEEE, d. MMMM y.","d. MMMM y.","d. M. y.","d.M.yy."]),t.s) +B.agP=A.a(s(["Sv\u0113tdiena","Pirmdiena","Otrdiena","Tre\u0161diena","Ceturtdiena","Piektdiena","Sestdiena"]),t.s) +B.agQ=A.a(s(["enne Kristust","p\xe4rast Kristust"]),t.s) +B.agR=A.a(s(["\u0908\u0938\u093e-\u092a\u0942\u0930\u094d\u0935","\u0908\u0938\u094d\u0935\u0940"]),t.s) +B.hZ=new A.lp(0,"controlModifier") +B.i_=new A.lp(1,"shiftModifier") +B.i0=new A.lp(2,"altModifier") +B.i1=new A.lp(3,"metaModifier") +B.Jt=new A.lp(4,"capsLockModifier") +B.Ju=new A.lp(5,"numLockModifier") +B.Jv=new A.lp(6,"scrollLockModifier") +B.Jw=new A.lp(7,"functionModifier") +B.an0=new A.lp(8,"symbolModifier") +B.Dd=A.a(s([B.hZ,B.i_,B.i0,B.i1,B.Jt,B.Ju,B.Jv,B.Jw,B.an0]),A.ah("H")) +B.agS=A.a(s(["tammi","helmi","maalis","huhti","touko","kes\xe4","hein\xe4","elo","syys","loka","marras","joulu"]),t.s) +B.De=A.a(s(["So","Mo","Di","Mi","Do","Fr","Sa"]),t.s) +B.fA=A.a(s([0,0,26498,1023,65534,34815,65534,18431]),t.t) +B.Df=A.a(s(["Su.","M\xe4.","Zi.","Mi.","Du.","Fr.","Sa."]),t.s) +B.agT=A.a(s(["EEEE, d \u05d1MMMM y","d \u05d1MMMM y","d \u05d1MMM y","d.M.y"]),t.s) +B.kw=A.a(s(["\u1798\u1780\u179a\u17b6","\u1780\u17bb\u1798\u17d2\u1797\u17c8","\u1798\u17b8\u1793\u17b6","\u1798\u17c1\u179f\u17b6","\u17a7\u179f\u1797\u17b6","\u1798\u17b7\u1790\u17bb\u1793\u17b6","\u1780\u1780\u17d2\u1780\u178a\u17b6","\u179f\u17b8\u17a0\u17b6","\u1780\u1789\u17d2\u1789\u17b6","\u178f\u17bb\u179b\u17b6","\u179c\u17b7\u1785\u17d2\u1786\u17b7\u1780\u17b6","\u1792\u17d2\u1793\u17bc"]),t.s) +B.kx=A.a(s(["Januar","Februar","M\xe4rz","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"]),t.s) +B.agU=A.a(s(["d","l","m","m","j","v","s"]),t.s) +B.ct=A.a(s([2817806672,1698790995,2752977603,1579629206,1806384075,1167925233,1492823211,65227667,4197458005,1836494326,1993115793,1275262245,3622129660,3408578007,1144333952,2741155215,1521606217,465184103,250234264,3237895649,1966064386,4031545618,2537983395,4191382470,1603208167,2626819477,2054012907,1498584538,2210321453,561273043,1776306473,3368652356,2311222634,2039411832,1045993835,1907959773,1340194486,2911432727,2887829862,986611124,1256153880,823846274,860985184,2136171077,2003087840,2926295940,2692873756,722008468,1749577816,4249194265,1826526343,4168831671,3547573027,38499042,2401231703,2874500650,686535175,3266653955,2076542618,137876389,2267558130,2780767154,1778582202,2182540636,483363371,3027871634,4060607472,3798552225,4107953613,3188000469,1647628575,4272342154,1395537053,1442030240,3783918898,3958809717,3968011065,4016062634,2675006982,275692881,2317434617,115185213,88006062,3185986886,2371129781,1573155077,3557164143,357589247,4221049124,3921532567,1128303052,2665047927,1122545853,2341013384,1528424248,4006115803,175939911,256015593,512030921,0,2256537987,3979031112,1880170156,1918528590,4279172603,948244310,3584965918,959264295,3641641572,2791073825,1415289809,775300154,1728711857,3881276175,2532226258,2442861470,3317727311,551313826,1266113129,437394454,3130253834,715178213,3760340035,387650077,218697227,3347837613,2830511545,2837320904,435246981,125153100,3717852859,1618977789,637663135,4117912764,996558021,2130402100,692292470,3324234716,4243437160,4058298467,3694254026,2237874704,580326208,298222624,608863613,1035719416,855223825,2703869805,798891339,817028339,1384517100,3821107152,380840812,3111168409,1217663482,1693009698,2365368516,1072734234,746411736,2419270383,1313441735,3510163905,2731183358,198481974,2180359887,3732579624,2394413606,3215802276,2637835492,2457358349,3428805275,1182684258,328070850,3101200616,4147719774,2948825845,2153619390,2479909244,768962473,304467891,2578237499,2098729127,1671227502,3141262203,2015808777,408514292,3080383489,2588902312,1855317605,3875515006,3485212936,3893751782,2615655129,913263310,161475284,2091919830,2997105071,591342129,2493892144,1721906624,3159258167,3397581990,3499155632,3634836245,2550460746,3672916471,1355644686,4136703791,3595400845,2968470349,1303039060,76997855,3050413795,2288667675,523026872,1365591679,3932069124,898367837,1955068531,1091304238,493335386,3537605202,1443948851,1205234963,1641519756,211892090,351820174,1007938441,665439982,3378624309,3843875309,2974251580,3755121753,1945261375,3457423481,935818175,3455538154,2868731739,1866325780,3678697606,4088384129,3295197502,874788908,1084473951,3273463410,635616268,1228679307,2500722497,27801969,3003910366,3837057180,3243664528,2227927905,3056784752,1550600308,1471729730]),t.t) +B.agV=A.a(s(["B.","B.e.","\xc7.a.","\xc7.","C.a.","C.","\u015e."]),t.s) +B.Dg=A.a(s(["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Agu","Sep","Okt","Nov","Des"]),t.s) +B.Dh=A.a(s(["\u1798","\u1780","\u1798","\u1798","\u17a7","\u1798","\u1780","\u179f","\u1780","\u178f","\u179c","\u1792"]),t.s) +B.Di=A.a(s(["text","multiline","number","phone","datetime","emailAddress","url","visiblePassword","name","address","none"]),t.s) +B.dZ=A.a(s(["Lin","Lun","Mar","Miy","Huw","Biy","Sab"]),t.s) +B.agW=A.a(s(["prijepodne","popodne"]),t.s) +B.agX=A.a(s(["sausis","vasaris","kovas","balandis","gegu\u017e\u0117","bir\u017eelis","liepa","rugpj\u016btis","rugs\u0117jis","spalis","lapkritis","gruodis"]),t.s) +B.kz=A.a(s(["Linggo","Lunes","Martes","Miyerkules","Huwebes","Biyernes","Sabado"]),t.s) +B.ky=A.a(s(["ned","pon","uto","sri","\u010det","pet","sub"]),t.s) +B.agY=A.a(s(["1-ci kv.","2-ci kv.","3-c\xfc kv.","4-c\xfc kv."]),t.s) +B.agZ=A.a(s(["1.\xa0cet.","2.\xa0cet.","3.\xa0cet.","4.\xa0cet."]),t.s) +B.kA=A.a(s(["P","E","T","K","N","R","L"]),t.s) +B.ag=A.a(s(["{1} {0}","{1} {0}","{1} {0}","{1} {0}"]),t.s) +B.ah_=A.a(s(["\u0d9a\u0dcf\u0dbb\u0dca:1","\u0d9a\u0dcf\u0dbb\u0dca:2","\u0d9a\u0dcf\u0dbb\u0dca:3","\u0d9a\u0dcf\u0dbb\u0dca:4"]),t.s) +B.ah0=A.a(s(["tremujori I","tremujori II","tremujori III","tremujori IV"]),t.s) +B.Dj=A.a(s(["\u1303","\u134c","\u121b","\u12a4","\u121c","\u1301","\u1301","\u12a6","\u1234","\u12a6","\u1296","\u12f2"]),t.s) +B.Dk=A.a(s(["Jan","Feb","Mas","Eph","Mey","Jun","Jul","Aga","Sep","Okt","Nov","Dis"]),t.s) +B.Dl=A.a(s(["urt.","ots.","mar.","api.","mai.","eka.","uzt.","abu.","ira.","urr.","aza.","abe."]),t.s) +B.o2=A.a(s(["\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0","\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0","\u09ae\u09be\u09b0\u09cd\u099a","\u098f\u09aa\u09cd\u09b0\u09bf\u09b2","\u09ae\u09c7","\u099c\u09c1\u09a8","\u099c\u09c1\u09b2\u09be\u0987","\u0986\u0997\u09b8\u09cd\u099f","\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0","\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0","\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0","\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0"]),t.s) +B.ah1=A.a(s(["\u0442\u0430\u04a3\u043a\u044b","\u0442\u04af\u0448\u0442\u04e9\u043d \u043a\u0438\u0439\u0438\u043d\u043a\u0438"]),t.s) +B.Dm=A.a(s(["{1} 'u' {0}","{1} 'u' {0}","{1} {0}","{1} {0}"]),t.s) +B.ah2=A.a(s(["\u043f\u0440\u0435\u0442\u043f\u043b\u0430\u0434\u043d\u0435","\u043f\u043e\u043f\u043b\u0430\u0434\u043d\u0435"]),t.s) +B.kB=A.a(s(["\u9031\u65e5","\u9031\u4e00","\u9031\u4e8c","\u9031\u4e09","\u9031\u56db","\u9031\u4e94","\u9031\u516d"]),t.s) +B.Dn=A.a(s(["nedelja","ponedeljek","torek","sreda","\u010detrtek","petek","sobota"]),t.s) +B.Do=A.a(s(["Sondag","Maandag","Dinsdag","Woensdag","Donderdag","Vrydag","Saterdag"]),t.s) +B.ah3=A.a(s(["EEEE, d 'de' MMMM 'de' y","d 'de' MMMM 'de' y","d 'de' MMM 'de' y","dd/MM/y"]),t.s) +B.ah4=A.a(s(["\u0b95\u0bbf.\u0bae\u0bc1.","\u0b95\u0bbf.\u0baa\u0bbf."]),t.s) +B.Dp=A.a(s(["jan.","feb.","mrt.","apr.","mei","jun.","jul.","aug.","sep.","okt.","nov.","dec."]),t.s) +B.ah5=A.a(s(["domingo","luns","martes","m\xe9rcores","xoves","venres","s\xe1bado"]),t.s) +B.ah6=A.a(s(["1\ubd84\uae30","2\ubd84\uae30","3\ubd84\uae30","4\ubd84\uae30"]),t.s) +B.Dq=A.a(s(["\u0644\u0648\u0645\u0693\u06cd \u0631\u0628\u0639\u0647","\u06f2\u0645\u0647 \u0631\u0628\u0639\u0647","\u06f3\u0645\u0647 \u0631\u0628\u0639\u0647","\u06f4\u0645\u0647 \u0631\u0628\u0639\u0647"]),t.s) +B.Dr=A.a(s(["f\xf8r Kristus","etter Kristus"]),t.s) +B.Ds=A.a(s(["So.","Ma.","Di.","Wo.","Do.","Vr.","Sa."]),t.s) +B.Du=A.a(s(["S","M","B","T","S","H","M"]),t.s) +B.Dt=A.a(s(["\u0906\u0907\u0924\u092c\u093e\u0930","\u0938\u094b\u092e\u092c\u093e\u0930","\u092e\u0919\u094d\u0917\u0932\u092c\u093e\u0930","\u092c\u0941\u0927\u092c\u093e\u0930","\u092c\u093f\u0939\u093f\u092c\u093e\u0930","\u0936\u0941\u0915\u094d\u0930\u092c\u093e\u0930","\u0936\u0928\u093f\u092c\u093e\u0930"]),t.s) +B.ah7=A.a(s(["EEEE, d MMMM y","d MMMM y","d.M.y","d.M.yy"]),t.s) +B.Dv=A.a(s(["\u0ea7\u0eb1\u0e99\u0ead\u0eb2\u0e97\u0eb4\u0e94","\u0ea7\u0eb1\u0e99\u0e88\u0eb1\u0e99","\u0ea7\u0eb1\u0e99\u0ead\u0eb1\u0e87\u0e84\u0eb2\u0e99","\u0ea7\u0eb1\u0e99\u0e9e\u0eb8\u0e94","\u0ea7\u0eb1\u0e99\u0e9e\u0eb0\u0eab\u0eb1\u0e94","\u0ea7\u0eb1\u0e99\u0eaa\u0eb8\u0e81","\u0ea7\u0eb1\u0e99\u0ec0\u0eaa\u0ebb\u0eb2"]),t.s) +B.ah8=A.a(s(["Ion","Chw","Maw","Ebr","Mai","Meh","Gor","Awst","Medi","Hyd","Tach","Rhag"]),t.s) +B.ea=new A.ha(1,"fuchsia") +B.eQ=new A.ha(3,"linux") +B.eR=new A.ha(5,"windows") +B.ah9=A.a(s([B.bO,B.ea,B.b1,B.eQ,B.dc,B.eR]),A.ah("H")) +B.aha=A.a(s(["\u0554\u0580\u056b\u057d\u057f\u0578\u057d\u056b\u0581 \u0561\u057c\u0561\u057b","\u0554\u0580\u056b\u057d\u057f\u0578\u057d\u056b\u0581 \u0570\u0565\u057f\u0578"]),t.s) +B.ahb=A.a(s(["Xaneiro","Febreiro","Marzo","Abril","Maio","Xu\xf1o","Xullo","Agosto","Setembro","Outubro","Novembro","Decembro"]),t.s) +B.Dw=A.a(s(["\u092a\u0939\u093f\u0932\u094b \u0938\u0924\u094d\u0930","\u0926\u094b\u0938\u094d\u0930\u094b \u0938\u0924\u094d\u0930","\u0924\u0947\u0938\u094d\u0930\u094b \u0938\u0924\u094d\u0930","\u091a\u094c\u0925\u094b \u0938\u0924\u094d\u0930"]),t.s) +B.aA=A.a(s([99,124,119,123,242,107,111,197,48,1,103,43,254,215,171,118,202,130,201,125,250,89,71,240,173,212,162,175,156,164,114,192,183,253,147,38,54,63,247,204,52,165,229,241,113,216,49,21,4,199,35,195,24,150,5,154,7,18,128,226,235,39,178,117,9,131,44,26,27,110,90,160,82,59,214,179,41,227,47,132,83,209,0,237,32,252,177,91,106,203,190,57,74,76,88,207,208,239,170,251,67,77,51,133,69,249,2,127,80,60,159,168,81,163,64,143,146,157,56,245,188,182,218,33,16,255,243,210,205,12,19,236,95,151,68,23,196,167,126,61,100,93,25,115,96,129,79,220,34,42,144,136,70,238,184,20,222,94,11,219,224,50,58,10,73,6,36,92,194,211,172,98,145,149,228,121,231,200,55,109,141,213,78,169,108,86,244,234,101,122,174,8,186,120,37,46,28,166,180,198,232,221,116,31,75,189,139,138,112,62,181,102,72,3,246,14,97,53,87,185,134,193,29,158,225,248,152,17,105,217,142,148,155,30,135,233,206,85,40,223,140,161,137,13,191,230,66,104,65,153,45,15,176,84,187,22]),t.t) +B.Dx=A.a(s(["\u056f\u056b\u0580","\u0565\u0580\u056f","\u0565\u0580\u0584","\u0579\u0580\u0584","\u0570\u0576\u0563","\u0578\u0582\u0580","\u0577\u0562\u0569"]),t.s) +B.Dy=A.a(s(["\u043d\u0435\u0434\u0435\u043b\u0430","\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a","\u0432\u0442\u043e\u0440\u043d\u0438\u043a","\u0441\u0440\u0435\u0434\u0430","\u0447\u0435\u0442\u0432\u0440\u0442\u043e\u043a","\u043f\u0435\u0442\u043e\u043a","\u0441\u0430\u0431\u043e\u0442\u0430"]),t.s) +B.o3=A.a(s(["\u0698\u0627\u0646\u0648\u06cc\u0647","\u0641\u0648\u0631\u06cc\u0647","\u0645\u0627\u0631\u0633","\u0622\u0648\u0631\u06cc\u0644","\u0645\u0647","\u0698\u0648\u0626\u0646","\u0698\u0648\u0626\u06cc\u0647","\u0627\u0648\u062a","\u0633\u067e\u062a\u0627\u0645\u0628\u0631","\u0627\u06a9\u062a\u0628\u0631","\u0646\u0648\u0627\u0645\u0628\u0631","\u062f\u0633\u0627\u0645\u0628\u0631"]),t.s) +B.ahc=A.a(s(["Prvi kvartal","Drugi kvartal","Tre\u0107i kvartal","\u010cetvrti kvartal"]),t.s) +B.ahe=A.a(s(["{1} \u0b85\u0ba9\u0bcd\u0bb1\u0bc1 {0}","{1} \u0b85\u0ba9\u0bcd\u0bb1\u0bc1 {0}","{1}, {0}","{1}, {0}"]),t.s) +B.fB=A.a(s(["\u661f\u671f\u65e5","\u661f\u671f\u4e00","\u661f\u671f\u4e8c","\u661f\u671f\u4e09","\u661f\u671f\u56db","\u661f\u671f\u4e94","\u661f\u671f\u516d"]),t.s) +B.ahd=A.a(s(["leden","\xfanor","b\u0159ezen","duben","kv\u011bten","\u010derven","\u010dervenec","srpen","z\xe1\u0159\xed","\u0159\xedjen","listopad","prosinec"]),t.s) +B.kC=A.a(s(["n","p","u","s","\u010d","p","s"]),t.s) +B.Dz=A.a(s([B.dm,B.jk,B.n_]),t.dP) +B.ahf=A.a(s(["{1} \u0930\u094b\u091c\u0940 {0}","{1} \u0930\u094b\u091c\u0940 {0}","{1}, {0}","{1}, {0}"]),t.s) +B.DA=A.a(s(["\u064a","\u0641","\u0645","\u0623","\u0648","\u0646","\u0644","\u063a","\u0633","\u0643","\u0628","\u062f"]),t.s) +B.ahh=A.a(s(["pr. Kr.","po. Kr."]),t.s) +B.ahi=A.a(s(["\u0633\u200c\u0645\u06f1","\u0633\u200c\u0645\u06f2","\u0633\u200c\u0645\u06f3","\u0633\u200c\u0645\u06f4"]),t.s) +B.DB=A.a(s(["januar","februar","mart","april","maj","juni","juli","august","septembar","oktobar","novembar","decembar"]),t.s) +B.DC=A.a(s(["jan","feb","mar","apr","maj","jun","jul","avg","sep","okt","nov","dec"]),t.s) +B.ahj=A.a(s(["h:mm:ss a, zzzz","h:mm:ss a, z","h:mm:ss a","h:mm a"]),t.s) +B.ahk=A.a(s(["I \u10d9\u10d5\u10d0\u10e0\u10e2\u10d0\u10da\u10d8","II \u10d9\u10d5\u10d0\u10e0\u10e2\u10d0\u10da\u10d8","III \u10d9\u10d5\u10d0\u10e0\u10e2\u10d0\u10da\u10d8","IV \u10d9\u10d5\u10d0\u10e0\u10e2\u10d0\u10da\u10d8"]),t.s) +B.DD=A.a(s(["S","M","D","W","D","V","S"]),t.s) +B.ahl=A.a(s(["1\u5b63\u5ea6","2\u5b63\u5ea6","3\u5b63\u5ea6","4\u5b63\u5ea6"]),t.s) +B.o4=A.a(s([!0,!1]),t.HZ) +B.DE=A.a(s(["Robo ya 1","Robo ya 2","Robo ya 3","Robo ya 4"]),t.s) +B.ahm=A.a(s(["Milattan \xd6nce","Milattan Sonra"]),t.s) +B.ahn=A.a(s(["dop.","pop."]),t.s) +B.DF=A.a(s(["dom.","seg.","ter.","qua.","qui.","sex.","s\xe1b."]),t.s) +B.DG=A.a(s(["\u0e21\u0e01\u0e23\u0e32\u0e04\u0e21","\u0e01\u0e38\u0e21\u0e20\u0e32\u0e1e\u0e31\u0e19\u0e18\u0e4c","\u0e21\u0e35\u0e19\u0e32\u0e04\u0e21","\u0e40\u0e21\u0e29\u0e32\u0e22\u0e19","\u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21","\u0e21\u0e34\u0e16\u0e38\u0e19\u0e32\u0e22\u0e19","\u0e01\u0e23\u0e01\u0e0e\u0e32\u0e04\u0e21","\u0e2a\u0e34\u0e07\u0e2b\u0e32\u0e04\u0e21","\u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19","\u0e15\u0e38\u0e25\u0e32\u0e04\u0e21","\u0e1e\u0e24\u0e28\u0e08\u0e34\u0e01\u0e32\u0e22\u0e19","\u0e18\u0e31\u0e19\u0e27\u0e32\u0e04\u0e21"]),t.s) +B.J={code:0,name:1,nativeName:2} +B.amH=new A.a2(B.J,["en","English","English"],t.w) +B.amv=new A.a2(B.J,["en-us","English (US)","English (US)"],t.w) +B.amD=new A.a2(B.J,["ca","Catalan; Valencian","Catal\xe0"],t.w) +B.alK=new A.a2(B.J,["de","German","Deutsch"],t.w) +B.amw=new A.a2(B.J,["es","Spanish; Castilian","Espa\xf1ol"],t.w) +B.alV=new A.a2(B.J,["es-419","Spanish; Castilian","Espa\xf1ol (Latinoam\xe9rica)"],t.w) +B.alL=new A.a2(B.J,["fr","French","Fran\xe7ais"],t.w) +B.ama=new A.a2(B.J,["id","Indonesian","Indonesia"],t.w) +B.am4=new A.a2(B.J,["it","Italian","Italiano"],t.w) +B.am_=new A.a2(B.J,["pt","Portuguese","Portugu\xeas"],t.w) +B.alO=new A.a2(B.J,["pt-pt","Portuguese","Portugu\xeas (Portugal)"],t.w) +B.alR=new A.a2(B.J,["pt-br","Portuguese; Brasil","Portugu\xeas (Brasil)"],t.w) +B.amh=new A.a2(B.J,["vi","Vietnamese","Ti\u1ebfng Vi\u1ec7t"],t.w) +B.alY=new A.a2(B.J,["tr","Turkish","T\xfcrk\xe7e"],t.w) +B.am7=new A.a2(B.J,["ru","Russian","\u0440\u0443\u0441\u0441\u043a\u0438\u0439"],t.w) +B.amx=new A.a2(B.J,["ar","Arabic","\u0627\u0644\u0639\u0631\u0628\u064a\u0629"],t.w) +B.amG=new A.a2(B.J,["hi","Hindi","\u0939\u093f\u0928\u094d\u0926\u0940"],t.w) +B.am1=new A.a2(B.J,["th","Thai","\u0e44\u0e17\u0e22"],t.w) +B.alT=new A.a2(B.J,["zh","Chinese","\u4e2d\u6587"],t.w) +B.amt=new A.a2(B.J,["zh-hans","Simplified Chinese","\u7b80\u4f53\u4e2d\u6587"],t.w) +B.amd=new A.a2(B.J,["zh-hant","Traditional Chinese","\u7e41\u9ad4\u4e2d\u6587"],t.w) +B.amr=new A.a2(B.J,["zh-rhk","Traditional Chinese (HK)","\u7e41\u4f53\u4e2d\u6587\uff08\u9999\u6e2f\uff09"],t.w) +B.ami=new A.a2(B.J,["zh-rtw","Traditional Chinese (TW)","\u7e41\u4f53\u4e2d\u6587\uff08\u53f0\u6e7e\uff09"],t.w) +B.amu=new A.a2(B.J,["ja","Japanese","\u65e5\u672c\u8a9e"],t.w) +B.am0=new A.a2(B.J,["ko","Korean","\ud55c\uad6d\uc5b4"],t.w) +B.amA=new A.a2(B.J,["zu","Zulu","isiZulu"],t.w) +B.amy=new A.a2(B.J,["xh","Xhosa","isiXhosa"],t.w) +B.amo=new A.a2(B.J,["uk","Ukrainian","\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0430"],t.w) +B.amk=new A.a2(B.J,["ro","Romanian","Rom\xe2n\u0103"],t.w) +B.am8=new A.a2(B.J,["bg","Bulgarian","\u0431\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438"],t.w) +B.amp=new A.a2(B.J,["cs","Czech","\u010de\u0161tina"],t.w) +B.alU=new A.a2(B.J,["pl","Polish","polski"],t.w) +B.alS=new A.a2(B.J,["no","Norwegian","Norsk"],t.w) +B.amg=new A.a2(B.J,["nl","Dutch","Nederlands"],t.w) +B.alN=new A.a2(B.J,["my","Burmese","\u1017\u1019\u102c\u1005\u102c"],t.w) +B.amB=new A.a2(B.J,["ms","Malay","Malaysia"],t.w) +B.am9=new A.a2(B.J,["mn","Mongolian","\u041c\u043e\u043d\u0433\u043e\u043b"],t.w) +B.aml=new A.a2(B.J,["ml","Malayalam","\u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02"],t.w) +B.amj=new A.a2(B.J,["ku","Kurdish","Kurd\xee"],t.w) +B.amI=new A.a2(B.J,["hu","Hungarian","Magyar"],t.w) +B.ams=new A.a2(B.J,["hr","Croatian","Hrvatski"],t.w) +B.amz=new A.a2(B.J,["he","Hebrew","\u05e2\u05d1\u05e8\u05d9\u05ea"],t.w) +B.amc=new A.a2(B.J,["fil","Filipino","Filipino"],t.w) +B.alZ=new A.a2(B.J,["fi","Finnish","suomi"],t.w) +B.am2=new A.a2(B.J,["fa","Persian","\u0641\u0627\u0631\u0633\u06cc"],t.w) +B.alM=new A.a2(B.J,["eu","Basque","euskara"],t.w) +B.alQ=new A.a2(B.J,["el","Greek","\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"],t.w) +B.amE=new A.a2(B.J,["da","Danish","dansk"],t.w) +B.am3=new A.a2(B.J,["bn","Bengali","\u09ac\u09be\u0982\u09b2\u09be"],t.w) +B.ame=new A.a2(B.J,["lt","Lithuanian","lietuvi\u0173 kalba"],t.w) +B.alX=new A.a2(B.J,["sh","Serbo-Croatian","srpskohrvatski"],t.w) +B.amF=new A.a2(B.J,["af","Afrikaans","Afrikaans"],t.w) +B.amC=new A.a2(B.J,["am","Amharic","\u12a0\u121b\u122d\u129b"],t.w) +B.amn=new A.a2(B.J,["az","Azerbaijani","Az\u0259rbaycan"],t.w) +B.amb=new A.a2(B.J,["be","Belarusian","\u0431\u0435\u043b\u0430\u0440\u0443\u0441\u043a\u0430\u044f"],t.w) +B.am6=new A.a2(B.J,["bs","Bosnian","bosanski"],t.w) +B.Jo=new A.a2(B.J,["sv","Swedish","svenska"],t.w) +B.alW=new A.a2(B.J,["nb-no","Norwegian Bokm\xe5l (Norway)","Norwegian Bokm\xe5l (Norway)"],t.w) +B.am5=new A.a2(B.J,["localsourcelang","Local source","Local source"],t.w) +B.amm=new A.a2(B.J,["installed","Installed","Installed"],t.w) +B.amJ=new A.a2(B.J,["lastUsed","Last Used","Last Used"],t.w) +B.amq=new A.a2(B.J,["update","Updates pending","Updates pending"],t.w) +B.alP=new A.a2(B.J,["other","other langs","Other"],t.w) +B.amf=new A.a2(B.J,["all","All","All"],t.w) +B.aho=A.a(s([B.amH,B.amv,B.amD,B.alK,B.amw,B.alV,B.alL,B.ama,B.am4,B.am_,B.alO,B.alR,B.amh,B.alY,B.am7,B.amx,B.amG,B.am1,B.alT,B.amt,B.amd,B.amr,B.ami,B.amu,B.am0,B.amA,B.amy,B.amo,B.amk,B.am8,B.amp,B.alU,B.alS,B.amg,B.alN,B.amB,B.am9,B.aml,B.amj,B.amI,B.ams,B.amz,B.amc,B.alZ,B.am2,B.alM,B.alQ,B.amE,B.am3,B.ame,B.alX,B.amF,B.amC,B.amn,B.amb,B.am6,B.Jo,B.Jo,B.alW,B.am5,B.amm,B.amJ,B.amq,B.alP,B.amf]),A.ah("H>")) +B.ahp=A.a(s(["f\xf6re Kristus","efter Kristus"]),t.s) +B.ahq=A.a(s(["janu\xe1ra","febru\xe1ra","marca","apr\xedla","m\xe1ja","j\xfana","j\xfala","augusta","septembra","okt\xf3bra","novembra","decembra"]),t.s) +B.cN=A.a(s(["{1}, {0}","{1}, {0}","{1}, {0}","{1}, {0}"]),t.s) +B.DH=A.a(s(["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"]),t.s) +B.ahr=A.a(s(["pred Kristusom","po Kristusu"]),t.s) +B.DI=A.a(s(["Januarie","Februarie","Maart","April","Mei","Junie","Julie","Augustus","September","Oktober","November","Desember"]),t.s) +B.pW=new A.fC(0,"DoubleQuote") +B.h1=new A.fC(1,"SingleQuote") +B.bP=new A.fC(2,"HebrewLetter") +B.lK=new A.fC(3,"CR") +B.lL=new A.fC(4,"LF") +B.q_=new A.fC(5,"Newline") +B.iE=new A.fC(6,"Extend") +B.aBl=new A.fC(7,"RegionalIndicator") +B.iF=new A.fC(8,"Format") +B.iG=new A.fC(9,"Katakana") +B.cU=new A.fC(10,"ALetter") +B.pX=new A.fC(11,"MidLetter") +B.pY=new A.fC(12,"MidNum") +B.iC=new A.fC(13,"MidNumLet") +B.du=new A.fC(14,"Numeric") +B.lJ=new A.fC(15,"ExtendNumLet") +B.iD=new A.fC(16,"ZWJ") +B.pZ=new A.fC(17,"WSegSpace") +B.Pq=new A.fC(18,"Unknown") +B.ahs=A.a(s([B.pW,B.h1,B.bP,B.lK,B.lL,B.q_,B.iE,B.aBl,B.iF,B.iG,B.cU,B.pX,B.pY,B.iC,B.du,B.lJ,B.iD,B.pZ,B.Pq]),A.ah("H")) +B.aht=A.a(s(["gen.","febr.","mar\xe7","abr.","maig","juny","jul.","ag.","set.","oct.","nov.","des."]),t.s) +B.ahu=A.a(s(["*::class","*::dir","*::draggable","*::hidden","*::id","*::inert","*::itemprop","*::itemref","*::itemscope","*::lang","*::spellcheck","*::title","*::translate","A::accesskey","A::coords","A::hreflang","A::name","A::shape","A::tabindex","A::target","A::type","AREA::accesskey","AREA::alt","AREA::coords","AREA::nohref","AREA::shape","AREA::tabindex","AREA::target","AUDIO::controls","AUDIO::loop","AUDIO::mediagroup","AUDIO::muted","AUDIO::preload","BDO::dir","BODY::alink","BODY::bgcolor","BODY::link","BODY::text","BODY::vlink","BR::clear","BUTTON::accesskey","BUTTON::disabled","BUTTON::name","BUTTON::tabindex","BUTTON::type","BUTTON::value","CANVAS::height","CANVAS::width","CAPTION::align","COL::align","COL::char","COL::charoff","COL::span","COL::valign","COL::width","COLGROUP::align","COLGROUP::char","COLGROUP::charoff","COLGROUP::span","COLGROUP::valign","COLGROUP::width","COMMAND::checked","COMMAND::command","COMMAND::disabled","COMMAND::label","COMMAND::radiogroup","COMMAND::type","DATA::value","DEL::datetime","DETAILS::open","DIR::compact","DIV::align","DL::compact","FIELDSET::disabled","FONT::color","FONT::face","FONT::size","FORM::accept","FORM::autocomplete","FORM::enctype","FORM::method","FORM::name","FORM::novalidate","FORM::target","FRAME::name","H1::align","H2::align","H3::align","H4::align","H5::align","H6::align","HR::align","HR::noshade","HR::size","HR::width","HTML::version","IFRAME::align","IFRAME::frameborder","IFRAME::height","IFRAME::marginheight","IFRAME::marginwidth","IFRAME::width","IMG::align","IMG::alt","IMG::border","IMG::height","IMG::hspace","IMG::ismap","IMG::name","IMG::usemap","IMG::vspace","IMG::width","INPUT::accept","INPUT::accesskey","INPUT::align","INPUT::alt","INPUT::autocomplete","INPUT::autofocus","INPUT::checked","INPUT::disabled","INPUT::inputmode","INPUT::ismap","INPUT::list","INPUT::max","INPUT::maxlength","INPUT::min","INPUT::multiple","INPUT::name","INPUT::placeholder","INPUT::readonly","INPUT::required","INPUT::size","INPUT::step","INPUT::tabindex","INPUT::type","INPUT::usemap","INPUT::value","INS::datetime","KEYGEN::disabled","KEYGEN::keytype","KEYGEN::name","LABEL::accesskey","LABEL::for","LEGEND::accesskey","LEGEND::align","LI::type","LI::value","LINK::sizes","MAP::name","MENU::compact","MENU::label","MENU::type","METER::high","METER::low","METER::max","METER::min","METER::value","OBJECT::typemustmatch","OL::compact","OL::reversed","OL::start","OL::type","OPTGROUP::disabled","OPTGROUP::label","OPTION::disabled","OPTION::label","OPTION::selected","OPTION::value","OUTPUT::for","OUTPUT::name","P::align","PRE::width","PROGRESS::max","PROGRESS::min","PROGRESS::value","SELECT::autocomplete","SELECT::disabled","SELECT::multiple","SELECT::name","SELECT::required","SELECT::size","SELECT::tabindex","SOURCE::type","TABLE::align","TABLE::bgcolor","TABLE::border","TABLE::cellpadding","TABLE::cellspacing","TABLE::frame","TABLE::rules","TABLE::summary","TABLE::width","TBODY::align","TBODY::char","TBODY::charoff","TBODY::valign","TD::abbr","TD::align","TD::axis","TD::bgcolor","TD::char","TD::charoff","TD::colspan","TD::headers","TD::height","TD::nowrap","TD::rowspan","TD::scope","TD::valign","TD::width","TEXTAREA::accesskey","TEXTAREA::autocomplete","TEXTAREA::cols","TEXTAREA::disabled","TEXTAREA::inputmode","TEXTAREA::name","TEXTAREA::placeholder","TEXTAREA::readonly","TEXTAREA::required","TEXTAREA::rows","TEXTAREA::tabindex","TEXTAREA::wrap","TFOOT::align","TFOOT::char","TFOOT::charoff","TFOOT::valign","TH::abbr","TH::align","TH::axis","TH::bgcolor","TH::char","TH::charoff","TH::colspan","TH::headers","TH::height","TH::nowrap","TH::rowspan","TH::scope","TH::valign","TH::width","THEAD::align","THEAD::char","THEAD::charoff","THEAD::valign","TR::align","TR::bgcolor","TR::char","TR::charoff","TR::valign","TRACK::default","TRACK::kind","TRACK::label","TRACK::srclang","UL::compact","UL::type","VIDEO::controls","VIDEO::height","VIDEO::loop","VIDEO::mediagroup","VIDEO::muted","VIDEO::preload","VIDEO::width"]),t.s) +B.kD=A.a(s(["\u0458","\u0444","\u043c","\u0430","\u043c","\u0458","\u0458","\u0430","\u0441","\u043e","\u043d","\u0434"]),t.s) +B.ahv=A.a(s(["EEEE \u0e97\u0eb5 d MMMM G y","d MMMM y","d MMM y","d/M/y"]),t.s) +B.ahw=A.a(s(["\u0441\u0456\u0447.","\u043b\u044e\u0442.","\u0431\u0435\u0440.","\u043a\u0432\u0456\u0442.","\u0442\u0440\u0430\u0432.","\u0447\u0435\u0440\u0432.","\u043b\u0438\u043f.","\u0441\u0435\u0440\u043f.","\u0432\u0435\u0440.","\u0436\u043e\u0432\u0442.","\u043b\u0438\u0441\u0442.","\u0433\u0440\u0443\u0434."]),t.s) +B.ahx=A.a(s(["H \u0e19\u0e32\u0e2c\u0e34\u0e01\u0e32 mm \u0e19\u0e32\u0e17\u0e35 ss \u0e27\u0e34\u0e19\u0e32\u0e17\u0e35 zzzz","H \u0e19\u0e32\u0e2c\u0e34\u0e01\u0e32 mm \u0e19\u0e32\u0e17\u0e35 ss \u0e27\u0e34\u0e19\u0e32\u0e17\u0e35 z","HH:mm:ss","HH:mm"]),t.s) +B.DJ=A.a(s(["\u0c1c","\u0c2b\u0c3f","\u0c2e\u0c3e","\u0c0f","\u0c2e\u0c47","\u0c1c\u0c42","\u0c1c\u0c41","\u0c06","\u0c38\u0c46","\u0c05","\u0c28","\u0c21\u0c3f"]),t.s) +B.ahy=A.a(s(["1T","2T","3T","4T"]),t.s) +B.DK=A.a(s(["S","P","O","T","C","P","S"]),t.s) +B.ahz=A.a(s(["\u0399\u03b1\u03bd","\u03a6\u03b5\u03b2","\u039c\u03ac\u03c1","\u0391\u03c0\u03c1","\u039c\u03ac\u03b9","\u0399\u03bf\u03cd\u03bd","\u0399\u03bf\u03cd\u03bb","\u0391\u03cd\u03b3","\u03a3\u03b5\u03c0","\u039f\u03ba\u03c4","\u039d\u03bf\u03ad","\u0394\u03b5\u03ba"]),t.s) +B.ahA=A.a(s(["y. MMMM d., EEEE","y. MMMM d.","y. MMM d.","y. MM. dd."]),t.s) +B.ahB=A.a(s(["EEEE, d MMMM y","d MMMM y","d MMM y","d/MM/yy"]),t.s) +B.DL=A.a(s(["\u1010","\u1010","\u1021","\u1017","\u1000","\u101e","\u1005"]),t.s) +B.DM=A.a(s(["janar","shkurt","mars","prill","maj","qershor","korrik","gusht","shtator","tetor","n\xebntor","dhjetor"]),t.s) +B.DN=A.a(s(["Son","Mso","Bil","Tha","Sin","Hla","Mgq"]),t.s) +B.DO=A.a(s(["J","F","M","A","M","J","J","O","S","O","N","D"]),t.s) +B.ahE=A.a(s(["\xd6\xd6","\xd6S"]),t.s) +B.ahD=A.a(s(["\u092a\u0942\u0930\u094d\u0935\u093e\u0939\u094d\u0928","\u0905\u092a\u0930\u093e\u0939\u094d\u0928"]),t.s) +B.ahC=A.a(s(["EEEE, dd MMMM, y","d MMMM, y","d MMM. y","dd.MM.yy"]),t.s) +B.DQ=A.a(s(["Y","F","M","A","M","I","I","A","S","O","N","D"]),t.s) +B.DP=A.a(s(["\u1303\u1295\u12e9\u12c8\u122a","\u134c\u1265\u1229\u12c8\u122a","\u121b\u122d\u127d","\u12a4\u1355\u122a\u120d","\u121c\u12ed","\u1301\u1295","\u1301\u120b\u12ed","\u12a6\u1308\u1235\u1275","\u1234\u1355\u1274\u121d\u1260\u122d","\u12a6\u12ad\u1276\u1260\u122d","\u1296\u126c\u121d\u1260\u122d","\u12f2\u1234\u121d\u1260\u122d"]),t.s) +B.DR=A.a(s(["\u1303\u1295\u12e9","\u134c\u1265\u1229","\u121b\u122d\u127d","\u12a4\u1355\u122a","\u121c\u12ed","\u1301\u1295","\u1301\u120b\u12ed","\u12a6\u1308\u1235","\u1234\u1355\u1274","\u12a6\u12ad\u1276","\u1296\u126c\u121d","\u12f2\u1234\u121d"]),t.s) +B.DT=A.a(s(["\u043d\u0435\u0434.","\u043f\u043e\u043d.","\u0432\u0442\u043e.","\u0441\u0440\u0435.","\u0447\u0435\u0442.","\u043f\u0435\u0442.","\u0441\u0430\u0431."]),t.s) +B.DS=A.a(s([200,203,301,304,302,307,404,405,501]),t.t) +B.DU=A.a(s(["Pazar","Pazartesi","Sal\u0131","\xc7ar\u015famba","Per\u015fembe","Cuma","Cumartesi"]),t.s) +B.ahF=A.a(s(["tammik.","helmik.","maalisk.","huhtik.","toukok.","kes\xe4k.","hein\xe4k.","elok.","syysk.","lokak.","marrask.","jouluk."]),t.s) +B.kE=A.a(s(["a.C.","d.C."]),t.s) +B.DV=A.a(s(["\u897f\u5143\u524d","\u897f\u5143"]),t.s) +B.ahG=A.a(s(["EEEE, d MMMM 'de' y","d MMMM 'de' y","d MMM y","d/M/yy"]),t.s) +B.DW=A.a(s(["\u0ea1\u0eb1\u0e87\u0e81\u0ead\u0e99","\u0e81\u0eb8\u0ea1\u0e9e\u0eb2","\u0ea1\u0eb5\u0e99\u0eb2","\u0ec0\u0ea1\u0eaa\u0eb2","\u0e9e\u0eb6\u0e94\u0eaa\u0eb0\u0e9e\u0eb2","\u0ea1\u0eb4\u0e96\u0eb8\u0e99\u0eb2","\u0e81\u0ecd\u0ea5\u0eb0\u0e81\u0ebb\u0e94","\u0eaa\u0eb4\u0e87\u0eab\u0eb2","\u0e81\u0eb1\u0e99\u0e8d\u0eb2","\u0e95\u0eb8\u0ea5\u0eb2","\u0e9e\u0eb0\u0e88\u0eb4\u0e81","\u0e97\u0eb1\u0e99\u0ea7\u0eb2"]),t.s) +B.ahH=A.a(s(["EEEE, d 'de' MMMM 'de' y","d 'de' MMMM 'de' y","d MMM y","d/M/y"]),t.s) +B.ahI=A.a(s(["m.a.","milodiy"]),t.s) +B.DX=A.a(s(["1.er trimestre","2.\xba trimestre","3.er trimestre","4.\xba trimestre"]),t.s) +B.DY=A.a(s(["J","F","M","\xc1","M","J","J","A","Sz","O","N","D"]),t.s) +B.ev=A.a(s(["EEEE, MMMM d, y","MMMM d, y","MMM d, y","M/d/yy"]),t.s) +B.cB=new A.o4(0,"leading") +B.cb=new A.o4(1,"title") +B.cc=new A.o4(2,"subtitle") +B.dg=new A.o4(3,"trailing") +B.ahJ=A.a(s([B.cB,B.cb,B.cc,B.dg]),A.ah("H")) +B.ahK=A.a(s([0,0.35,0.5,0.65,1]),t.up) +B.DZ=A.a(s(["ned\u011ble","pond\u011bl\xed","\xfater\xfd","st\u0159eda","\u010dtvrtek","p\xe1tek","sobota"]),t.s) +B.ahL=A.a(s(["\u0570\u0578\u0582\u0576\u057e\u0561\u0580\u056b","\u0583\u0565\u057f\u0580\u057e\u0561\u0580\u056b","\u0574\u0561\u0580\u057f\u056b","\u0561\u057a\u0580\u056b\u056c\u056b","\u0574\u0561\u0575\u056b\u057d\u056b","\u0570\u0578\u0582\u0576\u056b\u057d\u056b","\u0570\u0578\u0582\u056c\u056b\u057d\u056b","\u0585\u0563\u0578\u057d\u057f\u0578\u057d\u056b","\u057d\u0565\u057a\u057f\u0565\u0574\u0562\u0565\u0580\u056b","\u0570\u0578\u056f\u057f\u0565\u0574\u0562\u0565\u0580\u056b","\u0576\u0578\u0575\u0565\u0574\u0562\u0565\u0580\u056b","\u0564\u0565\u056f\u057f\u0565\u0574\u0562\u0565\u0580\u056b"]),t.s) +B.ahM=A.a(s(["s\xf8n","man","tir","ons","tor","fre","l\xf8r"]),t.s) +B.ahN=A.a(s(["Jan","Feb","Mar","Apr","May","June","July","Aug","Sept","Oct","Nov","Dec"]),t.s) +B.qf=new A.TR(0,"named") +B.aCG=new A.TR(1,"anonymous") +B.ahP=A.a(s([B.qf,B.aCG]),A.ah("H")) +B.ahO=A.a(s(["{1} 'kl'. {0}","{1} 'kl'. {0}","{1} {0}","{1} {0}"]),t.s) +B.E_=A.a(s(["\u0458\u0430\u043d","\u0444\u0435\u0431","\u043c\u0430\u0440","\u0430\u043f\u0440","\u043c\u0430\u0458","\u0458\u0443\u043d","\u0458\u0443\u043b","\u0430\u0432\u0433","\u0441\u0435\u043f","\u043e\u043a\u0442","\u043d\u043e\u0432","\u0434\u0435\u0446"]),t.s) +B.E0=A.a(s(["\u0a9c\u0abe","\u0aab\u0ac7","\u0aae\u0abe","\u0a8f","\u0aae\u0ac7","\u0a9c\u0ac2","\u0a9c\u0ac1","\u0a91","\u0ab8","\u0a91","\u0aa8","\u0aa1\u0abf"]),t.s) +B.ahQ=A.a(s(["\u0b92\u0ba9\u0bcd\u0bb1\u0bbe\u0bae\u0bcd \u0b95\u0bbe\u0bb2\u0bbe\u0ba3\u0bcd\u0b9f\u0bc1","\u0b87\u0bb0\u0ba3\u0bcd\u0b9f\u0bbe\u0bae\u0bcd \u0b95\u0bbe\u0bb2\u0bbe\u0ba3\u0bcd\u0b9f\u0bc1","\u0bae\u0bc2\u0ba9\u0bcd\u0bb1\u0bbe\u0bae\u0bcd \u0b95\u0bbe\u0bb2\u0bbe\u0ba3\u0bcd\u0b9f\u0bc1","\u0ba8\u0bbe\u0ba9\u0bcd\u0b95\u0bbe\u0bae\u0bcd \u0b95\u0bbe\u0bb2\u0bbe\u0ba3\u0bcd\u0b9f\u0bc1"]),t.s) +B.ahR=A.a(s(["1\u129b\u12cd \u1229\u1265","2\u129b\u12cd \u1229\u1265","3\u129b\u12cd \u1229\u1265","4\u129b\u12cd \u1229\u1265"]),t.s) +B.E1=A.a(s(["sunnudagur","m\xe1nudagur","\xferi\xf0judagur","mi\xf0vikudagur","fimmtudagur","f\xf6studagur","laugardagur"]),t.s) +B.E2=A.a(s(["jan.","febr.","m\xe1rc.","\xe1pr.","m\xe1j.","j\xfan.","j\xfal.","aug.","szept.","okt.","nov.","dec."]),t.s) +B.ahU=A.a(s(["EEEE, d MMMM, y","d MMMM, y","dd-MM-y","d-M-y"]),t.s) +B.Pa=new A.ht(1,"light") +B.Pb=new A.ht(2,"dark") +B.E3=A.a(s([B.iz,B.Pa,B.Pb]),A.ah("H")) +B.ahV=A.a(s(["yb","yh"]),t.s) +B.E4=A.a(s(["s\xf6n","m\xe5n","tis","ons","tors","fre","l\xf6r"]),t.s) +B.E5=A.a(s(["\u0b9c\u0ba9.","\u0baa\u0bbf\u0baa\u0bcd.","\u0bae\u0bbe\u0bb0\u0bcd.","\u0b8f\u0baa\u0bcd.","\u0bae\u0bc7","\u0b9c\u0bc2\u0ba9\u0bcd","\u0b9c\u0bc2\u0bb2\u0bc8","\u0b86\u0b95.","\u0b9a\u0bc6\u0baa\u0bcd.","\u0b85\u0b95\u0bcd.","\u0ba8\u0bb5.","\u0b9f\u0bbf\u0b9a."]),t.s) +B.E6=A.a(s(["\u056f\u056b\u0580\u0561\u056f\u056b","\u0565\u0580\u056f\u0578\u0582\u0577\u0561\u0562\u0569\u056b","\u0565\u0580\u0565\u0584\u0577\u0561\u0562\u0569\u056b","\u0579\u0578\u0580\u0565\u0584\u0577\u0561\u0562\u0569\u056b","\u0570\u056b\u0576\u0563\u0577\u0561\u0562\u0569\u056b","\u0578\u0582\u0580\u0562\u0561\u0569","\u0577\u0561\u0562\u0561\u0569"]),t.s) +B.ahW=A.a(s(["I. n.\xe9v","II. n.\xe9v","III. n.\xe9v","IV. n.\xe9v"]),t.s) +B.E7=A.a(s(["\u1007\u1014\u103a","\u1016\u1031","\u1019\u1010\u103a","\u1027","\u1019\u1031","\u1007\u103d\u1014\u103a","\u1007\u1030","\u1029","\u1005\u1000\u103a","\u1021\u1031\u102c\u1000\u103a","\u1014\u102d\u102f","\u1012\u102e"]),t.s) +B.ahX=A.a(s(["\u0574.\u0569.\u0561.","\u0574.\u0569."]),t.s) +B.hN=A.a(s(["a.\xa0m.","p.\xa0m."]),t.s) +B.E8=A.a(s(["\u043d\u044f\u0434\u0437\u0435\u043b\u044f","\u043f\u0430\u043d\u044f\u0434\u0437\u0435\u043b\u0430\u043a","\u0430\u045e\u0442\u043e\u0440\u0430\u043a","\u0441\u0435\u0440\u0430\u0434\u0430","\u0447\u0430\u0446\u0432\u0435\u0440","\u043f\u044f\u0442\u043d\u0456\u0446\u0430","\u0441\u0443\u0431\u043e\u0442\u0430"]),t.s) +B.E9=A.a(s(["S","Ll","M","M","I","G","S"]),t.s) +B.ahY=A.a(s(["d, MMMM y, EEEE","d MMMM, y","d MMM, y","dd-MM-yy"]),t.s) +B.Ea=A.a(s(["\u09a6\u09c7\u0993","\u09b8\u09cb\u09ae","\u09ae\u0999\u09cd\u0997\u09b2","\u09ac\u09c1\u09a7","\u09ac\u09c3\u09b9","\u09b6\u09c1\u0995\u09cd\u09f0","\u09b6\u09a8\u09bf"]),t.s) +B.Eb=A.a(s([0,0,27858,1023,65534,51199,65535,32767]),t.t) +B.Ec=A.a(s(["\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae","\u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1","\u03a4\u03c1\u03af\u03c4\u03b7","\u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7","\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7","\u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae","\u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf"]),t.s) +B.Ed=A.a(s(["\u0c06\u0c26\u0c3f\u0c35\u0c3e\u0c30\u0c02","\u0c38\u0c4b\u0c2e\u0c35\u0c3e\u0c30\u0c02","\u0c2e\u0c02\u0c17\u0c33\u0c35\u0c3e\u0c30\u0c02","\u0c2c\u0c41\u0c27\u0c35\u0c3e\u0c30\u0c02","\u0c17\u0c41\u0c30\u0c41\u0c35\u0c3e\u0c30\u0c02","\u0c36\u0c41\u0c15\u0c4d\u0c30\u0c35\u0c3e\u0c30\u0c02","\u0c36\u0c28\u0c3f\u0c35\u0c3e\u0c30\u0c02"]),t.s) +B.azg=new A.vf(null,!1,null) +B.ai0=A.a(s([B.azg]),t.p) +B.azh=new A.vf(null,!0,null) +B.ai_=A.a(s([B.azh]),t.p) +B.Ee=A.a(s(["\u0a1c\u0a28","\u0a2b\u0a3c\u0a30","\u0a2e\u0a3e\u0a30\u0a1a","\u0a05\u0a2a\u0a4d\u0a30\u0a48","\u0a2e\u0a08","\u0a1c\u0a42\u0a28","\u0a1c\u0a41\u0a32\u0a3e","\u0a05\u0a17","\u0a38\u0a24\u0a70","\u0a05\u0a15\u0a24\u0a42","\u0a28\u0a35\u0a70","\u0a26\u0a38\u0a70"]),t.s) +B.ai1=A.a(s([-1,0,0,1,0,0,-1,0,1,0,0,0,-1,1,0,1,1,1,1,0]),t.up) +B.ai2=A.a(s(["\u0642\u0628\u0644 \u0627\u0632 \u0645\u06cc\u0644\u0627\u062f","\u0645\u06cc\u0644\u0627\u062f\u06cc"]),t.s) +B.ai3=A.a(s(["chwarter 1af","2il chwarter","3ydd chwarter","4ydd chwarter"]),t.s) +B.ai4=A.a(s(["Tr\u01b0\u1edbc Thi\xean Ch\xfaa","Sau C\xf4ng Nguy\xean"]),t.s) +B.ai5=new A.di("ar",null,null) +B.ai6=new A.di("de",null,null) +B.ai8=new A.di("es",null,null) +B.ai9=new A.di("fr",null,null) +B.aia=new A.di("ja",null,null) +B.aib=new A.di("ko",null,null) +B.aid=new A.di("pt",null,null) +B.aic=new A.di("pt",null,"PT") +B.aie=new A.di("uk",null,null) +B.aih=new A.di("zh",null,null) +B.aif=new A.di("zh","Hans",null) +B.aig=new A.di("zh","Hant",null) +B.Ef=A.a(s([B.ai5,B.ai6,B.Eh,B.ai8,B.ai9,B.aia,B.aib,B.aid,B.aic,B.aie,B.aih,B.aif,B.aig]),t.ss) +B.Eg=A.a(s(["\u043d","\u043f","\u0430","\u0441","\u0447","\u043f","\u0441"]),t.s) +B.o5=new A.o(112) +B.cu=new A.o(4294967304) +B.hP=new A.o(4294967323) +B.c5=new A.o(4294967423) +B.o9=new A.o(4294967558) +B.hT=new A.o(8589934848) +B.kK=new A.o(8589934849) +B.e_=new A.o(8589934850) +B.ey=new A.o(8589934851) +B.hU=new A.o(8589934852) +B.kL=new A.o(8589934853) +B.hV=new A.o(8589934854) +B.kM=new A.o(8589934855) +B.dt=new A.kS(B.i) +B.ajJ=new A.Dg(B.i,B.dt) +B.ajK=new A.aIM("longPress") +B.ajL=new A.Dh(B.i,B.i) +B.apz=new A.cM(B.qA,B.u) +B.ajM=new A.Dj(1,null,null,null,B.Cj,B.apz) +B.ajN=new A.oR(B.i,B.W,B.W,B.W) +B.z=new A.ud(0,"start") +B.op=new A.ud(1,"end") +B.fC=new A.ud(3,"spaceBetween") +B.ajO=new A.ud(4,"spaceAround") +B.kO=new A.ud(5,"spaceEvenly") +B.ah=new A.a3K(0,"min") +B.ajP=new A.a3T(null) +B.ajZ=new A.yc(B.iZ,B.iZ,A.ah("yc")) +B.JP=new A.M(16) +B.JQ=new A.M(17) +B.i5=new A.M(18) +B.JR=new A.M(19) +B.JS=new A.M(20) +B.JT=new A.M(21) +B.JU=new A.M(22) +B.JV=new A.M(23) +B.JW=new A.M(24) +B.MH=new A.M(65666) +B.MI=new A.M(65667) +B.MJ=new A.M(65717) +B.JX=new A.M(392961) +B.JY=new A.M(392962) +B.JZ=new A.M(392963) +B.K_=new A.M(392964) +B.K0=new A.M(392965) +B.K1=new A.M(392966) +B.K2=new A.M(392967) +B.K3=new A.M(392968) +B.K4=new A.M(392969) +B.K5=new A.M(392970) +B.K6=new A.M(392971) +B.K7=new A.M(392972) +B.K8=new A.M(392973) +B.K9=new A.M(392974) +B.Ka=new A.M(392975) +B.Kb=new A.M(392976) +B.Kc=new A.M(392977) +B.Kd=new A.M(392978) +B.Ke=new A.M(392979) +B.Kf=new A.M(392980) +B.Kg=new A.M(392981) +B.Kh=new A.M(392982) +B.Ki=new A.M(392983) +B.Kj=new A.M(392984) +B.Kk=new A.M(392985) +B.Kl=new A.M(392986) +B.Km=new A.M(392987) +B.Kn=new A.M(392988) +B.Ko=new A.M(392989) +B.Kp=new A.M(392990) +B.Kq=new A.M(392991) +B.aow=new A.M(458752) +B.aox=new A.M(458753) +B.aoy=new A.M(458754) +B.aoz=new A.M(458755) +B.Kr=new A.M(458756) +B.Ks=new A.M(458757) +B.Kt=new A.M(458758) +B.Ku=new A.M(458759) +B.Kv=new A.M(458760) +B.Kw=new A.M(458761) +B.Kx=new A.M(458762) +B.Ky=new A.M(458763) +B.Kz=new A.M(458764) +B.KA=new A.M(458765) +B.KB=new A.M(458766) +B.KC=new A.M(458767) +B.KD=new A.M(458768) +B.KE=new A.M(458769) +B.KF=new A.M(458770) +B.KG=new A.M(458771) +B.KH=new A.M(458772) +B.KI=new A.M(458773) +B.KJ=new A.M(458774) +B.KK=new A.M(458775) +B.KL=new A.M(458776) +B.KM=new A.M(458777) +B.KN=new A.M(458778) +B.KO=new A.M(458779) +B.KP=new A.M(458780) +B.KQ=new A.M(458781) +B.KR=new A.M(458782) +B.KS=new A.M(458783) +B.KT=new A.M(458784) +B.KU=new A.M(458785) +B.KV=new A.M(458786) +B.KW=new A.M(458787) +B.KX=new A.M(458788) +B.KY=new A.M(458789) +B.KZ=new A.M(458790) +B.L_=new A.M(458791) +B.L0=new A.M(458792) +B.oD=new A.M(458793) +B.L1=new A.M(458794) +B.L2=new A.M(458795) +B.L3=new A.M(458796) +B.L4=new A.M(458797) +B.L5=new A.M(458798) +B.L6=new A.M(458799) +B.L7=new A.M(458800) +B.L8=new A.M(458801) +B.L9=new A.M(458803) +B.La=new A.M(458804) +B.Lb=new A.M(458805) +B.Lc=new A.M(458806) +B.Ld=new A.M(458807) +B.Le=new A.M(458808) +B.eC=new A.M(458809) +B.Lf=new A.M(458810) +B.Lg=new A.M(458811) +B.Lh=new A.M(458812) +B.Li=new A.M(458813) +B.Lj=new A.M(458814) +B.Lk=new A.M(458815) +B.Ll=new A.M(458816) +B.Lm=new A.M(458817) +B.Ln=new A.M(458818) +B.Lo=new A.M(458819) +B.Lp=new A.M(458820) +B.Lq=new A.M(458821) +B.Lr=new A.M(458822) +B.l2=new A.M(458823) +B.Ls=new A.M(458824) +B.Lt=new A.M(458825) +B.Lu=new A.M(458826) +B.Lv=new A.M(458827) +B.Lw=new A.M(458828) +B.Lx=new A.M(458829) +B.Ly=new A.M(458830) +B.Lz=new A.M(458831) +B.LA=new A.M(458832) +B.LB=new A.M(458833) +B.LC=new A.M(458834) +B.l3=new A.M(458835) +B.LD=new A.M(458836) +B.LE=new A.M(458837) +B.LF=new A.M(458838) +B.LG=new A.M(458839) +B.LH=new A.M(458840) +B.LI=new A.M(458841) +B.LJ=new A.M(458842) +B.LK=new A.M(458843) +B.LL=new A.M(458844) +B.LM=new A.M(458845) +B.LN=new A.M(458846) +B.LO=new A.M(458847) +B.LP=new A.M(458848) +B.LQ=new A.M(458849) +B.LR=new A.M(458850) +B.LS=new A.M(458851) +B.LT=new A.M(458852) +B.LU=new A.M(458853) +B.LV=new A.M(458854) +B.LW=new A.M(458855) +B.LX=new A.M(458856) +B.LY=new A.M(458857) +B.LZ=new A.M(458858) +B.M_=new A.M(458859) +B.M0=new A.M(458860) +B.M1=new A.M(458861) +B.M2=new A.M(458862) +B.M3=new A.M(458863) +B.M4=new A.M(458864) +B.M5=new A.M(458865) +B.M6=new A.M(458866) +B.M7=new A.M(458867) +B.M8=new A.M(458868) +B.M9=new A.M(458869) +B.Ma=new A.M(458871) +B.Mb=new A.M(458873) +B.Mc=new A.M(458874) +B.Md=new A.M(458875) +B.Me=new A.M(458876) +B.Mf=new A.M(458877) +B.Mg=new A.M(458878) +B.Mh=new A.M(458879) +B.Mi=new A.M(458880) +B.Mj=new A.M(458881) +B.Mk=new A.M(458885) +B.Ml=new A.M(458887) +B.Mm=new A.M(458888) +B.Mn=new A.M(458889) +B.Mo=new A.M(458890) +B.Mp=new A.M(458891) +B.Mq=new A.M(458896) +B.Mr=new A.M(458897) +B.Ms=new A.M(458898) +B.Mt=new A.M(458899) +B.Mu=new A.M(458900) +B.Mv=new A.M(458907) +B.Mw=new A.M(458915) +B.Mx=new A.M(458934) +B.My=new A.M(458935) +B.Mz=new A.M(458939) +B.MA=new A.M(458960) +B.MB=new A.M(458961) +B.MC=new A.M(458962) +B.MD=new A.M(458963) +B.ME=new A.M(458964) +B.aoA=new A.M(458967) +B.MF=new A.M(458968) +B.MG=new A.M(458969) +B.fK=new A.M(458976) +B.fL=new A.M(458977) +B.fM=new A.M(458978) +B.fN=new A.M(458979) +B.i6=new A.M(458980) +B.i7=new A.M(458981) +B.fO=new A.M(458982) +B.i8=new A.M(458983) +B.aoB=new A.M(786528) +B.aoC=new A.M(786529) +B.MK=new A.M(786543) +B.ML=new A.M(786544) +B.aoD=new A.M(786546) +B.aoE=new A.M(786547) +B.aoF=new A.M(786548) +B.aoG=new A.M(786549) +B.aoH=new A.M(786553) +B.aoI=new A.M(786554) +B.aoJ=new A.M(786563) +B.aoK=new A.M(786572) +B.aoL=new A.M(786573) +B.aoM=new A.M(786580) +B.aoN=new A.M(786588) +B.aoO=new A.M(786589) +B.MM=new A.M(786608) +B.MN=new A.M(786609) +B.MO=new A.M(786610) +B.MP=new A.M(786611) +B.MQ=new A.M(786612) +B.MR=new A.M(786613) +B.MS=new A.M(786614) +B.MT=new A.M(786615) +B.MU=new A.M(786616) +B.MV=new A.M(786637) +B.aoP=new A.M(786639) +B.aoQ=new A.M(786661) +B.MW=new A.M(786819) +B.aoR=new A.M(786820) +B.aoS=new A.M(786822) +B.MX=new A.M(786826) +B.aoT=new A.M(786829) +B.aoU=new A.M(786830) +B.MY=new A.M(786834) +B.MZ=new A.M(786836) +B.aoV=new A.M(786838) +B.aoW=new A.M(786844) +B.aoX=new A.M(786846) +B.N_=new A.M(786847) +B.N0=new A.M(786850) +B.aoY=new A.M(786855) +B.aoZ=new A.M(786859) +B.ap_=new A.M(786862) +B.N1=new A.M(786865) +B.ap0=new A.M(786871) +B.N2=new A.M(786891) +B.ap1=new A.M(786945) +B.ap2=new A.M(786947) +B.ap3=new A.M(786951) +B.ap4=new A.M(786952) +B.N3=new A.M(786977) +B.N4=new A.M(786979) +B.N5=new A.M(786980) +B.N6=new A.M(786981) +B.N7=new A.M(786982) +B.N8=new A.M(786983) +B.N9=new A.M(786986) +B.ap5=new A.M(786989) +B.ap6=new A.M(786990) +B.Na=new A.M(786994) +B.ap7=new A.M(787065) +B.Nb=new A.M(787081) +B.Nc=new A.M(787083) +B.Nd=new A.M(787084) +B.Ne=new A.M(787101) +B.Nf=new A.M(787103) +B.ak_=new A.dg([16,B.JP,17,B.JQ,18,B.i5,19,B.JR,20,B.JS,21,B.JT,22,B.JU,23,B.JV,24,B.JW,65666,B.MH,65667,B.MI,65717,B.MJ,392961,B.JX,392962,B.JY,392963,B.JZ,392964,B.K_,392965,B.K0,392966,B.K1,392967,B.K2,392968,B.K3,392969,B.K4,392970,B.K5,392971,B.K6,392972,B.K7,392973,B.K8,392974,B.K9,392975,B.Ka,392976,B.Kb,392977,B.Kc,392978,B.Kd,392979,B.Ke,392980,B.Kf,392981,B.Kg,392982,B.Kh,392983,B.Ki,392984,B.Kj,392985,B.Kk,392986,B.Kl,392987,B.Km,392988,B.Kn,392989,B.Ko,392990,B.Kp,392991,B.Kq,458752,B.aow,458753,B.aox,458754,B.aoy,458755,B.aoz,458756,B.Kr,458757,B.Ks,458758,B.Kt,458759,B.Ku,458760,B.Kv,458761,B.Kw,458762,B.Kx,458763,B.Ky,458764,B.Kz,458765,B.KA,458766,B.KB,458767,B.KC,458768,B.KD,458769,B.KE,458770,B.KF,458771,B.KG,458772,B.KH,458773,B.KI,458774,B.KJ,458775,B.KK,458776,B.KL,458777,B.KM,458778,B.KN,458779,B.KO,458780,B.KP,458781,B.KQ,458782,B.KR,458783,B.KS,458784,B.KT,458785,B.KU,458786,B.KV,458787,B.KW,458788,B.KX,458789,B.KY,458790,B.KZ,458791,B.L_,458792,B.L0,458793,B.oD,458794,B.L1,458795,B.L2,458796,B.L3,458797,B.L4,458798,B.L5,458799,B.L6,458800,B.L7,458801,B.L8,458803,B.L9,458804,B.La,458805,B.Lb,458806,B.Lc,458807,B.Ld,458808,B.Le,458809,B.eC,458810,B.Lf,458811,B.Lg,458812,B.Lh,458813,B.Li,458814,B.Lj,458815,B.Lk,458816,B.Ll,458817,B.Lm,458818,B.Ln,458819,B.Lo,458820,B.Lp,458821,B.Lq,458822,B.Lr,458823,B.l2,458824,B.Ls,458825,B.Lt,458826,B.Lu,458827,B.Lv,458828,B.Lw,458829,B.Lx,458830,B.Ly,458831,B.Lz,458832,B.LA,458833,B.LB,458834,B.LC,458835,B.l3,458836,B.LD,458837,B.LE,458838,B.LF,458839,B.LG,458840,B.LH,458841,B.LI,458842,B.LJ,458843,B.LK,458844,B.LL,458845,B.LM,458846,B.LN,458847,B.LO,458848,B.LP,458849,B.LQ,458850,B.LR,458851,B.LS,458852,B.LT,458853,B.LU,458854,B.LV,458855,B.LW,458856,B.LX,458857,B.LY,458858,B.LZ,458859,B.M_,458860,B.M0,458861,B.M1,458862,B.M2,458863,B.M3,458864,B.M4,458865,B.M5,458866,B.M6,458867,B.M7,458868,B.M8,458869,B.M9,458871,B.Ma,458873,B.Mb,458874,B.Mc,458875,B.Md,458876,B.Me,458877,B.Mf,458878,B.Mg,458879,B.Mh,458880,B.Mi,458881,B.Mj,458885,B.Mk,458887,B.Ml,458888,B.Mm,458889,B.Mn,458890,B.Mo,458891,B.Mp,458896,B.Mq,458897,B.Mr,458898,B.Ms,458899,B.Mt,458900,B.Mu,458907,B.Mv,458915,B.Mw,458934,B.Mx,458935,B.My,458939,B.Mz,458960,B.MA,458961,B.MB,458962,B.MC,458963,B.MD,458964,B.ME,458967,B.aoA,458968,B.MF,458969,B.MG,458976,B.fK,458977,B.fL,458978,B.fM,458979,B.fN,458980,B.i6,458981,B.i7,458982,B.fO,458983,B.i8,786528,B.aoB,786529,B.aoC,786543,B.MK,786544,B.ML,786546,B.aoD,786547,B.aoE,786548,B.aoF,786549,B.aoG,786553,B.aoH,786554,B.aoI,786563,B.aoJ,786572,B.aoK,786573,B.aoL,786580,B.aoM,786588,B.aoN,786589,B.aoO,786608,B.MM,786609,B.MN,786610,B.MO,786611,B.MP,786612,B.MQ,786613,B.MR,786614,B.MS,786615,B.MT,786616,B.MU,786637,B.MV,786639,B.aoP,786661,B.aoQ,786819,B.MW,786820,B.aoR,786822,B.aoS,786826,B.MX,786829,B.aoT,786830,B.aoU,786834,B.MY,786836,B.MZ,786838,B.aoV,786844,B.aoW,786846,B.aoX,786847,B.N_,786850,B.N0,786855,B.aoY,786859,B.aoZ,786862,B.ap_,786865,B.N1,786871,B.ap0,786891,B.N2,786945,B.ap1,786947,B.ap2,786951,B.ap3,786952,B.ap4,786977,B.N3,786979,B.N4,786980,B.N5,786981,B.N6,786982,B.N7,786983,B.N8,786986,B.N9,786989,B.ap5,786990,B.ap6,786994,B.Na,787065,B.ap7,787081,B.Nb,787083,B.Nc,787084,B.Nd,787101,B.Ne,787103,B.Nf],A.ah("dg")) +B.ak0=new A.dg([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.ah("dg")) +B.Jb=new A.dg([B.fR,"defaultNavigation",B.oV,"lShaped",B.oW,"rightAndLeft",B.oX,"edge",B.oY,"kindlish",B.eG,"disabled"],A.ah("dg")) +B.anq={"application/vnd.android.package-archive":0,"application/epub+zip":1,"application/gzip":2,"application/java-archive":3,"application/json":4,"application/ld+json":5,"application/msword":6,"application/octet-stream":7,"application/ogg":8,"application/pdf":9,"application/php":10,"application/rtf":11,"application/vnd.amazon.ebook":12,"application/vnd.apple.installer+xml":13,"application/vnd.mozilla.xul+xml":14,"application/vnd.ms-excel":15,"application/vnd.ms-fontobject":16,"application/vnd.ms-powerpoint":17,"application/vnd.oasis.opendocument.presentation":18,"application/vnd.oasis.opendocument.spreadsheet":19,"application/vnd.oasis.opendocument.text":20,"application/vnd.openxmlformats-officedocument.presentationml.presentation":21,"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":22,"application/vnd.openxmlformats-officedocument.wordprocessingml.document":23,"application/vnd.rar":24,"application/vnd.visio":25,"application/x-7z-compressed":26,"application/x-abiword":27,"application/x-bzip":28,"application/x-bzip2":29,"application/x-csh":30,"application/x-freearc":31,"application/x-sh":32,"application/x-shockwave-flash":33,"application/x-tar":34,"application/xhtml+xml":35,"application/xml":36,"application/zip":37,"audio/3gpp":38,"audio/3gpp2":39,"audio/aac":40,"audio/x-aac":41,"audio/midi audio/x-midi":42,"audio/x-m4a":43,"audio/m4a":44,"audio/mpeg":45,"audio/ogg":46,"audio/opus":47,"audio/wav":48,"audio/webm":49,"font/otf":50,"font/ttf":51,"font/woff":52,"font/woff2":53,"image/bmp":54,"image/gif":55,"image/jpeg":56,"image/png":57,"image/svg+xml":58,"image/tiff":59,"image/vnd.microsoft.icon":60,"image/webp":61,"text/calendar":62,"text/css":63,"text/csv":64,"text/html":65,"text/javascript":66,"text/plain":67,"text/xml":68,"video/3gpp":69,"video/3gpp2":70,"video/mp2t":71,"video/mpeg":72,"video/ogg":73,"video/webm":74,"video/x-msvideo":75,"video/quicktime":76} +B.ak1=new A.a2(B.anq,[".apk",".epub",".gz",".jar",".json",".jsonld",".doc",".bin",".ogx",".pdf",".php",".rtf",".azw",".mpkg",".xul",".xls",".eot",".ppt",".odp",".ods",".odt",".pptx",".xlsx",".docx",".rar",".vsd",".7z",".abw",".bz",".bz2",".csh",".arc",".sh",".swf",".tar",".xhtml",".xml",".zip",".3gp",".3g2",".aac",".aac",".midi",".m4a",".m4a",".mp3",".oga",".opus",".wav",".weba",".otf",".ttf",".woff",".woff2",".bmp",".gif",".jpg",".png",".svg",".tiff",".ico",".webp",".ics",".css",".csv",".html",".js",".txt",".xml",".3gp",".3g2",".ts",".mpeg",".ogv",".webm",".avi",".mov"],t.w) +B.anw={BU:0,DD:1,FX:2,TP:3,YD:4,ZR:5} +B.dr=new A.a2(B.anw,["MM","DE","FR","TL","YE","CD"],t.w) +B.ank={alias:0,allScroll:1,basic:2,cell:3,click:4,contextMenu:5,copy:6,forbidden:7,grab:8,grabbing:9,help:10,move:11,none:12,noDrop:13,precise:14,progress:15,text:16,resizeColumn:17,resizeDown:18,resizeDownLeft:19,resizeDownRight:20,resizeLeft:21,resizeLeftRight:22,resizeRight:23,resizeRow:24,resizeUp:25,resizeUpDown:26,resizeUpLeft:27,resizeUpRight:28,resizeUpLeftDownRight:29,resizeUpRightDownLeft:30,verticalText:31,wait:32,zoomIn:33,zoomOut:34} +B.ak4=new A.a2(B.ank,["alias","all-scroll","default","cell","pointer","context-menu","copy","not-allowed","grab","grabbing","help","move","none","no-drop","crosshair","progress","text","col-resize","s-resize","sw-resize","se-resize","w-resize","ew-resize","e-resize","row-resize","n-resize","ns-resize","nw-resize","ne-resize","nwse-resize","nesw-resize","vertical-text","wait","zoom-in","zoom-out"],t.w) +B.anv={type:0} +B.ak5=new A.a2(B.anv,["line"],t.w) +B.Jz={AVRInput:0,AVRPower:1,Accel:2,Accept:3,Again:4,AllCandidates:5,Alphanumeric:6,AltGraph:7,AppSwitch:8,ArrowDown:9,ArrowLeft:10,ArrowRight:11,ArrowUp:12,Attn:13,AudioBalanceLeft:14,AudioBalanceRight:15,AudioBassBoostDown:16,AudioBassBoostToggle:17,AudioBassBoostUp:18,AudioFaderFront:19,AudioFaderRear:20,AudioSurroundModeNext:21,AudioTrebleDown:22,AudioTrebleUp:23,AudioVolumeDown:24,AudioVolumeMute:25,AudioVolumeUp:26,Backspace:27,BrightnessDown:28,BrightnessUp:29,BrowserBack:30,BrowserFavorites:31,BrowserForward:32,BrowserHome:33,BrowserRefresh:34,BrowserSearch:35,BrowserStop:36,Call:37,Camera:38,CameraFocus:39,Cancel:40,CapsLock:41,ChannelDown:42,ChannelUp:43,Clear:44,Close:45,ClosedCaptionToggle:46,CodeInput:47,ColorF0Red:48,ColorF1Green:49,ColorF2Yellow:50,ColorF3Blue:51,ColorF4Grey:52,ColorF5Brown:53,Compose:54,ContextMenu:55,Convert:56,Copy:57,CrSel:58,Cut:59,DVR:60,Delete:61,Dimmer:62,DisplaySwap:63,Eisu:64,Eject:65,End:66,EndCall:67,Enter:68,EraseEof:69,Esc:70,Escape:71,ExSel:72,Execute:73,Exit:74,F1:75,F10:76,F11:77,F12:78,F13:79,F14:80,F15:81,F16:82,F17:83,F18:84,F19:85,F2:86,F20:87,F21:88,F22:89,F23:90,F24:91,F3:92,F4:93,F5:94,F6:95,F7:96,F8:97,F9:98,FavoriteClear0:99,FavoriteClear1:100,FavoriteClear2:101,FavoriteClear3:102,FavoriteRecall0:103,FavoriteRecall1:104,FavoriteRecall2:105,FavoriteRecall3:106,FavoriteStore0:107,FavoriteStore1:108,FavoriteStore2:109,FavoriteStore3:110,FinalMode:111,Find:112,Fn:113,FnLock:114,GoBack:115,GoHome:116,GroupFirst:117,GroupLast:118,GroupNext:119,GroupPrevious:120,Guide:121,GuideNextDay:122,GuidePreviousDay:123,HangulMode:124,HanjaMode:125,Hankaku:126,HeadsetHook:127,Help:128,Hibernate:129,Hiragana:130,HiraganaKatakana:131,Home:132,Hyper:133,Info:134,Insert:135,InstantReplay:136,JunjaMode:137,KanaMode:138,KanjiMode:139,Katakana:140,Key11:141,Key12:142,LastNumberRedial:143,LaunchApplication1:144,LaunchApplication2:145,LaunchAssistant:146,LaunchCalendar:147,LaunchContacts:148,LaunchControlPanel:149,LaunchMail:150,LaunchMediaPlayer:151,LaunchMusicPlayer:152,LaunchPhone:153,LaunchScreenSaver:154,LaunchSpreadsheet:155,LaunchWebBrowser:156,LaunchWebCam:157,LaunchWordProcessor:158,Link:159,ListProgram:160,LiveContent:161,Lock:162,LogOff:163,MailForward:164,MailReply:165,MailSend:166,MannerMode:167,MediaApps:168,MediaAudioTrack:169,MediaClose:170,MediaFastForward:171,MediaLast:172,MediaPause:173,MediaPlay:174,MediaPlayPause:175,MediaRecord:176,MediaRewind:177,MediaSkip:178,MediaSkipBackward:179,MediaSkipForward:180,MediaStepBackward:181,MediaStepForward:182,MediaStop:183,MediaTopMenu:184,MediaTrackNext:185,MediaTrackPrevious:186,MicrophoneToggle:187,MicrophoneVolumeDown:188,MicrophoneVolumeMute:189,MicrophoneVolumeUp:190,ModeChange:191,NavigateIn:192,NavigateNext:193,NavigateOut:194,NavigatePrevious:195,New:196,NextCandidate:197,NextFavoriteChannel:198,NextUserProfile:199,NonConvert:200,Notification:201,NumLock:202,OnDemand:203,Open:204,PageDown:205,PageUp:206,Pairing:207,Paste:208,Pause:209,PinPDown:210,PinPMove:211,PinPToggle:212,PinPUp:213,Play:214,PlaySpeedDown:215,PlaySpeedReset:216,PlaySpeedUp:217,Power:218,PowerOff:219,PreviousCandidate:220,Print:221,PrintScreen:222,Process:223,Props:224,RandomToggle:225,RcLowBattery:226,RecordSpeedNext:227,Redo:228,RfBypass:229,Romaji:230,STBInput:231,STBPower:232,Save:233,ScanChannelsToggle:234,ScreenModeNext:235,ScrollLock:236,Select:237,Settings:238,ShiftLevel5:239,SingleCandidate:240,Soft1:241,Soft2:242,Soft3:243,Soft4:244,Soft5:245,Soft6:246,Soft7:247,Soft8:248,SpeechCorrectionList:249,SpeechInputToggle:250,SpellCheck:251,SplitScreenToggle:252,Standby:253,Subtitle:254,Super:255,Symbol:256,SymbolLock:257,TV:258,TV3DMode:259,TVAntennaCable:260,TVAudioDescription:261,TVAudioDescriptionMixDown:262,TVAudioDescriptionMixUp:263,TVContentsMenu:264,TVDataService:265,TVInput:266,TVInputComponent1:267,TVInputComponent2:268,TVInputComposite1:269,TVInputComposite2:270,TVInputHDMI1:271,TVInputHDMI2:272,TVInputHDMI3:273,TVInputHDMI4:274,TVInputVGA1:275,TVMediaContext:276,TVNetwork:277,TVNumberEntry:278,TVPower:279,TVRadioService:280,TVSatellite:281,TVSatelliteBS:282,TVSatelliteCS:283,TVSatelliteToggle:284,TVTerrestrialAnalog:285,TVTerrestrialDigital:286,TVTimer:287,Tab:288,Teletext:289,Undo:290,Unidentified:291,VideoModeNext:292,VoiceDial:293,WakeUp:294,Wink:295,Zenkaku:296,ZenkakuHankaku:297,ZoomIn:298,ZoomOut:299,ZoomToggle:300} +B.GL=new A.o(4294970632) +B.GM=new A.o(4294970633) +B.Er=new A.o(4294967553) +B.EG=new A.o(4294968577) +B.EH=new A.o(4294968578) +B.F4=new A.o(4294969089) +B.F5=new A.o(4294969090) +B.kH=new A.o(4294967555) +B.Ie=new A.o(4294971393) +B.d5=new A.o(4294968065) +B.cO=new A.o(4294968066) +B.cP=new A.o(4294968067) +B.d6=new A.o(4294968068) +B.EI=new A.o(4294968579) +B.GE=new A.o(4294970625) +B.GF=new A.o(4294970626) +B.GG=new A.o(4294970627) +B.I5=new A.o(4294970882) +B.GH=new A.o(4294970628) +B.GI=new A.o(4294970629) +B.GJ=new A.o(4294970630) +B.GK=new A.o(4294970631) +B.I6=new A.o(4294970884) +B.I7=new A.o(4294970885) +B.Gf=new A.o(4294969871) +B.Gh=new A.o(4294969873) +B.Gg=new A.o(4294969872) +B.EU=new A.o(4294968833) +B.EV=new A.o(4294968834) +B.Gx=new A.o(4294970369) +B.Gy=new A.o(4294970370) +B.Gz=new A.o(4294970371) +B.GA=new A.o(4294970372) +B.GB=new A.o(4294970373) +B.GC=new A.o(4294970374) +B.GD=new A.o(4294970375) +B.If=new A.o(4294971394) +B.EW=new A.o(4294968835) +B.Ig=new A.o(4294971395) +B.EJ=new A.o(4294968580) +B.GN=new A.o(4294970634) +B.GO=new A.o(4294970635) +B.oa=new A.o(4294968321) +B.G2=new A.o(4294969857) +B.GV=new A.o(4294970642) +B.F6=new A.o(4294969091) +B.GP=new A.o(4294970636) +B.GQ=new A.o(4294970637) +B.GR=new A.o(4294970638) +B.GS=new A.o(4294970639) +B.GT=new A.o(4294970640) +B.GU=new A.o(4294970641) +B.F7=new A.o(4294969092) +B.EK=new A.o(4294968581) +B.F8=new A.o(4294969093) +B.Ey=new A.o(4294968322) +B.Ez=new A.o(4294968323) +B.EA=new A.o(4294968324) +B.HT=new A.o(4294970703) +B.GW=new A.o(4294970643) +B.GX=new A.o(4294970644) +B.Fn=new A.o(4294969108) +B.EX=new A.o(4294968836) +B.ew=new A.o(4294968069) +B.Ih=new A.o(4294971396) +B.kG=new A.o(4294967309) +B.EB=new A.o(4294968325) +B.EC=new A.o(4294968326) +B.EL=new A.o(4294968582) +B.GY=new A.o(4294970645) +B.Fx=new A.o(4294969345) +B.FG=new A.o(4294969354) +B.FH=new A.o(4294969355) +B.FI=new A.o(4294969356) +B.FJ=new A.o(4294969357) +B.FK=new A.o(4294969358) +B.FL=new A.o(4294969359) +B.FM=new A.o(4294969360) +B.FN=new A.o(4294969361) +B.FO=new A.o(4294969362) +B.FP=new A.o(4294969363) +B.Fy=new A.o(4294969346) +B.FQ=new A.o(4294969364) +B.FR=new A.o(4294969365) +B.FS=new A.o(4294969366) +B.FT=new A.o(4294969367) +B.FU=new A.o(4294969368) +B.Fz=new A.o(4294969347) +B.FA=new A.o(4294969348) +B.FB=new A.o(4294969349) +B.FC=new A.o(4294969350) +B.FD=new A.o(4294969351) +B.FE=new A.o(4294969352) +B.FF=new A.o(4294969353) +B.GZ=new A.o(4294970646) +B.H_=new A.o(4294970647) +B.H0=new A.o(4294970648) +B.H1=new A.o(4294970649) +B.H2=new A.o(4294970650) +B.H3=new A.o(4294970651) +B.H4=new A.o(4294970652) +B.H5=new A.o(4294970653) +B.H6=new A.o(4294970654) +B.H7=new A.o(4294970655) +B.H8=new A.o(4294970656) +B.H9=new A.o(4294970657) +B.F9=new A.o(4294969094) +B.EM=new A.o(4294968583) +B.Es=new A.o(4294967559) +B.Ii=new A.o(4294971397) +B.Ij=new A.o(4294971398) +B.Fa=new A.o(4294969095) +B.Fb=new A.o(4294969096) +B.Fc=new A.o(4294969097) +B.Fd=new A.o(4294969098) +B.Ha=new A.o(4294970658) +B.Hb=new A.o(4294970659) +B.Hc=new A.o(4294970660) +B.Fk=new A.o(4294969105) +B.Fl=new A.o(4294969106) +B.Fo=new A.o(4294969109) +B.Ik=new A.o(4294971399) +B.EN=new A.o(4294968584) +B.F1=new A.o(4294968841) +B.Fp=new A.o(4294969110) +B.Fq=new A.o(4294969111) +B.ex=new A.o(4294968070) +B.Et=new A.o(4294967560) +B.Hd=new A.o(4294970661) +B.ob=new A.o(4294968327) +B.He=new A.o(4294970662) +B.Fm=new A.o(4294969107) +B.Fr=new A.o(4294969112) +B.Fs=new A.o(4294969113) +B.Ft=new A.o(4294969114) +B.IQ=new A.o(4294971905) +B.IR=new A.o(4294971906) +B.Il=new A.o(4294971400) +B.Gn=new A.o(4294970118) +B.Gi=new A.o(4294970113) +B.Gv=new A.o(4294970126) +B.Gj=new A.o(4294970114) +B.Gt=new A.o(4294970124) +B.Gw=new A.o(4294970127) +B.Gk=new A.o(4294970115) +B.Gl=new A.o(4294970116) +B.Gm=new A.o(4294970117) +B.Gu=new A.o(4294970125) +B.Go=new A.o(4294970119) +B.Gp=new A.o(4294970120) +B.Gq=new A.o(4294970121) +B.Gr=new A.o(4294970122) +B.Gs=new A.o(4294970123) +B.Hf=new A.o(4294970663) +B.Hg=new A.o(4294970664) +B.Hh=new A.o(4294970665) +B.Hi=new A.o(4294970666) +B.EY=new A.o(4294968837) +B.G3=new A.o(4294969858) +B.G4=new A.o(4294969859) +B.G5=new A.o(4294969860) +B.In=new A.o(4294971402) +B.Hj=new A.o(4294970667) +B.HU=new A.o(4294970704) +B.I4=new A.o(4294970715) +B.Hk=new A.o(4294970668) +B.Hl=new A.o(4294970669) +B.Hm=new A.o(4294970670) +B.Hn=new A.o(4294970671) +B.G6=new A.o(4294969861) +B.Ho=new A.o(4294970672) +B.Hp=new A.o(4294970673) +B.Hq=new A.o(4294970674) +B.HV=new A.o(4294970705) +B.HW=new A.o(4294970706) +B.HX=new A.o(4294970707) +B.HY=new A.o(4294970708) +B.G7=new A.o(4294969863) +B.HZ=new A.o(4294970709) +B.G8=new A.o(4294969864) +B.G9=new A.o(4294969865) +B.I8=new A.o(4294970886) +B.I9=new A.o(4294970887) +B.Ib=new A.o(4294970889) +B.Ia=new A.o(4294970888) +B.Fe=new A.o(4294969099) +B.I_=new A.o(4294970710) +B.I0=new A.o(4294970711) +B.I1=new A.o(4294970712) +B.I2=new A.o(4294970713) +B.Ga=new A.o(4294969866) +B.Ff=new A.o(4294969100) +B.Hr=new A.o(4294970675) +B.Hs=new A.o(4294970676) +B.Fg=new A.o(4294969101) +B.Im=new A.o(4294971401) +B.Ht=new A.o(4294970677) +B.Gb=new A.o(4294969867) +B.hR=new A.o(4294968071) +B.hS=new A.o(4294968072) +B.I3=new A.o(4294970714) +B.ED=new A.o(4294968328) +B.EO=new A.o(4294968585) +B.Hu=new A.o(4294970678) +B.Hv=new A.o(4294970679) +B.Hw=new A.o(4294970680) +B.Hx=new A.o(4294970681) +B.EP=new A.o(4294968586) +B.Hy=new A.o(4294970682) +B.Hz=new A.o(4294970683) +B.HA=new A.o(4294970684) +B.EZ=new A.o(4294968838) +B.F_=new A.o(4294968839) +B.Fh=new A.o(4294969102) +B.Gc=new A.o(4294969868) +B.F0=new A.o(4294968840) +B.Fi=new A.o(4294969103) +B.EQ=new A.o(4294968587) +B.HB=new A.o(4294970685) +B.HC=new A.o(4294970686) +B.HD=new A.o(4294970687) +B.EE=new A.o(4294968329) +B.HE=new A.o(4294970688) +B.Fu=new A.o(4294969115) +B.HJ=new A.o(4294970693) +B.HK=new A.o(4294970694) +B.Gd=new A.o(4294969869) +B.HF=new A.o(4294970689) +B.HG=new A.o(4294970690) +B.ER=new A.o(4294968588) +B.HH=new A.o(4294970691) +B.Ex=new A.o(4294967569) +B.Fj=new A.o(4294969104) +B.FV=new A.o(4294969601) +B.FW=new A.o(4294969602) +B.FX=new A.o(4294969603) +B.FY=new A.o(4294969604) +B.FZ=new A.o(4294969605) +B.G_=new A.o(4294969606) +B.G0=new A.o(4294969607) +B.G1=new A.o(4294969608) +B.Ic=new A.o(4294971137) +B.Id=new A.o(4294971138) +B.Ge=new A.o(4294969870) +B.HI=new A.o(4294970692) +B.F2=new A.o(4294968842) +B.HL=new A.o(4294970695) +B.Eu=new A.o(4294967566) +B.Ev=new A.o(4294967567) +B.Ew=new A.o(4294967568) +B.HN=new A.o(4294970697) +B.Ip=new A.o(4294971649) +B.Iq=new A.o(4294971650) +B.Ir=new A.o(4294971651) +B.Is=new A.o(4294971652) +B.It=new A.o(4294971653) +B.Iu=new A.o(4294971654) +B.Iv=new A.o(4294971655) +B.HO=new A.o(4294970698) +B.Iw=new A.o(4294971656) +B.Ix=new A.o(4294971657) +B.Iy=new A.o(4294971658) +B.Iz=new A.o(4294971659) +B.IA=new A.o(4294971660) +B.IB=new A.o(4294971661) +B.IC=new A.o(4294971662) +B.ID=new A.o(4294971663) +B.IE=new A.o(4294971664) +B.IF=new A.o(4294971665) +B.IG=new A.o(4294971666) +B.IH=new A.o(4294971667) +B.HP=new A.o(4294970699) +B.II=new A.o(4294971668) +B.IJ=new A.o(4294971669) +B.IK=new A.o(4294971670) +B.IL=new A.o(4294971671) +B.IM=new A.o(4294971672) +B.IN=new A.o(4294971673) +B.IO=new A.o(4294971674) +B.IP=new A.o(4294971675) +B.kF=new A.o(4294967305) +B.HM=new A.o(4294970696) +B.EF=new A.o(4294968330) +B.Eq=new A.o(4294967297) +B.HQ=new A.o(4294970700) +B.Io=new A.o(4294971403) +B.F3=new A.o(4294968843) +B.HR=new A.o(4294970701) +B.Fv=new A.o(4294969116) +B.Fw=new A.o(4294969117) +B.ES=new A.o(4294968589) +B.ET=new A.o(4294968590) +B.HS=new A.o(4294970702) +B.ak7=new A.a2(B.Jz,[B.GL,B.GM,B.Er,B.EG,B.EH,B.F4,B.F5,B.kH,B.Ie,B.d5,B.cO,B.cP,B.d6,B.EI,B.GE,B.GF,B.GG,B.I5,B.GH,B.GI,B.GJ,B.GK,B.I6,B.I7,B.Gf,B.Gh,B.Gg,B.cu,B.EU,B.EV,B.Gx,B.Gy,B.Gz,B.GA,B.GB,B.GC,B.GD,B.If,B.EW,B.Ig,B.EJ,B.hQ,B.GN,B.GO,B.oa,B.G2,B.GV,B.F6,B.GP,B.GQ,B.GR,B.GS,B.GT,B.GU,B.F7,B.EK,B.F8,B.Ey,B.Ez,B.EA,B.HT,B.c5,B.GW,B.GX,B.Fn,B.EX,B.ew,B.Ih,B.kG,B.EB,B.hP,B.hP,B.EC,B.EL,B.GY,B.Fx,B.FG,B.FH,B.FI,B.FJ,B.FK,B.FL,B.FM,B.FN,B.FO,B.FP,B.Fy,B.FQ,B.FR,B.FS,B.FT,B.FU,B.Fz,B.FA,B.FB,B.FC,B.FD,B.FE,B.FF,B.GZ,B.H_,B.H0,B.H1,B.H2,B.H3,B.H4,B.H5,B.H6,B.H7,B.H8,B.H9,B.F9,B.EM,B.o9,B.Es,B.Ii,B.Ij,B.Fa,B.Fb,B.Fc,B.Fd,B.Ha,B.Hb,B.Hc,B.Fk,B.Fl,B.Fo,B.Ik,B.EN,B.F1,B.Fp,B.Fq,B.ex,B.Et,B.Hd,B.ob,B.He,B.Fm,B.Fr,B.Fs,B.Ft,B.IQ,B.IR,B.Il,B.Gn,B.Gi,B.Gv,B.Gj,B.Gt,B.Gw,B.Gk,B.Gl,B.Gm,B.Gu,B.Go,B.Gp,B.Gq,B.Gr,B.Gs,B.Hf,B.Hg,B.Hh,B.Hi,B.EY,B.G3,B.G4,B.G5,B.In,B.Hj,B.HU,B.I4,B.Hk,B.Hl,B.Hm,B.Hn,B.G6,B.Ho,B.Hp,B.Hq,B.HV,B.HW,B.HX,B.HY,B.G7,B.HZ,B.G8,B.G9,B.I8,B.I9,B.Ib,B.Ia,B.Fe,B.I_,B.I0,B.I1,B.I2,B.Ga,B.Ff,B.Hr,B.Hs,B.Fg,B.Im,B.kI,B.Ht,B.Gb,B.hR,B.hS,B.I3,B.ED,B.EO,B.Hu,B.Hv,B.Hw,B.Hx,B.EP,B.Hy,B.Hz,B.HA,B.EZ,B.F_,B.Fh,B.Gc,B.F0,B.Fi,B.EQ,B.HB,B.HC,B.HD,B.EE,B.HE,B.Fu,B.HJ,B.HK,B.Gd,B.HF,B.HG,B.kJ,B.ER,B.HH,B.Ex,B.Fj,B.FV,B.FW,B.FX,B.FY,B.FZ,B.G_,B.G0,B.G1,B.Ic,B.Id,B.Ge,B.HI,B.F2,B.HL,B.Eu,B.Ev,B.Ew,B.HN,B.Ip,B.Iq,B.Ir,B.Is,B.It,B.Iu,B.Iv,B.HO,B.Iw,B.Ix,B.Iy,B.Iz,B.IA,B.IB,B.IC,B.ID,B.IE,B.IF,B.IG,B.IH,B.HP,B.II,B.IJ,B.IK,B.IL,B.IM,B.IN,B.IO,B.IP,B.kF,B.HM,B.EF,B.Eq,B.HQ,B.Io,B.F3,B.HR,B.Fv,B.Fw,B.ES,B.ET,B.HS],A.ah("a2")) +B.ak8=new A.a2(B.Jz,[4294970632,4294970633,4294967553,4294968577,4294968578,4294969089,4294969090,4294967555,4294971393,4294968065,4294968066,4294968067,4294968068,4294968579,4294970625,4294970626,4294970627,4294970882,4294970628,4294970629,4294970630,4294970631,4294970884,4294970885,4294969871,4294969873,4294969872,4294967304,4294968833,4294968834,4294970369,4294970370,4294970371,4294970372,4294970373,4294970374,4294970375,4294971394,4294968835,4294971395,4294968580,4294967556,4294970634,4294970635,4294968321,4294969857,4294970642,4294969091,4294970636,4294970637,4294970638,4294970639,4294970640,4294970641,4294969092,4294968581,4294969093,4294968322,4294968323,4294968324,4294970703,4294967423,4294970643,4294970644,4294969108,4294968836,4294968069,4294971396,4294967309,4294968325,4294967323,4294967323,4294968326,4294968582,4294970645,4294969345,4294969354,4294969355,4294969356,4294969357,4294969358,4294969359,4294969360,4294969361,4294969362,4294969363,4294969346,4294969364,4294969365,4294969366,4294969367,4294969368,4294969347,4294969348,4294969349,4294969350,4294969351,4294969352,4294969353,4294970646,4294970647,4294970648,4294970649,4294970650,4294970651,4294970652,4294970653,4294970654,4294970655,4294970656,4294970657,4294969094,4294968583,4294967558,4294967559,4294971397,4294971398,4294969095,4294969096,4294969097,4294969098,4294970658,4294970659,4294970660,4294969105,4294969106,4294969109,4294971399,4294968584,4294968841,4294969110,4294969111,4294968070,4294967560,4294970661,4294968327,4294970662,4294969107,4294969112,4294969113,4294969114,4294971905,4294971906,4294971400,4294970118,4294970113,4294970126,4294970114,4294970124,4294970127,4294970115,4294970116,4294970117,4294970125,4294970119,4294970120,4294970121,4294970122,4294970123,4294970663,4294970664,4294970665,4294970666,4294968837,4294969858,4294969859,4294969860,4294971402,4294970667,4294970704,4294970715,4294970668,4294970669,4294970670,4294970671,4294969861,4294970672,4294970673,4294970674,4294970705,4294970706,4294970707,4294970708,4294969863,4294970709,4294969864,4294969865,4294970886,4294970887,4294970889,4294970888,4294969099,4294970710,4294970711,4294970712,4294970713,4294969866,4294969100,4294970675,4294970676,4294969101,4294971401,4294967562,4294970677,4294969867,4294968071,4294968072,4294970714,4294968328,4294968585,4294970678,4294970679,4294970680,4294970681,4294968586,4294970682,4294970683,4294970684,4294968838,4294968839,4294969102,4294969868,4294968840,4294969103,4294968587,4294970685,4294970686,4294970687,4294968329,4294970688,4294969115,4294970693,4294970694,4294969869,4294970689,4294970690,4294967564,4294968588,4294970691,4294967569,4294969104,4294969601,4294969602,4294969603,4294969604,4294969605,4294969606,4294969607,4294969608,4294971137,4294971138,4294969870,4294970692,4294968842,4294970695,4294967566,4294967567,4294967568,4294970697,4294971649,4294971650,4294971651,4294971652,4294971653,4294971654,4294971655,4294970698,4294971656,4294971657,4294971658,4294971659,4294971660,4294971661,4294971662,4294971663,4294971664,4294971665,4294971666,4294971667,4294970699,4294971668,4294971669,4294971670,4294971671,4294971672,4294971673,4294971674,4294971675,4294967305,4294970696,4294968330,4294967297,4294970700,4294971403,4294968843,4294970701,4294969116,4294969117,4294968589,4294968590,4294970702],t.eL) +B.eP=new A.bl(B.d5,!1,!1,!1,!1) +B.eO=new A.bl(B.d6,!1,!1,!1,!1) +B.axH=new A.zQ(2,"down") +B.a1K=new A.tz(B.axH) +B.Pg=new A.zQ(0,"up") +B.a1J=new A.tz(B.Pg) +B.ak9=new A.dg([B.eP,B.a1K,B.eO,B.a1J],t.Fp) +B.eM=new A.bl(B.cO,!1,!1,!1,!1) +B.eN=new A.bl(B.cP,!1,!1,!1,!1) +B.aCL=new A.Hl(1,"left") +B.Ps=new A.o0(B.aCL) +B.aCK=new A.Hl(0,"right") +B.Pr=new A.o0(B.aCK) +B.aka=new A.dg([B.eM,B.Ps,B.eN,B.Pr],t.Fp) +B.anx={Abort:0,Again:1,AltLeft:2,AltRight:3,ArrowDown:4,ArrowLeft:5,ArrowRight:6,ArrowUp:7,AudioVolumeDown:8,AudioVolumeMute:9,AudioVolumeUp:10,Backquote:11,Backslash:12,Backspace:13,BracketLeft:14,BracketRight:15,BrightnessDown:16,BrightnessUp:17,BrowserBack:18,BrowserFavorites:19,BrowserForward:20,BrowserHome:21,BrowserRefresh:22,BrowserSearch:23,BrowserStop:24,CapsLock:25,Comma:26,ContextMenu:27,ControlLeft:28,ControlRight:29,Convert:30,Copy:31,Cut:32,Delete:33,Digit0:34,Digit1:35,Digit2:36,Digit3:37,Digit4:38,Digit5:39,Digit6:40,Digit7:41,Digit8:42,Digit9:43,DisplayToggleIntExt:44,Eject:45,End:46,Enter:47,Equal:48,Esc:49,Escape:50,F1:51,F10:52,F11:53,F12:54,F13:55,F14:56,F15:57,F16:58,F17:59,F18:60,F19:61,F2:62,F20:63,F21:64,F22:65,F23:66,F24:67,F3:68,F4:69,F5:70,F6:71,F7:72,F8:73,F9:74,Find:75,Fn:76,FnLock:77,GameButton1:78,GameButton10:79,GameButton11:80,GameButton12:81,GameButton13:82,GameButton14:83,GameButton15:84,GameButton16:85,GameButton2:86,GameButton3:87,GameButton4:88,GameButton5:89,GameButton6:90,GameButton7:91,GameButton8:92,GameButton9:93,GameButtonA:94,GameButtonB:95,GameButtonC:96,GameButtonLeft1:97,GameButtonLeft2:98,GameButtonMode:99,GameButtonRight1:100,GameButtonRight2:101,GameButtonSelect:102,GameButtonStart:103,GameButtonThumbLeft:104,GameButtonThumbRight:105,GameButtonX:106,GameButtonY:107,GameButtonZ:108,Help:109,Home:110,Hyper:111,Insert:112,IntlBackslash:113,IntlRo:114,IntlYen:115,KanaMode:116,KeyA:117,KeyB:118,KeyC:119,KeyD:120,KeyE:121,KeyF:122,KeyG:123,KeyH:124,KeyI:125,KeyJ:126,KeyK:127,KeyL:128,KeyM:129,KeyN:130,KeyO:131,KeyP:132,KeyQ:133,KeyR:134,KeyS:135,KeyT:136,KeyU:137,KeyV:138,KeyW:139,KeyX:140,KeyY:141,KeyZ:142,KeyboardLayoutSelect:143,Lang1:144,Lang2:145,Lang3:146,Lang4:147,Lang5:148,LaunchApp1:149,LaunchApp2:150,LaunchAssistant:151,LaunchControlPanel:152,LaunchMail:153,LaunchScreenSaver:154,MailForward:155,MailReply:156,MailSend:157,MediaFastForward:158,MediaPause:159,MediaPlay:160,MediaPlayPause:161,MediaRecord:162,MediaRewind:163,MediaSelect:164,MediaStop:165,MediaTrackNext:166,MediaTrackPrevious:167,MetaLeft:168,MetaRight:169,MicrophoneMuteToggle:170,Minus:171,NonConvert:172,NumLock:173,Numpad0:174,Numpad1:175,Numpad2:176,Numpad3:177,Numpad4:178,Numpad5:179,Numpad6:180,Numpad7:181,Numpad8:182,Numpad9:183,NumpadAdd:184,NumpadBackspace:185,NumpadClear:186,NumpadClearEntry:187,NumpadComma:188,NumpadDecimal:189,NumpadDivide:190,NumpadEnter:191,NumpadEqual:192,NumpadMemoryAdd:193,NumpadMemoryClear:194,NumpadMemoryRecall:195,NumpadMemoryStore:196,NumpadMemorySubtract:197,NumpadMultiply:198,NumpadParenLeft:199,NumpadParenRight:200,NumpadSubtract:201,Open:202,PageDown:203,PageUp:204,Paste:205,Pause:206,Period:207,Power:208,PrintScreen:209,PrivacyScreenToggle:210,Props:211,Quote:212,Resume:213,ScrollLock:214,Select:215,SelectTask:216,Semicolon:217,ShiftLeft:218,ShiftRight:219,ShowAllWindows:220,Slash:221,Sleep:222,Space:223,Super:224,Suspend:225,Tab:226,Turbo:227,Undo:228,WakeUp:229,ZoomToggle:230} +B.akb=new A.a2(B.anx,[458907,458873,458978,458982,458833,458832,458831,458834,458881,458879,458880,458805,458801,458794,458799,458800,786544,786543,786980,786986,786981,786979,786983,786977,786982,458809,458806,458853,458976,458980,458890,458876,458875,458828,458791,458782,458783,458784,458785,458786,458787,458788,458789,458790,65717,786616,458829,458792,458798,458793,458793,458810,458819,458820,458821,458856,458857,458858,458859,458860,458861,458862,458811,458863,458864,458865,458866,458867,458812,458813,458814,458815,458816,458817,458818,458878,18,19,392961,392970,392971,392972,392973,392974,392975,392976,392962,392963,392964,392965,392966,392967,392968,392969,392977,392978,392979,392980,392981,392982,392983,392984,392985,392986,392987,392988,392989,392990,392991,458869,458826,16,458825,458852,458887,458889,458888,458756,458757,458758,458759,458760,458761,458762,458763,458764,458765,458766,458767,458768,458769,458770,458771,458772,458773,458774,458775,458776,458777,458778,458779,458780,458781,787101,458896,458897,458898,458899,458900,786836,786834,786891,786847,786826,786865,787083,787081,787084,786611,786609,786608,786637,786610,786612,786819,786615,786613,786614,458979,458983,24,458797,458891,458835,458850,458841,458842,458843,458844,458845,458846,458847,458848,458849,458839,458939,458968,458969,458885,458851,458836,458840,458855,458963,458962,458961,458960,458964,458837,458934,458935,458838,458868,458830,458827,458877,458824,458807,458854,458822,23,458915,458804,21,458823,458871,786850,458803,458977,458981,787103,458808,65666,458796,17,20,458795,22,458874,65667,786994],t.eL) +B.anr={"deleteBackward:":0,"deleteWordBackward:":1,"deleteToBeginningOfLine:":2,"deleteForward:":3,"deleteWordForward:":4,"deleteToEndOfLine:":5,"moveLeft:":6,"moveRight:":7,"moveForward:":8,"moveBackward:":9,"moveUp:":10,"moveDown:":11,"moveLeftAndModifySelection:":12,"moveRightAndModifySelection:":13,"moveUpAndModifySelection:":14,"moveDownAndModifySelection:":15,"moveWordLeft:":16,"moveWordRight:":17,"moveToBeginningOfParagraph:":18,"moveToEndOfParagraph:":19,"moveWordLeftAndModifySelection:":20,"moveWordRightAndModifySelection:":21,"moveParagraphBackwardAndModifySelection:":22,"moveParagraphForwardAndModifySelection:":23,"moveToLeftEndOfLine:":24,"moveToRightEndOfLine:":25,"moveToBeginningOfDocument:":26,"moveToEndOfDocument:":27,"moveToLeftEndOfLineAndModifySelection:":28,"moveToRightEndOfLineAndModifySelection:":29,"moveToBeginningOfDocumentAndModifySelection:":30,"moveToEndOfDocumentAndModifySelection:":31,"transpose:":32,"scrollToBeginningOfDocument:":33,"scrollToEndOfDocument:":34,"scrollPageUp:":35,"scrollPageDown:":36,"pageUpAndModifySelection:":37,"pageDownAndModifySelection:":38,"cancelOperation:":39,"insertTab:":40,"insertBacktab:":41} +B.NI=new A.r7(!1) +B.NJ=new A.r7(!0) +B.p6=new A.hQ(B.aj,B.ic) +B.qO=new A.kx() +B.qT=new A.yo() +B.qX=new A.yL() +B.akc=new A.a2(B.anr,[B.mT,B.mX,B.mV,B.mU,B.mY,B.mW,B.ht,B.hu,B.hu,B.ht,B.jt,B.ju,B.n9,B.na,B.nd,B.ne,B.nb,B.nc,B.el,B.em,B.vq,B.vr,B.vo,B.vp,B.el,B.em,B.jr,B.js,B.vi,B.vj,B.n6,B.n7,B.r0,B.NI,B.NJ,B.p6,B.ll,B.nf,B.ng,B.qO,B.qT,B.qX],A.ah("a2")) +B.Jc=new A.dg([B.lg,"defaultReader",B.oP,"continuousVertical",B.oQ,"singleHorizontalLTR",B.oR,"singleHorizontalRTL",B.oS,"continuousHorizontalLTR",B.oT,"continuousHorizontalRTL",B.oU,"singleVertical",B.ia,"webtoon"],A.ah("dg")) +B.o8=new A.o(32) +B.iq=new A.bl(B.o8,!1,!1,!1,!1) +B.lu=new A.bl(B.kG,!1,!1,!1,!1) +B.oc=new A.o(8589935117) +B.ar1=new A.bl(B.oc,!1,!1,!1,!1) +B.pg=new A.bl(B.hP,!1,!1,!1,!1) +B.aqD=new A.bl(B.kF,!1,!1,!1,!1) +B.aqE=new A.bl(B.kF,!1,!0,!1,!1) +B.io=new A.bl(B.hS,!1,!1,!1,!1) +B.ip=new A.bl(B.hR,!1,!1,!1,!1) +B.SA=new A.r0() +B.qM=new A.tj() +B.lk=new A.a8V(0,"line") +B.apI=new A.hQ(B.aj,B.lk) +B.apG=new A.hQ(B.ak,B.lk) +B.apH=new A.hQ(B.dy,B.lk) +B.apJ=new A.hQ(B.f2,B.lk) +B.akd=new A.dg([B.iq,B.SA,B.lu,B.qM,B.ar1,B.qM,B.pg,B.qO,B.aqD,B.qT,B.aqE,B.qX,B.eO,B.apI,B.eP,B.apG,B.eM,B.apH,B.eN,B.apJ,B.io,B.p6,B.ip,B.ll],t.Fp) +B.ir=new A.zz(B.xC,B.xI,0,"latest") +B.a67=new A.aO(63287,"MaterialIcons",null,!1) +B.h_=new A.zz(B.a67,B.xF,1,"popular") +B.a5D=new A.aO(61550,"MaterialIcons",null,!1) +B.db=new A.zz(B.a5D,B.xG,2,"filter") +B.Jd=new A.dg([B.ir,"latest",B.h_,"popular",B.db,"filter"],A.ah("dg")) +B.aiy=new A.o(33) +B.aiz=new A.o(34) +B.aiA=new A.o(35) +B.aiB=new A.o(36) +B.aiC=new A.o(37) +B.aiD=new A.o(38) +B.aiE=new A.o(39) +B.aiF=new A.o(40) +B.aiG=new A.o(41) +B.Ep=new A.o(42) +B.IS=new A.o(43) +B.aiH=new A.o(44) +B.IT=new A.o(45) +B.IU=new A.o(46) +B.IV=new A.o(47) +B.IW=new A.o(48) +B.IX=new A.o(49) +B.IY=new A.o(50) +B.IZ=new A.o(51) +B.J_=new A.o(52) +B.J0=new A.o(53) +B.J1=new A.o(54) +B.J2=new A.o(55) +B.J3=new A.o(56) +B.J4=new A.o(57) +B.aiI=new A.o(58) +B.aiJ=new A.o(59) +B.aiK=new A.o(60) +B.aiL=new A.o(61) +B.aiM=new A.o(62) +B.aiN=new A.o(63) +B.aiO=new A.o(64) +B.ajD=new A.o(91) +B.ajE=new A.o(92) +B.ajF=new A.o(93) +B.ajG=new A.o(94) +B.ajH=new A.o(95) +B.ajI=new A.o(96) +B.kN=new A.o(97) +B.J9=new A.o(98) +B.oo=new A.o(99) +B.Ei=new A.o(100) +B.Ej=new A.o(101) +B.Ek=new A.o(102) +B.aii=new A.o(103) +B.aij=new A.o(104) +B.aik=new A.o(105) +B.ail=new A.o(106) +B.aim=new A.o(107) +B.ain=new A.o(108) +B.aio=new A.o(109) +B.El=new A.o(110) +B.aip=new A.o(111) +B.aiq=new A.o(113) +B.air=new A.o(114) +B.Em=new A.o(115) +B.En=new A.o(116) +B.ais=new A.o(117) +B.o6=new A.o(118) +B.Eo=new A.o(119) +B.o7=new A.o(120) +B.ait=new A.o(121) +B.hO=new A.o(122) +B.aiu=new A.o(123) +B.aiv=new A.o(124) +B.aiw=new A.o(125) +B.aix=new A.o(126) +B.aiP=new A.o(8589934592) +B.aiQ=new A.o(8589934593) +B.aiR=new A.o(8589934594) +B.aiS=new A.o(8589934595) +B.aiT=new A.o(8589934608) +B.aiU=new A.o(8589934609) +B.aiV=new A.o(8589934610) +B.aiW=new A.o(8589934611) +B.aiX=new A.o(8589934612) +B.aiY=new A.o(8589934624) +B.aiZ=new A.o(8589934625) +B.aj_=new A.o(8589934626) +B.aj0=new A.o(8589935088) +B.aj1=new A.o(8589935090) +B.aj2=new A.o(8589935092) +B.aj3=new A.o(8589935094) +B.aj4=new A.o(8589935144) +B.aj5=new A.o(8589935145) +B.J5=new A.o(8589935146) +B.J6=new A.o(8589935147) +B.aj6=new A.o(8589935148) +B.J7=new A.o(8589935149) +B.od=new A.o(8589935150) +B.J8=new A.o(8589935151) +B.oe=new A.o(8589935152) +B.of=new A.o(8589935153) +B.og=new A.o(8589935154) +B.oh=new A.o(8589935155) +B.oi=new A.o(8589935156) +B.oj=new A.o(8589935157) +B.ok=new A.o(8589935158) +B.ol=new A.o(8589935159) +B.om=new A.o(8589935160) +B.on=new A.o(8589935161) +B.aj7=new A.o(8589935165) +B.aj8=new A.o(8589935361) +B.aj9=new A.o(8589935362) +B.aja=new A.o(8589935363) +B.ajb=new A.o(8589935364) +B.ajc=new A.o(8589935365) +B.ajd=new A.o(8589935366) +B.aje=new A.o(8589935367) +B.ajf=new A.o(8589935368) +B.ajg=new A.o(8589935369) +B.ajh=new A.o(8589935370) +B.aji=new A.o(8589935371) +B.ajj=new A.o(8589935372) +B.ajk=new A.o(8589935373) +B.ajl=new A.o(8589935374) +B.ajm=new A.o(8589935375) +B.ajn=new A.o(8589935376) +B.ajo=new A.o(8589935377) +B.ajp=new A.o(8589935378) +B.ajq=new A.o(8589935379) +B.ajr=new A.o(8589935380) +B.ajs=new A.o(8589935381) +B.ajt=new A.o(8589935382) +B.aju=new A.o(8589935383) +B.ajv=new A.o(8589935384) +B.ajw=new A.o(8589935385) +B.ajx=new A.o(8589935386) +B.ajy=new A.o(8589935387) +B.ajz=new A.o(8589935388) +B.ajA=new A.o(8589935389) +B.ajB=new A.o(8589935390) +B.ajC=new A.o(8589935391) +B.ake=new A.dg([32,B.o8,33,B.aiy,34,B.aiz,35,B.aiA,36,B.aiB,37,B.aiC,38,B.aiD,39,B.aiE,40,B.aiF,41,B.aiG,42,B.Ep,43,B.IS,44,B.aiH,45,B.IT,46,B.IU,47,B.IV,48,B.IW,49,B.IX,50,B.IY,51,B.IZ,52,B.J_,53,B.J0,54,B.J1,55,B.J2,56,B.J3,57,B.J4,58,B.aiI,59,B.aiJ,60,B.aiK,61,B.aiL,62,B.aiM,63,B.aiN,64,B.aiO,91,B.ajD,92,B.ajE,93,B.ajF,94,B.ajG,95,B.ajH,96,B.ajI,97,B.kN,98,B.J9,99,B.oo,100,B.Ei,101,B.Ej,102,B.Ek,103,B.aii,104,B.aij,105,B.aik,106,B.ail,107,B.aim,108,B.ain,109,B.aio,110,B.El,111,B.aip,112,B.o5,113,B.aiq,114,B.air,115,B.Em,116,B.En,117,B.ais,118,B.o6,119,B.Eo,120,B.o7,121,B.ait,122,B.hO,123,B.aiu,124,B.aiv,125,B.aiw,126,B.aix,4294967297,B.Eq,4294967304,B.cu,4294967305,B.kF,4294967309,B.kG,4294967323,B.hP,4294967423,B.c5,4294967553,B.Er,4294967555,B.kH,4294967556,B.hQ,4294967558,B.o9,4294967559,B.Es,4294967560,B.Et,4294967562,B.kI,4294967564,B.kJ,4294967566,B.Eu,4294967567,B.Ev,4294967568,B.Ew,4294967569,B.Ex,4294968065,B.d5,4294968066,B.cO,4294968067,B.cP,4294968068,B.d6,4294968069,B.ew,4294968070,B.ex,4294968071,B.hR,4294968072,B.hS,4294968321,B.oa,4294968322,B.Ey,4294968323,B.Ez,4294968324,B.EA,4294968325,B.EB,4294968326,B.EC,4294968327,B.ob,4294968328,B.ED,4294968329,B.EE,4294968330,B.EF,4294968577,B.EG,4294968578,B.EH,4294968579,B.EI,4294968580,B.EJ,4294968581,B.EK,4294968582,B.EL,4294968583,B.EM,4294968584,B.EN,4294968585,B.EO,4294968586,B.EP,4294968587,B.EQ,4294968588,B.ER,4294968589,B.ES,4294968590,B.ET,4294968833,B.EU,4294968834,B.EV,4294968835,B.EW,4294968836,B.EX,4294968837,B.EY,4294968838,B.EZ,4294968839,B.F_,4294968840,B.F0,4294968841,B.F1,4294968842,B.F2,4294968843,B.F3,4294969089,B.F4,4294969090,B.F5,4294969091,B.F6,4294969092,B.F7,4294969093,B.F8,4294969094,B.F9,4294969095,B.Fa,4294969096,B.Fb,4294969097,B.Fc,4294969098,B.Fd,4294969099,B.Fe,4294969100,B.Ff,4294969101,B.Fg,4294969102,B.Fh,4294969103,B.Fi,4294969104,B.Fj,4294969105,B.Fk,4294969106,B.Fl,4294969107,B.Fm,4294969108,B.Fn,4294969109,B.Fo,4294969110,B.Fp,4294969111,B.Fq,4294969112,B.Fr,4294969113,B.Fs,4294969114,B.Ft,4294969115,B.Fu,4294969116,B.Fv,4294969117,B.Fw,4294969345,B.Fx,4294969346,B.Fy,4294969347,B.Fz,4294969348,B.FA,4294969349,B.FB,4294969350,B.FC,4294969351,B.FD,4294969352,B.FE,4294969353,B.FF,4294969354,B.FG,4294969355,B.FH,4294969356,B.FI,4294969357,B.FJ,4294969358,B.FK,4294969359,B.FL,4294969360,B.FM,4294969361,B.FN,4294969362,B.FO,4294969363,B.FP,4294969364,B.FQ,4294969365,B.FR,4294969366,B.FS,4294969367,B.FT,4294969368,B.FU,4294969601,B.FV,4294969602,B.FW,4294969603,B.FX,4294969604,B.FY,4294969605,B.FZ,4294969606,B.G_,4294969607,B.G0,4294969608,B.G1,4294969857,B.G2,4294969858,B.G3,4294969859,B.G4,4294969860,B.G5,4294969861,B.G6,4294969863,B.G7,4294969864,B.G8,4294969865,B.G9,4294969866,B.Ga,4294969867,B.Gb,4294969868,B.Gc,4294969869,B.Gd,4294969870,B.Ge,4294969871,B.Gf,4294969872,B.Gg,4294969873,B.Gh,4294970113,B.Gi,4294970114,B.Gj,4294970115,B.Gk,4294970116,B.Gl,4294970117,B.Gm,4294970118,B.Gn,4294970119,B.Go,4294970120,B.Gp,4294970121,B.Gq,4294970122,B.Gr,4294970123,B.Gs,4294970124,B.Gt,4294970125,B.Gu,4294970126,B.Gv,4294970127,B.Gw,4294970369,B.Gx,4294970370,B.Gy,4294970371,B.Gz,4294970372,B.GA,4294970373,B.GB,4294970374,B.GC,4294970375,B.GD,4294970625,B.GE,4294970626,B.GF,4294970627,B.GG,4294970628,B.GH,4294970629,B.GI,4294970630,B.GJ,4294970631,B.GK,4294970632,B.GL,4294970633,B.GM,4294970634,B.GN,4294970635,B.GO,4294970636,B.GP,4294970637,B.GQ,4294970638,B.GR,4294970639,B.GS,4294970640,B.GT,4294970641,B.GU,4294970642,B.GV,4294970643,B.GW,4294970644,B.GX,4294970645,B.GY,4294970646,B.GZ,4294970647,B.H_,4294970648,B.H0,4294970649,B.H1,4294970650,B.H2,4294970651,B.H3,4294970652,B.H4,4294970653,B.H5,4294970654,B.H6,4294970655,B.H7,4294970656,B.H8,4294970657,B.H9,4294970658,B.Ha,4294970659,B.Hb,4294970660,B.Hc,4294970661,B.Hd,4294970662,B.He,4294970663,B.Hf,4294970664,B.Hg,4294970665,B.Hh,4294970666,B.Hi,4294970667,B.Hj,4294970668,B.Hk,4294970669,B.Hl,4294970670,B.Hm,4294970671,B.Hn,4294970672,B.Ho,4294970673,B.Hp,4294970674,B.Hq,4294970675,B.Hr,4294970676,B.Hs,4294970677,B.Ht,4294970678,B.Hu,4294970679,B.Hv,4294970680,B.Hw,4294970681,B.Hx,4294970682,B.Hy,4294970683,B.Hz,4294970684,B.HA,4294970685,B.HB,4294970686,B.HC,4294970687,B.HD,4294970688,B.HE,4294970689,B.HF,4294970690,B.HG,4294970691,B.HH,4294970692,B.HI,4294970693,B.HJ,4294970694,B.HK,4294970695,B.HL,4294970696,B.HM,4294970697,B.HN,4294970698,B.HO,4294970699,B.HP,4294970700,B.HQ,4294970701,B.HR,4294970702,B.HS,4294970703,B.HT,4294970704,B.HU,4294970705,B.HV,4294970706,B.HW,4294970707,B.HX,4294970708,B.HY,4294970709,B.HZ,4294970710,B.I_,4294970711,B.I0,4294970712,B.I1,4294970713,B.I2,4294970714,B.I3,4294970715,B.I4,4294970882,B.I5,4294970884,B.I6,4294970885,B.I7,4294970886,B.I8,4294970887,B.I9,4294970888,B.Ia,4294970889,B.Ib,4294971137,B.Ic,4294971138,B.Id,4294971393,B.Ie,4294971394,B.If,4294971395,B.Ig,4294971396,B.Ih,4294971397,B.Ii,4294971398,B.Ij,4294971399,B.Ik,4294971400,B.Il,4294971401,B.Im,4294971402,B.In,4294971403,B.Io,4294971649,B.Ip,4294971650,B.Iq,4294971651,B.Ir,4294971652,B.Is,4294971653,B.It,4294971654,B.Iu,4294971655,B.Iv,4294971656,B.Iw,4294971657,B.Ix,4294971658,B.Iy,4294971659,B.Iz,4294971660,B.IA,4294971661,B.IB,4294971662,B.IC,4294971663,B.ID,4294971664,B.IE,4294971665,B.IF,4294971666,B.IG,4294971667,B.IH,4294971668,B.II,4294971669,B.IJ,4294971670,B.IK,4294971671,B.IL,4294971672,B.IM,4294971673,B.IN,4294971674,B.IO,4294971675,B.IP,4294971905,B.IQ,4294971906,B.IR,8589934592,B.aiP,8589934593,B.aiQ,8589934594,B.aiR,8589934595,B.aiS,8589934608,B.aiT,8589934609,B.aiU,8589934610,B.aiV,8589934611,B.aiW,8589934612,B.aiX,8589934624,B.aiY,8589934625,B.aiZ,8589934626,B.aj_,8589934848,B.hT,8589934849,B.kK,8589934850,B.e_,8589934851,B.ey,8589934852,B.hU,8589934853,B.kL,8589934854,B.hV,8589934855,B.kM,8589935088,B.aj0,8589935090,B.aj1,8589935092,B.aj2,8589935094,B.aj3,8589935117,B.oc,8589935144,B.aj4,8589935145,B.aj5,8589935146,B.J5,8589935147,B.J6,8589935148,B.aj6,8589935149,B.J7,8589935150,B.od,8589935151,B.J8,8589935152,B.oe,8589935153,B.of,8589935154,B.og,8589935155,B.oh,8589935156,B.oi,8589935157,B.oj,8589935158,B.ok,8589935159,B.ol,8589935160,B.om,8589935161,B.on,8589935165,B.aj7,8589935361,B.aj8,8589935362,B.aj9,8589935363,B.aja,8589935364,B.ajb,8589935365,B.ajc,8589935366,B.ajd,8589935367,B.aje,8589935368,B.ajf,8589935369,B.ajg,8589935370,B.ajh,8589935371,B.aji,8589935372,B.ajj,8589935373,B.ajk,8589935374,B.ajl,8589935375,B.ajm,8589935376,B.ajn,8589935377,B.ajo,8589935378,B.ajp,8589935379,B.ajq,8589935380,B.ajr,8589935381,B.ajs,8589935382,B.ajt,8589935383,B.aju,8589935384,B.ajv,8589935385,B.ajw,8589935386,B.ajx,8589935387,B.ajy,8589935388,B.ajz,8589935389,B.ajA,8589935390,B.ajB,8589935391,B.ajC],A.ah("dg")) +B.wu=new A.bG(1,"materialHc") +B.wF=new A.bG(2,"blue") +B.wQ=new A.bG(3,"indigo") +B.x0=new A.bG(4,"hippieBlue") +B.xb=new A.bG(5,"aquaBlue") +B.xe=new A.bG(6,"brandBlue") +B.xf=new A.bG(7,"deepBlue") +B.xg=new A.bG(8,"sakura") +B.xh=new A.bG(9,"mandyRed") +B.wv=new A.bG(10,"red") +B.ww=new A.bG(11,"redWine") +B.wx=new A.bG(12,"purpleBrown") +B.wy=new A.bG(13,"green") +B.wz=new A.bG(14,"money") +B.wA=new A.bG(15,"jungle") +B.wB=new A.bG(16,"greyLaw") +B.wC=new A.bG(17,"wasabi") +B.wD=new A.bG(18,"gold") +B.wE=new A.bG(19,"mango") +B.wG=new A.bG(20,"amber") +B.wH=new A.bG(21,"vesuviusBurn") +B.wI=new A.bG(22,"deepPurple") +B.wJ=new A.bG(23,"ebonyClay") +B.wK=new A.bG(24,"barossa") +B.wL=new A.bG(25,"shark") +B.wM=new A.bG(26,"bigStone") +B.wN=new A.bG(27,"damask") +B.wO=new A.bG(28,"bahamaBlue") +B.wP=new A.bG(29,"mallardGreen") +B.wR=new A.bG(30,"espresso") +B.wS=new A.bG(31,"outerSpace") +B.wT=new A.bG(32,"blueWhale") +B.wU=new A.bG(33,"sanJuanBlue") +B.wV=new A.bG(34,"rosewood") +B.wW=new A.bG(35,"blumineBlue") +B.wX=new A.bG(36,"flutterDash") +B.wY=new A.bG(37,"materialBaseline") +B.wZ=new A.bG(38,"verdunHemlock") +B.x_=new A.bG(39,"dellGenoa") +B.x1=new A.bG(40,"redM3") +B.x2=new A.bG(41,"pinkM3") +B.x3=new A.bG(42,"purpleM3") +B.x4=new A.bG(43,"indigoM3") +B.x5=new A.bG(44,"blueM3") +B.x6=new A.bG(45,"cyanM3") +B.x7=new A.bG(46,"tealM3") +B.x8=new A.bG(47,"greenM3") +B.x9=new A.bG(48,"limeM3") +B.xa=new A.bG(49,"yellowM3") +B.xc=new A.bG(50,"orangeM3") +B.xd=new A.bG(51,"deepOrangeM3") +B.a4U=new A.bG(52,"custom") +B.ja=new A.e(4290479868) +B.uj=new A.e(4291754744) +B.f9=new A.e(4278290310) +B.tW=new A.e(4288999919) +B.a4d=new A.aM(B.hl,B.ja,B.dj,B.uj,B.f9,B.tW,B.f9,B.as,null,!0) +B.rs=new A.e(4278210631) +B.ro=new A.e(4278206014) +B.a3E=new A.aM(B.ja,B.hl,B.dj,B.rs,B.dj,B.ro,B.dj,B.a5,null,!0) +B.vU=new A.c6("Material default","Default Material 2 color theme, used in the design guide",B.a4d,B.a3E) +B.TX=new A.e(4278190266) +B.Yp=new A.e(4290164479) +B.j7=new A.e(4284940281) +B.YV=new A.e(4291361271) +B.Yl=new A.e(4289982960) +B.a49=new A.aM(B.TX,B.Yp,B.j7,B.YV,B.f9,B.Yl,B.f9,B.cf,null,!0) +B.a_7=new A.e(4293900287) +B.X9=new A.e(4287259099) +B.Ud=new A.e(4278210637) +B.Ut=new A.e(4278465074) +B.a3C=new A.aM(B.a_7,B.X9,B.j7,B.Ud,B.j7,B.Ut,B.j7,B.tO,null,!0) +B.wf=new A.c6("Material high contrast","High contrast Material 2 design guide theme",B.a49,B.a3C) +B.rE=new A.e(4279592384) +B.Us=new A.e(4278426597) +B.Z1=new A.e(4291553023) +B.ry=new A.e(4278351805) +B.YE=new A.e(4290698495) +B.a3D=new A.aM(B.rE,B.hn,B.Us,B.Z1,B.ry,B.YE,B.ry,B.as,null,!0) +B.rB=new A.e(4279060385) +B.WY=new A.e(4286698746) +B.U3=new A.e(4278209395) +B.uo=new A.e(4292998654) +B.UG=new A.e(4279916157) +B.a3g=new A.aM(B.hn,B.rB,B.WY,B.U3,B.uo,B.UG,B.uo,B.a5,null,!0) +B.wg=new A.c6("Blue delight","Blue color theme, based on Material blue and light blue colors",B.a3D,B.a3g) +B.V8=new A.e(4281352095) +B.Yc=new A.e(4289640948) +B.VV=new A.e(4283510184) +B.ZT=new A.e(4293516799) +B.t0=new A.e(4281408402) +B.Zb=new A.e(4291937791) +B.a3W=new A.aM(B.V8,B.Yc,B.VV,B.ZT,B.t0,B.Zb,B.t0,B.as,null,!1) +B.WK=new A.e(4286154443) +B.V1=new A.e(4280825235) +B.XA=new A.e(4287985101) +B.VU=new A.e(4283444391) +B.mF=new A.e(4286470082) +B.Vz=new A.e(4282659748) +B.a3l=new A.aM(B.WK,B.V1,B.XA,B.VU,B.mF,B.Vz,B.mF,B.a5,null,!1) +B.vY=new A.c6("Indigo nights","Indigo color theme, based on Material indigo and deep purple colors",B.a3W,B.a3l) +B.VO=new A.e(4283210682) +B.XL=new A.e(4288474091) +B.a_u=new A.e(4294922072) +B.a_U=new A.e(4294957783) +B.ua=new A.e(4290726480) +B.a_q=new A.e(4294753725) +B.a4L=new A.aM(B.VO,B.XL,B.a_u,B.a_U,B.ua,B.a_q,B.ua,B.as,null,!0) +B.Wo=new A.e(4284915123) +B.Ux=new A.e(4278682242) +B.a_o=new A.e(4294733429) +B.Xt=new A.e(4287758362) +B.uC=new A.e(4294401895) +B.W6=new A.e(4283959312) +B.a3e=new A.aM(B.Wo,B.Ux,B.a_o,B.Xt,B.uC,B.W6,B.uC,B.a5,null,!0) +B.wk=new A.c6("Hippie blue","Hippie blue with surfie green and chock coral pink theme",B.a4L,B.a3e) +B.Ve=new A.e(4281704651) +B.Wz=new A.e(4285649901) +B.X8=new A.e(4287222216) +B.Xs=new A.e(4287755496) +B.tu=new A.e(4284601556) +B.Xn=new A.e(4287624178) +B.a3d=new A.aM(B.Ve,B.Wz,B.X8,B.Xs,B.tu,B.Xn,B.tu,B.as,null,!1) +B.Wc=new A.e(4284330965) +B.V5=new A.e(4280909472) +B.XU=new A.e(4288801247) +B.Uc=new A.e(4278210633) +B.tT=new A.e(4288734693) +B.Ua=new A.e(4278210384) +B.a3r=new A.aM(B.Wc,B.V5,B.XU,B.Uc,B.tT,B.Ua,B.tT,B.a5,null,!1) +B.ws=new A.c6("Aqua blue","Aqua tropical ocean blue theme",B.a3d,B.a3r) +B.t8=new A.e(4282079640) +B.Y6=new A.e(4289252070) +B.W3=new A.e(4283804910) +B.Z0=new A.e(4291552767) +B.te=new A.e(4282549748) +B.Zk=new A.e(4292272895) +B.a4q=new A.aM(B.t8,B.Y6,B.W3,B.Z0,B.te,B.Zk,B.te,B.as,null,!1) +B.Xb=new A.e(4287339971) +B.XS=new A.e(4288729589) +B.U4=new A.e(4278209397) +B.tI=new A.e(4287148792) +B.U_=new A.e(4278207383) +B.a3n=new A.aM(B.Xb,B.t8,B.XS,B.U4,B.tI,B.U_,B.tI,B.a5,null,!1) +B.wt=new A.c6("Brand blues","Blue colors used in well known brand themes",B.a4q,B.a3n) +B.UU=new A.e(4280433246) +B.XE=new A.e(4288133866) +B.UD=new A.e(4279519573) +B.Ya=new A.e(4289326591) +B.rM=new A.e(4280320921) +B.Z3=new A.e(4291621887) +B.a4m=new A.aM(B.UU,B.XE,B.UD,B.Ya,B.rM,B.Z3,B.rM,B.as,null,!1) +B.WD=new A.e(4285828012) +B.UH=new A.e(4279971403) +B.VZ=new A.e(4283670191) +B.U9=new A.e(4278210141) +B.rO=new A.e(4280392373) +B.UB=new A.e(4279196522) +B.a3x=new A.aM(B.WD,B.UH,B.VZ,B.U9,B.rO,B.UB,B.rO,B.a5,null,!1) +B.w9=new A.c6("Deep blue sea","Dark deep blue sea color theme",B.a4m,B.a3x) +B.ui=new A.e(4291713912) +B.ZN=new A.e(4293440974) +B.a_n=new A.e(4294684317) +B.a_T=new A.e(4294957777) +B.uw=new A.e(4294153858) +B.a_L=new A.e(4294954947) +B.a41=new A.aM(B.ui,B.ZN,B.a_n,B.a_T,B.uw,B.a_L,B.uw,B.cf,null,!1) +B.a_2=new A.e(4293838040) +B.a_f=new A.e(4294301382) +B.ZW=new A.e(4293633673) +B.uD=new A.e(4294435028) +B.a_1=new A.e(4293836200) +B.a3j=new A.aM(B.a_2,B.ui,B.a_f,B.ZW,B.uD,B.a_1,B.uD,B.a5,null,!1) +B.vM=new A.c6("Pink sakura","Pink color theme, based on sakura cherry blossom like colors",B.a41,B.a3j) +B.Z4=new A.e(4291647320) +B.ZF=new A.e(4293171095) +B.W5=new A.e(4283943123) +B.Xq=new A.e(4287689468) +B.tz=new A.e(4285118925) +B.Y3=new A.e(4289129983) +B.a4I=new A.aM(B.Z4,B.ZF,B.W5,B.Xq,B.tz,B.Y3,B.tz,B.cf,null,!0) +B.Zq=new A.e(4292511109) +B.YK=new A.e(4290794067) +B.Wr=new A.e(4285058519) +B.Ur=new A.e(4278416513) +B.tF=new A.e(4286957270) +B.UT=new A.e(4280386974) +B.a4B=new A.aM(B.Zq,B.YK,B.Wr,B.Ur,B.tF,B.UT,B.tF,B.a5,null,!0) +B.vQ=new A.c6("Oh Mandy red","Mandy red and Viking blue inspired red theme",B.a4I,B.a4B) +B.YP=new A.e(4291176488) +B.a_K=new A.e(4294954450) +B.u1=new A.e(4289533015) +B.uE=new A.e(4294491088) +B.mJ=new A.e(4290910299) +B.mO=new A.e(4294763756) +B.a3k=new A.aM(B.YP,B.a_K,B.u1,B.uE,B.mJ,B.mO,B.mJ,B.cf,null,!0) +B.a_6=new A.e(4293892762) +B.Yr=new A.e(4290190364) +B.a45=new A.aM(B.a_6,B.Yr,B.uE,B.u1,B.mO,B.mJ,B.mO,B.a5,null,!0) +B.wn=new A.c6("Red tornado","Red color theme, based on Material red and pink colors",B.a3k,B.a45) +B.tN=new A.e(4288355120) +B.a__=new A.e(4293769922) +B.Y4=new A.e(4289134659) +B.a_S=new A.e(4294957535) +B.tU=new A.e(4288942620) +B.uL=new A.e(4294957781) +B.a4A=new A.aM(B.tN,B.a__,B.Y4,B.a_S,B.tU,B.uL,B.tU,B.cf,null,!0) +B.ZE=new A.e(4293158780) +B.YT=new A.e(4291328664) +B.Xr=new A.e(4287692855) +B.u9=new A.e(4290597979) +B.Xv=new A.e(4287823890) +B.a4i=new A.aM(B.ZE,B.tN,B.YT,B.Xr,B.u9,B.Xv,B.u9,B.a5,null,!0) +B.vO=new A.c6("Red red wine","Red color theme, based on red wine like colors",B.a4A,B.a4i) +B.VC=new A.e(4282714639) +B.Yt=new A.e(4290356904) +B.Wi=new A.e(4284490575) +B.ZR=new A.e(4293512925) +B.ti=new A.e(4283041333) +B.ZC=new A.e(4293112005) +B.a3I=new A.aM(B.VC,B.Yt,B.Wi,B.ZR,B.ti,B.ZC,B.ti,B.as,null,!0) +B.Y8=new A.e(4289298565) +B.Wq=new A.e(4285016620) +B.XD=new A.e(4288107396) +B.Wt=new A.e(4285145943) +B.ts=new A.e(4284435546) +B.VT=new A.e(4283439676) +B.a3U=new A.aM(B.Y8,B.Wq,B.XD,B.Wt,B.ts,B.VT,B.ts,B.a5,null,!0) +B.w5=new A.c6("Purple brown","Purple brown tinted aubergine and eggplant colored theme",B.a3I,B.a3U) +B.rW=new A.e(4281236786) +B.mG=new A.e(4289058471) +B.rv=new A.e(4278217052) +B.WO=new A.e(4286435012) +B.rr=new A.e(4278209856) +B.W8=new A.e(4284068257) +B.a43=new A.aM(B.rW,B.mG,B.rv,B.WO,B.rr,B.W8,B.rr,B.cf,null,!0) +B.rI=new A.e(4279983648) +B.WU=new A.e(4286630852) +B.tk=new A.e(4283283116) +B.Uv=new A.e(4278538570) +B.a3w=new A.aM(B.mG,B.rI,B.WU,B.rv,B.tk,B.Uv,B.tk,B.a5,null,!0) +B.vG=new A.c6("Green forest","Green color theme, based on Material green and cyan colors",B.a43,B.a3w) +B.UZ=new A.e(4280700470) +B.Xz=new A.e(4287937957) +B.WJ=new A.e(4286151482) +B.YH=new A.e(4290756768) +B.to=new A.e(4283782953) +B.XN=new A.e(4288585865) +B.a3i=new A.aM(B.UZ,B.Xz,B.WJ,B.YH,B.to,B.XN,B.to,B.cf,null,!0) +B.WL=new A.e(4286232723) +B.UV=new A.e(4280435760) +B.Zi=new A.e(4292204200) +B.VW=new A.e(4283520002) +B.u7=new A.e(4290494068) +B.Vr=new A.e(4282401284) +B.a4o=new A.aM(B.WL,B.UV,B.Zi,B.VW,B.u7,B.Vr,B.u7,B.a5,null,!0) +B.w8=new A.c6("Green money","Green money and finance style color theme",B.a3i,B.a4o) +B.U7=new A.e(4278210069) +B.Xl=new A.e(4287609243) +B.Um=new A.e(4278219350) +B.X2=new A.e(4286823597) +B.rS=new A.e(4280898304) +B.Xk=new A.e(4287605368) +B.a4g=new A.aM(B.U7,B.Xl,B.Um,B.X2,B.rS,B.Xk,B.rS,B.cf,null,!0) +B.VX=new A.e(4283539047) +B.V0=new A.e(4280772666) +B.VH=new A.e(4282882437) +B.Ue=new A.e(4278210875) +B.tA=new A.e(4285768855) +B.V_=new A.e(4280766464) +B.a36=new A.aM(B.VX,B.V0,B.VH,B.Ue,B.tA,B.V_,B.tA,B.a5,null,!0) +B.wp=new A.c6("Green jungle","Green jungle and rain forest color theme",B.a4g,B.a36) +B.t4=new A.e(4281812815) +B.Yh=new A.e(4289773253) +B.VY=new A.e(4283571586) +B.a_8=new A.e(4294040319) +B.rU=new A.e(4281086287) +B.Zu=new A.e(4292731135) +B.a4E=new A.aM(B.t4,B.Yh,B.VY,B.a_8,B.rU,B.Zu,B.rU,B.cf,null,!0) +B.Xp=new A.e(4287669422) +B.WW=new A.e(4286667427) +B.Vu=new A.e(4282523490) +B.t3=new A.e(4281810268) +B.UM=new A.e(4280099913) +B.a3L=new A.aM(B.Xp,B.t4,B.WW,B.Vu,B.t3,B.UM,B.t3,B.a5,null,!0) +B.wi=new A.c6("Grey law","Material blue grey and ultra dark purple color theme, law firm style",B.a4E,B.a3L) +B.WA=new A.e(4285761061) +B.Zl=new A.e(4292337586) +B.X7=new A.e(4287182729) +B.a_N=new A.e(4294956793) +B.tr=new A.e(4284365172) +B.a_g=new A.e(4294367487) +B.a3X=new A.aM(B.WA,B.Zl,B.X7,B.a_N,B.tr,B.a_g,B.tr,B.cf,null,!0) +B.YN=new A.e(4291021687) +B.W7=new A.e(4283983393) +B.Zw=new A.e(4292844255) +B.WB=new A.e(4285801333) +B.tX=new A.e(4289094861) +B.Wl=new A.e(4284559742) +B.a3V=new A.aM(B.YN,B.W7,B.Zw,B.WB,B.tX,B.Wl,B.tX,B.a5,null,!0) +B.wm=new A.c6("Willow and wasabi","Wild Willow and wasabi green with orchid purple inspired colors",B.a3X,B.a3V) +B.u6=new A.e(4290275604) +B.a_a=new A.e(4294099340) +B.a_5=new A.e(4293880832) +B.a_G=new A.e(4294950547) +B.u4=new A.e(4289947698) +B.YX=new A.e(4291468668) +B.a38=new A.aM(B.u6,B.a_a,B.a_5,B.a_G,B.u4,B.YX,B.u4,B.cf,null,!0) +B.ZZ=new A.e(4293765214) +B.Ze=new A.e(4291989344) +B.Ym=new A.e(4290077740) +B.um=new A.e(4292717448) +B.YG=new A.e(4290739534) +B.a3K=new A.aM(B.ZZ,B.u6,B.Ze,B.Ym,B.um,B.YG,B.um,B.a5,null,!0) +B.w1=new A.c6("Gold sunset","Gold sunset color theme, based on orange like colors",B.a38,B.a3K) +B.ue=new A.e(4291267872) +B.un=new A.e(4292784217) +B.Xf=new A.e(4287468608) +B.YI=new A.e(4290757531) +B.tt=new A.e(4284572231) +B.Yz=new A.e(4290559144) +B.a48=new A.aM(B.ue,B.un,B.Xf,B.YI,B.tt,B.Yz,B.tt,B.as,null,!0) +B.Yf=new A.e(4289705081) +B.WZ=new A.e(4286744637) +B.tD=new A.e(4286677356) +B.W9=new A.e(4284111413) +B.a3h=new A.aM(B.un,B.ue,B.Yf,B.WZ,B.tD,B.W9,B.tD,B.a5,null,!0) +B.wd=new A.c6("Mango mojito","Orange and green Mango mojito color theme",B.a48,B.a3h) +B.ZJ=new A.e(4293284096) +B.a_J=new A.e(4294954112) +B.V4=new A.e(4280908287) +B.ZG=new A.e(4293192447) +B.rT=new A.e(4280902399) +B.Z_=new A.e(4291548927) +B.a4u=new A.aM(B.ZJ,B.a_J,B.V4,B.ZG,B.rT,B.Z_,B.rT,B.as,null,!1) +B.a_A=new A.e(4294947584) +B.YS=new A.e(4291326464) +B.X_=new A.e(4286755327) +B.Vh=new A.e(4281823439) +B.tf=new A.e(4282682111) +B.Uy=new A.e(4278928028) +B.a4a=new A.aM(B.a_A,B.YS,B.X_,B.Vh,B.tf,B.Uy,B.tf,B.a5,null,!1) +B.wb=new A.c6("Amber blue","Amber blaze and blue color theme, based on Material amber and blue accent colors",B.a4u,B.a4a) +B.Y1=new A.e(4289085455) +B.Z9=new A.e(4291930777) +B.UE=new A.e(4279784280) +B.XY=new A.e(4288922823) +B.rD=new A.e(4279518279) +B.WQ=new A.e(4286562500) +B.a3Q=new A.aM(B.Y1,B.Z9,B.UE,B.XY,B.rD,B.WQ,B.rD,B.as,null,!1) +B.Z8=new A.e(4291919187) +B.X6=new A.e(4287057458) +B.Wa=new A.e(4284189326) +B.UA=new A.e(4279060813) +B.t7=new A.e(4282020213) +B.Uq=new A.e(4278335033) +B.a40=new A.aM(B.Z8,B.X6,B.Wa,B.UA,B.t7,B.Uq,B.t7,B.a5,null,!1) +B.vK=new A.c6("Vesuvius burned","Vesuvius burned orange and eden green theme",B.a3Q,B.a40) +B.VD=new A.e(4282722208) +B.Za=new A.e(4291937513) +B.Un=new A.e(4278227434) +B.Z5=new A.e(4291814655) +B.rx=new A.e(4278235391) +B.XR=new A.e(4288662513) +B.a3s=new A.aM(B.VD,B.Za,B.Un,B.Z5,B.rx,B.XR,B.rx,B.as,null,!0) +B.Yk=new A.e(4289961435) +B.WV=new A.e(4286634239) +B.U0=new A.e(4278208891) +B.td=new A.e(4282434815) +B.Uo=new A.e(4278286774) +B.a3T=new A.aM(B.Yk,B.mF,B.WV,B.U0,B.td,B.Uo,B.td,B.a5,null,!0) +B.vX=new A.c6("Deep purple","Deep purple daisy bush theme, based on Material deepPurple and lightBlueAccent colors",B.a3s,B.a3T) +B.rK=new A.e(4280296769) +B.XI=new A.e(4288391119) +B.Uk=new A.e(4278217556) +B.Xm=new A.e(4287611821) +B.rq=new A.e(4278209339) +B.X1=new A.e(4286758069) +B.a3O=new A.aM(B.rK,B.XI,B.Uk,B.Xm,B.rq,B.X1,B.rq,B.as,null,!0) +B.VQ=new A.e(4283324797) +B.VN=new A.e(4283147152) +B.Uz=new A.e(4278932289) +B.ta=new A.e(4282221685) +B.Uw=new A.e(4278599478) +B.a4v=new A.aM(B.VQ,B.rK,B.VN,B.Uz,B.ta,B.Uw,B.ta,B.a5,null,!0) +B.vT=new A.c6("Ebony clay","Ebony clay dark blue-grey and watercourse green colored theme",B.a3O,B.a4v) +B.tl=new A.e(4283301929) +B.YB=new A.e(4290618801) +B.TY=new A.e(4278203418) +B.Xg=new A.e(4287480232) +B.rC=new A.e(4279389231) +B.Y0=new A.e(4288993727) +B.a4M=new A.aM(B.tl,B.YB,B.TY,B.Xg,B.rC,B.Y0,B.rC,B.as,null,!1) +B.Xx=new A.e(4287915646) +B.Wx=new A.e(4285241474) +B.US=new A.e(4280377676) +B.tq=new A.e(4284062587) +B.UN=new A.e(4280111920) +B.a3c=new A.aM(B.Xx,B.tl,B.Wx,B.US,B.tq,B.UN,B.tq,B.a5,null,!1) +B.wj=new A.c6("Barossa","Barossa red and cardin green colored theme",B.a4M,B.a3c) +B.UL=new A.e(4280099368) +B.Yg=new A.e(4289770176) +B.a_m=new A.e(4294672674) +B.a_E=new A.e(4294948480) +B.uq=new A.e(4293563988) +B.ZQ=new A.e(4293512107) +B.a3H=new A.aM(B.UL,B.Yg,B.a_m,B.a_E,B.uq,B.ZQ,B.uq,B.as,null,!0) +B.WG=new A.e(4286020222) +B.Va=new A.e(4281416770) +B.a_p=new A.e(4294750325) +B.Zo=new A.e(4292442904) +B.us=new A.e(4293899139) +B.Y5=new A.e(4289158951) +B.a4t=new A.aM(B.WG,B.Va,B.a_p,B.Zo,B.us,B.Y5,B.us,B.a5,null,!0) +B.vF=new A.c6("Shark and orange","Shark grey and orange ecstasy colored theme",B.a3H,B.a4t) +B.rH=new A.e(4279905346) +B.Yi=new A.e(4289839325) +B.ZI=new A.e(4293237272) +B.Zz=new A.e(4292918656) +B.uu=new A.e(4293963839) +B.ZS=new A.e(4293513121) +B.a4l=new A.aM(B.rH,B.Yi,B.ZI,B.Zz,B.uu,B.ZS,B.uu,B.as,null,!1) +B.Wk=new A.e(4284511370) +B.ZX=new A.e(4293636689) +B.Zg=new A.e(4292118024) +B.ux=new A.e(4294232702) +B.YQ=new A.e(4291202605) +B.a4y=new A.aM(B.Wk,B.rH,B.ZX,B.Zg,B.ux,B.YQ,B.ux,B.a5,null,!1) +B.vJ=new A.c6("Big stone tulip","Big stone blue and tulip tree yellow colored theme",B.a4l,B.a4y) +B.uf=new A.e(4291388998) +B.ZY=new A.e(4293708221) +B.Vg=new A.e(4281809462) +B.XO=new A.e(4288588703) +B.t2=new A.e(4281613874) +B.Xy=new A.e(4287935121) +B.a3N=new A.aM(B.uf,B.ZY,B.Vg,B.XO,B.t2,B.Xy,B.t2,B.as,null,!1) +B.Zr=new A.e(4292515970) +B.WF=new A.e(4285955445) +B.Vl=new A.e(4282012740) +B.tE=new A.e(4286812289) +B.Vd=new A.e(4281619774) +B.a3f=new A.aM(B.Zr,B.uf,B.WF,B.Vl,B.tE,B.Vd,B.tE,B.a5,null,!1) +B.vZ=new A.c6("Damask and lunar","Damask red and lunar green colored theme",B.a3N,B.a3f) +B.rz=new A.e(4278803870) +B.Y2=new A.e(4289121517) +B.ul=new A.e(4292694543) +B.a_X=new A.e(4294958029) +B.tC=new A.e(4286367992) +B.uc=new A.e(4291160063) +B.a4j=new A.aM(B.rz,B.Y2,B.ul,B.a_X,B.tC,B.uc,B.tC,B.as,null,!0) +B.VF=new A.e(4282746293) +B.ZH=new A.e(4293229642) +B.tQ=new A.e(4288468473) +B.Vm=new A.e(4282020498) +B.a3q=new A.aM(B.VF,B.rz,B.ZH,B.ul,B.tQ,B.Vm,B.tQ,B.a5,null,!0) +B.wq=new A.c6("Bahama and trinidad","Bahama blue and trinidad orange colored theme",B.a4j,B.a3q) +B.rV=new A.e(4281156641) +B.XX=new A.e(4288918922) +B.Zf=new A.e(4292037451) +B.tL=new A.e(4287995187) +B.ZB=new A.e(4293061001) +B.a3y=new A.aM(B.rV,B.XX,B.Zf,B.bx,B.tL,B.ZB,B.tL,B.as,null,!0) +B.WT=new A.e(4286615161) +B.ZA=new A.e(4292970118) +B.VS=new A.e(4283437334) +B.ub=new A.e(4291020922) +B.VE=new A.e(4282731264) +B.a3o=new A.aM(B.WT,B.rV,B.ZA,B.VS,B.ub,B.VE,B.ub,B.a5,null,!0) +B.vS=new A.c6("Mallard and valencia","Mallard green and Valencia pink colored theme",B.a3y,B.a3o) +B.tg=new A.e(4282724139) +B.YR=new A.e(4291280044) +B.ZD=new A.e(4293114212) +B.a01=new A.e(4294958748) +B.uA=new A.e(4294306249) +B.a_s=new A.e(4294895533) +B.a4_=new A.aM(B.tg,B.YR,B.ZD,B.a01,B.uA,B.a_s,B.uA,B.as,null,!0) +B.Xe=new A.e(4287463293) +B.a_3=new A.e(4293842598) +B.Xi=new A.e(4287526735) +B.uF=new A.e(4294503636) +B.Wy=new A.e(4285553993) +B.a3R=new A.aM(B.Xe,B.tg,B.a_3,B.Xi,B.uF,B.Wy,B.uF,B.a5,null,!0) +B.w2=new A.c6("Espresso and crema","Espresso dark brown and crema colored theme",B.a4_,B.a3R) +B.rJ=new A.e(4280234809) +B.XP=new A.e(4288595156) +B.Zd=new A.e(4291977226) +B.a_V=new A.e(4294958024) +B.tK=new A.e(4287865001) +B.Yn=new A.e(4290104795) +B.a4K=new A.aM(B.rJ,B.XP,B.Zd,B.a_V,B.tK,B.Yn,B.tK,B.as,null,!0) +B.VJ=new A.e(4282935921) +B.Zt=new A.e(4292575807) +B.YL=new A.e(4290794498) +B.u0=new A.e(4289377467) +B.V2=new A.e(4280835185) +B.a3a=new A.aM(B.VJ,B.rJ,B.Zt,B.YL,B.u0,B.V2,B.u0,B.a5,null,!0) +B.w_=new A.c6("Outer space stage","Outer space dark blue-grey and stage red theme",B.a4K,B.a3a) +B.Up=new A.e(4278333511) +B.Xj=new A.e(4287552462) +B.a_h=new A.e(4294468929) +B.a_y=new A.e(4294946193) +B.ut=new A.e(4293951012) +B.a_H=new A.e(4294950803) +B.a3u=new A.aM(B.Up,B.Xj,B.a_h,B.a_y,B.ut,B.a_H,B.ut,B.as,null,!0) +B.W4=new A.e(4283925917) +B.V7=new A.e(4280982927) +B.a_w=new A.e(4294929992) +B.XW=new A.e(4288882959) +B.ur=new A.e(4293754665) +B.XF=new A.e(4288235008) +B.a46=new A.aM(B.W4,B.V7,B.a_w,B.XW,B.ur,B.XF,B.ur,B.a5,null,!0) +B.wa=new A.c6("Blue whale","Blue whale, jungle green and outrageous tango orange theme",B.a3u,B.a46) +B.t5=new A.e(4281816952) +B.Y_=new A.e(4288988397) +B.a_k=new A.e(4294544788) +B.a_I=new A.e(4294952134) +B.uv=new A.e(4294100167) +B.a05=new A.e(4294960101) +B.a3B=new A.aM(B.t5,B.Y_,B.a_k,B.a_I,B.uv,B.a05,B.uv,B.as,null,!0) +B.Wd=new A.e(4284380817) +B.ZV=new A.e(4293632422) +B.Yb=new A.e(4289610319) +B.uy=new A.e(4294234065) +B.XB=new A.e(4288037711) +B.a3z=new A.aM(B.Wd,B.t5,B.ZV,B.Yb,B.uy,B.XB,B.uy,B.a5,null,!0) +B.wo=new A.c6("San Juan blue","San Juan blue and pink salmon theme",B.a3B,B.a3z) +B.Wb=new A.e(4284219406) +B.a_d=new A.e(4294232782) +B.WC=new A.e(4285813774) +B.a02=new A.e(4294958755) +B.u2=new A.e(4289562693) +B.a06=new A.e(4294961344) +B.a4J=new A.aM(B.Wb,B.a_d,B.WC,B.a02,B.u2,B.a06,B.u2,B.as,null,!1) +B.XJ=new A.e(4288436841) +B.We=new A.e(4284420382) +B.a_0=new A.e(4293775003) +B.WS=new A.e(4286602787) +B.uz=new A.e(4294303673) +B.Xh=new A.e(4287524412) +B.a4p=new A.aM(B.XJ,B.We,B.a_0,B.WS,B.uz,B.Xh,B.uz,B.a5,null,!1) +B.wh=new A.c6("Rosewood","Rosewood red, with horses neck and driftwood theme",B.a4J,B.a4p) +B.UF=new A.e(4279854206) +B.XT=new A.e(4288793551) +B.a_r=new A.e(4294883094) +B.a03=new A.e(4294958757) +B.rw=new A.e(4278227911) +B.YO=new A.e(4291028991) +B.a4c=new A.aM(B.UF,B.XT,B.a_r,B.a03,B.rw,B.YO,B.rw,B.as,null,!0) +B.X0=new A.e(4286757582) +B.Uu=new A.e(4278478447) +B.a_M=new A.e(4294956674) +B.XM=new A.e(4288575760) +B.rP=new A.e(4280565325) +B.Vv=new A.e(4282540403) +B.a4s=new A.aM(B.X0,B.Uu,B.a_M,B.XM,B.rP,B.Vv,B.rP,B.a5,null,!0) +B.vW=new A.c6("Blumine","Blumine, easter blue and saffron mango theme",B.a4c,B.a4s) +B.VA=new A.e(4282685152) +B.u5=new A.e(4290045695) +B.rL=new A.e(4280298349) +B.tM=new A.e(4288269561) +B.mD=new A.e(4283515449) +B.mH=new A.e(4290423197) +B.a4H=new A.aM(B.VA,B.u5,B.rL,B.tM,B.mD,B.mH,B.mD,B.as,null,!1) +B.UP=new A.e(4280192987) +B.a4n=new A.aM(B.u5,B.UP,B.tM,B.rL,B.mH,B.mD,B.mH,B.a5,null,!1) +B.vN=new A.c6("Flutter Dash","Flutter Dash wallpaper based theme",B.a4H,B.a4n) +B.a4r=new A.aM(B.j8,B.mM,B.tv,B.mL,B.mE,B.mP,B.mE,B.bw,B.bx,!1) +B.a4b=new A.aM(B.jc,B.tm,B.uh,B.tj,B.mN,B.tw,B.mN,B.br,B.bA,!1) +B.w4=new A.c6("Material 3 purple","Material 3 guide and default purple theme",B.a4r,B.a4b) +B.Wm=new A.e(4284572160) +B.ZM=new A.e(4293388421) +B.Wj=new A.e(4284506178) +B.ZK=new A.e(4293321920) +B.t9=new A.e(4282213975) +B.YJ=new A.e(4290768089) +B.a3Z=new A.aM(B.Wm,B.ZM,B.Wj,B.ZK,B.t9,B.YJ,B.t9,B.bw,B.bx,!1) +B.YZ=new A.e(4291546200) +B.VL=new A.e(4282993152) +B.YW=new A.e(4291414180) +B.VI=new A.e(4282927149) +B.tV=new A.e(4288991422) +B.UY=new A.e(4280634944) +B.a3m=new A.aM(B.YZ,B.VL,B.YW,B.VI,B.tV,B.UY,B.tV,B.br,B.bA,!1) +B.w0=new A.c6("Verdun green","Material guide 3 verdun and mineral green with hemlock",B.a3Z,B.a3m) +B.Vj=new A.e(4281887264) +B.Ys=new A.e(4290245527) +B.W1=new A.e(4283785804) +B.Zp=new A.e(4292470731) +B.rF=new A.e(4279855210) +B.Y7=new A.e(4289261552) +B.a3G=new A.aM(B.Vj,B.Ys,B.W1,B.Zp,B.rF,B.Y7,B.rF,B.bw,B.bx,!1) +B.XK=new A.e(4288468605) +B.UQ=new A.e(4280307975) +B.YC=new A.e(4290628528) +B.Vp=new A.e(4282272310) +B.tS=new A.e(4288729040) +B.UO=new A.e(4280176207) +B.a3v=new A.aM(B.XK,B.UQ,B.YC,B.Vp,B.tS,B.UO,B.tS,B.br,B.bA,!1) +B.vV=new A.c6("Dell genoa green","Material guide 3 theme with dell, axolotl and genoa greens",B.a3G,B.a3v) +B.Yw=new A.e(4290450964) +B.XC=new A.e(4288038955) +B.a_Z=new A.e(4294958031) +B.rR=new A.e(4280836756) +B.Z7=new A.e(4291880191) +B.a47=new A.aM(B.Yw,B.uL,B.XC,B.a_Z,B.rR,B.Z7,B.rR,B.bw,B.bx,!1) +B.a_B=new A.e(4294948010) +B.Xu=new A.e(4287823878) +B.a_C=new A.e(4294948252) +B.WH=new A.e(4286066966) +B.tP=new A.e(4288400383) +B.U2=new A.e(4278209145) +B.a4C=new A.aM(B.a_B,B.Xu,B.a_C,B.WH,B.tP,B.U2,B.tP,B.br,B.bA,!1) +B.w3=new A.c6("Thunderbird red","Thunderbird red based Material 3 theme",B.a47,B.a4C) +B.Yy=new A.e(4290510923) +B.a_R=new A.e(4294957534) +B.XH=new A.e(4288364624) +B.a_i=new A.e(4294494155) +B.tG=new A.e(4287056248) +B.a_P=new A.e(4294957040) +B.a4F=new A.aM(B.Yy,B.a_R,B.XH,B.a_i,B.tG,B.a_P,B.tG,B.bw,B.bx,!1) +B.a_z=new A.e(4294947518) +B.Xo=new A.e(4287627320) +B.a_Q=new A.e(4294957532) +B.Wf=new A.e(4284420644) +B.uH=new A.e(4294619108) +B.Ww=new A.e(4285215327) +B.a3P=new A.aM(B.a_z,B.Xo,B.a_Q,B.Wf,B.uH,B.Ww,B.uH,B.br,B.bA,!1) +B.vP=new A.c6("Lipstick pink","Lipstick pink based Material 3 theme",B.a4F,B.a3P) +B.XG=new A.e(4288292270) +B.a_O=new A.e(4294956798) +B.X5=new A.e(4287047887) +B.a_b=new A.e(4294105855) +B.tJ=new A.e(4287842610) +B.a0_=new A.e(4294958032) +B.a3J=new A.aM(B.XG,B.a_O,B.X5,B.a_b,B.tJ,B.a0_,B.tJ,B.bw,B.bx,!1) +B.a_l=new A.e(4294552575) +B.WM=new A.e(4286251151) +B.Zy=new A.e(4292916991) +B.Wv=new A.e(4285202607) +B.uK=new A.e(4294948255) +B.WE=new A.e(4285936413) +B.a4D=new A.aM(B.a_l,B.WM,B.Zy,B.Wv,B.uK,B.WE,B.uK,B.br,B.bA,!1) +B.we=new A.c6("Eggplant purple","Eggplant purple based Material 3 theme",B.a3J,B.a4D) +B.Vx=new A.e(4282602937) +B.Zv=new A.e(4292796671) +B.Vo=new A.e(4282148014) +B.Zn=new A.e(4292403967) +B.tn=new A.e(4283659639) +B.Y9=new A.e(4289320150) +B.a4z=new A.aM(B.Vx,B.Zv,B.Vo,B.Zn,B.tn,B.Y9,B.tn,B.bw,B.bx,!1) +B.Yv=new A.e(4290429951) +B.V3=new A.e(4280892576) +B.Yd=new A.e(4289644287) +B.UC=new A.e(4279518349) +B.u_=new A.e(4289318351) +B.V6=new A.e(4280962126) +B.a3A=new A.aM(B.Yv,B.V3,B.Yd,B.UC,B.u_,B.V6,B.u_,B.br,B.bA,!1) +B.wc=new A.c6("Indigo San Marino","Indigo San Marino based Material 3 theme",B.a4z,B.a3A) +B.Ug=new A.e(4278215076) +B.Zc=new A.e(4291945727) +B.Uh=new A.e(4278216577) +B.Yu=new A.e(4290374399) +B.tY=new A.e(4289149440) +B.a_Y=new A.e(4294958030) +B.a42=new A.aM(B.Ug,B.Zc,B.Uh,B.Yu,B.tY,B.a_Y,B.tY,B.bw,B.bx,!1) +B.XQ=new A.e(4288596735) +B.U1=new A.e(4278208893) +B.X4=new A.e(4287025646) +B.U6=new A.e(4278209890) +B.uJ=new A.e(4294948249) +B.WR=new A.e(4286589440) +B.a44=new A.aM(B.XQ,B.U1,B.X4,B.U6,B.uJ,B.WR,B.uJ,B.br,B.bA,!1) +B.vL=new A.c6("Endeavour blue","Endeavour blue based Material 3 theme",B.a42,B.a44) +B.Ui=new A.e(4278216822) +B.XV=new A.e(4288802815) +B.VG=new A.e(4282868581) +B.YY=new A.e(4291487978) +B.tp=new A.e(4283980930) +B.Zx=new A.e(4292862207) +B.a4f=new A.aM(B.Ui,B.XV,B.VG,B.YY,B.tp,B.Zx,B.tp,B.bw,B.bx,!1) +B.VB=new A.e(4282702065) +B.U8=new A.e(4278210137) +B.u3=new A.e(4289645774) +B.rY=new A.e(4281355085) +B.jb=new A.e(4290823151) +B.tb=new A.e(4282401896) +B.a3S=new A.aM(B.VB,B.U8,B.u3,B.rY,B.jb,B.tb,B.jb,B.br,B.bA,!1) +B.vH=new A.c6("Mosque cyan","Mosque cyan based Material 3 theme",B.a4f,B.a3S) +B.Uj=new A.e(4278217312) +B.Yx=new A.e(4290506214) +B.VM=new A.e(4283065183) +B.Z2=new A.e(4291619042) +B.th=new A.e(4282933626) +B.Z6=new A.e(4291814911) +B.a37=new A.aM(B.Uj,B.Yx,B.VM,B.Z2,B.th,B.Z6,B.th,B.bw,B.bx,!1) +B.W_=new A.e(4283685834) +B.Ub=new A.e(4278210632) +B.a3p=new A.aM(B.W_,B.Ub,B.u3,B.rY,B.jb,B.tb,B.jb,B.br,B.bA,!1) +B.wl=new A.c6("Blue stone teal","Blue stone teal based Material 3 theme",B.a37,B.a3p) +B.Ul=new A.e(4278218268) +B.Yq=new A.e(4290179759) +B.Vf=new A.e(4281763166) +B.YM=new A.e(4290838488) +B.rt=new A.e(4278216076) +B.a3M=new A.aM(B.Ul,B.Yq,B.Vf,B.YM,B.rt,B.uc,B.rt,B.bw,B.bx,!1) +B.WP=new A.e(4286503803) +B.Uf=new A.e(4278211347) +B.XZ=new A.e(4288935109) +B.TZ=new A.e(4278204450) +B.tH=new A.e(4287090683) +B.U5=new A.e(4278209642) +B.a3Y=new A.aM(B.WP,B.Uf,B.XZ,B.TZ,B.tH,B.U5,B.tH,B.br,B.bA,!1) +B.vR=new A.c6("Camarone green","Camarone green based Material 3 theme",B.a3M,B.a3Y) +B.W2=new A.e(4283786496) +B.Zs=new A.e(4292537231) +B.Xd=new A.e(4287395097) +B.a09=new A.e(4294963399) +B.ru=new A.e(4278216827) +B.Ye=new A.e(4289654015) +B.a39=new A.aM(B.W2,B.Zs,B.Xd,B.a09,B.ru,B.Ye,B.ru,B.bw,B.bx,!1) +B.YA=new A.e(4290564195) +B.Vq=new A.e(4282338304) +B.a04=new A.e(4294959483) +B.Vn=new A.e(4282068736) +B.tB=new A.e(4286108652) +B.UW=new A.e(4280438339) +B.a3b=new A.aM(B.YA,B.Vq,B.a04,B.Vn,B.tB,B.UW,B.tB,B.br,B.bA,!1) +B.wr=new A.c6("Verdun lime","Verdun lime based Material 3 theme",B.a39,B.a3b) +B.Ws=new A.e(4285095680) +B.a_c=new A.e(4294173823) +B.WN=new A.e(4286348054) +B.a_j=new A.e(4294505873) +B.t6=new A.e(4281819031) +B.Zj=new A.e(4292207615) +B.a4w=new A.aM(B.Ws,B.a_c,B.WN,B.a_j,B.t6,B.Zj,B.t6,B.bw,B.bx,!1) +B.Zm=new A.e(4292397135) +B.VR=new A.e(4283385600) +B.ZU=new A.e(4293519236) +B.Vc=new A.e(4281545216) +B.tZ=new A.e(4289186047) +B.UI=new A.e(4279977854) +B.a4h=new A.aM(B.Zm,B.VR,B.ZU,B.Vc,B.tZ,B.UI,B.tZ,B.br,B.bA,!1) +B.w6=new A.c6("Yukon gold yellow","Yukon gold yellow based Material 3 theme",B.a4w,B.a4h) +B.Xa=new A.e(4287320064) +B.a00=new A.e(4294958270) +B.Yo=new A.e(4290142255) +B.a07=new A.e(4294962662) +B.j5=new A.e(4282804263) +B.ud=new A.e(4291227551) +B.a4k=new A.aM(B.Xa,B.a00,B.Yo,B.a07,B.j5,B.ud,B.j5,B.bw,B.bx,!1) +B.a_F=new A.e(4294948977) +B.Wu=new A.e(4285152256) +B.a_W=new A.e(4294958027) +B.W0=new A.e(4283768832) +B.j9=new A.e(4289450629) +B.rX=new A.e(4281290513) +B.a3t=new A.aM(B.a_F,B.Wu,B.a_W,B.W0,B.j9,B.rX,B.j9,B.br,B.bA,!1) +B.vI=new A.c6("Brown orange","Brown orange based Material 3 theme",B.a4k,B.a3t) +B.YF=new A.e(4290721292) +B.uM=new A.e(4294958033) +B.YD=new A.e(4290664763) +B.a08=new A.e(4294962664) +B.a4x=new A.aM(B.YF,B.uM,B.YD,B.a08,B.j5,B.ud,B.j5,B.bw,B.bx,!1) +B.a_D=new A.e(4294948256) +B.X3=new A.e(4286980608) +B.Wg=new A.e(4284421632) +B.a4G=new A.aM(B.a_D,B.X3,B.uM,B.Wg,B.j9,B.rX,B.j9,B.br,B.bA,!1) +B.w7=new A.c6("Rust deep orange","Rust deep orange based Material 3 theme",B.a4x,B.a4G) +B.a4e=new A.aM(B.hl,B.ja,B.dj,B.uj,B.f9,B.tW,B.f9,B.as,null,!1) +B.a3F=new A.aM(B.ja,B.hl,B.dj,B.rs,B.dj,B.ro,B.dj,B.a5,null,!1) +B.a4N=new A.c6("Custom","Define a custom color scheme",B.a4e,B.a3F) +B.Je=new A.dg([B.hw,B.vU,B.wu,B.wf,B.wF,B.wg,B.wQ,B.vY,B.x0,B.wk,B.xb,B.ws,B.xe,B.wt,B.xf,B.w9,B.xg,B.vM,B.xh,B.vQ,B.wv,B.wn,B.ww,B.vO,B.wx,B.w5,B.wy,B.vG,B.wz,B.w8,B.wA,B.wp,B.wB,B.wi,B.wC,B.wm,B.wD,B.w1,B.wE,B.wd,B.wG,B.wb,B.wH,B.vK,B.wI,B.vX,B.wJ,B.vT,B.wK,B.wj,B.wL,B.vF,B.wM,B.vJ,B.wN,B.vZ,B.wO,B.wq,B.wP,B.vS,B.wR,B.w2,B.wS,B.w_,B.wT,B.wa,B.wU,B.wo,B.wV,B.wh,B.wW,B.vW,B.wX,B.vN,B.wY,B.w4,B.wZ,B.w0,B.x_,B.vV,B.x1,B.w3,B.x2,B.vP,B.x3,B.we,B.x4,B.wc,B.x5,B.vL,B.x6,B.vH,B.x7,B.wl,B.x8,B.vR,B.x9,B.wr,B.xa,B.w6,B.xc,B.vI,B.xd,B.w7,B.a4U,B.a4N],t.p5) +B.cv=new A.uf(0,"canvas") +B.ez=new A.uf(1,"card") +B.Js=new A.uf(2,"circle") +B.os=new A.uf(3,"button") +B.eA=new A.uf(4,"transparency") +B.akf=new A.dg([B.cv,null,B.ez,B.iU,B.Js,null,B.os,B.iU,B.eA,null],A.ah("dg")) +B.Jh=new A.a2(B.c6,[],A.ah("a2")) +B.akj=new A.a2(B.c6,[],A.ah("a2")) +B.kQ=new A.a2(B.c6,[],A.ah("a2")) +B.Jg=new A.a2(B.c6,[],A.ah("a2>")) +B.Ji=new A.a2(B.c6,[],A.ah("a2")) +B.akh=new A.a2(B.c6,[],A.ah("a2")) +B.Jf=new A.a2(B.c6,[],A.ah("a2")) +B.aki=new A.a2(B.c6,[],A.ah("a2")) +B.Jj=new A.a2(B.c6,[],A.ah("a2>")) +B.kR=new A.a2(B.c6,[],A.ah("a2?,f>")) +B.aCM=new A.Hl(2,"up") +B.aBo=new A.o0(B.aCM) +B.aCN=new A.Hl(3,"down") +B.aBp=new A.o0(B.aCN) +B.akk=new A.dg([B.eO,B.aBo,B.eP,B.aBp,B.eM,B.Ps,B.eN,B.Pr],t.Fp) +B.pk=new A.bl(B.d5,!1,!1,!0,!1) +B.ph=new A.bl(B.cO,!1,!1,!0,!1) +B.pi=new A.bl(B.cP,!1,!1,!0,!1) +B.pj=new A.bl(B.d6,!1,!1,!0,!1) +B.On=new A.bl(B.d5,!1,!1,!1,!0) +B.Ok=new A.bl(B.cO,!1,!1,!1,!0) +B.Ol=new A.bl(B.cP,!1,!1,!1,!0) +B.Om=new A.bl(B.d6,!1,!1,!1,!0) +B.pf=new A.bl(B.hS,!1,!0,!1,!1) +B.pl=new A.bl(B.hR,!1,!0,!1,!1) +B.ly=new A.bl(B.ew,!1,!0,!1,!1) +B.lx=new A.bl(B.ex,!1,!0,!1,!1) +B.Og=new A.bl(B.cO,!0,!1,!1,!1) +B.Oh=new A.bl(B.cP,!0,!1,!1,!1) +B.Oi=new A.bl(B.cO,!0,!0,!1,!1) +B.Oj=new A.bl(B.cP,!0,!0,!1,!1) +B.lw=new A.bl(B.ew,!1,!1,!1,!1) +B.lv=new A.bl(B.ex,!1,!1,!1,!1) +B.Op=new A.bl(B.ew,!0,!1,!1,!1) +B.Oo=new A.bl(B.ex,!0,!1,!1,!1) +B.akl=new A.dg([B.pk,B.V,B.ph,B.V,B.pi,B.V,B.pj,B.V,B.On,B.V,B.Ok,B.V,B.Ol,B.V,B.Om,B.V,B.pf,B.V,B.pl,B.V,B.ly,B.V,B.lx,B.V,B.eP,B.V,B.eM,B.V,B.eN,B.V,B.eO,B.V,B.Og,B.V,B.Oh,B.V,B.Oi,B.V,B.Oj,B.V,B.io,B.V,B.ip,B.V,B.lw,B.V,B.lv,B.V,B.Op,B.V,B.Oo,B.V,B.iq,B.V,B.lu,B.V],t.Fp) +B.r={d:0,E:1,EEEE:2,LLL:3,LLLL:4,M:5,Md:6,MEd:7,MMM:8,MMMd:9,MMMEd:10,MMMM:11,MMMMd:12,MMMMEEEEd:13,QQQ:14,QQQQ:15,y:16,yM:17,yMd:18,yMEd:19,yMMM:20,yMMMd:21,yMMMEd:22,yMMMM:23,yMMMMd:24,yMMMMEEEEd:25,yQQQ:26,yQQQQ:27,H:28,Hm:29,Hms:30,j:31,jm:32,jms:33,jmv:34,jmz:35,jz:36,m:37,ms:38,s:39,v:40,z:41,zzzz:42,ZZZZ:43} +B.ali=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","M/d","EEE, M/d","LLL","MMM d","EEE, MMM d","LLLL","MMMM d","EEEE, MMMM d","QQQ","QQQQ","y","M/y","M/d/y","EEE, M/d/y","MMM y","MMM d, y","EEE, MMM d, y","MMMM y","MMMM d, y","EEEE, MMMM d, y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","h\u202fa","h:mm\u202fa","h:mm:ss\u202fa","h:mm\u202fa v","h:mm\u202fa z","h\u202fa z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.ant={in:0,iw:1,ji:2,jw:3,mo:4,aam:5,adp:6,aue:7,ayx:8,bgm:9,bjd:10,ccq:11,cjr:12,cka:13,cmk:14,coy:15,cqu:16,drh:17,drw:18,gav:19,gfx:20,ggn:21,gti:22,guv:23,hrr:24,ibi:25,ilw:26,jeg:27,kgc:28,kgh:29,koj:30,krm:31,ktr:32,kvs:33,kwq:34,kxe:35,kzj:36,kzt:37,lii:38,lmm:39,meg:40,mst:41,mwj:42,myt:43,nad:44,ncp:45,nnx:46,nts:47,oun:48,pcr:49,pmc:50,pmu:51,ppa:52,ppr:53,pry:54,puz:55,sca:56,skk:57,tdu:58,thc:59,thx:60,tie:61,tkk:62,tlw:63,tmp:64,tne:65,tnf:66,tsf:67,uok:68,xba:69,xia:70,xkh:71,xsj:72,ybd:73,yma:74,ymt:75,yos:76,yuu:77} +B.cQ=new A.a2(B.ant,["id","he","yi","jv","ro","aas","dz","ktz","nun","bcg","drl","rki","mom","cmr","xch","pij","quh","khk","prs","dev","vaj","gvr","nyc","duz","jal","opa","gal","oyb","tdf","kml","kwv","bmf","dtp","gdj","yam","tvd","dtp","dtp","raq","rmx","cir","mry","vaj","mry","xny","kdz","ngv","pij","vaj","adx","huw","phr","bfy","lcq","prt","pub","hle","oyb","dtp","tpo","oyb","ras","twm","weo","tyj","kak","prs","taj","ema","cax","acn","waw","suj","rki","lrr","mtm","zom","yug"],t.w) +B.ann={Abort:0,Again:1,AltLeft:2,AltRight:3,ArrowDown:4,ArrowLeft:5,ArrowRight:6,ArrowUp:7,AudioVolumeDown:8,AudioVolumeMute:9,AudioVolumeUp:10,Backquote:11,Backslash:12,Backspace:13,BracketLeft:14,BracketRight:15,BrightnessDown:16,BrightnessUp:17,BrowserBack:18,BrowserFavorites:19,BrowserForward:20,BrowserHome:21,BrowserRefresh:22,BrowserSearch:23,BrowserStop:24,CapsLock:25,Comma:26,ContextMenu:27,ControlLeft:28,ControlRight:29,Convert:30,Copy:31,Cut:32,Delete:33,Digit0:34,Digit1:35,Digit2:36,Digit3:37,Digit4:38,Digit5:39,Digit6:40,Digit7:41,Digit8:42,Digit9:43,DisplayToggleIntExt:44,Eject:45,End:46,Enter:47,Equal:48,Escape:49,Esc:50,F1:51,F10:52,F11:53,F12:54,F13:55,F14:56,F15:57,F16:58,F17:59,F18:60,F19:61,F2:62,F20:63,F21:64,F22:65,F23:66,F24:67,F3:68,F4:69,F5:70,F6:71,F7:72,F8:73,F9:74,Find:75,Fn:76,FnLock:77,GameButton1:78,GameButton10:79,GameButton11:80,GameButton12:81,GameButton13:82,GameButton14:83,GameButton15:84,GameButton16:85,GameButton2:86,GameButton3:87,GameButton4:88,GameButton5:89,GameButton6:90,GameButton7:91,GameButton8:92,GameButton9:93,GameButtonA:94,GameButtonB:95,GameButtonC:96,GameButtonLeft1:97,GameButtonLeft2:98,GameButtonMode:99,GameButtonRight1:100,GameButtonRight2:101,GameButtonSelect:102,GameButtonStart:103,GameButtonThumbLeft:104,GameButtonThumbRight:105,GameButtonX:106,GameButtonY:107,GameButtonZ:108,Help:109,Home:110,Hyper:111,Insert:112,IntlBackslash:113,IntlRo:114,IntlYen:115,KanaMode:116,KeyA:117,KeyB:118,KeyC:119,KeyD:120,KeyE:121,KeyF:122,KeyG:123,KeyH:124,KeyI:125,KeyJ:126,KeyK:127,KeyL:128,KeyM:129,KeyN:130,KeyO:131,KeyP:132,KeyQ:133,KeyR:134,KeyS:135,KeyT:136,KeyU:137,KeyV:138,KeyW:139,KeyX:140,KeyY:141,KeyZ:142,KeyboardLayoutSelect:143,Lang1:144,Lang2:145,Lang3:146,Lang4:147,Lang5:148,LaunchApp1:149,LaunchApp2:150,LaunchAssistant:151,LaunchControlPanel:152,LaunchMail:153,LaunchScreenSaver:154,MailForward:155,MailReply:156,MailSend:157,MediaFastForward:158,MediaPause:159,MediaPlay:160,MediaPlayPause:161,MediaRecord:162,MediaRewind:163,MediaSelect:164,MediaStop:165,MediaTrackNext:166,MediaTrackPrevious:167,MetaLeft:168,MetaRight:169,MicrophoneMuteToggle:170,Minus:171,NonConvert:172,NumLock:173,Numpad0:174,Numpad1:175,Numpad2:176,Numpad3:177,Numpad4:178,Numpad5:179,Numpad6:180,Numpad7:181,Numpad8:182,Numpad9:183,NumpadAdd:184,NumpadBackspace:185,NumpadClear:186,NumpadClearEntry:187,NumpadComma:188,NumpadDecimal:189,NumpadDivide:190,NumpadEnter:191,NumpadEqual:192,NumpadMemoryAdd:193,NumpadMemoryClear:194,NumpadMemoryRecall:195,NumpadMemoryStore:196,NumpadMemorySubtract:197,NumpadMultiply:198,NumpadParenLeft:199,NumpadParenRight:200,NumpadSubtract:201,Open:202,PageDown:203,PageUp:204,Paste:205,Pause:206,Period:207,Power:208,PrintScreen:209,PrivacyScreenToggle:210,Props:211,Quote:212,Resume:213,ScrollLock:214,Select:215,SelectTask:216,Semicolon:217,ShiftLeft:218,ShiftRight:219,ShowAllWindows:220,Slash:221,Sleep:222,Space:223,Super:224,Suspend:225,Tab:226,Turbo:227,Undo:228,WakeUp:229,ZoomToggle:230} +B.Jn=new A.a2(B.ann,[B.Mv,B.Mb,B.fM,B.fO,B.LB,B.LA,B.Lz,B.LC,B.Mj,B.Mh,B.Mi,B.Lb,B.L8,B.L1,B.L6,B.L7,B.ML,B.MK,B.N5,B.N9,B.N6,B.N4,B.N8,B.N3,B.N7,B.eC,B.Lc,B.LU,B.fK,B.i6,B.Mo,B.Me,B.Md,B.Lw,B.L_,B.KR,B.KS,B.KT,B.KU,B.KV,B.KW,B.KX,B.KY,B.KZ,B.MJ,B.MU,B.Lx,B.L0,B.L5,B.oD,B.oD,B.Lf,B.Lo,B.Lp,B.Lq,B.LX,B.LY,B.LZ,B.M_,B.M0,B.M1,B.M2,B.Lg,B.M3,B.M4,B.M5,B.M6,B.M7,B.Lh,B.Li,B.Lj,B.Lk,B.Ll,B.Lm,B.Ln,B.Mg,B.i5,B.JR,B.JX,B.K5,B.K6,B.K7,B.K8,B.K9,B.Ka,B.Kb,B.JY,B.JZ,B.K_,B.K0,B.K1,B.K2,B.K3,B.K4,B.Kc,B.Kd,B.Ke,B.Kf,B.Kg,B.Kh,B.Ki,B.Kj,B.Kk,B.Kl,B.Km,B.Kn,B.Ko,B.Kp,B.Kq,B.M9,B.Lu,B.JP,B.Lt,B.LT,B.Ml,B.Mn,B.Mm,B.Kr,B.Ks,B.Kt,B.Ku,B.Kv,B.Kw,B.Kx,B.Ky,B.Kz,B.KA,B.KB,B.KC,B.KD,B.KE,B.KF,B.KG,B.KH,B.KI,B.KJ,B.KK,B.KL,B.KM,B.KN,B.KO,B.KP,B.KQ,B.Ne,B.Mq,B.Mr,B.Ms,B.Mt,B.Mu,B.MZ,B.MY,B.N2,B.N_,B.MX,B.N1,B.Nc,B.Nb,B.Nd,B.MP,B.MN,B.MM,B.MV,B.MO,B.MQ,B.MW,B.MT,B.MR,B.MS,B.fN,B.i8,B.JW,B.L4,B.Mp,B.l3,B.LR,B.LI,B.LJ,B.LK,B.LL,B.LM,B.LN,B.LO,B.LP,B.LQ,B.LG,B.Mz,B.MF,B.MG,B.Mk,B.LS,B.LD,B.LH,B.LW,B.MD,B.MC,B.MB,B.MA,B.ME,B.LE,B.Mx,B.My,B.LF,B.M8,B.Ly,B.Lv,B.Mf,B.Ls,B.Ld,B.LV,B.Lr,B.JV,B.Mw,B.La,B.JT,B.l2,B.Ma,B.N0,B.L9,B.fL,B.i7,B.Nf,B.Le,B.MH,B.L3,B.JQ,B.JS,B.L2,B.JU,B.Mc,B.MI,B.Na],A.ah("a2")) +B.cZ=new A.e(855638016) +B.QO=new A.cd(-1,B.a4,B.cZ,B.kY,1) +B.cY=new A.e(603979776) +B.R7=new A.cd(0,B.a4,B.cY,B.cw,1) +B.Ra=new A.cd(0,B.a4,B.cE,B.cw,3) +B.agz=A.a(s([B.QO,B.R7,B.Ra]),t.c) +B.Ri=new A.cd(-2,B.a4,B.cZ,B.e2,1) +B.Rb=new A.cd(0,B.a4,B.cY,B.kY,2) +B.Rc=new A.cd(0,B.a4,B.cE,B.cw,5) +B.afE=A.a(s([B.Ri,B.Rb,B.Rc]),t.c) +B.Rj=new A.cd(-2,B.a4,B.cZ,B.e2,3) +B.Rd=new A.cd(0,B.a4,B.cY,B.e2,4) +B.Re=new A.cd(0,B.a4,B.cE,B.cw,8) +B.afF=A.a(s([B.Rj,B.Rd,B.Re]),t.c) +B.QP=new A.cd(-1,B.a4,B.cZ,B.kY,4) +B.Rf=new A.cd(0,B.a4,B.cY,B.JB,5) +B.Rg=new A.cd(0,B.a4,B.cE,B.cw,10) +B.agA=A.a(s([B.QP,B.Rf,B.Rg]),t.c) +B.QQ=new A.cd(-1,B.a4,B.cZ,B.e2,5) +B.JC=new A.m(0,6) +B.QY=new A.cd(0,B.a4,B.cY,B.JC,10) +B.QZ=new A.cd(0,B.a4,B.cE,B.cw,18) +B.agB=A.a(s([B.QQ,B.QY,B.QZ]),t.c) +B.ox=new A.m(0,5) +B.QR=new A.cd(-3,B.a4,B.cZ,B.ox,5) +B.oy=new A.m(0,8) +B.R_=new A.cd(1,B.a4,B.cY,B.oy,10) +B.R0=new A.cd(2,B.a4,B.cE,B.e2,14) +B.acm=A.a(s([B.QR,B.R_,B.R0]),t.c) +B.QS=new A.cd(-3,B.a4,B.cZ,B.ox,6) +B.JD=new A.m(0,9) +B.R1=new A.cd(1,B.a4,B.cY,B.JD,12) +B.R2=new A.cd(2,B.a4,B.cE,B.e2,16) +B.acn=A.a(s([B.QS,B.R1,B.R2]),t.c) +B.anF=new A.m(0,7) +B.QM=new A.cd(-4,B.a4,B.cZ,B.anF,8) +B.anA=new A.m(0,12) +B.R3=new A.cd(2,B.a4,B.cY,B.anA,17) +B.R4=new A.cd(4,B.a4,B.cE,B.ox,22) +B.aeh=A.a(s([B.QM,B.R3,B.R4]),t.c) +B.QN=new A.cd(-5,B.a4,B.cZ,B.oy,10) +B.anB=new A.m(0,16) +B.R5=new A.cd(2,B.a4,B.cY,B.anB,24) +B.R6=new A.cd(5,B.a4,B.cE,B.JC,30) +B.afU=A.a(s([B.QN,B.R5,B.R6]),t.c) +B.anz=new A.m(0,11) +B.Rh=new A.cd(-7,B.a4,B.cZ,B.anz,15) +B.anD=new A.m(0,24) +B.R8=new A.cd(3,B.a4,B.cY,B.anD,38) +B.R9=new A.cd(8,B.a4,B.cE,B.JD,46) +B.aeA=A.a(s([B.Rh,B.R8,B.R9]),t.c) +B.amK=new A.dg([0,B.C6,1,B.agz,2,B.afE,3,B.afF,4,B.agA,6,B.agB,8,B.acm,9,B.acn,12,B.aeh,16,B.afU,24,B.aeA],A.ah("dg>")) +B.ano={KeyA:0,KeyB:1,KeyC:2,KeyD:3,KeyE:4,KeyF:5,KeyG:6,KeyH:7,KeyI:8,KeyJ:9,KeyK:10,KeyL:11,KeyM:12,KeyN:13,KeyO:14,KeyP:15,KeyQ:16,KeyR:17,KeyS:18,KeyT:19,KeyU:20,KeyV:21,KeyW:22,KeyX:23,KeyY:24,KeyZ:25,Digit1:26,Digit2:27,Digit3:28,Digit4:29,Digit5:30,Digit6:31,Digit7:32,Digit8:33,Digit9:34,Digit0:35,Minus:36,Equal:37,BracketLeft:38,BracketRight:39,Backslash:40,Semicolon:41,Quote:42,Backquote:43,Comma:44,Period:45,Slash:46} +B.or=new A.a2(B.ano,["a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","1","2","3","4","5","6","7","8","9","0","-","=","[","]","\\",";","'","`",",",".","/"],t.w) +B.hX=new A.dg([B.hw,B.vU,B.wu,B.wf,B.wF,B.wg,B.wQ,B.vY,B.x0,B.wk,B.xb,B.ws,B.xe,B.wt,B.xf,B.w9,B.xg,B.vM,B.xh,B.vQ,B.wv,B.wn,B.ww,B.vO,B.wx,B.w5,B.wy,B.vG,B.wz,B.w8,B.wA,B.wp,B.wB,B.wi,B.wC,B.wm,B.wD,B.w1,B.wE,B.wd,B.wG,B.wb,B.wH,B.vK,B.wI,B.vX,B.wJ,B.vT,B.wK,B.wj,B.wL,B.vF,B.wM,B.vJ,B.wN,B.vZ,B.wO,B.wq,B.wP,B.vS,B.wR,B.w2,B.wS,B.w_,B.wT,B.wa,B.wU,B.wo,B.wV,B.wh,B.wW,B.vW,B.wX,B.vN,B.wY,B.w4,B.wZ,B.w0,B.x_,B.vV,B.x1,B.w3,B.x2,B.vP,B.x3,B.we,B.x4,B.wc,B.x5,B.vL,B.x6,B.vH,B.x7,B.wl,B.x8,B.vR,B.x9,B.wr,B.xa,B.w6,B.xc,B.vI,B.xd,B.w7],t.p5) +B.a9p=A.a(s([42,null,null,8589935146]),t.Z) +B.a9q=A.a(s([43,null,null,8589935147]),t.Z) +B.a9u=A.a(s([45,null,null,8589935149]),t.Z) +B.a9v=A.a(s([46,null,null,8589935150]),t.Z) +B.a9y=A.a(s([47,null,null,8589935151]),t.Z) +B.a9z=A.a(s([48,null,null,8589935152]),t.Z) +B.a9A=A.a(s([49,null,null,8589935153]),t.Z) +B.a9Q=A.a(s([50,null,null,8589935154]),t.Z) +B.a9R=A.a(s([51,null,null,8589935155]),t.Z) +B.a9S=A.a(s([52,null,null,8589935156]),t.Z) +B.a9T=A.a(s([53,null,null,8589935157]),t.Z) +B.a9U=A.a(s([54,null,null,8589935158]),t.Z) +B.a9V=A.a(s([55,null,null,8589935159]),t.Z) +B.a9X=A.a(s([56,null,null,8589935160]),t.Z) +B.a9Y=A.a(s([57,null,null,8589935161]),t.Z) +B.abq=A.a(s([8589934852,8589934852,8589934853,null]),t.Z) +B.a9d=A.a(s([4294967555,null,4294967555,null]),t.Z) +B.a9e=A.a(s([4294968065,null,null,8589935154]),t.Z) +B.a9f=A.a(s([4294968066,null,null,8589935156]),t.Z) +B.a9g=A.a(s([4294968067,null,null,8589935158]),t.Z) +B.a9h=A.a(s([4294968068,null,null,8589935160]),t.Z) +B.a9m=A.a(s([4294968321,null,null,8589935157]),t.Z) +B.abr=A.a(s([8589934848,8589934848,8589934849,null]),t.Z) +B.a9c=A.a(s([4294967423,null,null,8589935150]),t.Z) +B.a9i=A.a(s([4294968069,null,null,8589935153]),t.Z) +B.a9b=A.a(s([4294967309,null,null,8589935117]),t.Z) +B.a9j=A.a(s([4294968070,null,null,8589935159]),t.Z) +B.a9n=A.a(s([4294968327,null,null,8589935152]),t.Z) +B.abs=A.a(s([8589934854,8589934854,8589934855,null]),t.Z) +B.a9k=A.a(s([4294968071,null,null,8589935155]),t.Z) +B.a9l=A.a(s([4294968072,null,null,8589935161]),t.Z) +B.abt=A.a(s([8589934850,8589934850,8589934851,null]),t.Z) +B.Jp=new A.dg(["*",B.a9p,"+",B.a9q,"-",B.a9u,".",B.a9v,"/",B.a9y,"0",B.a9z,"1",B.a9A,"2",B.a9Q,"3",B.a9R,"4",B.a9S,"5",B.a9T,"6",B.a9U,"7",B.a9V,"8",B.a9X,"9",B.a9Y,"Alt",B.abq,"AltGraph",B.a9d,"ArrowDown",B.a9e,"ArrowLeft",B.a9f,"ArrowRight",B.a9g,"ArrowUp",B.a9h,"Clear",B.a9m,"Control",B.abr,"Delete",B.a9c,"End",B.a9i,"Enter",B.a9b,"Home",B.a9j,"Insert",B.a9n,"Meta",B.abs,"PageDown",B.a9k,"PageUp",B.a9l,"Shift",B.abt],A.ah("dg>")) +B.agf=A.a(s([B.Ep,null,null,B.J5]),t.L) +B.agg=A.a(s([B.IS,null,null,B.J6]),t.L) +B.agh=A.a(s([B.IT,null,null,B.J7]),t.L) +B.agi=A.a(s([B.IU,null,null,B.od]),t.L) +B.agj=A.a(s([B.IV,null,null,B.J8]),t.L) +B.aco=A.a(s([B.IW,null,null,B.oe]),t.L) +B.acp=A.a(s([B.IX,null,null,B.of]),t.L) +B.acq=A.a(s([B.IY,null,null,B.og]),t.L) +B.acr=A.a(s([B.IZ,null,null,B.oh]),t.L) +B.acs=A.a(s([B.J_,null,null,B.oi]),t.L) +B.act=A.a(s([B.J0,null,null,B.oj]),t.L) +B.acu=A.a(s([B.J1,null,null,B.ok]),t.L) +B.acv=A.a(s([B.J2,null,null,B.ol]),t.L) +B.ahS=A.a(s([B.J3,null,null,B.om]),t.L) +B.ahT=A.a(s([B.J4,null,null,B.on]),t.L) +B.afK=A.a(s([B.hU,B.hU,B.kL,null]),t.L) +B.ahZ=A.a(s([B.kH,null,B.kH,null]),t.L) +B.adF=A.a(s([B.d5,null,null,B.og]),t.L) +B.adG=A.a(s([B.cO,null,null,B.oi]),t.L) +B.adH=A.a(s([B.cP,null,null,B.ok]),t.L) +B.aeV=A.a(s([B.d6,null,null,B.om]),t.L) +B.afq=A.a(s([B.oa,null,null,B.oj]),t.L) +B.afL=A.a(s([B.hT,B.hT,B.kK,null]),t.L) +B.abL=A.a(s([B.c5,null,null,B.od]),t.L) +B.adI=A.a(s([B.ew,null,null,B.of]),t.L) +B.agr=A.a(s([B.kG,null,null,B.oc]),t.L) +B.adJ=A.a(s([B.ex,null,null,B.ol]),t.L) +B.afr=A.a(s([B.ob,null,null,B.oe]),t.L) +B.afM=A.a(s([B.hV,B.hV,B.kM,null]),t.L) +B.adK=A.a(s([B.hR,null,null,B.oh]),t.L) +B.afx=A.a(s([B.hS,null,null,B.on]),t.L) +B.afN=A.a(s([B.e_,B.e_,B.ey,null]),t.L) +B.amL=new A.dg(["*",B.agf,"+",B.agg,"-",B.agh,".",B.agi,"/",B.agj,"0",B.aco,"1",B.acp,"2",B.acq,"3",B.acr,"4",B.acs,"5",B.act,"6",B.acu,"7",B.acv,"8",B.ahS,"9",B.ahT,"Alt",B.afK,"AltGraph",B.ahZ,"ArrowDown",B.adF,"ArrowLeft",B.adG,"ArrowRight",B.adH,"ArrowUp",B.aeV,"Clear",B.afq,"Control",B.afL,"Delete",B.abL,"End",B.adI,"Enter",B.agr,"Home",B.adJ,"Insert",B.afr,"Meta",B.afM,"PageDown",B.adK,"PageUp",B.afx,"Shift",B.afN],A.ah("dg>")) +B.ans={af:0,am:1,ar:2,as:3,az:4,be:5,bg:6,bn:7,bs:8,ca:9,cs:10,cy:11,da:12,de:13,de_CH:14,el:15,en:16,en_AU:17,en_CA:18,en_GB:19,en_IE:20,en_IN:21,en_NZ:22,en_SG:23,en_US:24,en_ZA:25,es:26,es_419:27,es_MX:28,es_US:29,et:30,eu:31,fa:32,fi:33,fil:34,fr:35,fr_CA:36,gl:37,gsw:38,gu:39,he:40,hi:41,hr:42,hu:43,hy:44,id:45,is:46,it:47,ja:48,ka:49,kk:50,km:51,kn:52,ko:53,ky:54,lo:55,lt:56,lv:57,mk:58,ml:59,mn:60,mr:61,ms:62,my:63,nb:64,ne:65,nl:66,no:67,or:68,pa:69,pl:70,ps:71,pt:72,pt_PT:73,ro:74,ru:75,si:76,sk:77,sl:78,sq:79,sr:80,sr_Latn:81,sv:82,sw:83,ta:84,te:85,th:86,tl:87,tr:88,uk:89,ur:90,uz:91,vi:92,zh:93,zh_HK:94,zh_TW:95,zu:96} +B.akr=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","dd-MM","EEE d/M","LLL","d MMM","EEE d MMM","LLLL","d MMMM","EEEE d MMMM","QQQ","QQQQ","y","MM-y","y-MM-dd","EEE y-MM-dd","MMM y","d MMM y","EEE d MMM y","MMMM y","d MMMM y","EEEE d MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alp=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","M/d","EEE\u1363 M/d","LLL","MMM d","EEE\u1363 MMM d","LLLL","MMMM d","EEEE\u1363 MMMM d","QQQ","QQQQ","y","M/y","d/M/y","EEE\u1363 d/M/y","MMM y","d MMM y","EEE\u1363 MMM d y","MMMM y","d MMMM y","y MMMM d, EEEE","QQQ y","QQQQ y","H","HH:mm","HH:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a v","h:mm a z","h a z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akW=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/\u200fM","EEE\u060c d/\u200fM","LLL","d MMM","EEE\u060c d MMM","LLLL","d MMMM","EEEE\u060c d MMMM","QQQ","QQQQ","y","M\u200f/y","d\u200f/M\u200f/y","EEE\u060c d/\u200fM/\u200fy","MMM y","d MMM y","EEE\u060c d MMM y","MMMM y","d MMMM y","EEEE\u060c d MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a v","h:mm a z","h a z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alH=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","dd-MM","EEE, dd-MM","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","MM-y","dd-MM-y","EEE, dd-MM-y","MMM y","d MMM y","EEE, d MMM y","MMMM y","d MMMM, y","EEEE, d MMMM, y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","a h","a h:mm","a h:mm:ss","a h:mm v","a h:mm z","a h z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alI=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","dd.MM","dd.MM, EEE","LLL","d MMM","d MMM, EEE","LLLL","d MMMM","d MMMM, EEEE","QQQ","QQQQ","y","MM.y","dd.MM.y","dd.MM.y, EEE","MMM y","d MMM y","d MMM y, EEE","MMMM y","d MMMM y","d MMMM y, EEEE","y QQQ","y QQQQ","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alz=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d.M","EEE, d.M","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","M.y","d.M.y","EEE, d.M.y","LLL y","d MMM y","EEE, d MMM y","LLLL y","d MMMM y '\u0433'.","EEEE, d MMMM y '\u0433'.","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm.ss","s","v","z","zzzz","ZZZZ"],t.w) +B.aln=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d.MM","EEE, d.MM","MM","d.MM","EEE, d.MM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y '\u0433'.","MM.y '\u0433'.","d.MM.y '\u0433'.","EEE, d.MM.y '\u0433'.","MM.y '\u0433'.","d.MM.y '\u0433'.","EEE, d.MM.y '\u0433'.","MMMM y '\u0433'.","d MMMM y '\u0433'.","EEEE, d MMMM y '\u0433'.","QQQ y '\u0433'.","QQQQ y '\u0433'.","HH '\u0447'.","HH:mm '\u0447'.","HH:mm:ss '\u0447'.","HH '\u0447'.","HH:mm '\u0447'.","HH:mm:ss '\u0447'.","HH:mm '\u0447'. v","HH:mm '\u0447'. z","HH '\u0447'. z","m","m:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akO=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE, d-M","LLL","d MMM","EEE d MMM","LLLL","d MMMM","EEEE d MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE, d/M/y","MMM y","d MMM, y","EEE, d MMM, y","MMMM y","d MMMM, y","EEEE, d MMMM, y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a v","h:mm a z","h a z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akw=new A.a2(B.r,["d.","ccc","cccc","LLL","LLLL","L","d.M.","EEE, d.M.","LLL","d. MMM","EEE, d. MMM","LLLL","d. MMMM","EEEE, d. MMMM","QQQ","QQQQ","y.","MM/y","d.M.y.","EEE, d.M.y.","MMM y.","d. MMM y.","EEE, d. MMM y.","LLLL y.","d. MMMM y.","EEEE, d. MMMM y.","QQQ y.","QQQQ y.","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm (v)","HH:mm (z)","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akE=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE d/M","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE, d/M/y","LLL 'de' y","d MMM 'de' y","EEE, d MMM y","LLLL 'de' y","d MMMM 'de' y","EEEE, d MMMM 'de' y","QQQ y","QQQQ y","H","H:mm","H:mm:ss","H","H:mm","H:mm:ss","H:mm v","H:mm z","H z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.al3=new A.a2(B.r,["d.","ccc","cccc","LLL","LLLL","L","d. M.","EEE d. M.","LLL","d. M.","EEE d. M.","LLLL","d. MMMM","EEEE d. MMMM","QQQ","QQQQ","y","M/y","d. M. y","EEE d. M. y","LLLL y","d. M. y","EEE d. M. y","LLLL y","d. MMMM y","EEEE d. MMMM y","QQQ y","QQQQ y","H","H:mm","H:mm:ss","H","H:mm","H:mm:ss","H:mm v","H:mm z","H z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akL=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE, d/M","LLL","d MMM","EEE, d MMM","LLLL","MMMM d","EEEE, d MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE, d/M/y","MMM y","d MMM y","EEE, d MMM y","MMMM y","d MMMM y","EEEE, d MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alh=new A.a2(B.r,["d.","ccc","cccc","MMM","MMMM","M","d.M","EEE d.M","MMM","d. MMM","EEE d. MMM","MMMM","d. MMMM","EEEE d. MMMM","QQQ","QQQQ","y","M.y","d.M.y","EEE d.M.y","MMM y","d. MMM y","EEE d. MMM y","MMMM y","d. MMMM y","EEEE 'den' d. MMMM y","QQQ y","QQQQ y","HH","HH.mm","HH.mm.ss","HH","HH.mm","HH.mm.ss","HH.mm v","HH.mm z","HH z","m","mm.ss","s","v","z","zzzz","ZZZZ"],t.w) +B.Jl=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d.M.","EEE, d.M.","LLL","d. MMM","EEE, d. MMM","LLLL","d. MMMM","EEEE, d. MMMM","QQQ","QQQQ","y","M.y","d.M.y","EEE, d.M.y","MMM y","d. MMM y","EEE, d. MMM y","MMMM y","d. MMMM y","EEEE, d. MMMM y","QQQ y","QQQQ y","HH 'Uhr'","HH:mm","HH:mm:ss","HH 'Uhr'","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH 'Uhr' z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.als=new A.a2(B.r,["d","ccc","cccc","MMM","MMMM","L","d/M","EEE d/M","MMM","d MMM","EEE d MMM","MMMM","d MMMM","EEEE d MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE d/M/y","MMM y","d MMM y","EEE d MMM y","LLLL y","d MMMM y","EEEE d MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a v","h:mm a z","h a z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.hW=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","M/d","EEE, M/d","LLL","MMM d","EEE, MMM d","LLLL","MMMM d","EEEE, MMMM d","QQQ","QQQQ","y","M/y","M/d/y","EEE, M/d/y","MMM y","MMM d, y","EEE, MMM d, y","MMMM y","MMMM d, y","EEEE, MMMM d, y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a v","h:mm a z","h a z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akV=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE, d/M","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","MM/y","dd/MM/y","EEE, dd/MM/y","MMM y","d MMM y","EEE, d MMM y","MMMM y","d MMMM y","EEEE, d MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a v","h:mm a z","h a z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alF=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","MM-dd","EEE, MM-dd","LLL","MMM d","EEE, MMM d","LLLL","MMMM d","EEEE, MMMM d","QQQ","QQQQ","y","MM/y","y-MM-dd","EEE, y-MM-dd","MMM y","MMM d, y","EEE, MMM d, y","MMMM y","MMMM d, y","EEEE, MMMM d, y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a v","h:mm a z","h a z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.al1=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","dd/MM","EEE, dd/MM","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","MM/y","dd/MM/y","EEE, dd/MM/y","MMM y","d MMM y","EEE, d MMM y","MMMM y","d MMMM y","EEEE, d MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akF=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE, d/M","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","MM/y","d/M/y","EEE, d/M/y","MMM y","d MMM y","EEE d MMM y","MMMM y","d MMMM y","EEEE d MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alx=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","dd/MM","EEE, dd/MM","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","MM/y","d/M/y","EEE, d/M/y","MMM y","d MMM y","EEE, d MMM, y","MMMM y","d MMMM y","EEEE, d MMMM, y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a v","h:mm a z","h a z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akA=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE, dd/MM","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","MM/y","d/MM/y","EEE, dd/MM/y","MMM y","d MMM y","EEE, d MMM y","MMMM y","d MMMM y","EEEE, d MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a v","h:mm a z","h a z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akx=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","dd/MM","EEE, dd/MM","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","MM/y","dd/MM/y","EEE, dd/MM/y","MMM y","d MMM y","EEE, d MMM y","MMMM y","d MMMM y","EEEE, d MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a v","h:mm a z","h a z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alm=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","MM/dd","EEE, MM/dd","LLL","dd MMM","EEE, dd MMM","LLLL","d MMMM","EEEE, dd MMMM","QQQ","QQQQ","y","MM/y","y/MM/dd","EEE, y/MM/dd","MMM y","dd MMM y","EEE, dd MMM y","MMMM y","d MMMM y","EEEE, d MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akY=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE, d/M","LLL","d MMM","EEE, d MMM","LLLL","d 'de' MMMM","EEEE, d 'de' MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE, d/M/y","MMM y","d MMM y","EEE, d MMM y","MMMM 'de' y","d 'de' MMMM 'de' y","EEEE, d 'de' MMMM 'de' y","QQQ y","QQQQ 'de' y","H","H:mm","H:mm:ss","H","H:mm","H:mm:ss","H:mm v","H:mm z","H z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.aks=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE, d/M","LLL","d MMM","EEE, d MMM","LLLL","d 'de' MMMM","EEEE, d 'de' MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE d/M/y","MMM y","d MMM y","EEE, d MMM y","MMMM 'de' y","d 'de' MMMM 'de' y","EEEE, d 'de' MMMM 'de' y","QQQ 'de' y","QQQQ 'de' y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alb=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE, d/M","LLL","d MMM","EEE d 'de' MMM","LLLL","d 'de' MMMM","EEEE, d 'de' MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE, d/M/y","MMM y","d MMM y","EEE, d 'de' MMM 'de' y","MMMM 'de' y","d 'de' MMMM 'de' y","EEEE, d 'de' MMMM 'de' y","QQQ y","QQQQ 'de' y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.ale=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE, d/M","LLL","d MMM","EEE, d 'de' MMM","LLLL","d 'de' MMMM","EEEE, d 'de' MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE, d/M/y","MMM y","d MMM y","EEE, d 'de' MMM 'de' y","MMMM 'de' y","d 'de' MMMM 'de' y","EEEE, d 'de' MMMM 'de' y","QQQ y","QQQQ 'de' y","HH","HH:mm","HH:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a v","h:mm a z","h a z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alG=new A.a2(B.r,["d","ccc","cccc","MMMM","MMMM","M","d.M","EEE, d.M","MMMM","d. MMM","EEE, d. MMM","MMMM","d. MMMM","EEEE, d. MMMM","QQQ","QQQQ","y","M.y","d.M.y","EEE, d.M.y","MMM y","d. MMM y","EEE, d. MMMM y","MMMM y","d. MMMM y","EEEE, d. MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.al9=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","M/d","M/d, EEE","LLL","MMM d","MMM d, EEE","LLLL","MMMM d","MMMM d, EEEE","QQQ","QQQQ","y","y/M","y/M/d","y/M/d, EEE","y MMM","y MMM d","y MMM d, EEE","y('e')'ko' MMMM","y('e')'ko' MMMM'ren' d","y('e')'ko' MMMM'ren' d('a'), EEEE","y('e')'ko' QQQ","y('e')'ko' QQQQ","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH (z)","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alu=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","M/d","EEE M/d","LLL","d LLL","EEE d LLL","LLLL","d LLLL","EEEE d LLLL","QQQ","QQQQ","y","y/M","y/M/d","EEE y/M/d","MMM y","d MMM y","EEE d MMM y","MMMM y","d MMMM y","EEEE d MMMM y","QQQQ y","QQQQ y","H","H:mm","H:mm:ss","H","H:mm","H:mm:ss","H:mm v","HH:mm (z)","H (z)","m","m:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akm=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d.M.","EEE d.M.","LLL","d. MMM","ccc d. MMM","LLLL","d. MMMM","cccc d. MMMM","QQQ","QQQQ","y","L.y","d.M.y","EEE d.M.y","LLL y","d. MMM y","EEE d. MMM y","LLLL y","d. MMMM y","EEEE d. MMMM y","QQQ y","QQQQ y","H","H.mm","H.mm.ss","H","H.mm","H.mm.ss","H.mm v","H.mm z","H z","m","m.ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akv=new A.a2(B.r,["d","EEE","EEEE","LLL","LLLL","L","dd/MM","EEE dd/MM","LLL","d MMM","EEE d MMM","LLLL","d MMMM","EEEE d MMMM","QQQ","QQQQ","y","MM/y","dd/MM/y","EEE dd/MM/y","MMM y","d MMM y","EEE d MMM y","MMMM y","d MMMM y","EEEE d MMMM y","QQQ y","QQQQ y","HH 'h'","HH:mm","HH:mm:ss","HH 'h'","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH 'h' z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akJ=new A.a2(B.r,["d","EEE","EEEE","LLL","LLLL","L","M-d","EEE M-d","LLL","d MMM","EEE d MMM","LLLL","d MMMM","EEEE d MMMM","QQQ","QQQQ","y","y-MM","y-MM-dd","EEE y-MM-dd","MMM y","d MMM y","EEE d MMM y","MMMM y","d MMMM y","EEEE d MMMM y","QQQ y","QQQQ y","HH 'h'","HH 'h' mm","HH 'h' mm 'min' ss 's'","HH 'h'","HH 'h' mm","HH 'h' mm 'min' ss 's'","HH 'h' mm v","HH 'h' mm z","HH 'h' z","m","mm 'min' ss 's'","s","v","z","zzzz","ZZZZ"],t.w) +B.alJ=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE, d/M","LLL","d 'de' MMM","EEE, d 'de' MMM","LLLL","d 'de' MMMM","EEEE, d 'de' MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE, d/M/y","MMM 'de' y","d 'de' MMM 'de' y","EEE, d 'de' MMM 'de' y","MMMM 'de' y","d 'de' MMMM 'de' y","EEEE, d 'de' MMMM 'de' y","QQQ y","QQQQ 'de' y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.aku=new A.a2(B.r,["d","EEE","EEEE","LLL","LLLL","L","d.M.","EEE, d.M.","LLL","d. MMM","EEE d. MMM","LLLL","d. MMMM","EEEE d. MMMM","QQQ","QQQQ","y","y-M","d.M.y","EEE, y-M-d","MMM y","y MMM d","EEE, d. MMM y","MMMM y","d. MMMM y","EEEE, d. MMMM y","QQQ y","QQQQ y","H","HH:mm","HH:mm:ss","H","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","H z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akz=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE, d/M","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE, d/M/y","MMM y","d MMM, y","EEE, d MMM, y","MMMM y","d MMMM, y","EEEE, d MMMM, y","y QQQ","y QQQQ","HH","HH:mm","HH:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a v","h:mm a z","h a z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alt=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d.M","EEE, d.M","LLL","d \u05d1MMM","EEE, d \u05d1MMM","LLLL","d \u05d1MMMM","EEEE, d \u05d1MMMM","QQQ","QQQQ","y","M.y","d.M.y","EEE, d.M.y","MMM y","d \u05d1MMM y","EEE, d \u05d1MMM y","MMMM y","d \u05d1MMMM y","EEEE, d \u05d1MMMM y","QQQ y","QQQQ y","H","H:mm","H:mm:ss","H","H:mm","H:mm:ss","HH:mm v","HH:mm z","H z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akt=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE, d/M","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE, d/M/y","MMM y","d MMM y","EEE, d MMM y","MMMM y","d MMMM y","EEEE, d MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a v","h:mm a z","h a z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akC=new A.a2(B.r,["d.","ccc","cccc","LLL","LLLL","L.","dd. MM.","EEE, dd. MM.","LLL","d. MMM","EEE, d. MMM","LLLL","d. MMMM","EEEE, d. MMMM","QQQ","QQQQ","y.","MM. y.","dd. MM. y.","EEE, dd. MM. y.","LLL y.","d. MMM y.","EEE, d. MMM y.","LLLL y.","d. MMMM y.","EEEE, d. MMMM y.","QQQ y.","QQQQ y.","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH (z)","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akP=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","M. d.","M. d., EEE","LLL","MMM d.","MMM d., EEE","LLLL","MMMM d.","MMMM d., EEEE","QQQ","QQQQ","y.","y. M.","y. MM. dd.","y. MM. dd., EEE","y. MMM","y. MMM d.","y. MMM d., EEE","y. MMMM","y. MMMM d.","y. MMMM d., EEEE","y. QQQ","y. QQQQ","H","H:mm","H:mm:ss","H","H:mm","H:mm:ss","HH:mm v","HH:mm z","H z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alv=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","dd.MM","dd.MM, EEE","LLL","d MMM","d MMM, EEE","LLLL","MMMM d","d MMMM, EEEE","QQQ","QQQQ","y","MM.y","dd.MM.y","d.MM.y \u0569., EEE","y \u0569. LLL","d MMM, y \u0569.","y \u0569. MMM d, EEE","y \u0569\u2024 LLLL","d MMMM, y \u0569.","y \u0569. MMMM d, EEEE","y \u0569. QQQ","y \u0569. QQQQ","H","H:mm","H:mm:ss","H","H:mm","H:mm:ss","HH:mm v","HH:mm z","H z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.aky=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE, d/M","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE, d/M/y","MMM y","d MMM y","EEE, d MMM y","MMMM y","d MMMM y","EEEE, d MMMM y","QQQ y","QQQQ y","HH","HH.mm","HH.mm.ss","HH","HH.mm","HH.mm.ss","HH.mm v","HH.mm z","HH z","m","mm.ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akX=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d.M.","EEE, d.M.","LLL","d. MMM","EEE, d. MMM","LLLL","d. MMMM","EEEE, d. MMMM","QQQ","QQQQ","y","M. y","d.M.y","EEE, d.M.y","MMM y","d. MMM y","EEE, d. MMM y","MMMM y","d. MMMM y","EEEE, d. MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","v \u2013 HH:mm","z \u2013 HH:mm","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akR=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE d/M","LLL","d MMM","EEE d MMM","LLLL","d MMMM","EEEE d MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE d/M/y","MMM y","d MMM y","EEE d MMM y","MMMM y","d MMMM y","EEEE d MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alc=new A.a2(B.r,["d\u65e5","ccc","cccc","M\u6708","M\u6708","M\u6708","M/d","M/d(EEE)","M\u6708","M\u6708d\u65e5","M\u6708d\u65e5(EEE)","M\u6708","M\u6708d\u65e5","M\u6708d\u65e5EEEE","QQQ","QQQQ","y\u5e74","y/M","y/M/d","y/M/d(EEE)","y\u5e74M\u6708","y\u5e74M\u6708d\u65e5","y\u5e74M\u6708d\u65e5(EEE)","y\u5e74M\u6708","y\u5e74M\u6708d\u65e5","y\u5e74M\u6708d\u65e5EEEE","y/QQQ","y\u5e74QQQQ","H\u6642","H:mm","H:mm:ss","H\u6642","H:mm","H:mm:ss","H:mm v","H:mm z","H\u6642 z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alD=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d.M","EEE, d.M","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","M.y","d.M.y","EEE, d.M.y","MMM. y","d MMM. y","EEE, d MMM. y","MMMM, y","d MMMM, y","EEEE, d MMMM, y","QQQ, y","QQQQ, y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.al_=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","dd.MM","dd.MM, EEE","LLL","d MMM","d MMM, EEE","LLLL","d MMMM","d MMMM, EEEE","QQQ","QQQQ","y","MM.y","dd.MM.y","dd.MM.y, EEE","y '\u0436'. MMM","y '\u0436'. d MMM","y '\u0436'. d MMM, EEE","y '\u0436'. MMMM","y '\u0436'. d MMMM","y '\u0436'. d MMMM, EEEE","y '\u0436'. QQQ","y '\u0436'. QQQQ","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akn=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE d/M","LLL","d MMM","EEE d MMM","LLLL","MMMM d","EEEE d MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE d/M/y","MMM y","d MMM y","EEE d MMM y","MMMM y","d MMMM y","EEEE d MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a v","h:mm a z","h a z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.al6=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","d/M, EEE","LLL","MMM d","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE, M/d/y","MMM y","MMM d,y","EEE, MMM d, y","MMMM y","MMMM d, y","EEEE, MMMM d, y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a v","h:mm a z","h a z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akQ=new A.a2(B.r,["d\uc77c","ccc","cccc","LLL","LLLL","M\uc6d4","M. d.","M. d. (EEE)","LLL","MMM d\uc77c","MMM d\uc77c (EEE)","LLLL","MMMM d\uc77c","MMMM d\uc77c EEEE","QQQ","QQQQ","y\ub144","y. M.","y. M. d.","y. M. d. (EEE)","y\ub144 MMM","y\ub144 MMM d\uc77c","y\ub144 MMM d\uc77c (EEE)","y\ub144 MMMM","y\ub144 MMMM d\uc77c","y\ub144 MMMM d\uc77c EEEE","y\ub144 QQQ","y\ub144 QQQQ","H\uc2dc","HH:mm","H\uc2dc m\ubd84 s\ucd08","a h\uc2dc","a h:mm","a h:mm:ss","a h:mm v","a h:mm z","a h\uc2dc z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akN=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","dd-MM","dd-MM, EEE","LLL","d-MMM","d-MMM, EEE","LLLL","d-MMMM","d-MMMM, EEEE","QQQ","QQQQ","y","y-MM","y-dd-MM","y-dd-MM, EEE","y-'\u0436'. MMM","y-'\u0436'. d-MMM","y-'\u0436'. d-MMM, EEE","y-'\u0436'., MMMM","y-'\u0436'., d-MMMM","y-'\u0436'., d-MMMM, EEEE","y-'\u0436'., QQQ","y-'\u0436'., QQQQ","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akH=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE, d/M","LLL","d MMM","EEE d MMM","LLLL","MMMM d","EEEE d MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE, d/M/y","MMM y","d MMM y","EEE, d MMM y","MMMM y","d MMMM y","EEEE, d MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.al4=new A.a2(B.r,["dd","ccc","cccc","LLL","LLLL","MM","MM-d","MM-dd, EEE","MM","MM-dd","MM-dd, EEE","LLLL","MMMM d 'd'.","MMMM d 'd'., EEEE","QQQ","QQQQ","y","y-MM","y-MM-dd","y-MM-dd, EEE","y-MM","y-MM-dd","y-MM-dd, EEE","y 'm'. LLLL","y 'm'. MMMM d 'd'.","y 'm'. MMMM d 'd'., EEEE","y QQQ","y QQQQ","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm; v","HH:mm; z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akp=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","dd.MM.","EEE, dd.MM.","LLL","d. MMM","EEE, d. MMM","LLLL","d. MMMM","EEEE, d. MMMM","QQQ","QQQQ","y. 'g'.","MM.y.","d.MM.y.","EEE, d.M.y.","y. 'g'. MMM","y. 'g'. d. MMM","EEE, y. 'g'. d. MMM","y. 'g'. MMMM","y. 'gada' d. MMMM","EEEE, y. 'gada' d. MMMM","y. 'g'. QQQ","y. 'g'. QQQQ","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akD=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d.M","EEE, d.M","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","M.y","d.M.y","EEE, d.M.y","MMM y '\u0433'.","d MMM y '\u0433'.","EEE, d MMM y '\u0433'.","MMMM y '\u0433'.","d MMMM y","EEEE, d MMMM y","QQQ y '\u0433'.","QQQQ y '\u0433'.","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akZ=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","d/M, EEE","LLL","MMM d","MMM d, EEE","LLLL","MMMM d","MMMM d, EEEE","QQQ","QQQQ","y","y-MM","d/M/y","d-M-y, EEE","y MMM","y MMM d","y MMM d, EEE","y MMMM","y, MMMM d","y, MMMM d, EEEE","y QQQ","y QQQQ","HH","HH:mm","HH:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a v","h:mm a z","h a z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.al2=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","LLLLL","MMMMM/dd","MMMMM/dd. EEE","LLL","MMM'\u044b\u043d' d","MMM'\u044b\u043d' d. EEE","LLLL","MMMM'\u044b\u043d' d","MMMM'\u044b\u043d' d. EEEE","QQQ","QQQQ","y","y MMMMM","y.MM.dd","y.MM.dd. EEE","y '\u043e\u043d\u044b' MMM","y '\u043e\u043d\u044b' MMM'\u044b\u043d' d","y '\u043e\u043d\u044b' MMM'\u044b\u043d' d. EEE","y '\u043e\u043d\u044b' MMMM","y '\u043e\u043d\u044b' MMMM'\u044b\u043d' d","y '\u043e\u043d\u044b' MMMM'\u044b\u043d' d, EEEE '\u0433\u0430\u0440\u0430\u0433'","y '\u043e\u043d\u044b' QQQ","y '\u043e\u043d\u044b' QQQQ","HH '\u0446'","HH:mm","HH:mm:ss","HH '\u0446'","HH:mm","HH:mm:ss","HH:mm (v)","HH:mm (z)","HH '\u0446' (z)","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alr=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE, d/M","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE, d/M/y","MMM y","d MMM, y","EEE, d, MMM y","MMMM y","d MMMM, y","EEEE, d MMMM, y","QQQ y","QQQQ y","HH","H:mm","H:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a v","h:mm a z","h a z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alA=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d-M","EEE, d-M","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","M-y","d/M/y","EEE, d/M/y","MMM y","d MMM y","EEE, d MMM y","MMMM y","d MMMM y","EEEE, d MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a v","h:mm a z","h a z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.aly=new A.a2(B.r,["d","ccc\u1014\u1031\u1037","cccc\u1014\u1031\u1037","LLL","LLLL","L","d/M","d-M- EEE","LLL","d MMM","MMM d- EEE","LLLL","MMMM d","MMMM d \u101b\u1000\u103a EEEE\u1014\u1031\u1037","QQQ","QQQQ","y","M/y","dd-MM-y","d/M/y- EEE","MMM y","y- MMM d","y- MMM d- EEE","y MMMM","y- MMMM d","y- MMMM d- EEEE","y QQQ","y QQQQ","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","v HH:mm","z HH:mm","z HH","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.Jk=new A.a2(B.r,["d.","ccc","cccc","LLL","LLLL","L.","d.M.","EEE d.M.","LLL","d. MMM","EEE d. MMM","LLLL","d. MMMM","EEEE d. MMMM","QQQ","QQQQ","y","M.y","d.M.y","EEE d.M.y","MMM y","d. MMM y","EEE d. MMM y","MMMM y","d. MMMM y","EEEE d. MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.al5=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","MM-dd","MM-dd, EEE","LLL","MMM d","MMM d, EEE","LLLL","MMMM d","MMMM d, EEEE","QQQ","QQQQ","y","y-MM","y-MM-dd","y-MM-dd, EEE","y MMM","y MMM d","y MMM d, EEE","y MMMM","y MMMM d","y MMMM d, EEEE","y QQQ","y QQQQ","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alC=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d-M","EEE d-M","LLL","d MMM","EEE d MMM","LLLL","d MMMM","EEEE d MMMM","QQQ","QQQQ","y","M-y","d-M-y","EEE d-M-y","MMM y","d MMM y","EEE d MMM y","MMMM y","d MMMM y","EEEE d MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alj=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE, dd-MM.","LLL","d MMM","EEE, d MMM","LLLL","MMMM d","EEEE, d MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE, d/M/y","MMM y","d MMM y","EEE, d MMM y","MMMM y","d MMMM y","EEEE, d MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a v","h:mm a z","h a z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akq=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d.MM","EEE, d.MM","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","MM.y","d.MM.y","EEE, d.MM.y","LLL y","d MMM y","EEE, d MMM y","LLLL y","d MMMM y","EEEE, d MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alw=new A.a2(B.r,["d","EEE","EEEE","LLL","LLLL","L","MM-dd","MM-dd, EEE","LLL","MMM d","EEE, MMM d","LLLL","MMMM d","EEEE, MMMM d","QQQ","QQQQ","y","y-MM","y-MM-dd","y-MM-dd, EEE","y MMM","y MMM d","y MMM d, EEE","y MMMM","\u062f y \u062f MMMM d","EEEE \u062f y \u062f MMMM d","y QQQ","y QQQQ","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH (z)","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.al7=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE, dd/MM","LLL","d 'de' MMM","EEE, d 'de' MMM","LLLL","d 'de' MMMM","EEEE, d 'de' MMMM","QQQ","QQQQ","y","MM/y","dd/MM/y","EEE, dd/MM/y","MMM 'de' y","d 'de' MMM 'de' y","EEE, d 'de' MMM 'de' y","MMMM 'de' y","d 'de' MMMM 'de' y","EEEE, d 'de' MMMM 'de' y","QQQ 'de' y","QQQQ 'de' y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akB=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","dd/MM","EEE, dd/MM","LLL","d/MM","EEE, d/MM","LLLL","d 'de' MMMM","cccc, d 'de' MMMM","QQQ","QQQQ","y","MM/y","dd/MM/y","EEE, dd/MM/y","MM/y","d/MM/y","EEE, d/MM/y","MMMM 'de' y","d 'de' MMMM 'de' y","EEEE, d 'de' MMMM 'de' y","QQQQ 'de' y","QQQQ 'de' y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.ald=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","dd.MM","EEE, dd.MM","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","MM.y","dd.MM.y","EEE, dd.MM.y","MMM y","d MMM y","EEE, d MMM y","MMMM y","d MMMM y","EEEE, d MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akI=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","dd.MM","EEE, dd.MM","LLL","d MMM","ccc, d MMM","LLLL","d MMMM","cccc, d MMMM","QQQ","QQQQ","y","MM.y","dd.MM.y","ccc, dd.MM.y '\u0433'.","LLL y '\u0433'.","d MMM y '\u0433'.","EEE, d MMM y '\u0433'.","LLLL y '\u0433'.","d MMMM y '\u0433'.","EEEE, d MMMM y '\u0433'.","QQQ y '\u0433'.","QQQQ y '\u0433'.","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alE=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","M-d","M-d, EEE","LLL","MMM d","MMM d EEE","LLLL","MMMM d","MMMM d EEEE","QQQ","QQQQ","y","y-M","y-M-d","y-M-d, EEE","y MMM","y MMM d","y MMM d, EEE","y MMMM","y MMMM d","y MMMM d, EEEE","y QQQ","y QQQQ","HH","HH.mm","HH.mm.ss","HH","HH.mm","HH.mm.ss","HH.mm v","HH.mm z","HH z","m","mm.ss","s","v","z","zzzz","ZZZZ"],t.w) +B.al8=new A.a2(B.r,["d.","ccc","cccc","LLL","LLLL","L.","d. M.","EEE d. M.","LLL","d. M.","EEE d. M.","LLLL","d. MMMM","EEEE d. MMMM","QQQ","QQQQ","y","M/y","d. M. y","EEE d. M. y","M/y","d. M. y","EEE d. M. y","LLLL y","d. MMMM y","EEEE d. MMMM y","QQQ y","QQQQ y","H","H:mm","H:mm:ss","H","H:mm","H:mm:ss","H:mm v","H:mm z","H z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akU=new A.a2(B.r,["d.","ccc","cccc","LLL","LLLL","L","d. M.","EEE, d. M.","LLL","d. MMM","EEE, d. MMM","LLLL","d. MMMM","EEEE, d. MMMM","QQQ","QQQQ","y","M/y","d. M. y","EEE, d. M. y","MMM y","d. MMM y","EEE, d. MMM y","MMMM y","d. MMMM y","EEEE, d. MMMM y","QQQ y","QQQQ y","HH'h'","HH:mm","HH:mm:ss","HH'h'","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH'h' z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.al0=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d.M","EEE, d.M","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","M.y","d.M.y","EEE, d.M.y","MMM y","d MMM y","EEE, d MMM y","MMMM y","d MMMM y","EEEE, d MMMM y","QQQ, y","QQQQ, y","HH","HH:mm","HH:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a, v","h:mm a, z","h a, z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.Jm=new A.a2(B.r,["d","EEE","EEEE","LLL","LLLL","L","d.M.","EEE, d.M.","LLL","d. MMM","EEE d. MMM","LLLL","d. MMMM","EEEE, d. MMMM","QQQ","QQQQ","y.","M.y.","d.M.y.","EEE, d.M.y.","MMM y.","d. MMM y.","EEE, d. MMM y.","MMMM y.","d. MMMM y.","EEEE, d. MMMM y.","QQQ y.","QQQQ y.","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alB=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE d/M","LLL","d MMM","EEE d MMM","LLLL","d MMMM","EEEE d MMMM","QQQ","QQQQ","y","y-MM","y-MM-dd","EEE, y-MM-dd","MMM y","d MMM y","EEE d MMM y","MMMM y","d MMMM y","EEEE d MMMM y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.ala=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE, d/M","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE, d/M/y","MMM y","d MMM y","EEE, d MMM y","MMMM y","d MMMM y","EEEE, d MMMM y","y QQQ","QQQQ y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alf=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","dd-MM, EEE","LLL","MMM d","MMM d, EEE","LLLL","d MMMM","MMMM d, EEEE","QQQ","QQQQ","y","M/y","d/M/y","EEE, d/M/y","MMM y","d MMM, y","EEE, d MMM, y","MMMM y","d MMMM, y","EEEE, d MMMM, y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","a h","a h:mm","a h:mm:ss","a h:mm v","a h:mm z","a h z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.ako=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","d/M, EEE","LLL","d MMM","d MMM, EEE","LLLL","d MMMM","d MMMM, EEEE","QQQ","QQQQ","y","M/y","d/M/y","d/M/y, EEE","MMM y","d, MMM y","d MMM, y, EEE","MMMM y","d MMMM, y","d, MMMM y, EEEE","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a v","h:mm a z","h a z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akT=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE d/M","LLL","d MMM","EEE d MMM","LLLL","d MMMM","EEEE\u0e17\u0e35\u0e48 d MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE d/M/y","MMM y","d MMM y","EEE d MMM y","MMMM G y","d MMMM G y","EEEE\u0e17\u0e35\u0e48 d MMMM G y","QQQ y","QQQQ G y","HH","HH:mm \u0e19.","HH:mm:ss","HH","HH:mm \u0e19.","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alo=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","d/MM EEE","LLL","d MMM","d MMMM EEE","LLLL","d MMMM","d MMMM EEEE","QQQ","QQQQ","y","MM/y","dd.MM.y","d.M.y EEE","MMM y","d MMM y","d MMM y EEE","MMMM y","d MMMM y","d MMMM y EEEE","y QQQ","y QQQQ","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alk=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","LL","dd.MM","EEE, dd.MM","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","MM.y","dd.MM.y","EEE, dd.MM.y","LLL y '\u0440'.","d MMM y '\u0440'.","EEE, d MMM y '\u0440'.","LLLL y '\u0440'.","d MMMM y '\u0440'.","EEEE, d MMMM y '\u0440'.","QQQ y","QQQQ y '\u0440'.","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alg=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","d/M","EEE\u060c d/M","LLL","d MMM","EEE\u060c d MMM","LLLL","d MMMM","EEEE\u060c d MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE\u060c d/M/y","MMM y","d MMM\u060c y","EEE\u060c d MMM\u060c y","MMMM y","d MMMM\u060c y","EEEE\u060c d MMMM\u060c y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","h a","h:mm a","h:mm:ss a","h:mm a v","h:mm a z","h a z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akS=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","LL","dd/MM","EEE, dd/MM","LLL","d-MMM","EEE, d-MMM","LLLL","d-MMMM","EEEE, d-MMMM","QQQ","QQQQ","y","MM.y","dd/MM/y","EEE, dd/MM/y","MMM, y","d-MMM, y","EEE, d-MMM, y","MMMM, y","d-MMMM, y","EEEE, d-MMMM, y","y, QQQ","y, QQQQ","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm (v)","HH:mm (z)","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akM=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","dd/M","EEE, dd/M","LLL","d MMM","EEE, d MMM","LLLL","d MMMM","EEEE, d MMMM","QQQ","QQQQ","y","M/y","d/M/y","EEE, dd/M/y","MMM y","d MMM, y","EEE, d MMM, y","MMMM 'n\u0103m' y","d MMMM, y","EEEE, d MMMM, y","QQQ y","QQQQ 'n\u0103m' y","HH","H:mm","HH:mm:ss","HH","H:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.alq=new A.a2(B.r,["d\u65e5","ccc","cccc","LLL","LLLL","M\u6708","M/d","M/dEEE","LLL","M\u6708d\u65e5","M\u6708d\u65e5EEE","LLLL","M\u6708d\u65e5","M\u6708d\u65e5EEEE","QQQ","QQQQ","y\u5e74","y\u5e74M\u6708","y/M/d","y/M/dEEE","y\u5e74M\u6708","y\u5e74M\u6708d\u65e5","y\u5e74M\u6708d\u65e5EEE","y\u5e74M\u6708","y\u5e74M\u6708d\u65e5","y\u5e74M\u6708d\u65e5EEEE","y\u5e74\u7b2cQ\u5b63\u5ea6","y\u5e74\u7b2cQ\u5b63\u5ea6","H\u65f6","HH:mm","HH:mm:ss","H\u65f6","HH:mm","HH:mm:ss","v HH:mm","z HH:mm","zH\u65f6","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.all=new A.a2(B.r,["d\u65e5","ccc","cccc","LLL","LLLL","M\u6708","d/M","d/M\uff08EEE\uff09","LLL","M\u6708d\u65e5","M\u6708d\u65e5EEE","LLLL","M\u6708d\u65e5","M\u6708d\u65e5EEEE","QQQ","QQQQ","y\u5e74","M/y","d/M/y","d/M/y\uff08EEE\uff09","y\u5e74M\u6708","y\u5e74M\u6708d\u65e5","y\u5e74M\u6708d\u65e5EEE","y\u5e74M\u6708","y\u5e74M\u6708d\u65e5","y\u5e74M\u6708d\u65e5EEEE","y\u5e74QQQ","y\u5e74QQQQ","H\u6642","HH:mm","HH:mm:ss","ah\u6642","ah:mm","ah:mm:ss","ah:mm [v]","ah:mm [z]","ah\u6642 z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akG=new A.a2(B.r,["d\u65e5","ccc","cccc","LLL","LLLL","M\u6708","M/d","M/d\uff08EEE\uff09","LLL","M\u6708d\u65e5","M\u6708d\u65e5 EEE","LLLL","M\u6708d\u65e5","M\u6708d\u65e5 EEEE","QQQ","QQQQ","y\u5e74","y/M","y/M/d","y/M/d\uff08EEE\uff09","y\u5e74M\u6708","y\u5e74M\u6708d\u65e5","y\u5e74M\u6708d\u65e5 EEE","y\u5e74M\u6708","y\u5e74M\u6708d\u65e5","y\u5e74M\u6708d\u65e5 EEEE","y\u5e74QQQ","y\u5e74QQQQ","H\u6642","HH:mm","HH:mm:ss","ah\u6642","ah:mm","ah:mm:ss","ah:mm [v]","ah:mm [z]","ah\u6642 z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.akK=new A.a2(B.r,["d","ccc","cccc","LLL","LLLL","L","MM-dd","MM-dd, EEE","LLL","MMM d","EEE, MMM d","LLLL","MMMM d","EEEE, MMMM d","QQQ","QQQQ","y","y-MM","y-MM-dd","y-MM-dd, EEE","MMM y","MMM d, y","EEE, MMM d, y","MMMM y","MMMM d, y","EEEE, MMMM d, y","QQQ y","QQQQ y","HH","HH:mm","HH:mm:ss","HH","HH:mm","HH:mm:ss","HH:mm v","HH:mm z","HH z","m","mm:ss","s","v","z","zzzz","ZZZZ"],t.w) +B.amM=new A.a2(B.ans,[B.akr,B.alp,B.akW,B.alH,B.alI,B.alz,B.aln,B.akO,B.akw,B.akE,B.al3,B.akL,B.alh,B.Jl,B.Jl,B.als,B.hW,B.akV,B.alF,B.al1,B.akF,B.alx,B.akA,B.akx,B.hW,B.alm,B.akY,B.aks,B.alb,B.ale,B.alG,B.al9,B.alu,B.akm,B.hW,B.akv,B.akJ,B.alJ,B.aku,B.akz,B.alt,B.akt,B.akC,B.akP,B.alv,B.aky,B.akX,B.akR,B.alc,B.alD,B.al_,B.akn,B.al6,B.akQ,B.akN,B.akH,B.al4,B.akp,B.akD,B.akZ,B.al2,B.alr,B.alA,B.aly,B.Jk,B.al5,B.alC,B.Jk,B.hW,B.alj,B.akq,B.alw,B.al7,B.akB,B.ald,B.akI,B.alE,B.al8,B.akU,B.al0,B.Jm,B.Jm,B.alB,B.ala,B.alf,B.ako,B.akT,B.hW,B.alo,B.alk,B.alg,B.akS,B.akM,B.alq,B.all,B.akG,B.akK],A.ah("a2>")) +B.amN=new A.LQ(null,null,null,null,null,null,null,null) +B.Wn=new A.e(4284790262) +B.Vw=new A.e(4282557941) +B.ak2=new A.dg([50,B.up,100,B.u8,200,B.hn,300,B.Wn,400,B.Vw,500,B.mz,600,B.my,700,B.rG,800,B.rE,900,B.rB],t.pl) +B.hY=new A.Dp(B.ak2,4280391411) +B.ZP=new A.e(4293457385) +B.YU=new A.e(4291356361) +B.WX=new A.e(4286695300) +B.Wp=new A.e(4284922730) +B.VP=new A.e(4283215696) +B.Vy=new A.e(4282622023) +B.Vk=new A.e(4281896508) +B.ak3=new A.dg([50,B.ZP,100,B.YU,200,B.mG,300,B.WX,400,B.Wp,500,B.VP,600,B.Vy,700,B.Vk,800,B.rW,900,B.rI],t.pl) +B.amO=new A.Dp(B.ak3,4283215696) +B.fE=new A.cG(0,t.QL) +B.amP=new A.cG(2,t.QL) +B.kS=new A.cG(24,t.QL) +B.bL=new A.cG(B.E,t.h9) +B.amQ=new A.cG(B.E,t.Il) +B.po=new A.U(40,40) +B.kT=new A.cG(B.po,t.iL) +B.arb=new A.U(64,40) +B.kU=new A.cG(B.arb,t.iL) +B.it=new A.k8(B.u) +B.e0=new A.cG(B.it,t.kU) +B.kV=new A.cG(B.bh,t.Ak) +B.arg=new A.U(1/0,1/0) +B.e1=new A.cG(B.arg,t.iL) +B.F=new A.dy(0,"hovered") +B.K=new A.dy(1,"focused") +B.Q=new A.dy(2,"pressed") +B.fF=new A.dy(3,"dragged") +B.G=new A.dy(4,"selected") +B.Jr=new A.dy(5,"scrolledUnder") +B.x=new A.dy(6,"disabled") +B.cR=new A.dy(7,"error") +B.amR=new A.yg(0,"padded") +B.kW=new A.yg(1,"shrinkWrap") +B.amS=new A.a5U(0,"none") +B.amT=new A.a5U(2,"truncateAfterCompositionEnds") +B.amU=new A.a5W(null) +B.amV=new A.M6(null) +B.amW=new A.Dt(null) +B.amX=new A.m6("popRoute",null) +B.amY=new A.m7("plugins.flutter.io/url_launcher",B.bU,null) +B.amZ=new A.m7("dev.fluttercommunity.plus/package_info",B.bU,null) +B.an_=new A.m7("flutter/service_worker",B.bU,null) +B.ot=new A.m7("plugins.flutter.io/shared_preferences",B.bU,null) +B.an2=new A.yj(0,"clipRect") +B.an3=new A.yj(1,"clipRRect") +B.an4=new A.yj(2,"clipPath") +B.an5=new A.yj(3,"transform") +B.an6=new A.yj(4,"opacity") +B.an7=new A.Mk(0,"push") +B.an8=new A.Mk(1,"pushReplacement") +B.ov=new A.Mk(3,"go") +B.an9=new A.ym(null,null,null,null,null,null,null,null,null,null,null) +B.ana=new A.aLT(0,"alwaysShow") +B.anb=new A.Mm(null,null,null,null,null,null,null,null,null,null) +B.fG=new A.aM_(0,"traditional") +B.anc=new A.ul(!0) +B.ow=new A.a6j(0,"none") +B.and=new A.a6j(2,"all") +B.ane=new A.Dz(null,null,null,null,null,null,null,null,null,null,null,null,null) +B.anf=new A.DB(null) +B.Jy=new A.DC(null,null,null,null) +B.azj=new A.abu(null) +B.ang=new A.ma(B.azj,B.B,B.B,A.ar6(),null,null,null,null,t.hC) +B.a1O=new A.a19(null) +B.anh=new A.ma(B.a1O,B.B,B.B,A.ar6(),null,null,null,null,t.hC) +B.an1=new A.a62(null) +B.ani=new A.ma(B.an1,B.B,B.B,A.ar6(),null,null,null,null,t.hC) +B.Rk=new A.YC(null) +B.anj=new A.ma(B.Rk,B.B,B.B,A.ar6(),null,null,null,null,t.hC) +B.JA=new A.jk(B.i,B.i) +B.anC=new A.m(0,20) +B.anE=new A.m(0,26) +B.anG=new A.m(11,-4) +B.anI=new A.m(1,3) +B.anK=new A.m(22,0) +B.anL=new A.m(3,0) +B.anM=new A.m(3,-3) +B.anN=new A.m(4.5,9) +B.anO=new A.m(6,6) +B.anP=new A.m(5,10.5) +B.JF=new A.m(9,9) +B.anR=new A.m(14.4,9) +B.anU=new A.m(17976931348623157e292,0) +B.anV=new A.m(0,-0.25) +B.am=new A.m(0,-0.005) +B.anX=new A.m(-0.3333333333333333,0) +B.anZ=new A.m(2.6999999999999997,8.1) +B.ao_=new A.m(1/0,1/0) +B.ao0=new A.m(3.6,9) +B.ao3=new A.m(13.5,9) +B.JG=new A.m(7.2,12.6) +B.ao5=new A.m(1/0,0) +B.ao9=new A.m(-3,0) +B.aoa=new A.m(-3,3) +B.aob=new A.m(-3,-3) +B.aod=new A.m(15.299999999999999,4.5) +B.bG=new A.qP(0,"iOs") +B.kZ=new A.qP(1,"android") +B.oA=new A.qP(2,"linux") +B.JH=new A.qP(3,"windows") +B.d7=new A.qP(4,"macOs") +B.aoe=new A.qP(5,"unknown") +B.bs=new A.nn("flutter/platform",B.ha,null) +B.aof=new A.nn("flutter/keyboard",B.bU,null) +B.aog=new A.nn("flutter/mousecursor",B.bU,null) +B.JI=new A.nn("flutter/menu",B.bU,null) +B.JJ=new A.nn("flutter/textinput",B.ha,null) +B.aoh=new A.nn("flutter/undomanager",B.ha,null) +B.l_=new A.nn("flutter/navigation",B.ha,null) +B.aoi=new A.nn("flutter/spellcheck",B.bU,null) +B.oB=new A.nn("flutter/restoration",B.bU,null) +B.aoj=new A.yq(0,null) +B.JK=new A.yq(1,null) +B.l0=new A.a6z(0,"portrait") +B.l1=new A.a6z(1,"landscape") +B.eB=new A.mc(4,B.h8,B.mh) +B.aok=new A.MA(null) +B.aDb=new A.a6D(0,"start") +B.aol=new A.a6D(1,"end") +B.TC=new A.mZ(2,0,null,null,null,null,null,null,null,null) +B.aom=new A.b4(B.fj,B.TC,null) +B.aoo=new A.b4(B.ve,null,null) +B.a2h=new A.fk(8,0,0,0) +B.aon=new A.b4(B.a2h,null,null) +B.JL=new A.DG(null) +B.oC=new A.aMO(0,"sliver") +B.aop=new A.lu(0,"completed") +B.aoq=new A.lu(1,"noItemsFound") +B.JM=new A.lu(2,"loadingFirstPage") +B.JN=new A.lu(3,"ongoing") +B.aor=new A.lu(4,"firstPageError") +B.aos=new A.lu(5,"subsequentPageError") +B.bj=new A.a70(0,"fill") +B.ai=new A.a70(1,"stroke") +B.aDc=new A.aN3(3,"free") +B.aot=new A.ur(1/0) +B.d8=new A.a73(0,"nonZero") +B.fI=new A.a73(1,"evenOdd") +B.c7=new A.yw(0,"created") +B.bk=new A.yw(1,"active") +B.fJ=new A.yw(2,"pendingRetention") +B.aou=new A.yw(3,"pendingUpdate") +B.JO=new A.yw(4,"released") +B.aov=new A.DN(null,A.ah("DN")) +B.l4=new A.uv(0,"baseline") +B.l5=new A.uv(1,"aboveBaseline") +B.l6=new A.uv(2,"belowBaseline") +B.l7=new A.uv(3,"top") +B.e3=new A.uv(4,"bottom") +B.l8=new A.uv(5,"middle") +B.ap8=new A.DO(B.y,B.e3,null,null) +B.oE=new A.nq(0,"ZERO") +B.ax=new A.nq(1,"ONE") +B.eD=new A.nq(2,"TWO") +B.c8=new A.nq(3,"FEW") +B.bZ=new A.nq(4,"MANY") +B.av=new A.nq(5,"OTHER") +B.oF=new A.qV(0,"cancel") +B.oG=new A.qV(1,"add") +B.ap9=new A.qV(2,"remove") +B.eE=new A.qV(3,"hover") +B.Nh=new A.qV(4,"down") +B.i9=new A.qV(5,"move") +B.oH=new A.qV(6,"up") +B.be=new A.p5(0,"touch") +B.c9=new A.p5(1,"mouse") +B.cx=new A.p5(2,"stylus") +B.e4=new A.p5(3,"invertedStylus") +B.bM=new A.p5(4,"trackpad") +B.d9=new A.p5(5,"unknown") +B.fP=new A.DQ(0,"none") +B.apa=new A.DQ(1,"scroll") +B.apb=new A.DQ(3,"scale") +B.apc=new A.DQ(4,"unknown") +B.apd=new A.DV(null,null,null,null,null,null,null,null,null,null,null,null) +B.oI=new A.yK(0,"platformDefault") +B.Ni=new A.yK(1,"inAppWebView") +B.Nj=new A.yK(2,"inAppBrowserView") +B.ape=new A.yK(3,"externalApplication") +B.Nk=new A.yK(4,"externalNonBrowserApplication") +B.Nl=new A.nt(0,"incrementable") +B.oJ=new A.nt(1,"scrollable") +B.oK=new A.nt(2,"button") +B.Nm=new A.nt(3,"textField") +B.oL=new A.nt(4,"checkable") +B.Nn=new A.nt(5,"image") +B.l9=new A.nt(6,"dialog") +B.oM=new A.nt(7,"platformView") +B.oN=new A.nt(8,"generic") +B.apf=new A.E1(null,null,null,null,null) +B.apg=new A.a7A(null) +B.aph=new A.E6(null,null,null,null,null,null) +B.No=new A.b8(1,1) +B.api=new A.b8(15.5,15.5) +B.apj=new A.b8(1.5,1.5) +B.apk=new A.a7H(null) +B.apl=new A.a7I(null) +B.apm=new A.a7J(null) +B.apn=new A.a7K(null) +B.apo=new A.a7L(null) +B.app=new A.a7N(null) +B.apq=new A.a7P(null) +B.apr=new A.a7Q(null) +B.Np=new A.H6(1e5,10) +B.Nq=new A.H6(1e4,100) +B.Nr=new A.H6(20,5e4) +B.aps=new A.eT(!1,null) +B.Ns=new A.To(0,0,1) +B.apt=new A.L(-1/0,-1/0,1/0,1/0) +B.ib=new A.L(-1e9,-1e9,1e9,1e9) +B.aDd=new A.aQr(1,"onEdge") +B.Nt=new A.Eg(0,"start") +B.oZ=new A.Eg(1,"stable") +B.apu=new A.Eg(2,"changed") +B.apv=new A.Eg(3,"unstable") +B.ds=new A.Nv(0,"identical") +B.apw=new A.Nv(2,"paint") +B.c_=new A.Nv(3,"layout") +B.fS=new A.Em(0,"json") +B.p_=new A.Em(1,"stream") +B.apx=new A.Em(2,"plain") +B.Nu=new A.Em(3,"bytes") +B.p0=new A.z7(0,"focusable") +B.Nv=new A.z7(1,"tappable") +B.Nw=new A.z7(2,"labelAndValue") +B.lh=new A.z7(3,"liveRegion") +B.p1=new A.z7(4,"routeName") +B.fQ=new A.b8(28,28) +B.Qf=new A.dt(B.fQ,B.fQ,B.L,B.L) +B.apy=new A.cM(B.Qf,B.u) +B.Nx=new A.cM(B.iU,B.u) +B.Ny=new A.cM(B.h8,B.u) +B.NC=new A.cM(B.bv,B.u) +B.Nz=new A.cM(B.qB,B.u) +B.NB=new A.cM(B.cW,B.u) +B.Qg=new A.dt(B.fQ,B.fQ,B.fQ,B.fQ) +B.NA=new A.cM(B.Qg,B.u) +B.ND=new A.aS0(0,"none") +B.p2=new A.lC("",null,null) +B.li=new A.Eq(0,"pop") +B.fT=new A.Eq(1,"doNotPop") +B.NE=new A.Eq(2,"bubble") +B.fU=new A.k0(null,null) +B.apA=new A.NX(1333) +B.p3=new A.NX(2222) +B.apB=new A.a8O(null,null) +B.fV=new A.za(0,"idle") +B.NF=new A.za(1,"transientCallbacks") +B.apC=new A.za(2,"midFrameMicrotasks") +B.lj=new A.za(3,"persistentCallbacks") +B.NG=new A.za(4,"postFrameCallbacks") +B.apD=new A.aSW(18,"surface") +B.N=new A.O0(0,"englishLike") +B.eH=new A.O0(1,"dense") +B.bN=new A.O0(2,"tall") +B.fW=new A.O5(0,"idle") +B.p4=new A.O5(1,"forward") +B.p5=new A.O5(2,"reverse") +B.aDe=new A.ze(0,"explicit") +B.eI=new A.ze(1,"keepVisibleAtEnd") +B.eJ=new A.ze(2,"keepVisibleAtStart") +B.eK=new A.a8X(0,"manual") +B.apK=new A.a8X(1,"onDrag") +B.apL=new A.Oa(0,"left") +B.apM=new A.Oa(1,"right") +B.apN=new A.Oa(3,"bottom") +B.apO=new A.Ob(null,null,null,null,null,null,null,null,null,null,null,null) +B.apP=new A.Oc(null,null,null,null,null,null,null,null,null,null,null,null) +B.apQ=new A.Od(null,null,null,null,null,null,null,null,null) +B.apR=new A.Oe(null,null) +B.b9=new A.mk(0,"tap") +B.NK=new A.mk(1,"doubleTap") +B.bH=new A.mk(2,"longPress") +B.id=new A.mk(3,"forcePress") +B.b0=new A.mk(5,"toolbar") +B.aI=new A.mk(6,"drag") +B.lm=new A.mk(7,"scribble") +B.apS=new A.Oh(0,"startEdgeUpdate") +B.ie=new A.Oh(1,"endEdgeUpdate") +B.ln=new A.ED(0,"previousLine") +B.lo=new A.ED(1,"nextLine") +B.ig=new A.ED(2,"forward") +B.ih=new A.ED(3,"backward") +B.fX=new A.Oi(2,"none") +B.apU=new A.uR(null,null,B.fX,B.nY,!1) +B.NL=new A.uR(null,null,B.fX,B.nY,!0) +B.bI=new A.uS(0,"next") +B.c0=new A.uS(1,"previous") +B.bJ=new A.uS(2,"end") +B.p7=new A.uS(3,"pending") +B.ii=new A.uS(4,"none") +B.p8=new A.Oi(0,"uncollapsed") +B.apV=new A.Oi(1,"collapsed") +B.apW=new A.f0(1048576,"moveCursorBackwardByWord") +B.NM=new A.f0(128,"decrease") +B.apX=new A.f0(16384,"paste") +B.ij=new A.f0(16,"scrollUp") +B.fY=new A.f0(1,"tap") +B.apY=new A.f0(2048,"setSelection") +B.apZ=new A.f0(2097152,"setText") +B.aq_=new A.f0(256,"showOnScreen") +B.aq0=new A.f0(262144,"dismiss") +B.NN=new A.f0(2,"longPress") +B.p9=new A.f0(32768,"didGainAccessibilityFocus") +B.ik=new A.f0(32,"scrollDown") +B.aq1=new A.f0(4096,"copy") +B.il=new A.f0(4,"scrollLeft") +B.aq2=new A.f0(512,"moveCursorForwardByCharacter") +B.aq3=new A.f0(524288,"moveCursorForwardByWord") +B.NO=new A.f0(64,"increase") +B.pa=new A.f0(65536,"didLoseAccessibilityFocus") +B.aq4=new A.f0(8192,"cut") +B.im=new A.f0(8,"scrollRight") +B.aq5=new A.f0(1024,"moveCursorBackwardByCharacter") +B.NP=new A.en(1024,"isObscured") +B.NQ=new A.en(1048576,"isReadOnly") +B.lp=new A.en(128,"isEnabled") +B.pb=new A.en(131072,"isToggled") +B.aq6=new A.en(134217728,"isExpanded") +B.NR=new A.en(16384,"isImage") +B.aq7=new A.en(16777216,"isKeyboardKey") +B.NS=new A.en(16,"isTextField") +B.lq=new A.en(1,"hasCheckedState") +B.NT=new A.en(2048,"scopesRoute") +B.NU=new A.en(2097152,"isFocusable") +B.NV=new A.en(256,"isInMutuallyExclusiveGroup") +B.aq8=new A.en(262144,"hasImplicitScrolling") +B.NW=new A.en(2,"isChecked") +B.NX=new A.en(32768,"isLiveRegion") +B.pc=new A.en(32,"isFocused") +B.NY=new A.en(33554432,"isCheckStateMixed") +B.NZ=new A.en(4096,"namesRoute") +B.aq9=new A.en(4194304,"isLink") +B.O_=new A.en(4,"isSelected") +B.O0=new A.en(512,"isHeader") +B.O1=new A.en(524288,"isMultiline") +B.lr=new A.en(64,"hasEnabledState") +B.pd=new A.en(65536,"hasToggledState") +B.aqa=new A.en(67108864,"hasExpandedState") +B.ls=new A.en(8192,"isHidden") +B.O2=new A.en(8388608,"isSlider") +B.O3=new A.en(8,"isButton") +B.O4=new A.nE("RenderViewport.twoPane") +B.aqb=new A.nE("RenderViewport.excludeFromScrolling") +B.aqc=new A.nE("_InputDecoratorState.prefix") +B.aqd=new A.nE("_InputDecoratorState.suffix") +B.O5=new A.Oo(0,"idle") +B.aqe=new A.Oo(1,"updating") +B.aqf=new A.Oo(2,"postUpdate") +B.aqg=new A.a9d(null) +B.aqh=new A.a9e(null) +B.O6=new A.a9f(null) +B.aqi=new A.h0([B.bO,B.b1,B.ea],t.MA) +B.O7=new A.h0([B.be,B.cx,B.e4,B.bM,B.d9],t.Lu) +B.aqj=new A.h0([B.F],t.b4) +B.anp={click:0,keyup:1,keydown:2,mouseup:3,mousedown:4,pointerdown:5,pointerup:6} +B.aqk=new A.kw(B.anp,7,t.fF) +B.lt=new A.h0([B.x],t.b4) +B.aql=new A.h0([32,8203],t.Ih) +B.anl={click:0,touchstart:1,touchend:2,pointerdown:3,pointermove:4,pointerup:5} +B.aqm=new A.kw(B.anl,6,t.fF) +B.anu={javascript:0} +B.aqn=new A.kw(B.anu,1,t.fF) +B.aqo=new A.h0([B.bO,B.ea],t.MA) +B.aqp=new A.h0([B.e4,B.cx,B.be,B.d9,B.bM],t.Lu) +B.aqq=new A.h0([B.K],t.b4) +B.anm={"canvaskit.js":0} +B.aqr=new A.kw(B.anm,1,t.fF) +B.aqs=new A.h0([10,11,12,13,133,8232,8233],t.Ih) +B.fZ=new A.h0([B.G],t.b4) +B.eL=new A.kw(B.c6,0,A.ah("kw")) +B.aqt=new A.kw(B.c6,0,A.ah("kw")) +B.aqu=new A.h0([B.Q],t.b4) +B.any={serif:0,"sans-serif":1,monospace:2,cursive:3,fantasy:4,"system-ui":5,math:6,emoji:7,fangsong:8} +B.aqv=new A.kw(B.any,9,t.fF) +B.pe=new A.h0([B.d7,B.oA,B.JH],A.ah("h0")) +B.aqw=new A.a9g(null) +B.aqx=new A.EP(0,"ltr") +B.aqy=new A.EP(1,"rtl") +B.aqz=new A.EP(2,"ttb") +B.aqA=new A.EP(3,"btt") +B.aqB=new A.a9m(null) +B.aqC=new A.aUT(0,"onlyForDiscrete") +B.Ob=new A.bl(B.d5,!1,!0,!1,!1) +B.O8=new A.bl(B.cO,!1,!0,!1,!1) +B.O9=new A.bl(B.cP,!1,!0,!1,!1) +B.Oa=new A.bl(B.d6,!1,!0,!1,!1) +B.aqM=new A.bl(B.d5,!1,!0,!1,!0) +B.aqJ=new A.bl(B.cO,!1,!0,!1,!0) +B.aqK=new A.bl(B.cP,!1,!0,!1,!0) +B.aqL=new A.bl(B.d6,!1,!0,!1,!0) +B.aqI=new A.bl(B.d5,!0,!0,!1,!1) +B.aqH=new A.bl(B.d6,!0,!0,!1,!1) +B.aqG=new A.bl(B.ew,!0,!0,!1,!1) +B.aqF=new A.bl(B.ex,!0,!0,!1,!1) +B.Of=new A.bl(B.d5,!1,!0,!0,!1) +B.Oc=new A.bl(B.cO,!1,!0,!0,!1) +B.Od=new A.bl(B.cP,!1,!0,!0,!1) +B.Oe=new A.bl(B.d6,!1,!0,!0,!1) +B.aqO=new A.bl(B.kN,!1,!1,!1,!1) +B.aqV=new A.bl(B.Ei,!1,!1,!1,!1) +B.ar_=new A.bl(B.Em,!1,!1,!1,!1) +B.aqZ=new A.bl(B.Eo,!1,!1,!1,!1) +B.aqN=new A.bl(B.o8,!1,!0,!1,!1) +B.Ot=new A.bl(B.kN,!1,!1,!1,!0) +B.Or=new A.bl(B.oo,!1,!1,!1,!0) +B.Os=new A.bl(B.o6,!1,!1,!1,!0) +B.Oq=new A.bl(B.o7,!1,!1,!1,!0) +B.aqR=new A.bl(B.hO,!1,!1,!1,!0) +B.aqS=new A.bl(B.hO,!1,!0,!1,!0) +B.pm=new A.bl(B.kN,!0,!1,!1,!1) +B.aqW=new A.bl(B.J9,!0,!1,!1,!1) +B.Ov=new A.bl(B.oo,!0,!1,!1,!1) +B.aqT=new A.bl(B.Ej,!0,!1,!1,!1) +B.aqU=new A.bl(B.Ek,!0,!1,!1,!1) +B.aqX=new A.bl(B.El,!0,!1,!1,!1) +B.aqY=new A.bl(B.o5,!0,!1,!1,!1) +B.aqQ=new A.bl(B.En,!0,!1,!1,!1) +B.Ow=new A.bl(B.o6,!0,!1,!1,!1) +B.Ou=new A.bl(B.o7,!0,!1,!1,!1) +B.ar0=new A.bl(B.hO,!0,!1,!1,!1) +B.aqP=new A.bl(B.hO,!0,!0,!1,!1) +B.ar2=new A.U(1e5,1e5) +B.Ox=new A.U(10,10) +B.pn=new A.U(18,18) +B.ar4=new A.U(22,22) +B.ar5=new A.U(24,24) +B.Oy=new A.U(32,4) +B.ar6=new A.U(34,22) +B.ar7=new A.U(44,44) +B.ar8=new A.U(48,36) +B.e8=new A.U(48,48) +B.ar9=new A.U(56,56) +B.ara=new A.U(60,80) +B.arc=new A.U(80,47.5) +B.arf=new A.U(1/0,44) +B.are=new A.U(1/0,46) +B.ard=new A.U(1/0,64) +B.Oz=new A.U(77.37,37.9) +B.a1=new A.fB(0,0,null,null) +B.OA=new A.fB(null,16,null,null) +B.OB=new A.fB(null,6,null,null) +B.OC=new A.fB(null,8,null,null) +B.ari=new A.fB(null,null,null,null) +B.arj=new A.a9A(0,"tapAndSlide") +B.ark=new A.a9A(2,"slideOnly") +B.arl=new A.ES(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.pp=new A.a9G(0,0,0,0,0,0,0,!1,!1,null,0) +B.arm=new A.iS(B.yl,null) +B.pq=new A.a9M(0,"disabled") +B.pr=new A.a9M(1,"enabled") +B.ps=new A.a9N(0,"disabled") +B.pt=new A.a9N(1,"enabled") +B.aDf=new A.OE(3,"hide") +B.arn=new A.OE(5,"timeout") +B.aro=new A.OF(null,null,null,null,null,null,null,null,null,null,null,null,null) +B.OE=new A.a9O(0,"permissive") +B.aDg=new A.a9O(1,"normal") +B.OF=new A.a9S(null) +B.arp=new A.a9R(null) +B.arq=new A.a9W(null) +B.arr=new A.a9Z(null) +B.pu=new A.aag(null) +B.is=new A.OQ(null,null,null,null,!1) +B.art=new A.OU(0,"criticallyDamped") +B.aru=new A.OU(1,"underDamped") +B.arv=new A.OU(2,"overDamped") +B.aJ=new A.aak(0,"loose") +B.OG=new A.aak(2,"passthrough") +B.arw=new A.nI("...",-1,"","","",-1,-1,"","...") +B.arx=new A.nI("",-1,"","","",-1,-1,"","asynchronous suspension") +B.c1=new A.fq("") +B.e9=new A.P3(0,"butt") +B.pv=new A.P3(1,"round") +B.OH=new A.P3(2,"square") +B.lz=new A.aaw(0,"miter") +B.OI=new A.aaw(1,"round") +B.ary=new A.F7(null,null,null,null,null,null,null,null,null) +B.arz=new A.eo(0) +B.arK=new A.eo(0) +B.arI=new A.eo(0) +B.arG=new A.eo(0) +B.arH=new A.eo(0) +B.arF=new A.eo(0) +B.arJ=new A.eo(0) +B.arE=new A.eo(0) +B.arB=new A.eo(0) +B.arD=new A.eo(0) +B.arA=new A.eo(0) +B.arC=new A.eo(0) +B.arL=new A.eo(1) +B.arM=new A.eo(10) +B.arN=new A.eo(11) +B.arO=new A.eo(12) +B.arP=new A.eo(13) +B.arQ=new A.eo(14) +B.arR=new A.eo(15) +B.arS=new A.eo(16) +B.arT=new A.eo(2) +B.arU=new A.eo(3) +B.arV=new A.eo(4) +B.arW=new A.eo(5) +B.arX=new A.eo(6) +B.arY=new A.eo(7) +B.arZ=new A.eo(8) +B.as_=new A.eo(9) +B.as0=new A.aaz(null) +B.as1=new A.Fd(null,null,null,null,null,null,null,null,null) +B.as2=new A.rf("call") +B.c2=new A.ph("basic") +B.cy=new A.ph("click") +B.pw=new A.ph("text") +B.as3=new A.aaC(0,"click") +B.as4=new A.aaC(1,"alert") +B.OJ=new A.P6(2,"immersiveSticky") +B.as5=new A.P6(3,"edgeToEdge") +B.OK=new A.P6(4,"manual") +B.OL=new A.mp(B.o,null,B.a2,null,null,B.S,B.a2,null) +B.OM=new A.mp(B.o,null,B.a2,null,null,B.a2,B.S,null) +B.as8=new A.Ff(0,"start") +B.px=new A.Ff(1,"startOffset") +B.py=new A.Ff(2,"fill") +B.ON=new A.Ff(3,"center") +B.lA=new A.aYK(1,"label") +B.as9=new A.v5(null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.OO=new A.v5(null,null,null,null,null,null,null,null,null,null,null,null,null,B.ON) +B.pz=new A.aYT("tap") +B.OQ=new A.aaL(0) +B.OR=new A.aaL(-1) +B.q=new A.Pi(0,"alphabetic") +B.asa=new A.Pj(null) +B.pC=new A.Fj(3,"none") +B.OS=new A.Pk(B.pC) +B.OT=new A.Fj(0,"words") +B.OU=new A.Fj(1,"sentences") +B.OV=new A.Fj(2,"characters") +B.eb=new A.aYV(3,"none") +B.k=new A.Pl(0) +B.pD=new A.Fo(0,"character") +B.asc=new A.Fo(1,"word") +B.asd=new A.Fo(2,"line") +B.ase=new A.Fo(3,"document") +B.pF=new A.aaU(0,"proportional") +B.OY=new A.Po(B.pF) +B.asf=new A.kc(0,"none") +B.asg=new A.kc(1,"unspecified") +B.ash=new A.kc(10,"route") +B.asi=new A.kc(11,"emergencyCall") +B.OZ=new A.kc(12,"newline") +B.P_=new A.kc(2,"done") +B.asj=new A.kc(3,"go") +B.ask=new A.kc(4,"search") +B.asl=new A.kc(5,"send") +B.asm=new A.kc(6,"next") +B.asn=new A.kc(7,"previous") +B.aso=new A.kc(8,"continueAction") +B.asp=new A.kc(9,"join") +B.P0=new A.Fp(0,null,null) +B.pE=new A.Fp(1,null,null) +B.asq=new A.Fp(2,!1,!1) +B.X=new A.aaU(1,"even") +B.aDh=new A.aaV(null,!0) +B.P1=new A.Fq(1,"fade") +B.ad=new A.Fq(2,"ellipsis") +B.asr=new A.Fq(3,"visible") +B.iu=new A.bW(0,B.t) +B.lD=new A.Pv(0,"left") +B.lE=new A.Pv(1,"right") +B.iv=new A.Pv(2,"collapsed") +B.ass=new A.Pw(null,null,null) +B.ast=new A.Px(B.i,null) +B.P2=new A.im(0,0,B.t,!1,0,0) +B.asZ=new A.D(!0,B.bK,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.OW=new A.Pl(1) +B.P3=new A.D(!0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,B.OW,null,null,null,null,null,null,null,null) +B.ati=new A.D(!1,B.jg,null,".SF Pro Text",null,null,17,null,null,-0.41,null,null,null,null,null,null,null,B.k,null,null,null,null,null,null,null,null) +B.a_x=new A.e(4294937216) +B.a_v=new A.e(4294922834) +B.a_t=new A.e(4294907716) +B.Zh=new A.e(4292149248) +B.akg=new A.dg([100,B.a_x,200,B.a_v,400,B.a_t,700,B.Zh],t.pl) +B.Jq=new A.a40(B.akg,4294922834) +B.atT=new A.D(!0,B.Jq,null,null,null,null,null,B.p,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.P4=new A.D(!1,B.ff,null,".SF Pro Text",null,null,17,B.xm,null,-0.41,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.P5=new A.D(!0,null,null,null,null,null,null,B.p,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.ix=new A.D(!0,null,null,null,null,null,null,B.d1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.P6=new A.D(!1,B.ff,null,".SF Pro Text",null,null,17,null,null,-0.41,null,null,null,null,null,null,null,B.k,null,null,null,null,null,null,null,null) +B.P7=new A.D(!1,null,null,null,null,null,14,B.p,null,-0.15,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.aw6=new A.D(!1,null,null,null,null,null,15,B.p,null,-0.15,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.awv=new A.D(!0,B.Jq,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.awJ=new A.D(!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,B.ad) +B.TU=new A.e(3506372608) +B.a0a=new A.e(4294967040) +B.asb=new A.aYW(1,"double") +B.awT=new A.D(!0,B.TU,null,"monospace",null,null,48,B.xn,null,null,null,null,null,null,null,null,null,B.OW,B.a0a,B.asb,null,"fallback style; consider putting your text in a Material",null,null,null,null) +B.at5=new A.D(!0,B.aa,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedwoodCity displayLarge",null,null,null,null) +B.atx=new A.D(!0,B.aa,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedwoodCity displayMedium",null,null,null,null) +B.at6=new A.D(!0,B.aa,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedwoodCity displaySmall",null,null,null,null) +B.at_=new A.D(!0,B.aa,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedwoodCity headlineLarge",null,null,null,null) +B.auo=new A.D(!0,B.aa,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedwoodCity headlineMedium",null,null,null,null) +B.auV=new A.D(!0,B.af,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedwoodCity headlineSmall",null,null,null,null) +B.awg=new A.D(!0,B.af,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedwoodCity titleLarge",null,null,null,null) +B.aw5=new A.D(!0,B.af,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedwoodCity titleMedium",null,null,null,null) +B.awS=new A.D(!0,B.o,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedwoodCity titleSmall",null,null,null,null) +B.awK=new A.D(!0,B.af,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedwoodCity bodyLarge",null,null,null,null) +B.auT=new A.D(!0,B.af,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedwoodCity bodyMedium",null,null,null,null) +B.aw4=new A.D(!0,B.aa,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedwoodCity bodySmall",null,null,null,null) +B.auX=new A.D(!0,B.af,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedwoodCity labelLarge",null,null,null,null) +B.aus=new A.D(!0,B.o,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedwoodCity labelMedium",null,null,null,null) +B.awB=new A.D(!0,B.o,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedwoodCity labelSmall",null,null,null,null) +B.ax8=new A.eR(B.at5,B.atx,B.at6,B.at_,B.auo,B.auV,B.awg,B.aw5,B.awS,B.awK,B.auT,B.aw4,B.auX,B.aus,B.awB) +B.avn=new A.D(!1,null,null,null,null,null,96,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall displayLarge 2018",null,null,null,null) +B.awG=new A.D(!1,null,null,null,null,null,60,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall displayMedium 2018",null,null,null,null) +B.av4=new A.D(!1,null,null,null,null,null,48,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall displaySmall 2018",null,null,null,null) +B.auO=new A.D(!1,null,null,null,null,null,40,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall headlineLarge 2018",null,null,null,null) +B.aud=new A.D(!1,null,null,null,null,null,34,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall headlineMedium 2018",null,null,null,null) +B.avJ=new A.D(!1,null,null,null,null,null,24,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall headlineSmall 2018",null,null,null,null) +B.at0=new A.D(!1,null,null,null,null,null,21,B.d1,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall titleLarge 2018",null,null,null,null) +B.asB=new A.D(!1,null,null,null,null,null,17,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall titleMedium 2018",null,null,null,null) +B.awy=new A.D(!1,null,null,null,null,null,15,B.aq,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall titleSmall 2018",null,null,null,null) +B.atp=new A.D(!1,null,null,null,null,null,17,B.d1,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall bodyLarge 2018",null,null,null,null) +B.asv=new A.D(!1,null,null,null,null,null,15,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall bodyMedium 2018",null,null,null,null) +B.asV=new A.D(!1,null,null,null,null,null,13,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall bodySmall 2018",null,null,null,null) +B.awr=new A.D(!1,null,null,null,null,null,15,B.d1,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall labelLarge 2018",null,null,null,null) +B.avs=new A.D(!1,null,null,null,null,null,12,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall labelMedium 2018",null,null,null,null) +B.atP=new A.D(!1,null,null,null,null,null,11,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall labelSmall 2018",null,null,null,null) +B.ax9=new A.eR(B.avn,B.awG,B.av4,B.auO,B.aud,B.avJ,B.at0,B.asB,B.awy,B.atp,B.asv,B.asV,B.awr,B.avs,B.atP) +B.asN=new A.D(!0,B.aa,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackMountainView displayLarge",null,null,null,null) +B.atg=new A.D(!0,B.aa,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackMountainView displayMedium",null,null,null,null) +B.atI=new A.D(!0,B.aa,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackMountainView displaySmall",null,null,null,null) +B.aww=new A.D(!0,B.aa,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackMountainView headlineLarge",null,null,null,null) +B.awQ=new A.D(!0,B.aa,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackMountainView headlineMedium",null,null,null,null) +B.awM=new A.D(!0,B.af,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackMountainView headlineSmall",null,null,null,null) +B.atD=new A.D(!0,B.af,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackMountainView titleLarge",null,null,null,null) +B.awh=new A.D(!0,B.af,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackMountainView titleMedium",null,null,null,null) +B.ats=new A.D(!0,B.o,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackMountainView titleSmall",null,null,null,null) +B.atA=new A.D(!0,B.af,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackMountainView bodyLarge",null,null,null,null) +B.atc=new A.D(!0,B.af,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackMountainView bodyMedium",null,null,null,null) +B.atH=new A.D(!0,B.aa,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackMountainView bodySmall",null,null,null,null) +B.ax_=new A.D(!0,B.af,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackMountainView labelLarge",null,null,null,null) +B.avw=new A.D(!0,B.o,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackMountainView labelMedium",null,null,null,null) +B.av2=new A.D(!0,B.o,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackMountainView labelSmall",null,null,null,null) +B.axa=new A.eR(B.asN,B.atg,B.atI,B.aww,B.awQ,B.awM,B.atD,B.awh,B.ats,B.atA,B.atc,B.atH,B.ax_,B.avw,B.av2) +B.Z=new A.Pi(1,"ideographic") +B.atL=new A.D(!1,null,null,null,null,null,96,B.hx,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense displayLarge 2018",null,null,null,null) +B.avY=new A.D(!1,null,null,null,null,null,60,B.hx,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense displayMedium 2018",null,null,null,null) +B.atX=new A.D(!1,null,null,null,null,null,48,B.p,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense displaySmall 2018",null,null,null,null) +B.atW=new A.D(!1,null,null,null,null,null,40,B.p,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense headlineLarge 2018",null,null,null,null) +B.ax4=new A.D(!1,null,null,null,null,null,34,B.p,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense headlineMedium 2018",null,null,null,null) +B.aut=new A.D(!1,null,null,null,null,null,24,B.p,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense headlineSmall 2018",null,null,null,null) +B.avN=new A.D(!1,null,null,null,null,null,21,B.aq,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense titleLarge 2018",null,null,null,null) +B.aux=new A.D(!1,null,null,null,null,null,17,B.p,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense titleMedium 2018",null,null,null,null) +B.awN=new A.D(!1,null,null,null,null,null,15,B.aq,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense titleSmall 2018",null,null,null,null) +B.auZ=new A.D(!1,null,null,null,null,null,17,B.p,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense bodyLarge 2018",null,null,null,null) +B.avy=new A.D(!1,null,null,null,null,null,15,B.p,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense bodyMedium 2018",null,null,null,null) +B.asF=new A.D(!1,null,null,null,null,null,13,B.p,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense bodySmall 2018",null,null,null,null) +B.atm=new A.D(!1,null,null,null,null,null,15,B.aq,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense labelLarge 2018",null,null,null,null) +B.awY=new A.D(!1,null,null,null,null,null,12,B.p,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense labelMedium 2018",null,null,null,null) +B.asS=new A.D(!1,null,null,null,null,null,11,B.p,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense labelSmall 2018",null,null,null,null) +B.axb=new A.eR(B.atL,B.avY,B.atX,B.atW,B.ax4,B.aut,B.avN,B.aux,B.awN,B.auZ,B.avy,B.asF,B.atm,B.awY,B.asS) +B.ax3=new A.D(!1,null,null,null,null,null,57,B.p,null,-0.25,null,B.Z,1.12,B.X,null,null,null,null,null,null,null,"dense displayLarge 2021",null,null,null,null) +B.asP=new A.D(!1,null,null,null,null,null,45,B.p,null,0,null,B.Z,1.16,B.X,null,null,null,null,null,null,null,"dense displayMedium 2021",null,null,null,null) +B.awX=new A.D(!1,null,null,null,null,null,36,B.p,null,0,null,B.Z,1.22,B.X,null,null,null,null,null,null,null,"dense displaySmall 2021",null,null,null,null) +B.atO=new A.D(!1,null,null,null,null,null,32,B.p,null,0,null,B.Z,1.25,B.X,null,null,null,null,null,null,null,"dense headlineLarge 2021",null,null,null,null) +B.awc=new A.D(!1,null,null,null,null,null,28,B.p,null,0,null,B.Z,1.29,B.X,null,null,null,null,null,null,null,"dense headlineMedium 2021",null,null,null,null) +B.aue=new A.D(!1,null,null,null,null,null,24,B.p,null,0,null,B.Z,1.33,B.X,null,null,null,null,null,null,null,"dense headlineSmall 2021",null,null,null,null) +B.auA=new A.D(!1,null,null,null,null,null,22,B.p,null,0,null,B.Z,1.27,B.X,null,null,null,null,null,null,null,"dense titleLarge 2021",null,null,null,null) +B.avA=new A.D(!1,null,null,null,null,null,16,B.aq,null,0.15,null,B.Z,1.5,B.X,null,null,null,null,null,null,null,"dense titleMedium 2021",null,null,null,null) +B.awk=new A.D(!1,null,null,null,null,null,14,B.aq,null,0.1,null,B.Z,1.43,B.X,null,null,null,null,null,null,null,"dense titleSmall 2021",null,null,null,null) +B.aw_=new A.D(!1,null,null,null,null,null,16,B.p,null,0.5,null,B.Z,1.5,B.X,null,null,null,null,null,null,null,"dense bodyLarge 2021",null,null,null,null) +B.aw1=new A.D(!1,null,null,null,null,null,14,B.p,null,0.25,null,B.Z,1.43,B.X,null,null,null,null,null,null,null,"dense bodyMedium 2021",null,null,null,null) +B.avG=new A.D(!1,null,null,null,null,null,12,B.p,null,0.4,null,B.Z,1.33,B.X,null,null,null,null,null,null,null,"dense bodySmall 2021",null,null,null,null) +B.att=new A.D(!1,null,null,null,null,null,14,B.aq,null,0.1,null,B.Z,1.43,B.X,null,null,null,null,null,null,null,"dense labelLarge 2021",null,null,null,null) +B.atj=new A.D(!1,null,null,null,null,null,12,B.aq,null,0.5,null,B.Z,1.33,B.X,null,null,null,null,null,null,null,"dense labelMedium 2021",null,null,null,null) +B.auG=new A.D(!1,null,null,null,null,null,11,B.aq,null,0.5,null,B.Z,1.45,B.X,null,null,null,null,null,null,null,"dense labelSmall 2021",null,null,null,null) +B.axc=new A.eR(B.ax3,B.asP,B.awX,B.atO,B.awc,B.aue,B.auA,B.avA,B.awk,B.aw_,B.aw1,B.avG,B.att,B.atj,B.auG) +B.asH=new A.D(!0,B.ap,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedwoodCity displayLarge",null,null,null,null) +B.atF=new A.D(!0,B.ap,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedwoodCity displayMedium",null,null,null,null) +B.asI=new A.D(!0,B.ap,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedwoodCity displaySmall",null,null,null,null) +B.at4=new A.D(!0,B.ap,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedwoodCity headlineLarge",null,null,null,null) +B.at9=new A.D(!0,B.ap,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedwoodCity headlineMedium",null,null,null,null) +B.aw2=new A.D(!0,B.l,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedwoodCity headlineSmall",null,null,null,null) +B.atU=new A.D(!0,B.l,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedwoodCity titleLarge",null,null,null,null) +B.au8=new A.D(!0,B.l,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedwoodCity titleMedium",null,null,null,null) +B.auF=new A.D(!0,B.l,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedwoodCity titleSmall",null,null,null,null) +B.avi=new A.D(!0,B.l,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedwoodCity bodyLarge",null,null,null,null) +B.aui=new A.D(!0,B.l,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedwoodCity bodyMedium",null,null,null,null) +B.aw8=new A.D(!0,B.ap,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedwoodCity bodySmall",null,null,null,null) +B.aw0=new A.D(!0,B.l,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedwoodCity labelLarge",null,null,null,null) +B.atZ=new A.D(!0,B.l,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedwoodCity labelMedium",null,null,null,null) +B.avj=new A.D(!0,B.l,null,".AppleSystemUIFont",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedwoodCity labelSmall",null,null,null,null) +B.axd=new A.eR(B.asH,B.atF,B.asI,B.at4,B.at9,B.aw2,B.atU,B.au8,B.auF,B.avi,B.aui,B.aw8,B.aw0,B.atZ,B.avj) +B.au=A.a(s(["Ubuntu","Cantarell","DejaVu Sans","Liberation Sans","Arial"]),t.s) +B.av1=new A.D(!0,B.aa,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackHelsinki displayLarge",null,null,null,null) +B.avv=new A.D(!0,B.aa,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackHelsinki displayMedium",null,null,null,null) +B.auL=new A.D(!0,B.aa,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackHelsinki displaySmall",null,null,null,null) +B.atl=new A.D(!0,B.aa,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackHelsinki headlineLarge",null,null,null,null) +B.atV=new A.D(!0,B.aa,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackHelsinki headlineMedium",null,null,null,null) +B.au9=new A.D(!0,B.af,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackHelsinki headlineSmall",null,null,null,null) +B.avT=new A.D(!0,B.af,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackHelsinki titleLarge",null,null,null,null) +B.atq=new A.D(!0,B.af,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackHelsinki titleMedium",null,null,null,null) +B.asD=new A.D(!0,B.o,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackHelsinki titleSmall",null,null,null,null) +B.awC=new A.D(!0,B.af,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackHelsinki bodyLarge",null,null,null,null) +B.asu=new A.D(!0,B.af,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackHelsinki bodyMedium",null,null,null,null) +B.avh=new A.D(!0,B.aa,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackHelsinki bodySmall",null,null,null,null) +B.atB=new A.D(!0,B.af,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackHelsinki labelLarge",null,null,null,null) +B.av7=new A.D(!0,B.o,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackHelsinki labelMedium",null,null,null,null) +B.awU=new A.D(!0,B.o,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackHelsinki labelSmall",null,null,null,null) +B.axe=new A.eR(B.av1,B.avv,B.auL,B.atl,B.atV,B.au9,B.avT,B.atq,B.asD,B.awC,B.asu,B.avh,B.atB,B.av7,B.awU) +B.asW=new A.D(!1,null,null,null,null,null,57,B.p,null,-0.25,null,B.q,1.12,B.X,null,null,null,null,null,null,null,"tall displayLarge 2021",null,null,null,null) +B.atC=new A.D(!1,null,null,null,null,null,45,B.p,null,0,null,B.q,1.16,B.X,null,null,null,null,null,null,null,"tall displayMedium 2021",null,null,null,null) +B.awq=new A.D(!1,null,null,null,null,null,36,B.p,null,0,null,B.q,1.22,B.X,null,null,null,null,null,null,null,"tall displaySmall 2021",null,null,null,null) +B.ato=new A.D(!1,null,null,null,null,null,32,B.p,null,0,null,B.q,1.25,B.X,null,null,null,null,null,null,null,"tall headlineLarge 2021",null,null,null,null) +B.awa=new A.D(!1,null,null,null,null,null,28,B.p,null,0,null,B.q,1.29,B.X,null,null,null,null,null,null,null,"tall headlineMedium 2021",null,null,null,null) +B.at7=new A.D(!1,null,null,null,null,null,24,B.p,null,0,null,B.q,1.33,B.X,null,null,null,null,null,null,null,"tall headlineSmall 2021",null,null,null,null) +B.awE=new A.D(!1,null,null,null,null,null,22,B.p,null,0,null,B.q,1.27,B.X,null,null,null,null,null,null,null,"tall titleLarge 2021",null,null,null,null) +B.awm=new A.D(!1,null,null,null,null,null,16,B.aq,null,0.15,null,B.q,1.5,B.X,null,null,null,null,null,null,null,"tall titleMedium 2021",null,null,null,null) +B.at2=new A.D(!1,null,null,null,null,null,14,B.aq,null,0.1,null,B.q,1.43,B.X,null,null,null,null,null,null,null,"tall titleSmall 2021",null,null,null,null) +B.atN=new A.D(!1,null,null,null,null,null,16,B.p,null,0.5,null,B.q,1.5,B.X,null,null,null,null,null,null,null,"tall bodyLarge 2021",null,null,null,null) +B.awi=new A.D(!1,null,null,null,null,null,14,B.p,null,0.25,null,B.q,1.43,B.X,null,null,null,null,null,null,null,"tall bodyMedium 2021",null,null,null,null) +B.avV=new A.D(!1,null,null,null,null,null,12,B.p,null,0.4,null,B.q,1.33,B.X,null,null,null,null,null,null,null,"tall bodySmall 2021",null,null,null,null) +B.avl=new A.D(!1,null,null,null,null,null,14,B.aq,null,0.1,null,B.q,1.43,B.X,null,null,null,null,null,null,null,"tall labelLarge 2021",null,null,null,null) +B.awp=new A.D(!1,null,null,null,null,null,12,B.aq,null,0.5,null,B.q,1.33,B.X,null,null,null,null,null,null,null,"tall labelMedium 2021",null,null,null,null) +B.asX=new A.D(!1,null,null,null,null,null,11,B.aq,null,0.5,null,B.q,1.45,B.X,null,null,null,null,null,null,null,"tall labelSmall 2021",null,null,null,null) +B.axf=new A.eR(B.asW,B.atC,B.awq,B.ato,B.awa,B.at7,B.awE,B.awm,B.at2,B.atN,B.awi,B.avV,B.avl,B.awp,B.asX) +B.avx=new A.D(!0,B.ap,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedmond displayLarge",null,null,null,null) +B.auu=new A.D(!0,B.ap,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedmond displayMedium",null,null,null,null) +B.atS=new A.D(!0,B.ap,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedmond displaySmall",null,null,null,null) +B.awL=new A.D(!0,B.ap,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedmond headlineLarge",null,null,null,null) +B.atd=new A.D(!0,B.ap,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedmond headlineMedium",null,null,null,null) +B.asT=new A.D(!0,B.l,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedmond headlineSmall",null,null,null,null) +B.au5=new A.D(!0,B.l,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedmond titleLarge",null,null,null,null) +B.auW=new A.D(!0,B.l,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedmond titleMedium",null,null,null,null) +B.auf=new A.D(!0,B.l,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedmond titleSmall",null,null,null,null) +B.auB=new A.D(!0,B.l,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedmond bodyLarge",null,null,null,null) +B.avW=new A.D(!0,B.l,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedmond bodyMedium",null,null,null,null) +B.asY=new A.D(!0,B.ap,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedmond bodySmall",null,null,null,null) +B.ave=new A.D(!0,B.l,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedmond labelLarge",null,null,null,null) +B.aul=new A.D(!0,B.l,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedmond labelMedium",null,null,null,null) +B.awl=new A.D(!0,B.l,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteRedmond labelSmall",null,null,null,null) +B.axg=new A.eR(B.avx,B.auu,B.atS,B.awL,B.atd,B.asT,B.au5,B.auW,B.auf,B.auB,B.avW,B.asY,B.ave,B.aul,B.awl) +B.auS=new A.D(!0,B.ap,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteCupertino displayLarge",null,null,null,null) +B.avU=new A.D(!0,B.ap,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteCupertino displayMedium",null,null,null,null) +B.au7=new A.D(!0,B.ap,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteCupertino displaySmall",null,null,null,null) +B.auz=new A.D(!0,B.ap,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteCupertino headlineLarge",null,null,null,null) +B.atw=new A.D(!0,B.ap,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteCupertino headlineMedium",null,null,null,null) +B.auw=new A.D(!0,B.l,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteCupertino headlineSmall",null,null,null,null) +B.atE=new A.D(!0,B.l,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteCupertino titleLarge",null,null,null,null) +B.avB=new A.D(!0,B.l,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteCupertino titleMedium",null,null,null,null) +B.atR=new A.D(!0,B.l,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteCupertino titleSmall",null,null,null,null) +B.aua=new A.D(!0,B.l,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteCupertino bodyLarge",null,null,null,null) +B.auv=new A.D(!0,B.l,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteCupertino bodyMedium",null,null,null,null) +B.at8=new A.D(!0,B.ap,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteCupertino bodySmall",null,null,null,null) +B.avP=new A.D(!0,B.l,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteCupertino labelLarge",null,null,null,null) +B.auD=new A.D(!0,B.l,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteCupertino labelMedium",null,null,null,null) +B.avu=new A.D(!0,B.l,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteCupertino labelSmall",null,null,null,null) +B.axh=new A.eR(B.auS,B.avU,B.au7,B.auz,B.atw,B.auw,B.atE,B.avB,B.atR,B.aua,B.auv,B.at8,B.avP,B.auD,B.avu) +B.avo=new A.D(!1,null,null,null,null,null,112,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall displayLarge 2014",null,null,null,null) +B.awH=new A.D(!1,null,null,null,null,null,56,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall displayMedium 2014",null,null,null,null) +B.av5=new A.D(!1,null,null,null,null,null,45,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall displaySmall 2014",null,null,null,null) +B.auP=new A.D(!1,null,null,null,null,null,40,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall headlineLarge 2014",null,null,null,null) +B.awO=new A.D(!1,null,null,null,null,null,34,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall headlineMedium 2014",null,null,null,null) +B.avK=new A.D(!1,null,null,null,null,null,24,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall headlineSmall 2014",null,null,null,null) +B.at1=new A.D(!1,null,null,null,null,null,21,B.d1,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall titleLarge 2014",null,null,null,null) +B.asC=new A.D(!1,null,null,null,null,null,17,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall titleMedium 2014",null,null,null,null) +B.awz=new A.D(!1,null,null,null,null,null,15,B.aq,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall titleSmall 2014",null,null,null,null) +B.aw9=new A.D(!1,null,null,null,null,null,15,B.d1,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall bodyLarge 2014",null,null,null,null) +B.asw=new A.D(!1,null,null,null,null,null,15,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall bodyMedium 2014",null,null,null,null) +B.au6=new A.D(!1,null,null,null,null,null,13,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall bodySmall 2014",null,null,null,null) +B.aws=new A.D(!1,null,null,null,null,null,15,B.d1,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall labelLarge 2014",null,null,null,null) +B.avt=new A.D(!1,null,null,null,null,null,12,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall labelMedium 2014",null,null,null,null) +B.atQ=new A.D(!1,null,null,null,null,null,11,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"tall labelSmall 2014",null,null,null,null) +B.axi=new A.eR(B.avo,B.awH,B.av5,B.auP,B.awO,B.avK,B.at1,B.asC,B.awz,B.aw9,B.asw,B.au6,B.aws,B.avt,B.atQ) +B.asA=new A.D(!1,null,null,null,null,null,57,B.p,null,-0.25,null,B.q,1.12,B.X,null,null,null,null,null,null,null,"englishLike displayLarge 2021",null,null,null,null) +B.atK=new A.D(!1,null,null,null,null,null,45,B.p,null,0,null,B.q,1.16,B.X,null,null,null,null,null,null,null,"englishLike displayMedium 2021",null,null,null,null) +B.auU=new A.D(!1,null,null,null,null,null,36,B.p,null,0,null,B.q,1.22,B.X,null,null,null,null,null,null,null,"englishLike displaySmall 2021",null,null,null,null) +B.av0=new A.D(!1,null,null,null,null,null,32,B.p,null,0,null,B.q,1.25,B.X,null,null,null,null,null,null,null,"englishLike headlineLarge 2021",null,null,null,null) +B.auR=new A.D(!1,null,null,null,null,null,28,B.p,null,0,null,B.q,1.29,B.X,null,null,null,null,null,null,null,"englishLike headlineMedium 2021",null,null,null,null) +B.au2=new A.D(!1,null,null,null,null,null,24,B.p,null,0,null,B.q,1.33,B.X,null,null,null,null,null,null,null,"englishLike headlineSmall 2021",null,null,null,null) +B.avZ=new A.D(!1,null,null,null,null,null,22,B.p,null,0,null,B.q,1.27,B.X,null,null,null,null,null,null,null,"englishLike titleLarge 2021",null,null,null,null) +B.au4=new A.D(!1,null,null,null,null,null,16,B.aq,null,0.15,null,B.q,1.5,B.X,null,null,null,null,null,null,null,"englishLike titleMedium 2021",null,null,null,null) +B.avq=new A.D(!1,null,null,null,null,null,14,B.aq,null,0.1,null,B.q,1.43,B.X,null,null,null,null,null,null,null,"englishLike titleSmall 2021",null,null,null,null) +B.aum=new A.D(!1,null,null,null,null,null,16,B.p,null,0.5,null,B.q,1.5,B.X,null,null,null,null,null,null,null,"englishLike bodyLarge 2021",null,null,null,null) +B.avC=new A.D(!1,null,null,null,null,null,14,B.p,null,0.25,null,B.q,1.43,B.X,null,null,null,null,null,null,null,"englishLike bodyMedium 2021",null,null,null,null) +B.awu=new A.D(!1,null,null,null,null,null,12,B.p,null,0.4,null,B.q,1.33,B.X,null,null,null,null,null,null,null,"englishLike bodySmall 2021",null,null,null,null) +B.awo=new A.D(!1,null,null,null,null,null,14,B.aq,null,0.1,null,B.q,1.43,B.X,null,null,null,null,null,null,null,"englishLike labelLarge 2021",null,null,null,null) +B.asJ=new A.D(!1,null,null,null,null,null,12,B.aq,null,0.5,null,B.q,1.33,B.X,null,null,null,null,null,null,null,"englishLike labelMedium 2021",null,null,null,null) +B.au0=new A.D(!1,null,null,null,null,null,11,B.aq,null,0.5,null,B.q,1.45,B.X,null,null,null,null,null,null,null,"englishLike labelSmall 2021",null,null,null,null) +B.axj=new A.eR(B.asA,B.atK,B.auU,B.av0,B.auR,B.au2,B.avZ,B.au4,B.avq,B.aum,B.avC,B.awu,B.awo,B.asJ,B.au0) +B.atM=new A.D(!1,null,null,null,null,null,112,B.hx,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense displayLarge 2014",null,null,null,null) +B.asz=new A.D(!1,null,null,null,null,null,56,B.p,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense displayMedium 2014",null,null,null,null) +B.atY=new A.D(!1,null,null,null,null,null,45,B.p,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense displaySmall 2014",null,null,null,null) +B.au3=new A.D(!1,null,null,null,null,null,40,B.p,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense headlineLarge 2014",null,null,null,null) +B.ax5=new A.D(!1,null,null,null,null,null,34,B.p,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense headlineMedium 2014",null,null,null,null) +B.avL=new A.D(!1,null,null,null,null,null,24,B.p,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense headlineSmall 2014",null,null,null,null) +B.avO=new A.D(!1,null,null,null,null,null,21,B.aq,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense titleLarge 2014",null,null,null,null) +B.auy=new A.D(!1,null,null,null,null,null,17,B.p,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense titleMedium 2014",null,null,null,null) +B.awP=new A.D(!1,null,null,null,null,null,15,B.aq,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense titleSmall 2014",null,null,null,null) +B.av_=new A.D(!1,null,null,null,null,null,15,B.aq,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense bodyLarge 2014",null,null,null,null) +B.avz=new A.D(!1,null,null,null,null,null,15,B.p,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense bodyMedium 2014",null,null,null,null) +B.asG=new A.D(!1,null,null,null,null,null,13,B.p,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense bodySmall 2014",null,null,null,null) +B.atn=new A.D(!1,null,null,null,null,null,15,B.aq,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense labelLarge 2014",null,null,null,null) +B.awZ=new A.D(!1,null,null,null,null,null,12,B.p,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense labelMedium 2014",null,null,null,null) +B.asU=new A.D(!1,null,null,null,null,null,11,B.p,null,null,null,B.Z,null,null,null,null,null,null,null,null,null,"dense labelSmall 2014",null,null,null,null) +B.axk=new A.eR(B.atM,B.asz,B.atY,B.au3,B.ax5,B.avL,B.avO,B.auy,B.awP,B.av_,B.avz,B.asG,B.atn,B.awZ,B.asU) +B.auM=new A.D(!0,B.aa,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedmond displayLarge",null,null,null,null) +B.atJ=new A.D(!0,B.aa,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedmond displayMedium",null,null,null,null) +B.awD=new A.D(!0,B.aa,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedmond displaySmall",null,null,null,null) +B.ata=new A.D(!0,B.aa,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedmond headlineLarge",null,null,null,null) +B.awb=new A.D(!0,B.aa,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedmond headlineMedium",null,null,null,null) +B.asK=new A.D(!0,B.af,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedmond headlineSmall",null,null,null,null) +B.aug=new A.D(!0,B.af,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedmond titleLarge",null,null,null,null) +B.auC=new A.D(!0,B.af,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedmond titleMedium",null,null,null,null) +B.asx=new A.D(!0,B.o,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedmond titleSmall",null,null,null,null) +B.avF=new A.D(!0,B.af,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedmond bodyLarge",null,null,null,null) +B.atb=new A.D(!0,B.af,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedmond bodyMedium",null,null,null,null) +B.awV=new A.D(!0,B.aa,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedmond bodySmall",null,null,null,null) +B.auE=new A.D(!0,B.af,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedmond labelLarge",null,null,null,null) +B.at3=new A.D(!0,B.o,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedmond labelMedium",null,null,null,null) +B.ate=new A.D(!0,B.o,null,"Segoe UI",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackRedmond labelSmall",null,null,null,null) +B.axl=new A.eR(B.auM,B.atJ,B.awD,B.ata,B.awb,B.asK,B.aug,B.auC,B.asx,B.avF,B.atb,B.awV,B.auE,B.at3,B.ate) +B.auJ=new A.D(!1,null,null,null,null,null,112,B.hx,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike displayLarge 2014",null,null,null,null) +B.auh=new A.D(!1,null,null,null,null,null,56,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike displayMedium 2014",null,null,null,null) +B.ax1=new A.D(!1,null,null,null,null,null,45,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike displaySmall 2014",null,null,null,null) +B.avk=new A.D(!1,null,null,null,null,null,40,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike headlineLarge 2014",null,null,null,null) +B.avf=new A.D(!1,null,null,null,null,null,34,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike headlineMedium 2014",null,null,null,null) +B.avX=new A.D(!1,null,null,null,null,null,24,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike headlineSmall 2014",null,null,null,null) +B.au_=new A.D(!1,null,null,null,null,null,20,B.aq,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike titleLarge 2014",null,null,null,null) +B.avm=new A.D(!1,null,null,null,null,null,16,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike titleMedium 2014",null,null,null,null) +B.ava=new A.D(!1,null,null,null,null,null,14,B.aq,null,0.1,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike titleSmall 2014",null,null,null,null) +B.auj=new A.D(!1,null,null,null,null,null,14,B.aq,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike bodyLarge 2014",null,null,null,null) +B.avQ=new A.D(!1,null,null,null,null,null,14,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike bodyMedium 2014",null,null,null,null) +B.asO=new A.D(!1,null,null,null,null,null,12,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike bodySmall 2014",null,null,null,null) +B.asM=new A.D(!1,null,null,null,null,null,14,B.aq,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike labelLarge 2014",null,null,null,null) +B.awR=new A.D(!1,null,null,null,null,null,12,B.p,null,null,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike labelMedium 2014",null,null,null,null) +B.avH=new A.D(!1,null,null,null,null,null,10,B.p,null,1.5,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike labelSmall 2014",null,null,null,null) +B.axm=new A.eR(B.auJ,B.auh,B.ax1,B.avk,B.avf,B.avX,B.au_,B.avm,B.ava,B.auj,B.avQ,B.asO,B.asM,B.awR,B.avH) +B.auq=new A.D(!0,B.ap,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteHelsinki displayLarge",null,null,null,null) +B.auH=new A.D(!0,B.ap,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteHelsinki displayMedium",null,null,null,null) +B.awn=new A.D(!0,B.ap,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteHelsinki displaySmall",null,null,null,null) +B.avM=new A.D(!0,B.ap,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteHelsinki headlineLarge",null,null,null,null) +B.awW=new A.D(!0,B.ap,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteHelsinki headlineMedium",null,null,null,null) +B.auQ=new A.D(!0,B.l,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteHelsinki headlineSmall",null,null,null,null) +B.atu=new A.D(!0,B.l,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteHelsinki titleLarge",null,null,null,null) +B.ax6=new A.D(!0,B.l,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteHelsinki titleMedium",null,null,null,null) +B.ath=new A.D(!0,B.l,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteHelsinki titleSmall",null,null,null,null) +B.asE=new A.D(!0,B.l,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteHelsinki bodyLarge",null,null,null,null) +B.aub=new A.D(!0,B.l,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteHelsinki bodyMedium",null,null,null,null) +B.atG=new A.D(!0,B.ap,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteHelsinki bodySmall",null,null,null,null) +B.asQ=new A.D(!0,B.l,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteHelsinki labelLarge",null,null,null,null) +B.auN=new A.D(!0,B.l,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteHelsinki labelMedium",null,null,null,null) +B.asR=new A.D(!0,B.l,null,"Roboto",B.au,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteHelsinki labelSmall",null,null,null,null) +B.axn=new A.eR(B.auq,B.auH,B.awn,B.avM,B.awW,B.auQ,B.atu,B.ax6,B.ath,B.asE,B.aub,B.atG,B.asQ,B.auN,B.asR) +B.aun=new A.D(!0,B.aa,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackCupertino displayLarge",null,null,null,null) +B.avS=new A.D(!0,B.aa,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackCupertino displayMedium",null,null,null,null) +B.avd=new A.D(!0,B.aa,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackCupertino displaySmall",null,null,null,null) +B.avp=new A.D(!0,B.aa,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackCupertino headlineLarge",null,null,null,null) +B.asL=new A.D(!0,B.aa,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackCupertino headlineMedium",null,null,null,null) +B.av6=new A.D(!0,B.af,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackCupertino headlineSmall",null,null,null,null) +B.atz=new A.D(!0,B.af,null,".SF UI Display",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackCupertino titleLarge",null,null,null,null) +B.av9=new A.D(!0,B.af,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackCupertino titleMedium",null,null,null,null) +B.atf=new A.D(!0,B.o,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackCupertino titleSmall",null,null,null,null) +B.awA=new A.D(!0,B.af,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackCupertino bodyLarge",null,null,null,null) +B.aw7=new A.D(!0,B.af,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackCupertino bodyMedium",null,null,null,null) +B.auY=new A.D(!0,B.aa,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackCupertino bodySmall",null,null,null,null) +B.aty=new A.D(!0,B.af,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackCupertino labelLarge",null,null,null,null) +B.atr=new A.D(!0,B.o,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackCupertino labelMedium",null,null,null,null) +B.aw3=new A.D(!0,B.o,null,".SF UI Text",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"blackCupertino labelSmall",null,null,null,null) +B.axo=new A.eR(B.aun,B.avS,B.avd,B.avp,B.asL,B.av6,B.atz,B.av9,B.atf,B.awA,B.aw7,B.auY,B.aty,B.atr,B.aw3) +B.avc=new A.D(!0,B.ap,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteMountainView displayLarge",null,null,null,null) +B.ax0=new A.D(!0,B.ap,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteMountainView displayMedium",null,null,null,null) +B.awF=new A.D(!0,B.ap,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteMountainView displaySmall",null,null,null,null) +B.atv=new A.D(!0,B.ap,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteMountainView headlineLarge",null,null,null,null) +B.awx=new A.D(!0,B.ap,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteMountainView headlineMedium",null,null,null,null) +B.av8=new A.D(!0,B.l,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteMountainView headlineSmall",null,null,null,null) +B.ax7=new A.D(!0,B.l,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteMountainView titleLarge",null,null,null,null) +B.au1=new A.D(!0,B.l,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteMountainView titleMedium",null,null,null,null) +B.auI=new A.D(!0,B.l,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteMountainView titleSmall",null,null,null,null) +B.awj=new A.D(!0,B.l,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteMountainView bodyLarge",null,null,null,null) +B.atk=new A.D(!0,B.l,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteMountainView bodyMedium",null,null,null,null) +B.awI=new A.D(!0,B.ap,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteMountainView bodySmall",null,null,null,null) +B.awt=new A.D(!0,B.l,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteMountainView labelLarge",null,null,null,null) +B.awd=new A.D(!0,B.l,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteMountainView labelMedium",null,null,null,null) +B.avD=new A.D(!0,B.l,null,"Roboto",null,null,null,null,null,null,null,null,null,null,null,null,null,B.k,null,null,null,"whiteMountainView labelSmall",null,null,null,null) +B.axp=new A.eR(B.avc,B.ax0,B.awF,B.atv,B.awx,B.av8,B.ax7,B.au1,B.auI,B.awj,B.atk,B.awI,B.awt,B.awd,B.avD) +B.auK=new A.D(!1,null,null,null,null,null,96,B.nr,null,-1.5,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike displayLarge 2018",null,null,null,null) +B.aup=new A.D(!1,null,null,null,null,null,60,B.nr,null,-0.5,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike displayMedium 2018",null,null,null,null) +B.ax2=new A.D(!1,null,null,null,null,null,48,B.p,null,0,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike displaySmall 2018",null,null,null,null) +B.aur=new A.D(!1,null,null,null,null,null,40,B.p,null,0.25,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike headlineLarge 2018",null,null,null,null) +B.avg=new A.D(!1,null,null,null,null,null,34,B.p,null,0.25,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike headlineMedium 2018",null,null,null,null) +B.avE=new A.D(!1,null,null,null,null,null,24,B.p,null,0,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike headlineSmall 2018",null,null,null,null) +B.awf=new A.D(!1,null,null,null,null,null,20,B.aq,null,0.15,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike titleLarge 2018",null,null,null,null) +B.awe=new A.D(!1,null,null,null,null,null,16,B.p,null,0.15,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike titleMedium 2018",null,null,null,null) +B.avb=new A.D(!1,null,null,null,null,null,14,B.aq,null,0.1,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike titleSmall 2018",null,null,null,null) +B.auk=new A.D(!1,null,null,null,null,null,16,B.p,null,0.5,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike bodyLarge 2018",null,null,null,null) +B.avR=new A.D(!1,null,null,null,null,null,14,B.p,null,0.25,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike bodyMedium 2018",null,null,null,null) +B.auc=new A.D(!1,null,null,null,null,null,12,B.p,null,0.4,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike bodySmall 2018",null,null,null,null) +B.av3=new A.D(!1,null,null,null,null,null,14,B.aq,null,1.25,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike labelLarge 2018",null,null,null,null) +B.asy=new A.D(!1,null,null,null,null,null,11,B.p,null,1.5,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike labelMedium 2018",null,null,null,null) +B.avI=new A.D(!1,null,null,null,null,null,10,B.p,null,1.5,null,B.q,null,null,null,null,null,null,null,null,null,"englishLike labelSmall 2018",null,null,null,null) +B.axq=new A.eR(B.auK,B.aup,B.ax2,B.aur,B.avg,B.avE,B.awf,B.awe,B.avb,B.auk,B.avR,B.auc,B.av3,B.asy,B.avI) +B.P8=new A.mq("Home",null,null,null,null,null,null,null,null,null) +B.avr=new A.D(!0,B.l,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.axr=new A.mq("Go to home page",null,B.avr,null,null,null,null,null,null,null) +B.axt=new A.mq("Close",null,null,null,null,null,null,null,null,null) +B.axu=new A.mq("Page Not Found",null,B.ix,null,null,null,null,null,null,null) +B.axv=new A.mq("Back",null,null,null,null,null,null,null,null,null) +B.ao6=new A.m(0.056,0.024) +B.anT=new A.m(0.108,0.3085) +B.aoc=new A.m(0.198,0.541) +B.anY=new A.m(0.3655,1) +B.ao4=new A.m(0.5465,0.989) +B.Pc=new A.Pz(B.ao6,B.anT,B.aoc,B.anY,B.ao4) +B.anS=new A.m(0.05,0) +B.ao2=new A.m(0.133333,0.06) +B.anQ=new A.m(0.166666,0.4) +B.anW=new A.m(0.208333,0.82) +B.ao1=new A.m(0.25,1) +B.lF=new A.Pz(B.anS,B.ao2,B.anQ,B.anW,B.ao1) +B.Pd=new A.PA(0) +B.axw=new A.PA(0.5) +B.axx=new A.PB(null) +B.cT=new A.ab3(0,"clamp") +B.pG=new A.ab3(3,"decal") +B.axy=new A.PC(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.axz=new A.PE(0,"TOP") +B.pH=new A.PE(1,"BOTTOM") +B.axA=new A.PE(2,"CENTER") +B.axB=new A.PH(null,null,null,null,null,null,null,null,null,null,null,null,null,null,null) +B.dd=new A.PI(0.001,0.001) +B.axC=new A.PI(0.01,1/0) +B.pI=new A.Fy(!1,!1,!1,!1) +B.axD=new A.Fy(!1,!1,!0,!0) +B.axE=new A.Fy(!0,!1,!1,!0) +B.axF=new A.Fy(!0,!0,!0,!0) +B.axG=new A.PK(null,null,null,null,null,null,null,null,null,null,null) +B.Pe=new A.PM(0,"identity") +B.Pf=new A.PM(1,"transform2d") +B.lG=new A.PM(2,"complex") +B.axI=new A.zQ(3,"left") +B.pJ=new A.abf(0,"closedLoop") +B.axJ=new A.abf(1,"leaveFlutterView") +B.axL=A.b9("qn") +B.axK=A.b9("qo") +B.axM=A.b9("ld") +B.axN=A.b9("qm") +B.axO=A.b9("r7") +B.axP=A.b9("x7") +B.iA=A.b9("ta") +B.h=A.b9("fW") +B.Ph=A.b9("tj") +B.axQ=A.b9("YG") +B.axR=A.b9("es") +B.axS=A.b9("ou") +B.axT=A.b9("aA") +B.axU=A.b9("wR") +B.axV=A.b9("wS") +B.Pi=A.b9("tz") +B.pK=A.b9("kx") +B.axW=A.b9("bH3") +B.axX=A.b9("n4") +B.axY=A.b9("Cc") +B.axZ=A.b9("aC7") +B.ay_=A.b9("aDj") +B.ay0=A.b9("aDk") +B.Pj=A.b9("n7") +B.ay1=A.b9("tR") +B.ay2=A.b9("tS") +B.ay3=A.b9("qU") +B.ay4=A.b9("aHu") +B.ay5=A.b9("aHv") +B.ay6=A.b9("aHw") +B.ay7=A.b9("as") +B.ay8=A.b9("bq>") +B.ay9=A.b9("nd") +B.pL=A.b9("kD") +B.pM=A.b9("bsC") +B.aC=A.b9("aw") +B.aya=A.b9("nl") +B.ayb=A.b9("yo") +B.ayc=A.b9("m9") +B.Pk=A.b9("C") +B.ayd=A.b9("yr") +B.lH=A.b9("np") +B.aye=A.b9("p2") +B.ayf=A.b9("ut") +B.ayg=A.b9("ns") +B.ayh=A.b9("yL") +B.ayi=A.b9("md") +B.ayj=A.b9("r0") +B.ayk=A.b9("uG") +B.ayl=A.b9("ny") +B.aym=A.b9("blr") +B.ayn=A.b9("nB") +B.pN=A.b9("hQ") +B.ayo=A.b9("r9") +B.ayp=A.b9("uV") +B.ayq=A.b9("zq") +B.ayr=A.b9("uY") +B.pO=A.b9("h") +B.ays=A.b9("pj") +B.pP=A.b9("kO") +B.ayt=A.b9("va") +B.ayu=A.b9("b_P") +B.ayv=A.b9("FA") +B.ayw=A.b9("b_Q") +B.ayx=A.b9("e1") +B.ayy=A.b9("vd") +B.ayz=A.b9("mv") +B.ayA=A.b9("bm0") +B.pQ=A.b9("n9") +B.Pl=A.b9("az") +B.ayB=A.b9("o0") +B.ayC=A.b9("G0") +B.ayD=A.b9("kX<@>") +B.ayE=A.b9("pJ") +B.ayF=A.b9("pK") +B.pR=A.b9("@") +B.ayG=A.b9("tE") +B.ayH=A.b9("qp") +B.ayI=A.b9("x5") +B.ayJ=A.b9("pi") +B.lI=A.b9("nP") +B.ayK=A.b9("JT") +B.ayL=A.b9("x9") +B.ayM=A.b9("x6") +B.ayN=A.b9("x8") +B.ayO=A.b9("bH2") +B.ayP=A.b9("wT") +B.ayQ=new A.nM(B.qD,B.mh) +B.ayR=new A.abm(0,"undo") +B.ayS=new A.abm(1,"redo") +B.ayT=new A.FE(!1,!1) +B.ayU=new A.abo(0,"scope") +B.pS=new A.abo(1,"previouslyFocusedChild") +B.ayV=new A.eE(11264,55297,B.j,t.d) +B.ayW=new A.eE(1425,1775,B.ab,t.d) +B.ayX=new A.eE(1786,2303,B.ab,t.d) +B.ayY=new A.eE(192,214,B.j,t.d) +B.ayZ=new A.eE(216,246,B.j,t.d) +B.az_=new A.eE(2304,8191,B.j,t.d) +B.az0=new A.eE(248,696,B.j,t.d) +B.az1=new A.eE(55298,55299,B.ab,t.d) +B.az2=new A.eE(55300,55353,B.j,t.d) +B.az3=new A.eE(55354,55355,B.ab,t.d) +B.az4=new A.eE(55356,56319,B.j,t.d) +B.az5=new A.eE(63744,64284,B.j,t.d) +B.az6=new A.eE(64285,65023,B.ab,t.d) +B.az7=new A.eE(65024,65135,B.j,t.d) +B.az8=new A.eE(65136,65276,B.ab,t.d) +B.az9=new A.eE(65277,65535,B.j,t.d) +B.aza=new A.eE(65,90,B.j,t.d) +B.azb=new A.eE(768,1424,B.j,t.d) +B.azc=new A.eE(8206,8206,B.j,t.d) +B.azd=new A.eE(8207,8207,B.ab,t.d) +B.aze=new A.eE(97,122,B.j,t.d) +B.azf=new A.abs(null) +B.azi=new A.abt(null) +B.de=new A.PQ(!1) +B.azk=new A.PQ(!0) +B.azl=new A.abE(0,"nonStrict") +B.azm=new A.abE(1,"strictRFC4122") +B.azn=new A.bS(0,t.zm) +B.azo=new A.bS(1,t.zm) +B.azp=new A.bS("Ping",t.O) +B.azq=new A.bS("Pong",t.O) +B.azr=new A.bS("all",t.O) +B.azs=new A.bS("installed",t.O) +B.azt=new A.bS("topLevel",t.O) +B.azu=new A.bS("update",t.O) +B.Pm=new A.vh(B.i,0,B.B,B.i) +B.pU=new A.vh(B.i,1,B.B,B.i) +B.pV=new A.abF(0,"up") +B.azv=new A.abG(null) +B.h0=new A.rr(0,0) +B.eT=new A.rr(-2,-2) +B.azx=new A.abP(B.j) +B.azy=new A.abQ(B.j) +B.azz=new A.abR(B.ab) +B.azA=new A.abS(B.j) +B.azB=new A.abT(B.j) +B.azC=new A.abU(B.j) +B.azD=new A.abV(B.j) +B.azE=new A.abW(B.j) +B.azF=new A.abX(B.j) +B.azG=new A.abY(B.j) +B.azH=new A.abZ(B.j) +B.azI=new A.ac_(B.j) +B.azJ=new A.ac0(B.j) +B.azK=new A.ac1(B.j) +B.azL=new A.PW(B.j) +B.azM=new A.ac2(B.j) +B.azN=new A.ac3(B.j) +B.azO=new A.ac4(B.j) +B.azP=new A.ac5(B.j) +B.azQ=new A.ac6(B.j) +B.azR=new A.ac7(B.j) +B.azS=new A.ac8(B.j) +B.azT=new A.ac9(B.j) +B.azU=new A.aca(B.j) +B.azV=new A.PX(B.j) +B.azW=new A.acb(B.j) +B.azX=new A.acc(B.j) +B.azY=new A.acd(B.j) +B.azZ=new A.ace(B.j) +B.aA_=new A.acf(B.j) +B.aA0=new A.acg(B.j) +B.aA1=new A.ach(B.j) +B.aA2=new A.aci(B.j) +B.aA3=new A.acj(B.j) +B.aA4=new A.ack(B.j) +B.aA5=new A.acl(B.j) +B.aA6=new A.acm(B.j) +B.aA7=new A.acn(B.j) +B.aA8=new A.aco(B.j) +B.aA9=new A.acp(B.j) +B.aAa=new A.acq(B.j) +B.aAb=new A.acr(B.j) +B.aAc=new A.acs(B.j) +B.aAd=new A.act(B.j) +B.aAe=new A.acu(B.j) +B.aAf=new A.PY(B.j) +B.aAg=new A.acv(B.j) +B.aAh=new A.acw(B.j) +B.aAi=new A.acx(B.ab) +B.aAj=new A.acy(B.j) +B.aAk=new A.acz(B.j) +B.aAl=new A.acA(B.j) +B.aAm=new A.PZ(B.j) +B.aAn=new A.acB(B.j) +B.aAo=new A.acC(B.j) +B.aAp=new A.acD(B.j) +B.aAq=new A.acE(B.ab) +B.aAr=new A.acF(B.j) +B.aAs=new A.acG(B.j) +B.aAt=new A.acH(B.j) +B.aAu=new A.acI(B.j) +B.aAv=new A.acJ(B.j) +B.aAw=new A.acK(B.j) +B.aAx=new A.acL(B.j) +B.aAy=new A.acM(B.j) +B.aAz=new A.acN(B.j) +B.aAA=new A.acO(B.j) +B.aAB=new A.acP(B.j) +B.aAC=new A.acQ(B.j) +B.aAD=new A.acR(B.j) +B.aAE=new A.acS(B.j) +B.aAF=new A.acT(B.j) +B.aAG=new A.acU(B.j) +B.aAH=new A.acV(B.j) +B.aAI=new A.acW(B.j) +B.aAJ=new A.acX(B.j) +B.aAK=new A.acY(B.j) +B.aAL=new A.acZ(B.j) +B.aAM=new A.ad_(B.j) +B.aAN=new A.ad0(B.j) +B.aAO=new A.ad1(B.j) +B.aAP=new A.ad2(B.j) +B.aAQ=new A.ad3(B.j) +B.aAR=new A.ad4(B.j) +B.aAS=new A.ad5(B.j) +B.aAT=new A.ad6(B.j) +B.aAU=new A.ad7(B.j) +B.aAV=new A.ad8(B.ab) +B.aAW=new A.ad9(B.j) +B.aAX=new A.Q_(B.j) +B.aAY=new A.ada(B.j) +B.aAZ=new A.adb(B.j) +B.aB_=new A.adc(B.j) +B.aB0=new A.add(B.j) +B.aB1=new A.ade(B.j) +B.aB2=new A.adf(B.j) +B.aB3=new A.adg(B.j) +B.aB4=new A.adh(B.j) +B.aB5=new A.Q0(B.j) +B.aB6=new A.adi(B.j) +B.aB7=new A.adj(B.j) +B.aB8=new A.adk(B.j) +B.aB9=new A.adl(B.j) +B.aBa=new A.adm(B.j) +B.aBb=new A.adn(B.j) +B.aBc=new A.ado(B.j) +B.aBd=new A.adp(B.j) +B.aBe=new A.adq(B.ab) +B.aBf=new A.adr(B.j) +B.aBg=new A.ads(B.j) +B.aBh=new A.adt(B.j) +B.Pn=new A.adu(B.j) +B.Po=new A.adv(B.j) +B.aBi=new A.Q2(B.j) +B.aBj=new A.Q1(B.j) +B.aBk=new A.adw(B.j) +B.iH=new A.ady(0,"start") +B.aBm=new A.ady(5,"spaceEvenly") +B.q0=new A.adz(0,"start") +B.aBn=new A.adz(2,"center") +B.aN=new A.G_(0,"forward") +B.lM=new A.G_(1,"reverse") +B.aBq=new A.aej(null) +B.aBr=new A.QU(0,"checkbox") +B.aBs=new A.QU(1,"radio") +B.aBt=new A.QU(2,"toggle") +B.aBu=new A.b3z(0,"material") +B.aDj=new A.b3A(0,"material") +B.eU=new A.b3D(0,"flat") +B.aBv=new A.QZ(0,"inside") +B.aBw=new A.QZ(1,"higher") +B.aBx=new A.QZ(2,"lower") +B.a0f=new A.e(67108864) +B.abd=A.a(s([B.a0f,B.E]),t.t_) +B.aBy=new A.o2(B.abd) +B.aBz=new A.o2(null) +B.q1=new A.A9(0,"backButton") +B.q2=new A.A9(1,"nextButton") +B.eV=new A.Rr(0,"ready") +B.iI=new A.Rs(0,"ready") +B.aBF=new A.Rr(1,"possible") +B.q4=new A.Rs(1,"possible") +B.lN=new A.Rr(2,"accepted") +B.lO=new A.Rs(2,"accepted") +B.an=new A.Gm(0,"initial") +B.eW=new A.Gm(1,"active") +B.aBG=new A.Gm(2,"inactive") +B.Px=new A.Gm(3,"defunct") +B.Py=new A.Ae(0) +B.df=new A.RI(B.cy,"clickable") +B.aBN=new A.RI(B.pw,"textable") +B.aDk=new A.b5J(0,"filled") +B.aBO=new A.agW(1,0,"forward") +B.aBP=new A.agW(-1,1,"backward") +B.aBQ=new A.ah8(1,"small") +B.Pz=new A.ah8(3,"extended") +B.q5=new A.Af(0,"ready") +B.lP=new A.Af(1,"possible") +B.PA=new A.Af(2,"accepted") +B.lQ=new A.Af(3,"started") +B.aBR=new A.Af(4,"peaked") +B.iJ=new A.RZ(0,"pan") +B.lR=new A.RZ(1,"scale") +B.aBS=new A.RZ(2,"rotate") +B.lS=new A.GA(0,"idle") +B.aBT=new A.GA(1,"absorb") +B.lT=new A.GA(2,"pull") +B.PB=new A.GA(3,"recede") +B.eX=new A.vv(0,"pressed") +B.h2=new A.vv(1,"hover") +B.PC=new A.vv(2,"focus") +B.aBU=new A.b6R(0,"standard") +B.aDl=new A.b71(0,"material") +B.ae=new A.GI(0,"minWidth") +B.ao=new A.GI(1,"maxWidth") +B.aF=new A.GI(2,"minHeight") +B.bt=new A.GI(3,"maxHeight") +B.aw=new A.ki(1) +B.iK=new A.hy(0,"size") +B.PD=new A.hy(1,"orientation") +B.PE=new A.hy(11,"accessibleNavigation") +B.aC5=new A.hy(12,"invertColors") +B.PF=new A.hy(13,"highContrast") +B.aC6=new A.hy(14,"onOffSwitchLabels") +B.q7=new A.hy(16,"boldText") +B.h3=new A.hy(17,"navigationMode") +B.lU=new A.hy(18,"gestureSettings") +B.dh=new A.hy(2,"devicePixelRatio") +B.bz=new A.hy(4,"textScaler") +B.q8=new A.hy(5,"platformBrightness") +B.bR=new A.hy(6,"padding") +B.lV=new A.hy(7,"viewInsets") +B.aC7=new A.hy(9,"viewPadding") +B.q9=new A.vB(1/0,1/0,1/0,1/0,1/0,1/0) +B.aC8=new A.f1(B.hZ,B.fo) +B.jG=new A.xS(1,"left") +B.aC9=new A.f1(B.hZ,B.jG) +B.jH=new A.xS(2,"right") +B.aCa=new A.f1(B.hZ,B.jH) +B.aCb=new A.f1(B.hZ,B.dn) +B.aCc=new A.f1(B.i_,B.fo) +B.aCd=new A.f1(B.i_,B.jG) +B.aCe=new A.f1(B.i_,B.jH) +B.aCf=new A.f1(B.i_,B.dn) +B.aCg=new A.f1(B.i0,B.fo) +B.aCh=new A.f1(B.i0,B.jG) +B.aCi=new A.f1(B.i0,B.jH) +B.aCj=new A.f1(B.i0,B.dn) +B.aCk=new A.f1(B.i1,B.fo) +B.aCl=new A.f1(B.i1,B.jG) +B.aCm=new A.f1(B.i1,B.jH) +B.aCn=new A.f1(B.i1,B.dn) +B.aCo=new A.f1(B.Jt,B.dn) +B.aCp=new A.f1(B.Ju,B.dn) +B.aCq=new A.f1(B.Jv,B.dn) +B.aCr=new A.f1(B.Jw,B.dn) +B.aCu=new A.ajF(null) +B.aCt=new A.ajG(null) +B.aCs=new A.ajI(null) +B.aCx=new A.Tb(0,"none") +B.aCy=new A.Tb(1,"static") +B.PG=new A.Tb(2,"progress") +B.aCz=new A.b9Y(0,"material") +B.aDm=new A.b9Z(0,"material") +B.eY=new A.vI(0,"drag") +B.eZ=new A.vI(1,"armed") +B.qa=new A.vI(2,"snap") +B.lW=new A.vI(3,"refresh") +B.qb=new A.vI(4,"done") +B.lX=new A.vI(5,"canceled") +B.PH=new A.ir(0,"staging") +B.lY=new A.ir(1,"add") +B.PI=new A.ir(10,"remove") +B.aCA=new A.ir(11,"popping") +B.aCB=new A.ir(12,"removing") +B.qc=new A.ir(13,"dispose") +B.aCC=new A.ir(14,"disposing") +B.lZ=new A.ir(15,"disposed") +B.aCD=new A.ir(2,"adding") +B.qd=new A.ir(3,"push") +B.PJ=new A.ir(4,"pushReplace") +B.PK=new A.ir(5,"pushing") +B.aCE=new A.ir(6,"replace") +B.h4=new A.ir(7,"idle") +B.qe=new A.ir(8,"pop") +B.aCF=new A.ir(9,"complete") +B.m_=new A.kY(0,"body") +B.m0=new A.kY(1,"appBar") +B.m1=new A.kY(10,"endDrawer") +B.m2=new A.kY(11,"statusBar") +B.m3=new A.kY(2,"bodyScrim") +B.m4=new A.kY(3,"bottomSheet") +B.h5=new A.kY(4,"snackBar") +B.m5=new A.kY(5,"materialBanner") +B.qg=new A.kY(6,"persistentFooter") +B.m6=new A.kY(7,"bottomNavigationBar") +B.m7=new A.kY(8,"floatingActionButton") +B.qh=new A.kY(9,"drawer") +B.iL=new A.He(0,"ready") +B.iM=new A.He(1,"possible") +B.PL=new A.He(2,"accepted") +B.m8=new A.He(3,"started") +B.aCH=new A.o6(B.y,B.a1,B.e3,null,null) +B.ar3=new A.U(100,0) +B.aCI=new A.o6(B.ar3,B.a1,B.e3,null,null) +B.aCJ=new A.Ug(null) +B.aDn=new A.bcu(0,"material") +B.m=new A.bcx(0,"created") +B.f_=new A.anl(0,"trailing") +B.PM=new A.anl(1,"leading") +B.qi=new A.Ht(0,"idle") +B.aCO=new A.Ht(1,"absorb") +B.qj=new A.Ht(2,"pull") +B.qk=new A.Ht(3,"recede") +B.ql=new A.pG("") +B.aDo=new A.bcT(0,"material") +B.aCP=new A.bcV(0,"material") +B.PN=new A.HA(0,"first") +B.aCQ=new A.HA(1,"middle") +B.PO=new A.HA(2,"last") +B.qm=new A.HA(3,"only") +B.aCR=new A.UP(B.ff,B.dF) +B.m9=new A.UW(0,"leading") +B.ma=new A.UW(1,"middle") +B.mb=new A.UW(2,"trailing") +B.aCS=new A.aon(0,"minimize") +B.aCT=new A.aon(1,"maximize")})();(function staticFields(){$.lM=null +$.d2=A.b6("canvasKit") +$.fZ=A.b6("_instance") +$.bFz=A.I(t.N,A.ah("S")) +$.bus=!1 +$.bur=null +$.ed=null +$.byv=0 +$.hB=null +$.bmU=!1 +$.lO=A.a([],t.kZ) +$.but=0 +$.beT=0 +$.rY=A.a([],A.ah("H")) +$.bhE=A.a([],t.nx) +$.bnv=null +$.bIQ=A.b6("_instance") +$.aYr=null +$.bvc=null +$.bnK=A.a([],t.cD) +$.bxv=B.a29 +$.vU=A.a([],t.qj) +$.WB=B.v4 +$.vS=null +$.aHR=null +$.bt5=0 +$.bzy=null +$.bzk=null +$.btl=null +$.bwT=null +$.bw8=0 +$.bmV=A.a([],t.no) +$.bna=-1 +$.bmM=-1 +$.bmL=-1 +$.bn3=-1 +$.bxH=-1 +$.blp=null +$.aFa=A.b6("_programCache") +$.bt8=null +$.hL=null +$.On=null +$.bxw=null +$.bum=A.I(A.ah("Pp"),A.ah("aaS")) +$.bfJ=null +$.bxz=-1 +$.bxy=-1 +$.bxA="" +$.bxx="" +$.bxB=-1 +$.WO=A.I(t.N,t.e) +$.bxe=null +$.b7s=null +$.AK=A.a([],t.jl) +$.btt=null +$.aNU=0 +$.N5=A.bSf() +$.bq5=null +$.bq4=null +$.byP=null +$.by6=null +$.bzr=null +$.bgz=null +$.bhl=null +$.bnw=null +$.baj=A.a([],A.ah("H?>")) +$.HO=null +$.WC=null +$.WD=null +$.bn0=!1 +$.ac=B.b6 +$.bvG=null +$.bvH=null +$.bvI=null +$.bvJ=null +$.bm9=A.b6("_lastQuoRemDigits") +$.bma=A.b6("_lastQuoRemUsed") +$.QD=A.b6("_lastRemUsed") +$.bmb=A.b6("_lastRem_nsh") +$.buY="" +$.buZ=null +$.bxj=A.I(t.N,t.xd) +$.tB=null +$.bkg=null +$.brm=null +$.brl=null +$.ahD=A.I(t.N,t._8) +$.bOR=A.I(t.S,A.ah("c1s")) +$.bxG=A.I(t.C_,t.e) +$.bHZ=null +$.bIn=A.bTh() +$.bkt=0 +$.a1Y=A.a([],A.ah("H")) +$.bst=null +$.aqW=0 +$.bf7=null +$.bmQ=!1 +$.je=null +$.bmx=!0 +$.bmw=!1 +$.zM=A.a([],A.ah("H")) +$.jm=null +$.z2=null +$.bsr=0 +$.cB=null +$.a96=null +$.bqz=0 +$.bqy=A.I(t.S,t.I7) +$.bjO=A.I(t.I7,t.S) +$.aTV=0 +$.iR=null +$.Fe=null +$.blK=null +$.buD=1 +$.ap=null +$.qb=null +$.wE=null +$.bwd=1 +$.blc=-9007199254740992 +$.bb=null +$.bP0=A.I(t.da,A.ah("S")) +$.bPi=A.I(t.da,A.ah("S")) +$.bx9=!1 +$.bQi=A.I(t.da,A.ah("S")) +$.ob=!1 +$.bxY=null +$.brV=!1 +$.bsh=null +$.bsg=null +$.ar4=null +$.ard=null +$.bxd=null +$.bqB=A.I(t.N,t.y) +$.ez=0 +$.eU=0 +$.bSC=null +$.ft=0 +$.rW=0 +$.bfU=0 +$.bsB=0 +$.bJI=A.I(t.N,t.JW) +$.btb=null +$.bx8=null +$.bf6=null +$.aqU=null +$.aUF=null +$.bJB=A.I(t.S,A.ah("c_u")) +$.bv7=A.a([],t.t) +$.blY=0 +$.bv5=0 +$.bv6=0 +$.bv4=!1})();(function lazyInitializers(){var s=hunkHelpers.lazyFinal,r=hunkHelpers.lazy +s($,"c24","dD",()=>{var q="navigator" +return A.bUo(A.bJf(A.a1(A.a1(self.window,q),"vendor")),B.c.By(A.bHh(A.a1(self.window,q))))}) +s($,"c32","fV",()=>A.bUq()) +s($,"bZi","bo2",()=>A.a6b(8)) +s($,"c28","arw",()=>A.a1(A.a1(A.aZ(),"ClipOp"),"Intersect")) +s($,"c3z","bDd",()=>{var q="FontWeight" +return A.a([A.a1(A.a1(A.aZ(),q),"Thin"),A.a1(A.a1(A.aZ(),q),"ExtraLight"),A.a1(A.a1(A.aZ(),q),"Light"),A.a1(A.a1(A.aZ(),q),"Normal"),A.a1(A.a1(A.aZ(),q),"Medium"),A.a1(A.a1(A.aZ(),q),"SemiBold"),A.a1(A.a1(A.aZ(),q),"Bold"),A.a1(A.a1(A.aZ(),q),"ExtraBold"),A.a1(A.a1(A.aZ(),q),"ExtraBlack")],t.A)}) +s($,"c3J","bDm",()=>{var q="TextDirection" +return A.a([A.a1(A.a1(A.aZ(),q),"RTL"),A.a1(A.a1(A.aZ(),q),"LTR")],t.A)}) +s($,"c3G","bDk",()=>{var q="TextAlign" +return A.a([A.a1(A.a1(A.aZ(),q),"Left"),A.a1(A.a1(A.aZ(),q),"Right"),A.a1(A.a1(A.aZ(),q),"Center"),A.a1(A.a1(A.aZ(),q),"Justify"),A.a1(A.a1(A.aZ(),q),"Start"),A.a1(A.a1(A.aZ(),q),"End")],t.A)}) +s($,"c3K","bDn",()=>{var q="TextHeightBehavior" +return A.a([A.a1(A.a1(A.aZ(),q),"All"),A.a1(A.a1(A.aZ(),q),"DisableFirstAscent"),A.a1(A.a1(A.aZ(),q),"DisableLastDescent"),A.a1(A.a1(A.aZ(),q),"DisableAll")],t.A)}) +s($,"c3C","bDg",()=>{var q="RectHeightStyle" +return A.a([A.a1(A.a1(A.aZ(),q),"Tight"),A.a1(A.a1(A.aZ(),q),"Max"),A.a1(A.a1(A.aZ(),q),"IncludeLineSpacingMiddle"),A.a1(A.a1(A.aZ(),q),"IncludeLineSpacingTop"),A.a1(A.a1(A.aZ(),q),"IncludeLineSpacingBottom"),A.a1(A.a1(A.aZ(),q),"Strut")],t.A)}) +s($,"c3D","bDh",()=>{var q="RectWidthStyle" +return A.a([A.a1(A.a1(A.aZ(),q),"Tight"),A.a1(A.a1(A.aZ(),q),"Max")],t.A)}) +s($,"c3x","boF",()=>A.a([A.a1(A.a1(A.aZ(),"ClipOp"),"Difference"),A.a1(A.a1(A.aZ(),"ClipOp"),"Intersect")],t.A)) +s($,"c3y","biM",()=>{var q="FillType" +return A.a([A.a1(A.a1(A.aZ(),q),"Winding"),A.a1(A.a1(A.aZ(),q),"EvenOdd")],t.A)}) +s($,"c3w","bDc",()=>{var q="BlurStyle" +return A.a([A.a1(A.a1(A.aZ(),q),"Normal"),A.a1(A.a1(A.aZ(),q),"Solid"),A.a1(A.a1(A.aZ(),q),"Outer"),A.a1(A.a1(A.aZ(),q),"Inner")],t.A)}) +s($,"c3E","bDi",()=>{var q="StrokeCap" +return A.a([A.a1(A.a1(A.aZ(),q),"Butt"),A.a1(A.a1(A.aZ(),q),"Round"),A.a1(A.a1(A.aZ(),q),"Square")],t.A)}) +s($,"c3A","bDe",()=>{var q="PaintStyle" +return A.a([A.a1(A.a1(A.aZ(),q),"Fill"),A.a1(A.a1(A.aZ(),q),"Stroke")],t.A)}) +s($,"c3v","boE",()=>{var q="BlendMode" +return A.a([A.a1(A.a1(A.aZ(),q),"Clear"),A.a1(A.a1(A.aZ(),q),"Src"),A.a1(A.a1(A.aZ(),q),"Dst"),A.a1(A.a1(A.aZ(),q),"SrcOver"),A.a1(A.a1(A.aZ(),q),"DstOver"),A.a1(A.a1(A.aZ(),q),"SrcIn"),A.a1(A.a1(A.aZ(),q),"DstIn"),A.a1(A.a1(A.aZ(),q),"SrcOut"),A.a1(A.a1(A.aZ(),q),"DstOut"),A.a1(A.a1(A.aZ(),q),"SrcATop"),A.a1(A.a1(A.aZ(),q),"DstATop"),A.a1(A.a1(A.aZ(),q),"Xor"),A.a1(A.a1(A.aZ(),q),"Plus"),A.a1(A.a1(A.aZ(),q),"Modulate"),A.a1(A.a1(A.aZ(),q),"Screen"),A.a1(A.a1(A.aZ(),q),"Overlay"),A.a1(A.a1(A.aZ(),q),"Darken"),A.a1(A.a1(A.aZ(),q),"Lighten"),A.a1(A.a1(A.aZ(),q),"ColorDodge"),A.a1(A.a1(A.aZ(),q),"ColorBurn"),A.a1(A.a1(A.aZ(),q),"HardLight"),A.a1(A.a1(A.aZ(),q),"SoftLight"),A.a1(A.a1(A.aZ(),q),"Difference"),A.a1(A.a1(A.aZ(),q),"Exclusion"),A.a1(A.a1(A.aZ(),q),"Multiply"),A.a1(A.a1(A.aZ(),q),"Hue"),A.a1(A.a1(A.aZ(),q),"Saturation"),A.a1(A.a1(A.aZ(),q),"Color"),A.a1(A.a1(A.aZ(),q),"Luminosity")],t.A)}) +s($,"c3F","bDj",()=>{var q="StrokeJoin" +return A.a([A.a1(A.a1(A.aZ(),q),"Miter"),A.a1(A.a1(A.aZ(),q),"Round"),A.a1(A.a1(A.aZ(),q),"Bevel")],t.A)}) +s($,"c3L","boH",()=>{var q="TileMode" +return A.a([A.a1(A.a1(A.aZ(),q),"Clamp"),A.a1(A.a1(A.aZ(),q),"Repeat"),A.a1(A.a1(A.aZ(),q),"Mirror"),A.a1(A.a1(A.aZ(),q),"Decal")],t.A)}) +s($,"c2h","bou",()=>{var q="FilterMode",p="MipmapMode",o="Linear",n=t.e +return A.am([B.jw,n.a({filter:A.a1(A.a1(A.aZ(),q),"Nearest"),mipmap:A.a1(A.a1(A.aZ(),p),"None")}),B.hv,n.a({filter:A.a1(A.a1(A.aZ(),q),o),mipmap:A.a1(A.a1(A.aZ(),p),"None")}),B.vy,n.a({filter:A.a1(A.a1(A.aZ(),q),o),mipmap:A.a1(A.a1(A.aZ(),p),o)}),B.nk,n.a({B:A.brd(0.3333333333333333),C:A.brd(0.3333333333333333)})],A.ah("xd"),n)}) +s($,"c2y","bCK",()=>{var q=A.a6b(2) +q[0]=0 +q[1]=1 +return q}) +s($,"c3t","arD",()=>A.bWe(4)) +s($,"c3I","bDl",()=>{var q="DecorationStyle" +return A.a([A.a1(A.a1(A.aZ(),q),"Solid"),A.a1(A.a1(A.aZ(),q),"Double"),A.a1(A.a1(A.aZ(),q),"Dotted"),A.a1(A.a1(A.aZ(),q),"Dashed"),A.a1(A.a1(A.aZ(),q),"Wavy")],t.A)}) +s($,"c3H","boG",()=>{var q="TextBaseline" +return A.a([A.a1(A.a1(A.aZ(),q),"Alphabetic"),A.a1(A.a1(A.aZ(),q),"Ideographic")],t.A)}) +s($,"c3B","bDf",()=>{var q="PlaceholderAlignment" +return A.a([A.a1(A.a1(A.aZ(),q),"Baseline"),A.a1(A.a1(A.aZ(),q),"AboveBaseline"),A.a1(A.a1(A.aZ(),q),"BelowBaseline"),A.a1(A.a1(A.aZ(),q),"Top"),A.a1(A.a1(A.aZ(),q),"Bottom"),A.a1(A.a1(A.aZ(),q),"Middle")],t.A)}) +r($,"bRV","bCE",()=>A.bQS()) +r($,"c_l","bix",()=>{var q=t.S,p=t.t +return new A.a2I(A.bHE(),A.I(q,A.ah("bZQ")),A.I(q,A.ah("c1_")),A.I(q,A.ah("pf")),A.aW(q),A.a([],p),A.a([],p),$.eA().gnG(),A.I(q,t.c8))}) +r($,"c2i","bCv",()=>{var q=A.brM(new A.bfj()),p=self.window.FinalizationRegistry +p.toString +return A.bQD(p,q)}) +r($,"c5a","bDL",()=>new A.aLI()) +s($,"c2u","bCH",()=>A.bKj(B.ai1)) +s($,"c2t","biG",()=>A.aIT(A.bFP($.bCH()))) +s($,"c27","bCp",()=>A.bu7(A.a1(A.aZ(),"ParagraphBuilder"))) +s($,"bZl","bAp",()=>A.bx_(A.WA(A.WA(A.WA(A.bzB(),"window"),"flutterCanvasKit"),"Paint"))) +s($,"bZk","bAo",()=>{var q=A.bx_(A.WA(A.WA(A.WA(A.bzB(),"window"),"flutterCanvasKit"),"Paint")) +A.bMr(q,0) +return q}) +s($,"c5w","bDS",()=>{var q=t.N,p=A.ah("+breaks,graphemes,words(FA,FA,FA)"),o=A.bkT(B.Np.a,q,p),n=A.bkT(B.Nq.a,q,p) +return new A.ala(A.bkT(B.Nr.a,q,p),n,o)}) +s($,"c2s","bCG",()=>A.am([B.y9,A.byr("grapheme"),B.ya,A.byr("word")],A.ah("Lc"),t.e)) +s($,"c3X","bDw",()=>A.byu()) +s($,"bZT","dn",()=>{var q,p=A.a1(self.window,"screen") +p=p==null?null:A.a1(p,"width") +if(p==null)p=0 +q=A.a1(self.window,"screen") +q=q==null?null:A.a1(q,"height") +return new A.a1p(0,A.bMo(p,q==null?0:q))}) +s($,"c3U","bDt",()=>{var q=A.a1(self.window,"trustedTypes") +q.toString +return A.bQH(q,"createPolicy",A.bMP("flutter-engine"),t.e.a({createScriptURL:A.brM(new A.bfZ())}))}) +r($,"c49","bDC",()=>self.window.FinalizationRegistry!=null) +s($,"c2n","bCA",()=>B.aH.dW(A.am(["type","fontsChange"],t.N,t.z))) +s($,"c4S","bp0",()=>{var q=A.bys() +A.bqS(q,"width",0) +A.bqS(q,"height",0) +A.bqN(A.a1(q,"style"),"absolute") +return q}) +s($,"c1E","boq",()=>A.a6b(4)) +r($,"c3s","boD",()=>new A.aUy()) +s($,"c0Z","bBM",()=>A.bsY(A.a([0,1,2,2,3,0],t.t))) +s($,"c3N","bDp",()=>A.bnt(A.bnt(A.bnt(self.window,"Image"),"prototype"),"decode")!=null) +s($,"c23","bCm",()=>A.bFY("ftyp")) +s($,"c2A","bow",()=>8589934852) +s($,"c2B","bCM",()=>8589934853) +s($,"c2C","box",()=>8589934848) +s($,"c2D","bCN",()=>8589934849) +s($,"c2H","boz",()=>8589934850) +s($,"c2I","bCQ",()=>8589934851) +s($,"c2F","boy",()=>8589934854) +s($,"c2G","bCP",()=>8589934855) +s($,"c2N","bCU",()=>458978) +s($,"c2O","bCV",()=>458982) +s($,"c4Q","boZ",()=>458976) +s($,"c4R","bp_",()=>458980) +s($,"c2R","bCY",()=>458977) +s($,"c2S","bCZ",()=>458981) +s($,"c2P","bCW",()=>458979) +s($,"c2Q","bCX",()=>458983) +s($,"c2E","bCO",()=>A.am([$.bow(),new A.bfA(),$.bCM(),new A.bfB(),$.box(),new A.bfC(),$.bCN(),new A.bfD(),$.boz(),new A.bfE(),$.bCQ(),new A.bfF(),$.boy(),new A.bfG(),$.bCP(),new A.bfH()],t.S,A.ah("q(oF)"))) +s($,"c5k","bj0",()=>A.bU4(new A.bhH())) +r($,"c_c","biw",()=>new A.a2y(A.a([],A.ah("H<~(q)>")),A.brb(self.window,"(forced-colors: active)"))) +s($,"bZU","bO",()=>{var q,p=A.bkh(),o=A.bV3(),n=A.bHH(0) +if(A.bHf($.biw().b))n.saKJ(!0) +p=A.bKI(n.aO(),!1,"/",p,B.a2,!1,null,o) +o=A.a([$.dn()],A.ah("H")) +q=A.brb(self.window,"(prefers-color-scheme: dark)") +A.bU9() +q=new A.a1u(p,o,A.I(t.S,A.ah("Cs")),A.I(t.K,A.ah("abJ")),q,B.b6) +q.an8() +o=$.biw() +p=o.a +if(B.b.gak(p))A.bx0(o.b,"addListener",o.ga3B()) +p.push(q.ga6A()) +q.and() +q.anh() +A.bzv(q.gex()) +q.agg("flutter/lifecycle",A.avb(B.aV.cV(B.iQ.J())),null) +return q}) +s($,"c_N","biB",()=>{var q=t.N,p=t.S +q=new A.aNo(A.I(q,t._8),A.I(p,t.e),A.aW(q),A.I(p,q)) +q.aOH("_default_document_create_element_visible",A.bxf()) +q.Xi("_default_document_create_element_invisible",A.bxf(),!1) +return q}) +r($,"c0d","bBi",()=>new A.aSj()) +r($,"bRz","bCB",()=>A.WE()) +s($,"c3p","au",()=>(A.byj().gadl()!=null?A.byj().gadl()==="canvaskit":A.bVS())?new A.YK():new A.aGp()) +r($,"c4a","boN",()=>{var q=self.window.ImageDecoder +q=(q==null?null:q)!=null&&A.bTw()===B.dA +return q}) +s($,"c5h","bDP",()=>A.aav(65532)) +s($,"c_i","bAQ",()=>A.bE("[a-z0-9\\s]+",!1,!1,!1)) +s($,"c_j","bAR",()=>A.bE("\\b\\d",!0,!1,!1)) +s($,"c5N","AQ",()=>A.bHb(A.WL(0,0))) +s($,"c0v","bBt",()=>{var q=A.bU3("flt-ruler-host"),p=new A.a8J(q),o=A.a1(q,"style") +A.bqN(o,"fixed") +A.bH8(o,"hidden") +A.bH6(o,"hidden") +A.bH7(o,"0") +A.bH5(o,"0") +A.bH9(o,"0") +A.bH4(o,"0") +A.bx0(A.bV8().gasu(),"appendChild",q) +A.bzv(p.gex()) +return p}) +s($,"c3T","boK",()=>A.bNH(A.a([B.aza,B.aze,B.ayY,B.ayZ,B.az0,B.azb,B.ayW,B.ayX,B.az_,B.azc,B.azd,B.ayV,B.az1,B.az2,B.az3,B.az4,B.az5,B.az6,B.az7,B.az8,B.az9],A.ah("H>")),null,A.ah("mr?"))) +r($,"c62","Xe",()=>A.bNI("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.ahs,B.Pq,A.ah("fC"))) +s($,"bZe","bAm",()=>{var q=t.N +return new A.auH(A.am(["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($,"c5O","arP",()=>new A.aGK()) +s($,"c3R","bDr",()=>A.a6b(4)) +s($,"c3P","boJ",()=>A.a6b(16)) +s($,"c3Q","bDq",()=>A.bK4($.boJ())) +r($,"c5l","hf",()=>A.bHc(A.a1(self.window,"console"))) +s($,"c60","eA",()=>A.bHJ(0,$.bO())) +s($,"bZv","arp",()=>A.byN("_$dart_dartClosure")) +s($,"c1k","bBV",()=>A.aLJ(0)) +s($,"c5d","bj_",()=>B.b6.kG(new A.bhD())) +s($,"c0J","bBx",()=>A.rn(A.b_N({ +toString:function(){return"$receiver$"}}))) +s($,"c0K","bBy",()=>A.rn(A.b_N({$method$:null, +toString:function(){return"$receiver$"}}))) +s($,"c0L","bBz",()=>A.rn(A.b_N(null))) +s($,"c0M","bBA",()=>A.rn(function(){var $argumentsExpr$="$arguments$" +try{null.$method$($argumentsExpr$)}catch(q){return q.message}}())) +s($,"c0P","bBD",()=>A.rn(A.b_N(void 0))) +s($,"c0Q","bBE",()=>A.rn(function(){var $argumentsExpr$="$arguments$" +try{(void 0).$method$($argumentsExpr$)}catch(q){return q.message}}())) +s($,"c0O","bBC",()=>A.rn(A.buU(null))) +s($,"c0N","bBB",()=>A.rn(function(){try{null.$method$}catch(q){return q.message}}())) +s($,"c0S","bBG",()=>A.rn(A.buU(void 0))) +s($,"c0R","bBF",()=>A.rn(function(){try{(void 0).$method$}catch(q){return q.message}}())) +s($,"c2X","bD2",()=>A.aav(254)) +s($,"c2J","bCR",()=>97) +s($,"c2V","bD0",()=>65) +s($,"c2K","bCS",()=>122) +s($,"c2W","bD1",()=>90) +s($,"c2L","bCT",()=>48) +s($,"c16","bog",()=>A.bOo()) +s($,"c_6","t6",()=>A.ah("a7").a($.bj_())) +s($,"c_5","bAK",()=>A.bOZ(!1,B.b6,t.y)) +s($,"c0W","bBJ",()=>new A.b0y().$0()) +s($,"c0X","bBK",()=>new A.b0x().$0()) +s($,"c18","boh",()=>A.bKl(A.mI(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)))) +r($,"c17","bBS",()=>A.aLJ(0)) +s($,"bZR","bAC",()=>A.am(["iso_8859-1:1987",B.cC,"iso-ir-100",B.cC,"iso_8859-1",B.cC,"iso-8859-1",B.cC,"latin1",B.cC,"l1",B.cC,"ibm819",B.cC,"cp819",B.cC,"csisolatin1",B.cC,"iso-ir-6",B.ce,"ansi_x3.4-1968",B.ce,"ansi_x3.4-1986",B.ce,"iso_646.irv:1991",B.ce,"iso646-us",B.ce,"us-ascii",B.ce,"us",B.ce,"ibm367",B.ce,"cp367",B.ce,"csascii",B.ce,"ascii",B.ce,"csutf8",B.a_,"utf-8",B.a_],t.N,A.ah("n5"))) +s($,"c1d","t7",()=>A.b2u(0)) +s($,"c1c","ars",()=>A.b2u(1)) +s($,"c1a","boj",()=>$.ars().rB(0)) +s($,"c19","boi",()=>A.b2u(1e4)) +r($,"c1b","bBT",()=>A.bE("^\\s*([+-]?)((0x[a-f0-9]+)|(\\d+)|([a-z0-9]+))\\s*$",!1,!1,!1)) +s($,"c1N","bor",()=>typeof process!="undefined"&&Object.prototype.toString.call(process)=="[object process]"&&process.platform=="win32") +s($,"c1O","bCc",()=>A.bE("^[\\-\\.0-9A-Z_a-z~]*$",!0,!1,!1)) +s($,"c2q","hD",()=>A.t3(B.Pk)) +s($,"c0y","kp",()=>{A.bL7() +return $.aNU}) +s($,"c3r","bDa",()=>A.bR0()) +s($,"bZr","bAq",()=>({})) +s($,"c1w","bC3",()=>A.qK(["A","ABBR","ACRONYM","ADDRESS","AREA","ARTICLE","ASIDE","AUDIO","B","BDI","BDO","BIG","BLOCKQUOTE","BR","BUTTON","CANVAS","CAPTION","CENTER","CITE","CODE","COL","COLGROUP","COMMAND","DATA","DATALIST","DD","DEL","DETAILS","DFN","DIR","DIV","DL","DT","EM","FIELDSET","FIGCAPTION","FIGURE","FONT","FOOTER","FORM","H1","H2","H3","H4","H5","H6","HEADER","HGROUP","HR","I","IFRAME","IMG","INPUT","INS","KBD","LABEL","LEGEND","LI","MAP","MARK","MENU","METER","NAV","NOBR","OL","OPTGROUP","OPTION","OUTPUT","P","PRE","PROGRESS","Q","S","SAMP","SECTION","SELECT","SMALL","SOURCE","SPAN","STRIKE","STRONG","SUB","SUMMARY","SUP","TABLE","TBODY","TD","TEXTAREA","TFOOT","TH","THEAD","TIME","TR","TRACK","TT","U","UL","VAR","VIDEO","WBR"],t.N)) +s($,"bZL","bo5",()=>B.c.KR(A.bjY(),"Opera",0)) +s($,"bZK","bAz",()=>!$.bo5()&&B.c.KR(A.bjY(),"Trident/",0)) +s($,"bZJ","bAy",()=>B.c.KR(A.bjY(),"Firefox",0)) +s($,"bZI","bAx",()=>"-"+$.bAA()+"-") +s($,"bZM","bAA",()=>{if($.bAy())var q="moz" +else if($.bAz())q="ms" +else q=$.bo5()?"o":"webkit" +return q}) +s($,"c1y","bYZ",()=>{var q=A.bun() +q.rM(0) +return q}) +s($,"c1x","bYY",()=>A.bGC().a) +s($,"c2v","bCI",()=>new A.C()) +s($,"c_T","HV",()=>A.bPx()) +s($,"c_Q","bo8",()=>{$.HV() +return!1}) +s($,"c_R","bo9",()=>{$.HV() +return!1}) +s($,"c_S","biC",()=>{$.HV() +return!1}) +s($,"c_O","bB2",()=>{$.HV() +return!1}) +s($,"c_P","bB3",()=>{$.HV() +return!1}) +s($,"c2a","bCr",()=>A.by2(self)) +s($,"c1m","boo",()=>A.byN("_$dart_dartObject")) +s($,"c2b","bos",()=>function DartObject(a){this.o=a}) +s($,"c2w","bov",()=>Symbol("jsBoxedDartObjectProperty")) +s($,"c_X","bB5",()=>{var q=new A.b7r(A.bKi(8)) +q.amX() +return q}) +s($,"bZS","fU",()=>A.bFw(A.bsY(A.a([1],t.t)).buffer,0).getInt8(0)===1?B.bo:B.qR) +s($,"c4f","Xb",()=>new A.awG(A.I(t.N,A.ah("rx")))) +r($,"c3o","biL",()=>B.Sf) +s($,"c5i","bDQ",()=>new A.aNr()) +s($,"c29","bCq",()=>new A.C()) +s($,"c2Y","bD3",()=>A.bE("max-age|max-stale|min-fresh|must-revalidate|public|private|no-cache|no-store",!0,!1,!1)) +s($,"bZh","bAn",()=>new A.abC()) +s($,"c5P","bDV",()=>A.bE('[^()<>@,;:"\\\\/[\\]?={} \\t\\x00-\\x1F\\x7F]+',!0,!1,!1)) +s($,"c30","bD5",()=>A.bE("(?:\\r\\n)?[ \\t]+",!0,!1,!1)) +s($,"c5Z","bDZ",()=>A.bE("(?:"+$.bD5().a+")*",!0,!1,!1)) +s($,"c3O","boI",()=>A.a1C(null,t.S)) +s($,"bZX","bAE",()=>{var q,p,o=new A.aCH() +o.HU($.X3()) +q=A.bzs("#__file_picker_web-file-input") +if(q==null){q=A.bOO("flt-file-picker-inputs",null) +q.id="__file_picker_web-file-input" +p=A.bzs("body") +p.toString +J.Xf(p).F(0,q)}o.a=q +return o}) +s($,"bZY","X3",()=>new A.C()) +r($,"bI1","bo6",()=>A.bI0()) +s($,"c26","bCo",()=>A.bKb("miguelruivo.flutter.plugins.filepicker",$.bo8()||$.biC()||$.bo9()?B.ha:B.bU,null)) +s($,"c2z","bCL",()=>A.blG(1,1,500)) +s($,"c4l","boO",()=>new A.afz()) +s($,"c1A","bC5",()=>A.hu(1,0,t.i)) +s($,"c1z","bC4",()=>A.hu(0,1,t.i)) +s($,"c2T","bD_",()=>A.hu(B.fH,B.i,t.EP)) +s($,"c2M","boA",()=>A.hu(B.i,B.anX,t.EP)) +s($,"c2x","bCJ",()=>A.hu(B.cw,B.i,t.EP)) +r($,"c1l","bBW",()=>new A.a0E(B.aBz,B.aBy)) +s($,"c4m","boP",()=>new A.a0q()) +r($,"c1C","bC7",()=>new A.ajE(B.aCu,B.an)) +s($,"c3S","bDs",()=>new A.bfV().$0()) +s($,"c25","bCn",()=>new A.beM().$0()) +r($,"c_1","jB",()=>$.bIn) +s($,"bZj","aH",()=>A.aX(0,null,!1,t.Nw)) +s($,"c1j","X7",()=>new A.vr(0,$.bBU())) +s($,"c1i","bBU",()=>A.bSm(0)) +s($,"c2c","arx",()=>A.oP(null,t.N)) +s($,"c2d","bot",()=>A.bun()) +s($,"c15","bBR",()=>A.aLJ(8)) +s($,"c0x","bBu",()=>A.bE("^\\s*at ([^\\s]+).*$",!0,!1,!1)) +s($,"c1H","bC8",()=>A.bG0(B.E,B.TM)) +s($,"c4O","boX",()=>A.bqq(4294967295)) +s($,"c4N","boW",()=>A.bqq(3707764736)) +s($,"c4p","biP",()=>new A.ag2()) +s($,"c1p","bBZ",()=>A.ja(B.d_)) +s($,"c1o","bBY",()=>A.ja(B.bB)) +s($,"c1q","bC_",()=>A.hu(0,0.5,t.i)) +s($,"c1K","bC9",()=>A.hu(0.75,1,t.i)) +s($,"c1L","bCa",()=>A.ja(B.axw)) +s($,"c_n","bAS",()=>A.ja(B.aO)) +s($,"c_o","bAT",()=>A.ja(B.a7M)) +r($,"c0G","bod",()=>new A.aaV(new A.aZB(),A.c3()===B.b1)) +s($,"c1B","bC6",()=>A.bNJ()) +s($,"c1X","bCk",()=>{var q=t.i +return A.a([A.buT(A.hu(0,0.4,q).oR(A.ja(B.a0q)),0.166666,q),A.buT(A.hu(0.4,1,q).oR(A.ja(B.a0u)),0.833334,q)],t.x0)}) +s($,"c1W","arv",()=>A.b_L($.bCk(),t.i)) +s($,"c1P","bCd",()=>A.hu(0,1,t.i).oR(A.ja(B.a7N))) +s($,"c1Q","bCe",()=>A.hu(1.1,1,t.i).oR($.arv())) +s($,"c1R","bCf",()=>A.hu(0.85,1,t.i).oR($.arv())) +s($,"c1S","bCg",()=>A.hu(0,0.6,t.PM).oR(A.ja(B.a7P))) +s($,"c1T","bCh",()=>A.hu(1,0,t.i).oR(A.ja(B.a7T))) +s($,"c1V","bCj",()=>A.hu(1,1.05,t.i).oR($.arv())) +s($,"c1U","bCi",()=>A.hu(1,0.9,t.i).oR($.arv())) +s($,"c1g","bom",()=>A.ja(B.a7R).oR(A.ja(B.p3))) +s($,"c1h","bon",()=>A.ja(B.a7Q).oR(A.ja(B.p3))) +s($,"c1e","bok",()=>A.ja(B.p3)) +s($,"c1f","bol",()=>A.ja(B.apA)) +s($,"c07","bBc",()=>A.hu(0,0.75,t.i)) +s($,"c05","bBa",()=>A.hu(0,1.5,t.i)) +s($,"c06","bBb",()=>A.hu(1,0,t.i)) +s($,"c1t","bC0",()=>A.hu(0.875,1,t.i).oR(A.ja(B.bB))) +s($,"c59","bp9",()=>new A.a5Q()) +s($,"c0I","bBw",()=>A.bNf()) +s($,"c0H","bBv",()=>new A.agM(A.I(A.ah("GF"),t.ff),5,A.ah("agM"))) +s($,"c_B","biz",()=>A.bKk(4)) +r($,"c08","bBd",()=>B.TW) +r($,"c0a","bBf",()=>{var q=null +return A.buH(q,B.mA,q,q,q,q,"sans-serif",q,q,18,q,q,q,q,q,q,q,q,q,q,q)}) +r($,"c09","bBe",()=>{var q=null +return A.blf(q,q,q,q,q,q,q,q,q,B.lB,B.j,q)}) +s($,"c1M","bCb",()=>A.bK5()) +s($,"c0b","bBg",()=>A.aav(65532)) +s($,"c2U","ary",()=>98304) +s($,"c0i","biE",()=>A.pc()) +s($,"c0h","bBk",()=>A.bsW(0)) +s($,"c0j","bBl",()=>A.bsW(0)) +s($,"c0k","bBm",()=>A.bK6().a) +s($,"c5u","arN",()=>{var q=t.N,p=t.L0 +return new A.aNj(A.I(q,A.ah("S")),A.I(q,p),A.I(q,p))}) +s($,"bZf","bo1",()=>new A.auK()) +s($,"c_q","bAU",()=>A.am([4294967562,B.a89,4294967564,B.a8a,4294967556,B.a8b],t.S,t.SQ)) +s($,"c00","biD",()=>new A.aP_(A.a([],A.ah("H<~(nw)>")),A.I(t.v3,t.bd))) +s($,"c0_","bB7",()=>{var q=t.v3 +return A.am([B.aCh,A.f9([B.fM],q),B.aCi,A.f9([B.fO],q),B.aCj,A.f9([B.fM,B.fO],q),B.aCg,A.f9([B.fM],q),B.aCd,A.f9([B.fL],q),B.aCe,A.f9([B.i7],q),B.aCf,A.f9([B.fL,B.i7],q),B.aCc,A.f9([B.fL],q),B.aC9,A.f9([B.fK],q),B.aCa,A.f9([B.i6],q),B.aCb,A.f9([B.fK,B.i6],q),B.aC8,A.f9([B.fK],q),B.aCl,A.f9([B.fN],q),B.aCm,A.f9([B.i8],q),B.aCn,A.f9([B.fN,B.i8],q),B.aCk,A.f9([B.fN],q),B.aCo,A.f9([B.eC],q),B.aCp,A.f9([B.l3],q),B.aCq,A.f9([B.l2],q),B.aCr,A.f9([B.i5],q)],A.ah("f1"),A.ah("bC"))}) +s($,"c_Z","boa",()=>A.am([B.fM,B.hU,B.fO,B.kL,B.fL,B.e_,B.i7,B.ey,B.fK,B.hT,B.i6,B.kK,B.fN,B.hV,B.i8,B.kM,B.eC,B.hQ,B.l3,B.kI,B.l2,B.kJ],t.v3,t.bd)) +s($,"c_Y","bB6",()=>{var q=A.I(t.v3,t.bd) +q.n(0,B.i5,B.o9) +q.I(0,$.boa()) +return q}) +s($,"c__","bAG",()=>new A.Kp("\n",!1,"")) +s($,"bZZ","bAF",()=>new A.Kp(A.bE("[0-9]",!0,!1,!1),!0,"")) +s($,"c0F","dC",()=>{var q=$.art() +q=new A.aaT(q,A.f9([q],A.ah("Pq")),A.I(t.N,A.ah("btV"))) +q.c=B.JJ +q.gaoE().ui(q.gawM()) +return q}) +s($,"c1F","art",()=>new A.ak2()) +s($,"c0T","boe",()=>{var q=new A.abn() +q.a=B.aoh +q.gaDS().ui(q.gavr()) +return q}) +r($,"c14","bBQ",()=>{var q=A.ah("~(cc)") +return A.am([B.axW,A.bqM(!0),B.ayO,A.bqM(!1),B.aym,new A.a8v(A.Mw(q)),B.ayb,new A.a6k(A.Mw(q)),B.ayh,new A.a7l(A.Mw(q)),B.Pi,new A.JQ(!1,A.Mw(q)),B.pN,A.bLW(),B.ayj,new A.a7o(A.Mw(q)),B.ayA,new A.abN(A.Mw(q))],t.n,t.od)}) +s($,"bZA","biv",()=>{var q,p,o,n=t.vz,m=A.I(t.Vz,n) +for(q=A.ah("bl"),p=0;p<2;++p){o=B.o4[p] +m.I(0,A.am([A.hU(B.cu,!1,!1,!1,o),B.mT,A.hU(B.cu,!1,!0,!1,o),B.mX,A.hU(B.cu,!0,!1,!1,o),B.mV,A.hU(B.c5,!1,!1,!1,o),B.mU,A.hU(B.c5,!1,!0,!1,o),B.mY,A.hU(B.c5,!0,!1,!1,o),B.mW],q,n))}m.n(0,B.eM,B.ht) +m.n(0,B.eN,B.hu) +m.n(0,B.eO,B.jt) +m.n(0,B.eP,B.ju) +m.n(0,B.O8,B.n9) +m.n(0,B.O9,B.na) +m.n(0,B.Oa,B.nd) +m.n(0,B.Ob,B.ne) +m.n(0,B.ph,B.el) +m.n(0,B.pi,B.em) +m.n(0,B.pj,B.jr) +m.n(0,B.pk,B.js) +m.n(0,B.Oc,B.vm) +m.n(0,B.Od,B.vn) +m.n(0,B.Oe,B.vk) +m.n(0,B.Of,B.vl) +m.n(0,B.Og,B.nb) +m.n(0,B.Oh,B.nc) +m.n(0,B.Oi,B.a2T) +m.n(0,B.Oj,B.a2U) +m.n(0,B.aqH,B.a2R) +m.n(0,B.aqI,B.a2S) +m.n(0,B.io,B.vs) +m.n(0,B.ip,B.vt) +m.n(0,B.pf,B.nf) +m.n(0,B.pl,B.ng) +m.n(0,B.Ou,B.uV) +m.n(0,B.Ov,B.uU) +m.n(0,B.Ow,B.qW) +m.n(0,B.pm,B.qZ) +m.n(0,B.ar0,B.r1) +m.n(0,B.aqP,B.qY) +m.n(0,B.iq,B.V) +m.n(0,B.lu,B.V) +return m}) +s($,"bZz","bo3",()=>$.biv()) +s($,"bZB","bAs",()=>$.bo3()) +s($,"bZD","bAu",()=>{var q=A.oN($.biv(),t.Vz,t.vz) +q.n(0,B.lv,B.el) +q.n(0,B.lw,B.em) +q.n(0,B.lx,B.vm) +q.n(0,B.ly,B.vn) +return q}) +s($,"bZE","bo4",()=>{var q,p,o,n=t.vz,m=A.I(t.Vz,n) +for(q=A.ah("bl"),p=0;p<2;++p){o=B.o4[p] +m.I(0,A.am([A.hU(B.cu,!1,!1,!1,o),B.mT,A.hU(B.cu,!0,!1,!1,o),B.mX,A.hU(B.cu,!1,!1,!0,o),B.mV,A.hU(B.c5,!1,!1,!1,o),B.mU,A.hU(B.c5,!0,!1,!1,o),B.mY,A.hU(B.c5,!1,!1,!0,o),B.mW],q,n))}m.n(0,B.eM,B.ht) +m.n(0,B.eN,B.hu) +m.n(0,B.eO,B.jt) +m.n(0,B.eP,B.ju) +m.n(0,B.O8,B.n9) +m.n(0,B.O9,B.na) +m.n(0,B.Oa,B.nd) +m.n(0,B.Ob,B.ne) +m.n(0,B.ph,B.nb) +m.n(0,B.pi,B.nc) +m.n(0,B.pj,B.el) +m.n(0,B.pk,B.em) +m.n(0,B.Oc,B.vq) +m.n(0,B.Od,B.vr) +m.n(0,B.Oe,B.vo) +m.n(0,B.Of,B.vp) +m.n(0,B.Ok,B.el) +m.n(0,B.Ol,B.em) +m.n(0,B.Om,B.jr) +m.n(0,B.On,B.js) +m.n(0,B.aqJ,B.vi) +m.n(0,B.aqK,B.vj) +m.n(0,B.aqL,B.n6) +m.n(0,B.aqM,B.n7) +m.n(0,B.aqQ,B.r0) +m.n(0,B.lv,B.NI) +m.n(0,B.lw,B.NJ) +m.n(0,B.lx,B.n6) +m.n(0,B.ly,B.n7) +m.n(0,B.io,B.p6) +m.n(0,B.ip,B.ll) +m.n(0,B.pf,B.nf) +m.n(0,B.pl,B.ng) +m.n(0,B.Oq,B.uV) +m.n(0,B.Or,B.uU) +m.n(0,B.Os,B.qW) +m.n(0,B.Ot,B.qZ) +m.n(0,B.aqR,B.r1) +m.n(0,B.aqS,B.qY) +m.n(0,B.aqT,B.em) +m.n(0,B.pm,B.el) +m.n(0,B.aqU,B.hu) +m.n(0,B.aqW,B.ht) +m.n(0,B.aqX,B.ju) +m.n(0,B.aqY,B.jt) +m.n(0,B.iq,B.V) +m.n(0,B.lu,B.V) +return m}) +s($,"bZC","bAt",()=>$.bo4()) +s($,"bZG","bAw",()=>{var q=A.oN($.biv(),t.Vz,t.vz) +q.n(0,B.io,B.vs) +q.n(0,B.ip,B.vt) +q.n(0,B.lv,B.a2P) +q.n(0,B.lw,B.a2Q) +q.n(0,B.lx,B.a2N) +q.n(0,B.ly,B.a2O) +q.n(0,B.Oo,B.jr) +q.n(0,B.Op,B.js) +q.n(0,B.aqF,B.vk) +q.n(0,B.aqG,B.vl) +return q}) +s($,"bZF","bAv",()=>{var q,p,o,n=t.vz,m=A.I(t.Vz,n) +for(q=A.ah("bl"),p=0;p<2;++p){o=B.o4[p] +m.I(0,A.am([A.hU(B.cu,!1,!1,!1,o),B.V,A.hU(B.c5,!1,!1,!1,o),B.V,A.hU(B.cu,!0,!1,!1,o),B.V,A.hU(B.c5,!0,!1,!1,o),B.V,A.hU(B.cu,!1,!0,!1,o),B.V,A.hU(B.c5,!1,!0,!1,o),B.V,A.hU(B.cu,!1,!1,!0,o),B.V,A.hU(B.c5,!1,!1,!0,o),B.V],q,n))}m.I(0,B.akl) +m.n(0,B.Ou,B.V) +m.n(0,B.Oq,B.V) +m.n(0,B.Ov,B.V) +m.n(0,B.Or,B.V) +m.n(0,B.Ow,B.V) +m.n(0,B.Os,B.V) +m.n(0,B.pm,B.V) +m.n(0,B.Ot,B.V) +return m}) +r($,"c1D","bop",()=>new A.ajD(B.aCs,B.an)) +s($,"c1v","bC2",()=>A.hu(1,0,t.i)) +s($,"c_E","of",()=>A.a1C(null,t.uK)) +s($,"c1J","aru",()=>{var q=A.bNW(null,t.v),p=A.bG2(t.H) +return new A.ajC(B.fU,q,p)}) +s($,"c1u","bC1",()=>A.dW(16667,0,0)) +s($,"c2e","bCs",()=>A.bld(0,!0,1)) +s($,"c0e","bBj",()=>A.blG(0.5,1.1,100)) +s($,"bZm","bit",()=>A.WS(0.78)/A.WS(0.9)) +r($,"c_0","bAH",()=>{var q=B.a2K.aOD() +return A.bFC(q,A.l(q).h("bz.T"),t.y).ik(0,new A.aDn(),A.ah("qx"))}) +s($,"bZy","biu",()=>{var q=null,p=new A.b8f(A.bjL(B.hd.gy3(B.hd),$.arr()),A.bWs(),B.Tj,B.hd),o=t.N,n=new A.a8B(p,A.I(o,t._A),q) +n.amK(q) +n.P5(q) +p.a=n +n=p.b +p=p.a9D(0,n==null?p.b=p.a9D(0,B.hd.gy3(B.hd)).a9e(".tmp_").b:n) +p.a9d() +p=new A.aKf(p.Uu("cache")) +n=A.bIR() +p=new A.axw(new A.a6m(),p,B.a27,200,n) +o=new A.wQ(A.I(o,A.ah("bz")),p,A.bFx(p)) +o.amv(p) +return o}) +r($,"c4b","arG",()=>new A.avg()) +s($,"c4M","boV",()=>A.bkB(B.agc,t.N)) +s($,"c4n","bDE",()=>{var q=null +return A.am(["af",A.b_(B.a8u,B.aev,B.ag,B.D9,B.afA,6,5,B.DI,"af",B.P,B.DD,B.aaV,B.CQ,B.et,B.Ds,B.DI,B.P,B.DD,B.CQ,B.Ds,B.Do,B.a3,B.Do,B.v,q),"am",A.b_(B.agn,B.acg,B.ag,B.ads,B.ab1,6,5,B.DP,"am",B.Dj,B.yt,B.ahR,B.DR,B.adL,B.Ca,B.DP,B.Dj,B.yt,B.DR,B.Ca,B.Co,B.aR,B.Co,B.v,q),"ar",A.b_(B.aaD,B.a9M,B.afl,B.abR,B.aex,5,4,B.kt,"ar",B.DA,B.yN,B.BJ,B.kt,B.BJ,B.kl,B.kt,B.DA,B.yN,B.kt,B.kl,B.kl,B.aR,B.kl,B.yX,"\u0660"),"as",A.b_(B.aaM,B.ahU,B.ag,B.aeG,B.abF,6,5,B.Bl,"as",B.Bx,B.AR,B.abH,B.AK,B.a90,B.Ea,B.Bl,B.Bx,B.AR,B.AK,B.Ea,B.AG,B.aaO,B.AG,B.cJ,"\u09e6"),"az",A.b_(B.ac,B.aaa,B.ag,B.a99,B.a8O,0,6,B.Cl,"az",B.bi,B.Ap,B.aaW,B.za,B.agY,B.agV,B.Cl,B.bi,B.Ap,B.za,B.a8B,B.CM,B.a3,B.CM,B.v,q),"be",A.b_(B.ac,B.a8I,B.aav,B.abp,B.a9Z,0,6,B.ae6,"be",B.yS,B.Eg,B.afB,B.acZ,B.abx,B.BB,B.af0,B.yS,B.Eg,B.ab3,B.BB,B.E8,B.ab0,B.E8,B.v,q),"bg",A.b_(B.afw,B.aa5,B.cN,B.aem,B.adu,0,3,B.AM,"bg",B.yv,B.jT,B.abo,B.BF,B.agd,B.kn,B.AM,B.yv,B.jT,B.BF,B.kn,B.C1,B.adc,B.C1,B.v,q),"bn",A.b_(B.ac,B.k4,B.ag,B.adT,B.a9W,6,5,B.o2,"bn",B.C9,B.yD,B.A7,B.abV,B.A7,B.zN,B.o2,B.C9,B.yD,B.o2,B.zN,B.CT,B.aR,B.CT,B.v,"\u09e6"),"bs",A.b_(B.agW,B.a8J,B.Dm,B.adV,B.Ag,0,6,B.DB,"bs",B.dX,B.Cp,B.ahc,B.AQ,B.ach,B.ky,B.DB,B.dX,B.kC,B.AQ,B.ky,B.kg,B.a3,B.kg,B.v,q),"ca",A.b_(B.hN,B.ahG,B.acd,B.afY,B.aez,0,3,B.aeD,"ca",B.Bf,B.yz,B.aa9,B.acy,B.ahy,B.yV,B.afV,B.Bf,B.yz,B.aht,B.yV,B.B5,B.yB,B.B5,B.v,q),"cs",A.b_(B.adk,B.ag7,B.ag,B.a9N,B.aey,0,3,B.afP,"cs",B.bi,B.A0,B.a9w,B.Bv,B.aL,B.yr,B.ahd,B.bi,B.A0,B.Bv,B.yr,B.DZ,B.jX,B.DZ,B.v,q),"cy",A.b_(B.ahV,B.a9r,B.adq,B.agb,B.ab4,0,3,B.z6,"cy",B.zf,B.E9,B.ai3,B.acc,B.abc,B.a9C,B.z6,B.zf,B.E9,B.ah8,B.ab2,B.zO,B.a3,B.zO,B.v,q),"da",A.b_(B.ac,B.acF,B.ahO,B.fy,B.fy,0,3,B.yn,"da",B.P,B.dW,B.hK,B.C_,B.ae2,B.hJ,B.yn,B.P,B.dW,B.C_,B.ahM,B.ft,B.nP,B.ft,B.v,q),"de",A.b_(B.ac,B.nQ,B.BH,B.fw,B.fw,0,3,B.kx,"de",B.P,B.fx,B.nX,B.A5,B.aL,B.yY,B.kx,B.P,B.fx,B.km,B.De,B.jW,B.a3,B.jW,B.v,q),"de_CH",A.b_(B.ac,B.nQ,B.BH,B.fw,B.fw,0,3,B.kx,"de_CH",B.P,B.fx,B.nX,B.A5,B.aL,B.yY,B.kx,B.P,B.fx,B.km,B.De,B.jW,B.a3,B.jW,B.v,q),"el",A.b_(B.adz,B.Cw,B.aeX,B.adM,B.afz,0,3,B.aeP,"el",B.yP,B.zu,B.af3,B.agM,B.add,B.Cx,B.ac6,B.yP,B.zu,B.ahz,B.Cx,B.Ec,B.aR,B.Ec,B.v,q),"en",A.b_(B.ac,B.ev,B.d4,B.c4,B.by,6,5,B.aY,"en",B.P,B.aD,B.cK,B.dp,B.aL,B.aZ,B.aY,B.P,B.aD,B.dp,B.aZ,B.b_,B.aR,B.b_,B.v,q),"en_AU",A.b_(B.eu,B.jY,B.d4,B.c4,B.by,0,6,B.aY,"en_AU",B.P,B.z1,B.cK,B.ahN,B.aL,B.aZ,B.aY,B.P,B.z1,B.dp,B.aZ,B.b_,B.aR,B.b_,B.v,q),"en_CA",A.b_(B.dV,B.acj,B.d4,B.c4,B.by,6,5,B.aY,"en_CA",B.P,B.aD,B.cK,B.bX,B.aL,B.aZ,B.aY,B.P,B.aD,B.bX,B.aZ,B.b_,B.aR,B.b_,B.v,q),"en_GB",A.b_(B.eu,B.Ar,B.d4,B.c4,B.by,0,3,B.aY,"en_GB",B.P,B.aD,B.cK,B.bX,B.aL,B.aZ,B.aY,B.P,B.aD,B.bX,B.aZ,B.b_,B.a3,B.b_,B.v,q),"en_IE",A.b_(B.dV,B.yo,B.d4,B.c4,B.by,0,3,B.aY,"en_IE",B.P,B.aD,B.cK,B.bX,B.aL,B.aZ,B.aY,B.P,B.aD,B.bX,B.aZ,B.b_,B.a3,B.b_,B.v,q),"en_IN",A.b_(B.eu,B.adY,B.d4,B.c4,B.by,6,5,B.aY,"en_IN",B.P,B.aD,B.cK,B.bX,B.aL,B.aZ,B.aY,B.P,B.aD,B.bX,B.aZ,B.b_,B.aR,B.b_,B.cJ,q),"en_NZ",A.b_(B.eu,B.aam,B.d4,B.c4,B.by,0,6,B.aY,"en_NZ",B.P,B.aD,B.cK,B.bX,B.aL,B.aZ,B.aY,B.P,B.aD,B.bX,B.aZ,B.b_,B.aR,B.b_,B.v,q),"en_SG",A.b_(B.eu,B.jY,B.d4,B.c4,B.by,6,5,B.aY,"en_SG",B.P,B.aD,B.cK,B.bX,B.aL,B.aZ,B.aY,B.P,B.aD,B.bX,B.aZ,B.b_,B.aR,B.b_,B.v,q),"en_US",A.b_(B.ac,B.ev,B.d4,B.c4,B.by,6,5,B.aY,"en_US",B.P,B.aD,B.cK,B.dp,B.aL,B.aZ,B.aY,B.P,B.aD,B.dp,B.aZ,B.b_,B.aR,B.b_,B.v,q),"en_ZA",A.b_(B.eu,B.aeH,B.d4,B.c4,B.by,6,5,B.aY,"en_ZA",B.P,B.aD,B.cK,B.bX,B.aL,B.aZ,B.aY,B.P,B.aD,B.bX,B.aZ,B.b_,B.a3,B.b_,B.v,q),"es",A.b_(B.hN,B.BE,B.cN,B.kr,B.k_,0,3,B.dY,"es",B.dU,B.AD,B.DX,B.dS,B.d3,B.dT,B.dY,B.dU,B.AD,B.dS,B.dT,B.dR,B.yB,B.dR,B.v,q),"es_419",A.b_(B.hN,B.BE,B.Ci,B.kr,B.k_,0,3,B.dY,"es_419",B.dU,B.agU,B.k5,B.dS,B.d3,B.dT,B.dY,B.dU,B.cL,B.dS,B.dT,B.dR,B.a3,B.dR,B.v,q),"es_MX",A.b_(B.hN,B.a9_,B.Ci,B.kr,B.k_,6,5,B.dY,"es_MX",B.dU,B.cL,B.DX,B.dS,B.d3,B.dT,B.dY,B.dU,B.cL,B.dS,B.dT,B.dR,B.a3,B.dR,B.v,q),"es_US",A.b_(B.hN,B.ahH,B.cN,B.kr,B.k_,6,5,B.dY,"es_US",B.dU,B.cL,B.k5,B.dS,B.d3,B.dT,B.dY,B.dU,B.cL,B.dS,B.dT,B.dR,B.aR,B.dR,B.v,q),"et",A.b_(B.ac,B.abI,B.ag,B.agQ,B.af1,0,3,B.C0,"et",B.Cy,B.kA,B.hK,B.D1,B.et,B.kA,B.C0,B.Cy,B.kA,B.D1,B.kA,B.zB,B.a3,B.zB,B.v,q),"eu",A.b_(B.ac,B.ad7,B.ag,B.aeg,B.acG,0,3,B.a8z,"eu",B.A3,B.Ae,B.ags,B.Dl,B.adE,B.zA,B.afk,B.A3,B.Ae,B.Dl,B.zA,B.zW,B.zP,B.zW,B.v,q),"fa",A.b_(B.acY,B.agt,B.aaS,B.ai2,B.aao,5,4,B.ab7,"fa",B.BW,B.Bg,B.abK,B.o3,B.ahi,B.jZ,B.o3,B.BW,B.Bg,B.o3,B.jZ,B.jZ,B.yQ,B.jZ,B.a9K,"\u06f0"),"fi",A.b_(B.acb,B.abe,B.agJ,B.ad5,B.afo,0,3,B.ac_,"fi",B.Ba,B.Cc,B.afy,B.ahF,B.ag2,B.D4,B.acC,B.Ba,B.Cc,B.agS,B.D4,B.aga,B.abl,B.abj,B.v,q),"fil",A.b_(B.ac,B.ev,B.Ai,B.c4,B.by,6,5,B.jU,"fil",B.fs,B.dZ,B.D7,B.fs,B.aL,B.dZ,B.jU,B.zJ,B.dZ,B.fs,B.dZ,B.kz,B.aR,B.kz,B.v,q),"fr",A.b_(B.ac,B.yo,B.zo,B.zh,B.Cn,0,3,B.kk,"fr",B.P,B.cL,B.Av,B.BZ,B.d3,B.k1,B.kk,B.P,B.cL,B.BZ,B.k1,B.k7,B.a3,B.k7,B.v,q),"fr_CA",A.b_(B.dV,B.CF,B.zo,B.zh,B.Cn,6,5,B.kk,"fr_CA",B.P,B.cL,B.Av,B.Aw,B.d3,B.k1,B.kk,B.P,B.cL,B.Aw,B.k1,B.k7,B.aaX,B.k7,B.v,q),"gl",A.b_(B.dV,B.acI,B.aek,B.adZ,B.kE,0,3,B.abS,"gl",B.ae0,B.a9s,B.k5,B.afG,B.d3,B.aaJ,B.ahb,B.adx,B.aaA,B.abn,B.a9t,B.adn,B.a3,B.ah5,B.v,q),"gsw",A.b_(B.ag1,B.nQ,B.ag,B.fw,B.fw,0,3,B.AY,"gsw",B.P,B.fx,B.nX,B.km,B.aL,B.Df,B.AY,B.P,B.fx,B.km,B.Df,B.As,B.a3,B.As,B.v,q),"gu",A.b_(B.ac,B.k4,B.abY,B.a8Z,B.acB,6,5,B.AI,"gu",B.E0,B.BV,B.afj,B.BG,B.aL,B.A1,B.AI,B.E0,B.BV,B.BG,B.A1,B.Ch,B.Bb,B.Ch,B.cJ,q),"he",A.b_(B.ac4,B.agT,B.abG,B.a94,B.age,6,5,B.Bn,"he",B.bi,B.B_,B.a9O,B.zg,B.aL,B.CL,B.Bn,B.bi,B.B_,B.zg,B.CL,B.yO,B.jX,B.yO,B.yX,q),"hi",A.b_(B.eu,B.jY,B.abA,B.adp,B.agR,6,5,B.AT,"hi",B.D5,B.k3,B.afC,B.D2,B.aeL,B.C3,B.AT,B.D5,B.k3,B.D2,B.C3,B.yK,B.aR,B.yK,B.cJ,q),"hr",A.b_(B.ac,B.agF,B.Dm,B.aeY,B.ahh,0,6,B.aa0,"hr",B.BX,B.Cp,B.hK,B.Cv,B.af5,B.ky,B.abO,B.BX,B.kC,B.Cv,B.ky,B.kg,B.aaN,B.kg,B.v,q),"hu",A.b_(B.adh,B.ahA,B.ag,B.ad1,B.aas,0,3,B.A6,"hu",B.DY,B.Cm,B.aat,B.E2,B.ahW,B.Ce,B.A6,B.DY,B.Cm,B.E2,B.Ce,B.zp,B.jX,B.zp,B.v,q),"hy",A.b_(B.ac,B.af2,B.cN,B.aha,B.ahX,0,6,B.ahL,"hy",B.zZ,B.Af,B.agG,B.yZ,B.abz,B.Dx,B.ae9,B.zZ,B.Af,B.yZ,B.Dx,B.E6,B.a3,B.E6,B.v,q),"id",A.b_(B.ac,B.aaE,B.ag,B.a8G,B.adC,6,5,B.zv,"id",B.P,B.CH,B.aej,B.Dg,B.et,B.CP,B.zv,B.P,B.CH,B.Dg,B.CP,B.Aa,B.nP,B.Aa,B.v,q),"is",A.b_(B.aby,B.a95,B.nV,B.afv,B.fy,0,3,B.D6,"is",B.Cb,B.Cg,B.ael,B.Ck,B.abC,B.zI,B.D6,B.Cb,B.Cg,B.Ck,B.zI,B.E1,B.a3,B.E1,B.v,q),"it",A.b_(B.ac,B.a8v,B.fu,B.aaT,B.kE,0,3,B.Bc,"it",B.CV,B.CR,B.AX,B.zG,B.d3,B.B8,B.Bc,B.CV,B.CR,B.zG,B.B8,B.BM,B.a3,B.BM,B.v,q),"ja",A.b_(B.a8L,B.acV,B.ag,B.Bw,B.Bw,6,5,B.bY,"ja",B.bi,B.kb,B.ag4,B.bY,B.aL,B.kb,B.bY,B.bi,B.kb,B.bY,B.kb,B.Ak,B.abb,B.Ak,B.v,q),"ka",A.b_(B.ac,B.ahC,B.cN,B.abM,B.afT,0,6,B.zQ,"ka",B.yx,B.yC,B.ahk,B.yp,B.aeW,B.z7,B.zQ,B.yx,B.yC,B.yp,B.z7,B.Ao,B.a3,B.Ao,B.v,q),"kk",A.b_(B.ac,B.abu,B.cN,B.abQ,B.aef,0,6,B.a8A,"kk",B.CD,B.AL,B.aaL,B.An,B.ae7,B.yE,B.adW,B.CD,B.AL,B.An,B.yE,B.z4,B.a3,B.z4,B.v,q),"km",A.b_(B.ac,B.Cw,B.abU,B.aaK,B.a9G,6,5,B.kw,"km",B.Dh,B.Bd,B.B0,B.kw,B.B0,B.A4,B.kw,B.Dh,B.Bd,B.kw,B.A4,B.aeC,B.aR,B.aaC,B.v,q),"kn",A.b_(B.aci,B.acN,B.ag,B.acU,B.a8S,6,5,B.AS,"kn",B.B3,B.z8,B.acO,B.aa3,B.abW,B.BI,B.AS,B.B3,B.z8,B.a8w,B.BI,B.z9,B.Bb,B.z9,B.cJ,q),"ko",A.b_(B.a98,B.aau,B.ag,B.ad6,B.by,6,5,B.fr,"ko",B.fr,B.kj,B.a8x,B.fr,B.ah6,B.kj,B.fr,B.fr,B.kj,B.fr,B.kj,B.Cd,B.a9B,B.Cd,B.v,q),"ky",A.b_(B.ah1,B.ab8,B.ag,B.ae8,B.abg,0,6,B.CX,"ky",B.ki,B.AP,B.aaw,B.acP,B.agC,B.A8,B.agp,B.ki,B.AP,B.aen,B.A8,B.Bp,B.a3,B.Bp,B.v,q),"lo",A.b_(B.aaG,B.ahv,B.cN,B.abJ,B.a8E,6,5,B.DW,"lo",B.bi,B.CK,B.ac2,B.Ac,B.adD,B.AN,B.DW,B.bi,B.CK,B.Ac,B.AN,B.Dv,B.afR,B.Dv,B.v,q),"lt",A.b_(B.ae5,B.acA,B.ag,B.afX,B.zM,0,3,B.aba,"lt",B.zY,B.BP,B.aes,B.z0,B.ae_,B.yq,B.agX,B.zY,B.BP,B.z0,B.yq,B.Bu,B.a3,B.Bu,B.v,q),"lv",A.b_(B.afm,B.agu,B.ag,B.aaY,B.ag8,0,6,B.Cq,"lv",B.P,B.DK,B.aer,B.zt,B.agZ,B.agw,B.Cq,B.P,B.DK,B.zt,B.aew,B.agP,B.a3,B.aax,B.v,q),"mk",A.b_(B.ah2,B.ah7,B.acW,B.agO,B.a8M,0,6,B.CY,"mk",B.kD,B.jT,B.ag9,B.AU,B.ad_,B.DT,B.CY,B.kD,B.jT,B.AU,B.DT,B.Dy,B.a3,B.Dy,B.v,q),"ml",A.b_(B.ac,B.adX,B.ag,B.aeB,B.ad4,6,5,B.CJ,"ml",B.Aj,B.aac,B.Cu,B.ze,B.Cu,B.BL,B.CJ,B.Aj,B.ac8,B.ze,B.BL,B.afS,B.aR,B.abB,B.cJ,q),"mn",A.b_(B.aae,B.aeb,B.ag,B.acl,B.acM,6,5,B.ag6,"mn",B.Bj,B.kh,B.aaI,B.AB,B.ae4,B.kh,B.a8y,B.Bj,B.kh,B.AB,B.kh,B.aee,B.zP,B.aaH,B.v,q),"mr",A.b_(B.ac,B.k4,B.ahf,B.acK,B.adg,6,5,B.yF,"mr",B.AW,B.k3,B.abZ,B.BN,B.aeo,B.yW,B.yF,B.AW,B.k3,B.BN,B.yW,B.zF,B.aR,B.zF,B.cJ,"\u0966"),"ms",A.b_(B.ad9,B.ahB,B.fu,B.A_,B.A_,0,6,B.yJ,"ms",B.DO,B.AF,B.afZ,B.AZ,B.adw,B.Bo,B.yJ,B.DO,B.AF,B.AZ,B.Bo,B.zS,B.aR,B.zS,B.v,q),"my",A.b_(B.aad,B.abD,B.ag,B.acT,B.aab,6,5,B.BD,"my",B.BQ,B.DL,B.By,B.E7,B.By,B.k0,B.BD,B.BQ,B.DL,B.E7,B.k0,B.k0,B.agL,B.k0,B.v,"\u1040"),"nb",A.b_(B.dV,B.zD,B.nV,B.Dr,B.fy,0,3,B.kf,"nb",B.P,B.dW,B.hK,B.CG,B.et,B.hJ,B.kf,B.P,B.dW,B.zV,B.hJ,B.ft,B.a3,B.ft,B.v,q),"ne",A.b_(B.ahD,B.ack,B.fu,B.CO,B.CO,6,5,B.k6,"ne",B.a97,B.yL,B.Dw,B.k6,B.Dw,B.Cr,B.k6,B.abX,B.yL,B.k6,B.Cr,B.Dt,B.a3,B.Dt,B.v,"\u0966"),"nl",A.b_(B.dV,B.acX,B.adr,B.D9,B.aaP,0,3,B.ys,"nl",B.P,B.CS,B.a8p,B.Dp,B.et,B.zi,B.ys,B.P,B.CS,B.Dp,B.zi,B.DH,B.a3,B.DH,B.v,q),"no",A.b_(B.dV,B.zD,B.nV,B.Dr,B.fy,0,3,B.kf,"no",B.P,B.dW,B.hK,B.CG,B.et,B.hJ,B.kf,B.P,B.dW,B.zV,B.hJ,B.ft,B.a3,B.ft,B.v,q),"or",A.b_(B.ac,B.ev,B.a8q,B.aa7,B.by,6,5,B.ka,"or",B.zX,B.Cf,B.zk,B.ka,B.zk,B.yy,B.ka,B.zX,B.Cf,B.ka,B.yy,B.CB,B.aR,B.CB,B.cJ,q),"pa",A.b_(B.aap,B.jY,B.fu,B.adt,B.aaU,6,5,B.Br,"pa",B.B6,B.yU,B.ad3,B.Ee,B.afW,B.BT,B.Br,B.B6,B.yU,B.Ee,B.BT,B.Aq,B.aR,B.Aq,B.cJ,q),"pl",A.b_(B.ac,B.abv,B.fu,B.agv,B.adl,0,3,B.aet,"pl",B.a91,B.a9D,B.aaz,B.zq,B.abf,B.zn,B.agH,B.aeZ,B.ac0,B.zq,B.zn,B.zl,B.a3,B.zl,B.v,q),"ps",A.b_(B.ae1,B.aeQ,B.ag,B.agq,B.agm,5,4,B.zz,"ps",B.adm,B.aD,B.Dq,B.zz,B.Dq,B.kc,B.ab6,B.bi,B.aD,B.aca,B.kc,B.kc,B.yQ,B.kc,B.a96,"\u06f0"),"pt",A.b_(B.ac,B.ah3,B.ag,B.CE,B.kE,6,5,B.k8,"pt",B.P,B.k9,B.AX,B.kd,B.d3,B.DF,B.k8,B.P,B.k9,B.kd,B.DF,B.ku,B.a3,B.ku,B.v,q),"pt_PT",A.b_(B.agx,B.ad2,B.a8U,B.CE,B.kE,6,2,B.k8,"pt_PT",B.P,B.k9,B.k5,B.kd,B.d3,B.B9,B.k8,B.P,B.k9,B.kd,B.B9,B.ku,B.a3,B.ku,B.v,q),"ro",A.b_(B.dV,B.acw,B.cN,B.afI,B.a8r,0,6,B.zC,"ro",B.Au,B.cL,B.ado,B.Bk,B.a8Q,B.CC,B.zC,B.Au,B.cL,B.Bk,B.CC,B.zU,B.a3,B.zU,B.v,q),"ru",A.b_(B.ac,B.ac1,B.cN,B.aei,B.adS,0,3,B.aak,"ru",B.ki,B.Az,B.zm,B.ae3,B.Am,B.AC,B.CX,B.ki,B.Az,B.a8s,B.AC,B.zT,B.a3,B.zT,B.v,q),"si",A.b_(B.a9o,B.a92,B.ag,B.acE,B.afH,0,6,B.Ab,"si",B.yR,B.z_,B.aal,B.agN,B.ah_,B.AJ,B.Ab,B.yR,B.z_,B.a93,B.AJ,B.zH,B.nP,B.zH,B.v,q),"sk",A.b_(B.ac,B.a8K,B.aan,B.aft,B.afp,0,3,B.ahq,"sk",B.dX,B.D3,B.agK,B.Bt,B.aL,B.z5,B.aaf,B.dX,B.D3,B.Bt,B.z5,B.CU,B.jX,B.CU,B.v,q),"sl",A.b_(B.ahn,B.aah,B.fu,B.ahr,B.zM,0,6,B.yM,"sl",B.dX,B.zc,B.ago,B.yT,B.acR,B.BA,B.yM,B.dX,B.zc,B.yT,B.BA,B.Dn,B.a3,B.Dn,B.v,q),"sq",A.b_(B.acS,B.acQ,B.a8R,B.adv,B.a8V,0,6,B.DM,"sq",B.Ad,B.z2,B.agI,B.Ax,B.ah0,B.a9x,B.DM,B.Ad,B.z2,B.Ax,B.agk,B.zs,B.ahj,B.zs,B.v,q),"sr",A.b_(B.ac,B.Dc,B.ag,B.ac7,B.agl,0,6,B.Da,"sr",B.kD,B.Cs,B.abE,B.E_,B.a9P,B.CI,B.Da,B.kD,B.Cs,B.E_,B.CI,B.yG,B.a3,B.yG,B.v,q),"sr_Latn",A.b_(B.ac,B.Dc,B.ag,B.acJ,B.Ag,0,6,B.z3,"sr_Latn",B.dX,B.kC,B.ab_,B.DC,B.aeR,B.D8,B.z3,B.dX,B.kC,B.DC,B.D8,B.zL,B.a3,B.zL,B.v,q),"sv",A.b_(B.afn,B.CF,B.ag,B.ahp,B.fy,0,3,B.BC,"sv",B.P,B.dW,B.aeu,B.CW,B.et,B.E4,B.BC,B.P,B.dW,B.CW,B.E4,B.AE,B.a3,B.AE,B.v,q),"sw",A.b_(B.ac,B.Ar,B.ag,B.adf,B.ace,0,6,B.Bi,"sw",B.P,B.aD,B.DE,B.Bq,B.DE,B.ko,B.Bi,B.P,B.aD,B.Bq,B.ko,B.ko,B.a3,B.ko,B.v,q),"ta",A.b_(B.abi,B.k4,B.ahe,B.ada,B.ah4,6,5,B.Ah,"ta",B.AA,B.D_,B.ahQ,B.E5,B.acx,B.Db,B.Ah,B.AA,B.D_,B.E5,B.Db,B.zK,B.abh,B.zK,B.cJ,q),"te",A.b_(B.ac,B.ahY,B.aaq,B.ac5,B.afs,6,5,B.Cz,"te",B.DJ,B.B2,B.abk,B.Bh,B.acf,B.BR,B.Cz,B.DJ,B.B2,B.Bh,B.BR,B.Ed,B.aR,B.Ed,B.cJ,q),"th",A.b_(B.agD,B.aaB,B.ag,B.aeI,B.a8Y,6,5,B.DG,"th",B.jV,B.zR,B.Ct,B.jV,B.Ct,B.C2,B.DG,B.jV,B.zR,B.jV,B.C2,B.yH,B.ahx,B.yH,B.v,q),"tl",A.b_(B.ac,B.ev,B.Ai,B.c4,B.by,6,5,B.jU,"tl",B.fs,B.dZ,B.D7,B.fs,B.aL,B.dZ,B.jU,B.zJ,B.dZ,B.fs,B.dZ,B.kz,B.aR,B.kz,B.v,q),"tr",A.b_(B.ahE,B.aeF,B.ag,B.ahm,B.a9E,0,6,B.BO,"tr",B.Bm,B.BK,B.ag0,B.yu,B.ab9,B.CN,B.BO,B.Bm,B.BK,B.yu,B.CN,B.DU,B.a3,B.DU,B.v,q),"uk",A.b_(B.afD,B.agE,B.aay,B.aai,B.abP,0,6,B.acL,"uk",B.acz,B.AH,B.zm,B.ahw,B.Am,B.kn,B.ag5,B.abT,B.AH,B.aec,B.kn,B.CZ,B.a3,B.CZ,B.v,q),"ur",A.b_(B.ac,B.afQ,B.ag,B.yA,B.yA,6,5,B.ke,"ur",B.P,B.aD,B.zb,B.ke,B.zb,B.kq,B.ke,B.P,B.aD,B.ke,B.kq,B.kq,B.aR,B.kq,B.v,q),"uz",A.b_(B.adO,B.aed,B.cN,B.agy,B.ahI,0,6,B.aaF,"uz",B.DQ,B.zj,B.adj,B.adN,B.afJ,B.CA,B.adb,B.DQ,B.zj,B.aeS,B.CA,B.BY,B.adi,B.BY,B.v,q),"vi",A.b_(B.ady,B.ac3,B.a8X,B.ai4,B.a8T,0,6,B.aag,"vi",B.bi,B.Be,B.afu,B.abw,B.aL,B.Al,B.a8W,B.bi,B.Be,B.aa8,B.Al,B.A9,B.a3,B.A9,B.v,q),"zh",A.b_(B.nS,B.a9F,B.ag,B.ks,B.ks,6,5,B.B4,"zh",B.bi,B.fz,B.abN,B.bY,B.ahl,B.D0,B.B4,B.bi,B.fz,B.bY,B.D0,B.fB,B.aeN,B.fB,B.v,q),"zh_HK",A.b_(B.nS,B.adB,B.ag,B.ks,B.ks,6,5,B.bY,"zh_HK",B.bi,B.fz,B.o0,B.bY,B.aL,B.kB,B.bY,B.bi,B.fz,B.bY,B.kB,B.fB,B.aaj,B.fB,B.v,q),"zh_TW",A.b_(B.nS,B.a8F,B.ag,B.DV,B.DV,6,5,B.bY,"zh_TW",B.bi,B.fz,B.o0,B.bY,B.o0,B.kB,B.bY,B.bi,B.fz,B.bY,B.kB,B.fB,B.adA,B.fB,B.v,q),"zu",A.b_(B.ac,B.ev,B.ag,B.by,B.by,6,5,B.zw,"zu",B.aeO,B.Du,B.ac9,B.Dk,B.aL,B.DN,B.zw,B.P,B.Du,B.Dk,B.DN,B.AV,B.a3,B.AV,B.v,q)],t.N,t.fs)}) +s($,"c4P","boY",()=>A.bkB(B.zr,t.N)) +s($,"c4T","bp1",()=>A.bkB(B.zr,t.N)) +s($,"c5Y","bDY",()=>new A.aNt(A.I(t.N,A.ah("S?(es?)")))) +s($,"bZW","bAD",()=>new A.aCm(A.a([],A.ah("H")))) +s($,"c52","mO",()=>A.aIG("GoRouter")) +r($,"c0c","bBh",()=>{var q=null +return A.bLN(q,q,B.o_,B.fD,A.fc(q,q,q,q,q,q))}) +s($,"c33","boC",()=>A.bE(":(\\w+)(\\((?:\\\\.|[^\\\\()])+\\))?",!0,!1,!1)) +s($,"c_9","bAN",()=>A.a1C("GoRouteState to GoRouteData expando",A.ah("a2p"))) +s($,"c0q","bBp",()=>A.a1C("GoRouteState to ShellRouteData expando",A.ah("a9k"))) +s($,"c_d","arq",()=>{var q=null,p=t.N +p=new A.aGf(A.cA(q,q,q,p,A.ah("wo<@>")),A.cA(q,q,q,p,t.L0),A.btz(),A.I(t.S,A.ah("NP<@>"))) +p.Nk(new A.a0z(),!0,t.W7) +p.Nk(new A.JJ(A.ah("JJ")),!0,A.ah("BT")) +p.Nk(new A.Yo(),!0,A.ah("IC")) +return p}) +s($,"c_e","bAO",()=>A.btz()) +s($,"bZ3","bYX",()=>A.aLJ(16)) +s($,"c_f","bAP",()=>A.bFh(null)) +s($,"bZc","bAk",()=>A.bE("^[\\w!#%&'*+\\-.^`|~]+$",!0,!1,!1)) +s($,"c2f","bCt",()=>A.bE("^\\d+$",!0,!1,!1)) +s($,"c2g","bCu",()=>A.bE('["\\x00-\\x1F\\x7F]',!0,!1,!1)) +s($,"c5Q","bDW",()=>A.bE('[^()<>@,;:"\\\\/[\\]?={} \\t\\x00-\\x1F\\x7F]+',!0,!1,!1)) +s($,"c31","bD6",()=>A.bE("(?:\\r\\n)?[ \\t]+",!0,!1,!1)) +s($,"c3n","bD8",()=>A.bE('"(?:[^"\\x00-\\x1F\\x7F]|\\\\.)*"',!0,!1,!1)) +s($,"c3m","bD7",()=>A.bE("\\\\(.)",!0,!1,!1)) +s($,"c5c","bDN",()=>A.bE('[()<>@,;:"\\\\/\\[\\]?={} \\t\\x00-\\x1F\\x7F]',!0,!1,!1)) +s($,"c6_","bE_",()=>A.bE("(?:"+$.bD6().a+")*",!0,!1,!1)) +s($,"c4x","bDH",()=>A.b_(B.ac,B.ev,B.cN,B.c4,B.by,6,5,B.aY,"en_US",B.P,B.aD,B.cK,B.dp,B.aL,B.aZ,B.aY,B.P,B.aD,B.dp,B.aZ,B.b_,B.adR,B.b_,B.v,null)) +r($,"c5e","bpa",()=>{var q=",",p="\xa0",o="%",n="0",m="+",l="-",k="E",j="\u2030",i="\u221e",h="NaN",g="#,##0.###",f="#E0",e="#,##0%",d="\xa4#,##0.00",c=".",b="\u200e+",a="\u200e-",a0="\u0644\u064a\u0633\xa0\u0631\u0642\u0645\u064b\u0627",a1="\u200f#,##0.00\xa0\xa4;\u200f-#,##0.00\xa0\xa4",a2="#,##,##0.###",a3="#,##,##0%",a4="\xa4\xa0#,##,##0.00",a5="INR",a6="#,##0.00\xa0\xa4",a7="#,##0\xa0%",a8="EUR",a9="USD",b0="\xa4\xa0#,##0.00",b1="\xa4\xa0#,##0.00;\xa4-#,##0.00",b2="CHF",b3="\xa4#,##,##0.00",b4="\u2212",b5="\xd710^",b6="[#E0]",b7="\u200f#,##0.00\xa0\u200f\xa4;\u200f-#,##0.00\xa0\u200f\xa4",b8="\xa4\xa0#,##0.00;\xa4\xa0-#,##0.00" +return A.am(["af",A.aF(d,g,q,"ZAR",k,p,i,l,"af",h,o,e,j,m,f,n),"am",A.aF(d,g,c,"ETB",k,q,i,l,"am",h,o,e,j,m,f,n),"ar",A.aF(a1,g,c,"EGP",k,q,i,a,"ar",a0,"\u200e%\u200e",e,j,b,f,n),"ar_DZ",A.aF(a1,g,q,"DZD",k,c,i,a,"ar_DZ",a0,"\u200e%\u200e",e,j,b,f,n),"ar_EG",A.aF("\u200f#,##0.00\xa0\xa4",g,"\u066b","EGP","\u0627\u0633","\u066c",i,"\u061c-","ar_EG","\u0644\u064a\u0633\xa0\u0631\u0642\u0645","\u066a\u061c",e,"\u0609","\u061c+",f,"\u0660"),"as",A.aF(a4,a2,c,a5,k,q,i,l,"as",h,o,a3,j,m,f,"\u09e6"),"az",A.aF(a6,g,q,"AZN",k,c,i,l,"az",h,o,e,j,m,f,n),"be",A.aF(a6,g,q,"BYN",k,p,i,l,"be",h,o,a7,j,m,f,n),"bg",A.aF(a6,g,q,"BGN",k,p,i,l,"bg",h,o,e,j,m,f,n),"bm",A.aF(d,g,c,"XOF",k,q,i,l,"bm",h,o,e,j,m,f,n),"bn",A.aF("#,##,##0.00\xa4",a2,c,"BDT",k,q,i,l,"bn",h,o,e,j,m,f,"\u09e6"),"br",A.aF(a6,g,q,a8,k,p,i,l,"br",h,o,a7,j,m,f,n),"bs",A.aF(a6,g,q,"BAM",k,c,i,l,"bs",h,o,a7,j,m,f,n),"ca",A.aF(a6,g,q,a8,k,c,i,l,"ca",h,o,a7,j,m,f,n),"chr",A.aF(d,g,c,a9,k,q,i,l,"chr",h,o,e,j,m,f,n),"cs",A.aF(a6,g,q,"CZK",k,p,i,l,"cs",h,o,a7,j,m,f,n),"cy",A.aF(d,g,c,"GBP",k,q,i,l,"cy",h,o,e,j,m,f,n),"da",A.aF(a6,g,q,"DKK",k,c,i,l,"da",h,o,a7,j,m,f,n),"de",A.aF(a6,g,q,a8,k,c,i,l,"de",h,o,a7,j,m,f,n),"de_AT",A.aF(b0,g,q,a8,k,p,i,l,"de_AT",h,o,a7,j,m,f,n),"de_CH",A.aF(b1,g,c,b2,k,"\u2019",i,l,"de_CH",h,o,e,j,m,f,n),"el",A.aF(a6,g,q,a8,"e",c,i,l,"el",h,o,e,j,m,f,n),"en",A.aF(d,g,c,a9,k,q,i,l,"en",h,o,e,j,m,f,n),"en_AU",A.aF(d,g,c,"AUD","e",q,i,l,"en_AU",h,o,e,j,m,f,n),"en_CA",A.aF(d,g,c,"CAD",k,q,i,l,"en_CA",h,o,e,j,m,f,n),"en_GB",A.aF(d,g,c,"GBP",k,q,i,l,"en_GB",h,o,e,j,m,f,n),"en_IE",A.aF(d,g,c,a8,k,q,i,l,"en_IE",h,o,e,j,m,f,n),"en_IN",A.aF(b3,a2,c,a5,k,q,i,l,"en_IN",h,o,a3,j,m,f,n),"en_MY",A.aF(d,g,c,"MYR",k,q,i,l,"en_MY",h,o,e,j,m,f,n),"en_NZ",A.aF(d,g,c,"NZD",k,q,i,l,"en_NZ",h,o,e,j,m,f,n),"en_SG",A.aF(d,g,c,"SGD",k,q,i,l,"en_SG",h,o,e,j,m,f,n),"en_US",A.aF(d,g,c,a9,k,q,i,l,"en_US",h,o,e,j,m,f,n),"en_ZA",A.aF(d,g,q,"ZAR",k,p,i,l,"en_ZA",h,o,e,j,m,f,n),"es",A.aF(a6,g,q,a8,k,c,i,l,"es",h,o,a7,j,m,f,n),"es_419",A.aF(d,g,c,"MXN",k,q,i,l,"es_419",h,o,a7,j,m,f,n),"es_ES",A.aF(a6,g,q,a8,k,c,i,l,"es_ES",h,o,a7,j,m,f,n),"es_MX",A.aF(d,g,c,"MXN",k,q,i,l,"es_MX",h,o,e,j,m,f,n),"es_US",A.aF(d,g,c,a9,k,q,i,l,"es_US",h,o,a7,j,m,f,n),"et",A.aF(a6,g,q,a8,b5,p,i,b4,"et",h,o,e,j,m,f,n),"eu",A.aF(a6,g,q,a8,k,c,i,b4,"eu",h,o,"%\xa0#,##0",j,m,f,n),"fa",A.aF("\u200e\xa4#,##0.00",g,"\u066b","IRR","\xd7\u06f1\u06f0^","\u066c",i,"\u200e\u2212","fa","\u0646\u0627\u0639\u062f\u062f","\u066a",e,"\u0609",b,f,"\u06f0"),"fi",A.aF(a6,g,q,a8,k,p,i,b4,"fi","ep\xe4luku",o,a7,j,m,f,n),"fil",A.aF(d,g,c,"PHP",k,q,i,l,"fil",h,o,e,j,m,f,n),"fr",A.aF(a6,g,q,a8,k,"\u202f",i,l,"fr",h,o,a7,j,m,f,n),"fr_CA",A.aF(a6,g,q,"CAD",k,p,i,l,"fr_CA",h,o,a7,j,m,f,n),"fr_CH",A.aF(a6,g,q,b2,k,"\u202f",i,l,"fr_CH",h,o,e,j,m,f,n),"fur",A.aF(b0,g,q,a8,k,c,i,l,"fur",h,o,e,j,m,f,n),"ga",A.aF(d,g,c,a8,k,q,i,l,"ga","Nuimh",o,e,j,m,f,n),"gl",A.aF(a6,g,q,a8,k,c,i,l,"gl",h,o,a7,j,m,f,n),"gsw",A.aF(a6,g,c,b2,k,"\u2019",i,b4,"gsw",h,o,a7,j,m,f,n),"gu",A.aF(b3,a2,c,a5,k,q,i,l,"gu",h,o,a3,j,m,b6,n),"haw",A.aF(d,g,c,a9,k,q,i,l,"haw",h,o,e,j,m,f,n),"he",A.aF(b7,g,c,"ILS",k,q,i,a,"he",h,o,e,j,b,f,n),"hi",A.aF(b3,a2,c,a5,k,q,i,l,"hi",h,o,a3,j,m,b6,n),"hr",A.aF(a6,g,q,a8,k,c,i,b4,"hr",h,o,a7,j,m,f,n),"hu",A.aF(a6,g,q,"HUF",k,p,i,l,"hu",h,o,e,j,m,f,n),"hy",A.aF(a6,g,q,"AMD",k,p,i,l,"hy","\u0548\u0579\u0539",o,e,j,m,f,n),"id",A.aF(d,g,q,"IDR",k,c,i,l,"id",h,o,e,j,m,f,n),"in",A.aF(d,g,q,"IDR",k,c,i,l,"in",h,o,e,j,m,f,n),"is",A.aF(a6,g,q,"ISK",k,c,i,l,"is",h,o,e,j,m,f,n),"it",A.aF(a6,g,q,a8,k,c,i,l,"it",h,o,e,j,m,f,n),"it_CH",A.aF(b1,g,c,b2,k,"\u2019",i,l,"it_CH",h,o,e,j,m,f,n),"iw",A.aF(b7,g,c,"ILS",k,q,i,a,"iw",h,o,e,j,b,f,n),"ja",A.aF(d,g,c,"JPY",k,q,i,l,"ja",h,o,e,j,m,f,n),"ka",A.aF(a6,g,q,"GEL",k,p,i,l,"ka","\u10d0\u10e0\xa0\u10d0\u10e0\u10d8\u10e1\xa0\u10e0\u10d8\u10ea\u10ee\u10d5\u10d8",o,e,j,m,f,n),"kk",A.aF(a6,g,q,"KZT",k,p,i,l,"kk","\u0441\u0430\u043d\xa0\u0435\u043c\u0435\u0441",o,e,j,m,f,n),"km",A.aF("#,##0.00\xa4",g,q,"KHR",k,c,i,l,"km",h,o,e,j,m,f,n),"kn",A.aF(d,g,c,a5,k,q,i,l,"kn",h,o,e,j,m,f,n),"ko",A.aF(d,g,c,"KRW",k,q,i,l,"ko",h,o,e,j,m,f,n),"ky",A.aF(a6,g,q,"KGS",k,p,i,l,"ky","\u0441\u0430\u043d\xa0\u044d\u043c\u0435\u0441",o,e,j,m,f,n),"ln",A.aF(a6,g,q,"CDF",k,c,i,l,"ln",h,o,e,j,m,f,n),"lo",A.aF("\xa4#,##0.00;\xa4-#,##0.00",g,q,"LAK",k,c,i,l,"lo","\u0e9a\u0ecd\u0ec8\u200b\u0ec1\u0ea1\u0ec8\u0e99\u200b\u0ec2\u0e95\u200b\u0ec0\u0ea5\u0e81",o,e,j,m,"#",n),"lt",A.aF(a6,g,q,a8,b5,p,i,b4,"lt",h,o,a7,j,m,f,n),"lv",A.aF(a6,g,q,a8,k,p,i,l,"lv","NS",o,e,j,m,f,n),"mg",A.aF(b0,g,c,"MGA",k,q,i,l,"mg",h,o,e,j,m,f,n),"mk",A.aF(a6,g,q,"MKD",k,c,i,l,"mk",h,o,a7,j,m,f,n),"ml",A.aF(d,a2,c,a5,k,q,i,l,"ml",h,o,e,j,m,f,n),"mn",A.aF(b0,g,c,"MNT",k,q,i,l,"mn",h,o,e,j,m,f,n),"mr",A.aF(d,a2,c,a5,k,q,i,l,"mr",h,o,e,j,m,b6,"\u0966"),"ms",A.aF(d,g,c,"MYR",k,q,i,l,"ms",h,o,e,j,m,f,n),"mt",A.aF(d,g,c,a8,k,q,i,l,"mt",h,o,e,j,m,f,n),"my",A.aF(a6,g,c,"MMK",k,q,i,l,"my","\u1002\u100f\u1014\u103a\u1038\u1019\u101f\u102f\u1010\u103a\u101e\u1031\u102c",o,e,j,m,f,"\u1040"),"nb",A.aF(b8,g,q,"NOK",k,p,i,b4,"nb",h,o,a7,j,m,f,n),"ne",A.aF(a4,a2,c,"NPR",k,q,i,l,"ne",h,o,a3,j,m,f,"\u0966"),"nl",A.aF(b8,g,q,a8,k,c,i,l,"nl",h,o,e,j,m,f,n),"no",A.aF(b8,g,q,"NOK",k,p,i,b4,"no",h,o,a7,j,m,f,n),"no_NO",A.aF(b8,g,q,"NOK",k,p,i,b4,"no_NO",h,o,a7,j,m,f,n),"nyn",A.aF(d,g,c,"UGX",k,q,i,l,"nyn",h,o,e,j,m,f,n),"or",A.aF(d,a2,c,a5,k,q,i,l,"or",h,o,e,j,m,f,n),"pa",A.aF(b3,a2,c,a5,k,q,i,l,"pa",h,o,a3,j,m,b6,n),"pl",A.aF(a6,g,q,"PLN",k,p,i,l,"pl",h,o,e,j,m,f,n),"ps",A.aF("\xa4#,##0.00;(\xa4#,##0.00)",g,"\u066b","AFN","\xd7\u06f1\u06f0^","\u066c",i,"\u200e-\u200e","ps",h,"\u066a",e,"\u0609","\u200e+\u200e",f,"\u06f0"),"pt",A.aF(b0,g,q,"BRL",k,c,i,l,"pt",h,o,e,j,m,f,n),"pt_BR",A.aF(b0,g,q,"BRL",k,c,i,l,"pt_BR",h,o,e,j,m,f,n),"pt_PT",A.aF(a6,g,q,a8,k,p,i,l,"pt_PT",h,o,e,j,m,f,n),"ro",A.aF(a6,g,q,"RON",k,c,i,l,"ro",h,o,a7,j,m,f,n),"ru",A.aF(a6,g,q,"RUB",k,p,i,l,"ru","\u043d\u0435\xa0\u0447\u0438\u0441\u043b\u043e",o,a7,j,m,f,n),"si",A.aF(d,g,c,"LKR",k,q,i,l,"si",h,o,e,j,m,"#",n),"sk",A.aF(a6,g,q,a8,"e",p,i,l,"sk",h,o,a7,j,m,f,n),"sl",A.aF(a6,g,q,a8,"e",c,i,b4,"sl",h,o,a7,j,m,f,n),"sq",A.aF(a6,g,q,"ALL",k,p,i,l,"sq",h,o,e,j,m,f,n),"sr",A.aF(a6,g,q,"RSD",k,c,i,l,"sr",h,o,e,j,m,f,n),"sr_Latn",A.aF(a6,g,q,"RSD",k,c,i,l,"sr_Latn",h,o,e,j,m,f,n),"sv",A.aF(a6,g,q,"SEK",b5,p,i,b4,"sv",h,o,a7,j,m,f,n),"sw",A.aF(b0,g,c,"TZS",k,q,i,l,"sw",h,o,e,j,m,f,n),"ta",A.aF(b3,a2,c,a5,k,q,i,l,"ta",h,o,a3,j,m,f,n),"te",A.aF(b3,a2,c,a5,k,q,i,l,"te",h,o,e,j,m,f,n),"th",A.aF(d,g,c,"THB",k,q,i,l,"th",h,o,e,j,m,f,n),"tl",A.aF(d,g,c,"PHP",k,q,i,l,"tl",h,o,e,j,m,f,n),"tr",A.aF(d,g,q,"TRY",k,c,i,l,"tr",h,o,"%#,##0",j,m,f,n),"uk",A.aF(a6,g,q,"UAH","\u0415",p,i,l,"uk",h,o,e,j,m,f,n),"ur",A.aF(d,g,c,"PKR",k,q,i,a,"ur",h,o,e,j,b,f,n),"uz",A.aF(a6,g,q,"UZS",k,p,i,l,"uz","son\xa0emas",o,e,j,m,f,n),"vi",A.aF(a6,g,q,"VND",k,c,i,l,"vi",h,o,e,j,m,f,n),"zh",A.aF(d,g,c,"CNY",k,q,i,l,"zh",h,o,e,j,m,f,n),"zh_CN",A.aF(d,g,c,"CNY",k,q,i,l,"zh_CN",h,o,e,j,m,f,n),"zh_HK",A.aF(d,g,c,"HKD",k,q,i,l,"zh_HK","\u975e\u6578\u503c",o,e,j,m,f,n),"zh_TW",A.aF(d,g,c,"TWD",k,q,i,l,"zh_TW","\u975e\u6578\u503c",o,e,j,m,f,n),"zu",A.aF(d,g,c,"ZAR",k,q,i,l,"zu",h,o,e,j,m,f,n)],t.N,t.zr)}) +r($,"bR4","X8",()=>A.buV("initializeDateFormatting()",$.bDH(),t.fs)) +r($,"bUe","arH",()=>A.buV("initializeDateFormatting()",B.ali,t.GU)) +s($,"c46","biO",()=>48) +s($,"bZw","bAr",()=>A.a([A.bE("^'(?:[^']|'')*'",!0,!1,!1),A.bE("^(?:G+|y+|M+|k+|S+|E+|a+|h+|K+|H+|c+|L+|Q+|d+|D+|m+|s+|v+|z+|Z+)",!0,!1,!1),A.bE("^[^'GyMkSEahKHcLQdDmsvzZ]+",!0,!1,!1)],A.ah("H"))) +s($,"c1n","bBX",()=>A.bE("''",!0,!1,!1)) +s($,"c_H","biA",()=>A.bX2(2,52)) +s($,"c_G","bB_",()=>B.e.eV(A.WS($.biA())/A.WS(10))) +s($,"c2Z","boB",()=>A.WS(10)) +s($,"c3_","bD4",()=>A.WS(10)) +s($,"c5j","bpb",()=>A.am(["en_ISO",A.he(),"af",A.eV(),"am",A.AJ(),"ar",A.bnG(),"ar_DZ",A.bnG(),"ar_EG",A.bnG(),"as",A.AJ(),"az",A.eV(),"be",A.bWM(),"bg",A.eV(),"bm",A.ko(),"bn",A.AJ(),"br",A.bWN(),"bs",A.bhF(),"ca",A.bhG(),"chr",A.eV(),"cs",A.bzm(),"cy",A.bWO(),"da",A.bWP(),"de",A.he(),"de_AT",A.he(),"de_CH",A.he(),"el",A.eV(),"en",A.he(),"en_AU",A.he(),"en_CA",A.he(),"en_GB",A.he(),"en_IE",A.he(),"en_IN",A.he(),"en_MY",A.he(),"en_NZ",A.he(),"en_SG",A.he(),"en_US",A.he(),"en_ZA",A.he(),"es",A.arf(),"es_419",A.arf(),"es_ES",A.arf(),"es_MX",A.arf(),"es_US",A.arf(),"et",A.he(),"eu",A.eV(),"fa",A.AJ(),"fi",A.he(),"fil",A.bzl(),"fr",A.bnH(),"fr_CA",A.bnH(),"fr_CH",A.bnH(),"fur",A.eV(),"ga",A.bWR(),"gl",A.he(),"gsw",A.eV(),"gu",A.AJ(),"haw",A.eV(),"he",A.bzn(),"hi",A.AJ(),"hr",A.bhF(),"hu",A.eV(),"hy",A.bWQ(),"id",A.ko(),"in",A.ko(),"is",A.bWS(),"it",A.bhG(),"it_CH",A.bhG(),"iw",A.bzn(),"ja",A.ko(),"ka",A.eV(),"kk",A.eV(),"km",A.ko(),"kn",A.AJ(),"ko",A.ko(),"ky",A.eV(),"ln",A.bnF(),"lo",A.ko(),"lt",A.bWT(),"lv",A.bWU(),"mg",A.bnF(),"mk",A.bWV(),"ml",A.eV(),"mn",A.eV(),"mr",A.eV(),"ms",A.ko(),"mt",A.bWX(),"my",A.ko(),"nb",A.eV(),"ne",A.eV(),"nl",A.he(),"no",A.eV(),"no_NO",A.eV(),"nyn",A.eV(),"or",A.eV(),"pa",A.bnF(),"pl",A.bWY(),"ps",A.eV(),"pt",A.bzo(),"pt_BR",A.bzo(),"pt_PT",A.bhG(),"ro",A.bWW(),"ru",A.bzp(),"si",A.bWZ(),"sk",A.bzm(),"sl",A.bX_(),"sq",A.eV(),"sr",A.bhF(),"sr_Latn",A.bhF(),"sv",A.he(),"sw",A.he(),"ta",A.eV(),"te",A.eV(),"th",A.ko(),"tl",A.bzl(),"tr",A.eV(),"uk",A.bzp(),"ur",A.he(),"uz",A.eV(),"vi",A.ko(),"zh",A.ko(),"zh_CN",A.ko(),"zh_HK",A.ko(),"zh_TW",A.ko(),"zu",A.AJ(),"default",A.ko()],t.N,A.ah("nq()"))) +s($,"c_v","biy",()=>A.aIG("")) +s($,"c_F","bAZ",()=>new A.C()) +s($,"c_J","bo7",()=>new A.C()) +r($,"bKA","bB0",()=>{var q=new A.aKu() +q.HU($.bo7()) +return q}) +s($,"c61","bE0",()=>A.bjL(null,$.X6())) +s($,"c4i","HX",()=>new A.Zr($.boc(),null)) +s($,"c0B","arr",()=>new A.aNJ(A.bE("/",!0,!1,!1),A.bE("[^/]$",!0,!1,!1),A.bE("^/",!0,!1,!1))) +s($,"c0D","X6",()=>new A.b0Q(A.bE("[/\\\\]",!0,!1,!1),A.bE("[^/\\\\]$",!0,!1,!1),A.bE("^(\\\\\\\\[^\\\\]+\\\\[^\\\\/]+|[a-zA-Z]:[/\\\\])",!0,!1,!1),A.bE("^[/\\\\](?![/\\\\])",!0,!1,!1))) +s($,"c0C","X5",()=>new A.b0w(A.bE("/",!0,!1,!1),A.bE("(^[a-zA-Z][-+.a-zA-Z\\d]*://|[^/])$",!0,!1,!1),A.bE("[a-zA-Z][-+.a-zA-Z\\d]*://[^/]*",!0,!1,!1),A.bE("^/",!0,!1,!1))) +s($,"c0A","boc",()=>A.bMR()) +s($,"c11","bBN",()=>A.bnY().navigator.mediaDevices) +s($,"c12","bBO",()=>{var q=A.bnY().navigator.geolocation +q.toString +return q}) +s($,"c13","bBP",()=>A.bnY().navigator.permissions) +s($,"c_K","bB1",()=>new A.C()) +s($,"c_L","AL",()=>A.a1C(null,t.K)) +s($,"c5L","bDU",()=>A.bE("^(\\d+)\\.(\\d+)\\.(\\d+)(-([0-9A-Za-z-]+(\\.[0-9A-Za-z-]+)*))?(\\+([0-9A-Za-z-]+(\\.[0-9A-Za-z-]+)*))?",!0,!1,!1)) +s($,"c4h","bDD",()=>A.bE($.bDU().a+"$",!0,!1,!1)) +s($,"c0p","bob",()=>new A.C()) +r($,"bMl","biF",()=>{var q=new A.aKv() +q.HU($.bob()) +return q}) +s($,"c3M","bDo",()=>new A.C()) +s($,"c40","bDA",()=>A.bE("^#\\d+\\s+(\\S.*) \\((.+?)((?::\\d+){0,2})\\)$",!0,!1,!1)) +s($,"c3W","bDv",()=>A.bE("^\\s*at (?:(\\S.*?)(?: \\[as [^\\]]+\\])? \\((.*)\\)|(.*))$",!0,!1,!1)) +s($,"c4_","bDz",()=>A.bE("^(.*?):(\\d+)(?::(\\d+))?$|native$",!0,!1,!1)) +s($,"c3V","bDu",()=>A.bE("^eval at (?:\\S.*?) \\((.*)\\)(?:, .*?:\\d+:\\d+)?$",!0,!1,!1)) +s($,"c2j","bCw",()=>A.bE("(\\S+)@(\\S+) line (\\d+) >.* (Function|eval):\\d+:\\d+",!0,!1,!1)) +s($,"c2l","bCy",()=>A.bE("^(?:([^@(/]*)(?:\\(.*\\))?((?:/[^/]*)*)(?:\\(.*\\))?@)?(.*?):(\\d*)(?::(\\d*))?$",!0,!1,!1)) +s($,"c2o","bCC",()=>A.bE("^(\\S+)(?: (\\d+)(?::(\\d+))?)?\\s+([^\\d].*)$",!0,!1,!1)) +s($,"c22","bCl",()=>A.bE("<(|[^>]+)_async_body>",!0,!1,!1)) +s($,"c2r","bCF",()=>A.bE("^\\.",!0,!1,!1)) +s($,"c_3","bAI",()=>A.bE("^[a-zA-Z][-+.a-zA-Z\\d]*://",!0,!1,!1)) +s($,"c_4","bAJ",()=>A.bE("^([a-zA-Z]:[\\\\/]|\\\\\\\\)",!0,!1,!1)) +s($,"c3Y","bDx",()=>A.bE("\\n ?at ",!0,!1,!1)) +s($,"c3Z","bDy",()=>A.bE(" ?at ",!0,!1,!1)) +s($,"c2k","bCx",()=>A.bE("@\\S+ line \\d+ >.* (Function|eval):\\d+:\\d+",!0,!1,!1)) +s($,"c2m","bCz",()=>A.bE("^(([.0-9A-Za-z_$/<]|\\(.*\\))*@)?[^\\s]*:\\d*$",!0,!0,!1)) +s($,"c2p","bCD",()=>A.bE("^[^\\s<][^\\s]*( \\d+(:\\d+)?)?[ \\t]+[^\\s]+$",!0,!0,!1)) +s($,"c5V","bpl",()=>A.bE("^\\n?$",!0,!0,!1)) +s($,"c_x","bAX",()=>{var q,p,o=A.I(t.N,A.ah("m5")) +for(q=0;q<7;++q){p=B.aaZ[q] +o.n(0,p.d,p)}return o}) +s($,"c4V","lR",()=>{var q,p,o,n=A.I(t.N,A.ah("D2")) +for(q=0;q<65;++q){p=B.aho[q] +o=p.i(0,"code") +if(o==null)o="other" +n.n(0,o,A.bOk(p.i(0,"code"),p.i(0,"name"),p.i(0,"nativeName")))}return n}) +s($,"c_D","X4",()=>{var q,p,o,n,m=A.bzZ(B.yf),l=t.s +m=A.a6h(B.nw,A.a([A.bis(B.yf)],l),m,B.a5z,new A.aLM()) +q=A.bAf(B.mo) +q=A.a6h(B.xI,A.a([A.bAg(B.mo)],l),q,B.xC,new A.aLN()) +p=A.bzO(B.mj) +p=A.a6h(B.xE,A.a([A.bzP(B.mj)],l),p,B.a5B,new A.aLO()) +o=A.bzS(B.mk) +o=A.a6h(B.a64,A.a([A.bzT(B.mk)],l),o,B.a5A,new A.aLP()) +n=A.bA2(B.ml) +return A.a([m,q,p,o,A.a6h(B.a6f,A.a([A.bA3(B.ml),A.bA9(B.r_)],l),n,B.a5F,new A.aLQ())],A.ah("H"))}) +s($,"c42","arE",()=>{var q=null +return A.fi(A.bT9(),q,q,q,q,"aboutRepositoryProvider",t.JC)}) +s($,"c34","AM",()=>A.aa(u.o)) +s($,"c35","arA",()=>A.aa(u.o)) +s($,"c41","boL",()=>{var q=null +return A.atu(A.bT7(),q,q,q,q,"aboutProvider",t.ly)}) +s($,"c5f","arL",()=>{var q=null +return A.fi(A.bT8(),q,q,q,q,"packageInfoProvider",t.A9)}) +s($,"c4F","biT",()=>{var q=null +return A.fi(A.bUX(),q,q,q,q,"extensionRepositoryProvider",t.FT)}) +s($,"c5K","AP",()=>{var q=null +return A.fi(A.bYh(),q,q,q,q,"sourceRepositoryProvider",t.v4)}) +s($,"c36","pV",()=>A.aa(u.o)) +s($,"c3d","biI",()=>A.aa(u.o)) +s($,"c3e","arz",()=>A.aa(u.o)) +s($,"c3f","arC",()=>A.aa(u.o)) +s($,"c3g","biK",()=>A.aa(u.o)) +s($,"c3h","w3",()=>A.aa(u.o)) +s($,"c3i","biH",()=>A.aa(u.o)) +s($,"c4D","arJ",()=>{var q=null +return A.atu(A.bUS(),q,q,q,q,"extensionProvider",t.q6)}) +s($,"c4C","boR",()=>{var q=null +return A.fi(A.bUU(),q,q,q,q,"extensionMapProvider",t.yG)}) +s($,"c4y","bDI",()=>{var q=null +return A.fi(A.bUT(),q,q,q,q,"extensionFilterLangListProvider",t.yp)}) +s($,"c4B","bDK",()=>{var q=null +return A.fi(A.bUV(),q,q,q,q,"extensionMapFilteredProvider",t.yG)}) +s($,"c4A","bDJ",()=>{var q=null +return A.fi(A.bUW(),q,q,q,q,"extensionMapFilteredAndQueriedProvider",t.yG)}) +s($,"c4z","arI",()=>{var q=null +return A.cV(A.bUQ(),q,q,q,q,"extensionLanguageFilterProvider",t.TO,t.Xb)}) +s($,"c4E","biS",()=>{var q=null +return A.cV(A.bUR(),q,q,q,q,"extensionQueryProvider",t.ct,t.v)}) +s($,"c5H","bj5",()=>{var q=null +return A.atu(A.bYc(),q,q,q,q,"sourceListProvider",t.s5)}) +s($,"c5J","bpj",()=>{var q=null +return A.fi(A.bYd(),q,q,q,q,"sourceMapProvider",t.nS)}) +s($,"c5I","bj6",()=>{var q=null +return A.fi(A.bYe(),q,q,q,q,"sourceMapFilteredProvider",t.z1)}) +s($,"c5E","bpi",()=>{var q=null +return A.cV(A.bY9(),q,q,q,q,"sourceFilterLangMapProvider",t.u8,t.Yl)}) +s($,"c5F","Xd",()=>{var q=null +return A.cV(A.bYa(),q,q,q,q,"sourceLanguageFilterProvider",t.EH,t.Xb)}) +s($,"c5G","arO",()=>{var q=null +return A.cV(A.bYb(),q,q,q,q,"sourceLastUsedProvider",t.KP,t.v)}) +s($,"c5D","bj4",()=>{var q=null +return A.cV(A.bYf(),q,q,q,q,"sourceDisplayModeProvider",t.bA,t.CE)}) +s($,"c4e","Xa",()=>{var q=null +return A.fi(A.bTD(),q,q,q,q,"categoryRepositoryProvider",t.ad)}) +s($,"c3j","HW",()=>A.aa(u.o)) +s($,"c4d","kr",()=>{var q=null +return A.bFd(A.bUG(),q,q,q,q,"categoryControllerProvider",t.PY,t.IL)}) +s($,"c51","biY",()=>{var q=null +return A.cV(A.bW8(),q,q,q,q,"libraryQueryProvider",t.iG,t.v)}) +s($,"c4Y","bp4",()=>{var q=null +return A.cV(A.bW4(),q,q,q,q,"libraryMangaFilterDownloadedProvider",t.Ls,t.u)}) +s($,"c4Z","bp5",()=>{var q=null +return A.cV(A.bW5(),q,q,q,q,"libraryMangaFilterUnreadProvider",t.Ah,t.u)}) +s($,"c4X","bp3",()=>{var q=null +return A.cV(A.bW3(),q,q,q,q,"libraryMangaFilterCompletedProvider",t.tF,t.u)}) +s($,"c50","biX",()=>{var q=null +return A.cV(A.bW7(),q,q,q,q,"libraryMangaSortProvider",t.KZ,t.aU)}) +s($,"c5_","biW",()=>{var q=null +return A.cV(A.bW6(),q,q,q,q,"libraryMangaSortDirectionProvider",t.O7,t.u)}) +s($,"c4W","biV",()=>{var q=null +return A.cV(A.bW2(),q,q,q,q,"libraryDisplayModeProvider",t.XH,t.CE)}) +s($,"c4u","og",()=>{var q=null +return A.fi(A.bUD(),q,q,q,q,"downloadsRepositoryProvider",t.vm)}) +s($,"c4t","boQ",()=>{var q=null +return A.fi(A.bUC(),q,q,q,q,"downloadsMapProvider",t.yy)}) +s($,"c4s","bDF",()=>{var q=null +return A.fi(A.bUB(),q,q,q,q,"downloadsChapterIdsProvider",t.Cm)}) +s($,"c4w","bDG",()=>{var q=null +return A.fi(A.bUE(),q,q,q,q,"downloadsStatusProvider",t.TX)}) +s($,"c5B","bDT",()=>{var q=null +return A.fi(A.bUF(),q,q,q,q,"showDownloadsFABProvider",t.y)}) +s($,"c4v","biR",()=>A.bpX(A.bUA(),null,null,null,"downloadsSocketProvider",A.ah("x0"),t.BP)) +s($,"c53","fv",()=>{var q=null +return A.fi(A.bWi(),q,q,q,q,"mangaBookRepositoryProvider",t.W)}) +s($,"c5T","I0",()=>{var q=null +return A.fi(A.bYT(),q,q,q,q,"updatesRepositoryProvider",t.BA)}) +s($,"c5S","bj8",()=>{var q=null +return A.atu(A.bYS(),q,q,q,q,"updateSummaryProvider",t.YO)}) +s($,"c5U","bj9",()=>A.bpX(A.bYR(),null,null,null,"updatesSocketProvider",A.ah("zW"),t.S5)) +s($,"c3k","kq",()=>A.aa(u.o)) +s($,"c37","AN",()=>A.aa(u.o)) +s($,"c38","biJ",()=>A.aa(u.o)) +s($,"c39","w4",()=>A.aa(u.o)) +s($,"c3a","dL",()=>A.aa(u.o)) +s($,"c3b","X9",()=>A.aa(u.o)) +s($,"c58","biZ",()=>{var q=null +return A.cV(A.bWp(),q,q,q,q,"mangaChapterSortProvider",t.LO,t.cu)}) +s($,"c57","Xc",()=>{var q=null +return A.cV(A.bWo(),q,q,q,q,"mangaChapterSortDirectionProvider",t.Sr,t.u)}) +s($,"c55","bp7",()=>{var q=null +return A.cV(A.bWm(),q,q,q,q,"mangaChapterFilterDownloadedProvider",t.Y3,t.u)}) +s($,"c56","bp8",()=>{var q=null +return A.cV(A.bWn(),q,q,q,q,"mangaChapterFilterUnreadProvider",t.eE,t.u)}) +s($,"c54","bp6",()=>{var q=null +return A.cV(A.bWl(),q,q,q,q,"mangaChapterFilterBookmarkedProvider",t.xN,t.u)}) +s($,"c5m","bpc",()=>{var q=null +return A.cV(A.bX7(),q,q,q,q,"quickSearchQueryProvider",t.TF,t.v)}) +s($,"c48","bDB",()=>{var q=null +return A.fi(A.bTq(),q,q,q,q,"backupRepositoryProvider",t.nc)}) +s($,"c3c","arB",()=>A.aa(u.o)) +s($,"c44","biN",()=>{var q=null +return A.cV(A.bTe(),q,q,q,q,"appSchemeProvider",t.m2,t.GL)}) +s($,"c4I","arK",()=>{var q=null +return A.cV(A.bVx(),q,q,q,q,"gridMinWidthProvider",t.XW,t.PM)}) +s($,"c4L","boU",()=>{var q=null +return A.cV(A.bVY(),q,q,q,q,"isTrueBlackProvider",t.GG,t.u)}) +s($,"c5C","bph",()=>{var q=null +return A.cV(A.bY2(),q,q,q,q,"showNSFWProvider",t.of,t.u)}) +s($,"c5n","bpd",()=>{var q=null +return A.cV(A.bX8(),q,q,q,q,"quickSearchToggleProvider",t.P0,t.u)}) +s($,"c5o","bpe",()=>{var q=null +return A.cV(A.bXb(),q,q,q,q,"readerInitialOverlayProvider",t.NF,t.u)}) +s($,"c4K","biU",()=>{var q=null +return A.cV(A.bXc(),q,q,q,q,"invertTapProvider",t.tA,t.u)}) +s($,"c5p","bpf",()=>{var q=null +return A.cV(A.bXd(),q,q,q,q,"readerMagnifierSizeKeyProvider",t.pf,t.PM)}) +s($,"c5q","bj1",()=>{var q=null +return A.cV(A.bXe(),q,q,q,q,"readerModeKeyProvider",t.jC,t.yZ)}) +s($,"c5r","arM",()=>{var q=null +return A.cV(A.bXf(),q,q,q,q,"readerNavigationLayoutKeyProvider",t.j1,t.dr)}) +s($,"c5s","bpg",()=>{var q=null +return A.cV(A.bXg(),q,q,q,q,"readerPaddingKeyProvider",t.WJ,t.PM)}) +s($,"c5g","bDO",()=>{var q=null +return A.cV(A.bXh(),q,q,q,q,"pinchToZoomProvider",A.ah("yx"),t.u)}) +s($,"c5t","bj2",()=>{var q=null +return A.cV(A.bXi(),q,q,q,q,"readerScrollAnimationProvider",t.sx,t.u)}) +s($,"c5M","bpk",()=>{var q=null +return A.cV(A.bXj(),q,q,q,q,"swipeChapterToggleProvider",t.ou,t.u)}) +s($,"c5W","bDX",()=>{var q=null +return A.cV(A.bXk(),q,q,q,q,"volumeTapInvertProvider",A.ah("zZ"),t.u)}) +s($,"c5X","bpm",()=>{var q=null +return A.cV(A.bXl(),q,q,q,q,"volumeTapProvider",A.ah("zY"),t.u)}) +s($,"c4H","boS",()=>A.aFb(null,A.ah("KJ"))) +s($,"c4k","HY",()=>{var q=null +return A.cV(A.bUc(),q,q,q,q,"credentialsProvider",t.W8,t.v)}) +s($,"c45","arF",()=>{var q=null +return A.cV(A.bTd(),q,q,q,q,"appThemeModeProvider",t.XJ,t.YX)}) +s($,"c5x","AO",()=>{var q=null +return A.cV(A.bXW(),q,q,q,q,"serverPortProvider",t.Ev,t.bo)}) +s($,"c5y","HZ",()=>{var q=null +return A.cV(A.bXV(),q,q,q,q,"serverPortToggleProvider",t.Qm,t.u)}) +s($,"c5z","I_",()=>{var q=null +return A.cV(A.bXX(),q,q,q,q,"serverUrlProvider",t.Tb,t.v)}) +s($,"c4q","w6",()=>{var q=null +return A.fi(A.bVu(),q,q,q,q,"dioClientKeyProvider",t.w6)}) +s($,"c5A","bj3",()=>{var q=null +return A.fi(A.bVw(),q,q,q,q,"sharedPreferencesProvider",t.cZ)}) +s($,"c43","boM",()=>{var q=null +return A.fi(A.bVt(),q,q,q,q,"appDirectoryProvider",t.je)}) +s($,"c4J","boT",()=>{var q=null +return A.fi(A.bVv(),q,q,q,q,"hiveCacheStoreProvider",t.tR)}) +s($,"c47","w5",()=>{var q=null +return A.cV(A.bVr(),q,q,q,q,"authTypeKeyProvider",t.ca,t.Wr)}) +s($,"c4U","bp2",()=>{var q=null +return A.cV(A.bVs(),q,q,q,q,"l10nProvider",t.CV,t.x5)}) +s($,"c3q","bD9",()=>A.aFb("root",t.uK)) +s($,"c3l","j4",()=>A.aFb("Quick Open",t.uK)) +s($,"c3u","bDb",()=>A.aFb("shell",t.uK)) +s($,"c_W","bB4",()=>$.j4()) +s($,"c0r","bBq",()=>$.bDb()) +s($,"c_w","bAW",()=>$.j4()) +s($,"c0U","bBH",()=>$.j4()) +s($,"c_8","bAM",()=>$.j4()) +s($,"c0t","bBr",()=>$.j4()) +s($,"c0u","bBs",()=>$.j4()) +s($,"bZ1","bAh",()=>$.j4()) +s($,"c01","bB8",()=>$.j4()) +s($,"c0n","bBo",()=>$.j4()) +s($,"c_t","bAV",()=>$.j4()) +s($,"bZP","bAB",()=>$.j4()) +s($,"c0m","bBn",()=>$.j4()) +s($,"c02","bB9",()=>$.j4()) +s($,"bZ8","bAi",()=>$.j4()) +s($,"c_7","bAL",()=>$.j4()) +s($,"bZd","bAl",()=>$.j4()) +s($,"bZb","bAj",()=>$.j4()) +s($,"c5v","bDR",()=>{var q=null +return A.fi(A.bXO(),q,q,q,q,"routerConfigProvider",t.aq)}) +s($,"c5b","bDM",()=>{var q=null +return A.fi(A.bWz(),q,q,q,q,"networkModuleProvider",t.lm)}) +s($,"c4r","biQ",()=>{var q=null +return A.cV(A.bWj(),q,q,q,q,"downloadedBadgeProvider",t.Pj,t.u)}) +s($,"c5R","bj7",()=>{var q=null +return A.cV(A.bWk(),q,q,q,q,"unreadBadgeProvider",t.EI,t.u)}) +s($,"c0V","bof",()=>new A.C()) +r($,"bNS","bBI",()=>{var q=new A.aKw() +q.HU($.bof()) +return q}) +s($,"c0Y","bBL",()=>{var q,p=J.oL(256,t.N) +for(q=0;q<256;++q)p[q]=B.c.eP(B.f.of(q,16),2,"0") +return p}) +s($,"c_A","bAY",()=>A.bLk(null))})();(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.CT,AnimationEffectReadOnly:J.k,AnimationEffectTiming:J.k,AnimationEffectTimingReadOnly:J.k,AnimationTimeline:J.k,AnimationWorkletGlobalScope:J.k,AuthenticatorAssertionResponse:J.k,AuthenticatorAttestationResponse:J.k,AuthenticatorResponse:J.k,BackgroundFetchFetch:J.k,BackgroundFetchManager:J.k,BackgroundFetchSettledFetch:J.k,BarProp:J.k,BarcodeDetector:J.k,BluetoothRemoteGATTDescriptor:J.k,Body:J.k,BudgetState:J.k,CacheStorage:J.k,CanvasGradient:J.k,CanvasPattern:J.k,CanvasRenderingContext2D:J.k,Client:J.k,Clients:J.k,CookieStore:J.k,Coordinates:J.k,Credential:J.k,CredentialUserData:J.k,CredentialsContainer:J.k,Crypto:J.k,CryptoKey:J.k,CSS:J.k,CSSVariableReferenceValue:J.k,CustomElementRegistry:J.k,DataTransfer:J.k,DataTransferItem:J.k,DeprecatedStorageInfo:J.k,DeprecatedStorageQuota:J.k,DeprecationReport:J.k,DetectedBarcode:J.k,DetectedFace:J.k,DetectedText:J.k,DeviceAcceleration:J.k,DeviceRotationRate:J.k,DirectoryEntry:J.k,webkitFileSystemDirectoryEntry:J.k,FileSystemDirectoryEntry:J.k,DirectoryReader:J.k,WebKitDirectoryReader:J.k,webkitFileSystemDirectoryReader:J.k,FileSystemDirectoryReader:J.k,DocumentOrShadowRoot:J.k,DocumentTimeline:J.k,DOMError:J.k,DOMImplementation:J.k,Iterator:J.k,DOMMatrix:J.k,DOMMatrixReadOnly:J.k,DOMParser:J.k,DOMPoint:J.k,DOMPointReadOnly:J.k,DOMQuad:J.k,DOMStringMap:J.k,Entry:J.k,webkitFileSystemEntry:J.k,FileSystemEntry:J.k,External:J.k,FaceDetector:J.k,FederatedCredential:J.k,FileEntry:J.k,webkitFileSystemFileEntry:J.k,FileSystemFileEntry:J.k,DOMFileSystem:J.k,WebKitFileSystem:J.k,webkitFileSystem:J.k,FileSystem:J.k,FontFace:J.k,FontFaceSource:J.k,FormData:J.k,GamepadButton:J.k,GamepadPose:J.k,Geolocation:J.k,Position:J.k,GeolocationPosition:J.k,Headers:J.k,HTMLHyperlinkElementUtils:J.k,IdleDeadline:J.k,ImageBitmap:J.k,ImageBitmapRenderingContext:J.k,ImageCapture:J.k,InputDeviceCapabilities:J.k,IntersectionObserver:J.k,IntersectionObserverEntry:J.k,InterventionReport:J.k,KeyframeEffect:J.k,KeyframeEffectReadOnly:J.k,MediaCapabilities:J.k,MediaCapabilitiesInfo:J.k,MediaDeviceInfo:J.k,MediaError:J.k,MediaKeyStatusMap:J.k,MediaKeySystemAccess:J.k,MediaKeys:J.k,MediaKeysPolicy:J.k,MediaMetadata:J.k,MediaSession:J.k,MediaSettingsRange:J.k,MemoryInfo:J.k,MessageChannel:J.k,Metadata:J.k,MutationObserver:J.k,WebKitMutationObserver:J.k,MutationRecord:J.k,NavigationPreloadManager:J.k,Navigator:J.k,NavigatorAutomationInformation:J.k,NavigatorConcurrentHardware:J.k,NavigatorCookies:J.k,NavigatorUserMediaError:J.k,NodeFilter:J.k,NodeIterator:J.k,NonDocumentTypeChildNode:J.k,NonElementParentNode:J.k,NoncedElement:J.k,OffscreenCanvasRenderingContext2D:J.k,OverconstrainedError:J.k,PaintRenderingContext2D:J.k,PaintSize:J.k,PaintWorkletGlobalScope:J.k,PasswordCredential:J.k,Path2D:J.k,PaymentAddress:J.k,PaymentInstruments:J.k,PaymentManager:J.k,PaymentResponse:J.k,PerformanceEntry:J.k,PerformanceLongTaskTiming:J.k,PerformanceMark:J.k,PerformanceMeasure:J.k,PerformanceNavigation:J.k,PerformanceNavigationTiming:J.k,PerformanceObserver:J.k,PerformanceObserverEntryList:J.k,PerformancePaintTiming:J.k,PerformanceResourceTiming:J.k,PerformanceServerTiming:J.k,PerformanceTiming:J.k,Permissions:J.k,PhotoCapabilities:J.k,PositionError:J.k,GeolocationPositionError:J.k,Presentation:J.k,PresentationReceiver:J.k,PublicKeyCredential:J.k,PushManager:J.k,PushMessageData:J.k,PushSubscription:J.k,PushSubscriptionOptions:J.k,Range:J.k,RelatedApplication:J.k,ReportBody:J.k,ReportingObserver:J.k,ResizeObserver:J.k,ResizeObserverEntry:J.k,RTCCertificate:J.k,RTCIceCandidate:J.k,mozRTCIceCandidate:J.k,RTCLegacyStatsReport:J.k,RTCRtpContributingSource:J.k,RTCRtpReceiver:J.k,RTCRtpSender:J.k,RTCSessionDescription:J.k,mozRTCSessionDescription:J.k,RTCStatsResponse:J.k,Screen:J.k,ScrollState:J.k,ScrollTimeline:J.k,Selection:J.k,SpeechRecognitionAlternative:J.k,SpeechSynthesisVoice:J.k,StaticRange:J.k,StorageManager:J.k,StyleMedia:J.k,StylePropertyMap:J.k,StylePropertyMapReadonly:J.k,SyncManager:J.k,TaskAttributionTiming:J.k,TextDetector:J.k,TextMetrics:J.k,TrackDefault:J.k,TreeWalker:J.k,TrustedHTML:J.k,TrustedScriptURL:J.k,TrustedURL:J.k,UnderlyingSourceBase:J.k,URLSearchParams:J.k,VRCoordinateSystem:J.k,VRDisplayCapabilities:J.k,VREyeParameters:J.k,VRFrameData:J.k,VRFrameOfReference:J.k,VRPose:J.k,VRStageBounds:J.k,VRStageBoundsPoint:J.k,VRStageParameters:J.k,ValidityState:J.k,VideoPlaybackQuality:J.k,VideoTrack:J.k,VTTRegion:J.k,WindowClient:J.k,WorkletAnimation:J.k,WorkletGlobalScope:J.k,XPathEvaluator:J.k,XPathExpression:J.k,XPathNSResolver:J.k,XPathResult:J.k,XMLSerializer:J.k,XSLTProcessor:J.k,Bluetooth:J.k,BluetoothCharacteristicProperties:J.k,BluetoothRemoteGATTServer:J.k,BluetoothRemoteGATTService:J.k,BluetoothUUID:J.k,BudgetService:J.k,Cache:J.k,DOMFileSystemSync:J.k,DirectoryEntrySync:J.k,DirectoryReaderSync:J.k,EntrySync:J.k,FileEntrySync:J.k,FileReaderSync:J.k,FileWriterSync:J.k,HTMLAllCollection:J.k,Mojo:J.k,MojoHandle:J.k,MojoWatcher:J.k,NFC:J.k,PagePopupController:J.k,Report:J.k,Request:J.k,Response:J.k,SubtleCrypto:J.k,USBAlternateInterface:J.k,USBConfiguration:J.k,USBDevice:J.k,USBEndpoint:J.k,USBInTransferResult:J.k,USBInterface:J.k,USBIsochronousInTransferPacket:J.k,USBIsochronousInTransferResult:J.k,USBIsochronousOutTransferPacket:J.k,USBIsochronousOutTransferResult:J.k,USBOutTransferResult:J.k,WorkerLocation:J.k,WorkerNavigator:J.k,Worklet:J.k,IDBIndex:J.k,IDBObservation:J.k,IDBObserver:J.k,IDBObserverChanges:J.k,SVGAngle:J.k,SVGAnimatedAngle:J.k,SVGAnimatedBoolean:J.k,SVGAnimatedEnumeration:J.k,SVGAnimatedInteger:J.k,SVGAnimatedLength:J.k,SVGAnimatedLengthList:J.k,SVGAnimatedNumber:J.k,SVGAnimatedNumberList:J.k,SVGAnimatedPreserveAspectRatio:J.k,SVGAnimatedRect:J.k,SVGAnimatedString:J.k,SVGAnimatedTransformList:J.k,SVGMatrix:J.k,SVGPoint:J.k,SVGPreserveAspectRatio:J.k,SVGRect:J.k,SVGUnitTypes:J.k,AudioListener:J.k,AudioParam:J.k,AudioTrack:J.k,AudioWorkletGlobalScope:J.k,AudioWorkletProcessor:J.k,PeriodicWave:J.k,WebGLActiveInfo:J.k,ANGLEInstancedArrays:J.k,ANGLE_instanced_arrays:J.k,WebGLBuffer:J.k,WebGLCanvas:J.k,WebGLColorBufferFloat:J.k,WebGLCompressedTextureASTC:J.k,WebGLCompressedTextureATC:J.k,WEBGL_compressed_texture_atc:J.k,WebGLCompressedTextureETC1:J.k,WEBGL_compressed_texture_etc1:J.k,WebGLCompressedTextureETC:J.k,WebGLCompressedTexturePVRTC:J.k,WEBGL_compressed_texture_pvrtc:J.k,WebGLCompressedTextureS3TC:J.k,WEBGL_compressed_texture_s3tc:J.k,WebGLCompressedTextureS3TCsRGB:J.k,WebGLDebugRendererInfo:J.k,WEBGL_debug_renderer_info:J.k,WebGLDebugShaders:J.k,WEBGL_debug_shaders:J.k,WebGLDepthTexture:J.k,WEBGL_depth_texture:J.k,WebGLDrawBuffers:J.k,WEBGL_draw_buffers:J.k,EXTsRGB:J.k,EXT_sRGB:J.k,EXTBlendMinMax:J.k,EXT_blend_minmax:J.k,EXTColorBufferFloat:J.k,EXTColorBufferHalfFloat:J.k,EXTDisjointTimerQuery:J.k,EXTDisjointTimerQueryWebGL2:J.k,EXTFragDepth:J.k,EXT_frag_depth:J.k,EXTShaderTextureLOD:J.k,EXT_shader_texture_lod:J.k,EXTTextureFilterAnisotropic:J.k,EXT_texture_filter_anisotropic:J.k,WebGLFramebuffer:J.k,WebGLGetBufferSubDataAsync:J.k,WebGLLoseContext:J.k,WebGLExtensionLoseContext:J.k,WEBGL_lose_context:J.k,OESElementIndexUint:J.k,OES_element_index_uint:J.k,OESStandardDerivatives:J.k,OES_standard_derivatives:J.k,OESTextureFloat:J.k,OES_texture_float:J.k,OESTextureFloatLinear:J.k,OES_texture_float_linear:J.k,OESTextureHalfFloat:J.k,OES_texture_half_float:J.k,OESTextureHalfFloatLinear:J.k,OES_texture_half_float_linear:J.k,OESVertexArrayObject:J.k,OES_vertex_array_object:J.k,WebGLProgram:J.k,WebGLQuery:J.k,WebGLRenderbuffer:J.k,WebGLRenderingContext:J.k,WebGL2RenderingContext:J.k,WebGLSampler:J.k,WebGLShader:J.k,WebGLShaderPrecisionFormat:J.k,WebGLSync:J.k,WebGLTexture:J.k,WebGLTimerQueryEXT:J.k,WebGLTransformFeedback:J.k,WebGLUniformLocation:J.k,WebGLVertexArrayObject:J.k,WebGLVertexArrayObjectOES:J.k,WebGL2RenderingContextBase:J.k,ArrayBuffer:A.yk,ArrayBufferView:A.hm,DataView:A.Mf,Float32Array:A.Mg,Float64Array:A.a6c,Int16Array:A.a6d,Int32Array:A.Mh,Int8Array:A.a6e,Uint16Array:A.a6f,Uint32Array:A.Mi,Uint8ClampedArray:A.Mj,CanvasPixelArray:A.Mj,Uint8Array:A.yl,HTMLAudioElement:A.bc,HTMLBRElement:A.bc,HTMLButtonElement:A.bc,HTMLCanvasElement:A.bc,HTMLContentElement:A.bc,HTMLDListElement:A.bc,HTMLDataElement:A.bc,HTMLDataListElement:A.bc,HTMLDetailsElement:A.bc,HTMLDialogElement:A.bc,HTMLDivElement:A.bc,HTMLEmbedElement:A.bc,HTMLFieldSetElement:A.bc,HTMLHRElement:A.bc,HTMLHeadElement:A.bc,HTMLHeadingElement:A.bc,HTMLHtmlElement:A.bc,HTMLIFrameElement:A.bc,HTMLImageElement:A.bc,HTMLLIElement:A.bc,HTMLLabelElement:A.bc,HTMLLegendElement:A.bc,HTMLMapElement:A.bc,HTMLMediaElement:A.bc,HTMLMenuElement:A.bc,HTMLMetaElement:A.bc,HTMLMeterElement:A.bc,HTMLModElement:A.bc,HTMLOListElement:A.bc,HTMLObjectElement:A.bc,HTMLOptGroupElement:A.bc,HTMLOptionElement:A.bc,HTMLOutputElement:A.bc,HTMLParagraphElement:A.bc,HTMLParamElement:A.bc,HTMLPictureElement:A.bc,HTMLPreElement:A.bc,HTMLProgressElement:A.bc,HTMLQuoteElement:A.bc,HTMLShadowElement:A.bc,HTMLSlotElement:A.bc,HTMLSourceElement:A.bc,HTMLSpanElement:A.bc,HTMLStyleElement:A.bc,HTMLTableCaptionElement:A.bc,HTMLTableCellElement:A.bc,HTMLTableDataCellElement:A.bc,HTMLTableHeaderCellElement:A.bc,HTMLTableColElement:A.bc,HTMLTextAreaElement:A.bc,HTMLTimeElement:A.bc,HTMLTitleElement:A.bc,HTMLTrackElement:A.bc,HTMLUListElement:A.bc,HTMLUnknownElement:A.bc,HTMLVideoElement:A.bc,HTMLDirectoryElement:A.bc,HTMLFontElement:A.bc,HTMLFrameElement:A.bc,HTMLFrameSetElement:A.bc,HTMLMarqueeElement:A.bc,HTMLElement:A.bc,AccessibleNodeList:A.Xm,HTMLAnchorElement:A.Xt,HTMLAreaElement:A.XP,HTMLBaseElement:A.Ba,Blob:A.th,HTMLBodyElement:A.wl,CDATASection:A.oq,CharacterData:A.oq,Comment:A.oq,ProcessingInstruction:A.oq,Text:A.oq,CloseEvent:A.tq,CSSPerspective:A.Zy,CSSCharsetRule:A.dM,CSSConditionRule:A.dM,CSSFontFaceRule:A.dM,CSSGroupingRule:A.dM,CSSImportRule:A.dM,CSSKeyframeRule:A.dM,MozCSSKeyframeRule:A.dM,WebKitCSSKeyframeRule:A.dM,CSSKeyframesRule:A.dM,MozCSSKeyframesRule:A.dM,WebKitCSSKeyframesRule:A.dM,CSSMediaRule:A.dM,CSSNamespaceRule:A.dM,CSSPageRule:A.dM,CSSRule:A.dM,CSSStyleRule:A.dM,CSSSupportsRule:A.dM,CSSViewportRule:A.dM,CSSStyleDeclaration:A.wH,MSStyleCSSProperties:A.wH,CSS2Properties:A.wH,CSSImageValue:A.jH,CSSKeywordValue:A.jH,CSSNumericValue:A.jH,CSSPositionValue:A.jH,CSSResourceValue:A.jH,CSSUnitValue:A.jH,CSSURLImageValue:A.jH,CSSStyleValue:A.jH,CSSMatrixComponent:A.n0,CSSRotation:A.n0,CSSScale:A.n0,CSSSkew:A.n0,CSSTranslation:A.n0,CSSTransformComponent:A.n0,CSSTransformValue:A.Zz,CSSUnparsedValue:A.ZA,DataTransferItemList:A.a0w,Document:A.qc,HTMLDocument:A.qc,XMLDocument:A.qc,DOMException:A.a11,ClientRectList:A.JV,DOMRectList:A.JV,DOMRectReadOnly:A.JW,DOMStringList:A.JX,DOMTokenList:A.a14,MathMLElement:A.cO,Element:A.cO,AbortPaymentEvent:A.b0,AnimationEvent:A.b0,AnimationPlaybackEvent:A.b0,ApplicationCacheErrorEvent:A.b0,BackgroundFetchClickEvent:A.b0,BackgroundFetchEvent:A.b0,BackgroundFetchFailEvent:A.b0,BackgroundFetchedEvent:A.b0,BeforeInstallPromptEvent:A.b0,BeforeUnloadEvent:A.b0,BlobEvent:A.b0,CanMakePaymentEvent:A.b0,ClipboardEvent:A.b0,CompositionEvent:A.b0,CustomEvent:A.b0,DeviceMotionEvent:A.b0,DeviceOrientationEvent:A.b0,ErrorEvent:A.b0,ExtendableEvent:A.b0,ExtendableMessageEvent:A.b0,FetchEvent:A.b0,FocusEvent:A.b0,FontFaceSetLoadEvent:A.b0,ForeignFetchEvent:A.b0,GamepadEvent:A.b0,HashChangeEvent:A.b0,InstallEvent:A.b0,KeyboardEvent:A.b0,MediaEncryptedEvent:A.b0,MediaKeyMessageEvent:A.b0,MediaQueryListEvent:A.b0,MediaStreamEvent:A.b0,MediaStreamTrackEvent:A.b0,MIDIConnectionEvent:A.b0,MIDIMessageEvent:A.b0,MouseEvent:A.b0,DragEvent:A.b0,MutationEvent:A.b0,NotificationEvent:A.b0,PageTransitionEvent:A.b0,PaymentRequestEvent:A.b0,PaymentRequestUpdateEvent:A.b0,PointerEvent:A.b0,PopStateEvent:A.b0,PresentationConnectionAvailableEvent:A.b0,PresentationConnectionCloseEvent:A.b0,PromiseRejectionEvent:A.b0,PushEvent:A.b0,RTCDataChannelEvent:A.b0,RTCDTMFToneChangeEvent:A.b0,RTCPeerConnectionIceEvent:A.b0,RTCTrackEvent:A.b0,SecurityPolicyViolationEvent:A.b0,SensorErrorEvent:A.b0,SpeechRecognitionError:A.b0,SpeechRecognitionEvent:A.b0,SpeechSynthesisEvent:A.b0,StorageEvent:A.b0,SyncEvent:A.b0,TextEvent:A.b0,TouchEvent:A.b0,TrackEvent:A.b0,TransitionEvent:A.b0,WebKitTransitionEvent:A.b0,UIEvent:A.b0,VRDeviceEvent:A.b0,VRDisplayEvent:A.b0,VRSessionEvent:A.b0,WheelEvent:A.b0,MojoInterfaceRequestEvent:A.b0,USBConnectionEvent:A.b0,AudioProcessingEvent:A.b0,OfflineAudioCompletionEvent:A.b0,WebGLContextEvent:A.b0,Event:A.b0,InputEvent:A.b0,SubmitEvent:A.b0,AbsoluteOrientationSensor:A.aL,Accelerometer:A.aL,AccessibleNode:A.aL,AmbientLightSensor:A.aL,Animation:A.aL,ApplicationCache:A.aL,DOMApplicationCache:A.aL,OfflineResourceList:A.aL,BackgroundFetchRegistration:A.aL,BatteryManager:A.aL,BroadcastChannel:A.aL,CanvasCaptureMediaStreamTrack:A.aL,EventSource:A.aL,Gyroscope:A.aL,LinearAccelerationSensor:A.aL,Magnetometer:A.aL,MediaDevices:A.aL,MediaKeySession:A.aL,MediaQueryList:A.aL,MediaRecorder:A.aL,MediaSource:A.aL,MediaStream:A.aL,MediaStreamTrack:A.aL,MIDIAccess:A.aL,MIDIInput:A.aL,MIDIOutput:A.aL,MIDIPort:A.aL,NetworkInformation:A.aL,OffscreenCanvas:A.aL,OrientationSensor:A.aL,PaymentRequest:A.aL,Performance:A.aL,PermissionStatus:A.aL,PresentationAvailability:A.aL,PresentationConnection:A.aL,PresentationConnectionList:A.aL,PresentationRequest:A.aL,RelativeOrientationSensor:A.aL,RemotePlayback:A.aL,RTCDataChannel:A.aL,DataChannel:A.aL,RTCDTMFSender:A.aL,RTCPeerConnection:A.aL,webkitRTCPeerConnection:A.aL,mozRTCPeerConnection:A.aL,ScreenOrientation:A.aL,Sensor:A.aL,ServiceWorker:A.aL,ServiceWorkerContainer:A.aL,ServiceWorkerRegistration:A.aL,SharedWorker:A.aL,SpeechRecognition:A.aL,webkitSpeechRecognition:A.aL,SpeechSynthesis:A.aL,SpeechSynthesisUtterance:A.aL,VR:A.aL,VRDevice:A.aL,VRDisplay:A.aL,VRSession:A.aL,VisualViewport:A.aL,Worker:A.aL,WorkerPerformance:A.aL,BluetoothDevice:A.aL,BluetoothRemoteGATTCharacteristic:A.aL,Clipboard:A.aL,MojoInterfaceInterceptor:A.aL,USB:A.aL,IDBOpenDBRequest:A.aL,IDBVersionChangeRequest:A.aL,IDBRequest:A.aL,IDBTransaction:A.aL,AnalyserNode:A.aL,RealtimeAnalyserNode:A.aL,AudioBufferSourceNode:A.aL,AudioDestinationNode:A.aL,AudioNode:A.aL,AudioScheduledSourceNode:A.aL,AudioWorkletNode:A.aL,BiquadFilterNode:A.aL,ChannelMergerNode:A.aL,AudioChannelMerger:A.aL,ChannelSplitterNode:A.aL,AudioChannelSplitter:A.aL,ConstantSourceNode:A.aL,ConvolverNode:A.aL,DelayNode:A.aL,DynamicsCompressorNode:A.aL,GainNode:A.aL,AudioGainNode:A.aL,IIRFilterNode:A.aL,MediaElementAudioSourceNode:A.aL,MediaStreamAudioDestinationNode:A.aL,MediaStreamAudioSourceNode:A.aL,OscillatorNode:A.aL,Oscillator:A.aL,PannerNode:A.aL,AudioPannerNode:A.aL,webkitAudioPannerNode:A.aL,ScriptProcessorNode:A.aL,JavaScriptAudioNode:A.aL,StereoPannerNode:A.aL,WaveShaperNode:A.aL,EventTarget:A.aL,File:A.i6,FileList:A.Cn,FileReader:A.Kl,FileWriter:A.a1M,FontFaceSet:A.a25,HTMLFormElement:A.a27,Gamepad:A.jR,History:A.a2z,HTMLCollection:A.xu,HTMLFormControlsCollection:A.xu,HTMLOptionsCollection:A.xu,XMLHttpRequest:A.xv,XMLHttpRequestUpload:A.xw,XMLHttpRequestEventTarget:A.xw,ImageData:A.CM,HTMLInputElement:A.xG,HTMLLinkElement:A.Lu,Location:A.a3H,MediaList:A.a5V,MessageEvent:A.ui,MessagePort:A.Du,MIDIInputMap:A.a5Y,MIDIOutputMap:A.a5Z,MimeType:A.jX,MimeTypeArray:A.a6_,DocumentFragment:A.bs,ShadowRoot:A.bs,DocumentType:A.bs,Node:A.bs,NodeList:A.Mr,RadioNodeList:A.Mr,Notification:A.a6n,Plugin:A.jZ,PluginArray:A.a7g,ProgressEvent:A.lw,ResourceProgressEvent:A.lw,RTCStatsReport:A.a8I,HTMLScriptElement:A.O1,HTMLSelectElement:A.a90,SharedArrayBuffer:A.EN,SourceBuffer:A.k3,SourceBufferList:A.a9U,SpeechGrammar:A.k6,SpeechGrammarList:A.aai,SpeechRecognitionResult:A.k7,Storage:A.aao,CSSStyleSheet:A.iV,StyleSheet:A.iV,HTMLTableElement:A.Pa,HTMLTableRowElement:A.aaE,HTMLTableSectionElement:A.aaF,HTMLTemplateElement:A.Fh,TextTrack:A.kd,TextTrackCue:A.iW,VTTCue:A.iW,TextTrackCueList:A.ab0,TextTrackList:A.ab1,TimeRanges:A.ab4,Touch:A.ke,TouchList:A.ab9,TrackDefaultList:A.aba,URL:A.aby,VideoTrackList:A.abH,WebSocket:A.FN,Window:A.vk,DOMWindow:A.vk,DedicatedWorkerGlobalScope:A.po,ServiceWorkerGlobalScope:A.po,SharedWorkerGlobalScope:A.po,WorkerGlobalScope:A.po,Attr:A.G3,CSSRuleList:A.afu,ClientRect:A.Rp,DOMRect:A.Rp,GamepadList:A.ahm,NamedNodeMap:A.SR,MozNamedAttrMap:A.SR,SpeechRecognitionResultList:A.ane,StyleSheetList:A.anq,IDBCursor:A.JB,IDBCursorWithValue:A.ov,IDBDatabase:A.wN,IDBFactory:A.L0,IDBKeyRange:A.D0,IDBObjectStore:A.Mv,IDBVersionChangeEvent:A.vi,SVGLength:A.ln,SVGLengthList:A.a3w,SVGNumber:A.lt,SVGNumberList:A.a6s,SVGPointList:A.a7h,SVGScriptElement:A.Ex,SVGStringList:A.aat,SVGAElement:A.bh,SVGAnimateElement:A.bh,SVGAnimateMotionElement:A.bh,SVGAnimateTransformElement:A.bh,SVGAnimationElement:A.bh,SVGCircleElement:A.bh,SVGClipPathElement:A.bh,SVGDefsElement:A.bh,SVGDescElement:A.bh,SVGDiscardElement:A.bh,SVGEllipseElement:A.bh,SVGFEBlendElement:A.bh,SVGFEColorMatrixElement:A.bh,SVGFEComponentTransferElement:A.bh,SVGFECompositeElement:A.bh,SVGFEConvolveMatrixElement:A.bh,SVGFEDiffuseLightingElement:A.bh,SVGFEDisplacementMapElement:A.bh,SVGFEDistantLightElement:A.bh,SVGFEFloodElement:A.bh,SVGFEFuncAElement:A.bh,SVGFEFuncBElement:A.bh,SVGFEFuncGElement:A.bh,SVGFEFuncRElement:A.bh,SVGFEGaussianBlurElement:A.bh,SVGFEImageElement:A.bh,SVGFEMergeElement:A.bh,SVGFEMergeNodeElement:A.bh,SVGFEMorphologyElement:A.bh,SVGFEOffsetElement:A.bh,SVGFEPointLightElement:A.bh,SVGFESpecularLightingElement:A.bh,SVGFESpotLightElement:A.bh,SVGFETileElement:A.bh,SVGFETurbulenceElement:A.bh,SVGFilterElement:A.bh,SVGForeignObjectElement:A.bh,SVGGElement:A.bh,SVGGeometryElement:A.bh,SVGGraphicsElement:A.bh,SVGImageElement:A.bh,SVGLineElement:A.bh,SVGLinearGradientElement:A.bh,SVGMarkerElement:A.bh,SVGMaskElement:A.bh,SVGMetadataElement:A.bh,SVGPathElement:A.bh,SVGPatternElement:A.bh,SVGPolygonElement:A.bh,SVGPolylineElement:A.bh,SVGRadialGradientElement:A.bh,SVGRectElement:A.bh,SVGSetElement:A.bh,SVGStopElement:A.bh,SVGStyleElement:A.bh,SVGSVGElement:A.bh,SVGSwitchElement:A.bh,SVGSymbolElement:A.bh,SVGTSpanElement:A.bh,SVGTextContentElement:A.bh,SVGTextElement:A.bh,SVGTextPathElement:A.bh,SVGTextPositioningElement:A.bh,SVGTitleElement:A.bh,SVGUseElement:A.bh,SVGViewElement:A.bh,SVGGradientElement:A.bh,SVGComponentTransferFunctionElement:A.bh,SVGFEDropShadowElement:A.bh,SVGMPathElement:A.bh,SVGElement:A.bh,SVGTransform:A.lF,SVGTransformList:A.abc,AudioBuffer:A.Y1,AudioParamMap:A.Y2,AudioTrackList:A.Y3,AudioContext:A.tf,webkitAudioContext:A.tf,BaseAudioContext:A.tf,OfflineAudioContext:A.a6t}) +hunkHelpers.setOrUpdateLeafTags({WebGL:true,AnimationEffectReadOnly:true,AnimationEffectTiming:true,AnimationEffectTimingReadOnly:true,AnimationTimeline:true,AnimationWorkletGlobalScope:true,AuthenticatorAssertionResponse:true,AuthenticatorAttestationResponse:true,AuthenticatorResponse:true,BackgroundFetchFetch:true,BackgroundFetchManager:true,BackgroundFetchSettledFetch:true,BarProp:true,BarcodeDetector:true,BluetoothRemoteGATTDescriptor:true,Body:true,BudgetState:true,CacheStorage:true,CanvasGradient:true,CanvasPattern:true,CanvasRenderingContext2D:true,Client:true,Clients:true,CookieStore:true,Coordinates:true,Credential:true,CredentialUserData:true,CredentialsContainer:true,Crypto:true,CryptoKey:true,CSS:true,CSSVariableReferenceValue:true,CustomElementRegistry:true,DataTransfer:true,DataTransferItem:true,DeprecatedStorageInfo:true,DeprecatedStorageQuota:true,DeprecationReport:true,DetectedBarcode:true,DetectedFace:true,DetectedText:true,DeviceAcceleration: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,External:true,FaceDetector:true,FederatedCredential:true,FileEntry:true,webkitFileSystemFileEntry:true,FileSystemFileEntry:true,DOMFileSystem:true,WebKitFileSystem:true,webkitFileSystem:true,FileSystem:true,FontFace:true,FontFaceSource:true,FormData:true,GamepadButton:true,GamepadPose:true,Geolocation:true,Position:true,GeolocationPosition:true,Headers:true,HTMLHyperlinkElementUtils:true,IdleDeadline:true,ImageBitmap:true,ImageBitmapRenderingContext:true,ImageCapture:true,InputDeviceCapabilities:true,IntersectionObserver:true,IntersectionObserverEntry:true,InterventionReport:true,KeyframeEffect:true,KeyframeEffectReadOnly:true,MediaCapabilities:true,MediaCapabilitiesInfo:true,MediaDeviceInfo:true,MediaError:true,MediaKeyStatusMap:true,MediaKeySystemAccess:true,MediaKeys:true,MediaKeysPolicy:true,MediaMetadata:true,MediaSession:true,MediaSettingsRange:true,MemoryInfo:true,MessageChannel:true,Metadata: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,OffscreenCanvasRenderingContext2D:true,OverconstrainedError:true,PaintRenderingContext2D:true,PaintSize:true,PaintWorkletGlobalScope:true,PasswordCredential:true,Path2D:true,PaymentAddress:true,PaymentInstruments:true,PaymentManager: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,PositionError:true,GeolocationPositionError:true,Presentation:true,PresentationReceiver:true,PublicKeyCredential:true,PushManager:true,PushMessageData:true,PushSubscription:true,PushSubscriptionOptions:true,Range:true,RelatedApplication:true,ReportBody:true,ReportingObserver:true,ResizeObserver:true,ResizeObserverEntry:true,RTCCertificate:true,RTCIceCandidate:true,mozRTCIceCandidate:true,RTCLegacyStatsReport:true,RTCRtpContributingSource:true,RTCRtpReceiver:true,RTCRtpSender:true,RTCSessionDescription:true,mozRTCSessionDescription:true,RTCStatsResponse:true,Screen:true,ScrollState:true,ScrollTimeline:true,Selection:true,SpeechRecognitionAlternative:true,SpeechSynthesisVoice:true,StaticRange:true,StorageManager:true,StyleMedia:true,StylePropertyMap:true,StylePropertyMapReadonly:true,SyncManager:true,TaskAttributionTiming:true,TextDetector:true,TextMetrics:true,TrackDefault:true,TreeWalker:true,TrustedHTML:true,TrustedScriptURL:true,TrustedURL:true,UnderlyingSourceBase:true,URLSearchParams:true,VRCoordinateSystem:true,VRDisplayCapabilities:true,VREyeParameters:true,VRFrameData:true,VRFrameOfReference:true,VRPose:true,VRStageBounds:true,VRStageBoundsPoint:true,VRStageParameters:true,ValidityState:true,VideoPlaybackQuality:true,VideoTrack:true,VTTRegion: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,MojoWatcher:true,NFC:true,PagePopupController:true,Report:true,Request:true,Response:true,SubtleCrypto:true,USBAlternateInterface:true,USBConfiguration: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,IDBIndex:true,IDBObservation:true,IDBObserver:true,IDBObserverChanges: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,AudioTrack:true,AudioWorkletGlobalScope:true,AudioWorkletProcessor: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,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,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,HTMLLIElement:true,HTMLLabelElement:true,HTMLLegendElement: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,HTMLShadowElement:true,HTMLSlotElement:true,HTMLSourceElement:true,HTMLSpanElement:true,HTMLStyleElement:true,HTMLTableCaptionElement:true,HTMLTableCellElement:true,HTMLTableDataCellElement:true,HTMLTableHeaderCellElement:true,HTMLTableColElement: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,HTMLBaseElement:true,Blob:false,HTMLBodyElement:true,CDATASection:true,CharacterData:true,Comment:true,ProcessingInstruction:true,Text:true,CloseEvent: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,Document:true,HTMLDocument:true,XMLDocument:true,DOMException:true,ClientRectList:true,DOMRectList:true,DOMRectReadOnly:false,DOMStringList:true,DOMTokenList:true,MathMLElement:true,Element:false,AbortPaymentEvent:true,AnimationEvent:true,AnimationPlaybackEvent:true,ApplicationCacheErrorEvent:true,BackgroundFetchClickEvent:true,BackgroundFetchEvent:true,BackgroundFetchFailEvent:true,BackgroundFetchedEvent:true,BeforeInstallPromptEvent:true,BeforeUnloadEvent:true,BlobEvent:true,CanMakePaymentEvent:true,ClipboardEvent:true,CompositionEvent:true,CustomEvent:true,DeviceMotionEvent:true,DeviceOrientationEvent:true,ErrorEvent:true,ExtendableEvent:true,ExtendableMessageEvent:true,FetchEvent:true,FocusEvent:true,FontFaceSetLoadEvent:true,ForeignFetchEvent:true,GamepadEvent:true,HashChangeEvent:true,InstallEvent:true,KeyboardEvent:true,MediaEncryptedEvent:true,MediaKeyMessageEvent:true,MediaQueryListEvent:true,MediaStreamEvent:true,MediaStreamTrackEvent:true,MIDIConnectionEvent:true,MIDIMessageEvent:true,MouseEvent:true,DragEvent:true,MutationEvent:true,NotificationEvent:true,PageTransitionEvent:true,PaymentRequestEvent:true,PaymentRequestUpdateEvent:true,PointerEvent:true,PopStateEvent:true,PresentationConnectionAvailableEvent:true,PresentationConnectionCloseEvent:true,PromiseRejectionEvent:true,PushEvent:true,RTCDataChannelEvent:true,RTCDTMFToneChangeEvent:true,RTCPeerConnectionIceEvent:true,RTCTrackEvent:true,SecurityPolicyViolationEvent:true,SensorErrorEvent:true,SpeechRecognitionError:true,SpeechRecognitionEvent:true,SpeechSynthesisEvent:true,StorageEvent:true,SyncEvent:true,TextEvent:true,TouchEvent:true,TrackEvent:true,TransitionEvent:true,WebKitTransitionEvent:true,UIEvent:true,VRDeviceEvent:true,VRDisplayEvent:true,VRSessionEvent:true,WheelEvent:true,MojoInterfaceRequestEvent:true,USBConnectionEvent:true,AudioProcessingEvent:true,OfflineAudioCompletionEvent:true,WebGLContextEvent:true,Event:false,InputEvent:false,SubmitEvent: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,EventSource:true,Gyroscope:true,LinearAccelerationSensor:true,Magnetometer:true,MediaDevices:true,MediaKeySession:true,MediaQueryList:true,MediaRecorder:true,MediaSource:true,MediaStream:true,MediaStreamTrack:true,MIDIAccess:true,MIDIInput:true,MIDIOutput:true,MIDIPort:true,NetworkInformation: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,ServiceWorkerRegistration:true,SharedWorker:true,SpeechRecognition:true,webkitSpeechRecognition:true,SpeechSynthesis:true,SpeechSynthesisUtterance:true,VR:true,VRDevice:true,VRDisplay:true,VRSession:true,VisualViewport:true,Worker:true,WorkerPerformance:true,BluetoothDevice:true,BluetoothRemoteGATTCharacteristic:true,Clipboard:true,MojoInterfaceInterceptor:true,USB: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,FileReader:true,FileWriter:true,FontFaceSet:true,HTMLFormElement:true,Gamepad:true,History:true,HTMLCollection:true,HTMLFormControlsCollection:true,HTMLOptionsCollection:true,XMLHttpRequest:true,XMLHttpRequestUpload:true,XMLHttpRequestEventTarget:false,ImageData:true,HTMLInputElement:true,HTMLLinkElement:true,Location:true,MediaList:true,MessageEvent:true,MessagePort:true,MIDIInputMap:true,MIDIOutputMap:true,MimeType:true,MimeTypeArray:true,DocumentFragment:true,ShadowRoot:true,DocumentType:true,Node:false,NodeList:true,RadioNodeList:true,Notification:true,Plugin:true,PluginArray:true,ProgressEvent:true,ResourceProgressEvent:true,RTCStatsReport:true,HTMLScriptElement:true,HTMLSelectElement:true,SharedArrayBuffer:true,SourceBuffer:true,SourceBufferList:true,SpeechGrammar:true,SpeechGrammarList:true,SpeechRecognitionResult:true,Storage:true,CSSStyleSheet:true,StyleSheet:true,HTMLTableElement:true,HTMLTableRowElement:true,HTMLTableSectionElement:true,HTMLTemplateElement:true,TextTrack:true,TextTrackCue:true,VTTCue:true,TextTrackCueList:true,TextTrackList:true,TimeRanges:true,Touch:true,TouchList:true,TrackDefaultList:true,URL:true,VideoTrackList:true,WebSocket:true,Window:true,DOMWindow:true,DedicatedWorkerGlobalScope:true,ServiceWorkerGlobalScope:true,SharedWorkerGlobalScope:true,WorkerGlobalScope:true,Attr:true,CSSRuleList:true,ClientRect:true,DOMRect:true,GamepadList:true,NamedNodeMap:true,MozNamedAttrMap:true,SpeechRecognitionResultList:true,StyleSheetList:true,IDBCursor:false,IDBCursorWithValue:true,IDBDatabase:true,IDBFactory:true,IDBKeyRange:true,IDBObjectStore:true,IDBVersionChangeEvent:true,SVGLength:true,SVGLengthList:true,SVGNumber:true,SVGNumberList:true,SVGPointList:true,SVGScriptElement:true,SVGStringList: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,SVGSetElement:true,SVGStopElement:true,SVGStyleElement: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,SVGElement:false,SVGTransform:true,SVGTransformList:true,AudioBuffer:true,AudioParamMap:true,AudioTrackList:true,AudioContext:true,webkitAudioContext:true,BaseAudioContext:false,OfflineAudioContext:true}) +A.Dx.$nativeSuperclassTag="ArrayBufferView" +A.SS.$nativeSuperclassTag="ArrayBufferView" +A.ST.$nativeSuperclassTag="ArrayBufferView" +A.uk.$nativeSuperclassTag="ArrayBufferView" +A.SU.$nativeSuperclassTag="ArrayBufferView" +A.SV.$nativeSuperclassTag="ArrayBufferView" +A.lr.$nativeSuperclassTag="ArrayBufferView" +A.Uj.$nativeSuperclassTag="EventTarget" +A.Uk.$nativeSuperclassTag="EventTarget" +A.UQ.$nativeSuperclassTag="EventTarget" +A.UR.$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.$5=function(a,b,c,d,e){return this(a,b,c,d,e)} +Function.prototype.$2$2=function(a,b){return this(a,b)} +Function.prototype.$2$1=function(a){return this(a)} +Function.prototype.$1$2=function(a,b){return this(a,b)} +Function.prototype.$2$0=function(){return this()} +Function.prototype.$1$5=function(a,b,c,d,e){return this(a,b,c,d,e)} +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=3.2.0 <4.0.0" - flutter: ">=3.16.0" diff --git a/pubspec.yaml b/pubspec.yaml deleted file mode 100644 index f8dd5801..00000000 --- a/pubspec.yaml +++ /dev/null @@ -1,105 +0,0 @@ -name: tachidesk_sorayomi -description: A new Flutter frontend for Tachidesk. - -publish_to: "none" -version: 0.5.23+1 - -environment: - sdk: ">=3.0.0 <4.0.0" - -dependencies: - cached_network_image: ^3.2.2 - cached_network_image_platform_interface: ^4.0.0 - cupertino_icons: ^1.0.5 - dio: ^5.0.0 - dio_cache_interceptor: ^3.4.0 - dio_cache_interceptor_hive_store: ^3.2.1 - file_picker: ^6.0.0 - flex_color_scheme: ^7.3.1 - flutter: - sdk: flutter - flutter_android_volume_keydown: ^1.0.0 - flutter_cache_manager: ^3.3.0 - flutter_hooks: ^0.20.0 - flutter_localizations: - sdk: flutter - flutter_markdown: ^0.6.17+2 - fluttertoast: ^8.1.1 - font_awesome_flutter: ^10.2.1 - freezed_annotation: ^2.2.0 - gap: ^3.0.1 - go_router: ^13.0.1 - hooks_riverpod: ^2.1.1 - infinite_scroll_pagination: ^4.0.0 - intl: ^0.18.0 - json_annotation: ^4.8.1 - network_info_plus: ^4.0.0 - package_info_plus: ^5.0.1 - path: ^1.8.3 - path_provider: ^2.0.11 - permission_handler: ^11.0.0 - pub_semver: ^2.1.2 - queue: ^3.1.0+2 - riverpod_annotation: ^2.0.0 - scrollable_positioned_list: ^0.3.5 - shared_preferences: ^2.0.15 - shimmer: ^3.0.0 - url_launcher: ^6.1.6 - web_socket_channel: ^2.2.0 - -dev_dependencies: - build_runner: ^2.3.2 - # flutter_flavorizr: ^2.1.5 - flutter_gen_runner: ^5.1.0+1 - flutter_launcher_icons: ^0.13.0 - flutter_lints: ^3.0.0 - flutter_native_splash: ^2.2.14 - flutter_test: - sdk: flutter - freezed: ^2.2.1 - go_router_builder: ^2.0.0 - json_serializable: ^6.5.4 - lints: ^3.0.0 - riverpod_generator: ^2.0.0 - -flutter: - uses-material-design: true - generate: true - assets: - - assets/icons/ - - assets/icons/launcher/ - -flutter_gen: - output: lib/src/constants/gen/ - -flutter_native_splash: - color: "#54C5F8" - image: assets/icons/dark_icon.png - branding: assets/icons/launcher/from_suwayomi.png - color_dark: "#01579B" - image_dark: assets/icons/light_icon.png - android_12: - color: "#54C5F8" - color_dark: "#01579B" - icon_background_color: "#54C5F8" - icon_background_color_dark: "#01579B" - image: assets/icons/dark_icon.png - image_dark: assets/icons/light_icon.png - -flutter_launcher_icons: - android: "launcher_icon" - ios: true - remove_alpha_ios: true - image_path: "assets/icons/launcher/sorayomi_icon.png" - image_path_ios: "assets/icons/launcher/ios_sorayomi_icon.png" - web: - generate: true - image_path: "assets/icons/launcher/sorayomi_icon.png" - background_color: "#54C5F8" - theme_color: "#54C5F8" - windows: - generate: true - image_path: "assets/icons/launcher/sorayomi_icon.png" - macos: - generate: true - image_path: "assets/icons/launcher/ios_sorayomi_icon.png" diff --git a/scripts/debian/changelog b/scripts/debian/changelog deleted file mode 100644 index 7322ba57..00000000 --- a/scripts/debian/changelog +++ /dev/null @@ -1,5 +0,0 @@ -tachidesk-sorayomi ($pkgver-$pkgrel) unstable; urgency=medium - - * See https://github.com/Suwayomi/Tachidesk-Sorayomi - - -- Mahor Fri, 17 Feb 2022 00:00:00 +0000 diff --git a/scripts/debian/control b/scripts/debian/control deleted file mode 100644 index 8076cf0e..00000000 --- a/scripts/debian/control +++ /dev/null @@ -1,14 +0,0 @@ -Source: tachidesk-sorayomi -Section: web -Priority: optional -Maintainer: Mahor -Build-Depends: debhelper-compat (= 12) -Standards-Version: 4.5.1 -Homepage: https://github.com/Suwayomi/Tachidesk-Sorayomi - -Package: tachidesk-sorayomi -Architecture: amd64 -Depends: ${misc:Depends}, zenity -Description: Manga Reader - A free and open source manga reader server that runs extensions built for Tachiyomi. - Tachidesk is an independent Tachiyomi compatible software and is not a Fork of Tachiyomi. diff --git a/scripts/debian/copyright b/scripts/debian/copyright deleted file mode 100644 index b75ea83f..00000000 --- a/scripts/debian/copyright +++ /dev/null @@ -1,381 +0,0 @@ -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: tachidesk-sorayomi -Upstream-Contact: https://discord.gg/DDZdqZWaHA -Source: https://github.com/Suwayomi/Tachidesk-Sorayomi - -Files: * -Copyright: Contributors to the Suwayomi project -License: MPL-2.0 - 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 https://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. diff --git a/scripts/debian/install b/scripts/debian/install deleted file mode 100644 index 2c8e9924..00000000 --- a/scripts/debian/install +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/dh-exec - -data opt/tachidesk-sorayomi/ -lib opt/tachidesk-sorayomi/ -tachidesk_sorayomi opt/tachidesk-sorayomi/ -tachidesk-sorayomi.png usr/share/pixmaps/ -tachidesk-sorayomi.desktop usr/share/applications/ diff --git a/scripts/debian/package.dirs b/scripts/debian/package.dirs deleted file mode 100644 index ebb18e8f..00000000 --- a/scripts/debian/package.dirs +++ /dev/null @@ -1,2 +0,0 @@ -opt/tachidesk-sorayomi/ - diff --git a/scripts/debian/rules b/scripts/debian/rules deleted file mode 100644 index 79a164b8..00000000 --- a/scripts/debian/rules +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/make -f -# See debhelper(7) (uncomment to enable) -# output every command that modifies files on the build system. -#export DH_VERBOSE = 1 - -%: - dh $@ - -override_dh_strip_nondeterminism: - true diff --git a/scripts/debian/source/format b/scripts/debian/source/format deleted file mode 100644 index 163aaf8d..00000000 --- a/scripts/debian/source/format +++ /dev/null @@ -1 +0,0 @@ -3.0 (quilt) diff --git a/scripts/debian/source/include-binaries b/scripts/debian/source/include-binaries deleted file mode 100644 index 4e72da6c..00000000 --- a/scripts/debian/source/include-binaries +++ /dev/null @@ -1 +0,0 @@ -tachidesk-sorayomi.png diff --git a/scripts/debian/tachidesk-sorayomi.links b/scripts/debian/tachidesk-sorayomi.links deleted file mode 100644 index d0430985..00000000 --- a/scripts/debian/tachidesk-sorayomi.links +++ /dev/null @@ -1 +0,0 @@ -opt/tachidesk-sorayomi/tachidesk_sorayomi usr/bin/tachidesk-sorayomi diff --git a/scripts/tachidesk-sorayomi-x64.wxs b/scripts/tachidesk-sorayomi-x64.wxs deleted file mode 100644 index 6953635c..00000000 --- a/scripts/tachidesk-sorayomi-x64.wxs +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - VersionNT64 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/scripts/tachidesk-sorayomi.desktop b/scripts/tachidesk-sorayomi.desktop deleted file mode 100644 index e3e22d7e..00000000 --- a/scripts/tachidesk-sorayomi.desktop +++ /dev/null @@ -1,8 +0,0 @@ -[Desktop Entry] -Name=Tachidesk Sorayomi -Comment=Tachidesk UI flutter -Exec=tachidesk-sorayomi -Icon=tachidesk-sorayomi -Terminal=false -Type=Application -Categories=Network; diff --git a/web/splash/img/branding-1x.png b/splash/img/branding-1x.png similarity index 100% rename from web/splash/img/branding-1x.png rename to splash/img/branding-1x.png diff --git a/web/splash/img/branding-2x.png b/splash/img/branding-2x.png similarity index 100% rename from web/splash/img/branding-2x.png rename to splash/img/branding-2x.png diff --git a/web/splash/img/branding-3x.png b/splash/img/branding-3x.png similarity index 100% rename from web/splash/img/branding-3x.png rename to splash/img/branding-3x.png diff --git a/web/splash/img/branding-4x.png b/splash/img/branding-4x.png similarity index 100% rename from web/splash/img/branding-4x.png rename to splash/img/branding-4x.png diff --git a/web/splash/img/branding-dark-1x.png b/splash/img/branding-dark-1x.png similarity index 100% rename from web/splash/img/branding-dark-1x.png rename to splash/img/branding-dark-1x.png diff --git a/web/splash/img/branding-dark-2x.png b/splash/img/branding-dark-2x.png similarity index 100% rename from web/splash/img/branding-dark-2x.png rename to splash/img/branding-dark-2x.png diff --git a/web/splash/img/branding-dark-3x.png b/splash/img/branding-dark-3x.png similarity index 100% rename from web/splash/img/branding-dark-3x.png rename to splash/img/branding-dark-3x.png diff --git a/web/splash/img/branding-dark-4x.png b/splash/img/branding-dark-4x.png similarity index 100% rename from web/splash/img/branding-dark-4x.png rename to splash/img/branding-dark-4x.png diff --git a/web/splash/img/dark-1x.png b/splash/img/dark-1x.png similarity index 100% rename from web/splash/img/dark-1x.png rename to splash/img/dark-1x.png diff --git a/web/splash/img/dark-2x.png b/splash/img/dark-2x.png similarity index 100% rename from web/splash/img/dark-2x.png rename to splash/img/dark-2x.png diff --git a/web/splash/img/dark-3x.png b/splash/img/dark-3x.png similarity index 100% rename from web/splash/img/dark-3x.png rename to splash/img/dark-3x.png diff --git a/web/splash/img/dark-4x.png b/splash/img/dark-4x.png similarity index 100% rename from web/splash/img/dark-4x.png rename to splash/img/dark-4x.png diff --git a/web/splash/img/light-1x.png b/splash/img/light-1x.png similarity index 100% rename from web/splash/img/light-1x.png rename to splash/img/light-1x.png diff --git a/web/splash/img/light-2x.png b/splash/img/light-2x.png similarity index 100% rename from web/splash/img/light-2x.png rename to splash/img/light-2x.png diff --git a/web/splash/img/light-3x.png b/splash/img/light-3x.png similarity index 100% rename from web/splash/img/light-3x.png rename to splash/img/light-3x.png diff --git a/web/splash/img/light-4x.png b/splash/img/light-4x.png similarity index 100% rename from web/splash/img/light-4x.png rename to splash/img/light-4x.png diff --git a/web/splash/splash.js b/splash/splash.js similarity index 100% rename from web/splash/splash.js rename to splash/splash.js diff --git a/web/splash/style.css b/splash/style.css similarity index 100% rename from web/splash/style.css rename to splash/style.css diff --git a/version.json b/version.json new file mode 100644 index 00000000..50e1cd3f --- /dev/null +++ b/version.json @@ -0,0 +1 @@ +{"app_name":"tachidesk_sorayomi","version":"0.5.23","build_number":"1","package_name":"tachidesk_sorayomi"} \ No newline at end of file diff --git a/windows/.gitignore b/windows/.gitignore deleted file mode 100644 index d492d0d9..00000000 --- a/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/windows/CMakeLists.txt b/windows/CMakeLists.txt deleted file mode 100644 index 4119f5a1..00000000 --- a/windows/CMakeLists.txt +++ /dev/null @@ -1,101 +0,0 @@ -# Project-level configuration. -cmake_minimum_required(VERSION 3.14) -project(tachidesk_sorayomi 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 "tachidesk_sorayomi") - -# 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/windows/flutter/CMakeLists.txt b/windows/flutter/CMakeLists.txt deleted file mode 100644 index 930d2071..00000000 --- a/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/windows/flutter/generated_plugin_registrant.cc b/windows/flutter/generated_plugin_registrant.cc deleted file mode 100644 index a0d0bbeb..00000000 --- a/windows/flutter/generated_plugin_registrant.cc +++ /dev/null @@ -1,17 +0,0 @@ -// -// Generated file. Do not edit. -// - -// clang-format off - -#include "generated_plugin_registrant.h" - -#include -#include - -void RegisterPlugins(flutter::PluginRegistry* registry) { - PermissionHandlerWindowsPluginRegisterWithRegistrar( - registry->GetRegistrarForPlugin("PermissionHandlerWindowsPlugin")); - UrlLauncherWindowsRegisterWithRegistrar( - registry->GetRegistrarForPlugin("UrlLauncherWindows")); -} diff --git a/windows/flutter/generated_plugin_registrant.h b/windows/flutter/generated_plugin_registrant.h deleted file mode 100644 index dc139d85..00000000 --- a/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/windows/flutter/generated_plugins.cmake b/windows/flutter/generated_plugins.cmake deleted file mode 100644 index c20a586d..00000000 --- a/windows/flutter/generated_plugins.cmake +++ /dev/null @@ -1,25 +0,0 @@ -# -# Generated file, do not edit. -# - -list(APPEND FLUTTER_PLUGIN_LIST - permission_handler_windows - url_launcher_windows -) - -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/windows/runner/CMakeLists.txt b/windows/runner/CMakeLists.txt deleted file mode 100644 index 17411a8a..00000000 --- a/windows/runner/CMakeLists.txt +++ /dev/null @@ -1,39 +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_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/windows/runner/Runner.rc b/windows/runner/Runner.rc deleted file mode 100644 index ef4826b8..00000000 --- a/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.suwayomi" "\0" - VALUE "FileDescription", "tachidesk_sorayomi" "\0" - VALUE "FileVersion", VERSION_AS_STRING "\0" - VALUE "InternalName", "tachidesk_sorayomi" "\0" - VALUE "LegalCopyright", "Copyright (C) 2022 com.suwayomi. All rights reserved." "\0" - VALUE "OriginalFilename", "tachidesk_sorayomi.exe" "\0" - VALUE "ProductName", "tachidesk_sorayomi" "\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/windows/runner/flutter_window.cpp b/windows/runner/flutter_window.cpp deleted file mode 100644 index b43b9095..00000000 --- a/windows/runner/flutter_window.cpp +++ /dev/null @@ -1,61 +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()); - 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/windows/runner/flutter_window.h b/windows/runner/flutter_window.h deleted file mode 100644 index 6da0652f..00000000 --- a/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/windows/runner/main.cpp b/windows/runner/main.cpp deleted file mode 100644 index c85aa3c0..00000000 --- a/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.CreateAndShow(L"Tachidesk Sorayomi", 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/windows/runner/resource.h b/windows/runner/resource.h deleted file mode 100644 index 66a65d1e..00000000 --- a/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/windows/runner/resources/app_icon.ico b/windows/runner/resources/app_icon.ico deleted file mode 100644 index 9bff4b9b..00000000 Binary files a/windows/runner/resources/app_icon.ico and /dev/null differ diff --git a/windows/runner/runner.exe.manifest b/windows/runner/runner.exe.manifest deleted file mode 100644 index a42ea768..00000000 --- a/windows/runner/runner.exe.manifest +++ /dev/null @@ -1,20 +0,0 @@ - - - - - PerMonitorV2 - - - - - - - - - - - - - - - diff --git a/windows/runner/utils.cpp b/windows/runner/utils.cpp deleted file mode 100644 index f5bf9fa0..00000000 --- a/windows/runner/utils.cpp +++ /dev/null @@ -1,64 +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); - 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, - -1, utf8_string.data(), - target_length, nullptr, nullptr); - if (converted_length == 0) { - return std::string(); - } - return utf8_string; -} diff --git a/windows/runner/utils.h b/windows/runner/utils.h deleted file mode 100644 index 3879d547..00000000 --- a/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/windows/runner/win32_window.cpp b/windows/runner/win32_window.cpp deleted file mode 100644 index c10f08dc..00000000 --- a/windows/runner/win32_window.cpp +++ /dev/null @@ -1,245 +0,0 @@ -#include "win32_window.h" - -#include - -#include "resource.h" - -namespace { - -constexpr const wchar_t kWindowClassName[] = L"FLUTTER_RUNNER_WIN32_WINDOW"; - -// 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 registar 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::CreateAndShow(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 | WS_VISIBLE, - 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; - } - - return OnCreate(); -} - -// 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; - } - - 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. -} diff --git a/windows/runner/win32_window.h b/windows/runner/win32_window.h deleted file mode 100644 index 17ba4311..00000000 --- a/windows/runner/win32_window.h +++ /dev/null @@ -1,98 +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 and shows a win32 window with |title| and position and size 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 to will treat the width height passed in to this function - // as logical pixels and scale to appropriate for the default monitor. Returns - // true if the window was created successfully. - bool CreateAndShow(const std::wstring& title, - const Point& origin, - const Size& size); - - // 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 - // responsponds 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; - - 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_