diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000000..187ca84368 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,13 @@ +blank_issues_enabled: false +contact_links: + - name: Scope or Roadmap Question (start here if unsure) + url: https://github.com/crosspoint-reader/crosspoint-reader/discussions + about: | + Not sure if your idea fits CrossPoint's scope? Start a Discussion before filing an issue. + See SCOPE.md and ROADMAP.md for what is in, out, and currently paused. + - name: Read the Scope document + url: https://github.com/crosspoint-reader/crosspoint-reader/blob/master/SCOPE.md + about: The authoritative list of what CrossPoint will and will not accept. + - name: Read the Roadmap + url: https://github.com/crosspoint-reader/crosspoint-reader/blob/master/ROADMAP.md + about: Current phase, what is being closed out, and what comes next. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000000..4838988c6e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,80 @@ +name: Feature Request +description: Propose a new feature, enhancement, or change to CrossPoint +title: "Short, descriptive title of the request" +labels: ["enhancement", "needs-scope-review"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to propose a change to CrossPoint! + + **Before you continue, please read [SCOPE.md](../blob/master/SCOPE.md) and [ROADMAP.md](../blob/master/ROADMAP.md).** + + CrossPoint is intentionally narrow. Most rejected proposals are rejected for scope reasons that are already + documented. The checklist below exists to save both of us time. + + If you are not sure whether your idea fits, open a [Discussion](../../discussions) first instead of filing + this issue. + + - type: checkboxes + id: scope-check + attributes: + label: Scope Self-Check (required) + description: Please confirm each of the following. If any are unchecked, your issue will likely be closed. + options: + - label: I have read SCOPE.md and ROADMAP.md. + required: true + - label: This is **not** a new theme or theming change (themes are temporarily closed pending the move to SD-loaded themes). + required: true + - label: This is **not** a new external network connector (sync engine, cloud storage, remote file access, OPDS extensions beyond what exists, or any new "talk to a server" feature). + required: true + - label: This is **not** an interactive app (game, calculator, notepad), writing/authoring tool, RSS/news/browser feature, media playback feature, or PDF rendering. + required: true + - label: The stock firmware does **not** already handle this well. + required: true + - label: No other popular CrossPoint fork already handles this well (or, if one does, I explain below why CrossPoint still needs it). + required: true + + - type: textarea + id: problem + attributes: + label: Problem this solves + description: What user-facing problem or reading-experience gap does this address? Be concrete. + placeholder: e.g., "When reading in landscape, paragraph breaks are inconsistent because..." + validations: + required: true + + - type: textarea + id: stock-gap + attributes: + label: Why the stock firmware (and other forks) do not already solve this + description: Explain which existing solutions you checked and why they fall short. This is the core scope filter. + validations: + required: true + + - type: textarea + id: proposal + attributes: + label: Proposed change + description: A short description of what you would build or change. Focus on user impact; implementation details can come later. + validations: + required: true + + - type: textarea + id: tradeoffs + attributes: + label: Memory / flash / complexity cost + description: | + CrossPoint runs on 380KB of RAM. Roughly how much DRAM, flash, or code complexity does this add? + "Don't know" is a valid answer, but please attempt an estimate. + placeholder: e.g., "Adds ~2KB flash for the new font tables, no DRAM impact at runtime." + validations: + required: false + + - type: textarea + id: additional-context + attributes: + label: Additional context + description: Anything else relevant (links, screenshots, related discussions). + validations: + required: false diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 21b09aaf81..0159b9e4e0 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -3,16 +3,34 @@ * **What is the goal of this PR?** (e.g., Implements the new feature for file uploading.) * **What changes are included?** +## Scope Check + +CrossPoint is intentionally narrow. See [SCOPE.md](../blob/master/SCOPE.md) and [ROADMAP.md](../blob/master/ROADMAP.md). +Please confirm: + +- [ ] I have read SCOPE.md and ROADMAP.md. +- [ ] This PR is **not** a new built-in theme (themes are temporarily closed pending the move to SD-loaded themes). +- [ ] This PR is **not** a new external network connector (sync engine, cloud storage, remote file access, etc.). +- [ ] This PR is **not** an interactive app, writing tool, RSS/news/browser, media playback, or PDF feature. +- [ ] The stock firmware does not already handle this well, **and** no other popular CrossPoint fork already does + (or, if one does, I explain why CrossPoint still needs it below). +- [ ] If this PR touches `freeink-sdk/`, `lib/hal/`, the bootloader, OTA, or recovery code, I have coordinated with + the relevant maintainer. + +**If this PR was opened against the previous (broader) scope and was already in flight under Phase 0, link the +relevant Discussion or issue so reviewers can see the history.** + ## Additional Context -* Add any other information that might be helpful for the reviewer (e.g., performance implications, potential risks, +* Add any other information that might be helpful for the reviewer (e.g., performance implications, potential risks, specific areas to focus on). +* Memory / flash impact, if known. --- ### AI Usage -While CrossPoint doesn't have restrictions on AI tools in contributing, please be transparent about their usage as it +While CrossPoint doesn't have restrictions on AI tools in contributing, please be transparent about their usage as it helps set the right context for reviewers. Did you use AI tools to help write this code? _**< YES | PARTIALLY | NO >**_ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cfe848fbad..42cfd249c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -91,9 +91,13 @@ jobs: restore-keys: pio-${{ runner.os }}- - name: Build CrossPoint + # Both envs in ONE pio invocation: a second `pio run` can wipe the whole + # .pio/build tree (project-checksum mismatch after the S3 toolchain + # installs into the restored cache), deleting the default firmware.bin + # before the artifact upload. run: | set -euo pipefail - pio run | tee pio.log + pio run -e default -e sticky | tee pio.log - name: Extract firmware stats diff --git a/.gitignore b/.gitignore index 6bd12537d2..a92affcc76 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,8 @@ .idea .DS_Store .vscode +open-x4-sdk +fs_ lib/EpdFont/fontsrc lib/I18n/I18nKeys.h lib/I18n/I18nStrings.h diff --git a/README.md b/README.md index c938b6df41..926e57e53c 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,11 @@ CrossPoint is open-source e-reader firmware - community-built, fully hackable, f ![CrossPoint Reader running on Xteink device](./docs/images/cover.jpg) +> If you're planning to buy an Xteink device, consider purchasing an **X3/X4 Developer Edition** through https://crosspointreader.com. CrossPoint receives a small share of each sale, helping fund development costs. + ## What can CrossPoint do? -- **Reader engine**: EPUB 2/3 rendering with embedded-style option, image handling, hyphenation, kerning, chapter navigation, footnotes, bookmarks, go-to-percent, auto page turn, orientation control, focus reading, KOReader progress sync and more. +- **Reader engine**: EPUB 2/3 rendering with embedded-style option, image handling, hyphenation, kerning, chapter navigation, footnotes, bookmarks, dictionary lookups ([StarDict](docs/dictionary.md)), go-to-percent, auto page turn, orientation control, focus reading, KOReader progress sync and more. - **Various formats**: native handling for `.epub`, `.xtc/.xtch`, `.txt`, and `.bmp`. @@ -40,8 +42,6 @@ CrossPoint is open-source e-reader firmware - community-built, fully hackable, f ### Coming soon: -- Dictionary lookup — inline word lookup without leaving the reader. - - More themes. - Much more! stay tuned. @@ -136,6 +136,7 @@ Conversion runs the firmware repo's `lib/EpdFont/scripts/fontconvert_sdcard.py` - [Web server endpoints](./docs/webserver-endpoints.md) - [Project scope](./SCOPE.md) - [Contributing docs](./docs/contributing/README.md) +- [Touch and UI development](./docs/contributing/touch-and-ui.md) - FreeInkUI components for new screens, the touch bridge for existing ones, and build envs for the non-Xteink touch devices --- @@ -158,6 +159,24 @@ cd crosspoint-reader git submodule update --init --recursive ``` +### Nix/NixOS + +Nix/NixOS users can enter the development shell with either `nix develop` (flakes) or `nix-shell`: + +```bash +nix develop -f nix +# or +nix-shell nix +``` + +To flash a connected ESP32-C3 device, enable PlatformIO's udev rules in your NixOS configuration: + +```nix +services.udev.packages = with pkgs; [ platformio-core.udev ]; +``` + +After rebuilding the system configuration, reconnect the device or reload udev rules. + ### Build / flash / monitor ```bash diff --git a/ROADMAP.md b/ROADMAP.md new file mode 100644 index 0000000000..5b0b21f329 --- /dev/null +++ b/ROADMAP.md @@ -0,0 +1,88 @@ +# CrossPoint Reader Roadmap + +This roadmap describes how CrossPoint is moving through the tighter scope defined in [SCOPE.md](SCOPE.md). It is +intentionally phased: Phase 0 closed out the commitments already in flight before locking down to the stricter +"fill gaps the stock firmware leaves" delineator. + +Phases are sequential. We do not start the next phase until the prior one is wrapped or explicitly carried over. + +--- + +## Phase 0 - Close Out Legacy Scope Items — **COMPLETE** + +**Goal:** Land the work that was already in motion under the prior, broader scope so contributors are not left +hanging, and so we enter the stricter phases with a clean slate. + +**Landed in Phase 0:** + +* **RTL support PRs.** The in-flight right-to-left work was reviewed, iterated, and merged. +* **Dictionary PR.** The offline dictionary lookup work was reviewed and merged. +* **Bookmarks** feature. First-class navigation markers in EPUBs. +* ~~**Transparent sleep screens.**~~ Shelved; not picked back up under the stricter phases. + +Phase 0 is closed. The tighter scope in [SCOPE.md](SCOPE.md) is now fully enforced. "But it was on the old roadmap" +is not a valid argument for accepting a PR. + +--- + +## Phase 1 - Consolidation, Footprint, and Multi-Device Support — **IN PROGRESS** + +**Goal:** Reduce memory and flash usage, clean up the codebase, and land the SDK / HAL generalization work so +CrossPoint runs cleanly on ESP32-based e-reader hardware beyond Xteink (X3 / X4), including ESP32-S3 class devices. + +**Focus areas:** + +* DRAM and heap fragmentation reduction across the reader core. +* Flash footprint reduction (dead code, redundant strings, oversized tables). +* Refactors that tighten the HAL / SDK boundary. +* Pluggable per-device SDK layers (display, input, storage, battery) and per-device build configuration without + forking the reader core. +* Documentation for adding a new ESP32 e-reader target. +* E-ink driver refinement (ghosting, partial update behavior). + +**Closed during this phase:** new themes built into firmware, new external network connectors (sync engines, cloud +storage, remote file access). + +--- + +## Phase 2 - Languages, Fonts, and Themes + +**Goal:** With the codebase smaller and portable, make reading great in every language: multi-language support, +better font support with custom fonts, UI translations, and themes loaded from the SD card instead of consuming +flash. + +**Focus areas:** + +* Multi-language reading support (underserved languages, complex script support where realistic on ESP32 hardware). +* Better font support and custom fonts. +* UI languages and localization. +* Moving themes off-firmware to SD-loaded assets (see SCOPE.md Section 6). +* **Moving hyphenation files off-firmware.** Hyphenation rules vary per language and the files are large (German + alone is ~200KB). Today these eat flash budget that should be available for the reader core. The plan is to build + a downloader analogous to the existing font downloader and store the dictionaries on SD / SPIFFS, loading on + demand. This unlocks better hyphenation for long-word languages (German, Finnish, Norwegian, etc.) without paying + the flash cost up front. + +This phase depends on Phase 1 cleanup landing first; otherwise we generalize a moving target. + +--- + +## Out of Roadmap + +The following are explicitly *not* on the roadmap. They may live in other CrossPoint forks; they will not be picked +up here: + +* Interactive apps (games, calculators, notepads). +* Writing / authoring tools. +* Active connectivity features (RSS, news, browsers). +* PDF rendering as a first-class format. + +See [SCOPE.md](SCOPE.md) for the full rationale. + +--- + +## How This Roadmap Changes + +* Phase boundaries are decided by maintainers, not by individual PRs. +* If a phase needs to be extended or an item carried over, that is documented here with a short note. +* Proposals for new phases or reordering should go through a Discussion first. diff --git a/SCOPE.md b/SCOPE.md index f115e0b4e9..7dbf9dffa2 100644 --- a/SCOPE.md +++ b/SCOPE.md @@ -1,62 +1,100 @@ # Project Vision & Scope: CrossPoint Reader -The goal of CrossPoint Reader is to create an efficient, open-source reading experience for the Xteink X4. We believe a -dedicated e-reader should do one thing exceptionally well: **facilitate focused reading.** +The goal of CrossPoint Reader is to create an efficient, open-source reading experience for ESP32-based e-reader devices. Xteink hardware (X3, X4) is where the project started and remains a primary target, but CrossPoint is explicitly broadening to support the wider ecosystem of small ESP32 e-ink readers. We believe a dedicated e-reader should do one thing exceptionally well: **facilitate focused reading.** ## 1. Core Mission -To provide a lightweight, high-performance firmware that maximizes the potential of the X4, prioritizing legibility and -usability over "swiss-army-knife" functionality. +To provide a lightweight, high-performance firmware that maximizes the potential of ESP32-based e-reader hardware, prioritizing legibility, performance, and usability over "swiss-army-knife" functionality. -## 2. Scope +CrossPoint is **not** a kitchen-sink firmware, and it is **not** Xteink-only. We want clean, maintainable code that the community can build on, and that runs across the range of ESP32 e-reader devices (ESP32-C3, ESP32-S3, and adjacent variants). Every accepted change should make that goal easier, not harder. Device-specific code should live behind the HAL / SDK boundary so the reader core stays portable. + +## 2. Guiding Principle: Fill Gaps the Stock Firmware Leaves + +CrossPoint exists to do the things the stock firmware does poorly or not at all. New work is evaluated against that delineator: + +* **Does the stock firmware already do this well?** We should hit that bar or surpass it +* **Is another popular CrossPoint fork already solving this well?** If yes, we generally defer to that fork if it's not part of the core reading experience. e.g. stats +* **Does this directly improve the reading experience or the firmware's long-term maintainability?** If no, it is out of scope. + +## 3. Current Focus + +We are intentionally narrowing scope to consolidate the codebase as we open it up to more ESP32 e-reader devices. + +During this period, the priorities are: + +* **Memory footprint:** Reducing DRAM usage and heap fragmentation. The ESP32-C3 is the tightest target and sets the ceiling, but the gains benefit every ESP32 variant we run on. +* **Flash footprint:** Trimming binary size to leave room for additional device targets and features. +* **Code cleanup:** Refactoring, removing dead code, tightening abstractions, and improving readability. +* **Reading experience:** EPUB parsing and rendering, typography, hyphenation, line spacing, font handling, and legibility improvements. + +### Temporarily Closed Areas + +PRs in the following areas will be closed until this notice is lifted. Adding these now makes the cleanup and multi-device work materially harder: + +* **New themes.** The existing theming surface is frozen. +* **New external network connectors.** This includes sync engines, cloud storage clients, OPDS extensions beyond what exists, remote file access, and any new "talk to a server" feature. We now have our own CrossPoint KOSync server which gives us a way to sync to 3rd party systems like Hardcover at an API level instead of bloating the firmware. If you're interested in helping here, the sync server is also open source. + +If you are unsure whether your idea falls into one of these categories, open a Discussion first. + +## 4. Scope ### In-Scope -*These are features that directly improve the primary purpose of the device.* - -* **User Experience:** E.g. User-friendly interfaces, and interactions, both inside the reader and navigating the - firmware. This includes things like button mapping, book loading, and book navigation like bookmarks. -* **Document Rendering:** E.g. Support for rendering documents (primarily EPUB) and improvements to the rendering - engine. -* **Format Optimization:** E.g. Efficiently parsing EPUB (CSS/Images) and other documents within the device's - capabilities. -* **Typography & Legibility:** E.g. Custom font support, hyphenation engines, and adjustable line spacing. -* **E-Ink Driver Refinement:** E.g. Reducing full-screen flashes (ghosting management) and improving general rendering. -* **Library Management:** E.g. Simple, intuitive ways to organize and navigate a collection of books. -* **Local Transfer:** E.g. Simple, "pull" based book loading via a basic web-server or public and widely-used standards. -* **Language Support:** E.g. Support for multiple languages both in the reader and in the interfaces. -* **Reference Tools:** E.g. Local dictionary lookup. Providing quick, offline definitions to enhance comprehension - without breaking focus. -* **Clock Display (device dependent):** - -| Device | Scope | -| -- | -- | -| X3 | The X3 uses a dedicated DS3231 RTC, which maintains accurate time across sleep cycles and can be treated as a reliable wall clock. | -| X4 | The X4 relies on the ESP32-C3's internal RTC, which drifts significantly during deep sleep. NTP sync could correct this, with an appropriate user experience around connecting to the internet on wake or on demand. This causes some tension with the **Active Connectivity** section below, so please open a discussion about this UX if it's a feature you would find useful. | +*Features that directly improve the core reading experience or the firmware's maintainability.* + +* **EPUB Rendering & Optimization:** Improvements to the rendering engine, CSS/image handling, and parsing performance. +* **Typography & Legibility:** Custom font support, hyphenation, line and paragraph spacing, margins. +* **E-Ink Driver Refinement:** Reducing full-screen flashes (ghosting management) and improving general rendering. +* **Reading UX:** Bookmarks, progress tracking, button mapping, page navigation, and other in-reader interactions. +* **Library Management:** Simple, intuitive ways to organize and navigate a local book collection. +* **Memory, Flash, and Code Quality:** Refactors and cleanups that reduce resource use or improve maintainability, even without a user-visible feature. ### Out-of-Scope -*These items are rejected because they compromise the device's stability or mission.* +*Rejected because they compromise the device's stability, maintainability, or core mission.* + +* **Interactive Apps:** No notepads, calculators, or games. These belong in other forks and are not part of CrossPoint's focus. +* **Writing / Authoring Tools:** No typed notes, journals, or editors. Input hardware and RAM are wrong for this, and other forks already explore this space. +* **Active Connectivity:** No RSS readers, news aggregators, or web browsers. Background Wi-Fi drains the battery and complicates the single-core CPU. +* **PDF Rendering:** PDFs are fixed-layout documents, so rendering them requires displaying pages as images rather than reflowable text, resulting in constant panning and zooming that makes for a poor reading experience on e-ink. Out of scope on the current hardware class. + +## 5. Calls to Action + +These are the areas where contributor help is most valuable right now. If you want to take one of these on, open a Discussion or issue first so we can coordinate. + +### Theme System: Move Themes Off-Firmware + +We want to abstract themes out of the firmware entirely so they no longer consume flash, and instead load from the SD card. This directly supports the current focus on flash footprint and code cleanup. + +* **Status:** [@itsthisjustin](https://github.com/itsthisjustin) plans to take this on eventually but is very open to someone else claiming it sooner. +* **Why it matters:** Every built-in theme costs flash that we would rather spend on rendering, fonts, or future device support. SD-loaded themes also let users customize without rebuilding firmware. It also leads to SD font loading for better language support in the UI. +* **How to claim:** Comment on the relevant Discussion (or open one) before starting. + +### Identifying Other Stock-Firmware Gaps + +We want help cataloguing things the stock firmware (and other popular CrossPoint forks) handle poorly or not at all, so future work has a clear target list. Particularly interested in: + +* **RTL (right-to-left) text support:** Arabic, Hebrew, Persian, and similar scripts. +* **Languages with poor stock and fork coverage:** Especially those that need shaping, complex layout, or non-Latin font work that nobody is handling well today. +* **Other gaps:** Rendering edge cases, accessibility issues, input quirks, anything stock does badly and existing forks have not fixed. + +If you can read or use the device in one of these languages, your feedback (even without code) is genuinely useful. Open a Discussion with concrete examples (screenshots, sample EPUBs, expected vs actual behavior) and we will prioritize from there. -* **Interactive Apps:** No Notepads, Calculators, or Games. This is a reader, not a PDA. -* **Active Connectivity:** No RSS readers, News aggregators, or Web browsers. Background Wi-Fi tasks drain the battery - and complicate the single-core CPU's execution. -* **Media Playback:** No Audio players or Audio-books. -* **Complex Annotation:** No typed out notes. These features are better suited for devices with better input - capabilities and more powerful chips. +## 6. Funding and Contributor Sustainability -### In-scope — Technically Unsupported +CrossPoint uses [Royalty.dev](https://royalty.dev) (yes, a product built by [@itsthisjustin](https://github.com/itsthisjustin)) to fund contributors. There has been some tension in the community around this, so the intent is being clarified here directly. -*These features align with CrossPoint's goals but are impractical on the current hardware or produce poor UX.* +**Why we do this:** -* **PDF Rendering:** PDFs are fixed-layout documents, so rendering them requires displaying pages as images rather than reflowable text — resulting in constant panning and zooming that makes for a poor reading experience on e-ink. +* To maintain long-term interest from contributors and maintainers, in direct response to substantial community requests for a way to give back. +* To motivate contributors to invest in the *core* project rather than spinning up competing forks. +* To help pay for new ESP32 devices so we can port CrossPoint to additional hardware. +* To give the project a credible long-term path to sustainability. -## 3. Idea Evaluation +**How it works:** -While I appreciate the desire to add new and exciting features to CrossPoint Reader, CrossPoint Reader is designed to be -a lightweight, reliable, and performant e-reader. Things which distract or compromise the device's core mission will not -be accepted. As a guiding question, consider if your idea improve the "core reading experience" for the average user, -and, critically, not distract from that reading experience. +* Funds are distributed automatically to contributors based on impact to the codebase and tenure on the project. +* Over **$600** was raised in the first few hours after opening up funding, which is a signal the demand is real. +* The exact scoring methodology is published at . -> **Note to Contributors:** If you are unsure if your idea fits the scope, please open a **Discussion** before you start -> coding! +**This is not fixed in stone.** The weighting, eligibility, and distribution rules can be tweaked as we learn what works for this project. If you have concerns or suggestions about how funds are allocated, open a Discussion. The goal is a system that fairly recognizes the people doing the work, not a perfect one on day one. diff --git a/USER_GUIDE.md b/USER_GUIDE.md index 8c314a6e67..1b8dc53174 100644 --- a/USER_GUIDE.md +++ b/USER_GUIDE.md @@ -28,8 +28,10 @@ Welcome to the **CrossPoint** firmware. This guide outlines the hardware control - [3.6.5 OPDS Servers (Multiple Libraries)](#365-opds-servers-multiple-libraries) - [3.6.6 Web Settings (Wi-Fi + OPDS)](#366-web-settings-wi-fi--opds) - [3.6.7 KOReader Sync Quick Setup](#367-koreader-sync-quick-setup) - - [Option A: Free Public Server (`sync.koreader.rocks`)](#option-a-free-public-server-synckoreaderrocks) - - [Option B: Self-Hosted Server (Docker Compose)](#option-b-self-hosted-server-docker-compose) + - [Option A: CrossPoint Sync Server (`sync.crosspointreader.com`, default)](#option-a-crosspoint-sync-server-synccrosspointreadercom-default) + - [Option B: Legacy Public KOReader Server (`sync.koreader.rocks`)](#option-b-legacy-public-koreader-server-synckoreaderrocks) + - [Option C: Self-Hosted Server (Docker Compose)](#option-c-self-hosted-server-docker-compose) + - [Syncing While Reading](#syncing-while-reading) - [3.7 Sleep Screen](#37-sleep-screen) - [Cover settings](#cover-settings) - [Custom images](#custom-images) @@ -261,6 +263,8 @@ The Settings screen allows you to configure the device's behavior. There are a f - "ON" - Vertical space will be added between paragraphs in Reading Mode - "OFF" - Paragraphs will not have vertical space added, but will have first-line indentation +- **Dictionary**: Select the StarDict dictionary used for word lookups while reading, or "None" to disable lookups. *(Only shown when at least one dictionary folder exists under `/dictionaries/` on the SD card — see [docs/dictionary.md](docs/dictionary.md) for setup and usage.)* + - **Text Anti-Aliasing**: Whether to show smooth grey edges (anti-aliasing) on text in reading mode. Note this slows down page turns slightly. - **Images**: Whether to display embedded images (JPG/PNG) found in EPUB files; options are "ON" (default) or "OFF". @@ -280,6 +284,7 @@ The Settings screen allows you to configure the device's behavior. There are a f - **Long-press Menu**: Selects the function bound to holding the menu button (Confirm) while reading an EPUB. **Cycles through the available functions** each time the setting is selected — additional functions may be added in future releases, so this is not a binary on/off toggle. A short press of Confirm always opens the reader menu as normal: - "Bookmark" (default) - Hold Confirm (~0.4 second) to drop a bookmark at the current page. - "KOSync" - Hold Confirm (~1 second) to launch KOReader sync directly. + - "Dictionary" - Hold Confirm (~0.4 second) to start dictionary word selection on the current page (see [docs/dictionary.md](docs/dictionary.md)). - "Disabled" - Long-press is ignored; only short-press opens the reader menu. - **Short Power Button Click**: Controls the effect of a short click of the power button: @@ -297,7 +302,7 @@ The Settings screen allows you to configure the device's behavior. There are a f - **Wi-Fi Networks**: Connect to Wi-Fi networks for file transfers and firmware updates. -- **KOReader Sync**: Options for setting up KOReader for syncing book progress. +- **KOReader Sync**: Options for setting up KOReader for syncing book progress. **Smart sync** is the default for new configurations and auto-resolves simple push/pull decisions. Existing credential files retain **Ask every time** when migrated; you can switch Sync Behavior at any time if you prefer manual confirmation. - **OPDS Servers**: Manage one or more OPDS [(Open Publication Distribution System)](https://en.wikipedia.org/wiki/Open_Publication_Distribution_System) libraries for browsing and downloading books. See [OPDS Servers (Multiple Libraries)](#365-opds-servers-multiple-libraries) below. @@ -360,9 +365,37 @@ Behavior notes: CrossPoint can sync reading progress with KOReader-compatible sync servers. It also interoperates with KOReader apps/devices when they use the same server and credentials. -##### Option A: Free Public Server (`sync.koreader.rocks`) +##### Option A: CrossPoint Sync Server (`sync.crosspointreader.com`, default) + +When **Sync Server URL** is left empty, CrossPoint uses the free CrossPoint sync server at `https://sync.crosspointreader.com`. It speaks the standard KOReader sync protocol (so KOReader apps can use it too) and additionally stores an exact spine/page position for lossless CrossPoint-to-CrossPoint sync. + +1. On each CrossPoint device: + + - Go to **Settings -> System -> KOReader Sync**. + + - Set **Username** and **Password** (enter the plain password; CrossPoint computes MD5 internally, and use the same values on all devices). + + - Leave **Sync Server URL** empty (or set it to `https://sync.crosspointreader.com`). + + - On the first device, run **Sign Up** once to create the account directly from the device. On every other device, just run **Authenticate**. -1. Register a user once (only if needed): +Accounts are per server. Existing `sync.koreader.rocks` credentials do not exist on the CrossPoint server; either sign up again with the same username/password or use Option B to keep using the legacy server. + +##### Option B: Legacy Public KOReader Server (`sync.koreader.rocks`) + +Use this if you already sync KOReader devices against the official public server. + +1. On each CrossPoint device: + + - Go to **Settings -> System -> KOReader Sync**. + + - Set **Sync Server URL** to `https://sync.koreader.rocks` (required; an empty URL now points at the CrossPoint server instead). + + - Set **Username** and **Password** to your existing KOReader Sync credentials. + + - Run **Authenticate**. + +2. If you do not have an account yet, run **Sign Up** on the device, or register once with curl: ```bash USERNAME="user" @@ -375,27 +408,9 @@ curl -i "https://sync.koreader.rocks/users/create" \ --data "{\"username\":\"$USERNAME\",\"password\":\"$PASSWORD_MD5\"}" ``` -Already have KOReader Sync credentials? Skip registration; basic sync only requires using the same existing username/password on all devices. - When this returns `HTTP 402` with `{"code":2002,"message":"Username is already registered."}`, pick a different username or use that existing account. -2. On each CrossPoint device: - - - Go to **Settings -> System -> KOReader Sync**. - - - Set **Username** and **Password** (enter the plain password; CrossPoint computes MD5 internally, and use the same values on all devices). - - - Set **Sync Server URL** to `https://sync.koreader.rocks`, or leave it empty (both use the same default KOReader sync server). - - - Run **Authenticate**. - -3. While reading, press **Confirm** to open the reader menu, then select **Sync Progress**. - - - Choose **Apply Remote** to jump to remote progress. - - - Choose **Upload Local** to push current progress. - -##### Option B: Self-Hosted Server (Docker Compose) +##### Option C: Self-Hosted Server (Docker Compose) 1. Start a sync server: @@ -468,11 +483,12 @@ If this returns `HTTP 402` with `{"code":2002,"message":"Username is already reg If you use the HTTPS listener, use `https://:7200` (`curl -k` only for self-signed certificate testing). -5. While reading, press **Confirm** to open the reader menu, then select **Sync Progress**. - - - Choose **Apply Remote** to jump to remote progress. - - - Choose **Upload Local** to push current progress. +##### Syncing While Reading + +Once any of the options above is set up, press **Confirm** while reading to open the reader menu, then select **Sync Progress**. Alternatively, set **Settings -> Controls -> Long-press Menu** to **KOSync** and hold Confirm to launch sync directly. + +- With **Sync Behavior** set to **Ask every time**, choose **Apply Remote** to jump to remote progress or **Upload Local** to push current progress. +- With **Sync Behavior** set to **Smart sync**, CrossPoint auto-resolves simple cases: upload when no remote progress exists, confirm and leave both unchanged when local and remote progress are already synchronized, upload when local progress is further ahead, or apply remote when remote progress is further ahead. ### 3.7 Sleep Screen @@ -570,7 +586,7 @@ If the device goes to sleep or you close the book while viewing a footnote, the * **Return to Home:** Press the **Back** button to close the book and return to the **[Home](#31-home-screen)** screen. * **Return to Browse Files:** Press and hold the **Back** button to close the book and return to the **[Browse Files](#33-browse-files-screen)** screen. * **Reader Menu:** Press **Confirm** to open the **[Reader Menu](#5-reader-menu)**, which includes chapter navigation, reading options, and more. -* **Long-press Confirm (configurable):** Holding **Confirm** runs the function chosen by the **Long-press Menu** setting in **[Controls Settings](#363-controls)** — "Bookmark" (default) drops a bookmark, "KOSync" launches KOReader Sync, "Disabled" does nothing. A short press always opens the Reader Menu. +* **Long-press Confirm (configurable):** Holding **Confirm** runs the function chosen by the **Long-press Menu** setting in **[Controls Settings](#363-controls)** — "Bookmark" (default) drops a bookmark, "KOSync" launches KOReader Sync, "Dictionary" starts a word lookup, "Disabled" does nothing. A short press always opens the Reader Menu. ### Supported Languages @@ -592,6 +608,7 @@ Available options include: - **Select Chapter** – Open the table of contents to jump to a specific chapter (see [Chapter Selection](#51-chapter-selection) below). - **Footnotes** – Navigate to the footnotes for the current section *(only shown in books that contain footnotes)*. +- **Look Up** – Select a word on the current page and show its dictionary definition (see [docs/dictionary.md](docs/dictionary.md)). Requires a dictionary to be selected in **Settings → Reader → Dictionary**. - **Reading Orientation** – Cycle through screen orientations without leaving the reader. - **Auto Turn (Pages Per Minute)** – Cycle through automatic page turn speed options for hands-free reading. - **Go to %** – Jump to a specific position in the book by percentage. diff --git a/bin/clang-format-fix b/bin/clang-format-fix index aea136fee5..5e88a87d11 100755 --- a/bin/clang-format-fix +++ b/bin/clang-format-fix @@ -47,6 +47,7 @@ git ls-files --exclude-standard ${GIT_LS_FILES_FLAGS} \ | grep -v -E '^lib/EpdFont/builtinFonts/' \ | grep -v -E '^lib/Epub/Epub/hyphenation/generated/' \ | grep -v -E '^lib/uzlib/' \ + | grep -v -E '^lib/miniz/third_party/' \ | xargs -r "${CLANG_FORMAT_BIN}" -style=file -i # Restore strict pipeline failure handling for the rest of the script. set -o pipefail diff --git a/docs/contributing/README.md b/docs/contributing/README.md index eae9334f2c..540d371259 100644 --- a/docs/contributing/README.md +++ b/docs/contributing/README.md @@ -7,5 +7,6 @@ It is written for software developers who may be new to embedded development. - [Architecture Overview](./architecture.md) - [Development Workflow](./development-workflow.md) - [Testing and Debugging](./testing-debugging.md) +- [Touch and UI Development](./touch-and-ui.md) If you are new, start with [Getting Started](./getting-started.md). diff --git a/docs/contributing/touch-and-ui.md b/docs/contributing/touch-and-ui.md new file mode 100644 index 0000000000..ec4211dc6c --- /dev/null +++ b/docs/contributing/touch-and-ui.md @@ -0,0 +1,221 @@ +# Touch and UI Development + +CrossPoint now runs on touch devices (Seeed Sticky, M5Paper, LilyGo T5) alongside the button-only Xteink X3/X4. Every screen must work with both input styles. There are two supported ways to get there: + +1. **New screens: build them with FreeInkUI components.** Touch hit-testing, tap highlighting, long-press, and button focus navigation come with the component; you never hand-roll coordinate math. +2. **Existing screens and in-flight features: use the MappedInputManager touch bridge.** A small set of helpers adds tap/hold/swipe support to hand-rolled rendering without restructuring the activity. + +If you are starting a new activity, use FreeInkUI. If you have a feature branch with a hand-rolled screen already working on buttons, use the bridge; do not rewrite mid-flight. + +--- + +## Path 1: New screens with FreeInkUI + +FreeInkUI (`freeink-sdk/libs/ui/FreeInkUI`, namespace `freeink::ui`) is an immediate-mode component library. The core idea: + +- While a component renders, it registers its tappable areas ("hit rects") into the frame's interaction buffer via `Frame::hit(rect, action, value, inputMask, state)`. +- Each loop you build an `InputSnapshot` from the input manager and route it against that buffer. If a tap (or mapped button press) lands in a registered rect, the routed `ActionEvent` tells you which action fired and with what value. +- Components query `frame.stateFor(action, value)` while painting, so touch-down highlight and focus states render correctly without any per-activity code. + +You get touch, hold highlighting, long-press, minimum touch-target sizing, and orientation-aware coordinates for free. The same action IDs fire from physical buttons, so one code path serves both input styles. + +### Component inventory + +All under `freeink-sdk/libs/ui/FreeInkUI/include/components/`: + +| Category | Components | +|---|---| +| Controls | `button`, `checkbox`, `slider`, `progress-bar`, `header` | +| Lists | `list` (virtualized), `table`, `dropdown`, `radio-group`, `setting-row`, `toggle-row`, `stepper-row` | +| Keyboard | `keyboard` (QWERTY/AZERTY/QWERTZ/ES layouts), `key-grid` | +| Overlays | `popup`, `option-dialog`, `context-menu`, `message-panel`, `toast` | +| Bars | `status-bar`, `tab-bar`, `reader-chrome`, `battery-indicator`, `gesture-bar`, `tap-zones` | +| Media | `book-card`, `cover-grid`, `cover-carousel`, `metric-card` | +| Text | `text-field`, `text-area` | + +### Integration skeleton + +The in-tree reference is [`src/activities/util/KeyboardEntryActivity.cpp`](../../src/activities/util/KeyboardEntryActivity.cpp); it drives the FreeInkUI keyboard component inside a normal Activity. The shape: + +```cpp +#include +namespace fui = freeink::ui; + +// Render step: draw the component and (re)register its hit rects. +fui::GfxRendererTarget target(renderer); // adapts GfxRenderer to FreeInkUI's DrawTarget +target.setFont(fui::GfxRendererTarget::FONT_BODY, UI_12_FONT_ID); +const fui::DeviceContext device = target.deviceContext(); // orientation, safe area, touch sizing + +fui::Frame<48> frame(target, device, fui::InputSnapshot{}, interactions); // 48 = max hit rects +fui::KeyboardProps props; +props.layout = ¤tLayout(); +props.keyAction = ACTION_KEY; // one action id; the key is the event value +props.inputMask = fui::InputTouch | fui::InputLongPress; +fui::keyboard(frame, kbRect, props); // draws AND registers hit rects +``` + +```cpp +// Input step (each loop): feed touch state, act on routed events. +int tx, ty, tapX, tapY, hx, hy; +const bool pressedDown = mappedInput.wasScreenTouchDown(tx, ty); +const bool tapped = mappedInput.wasScreenTapped(tapX, tapY); +const bool inContact = mappedInput.isScreenTouchHeld(hx, hy); + +const auto result = touchRouter.update(interactions, pressedDown, tx, ty, + tapped, tapX, tapY, inContact, millis()); +if (result.event) { + activateValue(result.event.value, result.event.longPress); + requestUpdate(); +} else if (result.activeChanged) { + requestUpdate(); // repaint touch-down highlight +} +``` + +Notes: + +- `Frame` is templated on the max number of hit rects; the buffer is stack/static, no heap. +- `fui::TouchHoldRouter` (see `components/keyboard/keyboard.h`) synthesizes long-press while the finger is still down and swallows the eventual release. Use it whenever a component distinguishes tap from long-press. +- For simpler screens without long-press, `FreeInkApp` / `Screen` (`FreeInkApp.h`) is the ergonomic layer: it owns the interaction buffer, offers a top-to-bottom builder (`takeTop`, footer helpers, etc.), and its `render(input)` call routes the snapshot and dispatches registered action callbacks in one step. `snapshotFrom(input, device)` in `FreeInkUIInputManager.h` builds the `InputSnapshot` with orientation-aware touch mapping. +- Everything stays allocation-free and works on the button-only devices unchanged: physical buttons route through the same interaction table via each hit rect's `inputMask`. + +--- + +## Path 2: Adding touch to existing hand-rolled screens + +For activities that draw their own rows, menus, and buttons, `MappedInputManager` ([src/MappedInputManager.h](../../src/MappedInputManager.h)) exposes bridge helpers. They all return **logical screen coordinates** (orientation already applied via `GfxRenderer::tapToLogical`); never touch raw normalized panel coordinates or the SDK `InputManager` directly. + +| Helper | Use for | +|---|---| +| `wasScreenTapped(x, y)` | A completed tap (press + release), with logical coords | +| `wasScreenTouchDown(x, y)` | Touch-down (held > 90 ms, not yet released): draw selection highlight | +| `isScreenTouchHeld(x, y)` | Live contact position while the finger is down (drag tracking) | +| `wasTapInRect(x, y, w, h)` | One-off hit test on a rectangle (a single button, a banner) | +| `wasListItemTapped(index, count, selected, listTop, listHeight, hasSubtitle)` | Taps on a standard UITheme list; does the row/paging math for you | +| `wasListItemTouchedDown(...)` | Same geometry, touch-down phase (highlight before activate) | +| `rowTouch(row, top, rowStep, rowCount, xStart, xEnd, rowHeight)` | Any custom band of equal-height rows; returns `RowTouch::None/Down/Tap` | +| `colTouch(col, left, colStep, colCount, yStart, yEnd, colWidth)` | Horizontal button bands (dialogs, prompts) | +| `wasSwipe()` | Raw swipe direction if you need one beyond the global gestures | +| `hasTouch()` | True when the device has a touch panel (rarely needed; helpers simply never fire without one) | + +### Pattern A: standard themed list + +One call per loop; UITheme owns the row geometry ([EpubReaderBookmarksActivity.cpp:123](../../src/activities/reader/EpubReaderBookmarksActivity.cpp)): + +```cpp +int tapped = -1; +if (mappedInput.wasListItemTapped(tapped, bookmarks.size(), selectorIndex, listY, listHeight, true)) { + selectorIndex = tapped; + openBookmark(); + return; +} +``` + +### Pattern B: custom rows with hold highlight + +For non-theme row layouts, use `rowTouch` and distinguish `Down` (highlight) from `Tap` (activate), as in [EpubReaderFootnotesActivity.cpp](../../src/activities/reader/EpubReaderFootnotesActivity.cpp): + +```cpp +int row = -1; +const auto touch = mappedInput.rowTouch(row, listTop, lineHeight, visibleCount, + contentX, contentX + contentWidth); +if (touch != MappedInputManager::RowTouch::None) { + const int touched = scrollOffset + row; + if (touch == MappedInputManager::RowTouch::Down) { + if (selectedIndex != touched) { selectedIndex = touched; requestUpdate(); } + } else { // RowTouch::Tap + selectedIndex = touched; + activateSelection(); + } + return; +} +``` + +The `Down` state exists because e-ink repaints are slow: highlight on touch-down gives immediate feedback, activation happens on release. + +### Global gestures: do not reimplement these + +Three gestures are handled once, for every screen. Activities must not add their own edge-swipe handling: + +| Gesture | Trigger | Where it is handled | +|---|---|---| +| Back | Right-swipe starting in the left 25% of the screen | Folded into `Button::Back`, so the existing `wasPressed(Button::Back)` in your activity already fires | +| Home | Up-swipe starting in the bottom 14% | `ActivityManager::loop()`; pops to Home (activities can override via `handleHomeGesture()`) | +| Menu | Down-swipe starting in the top 14% | Activities that have a menu check `wasMenuGesture()` themselves (the reader does this) | + +Because the back gesture arrives as `Button::Back`, most button-era activities gain back-swipe support with zero changes. That is the bar to aim for: bridge helpers should make touch an additive layer over the button flow, not a second input state machine. + +### Bridge rules + +- Handle touch in `loop()` next to the existing button handling, one helper call per interaction zone, and `return` after consuming an event (mirrors the button pattern). +- Never call the SDK `InputManager` or read GPIO directly; the HAL rule from the main guide applies to touch too. +- Coordinates from the helpers are logical and orientation-correct on all four rotations; test at least Portrait and one Landscape mode before PR. +- Nothing to clean up in `onExit()`; the helpers are stateless from the activity's point of view. + +--- + +## Building and testing on non-Xteink devices + +Each MCU family is its own binary: X3/X4 are ESP32-C3, Sticky and LilyGo T5 are ESP32-S3, M5Paper v1.1 is a classic ESP32. The Sticky env ships in `platformio.ini` (`pio run -e sticky`). Envs for other devices go in **`platformio.local.ini`**, a gitignored file that PlatformIO merges over `platformio.ini` (see `extra_configs`). Create it next to `platformio.ini`; personal envs, ports, and debug flags live there and never get committed. + +Both envs below extend the repo's `[base]`, so they build against the `freeink-sdk` submodule with all the normal deps and scripts. + +### M5Paper v1.1 (classic ESP32, IT8951 panel) + +```ini +[env:m5paper_v11] +extends = base +board = esp32dev +board_build.mcu = esp32 +board_build.flash_mode = qio +; CP2104 UART bridge: 921600 drops out on macOS after the stub baud switch +upload_speed = 460800 +build_unflags = + ${base.build_unflags} + ; classic ESP32 has UART serial, not USB CDC; Logging.h keys off these + -DARDUINO_USB_MODE=1 + -DARDUINO_USB_CDC_ON_BOOT=1 +build_flags = + ${base.build_flags} + -DFREEINK_DEVICE_M5PAPER=1 + ; the 63KB 540x960 framebuffer lives in PSRAM (FREEINK_FB_PSRAM auto-on) + -DBOARD_HAS_PSRAM + -DCROSSPOINT_VERSION=\"${crosspoint.version}-m5paper\" + -DENABLE_SERIAL_LOG + -DLOG_LEVEL=2 + ; touch-first device: hide front-button hint labels + -DCROSSPOINT_SHOW_BUTTON_HINTS=0 + ; archive-scan-order workaround: without these a full relink drops Wire's i2c symbols + -Wl,-u,i2cInit + -Wl,-u,i2cSlaveInit +``` + +### LilyGo T5 S3 (ESP32-S3, controller-less panel via LovyanGFX) + +```ini +[env:lilygo_t5s3] +extends = base +board = esp32-s3-devkitc1-n16r8 +board_build.mcu = esp32s3 +build_flags = + ${base.build_flags} + -DFREEINK_DEVICE_LILYGO=1 + ; board injects the parallel-bus pins + PMIC power hooks (BoardT5S3) + -DFREEINK_LGFX_EPD_CONFIG=lilygoT5S3LgfxConfig + -DCROSSPOINT_VERSION=\"${crosspoint.version}-lilygo\" + -DENABLE_SERIAL_LOG + -DLOG_LEVEL=2 + -DCROSSPOINT_SHOW_BUTTON_HINTS=0 +lib_deps = + ${base.lib_deps} + ; LgfxEpdConfig for the T5 S3 (pins, PCA9535/TPS65185 power sequence) + BoardT5S3=symlink://freeink-sdk/libs/hardware/BoardT5S3 + ; LovyanGFX Panel_EPD drives the controller-less ED047TC1 panel + m5stack/M5GFX @ 0.2.20 +``` + +Then `pio run -e m5paper_v11 -t upload` (or `-e lilygo_t5s3`). Gotchas worth knowing: + +- **Flash mode matters.** The M5Paper is `qio`; the X4-family standalone envs need `dio`. A wrong flash-mode header boots into a `partition 0 invalid magic number 0xffff` loop even though esptool verified the write. +- **One `FREEINK_DEVICE_*` flag per env** selects the board profile (pins, panel, touch controller) from the SDK's `BoardConfig`. See `freeink-sdk/platformio.sample.ini` for reference envs of every supported device. +- **Serial logs:** `[base]` does not enable logging; without `-DENABLE_SERIAL_LOG` a non-default env prints nothing. +- No touch hardware on your desk? The X4 build still exercises the same code paths through buttons; touch-specific behavior (tap zones, gestures) needs a real device. diff --git a/docs/dictionary.md b/docs/dictionary.md new file mode 100644 index 0000000000..c32a763fb5 --- /dev/null +++ b/docs/dictionary.md @@ -0,0 +1,51 @@ +# Dictionary + +Look up words while reading an EPUB using an offline StarDict dictionary stored on the SD card. + +## Supported Format + +The reader supports **StarDict** dictionaries. When searching for dictionaries online, look for "StarDict format" or files with `.dict`, `.idx`, and `.ifo` extensions. + +A dictionary folder must contain: + +- `.idx` — word index (required, **must be uncompressed** — a `.idx.gz` will not work; decompress it on your computer with `gzip -d` first) +- `.dict` or `.dict.dz` — definition data (`.dict.dz` is supported as-is; entries are decompressed on the fly during lookup) +- `.ifo` — metadata (optional) + +Not supported: `.syn` synonym files (ignored), dictionaries with 64-bit index offsets (`idxoffsetbits=64` in the `.ifo` — rare, and rejected with an error), and HTML-formatted definitions render as raw markup rather than styled text. + +## Setting Up a Dictionary + +1. Copy your dictionary folder(s) to `/dictionaries/` on the SD card — one dictionary per folder, e.g. `/dictionaries/webster/webster.idx` + `webster.dict.dz`. A hidden `/.dictionaries/` folder (dot-prefixed) works the same way, for keeping it out of the file browser. +2. Open **Settings → Reader → Dictionary** on the device. +3. Select a dictionary from the list, or **None** to disable lookups. + +The Dictionary setting only appears when at least one usable dictionary folder exists. Folders containing more than one dictionary (multiple `.idx` stems) are skipped as ambiguous. + +## Looking Up a Word + +Two ways to start a lookup while reading: + +- Open the reader menu (**Confirm**) and choose **Look Up**. +- Or set **Settings → Controls → Long-press Menu** to "Dictionary", then hold **Confirm** (~0.4s) on the reading page. + +One word on the page becomes highlighted: + +1. Use **Left/Right** to move between words in reading order, and the side **Up/Down** buttons to jump between lines. +2. Press **Confirm** to look up the highlighted word. +3. Press **Back** to return to the reader. + +On the very first lookup with a dictionary (and again if the dictionary file changes), the reader shows *"Indexing dictionary…"* while it builds a small `.qidx` sidecar file next to the `.idx`. This takes a few seconds for large dictionaries and makes all subsequent lookups fast. The sidecar can be deleted safely at any time — it will simply be rebuilt. + +### How Lookup Works + +1. **Direct match** — the word is found as-is (case-insensitive) in the dictionary index. Surrounding punctuation is ignored. +2. **Stemming** — on a miss, common English word forms are retried automatically: possessives and plurals (`dogs` → `dog`, `stories` → `story`) and verb endings (`walked` → `walk`, `running` → `run`, `making` → `make`). +3. **Not found** — a short popup appears and you return to word selection. + +## The Definition Screen + +When a word is found, the definition screen shows the matched headword at the top and the definition text below, with a page counter for long definitions. + +- **Left/Right** or side **Up/Down** — previous / next page +- **Back** — return to word selection diff --git a/docs/file-formats.md b/docs/file-formats.md index eec9474f8c..b66e05a675 100644 --- a/docs/file-formats.md +++ b/docs/file-formats.md @@ -90,13 +90,19 @@ if (parsedSize != fileSize) { ## `section.bin` -### Version 28 +### Version 30 Each file in `sections/*.bin` stores one laid-out spine section. The header is also the cache-busting key: if any layout-affecting setting differs from the current reader settings, the section is discarded and rebuilt. -Version 28 includes: +Version 30 is binary-identical to version 29. The version was bumped because +Arabic contextual shaping changed text measurement (`getTextAdvanceX` now +measures the shaped visual text), so word positions cached by v29 no longer +match what `drawText` renders. + +Version 28 introduced serialized word style bits for underline, strikethrough, +superscript, and subscript. The format also includes: - cache-busting fields for paragraph alignment, hyphenation, embedded CSS, image rendering mode, and Focus Reading @@ -107,6 +113,10 @@ Version 28 includes: - per-page footnote entries - serialized word style bits for underline, strikethrough, superscript, and subscript +- flat TextBlock word storage (v29): per-word arrays plus one shared + NUL-terminated text blob, replacing v28's length-prefixed word strings. The + on-disk order mirrors the in-RAM arena so the firmware reads a whole block + payload with a single allocation and a single SD read ImHex pattern: @@ -115,7 +125,7 @@ import std.mem; import std.string; import std.core; -#define EXPECTED_VERSION 28 +#define EXPECTED_VERSION 30 #define MAX_STRING_LENGTH 65535 #define FOOTNOTE_NUMBER_LEN 32 #define FOOTNOTE_HREF_LEN 96 @@ -176,14 +186,20 @@ struct BlockStyle { struct TextBlock { u16 wordCount; - String words[wordCount]; - s16 wordXPos[wordCount]; - WordStyle wordStyle[wordCount]; - u8 hasFocus; - if (hasFocus != 0) { - u8 wordFocusBoundary[wordCount] [[comment("UTF-8 byte boundary between bold prefix and suffix")]]; - u16 wordFocusSuffixX[wordCount] [[comment("Suffix x offset from word start")]]; + u16 textBytes [[comment("Total size of text[], including one NUL per word")]]; + + if (wordCount > 0) { + u16 textOff[wordCount] [[comment("Byte offset of word i's text within text[]")]]; + s16 wordXPos[wordCount]; + if (hasFocus != 0) { + u16 wordFocusSuffixX[wordCount] [[comment("Suffix x offset from word start")]]; + } + WordStyle wordStyle[wordCount]; + if (hasFocus != 0) { + u8 wordFocusBoundary[wordCount] [[comment("UTF-8 byte boundary between bold prefix and suffix")]]; + } + char text[textBytes] [[comment("All words back to back, each NUL-terminated")]]; } BlockStyle blockStyle; diff --git a/docs/i18n.md b/docs/i18n.md index 51e22ea516..736d6aa5ac 100644 --- a/docs/i18n.md +++ b/docs/i18n.md @@ -236,8 +236,9 @@ Older firmware versions used: /.crosspoint/language.bin ``` -On load, current firmware migrates that legacy file into `settings.json` and -renames it to `language.bin.bak`. +That legacy file is no longer read. Upgrading from a firmware old enough to +have written it resets the language to the default; re-select it once and it +persists in `settings.json`. --- diff --git a/docs/webserver.md b/docs/webserver.md index 9af956746a..e42f323787 100644 --- a/docs/webserver.md +++ b/docs/webserver.md @@ -32,9 +32,14 @@ networks or in hotspot mode when you control who is connected. ## Join Network Mode 1. Select **Join Network**. -2. Pick a 2.4 GHz Wi-Fi network from the scan results. -3. Enter the password if prompted. -4. Save credentials if you want the reader to reconnect automatically next time. +2. If you have saved Wi-Fi credentials, CrossPoint first tries the last + connected network, then other visible saved networks in signal-strength + order. Press **Back** to cancel or **Confirm** to stop auto-connect and show + the network list. +3. If the network list is shown, pick a 2.4 GHz Wi-Fi network from the scan + results. +4. Enter the password if prompted. +5. Save credentials if you want the reader to reconnect automatically next time. After connection, the reader shows: diff --git a/freeink-sdk b/freeink-sdk index f611d71d8e..566fce3d4f 160000 --- a/freeink-sdk +++ b/freeink-sdk @@ -1 +1 @@ -Subproject commit f611d71d8e860bb4ae50246e2e18b7985e1719ea +Subproject commit 566fce3d4fe45fdcf76853be788e4d497547b592 diff --git a/lib/EpdFont/EpdFont.cpp b/lib/EpdFont/EpdFont.cpp index 6055e8457e..d54a4f76eb 100644 --- a/lib/EpdFont/EpdFont.cpp +++ b/lib/EpdFont/EpdFont.cpp @@ -44,16 +44,17 @@ void EpdFont::getTextBounds(const char* string, const int startX, const int star continue; } - const int raiseBy = isCombining ? combiningMark::raiseAboveBase(glyph->top, glyph->height, lastBaseTop) : 0; + const combiningMark::Anchor anchor = combiningMark::anchorFor(cp); + const int raiseBy = isCombining ? combiningMark::raiseAboveBase(anchor, glyph->top, glyph->height, lastBaseTop) : 0; if (!isCombining && prevCp != 0) { const auto kernFP = getKerning(prevCp, cp); // 4.4 fixed-point kern lastBaseX += fp4::toPixel(prevAdvanceFP + kernFP); } - const int glyphBaseX = - isCombining ? combiningMark::centerOver(lastBaseX, lastBaseLeft, lastBaseWidth, glyph->left, glyph->width) - : lastBaseX; + const int glyphBaseX = isCombining ? combiningMark::anchorOver(anchor, lastBaseX, lastBaseLeft, lastBaseWidth, + glyph->left, glyph->width) + : lastBaseX; const int glyphBaseY = startY - raiseBy; *minX = std::min(*minX, glyphBaseX + glyph->left); diff --git a/lib/EpdFont/EpdFontData.h b/lib/EpdFont/EpdFontData.h index cb1d5250a0..498d092685 100644 --- a/lib/EpdFont/EpdFontData.h +++ b/lib/EpdFont/EpdFontData.h @@ -36,24 +36,71 @@ namespace combiningMark { constexpr int MIN_GAP_PX = 1; +/// Placement of a mark relative to its base glyph. The default heuristic — +/// centered over the base, raised clear of its top — suits Latin diacritics +/// and Arabic harakat, but misplaces the Hebrew niqqud whose identity depends +/// on position: dagesh sits inside the letter body, the shin/sin dots +/// distinguish the letter by sitting over its right/left arm, and holam hangs +/// over the left corner. "Native" anchors keep the glyph's font-designed +/// height (which may overlap the base) instead of raising it. +enum class Anchor : uint8_t { + CenterRaised, ///< centered over the base, lifted above its top (default) + CenterNative, ///< centered over the base at font-native height + RightNative, ///< right edges aligned, font-native height + LeftNative, ///< left edges aligned, font-native height +}; + +constexpr Anchor anchorFor(const uint32_t cp) { + switch (cp) { + case 0x05BC: // dagesh / mapiq / shuruk dot: inside the letter body + case 0x05BA: // holam haser for vav: straight above the vav stem + return Anchor::CenterNative; + case 0x05C1: // shin dot: over the letter's right arm + return Anchor::RightNative; + case 0x05B9: // holam: above the letter's left corner + case 0x05C2: // sin dot: over the letter's left arm + return Anchor::LeftNative; + default: + return Anchor::CenterRaised; + } +} + +/// Horizontal offset from the base bitmap's left edge to the mark bitmap's +/// left edge for a given anchor. +constexpr int anchorShift(const Anchor anchor, const int baseWidth, const int markWidth) { + switch (anchor) { + case Anchor::LeftNative: + return 0; + case Anchor::RightNative: + return baseWidth - markWidth; + default: + return baseWidth / 2 - markWidth / 2; + } +} + /// Compute the cursor-X at which to render a combining mark so its bitmap -/// is visually centered over the base glyph's bitmap. -constexpr int centerOver(int baseCursorPos, int baseLeft, int baseWidth, int markLeft, int markWidth) { - return baseCursorPos + baseLeft + baseWidth / 2 - markWidth / 2 - markLeft; +/// lands at its anchor position over the base glyph's bitmap. +constexpr int anchorOver(const Anchor anchor, const int baseCursorPos, const int baseLeft, const int baseWidth, + const int markLeft, const int markWidth) { + return baseCursorPos + baseLeft + anchorShift(anchor, baseWidth, markWidth) - markLeft; } -/// Rotated-90CW variant of centerOver. In the rotated coordinate system +/// Rotated-90CW variant of anchorOver. In the rotated coordinate system /// renderCharImpl uses (cursorY - left) instead of (cursorX + left), so /// every left/width term inverts sign. -constexpr int centerOverRotated90CW(int baseCursorPos, int baseLeft, int baseWidth, int markLeft, int markWidth) { - return baseCursorPos - baseLeft - baseWidth / 2 + markWidth / 2 + markLeft; +constexpr int anchorOverRotated90CW(const Anchor anchor, const int baseCursorPos, const int baseLeft, + const int baseWidth, const int markLeft, const int markWidth) { + return baseCursorPos - baseLeft - anchorShift(anchor, baseWidth, markWidth) + markLeft; } /// For combining marks that sit entirely above the baseline, compute how many /// pixels to raise the mark so there is at least MIN_GAP_PX between its bottom /// edge and the top of the base glyph. Returns 0 for marks that extend to or -/// below the baseline (e.g. cedilla, dot-below, ogonek). -constexpr int raiseAboveBase(int markTop, int markHeight, int baseTop) { +/// below the baseline (e.g. cedilla, dot-below, ogonek) and for anchors that +/// keep the font-native height (dagesh must stay inside the letter, the +/// shin/sin dots touch its arms). +constexpr int raiseAboveBase(const Anchor anchor, const int markTop, const int markHeight, const int baseTop) { + if (anchor != Anchor::CenterRaised) return 0; if (markTop - markHeight <= 0) return 0; const int gap = markTop - markHeight - baseTop; return (gap < MIN_GAP_PX) ? (MIN_GAP_PX - gap) : 0; @@ -61,6 +108,20 @@ constexpr int raiseAboveBase(int markTop, int markHeight, int baseTop) { } // namespace combiningMark +/// GCC/Clang (the ESP32 firmware toolchain) pack structs with __attribute__((packed)). +/// MSVC (host unit tests) has no equivalent attribute and instead needs a #pragma pack +/// region achieving the same 1-byte alignment. These macros keep the on-disk font layout +/// identical across both toolchains. +#if defined(_MSC_VER) +#define EPD_PACKED_BEGIN __pragma(pack(push, 1)) +#define EPD_PACKED_END __pragma(pack(pop)) +#define EPD_PACKED_ATTR +#else +#define EPD_PACKED_BEGIN +#define EPD_PACKED_END +#define EPD_PACKED_ATTR __attribute__((packed)) +#endif + /// Fixed-point conventions used by EpdGlyph and EpdFontData: /// advanceX: 12.4 unsigned fixed-point in uint16_t (use fp4::toPixel) /// kernMatrix: 4.4 signed fixed-point in int8_t (use fp4::toPixel) @@ -95,17 +156,21 @@ typedef struct { /// Maps a codepoint to a kerning class ID, sorted by codepoint for binary search. /// Class IDs are 1-based; codepoints not in the table have implicit class 0 (no kerning). +EPD_PACKED_BEGIN typedef struct { uint16_t codepoint; ///< Unicode codepoint uint8_t classId; ///< 1-based kerning class ID -} __attribute__((packed)) EpdKernClassEntry; +} EPD_PACKED_ATTR EpdKernClassEntry; +EPD_PACKED_END /// Ligature substitution for a specific glyph pair, sorted by `pair` for binary search. /// `pair` encodes (leftCodepoint << 16 | rightCodepoint) for single-key lookup. +EPD_PACKED_BEGIN typedef struct { uint32_t pair; ///< Packed codepoint pair (left << 16 | right) uint32_t ligatureCp; ///< Codepoint of the replacement ligature glyph -} __attribute__((packed)) EpdLigaturePair; +} EPD_PACKED_ATTR EpdLigaturePair; +EPD_PACKED_END /// Data stored for FONT AS A WHOLE typedef struct { diff --git a/lib/EpdFont/FontDecompressor.cpp b/lib/EpdFont/FontDecompressor.cpp index adfbb62807..786f7d3e70 100644 --- a/lib/EpdFont/FontDecompressor.cpp +++ b/lib/EpdFont/FontDecompressor.cpp @@ -33,12 +33,24 @@ void FontDecompressor::freePageBuffer() { } void FontDecompressor::freeHotGroup() { - hotGroup.clear(); - hotGroup.shrink_to_fit(); + free(hotGroup); + hotGroup = nullptr; + hotGroupCapacity = 0; hotGroupFont = nullptr; hotGroupIndex = UINT16_MAX; - hotGlyphBuf.clear(); - hotGlyphBuf.shrink_to_fit(); + free(hotGlyphBuf); + hotGlyphBuf = nullptr; + hotGlyphBufCapacity = 0; +} + +bool FontDecompressor::ensureCapacity(uint8_t*& buf, uint32_t& capacity, uint32_t needed) { + if (capacity >= needed) return true; + // Grow-only, free-then-malloc: every caller fully rewrites the buffer after a grow, so the + // old contents are dead -- freeing first gives the allocator its best shot on a tight heap. + free(buf); + buf = static_cast(malloc(needed)); // owned by FontDecompressor, freed in freeHotGroup() + capacity = buf ? needed : 0; + return buf != nullptr; } uint16_t FontDecompressor::getGroupIndex(const EpdFontData* fontData, uint32_t glyphIndex) { @@ -170,24 +182,20 @@ const uint8_t* FontDecompressor::getBitmap(const EpdFontData* fontData, const Ep } // Check if hot group already has this group decompressed — if not, decompress it - if (!(!hotGroup.empty() && hotGroupFont == fontData && hotGroupIndex == groupIndex)) { + if (!(hotGroup != nullptr && hotGroupFont == fontData && hotGroupIndex == groupIndex)) { stats.cacheMisses++; const EpdFontGroup& group = fontData->groups[groupIndex]; - hotGroup.resize(group.uncompressedSize); - if (hotGroup.empty()) { + // ensureCapacity may free the buffer, so the cached-group identity dies with it either way. + hotGroupFont = nullptr; + hotGroupIndex = UINT16_MAX; + if (!ensureCapacity(hotGroup, hotGroupCapacity, group.uncompressedSize)) { LOG_ERR("FDC", "Failed to allocate %u bytes for hot group %u", group.uncompressedSize, groupIndex); - hotGroupFont = nullptr; - hotGroupIndex = UINT16_MAX; stats.getBitmapTimeUs += micros() - tStart; return nullptr; } - if (!decompressGroup(fontData, groupIndex, hotGroup.data(), group.uncompressedSize)) { - hotGroup.clear(); - hotGroup.shrink_to_fit(); - hotGroupFont = nullptr; - hotGroupIndex = UINT16_MAX; + if (!decompressGroup(fontData, groupIndex, hotGroup, group.uncompressedSize)) { stats.getBitmapTimeUs += micros() - tStart; return nullptr; } @@ -200,18 +208,16 @@ const uint8_t* FontDecompressor::getBitmap(const EpdFontData* fontData, const Ep } // Compact just the requested glyph from byte-aligned data into scratch buffer - if (glyph->dataLength > hotGlyphBuf.size()) { - hotGlyphBuf.resize(glyph->dataLength); - } - if (hotGlyphBuf.empty()) { + if (!ensureCapacity(hotGlyphBuf, hotGlyphBufCapacity, glyph->dataLength)) { + LOG_ERR("FDC", "Failed to allocate %u bytes for glyph scratch", (unsigned)glyph->dataLength); stats.getBitmapTimeUs += micros() - tStart; return nullptr; } uint32_t alignedOff = getAlignedOffset(fontData, groupIndex, glyphIndex); - compactSingleGlyph(&hotGroup[alignedOff], hotGlyphBuf.data(), glyph->width, glyph->height); + compactSingleGlyph(&hotGroup[alignedOff], hotGlyphBuf, glyph->width, glyph->height); stats.getBitmapTimeUs += micros() - tStart; - return hotGlyphBuf.data(); + return hotGlyphBuf; } // --- Prewarm: pre-decompress glyph bitmaps for a page of text --- diff --git a/lib/EpdFont/FontDecompressor.h b/lib/EpdFont/FontDecompressor.h index 54e75a8639..6ac2764733 100644 --- a/lib/EpdFont/FontDecompressor.h +++ b/lib/EpdFont/FontDecompressor.h @@ -2,8 +2,6 @@ #include -#include - #include "EpdFontData.h" class FontDecompressor { @@ -67,13 +65,22 @@ class FontDecompressor { // Hot group: last decompressed group (byte-aligned) for non-prewarmed fallback path. // Kept in byte-aligned format; individual glyphs are compacted on demand into hotGlyphBuf. + // Nothrow high-water malloc buffers, NOT std::vector: getBitmap() runs on the render path, + // and under -fno-exceptions a vector resize that hits OOM abort()s the firmware instead of + // failing (field crash: hotGroup.resize() -> std::bad_alloc -> abort with ~11 KB free). + // ensureCapacity() returns false on OOM so the caller can skip the glyph gracefully. const EpdFontData* hotGroupFont = nullptr; uint16_t hotGroupIndex = UINT16_MAX; - std::vector hotGroup; + uint8_t* hotGroup = nullptr; // owned; freed in freeHotGroup()/dtor + uint32_t hotGroupCapacity = 0; // Scratch buffer for compacting a single glyph from the hot group. - // Valid until the next getBitmap() call. - std::vector hotGlyphBuf; + // Valid until the next getBitmap() call. Same ownership/OOM contract as hotGroup. + uint8_t* hotGlyphBuf = nullptr; + uint32_t hotGlyphBufCapacity = 0; + + // Grow (never shrink) an owned buffer to at least `needed` bytes; false on OOM, buffer freed. + static bool ensureCapacity(uint8_t*& buf, uint32_t& capacity, uint32_t needed); void freePageBuffer(); void freeHotGroup(); diff --git a/lib/EpdFont/SdCardFont.cpp b/lib/EpdFont/SdCardFont.cpp index 1609ab3a28..90da96354f 100644 --- a/lib/EpdFont/SdCardFont.cpp +++ b/lib/EpdFont/SdCardFont.cpp @@ -1195,7 +1195,8 @@ int SdCardFont::fetchAdvancesForCodepoints(uint32_t* codepoints, uint32_t cpCoun } template -int SdCardFont::buildAdvanceTableRange(Iter begin, Iter end, bool includeSpace, bool includeHyphen, uint8_t styleMask) { +int SdCardFont::buildAdvanceTableRange(Iter begin, Iter end, bool includeSpace, bool includeHyphen, uint8_t styleMask, + const char* extraText) { if (!loaded_) return -1; styleMask = resolveStyleMask(styleMask); if (styleMask == 0) return 0; @@ -1215,6 +1216,9 @@ int SdCardFont::buildAdvanceTableRange(Iter begin, Iter end, bool includeSpace, for (auto it = begin; it != end && !hitCap; ++it) { hitCap = collectUniqueCodepoints(asCStr(*it), codepoints, cpCount, MAX_UNIQUE_CODEPOINTS); } + if (extraText && !hitCap) { + hitCap = collectUniqueCodepoints(extraText, codepoints, cpCount, MAX_UNIQUE_CODEPOINTS); + } if (includeSpace && std::none_of(codepoints, codepoints + cpCount, [](uint32_t c) { return c == ' '; })) codepoints[cpCount++] = ' '; @@ -1232,12 +1236,13 @@ int SdCardFont::buildAdvanceTableRange(Iter begin, Iter end, bool includeSpace, return totalMissed; } -int SdCardFont::buildAdvanceTable(const char* utf8Text, uint8_t styleMask) { - return buildAdvanceTableRange(&utf8Text, &utf8Text + 1, false, false, styleMask); +int SdCardFont::buildAdvanceTable(const char* utf8Text, uint8_t styleMask, const char* extraText) { + return buildAdvanceTableRange(&utf8Text, &utf8Text + 1, false, false, styleMask, extraText); } -int SdCardFont::buildAdvanceTable(const std::vector& words, bool includeHyphen, uint8_t styleMask) { - return buildAdvanceTableRange(words.begin(), words.end(), words.size() > 1, includeHyphen, styleMask); +int SdCardFont::buildAdvanceTable(const std::vector& words, bool includeHyphen, uint8_t styleMask, + const char* extraText) { + return buildAdvanceTableRange(words.begin(), words.end(), words.size() > 1, includeHyphen, styleMask, extraText); } // --- Stats --- diff --git a/lib/EpdFont/SdCardFont.h b/lib/EpdFont/SdCardFont.h index 443fee684a..422b70c968 100644 --- a/lib/EpdFont/SdCardFont.h +++ b/lib/EpdFont/SdCardFont.h @@ -47,9 +47,12 @@ class SdCardFont { // Build a compact advance-only table for layout measurement. // Extracts ALL unique codepoints from words (no MAX_PAGE_GLYPHS cap), // batch-reads advanceX from SD, stores in a sorted per-style table. + // extraText: optional additional codepoints to warm in the same SD pass + // (e.g. shaped Arabic presentation forms the measurement path will look up). // Returns number of codepoints not found in font coverage. - int buildAdvanceTable(const char* utf8Text, uint8_t styleMask = 0x0F); - int buildAdvanceTable(const std::vector& words, bool includeHyphen, uint8_t styleMask = 0x0F); + int buildAdvanceTable(const char* utf8Text, uint8_t styleMask = 0x0F, const char* extraText = nullptr); + int buildAdvanceTable(const std::vector& words, bool includeHyphen, uint8_t styleMask = 0x0F, + const char* extraText = nullptr); // Look up advanceX for a codepoint from the advance table. // Returns the 12.4 fixed-point advance, or 0 if not found. @@ -140,11 +143,13 @@ class SdCardFont { // Full intervals loaded from file (kept in RAM for codepoint lookup) EpdUnicodeInterval* fullIntervals = nullptr; + EPD_PACKED_BEGIN struct BmpInterval16 { uint16_t first; uint16_t last; uint16_t offset; - } __attribute__((packed)); + } EPD_PACKED_ATTR; + EPD_PACKED_END static_assert(sizeof(BmpInterval16) == 6, "BmpInterval16 must remain compact"); BmpInterval16* bmpIntervals = nullptr; bool intervalsAreBmp16 = false; @@ -249,7 +254,8 @@ class SdCardFont { int32_t findGlobalGlyphIndex(const PerStyle& s, uint32_t codepoint) const; int fetchAdvancesForCodepoints(uint32_t* codepoints, uint32_t cpCount, uint8_t styleMask); template - int buildAdvanceTableRange(Iter begin, Iter end, bool includeSpace, bool includeHyphen, uint8_t styleMask); + int buildAdvanceTableRange(Iter begin, Iter end, bool includeSpace, bool includeHyphen, uint8_t styleMask, + const char* extraText = nullptr); int prewarmStyle(uint8_t styleIdx, const uint32_t* codepoints, uint32_t cpCount, bool metadataOnly); // Global helpers diff --git a/lib/EpdFont/builtinFonts/notosans_8_regular.h b/lib/EpdFont/builtinFonts/notosans_8_regular.h index a68226db46..3513734c03 100644 --- a/lib/EpdFont/builtinFonts/notosans_8_regular.h +++ b/lib/EpdFont/builtinFonts/notosans_8_regular.h @@ -3,12 +3,12 @@ * name: notosans_8_regular * size: 8 * mode: 1-bit - * Command used: fontconvert.py notosans_8_regular 8 ../builtinFonts/source/NotoSans/NotoSans-Regular.ttf ../builtinFonts/source/NotoSansHebrew/NotoSansHebrew-Regular.ttf --additional-intervals 0x05D0,0x05EA + * Command used: fontconvert.py notosans_8_regular 8 ../builtinFonts/source/NotoSans/NotoSans-Regular.ttf ../builtinFonts/source/NotoSansHebrew/NotoSansHebrew-Regular.ttf ../builtinFonts/source/NotoSansArabic/NotoSansArabic-Regular.ttf --additional-intervals 0x05D0,0x05EA --additional-intervals 0x060C,0x060C --additional-intervals 0x061B,0x061B --additional-intervals 0x061F,0x061F --additional-intervals 0x0621,0x0621 --additional-intervals 0x0640,0x0640 --additional-intervals 0x0660,0x0669 --additional-intervals 0x06BA,0x06BA --additional-intervals 0x06D4,0x06D4 --additional-intervals 0x06F0,0x06F9 --additional-intervals 0xFB56,0xFB59 --additional-intervals 0xFB66,0xFB69 --additional-intervals 0xFB7A,0xFB7D --additional-intervals 0xFB88,0xFB95 --additional-intervals 0xFB9E,0xFB9F --additional-intervals 0xFBA6,0xFBB1 --additional-intervals 0xFBFC,0xFBFF --additional-intervals 0xFE80,0xFEFC */ #pragma once #include "EpdFontData.h" -static const uint8_t notosans_8_regularBitmaps[15419] = { +static const uint8_t notosans_8_regularBitmaps[18647] = { 0xDB, 0x6D, 0xB6, 0xC3, 0xF4, 0xDE, 0xF7, 0xBD, 0x80, 0x0D, 0x83, 0x30, 0x66, 0x3F, 0xF7, 0xFE, 0x36, 0x04, 0xC7, 0xFE, 0xFF, 0xC6, 0x40, 0xD8, 0x1B, 0x00, 0x18, 0x18, 0xFE, 0xFE, 0xD8, 0xF8, 0xFC, 0x3E, 0x1F, 0x1B, 0xFF, 0xFE, 0x38, 0x18, 0x00, 0x01, 0xE1, 0x86, 0xCC, 0x13, 0x30, 0xCD, @@ -744,235 +744,437 @@ static const uint8_t notosans_8_regularBitmaps[15419] = { 0xFF, 0xFF, 0xC0, 0xE8, 0x6C, 0x36, 0x3B, 0x19, 0x8C, 0xC6, 0x67, 0x30, 0x18, 0x0C, 0x00, 0xFE, 0x7E, 0x07, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0xCC, 0xD9, 0x9B, 0x33, 0x66, 0x6F, 0xCD, 0xF1, 0xB8, 0x37, 0x0E, 0x7F, 0x87, 0xE0, 0x7F, 0xCF, 0xF8, 0xC3, 0x18, 0x73, 0x0E, 0x61, 0xCC, - 0x39, 0x87, 0x70, 0xFE, 0x1C, 0x0E, 0x01, 0xC0, 0x78, 0x0D, 0x81, 0xB0, 0x67, 0x0C, 0x63, 0xFC, - 0x7F, 0xCC, 0x1B, 0x03, 0x60, 0x30, 0x00, 0x18, 0x03, 0x00, 0x00, 0x3F, 0x37, 0x03, 0x1F, 0x7F, - 0x63, 0xE3, 0x67, 0x7F, 0x10, 0x0C, 0x0C, 0x0E, 0x01, 0xC0, 0x38, 0x06, 0x00, 0x00, 0x1C, 0x03, - 0x80, 0xF0, 0x1B, 0x03, 0x60, 0xCE, 0x18, 0xC7, 0xF8, 0xFF, 0x98, 0x36, 0x06, 0xC0, 0x60, 0x1C, - 0x1E, 0x0E, 0x08, 0x08, 0x3F, 0x37, 0x03, 0x1F, 0x7F, 0x63, 0xE3, 0x67, 0x7F, 0x10, 0x00, 0xC0, - 0xB8, 0x3E, 0x0D, 0x80, 0x00, 0x1C, 0x03, 0x80, 0xF0, 0x1B, 0x03, 0x60, 0xCE, 0x18, 0xC7, 0xF8, - 0xFF, 0x98, 0x36, 0x06, 0xC0, 0x60, 0x01, 0x87, 0x61, 0xF0, 0xD8, 0x00, 0x0F, 0xC3, 0x70, 0x0C, - 0x1F, 0x1F, 0xC6, 0x33, 0x8C, 0x67, 0x1F, 0xC1, 0x00, 0x60, 0x0C, 0x80, 0xF8, 0x0D, 0x80, 0x00, - 0x1C, 0x03, 0x80, 0xF0, 0x1B, 0x03, 0x60, 0xCE, 0x18, 0xC7, 0xF8, 0xFF, 0x98, 0x36, 0x06, 0xC0, - 0x60, 0xC0, 0x6C, 0x3E, 0x36, 0x00, 0x3F, 0x37, 0x03, 0x1F, 0x7F, 0x63, 0xE3, 0x67, 0x7F, 0x10, - 0x01, 0x00, 0x30, 0x16, 0x0F, 0x81, 0xB0, 0x00, 0x03, 0x80, 0x70, 0x1E, 0x03, 0x60, 0x6C, 0x19, - 0xC3, 0x18, 0xFF, 0x1F, 0xF3, 0x06, 0xC0, 0xD8, 0x0C, 0x03, 0x00, 0xC3, 0xE3, 0xE3, 0x60, 0x00, - 0xFC, 0x6E, 0x03, 0x0F, 0x9F, 0xCC, 0x6E, 0x33, 0x39, 0xFC, 0x20, 0x19, 0x03, 0xE0, 0x58, 0x07, - 0x01, 0xB0, 0x02, 0x03, 0x80, 0x70, 0x1E, 0x03, 0x60, 0x6C, 0x19, 0xC3, 0x18, 0xFF, 0x1F, 0xF3, - 0x06, 0xC0, 0xD8, 0x0C, 0x3B, 0x3E, 0x0C, 0x1E, 0x36, 0x00, 0x3F, 0x37, 0x03, 0x1F, 0x7F, 0x63, - 0xE3, 0x67, 0x7F, 0x10, 0x0E, 0x03, 0xE0, 0xEC, 0x00, 0x00, 0xE0, 0x1C, 0x07, 0x80, 0xD8, 0x1B, - 0x06, 0x70, 0xC6, 0x3F, 0xC7, 0xFC, 0xC1, 0xB0, 0x36, 0x03, 0x00, 0x01, 0x80, 0x30, 0x00, 0x1C, - 0x1E, 0x37, 0x00, 0x3F, 0x37, 0x03, 0x1F, 0x7F, 0x63, 0xE3, 0x67, 0x7F, 0x10, 0x1C, 0x1C, 0x06, - 0x00, 0xC0, 0x4C, 0x0F, 0x80, 0x00, 0x1C, 0x03, 0x80, 0xF0, 0x1B, 0x03, 0x60, 0xCE, 0x18, 0xC7, - 0xF8, 0xFF, 0x98, 0x36, 0x06, 0xC0, 0x60, 0x00, 0x0E, 0x2E, 0x3E, 0x1E, 0x00, 0x3F, 0x37, 0x03, - 0x1F, 0x7F, 0x63, 0xE3, 0x67, 0x7F, 0x10, 0x18, 0x01, 0x80, 0x4C, 0x0F, 0x80, 0x00, 0x1C, 0x03, - 0x80, 0xF0, 0x1B, 0x03, 0x60, 0xCE, 0x18, 0xC7, 0xF8, 0xFF, 0x98, 0x36, 0x06, 0xC0, 0x60, 0x00, - 0x18, 0x3A, 0x3E, 0x1E, 0x00, 0x3F, 0x37, 0x03, 0x1F, 0x7F, 0x63, 0xE3, 0x67, 0x7F, 0x10, 0x0C, - 0x01, 0xC0, 0x38, 0x09, 0x81, 0xF0, 0x00, 0x03, 0x80, 0x70, 0x1E, 0x03, 0x60, 0x6C, 0x19, 0xC3, - 0x18, 0xFF, 0x1F, 0xF3, 0x06, 0xC0, 0xD8, 0x0C, 0x1C, 0x0C, 0x2E, 0x3E, 0x1E, 0x00, 0x3F, 0x37, - 0x03, 0x1F, 0x7F, 0x63, 0xE3, 0x67, 0x7F, 0x10, 0x19, 0x03, 0xE0, 0x48, 0x09, 0x81, 0xF0, 0x00, + 0x39, 0x87, 0x70, 0xFE, 0x1C, 0x6F, 0xF0, 0x2D, 0xFC, 0x07, 0xE8, 0x00, 0xFF, 0xFE, 0x0C, 0x1C, + 0x1C, 0x1C, 0x18, 0x30, 0x00, 0xC1, 0x80, 0x00, 0x38, 0xF1, 0x83, 0x07, 0xDF, 0xBC, 0x00, 0xFB, + 0xF0, 0x00, 0x0E, 0xE4, 0x4C, 0xE6, 0x66, 0x66, 0x66, 0x67, 0x00, 0x42, 0xC6, 0xFE, 0x7E, 0x60, + 0x60, 0x60, 0x60, 0x60, 0x60, 0x70, 0x70, 0x00, 0x40, 0xF6, 0xDB, 0x6F, 0xF7, 0xFB, 0x01, 0x80, + 0xC0, 0x70, 0x18, 0x0C, 0x06, 0x00, 0x00, 0x08, 0x38, 0x70, 0xE0, 0xC0, 0xF8, 0x78, 0x70, 0xE0, + 0xC0, 0xFE, 0x7E, 0x00, 0x38, 0x7C, 0x66, 0xC6, 0xC6, 0xC6, 0xC6, 0xFE, 0x7C, 0x00, 0x80, 0xFE, + 0x7E, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x03, 0x00, 0x40, 0xB0, 0x66, 0x19, 0x8E, + 0x73, 0x0C, 0xC3, 0x60, 0xF8, 0x1E, 0x07, 0x01, 0xC0, 0x30, 0x00, 0x00, 0x0C, 0x03, 0x01, 0xC0, + 0x78, 0x1E, 0x0F, 0x83, 0x70, 0xCC, 0x63, 0x18, 0xEE, 0x1B, 0x06, 0x00, 0x00, 0x30, 0x7C, 0xEC, + 0xCC, 0xCE, 0xFE, 0x7E, 0x06, 0x06, 0x06, 0x06, 0x06, 0x00, 0x00, 0x00, 0x18, 0x03, 0xB0, 0x3C, + 0x07, 0x80, 0xF0, 0x1F, 0x06, 0x7F, 0xC7, 0xE0, 0x7F, 0xC0, 0x0E, 0xE4, 0x4C, 0xE6, 0x66, 0x66, + 0x66, 0x67, 0x00, 0x42, 0xC6, 0xFE, 0x7E, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x70, 0x70, 0x00, + 0x40, 0xF6, 0xDB, 0x6F, 0xF7, 0xFB, 0x01, 0x80, 0xC0, 0x70, 0x18, 0x0C, 0x06, 0x00, 0x00, 0x4C, + 0xDE, 0xD8, 0x7E, 0x7E, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x00, 0x38, 0x18, 0x3C, 0x7E, + 0x66, 0xC6, 0xC6, 0xC3, 0xD3, 0xFE, 0x7E, 0x1C, 0x79, 0xC3, 0x06, 0x07, 0xC7, 0x8C, 0x30, 0xE1, + 0x83, 0x00, 0x00, 0x40, 0xB0, 0x66, 0x19, 0x8E, 0x73, 0x0C, 0xC3, 0x60, 0xF8, 0x1E, 0x07, 0x01, + 0xC0, 0x30, 0x00, 0x00, 0x0C, 0x03, 0x01, 0xC0, 0x78, 0x1E, 0x0F, 0x83, 0x70, 0xCC, 0x63, 0x18, + 0xEE, 0x1B, 0x06, 0x00, 0x00, 0x30, 0x7C, 0xEC, 0xCC, 0xCE, 0xFE, 0x7E, 0x06, 0x06, 0x06, 0x06, + 0x06, 0x00, 0x0E, 0x01, 0xC0, 0x78, 0x0D, 0x81, 0xB0, 0x67, 0x0C, 0x63, 0xFC, 0x7F, 0xCC, 0x1B, + 0x03, 0x60, 0x30, 0x00, 0x18, 0x03, 0x00, 0x00, 0x3F, 0x37, 0x03, 0x1F, 0x7F, 0x63, 0xE3, 0x67, + 0x7F, 0x10, 0x0C, 0x0C, 0x0E, 0x01, 0xC0, 0x38, 0x06, 0x00, 0x00, 0x1C, 0x03, 0x80, 0xF0, 0x1B, + 0x03, 0x60, 0xCE, 0x18, 0xC7, 0xF8, 0xFF, 0x98, 0x36, 0x06, 0xC0, 0x60, 0x1C, 0x1E, 0x0E, 0x08, + 0x08, 0x3F, 0x37, 0x03, 0x1F, 0x7F, 0x63, 0xE3, 0x67, 0x7F, 0x10, 0x00, 0xC0, 0xB8, 0x3E, 0x0D, + 0x80, 0x00, 0x1C, 0x03, 0x80, 0xF0, 0x1B, 0x03, 0x60, 0xCE, 0x18, 0xC7, 0xF8, 0xFF, 0x98, 0x36, + 0x06, 0xC0, 0x60, 0x01, 0x87, 0x61, 0xF0, 0xD8, 0x00, 0x0F, 0xC3, 0x70, 0x0C, 0x1F, 0x1F, 0xC6, + 0x33, 0x8C, 0x67, 0x1F, 0xC1, 0x00, 0x60, 0x0C, 0x80, 0xF8, 0x0D, 0x80, 0x00, 0x1C, 0x03, 0x80, + 0xF0, 0x1B, 0x03, 0x60, 0xCE, 0x18, 0xC7, 0xF8, 0xFF, 0x98, 0x36, 0x06, 0xC0, 0x60, 0xC0, 0x6C, + 0x3E, 0x36, 0x00, 0x3F, 0x37, 0x03, 0x1F, 0x7F, 0x63, 0xE3, 0x67, 0x7F, 0x10, 0x01, 0x00, 0x30, + 0x16, 0x0F, 0x81, 0xB0, 0x00, 0x03, 0x80, 0x70, 0x1E, 0x03, 0x60, 0x6C, 0x19, 0xC3, 0x18, 0xFF, + 0x1F, 0xF3, 0x06, 0xC0, 0xD8, 0x0C, 0x03, 0x00, 0xC3, 0xE3, 0xE3, 0x60, 0x00, 0xFC, 0x6E, 0x03, + 0x0F, 0x9F, 0xCC, 0x6E, 0x33, 0x39, 0xFC, 0x20, 0x19, 0x03, 0xE0, 0x58, 0x07, 0x01, 0xB0, 0x02, 0x03, 0x80, 0x70, 0x1E, 0x03, 0x60, 0x6C, 0x19, 0xC3, 0x18, 0xFF, 0x1F, 0xF3, 0x06, 0xC0, 0xD8, - 0x0C, 0x3B, 0x3E, 0x22, 0x3E, 0x1E, 0x00, 0x3F, 0x37, 0x03, 0x1F, 0x7F, 0x63, 0xE3, 0x67, 0x7F, - 0x10, 0x11, 0x03, 0xE0, 0x78, 0x00, 0x00, 0xE0, 0x1C, 0x07, 0x80, 0xD8, 0x1B, 0x06, 0x70, 0xC6, - 0x3F, 0xC7, 0xFC, 0xC1, 0xB0, 0x36, 0x03, 0x00, 0x01, 0x80, 0x30, 0x00, 0x22, 0x3F, 0x1E, 0x00, - 0x3F, 0x37, 0x03, 0x1F, 0x7F, 0x63, 0xE3, 0x67, 0x7F, 0x10, 0x18, 0x18, 0xFF, 0xFE, 0xE0, 0xE0, - 0xE0, 0xFE, 0xFE, 0xE0, 0xE0, 0xE0, 0xFE, 0xFF, 0x00, 0x18, 0x18, 0x00, 0x1F, 0x9F, 0xCC, 0x77, - 0xFB, 0xFD, 0x80, 0xC0, 0x7B, 0x1F, 0x81, 0x01, 0x80, 0xC0, 0x3C, 0x1C, 0x1C, 0x18, 0x00, 0xFF, - 0xFE, 0xE0, 0xE0, 0xE0, 0xFE, 0xFE, 0xE0, 0xE0, 0xE0, 0xFE, 0xFF, 0x1E, 0x07, 0x03, 0x81, 0x80, - 0x81, 0xF9, 0xFC, 0xC7, 0x7F, 0xBF, 0xD8, 0x0C, 0x07, 0xB1, 0xF8, 0x10, 0x22, 0x7E, 0x5E, 0x00, - 0xFF, 0xFE, 0xE0, 0xE0, 0xE0, 0xFE, 0xFE, 0xE0, 0xE0, 0xE0, 0xFE, 0xFF, 0x11, 0x1F, 0x9B, 0xC0, - 0x03, 0xF3, 0xF9, 0x8E, 0xFF, 0x7F, 0xB0, 0x18, 0x0F, 0x63, 0xF0, 0x20, 0x01, 0x0D, 0x8F, 0x8F, - 0xC0, 0x07, 0xFB, 0xF9, 0xC0, 0xE0, 0x70, 0x3F, 0x9F, 0xCE, 0x07, 0x03, 0x81, 0xFC, 0xFF, 0x00, - 0x01, 0x83, 0x61, 0xF0, 0xDC, 0x00, 0x0F, 0xC7, 0xF1, 0x8E, 0x7F, 0x9F, 0xE6, 0x01, 0x80, 0x7B, - 0x0F, 0xC0, 0x40, 0x40, 0x36, 0x0F, 0x87, 0xE0, 0x03, 0xFD, 0xFC, 0xE0, 0x70, 0x38, 0x1F, 0xCF, - 0xE7, 0x03, 0x81, 0xC0, 0xFE, 0x7F, 0x80, 0xC0, 0x36, 0x0F, 0x86, 0xE0, 0x01, 0xF9, 0xFC, 0xC7, - 0x7F, 0xBF, 0xD8, 0x0C, 0x07, 0xB1, 0xF8, 0x10, 0x02, 0x07, 0x1B, 0x3E, 0x7E, 0x00, 0xFF, 0xFE, - 0xE0, 0xE0, 0xE0, 0xFE, 0xFE, 0xE0, 0xE0, 0xE0, 0xFE, 0xFF, 0x03, 0x00, 0xC3, 0x63, 0xE3, 0x60, - 0x00, 0xFC, 0xFE, 0x63, 0xBF, 0xDF, 0xEC, 0x06, 0x03, 0xD8, 0xFC, 0x08, 0x36, 0x7E, 0x5C, 0x3C, - 0x7E, 0x00, 0xFF, 0xFE, 0xE0, 0xE0, 0xE0, 0xFE, 0xFE, 0xE0, 0xE0, 0xE0, 0xFE, 0xFF, 0x3B, 0x1F, - 0x03, 0x03, 0xC3, 0x60, 0x00, 0xFC, 0xFE, 0x63, 0xBF, 0xDF, 0xEC, 0x06, 0x03, 0xD8, 0xFC, 0x08, - 0x18, 0x3C, 0x66, 0x00, 0xFF, 0xFE, 0xE0, 0xE0, 0xE0, 0xFE, 0xFE, 0xE0, 0xE0, 0xE0, 0xFE, 0xFF, - 0x00, 0x18, 0x18, 0x1C, 0x0F, 0x0D, 0xC0, 0x03, 0xF3, 0xF9, 0x8E, 0xFF, 0x7F, 0xB0, 0x18, 0x0F, - 0x63, 0xF0, 0x20, 0x30, 0x18, 0x33, 0xC6, 0x62, 0x7D, 0xC6, 0x31, 0x8C, 0x63, 0x18, 0xC6, 0xF8, - 0xEE, 0xEC, 0x0C, 0xCC, 0xCC, 0xCC, 0xCC, 0xFB, 0x8C, 0x63, 0x18, 0xC6, 0x31, 0x8D, 0xF0, 0x18, - 0xC0, 0x5B, 0x0D, 0xB6, 0xDB, 0x6C, 0x36, 0x00, 0x07, 0xF1, 0xFF, 0x70, 0x7C, 0x07, 0x80, 0xF0, - 0x1E, 0x03, 0xC0, 0x78, 0x0F, 0x83, 0xBF, 0xE3, 0xF8, 0x08, 0x03, 0x80, 0x70, 0x00, 0x0F, 0xC7, - 0xF9, 0x86, 0x61, 0x98, 0x76, 0x19, 0x86, 0x73, 0x8F, 0xC0, 0xC0, 0x30, 0x0C, 0x00, 0x0E, 0x01, - 0xE0, 0x1C, 0x03, 0x00, 0x40, 0x7F, 0x1F, 0xF7, 0x07, 0xC0, 0x78, 0x0F, 0x01, 0xE0, 0x3C, 0x07, - 0x80, 0xF8, 0x3B, 0xFE, 0x3F, 0x80, 0x80, 0x0E, 0x03, 0x80, 0xE0, 0x30, 0x0C, 0x0F, 0xC7, 0xF9, - 0x86, 0x61, 0x98, 0x76, 0x19, 0x86, 0x73, 0x8F, 0xC0, 0xC0, 0x00, 0xC0, 0x98, 0x3E, 0x0D, 0x81, - 0x10, 0x7F, 0x1F, 0xF7, 0x07, 0xC0, 0x78, 0x0F, 0x01, 0xE0, 0x3C, 0x07, 0x80, 0xF8, 0x3B, 0xFE, - 0x3F, 0x80, 0x80, 0x00, 0xC3, 0x61, 0xF0, 0xCC, 0x00, 0x0F, 0xC7, 0xF9, 0x86, 0x61, 0x98, 0x76, - 0x19, 0x86, 0x73, 0x8F, 0xC0, 0xC0, 0x60, 0x0C, 0x80, 0xF8, 0x0D, 0x81, 0x00, 0x7F, 0x1F, 0xF7, - 0x07, 0xC0, 0x78, 0x0F, 0x01, 0xE0, 0x3C, 0x07, 0x80, 0xF8, 0x3B, 0xFE, 0x3F, 0x80, 0x80, 0x60, - 0x1B, 0x03, 0xE0, 0xCC, 0x00, 0x0F, 0xC7, 0xF9, 0x86, 0x61, 0x98, 0x76, 0x19, 0x86, 0x73, 0x8F, - 0xC0, 0xC0, 0x01, 0x80, 0x38, 0x17, 0x07, 0xC1, 0xB0, 0x02, 0x0F, 0xE3, 0xFE, 0xE0, 0xF8, 0x0F, - 0x01, 0xE0, 0x3C, 0x07, 0x80, 0xF0, 0x1F, 0x07, 0x7F, 0xC7, 0xF0, 0x10, 0x00, 0x03, 0x80, 0x60, - 0xD8, 0x7C, 0x33, 0x00, 0x03, 0xF1, 0xFE, 0x61, 0x98, 0x66, 0x1D, 0x86, 0x61, 0x9C, 0xE3, 0xF0, - 0x30, 0x1D, 0x03, 0xE0, 0x58, 0x07, 0x01, 0xB0, 0x00, 0x0F, 0xE3, 0xFE, 0xE0, 0xF8, 0x0F, 0x01, - 0xE0, 0x3C, 0x07, 0x80, 0xF0, 0x1F, 0x07, 0x7F, 0xC7, 0xF0, 0x10, 0x00, 0x1F, 0x0F, 0xC0, 0xC0, - 0x78, 0x33, 0x00, 0x03, 0xF1, 0xFE, 0x61, 0x98, 0x66, 0x1D, 0x86, 0x61, 0x9C, 0xE3, 0xF0, 0x30, - 0x0E, 0x03, 0xE0, 0x6E, 0x00, 0x03, 0xF8, 0xFF, 0xB8, 0x3E, 0x03, 0xC0, 0x78, 0x0F, 0x01, 0xE0, - 0x3C, 0x07, 0xC1, 0xDF, 0xF1, 0xFC, 0x04, 0x01, 0xC0, 0x38, 0x00, 0x0C, 0x07, 0x83, 0x30, 0x00, - 0x3F, 0x1F, 0xE6, 0x19, 0x86, 0x61, 0xD8, 0x66, 0x19, 0xCE, 0x3F, 0x03, 0x00, 0xC0, 0x30, 0x03, - 0x00, 0x30, 0x03, 0x00, 0x00, 0x73, 0xFB, 0xBF, 0xFB, 0x83, 0x98, 0x0C, 0xC0, 0x66, 0x03, 0x30, - 0x19, 0x80, 0xCC, 0x06, 0x70, 0x71, 0xFF, 0x07, 0xF0, 0x04, 0x00, 0x07, 0x01, 0xC0, 0x31, 0x80, - 0x33, 0xFE, 0xFF, 0x98, 0x63, 0x0C, 0x61, 0xCC, 0x31, 0x86, 0x39, 0xC3, 0xF0, 0x18, 0x00, 0x1C, - 0x00, 0x60, 0x01, 0x80, 0x00, 0x73, 0xFB, 0xBF, 0xFB, 0x83, 0x98, 0x0C, 0xC0, 0x66, 0x03, 0x30, - 0x19, 0x80, 0xCC, 0x06, 0x70, 0x71, 0xFF, 0x07, 0xF0, 0x04, 0x00, 0x18, 0x03, 0x80, 0x31, 0x80, - 0x33, 0xFE, 0xFF, 0x98, 0x63, 0x0C, 0x61, 0xCC, 0x31, 0x86, 0x39, 0xC3, 0xF0, 0x18, 0x00, 0x0E, - 0x00, 0x78, 0x01, 0x80, 0x18, 0x00, 0x43, 0x9F, 0xDD, 0xFF, 0xDC, 0x1C, 0xC0, 0x66, 0x03, 0x30, - 0x19, 0x80, 0xCC, 0x06, 0x60, 0x33, 0x83, 0x8F, 0xF8, 0x3F, 0x80, 0x20, 0x00, 0x1C, 0x01, 0xC0, - 0x38, 0x06, 0x30, 0xC6, 0x7F, 0xDF, 0xF3, 0x0C, 0x61, 0x8C, 0x39, 0x86, 0x30, 0xC7, 0x38, 0x7E, - 0x03, 0x00, 0x08, 0x81, 0xFC, 0x0D, 0xC0, 0x00, 0x73, 0xFB, 0xBF, 0xFB, 0x83, 0x98, 0x0C, 0xC0, - 0x66, 0x03, 0x30, 0x19, 0x80, 0xCC, 0x06, 0x70, 0x71, 0xFF, 0x07, 0xF0, 0x04, 0x00, 0x11, 0x07, - 0xE0, 0xBD, 0x80, 0x33, 0xFE, 0xFF, 0x98, 0x63, 0x0C, 0x61, 0xCC, 0x31, 0x86, 0x39, 0xC3, 0xF0, - 0x18, 0x00, 0x00, 0x39, 0xFD, 0xDF, 0xFD, 0xC1, 0xCC, 0x06, 0x60, 0x33, 0x01, 0x98, 0x0C, 0xC0, - 0x66, 0x03, 0x38, 0x38, 0xFF, 0x83, 0xF8, 0x02, 0x00, 0x38, 0x01, 0xC0, 0x00, 0x60, 0x0C, 0xFF, - 0xBF, 0xE6, 0x18, 0xC3, 0x18, 0x73, 0x0C, 0x61, 0x8E, 0x70, 0xFC, 0x06, 0x00, 0xC0, 0x18, 0x00, - 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xC0, 0xF8, 0x77, 0xF8, 0xFC, 0x0C, - 0x03, 0x00, 0xC0, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 0xEF, 0x7F, 0x10, 0x18, 0x18, 0x0C, - 0x03, 0x80, 0x60, 0x30, 0x0C, 0x30, 0x3C, 0x0F, 0x03, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xC0, 0xF0, - 0x3E, 0x1D, 0xFE, 0x3F, 0x03, 0x00, 0x1C, 0x1C, 0x1C, 0x18, 0x00, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, - 0xC3, 0xC3, 0xEF, 0x7F, 0x10, 0x07, 0x00, 0x30, 0x03, 0x00, 0x00, 0x3C, 0x0F, 0xE0, 0x7B, 0x03, - 0x98, 0x18, 0xC0, 0xC6, 0x06, 0x30, 0x31, 0x81, 0x8C, 0x0C, 0x70, 0xE1, 0xFE, 0x07, 0xE0, 0x0C, - 0x00, 0x0E, 0x01, 0x80, 0x61, 0x80, 0x3C, 0x3F, 0x87, 0xB0, 0xC6, 0x18, 0xC3, 0x18, 0x63, 0x0C, - 0x77, 0x87, 0xF0, 0x20, 0x00, 0x18, 0x00, 0xE0, 0x03, 0x00, 0x00, 0x3C, 0x0F, 0xE0, 0x7B, 0x03, + 0x0C, 0x3B, 0x3E, 0x0C, 0x1E, 0x36, 0x00, 0x3F, 0x37, 0x03, 0x1F, 0x7F, 0x63, 0xE3, 0x67, 0x7F, + 0x10, 0x0E, 0x03, 0xE0, 0xEC, 0x00, 0x00, 0xE0, 0x1C, 0x07, 0x80, 0xD8, 0x1B, 0x06, 0x70, 0xC6, + 0x3F, 0xC7, 0xFC, 0xC1, 0xB0, 0x36, 0x03, 0x00, 0x01, 0x80, 0x30, 0x00, 0x1C, 0x1E, 0x37, 0x00, + 0x3F, 0x37, 0x03, 0x1F, 0x7F, 0x63, 0xE3, 0x67, 0x7F, 0x10, 0x1C, 0x1C, 0x06, 0x00, 0xC0, 0x4C, + 0x0F, 0x80, 0x00, 0x1C, 0x03, 0x80, 0xF0, 0x1B, 0x03, 0x60, 0xCE, 0x18, 0xC7, 0xF8, 0xFF, 0x98, + 0x36, 0x06, 0xC0, 0x60, 0x00, 0x0E, 0x2E, 0x3E, 0x1E, 0x00, 0x3F, 0x37, 0x03, 0x1F, 0x7F, 0x63, + 0xE3, 0x67, 0x7F, 0x10, 0x18, 0x01, 0x80, 0x4C, 0x0F, 0x80, 0x00, 0x1C, 0x03, 0x80, 0xF0, 0x1B, + 0x03, 0x60, 0xCE, 0x18, 0xC7, 0xF8, 0xFF, 0x98, 0x36, 0x06, 0xC0, 0x60, 0x00, 0x18, 0x3A, 0x3E, + 0x1E, 0x00, 0x3F, 0x37, 0x03, 0x1F, 0x7F, 0x63, 0xE3, 0x67, 0x7F, 0x10, 0x0C, 0x01, 0xC0, 0x38, + 0x09, 0x81, 0xF0, 0x00, 0x03, 0x80, 0x70, 0x1E, 0x03, 0x60, 0x6C, 0x19, 0xC3, 0x18, 0xFF, 0x1F, + 0xF3, 0x06, 0xC0, 0xD8, 0x0C, 0x1C, 0x0C, 0x2E, 0x3E, 0x1E, 0x00, 0x3F, 0x37, 0x03, 0x1F, 0x7F, + 0x63, 0xE3, 0x67, 0x7F, 0x10, 0x19, 0x03, 0xE0, 0x48, 0x09, 0x81, 0xF0, 0x00, 0x03, 0x80, 0x70, + 0x1E, 0x03, 0x60, 0x6C, 0x19, 0xC3, 0x18, 0xFF, 0x1F, 0xF3, 0x06, 0xC0, 0xD8, 0x0C, 0x3B, 0x3E, + 0x22, 0x3E, 0x1E, 0x00, 0x3F, 0x37, 0x03, 0x1F, 0x7F, 0x63, 0xE3, 0x67, 0x7F, 0x10, 0x11, 0x03, + 0xE0, 0x78, 0x00, 0x00, 0xE0, 0x1C, 0x07, 0x80, 0xD8, 0x1B, 0x06, 0x70, 0xC6, 0x3F, 0xC7, 0xFC, + 0xC1, 0xB0, 0x36, 0x03, 0x00, 0x01, 0x80, 0x30, 0x00, 0x22, 0x3F, 0x1E, 0x00, 0x3F, 0x37, 0x03, + 0x1F, 0x7F, 0x63, 0xE3, 0x67, 0x7F, 0x10, 0x18, 0x18, 0xFF, 0xFE, 0xE0, 0xE0, 0xE0, 0xFE, 0xFE, + 0xE0, 0xE0, 0xE0, 0xFE, 0xFF, 0x00, 0x18, 0x18, 0x00, 0x1F, 0x9F, 0xCC, 0x77, 0xFB, 0xFD, 0x80, + 0xC0, 0x7B, 0x1F, 0x81, 0x01, 0x80, 0xC0, 0x3C, 0x1C, 0x1C, 0x18, 0x00, 0xFF, 0xFE, 0xE0, 0xE0, + 0xE0, 0xFE, 0xFE, 0xE0, 0xE0, 0xE0, 0xFE, 0xFF, 0x1E, 0x07, 0x03, 0x81, 0x80, 0x81, 0xF9, 0xFC, + 0xC7, 0x7F, 0xBF, 0xD8, 0x0C, 0x07, 0xB1, 0xF8, 0x10, 0x22, 0x7E, 0x5E, 0x00, 0xFF, 0xFE, 0xE0, + 0xE0, 0xE0, 0xFE, 0xFE, 0xE0, 0xE0, 0xE0, 0xFE, 0xFF, 0x11, 0x1F, 0x9B, 0xC0, 0x03, 0xF3, 0xF9, + 0x8E, 0xFF, 0x7F, 0xB0, 0x18, 0x0F, 0x63, 0xF0, 0x20, 0x01, 0x0D, 0x8F, 0x8F, 0xC0, 0x07, 0xFB, + 0xF9, 0xC0, 0xE0, 0x70, 0x3F, 0x9F, 0xCE, 0x07, 0x03, 0x81, 0xFC, 0xFF, 0x00, 0x01, 0x83, 0x61, + 0xF0, 0xDC, 0x00, 0x0F, 0xC7, 0xF1, 0x8E, 0x7F, 0x9F, 0xE6, 0x01, 0x80, 0x7B, 0x0F, 0xC0, 0x40, + 0x40, 0x36, 0x0F, 0x87, 0xE0, 0x03, 0xFD, 0xFC, 0xE0, 0x70, 0x38, 0x1F, 0xCF, 0xE7, 0x03, 0x81, + 0xC0, 0xFE, 0x7F, 0x80, 0xC0, 0x36, 0x0F, 0x86, 0xE0, 0x01, 0xF9, 0xFC, 0xC7, 0x7F, 0xBF, 0xD8, + 0x0C, 0x07, 0xB1, 0xF8, 0x10, 0x02, 0x07, 0x1B, 0x3E, 0x7E, 0x00, 0xFF, 0xFE, 0xE0, 0xE0, 0xE0, + 0xFE, 0xFE, 0xE0, 0xE0, 0xE0, 0xFE, 0xFF, 0x03, 0x00, 0xC3, 0x63, 0xE3, 0x60, 0x00, 0xFC, 0xFE, + 0x63, 0xBF, 0xDF, 0xEC, 0x06, 0x03, 0xD8, 0xFC, 0x08, 0x36, 0x7E, 0x5C, 0x3C, 0x7E, 0x00, 0xFF, + 0xFE, 0xE0, 0xE0, 0xE0, 0xFE, 0xFE, 0xE0, 0xE0, 0xE0, 0xFE, 0xFF, 0x3B, 0x1F, 0x03, 0x03, 0xC3, + 0x60, 0x00, 0xFC, 0xFE, 0x63, 0xBF, 0xDF, 0xEC, 0x06, 0x03, 0xD8, 0xFC, 0x08, 0x18, 0x3C, 0x66, + 0x00, 0xFF, 0xFE, 0xE0, 0xE0, 0xE0, 0xFE, 0xFE, 0xE0, 0xE0, 0xE0, 0xFE, 0xFF, 0x00, 0x18, 0x18, + 0x1C, 0x0F, 0x0D, 0xC0, 0x03, 0xF3, 0xF9, 0x8E, 0xFF, 0x7F, 0xB0, 0x18, 0x0F, 0x63, 0xF0, 0x20, + 0x30, 0x18, 0x33, 0xC6, 0x62, 0x7D, 0xC6, 0x31, 0x8C, 0x63, 0x18, 0xC6, 0xF8, 0xEE, 0xEC, 0x0C, + 0xCC, 0xCC, 0xCC, 0xCC, 0xFB, 0x8C, 0x63, 0x18, 0xC6, 0x31, 0x8D, 0xF0, 0x18, 0xC0, 0x5B, 0x0D, + 0xB6, 0xDB, 0x6C, 0x36, 0x00, 0x07, 0xF1, 0xFF, 0x70, 0x7C, 0x07, 0x80, 0xF0, 0x1E, 0x03, 0xC0, + 0x78, 0x0F, 0x83, 0xBF, 0xE3, 0xF8, 0x08, 0x03, 0x80, 0x70, 0x00, 0x0F, 0xC7, 0xF9, 0x86, 0x61, + 0x98, 0x76, 0x19, 0x86, 0x73, 0x8F, 0xC0, 0xC0, 0x30, 0x0C, 0x00, 0x0E, 0x01, 0xE0, 0x1C, 0x03, + 0x00, 0x40, 0x7F, 0x1F, 0xF7, 0x07, 0xC0, 0x78, 0x0F, 0x01, 0xE0, 0x3C, 0x07, 0x80, 0xF8, 0x3B, + 0xFE, 0x3F, 0x80, 0x80, 0x0E, 0x03, 0x80, 0xE0, 0x30, 0x0C, 0x0F, 0xC7, 0xF9, 0x86, 0x61, 0x98, + 0x76, 0x19, 0x86, 0x73, 0x8F, 0xC0, 0xC0, 0x00, 0xC0, 0x98, 0x3E, 0x0D, 0x81, 0x10, 0x7F, 0x1F, + 0xF7, 0x07, 0xC0, 0x78, 0x0F, 0x01, 0xE0, 0x3C, 0x07, 0x80, 0xF8, 0x3B, 0xFE, 0x3F, 0x80, 0x80, + 0x00, 0xC3, 0x61, 0xF0, 0xCC, 0x00, 0x0F, 0xC7, 0xF9, 0x86, 0x61, 0x98, 0x76, 0x19, 0x86, 0x73, + 0x8F, 0xC0, 0xC0, 0x60, 0x0C, 0x80, 0xF8, 0x0D, 0x81, 0x00, 0x7F, 0x1F, 0xF7, 0x07, 0xC0, 0x78, + 0x0F, 0x01, 0xE0, 0x3C, 0x07, 0x80, 0xF8, 0x3B, 0xFE, 0x3F, 0x80, 0x80, 0x60, 0x1B, 0x03, 0xE0, + 0xCC, 0x00, 0x0F, 0xC7, 0xF9, 0x86, 0x61, 0x98, 0x76, 0x19, 0x86, 0x73, 0x8F, 0xC0, 0xC0, 0x01, + 0x80, 0x38, 0x17, 0x07, 0xC1, 0xB0, 0x02, 0x0F, 0xE3, 0xFE, 0xE0, 0xF8, 0x0F, 0x01, 0xE0, 0x3C, + 0x07, 0x80, 0xF0, 0x1F, 0x07, 0x7F, 0xC7, 0xF0, 0x10, 0x00, 0x03, 0x80, 0x60, 0xD8, 0x7C, 0x33, + 0x00, 0x03, 0xF1, 0xFE, 0x61, 0x98, 0x66, 0x1D, 0x86, 0x61, 0x9C, 0xE3, 0xF0, 0x30, 0x1D, 0x03, + 0xE0, 0x58, 0x07, 0x01, 0xB0, 0x00, 0x0F, 0xE3, 0xFE, 0xE0, 0xF8, 0x0F, 0x01, 0xE0, 0x3C, 0x07, + 0x80, 0xF0, 0x1F, 0x07, 0x7F, 0xC7, 0xF0, 0x10, 0x00, 0x1F, 0x0F, 0xC0, 0xC0, 0x78, 0x33, 0x00, + 0x03, 0xF1, 0xFE, 0x61, 0x98, 0x66, 0x1D, 0x86, 0x61, 0x9C, 0xE3, 0xF0, 0x30, 0x0E, 0x03, 0xE0, + 0x6E, 0x00, 0x03, 0xF8, 0xFF, 0xB8, 0x3E, 0x03, 0xC0, 0x78, 0x0F, 0x01, 0xE0, 0x3C, 0x07, 0xC1, + 0xDF, 0xF1, 0xFC, 0x04, 0x01, 0xC0, 0x38, 0x00, 0x0C, 0x07, 0x83, 0x30, 0x00, 0x3F, 0x1F, 0xE6, + 0x19, 0x86, 0x61, 0xD8, 0x66, 0x19, 0xCE, 0x3F, 0x03, 0x00, 0xC0, 0x30, 0x03, 0x00, 0x30, 0x03, + 0x00, 0x00, 0x73, 0xFB, 0xBF, 0xFB, 0x83, 0x98, 0x0C, 0xC0, 0x66, 0x03, 0x30, 0x19, 0x80, 0xCC, + 0x06, 0x70, 0x71, 0xFF, 0x07, 0xF0, 0x04, 0x00, 0x07, 0x01, 0xC0, 0x31, 0x80, 0x33, 0xFE, 0xFF, + 0x98, 0x63, 0x0C, 0x61, 0xCC, 0x31, 0x86, 0x39, 0xC3, 0xF0, 0x18, 0x00, 0x1C, 0x00, 0x60, 0x01, + 0x80, 0x00, 0x73, 0xFB, 0xBF, 0xFB, 0x83, 0x98, 0x0C, 0xC0, 0x66, 0x03, 0x30, 0x19, 0x80, 0xCC, + 0x06, 0x70, 0x71, 0xFF, 0x07, 0xF0, 0x04, 0x00, 0x18, 0x03, 0x80, 0x31, 0x80, 0x33, 0xFE, 0xFF, + 0x98, 0x63, 0x0C, 0x61, 0xCC, 0x31, 0x86, 0x39, 0xC3, 0xF0, 0x18, 0x00, 0x0E, 0x00, 0x78, 0x01, + 0x80, 0x18, 0x00, 0x43, 0x9F, 0xDD, 0xFF, 0xDC, 0x1C, 0xC0, 0x66, 0x03, 0x30, 0x19, 0x80, 0xCC, + 0x06, 0x60, 0x33, 0x83, 0x8F, 0xF8, 0x3F, 0x80, 0x20, 0x00, 0x1C, 0x01, 0xC0, 0x38, 0x06, 0x30, + 0xC6, 0x7F, 0xDF, 0xF3, 0x0C, 0x61, 0x8C, 0x39, 0x86, 0x30, 0xC7, 0x38, 0x7E, 0x03, 0x00, 0x08, + 0x81, 0xFC, 0x0D, 0xC0, 0x00, 0x73, 0xFB, 0xBF, 0xFB, 0x83, 0x98, 0x0C, 0xC0, 0x66, 0x03, 0x30, + 0x19, 0x80, 0xCC, 0x06, 0x70, 0x71, 0xFF, 0x07, 0xF0, 0x04, 0x00, 0x11, 0x07, 0xE0, 0xBD, 0x80, + 0x33, 0xFE, 0xFF, 0x98, 0x63, 0x0C, 0x61, 0xCC, 0x31, 0x86, 0x39, 0xC3, 0xF0, 0x18, 0x00, 0x00, + 0x39, 0xFD, 0xDF, 0xFD, 0xC1, 0xCC, 0x06, 0x60, 0x33, 0x01, 0x98, 0x0C, 0xC0, 0x66, 0x03, 0x38, + 0x38, 0xFF, 0x83, 0xF8, 0x02, 0x00, 0x38, 0x01, 0xC0, 0x00, 0x60, 0x0C, 0xFF, 0xBF, 0xE6, 0x18, + 0xC3, 0x18, 0x73, 0x0C, 0x61, 0x8E, 0x70, 0xFC, 0x06, 0x00, 0xC0, 0x18, 0x00, 0xC0, 0xF0, 0x3C, + 0x0F, 0x03, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xC0, 0xF8, 0x77, 0xF8, 0xFC, 0x0C, 0x03, 0x00, 0xC0, + 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 0xEF, 0x7F, 0x10, 0x18, 0x18, 0x0C, 0x03, 0x80, 0x60, + 0x30, 0x0C, 0x30, 0x3C, 0x0F, 0x03, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xC0, 0xF0, 0x3E, 0x1D, 0xFE, + 0x3F, 0x03, 0x00, 0x1C, 0x1C, 0x1C, 0x18, 0x00, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 0xEF, + 0x7F, 0x10, 0x07, 0x00, 0x30, 0x03, 0x00, 0x00, 0x3C, 0x0F, 0xE0, 0x7B, 0x03, 0x98, 0x18, 0xC0, + 0xC6, 0x06, 0x30, 0x31, 0x81, 0x8C, 0x0C, 0x70, 0xE1, 0xFE, 0x07, 0xE0, 0x0C, 0x00, 0x0E, 0x01, + 0x80, 0x61, 0x80, 0x3C, 0x3F, 0x87, 0xB0, 0xC6, 0x18, 0xC3, 0x18, 0x63, 0x0C, 0x77, 0x87, 0xF0, + 0x20, 0x00, 0x18, 0x00, 0xE0, 0x03, 0x00, 0x00, 0x3C, 0x0F, 0xE0, 0x7B, 0x03, 0x98, 0x18, 0xC0, + 0xC6, 0x06, 0x30, 0x31, 0x81, 0x8C, 0x0C, 0x70, 0xE1, 0xFE, 0x07, 0xE0, 0x0C, 0x00, 0x30, 0x07, + 0x00, 0x61, 0x80, 0x3C, 0x3F, 0x87, 0xB0, 0xC6, 0x18, 0xC3, 0x18, 0x63, 0x0C, 0x77, 0x87, 0xF0, + 0x20, 0x00, 0x0C, 0x00, 0x70, 0x01, 0x80, 0x1C, 0x00, 0xC1, 0xE0, 0x7F, 0x03, 0xD8, 0x1C, 0xC0, + 0xC6, 0x06, 0x30, 0x31, 0x81, 0x8C, 0x0C, 0x60, 0x63, 0x87, 0x0F, 0xF0, 0x3F, 0x00, 0x60, 0x00, + 0x1C, 0x03, 0x80, 0x70, 0x0C, 0x30, 0x07, 0x87, 0xF0, 0xF6, 0x18, 0xC3, 0x18, 0x63, 0x0C, 0x61, + 0x8E, 0xF0, 0xFE, 0x04, 0x00, 0x11, 0x01, 0xF8, 0x0B, 0xC0, 0x00, 0x3C, 0x0F, 0xE0, 0x7B, 0x03, 0x98, 0x18, 0xC0, 0xC6, 0x06, 0x30, 0x31, 0x81, 0x8C, 0x0C, 0x70, 0xE1, 0xFE, 0x07, 0xE0, 0x0C, - 0x00, 0x30, 0x07, 0x00, 0x61, 0x80, 0x3C, 0x3F, 0x87, 0xB0, 0xC6, 0x18, 0xC3, 0x18, 0x63, 0x0C, - 0x77, 0x87, 0xF0, 0x20, 0x00, 0x0C, 0x00, 0x70, 0x01, 0x80, 0x1C, 0x00, 0xC1, 0xE0, 0x7F, 0x03, - 0xD8, 0x1C, 0xC0, 0xC6, 0x06, 0x30, 0x31, 0x81, 0x8C, 0x0C, 0x60, 0x63, 0x87, 0x0F, 0xF0, 0x3F, - 0x00, 0x60, 0x00, 0x1C, 0x03, 0x80, 0x70, 0x0C, 0x30, 0x07, 0x87, 0xF0, 0xF6, 0x18, 0xC3, 0x18, - 0x63, 0x0C, 0x61, 0x8E, 0xF0, 0xFE, 0x04, 0x00, 0x11, 0x01, 0xF8, 0x0B, 0xC0, 0x00, 0x3C, 0x0F, - 0xE0, 0x7B, 0x03, 0x98, 0x18, 0xC0, 0xC6, 0x06, 0x30, 0x31, 0x81, 0x8C, 0x0C, 0x70, 0xE1, 0xFE, - 0x07, 0xE0, 0x0C, 0x00, 0x22, 0x0F, 0xC1, 0xF9, 0x80, 0x3C, 0x3F, 0x87, 0xB0, 0xC6, 0x18, 0xC3, - 0x18, 0x63, 0x0C, 0x77, 0x87, 0xF0, 0x20, 0x00, 0x00, 0x1E, 0x07, 0xF0, 0x3D, 0x81, 0xCC, 0x0C, - 0x60, 0x63, 0x03, 0x18, 0x18, 0xC0, 0xC6, 0x06, 0x38, 0x70, 0xFF, 0x03, 0xF0, 0x06, 0x00, 0x30, - 0x01, 0x80, 0x00, 0x60, 0x0F, 0x0F, 0xE1, 0xEC, 0x31, 0x86, 0x30, 0xC6, 0x18, 0xC3, 0x1D, 0xE1, - 0xFC, 0x08, 0x01, 0x80, 0x30, 0x00, 0x38, 0x06, 0x00, 0xC0, 0x00, 0xC1, 0xF8, 0x66, 0x39, 0xCC, - 0x36, 0x07, 0x81, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x30, 0x1C, 0x07, 0x00, 0x0C, 0x3F, - 0x19, 0x8C, 0xCE, 0x76, 0x1B, 0x0F, 0x03, 0x81, 0xC0, 0xC0, 0x61, 0xE0, 0xF0, 0x00, 0xC1, 0xF8, - 0x66, 0x39, 0xCC, 0x36, 0x07, 0x81, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x00, 0x03, 0x00, - 0xC0, 0xC3, 0xF1, 0x98, 0xCC, 0xE7, 0x61, 0xB0, 0xF0, 0x38, 0x1C, 0x0C, 0x07, 0xDE, 0xEF, 0x00, - 0x1C, 0x07, 0x80, 0x60, 0x30, 0x08, 0x30, 0x7E, 0x19, 0x8E, 0x73, 0x0D, 0x81, 0xE0, 0x70, 0x0C, - 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x00, 0x1C, 0x0E, 0x03, 0x03, 0x00, 0x06, 0x1F, 0x8C, 0xC6, 0x67, - 0x3B, 0x0D, 0x87, 0x81, 0xC0, 0xE0, 0x60, 0x30, 0xF0, 0x78, 0x00, 0x11, 0x0F, 0xC6, 0xE0, 0x00, - 0xC1, 0xF8, 0x66, 0x39, 0xCC, 0x36, 0x07, 0x81, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x32, - 0x3F, 0x9B, 0x80, 0x0C, 0x3F, 0x19, 0x8C, 0xCE, 0x76, 0x1B, 0x0F, 0x03, 0x81, 0xC0, 0xC0, 0x61, - 0xE0, 0xF0, 0x00, 0x21, 0xBF, 0xEC, 0x63, 0x18, 0xC6, 0x31, 0x8C, 0x60, 0x00, 0x23, 0x3E, 0xF1, - 0x8C, 0x63, 0x18, 0xC6, 0x31, 0x8C, 0x00, 0x77, 0xDE, 0x77, 0xDE, 0xFF, 0xFF, 0xC0, 0x7E, 0xFF, - 0x7F, 0x7F, 0xFF, 0xFF, 0xFF, 0x7F, 0xFF, 0x7F, 0xFF, 0xFF, 0xFF, 0x7F, 0xFF, 0xDB, 0x6D, 0xB6, - 0xDB, 0x6D, 0xB6, 0xDB, 0x6D, 0xB6, 0xDB, 0x6D, 0xB6, 0xD8, 0x00, 0x7F, 0x7F, 0x7F, 0x7F, 0x6F, - 0xEC, 0x7F, 0x68, 0x66, 0x6C, 0x00, 0xDD, 0xB2, 0x6D, 0xBF, 0xF6, 0xD8, 0x6F, 0xFD, 0xB6, 0x90, - 0x6C, 0xD9, 0xB6, 0xC0, 0x80, 0xDB, 0x76, 0xDB, 0x24, 0x30, 0x60, 0xC7, 0xFF, 0xE6, 0x0C, 0x18, - 0x30, 0x60, 0xC1, 0x83, 0x00, 0x30, 0x60, 0xC7, 0xFF, 0xE6, 0x0C, 0x18, 0xF7, 0xFC, 0xC1, 0x83, - 0x00, 0x0F, 0xFF, 0xF0, 0x87, 0x3D, 0xEC, 0x00, 0x1B, 0xA0, 0x01, 0xDF, 0xBA, 0x20, 0x00, 0x1D, - 0xCF, 0xB9, 0xA2, 0x20, 0x1F, 0xA0, 0x07, 0xF1, 0x8C, 0x63, 0x18, 0xC6, 0x31, 0x8C, 0x00, 0x07, - 0xC6, 0x31, 0x8C, 0x63, 0x18, 0xC6, 0x31, 0x80, 0xFF, 0xFF, 0x66, 0x66, 0x66, 0x66, 0x66, 0x00, - 0xFF, 0x8F, 0x66, 0x66, 0x66, 0x66, 0x66, 0x00, 0xFF, 0x1F, 0x66, 0x66, 0x66, 0x66, 0x66, 0x00, - 0x00, 0x00, 0x0F, 0x0C, 0x01, 0xB3, 0x00, 0x26, 0x60, 0x0C, 0xD8, 0x01, 0x9B, 0x43, 0x1B, 0xFE, - 0xF3, 0xFE, 0xDB, 0x36, 0xDB, 0x60, 0xDB, 0xCC, 0x33, 0x6D, 0x8E, 0x6D, 0xB1, 0x87, 0xBC, 0x00, - 0x41, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x30, 0x00, 0x1B, 0x18, 0x00, 0x1D, 0x98, 0x00, 0x0C, 0xD8, - 0x00, 0x06, 0x6D, 0x84, 0x11, 0xBF, 0xEF, 0xBE, 0xFF, 0xB6, 0xDB, 0x36, 0xCF, 0x7D, 0x83, 0x67, - 0xBE, 0xC3, 0x33, 0xDB, 0x61, 0x9B, 0x6D, 0xB1, 0x87, 0x9E, 0xF8, 0x01, 0x04, 0x10, 0x31, 0x98, - 0xC4, 0x00, 0x36, 0x36, 0x6C, 0x6C, 0x48, 0x36, 0xC6, 0xD9, 0xB6, 0x36, 0x85, 0xB0, 0xE3, 0x0C, - 0x61, 0x00, 0xF8, 0xD8, 0xF1, 0xB1, 0x20, 0xFB, 0x1B, 0xE3, 0xD8, 0xDB, 0x12, 0xC0, 0x10, 0x60, - 0xE3, 0x44, 0xD8, 0x80, 0x19, 0x9D, 0xC6, 0x18, 0x60, 0x43, 0x0C, 0x73, 0x31, 0x80, 0x00, 0x01, - 0x8C, 0x67, 0x33, 0x8E, 0x1C, 0x1C, 0xE0, 0x3F, 0x06, 0x79, 0x99, 0xE6, 0x0F, 0xC0, 0x73, 0x83, - 0x87, 0x1C, 0xCE, 0x63, 0x18, 0x08, 0x00, 0xCD, 0x9B, 0x36, 0x6C, 0xD9, 0xB3, 0x66, 0xCC, 0x03, - 0xB7, 0x64, 0x40, 0x01, 0xFB, 0xF9, 0xB3, 0x66, 0xCF, 0x1C, 0x30, 0x60, 0x01, 0x83, 0x00, 0x00, - 0x7F, 0xDF, 0xF0, 0x80, 0x70, 0x37, 0x18, 0xFC, 0x0C, 0x0F, 0xC6, 0x1B, 0x03, 0x00, 0x00, 0x0C, - 0x30, 0x86, 0x18, 0xC3, 0x1C, 0x79, 0x2C, 0xC0, 0x00, 0xC0, 0x00, 0x18, 0x00, 0x0B, 0x20, 0x03, - 0xFC, 0x00, 0x3F, 0x80, 0x03, 0xC0, 0x00, 0xEC, 0x00, 0x4D, 0x90, 0x18, 0x07, 0x03, 0x00, 0xC3, - 0xFC, 0xFB, 0xFF, 0x9F, 0xF3, 0xC0, 0x70, 0x7C, 0x1F, 0x1D, 0x83, 0x61, 0x20, 0x00, 0x77, 0xDE, - 0x01, 0x80, 0x60, 0x30, 0x0C, 0x06, 0x03, 0x00, 0xC0, 0x60, 0x18, 0x0C, 0x06, 0x01, 0x80, 0xFF, - 0xCC, 0xCC, 0xFF, 0xCC, 0xCC, 0xCF, 0xF0, 0xFF, 0xCE, 0x73, 0x9F, 0xFF, 0x39, 0xCE, 0x73, 0xFF, - 0xC0, 0x00, 0x03, 0xF7, 0xEF, 0xFF, 0xC1, 0x83, 0x06, 0x0C, 0x38, 0x71, 0xC3, 0x8E, 0x1C, 0x30, - 0x60, 0xC1, 0x80, 0x00, 0x0C, 0x18, 0x30, 0x60, 0x00, 0x00, 0x00, 0x1F, 0x9B, 0xFB, 0x03, 0x60, - 0x6C, 0x1D, 0x87, 0x31, 0xC6, 0x30, 0xC6, 0x18, 0x00, 0x18, 0x63, 0x0C, 0x00, 0x80, 0x00, 0x37, - 0xED, 0xFF, 0x03, 0xC0, 0xF0, 0x7C, 0x3B, 0x1C, 0xC6, 0x31, 0x80, 0x03, 0x98, 0xE6, 0x10, 0x80, - 0xFF, 0xBF, 0xC0, 0xC0, 0xC0, 0x60, 0x60, 0x70, 0x30, 0x30, 0x00, 0xFE, 0x7F, 0xB7, 0xFB, 0xFD, - 0xFE, 0xFF, 0x7F, 0xBE, 0xDE, 0x6C, 0x36, 0x1B, 0x0D, 0x86, 0xC3, 0x60, 0x00, 0x3F, 0xDF, 0xF7, - 0xED, 0xFB, 0x7E, 0xDF, 0xB7, 0xED, 0xFF, 0x1F, 0x80, 0xFF, 0x7F, 0xF7, 0xFB, 0xFD, 0xFE, 0xFF, - 0x7F, 0xFE, 0xFE, 0x00, 0x1C, 0x0E, 0x13, 0x5F, 0xF7, 0xF1, 0xF0, 0xD8, 0x6C, 0x0E, 0xE0, 0x00, - 0x00, 0x66, 0x63, 0x00, 0x0C, 0x0F, 0xC6, 0x1B, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x07, 0x03, 0x71, 0x8F, 0xC0, 0x1C, 0x0E, 0x13, 0x5F, 0xF7, - 0xF1, 0xF0, 0xD8, 0x6C, 0x1C, 0x0E, 0x13, 0x5F, 0xF7, 0xF1, 0xF0, 0xD8, 0x6C, 0x01, 0x9B, 0x30, - 0xE1, 0x83, 0x0C, 0x18, 0x70, 0xC1, 0x86, 0x6C, 0xC0, 0x00, 0x18, 0x00, 0xFF, 0x0F, 0x1F, 0xF4, - 0x03, 0xC0, 0x1E, 0x1F, 0xE6, 0x0F, 0x03, 0x08, 0x16, 0x9F, 0xC7, 0xCF, 0xFF, 0xFC, 0xFC, 0xDE, - 0x0C, 0x00, 0x00, 0x00, 0x03, 0x03, 0x00, 0x00, 0x00, 0x60, 0x60, 0x00, 0x00, 0x00, 0x03, 0x07, - 0x02, 0x36, 0xD9, 0xBF, 0x9B, 0x6C, 0xD6, 0xC5, 0xB4, 0x00, 0x00, 0x00, 0x38, 0x00, 0xC0, 0x00, - 0x00, 0x00, 0x00, 0x01, 0x80, 0x6C, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x70, 0x01, - 0x00, 0x00, 0x03, 0x00, 0xD8, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x60, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xC0, 0x36, 0x01, 0xA0, 0x08, 0x0D, 0x80, 0x00, 0x00, 0x36, 0x00, 0x04, 0x01, - 0xC0, 0x30, 0x00, 0x00, 0x00, 0x00, 0x18, 0x33, 0x06, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0xE0, - 0x08, 0x00, 0x02, 0x00, 0x18, 0x0C, 0xDC, 0x66, 0xE2, 0x32, 0x01, 0x83, 0xFF, 0xFF, 0xFF, 0x03, - 0x00, 0x18, 0x0C, 0xD8, 0x66, 0xC0, 0x30, 0x01, 0x00, 0xDF, 0x01, 0xBE, 0x03, 0xF4, 0x1F, 0x8D, - 0xF6, 0xF8, 0x7E, 0x80, 0xFF, 0x6F, 0x66, 0x66, 0x66, 0x66, 0x66, 0x00, 0xFF, 0x9F, 0x66, 0x66, - 0x66, 0x66, 0x66, 0x00, 0xFF, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x00, 0x06, 0xFF, 0x66, 0x66, - 0x66, 0x66, 0x66, 0x00, 0x6F, 0xF6, 0x66, 0x66, 0x66, 0x66, 0x66, 0x00, 0xEE, 0x6F, 0x66, 0x66, - 0x66, 0x66, 0x66, 0x00, 0x21, 0xEC, 0xF3, 0xCF, 0x3C, 0xDE, 0x20, 0x15, 0x55, 0x40, 0x00, 0x63, - 0x9E, 0xDB, 0xFF, 0xC6, 0x00, 0x01, 0xEC, 0x3C, 0xF8, 0x30, 0xFE, 0x20, 0x19, 0xEE, 0x3E, 0xFF, - 0x3C, 0xDE, 0x30, 0x03, 0xF1, 0x86, 0x18, 0xC3, 0x18, 0x00, 0x31, 0xEC, 0xFE, 0x7B, 0x7C, 0xFE, - 0x30, 0x33, 0xEC, 0xF3, 0xFD, 0xF1, 0x9E, 0x60, 0x20, 0xCF, 0xBE, 0x30, 0x80, 0xFB, 0xE0, 0x7B, - 0xEF, 0xBE, 0x0F, 0x69, 0x36, 0xCC, 0x19, 0xB6, 0xDB, 0x58, 0x19, 0xF4, 0xD1, 0x45, 0x14, 0x40, - 0x21, 0xEC, 0xF3, 0xCF, 0x3C, 0xDE, 0x20, 0x07, 0xF3, 0x33, 0x33, 0x00, 0x33, 0xE5, 0x86, 0x18, - 0xC6, 0x3E, 0x00, 0x33, 0xE1, 0x86, 0x78, 0x30, 0xFE, 0x20, 0x00, 0x63, 0x9E, 0xDB, 0xFF, 0xC6, - 0x00, 0x01, 0xEC, 0x3C, 0xF8, 0x30, 0xFE, 0x20, 0x19, 0xEE, 0x3E, 0xFF, 0x3C, 0xDE, 0x30, 0x03, - 0xF1, 0x86, 0x18, 0xC3, 0x18, 0x00, 0x31, 0xEC, 0xFE, 0x7B, 0x7C, 0xFE, 0x30, 0x33, 0xEC, 0xF3, - 0xFD, 0xF1, 0x9E, 0x60, 0x20, 0xCF, 0xBE, 0x30, 0x80, 0xFB, 0xE0, 0x7B, 0xEF, 0xBE, 0x0F, 0x69, - 0x36, 0xCC, 0x19, 0xB6, 0xDB, 0x58, 0x78, 0x37, 0xFB, 0xDD, 0xE0, 0x79, 0x3F, 0xF0, 0x69, 0xE0, - 0x7B, 0x3C, 0x71, 0x6D, 0xE0, 0xCD, 0xE3, 0x1C, 0x7B, 0x30, 0x78, 0x37, 0xFF, 0xDD, 0xE0, 0x41, - 0x07, 0xDB, 0x45, 0x14, 0x51, 0x41, 0x04, 0xD6, 0x71, 0xC5, 0x93, 0x55, 0x55, 0x7F, 0x9B, 0x34, - 0xCD, 0x33, 0x4C, 0xD3, 0x30, 0x7D, 0xB4, 0x51, 0x45, 0x10, 0x7C, 0xD9, 0x12, 0x26, 0xCF, 0x10, - 0x20, 0x7E, 0x1C, 0x7D, 0xF8, 0x4F, 0x44, 0x46, 0x70, 0x00, 0x1F, 0x1D, 0x1C, 0x0C, 0xFE, 0x7F, - 0xB0, 0xD8, 0x7F, 0x8F, 0xC3, 0x01, 0x80, 0xF8, 0x05, 0x83, 0xE3, 0xF8, 0xFE, 0x6F, 0x1A, 0xCF, - 0xB3, 0xE8, 0x7E, 0x1F, 0x87, 0x60, 0xFE, 0x3F, 0x0F, 0x00, 0x00, 0x0F, 0xCF, 0xEE, 0x06, 0x03, - 0x2D, 0xBE, 0xDC, 0x6C, 0x36, 0x1F, 0x07, 0xB1, 0xF8, 0x30, 0x3F, 0x9F, 0xCC, 0x06, 0x03, 0x01, - 0xF8, 0xFE, 0x60, 0x7C, 0x7E, 0x0C, 0x06, 0x00, 0x00, 0x0F, 0xCF, 0xE6, 0x03, 0x03, 0xF3, 0xF8, - 0x60, 0xFE, 0x3F, 0x0C, 0x1F, 0xFF, 0xF8, 0x00, 0x00, 0x03, 0x00, 0x0C, 0x3F, 0xFE, 0xFF, 0xFB, - 0x8C, 0x7C, 0x31, 0xF1, 0xC7, 0xC7, 0x1F, 0x3C, 0x7C, 0xF1, 0xF6, 0xC7, 0x18, 0x00, 0x40, 0x00, - 0x73, 0x1C, 0xC7, 0xB1, 0xEC, 0xFF, 0xFF, 0xEF, 0xFF, 0xFF, 0x67, 0x19, 0xC6, 0x71, 0x8C, 0xFC, - 0x0F, 0xE0, 0xC6, 0x0C, 0x6C, 0xC6, 0xCC, 0xFF, 0xFD, 0xEF, 0x0C, 0xC0, 0xCC, 0x0C, 0xC0, 0xCC, - 0x0F, 0x00, 0x00, 0xFC, 0x07, 0xE0, 0x33, 0x81, 0x8D, 0xEC, 0xFF, 0x7E, 0xC3, 0xF7, 0x1B, 0x1E, - 0xCC, 0x76, 0x61, 0xF3, 0xED, 0x8F, 0xE0, 0x04, 0x00, 0xCE, 0x79, 0xCF, 0x39, 0xB7, 0x36, 0xFF, - 0xFF, 0xFF, 0xFB, 0xDE, 0x7B, 0xC7, 0x38, 0xE7, 0x18, 0xC0, 0xFE, 0x7F, 0xEF, 0x0D, 0xED, 0xBD, - 0xB7, 0xB6, 0xF6, 0xDE, 0xDB, 0xDB, 0x7B, 0x0F, 0x7F, 0xEF, 0xE0, 0x01, 0x81, 0xF8, 0x7F, 0x00, - 0xC3, 0xF8, 0xFF, 0x18, 0x63, 0x0C, 0x61, 0x8C, 0x31, 0x86, 0x39, 0xC3, 0xF8, 0x10, 0x0F, 0xF1, - 0xFE, 0x00, 0x07, 0xE3, 0xF8, 0xC0, 0x30, 0x3F, 0xCF, 0xF1, 0xF8, 0xFE, 0x1C, 0x03, 0x00, 0xFE, - 0x1F, 0x80, 0x80, 0x61, 0x9C, 0xE7, 0x71, 0xD8, 0x7C, 0x3F, 0xEF, 0xF9, 0xF8, 0x76, 0x1C, 0xC7, - 0x39, 0xC7, 0xFF, 0xFF, 0xE0, 0xC0, 0x3C, 0x0F, 0x07, 0x07, 0xF0, 0xB8, 0x1C, 0x1F, 0x02, 0xC0, - 0x30, 0x00, 0x00, 0xFE, 0x00, 0xFF, 0x00, 0x33, 0x80, 0x31, 0x80, 0x31, 0xC0, 0x31, 0xC0, 0x31, - 0xDE, 0x71, 0xBF, 0x63, 0xB3, 0x67, 0x73, 0x7F, 0x77, 0xFC, 0x7E, 0x00, 0x68, 0x00, 0x60, 0x00, - 0xE0, 0x00, 0xC0, 0x00, 0x07, 0x83, 0xE1, 0xB0, 0xD8, 0x6C, 0x3C, 0x0E, 0x06, 0x1F, 0x9F, 0xCF, - 0x6D, 0xB8, 0x0C, 0x06, 0x0F, 0x0F, 0x00, 0x7E, 0x1F, 0xCF, 0xFF, 0xFF, 0xFF, 0xBF, 0xF7, 0xF1, - 0xF8, 0x60, 0x18, 0x06, 0x01, 0x80, 0x06, 0x07, 0xF7, 0xFD, 0x98, 0xE6, 0x31, 0x8C, 0x7F, 0x1F, - 0xC6, 0xF1, 0xBE, 0x6D, 0xFF, 0x3F, 0xC1, 0x80, 0x40, 0x0C, 0x03, 0xC0, 0x78, 0x0F, 0x0F, 0xFD, - 0xFF, 0x8C, 0xE7, 0xFE, 0x61, 0x8C, 0x3B, 0x03, 0x60, 0x60, 0x00, 0x3F, 0x9F, 0xC0, 0x70, 0x3F, - 0xFC, 0x7D, 0xFF, 0xFF, 0xF0, 0x38, 0x0F, 0xF7, 0xF8, 0x60, 0x04, 0x0F, 0xE7, 0xFB, 0x90, 0xE4, - 0x31, 0x0C, 0x43, 0x10, 0xC4, 0x31, 0x0E, 0x41, 0xFE, 0x3F, 0x81, 0x80, 0x40, 0x22, 0x19, 0x8F, - 0xFF, 0xFF, 0x66, 0x19, 0x86, 0x61, 0x98, 0x66, 0x19, 0xD6, 0x3C, 0x02, 0x00, 0x00, 0x7E, 0x0F, - 0xE0, 0xC0, 0x0C, 0x00, 0xE0, 0x07, 0x80, 0x3E, 0x00, 0xEF, 0xFF, 0xED, 0xFE, 0xDE, 0x7F, 0xC2, - 0xF8, 0x24, 0x80, 0xFF, 0xFF, 0xFF, 0xFF, 0xF1, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, - 0x80, 0xFF, 0x7E, 0x18, 0xFF, 0x18, 0xF8, 0xF0, 0xE0, 0x60, 0x30, 0x38, 0x18, 0x30, 0x0C, 0x83, - 0xE3, 0xE0, 0xFE, 0x1F, 0x0F, 0x18, 0xC6, 0x31, 0x8C, 0xE3, 0xF0, 0xF8, 0x00, 0x00, 0x00, 0x07, - 0x80, 0x36, 0x01, 0xB0, 0x0F, 0xFF, 0x1F, 0xFC, 0x60, 0x63, 0xDB, 0x1F, 0xF8, 0xE9, 0x8F, 0x00, - 0x5F, 0x80, 0x7E, 0x00, 0x40, 0x03, 0x00, 0x18, 0x00, 0xC0, 0x1F, 0x03, 0xFE, 0x3D, 0xB9, 0x8C, - 0xCC, 0x67, 0x63, 0x1B, 0x10, 0xD8, 0x06, 0xC0, 0x30, 0x7F, 0x1F, 0xE7, 0x19, 0xC6, 0x71, 0x9D, - 0xEF, 0xF3, 0xE0, 0xFC, 0x3F, 0x07, 0x01, 0xC0, 0x1B, 0x03, 0xE1, 0xFF, 0x3D, 0xED, 0xBF, 0xB6, - 0xF6, 0xDE, 0x53, 0xC0, 0x1C, 0x01, 0x80, 0x3F, 0xE7, 0xFC, 0x3C, 0x3C, 0xFE, 0xFF, 0xE3, 0xE3, - 0xE7, 0xFE, 0xFF, 0xE3, 0xE3, 0xE3, 0xFF, 0xFE, 0x3C, 0x3C, 0x00, 0x3F, 0x7E, 0x60, 0x60, 0xE0, - 0xE0, 0x60, 0x7E, 0x3F, 0x0C, 0x7F, 0x7E, 0x7F, 0xFF, 0xC0, 0x1E, 0xF1, 0xF7, 0x8C, 0x70, 0xE3, - 0x0F, 0xFF, 0x7D, 0xF1, 0xC6, 0x0E, 0x30, 0x71, 0x83, 0x8C, 0x1C, 0x60, 0xE3, 0x07, 0x18, 0x00, - 0x1F, 0x1F, 0xCC, 0x6E, 0x0F, 0xDF, 0xCD, 0xC6, 0xE3, 0x71, 0xB8, 0xDC, 0x6E, 0x37, 0x18, 0x1F, - 0x9F, 0xCC, 0x6E, 0x3F, 0xDF, 0xCD, 0xC6, 0xE3, 0x71, 0xB8, 0xDC, 0x6E, 0x37, 0x18, 0x1E, 0xF4, - 0x7D, 0xFC, 0xC7, 0x1B, 0x8C, 0x0F, 0xFF, 0x7F, 0x7C, 0xDC, 0x61, 0xB8, 0xC3, 0x71, 0x86, 0xE3, - 0x0D, 0xC6, 0x1B, 0x8C, 0x37, 0x18, 0x60, 0x1E, 0xFE, 0x7D, 0xEC, 0xC7, 0x1B, 0x8C, 0x3F, 0xFF, - 0x7F, 0x7C, 0xDC, 0x61, 0xB8, 0xC3, 0x71, 0x86, 0xE3, 0x0D, 0xC6, 0x1B, 0x8C, 0x37, 0x18, 0x60, - 0x7C, 0x1F, 0x8C, 0x73, 0x1C, 0xCF, 0xF1, 0xFC, 0x73, 0x1C, 0xC7, 0x31, 0xCC, 0x73, 0x1C, 0xC3, - 0xC0, 0x20, 0x03, 0xC0, 0x1F, 0x80, 0x66, 0x01, 0x98, 0x7E, 0xFD, 0xFB, 0xEE, 0x06, 0x1E, 0x18, - 0x3E, 0x60, 0x39, 0x80, 0x76, 0x19, 0x9C, 0x7E, 0x3C, 0x40, 0x20, 0x00, 0x80, 0x01, 0xC0, 0x03, - 0xE0, 0x07, 0xF0, 0x0C, 0x38, 0x1F, 0xDC, 0x3F, 0xDE, 0x7F, 0xBF, 0x7F, 0x7F, 0x3F, 0x7E, 0x1F, - 0xFC, 0x0F, 0xF8, 0x06, 0x70, 0x03, 0xE0, 0x01, 0xC0, 0x00, 0x80, + 0x00, 0x22, 0x0F, 0xC1, 0xF9, 0x80, 0x3C, 0x3F, 0x87, 0xB0, 0xC6, 0x18, 0xC3, 0x18, 0x63, 0x0C, + 0x77, 0x87, 0xF0, 0x20, 0x00, 0x00, 0x1E, 0x07, 0xF0, 0x3D, 0x81, 0xCC, 0x0C, 0x60, 0x63, 0x03, + 0x18, 0x18, 0xC0, 0xC6, 0x06, 0x38, 0x70, 0xFF, 0x03, 0xF0, 0x06, 0x00, 0x30, 0x01, 0x80, 0x00, + 0x60, 0x0F, 0x0F, 0xE1, 0xEC, 0x31, 0x86, 0x30, 0xC6, 0x18, 0xC3, 0x1D, 0xE1, 0xFC, 0x08, 0x01, + 0x80, 0x30, 0x00, 0x38, 0x06, 0x00, 0xC0, 0x00, 0xC1, 0xF8, 0x66, 0x39, 0xCC, 0x36, 0x07, 0x81, + 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x30, 0x1C, 0x07, 0x00, 0x0C, 0x3F, 0x19, 0x8C, 0xCE, + 0x76, 0x1B, 0x0F, 0x03, 0x81, 0xC0, 0xC0, 0x61, 0xE0, 0xF0, 0x00, 0xC1, 0xF8, 0x66, 0x39, 0xCC, + 0x36, 0x07, 0x81, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x00, 0x03, 0x00, 0xC0, 0xC3, 0xF1, + 0x98, 0xCC, 0xE7, 0x61, 0xB0, 0xF0, 0x38, 0x1C, 0x0C, 0x07, 0xDE, 0xEF, 0x00, 0x1C, 0x07, 0x80, + 0x60, 0x30, 0x08, 0x30, 0x7E, 0x19, 0x8E, 0x73, 0x0D, 0x81, 0xE0, 0x70, 0x0C, 0x03, 0x00, 0xC0, + 0x30, 0x0C, 0x00, 0x1C, 0x0E, 0x03, 0x03, 0x00, 0x06, 0x1F, 0x8C, 0xC6, 0x67, 0x3B, 0x0D, 0x87, + 0x81, 0xC0, 0xE0, 0x60, 0x30, 0xF0, 0x78, 0x00, 0x11, 0x0F, 0xC6, 0xE0, 0x00, 0xC1, 0xF8, 0x66, + 0x39, 0xCC, 0x36, 0x07, 0x81, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x32, 0x3F, 0x9B, 0x80, + 0x0C, 0x3F, 0x19, 0x8C, 0xCE, 0x76, 0x1B, 0x0F, 0x03, 0x81, 0xC0, 0xC0, 0x61, 0xE0, 0xF0, 0x00, + 0x21, 0xBF, 0xEC, 0x63, 0x18, 0xC6, 0x31, 0x8C, 0x60, 0x00, 0x23, 0x3E, 0xF1, 0x8C, 0x63, 0x18, + 0xC6, 0x31, 0x8C, 0x00, 0x77, 0xDE, 0x77, 0xDE, 0xFF, 0xFF, 0xC0, 0x7E, 0xFF, 0x7F, 0x7F, 0xFF, + 0xFF, 0xFF, 0x7F, 0xFF, 0x7F, 0xFF, 0xFF, 0xFF, 0x7F, 0xFF, 0xDB, 0x6D, 0xB6, 0xDB, 0x6D, 0xB6, + 0xDB, 0x6D, 0xB6, 0xDB, 0x6D, 0xB6, 0xD8, 0x00, 0x7F, 0x7F, 0x7F, 0x7F, 0x6F, 0xEC, 0x7F, 0x68, + 0x66, 0x6C, 0x00, 0xDD, 0xB2, 0x6D, 0xBF, 0xF6, 0xD8, 0x6F, 0xFD, 0xB6, 0x90, 0x6C, 0xD9, 0xB6, + 0xC0, 0x80, 0xDB, 0x76, 0xDB, 0x24, 0x30, 0x60, 0xC7, 0xFF, 0xE6, 0x0C, 0x18, 0x30, 0x60, 0xC1, + 0x83, 0x00, 0x30, 0x60, 0xC7, 0xFF, 0xE6, 0x0C, 0x18, 0xF7, 0xFC, 0xC1, 0x83, 0x00, 0x0F, 0xFF, + 0xF0, 0x87, 0x3D, 0xEC, 0x00, 0x1B, 0xA0, 0x01, 0xDF, 0xBA, 0x20, 0x00, 0x1D, 0xCF, 0xB9, 0xA2, + 0x20, 0x1F, 0xA0, 0x07, 0xF1, 0x8C, 0x63, 0x18, 0xC6, 0x31, 0x8C, 0x00, 0x07, 0xC6, 0x31, 0x8C, + 0x63, 0x18, 0xC6, 0x31, 0x80, 0xFF, 0xFF, 0x66, 0x66, 0x66, 0x66, 0x66, 0x00, 0xFF, 0x8F, 0x66, + 0x66, 0x66, 0x66, 0x66, 0x00, 0xFF, 0x1F, 0x66, 0x66, 0x66, 0x66, 0x66, 0x00, 0x00, 0x00, 0x0F, + 0x0C, 0x01, 0xB3, 0x00, 0x26, 0x60, 0x0C, 0xD8, 0x01, 0x9B, 0x43, 0x1B, 0xFE, 0xF3, 0xFE, 0xDB, + 0x36, 0xDB, 0x60, 0xDB, 0xCC, 0x33, 0x6D, 0x8E, 0x6D, 0xB1, 0x87, 0xBC, 0x00, 0x41, 0x00, 0x00, + 0x00, 0x00, 0x3C, 0x30, 0x00, 0x1B, 0x18, 0x00, 0x1D, 0x98, 0x00, 0x0C, 0xD8, 0x00, 0x06, 0x6D, + 0x84, 0x11, 0xBF, 0xEF, 0xBE, 0xFF, 0xB6, 0xDB, 0x36, 0xCF, 0x7D, 0x83, 0x67, 0xBE, 0xC3, 0x33, + 0xDB, 0x61, 0x9B, 0x6D, 0xB1, 0x87, 0x9E, 0xF8, 0x01, 0x04, 0x10, 0x31, 0x98, 0xC4, 0x00, 0x36, + 0x36, 0x6C, 0x6C, 0x48, 0x36, 0xC6, 0xD9, 0xB6, 0x36, 0x85, 0xB0, 0xE3, 0x0C, 0x61, 0x00, 0xF8, + 0xD8, 0xF1, 0xB1, 0x20, 0xFB, 0x1B, 0xE3, 0xD8, 0xDB, 0x12, 0xC0, 0x10, 0x60, 0xE3, 0x44, 0xD8, + 0x80, 0x19, 0x9D, 0xC6, 0x18, 0x60, 0x43, 0x0C, 0x73, 0x31, 0x80, 0x00, 0x01, 0x8C, 0x67, 0x33, + 0x8E, 0x1C, 0x1C, 0xE0, 0x3F, 0x06, 0x79, 0x99, 0xE6, 0x0F, 0xC0, 0x73, 0x83, 0x87, 0x1C, 0xCE, + 0x63, 0x18, 0x08, 0x00, 0xCD, 0x9B, 0x36, 0x6C, 0xD9, 0xB3, 0x66, 0xCC, 0x03, 0xB7, 0x64, 0x40, + 0x01, 0xFB, 0xF9, 0xB3, 0x66, 0xCF, 0x1C, 0x30, 0x60, 0x01, 0x83, 0x00, 0x00, 0x7F, 0xDF, 0xF0, + 0x80, 0x70, 0x37, 0x18, 0xFC, 0x0C, 0x0F, 0xC6, 0x1B, 0x03, 0x00, 0x00, 0x0C, 0x30, 0x86, 0x18, + 0xC3, 0x1C, 0x79, 0x2C, 0xC0, 0x00, 0xC0, 0x00, 0x18, 0x00, 0x0B, 0x20, 0x03, 0xFC, 0x00, 0x3F, + 0x80, 0x03, 0xC0, 0x00, 0xEC, 0x00, 0x4D, 0x90, 0x18, 0x07, 0x03, 0x00, 0xC3, 0xFC, 0xFB, 0xFF, + 0x9F, 0xF3, 0xC0, 0x70, 0x7C, 0x1F, 0x1D, 0x83, 0x61, 0x20, 0x00, 0x77, 0xDE, 0x01, 0x80, 0x60, + 0x30, 0x0C, 0x06, 0x03, 0x00, 0xC0, 0x60, 0x18, 0x0C, 0x06, 0x01, 0x80, 0xFF, 0xCC, 0xCC, 0xFF, + 0xCC, 0xCC, 0xCF, 0xF0, 0xFF, 0xCE, 0x73, 0x9F, 0xFF, 0x39, 0xCE, 0x73, 0xFF, 0xC0, 0x00, 0x03, + 0xF7, 0xEF, 0xFF, 0xC1, 0x83, 0x06, 0x0C, 0x38, 0x71, 0xC3, 0x8E, 0x1C, 0x30, 0x60, 0xC1, 0x80, + 0x00, 0x0C, 0x18, 0x30, 0x60, 0x00, 0x00, 0x00, 0x1F, 0x9B, 0xFB, 0x03, 0x60, 0x6C, 0x1D, 0x87, + 0x31, 0xC6, 0x30, 0xC6, 0x18, 0x00, 0x18, 0x63, 0x0C, 0x00, 0x80, 0x00, 0x37, 0xED, 0xFF, 0x03, + 0xC0, 0xF0, 0x7C, 0x3B, 0x1C, 0xC6, 0x31, 0x80, 0x03, 0x98, 0xE6, 0x10, 0x80, 0xFF, 0xBF, 0xC0, + 0xC0, 0xC0, 0x60, 0x60, 0x70, 0x30, 0x30, 0x00, 0xFE, 0x7F, 0xB7, 0xFB, 0xFD, 0xFE, 0xFF, 0x7F, + 0xBE, 0xDE, 0x6C, 0x36, 0x1B, 0x0D, 0x86, 0xC3, 0x60, 0x00, 0x3F, 0xDF, 0xF7, 0xED, 0xFB, 0x7E, + 0xDF, 0xB7, 0xED, 0xFF, 0x1F, 0x80, 0xFF, 0x7F, 0xF7, 0xFB, 0xFD, 0xFE, 0xFF, 0x7F, 0xFE, 0xFE, + 0x00, 0x1C, 0x0E, 0x13, 0x5F, 0xF7, 0xF1, 0xF0, 0xD8, 0x6C, 0x0E, 0xE0, 0x00, 0x00, 0x66, 0x63, + 0x00, 0x0C, 0x0F, 0xC6, 0x1B, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x08, 0x07, 0x03, 0x71, 0x8F, 0xC0, 0x1C, 0x0E, 0x13, 0x5F, 0xF7, 0xF1, 0xF0, 0xD8, + 0x6C, 0x1C, 0x0E, 0x13, 0x5F, 0xF7, 0xF1, 0xF0, 0xD8, 0x6C, 0x01, 0x9B, 0x30, 0xE1, 0x83, 0x0C, + 0x18, 0x70, 0xC1, 0x86, 0x6C, 0xC0, 0x00, 0x18, 0x00, 0xFF, 0x0F, 0x1F, 0xF4, 0x03, 0xC0, 0x1E, + 0x1F, 0xE6, 0x0F, 0x03, 0x08, 0x16, 0x9F, 0xC7, 0xCF, 0xFF, 0xFC, 0xFC, 0xDE, 0x0C, 0x00, 0x00, + 0x00, 0x03, 0x03, 0x00, 0x00, 0x00, 0x60, 0x60, 0x00, 0x00, 0x00, 0x03, 0x07, 0x02, 0x36, 0xD9, + 0xBF, 0x9B, 0x6C, 0xD6, 0xC5, 0xB4, 0x00, 0x00, 0x00, 0x38, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x80, 0x6C, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x70, 0x01, 0x00, 0x00, 0x03, + 0x00, 0xD8, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xC0, 0x36, 0x01, 0xA0, 0x08, 0x0D, 0x80, 0x00, 0x00, 0x36, 0x00, 0x04, 0x01, 0xC0, 0x30, 0x00, + 0x00, 0x00, 0x00, 0x18, 0x33, 0x06, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0xE0, 0x08, 0x00, 0x02, + 0x00, 0x18, 0x0C, 0xDC, 0x66, 0xE2, 0x32, 0x01, 0x83, 0xFF, 0xFF, 0xFF, 0x03, 0x00, 0x18, 0x0C, + 0xD8, 0x66, 0xC0, 0x30, 0x01, 0x00, 0xDF, 0x01, 0xBE, 0x03, 0xF4, 0x1F, 0x8D, 0xF6, 0xF8, 0x7E, + 0x80, 0xFF, 0x6F, 0x66, 0x66, 0x66, 0x66, 0x66, 0x00, 0xFF, 0x9F, 0x66, 0x66, 0x66, 0x66, 0x66, + 0x00, 0xFF, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x00, 0x06, 0xFF, 0x66, 0x66, 0x66, 0x66, 0x66, + 0x00, 0x6F, 0xF6, 0x66, 0x66, 0x66, 0x66, 0x66, 0x00, 0xEE, 0x6F, 0x66, 0x66, 0x66, 0x66, 0x66, + 0x00, 0x21, 0xEC, 0xF3, 0xCF, 0x3C, 0xDE, 0x20, 0x15, 0x55, 0x40, 0x00, 0x63, 0x9E, 0xDB, 0xFF, + 0xC6, 0x00, 0x01, 0xEC, 0x3C, 0xF8, 0x30, 0xFE, 0x20, 0x19, 0xEE, 0x3E, 0xFF, 0x3C, 0xDE, 0x30, + 0x03, 0xF1, 0x86, 0x18, 0xC3, 0x18, 0x00, 0x31, 0xEC, 0xFE, 0x7B, 0x7C, 0xFE, 0x30, 0x33, 0xEC, + 0xF3, 0xFD, 0xF1, 0x9E, 0x60, 0x20, 0xCF, 0xBE, 0x30, 0x80, 0xFB, 0xE0, 0x7B, 0xEF, 0xBE, 0x0F, + 0x69, 0x36, 0xCC, 0x19, 0xB6, 0xDB, 0x58, 0x19, 0xF4, 0xD1, 0x45, 0x14, 0x40, 0x21, 0xEC, 0xF3, + 0xCF, 0x3C, 0xDE, 0x20, 0x07, 0xF3, 0x33, 0x33, 0x00, 0x33, 0xE5, 0x86, 0x18, 0xC6, 0x3E, 0x00, + 0x33, 0xE1, 0x86, 0x78, 0x30, 0xFE, 0x20, 0x00, 0x63, 0x9E, 0xDB, 0xFF, 0xC6, 0x00, 0x01, 0xEC, + 0x3C, 0xF8, 0x30, 0xFE, 0x20, 0x19, 0xEE, 0x3E, 0xFF, 0x3C, 0xDE, 0x30, 0x03, 0xF1, 0x86, 0x18, + 0xC3, 0x18, 0x00, 0x31, 0xEC, 0xFE, 0x7B, 0x7C, 0xFE, 0x30, 0x33, 0xEC, 0xF3, 0xFD, 0xF1, 0x9E, + 0x60, 0x20, 0xCF, 0xBE, 0x30, 0x80, 0xFB, 0xE0, 0x7B, 0xEF, 0xBE, 0x0F, 0x69, 0x36, 0xCC, 0x19, + 0xB6, 0xDB, 0x58, 0x78, 0x37, 0xFB, 0xDD, 0xE0, 0x79, 0x3F, 0xF0, 0x69, 0xE0, 0x7B, 0x3C, 0x71, + 0x6D, 0xE0, 0xCD, 0xE3, 0x1C, 0x7B, 0x30, 0x78, 0x37, 0xFF, 0xDD, 0xE0, 0x41, 0x07, 0xDB, 0x45, + 0x14, 0x51, 0x41, 0x04, 0xD6, 0x71, 0xC5, 0x93, 0x55, 0x55, 0x7F, 0x9B, 0x34, 0xCD, 0x33, 0x4C, + 0xD3, 0x30, 0x7D, 0xB4, 0x51, 0x45, 0x10, 0x7C, 0xD9, 0x12, 0x26, 0xCF, 0x10, 0x20, 0x7E, 0x1C, + 0x7D, 0xF8, 0x4F, 0x44, 0x46, 0x70, 0x00, 0x1F, 0x1D, 0x1C, 0x0C, 0xFE, 0x7F, 0xB0, 0xD8, 0x7F, + 0x8F, 0xC3, 0x01, 0x80, 0xF8, 0x05, 0x83, 0xE3, 0xF8, 0xFE, 0x6F, 0x1A, 0xCF, 0xB3, 0xE8, 0x7E, + 0x1F, 0x87, 0x60, 0xFE, 0x3F, 0x0F, 0x00, 0x00, 0x0F, 0xCF, 0xEE, 0x06, 0x03, 0x2D, 0xBE, 0xDC, + 0x6C, 0x36, 0x1F, 0x07, 0xB1, 0xF8, 0x30, 0x3F, 0x9F, 0xCC, 0x06, 0x03, 0x01, 0xF8, 0xFE, 0x60, + 0x7C, 0x7E, 0x0C, 0x06, 0x00, 0x00, 0x0F, 0xCF, 0xE6, 0x03, 0x03, 0xF3, 0xF8, 0x60, 0xFE, 0x3F, + 0x0C, 0x1F, 0xFF, 0xF8, 0x00, 0x00, 0x03, 0x00, 0x0C, 0x3F, 0xFE, 0xFF, 0xFB, 0x8C, 0x7C, 0x31, + 0xF1, 0xC7, 0xC7, 0x1F, 0x3C, 0x7C, 0xF1, 0xF6, 0xC7, 0x18, 0x00, 0x40, 0x00, 0x73, 0x1C, 0xC7, + 0xB1, 0xEC, 0xFF, 0xFF, 0xEF, 0xFF, 0xFF, 0x67, 0x19, 0xC6, 0x71, 0x8C, 0xFC, 0x0F, 0xE0, 0xC6, + 0x0C, 0x6C, 0xC6, 0xCC, 0xFF, 0xFD, 0xEF, 0x0C, 0xC0, 0xCC, 0x0C, 0xC0, 0xCC, 0x0F, 0x00, 0x00, + 0xFC, 0x07, 0xE0, 0x33, 0x81, 0x8D, 0xEC, 0xFF, 0x7E, 0xC3, 0xF7, 0x1B, 0x1E, 0xCC, 0x76, 0x61, + 0xF3, 0xED, 0x8F, 0xE0, 0x04, 0x00, 0xCE, 0x79, 0xCF, 0x39, 0xB7, 0x36, 0xFF, 0xFF, 0xFF, 0xFB, + 0xDE, 0x7B, 0xC7, 0x38, 0xE7, 0x18, 0xC0, 0xFE, 0x7F, 0xEF, 0x0D, 0xED, 0xBD, 0xB7, 0xB6, 0xF6, + 0xDE, 0xDB, 0xDB, 0x7B, 0x0F, 0x7F, 0xEF, 0xE0, 0x01, 0x81, 0xF8, 0x7F, 0x00, 0xC3, 0xF8, 0xFF, + 0x18, 0x63, 0x0C, 0x61, 0x8C, 0x31, 0x86, 0x39, 0xC3, 0xF8, 0x10, 0x0F, 0xF1, 0xFE, 0x00, 0x07, + 0xE3, 0xF8, 0xC0, 0x30, 0x3F, 0xCF, 0xF1, 0xF8, 0xFE, 0x1C, 0x03, 0x00, 0xFE, 0x1F, 0x80, 0x80, + 0x61, 0x9C, 0xE7, 0x71, 0xD8, 0x7C, 0x3F, 0xEF, 0xF9, 0xF8, 0x76, 0x1C, 0xC7, 0x39, 0xC7, 0xFF, + 0xFF, 0xE0, 0xC0, 0x3C, 0x0F, 0x07, 0x07, 0xF0, 0xB8, 0x1C, 0x1F, 0x02, 0xC0, 0x30, 0x00, 0x00, + 0xFE, 0x00, 0xFF, 0x00, 0x33, 0x80, 0x31, 0x80, 0x31, 0xC0, 0x31, 0xC0, 0x31, 0xDE, 0x71, 0xBF, + 0x63, 0xB3, 0x67, 0x73, 0x7F, 0x77, 0xFC, 0x7E, 0x00, 0x68, 0x00, 0x60, 0x00, 0xE0, 0x00, 0xC0, + 0x00, 0x07, 0x83, 0xE1, 0xB0, 0xD8, 0x6C, 0x3C, 0x0E, 0x06, 0x1F, 0x9F, 0xCF, 0x6D, 0xB8, 0x0C, + 0x06, 0x0F, 0x0F, 0x00, 0x7E, 0x1F, 0xCF, 0xFF, 0xFF, 0xFF, 0xBF, 0xF7, 0xF1, 0xF8, 0x60, 0x18, + 0x06, 0x01, 0x80, 0x06, 0x07, 0xF7, 0xFD, 0x98, 0xE6, 0x31, 0x8C, 0x7F, 0x1F, 0xC6, 0xF1, 0xBE, + 0x6D, 0xFF, 0x3F, 0xC1, 0x80, 0x40, 0x0C, 0x03, 0xC0, 0x78, 0x0F, 0x0F, 0xFD, 0xFF, 0x8C, 0xE7, + 0xFE, 0x61, 0x8C, 0x3B, 0x03, 0x60, 0x60, 0x00, 0x3F, 0x9F, 0xC0, 0x70, 0x3F, 0xFC, 0x7D, 0xFF, + 0xFF, 0xF0, 0x38, 0x0F, 0xF7, 0xF8, 0x60, 0x04, 0x0F, 0xE7, 0xFB, 0x90, 0xE4, 0x31, 0x0C, 0x43, + 0x10, 0xC4, 0x31, 0x0E, 0x41, 0xFE, 0x3F, 0x81, 0x80, 0x40, 0x22, 0x19, 0x8F, 0xFF, 0xFF, 0x66, + 0x19, 0x86, 0x61, 0x98, 0x66, 0x19, 0xD6, 0x3C, 0x02, 0x00, 0x00, 0x7E, 0x0F, 0xE0, 0xC0, 0x0C, + 0x00, 0xE0, 0x07, 0x80, 0x3E, 0x00, 0xEF, 0xFF, 0xED, 0xFE, 0xDE, 0x7F, 0xC2, 0xF8, 0x24, 0x80, + 0xFF, 0xFF, 0xFF, 0xFF, 0xF1, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x80, 0xFF, 0x7E, + 0x18, 0xFF, 0x18, 0xF8, 0xF0, 0xE0, 0x60, 0x30, 0x38, 0x18, 0x30, 0x0C, 0x83, 0xE3, 0xE0, 0xFE, + 0x1F, 0x0F, 0x18, 0xC6, 0x31, 0x8C, 0xE3, 0xF0, 0xF8, 0x00, 0x00, 0x00, 0x07, 0x80, 0x36, 0x01, + 0xB0, 0x0F, 0xFF, 0x1F, 0xFC, 0x60, 0x63, 0xDB, 0x1F, 0xF8, 0xE9, 0x8F, 0x00, 0x5F, 0x80, 0x7E, + 0x00, 0x40, 0x03, 0x00, 0x18, 0x00, 0xC0, 0x1F, 0x03, 0xFE, 0x3D, 0xB9, 0x8C, 0xCC, 0x67, 0x63, + 0x1B, 0x10, 0xD8, 0x06, 0xC0, 0x30, 0x7F, 0x1F, 0xE7, 0x19, 0xC6, 0x71, 0x9D, 0xEF, 0xF3, 0xE0, + 0xFC, 0x3F, 0x07, 0x01, 0xC0, 0x1B, 0x03, 0xE1, 0xFF, 0x3D, 0xED, 0xBF, 0xB6, 0xF6, 0xDE, 0x53, + 0xC0, 0x1C, 0x01, 0x80, 0x3F, 0xE7, 0xFC, 0x3C, 0x3C, 0xFE, 0xFF, 0xE3, 0xE3, 0xE7, 0xFE, 0xFF, + 0xE3, 0xE3, 0xE3, 0xFF, 0xFE, 0x3C, 0x3C, 0x00, 0x3F, 0x7E, 0x60, 0x60, 0xE0, 0xE0, 0x60, 0x7E, + 0x3F, 0x0C, 0x7F, 0x7E, 0x7F, 0xFF, 0xC0, 0x00, 0x40, 0x18, 0x03, 0x00, 0xCF, 0x19, 0xE3, 0x06, + 0xC0, 0xD8, 0x0E, 0x01, 0xC0, 0x18, 0x02, 0x00, 0x1E, 0xF1, 0xF7, 0x8C, 0x70, 0xE3, 0x0F, 0xFF, + 0x7D, 0xF1, 0xC6, 0x0E, 0x30, 0x71, 0x83, 0x8C, 0x1C, 0x60, 0xE3, 0x07, 0x18, 0x00, 0x1F, 0x1F, + 0xCC, 0x6E, 0x0F, 0xDF, 0xCD, 0xC6, 0xE3, 0x71, 0xB8, 0xDC, 0x6E, 0x37, 0x18, 0x1F, 0x9F, 0xCC, + 0x6E, 0x3F, 0xDF, 0xCD, 0xC6, 0xE3, 0x71, 0xB8, 0xDC, 0x6E, 0x37, 0x18, 0x1E, 0xF4, 0x7D, 0xFC, + 0xC7, 0x1B, 0x8C, 0x0F, 0xFF, 0x7F, 0x7C, 0xDC, 0x61, 0xB8, 0xC3, 0x71, 0x86, 0xE3, 0x0D, 0xC6, + 0x1B, 0x8C, 0x37, 0x18, 0x60, 0x1E, 0xFE, 0x7D, 0xEC, 0xC7, 0x1B, 0x8C, 0x3F, 0xFF, 0x7F, 0x7C, + 0xDC, 0x61, 0xB8, 0xC3, 0x71, 0x86, 0xE3, 0x0D, 0xC6, 0x1B, 0x8C, 0x37, 0x18, 0x60, 0x7C, 0x1F, + 0x8C, 0x73, 0x1C, 0xCF, 0xF1, 0xFC, 0x73, 0x1C, 0xC7, 0x31, 0xCC, 0x73, 0x1C, 0xC3, 0xC0, 0x20, + 0x03, 0xC0, 0x1F, 0x80, 0x66, 0x01, 0x98, 0x7E, 0xFD, 0xFB, 0xEE, 0x06, 0x1E, 0x18, 0x3E, 0x60, + 0x39, 0x80, 0x76, 0x19, 0x9C, 0x7E, 0x3C, 0x40, 0x20, 0x00, 0x06, 0x40, 0x07, 0xC0, 0x03, 0xC0, + 0x03, 0xC0, 0x03, 0xF8, 0x3F, 0x7F, 0xFE, 0x0F, 0xE0, 0x03, 0xC0, 0x03, 0xC0, 0x01, 0x80, 0x01, + 0x80, 0x40, 0x00, 0x0C, 0x00, 0x00, 0xC0, 0x03, 0x0C, 0x00, 0x78, 0xF8, 0x7F, 0xE7, 0xFF, 0x9E, + 0x0F, 0xC0, 0x00, 0x2C, 0x00, 0x07, 0xC0, 0x00, 0x18, 0x00, 0x01, 0x80, 0x00, 0x18, 0xC6, 0x31, + 0xBD, 0xC0, 0x7B, 0xCC, 0x60, 0x10, 0x30, 0x30, 0xFE, 0xFE, 0x00, 0x78, 0x78, 0x30, 0x30, 0x01, + 0x00, 0x01, 0xC0, 0x01, 0xE0, 0x03, 0xE0, 0x03, 0xC0, 0x00, 0x06, 0x40, 0x07, 0xC0, 0x03, 0xC0, + 0x03, 0xC0, 0x03, 0xF8, 0x3F, 0x7F, 0xFE, 0x0F, 0xE0, 0x01, 0x00, 0x00, 0x1C, 0x00, 0x01, 0xE0, + 0x00, 0x3E, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x40, 0x00, 0x0C, 0x00, 0x00, 0xC0, 0x03, 0x0C, + 0x00, 0x78, 0xF8, 0x7F, 0xE7, 0xFF, 0x9E, 0x0F, 0xC0, 0x00, 0x43, 0x9F, 0xFF, 0x00, 0x0C, 0x71, + 0x8C, 0x6F, 0x70, 0x00, 0x20, 0x38, 0x3C, 0x7C, 0x78, 0x00, 0x00, 0x10, 0x30, 0x30, 0xFE, 0xFE, + 0x00, 0xFC, 0x1F, 0xF8, 0x1F, 0x0F, 0x83, 0x80, 0xE0, 0x3B, 0xC6, 0x78, 0xC6, 0x18, 0xC3, 0x80, + 0x38, 0x23, 0xFE, 0x3F, 0x00, 0xFC, 0x07, 0xFE, 0x01, 0xF0, 0x3F, 0x03, 0x8C, 0x38, 0x7F, 0xBD, + 0xF9, 0xE0, 0xC6, 0x06, 0x30, 0x38, 0x00, 0xE0, 0x83, 0xFE, 0x0F, 0xC0, 0x7C, 0x1F, 0xC0, 0x78, + 0x3E, 0xFE, 0x3E, 0x00, 0x00, 0x58, 0x3E, 0x03, 0x00, 0xC0, 0x7C, 0x07, 0xF0, 0x07, 0x80, 0xF8, + 0xFF, 0xEF, 0x8F, 0x00, 0x03, 0x40, 0x3E, 0x01, 0x80, 0x18, 0x00, 0x30, 0x38, 0x3C, 0x7C, 0x7C, + 0x00, 0x08, 0x0C, 0x0E, 0x06, 0x06, 0x07, 0x7E, 0xFE, 0x00, 0x30, 0x0F, 0x03, 0xC1, 0xF0, 0x7C, + 0x00, 0x00, 0x80, 0x30, 0x0E, 0x01, 0x80, 0x60, 0x1C, 0x7F, 0xFF, 0xF0, 0x00, 0x18, 0x30, 0xF1, + 0xE0, 0x01, 0x03, 0x06, 0x0C, 0x18, 0x30, 0xE3, 0x9E, 0x18, 0x00, 0x18, 0x0C, 0x1F, 0x05, 0x80, + 0x00, 0x40, 0x30, 0x18, 0x0E, 0x07, 0x83, 0xE3, 0x83, 0x87, 0x81, 0x80, 0x30, 0x78, 0xF9, 0xF3, + 0xC0, 0x00, 0x04, 0x0C, 0x18, 0x30, 0x60, 0xC3, 0x8E, 0x78, 0x60, 0x30, 0x1E, 0x0F, 0x07, 0x87, + 0xC0, 0x00, 0x00, 0x10, 0x0C, 0x06, 0x03, 0x81, 0xE0, 0xF8, 0xE0, 0xE1, 0xE0, 0x60, 0x00, 0x00, + 0x06, 0x00, 0x3C, 0x01, 0xE0, 0x07, 0x00, 0x0C, 0x00, 0x1E, 0x10, 0x0E, 0x60, 0x0C, 0xC0, 0x0D, + 0x80, 0x1B, 0xE0, 0xF3, 0xFF, 0xC0, 0xFC, 0x00, 0x00, 0x06, 0x00, 0x07, 0x80, 0x07, 0xC0, 0x03, + 0xC0, 0x00, 0xC0, 0x00, 0x38, 0x04, 0x03, 0x03, 0x00, 0x60, 0xC0, 0x1C, 0x30, 0x03, 0x8F, 0x87, + 0xF9, 0xFF, 0xEE, 0x0F, 0xC0, 0x00, 0x06, 0x1E, 0x7C, 0xF0, 0xE0, 0x70, 0x38, 0x1C, 0x0C, 0x0C, + 0xFC, 0xF8, 0x00, 0x06, 0x07, 0x87, 0xC3, 0xC0, 0xE0, 0x1C, 0x03, 0x80, 0x60, 0x0C, 0x03, 0x8F, + 0xFB, 0xEF, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x78, 0x01, 0xD8, 0x07, 0xF0, 0x0F, 0x80, 0x1C, 0x00, + 0x30, 0x00, 0x78, 0x40, 0x39, 0x80, 0x33, 0x00, 0x36, 0x00, 0x6F, 0x83, 0xCF, 0xFF, 0x03, 0xF0, + 0x00, 0x00, 0x0C, 0x00, 0x0F, 0x00, 0x07, 0x60, 0x03, 0xF8, 0x00, 0xFC, 0x00, 0x3C, 0x00, 0x0C, + 0x00, 0x03, 0x80, 0x40, 0x30, 0x30, 0x06, 0x0C, 0x01, 0xC3, 0x00, 0x38, 0xF8, 0x7F, 0x9F, 0xFE, + 0xE0, 0xFC, 0x00, 0x0C, 0x1C, 0x7E, 0xFE, 0xFC, 0xF0, 0xE0, 0x70, 0x38, 0x1C, 0x0C, 0x0C, 0xFC, + 0xF8, 0x00, 0x0C, 0x07, 0x07, 0xE3, 0xF8, 0xFC, 0x3C, 0x0E, 0x01, 0xC0, 0x38, 0x06, 0x00, 0xC0, + 0x38, 0xFF, 0xBE, 0xF0, 0x00, 0x00, 0x00, 0x18, 0x03, 0xB0, 0x3C, 0x07, 0x80, 0xF0, 0x1F, 0x06, + 0x7F, 0xC7, 0xE0, 0x00, 0xC0, 0x07, 0x18, 0x19, 0x80, 0xFC, 0x07, 0xE0, 0x33, 0x83, 0x0F, 0xF8, + 0x3F, 0x80, 0x30, 0x71, 0xF3, 0x6C, 0x78, 0xFF, 0x3E, 0x38, 0x3E, 0x3B, 0x19, 0xCC, 0x7E, 0x1C, + 0x00, 0x67, 0x33, 0x3F, 0xE2, 0x66, 0x00, 0x20, 0x71, 0xB9, 0xC5, 0xC3, 0xC1, 0xE0, 0x60, 0x10, + 0x00, 0x01, 0x80, 0x3C, 0x0F, 0xC1, 0xBC, 0x37, 0x87, 0xDF, 0xFF, 0xFF, 0xC4, 0x00, 0x07, 0x00, + 0xF8, 0x0D, 0x81, 0x98, 0x1B, 0x8F, 0xFE, 0xFF, 0xE1, 0x8C, 0x1C, 0xC0, 0xF8, 0x07, 0x80, 0x00, + 0x1C, 0x0F, 0x0F, 0xC6, 0x73, 0x7D, 0xF7, 0xFF, 0xFF, 0x81, 0x00, 0x1E, 0x0F, 0x83, 0x61, 0xD8, + 0x6E, 0x3F, 0xEF, 0xFD, 0x8C, 0x73, 0x0F, 0xC1, 0xE0, 0x0C, 0x00, 0x1E, 0x00, 0x3E, 0x00, 0x73, + 0x00, 0x60, 0x00, 0xC0, 0x00, 0xF8, 0x1E, 0x7F, 0xFE, 0x0F, 0xF0, 0x03, 0xCF, 0xFF, 0xF3, 0x00, + 0xE0, 0x1F, 0xF1, 0xFC, 0x30, 0x00, 0x70, 0x00, 0x68, 0x00, 0x78, 0x00, 0x2C, 0x00, 0x1E, 0x00, + 0x3E, 0x00, 0x73, 0x00, 0x60, 0x00, 0xC0, 0x00, 0xF8, 0x1E, 0x7F, 0xFE, 0x0F, 0xF0, 0x30, 0x1C, + 0x06, 0x81, 0xE0, 0x23, 0xCF, 0xFF, 0xF3, 0x00, 0xE0, 0x1F, 0xF1, 0xFC, 0x00, 0xF8, 0x0F, 0x80, + 0xE0, 0x06, 0x06, 0x38, 0x60, 0xF3, 0x01, 0xD8, 0x06, 0xE0, 0x73, 0xFF, 0x0F, 0xE0, 0x60, 0x83, + 0x03, 0xEC, 0x07, 0xB0, 0x0C, 0xE0, 0x71, 0xFF, 0x83, 0xF8, 0x00, 0x18, 0xC6, 0x31, 0xBD, 0xC0, + 0x7B, 0xC0, 0x10, 0x30, 0x30, 0xFE, 0xFE, 0x00, 0x78, 0x78, 0x00, 0x38, 0xF1, 0x83, 0x07, 0xDF, + 0xBC, 0x00, 0xFB, 0xF0, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC0, 0xF9, 0xF8, 0x01, + 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x07, 0x87, 0x80, 0x6E, 0xEF, 0x86, 0x66, 0x66, + 0x66, 0x66, 0x66, 0x63, 0x8E, 0x3C, 0x81, 0x86, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x1E, 0x3C, + 0x00, 0x18, 0x70, 0xE1, 0xE2, 0x07, 0x1F, 0x37, 0x66, 0xFD, 0xF8, 0xF1, 0xDF, 0x1C, 0x00, 0x18, + 0x1C, 0x0E, 0x07, 0x82, 0x01, 0xC1, 0xF0, 0xDC, 0x66, 0x3F, 0xDF, 0xE1, 0xC1, 0xC7, 0xC1, 0xC0, + 0x63, 0x18, 0xC6, 0x31, 0x8C, 0x63, 0x18, 0xC0, 0x39, 0x8E, 0x72, 0x00, 0x61, 0x86, 0x18, 0x61, + 0x86, 0x18, 0x61, 0x87, 0x8F, 0x01, 0xC7, 0x1C, 0x71, 0x00, 0x38, 0x01, 0x87, 0xCE, 0x7C, 0x77, + 0x02, 0x30, 0x31, 0xC3, 0x07, 0x98, 0x0E, 0xC0, 0x37, 0x03, 0x9F, 0xF8, 0x7F, 0x00, 0x38, 0x00, + 0xC0, 0x03, 0x80, 0x0E, 0x00, 0x20, 0x01, 0x82, 0x0C, 0x0F, 0xB0, 0x1E, 0xC0, 0x33, 0x81, 0xC7, + 0xFE, 0x0F, 0xE0, 0x6E, 0xDF, 0xC6, 0x73, 0x33, 0xFE, 0x00, 0x70, 0xC1, 0xC3, 0x84, 0x06, 0x0C, + 0x18, 0xFD, 0xFC, 0x00, 0xFF, 0xFF, 0xFF, 0xC6, 0x31, 0x8C, 0x63, 0x18, 0xC6, 0x3C, 0xF0, 0x00, + 0x00, 0x06, 0x40, 0x07, 0xC0, 0x03, 0xC0, 0x03, 0xC0, 0x03, 0xF8, 0x3F, 0x7F, 0xFE, 0x0F, 0xE0, + 0x01, 0x80, 0x01, 0x80, 0x00, 0x00, 0x40, 0x00, 0x0C, 0x00, 0x00, 0xC0, 0x03, 0x0C, 0x00, 0x78, + 0xF8, 0x7F, 0xE7, 0xFF, 0x9E, 0x0F, 0xC0, 0x00, 0x18, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x67, + 0x33, 0x3F, 0xE0, 0x66, 0x00, 0x30, 0x60, 0xC7, 0xEF, 0xE0, 0x0C, 0x18, 0x00, 0x00, 0xF9, 0xA0, + 0x03, 0x07, 0x1F, 0x36, 0xC7, 0x8F, 0xF3, 0xE0, 0x00, 0x1E, 0x0F, 0x00, 0x00, 0xC0, 0x60, 0xF8, + 0xFC, 0xCE, 0x63, 0x3F, 0x87, 0xF0, 0x78, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC6, 0x40, 0x07, + 0xC0, 0x03, 0xC0, 0x03, 0xC0, 0x03, 0xF8, 0x3F, 0x7F, 0xFE, 0x0F, 0xE0, 0x00, 0x00, 0x00, 0x3C, + 0x00, 0x03, 0xC0, 0x04, 0x00, 0x00, 0xC0, 0x00, 0x0C, 0x00, 0x30, 0xC0, 0x07, 0x8F, 0x87, 0xFE, + 0x7F, 0xF9, 0xE0, 0xFC, 0x00, 0x07, 0xBC, 0x06, 0x38, 0xC6, 0x37, 0xB8, 0x00, 0x00, 0x7C, 0x68, + 0x00, 0x10, 0x30, 0x30, 0xFE, 0xFE, 0x00, 0x01, 0x80, 0x01, 0x80, 0x03, 0xC0, 0x03, 0xC6, 0x40, + 0x07, 0xC0, 0x03, 0xC0, 0x03, 0xC0, 0x03, 0xF8, 0x3F, 0x7F, 0xFE, 0x0F, 0xE0, 0x01, 0x80, 0x00, + 0x18, 0x00, 0x03, 0xC0, 0x00, 0x3C, 0x00, 0x40, 0x00, 0x0C, 0x00, 0x00, 0xC0, 0x03, 0x0C, 0x00, + 0x78, 0xF8, 0x7F, 0xE7, 0xFF, 0x9E, 0x0F, 0xC0, 0x00, 0x63, 0x3D, 0xE0, 0x31, 0xC6, 0x31, 0xBD, + 0xC0, 0x00, 0x30, 0x30, 0x7C, 0x68, 0x00, 0x10, 0x30, 0x30, 0xFE, 0xFE, 0x00, 0xFC, 0x3F, 0xF0, + 0x7C, 0x78, 0x38, 0x1C, 0x0E, 0x03, 0x18, 0xC6, 0x30, 0x0C, 0x03, 0xC3, 0x7F, 0xC7, 0xE0, 0xFC, + 0x0F, 0xFC, 0x07, 0xC1, 0xF0, 0x3B, 0x87, 0x1E, 0xE1, 0xFC, 0x60, 0xC6, 0x0C, 0x00, 0xC0, 0x0F, + 0x0C, 0x7F, 0xC1, 0xF8, 0x7C, 0x1F, 0xC0, 0x78, 0x3E, 0xFE, 0x3E, 0x00, 0x00, 0x20, 0x0C, 0x00, + 0x00, 0x7C, 0x07, 0xF0, 0x07, 0x80, 0xF8, 0xFF, 0xEF, 0x8F, 0x00, 0x00, 0x80, 0x18, 0x00, 0x00, + 0xFC, 0x3F, 0xF0, 0x7C, 0x78, 0x38, 0x1C, 0x0E, 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x03, 0xC3, 0x7F, + 0xC7, 0xE0, 0xFC, 0x0F, 0xFC, 0x07, 0xC1, 0xF0, 0x3B, 0x87, 0x1E, 0xE1, 0xFC, 0x00, 0xC0, 0x0C, + 0x00, 0xC0, 0x0F, 0x0C, 0x7F, 0xC1, 0xF8, 0x7C, 0x1F, 0xC0, 0x78, 0x3E, 0xFE, 0x3E, 0x00, 0x00, + 0x7C, 0x07, 0xF0, 0x07, 0x80, 0xF8, 0xFF, 0xEF, 0x8F, 0x00, 0x00, 0x00, 0x03, 0x00, 0xC0, 0x00, + 0xFC, 0x3F, 0xF0, 0x7C, 0x78, 0x38, 0x1C, 0x0E, 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x03, 0xC3, 0x7F, + 0xC7, 0xE0, 0x00, 0x00, 0xC0, 0x0C, 0x00, 0x00, 0xFC, 0x0F, 0xFC, 0x07, 0xC1, 0xF0, 0x3B, 0x87, + 0x1E, 0xE1, 0xFC, 0x00, 0xC0, 0x0C, 0x00, 0xC0, 0x0F, 0x0C, 0x7F, 0xC1, 0xF8, 0x00, 0x0C, 0x03, + 0x00, 0x00, 0x7C, 0x1F, 0xC0, 0x78, 0x3E, 0xFE, 0x3E, 0x00, 0x00, 0x00, 0x07, 0x00, 0x20, 0x00, + 0x00, 0x7C, 0x07, 0xF0, 0x07, 0x80, 0xF8, 0xFF, 0xEF, 0x8F, 0x00, 0x00, 0x08, 0x0C, 0x0E, 0x06, + 0x06, 0x07, 0x7E, 0xFE, 0x00, 0x08, 0x03, 0x00, 0xE0, 0x18, 0x06, 0x01, 0xC7, 0xFF, 0xFF, 0x00, + 0x00, 0x00, 0x38, 0x10, 0x00, 0x08, 0x0C, 0x0E, 0x06, 0x06, 0x07, 0x7E, 0xFE, 0x00, 0x00, 0x06, + 0x01, 0x80, 0x00, 0x08, 0x03, 0x00, 0xE0, 0x18, 0x06, 0x01, 0xC7, 0xFF, 0xFF, 0x00, 0x00, 0x08, + 0x18, 0x30, 0x60, 0xC1, 0x87, 0x1C, 0xF0, 0xC0, 0x08, 0x06, 0x03, 0x01, 0xC0, 0xF0, 0x7C, 0x70, + 0x70, 0xF0, 0x30, 0x00, 0x00, 0x30, 0x60, 0x00, 0x81, 0x83, 0x06, 0x0C, 0x18, 0x71, 0xCF, 0x0C, + 0x00, 0x00, 0x0C, 0x06, 0x00, 0x00, 0x80, 0x60, 0x30, 0x1C, 0x0F, 0x07, 0xC7, 0x07, 0x0F, 0x03, + 0x00, 0x00, 0x00, 0x60, 0x00, 0x06, 0x00, 0xC2, 0x60, 0x0E, 0x63, 0x60, 0x66, 0x3C, 0x07, 0xFE, + 0xC0, 0x7F, 0xEC, 0x06, 0x00, 0xE0, 0xC0, 0x07, 0xFC, 0x00, 0x3F, 0x80, 0x00, 0x00, 0x00, 0x60, + 0x03, 0x09, 0x80, 0x0E, 0x63, 0x18, 0x19, 0x8C, 0xC0, 0x7F, 0xFF, 0x01, 0xFF, 0xFC, 0x06, 0x00, + 0x38, 0x30, 0x00, 0x7F, 0xC0, 0x00, 0xFE, 0x00, 0x00, 0x00, 0x30, 0x01, 0x8C, 0x4C, 0x66, 0x73, + 0x31, 0xFF, 0xFB, 0xFF, 0xC0, 0x00, 0x00, 0x30, 0x62, 0x20, 0xCC, 0x61, 0x98, 0xCF, 0xFF, 0xFF, + 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x60, 0x00, 0x1F, 0x00, 0x00, 0xB0, 0x00, 0x00, + 0x60, 0x00, 0x06, 0x00, 0xC2, 0x60, 0x0E, 0x63, 0x60, 0x66, 0x3C, 0x07, 0xFE, 0xC0, 0x7F, 0xEC, + 0x06, 0x00, 0xE0, 0xC0, 0x07, 0xFC, 0x00, 0x3F, 0x80, 0x00, 0x00, 0x06, 0x00, 0x00, 0x18, 0x00, + 0x01, 0xF0, 0x00, 0x02, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x0C, 0x26, 0x00, 0x39, 0x8C, + 0x60, 0x66, 0x33, 0x01, 0xFF, 0xFC, 0x07, 0xFF, 0xF0, 0x18, 0x00, 0xE0, 0xC0, 0x01, 0xFF, 0x00, + 0x03, 0xF8, 0x00, 0x00, 0x03, 0x00, 0x18, 0x01, 0xE0, 0x0F, 0x00, 0x03, 0x00, 0x18, 0xC4, 0xC6, + 0x67, 0x33, 0x1F, 0xFF, 0xBF, 0xFC, 0x00, 0x00, 0x03, 0x00, 0x06, 0x00, 0x1E, 0x00, 0x3C, 0x00, + 0x00, 0x00, 0x06, 0x0C, 0x44, 0x19, 0x8C, 0x33, 0x19, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x00, + 0x00, 0x60, 0x00, 0x07, 0xE0, 0x0C, 0x3F, 0x80, 0x39, 0xC6, 0x60, 0x6C, 0x1B, 0x01, 0xFF, 0xEC, + 0x07, 0xFF, 0x30, 0x19, 0xE0, 0xE0, 0xC0, 0x01, 0xFF, 0x00, 0x03, 0xF8, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x00, 0x01, 0xF8, 0x00, 0xC3, 0xF8, 0x00, 0xE7, 0x18, 0x60, 0x6C, 0x18, 0xC0, 0x7F, 0xFE, + 0xC0, 0x7F, 0xFF, 0xC0, 0x67, 0x80, 0xE0, 0xC0, 0x00, 0x7F, 0xC0, 0x00, 0x3F, 0x80, 0x00, 0x00, + 0x10, 0x01, 0xF8, 0xC7, 0xF1, 0x9C, 0x33, 0x70, 0xFF, 0xC7, 0xBF, 0xFE, 0x03, 0xE0, 0x00, 0x10, + 0x00, 0x7E, 0x0C, 0x7F, 0x06, 0x70, 0xC3, 0x70, 0xE7, 0xF1, 0xFB, 0xFF, 0xFE, 0x0F, 0x80, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x07, 0xE0, + 0x0C, 0x3F, 0x80, 0x39, 0xC6, 0x60, 0x6C, 0x1B, 0x01, 0xFF, 0xEC, 0x07, 0xFF, 0x30, 0x19, 0xE0, + 0xE0, 0xC0, 0x01, 0xFF, 0x00, 0x03, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x00, + 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x01, 0xF8, 0x00, 0xC3, 0xF8, 0x00, 0xE7, + 0x18, 0x60, 0x6C, 0x18, 0xC0, 0x7F, 0xFE, 0xC0, 0x7F, 0xFF, 0xC0, 0x67, 0x80, 0xE0, 0xC0, 0x00, + 0x7F, 0xC0, 0x00, 0x3F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0xC0, 0x00, 0x80, 0x0F, 0xC6, + 0x3F, 0x8C, 0xE1, 0x9B, 0x87, 0xFE, 0x3D, 0xFF, 0xF0, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, + 0x0C, 0x00, 0x02, 0x00, 0x0F, 0xC1, 0x8F, 0xE0, 0xCE, 0x18, 0x6E, 0x1C, 0xFE, 0x3F, 0x7F, 0xFF, + 0xC1, 0xF0, 0x00, 0x18, 0x00, 0xC0, 0x06, 0x00, 0x30, 0x01, 0x80, 0x0C, 0x20, 0x6F, 0xC3, 0xFF, + 0x1E, 0x18, 0xE1, 0xFF, 0xFD, 0xFF, 0xC1, 0xF0, 0x00, 0x18, 0x00, 0x30, 0x00, 0x60, 0x00, 0xC0, + 0x01, 0x80, 0x03, 0x08, 0x06, 0xFC, 0x0F, 0xFC, 0x1E, 0x18, 0x38, 0x73, 0xFF, 0xF7, 0xFF, 0xF1, + 0xF0, 0x00, 0x60, 0x0C, 0x01, 0x80, 0x30, 0x06, 0x00, 0xC2, 0x19, 0xF3, 0xFF, 0x78, 0x6E, 0x1F, + 0xFF, 0x7F, 0xC0, 0x00, 0x60, 0x03, 0x00, 0x18, 0x00, 0xC0, 0x06, 0x00, 0x30, 0x81, 0x9F, 0x0F, + 0xFC, 0x78, 0x63, 0x87, 0x3F, 0xFD, 0xFF, 0xF0, 0x00, 0x00, 0x18, 0x00, 0xC0, 0x06, 0x38, 0x30, + 0x81, 0x80, 0x0C, 0x20, 0x6F, 0xC3, 0xFF, 0x1E, 0x18, 0xE1, 0xFF, 0xFD, 0xFF, 0xC1, 0xF0, 0x00, + 0x18, 0x00, 0x30, 0x00, 0x63, 0x00, 0xC4, 0x01, 0x80, 0x03, 0x08, 0x06, 0xFC, 0x0F, 0xFC, 0x1E, + 0x18, 0x38, 0x73, 0xFF, 0xF7, 0xFF, 0xF1, 0xF0, 0x00, 0x60, 0x0C, 0x01, 0x80, 0x31, 0x86, 0x30, + 0xC2, 0x19, 0xF3, 0xFF, 0x78, 0x6E, 0x1F, 0xFF, 0x7F, 0xC0, 0x00, 0x60, 0x03, 0x00, 0x18, 0x00, + 0xC6, 0x06, 0x30, 0x30, 0x81, 0x9F, 0x0F, 0xFC, 0x78, 0x63, 0x87, 0x3F, 0xFD, 0xFF, 0xF0, 0x00, + 0x00, 0x18, 0x1F, 0x0E, 0x03, 0x00, 0xE2, 0x1F, 0x83, 0xE1, 0xC0, 0xE0, 0x30, 0x0C, 0x03, 0x00, + 0xC0, 0x3C, 0x27, 0xFC, 0x7E, 0x3E, 0x1F, 0xC6, 0x31, 0xD8, 0x3E, 0x0F, 0xE7, 0x7F, 0x80, 0xC0, + 0x30, 0x0C, 0x03, 0x86, 0x7F, 0x8F, 0xC0, 0x0C, 0x3E, 0x70, 0x60, 0x60, 0x73, 0xFF, 0xFC, 0x00, + 0x3E, 0x1F, 0xC6, 0x31, 0xD8, 0x3E, 0x3F, 0xEF, 0xFC, 0x00, 0x00, 0x06, 0x01, 0x80, 0x00, 0x18, + 0x1F, 0x0E, 0x03, 0x00, 0xE2, 0x1F, 0x83, 0xE1, 0xC0, 0xE0, 0x30, 0x0C, 0x03, 0x00, 0xC0, 0x3C, + 0x27, 0xFC, 0x7E, 0x00, 0x03, 0x00, 0xC0, 0x00, 0x3E, 0x1F, 0xC6, 0x31, 0xD8, 0x3E, 0x0F, 0xE7, + 0x7F, 0x80, 0xC0, 0x30, 0x0C, 0x03, 0x86, 0x7F, 0x8F, 0xC0, 0x00, 0x1C, 0x08, 0x00, 0x0C, 0x3E, + 0x70, 0x60, 0x60, 0x73, 0xFF, 0xFC, 0x00, 0x00, 0x07, 0x00, 0x80, 0x00, 0x3E, 0x1F, 0xC6, 0x31, + 0xD8, 0x3E, 0x3F, 0xEF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x0C, + 0x00, 0x1E, 0x00, 0x3F, 0x40, 0x33, 0xC0, 0x33, 0xC0, 0x3F, 0xC0, 0x1F, 0xF8, 0x0F, 0x7F, 0xFE, + 0x0F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x04, 0x00, + 0xF8, 0xC0, 0x19, 0x8C, 0x01, 0x98, 0xC0, 0x1D, 0x8F, 0x83, 0xFE, 0x7F, 0xFF, 0xE0, 0xFE, 0x00, + 0x00, 0x30, 0x60, 0x01, 0x87, 0x9F, 0xB3, 0x66, 0xFC, 0xFF, 0xEF, 0x80, 0x00, 0x00, 0x06, 0x01, + 0x80, 0x00, 0x3C, 0x1F, 0x86, 0x61, 0x98, 0x76, 0x3F, 0xEF, 0xF8, 0x00, 0x00, 0x00, 0x0F, 0x00, + 0x78, 0x00, 0x00, 0x0E, 0x00, 0xF8, 0x0E, 0xCC, 0x66, 0xE3, 0xFE, 0x0F, 0xB0, 0x0D, 0xC0, 0xE7, + 0xFE, 0x1F, 0xE0, 0x10, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x02, 0xC0, 0x00, 0x00, 0x0E, 0x00, 0x3E, + 0x00, 0x6C, 0x31, 0x98, 0x63, 0xFD, 0x83, 0xFF, 0x00, 0xC7, 0x01, 0x87, 0x0E, 0x0F, 0xF8, 0x07, + 0xC0, 0x00, 0x00, 0xF8, 0xB0, 0x01, 0x87, 0x9F, 0xB3, 0x66, 0xFC, 0xFF, 0xEF, 0x80, 0x00, 0x00, + 0x0F, 0x03, 0xC0, 0x00, 0x3C, 0x1F, 0x86, 0x61, 0x98, 0x76, 0x3F, 0xEF, 0xF8, 0x00, 0x00, 0x0C, + 0x00, 0x30, 0x00, 0xC0, 0x63, 0x03, 0x8C, 0x0C, 0x34, 0x18, 0xF0, 0xE3, 0xC3, 0x0F, 0x00, 0x3F, + 0x87, 0xDF, 0xFE, 0x0F, 0xC0, 0x00, 0x0C, 0x00, 0x06, 0x00, 0x03, 0x00, 0x31, 0x80, 0x38, 0xC0, + 0x18, 0x61, 0x06, 0x31, 0x87, 0x18, 0xC3, 0x0C, 0x60, 0x06, 0x3E, 0x1F, 0xCF, 0xFF, 0xE0, 0xFC, + 0x00, 0x06, 0x1E, 0x7C, 0xF0, 0xE0, 0x70, 0x38, 0x1C, 0x0C, 0x0C, 0xFC, 0xF8, 0x00, 0x06, 0x07, + 0x87, 0xC3, 0xC0, 0xE0, 0x1C, 0x03, 0x80, 0x60, 0x0C, 0x03, 0x8F, 0xFB, 0xEF, 0x00, 0x00, 0x00, + 0xE0, 0x0C, 0x01, 0x80, 0x30, 0x06, 0x00, 0xC0, 0x18, 0x03, 0x00, 0x6C, 0x0F, 0x01, 0xE0, 0x3C, + 0x0D, 0xC1, 0x9F, 0xE1, 0xF8, 0x00, 0xE0, 0x03, 0x00, 0x18, 0x00, 0xC0, 0x06, 0x00, 0x30, 0x01, + 0x80, 0x0C, 0x00, 0x63, 0x03, 0x30, 0x1F, 0x80, 0xFC, 0x0E, 0x70, 0x61, 0xFF, 0x07, 0xE0, 0x66, + 0x66, 0x77, 0x73, 0x33, 0xFE, 0x00, 0x61, 0x87, 0x1C, 0x71, 0xC3, 0x0C, 0x30, 0xCF, 0xFF, 0x00, + 0x1C, 0x3E, 0x76, 0x63, 0x1F, 0x7F, 0xE6, 0xC0, 0xC0, 0xC0, 0xC0, 0xC0, 0x60, 0x60, 0x00, 0x03, + 0xC0, 0xFC, 0x39, 0x8F, 0x31, 0xFF, 0xB7, 0xF6, 0x30, 0xC0, 0x18, 0x03, 0x00, 0x70, 0x06, 0x00, + 0xC0, 0x00, 0x1E, 0x3F, 0x33, 0x73, 0xFF, 0xFE, 0x00, 0x00, 0x03, 0xC0, 0xFC, 0x19, 0x87, 0x39, + 0xF7, 0xB7, 0xF8, 0x30, 0x00, 0x01, 0xC0, 0x10, 0x00, 0x00, 0x0C, 0x01, 0xD8, 0x1E, 0x03, 0xC0, + 0x78, 0x0F, 0x83, 0x3F, 0xE3, 0xF0, 0x00, 0x00, 0x70, 0x01, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x71, + 0x81, 0x98, 0x0F, 0xC0, 0x7E, 0x03, 0x38, 0x30, 0xFF, 0x83, 0xF8, 0x00, 0x06, 0x60, 0x67, 0x33, + 0x3F, 0xE0, 0x00, 0xE0, 0x80, 0x03, 0x06, 0x0C, 0x7E, 0xFE, 0x00, 0x30, 0x71, 0xF3, 0x6C, 0x78, + 0xFF, 0x3E, 0x0C, 0x06, 0x0F, 0x8F, 0xCC, 0xE6, 0x33, 0xF8, 0x7F, 0x07, 0x80, 0x00, 0x00, 0x1C, + 0x0F, 0x0F, 0xC6, 0x73, 0x7D, 0xF7, 0xFF, 0xFF, 0x81, 0x00, 0x1E, 0x0F, 0x83, 0x61, 0xD8, 0x6E, + 0x3F, 0xEF, 0xFD, 0x8C, 0x73, 0x0F, 0xC1, 0xE0, 0x38, 0xF9, 0xBB, 0x37, 0xEF, 0xC7, 0x8E, 0xF8, + 0xE0, 0x38, 0x3E, 0x1B, 0x8C, 0xC7, 0xFB, 0xFC, 0x38, 0x38, 0xF8, 0x38, 0x00, 0x00, 0xF8, 0x0F, + 0x80, 0xE0, 0x06, 0x06, 0x38, 0x60, 0xF3, 0x01, 0xD8, 0x06, 0xE0, 0x73, 0xFF, 0x0F, 0xE0, 0x60, + 0x83, 0x03, 0xEC, 0x07, 0xB0, 0x0C, 0xE0, 0x71, 0xFF, 0x83, 0xF8, 0x00, 0x00, 0xF8, 0x0F, 0x80, + 0xE0, 0x06, 0x06, 0x38, 0x60, 0xF3, 0x01, 0xD8, 0x06, 0xE0, 0x73, 0xFF, 0x0F, 0xE0, 0x00, 0x00, + 0xF0, 0x07, 0x80, 0x00, 0x00, 0x60, 0x83, 0x03, 0xEC, 0x07, 0xB0, 0x0C, 0xE0, 0x71, 0xFF, 0x83, + 0xF8, 0x00, 0x00, 0x0A, 0x00, 0x7C, 0x00, 0x00, 0x00, 0x18, 0xC6, 0x31, 0xBD, 0xC0, 0x7B, 0xC0, + 0x10, 0x30, 0x30, 0xFE, 0xFE, 0x00, 0x78, 0x78, 0x00, 0x7C, 0x0F, 0x98, 0x03, 0x08, 0x61, 0xCC, + 0x1D, 0x81, 0xF0, 0x1E, 0x01, 0xC0, 0x7C, 0x1D, 0x87, 0xF0, 0xFC, 0xFC, 0x0F, 0xD8, 0x01, 0x82, + 0x18, 0x31, 0x83, 0x98, 0x1D, 0x80, 0xF8, 0x07, 0x80, 0x38, 0x03, 0x83, 0xFF, 0x3E, 0xF0, 0x00, + 0x70, 0x18, 0x07, 0x01, 0xC6, 0x41, 0x88, 0x63, 0x98, 0x76, 0x0F, 0x81, 0xE0, 0x38, 0x1F, 0x0E, + 0xC7, 0xF1, 0xF8, 0x60, 0x1C, 0x03, 0x80, 0x79, 0x88, 0x30, 0x86, 0x18, 0xC3, 0x98, 0x3B, 0x03, + 0xE0, 0x3C, 0x03, 0x80, 0x70, 0xFF, 0xDF, 0x78, 0x00, 0x03, 0x01, 0x90, 0xCE, 0x63, 0xB0, 0xF8, + 0x3C, 0x0E, 0x0F, 0x8E, 0xCF, 0xE7, 0xE0, 0x01, 0x81, 0xC0, 0xF0, 0x78, 0x20, 0x00, 0x03, 0x00, + 0x61, 0x0C, 0x31, 0x87, 0x30, 0x76, 0x07, 0xC0, 0x78, 0x07, 0x00, 0xE1, 0xFF, 0xBE, 0xF0, 0x00, + 0x30, 0x0E, 0x01, 0xA0, 0x3C, 0x06, 0x00, 0x03, 0x01, 0x90, 0xCE, 0x63, 0xB0, 0xF8, 0x3C, 0x0E, + 0x0F, 0x8E, 0xCF, 0xE7, 0xE0, 0x03, 0x00, 0x61, 0x0C, 0x31, 0x87, 0x30, 0x76, 0x07, 0xC0, 0x78, + 0x07, 0x00, 0xE1, 0xFF, 0xBE, 0xF0, 0x00, 0x00, 0x80, 0x01, 0xC0, 0x03, 0xE0, 0x07, 0xF0, 0x0C, + 0x38, 0x1F, 0xDC, 0x3F, 0xDE, 0x7F, 0xBF, 0x7F, 0x7F, 0x3F, 0x7E, 0x1F, 0xFC, 0x0F, 0xF8, 0x06, + 0x70, 0x03, 0xE0, 0x01, 0xC0, 0x00, 0x80, }; static const EpdGlyph notosans_8_regularGlyphs[] = { @@ -1788,315 +1990,528 @@ static const EpdGlyph notosans_8_regularGlyphs[] = { { 8, 10, 140, 0, 10, 10, 11727 }, // U+05E8 { 11, 10, 195, 1, 10, 14, 11737 }, // U+05E9 { 11, 10, 183, 0, 10, 14, 11751 }, // U+05EA - { 11, 15, 170, 0, 12, 21, 11765 }, // U+1EA0 - { 8, 13, 150, 0, 10, 13, 11786 }, // U+1EA1 - { 11, 17, 170, 0, 17, 24, 11799 }, // U+1EA2 - { 8, 15, 150, 0, 14, 15, 11823 }, // U+1EA3 - { 11, 17, 170, 0, 17, 24, 11838 }, // U+1EA4 - { 10, 15, 150, 0, 14, 19, 11862 }, // U+1EA5 - { 11, 17, 170, 0, 17, 24, 11881 }, // U+1EA6 - { 8, 15, 150, 0, 14, 15, 11905 }, // U+1EA7 - { 11, 18, 170, 0, 18, 25, 11920 }, // U+1EA8 - { 9, 16, 150, 0, 15, 18, 11945 }, // U+1EA9 - { 11, 18, 170, 0, 18, 25, 11963 }, // U+1EAA - { 8, 16, 150, 0, 15, 16, 11988 }, // U+1EAB - { 11, 19, 170, 0, 16, 27, 12004 }, // U+1EAC - { 8, 16, 150, 0, 13, 16, 12031 }, // U+1EAD - { 11, 17, 170, 0, 17, 24, 12047 }, // U+1EAE - { 8, 16, 150, 0, 15, 16, 12071 }, // U+1EAF - { 11, 17, 170, 0, 17, 24, 12087 }, // U+1EB0 - { 8, 16, 150, 0, 15, 16, 12111 }, // U+1EB1 - { 11, 18, 170, 0, 18, 25, 12127 }, // U+1EB2 - { 8, 16, 150, 0, 15, 16, 12152 }, // U+1EB3 - { 11, 18, 170, 0, 18, 25, 12168 }, // U+1EB4 - { 8, 16, 150, 0, 15, 16, 12193 }, // U+1EB5 - { 11, 19, 170, 0, 16, 27, 12209 }, // U+1EB6 - { 8, 16, 150, 0, 13, 16, 12236 }, // U+1EB7 - { 8, 15, 148, 1, 12, 15, 12252 }, // U+1EB8 - { 9, 13, 150, 0, 10, 15, 12267 }, // U+1EB9 - { 8, 17, 148, 1, 17, 17, 12282 }, // U+1EBA - { 9, 15, 150, 0, 14, 17, 12299 }, // U+1EBB - { 8, 16, 148, 1, 16, 16, 12316 }, // U+1EBC - { 9, 14, 150, 0, 13, 16, 12332 }, // U+1EBD - { 9, 17, 148, 1, 17, 20, 12348 }, // U+1EBE - { 10, 15, 150, 0, 14, 19, 12368 }, // U+1EBF - { 9, 17, 148, 0, 17, 20, 12387 }, // U+1EC0 - { 9, 15, 150, 0, 14, 17, 12407 }, // U+1EC1 - { 8, 18, 148, 1, 18, 18, 12424 }, // U+1EC2 - { 9, 16, 150, 0, 15, 18, 12442 }, // U+1EC3 - { 8, 18, 148, 1, 18, 18, 12460 }, // U+1EC4 - { 9, 16, 150, 0, 15, 18, 12478 }, // U+1EC5 - { 8, 19, 148, 1, 16, 19, 12496 }, // U+1EC6 - { 9, 16, 150, 0, 13, 18, 12515 }, // U+1EC7 - { 5, 17, 90, 0, 17, 11, 12533 }, // U+1EC8 - { 4, 14, 69, 1, 14, 7, 12544 }, // U+1EC9 - { 5, 15, 90, 0, 12, 10, 12551 }, // U+1ECA - { 3, 16, 69, 1, 13, 6, 12561 }, // U+1ECB - { 11, 16, 208, 1, 13, 22, 12567 }, // U+1ECC - { 10, 13, 161, 0, 10, 17, 12589 }, // U+1ECD - { 11, 18, 208, 1, 17, 25, 12606 }, // U+1ECE - { 10, 15, 161, 0, 14, 19, 12631 }, // U+1ECF - { 11, 18, 208, 1, 17, 25, 12650 }, // U+1ED0 - { 10, 15, 161, 0, 14, 19, 12675 }, // U+1ED1 - { 11, 18, 208, 1, 17, 25, 12694 }, // U+1ED2 - { 10, 15, 161, 0, 14, 19, 12719 }, // U+1ED3 - { 11, 19, 208, 1, 18, 27, 12738 }, // U+1ED4 - { 10, 16, 161, 0, 15, 20, 12765 }, // U+1ED5 - { 11, 19, 208, 1, 18, 27, 12785 }, // U+1ED6 - { 10, 16, 161, 0, 15, 20, 12812 }, // U+1ED7 - { 11, 19, 208, 1, 16, 27, 12832 }, // U+1ED8 - { 10, 16, 161, 0, 13, 20, 12859 }, // U+1ED9 - { 13, 17, 209, 1, 16, 28, 12879 }, // U+1EDA - { 11, 14, 164, 0, 13, 20, 12907 }, // U+1EDB - { 13, 17, 209, 1, 16, 28, 12927 }, // U+1EDC - { 11, 14, 164, 0, 13, 20, 12955 }, // U+1EDD - { 13, 18, 209, 1, 17, 30, 12975 }, // U+1EDE - { 11, 15, 164, 0, 14, 21, 13005 }, // U+1EDF - { 13, 17, 209, 1, 16, 28, 13026 }, // U+1EE0 - { 11, 14, 164, 0, 13, 20, 13054 }, // U+1EE1 - { 13, 16, 209, 1, 13, 26, 13074 }, // U+1EE2 - { 11, 14, 164, 0, 11, 20, 13100 }, // U+1EE3 - { 10, 15, 195, 1, 12, 19, 13120 }, // U+1EE4 - { 8, 12, 165, 1, 9, 12, 13139 }, // U+1EE5 - { 10, 18, 195, 1, 17, 23, 13151 }, // U+1EE6 - { 8, 15, 165, 1, 14, 15, 13174 }, // U+1EE7 - { 13, 17, 208, 1, 16, 28, 13189 }, // U+1EE8 - { 11, 14, 180, 1, 13, 20, 13217 }, // U+1EE9 - { 13, 17, 208, 1, 16, 28, 13237 }, // U+1EEA - { 11, 14, 180, 1, 13, 20, 13265 }, // U+1EEB - { 13, 18, 208, 1, 17, 30, 13285 }, // U+1EEC - { 11, 15, 180, 1, 14, 21, 13315 }, // U+1EED - { 13, 17, 208, 1, 16, 28, 13336 }, // U+1EEE - { 11, 14, 180, 1, 13, 20, 13364 }, // U+1EEF - { 13, 16, 208, 1, 13, 26, 13384 }, // U+1EF0 - { 11, 14, 180, 1, 11, 20, 13410 }, // U+1EF1 - { 10, 16, 151, 0, 16, 20, 13430 }, // U+1EF2 - { 9, 17, 136, 0, 13, 20, 13450 }, // U+1EF3 - { 10, 15, 151, 0, 12, 19, 13470 }, // U+1EF4 - { 9, 13, 136, 0, 9, 15, 13489 }, // U+1EF5 - { 10, 17, 151, 0, 17, 22, 13504 }, // U+1EF6 - { 9, 18, 136, 0, 14, 21, 13526 }, // U+1EF7 - { 10, 16, 151, 0, 16, 20, 13547 }, // U+1EF8 - { 9, 17, 136, 0, 13, 20, 13567 }, // U+1EF9 - { 0, 0, 133, 0, 0, 0, 13587 }, // U+2000 - { 0, 0, 267, 0, 0, 0, 13587 }, // U+2001 - { 0, 0, 133, 0, 0, 0, 13587 }, // U+2002 - { 0, 0, 267, 0, 0, 0, 13587 }, // U+2003 - { 0, 0, 89, 0, 0, 0, 13587 }, // U+2004 - { 0, 0, 67, 0, 0, 0, 13587 }, // U+2005 - { 0, 0, 45, 0, 0, 0, 13587 }, // U+2006 - { 0, 0, 153, 0, 0, 0, 13587 }, // U+2007 - { 0, 0, 71, 0, 0, 0, 13587 }, // U+2008 - { 0, 0, 44, 0, 0, 0, 13587 }, // U+2009 - { 0, 0, 27, 0, 0, 0, 13587 }, // U+200A - { 0, 0, 0, 0, 0, 0, 13587 }, // U+200B - { 0, 0, 0, 0, 0, 0, 13587 }, // U+200C - { 0, 0, 0, 0, 0, 0, 13587 }, // U+200D - { 5, 15, 0, -1, 12, 10, 13587 }, // U+200E - { 5, 15, 0, -4, 12, 10, 13597 }, // U+200F - { 5, 3, 86, 0, 6, 2, 13607 }, // U+2010 - { 5, 3, 86, 0, 6, 2, 13609 }, // U+2011 - { 9, 2, 153, 0, 7, 3, 13611 }, // U+2012 - { 8, 3, 133, 0, 6, 3, 13614 }, // U+2013 - { 16, 3, 267, 0, 6, 6, 13617 }, // U+2014 - { 16, 3, 267, 0, 6, 6, 13623 }, // U+2015 - { 6, 18, 147, 2, 13, 14, 13629 }, // U+2016 - { 8, 4, 110, -1, 0, 4, 13643 }, // U+2017 - { 3, 5, 47, 0, 12, 2, 13647 }, // U+2018 - { 3, 5, 47, 0, 12, 2, 13649 }, // U+2019 - { 4, 5, 67, 0, 2, 3, 13651 }, // U+201A - { 3, 5, 47, 0, 12, 2, 13654 }, // U+201B - { 6, 5, 96, 0, 12, 4, 13656 }, // U+201C - { 6, 5, 96, 0, 12, 4, 13660 }, // U+201D - { 7, 5, 111, 0, 2, 5, 13664 }, // U+201E - { 6, 5, 96, 0, 12, 4, 13669 }, // U+201F - { 7, 13, 137, 1, 13, 12, 13673 }, // U+2020 - { 7, 13, 137, 1, 13, 12, 13685 }, // U+2021 - { 4, 5, 100, 1, 9, 3, 13697 }, // U+2022 - { 5, 6, 98, 1, 9, 4, 13700 }, // U+2023 - { 3, 4, 133, 3, 3, 2, 13704 }, // U+2024 - { 7, 4, 143, 1, 3, 4, 13706 }, // U+2025 - { 11, 4, 211, 1, 3, 6, 13710 }, // U+2026 - { 3, 4, 71, 1, 6, 2, 13716 }, // U+2027 - { 0, 0, 160, 0, 0, 0, 13718 }, // U+2028 - { 0, 0, 160, 0, 0, 0, 13718 }, // U+2029 - { 5, 14, 0, -1, 11, 9, 13718 }, // U+202A - { 5, 14, 0, -4, 11, 9, 13727 }, // U+202B - { 4, 15, 0, -2, 12, 8, 13736 }, // U+202C - { 4, 15, 0, -2, 12, 8, 13744 }, // U+202D - { 4, 15, 0, -2, 12, 8, 13752 }, // U+202E - { 0, 0, 44, 0, 0, 0, 13760 }, // U+202F - { 19, 14, 314, 0, 13, 34, 13760 }, // U+2030 - { 25, 14, 412, 0, 13, 44, 13794 }, // U+2031 - { 5, 5, 62, 0, 12, 4, 13838 }, // U+2032 - { 8, 5, 109, 0, 12, 5, 13842 }, // U+2033 - { 11, 5, 156, 0, 12, 7, 13847 }, // U+2034 - { 5, 5, 62, -1, 12, 4, 13854 }, // U+2035 - { 7, 5, 117, -1, 12, 5, 13858 }, // U+2036 - { 10, 5, 161, -1, 12, 7, 13863 }, // U+2037 - { 7, 6, 106, 0, 2, 6, 13870 }, // U+2038 - { 5, 8, 83, 0, 8, 5, 13876 }, // U+2039 - { 5, 8, 83, 0, 8, 5, 13881 }, // U+203A - { 14, 14, 223, 0, 13, 25, 13886 }, // U+203B - { 7, 13, 133, 1, 12, 12, 13911 }, // U+203C - { 7, 14, 118, 0, 13, 13, 13923 }, // U+203D - { 10, 2, 133, -1, 14, 3, 13936 }, // U+203E - { 10, 4, 162, 0, 0, 5, 13939 }, // U+203F - { 10, 5, 162, 0, 14, 7, 13944 }, // U+2040 - { 6, 11, 100, 0, 7, 9, 13951 }, // U+2041 - { 19, 16, 298, 0, 13, 38, 13960 }, // U+2042 - { 5, 3, 86, 0, 6, 2, 13998 }, // U+2043 - { 10, 12, 35, -4, 12, 15, 14000 }, // U+2044 - { 4, 15, 86, 1, 12, 8, 14015 }, // U+2045 - { 5, 15, 86, 0, 12, 10, 14023 }, // U+2046 - { 14, 14, 228, 0, 13, 25, 14033 }, // U+2047 - { 11, 14, 181, 0, 13, 20, 14058 }, // U+2048 - { 10, 14, 182, 1, 13, 18, 14078 }, // U+2049 - { 9, 9, 153, 0, 9, 11, 14096 }, // U+204A - { 9, 16, 175, 1, 13, 18, 14107 }, // U+204B - { 10, 9, 170, 0, 9, 12, 14125 }, // U+204C - { 9, 9, 170, 1, 9, 11, 14137 }, // U+204D - { 9, 8, 147, 0, 5, 9, 14148 }, // U+204E - { 4, 13, 63, 0, 10, 7, 14157 }, // U+204F - { 10, 18, 161, 0, 14, 23, 14164 }, // U+2050 - { 9, 16, 147, 0, 13, 18, 14187 }, // U+2051 - { 7, 14, 99, 0, 13, 13, 14205 }, // U+2052 - { 15, 4, 267, 1, 7, 8, 14218 }, // U+2053 - { 10, 4, 161, 0, 0, 5, 14226 }, // U+2054 - { 9, 10, 153, 0, 9, 12, 14231 }, // U+2055 - { 8, 14, 138, 0, 13, 14, 14243 }, // U+2056 - { 13, 5, 198, 0, 12, 9, 14257 }, // U+2057 - { 13, 14, 219, 0, 13, 23, 14266 }, // U+2058 - { 13, 14, 221, 0, 13, 23, 14289 }, // U+2059 - { 3, 14, 59, 0, 13, 6, 14312 }, // U+205A - { 11, 14, 174, 0, 13, 20, 14318 }, // U+205B - { 13, 14, 212, 0, 13, 23, 14338 }, // U+205C - { 3, 13, 71, 1, 12, 5, 14361 }, // U+205D - { 3, 14, 71, 1, 13, 6, 14366 }, // U+205E - { 0, 0, 59, 0, 0, 0, 14372 }, // U+205F - { 0, 0, 160, 0, 0, 0, 14372 }, // U+2060 - { 0, 0, 160, 0, 0, 0, 14372 }, // U+2061 - { 0, 0, 160, 0, 0, 0, 14372 }, // U+2062 - { 0, 0, 160, 0, 0, 0, 14372 }, // U+2063 - { 0, 0, 160, 0, 0, 0, 14372 }, // U+2064 - { 0, 0, 0, 0, 0, 0, 14372 }, // U+2066 - { 0, 0, 0, 0, 0, 0, 14372 }, // U+2067 - { 0, 0, 0, 0, 0, 0, 14372 }, // U+2068 - { 0, 0, 0, 0, 0, 0, 14372 }, // U+2069 - { 4, 15, 0, -2, 12, 8, 14372 }, // U+206A - { 4, 15, 0, -2, 12, 8, 14380 }, // U+206B - { 4, 15, 0, -2, 12, 8, 14388 }, // U+206C - { 4, 15, 0, -2, 12, 8, 14396 }, // U+206D - { 4, 15, 0, -2, 12, 8, 14404 }, // U+206E - { 4, 15, 0, -2, 12, 8, 14412 }, // U+206F - { 6, 9, 93, 0, 15, 7, 14420 }, // U+2070 - { 2, 9, 45, 0, 13, 3, 14427 }, // U+2071 - { 6, 9, 93, 0, 15, 7, 14430 }, // U+2074 - { 6, 9, 93, 0, 15, 7, 14437 }, // U+2075 - { 6, 9, 93, 0, 15, 7, 14444 }, // U+2076 - { 6, 9, 93, 0, 15, 7, 14451 }, // U+2077 - { 6, 9, 93, 0, 15, 7, 14458 }, // U+2078 - { 6, 9, 93, 0, 15, 7, 14465 }, // U+2079 - { 6, 6, 90, 0, 13, 5, 14472 }, // U+207A - { 6, 2, 90, 0, 11, 2, 14477 }, // U+207B - { 6, 4, 90, 0, 12, 3, 14479 }, // U+207C - { 3, 10, 60, 1, 16, 4, 14482 }, // U+207D - { 3, 10, 60, 0, 16, 4, 14486 }, // U+207E - { 6, 7, 107, 0, 11, 6, 14490 }, // U+207F - { 6, 9, 93, 0, 6, 7, 14496 }, // U+2080 - { 4, 9, 93, 0, 6, 5, 14503 }, // U+2081 - { 6, 9, 93, 0, 6, 7, 14508 }, // U+2082 - { 6, 9, 93, 0, 6, 7, 14515 }, // U+2083 - { 6, 9, 93, 0, 6, 7, 14522 }, // U+2084 - { 6, 9, 93, 0, 6, 7, 14529 }, // U+2085 - { 6, 9, 93, 0, 6, 7, 14536 }, // U+2086 - { 6, 9, 93, 0, 6, 7, 14543 }, // U+2087 - { 6, 9, 93, 0, 6, 7, 14550 }, // U+2088 - { 6, 9, 93, 0, 6, 7, 14557 }, // U+2089 - { 6, 6, 90, 0, 4, 5, 14564 }, // U+208A - { 6, 2, 90, 0, 2, 2, 14569 }, // U+208B - { 6, 4, 90, 0, 3, 3, 14571 }, // U+208C - { 3, 10, 60, 1, 7, 4, 14574 }, // U+208D - { 3, 10, 60, 0, 7, 4, 14578 }, // U+208E - { 6, 6, 97, 0, 4, 5, 14582 }, // U+2090 - { 6, 6, 98, 0, 4, 5, 14587 }, // U+2091 - { 6, 6, 105, 0, 4, 5, 14592 }, // U+2092 - { 6, 6, 92, 0, 4, 5, 14597 }, // U+2093 - { 6, 6, 98, 0, 4, 5, 14602 }, // U+2094 - { 6, 8, 107, 0, 6, 6, 14607 }, // U+2095 - { 6, 8, 93, 0, 6, 6, 14613 }, // U+2096 - { 2, 8, 45, 0, 6, 2, 14619 }, // U+2097 - { 10, 6, 162, 0, 4, 8, 14621 }, // U+2098 - { 6, 6, 107, 0, 4, 5, 14629 }, // U+2099 - { 7, 8, 107, 0, 4, 7, 14634 }, // U+209A - { 5, 6, 83, 0, 4, 4, 14641 }, // U+209B - { 4, 7, 63, 0, 5, 4, 14645 }, // U+209C - { 9, 13, 153, 0, 13, 15, 14649 }, // U+20A0 - { 10, 14, 153, 0, 13, 18, 14664 }, // U+20A1 - { 9, 14, 153, 0, 13, 16, 14682 }, // U+20A2 - { 9, 12, 153, 0, 12, 14, 14698 }, // U+20A3 - { 9, 13, 153, 0, 13, 15, 14712 }, // U+20A4 - { 14, 14, 249, 1, 12, 25, 14727 }, // U+20A5 - { 10, 12, 153, 0, 12, 15, 14752 }, // U+20A6 - { 12, 13, 207, 1, 12, 20, 14767 }, // U+20A7 - { 13, 13, 222, 1, 12, 22, 14787 }, // U+20A8 - { 11, 12, 179, 0, 12, 17, 14809 }, // U+20A9 - { 11, 12, 213, 1, 12, 17, 14826 }, // U+20AA - { 11, 16, 165, 0, 13, 22, 14843 }, // U+20AB - { 10, 14, 153, 0, 13, 18, 14865 }, // U+20AC - { 10, 12, 153, 0, 12, 15, 14883 }, // U+20AD - { 10, 12, 153, 0, 12, 15, 14898 }, // U+20AE - { 16, 17, 259, 0, 13, 34, 14913 }, // U+20AF - { 9, 17, 153, 0, 13, 20, 14947 }, // U+20B0 - { 10, 12, 153, 0, 12, 15, 14967 }, // U+20B1 - { 10, 15, 194, 1, 13, 19, 14982 }, // U+20B2 - { 11, 12, 162, 0, 12, 17, 15001 }, // U+20B3 - { 9, 14, 146, 0, 13, 16, 15018 }, // U+20B4 - { 10, 15, 169, 1, 13, 19, 15034 }, // U+20B5 - { 10, 12, 166, 0, 11, 15, 15053 }, // U+20B6 - { 12, 15, 194, 0, 13, 23, 15068 }, // U+20B7 - { 9, 12, 146, 0, 12, 14, 15091 }, // U+20B8 - { 8, 12, 153, 1, 12, 12, 15105 }, // U+20B9 - { 10, 13, 153, 0, 12, 17, 15117 }, // U+20BA - { 13, 14, 208, 0, 13, 23, 15134 }, // U+20BB - { 13, 12, 216, 0, 12, 20, 15157 }, // U+20BC - { 10, 12, 155, 0, 12, 15, 15177 }, // U+20BD - { 11, 13, 206, 1, 13, 18, 15192 }, // U+20BE - { 8, 16, 153, 1, 14, 16, 15210 }, // U+20BF - { 8, 13, 132, 0, 10, 13, 15226 }, // U+20C0 - { 9, 2, 153, 0, 7, 3, 15239 }, // U+2212 - { 13, 13, 184, 0, 13, 22, 15242 }, // U+FB00 - { 9, 13, 161, 0, 13, 15, 15264 }, // U+FB01 - { 9, 13, 161, 0, 13, 15, 15279 }, // U+FB02 - { 15, 13, 252, 0, 13, 25, 15294 }, // U+FB03 - { 15, 13, 252, 0, 13, 25, 15319 }, // U+FB04 - { 10, 14, 180, 1, 13, 18, 15344 }, // U+FB05 - { 14, 14, 224, 0, 13, 25, 15362 }, // U+FB06 - { 16, 16, 267, 0, 13, 32, 15387 }, // U+FFFD + { 3, 5, 87, 1, 4, 2, 11765 }, // U+060C + { 3, 10, 92, 1, 9, 4, 11767 }, // U+061B + { 7, 14, 116, 0, 13, 13, 11771 }, // U+061F + { 7, 7, 110, 0, 6, 7, 11784 }, // U+0621 + { 6, 3, 72, 0, 2, 3, 11791 }, // U+0640 + { 4, 4, 153, 3, 7, 2, 11794 }, // U+0660 + { 4, 13, 153, 3, 12, 7, 11796 }, // U+0661 + { 8, 13, 153, 1, 12, 13, 11803 }, // U+0662 + { 9, 13, 153, 0, 12, 15, 11816 }, // U+0663 + { 8, 13, 153, 1, 12, 13, 11831 }, // U+0664 + { 8, 10, 153, 1, 9, 10, 11844 }, // U+0665 + { 8, 13, 153, 1, 12, 13, 11854 }, // U+0666 + { 10, 13, 153, 0, 12, 17, 11867 }, // U+0667 + { 10, 13, 153, 0, 12, 17, 11884 }, // U+0668 + { 8, 13, 153, 1, 12, 13, 11901 }, // U+0669 + { 11, 10, 183, 0, 6, 14, 11914 }, // U+06BA + { 5, 2, 80, 0, 2, 2, 11928 }, // U+06D4 + { 4, 4, 153, 3, 7, 2, 11930 }, // U+06F0 + { 4, 13, 153, 3, 12, 7, 11932 }, // U+06F1 + { 8, 13, 153, 1, 12, 13, 11939 }, // U+06F2 + { 9, 13, 153, 0, 12, 15, 11952 }, // U+06F3 + { 8, 12, 153, 1, 12, 12, 11967 }, // U+06F4 + { 8, 12, 153, 1, 12, 12, 11979 }, // U+06F5 + { 7, 13, 153, 1, 12, 12, 11991 }, // U+06F6 + { 10, 13, 153, 0, 12, 17, 12003 }, // U+06F7 + { 10, 13, 153, 0, 12, 17, 12020 }, // U+06F8 + { 8, 13, 153, 1, 12, 13, 12037 }, // U+06F9 + { 11, 15, 170, 0, 12, 21, 12050 }, // U+1EA0 + { 8, 13, 150, 0, 10, 13, 12071 }, // U+1EA1 + { 11, 17, 170, 0, 17, 24, 12084 }, // U+1EA2 + { 8, 15, 150, 0, 14, 15, 12108 }, // U+1EA3 + { 11, 17, 170, 0, 17, 24, 12123 }, // U+1EA4 + { 10, 15, 150, 0, 14, 19, 12147 }, // U+1EA5 + { 11, 17, 170, 0, 17, 24, 12166 }, // U+1EA6 + { 8, 15, 150, 0, 14, 15, 12190 }, // U+1EA7 + { 11, 18, 170, 0, 18, 25, 12205 }, // U+1EA8 + { 9, 16, 150, 0, 15, 18, 12230 }, // U+1EA9 + { 11, 18, 170, 0, 18, 25, 12248 }, // U+1EAA + { 8, 16, 150, 0, 15, 16, 12273 }, // U+1EAB + { 11, 19, 170, 0, 16, 27, 12289 }, // U+1EAC + { 8, 16, 150, 0, 13, 16, 12316 }, // U+1EAD + { 11, 17, 170, 0, 17, 24, 12332 }, // U+1EAE + { 8, 16, 150, 0, 15, 16, 12356 }, // U+1EAF + { 11, 17, 170, 0, 17, 24, 12372 }, // U+1EB0 + { 8, 16, 150, 0, 15, 16, 12396 }, // U+1EB1 + { 11, 18, 170, 0, 18, 25, 12412 }, // U+1EB2 + { 8, 16, 150, 0, 15, 16, 12437 }, // U+1EB3 + { 11, 18, 170, 0, 18, 25, 12453 }, // U+1EB4 + { 8, 16, 150, 0, 15, 16, 12478 }, // U+1EB5 + { 11, 19, 170, 0, 16, 27, 12494 }, // U+1EB6 + { 8, 16, 150, 0, 13, 16, 12521 }, // U+1EB7 + { 8, 15, 148, 1, 12, 15, 12537 }, // U+1EB8 + { 9, 13, 150, 0, 10, 15, 12552 }, // U+1EB9 + { 8, 17, 148, 1, 17, 17, 12567 }, // U+1EBA + { 9, 15, 150, 0, 14, 17, 12584 }, // U+1EBB + { 8, 16, 148, 1, 16, 16, 12601 }, // U+1EBC + { 9, 14, 150, 0, 13, 16, 12617 }, // U+1EBD + { 9, 17, 148, 1, 17, 20, 12633 }, // U+1EBE + { 10, 15, 150, 0, 14, 19, 12653 }, // U+1EBF + { 9, 17, 148, 0, 17, 20, 12672 }, // U+1EC0 + { 9, 15, 150, 0, 14, 17, 12692 }, // U+1EC1 + { 8, 18, 148, 1, 18, 18, 12709 }, // U+1EC2 + { 9, 16, 150, 0, 15, 18, 12727 }, // U+1EC3 + { 8, 18, 148, 1, 18, 18, 12745 }, // U+1EC4 + { 9, 16, 150, 0, 15, 18, 12763 }, // U+1EC5 + { 8, 19, 148, 1, 16, 19, 12781 }, // U+1EC6 + { 9, 16, 150, 0, 13, 18, 12800 }, // U+1EC7 + { 5, 17, 90, 0, 17, 11, 12818 }, // U+1EC8 + { 4, 14, 69, 1, 14, 7, 12829 }, // U+1EC9 + { 5, 15, 90, 0, 12, 10, 12836 }, // U+1ECA + { 3, 16, 69, 1, 13, 6, 12846 }, // U+1ECB + { 11, 16, 208, 1, 13, 22, 12852 }, // U+1ECC + { 10, 13, 161, 0, 10, 17, 12874 }, // U+1ECD + { 11, 18, 208, 1, 17, 25, 12891 }, // U+1ECE + { 10, 15, 161, 0, 14, 19, 12916 }, // U+1ECF + { 11, 18, 208, 1, 17, 25, 12935 }, // U+1ED0 + { 10, 15, 161, 0, 14, 19, 12960 }, // U+1ED1 + { 11, 18, 208, 1, 17, 25, 12979 }, // U+1ED2 + { 10, 15, 161, 0, 14, 19, 13004 }, // U+1ED3 + { 11, 19, 208, 1, 18, 27, 13023 }, // U+1ED4 + { 10, 16, 161, 0, 15, 20, 13050 }, // U+1ED5 + { 11, 19, 208, 1, 18, 27, 13070 }, // U+1ED6 + { 10, 16, 161, 0, 15, 20, 13097 }, // U+1ED7 + { 11, 19, 208, 1, 16, 27, 13117 }, // U+1ED8 + { 10, 16, 161, 0, 13, 20, 13144 }, // U+1ED9 + { 13, 17, 209, 1, 16, 28, 13164 }, // U+1EDA + { 11, 14, 164, 0, 13, 20, 13192 }, // U+1EDB + { 13, 17, 209, 1, 16, 28, 13212 }, // U+1EDC + { 11, 14, 164, 0, 13, 20, 13240 }, // U+1EDD + { 13, 18, 209, 1, 17, 30, 13260 }, // U+1EDE + { 11, 15, 164, 0, 14, 21, 13290 }, // U+1EDF + { 13, 17, 209, 1, 16, 28, 13311 }, // U+1EE0 + { 11, 14, 164, 0, 13, 20, 13339 }, // U+1EE1 + { 13, 16, 209, 1, 13, 26, 13359 }, // U+1EE2 + { 11, 14, 164, 0, 11, 20, 13385 }, // U+1EE3 + { 10, 15, 195, 1, 12, 19, 13405 }, // U+1EE4 + { 8, 12, 165, 1, 9, 12, 13424 }, // U+1EE5 + { 10, 18, 195, 1, 17, 23, 13436 }, // U+1EE6 + { 8, 15, 165, 1, 14, 15, 13459 }, // U+1EE7 + { 13, 17, 208, 1, 16, 28, 13474 }, // U+1EE8 + { 11, 14, 180, 1, 13, 20, 13502 }, // U+1EE9 + { 13, 17, 208, 1, 16, 28, 13522 }, // U+1EEA + { 11, 14, 180, 1, 13, 20, 13550 }, // U+1EEB + { 13, 18, 208, 1, 17, 30, 13570 }, // U+1EEC + { 11, 15, 180, 1, 14, 21, 13600 }, // U+1EED + { 13, 17, 208, 1, 16, 28, 13621 }, // U+1EEE + { 11, 14, 180, 1, 13, 20, 13649 }, // U+1EEF + { 13, 16, 208, 1, 13, 26, 13669 }, // U+1EF0 + { 11, 14, 180, 1, 11, 20, 13695 }, // U+1EF1 + { 10, 16, 151, 0, 16, 20, 13715 }, // U+1EF2 + { 9, 17, 136, 0, 13, 20, 13735 }, // U+1EF3 + { 10, 15, 151, 0, 12, 19, 13755 }, // U+1EF4 + { 9, 13, 136, 0, 9, 15, 13774 }, // U+1EF5 + { 10, 17, 151, 0, 17, 22, 13789 }, // U+1EF6 + { 9, 18, 136, 0, 14, 21, 13811 }, // U+1EF7 + { 10, 16, 151, 0, 16, 20, 13832 }, // U+1EF8 + { 9, 17, 136, 0, 13, 20, 13852 }, // U+1EF9 + { 0, 0, 133, 0, 0, 0, 13872 }, // U+2000 + { 0, 0, 267, 0, 0, 0, 13872 }, // U+2001 + { 0, 0, 133, 0, 0, 0, 13872 }, // U+2002 + { 0, 0, 267, 0, 0, 0, 13872 }, // U+2003 + { 0, 0, 89, 0, 0, 0, 13872 }, // U+2004 + { 0, 0, 67, 0, 0, 0, 13872 }, // U+2005 + { 0, 0, 45, 0, 0, 0, 13872 }, // U+2006 + { 0, 0, 153, 0, 0, 0, 13872 }, // U+2007 + { 0, 0, 71, 0, 0, 0, 13872 }, // U+2008 + { 0, 0, 44, 0, 0, 0, 13872 }, // U+2009 + { 0, 0, 27, 0, 0, 0, 13872 }, // U+200A + { 0, 0, 0, 0, 0, 0, 13872 }, // U+200B + { 0, 0, 0, 0, 0, 0, 13872 }, // U+200C + { 0, 0, 0, 0, 0, 0, 13872 }, // U+200D + { 5, 15, 0, -1, 12, 10, 13872 }, // U+200E + { 5, 15, 0, -4, 12, 10, 13882 }, // U+200F + { 5, 3, 86, 0, 6, 2, 13892 }, // U+2010 + { 5, 3, 86, 0, 6, 2, 13894 }, // U+2011 + { 9, 2, 153, 0, 7, 3, 13896 }, // U+2012 + { 8, 3, 133, 0, 6, 3, 13899 }, // U+2013 + { 16, 3, 267, 0, 6, 6, 13902 }, // U+2014 + { 16, 3, 267, 0, 6, 6, 13908 }, // U+2015 + { 6, 18, 147, 2, 13, 14, 13914 }, // U+2016 + { 8, 4, 110, -1, 0, 4, 13928 }, // U+2017 + { 3, 5, 47, 0, 12, 2, 13932 }, // U+2018 + { 3, 5, 47, 0, 12, 2, 13934 }, // U+2019 + { 4, 5, 67, 0, 2, 3, 13936 }, // U+201A + { 3, 5, 47, 0, 12, 2, 13939 }, // U+201B + { 6, 5, 96, 0, 12, 4, 13941 }, // U+201C + { 6, 5, 96, 0, 12, 4, 13945 }, // U+201D + { 7, 5, 111, 0, 2, 5, 13949 }, // U+201E + { 6, 5, 96, 0, 12, 4, 13954 }, // U+201F + { 7, 13, 137, 1, 13, 12, 13958 }, // U+2020 + { 7, 13, 137, 1, 13, 12, 13970 }, // U+2021 + { 4, 5, 100, 1, 9, 3, 13982 }, // U+2022 + { 5, 6, 98, 1, 9, 4, 13985 }, // U+2023 + { 3, 4, 133, 3, 3, 2, 13989 }, // U+2024 + { 7, 4, 143, 1, 3, 4, 13991 }, // U+2025 + { 11, 4, 211, 1, 3, 6, 13995 }, // U+2026 + { 3, 4, 71, 1, 6, 2, 14001 }, // U+2027 + { 0, 0, 160, 0, 0, 0, 14003 }, // U+2028 + { 0, 0, 160, 0, 0, 0, 14003 }, // U+2029 + { 5, 14, 0, -1, 11, 9, 14003 }, // U+202A + { 5, 14, 0, -4, 11, 9, 14012 }, // U+202B + { 4, 15, 0, -2, 12, 8, 14021 }, // U+202C + { 4, 15, 0, -2, 12, 8, 14029 }, // U+202D + { 4, 15, 0, -2, 12, 8, 14037 }, // U+202E + { 0, 0, 44, 0, 0, 0, 14045 }, // U+202F + { 19, 14, 314, 0, 13, 34, 14045 }, // U+2030 + { 25, 14, 412, 0, 13, 44, 14079 }, // U+2031 + { 5, 5, 62, 0, 12, 4, 14123 }, // U+2032 + { 8, 5, 109, 0, 12, 5, 14127 }, // U+2033 + { 11, 5, 156, 0, 12, 7, 14132 }, // U+2034 + { 5, 5, 62, -1, 12, 4, 14139 }, // U+2035 + { 7, 5, 117, -1, 12, 5, 14143 }, // U+2036 + { 10, 5, 161, -1, 12, 7, 14148 }, // U+2037 + { 7, 6, 106, 0, 2, 6, 14155 }, // U+2038 + { 5, 8, 83, 0, 8, 5, 14161 }, // U+2039 + { 5, 8, 83, 0, 8, 5, 14166 }, // U+203A + { 14, 14, 223, 0, 13, 25, 14171 }, // U+203B + { 7, 13, 133, 1, 12, 12, 14196 }, // U+203C + { 7, 14, 118, 0, 13, 13, 14208 }, // U+203D + { 10, 2, 133, -1, 14, 3, 14221 }, // U+203E + { 10, 4, 162, 0, 0, 5, 14224 }, // U+203F + { 10, 5, 162, 0, 14, 7, 14229 }, // U+2040 + { 6, 11, 100, 0, 7, 9, 14236 }, // U+2041 + { 19, 16, 298, 0, 13, 38, 14245 }, // U+2042 + { 5, 3, 86, 0, 6, 2, 14283 }, // U+2043 + { 10, 12, 35, -4, 12, 15, 14285 }, // U+2044 + { 4, 15, 86, 1, 12, 8, 14300 }, // U+2045 + { 5, 15, 86, 0, 12, 10, 14308 }, // U+2046 + { 14, 14, 228, 0, 13, 25, 14318 }, // U+2047 + { 11, 14, 181, 0, 13, 20, 14343 }, // U+2048 + { 10, 14, 182, 1, 13, 18, 14363 }, // U+2049 + { 9, 9, 153, 0, 9, 11, 14381 }, // U+204A + { 9, 16, 175, 1, 13, 18, 14392 }, // U+204B + { 10, 9, 170, 0, 9, 12, 14410 }, // U+204C + { 9, 9, 170, 1, 9, 11, 14422 }, // U+204D + { 9, 8, 147, 0, 5, 9, 14433 }, // U+204E + { 4, 13, 63, 0, 10, 7, 14442 }, // U+204F + { 10, 18, 161, 0, 14, 23, 14449 }, // U+2050 + { 9, 16, 147, 0, 13, 18, 14472 }, // U+2051 + { 7, 14, 99, 0, 13, 13, 14490 }, // U+2052 + { 15, 4, 267, 1, 7, 8, 14503 }, // U+2053 + { 10, 4, 161, 0, 0, 5, 14511 }, // U+2054 + { 9, 10, 153, 0, 9, 12, 14516 }, // U+2055 + { 8, 14, 138, 0, 13, 14, 14528 }, // U+2056 + { 13, 5, 198, 0, 12, 9, 14542 }, // U+2057 + { 13, 14, 219, 0, 13, 23, 14551 }, // U+2058 + { 13, 14, 221, 0, 13, 23, 14574 }, // U+2059 + { 3, 14, 59, 0, 13, 6, 14597 }, // U+205A + { 11, 14, 174, 0, 13, 20, 14603 }, // U+205B + { 13, 14, 212, 0, 13, 23, 14623 }, // U+205C + { 3, 13, 71, 1, 12, 5, 14646 }, // U+205D + { 3, 14, 71, 1, 13, 6, 14651 }, // U+205E + { 0, 0, 59, 0, 0, 0, 14657 }, // U+205F + { 0, 0, 160, 0, 0, 0, 14657 }, // U+2060 + { 0, 0, 160, 0, 0, 0, 14657 }, // U+2061 + { 0, 0, 160, 0, 0, 0, 14657 }, // U+2062 + { 0, 0, 160, 0, 0, 0, 14657 }, // U+2063 + { 0, 0, 160, 0, 0, 0, 14657 }, // U+2064 + { 0, 0, 0, 0, 0, 0, 14657 }, // U+2066 + { 0, 0, 0, 0, 0, 0, 14657 }, // U+2067 + { 0, 0, 0, 0, 0, 0, 14657 }, // U+2068 + { 0, 0, 0, 0, 0, 0, 14657 }, // U+2069 + { 4, 15, 0, -2, 12, 8, 14657 }, // U+206A + { 4, 15, 0, -2, 12, 8, 14665 }, // U+206B + { 4, 15, 0, -2, 12, 8, 14673 }, // U+206C + { 4, 15, 0, -2, 12, 8, 14681 }, // U+206D + { 4, 15, 0, -2, 12, 8, 14689 }, // U+206E + { 4, 15, 0, -2, 12, 8, 14697 }, // U+206F + { 6, 9, 93, 0, 15, 7, 14705 }, // U+2070 + { 2, 9, 45, 0, 13, 3, 14712 }, // U+2071 + { 6, 9, 93, 0, 15, 7, 14715 }, // U+2074 + { 6, 9, 93, 0, 15, 7, 14722 }, // U+2075 + { 6, 9, 93, 0, 15, 7, 14729 }, // U+2076 + { 6, 9, 93, 0, 15, 7, 14736 }, // U+2077 + { 6, 9, 93, 0, 15, 7, 14743 }, // U+2078 + { 6, 9, 93, 0, 15, 7, 14750 }, // U+2079 + { 6, 6, 90, 0, 13, 5, 14757 }, // U+207A + { 6, 2, 90, 0, 11, 2, 14762 }, // U+207B + { 6, 4, 90, 0, 12, 3, 14764 }, // U+207C + { 3, 10, 60, 1, 16, 4, 14767 }, // U+207D + { 3, 10, 60, 0, 16, 4, 14771 }, // U+207E + { 6, 7, 107, 0, 11, 6, 14775 }, // U+207F + { 6, 9, 93, 0, 6, 7, 14781 }, // U+2080 + { 4, 9, 93, 0, 6, 5, 14788 }, // U+2081 + { 6, 9, 93, 0, 6, 7, 14793 }, // U+2082 + { 6, 9, 93, 0, 6, 7, 14800 }, // U+2083 + { 6, 9, 93, 0, 6, 7, 14807 }, // U+2084 + { 6, 9, 93, 0, 6, 7, 14814 }, // U+2085 + { 6, 9, 93, 0, 6, 7, 14821 }, // U+2086 + { 6, 9, 93, 0, 6, 7, 14828 }, // U+2087 + { 6, 9, 93, 0, 6, 7, 14835 }, // U+2088 + { 6, 9, 93, 0, 6, 7, 14842 }, // U+2089 + { 6, 6, 90, 0, 4, 5, 14849 }, // U+208A + { 6, 2, 90, 0, 2, 2, 14854 }, // U+208B + { 6, 4, 90, 0, 3, 3, 14856 }, // U+208C + { 3, 10, 60, 1, 7, 4, 14859 }, // U+208D + { 3, 10, 60, 0, 7, 4, 14863 }, // U+208E + { 6, 6, 97, 0, 4, 5, 14867 }, // U+2090 + { 6, 6, 98, 0, 4, 5, 14872 }, // U+2091 + { 6, 6, 105, 0, 4, 5, 14877 }, // U+2092 + { 6, 6, 92, 0, 4, 5, 14882 }, // U+2093 + { 6, 6, 98, 0, 4, 5, 14887 }, // U+2094 + { 6, 8, 107, 0, 6, 6, 14892 }, // U+2095 + { 6, 8, 93, 0, 6, 6, 14898 }, // U+2096 + { 2, 8, 45, 0, 6, 2, 14904 }, // U+2097 + { 10, 6, 162, 0, 4, 8, 14906 }, // U+2098 + { 6, 6, 107, 0, 4, 5, 14914 }, // U+2099 + { 7, 8, 107, 0, 4, 7, 14919 }, // U+209A + { 5, 6, 83, 0, 4, 4, 14926 }, // U+209B + { 4, 7, 63, 0, 5, 4, 14930 }, // U+209C + { 9, 13, 153, 0, 13, 15, 14934 }, // U+20A0 + { 10, 14, 153, 0, 13, 18, 14949 }, // U+20A1 + { 9, 14, 153, 0, 13, 16, 14967 }, // U+20A2 + { 9, 12, 153, 0, 12, 14, 14983 }, // U+20A3 + { 9, 13, 153, 0, 13, 15, 14997 }, // U+20A4 + { 14, 14, 249, 1, 12, 25, 15012 }, // U+20A5 + { 10, 12, 153, 0, 12, 15, 15037 }, // U+20A6 + { 12, 13, 207, 1, 12, 20, 15052 }, // U+20A7 + { 13, 13, 222, 1, 12, 22, 15072 }, // U+20A8 + { 11, 12, 179, 0, 12, 17, 15094 }, // U+20A9 + { 11, 12, 213, 1, 12, 17, 15111 }, // U+20AA + { 11, 16, 165, 0, 13, 22, 15128 }, // U+20AB + { 10, 14, 153, 0, 13, 18, 15150 }, // U+20AC + { 10, 12, 153, 0, 12, 15, 15168 }, // U+20AD + { 10, 12, 153, 0, 12, 15, 15183 }, // U+20AE + { 16, 17, 259, 0, 13, 34, 15198 }, // U+20AF + { 9, 17, 153, 0, 13, 20, 15232 }, // U+20B0 + { 10, 12, 153, 0, 12, 15, 15252 }, // U+20B1 + { 10, 15, 194, 1, 13, 19, 15267 }, // U+20B2 + { 11, 12, 162, 0, 12, 17, 15286 }, // U+20B3 + { 9, 14, 146, 0, 13, 16, 15303 }, // U+20B4 + { 10, 15, 169, 1, 13, 19, 15319 }, // U+20B5 + { 10, 12, 166, 0, 11, 15, 15338 }, // U+20B6 + { 12, 15, 194, 0, 13, 23, 15353 }, // U+20B7 + { 9, 12, 146, 0, 12, 14, 15376 }, // U+20B8 + { 8, 12, 153, 1, 12, 12, 15390 }, // U+20B9 + { 10, 13, 153, 0, 12, 17, 15402 }, // U+20BA + { 13, 14, 208, 0, 13, 23, 15419 }, // U+20BB + { 13, 12, 216, 0, 12, 20, 15442 }, // U+20BC + { 10, 12, 155, 0, 12, 15, 15462 }, // U+20BD + { 11, 13, 206, 1, 13, 18, 15477 }, // U+20BE + { 8, 16, 153, 1, 14, 16, 15495 }, // U+20BF + { 8, 13, 132, 0, 10, 13, 15511 }, // U+20C0 + { 9, 2, 153, 0, 7, 3, 15524 }, // U+2212 + { 11, 12, 166, 0, 12, 17, 15527 }, // U+221A + { 13, 13, 184, 0, 13, 22, 15544 }, // U+FB00 + { 9, 13, 161, 0, 13, 15, 15566 }, // U+FB01 + { 9, 13, 161, 0, 13, 15, 15581 }, // U+FB02 + { 15, 13, 252, 0, 13, 25, 15596 }, // U+FB03 + { 15, 13, 252, 0, 13, 25, 15621 }, // U+FB04 + { 10, 14, 180, 1, 13, 18, 15646 }, // U+FB05 + { 14, 14, 224, 0, 13, 25, 15664 }, // U+FB06 + { 16, 12, 265, 0, 7, 24, 15689 }, // U+FB56 + { 20, 11, 292, 0, 6, 28, 15713 }, // U+FB57 + { 5, 12, 80, -1, 7, 8, 15741 }, // U+FB58 + { 8, 10, 99, 0, 5, 10, 15749 }, // U+FB59 + { 16, 13, 265, 0, 12, 26, 15759 }, // U+FB66 + { 20, 13, 292, 0, 12, 33, 15785 }, // U+FB67 + { 5, 15, 72, 0, 14, 10, 15818 }, // U+FB68 + { 8, 13, 99, 0, 12, 13, 15828 }, // U+FB69 + { 11, 14, 176, 0, 7, 20, 15841 }, // U+FB7A + { 13, 14, 192, 0, 7, 23, 15861 }, // U+FB7B + { 10, 11, 157, 0, 6, 14, 15884 }, // U+FB7C + { 12, 11, 170, 0, 6, 17, 15898 }, // U+FB7D + { 8, 15, 127, 0, 14, 15, 15915 }, // U+FB88 + { 10, 15, 142, 0, 14, 19, 15930 }, // U+FB89 + { 7, 15, 98, -1, 11, 14, 15949 }, // U+FB8A + { 9, 15, 106, -1, 11, 17, 15963 }, // U+FB8B + { 7, 17, 98, -1, 13, 15, 15980 }, // U+FB8C + { 9, 17, 106, -1, 13, 20, 15995 }, // U+FB8D + { 15, 13, 234, 0, 12, 25, 16015 }, // U+FB8E + { 18, 13, 260, 0, 12, 30, 16040 }, // U+FB8F + { 8, 13, 110, 0, 12, 13, 16070 }, // U+FB90 + { 10, 13, 136, 0, 12, 17, 16083 }, // U+FB91 + { 15, 15, 234, 0, 14, 29, 16100 }, // U+FB92 + { 18, 15, 260, 0, 14, 34, 16129 }, // U+FB93 + { 8, 15, 110, 0, 14, 15, 16163 }, // U+FB94 + { 10, 15, 136, 0, 14, 19, 16178 }, // U+FB95 + { 11, 10, 183, 0, 6, 14, 16197 }, // U+FB9E + { 13, 9, 195, 0, 5, 15, 16211 }, // U+FB9F + { 7, 8, 108, 0, 8, 7, 16226 }, // U+FBA6 + { 9, 7, 128, 0, 6, 8, 16233 }, // U+FBA7 + { 4, 11, 72, 0, 7, 6, 16241 }, // U+FBA8 + { 9, 8, 117, 0, 3, 9, 16247 }, // U+FBA9 + { 11, 10, 179, 0, 9, 14, 16256 }, // U+FBAA + { 12, 11, 164, 0, 7, 17, 16270 }, // U+FBAB + { 9, 10, 153, 0, 9, 12, 16287 }, // U+FBAC + { 10, 11, 135, 0, 7, 14, 16299 }, // U+FBAD + { 16, 9, 251, 0, 8, 18, 16313 }, // U+FBAE + { 10, 7, 146, 0, 2, 9, 16331 }, // U+FBAF + { 16, 13, 251, 0, 12, 26, 16340 }, // U+FBB0 + { 10, 11, 146, 0, 6, 14, 16366 }, // U+FBB1 + { 13, 11, 203, 0, 7, 18, 16380 }, // U+FBFC + { 14, 7, 196, 0, 3, 13, 16398 }, // U+FBFD + { 5, 11, 80, -1, 7, 7, 16411 }, // U+FBFE + { 8, 9, 99, 0, 5, 9, 16418 }, // U+FBFF + { 7, 7, 110, 0, 6, 7, 16427 }, // U+FE80 + { 6, 14, 63, -1, 14, 11, 16434 }, // U+FE81 + { 7, 16, 78, -1, 15, 14, 16445 }, // U+FE82 + { 4, 16, 63, 0, 16, 8, 16459 }, // U+FE83 + { 6, 18, 78, 0, 17, 14, 16467 }, // U+FE84 + { 7, 15, 119, 0, 11, 14, 16481 }, // U+FE85 + { 9, 15, 126, 0, 11, 17, 16495 }, // U+FE86 + { 5, 18, 63, 0, 12, 12, 16512 }, // U+FE87 + { 6, 18, 78, 0, 12, 14, 16524 }, // U+FE88 + { 13, 12, 203, 0, 8, 20, 16538 }, // U+FE89 + { 14, 12, 196, 0, 8, 21, 16558 }, // U+FE8A + { 4, 13, 72, 0, 12, 7, 16579 }, // U+FE8B + { 7, 11, 91, 0, 10, 10, 16586 }, // U+FE8C + { 2, 12, 63, 1, 12, 3, 16596 }, // U+FE8D + { 5, 13, 78, 1, 12, 9, 16599 }, // U+FE8E + { 16, 11, 265, 0, 7, 22, 16608 }, // U+FE8F + { 20, 10, 292, 0, 6, 25, 16630 }, // U+FE90 + { 4, 11, 72, 0, 7, 6, 16655 }, // U+FE91 + { 7, 9, 91, 0, 5, 8, 16661 }, // U+FE92 + { 7, 12, 108, 0, 12, 11, 16669 }, // U+FE93 + { 9, 14, 130, 0, 13, 16, 16680 }, // U+FE94 + { 16, 10, 265, 0, 9, 20, 16696 }, // U+FE95 + { 20, 10, 292, 0, 9, 25, 16716 }, // U+FE96 + { 5, 12, 72, 0, 11, 8, 16741 }, // U+FE97 + { 8, 10, 99, 0, 9, 10, 16749 }, // U+FE98 + { 16, 11, 265, 0, 10, 22, 16759 }, // U+FE99 + { 20, 11, 292, 0, 10, 28, 16781 }, // U+FE9A + { 5, 13, 72, 0, 12, 9, 16809 }, // U+FE9B + { 8, 11, 99, 0, 10, 11, 16818 }, // U+FE9C + { 10, 14, 170, 0, 7, 18, 16829 }, // U+FE9D + { 12, 14, 173, 0, 7, 21, 16847 }, // U+FE9E + { 10, 10, 157, 0, 6, 13, 16868 }, // U+FE9F + { 12, 10, 170, 0, 6, 15, 16881 }, // U+FEA0 + { 10, 14, 170, 0, 7, 18, 16896 }, // U+FEA1 + { 12, 14, 173, 0, 7, 21, 16914 }, // U+FEA2 + { 10, 7, 157, 0, 6, 9, 16935 }, // U+FEA3 + { 12, 7, 170, 0, 6, 11, 16944 }, // U+FEA4 + { 10, 18, 170, 0, 11, 23, 16955 }, // U+FEA5 + { 12, 18, 173, 0, 11, 27, 16978 }, // U+FEA6 + { 10, 11, 157, 0, 10, 14, 17005 }, // U+FEA7 + { 12, 11, 170, 0, 10, 17, 17019 }, // U+FEA8 + { 8, 9, 127, 0, 8, 9, 17036 }, // U+FEA9 + { 10, 9, 142, 0, 8, 12, 17045 }, // U+FEAA + { 8, 13, 127, 0, 12, 13, 17057 }, // U+FEAB + { 10, 13, 142, 0, 12, 17, 17070 }, // U+FEAC + { 7, 10, 98, -1, 6, 9, 17087 }, // U+FEAD + { 9, 10, 106, -1, 6, 12, 17096 }, // U+FEAE + { 7, 14, 98, -1, 10, 13, 17108 }, // U+FEAF + { 9, 14, 106, -1, 10, 16, 17121 }, // U+FEB0 + { 20, 11, 323, 0, 7, 28, 17137 }, // U+FEB1 + { 22, 10, 339, 0, 6, 28, 17165 }, // U+FEB2 + { 13, 8, 209, 0, 7, 13, 17193 }, // U+FEB3 + { 15, 7, 227, 0, 6, 14, 17206 }, // U+FEB4 + { 20, 15, 323, 0, 11, 38, 17220 }, // U+FEB5 + { 22, 15, 339, 0, 11, 42, 17258 }, // U+FEB6 + { 13, 12, 209, 0, 11, 20, 17300 }, // U+FEB7 + { 15, 12, 227, 0, 11, 23, 17320 }, // U+FEB8 + { 22, 11, 348, 0, 7, 31, 17343 }, // U+FEB9 + { 24, 11, 361, 0, 7, 33, 17374 }, // U+FEBA + { 15, 8, 241, 0, 7, 15, 17407 }, // U+FEBB + { 17, 8, 253, 0, 7, 17, 17422 }, // U+FEBC + { 22, 15, 348, 0, 11, 42, 17439 }, // U+FEBD + { 24, 15, 361, 0, 11, 45, 17481 }, // U+FEBE + { 15, 11, 241, 0, 10, 21, 17526 }, // U+FEBF + { 17, 11, 253, 0, 10, 24, 17547 }, // U+FEC0 + { 13, 13, 210, 0, 12, 22, 17571 }, // U+FEC1 + { 15, 13, 222, 0, 12, 25, 17593 }, // U+FEC2 + { 11, 13, 181, 0, 12, 18, 17618 }, // U+FEC3 + { 13, 13, 189, 0, 12, 22, 17636 }, // U+FEC4 + { 13, 13, 210, 0, 12, 22, 17658 }, // U+FEC5 + { 15, 13, 222, 0, 12, 25, 17680 }, // U+FEC6 + { 11, 13, 181, 0, 12, 18, 17705 }, // U+FEC7 + { 13, 13, 189, 0, 12, 22, 17723 }, // U+FEC8 + { 10, 16, 135, 0, 9, 20, 17745 }, // U+FEC9 + { 10, 14, 142, 0, 7, 18, 17765 }, // U+FECA + { 8, 9, 134, 0, 8, 9, 17783 }, // U+FECB + { 10, 8, 139, 0, 7, 10, 17792 }, // U+FECC + { 10, 20, 135, 0, 13, 25, 17802 }, // U+FECD + { 10, 18, 142, 0, 11, 23, 17827 }, // U+FECE + { 8, 13, 134, 0, 12, 13, 17850 }, // U+FECF + { 10, 12, 139, 0, 11, 15, 17863 }, // U+FED0 + { 16, 14, 262, 0, 13, 28, 17878 }, // U+FED1 + { 20, 12, 293, 0, 11, 30, 17906 }, // U+FED2 + { 7, 14, 119, 0, 13, 13, 17936 }, // U+FED3 + { 10, 12, 132, 0, 11, 15, 17949 }, // U+FED4 + { 13, 15, 206, 0, 11, 25, 17964 }, // U+FED5 + { 15, 15, 216, 0, 10, 29, 17989 }, // U+FED6 + { 7, 14, 119, 0, 13, 13, 18018 }, // U+FED7 + { 10, 12, 132, 0, 11, 15, 18031 }, // U+FED8 + { 14, 13, 235, 0, 12, 23, 18046 }, // U+FED9 + { 17, 13, 246, 0, 12, 28, 18069 }, // U+FEDA + { 8, 13, 110, 0, 12, 13, 18097 }, // U+FEDB + { 10, 13, 136, 0, 12, 17, 18110 }, // U+FEDC + { 11, 16, 185, 0, 12, 22, 18127 }, // U+FEDD + { 13, 16, 195, 0, 12, 26, 18149 }, // U+FEDE + { 4, 13, 69, 0, 12, 7, 18175 }, // U+FEDF + { 6, 13, 80, 0, 12, 10, 18182 }, // U+FEE0 + { 8, 14, 129, 0, 7, 14, 18192 }, // U+FEE1 + { 11, 14, 150, 0, 7, 20, 18206 }, // U+FEE2 + { 8, 7, 140, 0, 6, 7, 18226 }, // U+FEE3 + { 11, 8, 154, 0, 7, 11, 18233 }, // U+FEE4 + { 11, 13, 183, 0, 9, 18, 18244 }, // U+FEE5 + { 13, 13, 195, 0, 9, 22, 18262 }, // U+FEE6 + { 4, 12, 72, 0, 11, 6, 18284 }, // U+FEE7 + { 7, 10, 91, 0, 9, 9, 18290 }, // U+FEE8 + { 7, 8, 108, 0, 8, 7, 18299 }, // U+FEE9 + { 9, 10, 130, 0, 9, 12, 18306 }, // U+FEEA + { 9, 10, 153, 0, 9, 12, 18318 }, // U+FEEB + { 10, 11, 135, 0, 7, 14, 18330 }, // U+FEEC + { 7, 10, 119, 0, 6, 9, 18344 }, // U+FEED + { 9, 10, 126, 0, 6, 12, 18353 }, // U+FEEE + { 13, 11, 203, 0, 7, 18, 18365 }, // U+FEEF + { 14, 7, 196, 0, 3, 13, 18383 }, // U+FEF0 + { 13, 15, 203, 0, 7, 25, 18396 }, // U+FEF1 + { 14, 11, 196, 0, 3, 20, 18421 }, // U+FEF2 + { 5, 11, 80, -1, 7, 7, 18441 }, // U+FEF3 + { 8, 9, 99, 0, 5, 9, 18448 }, // U+FEF4 + { 11, 13, 155, -2, 13, 18, 18457 }, // U+FEF5 + { 12, 14, 160, -1, 13, 21, 18475 }, // U+FEF6 + { 10, 15, 155, -1, 15, 19, 18496 }, // U+FEF7 + { 11, 16, 160, 0, 15, 22, 18515 }, // U+FEF8 + { 9, 18, 155, 0, 12, 21, 18537 }, // U+FEF9 + { 11, 18, 160, 0, 12, 25, 18558 }, // U+FEFA + { 9, 12, 155, 0, 12, 14, 18583 }, // U+FEFB + { 11, 13, 160, 0, 12, 18, 18597 }, // U+FEFC + { 16, 16, 267, 0, 13, 32, 18615 }, // U+FFFD }; static const EpdUnicodeInterval notosans_8_regularIntervals[] = { { 0x0, 0x0, 0x0 }, { 0xD, 0xD, 0x1 }, { 0x20, 0x7E, 0x2 }, - { 0xA0, 0xFF, 0x61 }, - { 0x100, 0x17F, 0xC1 }, + { 0xA0, 0x17F, 0x61 }, { 0x1A0, 0x1A1, 0x141 }, { 0x1AF, 0x1B0, 0x143 }, { 0x1C4, 0x21F, 0x145 }, { 0x300, 0x36F, 0x1A1 }, { 0x400, 0x4FF, 0x211 }, { 0x5D0, 0x5EA, 0x311 }, - { 0x1EA0, 0x1EF9, 0x32C }, - { 0x2000, 0x2064, 0x386 }, - { 0x2066, 0x206F, 0x3EB }, - { 0x2070, 0x2071, 0x3F5 }, - { 0x2074, 0x208E, 0x3F7 }, - { 0x2090, 0x209C, 0x412 }, - { 0x20A0, 0x20C0, 0x41F }, - { 0x2212, 0x2212, 0x440 }, - { 0xFB00, 0xFB06, 0x441 }, - { 0xFFFD, 0xFFFD, 0x448 }, + { 0x60C, 0x60C, 0x32C }, + { 0x61B, 0x61B, 0x32D }, + { 0x61F, 0x61F, 0x32E }, + { 0x621, 0x621, 0x32F }, + { 0x640, 0x640, 0x330 }, + { 0x660, 0x669, 0x331 }, + { 0x6BA, 0x6BA, 0x33B }, + { 0x6D4, 0x6D4, 0x33C }, + { 0x6F0, 0x6F9, 0x33D }, + { 0x1EA0, 0x1EF9, 0x347 }, + { 0x2000, 0x2064, 0x3A1 }, + { 0x2066, 0x2071, 0x406 }, + { 0x2074, 0x208E, 0x412 }, + { 0x2090, 0x209C, 0x42D }, + { 0x20A0, 0x20C0, 0x43A }, + { 0x2212, 0x2212, 0x45B }, + { 0x221A, 0x221A, 0x45C }, + { 0xFB00, 0xFB06, 0x45D }, + { 0xFB56, 0xFB59, 0x464 }, + { 0xFB66, 0xFB69, 0x468 }, + { 0xFB7A, 0xFB7D, 0x46C }, + { 0xFB88, 0xFB95, 0x470 }, + { 0xFB9E, 0xFB9F, 0x47E }, + { 0xFBA6, 0xFBB1, 0x480 }, + { 0xFBFC, 0xFBFF, 0x48C }, + { 0xFE80, 0xFEFC, 0x490 }, + { 0xFFFD, 0xFFFD, 0x50D }, }; static const EpdKernClassEntry notosans_8_regularKernLeftClasses[] = { @@ -2597,6 +3012,10 @@ static const EpdKernClassEntry notosans_8_regularKernLeftClasses[] = { { 0x2039, 30 }, // U+2039 { 0x203A, 31 }, // U+203A { 0xFB00, 25 }, // U+FB00 + { 0xFB8C, 107 }, // U+FB8C + { 0xFEAD, 107 }, // U+FEAD + { 0xFEAE, 107 }, // U+FEAE + { 0xFEAF, 107 }, // U+FEAF }; static const EpdKernClassEntry notosans_8_regularKernRightClasses[] = { @@ -3097,115 +3516,135 @@ static const EpdKernClassEntry notosans_8_regularKernRightClasses[] = { { 0xFB02, 22 }, // U+FB02 { 0xFB03, 22 }, // U+FB03 { 0xFB04, 22 }, // U+FB04 + { 0xFB8E, 100 }, // U+FB8E + { 0xFBA6, 100 }, // U+FBA6 + { 0xFBAA, 100 }, // U+FBAA + { 0xFE8D, 101 }, // U+FE8D + { 0xFEA3, 100 }, // U+FEA3 + { 0xFEA9, 102 }, // U+FEA9 + { 0xFEB1, 102 }, // U+FEB1 + { 0xFEB3, 102 }, // U+FEB3 + { 0xFEB9, 102 }, // U+FEB9 + { 0xFEBB, 102 }, // U+FEBB + { 0xFEC1, 102 }, // U+FEC1 + { 0xFEC3, 102 }, // U+FEC3 + { 0xFECB, 101 }, // U+FECB + { 0xFEDB, 100 }, // U+FEDB + { 0xFEDF, 101 }, // U+FEDF + { 0xFEE1, 100 }, // U+FEE1 + { 0xFEE3, 100 }, // U+FEE3 + { 0xFEE9, 100 }, // U+FEE9 + { 0xFEEB, 100 }, // U+FEEB }; static const int8_t notosans_8_regularKernMatrix[] = { - 0, 0, 0, 0, 0, 0, 0, 0, -19, 0, 0, 0, 5, 0, 5, 0, 3, 0, -11, 0, -16, 0, -8, 0, -8, -8, 0, 0, 0, 0, -21, 0, 19, 5, 0, 0, 0, -8, 5, -19, -16, 5, 0, -3, 0, 0, -11, 0, 0, -19, 0, 0, 5, -13, 8, 5, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, -16, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, -5, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, -19, -5, -16, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 16, 0, -5, 0, 0, 0, 0, -11, -21, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, -16, 0, 0, 0, 0, 0, -13, 0, 0, 0, -16, -19, -16, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, -5, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, -3, 0, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -19, 0, 0, 0, 0, 0, 0, 0, -5, 0, 13, -19, 0, -11, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -11, 0, 0, 0, -5, 0, 0, 0, -8, 0, -3, -5, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 5, -16, 0, 0, 5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -21, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -5, -3, -5, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -3, 0, -35, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, -5, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -5, 0, -16, -11, 0, 5, -19, -5, 0, 0, 5, 0, 0, 0, 0, 0, -21, 0, -19, 0, -19, 0, -13, -16, -5, -11, -16, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -5, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -13, 0, 0, 5, -11, -3, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -5, 0, -3, 0, -3, -3, 0, 0, -8, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -8, 0, -16, 0, 0, 5, -16, -5, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, -13, 0, -13, 0, -8, -11, 0, -5, -21, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 16, 0, 11, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 11, 0, 0, -43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -5, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 11, 0, 0, -11, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, -5, 0, -3, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -3, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, -8, -5, -21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, -5, 0, 0, -5, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, -11, 0, -8, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -19, 0, 0, 0, 0, 0, 0, 0, -5, 0, 29, -19, 0, -11, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 13, 13, 0, 24, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, - 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 19, 29, 0, 32, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, - 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 5, 0, 16, 0, 19, 13, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 11, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -8, -3, 5, 0, 19, 0, 19, 13, 16, 0, -8, 0, -5, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 13, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -5, -5, 0, 0, 0, 0, 0, 0, 0, -5, 0, -11, -16, -13, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, - 0, 5, 0, 0, -13, -11, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 5, -5, 0, 0, -7, 0, -19, -7, 0, 0, -9, 0, 0, -11, -5, -8, -11, -11, -3, -3, -8, -3, -5, -8, -11, 0, -5, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -24, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, -5, 0, 0, -5, -5, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, - 0, 5, 0, 0, 0, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, -11, -3, 0, -3, -5, 0, 0, -5, 0, 0, 0, -3, -3, -5, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 5, 0, 0, -19, -5, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -5, 0, 0, 0, 0, -11, -5, 0, -24, 0, -32, -27, 0, 0, -8, 0, -8, -13, -11, -3, -27, -16, -8, -5, -13, 0, 0, -5, -13, 13, -8, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, -5, -8, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, -19, -5, 0, 13, 0, -8, 0, 0, 0, 0, -9, -16, 0, 0, 0, 0, 0, -3, 0, 0, 0, -8, -5, -8, 0, 0, 0, 0, 0, 0, 0, -5, 0, -11, -13, -16, 0, -13, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, -4, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 8, 0, 0, 11, 0, 0, -3, -7, 0, 0, 0, 0, 8, 0, 0, 0, 8, -3, 8, -5, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, -3, -11, -5, -3, -5, -3, 0, 0, 0, 0, 0, 0, -3, 0, -4, 0, -3, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, -3, -3, -3, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -35, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, 0, 0, 0, 0, 0, 0, 0, -16, -5, -13, -16, -5, 0, -3, 0, 0, -7, 0, 0, -13, -3, 0, 0, -11, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -3, 0, -8, -11, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, -3, 0, -7, -8, -9, -8, -11, -8, 0, 0, -3, 0, 0, 0, -7, 0, -4, 0, -4, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, -11, -3, 0, -8, 0, 0, 0, -5, 0, 0, 0, -3, 0, -5, 0, 0, -3, -8, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, -3, 0, 0, -3, 0, 0, 0, -3, 0, 0, 0, 0, 0, -5, 0, 0, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 8, 0, 0, -11, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -8, -8, -3, 0, 0, 0, 0, 0, 0, 0, -11, -3, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, - 0, -3, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 27, 5, 0, 0, 8, 0, 0, 0, -4, 0, 0, 0, 0, 5, 0, 0, 0, 7, -4, 0, -8, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, -11, -3, 0, -5, 0, 0, 0, -5, 0, 0, 0, -3, 0, -5, 0, 0, -3, -8, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, -4, 0, 0, 0, -3, 0, 0, 0, 0, -4, -3, 0, -5, 0, 0, 0, -5, 0, 0, 0, 0, 0, -5, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 5, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -5, -8, -3, 0, 0, 0, 0, -3, 0, 0, -13, -8, 0, 0, -13, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, - 0, -21, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, -5, -3, 0, -3, 0, -3, -19, -5, 0, 0, 0, 0, 0, -5, 0, 0, -16, -12, -11, -5, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -8, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, - 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -13, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, -13, -8, -8, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -5, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -16, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, -8, 0, 0, 0, 5, -5, 0, 0, -11, 0, -19, -13, 0, 0, -9, 0, 0, -19, 0, 0, -16, 0, -5, -5, 0, -11, -11, -13, 0, 0, 0, 0, 0, -5, -5, 0, -13, 0, 0, 0, -11, -13, -19, -13, -21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -13, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, -3, 0, 0, -11, -3, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -13, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, 0, -11, 0, 0, -13, 0, -5, -5, 0, 0, 0, -13, 0, 5, 0, 0, 0, -5, 0, 0, -8, 0, 5, 0, 0, -5, -8, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -13, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, -13, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, 0, -13, 0, 0, -13, 0, 0, 0, 0, 0, 0, -11, 0, 5, 0, 0, 0, -5, 0, 0, -8, 0, 0, 0, 0, 0, -11, -11, -11, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -2, -2, 0, 0, 0, 0, 0, -5, 0, -3, 0, -5, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, -9, 0, 0, -9, 0, 0, -7, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, -5, -9, 0, -3, -4, 0, -6, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, -5, 0, 0, -5, 0, -13, -10, 0, -7, -3, -9, 0, -13, -10, 0, 0, -10, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, -3, 0, -2, 0, 0, -5, 0, 0, -3, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, -5, 0, -5, -2, 0, 0, 0, 0, 0, -3, -6, -5, -5, -3, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -17, 0, 0, -5, 0, -2, -2, 0, 0, -2, 0, -8, -2, -2, 0, 0, -6, 0, 0, -5, 0, -5, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -3, 0, 0, -4, -4, 0, -7, -7, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -1, 0, 0, 0, 0, -5, 0, -8, -7, 0, 0, 0, -5, 0, -10, -4, 0, 0, 0, 5, -2, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -3, -5, -6, 0, 0, -7, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -8, 0, -1, 0, 0, -1, 0, -8, -3, 0, 0, -3, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, -5, -2, 0, 0, -2, 0, -7, -1, 0, 0, 0, -2, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, -7, 0, -5, 0, 0, 0, 0, -5, 0, 0, 0, -7, 0, -9, 0, 0, -7, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, -5, 0, -4, -5, 0, 0, -2, -3, 0, -8, -3, 0, 0, -5, 0, -6, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, -1, 0, 0, -6, 0, -2, 0, -3, 0, 0, -2, 0, 0, -2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, -13, 0, 0, -4, 0, -5, -1, 0, -9, -11, -11, 0, -7, 0, 0, 0, -5, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -19, 0, 0, 0, 5, 0, 5, 0, 3, 0, -11, 0, -16, 0, -8, 0, -8, -8, 0, 0, 0, 0, -21, 0, 19, 5, 0, 0, 0, -8, 5, -19, -16, 5, 0, -3, 0, 0, -11, 0, 0, -19, 0, 0, 5, -13, 8, 5, 0, 0, 8, 0, 8, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, -16, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, -5, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, -19, -5, -16, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 16, 0, -5, 0, 0, 0, 0, -11, -21, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, -16, 0, 0, 0, 0, 0, -13, 0, 0, 0, -16, -19, -16, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, -5, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, -3, 0, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -19, 0, 0, 0, 0, 0, 0, 0, -5, 0, 13, -19, 0, -11, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -11, 0, 0, 0, -5, 0, 0, 0, -8, 0, -3, -5, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 5, -16, 0, 0, 5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -21, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -5, -3, -5, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -3, 0, -35, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, -5, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -5, 0, -16, -11, 0, 5, -19, -5, 0, 0, 5, 0, 0, 0, 0, 0, -21, 0, -19, 0, -19, 0, -13, -16, -5, -11, -16, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -5, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -13, 0, 0, 5, -11, -3, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -5, 0, -3, 0, -3, -3, 0, 0, -8, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -8, 0, -16, 0, 0, 5, -16, -5, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, -13, 0, -13, 0, -8, -11, 0, -5, -21, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 16, 0, 11, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 11, 0, 0, -43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -5, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 11, 0, 0, -11, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, -5, 0, -3, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -3, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, -8, -5, -21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, -5, 0, 0, -5, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, -11, 0, -8, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -19, 0, 0, 0, 0, 0, 0, 0, -5, 0, 29, -19, 0, -11, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 13, 13, 0, 24, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, + 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 19, 29, 0, 32, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 5, 0, 16, 0, 19, 13, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 11, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -8, -3, 5, 0, 19, 0, 19, 13, 16, 0, -8, 0, -5, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 13, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -5, -5, 0, 0, 0, 0, 0, 0, 0, -5, 0, -11, -16, -13, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, + 0, 5, 0, 0, -13, -11, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 5, -5, 0, 0, -7, 0, -19, -7, 0, 0, -9, 0, 0, -11, -5, -8, -11, -11, -3, -3, -8, -3, -5, -8, -11, 0, -5, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -24, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, -5, 0, 0, -5, -5, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, + 0, 5, 0, 0, 0, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, -11, -3, 0, -3, -5, 0, 0, -5, 0, 0, 0, -3, -3, -5, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 5, 0, 0, -19, -5, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -5, 0, 0, 0, 0, -11, -5, 0, -24, 0, -32, -27, 0, 0, -8, 0, -8, -13, -11, -3, -27, -16, -8, -5, -13, 0, 0, -5, -13, 13, -8, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, -5, -8, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, -19, -5, 0, 13, 0, -8, 0, 0, 0, 0, -9, -16, 0, 0, 0, 0, 0, -3, 0, 0, 0, -8, -5, -8, 0, 0, 0, 0, 0, 0, 0, -5, 0, -11, -13, -16, 0, -13, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, -4, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 8, 0, 0, 11, 0, 0, -3, -7, 0, 0, 0, 0, 8, 0, 0, 0, 8, -3, 8, -5, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, -3, -11, -5, -3, -5, -3, 0, 0, 0, 0, 0, 0, -3, 0, -4, 0, -3, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, -3, -3, -3, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -35, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, 0, 0, 0, 0, 0, 0, 0, -16, -5, -13, -16, -5, 0, -3, 0, 0, -7, 0, 0, -13, -3, 0, 0, -11, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -3, 0, -8, -11, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, -3, 0, -7, -8, -9, -8, -11, -8, 0, 0, -3, 0, 0, 0, -7, 0, -4, 0, -4, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, -11, -3, 0, -8, 0, 0, 0, -5, 0, 0, 0, -3, 0, -5, 0, 0, -3, -8, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, -3, 0, 0, -3, 0, 0, 0, -3, 0, 0, 0, 0, 0, -5, 0, 0, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 8, 0, 0, -11, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -8, -8, -3, 0, 0, 0, 0, 0, 0, 0, -11, -3, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, + 0, -3, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 27, 5, 0, 0, 8, 0, 0, 0, -4, 0, 0, 0, 0, 5, 0, 0, 0, 7, -4, 0, -8, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, -11, -3, 0, -5, 0, 0, 0, -5, 0, 0, 0, -3, 0, -5, 0, 0, -3, -8, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, -4, 0, 0, 0, -3, 0, 0, 0, 0, -4, -3, 0, -5, 0, 0, 0, -5, 0, 0, 0, 0, 0, -5, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 5, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -5, -8, -3, 0, 0, 0, 0, -3, 0, 0, -13, -8, 0, 0, -13, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, + 0, -21, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, -5, -3, 0, -3, 0, -3, -19, -5, 0, 0, 0, 0, 0, -5, 0, 0, -16, -12, -11, -5, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -8, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, + 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -13, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, -13, -8, -8, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -5, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -16, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, -8, 0, 0, 0, 5, -5, 0, 0, -11, 0, -19, -13, 0, 0, -9, 0, 0, -19, 0, 0, -16, 0, -5, -5, 0, -11, -11, -13, 0, 0, 0, 0, 0, -5, -5, 0, -13, 0, 0, 0, -11, -13, -19, -13, -21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -13, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, -3, 0, 0, -11, -3, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -13, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, 0, -11, 0, 0, -13, 0, -5, -5, 0, 0, 0, -13, 0, 5, 0, 0, 0, -5, 0, 0, -8, 0, 5, 0, 0, -5, -8, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -13, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, -13, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, 0, -13, 0, 0, -13, 0, 0, 0, 0, 0, 0, -11, 0, 5, 0, 0, 0, -5, 0, 0, -8, 0, 0, 0, 0, 0, -11, -11, -11, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -2, -2, 0, 0, 0, 0, 0, -5, 0, -3, 0, -5, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, -9, 0, 0, -9, 0, 0, -7, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, -5, -9, 0, -3, -4, 0, -6, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, -5, 0, 0, -5, 0, -13, -10, 0, -7, -3, -9, 0, -13, -10, 0, 0, -10, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, -3, 0, -2, 0, 0, -5, 0, 0, -3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, -5, 0, -5, -2, 0, 0, 0, 0, 0, -3, -6, -5, -5, -3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -17, 0, 0, -5, 0, -2, -2, 0, 0, -2, 0, -8, -2, -2, 0, 0, -6, 0, 0, -5, 0, -5, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -3, 0, 0, -4, -4, 0, -7, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -1, 0, 0, 0, 0, -5, 0, -8, -7, 0, 0, 0, -5, 0, -10, -4, 0, 0, 0, 5, -2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -3, -5, -6, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -8, 0, -1, 0, 0, -1, 0, -8, -3, 0, 0, -3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, -5, -2, 0, 0, -2, 0, -7, -1, 0, 0, 0, -2, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, -7, 0, -5, 0, 0, 0, 0, -5, 0, 0, 0, -7, 0, -9, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, -5, 0, -4, -5, 0, 0, -2, -3, 0, -8, -3, 0, 0, -5, 0, -6, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, -1, 0, 0, -6, 0, -2, 0, -3, 0, 0, -2, 0, 0, -2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, -13, 0, 0, -4, 0, -5, -1, 0, -9, -11, -11, 0, -7, 0, 0, 0, -5, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -7, -8, }; static const EpdLigaturePair notosans_8_regularLigaturePairs[] = { @@ -3220,7 +3659,7 @@ static const EpdFontData notosans_8_regular = { notosans_8_regularBitmaps, notosans_8_regularGlyphs, notosans_8_regularIntervals, - 21, + 37, 23, 18, -5, @@ -3231,10 +3670,10 @@ static const EpdFontData notosans_8_regular = { notosans_8_regularKernLeftClasses, notosans_8_regularKernRightClasses, notosans_8_regularKernMatrix, - 497, - 497, - 106, - 99, + 501, + 516, + 107, + 102, notosans_8_regularLigaturePairs, 5, }; diff --git a/lib/EpdFont/builtinFonts/source/.gitignore b/lib/EpdFont/builtinFonts/source/.gitignore index c212e7e90c..bf88ca9033 100644 --- a/lib/EpdFont/builtinFonts/source/.gitignore +++ b/lib/EpdFont/builtinFonts/source/.gitignore @@ -6,6 +6,8 @@ !NotoSerif/** !NotoSans/ !NotoSans/** +!NotoSansArabic/ +!NotoSansArabic/** !NotoSansHebrew/ !NotoSansHebrew/** !OpenDyslexic/ diff --git a/lib/EpdFont/builtinFonts/source/NotoSansArabic/NotoSansArabic-Bold.ttf b/lib/EpdFont/builtinFonts/source/NotoSansArabic/NotoSansArabic-Bold.ttf new file mode 100644 index 0000000000..5e44da88fc Binary files /dev/null and b/lib/EpdFont/builtinFonts/source/NotoSansArabic/NotoSansArabic-Bold.ttf differ diff --git a/lib/EpdFont/builtinFonts/source/NotoSansArabic/NotoSansArabic-Regular.ttf b/lib/EpdFont/builtinFonts/source/NotoSansArabic/NotoSansArabic-Regular.ttf new file mode 100644 index 0000000000..3279938e11 Binary files /dev/null and b/lib/EpdFont/builtinFonts/source/NotoSansArabic/NotoSansArabic-Regular.ttf differ diff --git a/lib/EpdFont/builtinFonts/source/NotoSansArabic/OFL.txt b/lib/EpdFont/builtinFonts/source/NotoSansArabic/OFL.txt new file mode 100644 index 0000000000..d4e170557f --- /dev/null +++ b/lib/EpdFont/builtinFonts/source/NotoSansArabic/OFL.txt @@ -0,0 +1,93 @@ +Copyright 2022 The Noto Project Authors (https://github.com/notofonts/arabic) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +https://openfontlicense.org + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/lib/EpdFont/builtinFonts/ubuntu_10_bold.h b/lib/EpdFont/builtinFonts/ubuntu_10_bold.h index 27672f9a89..0d3b302995 100644 --- a/lib/EpdFont/builtinFonts/ubuntu_10_bold.h +++ b/lib/EpdFont/builtinFonts/ubuntu_10_bold.h @@ -3,12 +3,12 @@ * name: ubuntu_10_bold * size: 10 * mode: 1-bit - * Command used: fontconvert.py ubuntu_10_bold 10 ../builtinFonts/source/Ubuntu/Ubuntu-Bold.ttf ../builtinFonts/source/NotoSansHebrew/NotoSansHebrew-Bold.ttf ../builtinFonts/source/Ubuntu/Ubuntu-Vietnamese-Bold.ttf --additional-intervals 0x05D0,0x05EA + * Command used: fontconvert.py ubuntu_10_bold 10 ../builtinFonts/source/Ubuntu/Ubuntu-Bold.ttf ../builtinFonts/source/NotoSansHebrew/NotoSansHebrew-Bold.ttf ../builtinFonts/source/NotoSansArabic/NotoSansArabic-Bold.ttf ../builtinFonts/source/Ubuntu/Ubuntu-Vietnamese-Bold.ttf --additional-intervals 0x05D0,0x05EA --additional-intervals 0x060C,0x060C --additional-intervals 0x061B,0x061B --additional-intervals 0x061F,0x061F --additional-intervals 0x0621,0x0621 --additional-intervals 0x0640,0x0640 --additional-intervals 0x0660,0x0669 --additional-intervals 0x06BA,0x06BA --additional-intervals 0x06D4,0x06D4 --additional-intervals 0x06F0,0x06F9 --additional-intervals 0xFB56,0xFB59 --additional-intervals 0xFB66,0xFB69 --additional-intervals 0xFB7A,0xFB7D --additional-intervals 0xFB88,0xFB95 --additional-intervals 0xFB9E,0xFB9F --additional-intervals 0xFBA6,0xFBB1 --additional-intervals 0xFBFC,0xFBFF --additional-intervals 0xFE80,0xFEFC */ #pragma once #include "EpdFontData.h" -static const uint8_t ubuntu_10_boldBitmaps[20781] = { +static const uint8_t ubuntu_10_boldBitmaps[26693] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0F, 0xFF, 0xF0, 0xFF, 0xFF, 0xEF, 0xEF, 0xE7, 0xE7, 0x1E, 0xF0, 0xF7, 0x87, 0x3C, 0x39, 0xCF, 0xFF, 0xFF, 0xFC, 0xF7, 0x87, 0x3C, 0x39, 0xC7, 0xFF, 0xFF, 0xFE, 0xF7, 0x87, 0xBC, 0x39, 0xE1, 0xCE, 0x00, 0x0F, 0x01, 0xE0, 0x7F, 0x9F, 0xF7, 0xFC, 0xF3, 0x9E, @@ -666,648 +666,1018 @@ static const uint8_t ubuntu_10_boldBitmaps[20781] = { 0x3F, 0xCF, 0xF3, 0xFC, 0xFF, 0x3F, 0xCF, 0x78, 0x7C, 0x3C, 0x0E, 0x1E, 0x7D, 0xE3, 0x80, 0x1E, 0x1F, 0x9F, 0xCE, 0x70, 0x00, 0x3F, 0xFF, 0xFF, 0xE0, 0xFF, 0xFF, 0xFF, 0xC3, 0xFF, 0x7E, 0x7E, 0xFF, 0xF0, 0x66, 0xE7, 0xE7, 0x7B, 0xFD, 0xF7, 0x78, 0x00, 0x3F, 0xCF, 0x73, 0xDC, 0x00, 0x63, - 0x9D, 0xE3, 0xF0, 0x78, 0x7E, 0x7F, 0xF7, 0xFF, 0xE0, 0x71, 0xE1, 0xFE, 0xF8, 0x39, 0xC6, 0x1E, - 0x79, 0xE0, 0x0C, 0x03, 0x80, 0x78, 0x07, 0x80, 0x70, 0x00, 0x3F, 0xFF, 0xFF, 0xFF, 0xFE, 0x03, - 0xC0, 0x78, 0x0F, 0xFD, 0xFF, 0xBF, 0xF7, 0x80, 0xF0, 0x1E, 0x03, 0xFF, 0xFF, 0xFF, 0xFE, 0x3B, - 0xCF, 0x78, 0xEF, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x1E, 0x03, 0xC0, 0x7F, 0xEF, - 0xFD, 0xFF, 0xBC, 0x07, 0x80, 0xF0, 0x1F, 0xFF, 0xFF, 0xFF, 0xF0, 0xFF, 0xF8, 0x7F, 0xFC, 0x3F, - 0xFE, 0x01, 0xE0, 0x00, 0xF0, 0x00, 0x7F, 0xE0, 0x3F, 0xF8, 0x1F, 0xFE, 0x0F, 0x1F, 0x07, 0x83, - 0x83, 0xC1, 0xE1, 0xE1, 0xE0, 0xF7, 0xF0, 0x7B, 0xF0, 0x3D, 0xF0, 0x02, 0x00, 0xE0, 0x3C, 0x0F, - 0x00, 0xC0, 0x00, 0x3F, 0xFF, 0xFF, 0xFF, 0xFE, 0x03, 0xC0, 0x78, 0x0F, 0x01, 0xE0, 0x3C, 0x07, - 0x80, 0xF0, 0x1E, 0x03, 0xC0, 0x78, 0x0F, 0x00, 0x0F, 0xF1, 0xFF, 0xDF, 0xFC, 0xF8, 0xEF, 0x80, - 0x78, 0x03, 0xFF, 0x1F, 0xF8, 0xFF, 0xC7, 0x80, 0x3E, 0x00, 0xF8, 0xE7, 0xFF, 0x1F, 0xFC, 0x7F, - 0xC0, 0x1F, 0xC3, 0xFE, 0x7F, 0xE7, 0xCC, 0x78, 0x07, 0xC0, 0x7F, 0x83, 0xFC, 0x0F, 0xE0, 0x1F, - 0x00, 0xF7, 0x1F, 0x7F, 0xE7, 0xFE, 0x7F, 0xC0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, - 0xF7, 0x7B, 0xFD, 0xC0, 0x03, 0xC1, 0xE0, 0xF0, 0x78, 0x3C, 0x1E, 0x0F, 0x07, 0x83, 0xC1, 0xE0, - 0xF0, 0x78, 0x3C, 0x1E, 0x0F, 0x00, 0x03, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xC0, 0xF0, 0x3C, 0x0F, - 0x03, 0xC0, 0xF0, 0x3D, 0x9F, 0xFF, 0xFF, 0xE7, 0xF0, 0x07, 0xFE, 0x00, 0x0F, 0xFC, 0x00, 0x1F, - 0xF8, 0x00, 0x78, 0xF0, 0x00, 0xF1, 0xE0, 0x01, 0xE3, 0xFF, 0x03, 0xC7, 0xFF, 0x07, 0x8F, 0xFF, - 0x0F, 0x1E, 0x7E, 0x1E, 0x3C, 0x3C, 0x78, 0x78, 0x7B, 0xF0, 0xF1, 0xFF, 0xC1, 0xFF, 0xFF, 0x83, - 0xFF, 0xBC, 0x07, 0xFC, 0x00, 0xF0, 0x78, 0x07, 0x83, 0xC0, 0x3C, 0x1E, 0x01, 0xE0, 0xF0, 0x0F, - 0x07, 0x80, 0x7F, 0xFF, 0xE3, 0xFF, 0xFF, 0xDF, 0xFF, 0xFE, 0xF0, 0x79, 0xFF, 0x83, 0xC3, 0xFC, - 0x1E, 0x1F, 0xE0, 0xF3, 0xFF, 0x07, 0xFF, 0x78, 0x3F, 0xFB, 0xC1, 0xFF, 0x00, 0xFF, 0xF8, 0xFF, - 0xF8, 0xFF, 0xF8, 0x0F, 0x00, 0x0F, 0x00, 0x0F, 0x00, 0x0F, 0xFC, 0x0F, 0xFE, 0x0F, 0xFE, 0x0F, - 0x3F, 0x0F, 0x0F, 0x0F, 0x0F, 0x0F, 0x0F, 0x0F, 0x0F, 0x0F, 0x0F, 0x01, 0x80, 0x07, 0x00, 0x3C, - 0x01, 0xE0, 0x07, 0x00, 0x00, 0x0F, 0x0F, 0xBC, 0x7C, 0xF3, 0xE3, 0xDF, 0x0F, 0xF8, 0x3F, 0xC0, - 0xFE, 0x03, 0xFC, 0x0F, 0xF8, 0x3D, 0xF0, 0xF3, 0xC3, 0xCF, 0x8F, 0x1F, 0x3C, 0x3C, 0xF0, 0xF8, - 0x06, 0x00, 0x3C, 0x00, 0xF8, 0x00, 0xE0, 0x01, 0x80, 0x00, 0x0F, 0x03, 0xFC, 0x1F, 0xF0, 0xFF, - 0xC7, 0xFF, 0x1F, 0xFC, 0xFF, 0xF7, 0xBF, 0xDE, 0xFF, 0xF3, 0xFF, 0x8F, 0xFE, 0x3F, 0xF0, 0xFF, - 0x83, 0xFE, 0x0F, 0xF0, 0x3C, 0x0C, 0xC0, 0x7B, 0x80, 0xFE, 0x01, 0xF0, 0x00, 0x03, 0xE1, 0xF7, - 0x87, 0x9F, 0x1E, 0x3C, 0x78, 0xF3, 0xC1, 0xEF, 0x07, 0xB8, 0x0F, 0xE0, 0x3F, 0x80, 0x7C, 0x01, - 0xF0, 0x4F, 0x81, 0xFE, 0x07, 0xF0, 0x1F, 0x80, 0xF0, 0x7F, 0x83, 0xFC, 0x1F, 0xE0, 0xFF, 0x07, - 0xF8, 0x3F, 0xC1, 0xFE, 0x0F, 0xF0, 0x7F, 0x83, 0xFC, 0x1F, 0xE0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xE0, 0xF0, 0x07, 0x80, 0x3C, 0x01, 0xE0, 0x07, 0xC0, 0x0F, 0x80, 0x1F, 0x80, 0x7F, 0x00, 0xFE, - 0x03, 0xDE, 0x07, 0xBC, 0x0E, 0x3C, 0x3C, 0x78, 0x7F, 0xF1, 0xFF, 0xF3, 0xFF, 0xE7, 0x83, 0xDE, - 0x03, 0xFC, 0x07, 0x80, 0xFF, 0xEF, 0xFE, 0xFF, 0xEF, 0x00, 0xF0, 0x0F, 0xF8, 0xFF, 0xEF, 0xFF, - 0xF3, 0xFF, 0x0F, 0xF0, 0xFF, 0x3F, 0xFF, 0xEF, 0xFE, 0xFF, 0x80, 0xFF, 0xC7, 0xFF, 0x3F, 0xFD, - 0xE3, 0xEF, 0x1F, 0x7F, 0xF3, 0xFF, 0x9F, 0xFE, 0xF1, 0xF7, 0x87, 0xBC, 0x3D, 0xE3, 0xEF, 0xFF, - 0x7F, 0xF3, 0xFF, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x0F, 0x01, 0xE0, 0x3C, 0x07, 0x80, 0xF0, - 0x1E, 0x03, 0xC0, 0x78, 0x0F, 0x01, 0xE0, 0x3C, 0x00, 0x0F, 0xFE, 0x07, 0xFF, 0x03, 0xFF, 0x81, - 0xE3, 0xC0, 0xF1, 0xE0, 0x78, 0xF0, 0x3C, 0x78, 0x1E, 0x3C, 0x0F, 0x1E, 0x0F, 0x0F, 0x07, 0x87, - 0x87, 0xC3, 0xCF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x0F, 0xF0, 0x07, 0xF8, 0x03, 0xFC, - 0x01, 0xE0, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x0F, 0x01, 0xE0, 0x3F, 0xF7, 0xFE, 0xFF, 0xDE, 0x03, - 0xC0, 0x78, 0x0F, 0xFF, 0xFF, 0xFF, 0xF8, 0xF8, 0xF0, 0xF3, 0xE7, 0x8F, 0x8F, 0x3C, 0xF8, 0x7D, - 0xEF, 0x81, 0xFF, 0x7C, 0x07, 0xFF, 0xC0, 0x1F, 0xFC, 0x00, 0xFF, 0xC0, 0x0F, 0xFF, 0x00, 0x7F, - 0xFC, 0x07, 0xFD, 0xF0, 0x7D, 0xE7, 0xC7, 0xCF, 0x1E, 0x3C, 0x78, 0xFB, 0xE3, 0xC3, 0xE0, 0x3F, - 0x87, 0xFE, 0x7F, 0xE3, 0x1F, 0x01, 0xF0, 0x3E, 0x1F, 0xE1, 0xFE, 0x1F, 0xF0, 0x1F, 0x00, 0xF7, - 0x1F, 0x7F, 0xFF, 0xFE, 0x7F, 0xC0, 0xF0, 0x3F, 0xC1, 0xFF, 0x0F, 0xFC, 0x7F, 0xF1, 0xFF, 0xCF, - 0xFF, 0x7B, 0xFD, 0xEF, 0xFF, 0x3F, 0xF8, 0xFF, 0xE3, 0xFF, 0x0F, 0xF8, 0x3F, 0xE0, 0xFF, 0x03, - 0xC0, 0x0C, 0xC0, 0x7B, 0x80, 0xFE, 0x01, 0xF0, 0x00, 0x03, 0xC0, 0xFF, 0x07, 0xFC, 0x3F, 0xF1, - 0xFF, 0xC7, 0xFF, 0x3F, 0xFD, 0xEF, 0xF7, 0xBF, 0xFC, 0xFF, 0xE3, 0xFF, 0x8F, 0xFC, 0x3F, 0xE0, - 0xFF, 0x83, 0xFC, 0x0F, 0xF0, 0xFB, 0xC7, 0xCF, 0x3E, 0x3D, 0xF0, 0xFF, 0x83, 0xFC, 0x0F, 0xE0, - 0x3F, 0xC0, 0xFF, 0x83, 0xDF, 0x0F, 0x3C, 0x3C, 0xF8, 0xF1, 0xF3, 0xC3, 0xCF, 0x0F, 0x80, 0x07, - 0xFE, 0x0F, 0xFC, 0x1F, 0xF8, 0x78, 0xF0, 0xF1, 0xE1, 0xE3, 0xC3, 0xC7, 0x87, 0x8F, 0x0F, 0x1E, - 0x1E, 0x3C, 0x78, 0x7B, 0xF0, 0xFF, 0xC1, 0xFF, 0x83, 0xFC, 0x07, 0x80, 0x78, 0x0F, 0x3E, 0x0F, - 0x9F, 0x07, 0xCF, 0xC7, 0xE7, 0xE3, 0xF7, 0xF1, 0xFB, 0xFD, 0xFD, 0xEE, 0xEF, 0xF7, 0xF7, 0xFB, - 0xF3, 0xFC, 0xF9, 0xFE, 0x7C, 0xFF, 0x1C, 0x7F, 0x80, 0x3F, 0xC0, 0x1E, 0xF0, 0x7F, 0x83, 0xFC, - 0x1F, 0xE0, 0xFF, 0x07, 0xF8, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x83, 0xFC, 0x1F, 0xE0, 0xFF, - 0x07, 0xF8, 0x3F, 0xC1, 0xE0, 0x0F, 0xE0, 0x7F, 0xE1, 0xFF, 0xE3, 0xE7, 0xEF, 0x83, 0xDE, 0x07, - 0xFC, 0x07, 0xF8, 0x0F, 0xF0, 0x1F, 0xE0, 0x7F, 0xE0, 0xF3, 0xE7, 0xE7, 0xFF, 0x87, 0xFF, 0x03, - 0xF8, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0xFF, 0x07, 0xF8, 0x3F, 0xC1, 0xFE, 0x0F, 0xF0, - 0x7F, 0x83, 0xFC, 0x1F, 0xE0, 0xFF, 0x07, 0xF8, 0x3F, 0xC1, 0xE0, 0xFF, 0xCF, 0xFE, 0xFF, 0xFF, - 0x1F, 0xF0, 0xFF, 0x0F, 0xF3, 0xFF, 0xFF, 0xFF, 0xEF, 0xFC, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, - 0xF0, 0x00, 0x0F, 0xF1, 0xFF, 0x9F, 0xFC, 0xFD, 0xEF, 0x80, 0x78, 0x03, 0xC0, 0x1E, 0x00, 0xF0, - 0x07, 0x80, 0x3E, 0x01, 0xF8, 0xE7, 0xFF, 0x1F, 0xF8, 0x7F, 0xC0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, - 0x1E, 0x00, 0xF0, 0x07, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x78, 0x03, 0xC0, 0x1E, 0x00, 0xF0, - 0x07, 0x80, 0x3C, 0x00, 0xF8, 0x7D, 0xE1, 0xE7, 0xC7, 0x8F, 0x1E, 0x3C, 0xF0, 0x7B, 0xC1, 0xEE, - 0x03, 0xF8, 0x0F, 0xE0, 0x1F, 0x00, 0x7C, 0x13, 0xE0, 0x7F, 0x81, 0xFC, 0x07, 0xE0, 0x00, 0x01, - 0xE0, 0x00, 0x78, 0x00, 0xFF, 0xC0, 0x7F, 0xFC, 0x3F, 0xFF, 0x1F, 0xFF, 0xE7, 0x9E, 0x79, 0xE7, - 0x8F, 0x79, 0xE3, 0xDE, 0x79, 0xE7, 0xFF, 0xF8, 0xFF, 0xFE, 0x1F, 0xFF, 0x03, 0xFF, 0x00, 0x1E, - 0x00, 0x07, 0x80, 0xF8, 0x7D, 0xF1, 0xE3, 0xCF, 0x8F, 0xFC, 0x1F, 0xE0, 0x3F, 0x80, 0xFC, 0x01, - 0xF0, 0x0F, 0xC0, 0x7F, 0x81, 0xFF, 0x0F, 0xFC, 0x7C, 0xF9, 0xE1, 0xFF, 0x87, 0xC0, 0xF0, 0x78, - 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, - 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x0F, - 0x00, 0x0F, 0x00, 0x0F, 0xF0, 0x7F, 0x83, 0xFC, 0x1F, 0xE0, 0xFF, 0x87, 0xBC, 0x3D, 0xF1, 0xEF, - 0xFF, 0x3F, 0xF8, 0xFF, 0xC0, 0x1E, 0x00, 0xF0, 0x07, 0x80, 0x3C, 0x01, 0xE0, 0xF0, 0xF1, 0xFE, - 0x1E, 0x3F, 0xC3, 0xC7, 0xF8, 0x78, 0xFF, 0x0F, 0x1F, 0xE1, 0xE3, 0xFC, 0x3C, 0x7F, 0x87, 0x8F, - 0xF0, 0xF1, 0xFE, 0x1E, 0x3F, 0xC3, 0xC7, 0xF8, 0x78, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xF8, 0xF0, 0xF1, 0xE3, 0xC3, 0xC7, 0x8F, 0x0F, 0x1E, 0x3C, 0x3C, 0x78, 0xF0, 0xF1, 0xE3, 0xC3, - 0xC7, 0x8F, 0x0F, 0x1E, 0x3C, 0x3C, 0x78, 0xF0, 0xF1, 0xE3, 0xC3, 0xC7, 0x8F, 0x0F, 0x1E, 0x3C, - 0x3C, 0x78, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x0F, 0x00, 0x00, 0x3C, - 0x00, 0x00, 0xF0, 0x00, 0x03, 0xC0, 0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0x0F, 0x00, 0x0F, 0x00, - 0x0F, 0xF8, 0x0F, 0xFC, 0x0F, 0xFE, 0x0F, 0x3E, 0x0F, 0x1F, 0x0F, 0x1F, 0x0F, 0x3E, 0x0F, 0xFE, - 0x0F, 0xFC, 0x0F, 0xF8, 0xF0, 0x07, 0xF8, 0x03, 0xFC, 0x01, 0xFE, 0x00, 0xFF, 0x00, 0x7F, 0xFC, - 0x3F, 0xFF, 0x9F, 0xFF, 0xCF, 0xF3, 0xF7, 0xF8, 0x7B, 0xFC, 0x3D, 0xFE, 0x7E, 0xFF, 0xFE, 0x7F, - 0xFF, 0x3F, 0xFE, 0x1E, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0xFC, 0xFF, 0xEF, 0xFF, - 0xF3, 0xFF, 0x0F, 0xF0, 0xFF, 0x3F, 0xFF, 0xFF, 0xFE, 0xFF, 0x80, 0x3F, 0xC1, 0xFF, 0x87, 0xFF, - 0x1C, 0x7E, 0x00, 0x78, 0x01, 0xE1, 0xFF, 0xC7, 0xFF, 0x1F, 0xFC, 0x01, 0xE0, 0x07, 0x9C, 0x7E, - 0x7F, 0xF1, 0xFF, 0x83, 0xFC, 0x00, 0xF0, 0x3F, 0x87, 0x83, 0xFF, 0x3C, 0x3F, 0xF9, 0xE3, 0xF3, - 0xEF, 0x1E, 0x0F, 0xF9, 0xF0, 0x3F, 0xFF, 0x01, 0xFF, 0xF8, 0x0F, 0xFF, 0xC0, 0x7F, 0x9F, 0x03, - 0xFC, 0x78, 0x3F, 0xE3, 0xF3, 0xEF, 0x0F, 0xFF, 0x78, 0x7F, 0xF3, 0xC0, 0xFE, 0x00, 0x0F, 0xF8, - 0xFF, 0xCF, 0xFE, 0x7C, 0xF7, 0x87, 0xBC, 0x3D, 0xF9, 0xE7, 0xFF, 0x3F, 0xF8, 0xFF, 0xC7, 0x9E, - 0x7C, 0xF3, 0xC7, 0xBE, 0x3D, 0xE1, 0xE0, 0x3F, 0x87, 0xF8, 0xFF, 0x19, 0xF3, 0xFE, 0xFF, 0xDE, - 0x7F, 0xCF, 0x7F, 0xEF, 0xFC, 0xFF, 0x00, 0x03, 0xE0, 0xFE, 0x1F, 0xE3, 0xFC, 0x7C, 0x07, 0xFC, - 0x7F, 0xE7, 0xFE, 0x79, 0xF7, 0x8F, 0x78, 0xF7, 0x8F, 0x7D, 0xF7, 0xFE, 0x3F, 0xE1, 0xF8, 0xFF, - 0x9F, 0xFB, 0xFF, 0x79, 0xEF, 0xFD, 0xFF, 0xBC, 0x7F, 0x8F, 0xFF, 0xFF, 0xFB, 0xFE, 0x00, 0xFF, - 0xFF, 0xFF, 0xFE, 0x0F, 0x07, 0x83, 0xC1, 0xE0, 0xF0, 0x78, 0x3C, 0x00, 0x1F, 0xF0, 0x7F, 0xC1, - 0xFF, 0x07, 0xBC, 0x1E, 0xF0, 0x73, 0xC3, 0xCF, 0x0F, 0x3C, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, - 0x07, 0xE0, 0x1F, 0x80, 0x70, 0x1F, 0x83, 0xFE, 0x7F, 0xE7, 0x9F, 0x7F, 0xF7, 0xFF, 0x78, 0x07, - 0xC6, 0x7F, 0xE3, 0xFE, 0x1F, 0xE0, 0xF9, 0xE7, 0x9F, 0x7B, 0xE3, 0xDF, 0xF0, 0x7F, 0xF8, 0x1F, - 0xFC, 0x03, 0xFF, 0x01, 0xFF, 0xE0, 0xFF, 0xF8, 0x3D, 0xEF, 0x1E, 0x79, 0xEF, 0x9E, 0x7C, 0x7F, - 0x1F, 0xE7, 0xFD, 0x9F, 0x3F, 0x8F, 0xE0, 0x3D, 0x8F, 0x7F, 0xFF, 0xE7, 0xF0, 0xF1, 0xFE, 0x7F, - 0xDF, 0xFB, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, 0xF9, 0xFF, 0x3F, 0xC7, 0x80, 0x31, 0x87, 0x70, - 0xFE, 0x0F, 0x80, 0x00, 0x00, 0x3C, 0x7F, 0x9F, 0xF7, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, - 0xFE, 0x7F, 0xCF, 0xF1, 0xE0, 0xF3, 0xEF, 0x7C, 0xFF, 0x8F, 0xF0, 0xFE, 0x0F, 0xE0, 0xFF, 0x0F, - 0xF8, 0xF7, 0xCF, 0x3C, 0xF1, 0xE0, 0x1F, 0xF1, 0xFF, 0x1F, 0xF1, 0xEF, 0x1E, 0xF1, 0xEF, 0x3C, - 0xF7, 0xCF, 0xFC, 0xFF, 0x8F, 0xF0, 0xF0, 0x70, 0x39, 0xE1, 0xEF, 0x8F, 0xFF, 0x3F, 0xFD, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, 0xF7, 0xBF, 0xDE, 0xFF, 0x03, 0xC0, 0xF3, 0xFC, 0xFF, 0x3F, 0xCF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xCF, 0xF3, 0xFC, 0xFF, 0x3C, 0x1F, 0xC3, 0xFE, 0x7F, 0xE7, 0xDF, 0x78, - 0xF7, 0x8F, 0x78, 0xF7, 0xDF, 0x7F, 0xE3, 0xFE, 0x1F, 0xC0, 0xFF, 0xFF, 0xFF, 0xFF, 0xCF, 0xF3, - 0xFC, 0xFF, 0x3F, 0xCF, 0xF3, 0xFC, 0xFF, 0x3C, 0xFF, 0x1F, 0xFB, 0xFF, 0x79, 0xFF, 0x1F, 0xE3, - 0xFC, 0x7F, 0x9F, 0xFF, 0xDF, 0xFB, 0xFE, 0x78, 0x0F, 0x01, 0xE0, 0x3C, 0x00, 0x1F, 0xCF, 0xF7, - 0xFD, 0xF2, 0x78, 0x1E, 0x07, 0x81, 0xF3, 0x7F, 0xCF, 0xF1, 0xFC, 0xFF, 0xFF, 0xFF, 0xFF, 0x87, - 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x38, 0x00, 0xF0, 0xFF, 0x1E, 0x79, 0xE7, - 0x9E, 0x7B, 0xC3, 0xFC, 0x3F, 0x81, 0xF8, 0x1F, 0x81, 0xF0, 0x0F, 0x01, 0xE0, 0xFE, 0x0F, 0xC0, - 0xF8, 0x00, 0x01, 0xC0, 0x03, 0xC0, 0x03, 0xC0, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0xF8, 0x3F, 0xFC, - 0x7F, 0xFE, 0x7F, 0xDF, 0x7B, 0xCF, 0x7B, 0xCF, 0x7B, 0xCF, 0x7F, 0xDF, 0x7F, 0xFE, 0x3F, 0xFC, - 0x0F, 0xF8, 0x03, 0xC0, 0x03, 0xC0, 0x03, 0xC0, 0x03, 0xC0, 0xF1, 0xE7, 0x9E, 0x3F, 0xC3, 0xF8, - 0x1F, 0x80, 0xF0, 0x1F, 0x83, 0xFC, 0x7B, 0xC7, 0x9E, 0xF1, 0xF0, 0xF3, 0xCF, 0x3C, 0xF3, 0xCF, - 0x3C, 0xF3, 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x07, 0x00, 0x70, 0x07, - 0x71, 0xEE, 0x3D, 0xC7, 0xB8, 0xF7, 0x9E, 0xFF, 0xDF, 0xF9, 0xFF, 0x01, 0xE0, 0x3C, 0x07, 0x80, - 0xF3, 0xCF, 0xF3, 0xCF, 0xF3, 0xCF, 0xF3, 0xCF, 0xF3, 0xCF, 0xF3, 0xCF, 0xF3, 0xCF, 0xF3, 0xCF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF3, 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xF3, - 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, - 0x0F, 0x00, 0x03, 0xC0, 0x00, 0xF0, 0xFE, 0x07, 0xF0, 0x3F, 0x80, 0x3C, 0x01, 0xFE, 0x0F, 0xF8, - 0x7F, 0xE3, 0xCF, 0x1F, 0xF8, 0xFF, 0xC7, 0xF8, 0xF0, 0x1F, 0xE0, 0x3F, 0xC0, 0x7F, 0x80, 0xFF, - 0xF9, 0xFF, 0xFB, 0xFF, 0xF7, 0xF9, 0xEF, 0xFF, 0xDF, 0xFF, 0xBF, 0xFE, 0x78, 0xF0, 0x1E, 0x03, - 0xC0, 0x78, 0x0F, 0xF9, 0xFF, 0xBF, 0xF7, 0x9E, 0xFF, 0xDF, 0xFB, 0xFE, 0x00, 0x7F, 0x0F, 0xF1, - 0xFF, 0x31, 0xE3, 0xFC, 0x7F, 0xC0, 0xF3, 0x3E, 0x7F, 0xDF, 0xF3, 0xFC, 0x00, 0xF0, 0xFC, 0x78, - 0xFF, 0x3C, 0xFF, 0xDE, 0x7D, 0xEF, 0xFC, 0x7F, 0xFC, 0x3F, 0xFF, 0x1F, 0xE7, 0x9E, 0xF3, 0xFF, - 0x78, 0xFF, 0x3C, 0x3F, 0x00, 0x1F, 0xE7, 0xFD, 0xFF, 0xBC, 0xF7, 0x9E, 0xFF, 0xDF, 0xF9, 0xFF, - 0x3D, 0xEF, 0x3D, 0xE7, 0x80, 0x0C, 0x00, 0xE0, 0x0F, 0x00, 0x78, 0x03, 0x00, 0x00, 0x1F, 0x83, - 0xFE, 0x7F, 0xE7, 0x9F, 0x7F, 0xF7, 0xFF, 0x78, 0x07, 0xC6, 0x7F, 0xE3, 0xFE, 0x1F, 0xE0, 0x3D, - 0xC3, 0xDE, 0x3D, 0xC0, 0x00, 0x00, 0x01, 0xF8, 0x3F, 0xE7, 0xFE, 0x79, 0xF7, 0xFF, 0x7F, 0xF7, - 0x80, 0x7C, 0x67, 0xFE, 0x3F, 0xE1, 0xFE, 0x78, 0x07, 0x80, 0xFF, 0x0F, 0xF0, 0x78, 0x07, 0xFC, - 0x7F, 0xE7, 0xFE, 0x79, 0xE7, 0x8F, 0x78, 0xF7, 0x8F, 0x78, 0xF7, 0x8F, 0x78, 0xF7, 0x8F, 0x01, - 0xF0, 0x7E, 0x07, 0xE0, 0x7C, 0x0C, 0x07, 0x07, 0x87, 0x83, 0x80, 0x03, 0xFF, 0xFF, 0xFF, 0xF8, - 0x3C, 0x1E, 0x0F, 0x07, 0x83, 0xC1, 0xE0, 0xF0, 0x00, 0x1F, 0xC7, 0xF9, 0xFF, 0x3C, 0x6F, 0xF1, - 0xFE, 0x3C, 0x03, 0xE6, 0x7F, 0xC7, 0xFC, 0x7F, 0x00, 0x3F, 0x9F, 0xE7, 0xF9, 0xE6, 0x7F, 0x9F, - 0xE3, 0xFD, 0x8F, 0x7F, 0xDF, 0xE7, 0xF0, 0xFF, 0xFF, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x73, - 0xBF, 0xDC, 0xE0, 0x00, 0x00, 0xF0, 0x78, 0x3C, 0x1E, 0x0F, 0x07, 0x83, 0xC1, 0xE0, 0xF0, 0x78, - 0x3C, 0x1E, 0x3C, 0x78, 0xF0, 0x03, 0xC7, 0x8F, 0x1E, 0x3C, 0x78, 0xF1, 0xE3, 0xC7, 0x8F, 0x1F, - 0xFF, 0xF7, 0xC0, 0x1F, 0xF0, 0x03, 0xFE, 0x00, 0x7F, 0xC0, 0x0F, 0x78, 0x01, 0xEF, 0xF8, 0x3D, - 0xFF, 0x8F, 0x3F, 0xF3, 0xE7, 0x9F, 0xFC, 0xFF, 0xDF, 0x1F, 0xFB, 0xC3, 0xFE, 0x00, 0xF3, 0xC0, - 0x79, 0xE0, 0x3C, 0xF0, 0x1E, 0x78, 0x0F, 0xFF, 0xE7, 0xFF, 0xFB, 0xFF, 0xFF, 0xE7, 0x9F, 0xF3, - 0xFF, 0xF9, 0xFF, 0xBC, 0x7F, 0x80, 0x78, 0x07, 0x80, 0xFF, 0x0F, 0xF0, 0x78, 0x07, 0xFC, 0x7F, - 0xE7, 0xFE, 0x79, 0xE7, 0x8F, 0x78, 0xF7, 0x8F, 0x78, 0xF7, 0x8F, 0x78, 0xF7, 0x8F, 0x02, 0x00, - 0x70, 0x0F, 0x01, 0xE0, 0x0C, 0x00, 0x00, 0xF3, 0xEF, 0x7C, 0xFF, 0x8F, 0xF0, 0xFE, 0x0F, 0xE0, - 0xFF, 0x0F, 0xF8, 0xF7, 0xCF, 0x3C, 0xF1, 0xE0, 0x18, 0x07, 0x80, 0xF0, 0x0F, 0x00, 0xE0, 0x00, - 0x3C, 0x7F, 0x9F, 0xF7, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xFE, 0x7F, 0xCF, 0xF1, 0xE0, - 0x19, 0x83, 0xBC, 0x3F, 0x81, 0xF0, 0x00, 0x00, 0x00, 0xF0, 0xFF, 0x1E, 0x79, 0xE7, 0x9E, 0x7B, - 0xC3, 0xFC, 0x3F, 0x81, 0xF8, 0x1F, 0x81, 0xF0, 0x0F, 0x01, 0xE0, 0xFE, 0x0F, 0xC0, 0xF8, 0x00, - 0xF3, 0xFC, 0xFF, 0x3F, 0xCF, 0xF3, 0xFC, 0xFF, 0x3F, 0xCF, 0xFF, 0xFF, 0xFF, 0xFC, 0x78, 0x1E, - 0x07, 0x80, 0x1E, 0x00, 0x3C, 0x03, 0xFF, 0x87, 0xFF, 0x0F, 0xFE, 0x03, 0xC0, 0x07, 0xFC, 0x0F, - 0xFE, 0x1F, 0xFE, 0x3C, 0xFC, 0x78, 0x78, 0xF0, 0xF1, 0xE7, 0xE3, 0xFF, 0x87, 0xFF, 0x0F, 0xF8, - 0x1C, 0x01, 0xE0, 0x0F, 0x00, 0x78, 0x03, 0xC0, 0x7F, 0xE3, 0xFF, 0x1F, 0xF8, 0x3C, 0x01, 0xE0, - 0x0F, 0xF8, 0x7F, 0xE3, 0xCF, 0x9F, 0xFC, 0xFF, 0xC3, 0xFC, 0x0F, 0xE0, 0x7F, 0xE1, 0xFF, 0xE3, - 0xE7, 0xEF, 0x03, 0xDF, 0xF7, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xFF, 0xE0, 0x7F, 0xE0, 0xF3, 0xF7, - 0xE7, 0xFF, 0x87, 0xFF, 0x03, 0xF8, 0x00, 0x1F, 0xC3, 0xFE, 0x7F, 0xE7, 0xDF, 0x7E, 0xF7, 0xFF, - 0x7F, 0xF7, 0xDF, 0x7F, 0xE3, 0xFE, 0x1F, 0xC0, 0xF0, 0x0F, 0xBE, 0x07, 0xE7, 0x83, 0xF9, 0xE0, - 0xF4, 0x7C, 0x3C, 0x0F, 0x1E, 0x03, 0xC7, 0x80, 0x7B, 0xC0, 0x1E, 0xF0, 0x07, 0xFC, 0x00, 0xFE, - 0x00, 0x3F, 0x80, 0x0F, 0xC0, 0x01, 0xF0, 0x00, 0x7C, 0x00, 0xF0, 0xFF, 0x8F, 0xDE, 0x7E, 0xF3, - 0x87, 0xBC, 0x1D, 0xE0, 0xFE, 0x03, 0xF0, 0x1F, 0x00, 0xF8, 0x03, 0xC0, 0x1E, 0xE0, 0x0F, 0xE0, - 0x0F, 0xC0, 0x00, 0x00, 0xF0, 0x3C, 0xF0, 0x7C, 0xF0, 0xFC, 0xF1, 0xFC, 0xF1, 0xFC, 0xF3, 0xFC, - 0xF7, 0xBC, 0xF7, 0xBC, 0xFF, 0x3C, 0xFE, 0x3C, 0xFE, 0x3C, 0xFC, 0x3C, 0xF8, 0x3F, 0xF8, 0x3F, - 0xF0, 0x3F, 0x00, 0x1E, 0x00, 0x1E, 0x00, 0x3C, 0x00, 0x1C, 0x7B, 0x83, 0xFC, 0x0F, 0xC0, 0x00, - 0x00, 0x00, 0x78, 0xE3, 0xCF, 0x1E, 0xF8, 0xFF, 0xC7, 0xFE, 0x3F, 0xF1, 0xFB, 0x8F, 0x9C, 0x7C, - 0xFB, 0xC7, 0xDE, 0x3E, 0x00, 0xF0, 0x0F, 0x00, 0x30, 0x38, 0x01, 0xC0, 0x3F, 0xC1, 0xFE, 0x03, - 0x80, 0x1F, 0xF0, 0xFF, 0xC7, 0xFF, 0x38, 0xF9, 0xC3, 0xCE, 0x1E, 0x71, 0xF3, 0xFF, 0x9F, 0xF8, - 0xFF, 0x80, 0x78, 0x0F, 0xF0, 0xFF, 0x07, 0x80, 0x7F, 0xC7, 0xFE, 0x79, 0xE7, 0x9F, 0x7F, 0xE7, - 0xFE, 0x7F, 0xC0, 0xFF, 0xCF, 0xFE, 0xFF, 0xFF, 0x1F, 0xF2, 0xFF, 0xFF, 0xF7, 0xFF, 0xFF, 0xFF, - 0xEF, 0xFC, 0xF1, 0xEF, 0x0E, 0xF0, 0x8F, 0x00, 0xF0, 0x00, 0xFF, 0x9F, 0xFB, 0xFF, 0xF9, 0xFF, - 0x1F, 0xE3, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xFF, 0x78, 0xEF, 0x1D, 0xE1, 0x3C, 0x00, 0x01, - 0xE0, 0x3C, 0x07, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x07, 0x80, 0xF0, 0x1E, 0x03, 0xC0, 0x78, 0x0F, - 0x01, 0xE0, 0x3C, 0x07, 0x80, 0xF0, 0x1E, 0x00, 0x07, 0x83, 0xC1, 0xFF, 0xFF, 0xFF, 0xFF, 0xC1, - 0xE0, 0xF0, 0x78, 0x3C, 0x1E, 0x0F, 0x07, 0x80, 0x3F, 0xF3, 0xFF, 0x3F, 0xF3, 0xC0, 0x3C, 0x03, - 0xC0, 0xFF, 0x8F, 0xF8, 0xFF, 0x83, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x00, 0x7F, - 0xDF, 0xF7, 0xFD, 0xE0, 0x78, 0x3F, 0xCF, 0xF1, 0xE0, 0x78, 0x1E, 0x07, 0x80, 0xFF, 0xE7, 0xFF, - 0x3F, 0xF9, 0xE0, 0x0F, 0x00, 0x78, 0x03, 0xFF, 0x1F, 0xFC, 0xFF, 0xF7, 0x8F, 0xBC, 0x3D, 0xE0, - 0xFF, 0x07, 0xF8, 0x3F, 0xC3, 0xC0, 0x3E, 0x07, 0xF0, 0x3F, 0x01, 0xF0, 0xFF, 0x9F, 0xF3, 0xFE, - 0x78, 0x0F, 0x01, 0xFE, 0x3F, 0xE7, 0xFE, 0xF3, 0xDE, 0x3F, 0xC7, 0x81, 0xE0, 0xFC, 0x1F, 0x83, - 0xE0, 0xF8, 0xF0, 0xF1, 0xF3, 0xC7, 0xC3, 0xCF, 0x3E, 0x0F, 0xBD, 0xF0, 0x1F, 0xF7, 0xC0, 0x3F, - 0xFE, 0x00, 0x7F, 0xF0, 0x01, 0xFF, 0x80, 0x0F, 0xFF, 0x00, 0x3F, 0xFE, 0x01, 0xFF, 0x7C, 0x0F, - 0xBD, 0xF8, 0x7C, 0xF3, 0xF9, 0xE3, 0xC7, 0xEF, 0x8F, 0x0F, 0x80, 0x00, 0x0E, 0x00, 0x00, 0x38, - 0x00, 0x00, 0xE0, 0x00, 0x03, 0x80, 0xF9, 0xE7, 0x9F, 0x7B, 0xE3, 0xDF, 0xF0, 0x7F, 0xF8, 0x1F, - 0xFC, 0x03, 0xFF, 0x01, 0xFF, 0xE0, 0xFF, 0xFC, 0x3D, 0xFF, 0xDE, 0x7B, 0xFF, 0x9E, 0x7C, 0x00, - 0x07, 0x00, 0x01, 0xC0, 0x00, 0x70, 0x3F, 0x87, 0xFE, 0x7F, 0xE3, 0x1F, 0x01, 0xF0, 0x3E, 0x1F, - 0xE1, 0xFE, 0x1F, 0xF0, 0x1F, 0x00, 0xF7, 0x1F, 0x7F, 0xFF, 0xFE, 0x7F, 0xC0, 0x60, 0x0F, 0x00, - 0x70, 0x1F, 0x01, 0xF0, 0x7F, 0x1F, 0xE7, 0xFD, 0x9F, 0x3F, 0x8F, 0xE0, 0x3D, 0x8F, 0x7F, 0xFF, - 0xEF, 0xF8, 0x30, 0x0E, 0x03, 0x83, 0xE0, 0xF8, 0xF0, 0xF9, 0xE3, 0xE3, 0xCF, 0x87, 0xBE, 0x0F, - 0xF8, 0x1F, 0xE0, 0x3F, 0x80, 0x7F, 0x80, 0xFF, 0x81, 0xFF, 0x83, 0xDF, 0x87, 0x9F, 0x0F, 0x1F, - 0xDE, 0x1F, 0xBC, 0x1F, 0x00, 0x0E, 0x00, 0x1C, 0x00, 0x38, 0x00, 0x70, 0xF3, 0xEF, 0x3C, 0xF7, - 0x8F, 0xF0, 0xFE, 0x0F, 0xE0, 0xFF, 0x0F, 0xF8, 0xF7, 0xFF, 0x3F, 0xF1, 0xF0, 0x0F, 0x00, 0xF0, - 0x0F, 0xF0, 0x3E, 0xF0, 0x3C, 0xF6, 0x7C, 0xF6, 0xF8, 0xF7, 0xF0, 0xFF, 0xE0, 0xFF, 0xE0, 0xFF, - 0xE0, 0xF7, 0xF0, 0xF6, 0xF8, 0xF6, 0xF8, 0xF0, 0x7C, 0xF0, 0x3C, 0xF0, 0x3E, 0xF0, 0x1E, 0xF0, - 0xFB, 0xF3, 0xCF, 0xDE, 0x3F, 0xF0, 0xFF, 0x83, 0xFF, 0x0F, 0xFE, 0x3F, 0x78, 0xF1, 0xF3, 0xC3, - 0xEF, 0x07, 0x80, 0x3C, 0x00, 0x78, 0x7F, 0xF9, 0xF7, 0xF7, 0xC3, 0xDF, 0x07, 0xFC, 0x0F, 0xF0, - 0x1F, 0xC0, 0x3F, 0x80, 0x7F, 0x00, 0xFF, 0x81, 0xEF, 0x03, 0xCF, 0x07, 0x9F, 0x0F, 0x1F, 0x1E, - 0x1E, 0x78, 0x07, 0xF7, 0xFF, 0xFD, 0xFF, 0xC7, 0xFC, 0x3F, 0xC1, 0xFC, 0x0F, 0xF0, 0x7F, 0xC3, - 0xDF, 0x1E, 0x7C, 0xF1, 0xE0, 0xFF, 0x1F, 0x7F, 0x9F, 0x3F, 0xCF, 0x01, 0xEF, 0x00, 0xFF, 0x80, - 0x7F, 0x80, 0x3F, 0x80, 0x1F, 0xE0, 0x0F, 0xF0, 0x07, 0xBC, 0x03, 0xDF, 0x01, 0xE7, 0xC0, 0xF1, - 0xE0, 0x78, 0xF8, 0x3C, 0x3E, 0xFE, 0x7B, 0xFB, 0xCF, 0xFE, 0x07, 0xF0, 0x1F, 0xC0, 0x7F, 0x01, - 0xFE, 0x07, 0xFC, 0x1E, 0xF8, 0x79, 0xE1, 0xE7, 0xC0, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, - 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xFF, 0xF8, 0xFF, 0xF8, 0xFF, 0xF8, 0xF0, 0x78, 0xF0, 0x78, 0xF0, - 0x78, 0xF0, 0x7F, 0xF0, 0x7F, 0xF0, 0x7F, 0x00, 0x0F, 0x00, 0x0F, 0x00, 0x0F, 0x00, 0x0F, 0xF3, - 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xFF, 0xCF, 0xFC, 0xFF, 0xCF, 0x3C, 0xF3, 0xFF, 0x3F, 0xF3, 0xF0, - 0x07, 0x00, 0x70, 0x07, 0xF0, 0x7F, 0xF8, 0x3F, 0xFC, 0x1F, 0xFE, 0x0F, 0x0F, 0x07, 0x87, 0x83, - 0xC3, 0xFF, 0xE1, 0xFF, 0xF0, 0xFF, 0xF8, 0x78, 0x3C, 0x3C, 0x1E, 0x1E, 0x0F, 0x0F, 0x07, 0x87, - 0x83, 0xC3, 0xC1, 0xE0, 0xF3, 0xFF, 0x9F, 0xFC, 0xFF, 0xE7, 0x8F, 0xFC, 0x7F, 0xE3, 0xFF, 0x1E, - 0x78, 0xF3, 0xC7, 0x9E, 0x3C, 0xF0, 0xFF, 0xF8, 0x03, 0xFF, 0xE0, 0x0F, 0xFF, 0x80, 0x3C, 0x1E, - 0x00, 0xF0, 0x78, 0x03, 0xC1, 0xE0, 0x0F, 0x07, 0xFE, 0x3C, 0x1F, 0xFC, 0xF0, 0x7F, 0xFB, 0xC1, - 0xE3, 0xEF, 0x07, 0x87, 0xBC, 0x1E, 0x0F, 0xF0, 0x78, 0x3F, 0xC1, 0xE0, 0xFF, 0x07, 0x87, 0x80, - 0x00, 0x3E, 0x00, 0x03, 0xF8, 0x00, 0x0F, 0xC0, 0x00, 0x3E, 0x00, 0xFF, 0xC0, 0x7F, 0xE0, 0x3F, - 0xF0, 0x1E, 0x78, 0x0F, 0x3F, 0xE7, 0x9F, 0xFB, 0xCF, 0xFD, 0xE7, 0x9F, 0xF3, 0xC7, 0xF9, 0xE3, - 0xFC, 0xF1, 0xE0, 0x01, 0xF0, 0x03, 0xF0, 0x01, 0xF8, 0x00, 0xF8, 0x0F, 0xE0, 0x3F, 0xE0, 0x7F, - 0xE0, 0x7E, 0x60, 0xF8, 0x00, 0xF1, 0xFC, 0xF3, 0xFE, 0xF3, 0xFE, 0xF7, 0xDE, 0xF7, 0x8E, 0xF7, - 0x9E, 0xFF, 0xBE, 0x7F, 0xFE, 0x3F, 0xFC, 0x1F, 0xF0, 0x01, 0xFC, 0x00, 0xFE, 0x00, 0x7E, 0x00, - 0x1E, 0x1F, 0xC1, 0xFE, 0x1F, 0xE0, 0xFF, 0xE7, 0x3F, 0xBB, 0xDD, 0xDC, 0xEF, 0xEF, 0x7F, 0xF9, - 0xFF, 0x87, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x7C, 0x0F, 0xF1, 0xFF, 0x9F, 0xFC, 0xFD, 0xEF, 0x80, - 0x78, 0x03, 0xC0, 0x1E, 0x00, 0xF0, 0x07, 0x80, 0x3E, 0x00, 0xF8, 0xE7, 0xFF, 0x1F, 0xF8, 0x3F, - 0xC0, 0xE0, 0x07, 0x80, 0x1C, 0x03, 0xE0, 0x1F, 0x00, 0x1F, 0xCF, 0xF7, 0xFD, 0xF2, 0x78, 0x1E, - 0x07, 0x81, 0xF3, 0x7F, 0xCF, 0xF0, 0xFC, 0x3C, 0x07, 0x07, 0xC1, 0xF0, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFE, 0x1E, 0x00, 0xF0, 0x07, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x78, 0x03, 0xC0, 0x1E, 0x00, - 0xFE, 0x07, 0xF0, 0x3F, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x78, 0xFF, 0xFF, 0xFF, 0xFF, 0x8F, - 0x01, 0xE0, 0x3C, 0x07, 0x80, 0xF0, 0x1F, 0x83, 0xF0, 0x7E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xF8, - 0x3F, 0xE1, 0xE7, 0xC7, 0x8F, 0x3C, 0x3F, 0xF0, 0x7F, 0x81, 0xFE, 0x03, 0xF0, 0x0F, 0x80, 0x1E, - 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x00, 0xF1, 0xFF, 0x1E, 0x79, 0xE7, 0x9E, - 0x7B, 0xC3, 0xFC, 0x3F, 0x81, 0xF8, 0x1F, 0x80, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, - 0x00, 0xF8, 0x3F, 0xE1, 0xE7, 0x87, 0x8F, 0x3C, 0x3F, 0xF0, 0x7F, 0x81, 0xFE, 0x03, 0xF0, 0x0F, - 0xC0, 0xFF, 0xC3, 0xFF, 0x01, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x00, 0xF1, 0xFF, 0x1E, 0x79, - 0xE7, 0x9E, 0x7B, 0xC3, 0xFC, 0x3F, 0x81, 0xF8, 0x1F, 0x87, 0xFC, 0x7F, 0xC0, 0xF0, 0x0F, 0x00, - 0xF0, 0x0F, 0x00, 0xF8, 0x7C, 0xF8, 0xF0, 0xF3, 0xE1, 0xFF, 0x81, 0xFE, 0x01, 0xFC, 0x03, 0xF0, - 0x03, 0xE0, 0x0F, 0xC0, 0x3F, 0xC0, 0x7F, 0xC1, 0xFF, 0x87, 0xCF, 0xEF, 0x0F, 0xFE, 0x1F, 0x80, - 0x0F, 0x00, 0x1E, 0x00, 0x3C, 0x00, 0x78, 0xF9, 0xE7, 0x9E, 0x3F, 0xC3, 0xF8, 0x1F, 0x80, 0xF0, - 0x1F, 0x83, 0xFC, 0x7F, 0xF7, 0x9F, 0xF1, 0xF0, 0x07, 0x00, 0x70, 0x07, 0xFF, 0xF7, 0x8F, 0xFF, - 0x78, 0xFF, 0xF7, 0x80, 0xF0, 0x78, 0x0F, 0x07, 0x80, 0xF0, 0x78, 0x0F, 0x07, 0x80, 0xF0, 0x78, - 0x0F, 0x07, 0x80, 0xF0, 0x78, 0x0F, 0x07, 0x80, 0xF0, 0x78, 0x0F, 0xFF, 0xE0, 0xFF, 0xFE, 0x0F, - 0xFF, 0xE0, 0x00, 0x0E, 0x00, 0x00, 0xE0, 0x00, 0x0E, 0x00, 0x00, 0xE0, 0xFF, 0x79, 0xFE, 0xF3, - 0xFD, 0xE1, 0xE3, 0xC3, 0xC7, 0x87, 0x8F, 0x0F, 0x1E, 0x1E, 0x3C, 0x3F, 0xFE, 0x7F, 0xFC, 0xFF, - 0xF8, 0x00, 0xF0, 0x01, 0xE0, 0x03, 0xC0, 0xF0, 0xF3, 0xC3, 0xCF, 0x0F, 0x3C, 0x3C, 0xF0, 0xF3, - 0xC3, 0xCF, 0x8F, 0x3F, 0xFC, 0x7F, 0xF0, 0xFF, 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xFC, 0x03, 0xF0, - 0x0F, 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0xF1, 0xE7, 0x8F, 0x3C, 0x79, 0xE3, 0xCF, - 0x9E, 0x7F, 0xF1, 0xFF, 0x87, 0xFC, 0x01, 0xF8, 0x0F, 0xC0, 0x7E, 0x00, 0xF0, 0x07, 0x80, 0x3C, - 0xF0, 0xFF, 0x0F, 0xF0, 0xFF, 0x0F, 0xF0, 0xFF, 0x6F, 0xFE, 0xFF, 0xFF, 0x7F, 0xF3, 0xFF, 0x06, - 0xF0, 0x6F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0xF1, 0xFE, 0x3F, 0xC7, 0xFB, 0xFF, 0xFF, 0xFF, 0xDF, - 0xF9, 0xFF, 0x07, 0xE0, 0xFC, 0x07, 0x80, 0xF0, 0x07, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x7F, - 0xF3, 0xFF, 0xDF, 0xFE, 0xF1, 0xFF, 0x83, 0xFC, 0x1F, 0xE0, 0xFF, 0x07, 0xF8, 0x3F, 0xC1, 0xE0, - 0xF0, 0x3C, 0x0F, 0x03, 0xC0, 0xF0, 0x3F, 0xEF, 0xFF, 0xFF, 0xF3, 0xFC, 0xFF, 0x3F, 0xCF, 0xF3, - 0xFC, 0xFF, 0x3F, 0xCF, 0x01, 0xFE, 0x00, 0xFF, 0xCE, 0x7F, 0xFB, 0xBF, 0x3E, 0xFF, 0x07, 0xFF, - 0xFF, 0xF7, 0xFF, 0xFC, 0xFF, 0xFF, 0x0F, 0x00, 0x03, 0xC0, 0x00, 0xF8, 0x00, 0x1F, 0x9C, 0x07, - 0xFF, 0x80, 0xFF, 0xE0, 0x0F, 0xF0, 0xC3, 0xF3, 0x9F, 0xEE, 0xFF, 0xFF, 0xCF, 0x7F, 0xFC, 0xFF, - 0xF1, 0xE0, 0x03, 0xE6, 0x0F, 0xF8, 0x1F, 0xF0, 0x3F, 0x80, 0x01, 0xFC, 0x00, 0xFF, 0xC0, 0x7F, - 0xFB, 0x9F, 0x3E, 0xEF, 0x87, 0xBF, 0xC0, 0xFF, 0xFF, 0xFD, 0xFF, 0xFF, 0x3F, 0xFF, 0xC3, 0xC0, - 0x00, 0xF8, 0x00, 0x1F, 0x1C, 0x07, 0xFF, 0x80, 0xFF, 0xE0, 0x1F, 0xF0, 0x01, 0xE0, 0x00, 0x78, - 0x00, 0x1E, 0x00, 0x07, 0x80, 0x03, 0xF3, 0x1F, 0xEE, 0xFF, 0xFB, 0xDF, 0xFE, 0x3D, 0xFF, 0xF3, - 0xFF, 0xC7, 0xC6, 0x0F, 0xF8, 0x3F, 0xF0, 0x3F, 0x80, 0x78, 0x01, 0xE0, 0x07, 0x80, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x01, 0x98, 0x00, 0x1E, 0xE0, 0x00, 0x7F, 0x00, 0x01, 0xF0, - 0x00, 0x00, 0x00, 0x7C, 0x78, 0x79, 0xF3, 0xC7, 0xC7, 0x9E, 0x7C, 0x3E, 0xF7, 0xC0, 0xFF, 0xBE, - 0x03, 0xFF, 0xE0, 0x0F, 0xFE, 0x00, 0x7F, 0xE0, 0x07, 0xFF, 0x80, 0x3F, 0xFE, 0x03, 0xFE, 0xF8, - 0x3E, 0xF3, 0xE3, 0xE7, 0x8F, 0x1E, 0x3C, 0x7D, 0xF1, 0xE1, 0xF0, 0x03, 0x30, 0x01, 0xDE, 0x00, - 0x7F, 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x9E, 0x79, 0xF7, 0xBE, 0x3D, 0xFF, 0x07, - 0xFF, 0x81, 0xFF, 0xC0, 0x3F, 0xF0, 0x1F, 0xFE, 0x0F, 0xFF, 0x83, 0xDE, 0xF1, 0xE7, 0x9E, 0xF9, - 0xE7, 0xC0, 0xF0, 0xFF, 0x8F, 0xBC, 0xF9, 0xEF, 0x8F, 0x78, 0x7F, 0x83, 0xFF, 0x1F, 0xFC, 0xFF, - 0xF7, 0x9F, 0xBC, 0x3F, 0xE0, 0xFF, 0x07, 0xF8, 0x3F, 0xC3, 0xE0, 0x3E, 0x07, 0xF0, 0x3F, 0x01, - 0xF0, 0xF3, 0xFE, 0x7B, 0xDE, 0x7F, 0x8F, 0xE1, 0xFF, 0x3F, 0xF7, 0xBE, 0xF1, 0xFE, 0x3F, 0xC7, - 0x80, 0xF0, 0x3C, 0x1F, 0x83, 0xE0, 0x0F, 0xFE, 0x03, 0xFF, 0x80, 0xFF, 0xE0, 0x3C, 0x78, 0x0F, - 0x1E, 0x03, 0xC7, 0x80, 0xF1, 0xE0, 0x3C, 0x78, 0x0F, 0x1E, 0x07, 0x87, 0x81, 0xE1, 0xE1, 0xF8, - 0x78, 0xFC, 0x1F, 0xBE, 0x07, 0xEF, 0x01, 0xF8, 0x00, 0x1E, 0x00, 0x0F, 0x00, 0x03, 0xC0, 0x00, - 0x60, 0x1F, 0xF0, 0x7F, 0xC1, 0xFF, 0x07, 0xBC, 0x1E, 0xF0, 0x7B, 0xC3, 0xCF, 0x1F, 0x3C, 0xFC, - 0xFF, 0xE3, 0xFF, 0x0F, 0xC0, 0x0E, 0x00, 0x78, 0x00, 0xC0, 0xF0, 0x7F, 0x83, 0xFC, 0x1F, 0xE0, - 0xFF, 0x07, 0xF8, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x83, 0xFC, 0x1F, 0xE0, 0xFF, 0x07, 0xF8, - 0x3F, 0xC1, 0xE0, 0x0F, 0x01, 0xF8, 0x0F, 0x80, 0x7C, 0xF1, 0xFE, 0x3F, 0xC7, 0xF8, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0x8F, 0xF1, 0xFE, 0x3F, 0xC7, 0x01, 0xE0, 0xFC, 0x1F, 0x83, 0xE0, 0xF0, 0x78, - 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xFF, 0xF8, 0xFF, 0xF8, 0xFF, 0xF8, - 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x7E, 0xF0, 0x7E, 0xF0, 0x7E, 0x00, 0x1E, 0x00, 0x1C, - 0x00, 0x3C, 0x00, 0x18, 0xF3, 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xFF, 0xCF, 0xFC, 0xFF, 0xCF, 0x3C, - 0xF3, 0xFF, 0x3F, 0xF3, 0xF0, 0x0E, 0x01, 0xE0, 0x1C, 0xF0, 0x7F, 0x83, 0xFC, 0x1F, 0xE0, 0xFF, - 0x87, 0xBC, 0x3D, 0xF1, 0xEF, 0xFF, 0x3F, 0xF8, 0xFF, 0xC0, 0x1E, 0x00, 0xF0, 0x3F, 0x81, 0xFC, - 0x0F, 0xE0, 0x78, 0x03, 0xC0, 0x1E, 0x00, 0xF0, 0x71, 0xEE, 0x3D, 0xC7, 0xBC, 0xF7, 0xFE, 0xFF, - 0xCF, 0xF8, 0x0F, 0x01, 0xE0, 0xFC, 0x1F, 0x83, 0x80, 0x70, 0x0E, 0x00, 0x78, 0x0F, 0x0F, 0x83, - 0xE1, 0xF0, 0x7C, 0x3F, 0x1F, 0x87, 0xE3, 0xF1, 0xFC, 0x7E, 0x3F, 0xDF, 0xC7, 0xBB, 0xBC, 0xF7, - 0xF7, 0x9E, 0xFC, 0xF3, 0xCF, 0x9E, 0x79, 0xF3, 0xCF, 0x1C, 0x7F, 0xE0, 0x0F, 0xFC, 0x01, 0xF8, - 0x00, 0x0F, 0x00, 0x03, 0xC0, 0x00, 0x78, 0x00, 0x06, 0x00, 0xF0, 0x78, 0xF8, 0x78, 0xF8, 0xF8, - 0xFC, 0xF8, 0xFD, 0xF8, 0xFF, 0xFC, 0xFF, 0xFC, 0xFF, 0xBC, 0xF7, 0xBF, 0xF7, 0x3F, 0xE0, 0x3E, - 0x00, 0x0E, 0x00, 0x1C, 0x00, 0x1C, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x0C, 0x60, - 0x1D, 0xC0, 0x3F, 0x80, 0x3E, 0x00, 0x00, 0x00, 0xF8, 0x01, 0xF0, 0x03, 0xF0, 0x0F, 0xE0, 0x1F, - 0xC0, 0x7B, 0xC0, 0xF7, 0x81, 0xC7, 0x87, 0x8F, 0x0F, 0xFE, 0x3F, 0xFE, 0x7F, 0xFC, 0xF0, 0x7B, - 0xC0, 0x7F, 0x80, 0xF0, 0x19, 0x87, 0x78, 0xFE, 0x0F, 0x80, 0x00, 0x00, 0x0F, 0xE1, 0xFE, 0x3F, - 0xC6, 0x7C, 0xFF, 0xBF, 0xF7, 0x9F, 0xF3, 0xDF, 0xFB, 0xFF, 0x3F, 0xC0, 0x1E, 0xE0, 0x3D, 0xE0, - 0x7B, 0x80, 0x00, 0x00, 0x7C, 0x00, 0xF8, 0x01, 0xF8, 0x07, 0xF0, 0x0F, 0xE0, 0x3D, 0xE0, 0x7B, - 0xC0, 0xE3, 0xC3, 0xC7, 0x87, 0xFF, 0x1F, 0xFF, 0x3F, 0xFE, 0x78, 0x3D, 0xE0, 0x3F, 0xC0, 0x78, - 0x3B, 0xCF, 0x78, 0xEF, 0x00, 0x00, 0x00, 0x7F, 0x0F, 0xF1, 0xFE, 0x33, 0xE7, 0xFD, 0xFF, 0xBC, - 0xFF, 0x9E, 0xFF, 0xDF, 0xF9, 0xFE, 0x00, 0xFF, 0xF0, 0x07, 0xFF, 0x80, 0x7F, 0xFC, 0x03, 0xF8, - 0x00, 0x3F, 0xC0, 0x03, 0xDE, 0x00, 0x1E, 0xFF, 0x81, 0xE7, 0xFC, 0x0F, 0x3F, 0xE0, 0xFF, 0xE0, - 0x0F, 0xFF, 0x00, 0x7F, 0xF8, 0x07, 0xC3, 0xFF, 0xBC, 0x1F, 0xFF, 0xC0, 0xFF, 0xE0, 0x3F, 0xFF, - 0x0F, 0xFF, 0xE3, 0xFF, 0xF8, 0xCF, 0x9F, 0x3F, 0xFF, 0xDF, 0xFF, 0xF7, 0x9E, 0x03, 0xE7, 0xC6, - 0x7F, 0xFF, 0x9F, 0xFF, 0xE3, 0xFF, 0xF8, 0x39, 0x87, 0x78, 0xFE, 0x0F, 0x80, 0x01, 0xFF, 0xFF, - 0xFF, 0xFF, 0xF0, 0x1E, 0x03, 0xC0, 0x7F, 0xEF, 0xFD, 0xFF, 0xBC, 0x07, 0x80, 0xF0, 0x1F, 0xFF, - 0xFF, 0xFF, 0xF0, 0x18, 0xC3, 0xDC, 0x1F, 0xC0, 0xF8, 0x00, 0x00, 0x00, 0x1F, 0x83, 0xFE, 0x7F, - 0xE7, 0x9F, 0x7F, 0xF7, 0xFF, 0x78, 0x07, 0xC6, 0x7F, 0xE3, 0xFE, 0x1F, 0xE0, 0x3F, 0xC1, 0xFF, - 0x87, 0xFF, 0x1C, 0x7E, 0x00, 0x78, 0x01, 0xEF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC1, 0xEF, 0x07, - 0xBF, 0x7E, 0x7F, 0xF0, 0xFF, 0x81, 0xFC, 0x00, 0x7F, 0x87, 0xFC, 0x7F, 0xE3, 0x3E, 0x00, 0xF7, - 0xFF, 0x7F, 0xF7, 0x9E, 0x7F, 0xE3, 0xFC, 0x1F, 0x80, 0x3D, 0xC0, 0xF7, 0x83, 0xDC, 0x00, 0x00, - 0x3F, 0xC1, 0xFF, 0x87, 0xFF, 0x1C, 0x7E, 0x00, 0x78, 0x01, 0xEF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xC1, 0xEF, 0x07, 0xBF, 0x7E, 0x7F, 0xF0, 0xFF, 0x81, 0xFC, 0x00, 0x39, 0xC3, 0xFC, 0x39, 0xC0, - 0x00, 0x00, 0x07, 0xF8, 0x7F, 0xC7, 0xFE, 0x33, 0xE0, 0x0F, 0x7F, 0xF7, 0xFF, 0x79, 0xE7, 0xFE, - 0x3F, 0xC1, 0xF8, 0x03, 0xDC, 0x00, 0x1E, 0xF0, 0x00, 0xF7, 0x00, 0x00, 0x00, 0x0F, 0x8F, 0x0F, - 0x3E, 0x78, 0xF8, 0xF3, 0xCF, 0x87, 0xDE, 0xF8, 0x1F, 0xF7, 0xC0, 0x7F, 0xFC, 0x01, 0xFF, 0xC0, - 0x0F, 0xFC, 0x00, 0xFF, 0xF0, 0x07, 0xFF, 0xC0, 0x7F, 0xDF, 0x07, 0xDE, 0x7C, 0x7C, 0xF1, 0xE3, - 0xC7, 0x8F, 0xBE, 0x3C, 0x3E, 0x07, 0x38, 0x01, 0xFE, 0x00, 0x73, 0x80, 0x00, 0x00, 0x00, 0x00, - 0x3E, 0x79, 0xE7, 0xDE, 0xF8, 0xF7, 0xFC, 0x1F, 0xFE, 0x07, 0xFF, 0x00, 0xFF, 0xC0, 0x7F, 0xF8, - 0x3F, 0xFE, 0x0F, 0x7B, 0xC7, 0x9E, 0x7B, 0xE7, 0x9F, 0x39, 0xC3, 0xBC, 0x39, 0xC0, 0x00, 0x00, - 0x03, 0xF8, 0x7F, 0xE7, 0xFE, 0x31, 0xF0, 0x1F, 0x03, 0xE1, 0xFE, 0x1F, 0xE1, 0xFF, 0x01, 0xF0, - 0x0F, 0x71, 0xF7, 0xFF, 0xFF, 0xE7, 0xFC, 0x73, 0x9D, 0xE7, 0x38, 0x00, 0x00, 0x1F, 0xC7, 0xF9, - 0xFF, 0x67, 0xCF, 0xE3, 0xF8, 0x0F, 0x63, 0xDF, 0xFF, 0xF9, 0xFC, 0x7F, 0xF7, 0xFF, 0x7F, 0xF0, - 0x3E, 0x07, 0xC0, 0xF8, 0x1F, 0xC1, 0xFE, 0x03, 0xF0, 0x0F, 0x00, 0xF7, 0x1F, 0xFF, 0xFF, 0xFE, - 0x7F, 0xC0, 0xFF, 0xFF, 0xFF, 0xFC, 0x1E, 0x0F, 0x07, 0x83, 0xF0, 0xFE, 0x07, 0xC0, 0xF0, 0x3F, - 0x9F, 0xFF, 0xFF, 0xEF, 0xF0, 0x0F, 0xE0, 0x3F, 0x80, 0x00, 0x3C, 0x0F, 0xF0, 0x7F, 0xC3, 0xFF, - 0x1F, 0xFC, 0x7F, 0xF3, 0xFF, 0xDE, 0xFF, 0x7B, 0xFF, 0xCF, 0xFE, 0x3F, 0xF8, 0xFF, 0xC3, 0xFE, - 0x0F, 0xF8, 0x3F, 0xC0, 0xF0, 0x3F, 0x87, 0xF0, 0x00, 0x00, 0x0F, 0x1F, 0xE7, 0xFD, 0xFF, 0xBF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0x9F, 0xF3, 0xFC, 0x78, 0x1C, 0xE0, 0x7B, 0x81, 0xCE, 0x00, - 0x00, 0xF0, 0x3F, 0xC1, 0xFF, 0x0F, 0xFC, 0x7F, 0xF1, 0xFF, 0xCF, 0xFF, 0x7B, 0xFD, 0xEF, 0xFF, - 0x3F, 0xF8, 0xFF, 0xE3, 0xFF, 0x0F, 0xF8, 0x3F, 0xE0, 0xFF, 0x03, 0xC0, 0x3B, 0xCF, 0x78, 0xEF, - 0x00, 0x00, 0x01, 0xE3, 0xFC, 0xFF, 0xBF, 0xF7, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xDF, 0xF3, 0xFE, - 0x7F, 0x8F, 0x1E, 0xE0, 0x3D, 0xE0, 0x7B, 0x80, 0x00, 0x00, 0xFE, 0x07, 0xFE, 0x1F, 0xFE, 0x3E, - 0x7E, 0xF8, 0x3D, 0xE0, 0x7F, 0xC0, 0x7F, 0x80, 0xFF, 0x01, 0xFE, 0x07, 0xFE, 0x0F, 0x3E, 0x7E, - 0x7F, 0xF8, 0x7F, 0xF0, 0x3F, 0x80, 0x3D, 0xC3, 0xDE, 0x3D, 0xC0, 0x00, 0x00, 0x01, 0xFC, 0x3F, - 0xE7, 0xFE, 0x7D, 0xF7, 0x8F, 0x78, 0xF7, 0x8F, 0x7D, 0xF7, 0xFE, 0x3F, 0xE1, 0xFC, 0x0F, 0xE0, - 0x7F, 0xE1, 0xFF, 0xE3, 0xE7, 0xEF, 0x83, 0xDE, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x1F, 0xE0, - 0x7F, 0xE0, 0xF3, 0xE7, 0xE7, 0xFF, 0x87, 0xFF, 0x03, 0xF8, 0x00, 0x1F, 0xC3, 0xFE, 0x7F, 0xE7, - 0x9F, 0x7F, 0xF7, 0xFF, 0x78, 0xF7, 0xDF, 0x7F, 0xE3, 0xFE, 0x1F, 0xC0, 0x1E, 0xE0, 0x3D, 0xE0, - 0x7B, 0x80, 0x00, 0x00, 0xFE, 0x07, 0xFE, 0x1F, 0xFE, 0x3E, 0x7E, 0xF8, 0x3D, 0xE0, 0x3F, 0xFF, - 0xFF, 0xFF, 0xFF, 0x01, 0xFE, 0x07, 0xFE, 0x0F, 0x3E, 0x7E, 0x7F, 0xF8, 0x7F, 0xF0, 0x3F, 0x80, - 0x3D, 0xC3, 0xDE, 0x3D, 0xC0, 0x00, 0x00, 0x01, 0xFC, 0x3F, 0xE7, 0xFE, 0x79, 0xF7, 0xFF, 0x7F, - 0xF7, 0x8F, 0x7D, 0xF7, 0xFE, 0x3F, 0xE1, 0xFC, 0x1D, 0xC0, 0xF7, 0x81, 0xDC, 0x00, 0x00, 0x3F, + 0x9D, 0xE3, 0xF0, 0x78, 0x7E, 0x7F, 0xF7, 0x73, 0xBD, 0xEE, 0x70, 0xFF, 0xE0, 0x71, 0xE1, 0xFE, + 0xF8, 0x39, 0xC6, 0x1E, 0x79, 0xE0, 0x0C, 0x03, 0x80, 0x78, 0x07, 0x80, 0x70, 0x00, 0x3F, 0xFF, + 0xFF, 0xFF, 0xFE, 0x03, 0xC0, 0x78, 0x0F, 0xFD, 0xFF, 0xBF, 0xF7, 0x80, 0xF0, 0x1E, 0x03, 0xFF, + 0xFF, 0xFF, 0xFE, 0x3B, 0xCF, 0x78, 0xEF, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x1E, + 0x03, 0xC0, 0x7F, 0xEF, 0xFD, 0xFF, 0xBC, 0x07, 0x80, 0xF0, 0x1F, 0xFF, 0xFF, 0xFF, 0xF0, 0xFF, + 0xF8, 0x7F, 0xFC, 0x3F, 0xFE, 0x01, 0xE0, 0x00, 0xF0, 0x00, 0x7F, 0xE0, 0x3F, 0xF8, 0x1F, 0xFE, + 0x0F, 0x1F, 0x07, 0x83, 0x83, 0xC1, 0xE1, 0xE1, 0xE0, 0xF7, 0xF0, 0x7B, 0xF0, 0x3D, 0xF0, 0x02, + 0x00, 0xE0, 0x3C, 0x0F, 0x00, 0xC0, 0x00, 0x3F, 0xFF, 0xFF, 0xFF, 0xFE, 0x03, 0xC0, 0x78, 0x0F, + 0x01, 0xE0, 0x3C, 0x07, 0x80, 0xF0, 0x1E, 0x03, 0xC0, 0x78, 0x0F, 0x00, 0x0F, 0xF1, 0xFF, 0xDF, + 0xFC, 0xF8, 0xEF, 0x80, 0x78, 0x03, 0xFF, 0x1F, 0xF8, 0xFF, 0xC7, 0x80, 0x3E, 0x00, 0xF8, 0xE7, + 0xFF, 0x1F, 0xFC, 0x7F, 0xC0, 0x1F, 0xC3, 0xFE, 0x7F, 0xE7, 0xCC, 0x78, 0x07, 0xC0, 0x7F, 0x83, + 0xFC, 0x0F, 0xE0, 0x1F, 0x00, 0xF7, 0x1F, 0x7F, 0xE7, 0xFE, 0x7F, 0xC0, 0xFF, 0xFF, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFF, 0xF0, 0xF7, 0x7B, 0xFD, 0xC0, 0x03, 0xC1, 0xE0, 0xF0, 0x78, 0x3C, 0x1E, 0x0F, + 0x07, 0x83, 0xC1, 0xE0, 0xF0, 0x78, 0x3C, 0x1E, 0x0F, 0x00, 0x03, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, + 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xC0, 0xF0, 0x3D, 0x9F, 0xFF, 0xFF, 0xE7, 0xF0, 0x07, 0xFE, 0x00, + 0x0F, 0xFC, 0x00, 0x1F, 0xF8, 0x00, 0x78, 0xF0, 0x00, 0xF1, 0xE0, 0x01, 0xE3, 0xFF, 0x03, 0xC7, + 0xFF, 0x07, 0x8F, 0xFF, 0x0F, 0x1E, 0x7E, 0x1E, 0x3C, 0x3C, 0x78, 0x78, 0x7B, 0xF0, 0xF1, 0xFF, + 0xC1, 0xFF, 0xFF, 0x83, 0xFF, 0xBC, 0x07, 0xFC, 0x00, 0xF0, 0x78, 0x07, 0x83, 0xC0, 0x3C, 0x1E, + 0x01, 0xE0, 0xF0, 0x0F, 0x07, 0x80, 0x7F, 0xFF, 0xE3, 0xFF, 0xFF, 0xDF, 0xFF, 0xFE, 0xF0, 0x79, + 0xFF, 0x83, 0xC3, 0xFC, 0x1E, 0x1F, 0xE0, 0xF3, 0xFF, 0x07, 0xFF, 0x78, 0x3F, 0xFB, 0xC1, 0xFF, + 0x00, 0xFF, 0xF8, 0xFF, 0xF8, 0xFF, 0xF8, 0x0F, 0x00, 0x0F, 0x00, 0x0F, 0x00, 0x0F, 0xFC, 0x0F, + 0xFE, 0x0F, 0xFE, 0x0F, 0x3F, 0x0F, 0x0F, 0x0F, 0x0F, 0x0F, 0x0F, 0x0F, 0x0F, 0x0F, 0x0F, 0x01, + 0x80, 0x07, 0x00, 0x3C, 0x01, 0xE0, 0x07, 0x00, 0x00, 0x0F, 0x0F, 0xBC, 0x7C, 0xF3, 0xE3, 0xDF, + 0x0F, 0xF8, 0x3F, 0xC0, 0xFE, 0x03, 0xFC, 0x0F, 0xF8, 0x3D, 0xF0, 0xF3, 0xC3, 0xCF, 0x8F, 0x1F, + 0x3C, 0x3C, 0xF0, 0xF8, 0x06, 0x00, 0x3C, 0x00, 0xF8, 0x00, 0xE0, 0x01, 0x80, 0x00, 0x0F, 0x03, + 0xFC, 0x1F, 0xF0, 0xFF, 0xC7, 0xFF, 0x1F, 0xFC, 0xFF, 0xF7, 0xBF, 0xDE, 0xFF, 0xF3, 0xFF, 0x8F, + 0xFE, 0x3F, 0xF0, 0xFF, 0x83, 0xFE, 0x0F, 0xF0, 0x3C, 0x0C, 0xC0, 0x7B, 0x80, 0xFE, 0x01, 0xF0, + 0x00, 0x03, 0xE1, 0xF7, 0x87, 0x9F, 0x1E, 0x3C, 0x78, 0xF3, 0xC1, 0xEF, 0x07, 0xB8, 0x0F, 0xE0, + 0x3F, 0x80, 0x7C, 0x01, 0xF0, 0x4F, 0x81, 0xFE, 0x07, 0xF0, 0x1F, 0x80, 0xF0, 0x7F, 0x83, 0xFC, + 0x1F, 0xE0, 0xFF, 0x07, 0xF8, 0x3F, 0xC1, 0xFE, 0x0F, 0xF0, 0x7F, 0x83, 0xFC, 0x1F, 0xE0, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0xF0, 0x07, 0x80, 0x3C, 0x01, 0xE0, 0x07, 0xC0, 0x0F, 0x80, 0x1F, + 0x80, 0x7F, 0x00, 0xFE, 0x03, 0xDE, 0x07, 0xBC, 0x0E, 0x3C, 0x3C, 0x78, 0x7F, 0xF1, 0xFF, 0xF3, + 0xFF, 0xE7, 0x83, 0xDE, 0x03, 0xFC, 0x07, 0x80, 0xFF, 0xEF, 0xFE, 0xFF, 0xEF, 0x00, 0xF0, 0x0F, + 0xF8, 0xFF, 0xEF, 0xFF, 0xF3, 0xFF, 0x0F, 0xF0, 0xFF, 0x3F, 0xFF, 0xEF, 0xFE, 0xFF, 0x80, 0xFF, + 0xC7, 0xFF, 0x3F, 0xFD, 0xE3, 0xEF, 0x1F, 0x7F, 0xF3, 0xFF, 0x9F, 0xFE, 0xF1, 0xF7, 0x87, 0xBC, + 0x3D, 0xE3, 0xEF, 0xFF, 0x7F, 0xF3, 0xFF, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x0F, 0x01, 0xE0, + 0x3C, 0x07, 0x80, 0xF0, 0x1E, 0x03, 0xC0, 0x78, 0x0F, 0x01, 0xE0, 0x3C, 0x00, 0x0F, 0xFE, 0x07, + 0xFF, 0x03, 0xFF, 0x81, 0xE3, 0xC0, 0xF1, 0xE0, 0x78, 0xF0, 0x3C, 0x78, 0x1E, 0x3C, 0x0F, 0x1E, + 0x0F, 0x0F, 0x07, 0x87, 0x87, 0xC3, 0xCF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x0F, 0xF0, + 0x07, 0xF8, 0x03, 0xFC, 0x01, 0xE0, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x0F, 0x01, 0xE0, 0x3F, 0xF7, + 0xFE, 0xFF, 0xDE, 0x03, 0xC0, 0x78, 0x0F, 0xFF, 0xFF, 0xFF, 0xF8, 0xF8, 0xF0, 0xF3, 0xE7, 0x8F, + 0x8F, 0x3C, 0xF8, 0x7D, 0xEF, 0x81, 0xFF, 0x7C, 0x07, 0xFF, 0xC0, 0x1F, 0xFC, 0x00, 0xFF, 0xC0, + 0x0F, 0xFF, 0x00, 0x7F, 0xFC, 0x07, 0xFD, 0xF0, 0x7D, 0xE7, 0xC7, 0xCF, 0x1E, 0x3C, 0x78, 0xFB, + 0xE3, 0xC3, 0xE0, 0x3F, 0x87, 0xFE, 0x7F, 0xE3, 0x1F, 0x01, 0xF0, 0x3E, 0x1F, 0xE1, 0xFE, 0x1F, + 0xF0, 0x1F, 0x00, 0xF7, 0x1F, 0x7F, 0xFF, 0xFE, 0x7F, 0xC0, 0xF0, 0x3F, 0xC1, 0xFF, 0x0F, 0xFC, + 0x7F, 0xF1, 0xFF, 0xCF, 0xFF, 0x7B, 0xFD, 0xEF, 0xFF, 0x3F, 0xF8, 0xFF, 0xE3, 0xFF, 0x0F, 0xF8, + 0x3F, 0xE0, 0xFF, 0x03, 0xC0, 0x0C, 0xC0, 0x7B, 0x80, 0xFE, 0x01, 0xF0, 0x00, 0x03, 0xC0, 0xFF, + 0x07, 0xFC, 0x3F, 0xF1, 0xFF, 0xC7, 0xFF, 0x3F, 0xFD, 0xEF, 0xF7, 0xBF, 0xFC, 0xFF, 0xE3, 0xFF, + 0x8F, 0xFC, 0x3F, 0xE0, 0xFF, 0x83, 0xFC, 0x0F, 0xF0, 0xFB, 0xC7, 0xCF, 0x3E, 0x3D, 0xF0, 0xFF, + 0x83, 0xFC, 0x0F, 0xE0, 0x3F, 0xC0, 0xFF, 0x83, 0xDF, 0x0F, 0x3C, 0x3C, 0xF8, 0xF1, 0xF3, 0xC3, + 0xCF, 0x0F, 0x80, 0x07, 0xFE, 0x0F, 0xFC, 0x1F, 0xF8, 0x78, 0xF0, 0xF1, 0xE1, 0xE3, 0xC3, 0xC7, + 0x87, 0x8F, 0x0F, 0x1E, 0x1E, 0x3C, 0x78, 0x7B, 0xF0, 0xFF, 0xC1, 0xFF, 0x83, 0xFC, 0x07, 0x80, + 0x78, 0x0F, 0x3E, 0x0F, 0x9F, 0x07, 0xCF, 0xC7, 0xE7, 0xE3, 0xF7, 0xF1, 0xFB, 0xFD, 0xFD, 0xEE, + 0xEF, 0xF7, 0xF7, 0xFB, 0xF3, 0xFC, 0xF9, 0xFE, 0x7C, 0xFF, 0x1C, 0x7F, 0x80, 0x3F, 0xC0, 0x1E, + 0xF0, 0x7F, 0x83, 0xFC, 0x1F, 0xE0, 0xFF, 0x07, 0xF8, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x83, + 0xFC, 0x1F, 0xE0, 0xFF, 0x07, 0xF8, 0x3F, 0xC1, 0xE0, 0x0F, 0xE0, 0x7F, 0xE1, 0xFF, 0xE3, 0xE7, + 0xEF, 0x83, 0xDE, 0x07, 0xFC, 0x07, 0xF8, 0x0F, 0xF0, 0x1F, 0xE0, 0x7F, 0xE0, 0xF3, 0xE7, 0xE7, + 0xFF, 0x87, 0xFF, 0x03, 0xF8, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0xFF, 0x07, 0xF8, 0x3F, + 0xC1, 0xFE, 0x0F, 0xF0, 0x7F, 0x83, 0xFC, 0x1F, 0xE0, 0xFF, 0x07, 0xF8, 0x3F, 0xC1, 0xE0, 0xFF, + 0xCF, 0xFE, 0xFF, 0xFF, 0x1F, 0xF0, 0xFF, 0x0F, 0xF3, 0xFF, 0xFF, 0xFF, 0xEF, 0xFC, 0xF0, 0x0F, + 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x00, 0x0F, 0xF1, 0xFF, 0x9F, 0xFC, 0xFD, 0xEF, 0x80, 0x78, 0x03, + 0xC0, 0x1E, 0x00, 0xF0, 0x07, 0x80, 0x3E, 0x01, 0xF8, 0xE7, 0xFF, 0x1F, 0xF8, 0x7F, 0xC0, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFE, 0x1E, 0x00, 0xF0, 0x07, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x78, 0x03, + 0xC0, 0x1E, 0x00, 0xF0, 0x07, 0x80, 0x3C, 0x00, 0xF8, 0x7D, 0xE1, 0xE7, 0xC7, 0x8F, 0x1E, 0x3C, + 0xF0, 0x7B, 0xC1, 0xEE, 0x03, 0xF8, 0x0F, 0xE0, 0x1F, 0x00, 0x7C, 0x13, 0xE0, 0x7F, 0x81, 0xFC, + 0x07, 0xE0, 0x00, 0x01, 0xE0, 0x00, 0x78, 0x00, 0xFF, 0xC0, 0x7F, 0xFC, 0x3F, 0xFF, 0x1F, 0xFF, + 0xE7, 0x9E, 0x79, 0xE7, 0x8F, 0x79, 0xE3, 0xDE, 0x79, 0xE7, 0xFF, 0xF8, 0xFF, 0xFE, 0x1F, 0xFF, + 0x03, 0xFF, 0x00, 0x1E, 0x00, 0x07, 0x80, 0xF8, 0x7D, 0xF1, 0xE3, 0xCF, 0x8F, 0xFC, 0x1F, 0xE0, + 0x3F, 0x80, 0xFC, 0x01, 0xF0, 0x0F, 0xC0, 0x7F, 0x81, 0xFF, 0x0F, 0xFC, 0x7C, 0xF9, 0xE1, 0xFF, + 0x87, 0xC0, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, + 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, + 0x00, 0x0F, 0x00, 0x0F, 0x00, 0x0F, 0x00, 0x0F, 0xF0, 0x7F, 0x83, 0xFC, 0x1F, 0xE0, 0xFF, 0x87, + 0xBC, 0x3D, 0xF1, 0xEF, 0xFF, 0x3F, 0xF8, 0xFF, 0xC0, 0x1E, 0x00, 0xF0, 0x07, 0x80, 0x3C, 0x01, + 0xE0, 0xF0, 0xF1, 0xFE, 0x1E, 0x3F, 0xC3, 0xC7, 0xF8, 0x78, 0xFF, 0x0F, 0x1F, 0xE1, 0xE3, 0xFC, + 0x3C, 0x7F, 0x87, 0x8F, 0xF0, 0xF1, 0xFE, 0x1E, 0x3F, 0xC3, 0xC7, 0xF8, 0x78, 0xFF, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0xF0, 0xF1, 0xE3, 0xC3, 0xC7, 0x8F, 0x0F, 0x1E, 0x3C, 0x3C, 0x78, + 0xF0, 0xF1, 0xE3, 0xC3, 0xC7, 0x8F, 0x0F, 0x1E, 0x3C, 0x3C, 0x78, 0xF0, 0xF1, 0xE3, 0xC3, 0xC7, + 0x8F, 0x0F, 0x1E, 0x3C, 0x3C, 0x78, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, + 0x0F, 0x00, 0x00, 0x3C, 0x00, 0x00, 0xF0, 0x00, 0x03, 0xC0, 0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00, + 0x0F, 0x00, 0x0F, 0x00, 0x0F, 0xF8, 0x0F, 0xFC, 0x0F, 0xFE, 0x0F, 0x3E, 0x0F, 0x1F, 0x0F, 0x1F, + 0x0F, 0x3E, 0x0F, 0xFE, 0x0F, 0xFC, 0x0F, 0xF8, 0xF0, 0x07, 0xF8, 0x03, 0xFC, 0x01, 0xFE, 0x00, + 0xFF, 0x00, 0x7F, 0xFC, 0x3F, 0xFF, 0x9F, 0xFF, 0xCF, 0xF3, 0xF7, 0xF8, 0x7B, 0xFC, 0x3D, 0xFE, + 0x7E, 0xFF, 0xFE, 0x7F, 0xFF, 0x3F, 0xFE, 0x1E, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, + 0xFC, 0xFF, 0xEF, 0xFF, 0xF3, 0xFF, 0x0F, 0xF0, 0xFF, 0x3F, 0xFF, 0xFF, 0xFE, 0xFF, 0x80, 0x3F, 0xC1, 0xFF, 0x87, 0xFF, 0x1C, 0x7E, 0x00, 0x78, 0x01, 0xE1, 0xFF, 0xC7, 0xFF, 0x1F, 0xFC, 0x01, - 0xE0, 0x07, 0x9C, 0x7E, 0x7F, 0xF1, 0xFF, 0x83, 0xFC, 0x00, 0x73, 0x8F, 0x71, 0xCE, 0x00, 0x00, - 0x00, 0xFE, 0x1F, 0xE3, 0xFE, 0x63, 0xC7, 0xF8, 0xFF, 0x81, 0xE6, 0x7C, 0xFF, 0xBF, 0xE7, 0xF8, - 0x1F, 0xE0, 0x7F, 0x80, 0x00, 0x3E, 0x1F, 0x78, 0x79, 0xF1, 0xE3, 0xC7, 0x8F, 0x3C, 0x1E, 0xF0, - 0x7B, 0x80, 0xFE, 0x03, 0xF8, 0x07, 0xC0, 0x1F, 0x04, 0xF8, 0x1F, 0xE0, 0x7F, 0x01, 0xF8, 0x00, - 0x3F, 0xC3, 0xFC, 0x00, 0x00, 0x00, 0xF0, 0xFF, 0x1E, 0x79, 0xE7, 0x9E, 0x7B, 0xC3, 0xFC, 0x3F, - 0x81, 0xF8, 0x1F, 0x81, 0xF0, 0x0F, 0x01, 0xE0, 0xFE, 0x0F, 0xC0, 0xF8, 0x00, 0x1C, 0xE0, 0x7B, - 0x81, 0xCE, 0x00, 0x00, 0xF8, 0x7D, 0xE1, 0xE7, 0xC7, 0x8F, 0x1E, 0x3C, 0xF0, 0x7B, 0xC1, 0xEE, - 0x03, 0xF8, 0x0F, 0xE0, 0x1F, 0x00, 0x7C, 0x13, 0xE0, 0x7F, 0x81, 0xFC, 0x07, 0xE0, 0x00, 0x3B, - 0xC7, 0xBC, 0x3B, 0xC0, 0x00, 0x00, 0x0F, 0x0F, 0xF1, 0xE7, 0x9E, 0x79, 0xE7, 0xBC, 0x3F, 0xC3, - 0xF8, 0x1F, 0x81, 0xF8, 0x1F, 0x00, 0xF0, 0x1E, 0x0F, 0xE0, 0xFC, 0x0F, 0x80, 0x07, 0x70, 0x1D, - 0xC0, 0xEE, 0x07, 0x38, 0x0C, 0xC0, 0x00, 0x0F, 0x87, 0xDE, 0x1E, 0x7C, 0x78, 0xF1, 0xE3, 0xCF, - 0x07, 0xBC, 0x1E, 0xE0, 0x3F, 0x80, 0xFE, 0x01, 0xF0, 0x07, 0xC1, 0x3E, 0x07, 0xF8, 0x1F, 0xC0, - 0x7E, 0x00, 0x0C, 0xC1, 0xDE, 0x1D, 0xC3, 0xB8, 0x33, 0x80, 0x00, 0xF0, 0xFF, 0x1E, 0x79, 0xE7, - 0x9E, 0x7B, 0xC3, 0xFC, 0x3F, 0x81, 0xF8, 0x1F, 0x81, 0xF0, 0x0F, 0x01, 0xE0, 0xFE, 0x0F, 0xC0, - 0xF8, 0x00, 0x1D, 0xE1, 0xEF, 0x07, 0x78, 0x00, 0x0F, 0x07, 0xF8, 0x3F, 0xC1, 0xFE, 0x0F, 0xF8, - 0x7B, 0xC3, 0xDF, 0x1E, 0xFF, 0xF3, 0xFF, 0x8F, 0xFC, 0x01, 0xE0, 0x0F, 0x00, 0x78, 0x03, 0xC0, - 0x1E, 0x3B, 0xCF, 0x78, 0xEF, 0x00, 0x00, 0x00, 0xE3, 0xDC, 0x7B, 0x8F, 0x71, 0xEF, 0x3D, 0xFF, - 0xBF, 0xF3, 0xFE, 0x03, 0xC0, 0x78, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x0F, 0x01, 0xE0, 0x3C, - 0x07, 0x80, 0xF0, 0x1E, 0x03, 0xC0, 0x78, 0x0F, 0xE1, 0xFC, 0x3F, 0x80, 0xF0, 0x1E, 0x03, 0xC0, - 0x78, 0x00, 0xFF, 0xFF, 0xFF, 0xFE, 0x0F, 0x07, 0x83, 0xC1, 0xE0, 0xFC, 0x7E, 0x3F, 0x03, 0x81, - 0xC0, 0xE0, 0x07, 0x38, 0x03, 0xBC, 0x01, 0xCE, 0x00, 0x00, 0x0F, 0x00, 0x7F, 0x80, 0x3F, 0xC0, - 0x1F, 0xE0, 0x0F, 0xF0, 0x07, 0xFF, 0xC3, 0xFF, 0xF9, 0xFF, 0xFC, 0xFF, 0x3F, 0x7F, 0x87, 0xBF, - 0xC3, 0xDF, 0xE7, 0xEF, 0xFF, 0xE7, 0xFF, 0xF3, 0xFF, 0xE1, 0xE0, 0x0E, 0xF0, 0x3D, 0xE0, 0x3B, - 0xC0, 0x00, 0x00, 0x00, 0x1E, 0x03, 0xFC, 0x07, 0xF8, 0x0F, 0xF0, 0x1F, 0xFF, 0x3F, 0xFF, 0x7F, - 0xFE, 0xFF, 0x3D, 0xFF, 0xFB, 0xFF, 0xF7, 0xFF, 0xCF, 0x7C, 0x3C, 0xF0, 0xF3, 0xE3, 0xC7, 0xDE, - 0x0F, 0x78, 0xFF, 0xE3, 0xFF, 0x1E, 0xF8, 0x79, 0xE1, 0xE7, 0xC7, 0x0F, 0x3C, 0x1E, 0xF0, 0x7C, - 0x7F, 0x87, 0xFC, 0x7F, 0xC0, 0x3E, 0x01, 0xE0, 0x1E, 0x01, 0xE0, 0x1E, 0x01, 0xE0, 0x1E, 0xFF, - 0xFF, 0xFF, 0xFF, 0xF0, 0x7C, 0x3F, 0x1F, 0xC1, 0xE0, 0xF0, 0x78, 0x3C, 0x1E, 0x0F, 0x0F, 0xBF, - 0xDE, 0xEE, 0x70, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, - 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0xFF, 0xCF, 0xFE, 0xFF, 0xF0, 0x0F, 0x00, 0xF0, - 0x0F, 0xF0, 0xFF, 0x0F, 0xF0, 0xFF, 0x0F, 0xF0, 0xFF, 0x0F, 0xF0, 0xF0, 0x7D, 0xFF, 0xCF, 0x3C, - 0xF3, 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xFF, 0xFE, 0x7E, 0x3C, 0x38, 0x78, 0x78, 0x78, 0x78, 0x78, - 0x3C, 0x3C, 0x3C, 0x7F, 0xF3, 0xFF, 0xEF, 0xFF, 0x8E, 0x1E, 0x78, 0x79, 0xE1, 0xE7, 0x87, 0x9E, - 0x1E, 0x78, 0x79, 0xE1, 0xE7, 0x87, 0x9E, 0x1E, 0x78, 0x78, 0x73, 0xE3, 0x9F, 0x9C, 0xFE, 0xE0, - 0xF7, 0x07, 0xB8, 0x3D, 0xC1, 0xEF, 0x0F, 0x78, 0x7B, 0xC7, 0xCF, 0xFC, 0x7F, 0xE0, 0xFC, 0x00, - 0x7D, 0xFF, 0xCF, 0x3C, 0xF3, 0xC0, 0x7F, 0x8F, 0xF9, 0xFF, 0x80, 0xF0, 0x1E, 0x03, 0xC0, 0x78, - 0x0F, 0x01, 0xE0, 0x3C, 0x07, 0x80, 0xF0, 0x1E, 0x03, 0xC0, 0x78, 0x0F, 0x01, 0xE0, 0x7F, 0x1F, - 0xF3, 0xFF, 0x01, 0xE0, 0x3C, 0x03, 0xC0, 0x78, 0x0F, 0x03, 0xC0, 0x7B, 0xFF, 0x7F, 0xCF, 0xF0, - 0x30, 0x1E, 0x03, 0xC0, 0x78, 0x0F, 0xFF, 0xFF, 0xFF, 0xF8, 0x0F, 0x03, 0xC0, 0x78, 0x0F, 0x03, - 0xC0, 0x78, 0x0F, 0x03, 0xC0, 0x78, 0x1F, 0x00, 0x7F, 0xF1, 0xFF, 0xE7, 0xFF, 0x8F, 0x0F, 0x3C, - 0x3C, 0xF0, 0xF3, 0xC3, 0xCF, 0x0F, 0x3C, 0x3C, 0xF0, 0xF3, 0xFF, 0xCF, 0xFF, 0x3F, 0xFC, 0xF3, - 0xF0, 0xFF, 0xF1, 0xFF, 0xF3, 0xF1, 0xE3, 0xC3, 0xC7, 0x87, 0x8F, 0x0F, 0x1E, 0x1E, 0x38, 0x3C, - 0xF0, 0x79, 0xEF, 0xE3, 0xDF, 0xC7, 0xBF, 0x00, 0x7D, 0xF7, 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xF3, - 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0x7C, 0x7E, 0x7E, 0x1E, 0x0F, 0x0F, 0x0F, 0x0F, 0x0F, 0x0F, 0x7F, - 0xFF, 0xFF, 0x7F, 0xE1, 0xFF, 0xC7, 0xFF, 0x8E, 0x1E, 0x78, 0x3D, 0xE0, 0xF7, 0x83, 0xDE, 0x0F, - 0x78, 0x79, 0xF1, 0xE3, 0xFF, 0x8F, 0xFC, 0x0F, 0xE0, 0x00, 0x03, 0xC3, 0xDE, 0x1E, 0xF0, 0xF3, - 0x87, 0x9E, 0x38, 0xF3, 0xC7, 0x9E, 0x3C, 0xF0, 0xEF, 0x87, 0xF8, 0xFF, 0x8F, 0xF8, 0x7E, 0x01, - 0x00, 0x00, 0x1F, 0xC1, 0xFF, 0x1F, 0xFC, 0xF1, 0xEF, 0x0F, 0x3C, 0x3D, 0xF1, 0xEF, 0x8F, 0x1C, - 0x78, 0x03, 0xC0, 0x1E, 0x00, 0xF0, 0x07, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x78, 0x1F, 0xC3, - 0xFF, 0x1F, 0xFC, 0xF1, 0xEF, 0x0F, 0x3C, 0x3D, 0xF1, 0xEF, 0x8F, 0x1C, 0xF0, 0x0F, 0x9F, 0xFC, - 0xFF, 0xC7, 0xF8, 0x00, 0xF0, 0xF7, 0x8F, 0x78, 0xF7, 0xCE, 0x3D, 0xE3, 0xDE, 0x1F, 0xC1, 0xFC, - 0x1F, 0x80, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0x78, 0x07, 0x80, 0x78, 0x07, 0x80, 0xF8, 0xF7, - 0xCF, 0x3C, 0xF3, 0xEF, 0x1F, 0xE1, 0xFE, 0x0F, 0xC0, 0x78, 0x07, 0xC0, 0x3C, 0x7F, 0xEF, 0xFE, - 0xFF, 0xE0, 0x7F, 0xF9, 0xFF, 0xE7, 0xFF, 0x80, 0x1E, 0x00, 0x78, 0x03, 0xC7, 0x8F, 0x1E, 0x3C, - 0x79, 0xE1, 0xE7, 0x87, 0x9E, 0x1E, 0x78, 0x7B, 0xC1, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x00, - 0x7F, 0x9F, 0xF7, 0xFC, 0x0F, 0x03, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, - 0xC0, 0xF7, 0x9F, 0xEF, 0x3F, 0xDE, 0x7F, 0xBC, 0xFF, 0x79, 0xFF, 0xE3, 0xFF, 0xC7, 0x7E, 0x1E, - 0xF0, 0x3C, 0xF0, 0xF9, 0xFF, 0xE1, 0xFF, 0x81, 0xFE, 0x00, 0x7F, 0xF1, 0xFF, 0xE7, 0xFF, 0xC7, - 0x8F, 0x1E, 0x3C, 0x78, 0xF1, 0xE3, 0xC7, 0x8F, 0x1C, 0x3C, 0xF0, 0xF7, 0xC3, 0xDF, 0x0F, 0xF8, - 0x3C, 0x03, 0x80, 0x0F, 0x80, 0x1F, 0x00, 0x7F, 0x00, 0xFE, 0x03, 0xDE, 0x07, 0xBC, 0x0E, 0x78, - 0x3C, 0x78, 0x7F, 0xF1, 0xFF, 0xF3, 0xFF, 0xE7, 0x83, 0xDE, 0x07, 0xFC, 0x07, 0x80, 0x00, 0x03, - 0x80, 0x07, 0x00, 0x0E, 0x00, 0x08, 0x00, 0x0E, 0x0F, 0xF0, 0xFF, 0x1F, 0xE0, 0x1C, 0x7F, 0xDF, - 0xFB, 0xFF, 0xF1, 0xFF, 0xFD, 0xFF, 0x9F, 0xE0, 0xF0, 0x1C, 0x03, 0xC0, 0x78, 0x06, 0x00, 0x07, - 0x80, 0x0F, 0x80, 0x07, 0x00, 0x1E, 0x00, 0x38, 0x00, 0x70, 0x01, 0xF0, 0x03, 0xE0, 0x0F, 0xE0, - 0x1F, 0xC0, 0x7B, 0xC0, 0xF7, 0x81, 0xCF, 0x07, 0x8F, 0x0F, 0xFE, 0x3F, 0xFE, 0x7F, 0xFC, 0xF0, - 0x7B, 0xC0, 0xFF, 0x80, 0xF0, 0x0E, 0x03, 0xE0, 0x7C, 0x03, 0x80, 0xE0, 0x1C, 0x1F, 0xE1, 0xFE, - 0x3F, 0xC0, 0x38, 0xFF, 0xBF, 0xF7, 0xFF, 0xE3, 0xFF, 0xFB, 0xFF, 0x3F, 0xC1, 0xE0, 0x00, 0x08, - 0x00, 0x38, 0x00, 0xF0, 0x0B, 0xC0, 0x3F, 0x01, 0xFC, 0x03, 0xB8, 0x02, 0x20, 0x03, 0x80, 0x0F, - 0x80, 0x1F, 0x00, 0x7F, 0x00, 0xFE, 0x03, 0xDE, 0x07, 0xBC, 0x0E, 0x78, 0x3C, 0x78, 0x7F, 0xF1, - 0xFF, 0xF3, 0xFF, 0xE7, 0x83, 0xDE, 0x07, 0xFC, 0x07, 0x80, 0x00, 0x00, 0x03, 0x80, 0x1C, 0x01, - 0xE0, 0xFE, 0x0F, 0xE0, 0xFE, 0x03, 0x60, 0x0E, 0x03, 0xFC, 0x0F, 0xF0, 0x7F, 0x80, 0x1C, 0x1F, - 0xF1, 0xFF, 0x8F, 0xFC, 0xF1, 0xE7, 0xFF, 0x1F, 0xF8, 0x7F, 0x80, 0xF0, 0x00, 0x00, 0xC0, 0x03, - 0xC0, 0x07, 0xC0, 0x0F, 0x80, 0x3F, 0x01, 0xFC, 0x03, 0xB8, 0x02, 0x20, 0x03, 0x80, 0x0F, 0x80, - 0x1F, 0x00, 0x7F, 0x00, 0xFE, 0x03, 0xDE, 0x07, 0xBC, 0x0E, 0x78, 0x3C, 0x78, 0x7F, 0xF1, 0xFF, - 0xF3, 0xFF, 0xE7, 0x83, 0xDE, 0x07, 0xFC, 0x07, 0x80, 0x00, 0x00, 0x70, 0x0F, 0x01, 0xF0, 0xEE, - 0x3E, 0x8F, 0xE0, 0xD8, 0x0E, 0x0F, 0xF0, 0xFF, 0x1F, 0xE0, 0x1C, 0x7F, 0xDF, 0xFB, 0xFF, 0xF1, - 0xFF, 0xFD, 0xFF, 0x9F, 0xE0, 0xF0, 0x00, 0x20, 0x01, 0xF0, 0x03, 0xF0, 0x01, 0xC0, 0x17, 0x80, - 0x7E, 0x03, 0xF8, 0x07, 0x70, 0x04, 0x40, 0x07, 0x00, 0x1F, 0x00, 0x3E, 0x00, 0xFE, 0x01, 0xFC, - 0x07, 0xBC, 0x0F, 0x78, 0x1C, 0xF0, 0x78, 0xF0, 0xFF, 0xE3, 0xFF, 0xE7, 0xFF, 0xCF, 0x07, 0xBC, - 0x0F, 0xF8, 0x0F, 0x01, 0xC0, 0x1F, 0x01, 0xF0, 0x0F, 0x0E, 0xE1, 0xFC, 0x3F, 0x81, 0xB0, 0x0E, - 0x07, 0xF8, 0x3F, 0xC3, 0xFC, 0x01, 0xC3, 0xFE, 0x7F, 0xE7, 0xFE, 0xF1, 0xEF, 0xFE, 0x7F, 0xE3, - 0xFC, 0x0F, 0x00, 0x06, 0x40, 0x1F, 0xE0, 0x7F, 0x80, 0x6E, 0x00, 0x10, 0x00, 0x70, 0x03, 0xF8, - 0x07, 0x70, 0x04, 0x40, 0x07, 0x00, 0x1F, 0x00, 0x3E, 0x00, 0xFE, 0x01, 0xFC, 0x07, 0xBC, 0x0F, - 0x78, 0x1C, 0xF0, 0x78, 0xF0, 0xFF, 0xE3, 0xFF, 0xE7, 0xFF, 0xCF, 0x07, 0xBC, 0x0F, 0xF8, 0x0F, - 0x1D, 0x87, 0xF1, 0xFE, 0x00, 0x00, 0xE0, 0x3E, 0x0F, 0xE0, 0xD8, 0x0E, 0x0F, 0xF0, 0xFF, 0x1F, - 0xE0, 0x1C, 0x7F, 0xDF, 0xFB, 0xFF, 0xF1, 0xFF, 0xFD, 0xFF, 0x9F, 0xE0, 0xF0, 0x01, 0x00, 0x07, - 0x00, 0x3F, 0x80, 0x77, 0x00, 0x44, 0x00, 0x70, 0x01, 0xF0, 0x03, 0xE0, 0x0F, 0xE0, 0x1F, 0xC0, - 0x7B, 0xC0, 0xF7, 0x81, 0xCF, 0x07, 0x8F, 0x0F, 0xFE, 0x3F, 0xFE, 0x7F, 0xFC, 0xF0, 0x7B, 0xC0, - 0xFF, 0x80, 0xF0, 0x00, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xC0, 0x01, 0x00, 0x00, 0x01, 0xC0, 0x7C, - 0x1F, 0xC1, 0xB0, 0x1C, 0x1F, 0xE1, 0xFE, 0x3F, 0xC0, 0x38, 0xFF, 0xBF, 0xF7, 0xFF, 0xE3, 0xFF, - 0xFB, 0xFF, 0x3F, 0xC1, 0xE0, 0x38, 0x07, 0x80, 0xF0, 0x0C, 0x00, 0x00, 0x40, 0x01, 0xC0, 0x07, - 0x80, 0x1E, 0x00, 0x38, 0x01, 0xDC, 0x03, 0xF8, 0x03, 0xF0, 0x03, 0x80, 0x07, 0x00, 0x1F, 0x00, + 0xE0, 0x07, 0x9C, 0x7E, 0x7F, 0xF1, 0xFF, 0x83, 0xFC, 0x00, 0xF0, 0x3F, 0x87, 0x83, 0xFF, 0x3C, + 0x3F, 0xF9, 0xE3, 0xF3, 0xEF, 0x1E, 0x0F, 0xF9, 0xF0, 0x3F, 0xFF, 0x01, 0xFF, 0xF8, 0x0F, 0xFF, + 0xC0, 0x7F, 0x9F, 0x03, 0xFC, 0x78, 0x3F, 0xE3, 0xF3, 0xEF, 0x0F, 0xFF, 0x78, 0x7F, 0xF3, 0xC0, + 0xFE, 0x00, 0x0F, 0xF8, 0xFF, 0xCF, 0xFE, 0x7C, 0xF7, 0x87, 0xBC, 0x3D, 0xF9, 0xE7, 0xFF, 0x3F, + 0xF8, 0xFF, 0xC7, 0x9E, 0x7C, 0xF3, 0xC7, 0xBE, 0x3D, 0xE1, 0xE0, 0x3F, 0x87, 0xF8, 0xFF, 0x19, + 0xF3, 0xFE, 0xFF, 0xDE, 0x7F, 0xCF, 0x7F, 0xEF, 0xFC, 0xFF, 0x00, 0x03, 0xE0, 0xFE, 0x1F, 0xE3, + 0xFC, 0x7C, 0x07, 0xFC, 0x7F, 0xE7, 0xFE, 0x79, 0xF7, 0x8F, 0x78, 0xF7, 0x8F, 0x7D, 0xF7, 0xFE, + 0x3F, 0xE1, 0xF8, 0xFF, 0x9F, 0xFB, 0xFF, 0x79, 0xEF, 0xFD, 0xFF, 0xBC, 0x7F, 0x8F, 0xFF, 0xFF, + 0xFB, 0xFE, 0x00, 0xFF, 0xFF, 0xFF, 0xFE, 0x0F, 0x07, 0x83, 0xC1, 0xE0, 0xF0, 0x78, 0x3C, 0x00, + 0x1F, 0xF0, 0x7F, 0xC1, 0xFF, 0x07, 0xBC, 0x1E, 0xF0, 0x73, 0xC3, 0xCF, 0x0F, 0x3C, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFF, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x70, 0x1F, 0x83, 0xFE, 0x7F, 0xE7, 0x9F, 0x7F, + 0xF7, 0xFF, 0x78, 0x07, 0xC6, 0x7F, 0xE3, 0xFE, 0x1F, 0xE0, 0xF9, 0xE7, 0x9F, 0x7B, 0xE3, 0xDF, + 0xF0, 0x7F, 0xF8, 0x1F, 0xFC, 0x03, 0xFF, 0x01, 0xFF, 0xE0, 0xFF, 0xF8, 0x3D, 0xEF, 0x1E, 0x79, + 0xEF, 0x9E, 0x7C, 0x7F, 0x1F, 0xE7, 0xFD, 0x9F, 0x3F, 0x8F, 0xE0, 0x3D, 0x8F, 0x7F, 0xFF, 0xE7, + 0xF0, 0xF1, 0xFE, 0x7F, 0xDF, 0xFB, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, 0xF9, 0xFF, 0x3F, 0xC7, + 0x80, 0x31, 0x87, 0x70, 0xFE, 0x0F, 0x80, 0x00, 0x00, 0x3C, 0x7F, 0x9F, 0xF7, 0xFE, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFB, 0xFE, 0x7F, 0xCF, 0xF1, 0xE0, 0xF3, 0xEF, 0x7C, 0xFF, 0x8F, 0xF0, 0xFE, + 0x0F, 0xE0, 0xFF, 0x0F, 0xF8, 0xF7, 0xCF, 0x3C, 0xF1, 0xE0, 0x1F, 0xF1, 0xFF, 0x1F, 0xF1, 0xEF, + 0x1E, 0xF1, 0xEF, 0x3C, 0xF7, 0xCF, 0xFC, 0xFF, 0x8F, 0xF0, 0xF0, 0x70, 0x39, 0xE1, 0xEF, 0x8F, + 0xFF, 0x3F, 0xFD, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, 0xF7, 0xBF, 0xDE, 0xFF, 0x03, 0xC0, 0xF3, + 0xFC, 0xFF, 0x3F, 0xCF, 0xFF, 0xFF, 0xFF, 0xFF, 0xCF, 0xF3, 0xFC, 0xFF, 0x3C, 0x1F, 0xC3, 0xFE, + 0x7F, 0xE7, 0xDF, 0x78, 0xF7, 0x8F, 0x78, 0xF7, 0xDF, 0x7F, 0xE3, 0xFE, 0x1F, 0xC0, 0xFF, 0xFF, + 0xFF, 0xFF, 0xCF, 0xF3, 0xFC, 0xFF, 0x3F, 0xCF, 0xF3, 0xFC, 0xFF, 0x3C, 0xFF, 0x1F, 0xFB, 0xFF, + 0x79, 0xFF, 0x1F, 0xE3, 0xFC, 0x7F, 0x9F, 0xFF, 0xDF, 0xFB, 0xFE, 0x78, 0x0F, 0x01, 0xE0, 0x3C, + 0x00, 0x1F, 0xCF, 0xF7, 0xFD, 0xF2, 0x78, 0x1E, 0x07, 0x81, 0xF3, 0x7F, 0xCF, 0xF1, 0xFC, 0xFF, + 0xFF, 0xFF, 0xFF, 0x87, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x38, 0x00, 0xF0, + 0xFF, 0x1E, 0x79, 0xE7, 0x9E, 0x7B, 0xC3, 0xFC, 0x3F, 0x81, 0xF8, 0x1F, 0x81, 0xF0, 0x0F, 0x01, + 0xE0, 0xFE, 0x0F, 0xC0, 0xF8, 0x00, 0x01, 0xC0, 0x03, 0xC0, 0x03, 0xC0, 0x03, 0xC0, 0x03, 0xC0, + 0x0F, 0xF8, 0x3F, 0xFC, 0x7F, 0xFE, 0x7F, 0xDF, 0x7B, 0xCF, 0x7B, 0xCF, 0x7B, 0xCF, 0x7F, 0xDF, + 0x7F, 0xFE, 0x3F, 0xFC, 0x0F, 0xF8, 0x03, 0xC0, 0x03, 0xC0, 0x03, 0xC0, 0x03, 0xC0, 0xF1, 0xE7, + 0x9E, 0x3F, 0xC3, 0xF8, 0x1F, 0x80, 0xF0, 0x1F, 0x83, 0xFC, 0x7B, 0xC7, 0x9E, 0xF1, 0xF0, 0xF3, + 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, + 0x07, 0x00, 0x70, 0x07, 0x71, 0xEE, 0x3D, 0xC7, 0xB8, 0xF7, 0x9E, 0xFF, 0xDF, 0xF9, 0xFF, 0x01, + 0xE0, 0x3C, 0x07, 0x80, 0xF3, 0xCF, 0xF3, 0xCF, 0xF3, 0xCF, 0xF3, 0xCF, 0xF3, 0xCF, 0xF3, 0xCF, + 0xF3, 0xCF, 0xF3, 0xCF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF3, 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, + 0xF3, 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xFF, 0xFF, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFC, 0x00, 0x0F, 0x00, 0x03, 0xC0, 0x00, 0xF0, 0xFE, 0x07, 0xF0, 0x3F, 0x80, 0x3C, + 0x01, 0xFE, 0x0F, 0xF8, 0x7F, 0xE3, 0xCF, 0x1F, 0xF8, 0xFF, 0xC7, 0xF8, 0xF0, 0x1F, 0xE0, 0x3F, + 0xC0, 0x7F, 0x80, 0xFF, 0xF9, 0xFF, 0xFB, 0xFF, 0xF7, 0xF9, 0xEF, 0xFF, 0xDF, 0xFF, 0xBF, 0xFE, + 0x78, 0xF0, 0x1E, 0x03, 0xC0, 0x78, 0x0F, 0xF9, 0xFF, 0xBF, 0xF7, 0x9E, 0xFF, 0xDF, 0xFB, 0xFE, + 0x00, 0x7F, 0x0F, 0xF1, 0xFF, 0x31, 0xE3, 0xFC, 0x7F, 0xC0, 0xF3, 0x3E, 0x7F, 0xDF, 0xF3, 0xFC, + 0x00, 0xF0, 0xFC, 0x78, 0xFF, 0x3C, 0xFF, 0xDE, 0x7D, 0xEF, 0xFC, 0x7F, 0xFC, 0x3F, 0xFF, 0x1F, + 0xE7, 0x9E, 0xF3, 0xFF, 0x78, 0xFF, 0x3C, 0x3F, 0x00, 0x1F, 0xE7, 0xFD, 0xFF, 0xBC, 0xF7, 0x9E, + 0xFF, 0xDF, 0xF9, 0xFF, 0x3D, 0xEF, 0x3D, 0xE7, 0x80, 0x0C, 0x00, 0xE0, 0x0F, 0x00, 0x78, 0x03, + 0x00, 0x00, 0x1F, 0x83, 0xFE, 0x7F, 0xE7, 0x9F, 0x7F, 0xF7, 0xFF, 0x78, 0x07, 0xC6, 0x7F, 0xE3, + 0xFE, 0x1F, 0xE0, 0x3D, 0xC3, 0xDE, 0x3D, 0xC0, 0x00, 0x00, 0x01, 0xF8, 0x3F, 0xE7, 0xFE, 0x79, + 0xF7, 0xFF, 0x7F, 0xF7, 0x80, 0x7C, 0x67, 0xFE, 0x3F, 0xE1, 0xFE, 0x78, 0x07, 0x80, 0xFF, 0x0F, + 0xF0, 0x78, 0x07, 0xFC, 0x7F, 0xE7, 0xFE, 0x79, 0xE7, 0x8F, 0x78, 0xF7, 0x8F, 0x78, 0xF7, 0x8F, + 0x78, 0xF7, 0x8F, 0x01, 0xF0, 0x7E, 0x07, 0xE0, 0x7C, 0x0C, 0x07, 0x07, 0x87, 0x83, 0x80, 0x03, + 0xFF, 0xFF, 0xFF, 0xF8, 0x3C, 0x1E, 0x0F, 0x07, 0x83, 0xC1, 0xE0, 0xF0, 0x00, 0x1F, 0xC7, 0xF9, + 0xFF, 0x3C, 0x6F, 0xF1, 0xFE, 0x3C, 0x03, 0xE6, 0x7F, 0xC7, 0xFC, 0x7F, 0x00, 0x3F, 0x9F, 0xE7, + 0xF9, 0xE6, 0x7F, 0x9F, 0xE3, 0xFD, 0x8F, 0x7F, 0xDF, 0xE7, 0xF0, 0xFF, 0xFF, 0x0F, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFF, 0x73, 0xBF, 0xDC, 0xE0, 0x00, 0x00, 0xF0, 0x78, 0x3C, 0x1E, 0x0F, 0x07, 0x83, + 0xC1, 0xE0, 0xF0, 0x78, 0x3C, 0x1E, 0x3C, 0x78, 0xF0, 0x03, 0xC7, 0x8F, 0x1E, 0x3C, 0x78, 0xF1, + 0xE3, 0xC7, 0x8F, 0x1F, 0xFF, 0xF7, 0xC0, 0x1F, 0xF0, 0x03, 0xFE, 0x00, 0x7F, 0xC0, 0x0F, 0x78, + 0x01, 0xEF, 0xF8, 0x3D, 0xFF, 0x8F, 0x3F, 0xF3, 0xE7, 0x9F, 0xFC, 0xFF, 0xDF, 0x1F, 0xFB, 0xC3, + 0xFE, 0x00, 0xF3, 0xC0, 0x79, 0xE0, 0x3C, 0xF0, 0x1E, 0x78, 0x0F, 0xFF, 0xE7, 0xFF, 0xFB, 0xFF, + 0xFF, 0xE7, 0x9F, 0xF3, 0xFF, 0xF9, 0xFF, 0xBC, 0x7F, 0x80, 0x78, 0x07, 0x80, 0xFF, 0x0F, 0xF0, + 0x78, 0x07, 0xFC, 0x7F, 0xE7, 0xFE, 0x79, 0xE7, 0x8F, 0x78, 0xF7, 0x8F, 0x78, 0xF7, 0x8F, 0x78, + 0xF7, 0x8F, 0x02, 0x00, 0x70, 0x0F, 0x01, 0xE0, 0x0C, 0x00, 0x00, 0xF3, 0xEF, 0x7C, 0xFF, 0x8F, + 0xF0, 0xFE, 0x0F, 0xE0, 0xFF, 0x0F, 0xF8, 0xF7, 0xCF, 0x3C, 0xF1, 0xE0, 0x18, 0x07, 0x80, 0xF0, + 0x0F, 0x00, 0xE0, 0x00, 0x3C, 0x7F, 0x9F, 0xF7, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xFE, + 0x7F, 0xCF, 0xF1, 0xE0, 0x19, 0x83, 0xBC, 0x3F, 0x81, 0xF0, 0x00, 0x00, 0x00, 0xF0, 0xFF, 0x1E, + 0x79, 0xE7, 0x9E, 0x7B, 0xC3, 0xFC, 0x3F, 0x81, 0xF8, 0x1F, 0x81, 0xF0, 0x0F, 0x01, 0xE0, 0xFE, + 0x0F, 0xC0, 0xF8, 0x00, 0xF3, 0xFC, 0xFF, 0x3F, 0xCF, 0xF3, 0xFC, 0xFF, 0x3F, 0xCF, 0xFF, 0xFF, + 0xFF, 0xFC, 0x78, 0x1E, 0x07, 0x80, 0x1E, 0x00, 0x3C, 0x03, 0xFF, 0x87, 0xFF, 0x0F, 0xFE, 0x03, + 0xC0, 0x07, 0xFC, 0x0F, 0xFE, 0x1F, 0xFE, 0x3C, 0xFC, 0x78, 0x78, 0xF0, 0xF1, 0xE7, 0xE3, 0xFF, + 0x87, 0xFF, 0x0F, 0xF8, 0x1C, 0x01, 0xE0, 0x0F, 0x00, 0x78, 0x03, 0xC0, 0x7F, 0xE3, 0xFF, 0x1F, + 0xF8, 0x3C, 0x01, 0xE0, 0x0F, 0xF8, 0x7F, 0xE3, 0xCF, 0x9F, 0xFC, 0xFF, 0xC3, 0xFC, 0x0F, 0xE0, + 0x7F, 0xE1, 0xFF, 0xE3, 0xE7, 0xEF, 0x03, 0xDF, 0xF7, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xFF, 0xE0, + 0x7F, 0xE0, 0xF3, 0xF7, 0xE7, 0xFF, 0x87, 0xFF, 0x03, 0xF8, 0x00, 0x1F, 0xC3, 0xFE, 0x7F, 0xE7, + 0xDF, 0x7E, 0xF7, 0xFF, 0x7F, 0xF7, 0xDF, 0x7F, 0xE3, 0xFE, 0x1F, 0xC0, 0xF0, 0x0F, 0xBE, 0x07, + 0xE7, 0x83, 0xF9, 0xE0, 0xF4, 0x7C, 0x3C, 0x0F, 0x1E, 0x03, 0xC7, 0x80, 0x7B, 0xC0, 0x1E, 0xF0, + 0x07, 0xFC, 0x00, 0xFE, 0x00, 0x3F, 0x80, 0x0F, 0xC0, 0x01, 0xF0, 0x00, 0x7C, 0x00, 0xF0, 0xFF, + 0x8F, 0xDE, 0x7E, 0xF3, 0x87, 0xBC, 0x1D, 0xE0, 0xFE, 0x03, 0xF0, 0x1F, 0x00, 0xF8, 0x03, 0xC0, + 0x1E, 0xE0, 0x0F, 0xE0, 0x0F, 0xC0, 0x00, 0x00, 0xF0, 0x3C, 0xF0, 0x7C, 0xF0, 0xFC, 0xF1, 0xFC, + 0xF1, 0xFC, 0xF3, 0xFC, 0xF7, 0xBC, 0xF7, 0xBC, 0xFF, 0x3C, 0xFE, 0x3C, 0xFE, 0x3C, 0xFC, 0x3C, + 0xF8, 0x3F, 0xF8, 0x3F, 0xF0, 0x3F, 0x00, 0x1E, 0x00, 0x1E, 0x00, 0x3C, 0x00, 0x1C, 0x7B, 0x83, + 0xFC, 0x0F, 0xC0, 0x00, 0x00, 0x00, 0x78, 0xE3, 0xCF, 0x1E, 0xF8, 0xFF, 0xC7, 0xFE, 0x3F, 0xF1, + 0xFB, 0x8F, 0x9C, 0x7C, 0xFB, 0xC7, 0xDE, 0x3E, 0x00, 0xF0, 0x0F, 0x00, 0x30, 0x38, 0x01, 0xC0, + 0x3F, 0xC1, 0xFE, 0x03, 0x80, 0x1F, 0xF0, 0xFF, 0xC7, 0xFF, 0x38, 0xF9, 0xC3, 0xCE, 0x1E, 0x71, + 0xF3, 0xFF, 0x9F, 0xF8, 0xFF, 0x80, 0x78, 0x0F, 0xF0, 0xFF, 0x07, 0x80, 0x7F, 0xC7, 0xFE, 0x79, + 0xE7, 0x9F, 0x7F, 0xE7, 0xFE, 0x7F, 0xC0, 0xFF, 0xCF, 0xFE, 0xFF, 0xFF, 0x1F, 0xF2, 0xFF, 0xFF, + 0xF7, 0xFF, 0xFF, 0xFF, 0xEF, 0xFC, 0xF1, 0xEF, 0x0E, 0xF0, 0x8F, 0x00, 0xF0, 0x00, 0xFF, 0x9F, + 0xFB, 0xFF, 0xF9, 0xFF, 0x1F, 0xE3, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xFF, 0x78, 0xEF, 0x1D, + 0xE1, 0x3C, 0x00, 0x01, 0xE0, 0x3C, 0x07, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x07, 0x80, 0xF0, 0x1E, + 0x03, 0xC0, 0x78, 0x0F, 0x01, 0xE0, 0x3C, 0x07, 0x80, 0xF0, 0x1E, 0x00, 0x07, 0x83, 0xC1, 0xFF, + 0xFF, 0xFF, 0xFF, 0xC1, 0xE0, 0xF0, 0x78, 0x3C, 0x1E, 0x0F, 0x07, 0x80, 0x3F, 0xF3, 0xFF, 0x3F, + 0xF3, 0xC0, 0x3C, 0x03, 0xC0, 0xFF, 0x8F, 0xF8, 0xFF, 0x83, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, + 0xC0, 0x3C, 0x00, 0x7F, 0xDF, 0xF7, 0xFD, 0xE0, 0x78, 0x3F, 0xCF, 0xF1, 0xE0, 0x78, 0x1E, 0x07, + 0x80, 0xFF, 0xE7, 0xFF, 0x3F, 0xF9, 0xE0, 0x0F, 0x00, 0x78, 0x03, 0xFF, 0x1F, 0xFC, 0xFF, 0xF7, + 0x8F, 0xBC, 0x3D, 0xE0, 0xFF, 0x07, 0xF8, 0x3F, 0xC3, 0xC0, 0x3E, 0x07, 0xF0, 0x3F, 0x01, 0xF0, + 0xFF, 0x9F, 0xF3, 0xFE, 0x78, 0x0F, 0x01, 0xFE, 0x3F, 0xE7, 0xFE, 0xF3, 0xDE, 0x3F, 0xC7, 0x81, + 0xE0, 0xFC, 0x1F, 0x83, 0xE0, 0xF8, 0xF0, 0xF1, 0xF3, 0xC7, 0xC3, 0xCF, 0x3E, 0x0F, 0xBD, 0xF0, + 0x1F, 0xF7, 0xC0, 0x3F, 0xFE, 0x00, 0x7F, 0xF0, 0x01, 0xFF, 0x80, 0x0F, 0xFF, 0x00, 0x3F, 0xFE, + 0x01, 0xFF, 0x7C, 0x0F, 0xBD, 0xF8, 0x7C, 0xF3, 0xF9, 0xE3, 0xC7, 0xEF, 0x8F, 0x0F, 0x80, 0x00, + 0x0E, 0x00, 0x00, 0x38, 0x00, 0x00, 0xE0, 0x00, 0x03, 0x80, 0xF9, 0xE7, 0x9F, 0x7B, 0xE3, 0xDF, + 0xF0, 0x7F, 0xF8, 0x1F, 0xFC, 0x03, 0xFF, 0x01, 0xFF, 0xE0, 0xFF, 0xFC, 0x3D, 0xFF, 0xDE, 0x7B, + 0xFF, 0x9E, 0x7C, 0x00, 0x07, 0x00, 0x01, 0xC0, 0x00, 0x70, 0x3F, 0x87, 0xFE, 0x7F, 0xE3, 0x1F, + 0x01, 0xF0, 0x3E, 0x1F, 0xE1, 0xFE, 0x1F, 0xF0, 0x1F, 0x00, 0xF7, 0x1F, 0x7F, 0xFF, 0xFE, 0x7F, + 0xC0, 0x60, 0x0F, 0x00, 0x70, 0x1F, 0x01, 0xF0, 0x7F, 0x1F, 0xE7, 0xFD, 0x9F, 0x3F, 0x8F, 0xE0, + 0x3D, 0x8F, 0x7F, 0xFF, 0xEF, 0xF8, 0x30, 0x0E, 0x03, 0x83, 0xE0, 0xF8, 0xF0, 0xF9, 0xE3, 0xE3, + 0xCF, 0x87, 0xBE, 0x0F, 0xF8, 0x1F, 0xE0, 0x3F, 0x80, 0x7F, 0x80, 0xFF, 0x81, 0xFF, 0x83, 0xDF, + 0x87, 0x9F, 0x0F, 0x1F, 0xDE, 0x1F, 0xBC, 0x1F, 0x00, 0x0E, 0x00, 0x1C, 0x00, 0x38, 0x00, 0x70, + 0xF3, 0xEF, 0x3C, 0xF7, 0x8F, 0xF0, 0xFE, 0x0F, 0xE0, 0xFF, 0x0F, 0xF8, 0xF7, 0xFF, 0x3F, 0xF1, + 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0xF0, 0x3E, 0xF0, 0x3C, 0xF6, 0x7C, 0xF6, 0xF8, 0xF7, 0xF0, 0xFF, + 0xE0, 0xFF, 0xE0, 0xFF, 0xE0, 0xF7, 0xF0, 0xF6, 0xF8, 0xF6, 0xF8, 0xF0, 0x7C, 0xF0, 0x3C, 0xF0, + 0x3E, 0xF0, 0x1E, 0xF0, 0xFB, 0xF3, 0xCF, 0xDE, 0x3F, 0xF0, 0xFF, 0x83, 0xFF, 0x0F, 0xFE, 0x3F, + 0x78, 0xF1, 0xF3, 0xC3, 0xEF, 0x07, 0x80, 0x3C, 0x00, 0x78, 0x7F, 0xF9, 0xF7, 0xF7, 0xC3, 0xDF, + 0x07, 0xFC, 0x0F, 0xF0, 0x1F, 0xC0, 0x3F, 0x80, 0x7F, 0x00, 0xFF, 0x81, 0xEF, 0x03, 0xCF, 0x07, + 0x9F, 0x0F, 0x1F, 0x1E, 0x1E, 0x78, 0x07, 0xF7, 0xFF, 0xFD, 0xFF, 0xC7, 0xFC, 0x3F, 0xC1, 0xFC, + 0x0F, 0xF0, 0x7F, 0xC3, 0xDF, 0x1E, 0x7C, 0xF1, 0xE0, 0xFF, 0x1F, 0x7F, 0x9F, 0x3F, 0xCF, 0x01, + 0xEF, 0x00, 0xFF, 0x80, 0x7F, 0x80, 0x3F, 0x80, 0x1F, 0xE0, 0x0F, 0xF0, 0x07, 0xBC, 0x03, 0xDF, + 0x01, 0xE7, 0xC0, 0xF1, 0xE0, 0x78, 0xF8, 0x3C, 0x3E, 0xFE, 0x7B, 0xFB, 0xCF, 0xFE, 0x07, 0xF0, + 0x1F, 0xC0, 0x7F, 0x01, 0xFE, 0x07, 0xFC, 0x1E, 0xF8, 0x79, 0xE1, 0xE7, 0xC0, 0xF0, 0x78, 0xF0, + 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xFF, 0xF8, 0xFF, 0xF8, 0xFF, 0xF8, 0xF0, + 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x7F, 0xF0, 0x7F, 0xF0, 0x7F, 0x00, 0x0F, 0x00, 0x0F, 0x00, + 0x0F, 0x00, 0x0F, 0xF3, 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xFF, 0xCF, 0xFC, 0xFF, 0xCF, 0x3C, 0xF3, + 0xFF, 0x3F, 0xF3, 0xF0, 0x07, 0x00, 0x70, 0x07, 0xF0, 0x7F, 0xF8, 0x3F, 0xFC, 0x1F, 0xFE, 0x0F, + 0x0F, 0x07, 0x87, 0x83, 0xC3, 0xFF, 0xE1, 0xFF, 0xF0, 0xFF, 0xF8, 0x78, 0x3C, 0x3C, 0x1E, 0x1E, + 0x0F, 0x0F, 0x07, 0x87, 0x83, 0xC3, 0xC1, 0xE0, 0xF3, 0xFF, 0x9F, 0xFC, 0xFF, 0xE7, 0x8F, 0xFC, + 0x7F, 0xE3, 0xFF, 0x1E, 0x78, 0xF3, 0xC7, 0x9E, 0x3C, 0xF0, 0xFF, 0xF8, 0x03, 0xFF, 0xE0, 0x0F, + 0xFF, 0x80, 0x3C, 0x1E, 0x00, 0xF0, 0x78, 0x03, 0xC1, 0xE0, 0x0F, 0x07, 0xFE, 0x3C, 0x1F, 0xFC, + 0xF0, 0x7F, 0xFB, 0xC1, 0xE3, 0xEF, 0x07, 0x87, 0xBC, 0x1E, 0x0F, 0xF0, 0x78, 0x3F, 0xC1, 0xE0, + 0xFF, 0x07, 0x87, 0x80, 0x00, 0x3E, 0x00, 0x03, 0xF8, 0x00, 0x0F, 0xC0, 0x00, 0x3E, 0x00, 0xFF, + 0xC0, 0x7F, 0xE0, 0x3F, 0xF0, 0x1E, 0x78, 0x0F, 0x3F, 0xE7, 0x9F, 0xFB, 0xCF, 0xFD, 0xE7, 0x9F, + 0xF3, 0xC7, 0xF9, 0xE3, 0xFC, 0xF1, 0xE0, 0x01, 0xF0, 0x03, 0xF0, 0x01, 0xF8, 0x00, 0xF8, 0x0F, + 0xE0, 0x3F, 0xE0, 0x7F, 0xE0, 0x7E, 0x60, 0xF8, 0x00, 0xF1, 0xFC, 0xF3, 0xFE, 0xF3, 0xFE, 0xF7, + 0xDE, 0xF7, 0x8E, 0xF7, 0x9E, 0xFF, 0xBE, 0x7F, 0xFE, 0x3F, 0xFC, 0x1F, 0xF0, 0x01, 0xFC, 0x00, + 0xFE, 0x00, 0x7E, 0x00, 0x1E, 0x1F, 0xC1, 0xFE, 0x1F, 0xE0, 0xFF, 0xE7, 0x3F, 0xBB, 0xDD, 0xDC, + 0xEF, 0xEF, 0x7F, 0xF9, 0xFF, 0x87, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x7C, 0x0F, 0xF1, 0xFF, 0x9F, + 0xFC, 0xFD, 0xEF, 0x80, 0x78, 0x03, 0xC0, 0x1E, 0x00, 0xF0, 0x07, 0x80, 0x3E, 0x00, 0xF8, 0xE7, + 0xFF, 0x1F, 0xF8, 0x3F, 0xC0, 0xE0, 0x07, 0x80, 0x1C, 0x03, 0xE0, 0x1F, 0x00, 0x1F, 0xCF, 0xF7, + 0xFD, 0xF2, 0x78, 0x1E, 0x07, 0x81, 0xF3, 0x7F, 0xCF, 0xF0, 0xFC, 0x3C, 0x07, 0x07, 0xC1, 0xF0, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x1E, 0x00, 0xF0, 0x07, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x78, + 0x03, 0xC0, 0x1E, 0x00, 0xFE, 0x07, 0xF0, 0x3F, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x78, 0xFF, + 0xFF, 0xFF, 0xFF, 0x8F, 0x01, 0xE0, 0x3C, 0x07, 0x80, 0xF0, 0x1F, 0x83, 0xF0, 0x7E, 0x01, 0xC0, + 0x38, 0x07, 0x00, 0xF8, 0x3F, 0xE1, 0xE7, 0xC7, 0x8F, 0x3C, 0x3F, 0xF0, 0x7F, 0x81, 0xFE, 0x03, + 0xF0, 0x0F, 0x80, 0x1E, 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x00, 0xF1, 0xFF, + 0x1E, 0x79, 0xE7, 0x9E, 0x7B, 0xC3, 0xFC, 0x3F, 0x81, 0xF8, 0x1F, 0x80, 0xF0, 0x0F, 0x00, 0xF0, + 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF8, 0x3F, 0xE1, 0xE7, 0x87, 0x8F, 0x3C, 0x3F, 0xF0, 0x7F, 0x81, + 0xFE, 0x03, 0xF0, 0x0F, 0xC0, 0xFF, 0xC3, 0xFF, 0x01, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x00, + 0xF1, 0xFF, 0x1E, 0x79, 0xE7, 0x9E, 0x7B, 0xC3, 0xFC, 0x3F, 0x81, 0xF8, 0x1F, 0x87, 0xFC, 0x7F, + 0xC0, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF8, 0x7C, 0xF8, 0xF0, 0xF3, 0xE1, 0xFF, 0x81, 0xFE, + 0x01, 0xFC, 0x03, 0xF0, 0x03, 0xE0, 0x0F, 0xC0, 0x3F, 0xC0, 0x7F, 0xC1, 0xFF, 0x87, 0xCF, 0xEF, + 0x0F, 0xFE, 0x1F, 0x80, 0x0F, 0x00, 0x1E, 0x00, 0x3C, 0x00, 0x78, 0xF9, 0xE7, 0x9E, 0x3F, 0xC3, + 0xF8, 0x1F, 0x80, 0xF0, 0x1F, 0x83, 0xFC, 0x7F, 0xF7, 0x9F, 0xF1, 0xF0, 0x07, 0x00, 0x70, 0x07, + 0xFF, 0xF7, 0x8F, 0xFF, 0x78, 0xFF, 0xF7, 0x80, 0xF0, 0x78, 0x0F, 0x07, 0x80, 0xF0, 0x78, 0x0F, + 0x07, 0x80, 0xF0, 0x78, 0x0F, 0x07, 0x80, 0xF0, 0x78, 0x0F, 0x07, 0x80, 0xF0, 0x78, 0x0F, 0xFF, + 0xE0, 0xFF, 0xFE, 0x0F, 0xFF, 0xE0, 0x00, 0x0E, 0x00, 0x00, 0xE0, 0x00, 0x0E, 0x00, 0x00, 0xE0, + 0xFF, 0x79, 0xFE, 0xF3, 0xFD, 0xE1, 0xE3, 0xC3, 0xC7, 0x87, 0x8F, 0x0F, 0x1E, 0x1E, 0x3C, 0x3F, + 0xFE, 0x7F, 0xFC, 0xFF, 0xF8, 0x00, 0xF0, 0x01, 0xE0, 0x03, 0xC0, 0xF0, 0xF3, 0xC3, 0xCF, 0x0F, + 0x3C, 0x3C, 0xF0, 0xF3, 0xC3, 0xCF, 0x8F, 0x3F, 0xFC, 0x7F, 0xF0, 0xFF, 0xC0, 0x0F, 0x00, 0x3C, + 0x00, 0xFC, 0x03, 0xF0, 0x0F, 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0xF1, 0xE7, 0x8F, + 0x3C, 0x79, 0xE3, 0xCF, 0x9E, 0x7F, 0xF1, 0xFF, 0x87, 0xFC, 0x01, 0xF8, 0x0F, 0xC0, 0x7E, 0x00, + 0xF0, 0x07, 0x80, 0x3C, 0xF0, 0xFF, 0x0F, 0xF0, 0xFF, 0x0F, 0xF0, 0xFF, 0x6F, 0xFE, 0xFF, 0xFF, + 0x7F, 0xF3, 0xFF, 0x06, 0xF0, 0x6F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0xF1, 0xFE, 0x3F, 0xC7, 0xFB, + 0xFF, 0xFF, 0xFF, 0xDF, 0xF9, 0xFF, 0x07, 0xE0, 0xFC, 0x07, 0x80, 0xF0, 0x07, 0x80, 0x3C, 0x01, + 0xE0, 0x0F, 0x00, 0x7F, 0xF3, 0xFF, 0xDF, 0xFE, 0xF1, 0xFF, 0x83, 0xFC, 0x1F, 0xE0, 0xFF, 0x07, + 0xF8, 0x3F, 0xC1, 0xE0, 0xF0, 0x3C, 0x0F, 0x03, 0xC0, 0xF0, 0x3F, 0xEF, 0xFF, 0xFF, 0xF3, 0xFC, + 0xFF, 0x3F, 0xCF, 0xF3, 0xFC, 0xFF, 0x3F, 0xCF, 0x01, 0xFE, 0x00, 0xFF, 0xCE, 0x7F, 0xFB, 0xBF, + 0x3E, 0xFF, 0x07, 0xFF, 0xFF, 0xF7, 0xFF, 0xFC, 0xFF, 0xFF, 0x0F, 0x00, 0x03, 0xC0, 0x00, 0xF8, + 0x00, 0x1F, 0x9C, 0x07, 0xFF, 0x80, 0xFF, 0xE0, 0x0F, 0xF0, 0xC3, 0xF3, 0x9F, 0xEE, 0xFF, 0xFF, + 0xCF, 0x7F, 0xFC, 0xFF, 0xF1, 0xE0, 0x03, 0xE6, 0x0F, 0xF8, 0x1F, 0xF0, 0x3F, 0x80, 0x01, 0xFC, + 0x00, 0xFF, 0xC0, 0x7F, 0xFB, 0x9F, 0x3E, 0xEF, 0x87, 0xBF, 0xC0, 0xFF, 0xFF, 0xFD, 0xFF, 0xFF, + 0x3F, 0xFF, 0xC3, 0xC0, 0x00, 0xF8, 0x00, 0x1F, 0x1C, 0x07, 0xFF, 0x80, 0xFF, 0xE0, 0x1F, 0xF0, + 0x01, 0xE0, 0x00, 0x78, 0x00, 0x1E, 0x00, 0x07, 0x80, 0x03, 0xF3, 0x1F, 0xEE, 0xFF, 0xFB, 0xDF, + 0xFE, 0x3D, 0xFF, 0xF3, 0xFF, 0xC7, 0xC6, 0x0F, 0xF8, 0x3F, 0xF0, 0x3F, 0x80, 0x78, 0x01, 0xE0, + 0x07, 0x80, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x01, 0x98, 0x00, 0x1E, 0xE0, 0x00, + 0x7F, 0x00, 0x01, 0xF0, 0x00, 0x00, 0x00, 0x7C, 0x78, 0x79, 0xF3, 0xC7, 0xC7, 0x9E, 0x7C, 0x3E, + 0xF7, 0xC0, 0xFF, 0xBE, 0x03, 0xFF, 0xE0, 0x0F, 0xFE, 0x00, 0x7F, 0xE0, 0x07, 0xFF, 0x80, 0x3F, + 0xFE, 0x03, 0xFE, 0xF8, 0x3E, 0xF3, 0xE3, 0xE7, 0x8F, 0x1E, 0x3C, 0x7D, 0xF1, 0xE1, 0xF0, 0x03, + 0x30, 0x01, 0xDE, 0x00, 0x7F, 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x9E, 0x79, 0xF7, + 0xBE, 0x3D, 0xFF, 0x07, 0xFF, 0x81, 0xFF, 0xC0, 0x3F, 0xF0, 0x1F, 0xFE, 0x0F, 0xFF, 0x83, 0xDE, + 0xF1, 0xE7, 0x9E, 0xF9, 0xE7, 0xC0, 0xF0, 0xFF, 0x8F, 0xBC, 0xF9, 0xEF, 0x8F, 0x78, 0x7F, 0x83, + 0xFF, 0x1F, 0xFC, 0xFF, 0xF7, 0x9F, 0xBC, 0x3F, 0xE0, 0xFF, 0x07, 0xF8, 0x3F, 0xC3, 0xE0, 0x3E, + 0x07, 0xF0, 0x3F, 0x01, 0xF0, 0xF3, 0xFE, 0x7B, 0xDE, 0x7F, 0x8F, 0xE1, 0xFF, 0x3F, 0xF7, 0xBE, + 0xF1, 0xFE, 0x3F, 0xC7, 0x80, 0xF0, 0x3C, 0x1F, 0x83, 0xE0, 0x0F, 0xFE, 0x03, 0xFF, 0x80, 0xFF, + 0xE0, 0x3C, 0x78, 0x0F, 0x1E, 0x03, 0xC7, 0x80, 0xF1, 0xE0, 0x3C, 0x78, 0x0F, 0x1E, 0x07, 0x87, + 0x81, 0xE1, 0xE1, 0xF8, 0x78, 0xFC, 0x1F, 0xBE, 0x07, 0xEF, 0x01, 0xF8, 0x00, 0x1E, 0x00, 0x0F, + 0x00, 0x03, 0xC0, 0x00, 0x60, 0x1F, 0xF0, 0x7F, 0xC1, 0xFF, 0x07, 0xBC, 0x1E, 0xF0, 0x7B, 0xC3, + 0xCF, 0x1F, 0x3C, 0xFC, 0xFF, 0xE3, 0xFF, 0x0F, 0xC0, 0x0E, 0x00, 0x78, 0x00, 0xC0, 0xF0, 0x7F, + 0x83, 0xFC, 0x1F, 0xE0, 0xFF, 0x07, 0xF8, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x83, 0xFC, 0x1F, + 0xE0, 0xFF, 0x07, 0xF8, 0x3F, 0xC1, 0xE0, 0x0F, 0x01, 0xF8, 0x0F, 0x80, 0x7C, 0xF1, 0xFE, 0x3F, + 0xC7, 0xF8, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x8F, 0xF1, 0xFE, 0x3F, 0xC7, 0x01, 0xE0, 0xFC, 0x1F, + 0x83, 0xE0, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xFF, 0xF8, + 0xFF, 0xF8, 0xFF, 0xF8, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x78, 0xF0, 0x7E, 0xF0, 0x7E, 0xF0, 0x7E, + 0x00, 0x1E, 0x00, 0x1C, 0x00, 0x3C, 0x00, 0x18, 0xF3, 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xFF, 0xCF, + 0xFC, 0xFF, 0xCF, 0x3C, 0xF3, 0xFF, 0x3F, 0xF3, 0xF0, 0x0E, 0x01, 0xE0, 0x1C, 0xF0, 0x7F, 0x83, + 0xFC, 0x1F, 0xE0, 0xFF, 0x87, 0xBC, 0x3D, 0xF1, 0xEF, 0xFF, 0x3F, 0xF8, 0xFF, 0xC0, 0x1E, 0x00, + 0xF0, 0x3F, 0x81, 0xFC, 0x0F, 0xE0, 0x78, 0x03, 0xC0, 0x1E, 0x00, 0xF0, 0x71, 0xEE, 0x3D, 0xC7, + 0xBC, 0xF7, 0xFE, 0xFF, 0xCF, 0xF8, 0x0F, 0x01, 0xE0, 0xFC, 0x1F, 0x83, 0x80, 0x70, 0x0E, 0x00, + 0x78, 0x0F, 0x0F, 0x83, 0xE1, 0xF0, 0x7C, 0x3F, 0x1F, 0x87, 0xE3, 0xF1, 0xFC, 0x7E, 0x3F, 0xDF, + 0xC7, 0xBB, 0xBC, 0xF7, 0xF7, 0x9E, 0xFC, 0xF3, 0xCF, 0x9E, 0x79, 0xF3, 0xCF, 0x1C, 0x7F, 0xE0, + 0x0F, 0xFC, 0x01, 0xF8, 0x00, 0x0F, 0x00, 0x03, 0xC0, 0x00, 0x78, 0x00, 0x06, 0x00, 0xF0, 0x78, + 0xF8, 0x78, 0xF8, 0xF8, 0xFC, 0xF8, 0xFD, 0xF8, 0xFF, 0xFC, 0xFF, 0xFC, 0xFF, 0xBC, 0xF7, 0xBF, + 0xF7, 0x3F, 0xE0, 0x3E, 0x00, 0x0E, 0x00, 0x1C, 0x00, 0x1C, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, + 0xFF, 0xF0, 0x0C, 0x60, 0x1D, 0xC0, 0x3F, 0x80, 0x3E, 0x00, 0x00, 0x00, 0xF8, 0x01, 0xF0, 0x03, + 0xF0, 0x0F, 0xE0, 0x1F, 0xC0, 0x7B, 0xC0, 0xF7, 0x81, 0xC7, 0x87, 0x8F, 0x0F, 0xFE, 0x3F, 0xFE, + 0x7F, 0xFC, 0xF0, 0x7B, 0xC0, 0x7F, 0x80, 0xF0, 0x19, 0x87, 0x78, 0xFE, 0x0F, 0x80, 0x00, 0x00, + 0x0F, 0xE1, 0xFE, 0x3F, 0xC6, 0x7C, 0xFF, 0xBF, 0xF7, 0x9F, 0xF3, 0xDF, 0xFB, 0xFF, 0x3F, 0xC0, + 0x1E, 0xE0, 0x3D, 0xE0, 0x7B, 0x80, 0x00, 0x00, 0x7C, 0x00, 0xF8, 0x01, 0xF8, 0x07, 0xF0, 0x0F, + 0xE0, 0x3D, 0xE0, 0x7B, 0xC0, 0xE3, 0xC3, 0xC7, 0x87, 0xFF, 0x1F, 0xFF, 0x3F, 0xFE, 0x78, 0x3D, + 0xE0, 0x3F, 0xC0, 0x78, 0x3B, 0xCF, 0x78, 0xEF, 0x00, 0x00, 0x00, 0x7F, 0x0F, 0xF1, 0xFE, 0x33, + 0xE7, 0xFD, 0xFF, 0xBC, 0xFF, 0x9E, 0xFF, 0xDF, 0xF9, 0xFE, 0x00, 0xFF, 0xF0, 0x07, 0xFF, 0x80, + 0x7F, 0xFC, 0x03, 0xF8, 0x00, 0x3F, 0xC0, 0x03, 0xDE, 0x00, 0x1E, 0xFF, 0x81, 0xE7, 0xFC, 0x0F, + 0x3F, 0xE0, 0xFF, 0xE0, 0x0F, 0xFF, 0x00, 0x7F, 0xF8, 0x07, 0xC3, 0xFF, 0xBC, 0x1F, 0xFF, 0xC0, + 0xFF, 0xE0, 0x3F, 0xFF, 0x0F, 0xFF, 0xE3, 0xFF, 0xF8, 0xCF, 0x9F, 0x3F, 0xFF, 0xDF, 0xFF, 0xF7, + 0x9E, 0x03, 0xE7, 0xC6, 0x7F, 0xFF, 0x9F, 0xFF, 0xE3, 0xFF, 0xF8, 0x39, 0x87, 0x78, 0xFE, 0x0F, + 0x80, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x1E, 0x03, 0xC0, 0x7F, 0xEF, 0xFD, 0xFF, 0xBC, 0x07, + 0x80, 0xF0, 0x1F, 0xFF, 0xFF, 0xFF, 0xF0, 0x18, 0xC3, 0xDC, 0x1F, 0xC0, 0xF8, 0x00, 0x00, 0x00, + 0x1F, 0x83, 0xFE, 0x7F, 0xE7, 0x9F, 0x7F, 0xF7, 0xFF, 0x78, 0x07, 0xC6, 0x7F, 0xE3, 0xFE, 0x1F, + 0xE0, 0x3F, 0xC1, 0xFF, 0x87, 0xFF, 0x1C, 0x7E, 0x00, 0x78, 0x01, 0xEF, 0xFF, 0xFF, 0xFF, 0xFF, + 0xFF, 0xC1, 0xEF, 0x07, 0xBF, 0x7E, 0x7F, 0xF0, 0xFF, 0x81, 0xFC, 0x00, 0x7F, 0x87, 0xFC, 0x7F, + 0xE3, 0x3E, 0x00, 0xF7, 0xFF, 0x7F, 0xF7, 0x9E, 0x7F, 0xE3, 0xFC, 0x1F, 0x80, 0x3D, 0xC0, 0xF7, + 0x83, 0xDC, 0x00, 0x00, 0x3F, 0xC1, 0xFF, 0x87, 0xFF, 0x1C, 0x7E, 0x00, 0x78, 0x01, 0xEF, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF, 0xC1, 0xEF, 0x07, 0xBF, 0x7E, 0x7F, 0xF0, 0xFF, 0x81, 0xFC, 0x00, 0x39, + 0xC3, 0xFC, 0x39, 0xC0, 0x00, 0x00, 0x07, 0xF8, 0x7F, 0xC7, 0xFE, 0x33, 0xE0, 0x0F, 0x7F, 0xF7, + 0xFF, 0x79, 0xE7, 0xFE, 0x3F, 0xC1, 0xF8, 0x03, 0xDC, 0x00, 0x1E, 0xF0, 0x00, 0xF7, 0x00, 0x00, + 0x00, 0x0F, 0x8F, 0x0F, 0x3E, 0x78, 0xF8, 0xF3, 0xCF, 0x87, 0xDE, 0xF8, 0x1F, 0xF7, 0xC0, 0x7F, + 0xFC, 0x01, 0xFF, 0xC0, 0x0F, 0xFC, 0x00, 0xFF, 0xF0, 0x07, 0xFF, 0xC0, 0x7F, 0xDF, 0x07, 0xDE, + 0x7C, 0x7C, 0xF1, 0xE3, 0xC7, 0x8F, 0xBE, 0x3C, 0x3E, 0x07, 0x38, 0x01, 0xFE, 0x00, 0x73, 0x80, + 0x00, 0x00, 0x00, 0x00, 0x3E, 0x79, 0xE7, 0xDE, 0xF8, 0xF7, 0xFC, 0x1F, 0xFE, 0x07, 0xFF, 0x00, + 0xFF, 0xC0, 0x7F, 0xF8, 0x3F, 0xFE, 0x0F, 0x7B, 0xC7, 0x9E, 0x7B, 0xE7, 0x9F, 0x39, 0xC3, 0xBC, + 0x39, 0xC0, 0x00, 0x00, 0x03, 0xF8, 0x7F, 0xE7, 0xFE, 0x31, 0xF0, 0x1F, 0x03, 0xE1, 0xFE, 0x1F, + 0xE1, 0xFF, 0x01, 0xF0, 0x0F, 0x71, 0xF7, 0xFF, 0xFF, 0xE7, 0xFC, 0x73, 0x9D, 0xE7, 0x38, 0x00, + 0x00, 0x1F, 0xC7, 0xF9, 0xFF, 0x67, 0xCF, 0xE3, 0xF8, 0x0F, 0x63, 0xDF, 0xFF, 0xF9, 0xFC, 0x7F, + 0xF7, 0xFF, 0x7F, 0xF0, 0x3E, 0x07, 0xC0, 0xF8, 0x1F, 0xC1, 0xFE, 0x03, 0xF0, 0x0F, 0x00, 0xF7, + 0x1F, 0xFF, 0xFF, 0xFE, 0x7F, 0xC0, 0xFF, 0xFF, 0xFF, 0xFC, 0x1E, 0x0F, 0x07, 0x83, 0xF0, 0xFE, + 0x07, 0xC0, 0xF0, 0x3F, 0x9F, 0xFF, 0xFF, 0xEF, 0xF0, 0x0F, 0xE0, 0x3F, 0x80, 0x00, 0x3C, 0x0F, + 0xF0, 0x7F, 0xC3, 0xFF, 0x1F, 0xFC, 0x7F, 0xF3, 0xFF, 0xDE, 0xFF, 0x7B, 0xFF, 0xCF, 0xFE, 0x3F, + 0xF8, 0xFF, 0xC3, 0xFE, 0x0F, 0xF8, 0x3F, 0xC0, 0xF0, 0x3F, 0x87, 0xF0, 0x00, 0x00, 0x0F, 0x1F, + 0xE7, 0xFD, 0xFF, 0xBF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0x9F, 0xF3, 0xFC, 0x78, 0x1C, 0xE0, + 0x7B, 0x81, 0xCE, 0x00, 0x00, 0xF0, 0x3F, 0xC1, 0xFF, 0x0F, 0xFC, 0x7F, 0xF1, 0xFF, 0xCF, 0xFF, + 0x7B, 0xFD, 0xEF, 0xFF, 0x3F, 0xF8, 0xFF, 0xE3, 0xFF, 0x0F, 0xF8, 0x3F, 0xE0, 0xFF, 0x03, 0xC0, + 0x3B, 0xCF, 0x78, 0xEF, 0x00, 0x00, 0x01, 0xE3, 0xFC, 0xFF, 0xBF, 0xF7, 0xFF, 0xFF, 0xFF, 0xFF, + 0xFF, 0xDF, 0xF3, 0xFE, 0x7F, 0x8F, 0x1E, 0xE0, 0x3D, 0xE0, 0x7B, 0x80, 0x00, 0x00, 0xFE, 0x07, + 0xFE, 0x1F, 0xFE, 0x3E, 0x7E, 0xF8, 0x3D, 0xE0, 0x7F, 0xC0, 0x7F, 0x80, 0xFF, 0x01, 0xFE, 0x07, + 0xFE, 0x0F, 0x3E, 0x7E, 0x7F, 0xF8, 0x7F, 0xF0, 0x3F, 0x80, 0x3D, 0xC3, 0xDE, 0x3D, 0xC0, 0x00, + 0x00, 0x01, 0xFC, 0x3F, 0xE7, 0xFE, 0x7D, 0xF7, 0x8F, 0x78, 0xF7, 0x8F, 0x7D, 0xF7, 0xFE, 0x3F, + 0xE1, 0xFC, 0x0F, 0xE0, 0x7F, 0xE1, 0xFF, 0xE3, 0xE7, 0xEF, 0x83, 0xDE, 0x03, 0xFF, 0xFF, 0xFF, + 0xFF, 0xF0, 0x1F, 0xE0, 0x7F, 0xE0, 0xF3, 0xE7, 0xE7, 0xFF, 0x87, 0xFF, 0x03, 0xF8, 0x00, 0x1F, + 0xC3, 0xFE, 0x7F, 0xE7, 0x9F, 0x7F, 0xF7, 0xFF, 0x78, 0xF7, 0xDF, 0x7F, 0xE3, 0xFE, 0x1F, 0xC0, + 0x1E, 0xE0, 0x3D, 0xE0, 0x7B, 0x80, 0x00, 0x00, 0xFE, 0x07, 0xFE, 0x1F, 0xFE, 0x3E, 0x7E, 0xF8, + 0x3D, 0xE0, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 0x01, 0xFE, 0x07, 0xFE, 0x0F, 0x3E, 0x7E, 0x7F, 0xF8, + 0x7F, 0xF0, 0x3F, 0x80, 0x3D, 0xC3, 0xDE, 0x3D, 0xC0, 0x00, 0x00, 0x01, 0xFC, 0x3F, 0xE7, 0xFE, + 0x79, 0xF7, 0xFF, 0x7F, 0xF7, 0x8F, 0x7D, 0xF7, 0xFE, 0x3F, 0xE1, 0xFC, 0x1D, 0xC0, 0xF7, 0x81, + 0xDC, 0x00, 0x00, 0x3F, 0xC1, 0xFF, 0x87, 0xFF, 0x1C, 0x7E, 0x00, 0x78, 0x01, 0xE1, 0xFF, 0xC7, + 0xFF, 0x1F, 0xFC, 0x01, 0xE0, 0x07, 0x9C, 0x7E, 0x7F, 0xF1, 0xFF, 0x83, 0xFC, 0x00, 0x73, 0x8F, + 0x71, 0xCE, 0x00, 0x00, 0x00, 0xFE, 0x1F, 0xE3, 0xFE, 0x63, 0xC7, 0xF8, 0xFF, 0x81, 0xE6, 0x7C, + 0xFF, 0xBF, 0xE7, 0xF8, 0x1F, 0xE0, 0x7F, 0x80, 0x00, 0x3E, 0x1F, 0x78, 0x79, 0xF1, 0xE3, 0xC7, + 0x8F, 0x3C, 0x1E, 0xF0, 0x7B, 0x80, 0xFE, 0x03, 0xF8, 0x07, 0xC0, 0x1F, 0x04, 0xF8, 0x1F, 0xE0, + 0x7F, 0x01, 0xF8, 0x00, 0x3F, 0xC3, 0xFC, 0x00, 0x00, 0x00, 0xF0, 0xFF, 0x1E, 0x79, 0xE7, 0x9E, + 0x7B, 0xC3, 0xFC, 0x3F, 0x81, 0xF8, 0x1F, 0x81, 0xF0, 0x0F, 0x01, 0xE0, 0xFE, 0x0F, 0xC0, 0xF8, + 0x00, 0x1C, 0xE0, 0x7B, 0x81, 0xCE, 0x00, 0x00, 0xF8, 0x7D, 0xE1, 0xE7, 0xC7, 0x8F, 0x1E, 0x3C, + 0xF0, 0x7B, 0xC1, 0xEE, 0x03, 0xF8, 0x0F, 0xE0, 0x1F, 0x00, 0x7C, 0x13, 0xE0, 0x7F, 0x81, 0xFC, + 0x07, 0xE0, 0x00, 0x3B, 0xC7, 0xBC, 0x3B, 0xC0, 0x00, 0x00, 0x0F, 0x0F, 0xF1, 0xE7, 0x9E, 0x79, + 0xE7, 0xBC, 0x3F, 0xC3, 0xF8, 0x1F, 0x81, 0xF8, 0x1F, 0x00, 0xF0, 0x1E, 0x0F, 0xE0, 0xFC, 0x0F, + 0x80, 0x07, 0x70, 0x1D, 0xC0, 0xEE, 0x07, 0x38, 0x0C, 0xC0, 0x00, 0x0F, 0x87, 0xDE, 0x1E, 0x7C, + 0x78, 0xF1, 0xE3, 0xCF, 0x07, 0xBC, 0x1E, 0xE0, 0x3F, 0x80, 0xFE, 0x01, 0xF0, 0x07, 0xC1, 0x3E, + 0x07, 0xF8, 0x1F, 0xC0, 0x7E, 0x00, 0x0C, 0xC1, 0xDE, 0x1D, 0xC3, 0xB8, 0x33, 0x80, 0x00, 0xF0, + 0xFF, 0x1E, 0x79, 0xE7, 0x9E, 0x7B, 0xC3, 0xFC, 0x3F, 0x81, 0xF8, 0x1F, 0x81, 0xF0, 0x0F, 0x01, + 0xE0, 0xFE, 0x0F, 0xC0, 0xF8, 0x00, 0x1D, 0xE1, 0xEF, 0x07, 0x78, 0x00, 0x0F, 0x07, 0xF8, 0x3F, + 0xC1, 0xFE, 0x0F, 0xF8, 0x7B, 0xC3, 0xDF, 0x1E, 0xFF, 0xF3, 0xFF, 0x8F, 0xFC, 0x01, 0xE0, 0x0F, + 0x00, 0x78, 0x03, 0xC0, 0x1E, 0x3B, 0xCF, 0x78, 0xEF, 0x00, 0x00, 0x00, 0xE3, 0xDC, 0x7B, 0x8F, + 0x71, 0xEF, 0x3D, 0xFF, 0xBF, 0xF3, 0xFE, 0x03, 0xC0, 0x78, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, + 0x0F, 0x01, 0xE0, 0x3C, 0x07, 0x80, 0xF0, 0x1E, 0x03, 0xC0, 0x78, 0x0F, 0xE1, 0xFC, 0x3F, 0x80, + 0xF0, 0x1E, 0x03, 0xC0, 0x78, 0x00, 0xFF, 0xFF, 0xFF, 0xFE, 0x0F, 0x07, 0x83, 0xC1, 0xE0, 0xFC, + 0x7E, 0x3F, 0x03, 0x81, 0xC0, 0xE0, 0x07, 0x38, 0x03, 0xBC, 0x01, 0xCE, 0x00, 0x00, 0x0F, 0x00, + 0x7F, 0x80, 0x3F, 0xC0, 0x1F, 0xE0, 0x0F, 0xF0, 0x07, 0xFF, 0xC3, 0xFF, 0xF9, 0xFF, 0xFC, 0xFF, + 0x3F, 0x7F, 0x87, 0xBF, 0xC3, 0xDF, 0xE7, 0xEF, 0xFF, 0xE7, 0xFF, 0xF3, 0xFF, 0xE1, 0xE0, 0x0E, + 0xF0, 0x3D, 0xE0, 0x3B, 0xC0, 0x00, 0x00, 0x00, 0x1E, 0x03, 0xFC, 0x07, 0xF8, 0x0F, 0xF0, 0x1F, + 0xFF, 0x3F, 0xFF, 0x7F, 0xFE, 0xFF, 0x3D, 0xFF, 0xFB, 0xFF, 0xF7, 0xFF, 0xCF, 0x7C, 0x3C, 0xF0, + 0xF3, 0xE3, 0xC7, 0xDE, 0x0F, 0x78, 0xFF, 0xE3, 0xFF, 0x1E, 0xF8, 0x79, 0xE1, 0xE7, 0xC7, 0x0F, + 0x3C, 0x1E, 0xF0, 0x7C, 0x7F, 0x87, 0xFC, 0x7F, 0xC0, 0x3E, 0x01, 0xE0, 0x1E, 0x01, 0xE0, 0x1E, + 0x01, 0xE0, 0x1E, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x7C, 0x3F, 0x1F, 0xC1, 0xE0, 0xF0, 0x78, 0x3C, + 0x1E, 0x0F, 0x0F, 0xBF, 0xDE, 0xEE, 0x70, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x3C, 0x03, 0xC0, + 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0xFF, 0xCF, 0xFE, 0xFF, + 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0xF0, 0xFF, 0x0F, 0xF0, 0xFF, 0x0F, 0xF0, 0xFF, 0x0F, 0xF0, 0xF0, + 0x7D, 0xFF, 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xFF, 0xFE, 0x7E, 0x3C, 0x38, 0x78, + 0x78, 0x78, 0x78, 0x78, 0x3C, 0x3C, 0x3C, 0x7F, 0xF3, 0xFF, 0xEF, 0xFF, 0x8E, 0x1E, 0x78, 0x79, + 0xE1, 0xE7, 0x87, 0x9E, 0x1E, 0x78, 0x79, 0xE1, 0xE7, 0x87, 0x9E, 0x1E, 0x78, 0x78, 0x73, 0xE3, + 0x9F, 0x9C, 0xFE, 0xE0, 0xF7, 0x07, 0xB8, 0x3D, 0xC1, 0xEF, 0x0F, 0x78, 0x7B, 0xC7, 0xCF, 0xFC, + 0x7F, 0xE0, 0xFC, 0x00, 0x7D, 0xFF, 0xCF, 0x3C, 0xF3, 0xC0, 0x7F, 0x8F, 0xF9, 0xFF, 0x80, 0xF0, + 0x1E, 0x03, 0xC0, 0x78, 0x0F, 0x01, 0xE0, 0x3C, 0x07, 0x80, 0xF0, 0x1E, 0x03, 0xC0, 0x78, 0x0F, + 0x01, 0xE0, 0x7F, 0x1F, 0xF3, 0xFF, 0x01, 0xE0, 0x3C, 0x03, 0xC0, 0x78, 0x0F, 0x03, 0xC0, 0x7B, + 0xFF, 0x7F, 0xCF, 0xF0, 0x30, 0x1E, 0x03, 0xC0, 0x78, 0x0F, 0xFF, 0xFF, 0xFF, 0xF8, 0x0F, 0x03, + 0xC0, 0x78, 0x0F, 0x03, 0xC0, 0x78, 0x0F, 0x03, 0xC0, 0x78, 0x1F, 0x00, 0x7F, 0xF1, 0xFF, 0xE7, + 0xFF, 0x8F, 0x0F, 0x3C, 0x3C, 0xF0, 0xF3, 0xC3, 0xCF, 0x0F, 0x3C, 0x3C, 0xF0, 0xF3, 0xFF, 0xCF, + 0xFF, 0x3F, 0xFC, 0xF3, 0xF0, 0xFF, 0xF1, 0xFF, 0xF3, 0xF1, 0xE3, 0xC3, 0xC7, 0x87, 0x8F, 0x0F, + 0x1E, 0x1E, 0x38, 0x3C, 0xF0, 0x79, 0xEF, 0xE3, 0xDF, 0xC7, 0xBF, 0x00, 0x7D, 0xF7, 0xCF, 0x3C, + 0xF3, 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0x7C, 0x7E, 0x7E, 0x1E, 0x0F, 0x0F, 0x0F, + 0x0F, 0x0F, 0x0F, 0x7F, 0xFF, 0xFF, 0x7F, 0xE1, 0xFF, 0xC7, 0xFF, 0x8E, 0x1E, 0x78, 0x3D, 0xE0, + 0xF7, 0x83, 0xDE, 0x0F, 0x78, 0x79, 0xF1, 0xE3, 0xFF, 0x8F, 0xFC, 0x0F, 0xE0, 0x00, 0x03, 0xC3, + 0xDE, 0x1E, 0xF0, 0xF3, 0x87, 0x9E, 0x38, 0xF3, 0xC7, 0x9E, 0x3C, 0xF0, 0xEF, 0x87, 0xF8, 0xFF, + 0x8F, 0xF8, 0x7E, 0x01, 0x00, 0x00, 0x1F, 0xC1, 0xFF, 0x1F, 0xFC, 0xF1, 0xEF, 0x0F, 0x3C, 0x3D, + 0xF1, 0xEF, 0x8F, 0x1C, 0x78, 0x03, 0xC0, 0x1E, 0x00, 0xF0, 0x07, 0x80, 0x3C, 0x01, 0xE0, 0x0F, + 0x00, 0x78, 0x1F, 0xC3, 0xFF, 0x1F, 0xFC, 0xF1, 0xEF, 0x0F, 0x3C, 0x3D, 0xF1, 0xEF, 0x8F, 0x1C, + 0xF0, 0x0F, 0x9F, 0xFC, 0xFF, 0xC7, 0xF8, 0x00, 0xF0, 0xF7, 0x8F, 0x78, 0xF7, 0xCE, 0x3D, 0xE3, + 0xDE, 0x1F, 0xC1, 0xFC, 0x1F, 0x80, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0x78, 0x07, 0x80, 0x78, + 0x07, 0x80, 0xF8, 0xF7, 0xCF, 0x3C, 0xF3, 0xEF, 0x1F, 0xE1, 0xFE, 0x0F, 0xC0, 0x78, 0x07, 0xC0, + 0x3C, 0x7F, 0xEF, 0xFE, 0xFF, 0xE0, 0x7F, 0xF9, 0xFF, 0xE7, 0xFF, 0x80, 0x1E, 0x00, 0x78, 0x03, + 0xC7, 0x8F, 0x1E, 0x3C, 0x79, 0xE1, 0xE7, 0x87, 0x9E, 0x1E, 0x78, 0x7B, 0xC1, 0xE0, 0x07, 0x80, + 0x1E, 0x00, 0x78, 0x00, 0x7F, 0x9F, 0xF7, 0xFC, 0x0F, 0x03, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xC0, + 0xF0, 0x3C, 0x0F, 0x03, 0xC0, 0xF7, 0x9F, 0xEF, 0x3F, 0xDE, 0x7F, 0xBC, 0xFF, 0x79, 0xFF, 0xE3, + 0xFF, 0xC7, 0x7E, 0x1E, 0xF0, 0x3C, 0xF0, 0xF9, 0xFF, 0xE1, 0xFF, 0x81, 0xFE, 0x00, 0x7F, 0xF1, + 0xFF, 0xE7, 0xFF, 0xC7, 0x8F, 0x1E, 0x3C, 0x78, 0xF1, 0xE3, 0xC7, 0x8F, 0x1C, 0x3C, 0xF0, 0xF7, + 0xC3, 0xDF, 0x0F, 0xF8, 0x3C, 0x47, 0xFE, 0xFF, 0x00, 0x38, 0xE7, 0x9E, 0x7B, 0xEF, 0x80, 0x00, + 0x00, 0x1C, 0xFB, 0xEF, 0x8C, 0x00, 0x07, 0xF9, 0xFF, 0xFF, 0xEF, 0xBD, 0xF0, 0x3F, 0x03, 0xF0, + 0x3F, 0x01, 0xE0, 0x3C, 0x00, 0x00, 0xE0, 0x3E, 0x07, 0xC0, 0x78, 0x06, 0x00, 0x00, 0x0F, 0xC7, + 0xE1, 0xF8, 0x78, 0x1E, 0x07, 0xF8, 0xFE, 0xFF, 0xBF, 0xC7, 0x80, 0x00, 0xFF, 0xFF, 0xFF, 0x00, + 0x31, 0xEF, 0x9E, 0x30, 0x00, 0x03, 0xCF, 0x1E, 0x79, 0xE7, 0x9E, 0x78, 0xE3, 0x8F, 0x3C, 0xF3, + 0xC0, 0x20, 0x38, 0x7F, 0x1F, 0xFF, 0xFF, 0xBF, 0xE7, 0xE1, 0xE0, 0x78, 0x1E, 0x07, 0x81, 0xE0, + 0x78, 0x1E, 0x07, 0x80, 0x00, 0x00, 0x0F, 0x77, 0xF7, 0x7F, 0xFF, 0x7F, 0xF7, 0xFF, 0x7D, 0xC7, + 0x80, 0x78, 0x07, 0x80, 0x78, 0x03, 0x80, 0x38, 0x03, 0x80, 0x38, 0x00, 0x00, 0x04, 0x07, 0x03, + 0xE1, 0xF8, 0xF8, 0x3C, 0x0F, 0xC1, 0xF8, 0x3E, 0x1F, 0x0F, 0x03, 0xC0, 0xFF, 0x9F, 0xF7, 0xFC, + 0x00, 0x00, 0x0F, 0xC7, 0xF9, 0xFE, 0xF3, 0xFC, 0xFF, 0x3F, 0xCF, 0xF3, 0xFF, 0xF7, 0xF8, 0xFC, + 0x40, 0x07, 0xFC, 0x7F, 0xC7, 0xFC, 0x0F, 0xC0, 0x1C, 0x01, 0xC0, 0x1C, 0x01, 0xC0, 0x1E, 0x01, + 0xE0, 0x1E, 0x01, 0xE0, 0x0E, 0x00, 0xE0, 0x08, 0x20, 0x4F, 0x0F, 0xF0, 0xFF, 0x1E, 0x79, 0xE7, + 0x9E, 0x39, 0xC3, 0xFC, 0x3F, 0xC3, 0xF8, 0x1F, 0x81, 0xF8, 0x1F, 0x00, 0xF0, 0x0F, 0x00, 0x80, + 0x03, 0x00, 0xF0, 0x0F, 0x00, 0xF8, 0x1F, 0x81, 0xF8, 0x1F, 0x83, 0xFC, 0x3F, 0xC3, 0x9C, 0x79, + 0xE7, 0x9E, 0xF1, 0xEF, 0x0F, 0xF0, 0xF2, 0x04, 0x08, 0x0F, 0xC7, 0xF3, 0xFE, 0xF7, 0xBD, 0xEF, + 0xFB, 0xFE, 0x7F, 0x87, 0xF0, 0x3C, 0x0F, 0x03, 0xC0, 0xF0, 0x1C, 0x00, 0x08, 0x00, 0x78, 0x00, + 0xF3, 0x80, 0xE7, 0x01, 0xFE, 0x03, 0xFC, 0x07, 0xF8, 0x0F, 0xF0, 0x3C, 0xFD, 0xF9, 0xFF, 0xE1, + 0xFF, 0x81, 0xFE, 0x00, 0x7E, 0xFC, 0x31, 0xEF, 0x9E, 0x30, 0x00, 0x03, 0xCF, 0x1E, 0x79, 0xE7, + 0x9E, 0x78, 0xE3, 0x8F, 0x3C, 0xF3, 0xC0, 0x20, 0x38, 0x7F, 0x1F, 0xFF, 0xFF, 0xBF, 0xE7, 0xE1, + 0xE0, 0x78, 0x1E, 0x07, 0x81, 0xE0, 0x78, 0x1E, 0x07, 0x80, 0x00, 0x00, 0x0F, 0x77, 0xF7, 0x7F, + 0xFF, 0x7F, 0xF7, 0xFF, 0x7D, 0xC7, 0x80, 0x78, 0x07, 0x80, 0x78, 0x03, 0x80, 0x38, 0x03, 0x80, + 0x38, 0x00, 0x00, 0x01, 0xC7, 0x3C, 0x7F, 0xC7, 0xFC, 0x7F, 0xE7, 0xFE, 0x7F, 0xE3, 0xFC, 0x38, + 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x1F, 0x00, + 0xF0, 0x1F, 0x81, 0xFC, 0x3F, 0xC7, 0x9E, 0x79, 0xE7, 0x0E, 0xF6, 0xFF, 0x6F, 0xFF, 0xE7, 0xFE, + 0x7F, 0xC0, 0x04, 0x0F, 0xC7, 0xF1, 0xFC, 0x70, 0x1C, 0x07, 0xF9, 0xFE, 0x3F, 0xC7, 0xC3, 0xE1, + 0xF0, 0x7C, 0x3E, 0x0F, 0x00, 0xC0, 0x20, 0x4F, 0x0F, 0xF0, 0xFF, 0x1E, 0x79, 0xE7, 0x9E, 0x39, + 0xC3, 0xFC, 0x3F, 0xC3, 0xF8, 0x1F, 0x81, 0xF8, 0x1F, 0x00, 0xF0, 0x0F, 0x00, 0x80, 0x03, 0x00, + 0xF0, 0x0F, 0x00, 0xF8, 0x1F, 0x81, 0xF8, 0x1F, 0x83, 0xFC, 0x3F, 0xC3, 0x9C, 0x79, 0xE7, 0x9E, + 0xF1, 0xEF, 0x0F, 0xF0, 0xF2, 0x04, 0x08, 0x0F, 0xC7, 0xF3, 0xFE, 0xF7, 0xBD, 0xEF, 0xFB, 0xFE, + 0x7F, 0x87, 0xF0, 0x3C, 0x0F, 0x03, 0xC0, 0xF0, 0x1C, 0x03, 0x80, 0x0F, 0x80, 0x1F, 0x00, 0x7F, + 0x00, 0xFE, 0x03, 0xDE, 0x07, 0xBC, 0x0E, 0x78, 0x3C, 0x78, 0x7F, 0xF1, 0xFF, 0xF3, 0xFF, 0xE7, + 0x83, 0xDE, 0x07, 0xFC, 0x07, 0x80, 0x00, 0x03, 0x80, 0x07, 0x00, 0x0E, 0x00, 0x08, 0x00, 0x0E, + 0x0F, 0xF0, 0xFF, 0x1F, 0xE0, 0x1C, 0x7F, 0xDF, 0xFB, 0xFF, 0xF1, 0xFF, 0xFD, 0xFF, 0x9F, 0xE0, + 0xF0, 0x1C, 0x03, 0xC0, 0x78, 0x06, 0x00, 0x07, 0x80, 0x0F, 0x80, 0x07, 0x00, 0x1E, 0x00, 0x38, + 0x00, 0x70, 0x01, 0xF0, 0x03, 0xE0, 0x0F, 0xE0, 0x1F, 0xC0, 0x7B, 0xC0, 0xF7, 0x81, 0xCF, 0x07, + 0x8F, 0x0F, 0xFE, 0x3F, 0xFE, 0x7F, 0xFC, 0xF0, 0x7B, 0xC0, 0xFF, 0x80, 0xF0, 0x0E, 0x03, 0xE0, + 0x7C, 0x03, 0x80, 0xE0, 0x1C, 0x1F, 0xE1, 0xFE, 0x3F, 0xC0, 0x38, 0xFF, 0xBF, 0xF7, 0xFF, 0xE3, + 0xFF, 0xFB, 0xFF, 0x3F, 0xC1, 0xE0, 0x00, 0x08, 0x00, 0x38, 0x00, 0xF0, 0x0B, 0xC0, 0x3F, 0x01, + 0xFC, 0x03, 0xB8, 0x02, 0x20, 0x03, 0x80, 0x0F, 0x80, 0x1F, 0x00, 0x7F, 0x00, 0xFE, 0x03, 0xDE, + 0x07, 0xBC, 0x0E, 0x78, 0x3C, 0x78, 0x7F, 0xF1, 0xFF, 0xF3, 0xFF, 0xE7, 0x83, 0xDE, 0x07, 0xFC, + 0x07, 0x80, 0x00, 0x00, 0x03, 0x80, 0x1C, 0x01, 0xE0, 0xFE, 0x0F, 0xE0, 0xFE, 0x03, 0x60, 0x0E, + 0x03, 0xFC, 0x0F, 0xF0, 0x7F, 0x80, 0x1C, 0x1F, 0xF1, 0xFF, 0x8F, 0xFC, 0xF1, 0xE7, 0xFF, 0x1F, + 0xF8, 0x7F, 0x80, 0xF0, 0x00, 0x00, 0xC0, 0x03, 0xC0, 0x07, 0xC0, 0x0F, 0x80, 0x3F, 0x01, 0xFC, + 0x03, 0xB8, 0x02, 0x20, 0x03, 0x80, 0x0F, 0x80, 0x1F, 0x00, 0x7F, 0x00, 0xFE, 0x03, 0xDE, 0x07, + 0xBC, 0x0E, 0x78, 0x3C, 0x78, 0x7F, 0xF1, 0xFF, 0xF3, 0xFF, 0xE7, 0x83, 0xDE, 0x07, 0xFC, 0x07, + 0x80, 0x00, 0x00, 0x70, 0x0F, 0x01, 0xF0, 0xEE, 0x3E, 0x8F, 0xE0, 0xD8, 0x0E, 0x0F, 0xF0, 0xFF, + 0x1F, 0xE0, 0x1C, 0x7F, 0xDF, 0xFB, 0xFF, 0xF1, 0xFF, 0xFD, 0xFF, 0x9F, 0xE0, 0xF0, 0x00, 0x20, + 0x01, 0xF0, 0x03, 0xF0, 0x01, 0xC0, 0x17, 0x80, 0x7E, 0x03, 0xF8, 0x07, 0x70, 0x04, 0x40, 0x07, + 0x00, 0x1F, 0x00, 0x3E, 0x00, 0xFE, 0x01, 0xFC, 0x07, 0xBC, 0x0F, 0x78, 0x1C, 0xF0, 0x78, 0xF0, + 0xFF, 0xE3, 0xFF, 0xE7, 0xFF, 0xCF, 0x07, 0xBC, 0x0F, 0xF8, 0x0F, 0x01, 0xC0, 0x1F, 0x01, 0xF0, + 0x0F, 0x0E, 0xE1, 0xFC, 0x3F, 0x81, 0xB0, 0x0E, 0x07, 0xF8, 0x3F, 0xC3, 0xFC, 0x01, 0xC3, 0xFE, + 0x7F, 0xE7, 0xFE, 0xF1, 0xEF, 0xFE, 0x7F, 0xE3, 0xFC, 0x0F, 0x00, 0x06, 0x40, 0x1F, 0xE0, 0x7F, + 0x80, 0x6E, 0x00, 0x10, 0x00, 0x70, 0x03, 0xF8, 0x07, 0x70, 0x04, 0x40, 0x07, 0x00, 0x1F, 0x00, 0x3E, 0x00, 0xFE, 0x01, 0xFC, 0x07, 0xBC, 0x0F, 0x78, 0x1C, 0xF0, 0x78, 0xF0, 0xFF, 0xE3, 0xFF, - 0xE7, 0xFF, 0xCF, 0x07, 0xBC, 0x0F, 0xF8, 0x0F, 0x01, 0x00, 0x70, 0x1E, 0x07, 0x80, 0x60, 0x73, - 0x0F, 0xE0, 0xFC, 0x0E, 0x01, 0xC1, 0xFE, 0x1F, 0xE3, 0xFC, 0x03, 0x8F, 0xFB, 0xFF, 0x7F, 0xFE, - 0x3F, 0xFF, 0xBF, 0xF3, 0xFC, 0x1E, 0x00, 0x02, 0x00, 0x0E, 0x00, 0x3C, 0x00, 0x3C, 0x00, 0x38, - 0x01, 0xDC, 0x03, 0xF8, 0x03, 0xF0, 0x03, 0x80, 0x07, 0x00, 0x1F, 0x00, 0x3E, 0x00, 0xFE, 0x01, - 0xFC, 0x07, 0xBC, 0x0F, 0x78, 0x1C, 0xF0, 0x78, 0xF0, 0xFF, 0xE3, 0xFF, 0xE7, 0xFF, 0xCF, 0x07, - 0xBC, 0x0F, 0xF8, 0x0F, 0x00, 0x03, 0x00, 0xF0, 0x0F, 0x00, 0xE0, 0x7B, 0x0F, 0xE0, 0xFC, 0x0E, - 0x01, 0xC1, 0xFE, 0x1F, 0xE3, 0xFC, 0x03, 0x8F, 0xFB, 0xFF, 0x7F, 0xFE, 0x3F, 0xFF, 0xBF, 0xF3, - 0xFC, 0x1E, 0x00, 0x03, 0x80, 0x0F, 0x80, 0x1F, 0x00, 0x0E, 0x00, 0x38, 0x00, 0x20, 0x03, 0xB8, - 0x07, 0xF0, 0x07, 0xE0, 0x07, 0x00, 0x0E, 0x00, 0x3E, 0x00, 0x7C, 0x01, 0xFC, 0x03, 0xF8, 0x0F, - 0x78, 0x1E, 0xF0, 0x39, 0xE0, 0xF1, 0xE1, 0xFF, 0xC7, 0xFF, 0xCF, 0xFF, 0x9E, 0x0F, 0x78, 0x1F, - 0xF0, 0x1E, 0x1F, 0x03, 0xE0, 0x1C, 0x07, 0x80, 0xE0, 0x73, 0x0F, 0xE0, 0xFC, 0x0E, 0x01, 0xC1, - 0xFE, 0x1F, 0xE3, 0xFC, 0x03, 0x8F, 0xFB, 0xFF, 0x7F, 0xFE, 0x3F, 0xFF, 0xBF, 0xF3, 0xFC, 0x1E, - 0x00, 0x00, 0x00, 0x0F, 0xE0, 0x3F, 0xC0, 0x7F, 0x00, 0x00, 0x01, 0xDC, 0x03, 0xF8, 0x03, 0xF0, - 0x03, 0x80, 0x07, 0x00, 0x1F, 0x00, 0x3E, 0x00, 0xFE, 0x01, 0xFC, 0x07, 0xBC, 0x0F, 0x78, 0x1C, - 0xF0, 0x78, 0xF0, 0xFF, 0xE3, 0xFF, 0xE7, 0xFF, 0xCF, 0x07, 0xBC, 0x0F, 0xF8, 0x0F, 0x1D, 0x87, - 0xF8, 0xFE, 0x08, 0x83, 0x98, 0x7F, 0x07, 0xE0, 0x70, 0x0E, 0x0F, 0xF0, 0xFF, 0x1F, 0xE0, 0x1C, - 0x7F, 0xDF, 0xFB, 0xFF, 0xF1, 0xFF, 0xFD, 0xFF, 0x9F, 0xE0, 0xF0, 0x00, 0x00, 0x1D, 0xC0, 0x3F, - 0x80, 0x3F, 0x00, 0x38, 0x00, 0x70, 0x01, 0xF0, 0x03, 0xE0, 0x0F, 0xE0, 0x1F, 0xC0, 0x7B, 0xC0, - 0xF7, 0x81, 0xCF, 0x07, 0x8F, 0x0F, 0xFE, 0x3F, 0xFE, 0x7F, 0xFC, 0xF0, 0x7B, 0xC0, 0xFF, 0x80, - 0xF0, 0x00, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xC0, 0x01, 0x00, 0x39, 0x87, 0xF0, 0x7E, 0x07, 0x00, - 0xE0, 0xFF, 0x0F, 0xF1, 0xFE, 0x01, 0xC7, 0xFD, 0xFF, 0xBF, 0xFF, 0x1F, 0xFF, 0xDF, 0xF9, 0xFE, - 0x0F, 0x01, 0xC0, 0x3C, 0x07, 0x80, 0x60, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, 0x01, 0xE0, 0x3F, - 0xF7, 0xFE, 0xFF, 0xDE, 0x03, 0xC0, 0x78, 0x0F, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x0E, 0x03, 0xC0, - 0x38, 0x02, 0x00, 0x06, 0x01, 0xFC, 0x3F, 0xE7, 0xFE, 0x78, 0xE7, 0xFF, 0x7F, 0xF7, 0xFE, 0x78, - 0x07, 0xFE, 0x3F, 0xE1, 0xFE, 0x07, 0x80, 0x70, 0x0F, 0x00, 0xF0, 0x06, 0x00, 0x1E, 0x03, 0xE0, - 0x1C, 0x07, 0x80, 0xE1, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xDE, 0x03, 0xC0, 0x7F, 0xEF, 0xFD, 0xFF, - 0xBC, 0x07, 0x80, 0xF0, 0x1F, 0xFF, 0xFF, 0xFF, 0xF0, 0x0E, 0x01, 0xF0, 0x0F, 0x80, 0x78, 0x07, - 0x00, 0x60, 0x1F, 0xC3, 0xFE, 0x7F, 0xE7, 0x8E, 0x7F, 0xF7, 0xFF, 0x7F, 0xE7, 0x80, 0x7F, 0xE3, - 0xFE, 0x1F, 0xE0, 0x78, 0x00, 0x07, 0xF1, 0xFE, 0x1F, 0x80, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xDE, 0x03, 0xC0, 0x7F, 0xEF, 0xFD, 0xFF, 0xBC, 0x07, 0x80, 0xF0, 0x1F, 0xFF, 0xFF, 0xFF, 0xF0, - 0x1C, 0x83, 0xFC, 0x3F, 0xC1, 0x30, 0x06, 0x01, 0xFC, 0x3F, 0xE7, 0xFE, 0x78, 0xE7, 0xFF, 0x7F, - 0xF7, 0xFE, 0x78, 0x07, 0xFE, 0x3F, 0xE1, 0xFE, 0x07, 0x80, 0x00, 0x20, 0x03, 0x80, 0x3C, 0x0B, - 0xC0, 0xFC, 0x1F, 0xC0, 0xEE, 0x02, 0x20, 0xFF, 0xE7, 0xFF, 0x3F, 0xF9, 0xFF, 0x8F, 0x00, 0x78, - 0x03, 0xFF, 0x1F, 0xF8, 0xFF, 0xC7, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0xFE, 0x7F, 0xF3, 0xFF, 0x80, - 0x00, 0x30, 0x03, 0xC0, 0x3E, 0x0F, 0xC1, 0xFC, 0x0F, 0xC0, 0x66, 0x00, 0xC0, 0x1F, 0xC1, 0xFF, - 0x1F, 0xF8, 0xF1, 0xC7, 0xFF, 0x3F, 0xF9, 0xFF, 0x8F, 0x00, 0x7F, 0xE1, 0xFF, 0x07, 0xF8, 0x0F, - 0x00, 0x01, 0x00, 0x70, 0x1F, 0x03, 0xE0, 0xFC, 0x7F, 0x0E, 0xE0, 0x88, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0xEF, 0x01, 0xE0, 0x3F, 0xF7, 0xFE, 0xFF, 0xDE, 0x03, 0xC0, 0x78, 0x0F, 0xFF, 0xFF, 0xFF, - 0xF8, 0x00, 0x00, 0x18, 0x03, 0xC0, 0x1E, 0x07, 0xF1, 0xFE, 0x1F, 0x81, 0x98, 0x06, 0x01, 0xFC, - 0x3F, 0xE7, 0xFE, 0x78, 0xE7, 0xFF, 0x7F, 0xF7, 0xFE, 0x78, 0x07, 0xFE, 0x3F, 0xE1, 0xFE, 0x07, - 0x80, 0x01, 0xE0, 0x1F, 0x00, 0x70, 0x4F, 0x0F, 0xE3, 0xF8, 0x3B, 0x81, 0x10, 0xFF, 0xEF, 0xFE, - 0xFF, 0xEF, 0xFC, 0xF0, 0x0F, 0x00, 0xFF, 0xCF, 0xFC, 0xFF, 0xCF, 0x00, 0xF0, 0x0F, 0x00, 0xFF, - 0xEF, 0xFE, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0x80, 0x7C, 0x00, 0xE0, 0x7F, 0x0F, 0xF0, 0x7E, 0x03, - 0x30, 0x06, 0x00, 0xFE, 0x0F, 0xF8, 0xFF, 0xC7, 0x8E, 0x3F, 0xF9, 0xFF, 0xCF, 0xFC, 0x78, 0x03, - 0xFF, 0x0F, 0xF8, 0x3F, 0xC0, 0x78, 0x00, 0x08, 0x87, 0xF8, 0xFE, 0x1B, 0xC0, 0x40, 0x1E, 0x0F, - 0xE1, 0xDC, 0x11, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFD, 0xE0, 0x3C, 0x07, 0xFE, 0xFF, 0xDF, 0xFB, - 0xC0, 0x78, 0x0F, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0x1E, 0xC3, 0xFC, 0x3F, 0xC1, 0x10, 0x07, 0x01, - 0xF8, 0x1F, 0x81, 0x98, 0x06, 0x01, 0xFC, 0x3F, 0xE7, 0xFE, 0x78, 0xE7, 0xFF, 0x7F, 0xF7, 0xFE, - 0x78, 0x07, 0xFE, 0x3F, 0xE1, 0xFE, 0x07, 0x80, 0x04, 0x01, 0xE0, 0xFE, 0x1D, 0xC1, 0x11, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xDE, 0x03, 0xC0, 0x7F, 0xEF, 0xFD, 0xFF, 0xBC, 0x07, 0x80, 0xF0, 0x1F, - 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x1C, 0x07, 0x80, 0x70, 0x04, 0x00, 0x00, 0x00, 0x70, 0x1F, 0x81, - 0xF8, 0x19, 0x80, 0x60, 0x1F, 0xC3, 0xFE, 0x7F, 0xE7, 0x8E, 0x7F, 0xF7, 0xFF, 0x7F, 0xE7, 0x80, - 0x7F, 0xE3, 0xFE, 0x1F, 0xE0, 0x78, 0x07, 0x00, 0xF0, 0x0F, 0x00, 0x60, 0x79, 0xF1, 0xCF, 0x39, - 0xE7, 0x9E, 0x79, 0xE7, 0x9E, 0x79, 0xE7, 0x9E, 0x79, 0xE7, 0x9E, 0x73, 0xE7, 0xCE, 0x70, 0xC7, - 0x9E, 0x79, 0xE7, 0x9E, 0x79, 0xE7, 0x9E, 0x78, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, - 0x7F, 0xF2, 0xFF, 0xF6, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0F, 0xFF, 0x60, 0x0F, 0xC0, 0x7F, - 0xE1, 0xFF, 0xE3, 0xF7, 0xEF, 0x83, 0xDE, 0x07, 0xBC, 0x07, 0xF8, 0x0F, 0xF0, 0x1F, 0xE0, 0x7F, - 0xC0, 0xF7, 0xC3, 0xE7, 0xFF, 0x87, 0xFF, 0x07, 0xF8, 0x01, 0xC0, 0x03, 0x80, 0x0F, 0x00, 0x1E, - 0x00, 0x18, 0x00, 0x06, 0x01, 0xFC, 0x3F, 0xE7, 0xFE, 0x78, 0xF7, 0x8F, 0x78, 0xF7, 0x8F, 0x78, - 0xF7, 0xFE, 0x3F, 0xE1, 0xFC, 0x07, 0x00, 0x70, 0x0F, 0x00, 0x70, 0x02, 0x00, 0x07, 0x80, 0x0F, - 0x80, 0x07, 0x00, 0x1C, 0x00, 0x30, 0x01, 0xF8, 0x0F, 0xFC, 0x3F, 0xFC, 0x7E, 0xFD, 0xF0, 0x7B, - 0xC0, 0xF7, 0x80, 0xFF, 0x01, 0xFE, 0x03, 0xFC, 0x0F, 0xF8, 0x1E, 0xF8, 0x7C, 0xFF, 0xF0, 0xFF, - 0xE0, 0xFF, 0x00, 0x38, 0x00, 0x0E, 0x00, 0xF8, 0x0F, 0x80, 0x78, 0x07, 0x00, 0x70, 0x1F, 0xC3, + 0xE7, 0xFF, 0xCF, 0x07, 0xBC, 0x0F, 0xF8, 0x0F, 0x1D, 0x87, 0xF1, 0xFE, 0x00, 0x00, 0xE0, 0x3E, + 0x0F, 0xE0, 0xD8, 0x0E, 0x0F, 0xF0, 0xFF, 0x1F, 0xE0, 0x1C, 0x7F, 0xDF, 0xFB, 0xFF, 0xF1, 0xFF, + 0xFD, 0xFF, 0x9F, 0xE0, 0xF0, 0x01, 0x00, 0x07, 0x00, 0x3F, 0x80, 0x77, 0x00, 0x44, 0x00, 0x70, + 0x01, 0xF0, 0x03, 0xE0, 0x0F, 0xE0, 0x1F, 0xC0, 0x7B, 0xC0, 0xF7, 0x81, 0xCF, 0x07, 0x8F, 0x0F, + 0xFE, 0x3F, 0xFE, 0x7F, 0xFC, 0xF0, 0x7B, 0xC0, 0xFF, 0x80, 0xF0, 0x00, 0x00, 0x70, 0x00, 0xE0, + 0x01, 0xC0, 0x01, 0x00, 0x00, 0x01, 0xC0, 0x7C, 0x1F, 0xC1, 0xB0, 0x1C, 0x1F, 0xE1, 0xFE, 0x3F, + 0xC0, 0x38, 0xFF, 0xBF, 0xF7, 0xFF, 0xE3, 0xFF, 0xFB, 0xFF, 0x3F, 0xC1, 0xE0, 0x38, 0x07, 0x80, + 0xF0, 0x0C, 0x00, 0x00, 0x40, 0x01, 0xC0, 0x07, 0x80, 0x1E, 0x00, 0x38, 0x01, 0xDC, 0x03, 0xF8, + 0x03, 0xF0, 0x03, 0x80, 0x07, 0x00, 0x1F, 0x00, 0x3E, 0x00, 0xFE, 0x01, 0xFC, 0x07, 0xBC, 0x0F, + 0x78, 0x1C, 0xF0, 0x78, 0xF0, 0xFF, 0xE3, 0xFF, 0xE7, 0xFF, 0xCF, 0x07, 0xBC, 0x0F, 0xF8, 0x0F, + 0x01, 0x00, 0x70, 0x1E, 0x07, 0x80, 0x60, 0x73, 0x0F, 0xE0, 0xFC, 0x0E, 0x01, 0xC1, 0xFE, 0x1F, + 0xE3, 0xFC, 0x03, 0x8F, 0xFB, 0xFF, 0x7F, 0xFE, 0x3F, 0xFF, 0xBF, 0xF3, 0xFC, 0x1E, 0x00, 0x02, + 0x00, 0x0E, 0x00, 0x3C, 0x00, 0x3C, 0x00, 0x38, 0x01, 0xDC, 0x03, 0xF8, 0x03, 0xF0, 0x03, 0x80, + 0x07, 0x00, 0x1F, 0x00, 0x3E, 0x00, 0xFE, 0x01, 0xFC, 0x07, 0xBC, 0x0F, 0x78, 0x1C, 0xF0, 0x78, + 0xF0, 0xFF, 0xE3, 0xFF, 0xE7, 0xFF, 0xCF, 0x07, 0xBC, 0x0F, 0xF8, 0x0F, 0x00, 0x03, 0x00, 0xF0, + 0x0F, 0x00, 0xE0, 0x7B, 0x0F, 0xE0, 0xFC, 0x0E, 0x01, 0xC1, 0xFE, 0x1F, 0xE3, 0xFC, 0x03, 0x8F, + 0xFB, 0xFF, 0x7F, 0xFE, 0x3F, 0xFF, 0xBF, 0xF3, 0xFC, 0x1E, 0x00, 0x03, 0x80, 0x0F, 0x80, 0x1F, + 0x00, 0x0E, 0x00, 0x38, 0x00, 0x20, 0x03, 0xB8, 0x07, 0xF0, 0x07, 0xE0, 0x07, 0x00, 0x0E, 0x00, + 0x3E, 0x00, 0x7C, 0x01, 0xFC, 0x03, 0xF8, 0x0F, 0x78, 0x1E, 0xF0, 0x39, 0xE0, 0xF1, 0xE1, 0xFF, + 0xC7, 0xFF, 0xCF, 0xFF, 0x9E, 0x0F, 0x78, 0x1F, 0xF0, 0x1E, 0x1F, 0x03, 0xE0, 0x1C, 0x07, 0x80, + 0xE0, 0x73, 0x0F, 0xE0, 0xFC, 0x0E, 0x01, 0xC1, 0xFE, 0x1F, 0xE3, 0xFC, 0x03, 0x8F, 0xFB, 0xFF, + 0x7F, 0xFE, 0x3F, 0xFF, 0xBF, 0xF3, 0xFC, 0x1E, 0x00, 0x00, 0x00, 0x0F, 0xE0, 0x3F, 0xC0, 0x7F, + 0x00, 0x00, 0x01, 0xDC, 0x03, 0xF8, 0x03, 0xF0, 0x03, 0x80, 0x07, 0x00, 0x1F, 0x00, 0x3E, 0x00, + 0xFE, 0x01, 0xFC, 0x07, 0xBC, 0x0F, 0x78, 0x1C, 0xF0, 0x78, 0xF0, 0xFF, 0xE3, 0xFF, 0xE7, 0xFF, + 0xCF, 0x07, 0xBC, 0x0F, 0xF8, 0x0F, 0x1D, 0x87, 0xF8, 0xFE, 0x08, 0x83, 0x98, 0x7F, 0x07, 0xE0, + 0x70, 0x0E, 0x0F, 0xF0, 0xFF, 0x1F, 0xE0, 0x1C, 0x7F, 0xDF, 0xFB, 0xFF, 0xF1, 0xFF, 0xFD, 0xFF, + 0x9F, 0xE0, 0xF0, 0x00, 0x00, 0x1D, 0xC0, 0x3F, 0x80, 0x3F, 0x00, 0x38, 0x00, 0x70, 0x01, 0xF0, + 0x03, 0xE0, 0x0F, 0xE0, 0x1F, 0xC0, 0x7B, 0xC0, 0xF7, 0x81, 0xCF, 0x07, 0x8F, 0x0F, 0xFE, 0x3F, + 0xFE, 0x7F, 0xFC, 0xF0, 0x7B, 0xC0, 0xFF, 0x80, 0xF0, 0x00, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xC0, + 0x01, 0x00, 0x39, 0x87, 0xF0, 0x7E, 0x07, 0x00, 0xE0, 0xFF, 0x0F, 0xF1, 0xFE, 0x01, 0xC7, 0xFD, + 0xFF, 0xBF, 0xFF, 0x1F, 0xFF, 0xDF, 0xF9, 0xFE, 0x0F, 0x01, 0xC0, 0x3C, 0x07, 0x80, 0x60, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, 0x01, 0xE0, 0x3F, 0xF7, 0xFE, 0xFF, 0xDE, 0x03, 0xC0, 0x78, 0x0F, + 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x0E, 0x03, 0xC0, 0x38, 0x02, 0x00, 0x06, 0x01, 0xFC, 0x3F, 0xE7, + 0xFE, 0x78, 0xE7, 0xFF, 0x7F, 0xF7, 0xFE, 0x78, 0x07, 0xFE, 0x3F, 0xE1, 0xFE, 0x07, 0x80, 0x70, + 0x0F, 0x00, 0xF0, 0x06, 0x00, 0x1E, 0x03, 0xE0, 0x1C, 0x07, 0x80, 0xE1, 0xFF, 0xFF, 0xFF, 0xFF, + 0xFF, 0xDE, 0x03, 0xC0, 0x7F, 0xEF, 0xFD, 0xFF, 0xBC, 0x07, 0x80, 0xF0, 0x1F, 0xFF, 0xFF, 0xFF, + 0xF0, 0x0E, 0x01, 0xF0, 0x0F, 0x80, 0x78, 0x07, 0x00, 0x60, 0x1F, 0xC3, 0xFE, 0x7F, 0xE7, 0x8E, + 0x7F, 0xF7, 0xFF, 0x7F, 0xE7, 0x80, 0x7F, 0xE3, 0xFE, 0x1F, 0xE0, 0x78, 0x00, 0x07, 0xF1, 0xFE, + 0x1F, 0x80, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xDE, 0x03, 0xC0, 0x7F, 0xEF, 0xFD, 0xFF, 0xBC, + 0x07, 0x80, 0xF0, 0x1F, 0xFF, 0xFF, 0xFF, 0xF0, 0x1C, 0x83, 0xFC, 0x3F, 0xC1, 0x30, 0x06, 0x01, + 0xFC, 0x3F, 0xE7, 0xFE, 0x78, 0xE7, 0xFF, 0x7F, 0xF7, 0xFE, 0x78, 0x07, 0xFE, 0x3F, 0xE1, 0xFE, + 0x07, 0x80, 0x00, 0x20, 0x03, 0x80, 0x3C, 0x0B, 0xC0, 0xFC, 0x1F, 0xC0, 0xEE, 0x02, 0x20, 0xFF, + 0xE7, 0xFF, 0x3F, 0xF9, 0xFF, 0x8F, 0x00, 0x78, 0x03, 0xFF, 0x1F, 0xF8, 0xFF, 0xC7, 0x80, 0x3C, + 0x01, 0xE0, 0x0F, 0xFE, 0x7F, 0xF3, 0xFF, 0x80, 0x00, 0x30, 0x03, 0xC0, 0x3E, 0x0F, 0xC1, 0xFC, + 0x0F, 0xC0, 0x66, 0x00, 0xC0, 0x1F, 0xC1, 0xFF, 0x1F, 0xF8, 0xF1, 0xC7, 0xFF, 0x3F, 0xF9, 0xFF, + 0x8F, 0x00, 0x7F, 0xE1, 0xFF, 0x07, 0xF8, 0x0F, 0x00, 0x01, 0x00, 0x70, 0x1F, 0x03, 0xE0, 0xFC, + 0x7F, 0x0E, 0xE0, 0x88, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, 0x01, 0xE0, 0x3F, 0xF7, 0xFE, 0xFF, + 0xDE, 0x03, 0xC0, 0x78, 0x0F, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x18, 0x03, 0xC0, 0x1E, 0x07, + 0xF1, 0xFE, 0x1F, 0x81, 0x98, 0x06, 0x01, 0xFC, 0x3F, 0xE7, 0xFE, 0x78, 0xE7, 0xFF, 0x7F, 0xF7, + 0xFE, 0x78, 0x07, 0xFE, 0x3F, 0xE1, 0xFE, 0x07, 0x80, 0x01, 0xE0, 0x1F, 0x00, 0x70, 0x4F, 0x0F, + 0xE3, 0xF8, 0x3B, 0x81, 0x10, 0xFF, 0xEF, 0xFE, 0xFF, 0xEF, 0xFC, 0xF0, 0x0F, 0x00, 0xFF, 0xCF, + 0xFC, 0xFF, 0xCF, 0x00, 0xF0, 0x0F, 0x00, 0xFF, 0xEF, 0xFE, 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0x80, + 0x7C, 0x00, 0xE0, 0x7F, 0x0F, 0xF0, 0x7E, 0x03, 0x30, 0x06, 0x00, 0xFE, 0x0F, 0xF8, 0xFF, 0xC7, + 0x8E, 0x3F, 0xF9, 0xFF, 0xCF, 0xFC, 0x78, 0x03, 0xFF, 0x0F, 0xF8, 0x3F, 0xC0, 0x78, 0x00, 0x08, + 0x87, 0xF8, 0xFE, 0x1B, 0xC0, 0x40, 0x1E, 0x0F, 0xE1, 0xDC, 0x11, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, + 0xFD, 0xE0, 0x3C, 0x07, 0xFE, 0xFF, 0xDF, 0xFB, 0xC0, 0x78, 0x0F, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, + 0x1E, 0xC3, 0xFC, 0x3F, 0xC1, 0x10, 0x07, 0x01, 0xF8, 0x1F, 0x81, 0x98, 0x06, 0x01, 0xFC, 0x3F, + 0xE7, 0xFE, 0x78, 0xE7, 0xFF, 0x7F, 0xF7, 0xFE, 0x78, 0x07, 0xFE, 0x3F, 0xE1, 0xFE, 0x07, 0x80, + 0x04, 0x01, 0xE0, 0xFE, 0x1D, 0xC1, 0x11, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xDE, 0x03, 0xC0, 0x7F, + 0xEF, 0xFD, 0xFF, 0xBC, 0x07, 0x80, 0xF0, 0x1F, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x1C, 0x07, 0x80, + 0x70, 0x04, 0x00, 0x00, 0x00, 0x70, 0x1F, 0x81, 0xF8, 0x19, 0x80, 0x60, 0x1F, 0xC3, 0xFE, 0x7F, + 0xE7, 0x8E, 0x7F, 0xF7, 0xFF, 0x7F, 0xE7, 0x80, 0x7F, 0xE3, 0xFE, 0x1F, 0xE0, 0x78, 0x07, 0x00, + 0xF0, 0x0F, 0x00, 0x60, 0x79, 0xF1, 0xCF, 0x39, 0xE7, 0x9E, 0x79, 0xE7, 0x9E, 0x79, 0xE7, 0x9E, + 0x79, 0xE7, 0x9E, 0x73, 0xE7, 0xCE, 0x70, 0xC7, 0x9E, 0x79, 0xE7, 0x9E, 0x79, 0xE7, 0x9E, 0x78, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x7F, 0xF2, 0xFF, 0xF6, 0x0F, 0xFF, 0xFF, 0xFF, + 0xFF, 0xFF, 0x0F, 0xFF, 0x60, 0x0F, 0xC0, 0x7F, 0xE1, 0xFF, 0xE3, 0xF7, 0xEF, 0x83, 0xDE, 0x07, + 0xBC, 0x07, 0xF8, 0x0F, 0xF0, 0x1F, 0xE0, 0x7F, 0xC0, 0xF7, 0xC3, 0xE7, 0xFF, 0x87, 0xFF, 0x07, + 0xF8, 0x01, 0xC0, 0x03, 0x80, 0x0F, 0x00, 0x1E, 0x00, 0x18, 0x00, 0x06, 0x01, 0xFC, 0x3F, 0xE7, + 0xFE, 0x78, 0xF7, 0x8F, 0x78, 0xF7, 0x8F, 0x78, 0xF7, 0xFE, 0x3F, 0xE1, 0xFC, 0x07, 0x00, 0x70, + 0x0F, 0x00, 0x70, 0x02, 0x00, 0x07, 0x80, 0x0F, 0x80, 0x07, 0x00, 0x1C, 0x00, 0x30, 0x01, 0xF8, + 0x0F, 0xFC, 0x3F, 0xFC, 0x7E, 0xFD, 0xF0, 0x7B, 0xC0, 0xF7, 0x80, 0xFF, 0x01, 0xFE, 0x03, 0xFC, + 0x0F, 0xF8, 0x1E, 0xF8, 0x7C, 0xFF, 0xF0, 0xFF, 0xE0, 0xFF, 0x00, 0x38, 0x00, 0x0E, 0x00, 0xF8, + 0x0F, 0x80, 0x78, 0x07, 0x00, 0x70, 0x1F, 0xC3, 0xFE, 0x7F, 0xE7, 0x8F, 0x78, 0xF7, 0x8F, 0x78, + 0xF7, 0x8F, 0x7F, 0xE3, 0xFE, 0x1F, 0xC0, 0x70, 0x00, 0x18, 0x00, 0x38, 0x00, 0xF0, 0x1B, 0xC0, + 0x7F, 0x01, 0xF8, 0x03, 0xF8, 0x02, 0x20, 0x0F, 0xC0, 0x7F, 0xE1, 0xFF, 0xE3, 0xF7, 0xEF, 0x83, + 0xDE, 0x07, 0xBC, 0x07, 0xF8, 0x0F, 0xF0, 0x1F, 0xE0, 0x7F, 0xC0, 0xF7, 0xC3, 0xE7, 0xFF, 0x87, + 0xFF, 0x07, 0xF8, 0x01, 0xC0, 0x00, 0x00, 0x01, 0x80, 0x1E, 0x01, 0xE0, 0x7E, 0x07, 0xE0, 0x7F, + 0x03, 0x30, 0x06, 0x00, 0xFE, 0x0F, 0xF8, 0xFF, 0xC7, 0x8F, 0x3C, 0x79, 0xE3, 0xCF, 0x1E, 0x78, + 0xF3, 0xFF, 0x0F, 0xF8, 0x3F, 0x80, 0x70, 0x00, 0x00, 0xC0, 0x03, 0xC0, 0x07, 0xC0, 0x1F, 0x80, + 0x7A, 0x01, 0xF8, 0x03, 0xF8, 0x02, 0x20, 0x0F, 0xC0, 0x7F, 0xE1, 0xFF, 0xE3, 0xF7, 0xEF, 0x83, + 0xDE, 0x07, 0xBC, 0x07, 0xF8, 0x0F, 0xF0, 0x1F, 0xE0, 0x7F, 0xC0, 0xF7, 0xC3, 0xE7, 0xFF, 0x87, + 0xFF, 0x07, 0xF8, 0x01, 0xC0, 0x01, 0x80, 0x38, 0x03, 0xC0, 0x1E, 0x07, 0xE0, 0xF8, 0x1F, 0xC1, + 0x98, 0x06, 0x01, 0xFC, 0x3F, 0xE7, 0xFE, 0x78, 0xF7, 0x8F, 0x78, 0xF7, 0x8F, 0x78, 0xF7, 0xFE, + 0x3F, 0xE1, 0xFC, 0x07, 0x00, 0x00, 0x20, 0x01, 0xF0, 0x03, 0xE0, 0x01, 0xC0, 0x37, 0x80, 0xFE, + 0x03, 0xF0, 0x07, 0xF0, 0x04, 0x40, 0x1F, 0x80, 0xFF, 0xC3, 0xFF, 0xC7, 0xEF, 0xDF, 0x07, 0xBC, + 0x0F, 0x78, 0x0F, 0xF0, 0x1F, 0xE0, 0x3F, 0xC0, 0xFF, 0x81, 0xEF, 0x87, 0xCF, 0xFF, 0x0F, 0xFE, + 0x0F, 0xF0, 0x03, 0x80, 0x00, 0xE0, 0x0F, 0x80, 0x3E, 0x00, 0xF0, 0x77, 0x07, 0xF0, 0x7F, 0x03, + 0x30, 0x06, 0x00, 0xFE, 0x0F, 0xF8, 0xFF, 0xC7, 0x8F, 0x3C, 0x79, 0xE3, 0xCF, 0x1E, 0x78, 0xF3, + 0xFF, 0x0F, 0xF8, 0x3F, 0x80, 0x70, 0x00, 0x06, 0x40, 0x1F, 0xC0, 0x7F, 0x80, 0x4E, 0x00, 0x30, + 0x00, 0xF0, 0x03, 0xF0, 0x07, 0xF0, 0x04, 0x40, 0x1F, 0x80, 0xFF, 0xC3, 0xFF, 0xC7, 0xEF, 0xDF, + 0x07, 0xBC, 0x0F, 0x78, 0x0F, 0xF0, 0x1F, 0xE0, 0x3F, 0xC0, 0xFF, 0x81, 0xEF, 0x87, 0xCF, 0xFF, + 0x0F, 0xFE, 0x0F, 0xF0, 0x03, 0x80, 0x1F, 0xC1, 0xFC, 0x3F, 0xC0, 0x00, 0x07, 0x00, 0xF8, 0x1F, + 0xC1, 0x98, 0x06, 0x01, 0xFC, 0x3F, 0xE7, 0xFE, 0x78, 0xF7, 0x8F, 0x78, 0xF7, 0x8F, 0x78, 0xF7, + 0xFE, 0x3F, 0xE1, 0xFC, 0x07, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x3F, 0x00, 0x7F, 0x00, 0x44, 0x01, + 0xF8, 0x0F, 0xFC, 0x3F, 0xFC, 0x7E, 0xFD, 0xF0, 0x7B, 0xC0, 0xF7, 0x80, 0xFF, 0x01, 0xFE, 0x03, + 0xFC, 0x0F, 0xF8, 0x1E, 0xF8, 0x7C, 0xFF, 0xF0, 0xFF, 0xE0, 0xFF, 0x00, 0x38, 0x00, 0x70, 0x01, + 0xE0, 0x03, 0xC0, 0x03, 0x00, 0x00, 0x00, 0x70, 0x0F, 0x81, 0xFC, 0x19, 0x80, 0x60, 0x1F, 0xC3, 0xFE, 0x7F, 0xE7, 0x8F, 0x78, 0xF7, 0x8F, 0x78, 0xF7, 0x8F, 0x7F, 0xE3, 0xFE, 0x1F, 0xC0, 0x70, - 0x00, 0x18, 0x00, 0x38, 0x00, 0xF0, 0x1B, 0xC0, 0x7F, 0x01, 0xF8, 0x03, 0xF8, 0x02, 0x20, 0x0F, - 0xC0, 0x7F, 0xE1, 0xFF, 0xE3, 0xF7, 0xEF, 0x83, 0xDE, 0x07, 0xBC, 0x07, 0xF8, 0x0F, 0xF0, 0x1F, - 0xE0, 0x7F, 0xC0, 0xF7, 0xC3, 0xE7, 0xFF, 0x87, 0xFF, 0x07, 0xF8, 0x01, 0xC0, 0x00, 0x00, 0x01, - 0x80, 0x1E, 0x01, 0xE0, 0x7E, 0x07, 0xE0, 0x7F, 0x03, 0x30, 0x06, 0x00, 0xFE, 0x0F, 0xF8, 0xFF, - 0xC7, 0x8F, 0x3C, 0x79, 0xE3, 0xCF, 0x1E, 0x78, 0xF3, 0xFF, 0x0F, 0xF8, 0x3F, 0x80, 0x70, 0x00, - 0x00, 0xC0, 0x03, 0xC0, 0x07, 0xC0, 0x1F, 0x80, 0x7A, 0x01, 0xF8, 0x03, 0xF8, 0x02, 0x20, 0x0F, - 0xC0, 0x7F, 0xE1, 0xFF, 0xE3, 0xF7, 0xEF, 0x83, 0xDE, 0x07, 0xBC, 0x07, 0xF8, 0x0F, 0xF0, 0x1F, - 0xE0, 0x7F, 0xC0, 0xF7, 0xC3, 0xE7, 0xFF, 0x87, 0xFF, 0x07, 0xF8, 0x01, 0xC0, 0x01, 0x80, 0x38, - 0x03, 0xC0, 0x1E, 0x07, 0xE0, 0xF8, 0x1F, 0xC1, 0x98, 0x06, 0x01, 0xFC, 0x3F, 0xE7, 0xFE, 0x78, - 0xF7, 0x8F, 0x78, 0xF7, 0x8F, 0x78, 0xF7, 0xFE, 0x3F, 0xE1, 0xFC, 0x07, 0x00, 0x00, 0x20, 0x01, - 0xF0, 0x03, 0xE0, 0x01, 0xC0, 0x37, 0x80, 0xFE, 0x03, 0xF0, 0x07, 0xF0, 0x04, 0x40, 0x1F, 0x80, - 0xFF, 0xC3, 0xFF, 0xC7, 0xEF, 0xDF, 0x07, 0xBC, 0x0F, 0x78, 0x0F, 0xF0, 0x1F, 0xE0, 0x3F, 0xC0, - 0xFF, 0x81, 0xEF, 0x87, 0xCF, 0xFF, 0x0F, 0xFE, 0x0F, 0xF0, 0x03, 0x80, 0x00, 0xE0, 0x0F, 0x80, - 0x3E, 0x00, 0xF0, 0x77, 0x07, 0xF0, 0x7F, 0x03, 0x30, 0x06, 0x00, 0xFE, 0x0F, 0xF8, 0xFF, 0xC7, - 0x8F, 0x3C, 0x79, 0xE3, 0xCF, 0x1E, 0x78, 0xF3, 0xFF, 0x0F, 0xF8, 0x3F, 0x80, 0x70, 0x00, 0x06, - 0x40, 0x1F, 0xC0, 0x7F, 0x80, 0x4E, 0x00, 0x30, 0x00, 0xF0, 0x03, 0xF0, 0x07, 0xF0, 0x04, 0x40, - 0x1F, 0x80, 0xFF, 0xC3, 0xFF, 0xC7, 0xEF, 0xDF, 0x07, 0xBC, 0x0F, 0x78, 0x0F, 0xF0, 0x1F, 0xE0, - 0x3F, 0xC0, 0xFF, 0x81, 0xEF, 0x87, 0xCF, 0xFF, 0x0F, 0xFE, 0x0F, 0xF0, 0x03, 0x80, 0x1F, 0xC1, - 0xFC, 0x3F, 0xC0, 0x00, 0x07, 0x00, 0xF8, 0x1F, 0xC1, 0x98, 0x06, 0x01, 0xFC, 0x3F, 0xE7, 0xFE, - 0x78, 0xF7, 0x8F, 0x78, 0xF7, 0x8F, 0x78, 0xF7, 0xFE, 0x3F, 0xE1, 0xFC, 0x07, 0x00, 0x03, 0x00, - 0x0F, 0x00, 0x3F, 0x00, 0x7F, 0x00, 0x44, 0x01, 0xF8, 0x0F, 0xFC, 0x3F, 0xFC, 0x7E, 0xFD, 0xF0, - 0x7B, 0xC0, 0xF7, 0x80, 0xFF, 0x01, 0xFE, 0x03, 0xFC, 0x0F, 0xF8, 0x1E, 0xF8, 0x7C, 0xFF, 0xF0, - 0xFF, 0xE0, 0xFF, 0x00, 0x38, 0x00, 0x70, 0x01, 0xE0, 0x03, 0xC0, 0x03, 0x00, 0x00, 0x00, 0x70, - 0x0F, 0x81, 0xFC, 0x19, 0x80, 0x60, 0x1F, 0xC3, 0xFE, 0x7F, 0xE7, 0x8F, 0x78, 0xF7, 0x8F, 0x78, - 0xF7, 0x8F, 0x7F, 0xE3, 0xFE, 0x1F, 0xC0, 0x70, 0x07, 0x00, 0xF0, 0x07, 0x00, 0x20, 0x01, 0x80, - 0x07, 0x80, 0x1E, 0x00, 0x38, 0xF0, 0x21, 0xE1, 0xFB, 0xCF, 0xFF, 0x3F, 0xFE, 0x7E, 0xFD, 0xF0, - 0x7B, 0xC0, 0xF7, 0x80, 0xFF, 0x01, 0xFE, 0x03, 0xFC, 0x0F, 0xF8, 0x1E, 0xF8, 0x7C, 0xFF, 0xF0, - 0xFF, 0xE0, 0xFF, 0x00, 0x38, 0x00, 0x03, 0x00, 0x1C, 0x01, 0xE0, 0x1E, 0x60, 0xE7, 0x83, 0x3C, - 0x7F, 0xE7, 0xFE, 0x7F, 0xE3, 0xC7, 0x9E, 0x3C, 0xF1, 0xE7, 0x8F, 0x3C, 0x79, 0xFF, 0x87, 0xFC, - 0x1F, 0xC0, 0x38, 0x00, 0x02, 0x00, 0x0E, 0x00, 0x1E, 0x00, 0x1E, 0xF0, 0x19, 0xE1, 0xFB, 0xCF, - 0xFF, 0x3F, 0xFE, 0x7E, 0xFD, 0xF0, 0x7B, 0xC0, 0xF7, 0x80, 0xFF, 0x01, 0xFE, 0x03, 0xFC, 0x0F, - 0xF8, 0x1E, 0xF8, 0x7C, 0xFF, 0xF0, 0xFF, 0xE0, 0xFF, 0x00, 0x38, 0x00, 0x04, 0x00, 0x70, 0x03, - 0xC0, 0x0F, 0x60, 0x37, 0x83, 0x3C, 0x7F, 0xE7, 0xFE, 0x7F, 0xE3, 0xC7, 0x9E, 0x3C, 0xF1, 0xE7, - 0x8F, 0x3C, 0x79, 0xFF, 0x87, 0xFC, 0x1F, 0xC0, 0x38, 0x00, 0x07, 0x80, 0x0F, 0x80, 0x07, 0x00, - 0x1C, 0xF0, 0x31, 0xE1, 0xFB, 0xCF, 0xFF, 0x3F, 0xFE, 0x7E, 0xFD, 0xF0, 0x7B, 0xC0, 0xF7, 0x80, - 0xFF, 0x01, 0xFE, 0x03, 0xFC, 0x0F, 0xF8, 0x1E, 0xF8, 0x7C, 0xFF, 0xF0, 0xFF, 0xE0, 0xFF, 0x00, - 0x38, 0x00, 0x0E, 0x00, 0x7C, 0x03, 0xE0, 0x0F, 0x60, 0x77, 0x83, 0xBC, 0x7F, 0xE7, 0xFE, 0x7F, - 0xE3, 0xC7, 0x9E, 0x3C, 0xF1, 0xE7, 0x8F, 0x3C, 0x79, 0xFF, 0x87, 0xFC, 0x1F, 0xC0, 0x38, 0x00, - 0x00, 0x00, 0x1F, 0xC0, 0x7F, 0x80, 0xFE, 0xF0, 0x01, 0xE1, 0xFB, 0xCF, 0xFF, 0x3F, 0xFE, 0x7E, - 0xFD, 0xF0, 0x7B, 0xC0, 0xF7, 0x80, 0xFF, 0x01, 0xFE, 0x03, 0xFC, 0x0F, 0xF8, 0x1E, 0xF8, 0x7C, - 0xFF, 0xF0, 0xFF, 0xE0, 0xFF, 0x00, 0x38, 0x00, 0x0E, 0xC0, 0xFE, 0x0F, 0xFC, 0x23, 0xF0, 0x67, - 0x8F, 0xFC, 0xFF, 0xCF, 0xFC, 0x78, 0xF3, 0xC7, 0x9E, 0x3C, 0xF1, 0xE7, 0x8F, 0x3F, 0xF0, 0xFF, - 0x83, 0xF8, 0x07, 0x00, 0x00, 0x1E, 0x00, 0x3C, 0x3F, 0x79, 0xFF, 0xE7, 0xFF, 0xCF, 0xDF, 0xBE, - 0x0F, 0x78, 0x1E, 0xF0, 0x1F, 0xE0, 0x3F, 0xC0, 0x7F, 0x81, 0xFF, 0x03, 0xDF, 0x0F, 0x9F, 0xFE, - 0x1F, 0xFC, 0x1F, 0xE0, 0x07, 0x00, 0x0E, 0x00, 0x3C, 0x00, 0x78, 0x00, 0x60, 0x00, 0x00, 0x30, - 0x03, 0xC1, 0x9E, 0x3F, 0xF3, 0xFF, 0x3F, 0xF1, 0xE3, 0xCF, 0x1E, 0x78, 0xF3, 0xC7, 0x9E, 0x3C, - 0xFF, 0xC3, 0xFE, 0x0F, 0xE0, 0x1C, 0x00, 0xE0, 0x0F, 0x00, 0x38, 0x00, 0x80, 0xF0, 0x77, 0x83, - 0xFC, 0x1F, 0xE0, 0xFF, 0x07, 0xF8, 0x3F, 0xC1, 0xFE, 0x0F, 0xF0, 0x7F, 0x83, 0xFC, 0x1F, 0xF1, - 0xE7, 0xFF, 0x3F, 0xF0, 0xFF, 0x00, 0xE0, 0x07, 0x00, 0x78, 0x01, 0xC0, 0x04, 0x00, 0xF3, 0xFC, - 0xFF, 0x3F, 0xCF, 0xF3, 0xFC, 0xFF, 0x3F, 0xCF, 0xFF, 0xDF, 0xF3, 0xFC, 0x38, 0x0E, 0x07, 0x81, - 0xE0, 0x30, 0x0F, 0x00, 0x7C, 0x00, 0xE0, 0x0F, 0x00, 0x70, 0x78, 0x3B, 0xC1, 0xFE, 0x0F, 0xF0, - 0x7F, 0x83, 0xFC, 0x1F, 0xE0, 0xFF, 0x07, 0xF8, 0x3F, 0xC1, 0xFE, 0x0F, 0xF8, 0xF3, 0xFF, 0x9F, - 0xF8, 0x7F, 0x80, 0x70, 0x00, 0x1C, 0x07, 0x81, 0xF0, 0x3C, 0x0E, 0x03, 0x0F, 0x3F, 0xCF, 0xF3, - 0xFC, 0xFF, 0x3F, 0xCF, 0xF3, 0xFC, 0xFF, 0xFD, 0xFF, 0x3F, 0xC3, 0x80, 0x03, 0x00, 0x07, 0x00, - 0x1E, 0x00, 0x78, 0x70, 0x61, 0xFE, 0x0F, 0xFC, 0x1F, 0xF8, 0x3C, 0xF0, 0x79, 0xE0, 0xF3, 0xC1, - 0xE7, 0x83, 0xCF, 0x07, 0x9E, 0x0F, 0x3C, 0x1E, 0x78, 0x3C, 0xF8, 0xF0, 0xFF, 0xE1, 0xFF, 0x81, - 0xFE, 0x00, 0x70, 0x00, 0x06, 0x00, 0x78, 0x03, 0xC0, 0x3C, 0x61, 0x87, 0x80, 0x3F, 0xCF, 0xDE, - 0x7C, 0xF3, 0xC7, 0x9E, 0x3C, 0xF1, 0xE7, 0x8F, 0x3C, 0x79, 0xE3, 0xFF, 0x0F, 0xF8, 0x3F, 0xC0, - 0x70, 0x00, 0x0C, 0x00, 0x3C, 0x00, 0x3C, 0x00, 0x38, 0x70, 0x31, 0xFE, 0x0F, 0xFC, 0x1F, 0xF8, - 0x3C, 0xF0, 0x79, 0xE0, 0xF3, 0xC1, 0xE7, 0x83, 0xCF, 0x07, 0x9E, 0x0F, 0x3C, 0x1E, 0x78, 0x3C, - 0xF8, 0xF0, 0xFF, 0xE1, 0xFF, 0x81, 0xFE, 0x00, 0x70, 0x00, 0x18, 0x01, 0xC0, 0x0F, 0x00, 0x3C, - 0x60, 0xE7, 0x80, 0x3F, 0xCF, 0xDE, 0x7C, 0xF3, 0xC7, 0x9E, 0x3C, 0xF1, 0xE7, 0x8F, 0x3C, 0x79, - 0xE3, 0xFF, 0x0F, 0xF8, 0x3F, 0xC0, 0x70, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x0E, 0x00, 0x3C, 0x70, - 0x71, 0xFE, 0x0F, 0xFC, 0x1F, 0xF8, 0x3C, 0xF0, 0x79, 0xE0, 0xF3, 0xC1, 0xE7, 0x83, 0xCF, 0x07, - 0x9E, 0x0F, 0x3C, 0x1E, 0x78, 0x3C, 0xF8, 0xF0, 0xFF, 0xE1, 0xFF, 0x81, 0xFE, 0x00, 0x70, 0x00, - 0x1C, 0x00, 0xF0, 0x07, 0xC0, 0x1E, 0x60, 0xE7, 0x86, 0x3F, 0xCF, 0xDE, 0x7C, 0xF3, 0xC7, 0x9E, - 0x3C, 0xF1, 0xE7, 0x8F, 0x3C, 0x79, 0xE3, 0xFF, 0x0F, 0xF8, 0x3F, 0xC0, 0x70, 0x00, 0x00, 0x00, - 0x3F, 0x80, 0xFF, 0x00, 0xFE, 0x70, 0x01, 0xFE, 0x0F, 0xFC, 0x1F, 0xF8, 0x3C, 0xF0, 0x79, 0xE0, - 0xF3, 0xC1, 0xE7, 0x83, 0xCF, 0x07, 0x9E, 0x0F, 0x3C, 0x1E, 0x78, 0x3C, 0xF8, 0xF0, 0xFF, 0xE1, - 0xFF, 0x81, 0xFE, 0x00, 0x70, 0x00, 0x39, 0x03, 0xFC, 0x1F, 0xEC, 0x4C, 0xF0, 0x07, 0xF9, 0xFB, - 0xCF, 0x9E, 0x78, 0xF3, 0xC7, 0x9E, 0x3C, 0xF1, 0xE7, 0x8F, 0x3C, 0x7F, 0xE1, 0xFF, 0x07, 0xF8, - 0x0E, 0x00, 0x00, 0x0E, 0x00, 0x3F, 0xC1, 0xFF, 0x83, 0xFF, 0x07, 0x9E, 0x0F, 0x3C, 0x1E, 0x78, - 0x3C, 0xF0, 0x79, 0xE0, 0xF3, 0xC1, 0xE7, 0x83, 0xCF, 0x07, 0x9F, 0x1E, 0x1F, 0xFC, 0x3F, 0xF0, - 0x3F, 0xC0, 0x0E, 0x00, 0x1C, 0x00, 0x78, 0x00, 0x70, 0x00, 0x40, 0x00, 0x00, 0x30, 0x03, 0xC0, - 0x1F, 0xE7, 0xEF, 0x3E, 0x79, 0xE3, 0xCF, 0x1E, 0x78, 0xF3, 0xC7, 0x9E, 0x3C, 0xF1, 0xFF, 0x87, - 0xFC, 0x1F, 0xE0, 0x38, 0x01, 0xC0, 0x1E, 0x00, 0xF0, 0x03, 0x00, 0x06, 0x00, 0x38, 0x00, 0xF0, - 0x01, 0xE0, 0x03, 0x80, 0x00, 0x0F, 0x83, 0xFE, 0x1E, 0x7C, 0x78, 0xF3, 0xC3, 0xFF, 0x07, 0xF8, - 0x1F, 0xE0, 0x3F, 0x00, 0xF8, 0x01, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, - 0x18, 0x03, 0xC0, 0x3E, 0x00, 0xE0, 0x06, 0x00, 0x00, 0xF0, 0xFF, 0x1E, 0x79, 0xE7, 0x9E, 0x7B, - 0xC3, 0xFC, 0x3F, 0x81, 0xF8, 0x1F, 0x81, 0xF0, 0x0F, 0x01, 0xE0, 0xFE, 0x0F, 0xC0, 0xF8, 0x00, - 0xF0, 0x3F, 0xE1, 0xF7, 0x87, 0x9F, 0x3C, 0x3C, 0xF0, 0xFF, 0x81, 0xFE, 0x03, 0xF0, 0x0F, 0xC0, - 0x1E, 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x00, 0x00, 0x07, 0x00, 0x1E, 0x00, - 0x78, 0x00, 0xC0, 0xF1, 0xEF, 0x1E, 0x79, 0xE7, 0x9C, 0x7B, 0xC3, 0xFC, 0x3F, 0x81, 0xF8, 0x1F, - 0x81, 0xF0, 0x0F, 0x01, 0xE6, 0xFE, 0xFF, 0xCF, 0xF8, 0x70, 0x0F, 0x80, 0x3E, 0x00, 0x3C, 0x01, - 0xE0, 0x07, 0x03, 0xC0, 0xFF, 0x87, 0xDE, 0x1E, 0x7C, 0xF0, 0xF3, 0xC3, 0xFE, 0x07, 0xF8, 0x0F, - 0xC0, 0x3F, 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x01, 0xE0, 0x0E, 0x01, 0xF0, - 0x1F, 0x00, 0x70, 0x0E, 0x00, 0x40, 0xF1, 0xEF, 0x1E, 0x79, 0xE7, 0x9C, 0x7B, 0xC3, 0xFC, 0x3F, - 0x81, 0xF8, 0x1F, 0x81, 0xF0, 0x0F, 0x01, 0xE0, 0xFE, 0x0F, 0xC0, 0xF8, 0x00, 0x00, 0x00, 0x3F, - 0x81, 0xFE, 0x07, 0xF0, 0x00, 0x03, 0xC0, 0xFF, 0x87, 0xDE, 0x1E, 0x7C, 0xF0, 0xF3, 0xC3, 0xFE, - 0x07, 0xF8, 0x0F, 0xC0, 0x3F, 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x01, 0xE0, - 0x1D, 0x83, 0xFC, 0x3F, 0x81, 0x30, 0x00, 0x0F, 0x1E, 0xF1, 0xE7, 0x9E, 0x79, 0xC7, 0xBC, 0x3F, - 0xC3, 0xF8, 0x1F, 0x81, 0xF8, 0x1F, 0x00, 0xF0, 0x1E, 0x0F, 0xE0, 0xFC, 0x0F, 0x80, 0xFF, 0xFF, - 0xFF, 0xFF, 0x49, 0xE3, 0x1E, 0x78, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x10, 0x6F, - 0xF6, 0xD3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0x21, 0x8F, 0xDB, 0x2C, 0x30, 0xC3, - 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0xFD, 0xFB, 0xF0, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x3B, 0xDE, - 0xE7, 0x38, 0x7B, 0xDC, 0xEF, 0x70, 0x7B, 0xDC, 0xEF, 0x70, 0x3B, 0x9E, 0xE7, 0x79, 0xDE, 0x77, - 0x9D, 0xE0, 0x7F, 0xBF, 0xDD, 0xEE, 0xFF, 0x77, 0x38, 0x7F, 0xBF, 0xDD, 0xEE, 0xFF, 0x77, 0x38, - 0x0E, 0x03, 0x80, 0xE0, 0x38, 0xFF, 0xFF, 0xFF, 0xFC, 0x38, 0x0E, 0x03, 0x80, 0xE0, 0x38, 0x0E, - 0x03, 0x80, 0xE0, 0x38, 0x0E, 0x03, 0x00, 0x0E, 0x03, 0x80, 0xE0, 0x38, 0xFF, 0xFF, 0xFF, 0xFC, - 0x38, 0x0E, 0x03, 0x8F, 0xFF, 0xFF, 0xFF, 0xC3, 0x80, 0xE0, 0x38, 0x0E, 0x03, 0x00, 0x3C, 0xFD, - 0xFB, 0xF7, 0xE7, 0x80, 0xF0, 0xE1, 0xFE, 0x3E, 0x3F, 0xC7, 0xC7, 0xF8, 0x70, 0xF0, 0x3E, 0x0E, - 0x00, 0x0F, 0xE3, 0xC0, 0x01, 0xDC, 0xF0, 0x00, 0x7B, 0xDE, 0x00, 0x0F, 0x7F, 0x80, 0x00, 0xEE, - 0xF0, 0x00, 0x1F, 0xFC, 0x00, 0x01, 0xF7, 0x7C, 0x3E, 0x01, 0xFF, 0xCF, 0xE0, 0x3B, 0xBF, 0xDC, - 0x0F, 0x73, 0xF3, 0x81, 0xCE, 0x7E, 0x70, 0x79, 0xDF, 0xEE, 0x1E, 0x3F, 0x9F, 0xC3, 0xC3, 0xE1, - 0xF0, 0x00, 0x38, 0xF3, 0xE7, 0x9F, 0x1E, 0x3E, 0x3C, 0x38, 0x00, 0x00, 0xE1, 0xE3, 0xC3, 0xC7, - 0xCF, 0x3C, 0x78, 0xE0, 0x00, 0x00, 0xE0, 0x3C, 0x0F, 0x01, 0xE0, 0x78, 0x0F, 0x03, 0xC0, 0x78, - 0x1E, 0x03, 0xC0, 0xF0, 0x1E, 0x07, 0x80, 0xE0, 0x3C, 0x00, 0x7C, 0x7E, 0xFE, 0xE7, 0xE7, 0xE7, - 0xFE, 0x7E, 0x7C, 0x1E, 0x3E, 0x7E, 0x6E, 0xFF, 0xFF, 0x0E, 0x0E, 0x7E, 0xFD, 0xC3, 0xE7, 0xE1, - 0xD3, 0xFF, 0xFC, 0x1E, 0x3E, 0x78, 0x7E, 0xFE, 0xEE, 0xFE, 0x7E, 0x3C, 0xFE, 0xFE, 0x0E, 0x1C, - 0x1C, 0x38, 0x38, 0x38, 0x7C, 0x7E, 0xEE, 0x7E, 0x7E, 0xFE, 0xEF, 0xFE, 0x7E, 0x7C, 0x7E, 0xEE, - 0xEE, 0x7E, 0x7E, 0x1E, 0x7C, 0x78, 0x7C, 0x7E, 0xFE, 0xE7, 0xE7, 0xE7, 0xFE, 0x7E, 0x7C, 0x1D, - 0xF7, 0xDF, 0x1C, 0x71, 0xC7, 0x1C, 0x7D, 0xFD, 0xB8, 0xF3, 0xCF, 0x1C, 0x7F, 0xFE, 0xFD, 0xFD, - 0x79, 0xE3, 0xE1, 0xD3, 0xFF, 0xFC, 0x1E, 0x3E, 0x7E, 0x6E, 0xFF, 0xFF, 0x0E, 0x0E, 0x7E, 0xFD, - 0xC3, 0xE7, 0xE1, 0xD3, 0xFF, 0xFC, 0x1E, 0x3E, 0x78, 0x7E, 0xFE, 0xEE, 0xFE, 0x7E, 0x3C, 0xFE, - 0xFE, 0x0E, 0x1C, 0x1C, 0x38, 0x38, 0x38, 0x7C, 0x7E, 0xEE, 0x7E, 0x7E, 0xFE, 0xEF, 0xFE, 0x7E, - 0x7C, 0x7E, 0xEE, 0xEE, 0x7E, 0x7E, 0x1E, 0x7C, 0x78, 0xFF, 0xCF, 0xFF, 0xEF, 0xFF, 0xEF, 0xF0, - 0xEF, 0xF7, 0xEF, 0xF7, 0xEF, 0xF7, 0xEF, 0xF7, 0xEF, 0xF7, 0xEF, 0xF7, 0x1F, 0xF7, 0xFE, 0xF7, - 0xFE, 0xF7, 0xFC, 0x07, 0xF0, 0xFF, 0x1F, 0xE1, 0xF2, 0x3C, 0x07, 0xFE, 0x7F, 0xC3, 0xC0, 0x7F, - 0xC7, 0xFC, 0x3C, 0x01, 0xF3, 0x1F, 0xF0, 0xFF, 0x07, 0xF0, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0xF0, - 0x0F, 0xC0, 0xFC, 0x0F, 0xC3, 0xF0, 0x3F, 0xC3, 0xFC, 0x1F, 0xC3, 0xF0, 0x3F, 0x03, 0xF0, 0x0F, - 0x00, 0x3F, 0x87, 0xFC, 0x3F, 0xC3, 0x3E, 0xFF, 0xFF, 0xFF, 0x1F, 0x83, 0xF0, 0xFF, 0xFF, 0xFF, - 0x78, 0x07, 0xCC, 0x7F, 0xE3, 0xFE, 0x1F, 0xC0, 0x7F, 0xFB, 0xFF, 0xC1, 0xF0, 0x03, 0x87, 0xFF, - 0x3F, 0xF8, 0x0F, 0x01, 0xF8, 0x7F, 0x83, 0xF8, 0x1F, 0x00, 0x7C, 0x01, 0xF0, 0x07, 0xC0, 0x1E, - 0x00, 0x3F, 0x83, 0xFC, 0x3F, 0xE3, 0x3F, 0x00, 0xF1, 0xFF, 0x3F, 0xF7, 0xFF, 0x7D, 0xFF, 0x0F, - 0xF0, 0xF7, 0xBE, 0x7F, 0xE7, 0xFC, 0x1F, 0x80, 0x07, 0x80, 0x0F, 0x80, 0x3F, 0x00, 0x7F, 0x00, - 0xFE, 0x03, 0xDC, 0x07, 0xBC, 0x1E, 0x78, 0x3C, 0x78, 0x78, 0xF1, 0xE1, 0xE3, 0xC1, 0xE7, 0xFF, - 0xDF, 0xFF, 0xBF, 0xFF, 0x80, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0xFF, 0x07, 0xF8, 0x3F, 0xC1, - 0xFE, 0x0F, 0xF0, 0x7F, 0x83, 0xFC, 0x1F, 0xE0, 0xFF, 0x07, 0xF8, 0x3F, 0xC1, 0xFE, 0x0F, 0xF0, - 0x78, 0xFF, 0xFF, 0xFF, 0xFF, 0xBC, 0x03, 0xC0, 0x7C, 0x07, 0x80, 0x78, 0x0F, 0x01, 0xE0, 0x78, - 0x1E, 0x07, 0xC0, 0xF0, 0x3F, 0xFF, 0xFF, 0xFF, 0xE0, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0xE0, 0x3C, - 0x0F, 0x01, 0xE0, 0x78, 0x0F, 0x03, 0xC0, 0x78, 0x1E, 0x03, 0xC0, 0xF0, 0x1E, 0x07, 0x80, 0xE0, - 0x3C, 0x00, 0x77, 0xFE, 0xE0, 0x00, 0x3C, 0x00, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x70, 0x03, 0xC0, - 0x0F, 0x0E, 0x38, 0xFD, 0xE1, 0xF7, 0x87, 0xFC, 0x03, 0xF0, 0x0F, 0xC0, 0x1E, 0x00, 0x78, 0x00, - 0x3D, 0xF3, 0xFF, 0xFF, 0xEF, 0xCE, 0x7F, 0xFB, 0xBF, 0xFC, 0xF7, 0xC0, 0x00, 0x07, 0xC7, 0xE3, - 0xF3, 0xE1, 0xE0, 0xF0, 0x78, 0x3C, 0x1E, 0x0F, 0x07, 0x83, 0xC1, 0xE0, 0xF0, 0x78, 0x3C, 0x7E, - 0x3E, 0x1F, 0x00, 0x00, 0x3C, 0x77, 0xEF, 0x7F, 0xEF, 0xFE, 0xE3, 0xC0, 0x00, 0x3C, 0x77, 0xFF, - 0x7F, 0xEF, 0xFE, 0xE3, 0xC0, 0x01, 0x80, 0xE0, 0x3B, 0xFF, 0xFF, 0xFF, 0xF0, 0xE0, 0x70, 0xFF, - 0xFF, 0xFF, 0xFD, 0xC0, 0x70, 0x18, 0x00, 0x03, 0xCF, 0xFF, 0xFF, 0xFE, 0xF8, 0x3F, 0xEF, 0xFC, - 0xFF, 0x03, 0xC0, 0x0F, 0xFF, 0xFF, 0xFF, 0xC0, 0xF0, 0x3F, 0xCF, 0xFD, 0xFF, 0x07, 0xDF, 0xFF, - 0xFF, 0xFC, 0xF0, 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0xC0, 0x3F, 0x1F, 0xBF, 0x9F, 0xFF, 0xDF, 0xFF, - 0x6F, 0xAF, 0x07, 0x87, 0xFB, 0xFF, 0xFD, 0xFF, 0xFE, 0xFF, 0xF0, 0x78, 0x78, 0x3C, 0x3C, 0x1E, - 0x1E, 0x0F, 0x0F, 0x07, 0x87, 0x83, 0xC3, 0xC1, 0xE1, 0xE0, 0xF0, 0x3F, 0x7B, 0xFB, 0xFF, 0xDF, - 0xF0, 0xFF, 0x00, 0x7F, 0xBF, 0xFD, 0xFF, 0xEF, 0xF0, 0x7F, 0x83, 0xFC, 0x1F, 0xE0, 0xFF, 0x07, - 0xF8, 0x3F, 0xC1, 0xFE, 0x0F, 0x3F, 0x78, 0xFE, 0xF3, 0xFD, 0xE7, 0xC3, 0xCF, 0x07, 0x9F, 0xEF, - 0x3F, 0xDE, 0x7F, 0xBC, 0xF0, 0x79, 0xE0, 0xF3, 0xC1, 0xE7, 0x83, 0xCF, 0x07, 0xDE, 0x0F, 0xBC, - 0x1F, 0x78, 0x1E, 0x3F, 0x1F, 0xB9, 0xFC, 0xFF, 0xFF, 0xF7, 0xF7, 0xFE, 0xDF, 0x4E, 0xF0, 0x78, - 0x03, 0xFD, 0xFE, 0xFF, 0xF7, 0xFB, 0xFF, 0xDF, 0xEF, 0xF0, 0x78, 0x3F, 0xC1, 0xE0, 0xFF, 0x07, - 0x83, 0xFC, 0x1E, 0x0F, 0xF0, 0x78, 0x3F, 0xC1, 0xE0, 0xFF, 0x07, 0x83, 0xFC, 0x1E, 0x0F, 0x3F, - 0x1F, 0xBC, 0xFE, 0x7F, 0x7B, 0xFD, 0xFC, 0xF7, 0xDB, 0xE9, 0xEF, 0x07, 0x83, 0xDF, 0xEF, 0xF7, - 0xBF, 0xDF, 0xEF, 0x7F, 0xBF, 0xDE, 0xF0, 0x78, 0x3D, 0xE0, 0xF0, 0x7B, 0xC1, 0xE0, 0xF7, 0x83, - 0xC1, 0xEF, 0x07, 0x83, 0xDE, 0x0F, 0x07, 0xFC, 0x1E, 0x0F, 0xF8, 0x3C, 0x0F, + 0x07, 0x00, 0xF0, 0x07, 0x00, 0x20, 0x01, 0x80, 0x07, 0x80, 0x1E, 0x00, 0x38, 0xF0, 0x21, 0xE1, + 0xFB, 0xCF, 0xFF, 0x3F, 0xFE, 0x7E, 0xFD, 0xF0, 0x7B, 0xC0, 0xF7, 0x80, 0xFF, 0x01, 0xFE, 0x03, + 0xFC, 0x0F, 0xF8, 0x1E, 0xF8, 0x7C, 0xFF, 0xF0, 0xFF, 0xE0, 0xFF, 0x00, 0x38, 0x00, 0x03, 0x00, + 0x1C, 0x01, 0xE0, 0x1E, 0x60, 0xE7, 0x83, 0x3C, 0x7F, 0xE7, 0xFE, 0x7F, 0xE3, 0xC7, 0x9E, 0x3C, + 0xF1, 0xE7, 0x8F, 0x3C, 0x79, 0xFF, 0x87, 0xFC, 0x1F, 0xC0, 0x38, 0x00, 0x02, 0x00, 0x0E, 0x00, + 0x1E, 0x00, 0x1E, 0xF0, 0x19, 0xE1, 0xFB, 0xCF, 0xFF, 0x3F, 0xFE, 0x7E, 0xFD, 0xF0, 0x7B, 0xC0, + 0xF7, 0x80, 0xFF, 0x01, 0xFE, 0x03, 0xFC, 0x0F, 0xF8, 0x1E, 0xF8, 0x7C, 0xFF, 0xF0, 0xFF, 0xE0, + 0xFF, 0x00, 0x38, 0x00, 0x04, 0x00, 0x70, 0x03, 0xC0, 0x0F, 0x60, 0x37, 0x83, 0x3C, 0x7F, 0xE7, + 0xFE, 0x7F, 0xE3, 0xC7, 0x9E, 0x3C, 0xF1, 0xE7, 0x8F, 0x3C, 0x79, 0xFF, 0x87, 0xFC, 0x1F, 0xC0, + 0x38, 0x00, 0x07, 0x80, 0x0F, 0x80, 0x07, 0x00, 0x1C, 0xF0, 0x31, 0xE1, 0xFB, 0xCF, 0xFF, 0x3F, + 0xFE, 0x7E, 0xFD, 0xF0, 0x7B, 0xC0, 0xF7, 0x80, 0xFF, 0x01, 0xFE, 0x03, 0xFC, 0x0F, 0xF8, 0x1E, + 0xF8, 0x7C, 0xFF, 0xF0, 0xFF, 0xE0, 0xFF, 0x00, 0x38, 0x00, 0x0E, 0x00, 0x7C, 0x03, 0xE0, 0x0F, + 0x60, 0x77, 0x83, 0xBC, 0x7F, 0xE7, 0xFE, 0x7F, 0xE3, 0xC7, 0x9E, 0x3C, 0xF1, 0xE7, 0x8F, 0x3C, + 0x79, 0xFF, 0x87, 0xFC, 0x1F, 0xC0, 0x38, 0x00, 0x00, 0x00, 0x1F, 0xC0, 0x7F, 0x80, 0xFE, 0xF0, + 0x01, 0xE1, 0xFB, 0xCF, 0xFF, 0x3F, 0xFE, 0x7E, 0xFD, 0xF0, 0x7B, 0xC0, 0xF7, 0x80, 0xFF, 0x01, + 0xFE, 0x03, 0xFC, 0x0F, 0xF8, 0x1E, 0xF8, 0x7C, 0xFF, 0xF0, 0xFF, 0xE0, 0xFF, 0x00, 0x38, 0x00, + 0x0E, 0xC0, 0xFE, 0x0F, 0xFC, 0x23, 0xF0, 0x67, 0x8F, 0xFC, 0xFF, 0xCF, 0xFC, 0x78, 0xF3, 0xC7, + 0x9E, 0x3C, 0xF1, 0xE7, 0x8F, 0x3F, 0xF0, 0xFF, 0x83, 0xF8, 0x07, 0x00, 0x00, 0x1E, 0x00, 0x3C, + 0x3F, 0x79, 0xFF, 0xE7, 0xFF, 0xCF, 0xDF, 0xBE, 0x0F, 0x78, 0x1E, 0xF0, 0x1F, 0xE0, 0x3F, 0xC0, + 0x7F, 0x81, 0xFF, 0x03, 0xDF, 0x0F, 0x9F, 0xFE, 0x1F, 0xFC, 0x1F, 0xE0, 0x07, 0x00, 0x0E, 0x00, + 0x3C, 0x00, 0x78, 0x00, 0x60, 0x00, 0x00, 0x30, 0x03, 0xC1, 0x9E, 0x3F, 0xF3, 0xFF, 0x3F, 0xF1, + 0xE3, 0xCF, 0x1E, 0x78, 0xF3, 0xC7, 0x9E, 0x3C, 0xFF, 0xC3, 0xFE, 0x0F, 0xE0, 0x1C, 0x00, 0xE0, + 0x0F, 0x00, 0x38, 0x00, 0x80, 0xF0, 0x77, 0x83, 0xFC, 0x1F, 0xE0, 0xFF, 0x07, 0xF8, 0x3F, 0xC1, + 0xFE, 0x0F, 0xF0, 0x7F, 0x83, 0xFC, 0x1F, 0xF1, 0xE7, 0xFF, 0x3F, 0xF0, 0xFF, 0x00, 0xE0, 0x07, + 0x00, 0x78, 0x01, 0xC0, 0x04, 0x00, 0xF3, 0xFC, 0xFF, 0x3F, 0xCF, 0xF3, 0xFC, 0xFF, 0x3F, 0xCF, + 0xFF, 0xDF, 0xF3, 0xFC, 0x38, 0x0E, 0x07, 0x81, 0xE0, 0x30, 0x0F, 0x00, 0x7C, 0x00, 0xE0, 0x0F, + 0x00, 0x70, 0x78, 0x3B, 0xC1, 0xFE, 0x0F, 0xF0, 0x7F, 0x83, 0xFC, 0x1F, 0xE0, 0xFF, 0x07, 0xF8, + 0x3F, 0xC1, 0xFE, 0x0F, 0xF8, 0xF3, 0xFF, 0x9F, 0xF8, 0x7F, 0x80, 0x70, 0x00, 0x1C, 0x07, 0x81, + 0xF0, 0x3C, 0x0E, 0x03, 0x0F, 0x3F, 0xCF, 0xF3, 0xFC, 0xFF, 0x3F, 0xCF, 0xF3, 0xFC, 0xFF, 0xFD, + 0xFF, 0x3F, 0xC3, 0x80, 0x03, 0x00, 0x07, 0x00, 0x1E, 0x00, 0x78, 0x70, 0x61, 0xFE, 0x0F, 0xFC, + 0x1F, 0xF8, 0x3C, 0xF0, 0x79, 0xE0, 0xF3, 0xC1, 0xE7, 0x83, 0xCF, 0x07, 0x9E, 0x0F, 0x3C, 0x1E, + 0x78, 0x3C, 0xF8, 0xF0, 0xFF, 0xE1, 0xFF, 0x81, 0xFE, 0x00, 0x70, 0x00, 0x06, 0x00, 0x78, 0x03, + 0xC0, 0x3C, 0x61, 0x87, 0x80, 0x3F, 0xCF, 0xDE, 0x7C, 0xF3, 0xC7, 0x9E, 0x3C, 0xF1, 0xE7, 0x8F, + 0x3C, 0x79, 0xE3, 0xFF, 0x0F, 0xF8, 0x3F, 0xC0, 0x70, 0x00, 0x0C, 0x00, 0x3C, 0x00, 0x3C, 0x00, + 0x38, 0x70, 0x31, 0xFE, 0x0F, 0xFC, 0x1F, 0xF8, 0x3C, 0xF0, 0x79, 0xE0, 0xF3, 0xC1, 0xE7, 0x83, + 0xCF, 0x07, 0x9E, 0x0F, 0x3C, 0x1E, 0x78, 0x3C, 0xF8, 0xF0, 0xFF, 0xE1, 0xFF, 0x81, 0xFE, 0x00, + 0x70, 0x00, 0x18, 0x01, 0xC0, 0x0F, 0x00, 0x3C, 0x60, 0xE7, 0x80, 0x3F, 0xCF, 0xDE, 0x7C, 0xF3, + 0xC7, 0x9E, 0x3C, 0xF1, 0xE7, 0x8F, 0x3C, 0x79, 0xE3, 0xFF, 0x0F, 0xF8, 0x3F, 0xC0, 0x70, 0x00, + 0x0F, 0x00, 0x1F, 0x00, 0x0E, 0x00, 0x3C, 0x70, 0x71, 0xFE, 0x0F, 0xFC, 0x1F, 0xF8, 0x3C, 0xF0, + 0x79, 0xE0, 0xF3, 0xC1, 0xE7, 0x83, 0xCF, 0x07, 0x9E, 0x0F, 0x3C, 0x1E, 0x78, 0x3C, 0xF8, 0xF0, + 0xFF, 0xE1, 0xFF, 0x81, 0xFE, 0x00, 0x70, 0x00, 0x1C, 0x00, 0xF0, 0x07, 0xC0, 0x1E, 0x60, 0xE7, + 0x86, 0x3F, 0xCF, 0xDE, 0x7C, 0xF3, 0xC7, 0x9E, 0x3C, 0xF1, 0xE7, 0x8F, 0x3C, 0x79, 0xE3, 0xFF, + 0x0F, 0xF8, 0x3F, 0xC0, 0x70, 0x00, 0x00, 0x00, 0x3F, 0x80, 0xFF, 0x00, 0xFE, 0x70, 0x01, 0xFE, + 0x0F, 0xFC, 0x1F, 0xF8, 0x3C, 0xF0, 0x79, 0xE0, 0xF3, 0xC1, 0xE7, 0x83, 0xCF, 0x07, 0x9E, 0x0F, + 0x3C, 0x1E, 0x78, 0x3C, 0xF8, 0xF0, 0xFF, 0xE1, 0xFF, 0x81, 0xFE, 0x00, 0x70, 0x00, 0x39, 0x03, + 0xFC, 0x1F, 0xEC, 0x4C, 0xF0, 0x07, 0xF9, 0xFB, 0xCF, 0x9E, 0x78, 0xF3, 0xC7, 0x9E, 0x3C, 0xF1, + 0xE7, 0x8F, 0x3C, 0x7F, 0xE1, 0xFF, 0x07, 0xF8, 0x0E, 0x00, 0x00, 0x0E, 0x00, 0x3F, 0xC1, 0xFF, + 0x83, 0xFF, 0x07, 0x9E, 0x0F, 0x3C, 0x1E, 0x78, 0x3C, 0xF0, 0x79, 0xE0, 0xF3, 0xC1, 0xE7, 0x83, + 0xCF, 0x07, 0x9F, 0x1E, 0x1F, 0xFC, 0x3F, 0xF0, 0x3F, 0xC0, 0x0E, 0x00, 0x1C, 0x00, 0x78, 0x00, + 0x70, 0x00, 0x40, 0x00, 0x00, 0x30, 0x03, 0xC0, 0x1F, 0xE7, 0xEF, 0x3E, 0x79, 0xE3, 0xCF, 0x1E, + 0x78, 0xF3, 0xC7, 0x9E, 0x3C, 0xF1, 0xFF, 0x87, 0xFC, 0x1F, 0xE0, 0x38, 0x01, 0xC0, 0x1E, 0x00, + 0xF0, 0x03, 0x00, 0x06, 0x00, 0x38, 0x00, 0xF0, 0x01, 0xE0, 0x03, 0x80, 0x00, 0x0F, 0x83, 0xFE, + 0x1E, 0x7C, 0x78, 0xF3, 0xC3, 0xFF, 0x07, 0xF8, 0x1F, 0xE0, 0x3F, 0x00, 0xF8, 0x01, 0xE0, 0x07, + 0x80, 0x1E, 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x18, 0x03, 0xC0, 0x3E, 0x00, 0xE0, 0x06, 0x00, + 0x00, 0xF0, 0xFF, 0x1E, 0x79, 0xE7, 0x9E, 0x7B, 0xC3, 0xFC, 0x3F, 0x81, 0xF8, 0x1F, 0x81, 0xF0, + 0x0F, 0x01, 0xE0, 0xFE, 0x0F, 0xC0, 0xF8, 0x00, 0xF0, 0x3F, 0xE1, 0xF7, 0x87, 0x9F, 0x3C, 0x3C, + 0xF0, 0xFF, 0x81, 0xFE, 0x03, 0xF0, 0x0F, 0xC0, 0x1E, 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x1E, + 0x00, 0x78, 0x00, 0x00, 0x07, 0x00, 0x1E, 0x00, 0x78, 0x00, 0xC0, 0xF1, 0xEF, 0x1E, 0x79, 0xE7, + 0x9C, 0x7B, 0xC3, 0xFC, 0x3F, 0x81, 0xF8, 0x1F, 0x81, 0xF0, 0x0F, 0x01, 0xE6, 0xFE, 0xFF, 0xCF, + 0xF8, 0x70, 0x0F, 0x80, 0x3E, 0x00, 0x3C, 0x01, 0xE0, 0x07, 0x03, 0xC0, 0xFF, 0x87, 0xDE, 0x1E, + 0x7C, 0xF0, 0xF3, 0xC3, 0xFE, 0x07, 0xF8, 0x0F, 0xC0, 0x3F, 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, + 0x1E, 0x00, 0x78, 0x01, 0xE0, 0x0E, 0x01, 0xF0, 0x1F, 0x00, 0x70, 0x0E, 0x00, 0x40, 0xF1, 0xEF, + 0x1E, 0x79, 0xE7, 0x9C, 0x7B, 0xC3, 0xFC, 0x3F, 0x81, 0xF8, 0x1F, 0x81, 0xF0, 0x0F, 0x01, 0xE0, + 0xFE, 0x0F, 0xC0, 0xF8, 0x00, 0x00, 0x00, 0x3F, 0x81, 0xFE, 0x07, 0xF0, 0x00, 0x03, 0xC0, 0xFF, + 0x87, 0xDE, 0x1E, 0x7C, 0xF0, 0xF3, 0xC3, 0xFE, 0x07, 0xF8, 0x0F, 0xC0, 0x3F, 0x00, 0x78, 0x01, + 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x01, 0xE0, 0x1D, 0x83, 0xFC, 0x3F, 0x81, 0x30, 0x00, 0x0F, + 0x1E, 0xF1, 0xE7, 0x9E, 0x79, 0xC7, 0xBC, 0x3F, 0xC3, 0xF8, 0x1F, 0x81, 0xF8, 0x1F, 0x00, 0xF0, + 0x1E, 0x0F, 0xE0, 0xFC, 0x0F, 0x80, 0xFF, 0xFF, 0xFF, 0xFF, 0x49, 0xE3, 0x1E, 0x78, 0xC3, 0x0C, + 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x10, 0x6F, 0xF6, 0xD3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, + 0x0C, 0x30, 0x21, 0x8F, 0xDB, 0x2C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0xFD, 0xFB, + 0xF0, 0xFD, 0xFB, 0xF0, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, + 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x3B, 0xDE, 0xE7, 0x38, 0x7B, 0xDC, 0xEF, + 0x70, 0x7B, 0xDC, 0xEF, 0x70, 0x3B, 0x9E, 0xE7, 0x79, 0xDE, 0x77, 0x9D, 0xE0, 0x7F, 0xBF, 0xDD, + 0xEE, 0xFF, 0x77, 0x38, 0x7F, 0xBF, 0xDD, 0xEE, 0xFF, 0x77, 0x38, 0x0E, 0x03, 0x80, 0xE0, 0x38, + 0xFF, 0xFF, 0xFF, 0xFC, 0x38, 0x0E, 0x03, 0x80, 0xE0, 0x38, 0x0E, 0x03, 0x80, 0xE0, 0x38, 0x0E, + 0x03, 0x00, 0x0E, 0x03, 0x80, 0xE0, 0x38, 0xFF, 0xFF, 0xFF, 0xFC, 0x38, 0x0E, 0x03, 0x8F, 0xFF, + 0xFF, 0xFF, 0xC3, 0x80, 0xE0, 0x38, 0x0E, 0x03, 0x00, 0x3C, 0xFD, 0xFB, 0xF7, 0xE7, 0x80, 0xF0, + 0xE1, 0xFE, 0x3E, 0x3F, 0xC7, 0xC7, 0xF8, 0x70, 0xF0, 0x3E, 0x0E, 0x00, 0x0F, 0xE3, 0xC0, 0x01, + 0xDC, 0xF0, 0x00, 0x7B, 0xDE, 0x00, 0x0F, 0x7F, 0x80, 0x00, 0xEE, 0xF0, 0x00, 0x1F, 0xFC, 0x00, + 0x01, 0xF7, 0x7C, 0x3E, 0x01, 0xFF, 0xCF, 0xE0, 0x3B, 0xBF, 0xDC, 0x0F, 0x73, 0xF3, 0x81, 0xCE, + 0x7E, 0x70, 0x79, 0xDF, 0xEE, 0x1E, 0x3F, 0x9F, 0xC3, 0xC3, 0xE1, 0xF0, 0x00, 0x38, 0xF3, 0xE7, + 0x9F, 0x1E, 0x3E, 0x3C, 0x38, 0x00, 0x00, 0xE1, 0xE3, 0xC3, 0xC7, 0xCF, 0x3C, 0x78, 0xE0, 0x00, + 0x00, 0xE0, 0x3C, 0x0F, 0x01, 0xE0, 0x78, 0x0F, 0x03, 0xC0, 0x78, 0x1E, 0x03, 0xC0, 0xF0, 0x1E, + 0x07, 0x80, 0xE0, 0x3C, 0x00, 0x33, 0xEF, 0xBE, 0x70, 0x00, 0x00, 0x03, 0xEF, 0x9E, 0x79, 0xE3, + 0x8E, 0x7C, 0x7E, 0xFE, 0xE7, 0xE7, 0xE7, 0xFE, 0x7E, 0x7C, 0x1E, 0x3E, 0x7E, 0x6E, 0xFF, 0xFF, + 0x0E, 0x0E, 0x7E, 0xFD, 0xC3, 0xE7, 0xE1, 0xD3, 0xFF, 0xFC, 0x1E, 0x3E, 0x78, 0x7E, 0xFE, 0xEE, + 0xFE, 0x7E, 0x3C, 0xFE, 0xFE, 0x0E, 0x1C, 0x1C, 0x38, 0x38, 0x38, 0x7C, 0x7E, 0xEE, 0x7E, 0x7E, + 0xFE, 0xEF, 0xFE, 0x7E, 0x7C, 0x7E, 0xEE, 0xEE, 0x7E, 0x7E, 0x1E, 0x7C, 0x78, 0x7C, 0x7E, 0xFE, + 0xE7, 0xE7, 0xE7, 0xFE, 0x7E, 0x7C, 0x1D, 0xF7, 0xDF, 0x1C, 0x71, 0xC7, 0x1C, 0x7D, 0xFD, 0xB8, + 0xF3, 0xCF, 0x1C, 0x7F, 0xFE, 0xFD, 0xFD, 0x79, 0xE3, 0xE1, 0xD3, 0xFF, 0xFC, 0x1E, 0x3E, 0x7E, + 0x6E, 0xFF, 0xFF, 0x0E, 0x0E, 0x7E, 0xFD, 0xC3, 0xE7, 0xE1, 0xD3, 0xFF, 0xFC, 0x1E, 0x3E, 0x78, + 0x7E, 0xFE, 0xEE, 0xFE, 0x7E, 0x3C, 0xFE, 0xFE, 0x0E, 0x1C, 0x1C, 0x38, 0x38, 0x38, 0x7C, 0x7E, + 0xEE, 0x7E, 0x7E, 0xFE, 0xEF, 0xFE, 0x7E, 0x7C, 0x7E, 0xEE, 0xEE, 0x7E, 0x7E, 0x1E, 0x7C, 0x78, + 0xFF, 0xCF, 0xFF, 0xEF, 0xFF, 0xEF, 0xF0, 0xEF, 0xF7, 0xEF, 0xF7, 0xEF, 0xF7, 0xEF, 0xF7, 0xEF, + 0xF7, 0xEF, 0xF7, 0x1F, 0xF7, 0xFE, 0xF7, 0xFE, 0xF7, 0xFC, 0x07, 0xF0, 0xFF, 0x1F, 0xE1, 0xF2, + 0x3C, 0x07, 0xFE, 0x7F, 0xC3, 0xC0, 0x7F, 0xC7, 0xFC, 0x3C, 0x01, 0xF3, 0x1F, 0xF0, 0xFF, 0x07, + 0xF0, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0xF0, 0x0F, 0xC0, 0xFC, 0x0F, 0xC3, 0xF0, 0x3F, 0xC3, 0xFC, + 0x1F, 0xC3, 0xF0, 0x3F, 0x03, 0xF0, 0x0F, 0x00, 0x3F, 0x87, 0xFC, 0x3F, 0xC3, 0x3E, 0xFF, 0xFF, + 0xFF, 0x1F, 0x83, 0xF0, 0xFF, 0xFF, 0xFF, 0x78, 0x07, 0xCC, 0x7F, 0xE3, 0xFE, 0x1F, 0xC0, 0x7F, + 0xFB, 0xFF, 0xC1, 0xF0, 0x03, 0x87, 0xFF, 0x3F, 0xF8, 0x0F, 0x01, 0xF8, 0x7F, 0x83, 0xF8, 0x1F, + 0x00, 0x7C, 0x01, 0xF0, 0x07, 0xC0, 0x1E, 0x00, 0x3F, 0x83, 0xFC, 0x3F, 0xE3, 0x3F, 0x00, 0xF1, + 0xFF, 0x3F, 0xF7, 0xFF, 0x7D, 0xFF, 0x0F, 0xF0, 0xF7, 0xBE, 0x7F, 0xE7, 0xFC, 0x1F, 0x80, 0x07, + 0x80, 0x0F, 0x80, 0x3F, 0x00, 0x7F, 0x00, 0xFE, 0x03, 0xDC, 0x07, 0xBC, 0x1E, 0x78, 0x3C, 0x78, + 0x78, 0xF1, 0xE1, 0xE3, 0xC1, 0xE7, 0xFF, 0xDF, 0xFF, 0xBF, 0xFF, 0x80, 0xFF, 0xFF, 0xFF, 0xFF, + 0xFF, 0xE0, 0xFF, 0x07, 0xF8, 0x3F, 0xC1, 0xFE, 0x0F, 0xF0, 0x7F, 0x83, 0xFC, 0x1F, 0xE0, 0xFF, + 0x07, 0xF8, 0x3F, 0xC1, 0xFE, 0x0F, 0xF0, 0x78, 0xFF, 0xFF, 0xFF, 0xFF, 0xBC, 0x03, 0xC0, 0x7C, + 0x07, 0x80, 0x78, 0x0F, 0x01, 0xE0, 0x78, 0x1E, 0x07, 0xC0, 0xF0, 0x3F, 0xFF, 0xFF, 0xFF, 0xE0, + 0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0xE0, 0x3C, 0x0F, 0x01, 0xE0, 0x78, 0x0F, 0x03, 0xC0, 0x78, 0x1E, + 0x03, 0xC0, 0xF0, 0x1E, 0x07, 0x80, 0xE0, 0x3C, 0x00, 0x77, 0xFE, 0xE0, 0x00, 0x3C, 0x00, 0xE0, + 0x07, 0x80, 0x1E, 0x00, 0x70, 0x03, 0xC0, 0x0F, 0x0E, 0x38, 0xFD, 0xE1, 0xF7, 0x87, 0xFC, 0x03, + 0xF0, 0x0F, 0xC0, 0x1E, 0x00, 0x78, 0x00, 0x3D, 0xF3, 0xFF, 0xFF, 0xEF, 0xCE, 0x7F, 0xFB, 0xBF, + 0xFC, 0xF7, 0xC0, 0x00, 0x07, 0xC7, 0xE3, 0xF3, 0xE1, 0xE0, 0xF0, 0x78, 0x3C, 0x1E, 0x0F, 0x07, + 0x83, 0xC1, 0xE0, 0xF0, 0x78, 0x3C, 0x7E, 0x3E, 0x1F, 0x00, 0x00, 0x3C, 0x77, 0xEF, 0x7F, 0xEF, + 0xFE, 0xE3, 0xC0, 0x00, 0x3C, 0x77, 0xFF, 0x7F, 0xEF, 0xFE, 0xE3, 0xC0, 0x01, 0x80, 0xE0, 0x3B, + 0xFF, 0xFF, 0xFF, 0xF0, 0xE0, 0x70, 0xFF, 0xFF, 0xFF, 0xFD, 0xC0, 0x70, 0x18, 0x00, 0x03, 0xCF, + 0xFF, 0xFF, 0xFE, 0xF8, 0x3F, 0xEF, 0xFC, 0xFF, 0x03, 0xC0, 0x0F, 0xFF, 0xFF, 0xFF, 0xC0, 0xF0, + 0x3F, 0xCF, 0xFD, 0xFF, 0x07, 0xDF, 0xFF, 0xFF, 0xFC, 0xF0, 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0xC0, + 0x3F, 0x1F, 0xBF, 0x9F, 0xFF, 0xDF, 0xFF, 0x6F, 0xAF, 0x07, 0x87, 0xFB, 0xFF, 0xFD, 0xFF, 0xFE, + 0xFF, 0xF0, 0x78, 0x78, 0x3C, 0x3C, 0x1E, 0x1E, 0x0F, 0x0F, 0x07, 0x87, 0x83, 0xC3, 0xC1, 0xE1, + 0xE0, 0xF0, 0x3F, 0x7B, 0xFB, 0xFF, 0xDF, 0xF0, 0xFF, 0x00, 0x7F, 0xBF, 0xFD, 0xFF, 0xEF, 0xF0, + 0x7F, 0x83, 0xFC, 0x1F, 0xE0, 0xFF, 0x07, 0xF8, 0x3F, 0xC1, 0xFE, 0x0F, 0x3F, 0x78, 0xFE, 0xF3, + 0xFD, 0xE7, 0xC3, 0xCF, 0x07, 0x9F, 0xEF, 0x3F, 0xDE, 0x7F, 0xBC, 0xF0, 0x79, 0xE0, 0xF3, 0xC1, + 0xE7, 0x83, 0xCF, 0x07, 0xDE, 0x0F, 0xBC, 0x1F, 0x78, 0x1E, 0x3F, 0x1F, 0xB9, 0xFC, 0xFF, 0xFF, + 0xF7, 0xF7, 0xFE, 0xDF, 0x4E, 0xF0, 0x78, 0x03, 0xFD, 0xFE, 0xFF, 0xF7, 0xFB, 0xFF, 0xDF, 0xEF, + 0xF0, 0x78, 0x3F, 0xC1, 0xE0, 0xFF, 0x07, 0x83, 0xFC, 0x1E, 0x0F, 0xF0, 0x78, 0x3F, 0xC1, 0xE0, + 0xFF, 0x07, 0x83, 0xFC, 0x1E, 0x0F, 0x3F, 0x1F, 0xBC, 0xFE, 0x7F, 0x7B, 0xFD, 0xFC, 0xF7, 0xDB, + 0xE9, 0xEF, 0x07, 0x83, 0xDF, 0xEF, 0xF7, 0xBF, 0xDF, 0xEF, 0x7F, 0xBF, 0xDE, 0xF0, 0x78, 0x3D, + 0xE0, 0xF0, 0x7B, 0xC1, 0xE0, 0xF7, 0x83, 0xC1, 0xEF, 0x07, 0x83, 0xDE, 0x0F, 0x07, 0xFC, 0x1E, + 0x0F, 0xF8, 0x3C, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x07, 0x9C, 0x00, 0x3C, 0xE0, 0x00, 0xEF, 0x00, + 0x07, 0xF8, 0x00, 0x3F, 0xE0, 0x03, 0xEF, 0xFF, 0xFE, 0x7F, 0xFF, 0xF1, 0xFF, 0xFE, 0x01, 0xFF, + 0x80, 0x00, 0x00, 0x00, 0x1D, 0x80, 0x00, 0xFC, 0x00, 0x03, 0xE0, 0x00, 0x0E, 0x00, 0x00, 0x70, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x07, 0x00, 0x01, 0x83, 0xC0, 0x00, + 0xF0, 0xF0, 0x00, 0x7C, 0x3E, 0x00, 0x7F, 0x07, 0xFF, 0xFF, 0xF9, 0xFF, 0xFF, 0xFF, 0x3F, 0xFF, + 0x8F, 0xC1, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xE0, 0x00, 0x01, 0xF8, 0x00, 0x00, 0x3E, + 0x00, 0x00, 0x07, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x78, 0xF0, 0xE1, + 0xE3, 0xC7, 0xFE, 0xFD, 0xF0, 0x00, 0x0F, 0xDF, 0x9F, 0x1C, 0x38, 0x00, 0x00, 0x03, 0xC0, 0x70, + 0x0E, 0x03, 0xE1, 0xFF, 0xBF, 0xFF, 0xBE, 0x00, 0x00, 0x01, 0xF8, 0x3F, 0x03, 0xC0, 0x70, 0x0E, + 0x00, 0x00, 0x00, 0xC0, 0x00, 0x06, 0x00, 0x00, 0x3E, 0x00, 0x01, 0xF8, 0x00, 0x0F, 0xC0, 0x00, + 0xFC, 0x00, 0x01, 0x80, 0x00, 0x00, 0x1E, 0x70, 0x00, 0xF3, 0x80, 0x03, 0xBC, 0x00, 0x1F, 0xE0, + 0x00, 0xFF, 0x80, 0x0F, 0xBF, 0xFF, 0xF9, 0xFF, 0xFF, 0xC7, 0xFF, 0xF8, 0x07, 0xFE, 0x00, 0x00, + 0x40, 0x00, 0x00, 0x18, 0x00, 0x00, 0x07, 0xC0, 0x00, 0x01, 0xF0, 0x00, 0x00, 0xFC, 0x00, 0x00, + 0x3F, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x1C, 0x00, 0x06, 0x0F, + 0x00, 0x03, 0xC3, 0xC0, 0x01, 0xF0, 0xF8, 0x01, 0xFC, 0x1F, 0xFF, 0xFF, 0xE7, 0xFF, 0xFF, 0xFC, + 0xFF, 0xFE, 0x3F, 0x07, 0xF8, 0x00, 0x00, 0x61, 0x87, 0xDF, 0xFF, 0xF7, 0x00, 0x39, 0xE3, 0xCF, + 0x3C, 0xF3, 0xFF, 0xFB, 0xC0, 0x00, 0x10, 0x03, 0x00, 0x7C, 0x0F, 0x83, 0xF0, 0x7E, 0x07, 0x00, + 0x00, 0x00, 0x03, 0xC0, 0x70, 0x0E, 0x03, 0xE1, 0xFF, 0xBF, 0xFF, 0xBE, 0x00, 0x00, 0x7C, 0x01, + 0xFF, 0x01, 0xFF, 0xE3, 0xFF, 0xE0, 0x1F, 0xC0, 0xFF, 0x87, 0xF8, 0x1F, 0x80, 0x7C, 0x00, 0xF0, + 0x03, 0xCF, 0x87, 0x9F, 0x0F, 0x1C, 0x1E, 0x38, 0x3C, 0x00, 0x7E, 0x06, 0x7F, 0xFC, 0x7F, 0xF8, + 0x7F, 0xF0, 0x0E, 0x00, 0x7C, 0x00, 0x3F, 0xE0, 0x07, 0xFF, 0x81, 0xFF, 0xF0, 0x01, 0xFC, 0x01, + 0xFF, 0x01, 0xFF, 0x80, 0xFC, 0xF0, 0x7C, 0x3F, 0x9E, 0x07, 0xFF, 0x3E, 0xFF, 0xCF, 0x80, 0xF1, + 0xC0, 0x3C, 0x70, 0x0F, 0x00, 0x03, 0xF0, 0x30, 0x7F, 0xFC, 0x0F, 0xFF, 0x01, 0xFF, 0xC0, 0x07, + 0x00, 0x00, 0x03, 0xF8, 0x1F, 0xF0, 0xFF, 0xF0, 0x3F, 0x80, 0xFC, 0x3F, 0xFF, 0xF8, 0xFF, 0x07, + 0xE0, 0x00, 0x00, 0x00, 0x01, 0xF8, 0x0F, 0xC0, 0x3E, 0x00, 0xE0, 0x07, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x7F, 0x00, 0x7F, 0xC0, 0x7F, 0xF8, 0x03, 0xF8, 0x01, 0xF8, 0x0F, 0xF8, 0xFF, 0xFE, 0xFF, + 0x7F, 0xFC, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x80, 0x1F, 0x80, 0x0F, 0x00, 0x0E, 0x00, 0x0E, + 0x00, 0x00, 0x00, 0x10, 0x0E, 0x03, 0xF0, 0xFC, 0x3F, 0x0F, 0x81, 0x80, 0x00, 0x02, 0x03, 0xC0, + 0xF8, 0x1E, 0x03, 0xC0, 0xF0, 0x3D, 0x8F, 0x7F, 0xDF, 0xF7, 0xF8, 0x00, 0x10, 0x00, 0xE0, 0x03, + 0xF0, 0x0F, 0xC0, 0x3F, 0x00, 0xF8, 0x01, 0x80, 0x00, 0x00, 0x02, 0x00, 0x3C, 0x00, 0xF8, 0x01, + 0xE0, 0x07, 0xC0, 0x0F, 0x00, 0x3C, 0x18, 0xF8, 0x7F, 0xFD, 0xFF, 0xF7, 0xFF, 0xC0, 0x00, 0x06, + 0x07, 0x81, 0x83, 0xF1, 0xF8, 0xFC, 0x00, 0x00, 0x06, 0x07, 0x83, 0xC0, 0xE0, 0x78, 0x3C, 0x1C, + 0x1E, 0x1F, 0x3F, 0x3F, 0x1F, 0x06, 0x00, 0x06, 0x00, 0x70, 0x03, 0x80, 0x37, 0x03, 0xF8, 0x0D, + 0x80, 0x00, 0x00, 0x00, 0x06, 0x00, 0x78, 0x03, 0xC0, 0x0E, 0x00, 0x78, 0x03, 0xF8, 0x1F, 0xC1, + 0xFE, 0x1F, 0x03, 0xF0, 0x3F, 0x01, 0xF0, 0x06, 0x00, 0x00, 0x08, 0x06, 0x03, 0xE1, 0xF1, 0xF8, + 0xFC, 0x38, 0x00, 0x00, 0x03, 0x03, 0xC1, 0xE0, 0x70, 0x3C, 0x1E, 0x0E, 0x0F, 0x0F, 0x9F, 0x9F, + 0x8F, 0x83, 0x00, 0x08, 0x00, 0xC0, 0x07, 0xC0, 0x3F, 0x01, 0xF8, 0x1F, 0x80, 0x30, 0x00, 0x00, + 0x00, 0x00, 0x30, 0x03, 0xC0, 0x1E, 0x00, 0x70, 0x03, 0xC0, 0x1F, 0xC0, 0xFE, 0x0F, 0xF0, 0xF8, + 0x1F, 0x81, 0xF8, 0x0F, 0x80, 0x30, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x3E, 0x00, 0x0F, 0xE0, 0x01, + 0xFC, 0x00, 0x3F, 0x00, 0x03, 0xC0, 0x00, 0x3E, 0x07, 0x01, 0xF0, 0x70, 0x0F, 0x8F, 0x00, 0x78, + 0xF0, 0x03, 0xCF, 0x80, 0x3C, 0x7F, 0xFF, 0xC7, 0xFF, 0xF8, 0x3F, 0xFF, 0x00, 0x7F, 0x80, 0x00, + 0x00, 0xC0, 0x00, 0x0F, 0x80, 0x00, 0xFE, 0x00, 0x07, 0xF0, 0x00, 0x3F, 0x00, 0x01, 0xF0, 0x00, + 0x03, 0xC0, 0x1C, 0x0F, 0x80, 0x70, 0x1F, 0x03, 0xC0, 0x3E, 0x0F, 0x00, 0x7C, 0x3E, 0x00, 0xF8, + 0x7F, 0xFF, 0xF9, 0xFF, 0xFF, 0xF3, 0xFF, 0xF7, 0xC1, 0xFF, 0x00, 0x01, 0x81, 0xE1, 0xFD, 0xFE, + 0xFC, 0x3E, 0x0F, 0xC1, 0xF8, 0x3E, 0x07, 0xC0, 0xF0, 0x3C, 0xFF, 0x3F, 0xCF, 0xE0, 0x00, 0x01, + 0x80, 0x3C, 0x07, 0xF0, 0xFF, 0x0F, 0xE0, 0x7C, 0x03, 0xE0, 0x0F, 0x80, 0x3E, 0x00, 0xF8, 0x03, + 0xC0, 0x1F, 0x8F, 0xFF, 0x7F, 0xFF, 0xFB, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x07, + 0x80, 0x01, 0xF8, 0x00, 0x7E, 0xC0, 0x07, 0xBE, 0x00, 0x2F, 0xE0, 0x01, 0xFC, 0x00, 0x3F, 0x00, + 0x03, 0xC0, 0x00, 0x3E, 0x07, 0x01, 0xF0, 0x70, 0x0F, 0x8F, 0x00, 0x78, 0xF0, 0x03, 0xCF, 0x80, + 0x3C, 0x7F, 0xFF, 0xC7, 0xFF, 0xF8, 0x3F, 0xFF, 0x00, 0x7F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0E, + 0x00, 0x00, 0xF8, 0x00, 0x07, 0xC0, 0x00, 0x7C, 0xC0, 0x01, 0xCF, 0x80, 0x02, 0xFE, 0x00, 0x07, + 0xF0, 0x00, 0x3F, 0x00, 0x01, 0xF0, 0x00, 0x03, 0xC0, 0x1C, 0x0F, 0x80, 0x70, 0x1F, 0x03, 0xC0, + 0x3E, 0x0F, 0x00, 0x7C, 0x3E, 0x00, 0xF8, 0x7F, 0xFF, 0xF9, 0xFF, 0xFF, 0xF3, 0xFF, 0xF7, 0xC1, + 0xFF, 0x00, 0x00, 0x00, 0x70, 0x3E, 0x1F, 0x87, 0xCC, 0xE7, 0x93, 0xF9, 0xFE, 0x7E, 0x0F, 0x81, + 0xF8, 0x1F, 0x81, 0xF0, 0x1F, 0x01, 0xE0, 0x3C, 0x7F, 0x8F, 0xF1, 0xFC, 0x00, 0x00, 0x00, 0x00, + 0x0E, 0x00, 0xF8, 0x0F, 0xC0, 0x7C, 0xC1, 0xCF, 0x04, 0xFE, 0x0F, 0xF0, 0x7F, 0x01, 0xF0, 0x07, + 0xC0, 0x0F, 0x80, 0x1F, 0x00, 0x3E, 0x00, 0x78, 0x01, 0xF8, 0x7F, 0xF9, 0xFF, 0xF7, 0xF7, 0x80, + 0x00, 0x00, 0x08, 0x00, 0x78, 0x00, 0xF3, 0x80, 0xE7, 0x01, 0xFE, 0x03, 0xFC, 0x07, 0xF8, 0x0F, + 0xF0, 0x3C, 0xFD, 0xF9, 0xFF, 0xE1, 0xFF, 0x81, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, + 0xF0, 0x38, 0x0E, 0x07, 0x01, 0xE1, 0xE0, 0x3F, 0xBC, 0x07, 0xFF, 0x80, 0xFF, 0xF0, 0x3C, 0x0F, + 0xDF, 0x81, 0xFF, 0xE0, 0x1F, 0xFC, 0x01, 0xFE, 0x00, 0x00, 0x07, 0x03, 0xE0, 0xFC, 0x3F, 0x1F, + 0xE7, 0x3B, 0xCE, 0xF3, 0xBF, 0xE7, 0xF8, 0xFC, 0x00, 0x00, 0x06, 0x00, 0xFE, 0x07, 0xF8, 0x1F, + 0xF0, 0xF3, 0xC3, 0xC7, 0x8F, 0x1F, 0xFC, 0x3F, 0x70, 0x7C, 0x00, 0x00, 0x39, 0xE3, 0xCF, 0x3C, + 0xF3, 0xFF, 0xFB, 0xC3, 0x1C, 0x71, 0xC0, 0x30, 0x03, 0xC0, 0x3E, 0x3D, 0xF3, 0xFF, 0xBF, 0x9F, + 0xE0, 0xFE, 0x03, 0xF0, 0x1F, 0x00, 0x78, 0x01, 0x00, 0x03, 0x00, 0x03, 0x80, 0x07, 0xC0, 0x07, + 0xF0, 0x0F, 0xF8, 0x0E, 0xFC, 0x0E, 0xFE, 0x0E, 0xFE, 0x0F, 0xEF, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, + 0xFC, 0x10, 0x30, 0x01, 0xE0, 0x03, 0xF0, 0x07, 0xF8, 0x07, 0xF8, 0x0F, 0x78, 0x0F, 0x70, 0x0E, + 0xF0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0F, 0x3C, 0x0F, 0xFC, 0x07, 0xF8, 0x07, 0xF8, 0x01, + 0xF0, 0x08, 0x00, 0xE0, 0x0F, 0xC0, 0x7F, 0x03, 0xFC, 0x3F, 0xF1, 0xCF, 0xCF, 0xFF, 0x7F, 0x7F, + 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x08, 0x00, 0x07, 0x80, 0x7F, 0x01, 0xFC, 0x0F, 0x70, 0x3D, 0xC1, + 0xE7, 0x07, 0xFC, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 0xF7, 0x8E, 0x0F, 0xF8, 0x3F, 0xE0, 0x7F, 0x80, + 0x78, 0x00, 0x03, 0x80, 0x00, 0x7C, 0x00, 0x0F, 0xE0, 0x01, 0xFE, 0x00, 0x3C, 0xF0, 0x07, 0xCE, + 0x00, 0xF8, 0x00, 0x0F, 0x00, 0x00, 0xFF, 0xFF, 0xE7, 0xFF, 0xFE, 0x3F, 0xFF, 0xE0, 0x7F, 0xF0, + 0x07, 0xF8, 0xFF, 0xF7, 0xFF, 0xBF, 0xF8, 0xF0, 0x03, 0xC0, 0x0F, 0xFF, 0xBF, 0xFE, 0x7F, 0xF8, + 0x0F, 0x00, 0x18, 0x00, 0x03, 0xC0, 0x00, 0x38, 0x00, 0x03, 0xC0, 0x00, 0x3E, 0x00, 0x03, 0xC0, + 0x00, 0x03, 0x80, 0x00, 0x7C, 0x00, 0x0F, 0xE0, 0x01, 0xFE, 0x00, 0x3C, 0xF0, 0x07, 0xCE, 0x00, + 0xF8, 0x00, 0x0F, 0x00, 0x00, 0xFF, 0xFF, 0xE7, 0xFF, 0xFE, 0x3F, 0xFF, 0xE0, 0x7F, 0xF0, 0x18, + 0x00, 0xE0, 0x07, 0x80, 0x1F, 0x00, 0x7C, 0x01, 0xE0, 0x00, 0x7F, 0x8F, 0xFF, 0x7F, 0xFB, 0xFF, + 0x8F, 0x00, 0x3C, 0x00, 0xFF, 0xFB, 0xFF, 0xE7, 0xFF, 0x80, 0xF0, 0x00, 0x1F, 0x80, 0x1F, 0xC0, + 0x1F, 0xC0, 0x1F, 0x20, 0x0E, 0x03, 0x87, 0x01, 0xC3, 0xE1, 0xE1, 0xFC, 0xF0, 0x3F, 0x78, 0x07, + 0xBC, 0x03, 0xCF, 0xDF, 0xE7, 0xFF, 0xE1, 0xFF, 0xE0, 0x3F, 0xC0, 0x00, 0x00, 0x0E, 0x00, 0x01, + 0xC0, 0xF8, 0x78, 0x1F, 0xEF, 0x03, 0xFF, 0xE0, 0x1F, 0xBC, 0x03, 0xC3, 0xFB, 0xF8, 0x7F, 0xFE, + 0x07, 0xFF, 0x80, 0x3F, 0xC0, 0x00, 0x3C, 0x78, 0xF0, 0xE1, 0xE3, 0xC7, 0xFE, 0xFD, 0xF0, 0x00, + 0x0E, 0xFF, 0xFB, 0x80, 0x00, 0x03, 0xC0, 0x70, 0x0E, 0x03, 0xE1, 0xFF, 0xBF, 0xFF, 0xBE, 0x00, + 0x00, 0x01, 0xF8, 0x7F, 0x87, 0xE0, 0x00, 0x0F, 0xC7, 0xE1, 0xF8, 0x78, 0x1E, 0x07, 0xF8, 0xFE, + 0xFF, 0xBF, 0xC7, 0x80, 0x00, 0x00, 0x3F, 0x9F, 0xC0, 0xC0, 0x00, 0xE0, 0x78, 0x3C, 0x1E, 0x0F, + 0x07, 0x83, 0xC1, 0xE0, 0xF0, 0x78, 0x3C, 0x1E, 0x0F, 0x07, 0x80, 0x00, 0x3F, 0x8F, 0xE0, 0x30, + 0x38, 0x0F, 0x03, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xC0, 0xF0, 0x3C, + 0x0F, 0xE1, 0xFC, 0x3E, 0x00, 0x00, 0x37, 0xBD, 0xEF, 0xF8, 0x0E, 0x7B, 0xDE, 0xF7, 0xBD, 0xEF, + 0x7B, 0xDE, 0xF7, 0x80, 0x30, 0x78, 0x3C, 0x1F, 0x0F, 0x87, 0x81, 0xC0, 0xF0, 0x78, 0x3C, 0x1E, + 0x0F, 0x07, 0x83, 0xC1, 0xE0, 0xF0, 0x78, 0x3C, 0x1E, 0x0F, 0xE3, 0xF8, 0xF8, 0x00, 0x0C, 0x07, + 0x81, 0xC0, 0x78, 0x1E, 0x07, 0x80, 0xE0, 0xFC, 0x3F, 0x9F, 0xE7, 0x3D, 0xCF, 0x7F, 0xDF, 0xF3, + 0xFC, 0x3E, 0x7F, 0xBF, 0xC7, 0xE1, 0xE0, 0x0C, 0x00, 0xF0, 0x07, 0x00, 0x3C, 0x01, 0xE0, 0x0F, + 0x00, 0x00, 0x01, 0xC0, 0x3F, 0x01, 0xFC, 0x1F, 0xE0, 0xE7, 0x87, 0x3C, 0x3F, 0xFD, 0xFF, 0xE7, + 0xFF, 0x0F, 0x83, 0xFC, 0x3F, 0xC0, 0xFC, 0x07, 0x80, 0x00, 0xE7, 0xBD, 0xEF, 0x7B, 0xDE, 0xF7, + 0xBD, 0xEF, 0x7B, 0xDE, 0x37, 0xBD, 0xFF, 0xF8, 0x00, 0xE0, 0xF0, 0xF0, 0xF0, 0xF0, 0xF0, 0xF0, + 0xF0, 0xF0, 0xF0, 0xF0, 0xF0, 0xF0, 0xFE, 0x7F, 0x3E, 0x30, 0x70, 0xF0, 0xF8, 0xF8, 0xF0, 0x00, + 0x0C, 0x00, 0x1E, 0x00, 0x0F, 0x07, 0xE7, 0xC7, 0xF3, 0xE7, 0xF1, 0xE7, 0xC8, 0x03, 0x80, 0xE1, + 0xC0, 0x70, 0xF8, 0x78, 0x7F, 0x3C, 0x0F, 0xDE, 0x01, 0xEF, 0x00, 0xF3, 0xF7, 0xF9, 0xFF, 0xF8, + 0x7F, 0xF8, 0x0F, 0xF0, 0x00, 0x0C, 0x00, 0x07, 0x80, 0x00, 0xF0, 0x00, 0x1F, 0x00, 0x03, 0xE0, + 0x00, 0x78, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x70, 0x3E, 0x1E, 0x07, 0xFB, 0xC0, 0xFF, 0xF8, + 0x07, 0xEF, 0x00, 0xF0, 0xFE, 0xFE, 0x1F, 0xFF, 0x81, 0xFF, 0xE0, 0x0F, 0xF0, 0x00, 0x31, 0xCF, + 0x3E, 0xFB, 0xC0, 0x0E, 0x78, 0xF3, 0xCF, 0x3C, 0xFF, 0xFE, 0xF0, 0x00, 0x18, 0x0F, 0x07, 0x80, + 0xF0, 0x3C, 0x0F, 0x00, 0x00, 0x00, 0x1C, 0x0F, 0x03, 0xC0, 0xF0, 0xFF, 0xFF, 0xFF, 0xFC, 0x00, + 0xEF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0xF0, 0xF0, 0xF0, 0xF0, 0xF0, 0xF0, 0xF0, + 0xF0, 0xF0, 0xF0, 0xF0, 0xF0, 0xFE, 0x7F, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x9C, 0x00, + 0x3C, 0xE0, 0x00, 0xEF, 0x00, 0x07, 0xF8, 0x00, 0x3F, 0xE0, 0x03, 0xEF, 0xFF, 0xFE, 0x7F, 0xFF, + 0xF1, 0xFF, 0xFE, 0x01, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x38, 0x00, 0x01, 0xC0, + 0x00, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x07, 0x00, 0x01, 0x83, 0xC0, 0x00, 0xF0, 0xF0, 0x00, + 0x7C, 0x3E, 0x00, 0x7F, 0x07, 0xFF, 0xFF, 0xF9, 0xFF, 0xFF, 0xFF, 0x3F, 0xFF, 0x8F, 0xC1, 0xFE, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x70, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x39, + 0xE3, 0xCF, 0x3C, 0xF3, 0xFF, 0xFB, 0xC0, 0x00, 0x71, 0xC7, 0x00, 0x00, 0x07, 0x03, 0xC0, 0xF0, + 0x3C, 0x3F, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x03, 0x80, 0xF0, 0x38, 0x00, 0x02, 0x1F, 0xC7, 0xF0, + 0xDC, 0x00, 0x00, 0x01, 0xC0, 0xF8, 0x3F, 0x0F, 0xC7, 0xF9, 0xCE, 0xF3, 0xBC, 0xEF, 0xF9, 0xFE, + 0x3F, 0x00, 0x00, 0x09, 0x00, 0x7E, 0x03, 0xFC, 0x06, 0x60, 0x00, 0x00, 0x0E, 0x00, 0x3C, 0x01, + 0xF0, 0x1F, 0xC1, 0xFF, 0x07, 0xFC, 0x3C, 0xF0, 0xF3, 0xC3, 0xFF, 0x07, 0xFC, 0x1F, 0xFE, 0x1F, + 0xFC, 0x03, 0xE0, 0x00, 0x00, 0x00, 0x88, 0x00, 0x0E, 0xE0, 0x00, 0x7F, 0x00, 0x03, 0xB8, 0x00, + 0x00, 0x0F, 0x38, 0x00, 0x79, 0xC0, 0x01, 0xDE, 0x00, 0x0F, 0xF0, 0x00, 0x7F, 0xC0, 0x07, 0xDF, + 0xFF, 0xFC, 0xFF, 0xFF, 0xE3, 0xFF, 0xFC, 0x03, 0xFF, 0x00, 0x00, 0x48, 0x00, 0x00, 0x7F, 0x00, + 0x00, 0x1F, 0xC0, 0x00, 0x03, 0x70, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x07, 0x00, 0x01, + 0x83, 0xC0, 0x00, 0xF0, 0xF0, 0x00, 0x7C, 0x3E, 0x00, 0x7F, 0x07, 0xFF, 0xFF, 0xF9, 0xFF, 0xFF, + 0xFF, 0x3F, 0xFF, 0x8F, 0xC1, 0xFE, 0x00, 0x00, 0x24, 0x7E, 0xFF, 0x66, 0x00, 0x1C, 0x3C, 0x1E, + 0x1E, 0x1E, 0x1E, 0x1E, 0x7E, 0x7C, 0x78, 0x00, 0x12, 0x0F, 0xE1, 0xFC, 0x1B, 0x80, 0x00, 0x00, + 0x07, 0x80, 0xE0, 0x1C, 0x07, 0xC3, 0xFF, 0x7F, 0xFF, 0x7C, 0x00, 0x00, 0x00, 0x70, 0x00, 0x03, + 0x80, 0x00, 0x1C, 0x00, 0x01, 0xB8, 0x00, 0x1F, 0xC0, 0x00, 0x6C, 0x00, 0x00, 0x03, 0xCE, 0x00, + 0x1E, 0x70, 0x00, 0x77, 0x80, 0x03, 0xFC, 0x00, 0x1F, 0xF0, 0x01, 0xF7, 0xFF, 0xFF, 0x3F, 0xFF, + 0xF8, 0xFF, 0xFF, 0x00, 0xFF, 0xC0, 0x00, 0x30, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x03, 0x00, 0x00, + 0x03, 0xF0, 0x00, 0x00, 0xFC, 0x00, 0x00, 0x3F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, + 0x70, 0x00, 0x18, 0x3C, 0x00, 0x0F, 0x0F, 0x00, 0x07, 0xC3, 0xE0, 0x07, 0xF0, 0x7F, 0xFF, 0xFF, + 0x9F, 0xFF, 0xFF, 0xF3, 0xFF, 0xF8, 0xFC, 0x1F, 0xE0, 0x00, 0x30, 0xE3, 0xBF, 0xFF, 0xB0, 0x0E, + 0x78, 0xF3, 0xCF, 0x3C, 0xFF, 0xFE, 0xF0, 0x00, 0x0C, 0x03, 0xC0, 0x30, 0x1F, 0x83, 0xF0, 0x7E, + 0x00, 0x00, 0x00, 0x1E, 0x03, 0x80, 0x70, 0x1F, 0x0F, 0xFD, 0xFF, 0xFD, 0xF0, 0x00, 0x7C, 0x03, + 0xFE, 0x07, 0xFF, 0x9F, 0xFE, 0x01, 0xF8, 0x1F, 0xE1, 0xFC, 0x0F, 0xC0, 0x7C, 0x01, 0xE0, 0x0F, + 0x1C, 0x3C, 0x70, 0xF1, 0xC3, 0xC7, 0x0F, 0x00, 0x3F, 0x06, 0x7F, 0xFC, 0xFF, 0xF1, 0xFF, 0x80, + 0x60, 0x7C, 0x00, 0x3F, 0xE0, 0x07, 0xFF, 0x81, 0xFF, 0xE0, 0x01, 0xF8, 0x01, 0xFE, 0x01, 0xFF, + 0x00, 0xFD, 0xE0, 0x7C, 0x3F, 0x9E, 0x0F, 0xEF, 0x1D, 0xFB, 0xC7, 0x00, 0xF1, 0xC0, 0x3C, 0x70, + 0x0F, 0x00, 0x03, 0xF0, 0x60, 0x7F, 0xFC, 0x0F, 0xFF, 0x01, 0xFF, 0x80, 0x06, 0x00, 0x00, 0x03, + 0xF8, 0x1F, 0xF0, 0xFF, 0xF0, 0x3F, 0x80, 0xFC, 0x3F, 0xFF, 0xF8, 0xFF, 0x07, 0xE0, 0x00, 0x00, + 0x00, 0x00, 0x70, 0x07, 0x80, 0x1C, 0x00, 0x00, 0x00, 0x7F, 0x00, 0x7F, 0xC0, 0x7F, 0xF8, 0x03, + 0xF8, 0x01, 0xF8, 0x0F, 0xF8, 0xFF, 0xFE, 0xFF, 0x7F, 0xFC, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x0E, + 0x00, 0x0F, 0x00, 0x0E, 0x00, 0x7C, 0x03, 0xFE, 0x07, 0xFF, 0x9F, 0xFE, 0x01, 0xF8, 0x1F, 0xE1, + 0xFC, 0x0F, 0xC0, 0x7C, 0x01, 0xE0, 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x3F, + 0x06, 0x7F, 0xFC, 0xFF, 0xF1, 0xFF, 0x80, 0x60, 0x7C, 0x00, 0x3F, 0xE0, 0x07, 0xFF, 0x81, 0xFF, + 0xE0, 0x01, 0xF8, 0x01, 0xFE, 0x01, 0xFF, 0x00, 0xFD, 0xE0, 0x7C, 0x3F, 0x9E, 0x0F, 0xEF, 0x01, + 0xFB, 0xC0, 0x00, 0xF0, 0x00, 0x3C, 0x00, 0x0F, 0x00, 0x03, 0xF0, 0x60, 0x7F, 0xFC, 0x0F, 0xFF, + 0x01, 0xFF, 0x80, 0x06, 0x00, 0x00, 0x03, 0xF8, 0x1F, 0xF0, 0xFF, 0xF0, 0x3F, 0x80, 0xFC, 0x3F, + 0xFF, 0xF8, 0xFF, 0x07, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x7F, 0x00, 0x7F, 0xC0, 0x7F, 0xF8, 0x03, + 0xF8, 0x01, 0xF8, 0x0F, 0xF8, 0xFF, 0xFE, 0xFF, 0x7F, 0xFC, 0x3E, 0x00, 0x00, 0x03, 0x00, 0x1E, + 0x00, 0x78, 0x00, 0xC0, 0x00, 0x01, 0xF0, 0x0F, 0xF8, 0x1F, 0xFE, 0x7F, 0xF8, 0x07, 0xE0, 0x7F, + 0x87, 0xF0, 0x3F, 0x01, 0xF0, 0x07, 0x80, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x3C, 0x00, + 0xFC, 0x19, 0xFF, 0xF3, 0xFF, 0xC7, 0xFE, 0x01, 0x80, 0x03, 0x00, 0x01, 0xE0, 0x00, 0x78, 0x00, + 0x0C, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x0F, 0xF8, 0x01, 0xFF, 0xE0, 0x7F, 0xF8, 0x00, 0x7E, 0x00, + 0x7F, 0x80, 0x7F, 0xC0, 0x3F, 0x78, 0x1F, 0x0F, 0xE7, 0x83, 0xFB, 0xC0, 0x7E, 0xF0, 0x00, 0x3C, + 0x00, 0x0F, 0x00, 0x03, 0xC0, 0x00, 0xFC, 0x18, 0x1F, 0xFF, 0x03, 0xFF, 0xC0, 0x7F, 0xE0, 0x01, + 0x80, 0x00, 0x18, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x00, 0x00, 0x00, 0x01, 0xFC, 0x0F, 0xF8, 0x7F, + 0xF8, 0x1F, 0xC0, 0x7E, 0x1F, 0xFF, 0xFC, 0x7F, 0x83, 0xF0, 0x00, 0x00, 0x10, 0x00, 0x38, 0x00, + 0x38, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0x00, 0x7F, 0xC0, 0x7F, 0xF8, 0x03, 0xF8, + 0x01, 0xF8, 0x0F, 0xF8, 0xFF, 0xFE, 0xFF, 0x7F, 0xFC, 0x3E, 0x00, 0x00, 0x02, 0x03, 0xC0, 0xF8, + 0x1E, 0x03, 0xC0, 0xF0, 0x3D, 0x8F, 0x7F, 0xDF, 0xF7, 0xF8, 0x00, 0x02, 0x00, 0x3C, 0x00, 0xF8, + 0x01, 0xE0, 0x07, 0xC0, 0x0F, 0x00, 0x3C, 0x18, 0xF8, 0x7F, 0xFD, 0xFF, 0xF7, 0xFF, 0xC0, 0x00, + 0x0C, 0x07, 0x01, 0xC0, 0x70, 0x00, 0x00, 0x80, 0xF0, 0x3E, 0x07, 0x80, 0xF0, 0x3C, 0x0F, 0x63, + 0xDF, 0xF7, 0xFD, 0xFE, 0x00, 0x00, 0x0C, 0x00, 0x70, 0x01, 0xC0, 0x07, 0x00, 0x00, 0x00, 0x08, + 0x00, 0xF0, 0x03, 0xE0, 0x07, 0x80, 0x1F, 0x00, 0x3C, 0x00, 0xF0, 0x63, 0xE1, 0xFF, 0xF7, 0xFF, + 0xDF, 0xFF, 0x00, 0x00, 0x06, 0x07, 0x83, 0xC0, 0xE0, 0x78, 0x3C, 0x1C, 0x1E, 0x1F, 0x3F, 0x3F, + 0x1F, 0x06, 0x00, 0x06, 0x00, 0x78, 0x03, 0xC0, 0x0E, 0x00, 0x78, 0x03, 0xF8, 0x1F, 0xC1, 0xFE, + 0x1F, 0x03, 0xF0, 0x3F, 0x01, 0xF0, 0x06, 0x00, 0x00, 0x06, 0x07, 0x83, 0xC0, 0xC0, 0x00, 0x00, + 0x18, 0x1E, 0x0F, 0x03, 0x81, 0xE0, 0xF0, 0x70, 0x78, 0x7C, 0xFC, 0xFC, 0x7C, 0x18, 0x00, 0x04, + 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x18, 0x01, 0xE0, 0x0F, 0x00, 0x38, 0x01, + 0xE0, 0x0F, 0xE0, 0x7F, 0x07, 0xF8, 0x7C, 0x0F, 0xC0, 0xFC, 0x07, 0xC0, 0x18, 0x00, 0x00, 0x00, + 0x00, 0xE0, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x01, 0xE0, 0x03, 0xC3, 0x8F, 0x00, 0x3C, 0x38, 0xF7, + 0x01, 0xC3, 0x8F, 0x70, 0x1E, 0x78, 0xFF, 0x01, 0xFF, 0xFF, 0xF0, 0x1F, 0xFF, 0xEF, 0x01, 0xFE, + 0xFC, 0xF0, 0x3C, 0x00, 0x07, 0xCF, 0xC0, 0x00, 0x7F, 0xF8, 0x00, 0x03, 0xFF, 0x80, 0x00, 0x1F, + 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x3C, 0x38, 0xF0, 0x00, + 0x3C, 0x38, 0xF0, 0x70, 0x1C, 0x38, 0xF0, 0x70, 0x1E, 0x78, 0xF8, 0xF0, 0x1F, 0xFF, 0xFF, 0xF0, + 0x1F, 0xFF, 0xFF, 0xF0, 0x1F, 0xEF, 0xDF, 0xF0, 0x3C, 0x00, 0x00, 0x7C, 0xFC, 0x00, 0x00, 0x7F, + 0xF8, 0x00, 0x00, 0x3F, 0xF8, 0x00, 0x00, 0x1F, 0xE0, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x78, + 0x00, 0x07, 0x8E, 0x3C, 0xF3, 0xC7, 0x9E, 0x78, 0xE3, 0xCF, 0x3E, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, + 0xDF, 0xFB, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x03, 0xC0, 0x71, 0xE7, 0x81, 0xE3, + 0xCF, 0x03, 0xC7, 0x1E, 0x07, 0x9F, 0x3E, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xDF, 0xBE, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x1D, + 0x80, 0x00, 0x01, 0xFC, 0x00, 0x00, 0x0D, 0x80, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x00, 0x1E, 0x00, + 0x00, 0x01, 0xE0, 0x03, 0xC3, 0x8F, 0x00, 0x3C, 0x38, 0xF7, 0x01, 0xC3, 0x8F, 0x70, 0x1E, 0x78, + 0xFF, 0x01, 0xFF, 0xFF, 0xF0, 0x1F, 0xFF, 0xEF, 0x01, 0xFE, 0xFC, 0xF0, 0x3C, 0x00, 0x07, 0xCF, + 0xC0, 0x00, 0x7F, 0xF8, 0x00, 0x03, 0xFF, 0x80, 0x00, 0x1F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x70, + 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x01, 0xD8, 0x00, 0x00, 0x01, 0xFC, + 0x00, 0x00, 0x00, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x00, 0x00, + 0xE0, 0x00, 0x3C, 0x38, 0xF0, 0x00, 0x3C, 0x38, 0xF0, 0x70, 0x1C, 0x38, 0xF0, 0x70, 0x1E, 0x78, + 0xF8, 0xF0, 0x1F, 0xFF, 0xFF, 0xF0, 0x1F, 0xFF, 0xFF, 0xF0, 0x1F, 0xEF, 0xDF, 0xF0, 0x3C, 0x00, + 0x00, 0x7C, 0xFC, 0x00, 0x00, 0x7F, 0xF8, 0x00, 0x00, 0x3F, 0xF8, 0x00, 0x00, 0x1F, 0xE0, 0x00, + 0x00, 0x00, 0x30, 0x00, 0x0F, 0x00, 0x00, 0xC0, 0x00, 0x7E, 0x00, 0x0F, 0xC0, 0x01, 0xB8, 0x00, + 0x00, 0x70, 0x00, 0x1E, 0x00, 0x01, 0xE3, 0x8F, 0x3C, 0xF1, 0xE7, 0x9E, 0x38, 0xF3, 0xCF, 0x9F, + 0xFF, 0xFF, 0xFF, 0xFF, 0xF7, 0xFE, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0xE0, 0x00, + 0x01, 0xC0, 0x00, 0x06, 0xE0, 0x00, 0x1F, 0xC0, 0x00, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xF0, 0x00, 0x01, 0xE0, 0x38, 0xF3, 0xC0, 0xF1, 0xE7, 0x81, 0xE3, 0x8F, 0x03, 0xCF, 0x9F, 0x1F, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, 0xDF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, + 0x00, 0x3F, 0x80, 0x00, 0x07, 0xFC, 0x00, 0x78, 0x7F, 0xF0, 0x03, 0xC7, 0xE7, 0xB8, 0x0E, 0x7C, + 0x3D, 0xC0, 0x7B, 0xC3, 0xFE, 0x03, 0xFF, 0xFF, 0xF0, 0x1F, 0xFF, 0xF7, 0x80, 0xFF, 0xFE, 0x3C, + 0x0F, 0x0F, 0x80, 0xFD, 0xF8, 0x00, 0x07, 0xFF, 0x80, 0x00, 0x1F, 0xFC, 0x00, 0x00, 0x3F, 0x80, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x07, 0xF0, 0x00, 0x00, 0x1F, 0xF0, 0x00, 0x3C, + 0x3F, 0xF8, 0x00, 0x3C, 0x7E, 0x78, 0x70, 0x1C, 0xF8, 0x78, 0x70, 0x1E, 0xF0, 0xF8, 0xF0, 0x1F, + 0xFF, 0xFF, 0xF0, 0x1F, 0xFF, 0xFF, 0xF0, 0x1F, 0xFF, 0xFF, 0xF0, 0x3C, 0x3E, 0x00, 0x7E, 0xFC, + 0x00, 0x00, 0x7F, 0xF8, 0x00, 0x00, 0x3F, 0xF8, 0x00, 0x00, 0x0F, 0xE0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFC, 0x00, 0x3F, 0xE3, 0xC7, 0xFF, 0x3C, 0xFC, 0xF3, 0x9F, 0x0F, 0x7F, 0xE1, 0xFF, + 0xFF, 0xFE, 0xFF, 0xFF, 0xEE, 0xFF, 0xF8, 0x01, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x80, + 0x00, 0xFF, 0x81, 0xE3, 0xFF, 0x83, 0xCF, 0xCF, 0x07, 0x3E, 0x1E, 0x1F, 0xF8, 0x7C, 0x7F, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF, 0xDF, 0xFF, 0xFC, 0x07, 0xF0, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, + 0x1C, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, + 0x00, 0x00, 0x1F, 0xC0, 0x00, 0x03, 0xFE, 0x00, 0x3C, 0x3F, 0xF8, 0x01, 0xE3, 0xF3, 0xDC, 0x07, + 0x3E, 0x1E, 0xE0, 0x3D, 0xE1, 0xFF, 0x01, 0xFF, 0xFF, 0xF8, 0x0F, 0xFF, 0xFB, 0xC0, 0x7F, 0xFF, + 0x1E, 0x07, 0x87, 0xC0, 0x7E, 0xFC, 0x00, 0x03, 0xFF, 0xC0, 0x00, 0x0F, 0xFE, 0x00, 0x00, 0x1F, + 0xC0, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x03, 0x80, 0x00, + 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x07, 0xF0, 0x00, + 0x00, 0x1F, 0xF0, 0x00, 0x3C, 0x3F, 0xF8, 0x00, 0x3C, 0x7E, 0x78, 0x70, 0x1C, 0xF8, 0x78, 0x70, + 0x1E, 0xF0, 0xF8, 0xF0, 0x1F, 0xFF, 0xFF, 0xF0, 0x1F, 0xFF, 0xFF, 0xF0, 0x1F, 0xFF, 0xFF, 0xF0, + 0x3C, 0x3E, 0x00, 0x7E, 0xFC, 0x00, 0x00, 0x7F, 0xF8, 0x00, 0x00, 0x3F, 0xF8, 0x00, 0x00, 0x0F, + 0xE0, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x70, 0x00, 0x07, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0F, 0xC0, 0x03, 0xFE, 0x3C, 0x7F, 0xF3, 0xCF, 0xCF, 0x39, 0xF0, 0xF7, 0xFE, + 0x1F, 0xFF, 0xFF, 0xEF, 0xFF, 0xFE, 0xEF, 0xFF, 0x80, 0x1F, 0xC0, 0x00, 0x02, 0x00, 0x00, 0x0E, + 0x00, 0x00, 0x1C, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xF0, 0x00, + 0x1F, 0xF0, 0x3C, 0x7F, 0xF0, 0x79, 0xF9, 0xE0, 0xE7, 0xC3, 0xC3, 0xFF, 0x0F, 0x8F, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFB, 0xFF, 0xFF, 0x80, 0xFE, 0x00, 0x0E, 0x00, 0x07, 0x00, 0x03, 0x80, 0x01, + 0xC0, 0x00, 0xE0, 0x00, 0x70, 0x00, 0x3C, 0x20, 0x1E, 0xFC, 0x0F, 0xFF, 0x07, 0xFF, 0xC3, 0xF9, + 0xE1, 0xF0, 0xF0, 0xF0, 0xFF, 0xFF, 0xFB, 0xFF, 0xFD, 0xFF, 0xF8, 0x1F, 0xE0, 0x00, 0x0E, 0x00, + 0x00, 0xE0, 0x00, 0x0E, 0x00, 0x00, 0xE0, 0x00, 0x0E, 0x00, 0x00, 0xE0, 0x00, 0x0F, 0x08, 0x00, + 0xF7, 0xE0, 0x0F, 0xFF, 0x00, 0xFF, 0xF8, 0x0F, 0xE7, 0x80, 0xF8, 0x78, 0x0F, 0x0F, 0x8F, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x1F, 0xE0, 0x00, 0x38, 0x00, 0xF0, 0x01, 0xE0, 0x03, 0xC0, + 0x07, 0x80, 0x07, 0x00, 0x0E, 0x1C, 0x1D, 0xFC, 0x3F, 0xFC, 0x7F, 0xFC, 0xFC, 0x79, 0xF0, 0xF7, + 0xC7, 0xFF, 0xFF, 0xBF, 0xFE, 0x7F, 0xF8, 0x00, 0x00, 0x38, 0x00, 0x1E, 0x00, 0x07, 0x80, 0x01, + 0xE0, 0x00, 0x78, 0x00, 0x0E, 0x00, 0x03, 0x87, 0x00, 0xEF, 0xE0, 0x3F, 0xFC, 0x0F, 0xFF, 0x83, + 0xF1, 0xE0, 0xF8, 0x78, 0x7C, 0x7E, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, + 0x0E, 0x00, 0x07, 0x0C, 0x03, 0x87, 0x01, 0xC3, 0x80, 0xE1, 0xC0, 0x70, 0x00, 0x3C, 0x20, 0x1E, + 0xFC, 0x0F, 0xFF, 0x07, 0xFF, 0xC3, 0xF9, 0xE1, 0xF0, 0xF0, 0xF0, 0xFF, 0xFF, 0xFB, 0xFF, 0xFD, + 0xFF, 0xF8, 0x1F, 0xE0, 0x00, 0x0E, 0x00, 0x00, 0xE1, 0x80, 0x0E, 0x3C, 0x00, 0xE3, 0xC0, 0x0E, + 0x18, 0x00, 0xE0, 0x00, 0x0F, 0x08, 0x00, 0xF7, 0xE0, 0x0F, 0xFF, 0x00, 0xFF, 0xF8, 0x0F, 0xE7, + 0x80, 0xF8, 0x78, 0x0F, 0x0F, 0x8F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x1F, 0xE0, 0x00, + 0x38, 0x00, 0xF0, 0x81, 0xE3, 0x83, 0xC7, 0x07, 0x8E, 0x07, 0x00, 0x0E, 0x1C, 0x1D, 0xFC, 0x3F, + 0xFC, 0x7F, 0xFC, 0xFC, 0x79, 0xF0, 0xF7, 0xC7, 0xFF, 0xFF, 0xBF, 0xFE, 0x7F, 0xF8, 0x00, 0x00, + 0x38, 0x00, 0x1E, 0x10, 0x07, 0x8E, 0x01, 0xE3, 0x80, 0x78, 0xE0, 0x0E, 0x00, 0x03, 0x87, 0x00, + 0xEF, 0xE0, 0x3F, 0xFC, 0x0F, 0xFF, 0x83, 0xF1, 0xE0, 0xF8, 0x78, 0x7C, 0x7E, 0x3F, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x1F, 0x00, 0xFE, 0x07, 0xF0, 0x1F, 0xC0, 0x70, 0x01, + 0xC1, 0x07, 0xFC, 0x1F, 0xF8, 0x3F, 0xE0, 0xFC, 0x07, 0xC0, 0x3E, 0x00, 0xF0, 0x03, 0xC0, 0x0F, + 0x00, 0x3C, 0x00, 0xF8, 0x19, 0xFF, 0xE3, 0xFF, 0xC7, 0xFE, 0x03, 0x80, 0x0F, 0xC0, 0xFF, 0x83, + 0xFE, 0x1E, 0x78, 0x3D, 0xE0, 0xFF, 0x81, 0xFC, 0x03, 0xFF, 0x3F, 0xFD, 0xFF, 0xF7, 0x80, 0x3C, + 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x83, 0x3F, 0xFC, 0x7F, 0xF0, 0xFF, 0x80, 0x70, 0x00, 0x07, 0x03, + 0xF0, 0xFE, 0x3F, 0xC7, 0x80, 0xF0, 0x1E, 0x31, 0xFF, 0xFF, 0xFF, 0xFB, 0xFC, 0x00, 0x00, 0x07, + 0xC0, 0x3F, 0xC0, 0xFF, 0xC1, 0xE7, 0x83, 0xEF, 0x03, 0xFC, 0x03, 0xF8, 0x3F, 0xFE, 0x7F, 0xFE, + 0xFB, 0xF8, 0x00, 0x00, 0x06, 0x00, 0x3C, 0x00, 0xF0, 0x01, 0x80, 0x00, 0x00, 0x7C, 0x03, 0xF8, + 0x1F, 0xC0, 0x7F, 0x01, 0xC0, 0x07, 0x04, 0x1F, 0xF0, 0x7F, 0xE0, 0xFF, 0x83, 0xF0, 0x1F, 0x00, + 0xF8, 0x03, 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x03, 0xE0, 0x67, 0xFF, 0x8F, 0xFF, 0x1F, 0xF8, + 0x0E, 0x00, 0x03, 0x00, 0x1C, 0x00, 0x78, 0x01, 0xC0, 0x00, 0x00, 0x3F, 0x03, 0xFE, 0x0F, 0xF8, + 0x79, 0xE0, 0xF7, 0x83, 0xFE, 0x07, 0xF0, 0x0F, 0xFC, 0xFF, 0xF7, 0xFF, 0xDE, 0x00, 0xF0, 0x03, + 0xC0, 0x0F, 0x00, 0x3E, 0x0C, 0xFF, 0xF1, 0xFF, 0xC3, 0xFE, 0x01, 0xC0, 0x06, 0x01, 0xC0, 0x3C, + 0x07, 0x00, 0x00, 0x0E, 0x07, 0xE1, 0xFC, 0x7F, 0x8F, 0x01, 0xE0, 0x3C, 0x63, 0xFF, 0xFF, 0xFF, + 0xF7, 0xF8, 0x00, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x1E, 0x00, 0x1C, 0x00, 0x00, 0x00, 0xF8, 0x07, + 0xF8, 0x1F, 0xF8, 0x3C, 0xF0, 0x7D, 0xE0, 0x7F, 0x80, 0x7F, 0x07, 0xFF, 0xCF, 0xFF, 0xDF, 0x7F, + 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x0E, 0x00, 0x00, 0xF0, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0F, 0x80, 0x00, 0xFE, 0x00, 0x0F, 0xF0, 0x00, 0x7B, 0xDC, 0x03, 0x9E, 0xE0, + 0x1F, 0xFF, 0x00, 0xFF, 0xF8, 0x07, 0xFF, 0xE0, 0x07, 0xEF, 0xFF, 0xFE, 0x7F, 0xFF, 0xF1, 0xFF, + 0xFF, 0x01, 0xFF, 0x80, 0x00, 0x00, 0x60, 0x00, 0x00, 0x78, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x0C, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xC0, 0x00, 0x07, 0xF0, 0x70, 0x03, 0xFC, + 0x38, 0x03, 0xDE, 0x3C, 0x01, 0xE7, 0x1E, 0x00, 0xF7, 0x8F, 0x80, 0x3F, 0xC3, 0xFF, 0xFF, 0xFD, + 0xFF, 0xFF, 0xFE, 0x7F, 0xFF, 0xFF, 0x07, 0xFC, 0x00, 0x00, 0x04, 0x03, 0x80, 0xE0, 0x38, 0x00, + 0x00, 0x01, 0xF0, 0xFE, 0x7F, 0x9E, 0xF7, 0xBD, 0xFF, 0x7F, 0xCF, 0xF0, 0xFF, 0xFE, 0xFF, 0xBF, + 0x80, 0x00, 0x06, 0x00, 0x70, 0x03, 0xC0, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x7C, 0x07, 0xF0, 0x7F, + 0xC3, 0xDE, 0x1E, 0xF0, 0xF7, 0x83, 0xFC, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x22, + 0x00, 0x3B, 0x80, 0x1F, 0xC0, 0x0E, 0xC0, 0x00, 0x00, 0x00, 0xE0, 0x01, 0xF8, 0x00, 0xFE, 0x00, + 0xFF, 0x38, 0x73, 0xDC, 0x3D, 0xFE, 0x1F, 0xFF, 0x0F, 0xFF, 0x83, 0xFF, 0xC0, 0x3D, 0xF8, 0x7E, + 0x7F, 0xFE, 0x1F, 0xFE, 0x07, 0xFC, 0x00, 0x00, 0x20, 0x00, 0x07, 0xF0, 0x00, 0x7F, 0x00, 0x07, + 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x00, 0x07, 0xF0, 0x00, 0xFF, 0x00, 0x0F, 0x78, + 0x70, 0xE7, 0x87, 0x0F, 0xFE, 0xF0, 0xFF, 0xFF, 0x07, 0xFF, 0xF0, 0x0F, 0x8F, 0x80, 0xF0, 0x7F, + 0xFE, 0x07, 0xFF, 0xE0, 0x3F, 0xF8, 0x00, 0xFE, 0x00, 0x11, 0x0E, 0xE3, 0xF8, 0xEE, 0x00, 0x00, + 0x01, 0xF0, 0xFE, 0x7F, 0x9E, 0xF7, 0xBD, 0xFF, 0x7F, 0xCF, 0xF0, 0xFF, 0xFE, 0xFF, 0xBF, 0x80, + 0x00, 0x11, 0x01, 0xDC, 0x0F, 0xE0, 0x37, 0x00, 0x00, 0x00, 0x00, 0x7C, 0x07, 0xF0, 0x7F, 0xC3, + 0xDE, 0x1E, 0xF0, 0xF7, 0x83, 0xFC, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x01, 0xC0, + 0x00, 0x38, 0x00, 0x07, 0x00, 0x18, 0xE0, 0x07, 0x1C, 0x01, 0xE3, 0x80, 0x38, 0x78, 0x07, 0x8F, + 0x70, 0x71, 0xEE, 0x3E, 0x3F, 0xC7, 0x87, 0xF8, 0x40, 0xFF, 0x80, 0x3E, 0xFF, 0xFF, 0x9F, 0xFF, + 0xF1, 0xFF, 0xFC, 0x07, 0xFC, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x07, 0x00, 0x00, 0x1C, 0x00, 0x0C, + 0x70, 0x00, 0x71, 0xC0, 0x03, 0xC7, 0x00, 0x0E, 0x1E, 0x00, 0x3C, 0x78, 0x70, 0x71, 0xE1, 0xC7, + 0xC7, 0x8F, 0x1E, 0x1E, 0x3C, 0x20, 0x78, 0xF8, 0x03, 0xE1, 0xFF, 0xFF, 0xF7, 0xFF, 0xFF, 0xCF, + 0xFF, 0xFF, 0x07, 0xFC, 0x00, 0x01, 0x81, 0xE1, 0xFD, 0xFE, 0xFC, 0x3E, 0x0F, 0xC1, 0xF8, 0x3E, + 0x07, 0xC0, 0xF0, 0x3C, 0xFF, 0x3F, 0xCF, 0xE0, 0x00, 0x01, 0x80, 0x3C, 0x07, 0xF0, 0xFF, 0x0F, + 0xE0, 0x7C, 0x03, 0xE0, 0x0F, 0x80, 0x3E, 0x00, 0xF8, 0x03, 0xC0, 0x1F, 0x8F, 0xFF, 0x7F, 0xFF, + 0xFB, 0xC0, 0x00, 0x00, 0x1C, 0x00, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xC0, 0x03, 0x80, 0x07, + 0x80, 0x0F, 0x00, 0x1E, 0x00, 0x3C, 0x00, 0x7B, 0x80, 0xF7, 0x01, 0xFE, 0x03, 0xFC, 0x07, 0xF8, + 0x0E, 0xF0, 0x3C, 0xF8, 0xF9, 0xFF, 0xE1, 0xFF, 0x80, 0xFE, 0x00, 0x00, 0x1C, 0x00, 0x03, 0x80, + 0x00, 0x70, 0x00, 0x0E, 0x00, 0x01, 0xC0, 0x00, 0x38, 0x00, 0x07, 0x00, 0x00, 0xE0, 0x00, 0x1E, + 0x00, 0x03, 0xC0, 0x00, 0x78, 0x38, 0x0F, 0x07, 0x01, 0xE1, 0xE0, 0x3F, 0xBC, 0x07, 0xF7, 0x80, + 0xFE, 0xF0, 0x3C, 0x0F, 0x8F, 0x81, 0xFF, 0xE0, 0x1F, 0xF8, 0x00, 0xFE, 0x00, 0x39, 0xE7, 0x9E, + 0x38, 0xE3, 0x8E, 0x38, 0xE3, 0x8E, 0x3B, 0xEF, 0xBC, 0x00, 0x38, 0x3C, 0x1E, 0x07, 0x03, 0x81, + 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x83, 0xC7, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x06, 0x03, + 0xF0, 0xFF, 0x3F, 0xE7, 0x9E, 0x23, 0xC7, 0xF9, 0xFF, 0x7F, 0xFF, 0x3B, 0xC0, 0x78, 0x0F, 0x01, + 0xE0, 0x3C, 0x07, 0x80, 0x70, 0x0E, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0xE0, 0x1F, 0xE0, 0x3F, + 0xF0, 0x7C, 0x70, 0x7E, 0x78, 0xFF, 0xFE, 0xFF, 0xFF, 0xF7, 0xFF, 0xF1, 0xC0, 0xF0, 0x00, 0xF0, + 0x00, 0xF0, 0x00, 0xF0, 0x00, 0x70, 0x00, 0x78, 0x00, 0x78, 0x00, 0x00, 0x00, 0x07, 0x80, 0xFC, + 0x1F, 0xE3, 0xFE, 0x3C, 0xE7, 0xCE, 0xFF, 0xEF, 0xFE, 0xEF, 0xC0, 0x00, 0x07, 0x80, 0x3F, 0x80, + 0x7F, 0x01, 0xFF, 0x03, 0x9E, 0x0F, 0x9E, 0x3F, 0xFF, 0xFF, 0xFF, 0xEF, 0xFE, 0x07, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x1E, 0x00, 0x1C, 0x00, 0x00, 0x80, 0x07, 0x80, 0x0F, 0x38, 0x0E, 0x70, 0x1F, + 0xE0, 0x3F, 0xC0, 0x7F, 0x80, 0xFF, 0x03, 0xCF, 0xDF, 0x9F, 0xFE, 0x1F, 0xF8, 0x1F, 0xE0, 0x03, + 0x00, 0x00, 0x70, 0x00, 0x1E, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x0F, 0x03, + 0x80, 0xE0, 0x70, 0x1E, 0x1E, 0x03, 0xFB, 0xC0, 0x7F, 0xF8, 0x0F, 0xFF, 0x03, 0xC0, 0xFD, 0xF8, + 0x1F, 0xFE, 0x01, 0xFF, 0xC0, 0x1F, 0xE0, 0x00, 0x31, 0xE7, 0x8C, 0x00, 0xE7, 0x8F, 0x3C, 0xF3, + 0xCF, 0xFF, 0xEF, 0x00, 0x18, 0x0F, 0x03, 0xC0, 0x70, 0x00, 0x00, 0x01, 0xC0, 0xF0, 0x3C, 0x0F, + 0x0F, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x07, 0x03, 0xE0, 0xFC, 0x3F, 0x1F, 0xE7, 0x3B, 0xCE, + 0xF3, 0xBF, 0xE7, 0xF8, 0xFC, 0x00, 0x00, 0x03, 0x80, 0x0F, 0x00, 0x7C, 0x07, 0xF0, 0x7F, 0xC1, + 0xFF, 0x0F, 0x3C, 0x3C, 0xF0, 0xFF, 0xC1, 0xFF, 0x07, 0xFF, 0x87, 0xFF, 0x00, 0xF8, 0x00, 0x00, + 0x08, 0x00, 0xE0, 0x0F, 0xC0, 0x7F, 0x03, 0xFC, 0x3F, 0xF1, 0xCF, 0xCF, 0xFF, 0x7F, 0x7F, 0xFF, + 0xFF, 0xFF, 0xFF, 0xE0, 0x08, 0x00, 0x07, 0x80, 0x7F, 0x01, 0xFC, 0x0F, 0x70, 0x3D, 0xC1, 0xE7, + 0x07, 0xFC, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 0xF7, 0x8E, 0x0F, 0xF8, 0x3F, 0xE0, 0x7F, 0x80, 0x78, + 0x00, 0x0E, 0x0F, 0xC3, 0xF9, 0xFE, 0x73, 0xDC, 0xF7, 0xFD, 0xFF, 0x3F, 0xC3, 0xE7, 0xFB, 0xFC, + 0x7E, 0x1E, 0x00, 0x0E, 0x01, 0xF8, 0x0F, 0xE0, 0xFF, 0x07, 0x3C, 0x39, 0xE1, 0xFF, 0xEF, 0xFF, + 0x3F, 0xF8, 0x7C, 0x1F, 0xE1, 0xFE, 0x07, 0xE0, 0x3C, 0x00, 0x00, 0x1F, 0x80, 0x1F, 0xC0, 0x1F, + 0xC0, 0x1F, 0x20, 0x0E, 0x03, 0x87, 0x01, 0xC3, 0xE1, 0xE1, 0xFC, 0xF0, 0x3F, 0x78, 0x07, 0xBC, + 0x03, 0xCF, 0xDF, 0xE7, 0xFF, 0xE1, 0xFF, 0xE0, 0x3F, 0xC0, 0x00, 0x00, 0x0E, 0x00, 0x01, 0xC0, + 0xF8, 0x78, 0x1F, 0xEF, 0x03, 0xFF, 0xE0, 0x1F, 0xBC, 0x03, 0xC3, 0xFB, 0xF8, 0x7F, 0xFE, 0x07, + 0xFF, 0x80, 0x3F, 0xC0, 0x00, 0x00, 0x1F, 0x80, 0x1F, 0xC0, 0x1F, 0xC0, 0x1F, 0x20, 0x0E, 0x03, + 0x87, 0x01, 0xC3, 0xE1, 0xE1, 0xFC, 0xF0, 0x3F, 0x78, 0x07, 0xBC, 0x03, 0xCF, 0xDF, 0xE7, 0xFF, + 0xE1, 0xFF, 0xE0, 0x3F, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x07, 0x70, 0x03, 0xF8, 0x01, 0xDC, 0x00, + 0x00, 0x00, 0x0E, 0x00, 0x01, 0xC0, 0xF8, 0x78, 0x1F, 0xEF, 0x03, 0xFF, 0xE0, 0x1F, 0xBC, 0x03, + 0xC3, 0xFB, 0xF8, 0x7F, 0xFE, 0x07, 0xFF, 0x80, 0x3F, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, + 0xC0, 0x03, 0xFC, 0x00, 0x3F, 0x00, 0x3C, 0x78, 0xF0, 0xE1, 0xE3, 0xC7, 0xFE, 0xFD, 0xF0, 0x00, + 0x0E, 0xFF, 0xFB, 0x80, 0x00, 0x03, 0xC0, 0x70, 0x0E, 0x03, 0xE1, 0xFF, 0xBF, 0xFF, 0xBE, 0x00, + 0x00, 0x01, 0xF8, 0x7F, 0x87, 0xE0, 0x00, 0x00, 0xFE, 0x31, 0xFD, 0xE0, 0x31, 0xC0, 0xC3, 0x83, + 0xC7, 0x07, 0xCE, 0x07, 0xFC, 0x07, 0xF8, 0x03, 0xF0, 0x03, 0xE0, 0x0F, 0xE0, 0x3F, 0xC0, 0xFB, + 0x83, 0xFF, 0x07, 0xFE, 0x0F, 0xF8, 0x00, 0x00, 0x7F, 0x00, 0xFF, 0x70, 0x0E, 0xF0, 0x00, 0xF0, + 0x20, 0x70, 0x70, 0x70, 0x78, 0x70, 0x7C, 0x70, 0x3E, 0x70, 0x1F, 0x70, 0x0F, 0xF0, 0x07, 0xF0, + 0x03, 0xF8, 0x07, 0xF8, 0x7F, 0xFF, 0x7F, 0xFF, 0x7F, 0x3F, 0x00, 0x00, 0x70, 0x07, 0x80, 0x3C, + 0x01, 0xE0, 0xCF, 0x9E, 0x78, 0x70, 0xC3, 0x8F, 0x1C, 0x7C, 0xE1, 0xFF, 0x07, 0xF8, 0x0F, 0xC0, + 0x3E, 0x03, 0xF8, 0x3F, 0xC3, 0xEE, 0x3F, 0xF1, 0xFF, 0x8F, 0xF8, 0x18, 0x00, 0x3C, 0x00, 0x38, + 0x00, 0x3C, 0x00, 0x3E, 0x70, 0x3C, 0xF0, 0x00, 0xF0, 0x20, 0x70, 0x70, 0x70, 0x78, 0x70, 0x7C, + 0x70, 0x3E, 0x70, 0x1F, 0x70, 0x0F, 0xF0, 0x07, 0xF0, 0x03, 0xF8, 0x07, 0xF8, 0x7F, 0xFF, 0x7F, + 0xFF, 0x7F, 0x3F, 0x00, 0x00, 0x00, 0x60, 0x0F, 0x00, 0x38, 0x61, 0xC7, 0x8E, 0x3E, 0x70, 0xFF, + 0x83, 0xFC, 0x07, 0xE0, 0x1F, 0x01, 0xFC, 0x1F, 0xE1, 0xF7, 0x1F, 0xF8, 0xFF, 0xC7, 0xFC, 0x0C, + 0x00, 0xE0, 0x0F, 0x00, 0x7C, 0x03, 0xE0, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0xF0, 0x00, + 0xF0, 0x20, 0x70, 0x70, 0x70, 0x78, 0x70, 0x7C, 0x70, 0x3E, 0x70, 0x1F, 0x70, 0x0F, 0xF0, 0x07, + 0xF0, 0x03, 0xF8, 0x07, 0xF8, 0x7F, 0xFF, 0x7F, 0xFF, 0x7F, 0x3F, 0x1C, 0x00, 0x1C, 0x00, 0x3C, + 0x00, 0x3E, 0x00, 0x3E, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x60, 0x0F, 0x00, 0x38, 0x61, 0xC7, + 0x8E, 0x3E, 0x70, 0xFF, 0x83, 0xFC, 0x07, 0xE0, 0x1F, 0x01, 0xFC, 0x1F, 0xE1, 0xF7, 0x1F, 0xF8, + 0xFF, 0xC7, 0xFC, 0x00, 0x70, 0x00, 0xF0, 0x00, 0xF0, 0x20, 0x70, 0x70, 0x70, 0x78, 0x70, 0x7C, + 0x70, 0x3E, 0x70, 0x1F, 0x70, 0x0F, 0xF0, 0x07, 0xF0, 0x03, 0xF8, 0x07, 0xF8, 0x7F, 0xFF, 0x7F, + 0xFF, 0x7F, 0x3F, 0x00, 0x00, }; static const EpdGlyph ubuntu_10_boldGlyphs[] = { @@ -1743,404 +2113,606 @@ static const EpdGlyph ubuntu_10_boldGlyphs[] = { { 11, 3, 0, -4, 16, 5, 10506 }, // U+030B { 10, 4, 0, -5, 17, 5, 10511 }, // U+030C { 8, 3, 130, 0, 15, 3, 10516 }, // U+0311 - { 4, 3, 0, -2, -2, 2, 10519 }, // U+0326 - { 6, 5, 0, -3, 0, 4, 10521 }, // U+0327 - { 6, 6, 0, -3, 1, 5, 10525 }, // U+0328 - { 0, 0, 0, 0, 0, 0, 10530 }, // U+034F - { 11, 21, 202, 1, 21, 29, 10530 }, // U+0400 - { 11, 20, 202, 1, 20, 28, 10559 }, // U+0401 - { 17, 15, 271, 0, 15, 32, 10587 }, // U+0402 - { 11, 21, 198, 1, 21, 29, 10619 }, // U+0403 - { 13, 15, 229, 1, 15, 25, 10648 }, // U+0404 - { 12, 15, 194, 0, 15, 23, 10673 }, // U+0405 - { 4, 15, 105, 1, 15, 8, 10696 }, // U+0406 - { 9, 19, 105, -1, 19, 22, 10704 }, // U+0407 - { 10, 15, 176, 0, 15, 19, 10726 }, // U+0408 - { 23, 15, 377, 0, 15, 44, 10745 }, // U+0409 - { 21, 15, 358, 1, 15, 40, 10789 }, // U+040A - { 16, 15, 257, 0, 15, 30, 10829 }, // U+040B - { 14, 21, 228, 1, 21, 37, 10859 }, // U+040C - { 14, 21, 252, 1, 21, 37, 10896 }, // U+040D - { 14, 20, 217, 0, 20, 35, 10933 }, // U+040E - { 13, 19, 243, 1, 15, 31, 10968 }, // U+040F - { 15, 15, 240, 0, 15, 29, 10999 }, // U+0410 - { 12, 15, 217, 1, 15, 23, 11028 }, // U+0411 - { 13, 15, 224, 1, 15, 25, 11051 }, // U+0412 - { 11, 15, 198, 1, 15, 21, 11076 }, // U+0413 - { 17, 19, 274, 0, 15, 41, 11097 }, // U+0414 - { 11, 15, 202, 1, 15, 21, 11138 }, // U+0415 - { 21, 15, 328, 0, 15, 40, 11159 }, // U+0416 - { 12, 15, 203, 0, 15, 23, 11199 }, // U+0417 - { 14, 15, 252, 1, 15, 27, 11222 }, // U+0418 - { 14, 20, 252, 1, 20, 35, 11249 }, // U+0419 - { 14, 15, 228, 1, 15, 27, 11284 }, // U+041A - { 15, 15, 263, 0, 15, 29, 11311 }, // U+041B - { 17, 15, 299, 1, 15, 32, 11340 }, // U+041C - { 13, 15, 245, 1, 15, 25, 11372 }, // U+041D - { 15, 15, 263, 1, 15, 29, 11397 }, // U+041E - { 13, 15, 243, 1, 15, 25, 11426 }, // U+041F - { 12, 15, 215, 1, 15, 23, 11451 }, // U+0420 - { 13, 15, 216, 1, 15, 25, 11474 }, // U+0421 - { 13, 15, 205, 0, 15, 25, 11499 }, // U+0422 - { 14, 15, 217, 0, 15, 27, 11524 }, // U+0423 - { 18, 16, 290, 0, 16, 36, 11551 }, // U+0424 - { 14, 15, 225, 0, 15, 27, 11587 }, // U+0425 - { 16, 19, 263, 1, 15, 38, 11614 }, // U+0426 - { 13, 15, 227, 0, 15, 25, 11652 }, // U+0427 - { 19, 15, 340, 1, 15, 36, 11677 }, // U+0428 - { 22, 19, 360, 1, 15, 53, 11713 }, // U+0429 - { 16, 15, 258, 0, 15, 30, 11766 }, // U+042A - { 17, 15, 309, 1, 15, 32, 11796 }, // U+042B - { 12, 15, 220, 1, 15, 23, 11828 }, // U+042C - { 14, 15, 227, 0, 15, 27, 11851 }, // U+042D - { 21, 15, 360, 1, 15, 40, 11878 }, // U+042E - { 13, 15, 230, 0, 15, 25, 11918 }, // U+042F - { 11, 11, 184, 0, 11, 16, 11943 }, // U+0430 - { 12, 16, 200, 0, 16, 24, 11959 }, // U+0431 - { 11, 11, 199, 1, 11, 16, 11983 }, // U+0432 - { 9, 11, 151, 1, 11, 13, 11999 }, // U+0433 - { 14, 14, 226, 0, 11, 25, 12012 }, // U+0434 - { 12, 11, 195, 0, 11, 17, 12037 }, // U+0435 - { 18, 11, 283, 0, 11, 25, 12054 }, // U+0436 - { 10, 11, 165, 0, 11, 14, 12079 }, // U+0437 - { 11, 11, 206, 1, 11, 16, 12093 }, // U+0438 - { 11, 17, 206, 1, 17, 24, 12109 }, // U+0439 - { 12, 11, 195, 1, 11, 17, 12133 }, // U+043A - { 12, 11, 209, 0, 11, 17, 12150 }, // U+043B - { 14, 11, 254, 1, 11, 20, 12167 }, // U+043C - { 10, 11, 198, 1, 11, 14, 12187 }, // U+043D - { 12, 11, 202, 0, 11, 17, 12201 }, // U+043E - { 10, 11, 198, 1, 11, 14, 12218 }, // U+043F - { 11, 15, 201, 1, 11, 21, 12232 }, // U+0440 - { 10, 11, 167, 0, 11, 14, 12253 }, // U+0441 - { 11, 11, 175, 0, 11, 16, 12267 }, // U+0442 - { 12, 15, 182, 0, 11, 23, 12283 }, // U+0443 - { 16, 20, 265, 0, 16, 40, 12306 }, // U+0444 - { 12, 11, 185, 0, 11, 17, 12346 }, // U+0445 - { 12, 14, 211, 1, 11, 21, 12363 }, // U+0446 - { 11, 11, 189, 0, 11, 16, 12384 }, // U+0447 - { 16, 11, 287, 1, 11, 22, 12400 }, // U+0448 - { 18, 14, 300, 1, 11, 32, 12422 }, // U+0449 - { 13, 11, 213, 0, 11, 18, 12454 }, // U+044A - { 15, 11, 275, 1, 11, 21, 12472 }, // U+044B - { 11, 11, 188, 1, 11, 16, 12493 }, // U+044C - { 11, 11, 174, 0, 11, 16, 12509 }, // U+044D - { 17, 11, 291, 1, 11, 24, 12525 }, // U+044E - { 11, 11, 195, 0, 11, 16, 12549 }, // U+044F - { 12, 17, 195, 0, 17, 26, 12565 }, // U+0450 - { 12, 16, 195, 0, 16, 24, 12591 }, // U+0451 - { 12, 20, 200, 0, 16, 30, 12615 }, // U+0452 - { 9, 17, 151, 1, 17, 20, 12645 }, // U+0453 - { 11, 11, 174, 0, 11, 16, 12665 }, // U+0454 - { 10, 11, 162, 0, 11, 14, 12681 }, // U+0455 - { 4, 16, 96, 1, 16, 8, 12695 }, // U+0456 - { 9, 16, 96, -2, 16, 18, 12703 }, // U+0457 - { 7, 20, 96, -2, 16, 18, 12721 }, // U+0458 - { 19, 11, 301, 0, 11, 27, 12739 }, // U+0459 - { 17, 11, 289, 1, 11, 24, 12766 }, // U+045A - { 12, 16, 200, 0, 16, 24, 12790 }, // U+045B - { 12, 17, 195, 1, 17, 26, 12814 }, // U+045C - { 11, 17, 206, 1, 17, 24, 12840 }, // U+045D - { 12, 21, 182, 0, 17, 32, 12864 }, // U+045E - { 10, 14, 198, 1, 11, 18, 12896 }, // U+045F - { 15, 16, 249, 0, 16, 30, 12914 }, // U+0462 - { 13, 16, 212, 0, 16, 26, 12944 }, // U+0463 - { 15, 15, 263, 1, 15, 29, 12970 }, // U+0472 - { 12, 11, 202, 0, 11, 17, 12999 }, // U+0473 - { 18, 15, 264, 0, 15, 34, 13016 }, // U+0474 - { 13, 11, 199, 0, 11, 18, 13050 }, // U+0475 - { 16, 23, 276, 1, 19, 46, 13068 }, // U+048A - { 13, 19, 210, 1, 16, 31, 13114 }, // U+048B - { 13, 15, 220, 0, 15, 25, 13145 }, // U+048C - { 12, 11, 189, 0, 11, 17, 13170 }, // U+048D - { 12, 15, 218, 1, 15, 23, 13187 }, // U+048E - { 11, 15, 205, 1, 11, 21, 13210 }, // U+048F - { 11, 18, 191, 1, 18, 25, 13231 }, // U+0490 - { 9, 14, 154, 1, 14, 16, 13256 }, // U+0491 - { 12, 15, 211, 1, 15, 23, 13272 }, // U+0492 - { 10, 11, 175, 1, 11, 14, 13295 }, // U+0493 - { 13, 19, 225, 1, 15, 31, 13309 }, // U+0494 - { 11, 15, 190, 1, 11, 21, 13340 }, // U+0495 - { 22, 19, 341, 0, 15, 53, 13361 }, // U+0496 - { 18, 14, 291, 0, 11, 32, 13414 }, // U+0497 - { 12, 20, 203, 0, 15, 30, 13446 }, // U+0498 - { 10, 16, 165, 0, 11, 20, 13476 }, // U+0499 - { 15, 19, 246, 1, 15, 36, 13496 }, // U+049A - { 12, 14, 202, 1, 11, 21, 13532 }, // U+049B - { 16, 15, 261, 1, 15, 30, 13553 }, // U+049C - { 14, 11, 227, 1, 11, 20, 13583 }, // U+049D - { 15, 16, 236, 0, 16, 30, 13603 }, // U+049E - { 13, 12, 202, 0, 12, 20, 13633 }, // U+049F - { 17, 15, 266, 0, 15, 32, 13653 }, // U+04A0 - { 14, 11, 219, 0, 11, 20, 13685 }, // U+04A1 - { 16, 19, 269, 1, 15, 38, 13705 }, // U+04A2 - { 12, 14, 212, 1, 11, 21, 13743 }, // U+04A3 - { 17, 15, 279, 1, 15, 32, 13764 }, // U+04A4 - { 13, 11, 218, 1, 11, 18, 13796 }, // U+04A5 - { 22, 19, 370, 1, 15, 53, 13814 }, // U+04A6 - { 17, 15, 291, 1, 11, 32, 13867 }, // U+04A7 - { 16, 19, 267, 1, 15, 38, 13899 }, // U+04A8 - { 13, 14, 211, 0, 11, 23, 13937 }, // U+04A9 - { 13, 20, 216, 1, 15, 33, 13960 }, // U+04AA - { 10, 15, 167, 0, 11, 19, 13993 }, // U+04AB - { 13, 19, 205, 0, 15, 31, 14012 }, // U+04AC - { 11, 14, 168, 0, 11, 20, 14043 }, // U+04AD - { 14, 15, 220, 0, 15, 27, 14063 }, // U+04AE - { 12, 15, 183, 0, 11, 23, 14090 }, // U+04AF - { 14, 15, 220, 0, 15, 27, 14113 }, // U+04B0 - { 12, 15, 183, 0, 11, 23, 14140 }, // U+04B1 - { 15, 19, 239, 0, 15, 36, 14163 }, // U+04B2 - { 12, 14, 196, 0, 11, 21, 14199 }, // U+04B3 - { 20, 19, 313, 0, 15, 48, 14220 }, // U+04B4 - { 15, 14, 232, 0, 11, 27, 14268 }, // U+04B5 - { 14, 19, 241, 1, 15, 34, 14295 }, // U+04B6 - { 13, 14, 196, 0, 11, 23, 14329 }, // U+04B7 - { 12, 15, 227, 1, 15, 23, 14352 }, // U+04B8 - { 11, 11, 187, 0, 11, 16, 14375 }, // U+04B9 - { 13, 15, 233, 1, 15, 25, 14391 }, // U+04BA - { 10, 16, 196, 1, 16, 20, 14416 }, // U+04BB - { 18, 15, 293, 0, 15, 34, 14436 }, // U+04BC - { 14, 11, 236, 0, 11, 20, 14470 }, // U+04BD - { 18, 19, 293, 0, 15, 43, 14490 }, // U+04BE - { 14, 14, 236, 0, 11, 25, 14533 }, // U+04BF - { 4, 15, 105, 1, 15, 8, 14558 }, // U+04C0 - { 21, 20, 328, 0, 20, 53, 14566 }, // U+04C1 - { 18, 17, 283, 0, 17, 39, 14619 }, // U+04C2 - { 13, 19, 234, 1, 15, 31, 14658 }, // U+04C3 - { 11, 15, 191, 1, 11, 21, 14689 }, // U+04C4 - { 18, 19, 277, 0, 15, 43, 14710 }, // U+04C5 - { 14, 14, 225, 0, 11, 25, 14753 }, // U+04C6 - { 13, 19, 245, 1, 15, 31, 14778 }, // U+04C7 - { 11, 15, 200, 1, 11, 21, 14809 }, // U+04C8 - { 16, 19, 262, 1, 15, 38, 14830 }, // U+04C9 - { 12, 14, 209, 1, 11, 21, 14868 }, // U+04CA - { 13, 19, 227, 0, 15, 31, 14889 }, // U+04CB - { 11, 14, 189, 0, 11, 20, 14920 }, // U+04CC - { 19, 19, 317, 1, 15, 46, 14940 }, // U+04CD - { 16, 14, 265, 1, 11, 28, 14986 }, // U+04CE - { 4, 15, 96, 1, 15, 8, 15014 }, // U+04CF - { 15, 20, 240, 0, 20, 38, 15022 }, // U+04D0 - { 11, 17, 184, 0, 17, 24, 15060 }, // U+04D1 - { 15, 19, 240, 0, 19, 36, 15084 }, // U+04D2 - { 11, 16, 184, 0, 16, 22, 15120 }, // U+04D3 - { 21, 15, 331, 0, 15, 40, 15142 }, // U+04D4 - { 18, 11, 291, 0, 11, 25, 15182 }, // U+04D5 - { 11, 20, 202, 1, 20, 28, 15207 }, // U+04D6 - { 12, 17, 195, 0, 17, 26, 15235 }, // U+04D7 - { 14, 15, 243, 1, 15, 27, 15261 }, // U+04D8 - { 12, 11, 195, 0, 11, 17, 15288 }, // U+04D9 - { 14, 19, 243, 1, 19, 34, 15305 }, // U+04DA - { 12, 16, 195, 0, 16, 24, 15339 }, // U+04DB - { 21, 19, 328, 0, 19, 50, 15363 }, // U+04DC - { 18, 16, 283, 0, 16, 36, 15413 }, // U+04DD - { 12, 20, 203, 0, 20, 30, 15449 }, // U+04DE - { 10, 16, 165, 0, 16, 20, 15479 }, // U+04DF - { 12, 15, 205, 0, 15, 23, 15499 }, // U+04E0 - { 10, 15, 172, 0, 11, 19, 15522 }, // U+04E1 - { 14, 18, 252, 1, 18, 32, 15541 }, // U+04E2 - { 11, 15, 206, 1, 15, 21, 15573 }, // U+04E3 - { 14, 19, 252, 1, 19, 34, 15594 }, // U+04E4 - { 11, 16, 206, 1, 16, 22, 15628 }, // U+04E5 - { 15, 19, 263, 1, 19, 36, 15650 }, // U+04E6 - { 12, 16, 202, 0, 16, 24, 15686 }, // U+04E7 - { 15, 15, 263, 1, 15, 29, 15710 }, // U+04E8 - { 12, 11, 202, 0, 11, 17, 15739 }, // U+04E9 - { 15, 19, 263, 1, 19, 36, 15756 }, // U+04EA - { 12, 16, 202, 0, 16, 24, 15792 }, // U+04EB - { 14, 19, 227, 0, 19, 34, 15816 }, // U+04EC - { 11, 16, 174, 0, 16, 22, 15850 }, // U+04ED - { 14, 18, 217, 0, 18, 32, 15872 }, // U+04EE - { 12, 19, 182, 0, 15, 29, 15904 }, // U+04EF - { 14, 19, 217, 0, 19, 34, 15933 }, // U+04F0 - { 12, 20, 182, 0, 16, 30, 15967 }, // U+04F1 - { 14, 21, 217, 0, 21, 37, 15997 }, // U+04F2 - { 12, 21, 182, 0, 17, 32, 16034 }, // U+04F3 - { 13, 19, 227, 0, 19, 31, 16066 }, // U+04F4 - { 11, 16, 189, 0, 16, 22, 16097 }, // U+04F5 - { 11, 19, 198, 1, 15, 27, 16119 }, // U+04F6 - { 9, 14, 151, 1, 11, 16, 16146 }, // U+04F7 - { 17, 19, 309, 1, 19, 41, 16162 }, // U+04F8 - { 15, 16, 275, 1, 16, 30, 16203 }, // U+04F9 - { 14, 13, 225, 0, 13, 23, 16233 }, // U+05D0 - { 12, 13, 198, 0, 13, 20, 16256 }, // U+05D1 - { 9, 14, 137, 0, 13, 16, 16276 }, // U+05D2 - { 12, 13, 190, 0, 13, 20, 16292 }, // U+05D3 - { 12, 13, 219, 1, 13, 20, 16312 }, // U+05D4 - { 6, 13, 113, 0, 13, 10, 16332 }, // U+05D5 - { 8, 13, 124, 0, 13, 13, 16342 }, // U+05D6 - { 14, 13, 229, 0, 13, 23, 16355 }, // U+05D7 - { 13, 13, 220, 0, 13, 22, 16378 }, // U+05D8 - { 6, 8, 111, 0, 13, 6, 16400 }, // U+05D9 - { 11, 17, 190, 0, 13, 24, 16406 }, // U+05DA - { 11, 13, 176, 0, 13, 18, 16430 }, // U+05DB - { 11, 17, 185, 0, 17, 24, 16448 }, // U+05DC - { 14, 13, 234, 0, 13, 23, 16472 }, // U+05DD - { 15, 13, 234, 0, 13, 25, 16495 }, // U+05DE - { 6, 17, 118, 0, 13, 13, 16520 }, // U+05DF - { 8, 13, 135, 0, 13, 13, 16533 }, // U+05E0 - { 14, 13, 227, 0, 13, 23, 16546 }, // U+05E1 - { 13, 15, 210, 0, 14, 25, 16569 }, // U+05E2 - { 13, 17, 218, 0, 13, 28, 16594 }, // U+05E3 - { 13, 13, 209, 0, 13, 22, 16622 }, // U+05E4 - { 12, 17, 196, 0, 13, 26, 16644 }, // U+05E5 - { 12, 13, 197, 0, 13, 20, 16670 }, // U+05E6 - { 14, 17, 218, 0, 13, 30, 16690 }, // U+05E7 - { 10, 13, 181, 0, 13, 17, 16720 }, // U+05E8 - { 15, 13, 262, 1, 13, 25, 16737 }, // U+05E9 - { 14, 13, 241, 0, 13, 23, 16762 }, // U+05EA - { 15, 20, 240, 0, 15, 38, 16785 }, // U+1EA0 - { 11, 17, 184, 0, 12, 24, 16823 }, // U+1EA1 - { 15, 20, 240, 0, 20, 38, 16847 }, // U+1EA2 - { 11, 18, 184, 0, 17, 25, 16885 }, // U+1EA3 - { 15, 23, 240, 0, 23, 44, 16910 }, // U+1EA4 - { 13, 21, 184, 0, 20, 35, 16954 }, // U+1EA5 - { 15, 23, 240, 0, 23, 44, 16989 }, // U+1EA6 - { 11, 21, 184, 0, 20, 29, 17033 }, // U+1EA7 - { 15, 24, 240, 0, 24, 45, 17062 }, // U+1EA8 - { 12, 21, 184, 0, 20, 32, 17107 }, // U+1EA9 - { 15, 24, 240, 0, 24, 45, 17139 }, // U+1EAA - { 11, 21, 184, 0, 20, 29, 17184 }, // U+1EAB - { 15, 25, 240, 0, 20, 47, 17213 }, // U+1EAC - { 11, 22, 184, 0, 17, 31, 17260 }, // U+1EAD - { 15, 24, 240, 0, 24, 45, 17291 }, // U+1EAE - { 11, 22, 184, 0, 21, 31, 17336 }, // U+1EAF - { 15, 24, 240, 0, 24, 45, 17367 }, // U+1EB0 - { 11, 22, 184, 0, 21, 31, 17412 }, // U+1EB1 - { 15, 25, 240, 0, 25, 47, 17443 }, // U+1EB2 - { 11, 22, 184, 0, 21, 31, 17490 }, // U+1EB3 - { 15, 24, 240, 0, 24, 45, 17521 }, // U+1EB4 - { 11, 21, 184, 0, 20, 29, 17566 }, // U+1EB5 - { 15, 25, 240, 0, 20, 47, 17595 }, // U+1EB6 - { 11, 21, 184, 0, 16, 29, 17642 }, // U+1EB7 - { 11, 20, 202, 1, 15, 28, 17671 }, // U+1EB8 - { 12, 17, 195, 0, 12, 26, 17699 }, // U+1EB9 - { 11, 20, 202, 1, 20, 28, 17725 }, // U+1EBA - { 12, 18, 195, 0, 17, 27, 17753 }, // U+1EBB - { 11, 20, 202, 1, 20, 28, 17780 }, // U+1EBC - { 12, 17, 195, 0, 16, 26, 17808 }, // U+1EBD - { 13, 23, 202, 1, 23, 38, 17834 }, // U+1EBE - { 13, 20, 195, 0, 19, 33, 17872 }, // U+1EBF - { 11, 23, 202, 1, 23, 32, 17905 }, // U+1EC0 - { 12, 21, 195, 0, 20, 32, 17937 }, // U+1EC1 - { 12, 23, 202, 1, 23, 35, 17969 }, // U+1EC2 - { 13, 21, 195, 0, 20, 35, 18004 }, // U+1EC3 - { 11, 24, 202, 1, 24, 33, 18039 }, // U+1EC4 - { 12, 21, 195, 0, 20, 32, 18072 }, // U+1EC5 - { 11, 25, 202, 1, 20, 35, 18104 }, // U+1EC6 - { 12, 22, 195, 0, 17, 33, 18139 }, // U+1EC7 - { 6, 20, 105, 0, 20, 15, 18172 }, // U+1EC8 - { 6, 17, 96, 0, 17, 13, 18187 }, // U+1EC9 - { 4, 20, 105, 1, 15, 10, 18200 }, // U+1ECA - { 4, 21, 96, 1, 16, 11, 18210 }, // U+1ECB - { 15, 20, 263, 1, 15, 38, 18221 }, // U+1ECC - { 12, 17, 202, 0, 12, 26, 18259 }, // U+1ECD - { 15, 21, 263, 1, 20, 40, 18285 }, // U+1ECE - { 12, 18, 202, 0, 17, 27, 18325 }, // U+1ECF - { 15, 24, 263, 1, 23, 45, 18352 }, // U+1ED0 - { 13, 21, 202, 0, 20, 35, 18397 }, // U+1ED1 - { 15, 24, 263, 1, 23, 45, 18432 }, // U+1ED2 - { 12, 21, 202, 0, 20, 32, 18477 }, // U+1ED3 - { 15, 25, 263, 1, 24, 47, 18509 }, // U+1ED4 - { 13, 21, 202, 0, 20, 35, 18556 }, // U+1ED5 - { 15, 25, 263, 1, 24, 47, 18591 }, // U+1ED6 - { 12, 21, 202, 0, 20, 32, 18638 }, // U+1ED7 - { 15, 25, 263, 1, 20, 47, 18670 }, // U+1ED8 - { 12, 22, 202, 0, 17, 33, 18717 }, // U+1ED9 - { 15, 21, 263, 1, 20, 40, 18750 }, // U+1EDA - { 13, 18, 202, 0, 17, 30, 18790 }, // U+1EDB - { 15, 21, 263, 1, 20, 40, 18820 }, // U+1EDC - { 13, 18, 202, 0, 17, 30, 18860 }, // U+1EDD - { 15, 21, 263, 1, 20, 40, 18890 }, // U+1EDE - { 13, 18, 202, 0, 17, 30, 18930 }, // U+1EDF - { 15, 21, 263, 1, 20, 40, 18960 }, // U+1EE0 - { 13, 17, 202, 0, 16, 28, 19000 }, // U+1EE1 - { 15, 22, 263, 1, 17, 42, 19028 }, // U+1EE2 - { 13, 19, 202, 0, 14, 31, 19070 }, // U+1EE3 - { 13, 20, 236, 1, 15, 33, 19101 }, // U+1EE4 - { 10, 16, 196, 1, 11, 20, 19134 }, // U+1EE5 - { 13, 21, 236, 1, 20, 35, 19154 }, // U+1EE6 - { 10, 18, 196, 1, 17, 23, 19189 }, // U+1EE7 - { 15, 21, 249, 1, 20, 40, 19212 }, // U+1EE8 - { 13, 18, 209, 1, 17, 30, 19252 }, // U+1EE9 - { 15, 21, 249, 1, 20, 40, 19282 }, // U+1EEA - { 13, 18, 209, 1, 17, 30, 19322 }, // U+1EEB - { 15, 21, 249, 1, 20, 40, 19352 }, // U+1EEC - { 13, 18, 209, 1, 17, 30, 19392 }, // U+1EED - { 15, 21, 249, 1, 20, 40, 19422 }, // U+1EEE - { 13, 17, 209, 1, 16, 28, 19462 }, // U+1EEF - { 15, 22, 249, 1, 17, 42, 19490 }, // U+1EF0 - { 13, 19, 209, 1, 14, 31, 19532 }, // U+1EF1 - { 14, 21, 220, 0, 21, 37, 19563 }, // U+1EF2 - { 12, 21, 182, 0, 17, 32, 19600 }, // U+1EF3 - { 14, 20, 220, 0, 15, 35, 19632 }, // U+1EF4 - { 12, 15, 182, 0, 11, 23, 19667 }, // U+1EF5 - { 14, 20, 220, 0, 20, 35, 19690 }, // U+1EF6 - { 12, 21, 182, 0, 17, 32, 19725 }, // U+1EF7 - { 14, 20, 220, 0, 20, 35, 19757 }, // U+1EF8 - { 12, 20, 182, 0, 16, 30, 19792 }, // U+1EF9 - { 2, 16, 0, -1, 15, 4, 19822 }, // U+200C - { 6, 16, 0, -3, 15, 12, 19826 }, // U+200D - { 6, 16, 0, -1, 15, 12, 19838 }, // U+200E - { 6, 16, 0, -5, 15, 12, 19850 }, // U+200F - { 7, 3, 106, 0, 8, 3, 19862 }, // U+2010 - { 11, 3, 167, 0, 8, 5, 19865 }, // U+2013 - { 21, 3, 333, 0, 8, 8, 19870 }, // U+2014 - { 21, 3, 333, 0, 8, 8, 19878 }, // U+2015 - { 5, 6, 81, 0, 16, 4, 19886 }, // U+2018 - { 5, 6, 81, 0, 16, 4, 19890 }, // U+2019 - { 5, 6, 81, 0, 3, 4, 19894 }, // U+201A - { 10, 6, 151, 0, 16, 8, 19898 }, // U+201C - { 9, 6, 151, 0, 16, 7, 19906 }, // U+201D - { 9, 6, 151, 0, 3, 7, 19913 }, // U+201E - { 10, 18, 165, 0, 15, 23, 19920 }, // U+2020 - { 10, 18, 165, 0, 15, 23, 19943 }, // U+2021 - { 7, 6, 121, 0, 10, 6, 19966 }, // U+2022 - { 19, 4, 333, 1, 4, 10, 19972 }, // U+2026 - { 27, 15, 440, 0, 15, 51, 19982 }, // U+2030 - { 7, 11, 109, 0, 11, 10, 20033 }, // U+2039 - { 7, 11, 109, 0, 11, 10, 20043 }, // U+203A - { 11, 15, 51, -4, 15, 21, 20053 }, // U+2044 - { 8, 9, 121, 0, 15, 9, 20074 }, // U+2070 - { 8, 8, 121, 0, 15, 8, 20083 }, // U+2074 - { 7, 9, 121, 0, 15, 8, 20091 }, // U+2075 - { 8, 9, 121, 0, 15, 9, 20099 }, // U+2076 - { 8, 8, 121, 0, 15, 8, 20108 }, // U+2077 - { 8, 9, 121, 0, 15, 9, 20116 }, // U+2078 - { 8, 9, 121, 0, 15, 9, 20125 }, // U+2079 - { 8, 9, 121, 0, 9, 9, 20134 }, // U+2080 - { 6, 9, 121, 0, 9, 7, 20143 }, // U+2081 - { 7, 9, 121, 0, 9, 8, 20150 }, // U+2082 - { 7, 9, 121, 0, 9, 8, 20158 }, // U+2083 - { 8, 8, 121, 0, 9, 8, 20166 }, // U+2084 - { 7, 9, 121, 0, 9, 8, 20174 }, // U+2085 - { 8, 9, 121, 0, 9, 9, 20182 }, // U+2086 - { 8, 8, 121, 0, 9, 8, 20191 }, // U+2087 - { 8, 9, 121, 0, 9, 9, 20199 }, // U+2088 - { 8, 9, 121, 0, 9, 9, 20208 }, // U+2089 - { 16, 13, 288, 1, 13, 26, 20217 }, // U+20AA - { 12, 15, 189, 0, 15, 23, 20243 }, // U+20AC - { 12, 15, 189, 0, 15, 23, 20266 }, // U+20AE - { 12, 15, 189, 0, 15, 23, 20289 }, // U+20B4 - { 13, 15, 189, 0, 15, 25, 20312 }, // U+20B9 - { 12, 15, 204, 0, 15, 23, 20337 }, // U+2202 - { 15, 15, 231, 0, 15, 29, 20360 }, // U+2206 - { 13, 17, 243, 1, 15, 28, 20389 }, // U+220F - { 11, 17, 181, 0, 15, 24, 20417 }, // U+2211 - { 10, 3, 189, 1, 8, 4, 20441 }, // U+2212 - { 11, 15, 51, -4, 15, 21, 20445 }, // U+2215 - { 5, 4, 82, 0, 9, 3, 20466 }, // U+2219 - { 14, 15, 201, 0, 15, 27, 20469 }, // U+221A - { 13, 7, 212, 0, 10, 12, 20496 }, // U+221E - { 9, 21, 134, 0, 16, 24, 20508 }, // U+222B - { 12, 11, 189, 0, 12, 17, 20532 }, // U+2248 - { 10, 14, 189, 1, 14, 18, 20549 }, // U+2260 - { 10, 13, 189, 1, 13, 17, 20567 }, // U+2264 - { 10, 13, 189, 1, 13, 17, 20584 }, // U+2265 - { 17, 16, 280, 1, 16, 34, 20601 }, // U+FB00 - { 13, 16, 236, 1, 16, 26, 20635 }, // U+FB01 - { 15, 16, 245, 1, 16, 30, 20661 }, // U+FB02 - { 22, 16, 376, 1, 16, 44, 20691 }, // U+FB03 - { 23, 16, 385, 1, 16, 46, 20735 }, // U+FB04 + { 5, 6, 0, -2, 15, 4, 10519 }, // U+0312 + { 4, 3, 0, -2, -2, 2, 10523 }, // U+0326 + { 6, 5, 0, -3, 0, 4, 10525 }, // U+0327 + { 6, 6, 0, -3, 1, 5, 10529 }, // U+0328 + { 0, 0, 0, 0, 0, 0, 10534 }, // U+034F + { 11, 21, 202, 1, 21, 29, 10534 }, // U+0400 + { 11, 20, 202, 1, 20, 28, 10563 }, // U+0401 + { 17, 15, 271, 0, 15, 32, 10591 }, // U+0402 + { 11, 21, 198, 1, 21, 29, 10623 }, // U+0403 + { 13, 15, 229, 1, 15, 25, 10652 }, // U+0404 + { 12, 15, 194, 0, 15, 23, 10677 }, // U+0405 + { 4, 15, 105, 1, 15, 8, 10700 }, // U+0406 + { 9, 19, 105, -1, 19, 22, 10708 }, // U+0407 + { 10, 15, 176, 0, 15, 19, 10730 }, // U+0408 + { 23, 15, 377, 0, 15, 44, 10749 }, // U+0409 + { 21, 15, 358, 1, 15, 40, 10793 }, // U+040A + { 16, 15, 257, 0, 15, 30, 10833 }, // U+040B + { 14, 21, 228, 1, 21, 37, 10863 }, // U+040C + { 14, 21, 252, 1, 21, 37, 10900 }, // U+040D + { 14, 20, 217, 0, 20, 35, 10937 }, // U+040E + { 13, 19, 243, 1, 15, 31, 10972 }, // U+040F + { 15, 15, 240, 0, 15, 29, 11003 }, // U+0410 + { 12, 15, 217, 1, 15, 23, 11032 }, // U+0411 + { 13, 15, 224, 1, 15, 25, 11055 }, // U+0412 + { 11, 15, 198, 1, 15, 21, 11080 }, // U+0413 + { 17, 19, 274, 0, 15, 41, 11101 }, // U+0414 + { 11, 15, 202, 1, 15, 21, 11142 }, // U+0415 + { 21, 15, 328, 0, 15, 40, 11163 }, // U+0416 + { 12, 15, 203, 0, 15, 23, 11203 }, // U+0417 + { 14, 15, 252, 1, 15, 27, 11226 }, // U+0418 + { 14, 20, 252, 1, 20, 35, 11253 }, // U+0419 + { 14, 15, 228, 1, 15, 27, 11288 }, // U+041A + { 15, 15, 263, 0, 15, 29, 11315 }, // U+041B + { 17, 15, 299, 1, 15, 32, 11344 }, // U+041C + { 13, 15, 245, 1, 15, 25, 11376 }, // U+041D + { 15, 15, 263, 1, 15, 29, 11401 }, // U+041E + { 13, 15, 243, 1, 15, 25, 11430 }, // U+041F + { 12, 15, 215, 1, 15, 23, 11455 }, // U+0420 + { 13, 15, 216, 1, 15, 25, 11478 }, // U+0421 + { 13, 15, 205, 0, 15, 25, 11503 }, // U+0422 + { 14, 15, 217, 0, 15, 27, 11528 }, // U+0423 + { 18, 16, 290, 0, 16, 36, 11555 }, // U+0424 + { 14, 15, 225, 0, 15, 27, 11591 }, // U+0425 + { 16, 19, 263, 1, 15, 38, 11618 }, // U+0426 + { 13, 15, 227, 0, 15, 25, 11656 }, // U+0427 + { 19, 15, 340, 1, 15, 36, 11681 }, // U+0428 + { 22, 19, 360, 1, 15, 53, 11717 }, // U+0429 + { 16, 15, 258, 0, 15, 30, 11770 }, // U+042A + { 17, 15, 309, 1, 15, 32, 11800 }, // U+042B + { 12, 15, 220, 1, 15, 23, 11832 }, // U+042C + { 14, 15, 227, 0, 15, 27, 11855 }, // U+042D + { 21, 15, 360, 1, 15, 40, 11882 }, // U+042E + { 13, 15, 230, 0, 15, 25, 11922 }, // U+042F + { 11, 11, 184, 0, 11, 16, 11947 }, // U+0430 + { 12, 16, 200, 0, 16, 24, 11963 }, // U+0431 + { 11, 11, 199, 1, 11, 16, 11987 }, // U+0432 + { 9, 11, 151, 1, 11, 13, 12003 }, // U+0433 + { 14, 14, 226, 0, 11, 25, 12016 }, // U+0434 + { 12, 11, 195, 0, 11, 17, 12041 }, // U+0435 + { 18, 11, 283, 0, 11, 25, 12058 }, // U+0436 + { 10, 11, 165, 0, 11, 14, 12083 }, // U+0437 + { 11, 11, 206, 1, 11, 16, 12097 }, // U+0438 + { 11, 17, 206, 1, 17, 24, 12113 }, // U+0439 + { 12, 11, 195, 1, 11, 17, 12137 }, // U+043A + { 12, 11, 209, 0, 11, 17, 12154 }, // U+043B + { 14, 11, 254, 1, 11, 20, 12171 }, // U+043C + { 10, 11, 198, 1, 11, 14, 12191 }, // U+043D + { 12, 11, 202, 0, 11, 17, 12205 }, // U+043E + { 10, 11, 198, 1, 11, 14, 12222 }, // U+043F + { 11, 15, 201, 1, 11, 21, 12236 }, // U+0440 + { 10, 11, 167, 0, 11, 14, 12257 }, // U+0441 + { 11, 11, 175, 0, 11, 16, 12271 }, // U+0442 + { 12, 15, 182, 0, 11, 23, 12287 }, // U+0443 + { 16, 20, 265, 0, 16, 40, 12310 }, // U+0444 + { 12, 11, 185, 0, 11, 17, 12350 }, // U+0445 + { 12, 14, 211, 1, 11, 21, 12367 }, // U+0446 + { 11, 11, 189, 0, 11, 16, 12388 }, // U+0447 + { 16, 11, 287, 1, 11, 22, 12404 }, // U+0448 + { 18, 14, 300, 1, 11, 32, 12426 }, // U+0449 + { 13, 11, 213, 0, 11, 18, 12458 }, // U+044A + { 15, 11, 275, 1, 11, 21, 12476 }, // U+044B + { 11, 11, 188, 1, 11, 16, 12497 }, // U+044C + { 11, 11, 174, 0, 11, 16, 12513 }, // U+044D + { 17, 11, 291, 1, 11, 24, 12529 }, // U+044E + { 11, 11, 195, 0, 11, 16, 12553 }, // U+044F + { 12, 17, 195, 0, 17, 26, 12569 }, // U+0450 + { 12, 16, 195, 0, 16, 24, 12595 }, // U+0451 + { 12, 20, 200, 0, 16, 30, 12619 }, // U+0452 + { 9, 17, 151, 1, 17, 20, 12649 }, // U+0453 + { 11, 11, 174, 0, 11, 16, 12669 }, // U+0454 + { 10, 11, 162, 0, 11, 14, 12685 }, // U+0455 + { 4, 16, 96, 1, 16, 8, 12699 }, // U+0456 + { 9, 16, 96, -2, 16, 18, 12707 }, // U+0457 + { 7, 20, 96, -2, 16, 18, 12725 }, // U+0458 + { 19, 11, 301, 0, 11, 27, 12743 }, // U+0459 + { 17, 11, 289, 1, 11, 24, 12770 }, // U+045A + { 12, 16, 200, 0, 16, 24, 12794 }, // U+045B + { 12, 17, 195, 1, 17, 26, 12818 }, // U+045C + { 11, 17, 206, 1, 17, 24, 12844 }, // U+045D + { 12, 21, 182, 0, 17, 32, 12868 }, // U+045E + { 10, 14, 198, 1, 11, 18, 12900 }, // U+045F + { 15, 16, 249, 0, 16, 30, 12918 }, // U+0462 + { 13, 16, 212, 0, 16, 26, 12948 }, // U+0463 + { 15, 15, 263, 1, 15, 29, 12974 }, // U+0472 + { 12, 11, 202, 0, 11, 17, 13003 }, // U+0473 + { 18, 15, 264, 0, 15, 34, 13020 }, // U+0474 + { 13, 11, 199, 0, 11, 18, 13054 }, // U+0475 + { 16, 23, 276, 1, 19, 46, 13072 }, // U+048A + { 13, 19, 210, 1, 16, 31, 13118 }, // U+048B + { 13, 15, 220, 0, 15, 25, 13149 }, // U+048C + { 12, 11, 189, 0, 11, 17, 13174 }, // U+048D + { 12, 15, 218, 1, 15, 23, 13191 }, // U+048E + { 11, 15, 205, 1, 11, 21, 13214 }, // U+048F + { 11, 18, 191, 1, 18, 25, 13235 }, // U+0490 + { 9, 14, 154, 1, 14, 16, 13260 }, // U+0491 + { 12, 15, 211, 1, 15, 23, 13276 }, // U+0492 + { 10, 11, 175, 1, 11, 14, 13299 }, // U+0493 + { 13, 19, 225, 1, 15, 31, 13313 }, // U+0494 + { 11, 15, 190, 1, 11, 21, 13344 }, // U+0495 + { 22, 19, 341, 0, 15, 53, 13365 }, // U+0496 + { 18, 14, 291, 0, 11, 32, 13418 }, // U+0497 + { 12, 20, 203, 0, 15, 30, 13450 }, // U+0498 + { 10, 16, 165, 0, 11, 20, 13480 }, // U+0499 + { 15, 19, 246, 1, 15, 36, 13500 }, // U+049A + { 12, 14, 202, 1, 11, 21, 13536 }, // U+049B + { 16, 15, 261, 1, 15, 30, 13557 }, // U+049C + { 14, 11, 227, 1, 11, 20, 13587 }, // U+049D + { 15, 16, 236, 0, 16, 30, 13607 }, // U+049E + { 13, 12, 202, 0, 12, 20, 13637 }, // U+049F + { 17, 15, 266, 0, 15, 32, 13657 }, // U+04A0 + { 14, 11, 219, 0, 11, 20, 13689 }, // U+04A1 + { 16, 19, 269, 1, 15, 38, 13709 }, // U+04A2 + { 12, 14, 212, 1, 11, 21, 13747 }, // U+04A3 + { 17, 15, 279, 1, 15, 32, 13768 }, // U+04A4 + { 13, 11, 218, 1, 11, 18, 13800 }, // U+04A5 + { 22, 19, 370, 1, 15, 53, 13818 }, // U+04A6 + { 17, 15, 291, 1, 11, 32, 13871 }, // U+04A7 + { 16, 19, 267, 1, 15, 38, 13903 }, // U+04A8 + { 13, 14, 211, 0, 11, 23, 13941 }, // U+04A9 + { 13, 20, 216, 1, 15, 33, 13964 }, // U+04AA + { 10, 15, 167, 0, 11, 19, 13997 }, // U+04AB + { 13, 19, 205, 0, 15, 31, 14016 }, // U+04AC + { 11, 14, 168, 0, 11, 20, 14047 }, // U+04AD + { 14, 15, 220, 0, 15, 27, 14067 }, // U+04AE + { 12, 15, 183, 0, 11, 23, 14094 }, // U+04AF + { 14, 15, 220, 0, 15, 27, 14117 }, // U+04B0 + { 12, 15, 183, 0, 11, 23, 14144 }, // U+04B1 + { 15, 19, 239, 0, 15, 36, 14167 }, // U+04B2 + { 12, 14, 196, 0, 11, 21, 14203 }, // U+04B3 + { 20, 19, 313, 0, 15, 48, 14224 }, // U+04B4 + { 15, 14, 232, 0, 11, 27, 14272 }, // U+04B5 + { 14, 19, 241, 1, 15, 34, 14299 }, // U+04B6 + { 13, 14, 196, 0, 11, 23, 14333 }, // U+04B7 + { 12, 15, 227, 1, 15, 23, 14356 }, // U+04B8 + { 11, 11, 187, 0, 11, 16, 14379 }, // U+04B9 + { 13, 15, 233, 1, 15, 25, 14395 }, // U+04BA + { 10, 16, 196, 1, 16, 20, 14420 }, // U+04BB + { 18, 15, 293, 0, 15, 34, 14440 }, // U+04BC + { 14, 11, 236, 0, 11, 20, 14474 }, // U+04BD + { 18, 19, 293, 0, 15, 43, 14494 }, // U+04BE + { 14, 14, 236, 0, 11, 25, 14537 }, // U+04BF + { 4, 15, 105, 1, 15, 8, 14562 }, // U+04C0 + { 21, 20, 328, 0, 20, 53, 14570 }, // U+04C1 + { 18, 17, 283, 0, 17, 39, 14623 }, // U+04C2 + { 13, 19, 234, 1, 15, 31, 14662 }, // U+04C3 + { 11, 15, 191, 1, 11, 21, 14693 }, // U+04C4 + { 18, 19, 277, 0, 15, 43, 14714 }, // U+04C5 + { 14, 14, 225, 0, 11, 25, 14757 }, // U+04C6 + { 13, 19, 245, 1, 15, 31, 14782 }, // U+04C7 + { 11, 15, 200, 1, 11, 21, 14813 }, // U+04C8 + { 16, 19, 262, 1, 15, 38, 14834 }, // U+04C9 + { 12, 14, 209, 1, 11, 21, 14872 }, // U+04CA + { 13, 19, 227, 0, 15, 31, 14893 }, // U+04CB + { 11, 14, 189, 0, 11, 20, 14924 }, // U+04CC + { 19, 19, 317, 1, 15, 46, 14944 }, // U+04CD + { 16, 14, 265, 1, 11, 28, 14990 }, // U+04CE + { 4, 15, 96, 1, 15, 8, 15018 }, // U+04CF + { 15, 20, 240, 0, 20, 38, 15026 }, // U+04D0 + { 11, 17, 184, 0, 17, 24, 15064 }, // U+04D1 + { 15, 19, 240, 0, 19, 36, 15088 }, // U+04D2 + { 11, 16, 184, 0, 16, 22, 15124 }, // U+04D3 + { 21, 15, 331, 0, 15, 40, 15146 }, // U+04D4 + { 18, 11, 291, 0, 11, 25, 15186 }, // U+04D5 + { 11, 20, 202, 1, 20, 28, 15211 }, // U+04D6 + { 12, 17, 195, 0, 17, 26, 15239 }, // U+04D7 + { 14, 15, 243, 1, 15, 27, 15265 }, // U+04D8 + { 12, 11, 195, 0, 11, 17, 15292 }, // U+04D9 + { 14, 19, 243, 1, 19, 34, 15309 }, // U+04DA + { 12, 16, 195, 0, 16, 24, 15343 }, // U+04DB + { 21, 19, 328, 0, 19, 50, 15367 }, // U+04DC + { 18, 16, 283, 0, 16, 36, 15417 }, // U+04DD + { 12, 20, 203, 0, 20, 30, 15453 }, // U+04DE + { 10, 16, 165, 0, 16, 20, 15483 }, // U+04DF + { 12, 15, 205, 0, 15, 23, 15503 }, // U+04E0 + { 10, 15, 172, 0, 11, 19, 15526 }, // U+04E1 + { 14, 18, 252, 1, 18, 32, 15545 }, // U+04E2 + { 11, 15, 206, 1, 15, 21, 15577 }, // U+04E3 + { 14, 19, 252, 1, 19, 34, 15598 }, // U+04E4 + { 11, 16, 206, 1, 16, 22, 15632 }, // U+04E5 + { 15, 19, 263, 1, 19, 36, 15654 }, // U+04E6 + { 12, 16, 202, 0, 16, 24, 15690 }, // U+04E7 + { 15, 15, 263, 1, 15, 29, 15714 }, // U+04E8 + { 12, 11, 202, 0, 11, 17, 15743 }, // U+04E9 + { 15, 19, 263, 1, 19, 36, 15760 }, // U+04EA + { 12, 16, 202, 0, 16, 24, 15796 }, // U+04EB + { 14, 19, 227, 0, 19, 34, 15820 }, // U+04EC + { 11, 16, 174, 0, 16, 22, 15854 }, // U+04ED + { 14, 18, 217, 0, 18, 32, 15876 }, // U+04EE + { 12, 19, 182, 0, 15, 29, 15908 }, // U+04EF + { 14, 19, 217, 0, 19, 34, 15937 }, // U+04F0 + { 12, 20, 182, 0, 16, 30, 15971 }, // U+04F1 + { 14, 21, 217, 0, 21, 37, 16001 }, // U+04F2 + { 12, 21, 182, 0, 17, 32, 16038 }, // U+04F3 + { 13, 19, 227, 0, 19, 31, 16070 }, // U+04F4 + { 11, 16, 189, 0, 16, 22, 16101 }, // U+04F5 + { 11, 19, 198, 1, 15, 27, 16123 }, // U+04F6 + { 9, 14, 151, 1, 11, 16, 16150 }, // U+04F7 + { 17, 19, 309, 1, 19, 41, 16166 }, // U+04F8 + { 15, 16, 275, 1, 16, 30, 16207 }, // U+04F9 + { 14, 13, 225, 0, 13, 23, 16237 }, // U+05D0 + { 12, 13, 198, 0, 13, 20, 16260 }, // U+05D1 + { 9, 14, 137, 0, 13, 16, 16280 }, // U+05D2 + { 12, 13, 190, 0, 13, 20, 16296 }, // U+05D3 + { 12, 13, 219, 1, 13, 20, 16316 }, // U+05D4 + { 6, 13, 113, 0, 13, 10, 16336 }, // U+05D5 + { 8, 13, 124, 0, 13, 13, 16346 }, // U+05D6 + { 14, 13, 229, 0, 13, 23, 16359 }, // U+05D7 + { 13, 13, 220, 0, 13, 22, 16382 }, // U+05D8 + { 6, 8, 111, 0, 13, 6, 16404 }, // U+05D9 + { 11, 17, 190, 0, 13, 24, 16410 }, // U+05DA + { 11, 13, 176, 0, 13, 18, 16434 }, // U+05DB + { 11, 17, 185, 0, 17, 24, 16452 }, // U+05DC + { 14, 13, 234, 0, 13, 23, 16476 }, // U+05DD + { 15, 13, 234, 0, 13, 25, 16499 }, // U+05DE + { 6, 17, 118, 0, 13, 13, 16524 }, // U+05DF + { 8, 13, 135, 0, 13, 13, 16537 }, // U+05E0 + { 14, 13, 227, 0, 13, 23, 16550 }, // U+05E1 + { 13, 15, 210, 0, 14, 25, 16573 }, // U+05E2 + { 13, 17, 218, 0, 13, 28, 16598 }, // U+05E3 + { 13, 13, 209, 0, 13, 22, 16626 }, // U+05E4 + { 12, 17, 196, 0, 13, 26, 16648 }, // U+05E5 + { 12, 13, 197, 0, 13, 20, 16674 }, // U+05E6 + { 14, 17, 218, 0, 13, 30, 16694 }, // U+05E7 + { 10, 13, 181, 0, 13, 17, 16724 }, // U+05E8 + { 15, 13, 262, 1, 13, 25, 16741 }, // U+05E9 + { 14, 13, 241, 0, 13, 23, 16766 }, // U+05EA + { 4, 7, 108, 1, 6, 4, 16789 }, // U+060C + { 6, 16, 113, 0, 15, 12, 16793 }, // U+061B + { 11, 17, 171, 0, 16, 24, 16805 }, // U+061F + { 10, 12, 157, 0, 10, 15, 16829 }, // U+0621 + { 8, 4, 96, 0, 3, 4, 16844 }, // U+0640 + { 6, 6, 191, 3, 9, 5, 16848 }, // U+0660 + { 6, 16, 191, 3, 15, 12, 16853 }, // U+0661 + { 10, 16, 191, 1, 15, 20, 16865 }, // U+0662 + { 12, 16, 191, 0, 15, 24, 16885 }, // U+0663 + { 10, 16, 191, 1, 15, 20, 16909 }, // U+0664 + { 10, 12, 191, 1, 12, 15, 16929 }, // U+0665 + { 12, 16, 191, 0, 15, 24, 16944 }, // U+0666 + { 12, 16, 191, 0, 15, 24, 16968 }, // U+0667 + { 12, 16, 191, 0, 15, 24, 16992 }, // U+0668 + { 10, 15, 191, 1, 15, 19, 17016 }, // U+0669 + { 15, 13, 247, 0, 8, 25, 17035 }, // U+06BA + { 7, 2, 108, 0, 2, 2, 17060 }, // U+06D4 + { 6, 6, 191, 3, 9, 5, 17062 }, // U+06F0 + { 6, 16, 191, 3, 15, 12, 17067 }, // U+06F1 + { 10, 16, 191, 1, 15, 20, 17079 }, // U+06F2 + { 12, 16, 191, 0, 15, 24, 17099 }, // U+06F3 + { 12, 16, 191, 0, 15, 24, 17123 }, // U+06F4 + { 12, 15, 191, 0, 15, 23, 17147 }, // U+06F5 + { 10, 16, 191, 1, 15, 20, 17170 }, // U+06F6 + { 12, 16, 191, 0, 15, 24, 17190 }, // U+06F7 + { 12, 16, 191, 0, 15, 24, 17214 }, // U+06F8 + { 10, 15, 191, 1, 15, 19, 17238 }, // U+06F9 + { 15, 20, 240, 0, 15, 38, 17257 }, // U+1EA0 + { 11, 17, 184, 0, 12, 24, 17295 }, // U+1EA1 + { 15, 20, 240, 0, 20, 38, 17319 }, // U+1EA2 + { 11, 18, 184, 0, 17, 25, 17357 }, // U+1EA3 + { 15, 23, 240, 0, 23, 44, 17382 }, // U+1EA4 + { 13, 21, 184, 0, 20, 35, 17426 }, // U+1EA5 + { 15, 23, 240, 0, 23, 44, 17461 }, // U+1EA6 + { 11, 21, 184, 0, 20, 29, 17505 }, // U+1EA7 + { 15, 24, 240, 0, 24, 45, 17534 }, // U+1EA8 + { 12, 21, 184, 0, 20, 32, 17579 }, // U+1EA9 + { 15, 24, 240, 0, 24, 45, 17611 }, // U+1EAA + { 11, 21, 184, 0, 20, 29, 17656 }, // U+1EAB + { 15, 25, 240, 0, 20, 47, 17685 }, // U+1EAC + { 11, 22, 184, 0, 17, 31, 17732 }, // U+1EAD + { 15, 24, 240, 0, 24, 45, 17763 }, // U+1EAE + { 11, 22, 184, 0, 21, 31, 17808 }, // U+1EAF + { 15, 24, 240, 0, 24, 45, 17839 }, // U+1EB0 + { 11, 22, 184, 0, 21, 31, 17884 }, // U+1EB1 + { 15, 25, 240, 0, 25, 47, 17915 }, // U+1EB2 + { 11, 22, 184, 0, 21, 31, 17962 }, // U+1EB3 + { 15, 24, 240, 0, 24, 45, 17993 }, // U+1EB4 + { 11, 21, 184, 0, 20, 29, 18038 }, // U+1EB5 + { 15, 25, 240, 0, 20, 47, 18067 }, // U+1EB6 + { 11, 21, 184, 0, 16, 29, 18114 }, // U+1EB7 + { 11, 20, 202, 1, 15, 28, 18143 }, // U+1EB8 + { 12, 17, 195, 0, 12, 26, 18171 }, // U+1EB9 + { 11, 20, 202, 1, 20, 28, 18197 }, // U+1EBA + { 12, 18, 195, 0, 17, 27, 18225 }, // U+1EBB + { 11, 20, 202, 1, 20, 28, 18252 }, // U+1EBC + { 12, 17, 195, 0, 16, 26, 18280 }, // U+1EBD + { 13, 23, 202, 1, 23, 38, 18306 }, // U+1EBE + { 13, 20, 195, 0, 19, 33, 18344 }, // U+1EBF + { 11, 23, 202, 1, 23, 32, 18377 }, // U+1EC0 + { 12, 21, 195, 0, 20, 32, 18409 }, // U+1EC1 + { 12, 23, 202, 1, 23, 35, 18441 }, // U+1EC2 + { 13, 21, 195, 0, 20, 35, 18476 }, // U+1EC3 + { 11, 24, 202, 1, 24, 33, 18511 }, // U+1EC4 + { 12, 21, 195, 0, 20, 32, 18544 }, // U+1EC5 + { 11, 25, 202, 1, 20, 35, 18576 }, // U+1EC6 + { 12, 22, 195, 0, 17, 33, 18611 }, // U+1EC7 + { 6, 20, 105, 0, 20, 15, 18644 }, // U+1EC8 + { 6, 17, 96, 0, 17, 13, 18659 }, // U+1EC9 + { 4, 20, 105, 1, 15, 10, 18672 }, // U+1ECA + { 4, 21, 96, 1, 16, 11, 18682 }, // U+1ECB + { 15, 20, 263, 1, 15, 38, 18693 }, // U+1ECC + { 12, 17, 202, 0, 12, 26, 18731 }, // U+1ECD + { 15, 21, 263, 1, 20, 40, 18757 }, // U+1ECE + { 12, 18, 202, 0, 17, 27, 18797 }, // U+1ECF + { 15, 24, 263, 1, 23, 45, 18824 }, // U+1ED0 + { 13, 21, 202, 0, 20, 35, 18869 }, // U+1ED1 + { 15, 24, 263, 1, 23, 45, 18904 }, // U+1ED2 + { 12, 21, 202, 0, 20, 32, 18949 }, // U+1ED3 + { 15, 25, 263, 1, 24, 47, 18981 }, // U+1ED4 + { 13, 21, 202, 0, 20, 35, 19028 }, // U+1ED5 + { 15, 25, 263, 1, 24, 47, 19063 }, // U+1ED6 + { 12, 21, 202, 0, 20, 32, 19110 }, // U+1ED7 + { 15, 25, 263, 1, 20, 47, 19142 }, // U+1ED8 + { 12, 22, 202, 0, 17, 33, 19189 }, // U+1ED9 + { 15, 21, 263, 1, 20, 40, 19222 }, // U+1EDA + { 13, 18, 202, 0, 17, 30, 19262 }, // U+1EDB + { 15, 21, 263, 1, 20, 40, 19292 }, // U+1EDC + { 13, 18, 202, 0, 17, 30, 19332 }, // U+1EDD + { 15, 21, 263, 1, 20, 40, 19362 }, // U+1EDE + { 13, 18, 202, 0, 17, 30, 19402 }, // U+1EDF + { 15, 21, 263, 1, 20, 40, 19432 }, // U+1EE0 + { 13, 17, 202, 0, 16, 28, 19472 }, // U+1EE1 + { 15, 22, 263, 1, 17, 42, 19500 }, // U+1EE2 + { 13, 19, 202, 0, 14, 31, 19542 }, // U+1EE3 + { 13, 20, 236, 1, 15, 33, 19573 }, // U+1EE4 + { 10, 16, 196, 1, 11, 20, 19606 }, // U+1EE5 + { 13, 21, 236, 1, 20, 35, 19626 }, // U+1EE6 + { 10, 18, 196, 1, 17, 23, 19661 }, // U+1EE7 + { 15, 21, 249, 1, 20, 40, 19684 }, // U+1EE8 + { 13, 18, 209, 1, 17, 30, 19724 }, // U+1EE9 + { 15, 21, 249, 1, 20, 40, 19754 }, // U+1EEA + { 13, 18, 209, 1, 17, 30, 19794 }, // U+1EEB + { 15, 21, 249, 1, 20, 40, 19824 }, // U+1EEC + { 13, 18, 209, 1, 17, 30, 19864 }, // U+1EED + { 15, 21, 249, 1, 20, 40, 19894 }, // U+1EEE + { 13, 17, 209, 1, 16, 28, 19934 }, // U+1EEF + { 15, 22, 249, 1, 17, 42, 19962 }, // U+1EF0 + { 13, 19, 209, 1, 14, 31, 20004 }, // U+1EF1 + { 14, 21, 220, 0, 21, 37, 20035 }, // U+1EF2 + { 12, 21, 182, 0, 17, 32, 20072 }, // U+1EF3 + { 14, 20, 220, 0, 15, 35, 20104 }, // U+1EF4 + { 12, 15, 182, 0, 11, 23, 20139 }, // U+1EF5 + { 14, 20, 220, 0, 20, 35, 20162 }, // U+1EF6 + { 12, 21, 182, 0, 17, 32, 20197 }, // U+1EF7 + { 14, 20, 220, 0, 20, 35, 20229 }, // U+1EF8 + { 12, 20, 182, 0, 16, 30, 20264 }, // U+1EF9 + { 0, 0, 43, 0, 0, 0, 20294 }, // U+2009 + { 0, 0, 0, 0, 0, 0, 20294 }, // U+200B + { 2, 16, 0, -1, 15, 4, 20294 }, // U+200C + { 6, 16, 0, -3, 15, 12, 20298 }, // U+200D + { 6, 16, 0, -1, 15, 12, 20310 }, // U+200E + { 6, 16, 0, -5, 15, 12, 20322 }, // U+200F + { 7, 3, 106, 0, 8, 3, 20334 }, // U+2010 + { 7, 3, 107, 0, 7, 3, 20337 }, // U+2011 + { 11, 3, 167, 0, 8, 5, 20340 }, // U+2013 + { 21, 3, 333, 0, 8, 8, 20345 }, // U+2014 + { 21, 3, 333, 0, 8, 8, 20353 }, // U+2015 + { 5, 6, 81, 0, 16, 4, 20361 }, // U+2018 + { 5, 6, 81, 0, 16, 4, 20365 }, // U+2019 + { 5, 6, 81, 0, 3, 4, 20369 }, // U+201A + { 10, 6, 151, 0, 16, 8, 20373 }, // U+201C + { 9, 6, 151, 0, 16, 7, 20381 }, // U+201D + { 9, 6, 151, 0, 3, 7, 20388 }, // U+201E + { 10, 18, 165, 0, 15, 23, 20395 }, // U+2020 + { 10, 18, 165, 0, 15, 23, 20418 }, // U+2021 + { 7, 6, 121, 0, 10, 6, 20441 }, // U+2022 + { 19, 4, 333, 1, 4, 10, 20447 }, // U+2026 + { 0, 0, 43, 0, 0, 0, 20457 }, // U+202F + { 27, 15, 440, 0, 15, 51, 20457 }, // U+2030 + { 7, 11, 109, 0, 11, 10, 20508 }, // U+2039 + { 7, 11, 109, 0, 11, 10, 20518 }, // U+203A + { 11, 15, 51, -4, 15, 21, 20528 }, // U+2044 + { 6, 16, 113, 0, 15, 12, 20549 }, // U+204F + { 8, 9, 121, 0, 15, 9, 20561 }, // U+2070 + { 8, 8, 121, 0, 15, 8, 20570 }, // U+2074 + { 7, 9, 121, 0, 15, 8, 20578 }, // U+2075 + { 8, 9, 121, 0, 15, 9, 20586 }, // U+2076 + { 8, 8, 121, 0, 15, 8, 20595 }, // U+2077 + { 8, 9, 121, 0, 15, 9, 20603 }, // U+2078 + { 8, 9, 121, 0, 15, 9, 20612 }, // U+2079 + { 8, 9, 121, 0, 9, 9, 20621 }, // U+2080 + { 6, 9, 121, 0, 9, 7, 20630 }, // U+2081 + { 7, 9, 121, 0, 9, 8, 20637 }, // U+2082 + { 7, 9, 121, 0, 9, 8, 20645 }, // U+2083 + { 8, 8, 121, 0, 9, 8, 20653 }, // U+2084 + { 7, 9, 121, 0, 9, 8, 20661 }, // U+2085 + { 8, 9, 121, 0, 9, 9, 20669 }, // U+2086 + { 8, 8, 121, 0, 9, 8, 20678 }, // U+2087 + { 8, 9, 121, 0, 9, 9, 20686 }, // U+2088 + { 8, 9, 121, 0, 9, 9, 20695 }, // U+2089 + { 16, 13, 288, 1, 13, 26, 20704 }, // U+20AA + { 12, 15, 189, 0, 15, 23, 20730 }, // U+20AC + { 12, 15, 189, 0, 15, 23, 20753 }, // U+20AE + { 12, 15, 189, 0, 15, 23, 20776 }, // U+20B4 + { 13, 15, 189, 0, 15, 25, 20799 }, // U+20B9 + { 12, 15, 204, 0, 15, 23, 20824 }, // U+2202 + { 15, 15, 231, 0, 15, 29, 20847 }, // U+2206 + { 13, 17, 243, 1, 15, 28, 20876 }, // U+220F + { 11, 17, 181, 0, 15, 24, 20904 }, // U+2211 + { 10, 3, 189, 1, 8, 4, 20928 }, // U+2212 + { 11, 15, 51, -4, 15, 21, 20932 }, // U+2215 + { 5, 4, 82, 0, 9, 3, 20953 }, // U+2219 + { 14, 15, 201, 0, 15, 27, 20956 }, // U+221A + { 13, 7, 212, 0, 10, 12, 20983 }, // U+221E + { 9, 21, 134, 0, 16, 24, 20995 }, // U+222B + { 12, 11, 189, 0, 12, 17, 21019 }, // U+2248 + { 10, 14, 189, 1, 14, 18, 21036 }, // U+2260 + { 10, 13, 189, 1, 13, 17, 21054 }, // U+2264 + { 10, 13, 189, 1, 13, 17, 21071 }, // U+2265 + { 17, 16, 280, 1, 16, 34, 21088 }, // U+FB00 + { 13, 16, 236, 1, 16, 26, 21122 }, // U+FB01 + { 15, 16, 245, 1, 16, 30, 21148 }, // U+FB02 + { 22, 16, 376, 1, 16, 44, 21178 }, // U+FB03 + { 23, 16, 385, 1, 16, 46, 21222 }, // U+FB04 + { 21, 18, 341, 0, 10, 48, 21268 }, // U+FB56 + { 26, 17, 381, 0, 9, 56, 21316 }, // U+FB57 + { 7, 18, 120, 0, 10, 16, 21372 }, // U+FB58 + { 11, 16, 136, 0, 8, 22, 21388 }, // U+FB59 + { 21, 17, 341, 0, 16, 45, 21410 }, // U+FB66 + { 26, 17, 381, 0, 16, 56, 21455 }, // U+FB67 + { 6, 19, 106, 0, 18, 15, 21511 }, // U+FB68 + { 11, 17, 136, 0, 16, 24, 21526 }, // U+FB69 + { 15, 20, 229, 0, 11, 38, 21550 }, // U+FB7A + { 18, 20, 253, 0, 11, 45, 21588 }, // U+FB7B + { 13, 18, 210, 0, 10, 30, 21633 }, // U+FB7C + { 16, 18, 218, 0, 10, 36, 21663 }, // U+FB7D + { 10, 20, 172, 0, 19, 25, 21699 }, // U+FB88 + { 14, 20, 190, 0, 19, 35, 21724 }, // U+FB89 + { 9, 21, 136, -1, 16, 24, 21759 }, // U+FB8A + { 13, 21, 150, -1, 16, 35, 21783 }, // U+FB8B + { 9, 22, 136, -1, 17, 25, 21818 }, // U+FB8C + { 13, 22, 150, -1, 17, 36, 21843 }, // U+FB8D + { 20, 16, 303, 0, 15, 40, 21879 }, // U+FB8E + { 22, 16, 317, 0, 15, 44, 21919 }, // U+FB8F + { 10, 16, 151, 0, 15, 20, 21963 }, // U+FB90 + { 13, 16, 169, 0, 15, 26, 21983 }, // U+FB91 + { 20, 20, 303, 0, 19, 50, 22009 }, // U+FB92 + { 22, 20, 317, 0, 19, 55, 22059 }, // U+FB93 + { 11, 20, 151, -1, 19, 28, 22114 }, // U+FB94 + { 14, 20, 169, -1, 19, 35, 22142 }, // U+FB95 + { 15, 13, 247, 0, 8, 25, 22177 }, // U+FB9E + { 19, 13, 268, 0, 8, 31, 22202 }, // U+FB9F + { 10, 13, 157, 0, 12, 17, 22233 }, // U+FBA6 + { 14, 10, 195, 0, 9, 18, 22250 }, // U+FBA7 + { 6, 14, 106, 0, 10, 11, 22268 }, // U+FBA8 + { 13, 11, 172, 0, 5, 18, 22279 }, // U+FBA9 + { 16, 13, 257, 0, 12, 26, 22297 }, // U+FBAA + { 16, 15, 228, 0, 10, 30, 22323 }, // U+FBAB + { 13, 13, 214, 0, 12, 22, 22353 }, // U+FBAC + { 14, 15, 190, 0, 10, 27, 22375 }, // U+FBAD + { 20, 12, 314, 0, 11, 30, 22402 }, // U+FBAE + { 14, 10, 187, 0, 3, 18, 22432 }, // U+FBAF + { 20, 18, 314, 0, 17, 45, 22450 }, // U+FBB0 + { 14, 16, 187, 0, 9, 28, 22495 }, // U+FBB1 + { 17, 15, 274, 0, 10, 32, 22523 }, // U+FBFC + { 19, 11, 267, 0, 6, 27, 22555 }, // U+FBFD + { 7, 15, 120, 0, 10, 14, 22582 }, // U+FBFE + { 11, 13, 136, 0, 8, 18, 22596 }, // U+FBFF + { 10, 12, 157, 0, 10, 15, 22614 }, // U+FE80 + { 9, 19, 90, -2, 19, 22, 22629 }, // U+FE81 + { 10, 21, 106, -1, 20, 27, 22651 }, // U+FE82 + { 5, 21, 90, 0, 21, 14, 22678 }, // U+FE83 + { 9, 23, 106, 0, 22, 26, 22692 }, // U+FE84 + { 10, 20, 166, 0, 15, 25, 22718 }, // U+FE85 + { 13, 21, 175, 0, 16, 35, 22743 }, // U+FE86 + { 5, 23, 91, 1, 16, 15, 22778 }, // U+FE87 + { 8, 23, 106, 1, 16, 23, 22793 }, // U+FE88 + { 17, 17, 274, 0, 12, 37, 22816 }, // U+FE89 + { 19, 17, 267, 0, 12, 41, 22853 }, // U+FE8A + { 6, 18, 106, 0, 17, 14, 22894 }, // U+FE8B + { 10, 16, 128, 0, 15, 20, 22908 }, // U+FE8C + { 4, 16, 91, 1, 16, 8, 22928 }, // U+FE8D + { 8, 17, 106, 1, 16, 17, 22936 }, // U+FE8E + { 21, 15, 341, 0, 10, 40, 22953 }, // U+FE8F + { 26, 14, 381, 0, 9, 46, 22993 }, // U+FE90 + { 6, 15, 106, 0, 10, 12, 23039 }, // U+FE91 + { 10, 13, 128, 0, 8, 17, 23051 }, // U+FE92 + { 10, 18, 157, 0, 17, 23, 23068 }, // U+FE93 + { 14, 19, 185, 0, 18, 34, 23091 }, // U+FE94 + { 21, 14, 341, 0, 13, 37, 23125 }, // U+FE95 + { 26, 14, 381, 0, 13, 46, 23162 }, // U+FE96 + { 8, 16, 106, -1, 15, 16, 23208 }, // U+FE97 + { 11, 14, 136, 0, 13, 20, 23224 }, // U+FE98 + { 21, 16, 341, 0, 15, 42, 23244 }, // U+FE99 + { 26, 16, 381, 0, 15, 52, 23286 }, // U+FE9A + { 6, 18, 106, 0, 17, 14, 23338 }, // U+FE9B + { 11, 16, 136, 0, 15, 22, 23352 }, // U+FE9C + { 14, 20, 229, 0, 11, 35, 23374 }, // U+FE9D + { 18, 20, 246, 0, 11, 45, 23409 }, // U+FE9E + { 13, 15, 210, 0, 10, 25, 23454 }, // U+FE9F + { 16, 15, 218, 0, 10, 30, 23479 }, // U+FEA0 + { 14, 20, 229, 0, 11, 35, 23509 }, // U+FEA1 + { 18, 20, 246, 0, 11, 45, 23544 }, // U+FEA2 + { 13, 11, 210, 0, 10, 18, 23589 }, // U+FEA3 + { 16, 11, 218, 0, 10, 22, 23607 }, // U+FEA4 + { 14, 25, 229, 0, 16, 44, 23629 }, // U+FEA5 + { 18, 25, 246, 0, 16, 57, 23673 }, // U+FEA6 + { 13, 16, 210, 0, 15, 26, 23730 }, // U+FEA7 + { 16, 16, 218, 0, 15, 32, 23756 }, // U+FEA8 + { 10, 12, 172, 0, 11, 15, 23788 }, // U+FEA9 + { 14, 12, 190, 0, 11, 21, 23803 }, // U+FEAA + { 10, 17, 172, 0, 16, 22, 23824 }, // U+FEAB + { 14, 17, 190, 0, 16, 30, 23846 }, // U+FEAC + { 9, 13, 136, -1, 8, 15, 23876 }, // U+FEAD + { 13, 13, 150, -1, 8, 22, 23891 }, // U+FEAE + { 9, 19, 136, -1, 14, 22, 23913 }, // U+FEAF + { 13, 19, 150, -1, 14, 31, 23935 }, // U+FEB0 + { 28, 15, 457, 0, 10, 53, 23966 }, // U+FEB1 + { 32, 14, 480, 0, 9, 56, 24019 }, // U+FEB2 + { 19, 11, 317, 0, 10, 27, 24075 }, // U+FEB3 + { 23, 10, 340, 0, 9, 29, 24102 }, // U+FEB4 + { 28, 21, 457, 0, 16, 74, 24131 }, // U+FEB5 + { 32, 21, 480, 0, 16, 84, 24205 }, // U+FEB6 + { 19, 17, 317, 0, 16, 41, 24289 }, // U+FEB7 + { 23, 17, 340, 0, 16, 49, 24330 }, // U+FEB8 + { 29, 15, 474, 0, 10, 55, 24379 }, // U+FEB9 + { 32, 15, 481, 0, 10, 60, 24434 }, // U+FEBA + { 20, 11, 325, 0, 10, 28, 24494 }, // U+FEBB + { 23, 11, 335, 0, 10, 32, 24522 }, // U+FEBC + { 29, 20, 474, 0, 15, 73, 24554 }, // U+FEBD + { 32, 20, 481, 0, 15, 80, 24627 }, // U+FEBE + { 20, 16, 325, 0, 15, 40, 24707 }, // U+FEBF + { 23, 16, 335, 0, 15, 46, 24747 }, // U+FEC0 + { 17, 17, 281, 0, 16, 37, 24793 }, // U+FEC1 + { 20, 17, 287, 0, 16, 43, 24830 }, // U+FEC2 + { 15, 17, 246, 0, 16, 32, 24873 }, // U+FEC3 + { 18, 17, 254, 0, 16, 39, 24905 }, // U+FEC4 + { 17, 17, 281, 0, 16, 37, 24944 }, // U+FEC5 + { 20, 17, 287, 0, 16, 43, 24981 }, // U+FEC6 + { 15, 17, 246, 0, 16, 32, 25024 }, // U+FEC7 + { 18, 17, 254, 0, 16, 39, 25056 }, // U+FEC8 + { 14, 21, 190, 0, 12, 37, 25095 }, // U+FEC9 + { 14, 19, 190, 0, 10, 34, 25132 }, // U+FECA + { 11, 12, 186, 0, 11, 17, 25166 }, // U+FECB + { 15, 11, 184, -1, 10, 21, 25183 }, // U+FECC + { 14, 26, 190, 0, 17, 46, 25204 }, // U+FECD + { 14, 24, 190, 0, 15, 42, 25250 }, // U+FECE + { 11, 17, 186, 0, 16, 24, 25292 }, // U+FECF + { 15, 16, 184, -1, 15, 30, 25316 }, // U+FED0 + { 21, 19, 341, 0, 18, 50, 25346 }, // U+FED1 + { 25, 17, 372, 0, 16, 54, 25396 }, // U+FED2 + { 10, 19, 168, 0, 18, 24, 25450 }, // U+FED3 + { 13, 17, 176, 0, 16, 28, 25474 }, // U+FED4 + { 17, 19, 277, 0, 15, 41, 25502 }, // U+FED5 + { 20, 20, 285, 0, 14, 50, 25543 }, // U+FED6 + { 10, 19, 168, 0, 18, 24, 25593 }, // U+FED7 + { 13, 17, 176, 0, 16, 28, 25617 }, // U+FED8 + { 19, 17, 310, 0, 16, 41, 25645 }, // U+FED9 + { 22, 17, 325, 0, 16, 47, 25686 }, // U+FEDA + { 10, 16, 151, 0, 15, 20, 25733 }, // U+FEDB + { 13, 16, 169, 0, 15, 26, 25753 }, // U+FEDC + { 15, 21, 247, 0, 16, 40, 25779 }, // U+FEDD + { 19, 21, 264, 0, 16, 50, 25819 }, // U+FEDE + { 6, 17, 99, 0, 16, 13, 25869 }, // U+FEDF + { 9, 17, 115, 0, 16, 20, 25882 }, // U+FEE0 + { 11, 19, 183, 0, 10, 27, 25902 }, // U+FEE1 + { 16, 18, 220, 0, 9, 36, 25929 }, // U+FEE2 + { 12, 10, 194, 0, 9, 15, 25965 }, // U+FEE3 + { 15, 10, 208, 0, 9, 19, 25980 }, // U+FEE4 + { 15, 17, 247, 0, 12, 32, 25999 }, // U+FEE5 + { 19, 17, 268, 0, 12, 41, 26031 }, // U+FEE6 + { 6, 16, 106, 0, 15, 12, 26072 }, // U+FEE7 + { 10, 14, 128, 0, 13, 18, 26084 }, // U+FEE8 + { 10, 13, 157, 0, 12, 17, 26102 }, // U+FEE9 + { 14, 14, 185, 0, 13, 25, 26119 }, // U+FEEA + { 13, 13, 214, 0, 12, 22, 26144 }, // U+FEEB + { 14, 15, 190, 0, 10, 27, 26166 }, // U+FEEC + { 10, 14, 166, 0, 9, 18, 26193 }, // U+FEED + { 13, 14, 175, 0, 9, 23, 26211 }, // U+FEEE + { 17, 15, 274, 0, 10, 32, 26234 }, // U+FEEF + { 19, 11, 267, 0, 6, 27, 26266 }, // U+FEF0 + { 17, 20, 274, 0, 10, 43, 26293 }, // U+FEF1 + { 19, 16, 267, 0, 6, 38, 26336 }, // U+FEF2 + { 7, 15, 120, 0, 10, 14, 26374 }, // U+FEF3 + { 11, 13, 136, 0, 8, 18, 26388 }, // U+FEF4 + { 15, 17, 211, -2, 17, 32, 26406 }, // U+FEF5 + { 16, 19, 227, 0, 18, 38, 26438 }, // U+FEF6 + { 13, 19, 211, 0, 19, 31, 26476 }, // U+FEF7 + { 16, 21, 227, 0, 20, 42, 26507 }, // U+FEF8 + { 13, 23, 211, 0, 16, 38, 26549 }, // U+FEF9 + { 16, 23, 227, 0, 16, 46, 26587 }, // U+FEFA + { 13, 16, 211, 0, 16, 26, 26633 }, // U+FEFB + { 16, 17, 227, 0, 16, 34, 26659 }, // U+FEFC }; static const EpdUnicodeInterval ubuntu_10_boldIntervals[] = { @@ -2149,52 +2721,70 @@ static const EpdUnicodeInterval ubuntu_10_boldIntervals[] = { { 0xD, 0xD, 0x3 }, { 0x1D, 0x1D, 0x4 }, { 0x20, 0x7E, 0x5 }, - { 0xA0, 0xFF, 0x64 }, - { 0x100, 0x17F, 0xC4 }, + { 0xA0, 0x17F, 0x64 }, { 0x1A0, 0x1A1, 0x144 }, { 0x1AF, 0x1B0, 0x146 }, { 0x1C4, 0x21F, 0x148 }, { 0x300, 0x304, 0x1A4 }, { 0x306, 0x308, 0x1A9 }, { 0x30A, 0x30C, 0x1AC }, - { 0x311, 0x311, 0x1AF }, - { 0x326, 0x328, 0x1B0 }, - { 0x34F, 0x34F, 0x1B3 }, - { 0x400, 0x45F, 0x1B4 }, - { 0x462, 0x463, 0x214 }, - { 0x472, 0x475, 0x216 }, - { 0x48A, 0x4F9, 0x21A }, - { 0x5D0, 0x5EA, 0x28A }, - { 0x1EA0, 0x1EF9, 0x2A5 }, - { 0x200C, 0x2010, 0x2FF }, - { 0x2013, 0x2015, 0x304 }, - { 0x2018, 0x201A, 0x307 }, - { 0x201C, 0x201E, 0x30A }, - { 0x2020, 0x2022, 0x30D }, - { 0x2026, 0x2026, 0x310 }, - { 0x2030, 0x2030, 0x311 }, - { 0x2039, 0x203A, 0x312 }, - { 0x2044, 0x2044, 0x314 }, - { 0x2070, 0x2070, 0x315 }, - { 0x2074, 0x2079, 0x316 }, - { 0x2080, 0x2089, 0x31C }, - { 0x20AA, 0x20AA, 0x326 }, - { 0x20AC, 0x20AC, 0x327 }, - { 0x20AE, 0x20AE, 0x328 }, - { 0x20B4, 0x20B4, 0x329 }, - { 0x20B9, 0x20B9, 0x32A }, - { 0x2202, 0x2202, 0x32B }, - { 0x2206, 0x2206, 0x32C }, - { 0x220F, 0x220F, 0x32D }, - { 0x2211, 0x2212, 0x32E }, - { 0x2215, 0x2215, 0x330 }, - { 0x2219, 0x221A, 0x331 }, - { 0x221E, 0x221E, 0x333 }, - { 0x222B, 0x222B, 0x334 }, - { 0x2248, 0x2248, 0x335 }, - { 0x2260, 0x2260, 0x336 }, - { 0x2264, 0x2265, 0x337 }, - { 0xFB00, 0xFB04, 0x339 }, + { 0x311, 0x312, 0x1AF }, + { 0x326, 0x328, 0x1B1 }, + { 0x34F, 0x34F, 0x1B4 }, + { 0x400, 0x45F, 0x1B5 }, + { 0x462, 0x463, 0x215 }, + { 0x472, 0x475, 0x217 }, + { 0x48A, 0x4F9, 0x21B }, + { 0x5D0, 0x5EA, 0x28B }, + { 0x60C, 0x60C, 0x2A6 }, + { 0x61B, 0x61B, 0x2A7 }, + { 0x61F, 0x61F, 0x2A8 }, + { 0x621, 0x621, 0x2A9 }, + { 0x640, 0x640, 0x2AA }, + { 0x660, 0x669, 0x2AB }, + { 0x6BA, 0x6BA, 0x2B5 }, + { 0x6D4, 0x6D4, 0x2B6 }, + { 0x6F0, 0x6F9, 0x2B7 }, + { 0x1EA0, 0x1EF9, 0x2C1 }, + { 0x2009, 0x2009, 0x31B }, + { 0x200B, 0x2011, 0x31C }, + { 0x2013, 0x2015, 0x323 }, + { 0x2018, 0x201A, 0x326 }, + { 0x201C, 0x201E, 0x329 }, + { 0x2020, 0x2022, 0x32C }, + { 0x2026, 0x2026, 0x32F }, + { 0x202F, 0x2030, 0x330 }, + { 0x2039, 0x203A, 0x332 }, + { 0x2044, 0x2044, 0x334 }, + { 0x204F, 0x204F, 0x335 }, + { 0x2070, 0x2070, 0x336 }, + { 0x2074, 0x2079, 0x337 }, + { 0x2080, 0x2089, 0x33D }, + { 0x20AA, 0x20AA, 0x347 }, + { 0x20AC, 0x20AC, 0x348 }, + { 0x20AE, 0x20AE, 0x349 }, + { 0x20B4, 0x20B4, 0x34A }, + { 0x20B9, 0x20B9, 0x34B }, + { 0x2202, 0x2202, 0x34C }, + { 0x2206, 0x2206, 0x34D }, + { 0x220F, 0x220F, 0x34E }, + { 0x2211, 0x2212, 0x34F }, + { 0x2215, 0x2215, 0x351 }, + { 0x2219, 0x221A, 0x352 }, + { 0x221E, 0x221E, 0x354 }, + { 0x222B, 0x222B, 0x355 }, + { 0x2248, 0x2248, 0x356 }, + { 0x2260, 0x2260, 0x357 }, + { 0x2264, 0x2265, 0x358 }, + { 0xFB00, 0xFB04, 0x35A }, + { 0xFB56, 0xFB59, 0x35F }, + { 0xFB66, 0xFB69, 0x363 }, + { 0xFB7A, 0xFB7D, 0x367 }, + { 0xFB88, 0xFB95, 0x36B }, + { 0xFB9E, 0xFB9F, 0x379 }, + { 0xFBA6, 0xFBB1, 0x37B }, + { 0xFBFC, 0xFBFF, 0x387 }, + { 0xFE80, 0xFEFC, 0x38B }, }; static const EpdKernClassEntry ubuntu_10_boldKernLeftClasses[] = { @@ -2770,6 +3360,10 @@ static const EpdKernClassEntry ubuntu_10_boldKernLeftClasses[] = { { 0xFB02, 48 }, // U+FB02 { 0xFB03, 45 }, // U+FB03 { 0xFB04, 48 }, // U+FB04 + { 0xFB8C, 173 }, // U+FB8C + { 0xFEAD, 173 }, // U+FEAD + { 0xFEAE, 173 }, // U+FEAE + { 0xFEAF, 173 }, // U+FEAF }; static const EpdKernClassEntry ubuntu_10_boldKernRightClasses[] = { @@ -3329,181 +3923,203 @@ static const EpdKernClassEntry ubuntu_10_boldKernRightClasses[] = { { 0xFB02, 35 }, // U+FB02 { 0xFB03, 35 }, // U+FB03 { 0xFB04, 35 }, // U+FB04 + { 0xFB8E, 156 }, // U+FB8E + { 0xFBA6, 156 }, // U+FBA6 + { 0xFBAA, 156 }, // U+FBAA + { 0xFE8D, 157 }, // U+FE8D + { 0xFEA3, 156 }, // U+FEA3 + { 0xFEA9, 158 }, // U+FEA9 + { 0xFEB1, 158 }, // U+FEB1 + { 0xFEB3, 158 }, // U+FEB3 + { 0xFEB9, 158 }, // U+FEB9 + { 0xFEBB, 158 }, // U+FEBB + { 0xFEC1, 158 }, // U+FEC1 + { 0xFEC3, 158 }, // U+FEC3 + { 0xFEC9, 159 }, // U+FEC9 + { 0xFECB, 157 }, // U+FECB + { 0xFECD, 159 }, // U+FECD + { 0xFEDB, 156 }, // U+FEDB + { 0xFEDF, 157 }, // U+FEDF + { 0xFEE1, 156 }, // U+FEE1 + { 0xFEE3, 156 }, // U+FEE3 + { 0xFEE9, 156 }, // U+FEE9 + { 0xFEEB, 156 }, // U+FEEB }; static const int8_t ubuntu_10_boldKernMatrix[] = { - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -17, 0, 0, 0, -29, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, -32, -21, 0, -19, -19, 0, 0, 0, 0, -5, 0, 4, 0, 0, -5, 0, 0, 0, -14, -10, 0, 0, -15, -5, -10, 0, -11, 0, 0, -16, 0, 0, 0, 0, 0, 0, -6, 4, -8, -5, 0, 0, 0, 4, 0, 0, 0, -10, 0, 0, 0, 0, 0, -33, -5, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, -7, -7, 7, 0, -7, 0, -27, 0, -23, -13, 3, -33, 0, 0, 0, 0, -7, 0, -7, -7, 0, 0, 0, 0, 0, 0, 0, 0, -12, -10, 3, -12, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -10, 27, -7, 0, -3, 0, 0, 0, -10, 0, 0, -7, -7, 0, 0, -7, 0, 8, 0, 10, 9, 9, 11, 3, 0, 0, 0, -8, 0, -10, -10, -4, 0, 4, 28, -7, -6, 0, -8, -3, -3, 0, 10, 0, 0, 0, 0, 0, 0, -5, -8, 4, 4, 4, -10, 4, 4, 4, 0, 0, 0, 0, 0, 0, 8, -7, -4, 0, 0, 6, 0, 7, 7, 0, 0, -7, -10, 9, 0, 0, 0, -8, -4, -5, -5, 7, -8, 0, 0, 0, -3, -10, 0, -8, 0, 10, -12, 0, -7, -5, 0, 0, -5, 0, 6, -6, -6, 4, 4, 28, 6, 0, 0, -11, -10, 8, 0, 0, 0, -5, 4, -6, -4, -6, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -8, 0, -6, 0, 7, 0, 0, 0, -4, -7, 0, 0, 0, -4, 0, 0, 0, -6, 0, -11, -4, -7, -13, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, -6, 0, -5, -4, 0, -7, -7, 0, -5, -5, 0, 0, 0, -7, 0, -7, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, -6, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -27, 0, 0, 0, -35, -3, 0, 0, 0, 0, 0, 0, -7, -3, 0, 0, 0, 0, -6, 0, -10, -10, 0, 0, 0, -3, 0, -3, 0, 0, 5, 5, 4, 5, 0, 0, 0, 0, 0, -46, 0, -6, 0, 0, 0, -16, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, -35, -25, -4, -27, -24, -6, -5, -3, 0, 0, -7, 0, -5, 0, -6, 0, 0, 0, -15, -5, 0, 0, -15, -5, -10, 0, -5, 0, 0, -6, 4, 0, 0, 0, 0, 0, -4, 0, -3, -3, 0, 0, -3, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -24, -4, -4, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, -13, -13, 13, 0, -13, 4, -27, -10, -27, -14, 8, -32, 7, 0, 0, 0, -10, 0, -10, -10, 0, 0, 0, 0, 0, 0, 0, 0, -19, -18, 7, -19, 6, 0, 0, 0, 0, 8, 0, -10, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, -5, 4, 13, 8, 0, 10, 9, 4, 5, 0, -13, -13, 8, -25, 0, 0, 0, 0, 0, 0, 9, 0, 0, 5, 9, 0, -10, 0, 0, -12, -10, 0, 7, -15, 0, -6, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -6, 0, -21, -11, 0, -28, -16, 10, 0, -3, 0, 4, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, -5, 0, 7, 0, -18, 0, -10, 0, -11, -22, -3, 0, 0, 0, 5, 0, 4, 4, 7, 0, 0, 0, 0, 0, 0, 0, 0, 3, -7, 0, 0, 0, 0, 0, 0, -15, 0, 5, 0, 0, 0, 4, 0, 0, 0, 6, 0, 0, 0, 0, 0, -18, 7, -3, -5, 0, -8, 0, 0, -10, 0, 0, 7, 6, -11, 0, -5, 0, 5, 8, 4, 4, 0, 8, -8, 0, 0, 0, 4, 4, 8, 0, 0, 8, -7, 7, 4, 0, 0, 4, 4, 0, 10, 0, 4, 4, 4, 0, 0, 5, 7, 8, -15, 0, 4, 0, 9, 0, 0, 7, 8, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -22, 0, -8, -8, -24, 0, -8, 0, 14, 0, 16, 14, 11, 17, 6, 0, 0, 0, -13, 6, -19, -19, 0, 6, 5, 5, -11, -10, 0, -6, 0, 0, 0, 0, -3, 0, 0, 0, 0, -40, 0, -13, 5, 5, 5, -16, 5, 5, 5, 0, 0, 0, 0, 0, 0, 14, -6, 0, -24, -18, 7, -22, -17, 9, 0, 0, -8, -6, 11, 4, 0, -6, -13, -4, -5, -5, -15, -11, 0, 0, -15, -9, -19, -5, -11, 0, 0, -12, 0, 0, -5, 0, 0, -4, -9, 8, -9, -10, 5, 5, 5, 8, 0, 0, -6, -11, 10, 0, 0, 0, 0, -18, -7, 0, -6, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 8, 0, 0, 0, -21, 0, -4, 0, 5, -13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 4, 5, 3, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, 0, 0, 8, 0, 0, 6, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, -7, 0, 0, 5, 5, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, -6, 0, 0, 0, -12, 0, -10, -4, -8, -14, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -12, 0, -4, -6, 0, -8, -7, 0, -11, -6, 0, 0, 0, -8, 0, -9, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, -6, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -17, 0, -6, 0, -27, 10, 0, 8, 6, -11, 0, 12, 0, -8, -8, 11, 0, -8, 6, -27, -7, -22, -13, 12, -33, 8, 0, -27, -9, -4, 0, -4, -4, 0, 0, 0, 0, 0, 3, 0, 0, -12, -9, 8, -12, 5, -3, 0, -5, 4, 7, 0, -4, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, -22, 14, - 0, 0, 0, 0, -4, -4, 0, 4, -10, 4, -7, 0, -3, 0, 0, 0, 0, 0, 0, 0, -6, 0, -10, -3, -7, -11, 0, 0, -7, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -3, -3, -3, 0, -3, 3, 4, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, - 0, 0, 3, -4, 5, -3, 8, -4, 4, 6, 5, 0, 9, 0, -8, -8, 10, 0, -8, 6, 7, 0, 7, 6, 9, 8, 6, 0, 7, 9, 3, 0, -4, -4, 0, 0, 0, 0, 0, 2, 0, -4, 0, 0, 8, 0, 5, 0, 0, -8, 5, 9, 0, 3, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 12, 13, - 0, 0, 0, 0, -7, 0, -13, 7, -17, 0, -6, 0, -8, 0, 0, 0, -8, 0, 0, 0, -8, 0, -8, -3, -13, -15, -3, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 3, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, -4, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, -6, 0, 0, 0, 4, 0, 7, 3, 4, 0, 0, 0, -4, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 4, 6, 0, -4, 0, 0, 0, -3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 13, - 0, 0, -7, -5, 7, 0, -21, 5, -26, 0, 7, -3, -16, 0, -3, -3, -25, -3, -3, 0, 7, 0, 9, 7, 4, 9, 0, 0, 10, 9, -8, 0, -3, -3, 0, 0, 0, 0, -7, -4, 0, -7, 0, 0, -3, 0, -7, 0, 0, 0, -4, -39, 0, -8, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 12, -21, - 0, 0, 0, 0, 0, -9, 7, 6, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -7, -7, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 8, - 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, -6, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, - 0, 0, -7, -6, 8, -13, 10, -17, 8, 3, 0, -5, 8, 0, -18, -18, 7, 0, -18, 0, 8, 0, 6, 4, 12, 6, 8, 0, 7, 9, -3, 0, -13, -13, 0, 0, 0, 0, 0, 3, -3, -11, -15, -15, 11, -15, 7, -4, 0, -17, 0, 9, 0, -3, 0, 0, 14, -11, 12, 10, 3, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, - 3, -32, 3, 0, 0, -34, 13, -7, 6, 8, -12, 0, 10, 0, -7, -7, 10, 3, -7, 6, -26, -3, -28, -17, 10, -33, 6, 0, -27, -11, 4, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, -16, -10, 10, -16, 5, -5, -4, -6, 7, 10, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, -18, 16, - 0, 0, 0, 0, 0, -3, 0, 0, -3, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -3, 0, 0, -5, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -5, 0, - 0, 0, 0, 0, -7, 0, -13, 7, -17, 0, -6, 0, -8, 0, 0, 0, -8, 0, 0, 0, -8, 0, -8, -3, -13, -15, -3, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 3, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, -4, - 0, 0, -7, 0, -3, 0, -35, 0, -26, 4, 0, 0, -23, 0, 0, 0, -30, 0, 0, 0, 4, 0, 0, 0, -7, -3, 0, -5, 0, -4, -7, 0, -5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 4, 7, 0, 0, -3, -3, 4, -42, 0, -7, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, -31, - 0, 0, 0, 0, -7, 0, -13, 7, -17, 0, -6, 0, -8, 0, 0, 0, -8, 0, 0, 0, -8, 0, -8, -3, -13, -15, -3, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, -4, - 0, 0, 0, 0, 0, -3, 8, -7, 6, 4, -5, -3, 10, 0, -6, -6, 9, 0, -6, 0, -3, -3, -5, 0, 7, -11, 6, 0, -3, -8, -8, 0, -8, -8, 0, 0, 0, 0, 0, 0, -3, -3, 0, 0, 6, 0, 3, 0, 0, -7, 0, 7, 0, -8, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 11, - 0, 0, 0, 0, -3, -12, 3, 9, -5, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -3, -3, 0, -3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, -4, -5, 0, 0, 0, 5, 0, -7, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 6, - 0, 0, -7, -6, 8, 0, -27, -18, -33, -20, 9, -12, -27, 0, -8, -8, -28, -3, -8, 0, 9, 0, 10, 9, 9, 11, 3, 0, 13, 10, -25, 0, -25, -25, 0, 0, 0, 0, -23, -24, 0, -23, -25, -25, -25, -25, -24, -6, 0, -25, -22, -38, 0, -25, -3, 9, 15, -31, 15, 11, 10, 0, -18, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 7, -18, - 0, 0, 0, 0, 0, 0, -10, 0, -18, 3, 0, 0, -7, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 0, - 0, 6, -10, -10, 11, 0, -27, -10, -31, -4, 9, -10, -22, 0, -8, -8, -29, -3, -8, 0, 11, 0, 12, 11, 11, 13, 5, 0, 13, 12, -14, 0, -18, -18, 0, 0, 0, 0, -8, -13, 0, -7, 0, 0, 0, 0, -4, -6, 0, -13, 0, -49, 0, -14, 7, 0, 17, -20, 15, 12, 11, 0, -6, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 12, -21, - 0, 6, -7, -4, 9, 0, -15, 0, -21, 0, 8, -4, -13, 0, -3, -3, -16, 0, -3, 0, 9, 0, 11, 9, 9, 12, 4, 0, 13, 11, -9, 0, -11, -11, 0, 0, 0, 0, -5, -5, 0, -5, 4, 4, 3, 4, 0, -3, 0, -5, 0, -18, 0, -9, 0, 0, 15, -12, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 13, -8, - 0, 0, -7, -6, 9, -9, 8, -11, 8, 6, 7, -5, 12, 0, -13, -13, 8, 0, -13, 6, 9, 0, 10, 9, 12, 11, 8, 0, 10, 10, -10, 0, -10, -10, 0, 0, 0, 0, 0, 3, 0, -8, -8, -8, 8, -8, 5, -4, 0, -12, 0, 12, 0, -10, 0, 0, 13, -7, 13, 7, 3, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 11, - 4, 0, -17, -13, 11, -3, -32, -22, -33, -13, 10, -20, -33, 0, -15, -15, -28, -5, -15, -3, 11, 0, 13, 11, 11, 14, 6, 0, 13, 13, -24, 0, -29, -29, 0, 0, 0, 0, -12, -23, 0, -11, -3, 0, -7, -3, -12, -5, 0, -26, -9, -48, 0, -42, 0, 0, 18, -30, 15, 13, 6, 0, -10, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 10, -22, - 0, 0, -3, 0, 5, 0, 9, -7, 0, 5, 5, -3, 9, 0, -4, -4, 9, 0, -4, 4, 5, 0, 7, 5, 9, 8, 4, 0, 7, 7, 4, 0, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 4, 0, 0, -10, 5, 9, 0, 4, 0, 3, 12, 0, 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 10, 14, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, -7, -7, -9, 0, -7, 0, 10, 0, 12, 10, 10, 13, 5, 0, 0, 30, -12, 0, -12, -12, 0, 0, 3, 31, -11, -11, 0, -12, -10, -10, -10, 10, -10, 0, 0, 0, 0, -9, 0, -12, 3, 3, 3, -13, 3, 3, 3, 0, 0, 0, 0, 0, 0, 10, -10, -5, -9, -9, 6, -9, 6, 8, 0, 0, -7, -13, 10, 0, 0, -11, -12, -7, -9, -7, 6, -11, -7, -8, -7, -9, -12, 0, -11, -8, 10, -13, -10, -12, -4, -8, -8, -7, -9, 7, -9, -11, 3, 3, 31, 7, -6, -5, -12, -12, 9, -7, 0, 0, -7, 0, -9, 0, -9, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, -10, -13, -13, 3, -10, -13, 0, -30, -13, -37, -23, 7, -37, 3, 0, 0, 0, -8, 0, -8, -8, 0, 0, 0, 47, 0, 0, -3, -7, -10, -7, 0, 20, 0, 0, 0, 0, 0, 7, 0, -8, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, -3, -5, 0, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, -6, -5, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -5, 0, 0, -7, -10, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -3, 0, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -7, 4, - 0, -6, 0, 0, -8, -10, -10, 4, -9, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -17, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, -6, -5, -3, 0, -6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -8, 0, - 0, 0, 0, 0, 0, 0, 6, -3, 0, 3, -4, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -8, 0, -8, -8, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 4, 3, 0, 0, 0, -5, 0, 0, 0, -8, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 8, - 0, 0, 0, 0, -7, -8, 0, 7, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 3, - 0, 0, 0, 0, 18, 8, -20, 0, -21, 6, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 17, -3, 0, -3, -3, 0, 0, 4, 4, 0, 0, 0, 0, 9, 9, 7, 9, 0, 0, 10, -3, 6, 0, 0, -3, 11, 4, 21, -7, 19, 17, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 18, -19, - 0, 0, 0, 0, -4, -8, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -11, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, -5, -3, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, 3, - 0, -7, 0, 0, -7, -8, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, 0, -5, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, 4, - 0, 0, 0, 0, 4, -8, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, 3, - 0, 0, 0, 0, 4, -8, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, 3, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, -5, -3, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, 3, - 0, 0, -7, -4, 0, 4, 4, -15, 7, 3, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -3, 0, -12, -12, 0, 0, 0, 0, 0, 0, -3, -3, 7, 7, 7, 7, 5, -5, 0, -12, 0, 0, 0, -3, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 7, - 0, 0, 0, 0, -7, -8, 8, 0, 0, 7, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -11, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 7, -4, 5, 0, 0, -5, 7, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -9, 10, - 0, -6, 0, 0, -7, -8, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, 0, -5, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, 4, - 0, -6, 0, 0, -8, -10, -10, 4, -9, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -17, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, -6, -5, -3, 0, -8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -8, 0, - 0, 0, 0, 0, -7, -8, 0, 0, 7, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -11, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, -5, -3, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, 3, - 0, 0, -7, 0, 0, 6, -20, 0, -19, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, -3, -3, 0, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 7, 10, 3, 0, 0, -5, 7, 0, 0, -3, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 16, -19, - 0, 0, 0, 0, -4, -3, 0, 0, -4, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, - 0, 0, 0, 0, 0, 0, 6, -3, 0, 3, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -11, -7, 0, -7, -7, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 6, 3, 0, 0, 0, -6, 0, 0, 0, -7, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 8, - 0, 0, 0, 0, -7, -8, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, 3, - 0, 0, -3, 0, 0, 5, -19, 0, -13, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -3, 0, -5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 8, 7, 4, 0, 0, 0, 6, 0, 0, -3, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 13, -14, - 0, 0, -3, 0, 0, 6, -18, 3, -11, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -3, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 5, 0, 0, 0, 6, 0, 0, -3, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 13, -9, - 0, 0, -7, -4, 0, 4, 6, -7, 7, 5, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -8, 0, -8, -8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 7, 11, 8, 6, -4, 0, -9, 0, 0, 0, -8, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 9, 7, - 0, 0, -3, 0, 0, 5, -19, 0, -13, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -3, 0, -5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 8, 7, 4, 0, 0, 0, 6, 0, 0, -3, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 11, -14, - 0, 0, 0, 0, 0, 0, 8, 0, 3, 3, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -5, 0, -5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 7, 6, 0, 0, -4, -5, 3, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 9, 9, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -5, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, -8, -5, 0, -5, 6, 0, 6, 8, 0, 0, -8, -9, 6, 0, 0, -7, -6, -5, -5, -5, 6, -7, 0, -5, 0, -6, -7, 0, -7, -5, 9, -9, 0, -8, -4, -5, -6, -5, -6, 7, -6, -5, 0, 0, 21, 7, 0, 0, -10, -9, 9, 0, 0, 0, 0, 0, -6, 0, -6, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, -6, 0, -6, 0, -4, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -5, -4, -6, -7, -3, -5, -4, -6, 0, 0, 0, -4, 0, -7, -5, 0, 0, 0, 0, -4, 0, -4, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 4, 0, 0, 0, 0, -7, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, 0, -11, -3, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 6, 0, 0, 0, -22, 0, -3, 0, 0, -9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -22, 0, 0, 6, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, -6, 4, 0, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 3, 3, -10, 0, 3, -7, -25, 0, -14, -6, -13, -27, -8, 0, 0, 0, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, -6, 0, 0, 0, 0, -15, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, 0, -7, -10, -6, -11, -5, -5, -15, -8, 0, 3, 0, -13, 0, -10, -8, 0, 0, 0, 0, -6, 0, -9, 0, -5, 0, 3, 0, 0, 0, 0, 0, -9, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, 0, 0, 0, 0, -8, 0, 0, 0, -10, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, -10, -13, -13, -18, -7, -13, -11, -35, -11, -21, -14, -21, -26, -17, 0, 0, 0, -13, -11, -13, -13, -11, -11, -11, 23, -11, -12, -11, -13, -8, -8, -10, 5, -11, 0, 0, 0, 0, -24, -11, -13, -11, -11, -11, -14, -11, -11, -11, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -8, 0, -19, 5, -20, 4, -9, 0, -9, 0, 0, 0, -14, 0, 0, 0, -7, 0, -7, -3, -12, -13, -8, 0, -7, -12, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 5, 0, -18, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -12, 0, 0, -8, -25, 0, 2, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -17, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -10, -3, -12, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, -19, 0, - 0, 0, 0, 0, 5, 0, -10, 4, -9, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 0, - 0, -8, 0, 0, -7, -5, 0, 0, -7, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -4, -3, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -5, 0, - 0, 8, 0, 0, 20, 0, -8, -7, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 23, -6, 6, -13, -13, 0, 9, 6, 6, -6, -10, 3, -5, 11, 11, 10, 13, 8, 0, 23, 0, 0, 0, 0, -4, 22, 30, 45, 0, 40, 35, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -9, 0, 0, 0, -5, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -6, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -6, -6, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, -8, -4, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -19, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 4, 0, 0, -6, -6, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 7, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -5, 0, 0, -4, -9, 0, 7, -6, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -5, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, -5, -5, -4, -7, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -5, -5, 0, -5, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, -5, 0, -4, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -6, 8, 0, -27, -18, -33, -20, 9, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, -25, -22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -6, 0, -28, -26, 0, -27, -24, 0, 0, -3, -8, -8, 9, 0, 0, -5, -25, -3, -17, -17, -21, -20, 0, -3, -21, -22, -25, -17, -21, 0, 0, -24, -25, -17, -17, 0, -22, -17, -17, 0, -19, -24, 0, 13, 0, 0, 0, 0, -6, -21, 4, 0, 0, 0, -28, -36, -25, -5, -20, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 7, 0, - 0, 0, 0, -4, 5, -3, 8, -4, 4, 6, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 5, -8, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, -6, 6, 10, 4, 0, 9, 5, 5, 4, 0, -8, -9, 9, 0, 0, 0, 3, 0, 0, 0, 5, 0, 4, 0, 5, 0, -4, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0, 0, 3, 0, 0, -6, 0, 4, 0, 0, 0, -7, 9, 0, -3, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 12, 0, - 0, -4, 0, -4, -3, -12, 3, 9, -5, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, -7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -7, 0, -4, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, -8, 0, -6, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, - 0, -20, 0, 0, -11, -8, 0, 7, -6, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, 0, -5, 0, 0, -4, 0, 0, -6, 0, 0, 0, 0, -5, -4, -4, -9, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -4, -4, 0, -5, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, -24, -4, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -17, 0, - 0, -14, 0, 0, 0, -9, 7, 7, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, -12, -4, 0, -4, 0, 8, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -11, 0, - 0, 0, 0, -6, 8, -13, 10, -17, 8, 3, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 6, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -12, 0, 7, 4, 4, 8, 6, 8, 0, 0, -18, -18, 12, 0, 0, 0, -3, -7, 0, 0, 6, -7, 8, 0, 6, 0, -13, 0, -7, -13, -12, -9, 11, -17, 0, -8, 5, 0, 5, 4, -6, 3, 0, 0, 0, 4, -6, 0, -13, -7, 6, -13, 0, -8, -18, 13, 0, -6, -5, 0, -19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 4, 0, -10, 11, 0, -27, -10, -31, -4, 9, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 8, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, -7, 0, -29, -22, 6, -22, -20, 8, 0, -3, -8, -7, 11, 0, 0, -7, -14, -5, -6, -6, -19, -12, 0, 0, -19, -10, -18, -6, -13, 0, 0, -13, 0, 0, -6, 0, 0, -5, -10, 7, -11, -13, 0, 18, 0, 7, 0, 0, -7, -12, 9, 0, 0, 0, 0, -26, -8, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 12, 0, - 0, -19, 0, -6, 0, -27, 10, 0, 8, 6, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, -6, 6, 11, 4, 0, 12, 6, 8, 4, 0, -8, -9, 12, -14, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 6, 0, -4, 0, 0, -9, -7, 0, 8, -8, 0, -7, 5, 0, 5, 0, 0, 3, 0, 0, 0, 0, -6, 0, -7, 0, -23, -8, 0, -12, -6, 13, 0, -6, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, -22, 0, - 0, 0, 0, 0, -4, -4, 0, 4, -10, 4, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -3, 0, 0, 0, -3, 0, -4, 0, 0, 0, 0, -7, 0, -4, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -6, 0, 0, 7, -12, 9, 0, 12, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 6, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 6, 5, 0, 6, 5, 6, 4, 0, 0, -10, 6, -10, 0, 0, 0, 0, 0, 0, 5, 0, 6, 0, 6, 0, 0, 0, 0, 0, 7, 0, 6, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, -7, 0, 0, -7, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 0, - 0, 0, 0, -6, 8, -13, 10, -17, 8, 3, 4, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 7, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -11, 0, 7, 4, 6, 8, 6, 8, 0, 0, -18, -15, 12, 0, 0, 0, -3, -6, 0, 0, 6, -6, 8, 0, 6, 0, -13, 0, -6, -9, -7, -8, 11, -12, 0, -8, 0, 0, 0, 6, -5, 3, 0, 0, 0, 6, -6, 0, -11, -6, 8, -9, 0, -4, -14, 13, 0, -3, -5, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -4, -4, 0, 4, -10, 4, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -4, 0, 0, 0, -3, 0, -3, 0, 0, 0, 0, -7, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -4, -5, -3, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -5, 0, - 0, 0, 0, 0, -7, 0, -13, 7, -17, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, -8, 0, -8, -8, 0, -12, -7, 0, 0, 0, -13, 0, -9, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, -7, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, - 0, 0, 0, 0, -3, 0, -35, 0, -26, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, -3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, -30, -20, 0, -23, -19, -5, -4, 0, 0, 0, -7, 0, -3, 0, -7, 0, 0, 0, -14, 0, 0, 0, -14, -4, -5, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 4, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 0, - 0, 6, 0, -6, 8, 0, -27, -18, -33, -20, 9, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 6, -25, -22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, -28, -22, 5, -27, -21, 6, 0, -3, -8, -4, 9, 0, 0, 0, -25, 0, 0, 0, -15, -16, 0, 0, -16, -7, -25, 0, -16, 0, 0, -19, -25, 0, 0, 0, 0, 0, -12, 5, -14, -24, 0, 16, 0, 5, 0, 0, 0, -16, 7, 0, 0, 6, 0, -17, -4, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 7, 0, - 0, -4, 0, 0, -11, 0, -13, 6, -13, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, -12, -11, -11, -9, -10, -14, -9, 0, 0, 0, -13, 0, -11, -4, 0, 0, 0, 0, -8, 0, 0, 0, -9, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, -11, 0, 0, 0, 0, -12, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -6, 9, -9, 8, -11, 8, 6, 7, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 6, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -9, 6, 8, 4, 5, 12, 6, 8, 3, 0, -13, -13, 12, 0, 0, 0, 0, -6, 0, 0, 6, -6, 8, 0, 6, 0, -10, 0, -6, -7, -6, -7, 8, -11, 0, -7, 0, 0, 0, 5, -5, 3, 0, 0, 0, 5, -4, 0, -10, -6, 7, -6, 0, 0, -12, 13, 0, -4, -4, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 0, - 0, 0, 0, 0, -7, 0, -13, 7, -17, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, -8, 0, -8, -8, 0, -11, -7, 0, 0, 0, -13, 0, -8, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, -7, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, - 0, -8, 0, 0, -7, -10, 0, 5, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -7, 0, - 0, 0, 0, 0, 0, -6, 0, 8, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -7, 0, 0, -6, -5, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, 0, - 0, 0, 0, 0, 0, 0, -19, 0, -13, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 6, 0, -11, 0, 0, 0, 0, 6, 8, 0, 7, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 0, - 0, -7, 0, 0, 7, -7, 9, 0, 11, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 6, 0, 6, 0, 0, 0, 0, -4, 7, 0, 6, -4, 0, -3, 3, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, 0, - 0, -8, 0, 0, -7, -10, -7, 4, -4, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, -6, 0, - 0, 0, 0, -4, 0, 4, 4, -15, 7, 3, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 6, -5, 8, 4, 6, 0, -12, 0, -5, 5, 6, -6, 7, 0, 0, 5, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 6, 3, 0, -5, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0, - 0, -4, 0, 0, -4, 0, 3, 5, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -4, 0, 4, 4, -15, 7, 3, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 6, -6, 8, 4, 6, 0, -12, 0, -6, 6, 8, -7, 7, 0, 0, 6, 5, 0, 5, 0, -4, 0, 0, 0, 0, 0, 8, 4, 0, -6, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0, - 0, 0, 0, 0, -5, 0, 0, 4, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -4, 0, 0, -4, -5, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -5, 0, 0, 4, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -10, 0, 0, -8, -10, -10, 4, -9, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -8, 0, - 0, -10, 0, 0, -10, -5, 0, 8, -6, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -8, 0, - 0, 0, 0, 0, 0, 0, 6, -3, 0, 3, -4, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, -8, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0, - 0, 0, 0, 0, 0, 0, -12, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 5, 0, -9, 0, 0, 0, 0, 5, 6, -3, 6, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 6, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 0, - 0, 0, 0, 0, 0, 0, -10, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 6, 0, -7, 0, 0, 0, 0, 6, 8, -4, 7, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 7, 0, 0, 0, 8, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 0, - 0, -15, 0, 0, -12, -6, 0, 8, -7, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -3, 0, 0, 0, 0, 0, -3, -4, 0, -5, -2, 0, 0, 0, 0, -3, -4, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, -12, 0, - 0, 0, 0, -4, 0, 4, 6, -7, 7, 5, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, -4, 8, 4, 6, 0, -8, 0, -4, 5, 7, -5, 11, 0, 0, 5, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 7, 4, 0, -4, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 9, 0, - 0, -24, 0, 0, -7, -18, 0, 4, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, -12, -7, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, -24, 0, - 0, -8, 0, 0, -8, -10, -10, 4, -9, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -8, 0, - 0, -10, 0, 0, -8, -10, -10, 4, -9, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -8, 0, - 0, 0, 0, 0, -5, 0, 0, 4, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -12, 0, -5, 0, -7, 0, 5, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -9, 0, - 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, -3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -4, -3, 0, 0, -4, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -4, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -12, 0, -4, -5, -7, 0, 5, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -9, 0, - 0, 0, 0, 0, -5, 0, 0, 4, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -17, 0, 0, -9, -15, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -8, 0, 0, -3, 0, -7, 0, 0, -3, -4, 0, 0, 0, 0, 0, -4, -11, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, -12, 0, - 4, 7, 0, -4, 9, 0, -33, -17, -21, 0, 11, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, -4, 0, -27, -17, 10, -21, -16, 10, 7, 0, -4, -5, 9, 8, 7, 0, -6, 0, -4, -4, -17, -17, 0, 0, -18, -8, -17, -5, -18, 0, 0, -20, 0, 0, -4, 0, 0, 0, -14, 12, -15, -11, 0, 0, 0, 12, 0, 0, -4, -17, 12, 0, 0, 4, -4, -31, -6, 0, -6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 0, - 0, 5, 0, 0, 0, 6, -18, 0, -14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 9, 6, -8, 0, 0, 0, 0, 10, 11, 0, 10, 6, 0, 10, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 11, 0, 0, 0, 11, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 11, 0, - 0, -6, 0, -4, 0, -6, 7, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, - 0, -31, 0, -4, 0, -24, 7, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, -14, 0, 0, 4, -7, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -10, 0, 0, 0, 0, -12, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, -30, 0, - 0, -11, 0, 0, 0, -3, 0, 10, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, 0, -6, 0, 0, -5, 0, 0, -8, 0, 0, 0, 0, -7, 0, -5, -6, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -8, 0, - 0, -17, 0, 0, 0, -11, 0, 8, 5, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -5, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, -15, 0, - 0, 0, 0, -11, 8, 0, -21, -15, -25, -7, 6, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 9, -21, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, -11, -4, -24, -21, 7, -23, -20, 9, 0, -4, -11, -12, 7, 4, 0, -9, -11, -7, -9, -9, -22, -19, 0, -6, -23, -14, -19, -10, -20, 0, 0, -21, 0, -6, -9, 0, -6, -8, -16, 7, -18, -14, 0, 0, 0, 7, 0, 0, -11, -19, 10, 0, 0, 0, -6, -20, -11, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, - 0, 0, 0, 0, 0, 0, -11, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 6, 0, -8, 0, 0, 0, 0, 6, 8, 0, 7, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 7, 0, 0, 0, 8, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, - 0, -20, 0, -5, -4, -9, 4, 5, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -23, 0, 0, -4, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -17, 0, - 0, -11, 0, -4, -5, -7, 0, 5, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -6, 0, - 0, 0, 0, 0, -7, 0, 0, 4, -6, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -6, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, -7, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -9, 0, -6, 0, 0, -12, 0, -11, -5, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -4, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 3, 5, 0, 4, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 5, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, - 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 4, 0, 0, 0, -6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -8, 0, 0, -6, -4, 0, 8, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -6, 0, - 0, 0, 0, 0, -7, 0, -5, 7, -11, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -7, -6, 0, -10, -6, 0, 0, 0, -9, 0, -8, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, -6, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -5, 0, 6, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -6, -5, 0, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -4, 0, 0, 6, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, -4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -4, -1, 0, 0, 0, 0, 0, -7, 0, -3, 0, -7, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, -8, 0, 0, -8, 0, 0, -3, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, -2, -8, 0, -2, -4, 0, -5, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, -7, 0, 0, -2, 0, -17, -11, 0, -3, -2, -8, 0, -17, -11, 0, 0, -11, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, -3, 0, -5, 0, 0, -7, 0, 0, -7, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, -7, 0, -12, -1, 0, 0, 0, 0, 0, -7, -5, -2, -2, -2, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, 0, 0, -7, 0, -5, -5, 0, 0, -5, 0, -10, -5, -5, 0, 0, -7, 0, 0, -7, 0, -7, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, -2, 0, 0, -4, -4, 0, -7, -7, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -2, 0, 0, 0, 0, -2, 0, -10, -7, 0, 0, 0, -2, 0, -15, -4, 0, 0, 0, 3, -1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -2, -7, -8, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -6, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, -10, 0, -2, 0, 0, -2, 0, -4, -2, 0, 0, -7, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -7, -5, 0, 0, -5, 0, -12, -2, 0, 0, 0, -5, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, -3, 0, -2, 0, 0, 0, 0, -7, 0, 0, 0, -3, 0, -8, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, -7, 0, -10, -2, 0, 0, -5, -7, 0, -10, -7, 0, 0, -7, 0, -8, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, -2, 0, 0, -9, 0, -5, 0, -7, 0, 0, -5, 0, 0, -5, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, -17, 0, 0, -6, 0, -2, -2, 0, -12, -13, -13, 0, -3, 0, 0, 0, -7, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, 0, -10, -10, -32, -7, -10, 5, 6, 6, 9, 11, 5, 9, 7, 0, 0, 0, -9, 0, -11, -14, 0, 0, 0, 0, 0, -7, 0, 0, 4, 4, 0, 4, 0, 0, 0, 0, 0, -65, 0, -9, 0, 0, 0, -23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 5, -32, -20, 0, -27, -18, 4, 0, -7, -10, -4, 5, 5, 0, 0, -9, 0, 0, 0, -14, -11, 0, 0, -15, -5, -14, 0, -10, 0, 0, -18, 0, 0, 0, 0, 0, 0, -7, 5, -8, -7, 0, 0, 0, 5, 0, 0, 0, -9, 5, 0, 0, 0, 0, -34, -5, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -33, 0, -12, -12, -35, 0, -12, -7, 6, 4, 9, 10, 5, 7, 6, 0, 0, 0, -21, -3, -24, -24, -6, -3, -3, 0, -14, -26, 0, -11, -3, -3, 0, -3, -11, 0, 0, 0, 0, -43, -7, -21, -3, -3, -3, -24, -3, -3, -3, 0, 0, 0, 0, 0, 0, 6, -6, -7, -35, -22, 0, -33, -21, 0, 0, 0, -12, -8, 5, 0, 0, -4, -21, 0, -7, -7, -19, -16, 0, -5, -21, -10, -24, -8, -16, 0, 0, -23, 0, 0, -7, 0, -5, -6, -13, 0, -15, -26, 0, 0, 0, 0, 0, 0, -6, -16, 4, 0, 0, 0, -4, -36, -10, -4, -9, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -11, -11, 7, 0, -11, 3, -25, -7, -42, -25, 8, -36, 7, 0, 0, 0, 3, 3, 0, 0, 3, 3, 3, 10, 3, 4, 0, 3, -14, -10, 7, -14, 8, 0, 0, 0, 0, 8, 0, 3, 3, 3, 3, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -17, 0, 0, 0, -29, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, -32, -21, 0, -19, -19, 0, 0, 0, 0, -5, 0, 4, 0, 0, -5, 0, 0, 0, -14, -10, 0, 0, -15, -5, -10, 0, -11, 0, 0, -16, 0, 0, 0, 0, 0, 0, -6, 4, -8, -5, 0, 0, 0, 4, 0, 0, 0, -10, 0, 0, 0, 0, 0, -33, -5, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, -7, -7, 7, 0, -7, 0, -27, 0, -23, -13, 3, -33, 0, 0, 0, 0, -7, 0, -7, -7, 0, 0, 0, 0, 0, 0, 0, 0, -12, -10, 3, -12, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -10, 27, -7, 0, -3, 0, 0, 0, -10, 0, 0, -7, -7, 0, 0, -7, 0, 8, 0, 10, 9, 9, 11, 3, 0, 0, 0, -8, 0, -10, -10, -4, 0, 4, 28, -7, -6, 0, -8, -3, -3, 0, 10, 0, 0, 0, 0, 0, 0, -5, -8, 4, 4, 4, -10, 4, 4, 4, 0, 0, 0, 0, 0, 0, 8, -7, -4, 0, 0, 6, 0, 7, 7, 0, 0, -7, -10, 9, 0, 0, 0, -8, -4, -5, -5, 7, -8, 0, 0, 0, -3, -10, 0, -8, 0, 10, -12, 0, -7, -5, 0, 0, -5, 0, 6, -6, -6, 4, 4, 28, 6, 0, 0, -11, -10, 8, 0, 0, 0, -5, 4, -6, -4, -6, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -8, 0, -6, 0, 7, 0, 0, 0, -4, -7, 0, 0, 0, -4, 0, 0, 0, -6, 0, -11, -4, -7, -13, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, -6, 0, -5, -4, 0, -7, -7, 0, -5, -5, 0, 0, 0, -7, 0, -7, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, -6, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -27, 0, 0, 0, -35, -3, 0, 0, 0, 0, 0, 0, -7, -3, 0, 0, 0, 0, -6, 0, -10, -10, 0, 0, 0, -3, 0, -3, 0, 0, 5, 5, 4, 5, 0, 0, 0, 0, 0, -46, 0, -6, 0, 0, 0, -16, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, -35, -25, -4, -27, -24, -6, -5, -3, 0, 0, -7, 0, -5, 0, -6, 0, 0, 0, -15, -5, 0, 0, -15, -5, -10, 0, -5, 0, 0, -6, 4, 0, 0, 0, 0, 0, -4, 0, -3, -3, 0, 0, -3, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -24, -4, -4, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, -13, -13, 13, 0, -13, 4, -27, -10, -27, -14, 8, -32, 7, 0, 0, 0, -10, 0, -10, -10, 0, 0, 0, 0, 0, 0, 0, 0, -19, -18, 7, -19, 6, 0, 0, 0, 0, 8, 0, -10, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, -5, 4, 13, 8, 0, 10, 9, 4, 5, 0, -13, -13, 8, -25, 0, 0, 0, 0, 0, 0, 9, 0, 0, 5, 9, 0, -10, 0, 0, -12, -10, 0, 7, -15, 0, -6, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -6, 0, -21, -11, 0, -28, -16, 10, 0, -3, 0, 4, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, -5, 0, 7, 0, -18, 0, -10, 0, -11, -22, -3, 0, 0, 0, 5, 0, 4, 4, 7, 0, 0, 0, 0, 0, 0, 0, 0, 3, -7, 0, 0, 0, 0, 0, 0, -15, 0, 5, 0, 0, 0, 4, 0, 0, 0, 6, 0, 0, 0, 0, 0, -18, 7, -3, -5, 0, -8, 0, 0, -10, 0, 0, 7, 6, -11, 0, -5, 0, 5, 8, 4, 4, 0, 8, -8, 0, 0, 0, 4, 4, 8, 0, 0, 8, -7, 7, 4, 0, 0, 4, 4, 0, 10, 0, 4, 4, 4, 0, 0, 5, 7, 8, -15, 0, 4, 0, 9, 0, 0, 7, 8, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -22, 0, -8, -8, -24, 0, -8, 0, 14, 0, 16, 14, 11, 17, 6, 0, 0, 0, -13, 6, -19, -19, 0, 6, 5, 5, -11, -10, 0, -6, 0, 0, 0, 0, -3, 0, 0, 0, 0, -40, 0, -13, 5, 5, 5, -16, 5, 5, 5, 0, 0, 0, 0, 0, 0, 14, -6, 0, -24, -18, 7, -22, -17, 9, 0, 0, -8, -6, 11, 4, 0, -6, -13, -4, -5, -5, -15, -11, 0, 0, -15, -9, -19, -5, -11, 0, 0, -12, 0, 0, -5, 0, 0, -4, -9, 8, -9, -10, 5, 5, 5, 8, 0, 0, -6, -11, 10, 0, 0, 0, 0, -18, -7, 0, -6, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 8, 0, 0, 0, -21, 0, -4, 0, 5, -13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 4, 5, 3, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, 0, 0, 8, 0, 0, 6, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, -7, 0, 0, 5, 5, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, -6, 0, 0, 0, -12, 0, -10, -4, -8, -14, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -12, 0, -4, -6, 0, -8, -7, 0, -11, -6, 0, 0, 0, -8, 0, -9, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, -6, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -17, 0, -6, 0, -27, 10, 0, 8, 6, -11, 0, 12, 0, -8, -8, 11, 0, -8, 6, -27, -7, -22, -13, 12, -33, 8, 0, -27, -9, -4, 0, -4, -4, 0, 0, 0, 0, 0, 3, 0, 0, -12, -9, 8, -12, 5, -3, 0, -5, 4, 7, 0, -4, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, -22, 14, 0, 0, 0, 0, + 0, 0, 0, 0, -4, -4, 0, 4, -10, 4, -7, 0, -3, 0, 0, 0, 0, 0, 0, 0, -6, 0, -10, -3, -7, -11, 0, 0, -7, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -3, -3, -3, 0, -3, 3, 4, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, + 0, 0, 3, -4, 5, -3, 8, -4, 4, 6, 5, 0, 9, 0, -8, -8, 10, 0, -8, 6, 7, 0, 7, 6, 9, 8, 6, 0, 7, 9, 3, 0, -4, -4, 0, 0, 0, 0, 0, 2, 0, -4, 0, 0, 8, 0, 5, 0, 0, -8, 5, 9, 0, 3, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 12, 13, 0, 0, 0, 0, + 0, 0, 0, 0, -7, 0, -13, 7, -17, 0, -6, 0, -8, 0, 0, 0, -8, 0, 0, 0, -8, 0, -8, -3, -13, -15, -3, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 3, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, -4, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, -6, 0, 0, 0, 4, 0, 7, 3, 4, 0, 0, 0, -4, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 4, 6, 0, -4, 0, 0, 0, -3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 13, 0, 0, 0, 0, + 0, 0, -7, -5, 7, 0, -21, 5, -26, 0, 7, -3, -16, 0, -3, -3, -25, -3, -3, 0, 7, 0, 9, 7, 4, 9, 0, 0, 10, 9, -8, 0, -3, -3, 0, 0, 0, 0, -7, -4, 0, -7, 0, 0, -3, 0, -7, 0, 0, 0, -4, -39, 0, -8, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 12, -21, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -9, 7, 6, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -7, -7, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 8, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, -6, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, + 0, 0, -7, -6, 8, -13, 10, -17, 8, 3, 0, -5, 8, 0, -18, -18, 7, 0, -18, 0, 8, 0, 6, 4, 12, 6, 8, 0, 7, 9, -3, 0, -13, -13, 0, 0, 0, 0, 0, 3, -3, -11, -15, -15, 11, -15, 7, -4, 0, -17, 0, 9, 0, -3, 0, 0, 14, -11, 12, 10, 3, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, + 3, -32, 3, 0, 0, -34, 13, -7, 6, 8, -12, 0, 10, 0, -7, -7, 10, 3, -7, 6, -26, -3, -28, -17, 10, -33, 6, 0, -27, -11, 4, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, -16, -10, 10, -16, 5, -5, -4, -6, 7, 10, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, -18, 16, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -3, 0, 0, -3, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -3, 0, 0, -5, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -5, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -7, 0, -13, 7, -17, 0, -6, 0, -8, 0, 0, 0, -8, 0, 0, 0, -8, 0, -8, -3, -13, -15, -3, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 3, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, -4, 0, 0, 0, 0, + 0, 0, -7, 0, -3, 0, -35, 0, -26, 4, 0, 0, -23, 0, 0, 0, -30, 0, 0, 0, 4, 0, 0, 0, -7, -3, 0, -5, 0, -4, -7, 0, -5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 4, 7, 0, 0, -3, -3, 4, -42, 0, -7, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, -31, 0, 0, 0, 0, + 0, 0, 0, 0, -7, 0, -13, 7, -17, 0, -6, 0, -8, 0, 0, 0, -8, 0, 0, 0, -8, 0, -8, -3, -13, -15, -3, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, -4, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -3, 8, -7, 6, 4, -5, -3, 10, 0, -6, -6, 9, 0, -6, 0, -3, -3, -5, 0, 7, -11, 6, 0, -3, -8, -8, 0, -8, -8, 0, 0, 0, 0, 0, 0, -3, -3, 0, 0, 6, 0, 3, 0, 0, -7, 0, 7, 0, -8, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 11, 0, 0, 0, 0, + 0, 0, 0, 0, -3, -12, 3, 9, -5, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -3, -3, 0, -3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, -4, -5, 0, 0, 0, 5, 0, -7, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 6, 0, 0, 0, 0, + 0, 0, -7, -6, 8, 0, -27, -18, -33, -20, 9, -12, -27, 0, -8, -8, -28, -3, -8, 0, 9, 0, 10, 9, 9, 11, 3, 0, 13, 10, -25, 0, -25, -25, 0, 0, 0, 0, -23, -24, 0, -23, -25, -25, -25, -25, -24, -6, 0, -25, -22, -38, 0, -25, -3, 9, 15, -31, 15, 11, 10, 0, -18, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 7, -18, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -10, 0, -18, 3, 0, 0, -7, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 0, 0, 0, 0, 0, + 0, 6, -10, -10, 11, 0, -27, -10, -31, -4, 9, -10, -22, 0, -8, -8, -29, -3, -8, 0, 11, 0, 12, 11, 11, 13, 5, 0, 13, 12, -14, 0, -18, -18, 0, 0, 0, 0, -8, -13, 0, -7, 0, 0, 0, 0, -4, -6, 0, -13, 0, -49, 0, -14, 7, 0, 17, -20, 15, 12, 11, 0, -6, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 12, -21, 0, 0, 0, 0, + 0, 6, -7, -4, 9, 0, -15, 0, -21, 0, 8, -4, -13, 0, -3, -3, -16, 0, -3, 0, 9, 0, 11, 9, 9, 12, 4, 0, 13, 11, -9, 0, -11, -11, 0, 0, 0, 0, -5, -5, 0, -5, 4, 4, 3, 4, 0, -3, 0, -5, 0, -18, 0, -9, 0, 0, 15, -12, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 13, -8, 0, 0, 0, 0, + 0, 0, -7, -6, 9, -9, 8, -11, 8, 6, 7, -5, 12, 0, -13, -13, 8, 0, -13, 6, 9, 0, 10, 9, 12, 11, 8, 0, 10, 10, -10, 0, -10, -10, 0, 0, 0, 0, 0, 3, 0, -8, -8, -8, 8, -8, 5, -4, 0, -12, 0, 12, 0, -10, 0, 0, 13, -7, 13, 7, 3, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 11, 0, 0, 0, 0, + 4, 0, -17, -13, 11, -3, -32, -22, -33, -13, 10, -20, -33, 0, -15, -15, -28, -5, -15, -3, 11, 0, 13, 11, 11, 14, 6, 0, 13, 13, -24, 0, -29, -29, 0, 0, 0, 0, -12, -23, 0, -11, -3, 0, -7, -3, -12, -5, 0, -26, -9, -48, 0, -42, 0, 0, 18, -30, 15, 13, 6, 0, -10, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 10, -22, 0, 0, 0, 0, + 0, 0, -3, 0, 5, 0, 9, -7, 0, 5, 5, -3, 9, 0, -4, -4, 9, 0, -4, 4, 5, 0, 7, 5, 9, 8, 4, 0, 7, 7, 4, 0, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 4, 0, 0, -10, 5, 9, 0, 4, 0, 3, 12, 0, 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 10, 14, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, -7, -7, -9, 0, -7, 0, 10, 0, 12, 10, 10, 13, 5, 0, 0, 30, -12, 0, -12, -12, 0, 0, 3, 31, -11, -11, 0, -12, -10, -10, -10, 10, -10, 0, 0, 0, 0, -9, 0, -12, 3, 3, 3, -13, 3, 3, 3, 0, 0, 0, 0, 0, 0, 10, -10, -5, -9, -9, 6, -9, 6, 8, 0, 0, -7, -13, 10, 0, 0, -11, -12, -7, -9, -7, 6, -11, -7, -8, -7, -9, -12, 0, -11, -8, 10, -13, -10, -12, -4, -8, -8, -7, -9, 7, -9, -11, 3, 3, 31, 7, -6, -5, -12, -12, 9, -7, 0, 0, -7, 0, -9, 0, -9, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, -10, -13, -13, 3, -10, -13, 0, -30, -13, -37, -23, 7, -37, 3, 0, 0, 0, -8, 0, -8, -8, 0, 0, 0, 47, 0, 0, -3, -7, -10, -7, 0, 20, 0, 0, 0, 0, 0, 7, 0, -8, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, -3, -5, 0, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, -6, -5, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -5, 0, 0, -7, -10, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -3, 0, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -7, 4, 0, 0, 0, 0, + 0, -6, 0, 0, -8, -10, -10, 4, -9, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -17, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, -6, -5, -3, 0, -6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -8, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 6, -3, 0, 3, -4, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -8, 0, -8, -8, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 4, 3, 0, 0, 0, -5, 0, 0, 0, -8, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 8, 0, 0, 0, 0, + 0, 0, 0, 0, -7, -8, 0, 7, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 3, 0, 0, 0, 0, + 0, 0, 0, 0, 18, 8, -20, 0, -21, 6, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 17, -3, 0, -3, -3, 0, 0, 4, 4, 0, 0, 0, 0, 9, 9, 7, 9, 0, 0, 10, -3, 6, 0, 0, -3, 11, 4, 21, -7, 19, 17, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 18, -19, 0, 0, 0, 0, + 0, 0, 0, 0, -4, -8, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -11, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, -5, -3, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, 3, 0, 0, 0, 0, + 0, -7, 0, 0, -7, -8, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, 0, -5, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, 4, 0, 0, 0, 0, + 0, 0, 0, 0, 4, -8, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, 3, 0, 0, 0, 0, + 0, 0, 0, 0, 4, -8, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, 3, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, -5, -3, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, 3, 0, 0, 0, 0, + 0, 0, -7, -4, 0, 4, 4, -15, 7, 3, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -3, 0, -12, -12, 0, 0, 0, 0, 0, 0, -3, -3, 7, 7, 7, 7, 5, -5, 0, -12, 0, 0, 0, -3, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 7, 0, 0, 0, 0, + 0, 0, 0, 0, -7, -8, 8, 0, 0, 7, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -11, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 7, -4, 5, 0, 0, -5, 7, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -9, 10, 0, 0, 0, 0, + 0, -6, 0, 0, -7, -8, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, 0, -5, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, 4, 0, 0, 0, 0, + 0, -6, 0, 0, -8, -10, -10, 4, -9, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -17, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, -6, -5, -3, 0, -8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -8, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -7, -8, 0, 0, 7, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -11, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, -5, -3, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, 3, 0, 0, 0, 0, + 0, 0, -7, 0, 0, 6, -20, 0, -19, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, -3, -3, 0, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 7, 10, 3, 0, 0, -5, 7, 0, 0, -3, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 16, -19, 0, 0, 0, 0, + 0, 0, 0, 0, -4, -3, 0, 0, -4, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 6, -3, 0, 3, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -11, -7, 0, -7, -7, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 6, 3, 0, 0, 0, -6, 0, 0, 0, -7, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 8, 0, 0, 0, 0, + 0, 0, 0, 0, -7, -8, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, 3, 0, 0, 0, 0, + 0, 0, -3, 0, 0, 5, -19, 0, -13, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -3, 0, -5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 8, 7, 4, 0, 0, 0, 6, 0, 0, -3, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 13, -14, 0, 0, 0, 0, + 0, 0, -3, 0, 0, 6, -18, 3, -11, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -3, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 5, 0, 0, 0, 6, 0, 0, -3, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 13, -9, 0, 0, 0, 0, + 0, 0, -7, -4, 0, 4, 6, -7, 7, 5, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -8, 0, -8, -8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 7, 11, 8, 6, -4, 0, -9, 0, 0, 0, -8, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 9, 7, 0, 0, 0, 0, + 0, 0, -3, 0, 0, 5, -19, 0, -13, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -3, 0, -5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 8, 7, 4, 0, 0, 0, 6, 0, 0, -3, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 11, -14, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 8, 0, 3, 3, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -5, 0, -5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 7, 6, 0, 0, -4, -5, 3, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 9, 9, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -5, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, -8, -5, 0, -5, 6, 0, 6, 8, 0, 0, -8, -9, 6, 0, 0, -7, -6, -5, -5, -5, 6, -7, 0, -5, 0, -6, -7, 0, -7, -5, 9, -9, 0, -8, -4, -5, -6, -5, -6, 7, -6, -5, 0, 0, 21, 7, 0, 0, -10, -9, 9, 0, 0, 0, 0, 0, -6, 0, -6, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, -6, 0, -6, 0, -4, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -5, -4, -6, -7, -3, -5, -4, -6, 0, 0, 0, -4, 0, -7, -5, 0, 0, 0, 0, -4, 0, -4, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 4, 0, 0, 0, 0, -7, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, 0, -11, -3, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 6, 0, 0, 0, -22, 0, -3, 0, 0, -9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 6, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -22, 0, 0, 6, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, -6, 4, 0, 5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 3, 3, -10, 0, 3, -7, -25, 0, -14, -6, -13, -27, -8, 0, 0, 0, 3, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, -6, 0, 0, 0, 0, -15, 0, 3, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, 0, -7, -10, -6, -11, -5, -5, -15, -8, 0, 3, 0, -13, 0, -10, -8, 0, 0, 0, 0, -6, 0, -9, 0, -5, 0, 3, 0, 0, 0, 0, 0, -9, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, 0, 0, 0, 0, -8, 0, 0, 0, -10, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, -10, -13, -13, -18, -7, -13, -11, -35, -11, -21, -14, -21, -26, -17, 0, 0, 0, -13, -11, -13, -13, -11, -11, -11, 23, -11, -12, -11, -13, -8, -8, -10, 5, -11, 0, 0, 0, 0, -24, -11, -13, -11, -11, -11, -14, -11, -11, -11, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -8, 0, -19, 5, -20, 4, -9, 0, -9, 0, 0, 0, -14, 0, 0, 0, -7, 0, -7, -3, -12, -13, -8, 0, -7, -12, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 5, 0, -18, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -12, 0, 0, -8, -25, 0, 2, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -17, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -10, -3, -12, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, -19, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 5, 0, -10, 4, -9, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, + 0, -8, 0, 0, -7, -5, 0, 0, -7, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -4, -3, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -5, 0, 0, 0, 0, 0, + 0, 8, 0, 0, 20, 0, -8, -7, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 23, -6, 6, -13, -13, 0, 9, 6, 6, -6, -10, 3, -5, 11, 11, 10, 13, 8, 0, 23, 0, 0, 0, 0, -4, 22, 30, 45, 0, 40, 35, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -9, 0, 0, 0, -5, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -6, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -6, -6, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, -8, -4, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -19, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 4, 0, 0, -6, -6, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 7, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -5, 0, 0, -4, -9, 0, 7, -6, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -5, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, -5, -5, -4, -7, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -5, -5, 0, -5, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, -5, 0, -4, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -6, 8, 0, -27, -18, -33, -20, 9, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, -25, -22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -6, 0, -28, -26, 0, -27, -24, 0, 0, -3, -8, -8, 9, 0, 0, -5, -25, -3, -17, -17, -21, -20, 0, -3, -21, -22, -25, -17, -21, 0, 0, -24, -25, -17, -17, 0, -22, -17, -17, 0, -19, -24, 0, 13, 0, 0, 0, 0, -6, -21, 4, 0, 0, 0, -28, -36, -25, -5, -20, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 7, 0, 0, 0, 0, 0, + 0, 0, 0, -4, 5, -3, 8, -4, 4, 6, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 5, -8, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, -6, 6, 10, 4, 0, 9, 5, 5, 4, 0, -8, -9, 9, 0, 0, 0, 3, 0, 0, 0, 5, 0, 4, 0, 5, 0, -4, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0, 0, 3, 0, 0, -6, 0, 4, 0, 0, 0, -7, 9, 0, -3, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 12, 0, 0, 0, 0, 0, + 0, -4, 0, -4, -3, -12, 3, 9, -5, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, -7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -7, 0, -4, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, -8, 0, -6, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, + 0, -20, 0, 0, -11, -8, 0, 7, -6, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, 0, -5, 0, 0, -4, 0, 0, -6, 0, 0, 0, 0, -5, -4, -4, -9, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -4, -4, 0, -5, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, -24, -4, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -17, 0, 0, 0, 0, 0, + 0, -14, 0, 0, 0, -9, 7, 7, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, -12, -4, 0, -4, 0, 8, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -11, 0, 0, 0, 0, 0, + 0, 0, 0, -6, 8, -13, 10, -17, 8, 3, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 6, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -12, 0, 7, 4, 4, 8, 6, 8, 0, 0, -18, -18, 12, 0, 0, 0, -3, -7, 0, 0, 6, -7, 8, 0, 6, 0, -13, 0, -7, -13, -12, -9, 11, -17, 0, -8, 5, 0, 5, 4, -6, 3, 0, 0, 0, 4, -6, 0, -13, -7, 6, -13, 0, -8, -18, 13, 0, -6, -5, 0, -19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 4, 0, -10, 11, 0, -27, -10, -31, -4, 9, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 8, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, -7, 0, -29, -22, 6, -22, -20, 8, 0, -3, -8, -7, 11, 0, 0, -7, -14, -5, -6, -6, -19, -12, 0, 0, -19, -10, -18, -6, -13, 0, 0, -13, 0, 0, -6, 0, 0, -5, -10, 7, -11, -13, 0, 18, 0, 7, 0, 0, -7, -12, 9, 0, 0, 0, 0, -26, -8, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 12, 0, 0, 0, 0, 0, + 0, -19, 0, -6, 0, -27, 10, 0, 8, 6, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, -6, 6, 11, 4, 0, 12, 6, 8, 4, 0, -8, -9, 12, -14, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 6, 0, -4, 0, 0, -9, -7, 0, 8, -8, 0, -7, 5, 0, 5, 0, 0, 3, 0, 0, 0, 0, -6, 0, -7, 0, -23, -8, 0, -12, -6, 13, 0, -6, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, -22, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -4, -4, 0, 4, -10, 4, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -3, 0, 0, 0, -3, 0, -4, 0, 0, 0, 0, -7, 0, -4, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -6, 0, 0, 7, -12, 9, 0, 12, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 6, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 6, 5, 0, 6, 5, 6, 4, 0, 0, -10, 6, -10, 0, 0, 0, 0, 0, 0, 5, 0, 6, 0, 6, 0, 0, 0, 0, 0, 7, 0, 6, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, -7, 0, 0, -7, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 0, 0, 0, 0, 0, + 0, 0, 0, -6, 8, -13, 10, -17, 8, 3, 4, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 7, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -11, 0, 7, 4, 6, 8, 6, 8, 0, 0, -18, -15, 12, 0, 0, 0, -3, -6, 0, 0, 6, -6, 8, 0, 6, 0, -13, 0, -6, -9, -7, -8, 11, -12, 0, -8, 0, 0, 0, 6, -5, 3, 0, 0, 0, 6, -6, 0, -11, -6, 8, -9, 0, -4, -14, 13, 0, -3, -5, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -4, -4, 0, 4, -10, 4, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -4, 0, 0, 0, -3, 0, -3, 0, 0, 0, 0, -7, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -4, -5, -3, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -5, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -7, 0, -13, 7, -17, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, -8, 0, -8, -8, 0, -12, -7, 0, 0, 0, -13, 0, -9, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, -7, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -3, 0, -35, 0, -26, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, -3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, -30, -20, 0, -23, -19, -5, -4, 0, 0, 0, -7, 0, -3, 0, -7, 0, 0, 0, -14, 0, 0, 0, -14, -4, -5, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0, 4, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 0, 0, 0, 0, 0, + 0, 6, 0, -6, 8, 0, -27, -18, -33, -20, 9, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 6, -25, -22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, -28, -22, 5, -27, -21, 6, 0, -3, -8, -4, 9, 0, 0, 0, -25, 0, 0, 0, -15, -16, 0, 0, -16, -7, -25, 0, -16, 0, 0, -19, -25, 0, 0, 0, 0, 0, -12, 5, -14, -24, 0, 16, 0, 5, 0, 0, 0, -16, 7, 0, 0, 6, 0, -17, -4, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 7, 0, 0, 0, 0, 0, + 0, -4, 0, 0, -11, 0, -13, 6, -13, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, -12, -11, -11, -9, -10, -14, -9, 0, 0, 0, -13, 0, -11, -4, 0, 0, 0, 0, -8, 0, 0, 0, -9, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, -11, 0, 0, 0, 0, -12, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -6, 9, -9, 8, -11, 8, 6, 7, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 6, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -9, 6, 8, 4, 5, 12, 6, 8, 3, 0, -13, -13, 12, 0, 0, 0, 0, -6, 0, 0, 6, -6, 8, 0, 6, 0, -10, 0, -6, -7, -6, -7, 8, -11, 0, -7, 0, 0, 0, 5, -5, 3, 0, 0, 0, 5, -4, 0, -10, -6, 7, -6, 0, 0, -12, 13, 0, -4, -4, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -7, 0, -13, 7, -17, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, -8, 0, -8, -8, 0, -11, -7, 0, 0, 0, -13, 0, -8, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, -7, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, + 0, -8, 0, 0, -7, -10, 0, 5, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -7, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -6, 0, 8, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -7, 0, 0, -6, -5, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -19, 0, -13, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 6, 0, -11, 0, 0, 0, 0, 6, 8, 0, 7, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 0, 0, 0, 0, 0, + 0, -7, 0, 0, 7, -7, 9, 0, 11, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 6, 0, 6, 0, 0, 0, 0, -4, 7, 0, 6, -4, 0, -3, 3, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, 0, 0, 0, 0, 0, + 0, -8, 0, 0, -7, -10, -7, 4, -4, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, -6, 0, 0, 0, 0, 0, + 0, 0, 0, -4, 0, 4, 4, -15, 7, 3, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 6, -5, 8, 4, 6, 0, -12, 0, -5, 5, 6, -6, 7, 0, 0, 5, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 6, 3, 0, -5, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, + 0, -4, 0, 0, -4, 0, 3, 5, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -4, 0, 4, 4, -15, 7, 3, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 6, -6, 8, 4, 6, 0, -12, 0, -6, 6, 8, -7, 7, 0, 0, 6, 5, 0, 5, 0, -4, 0, 0, 0, 0, 0, 8, 4, 0, -6, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -5, 0, 0, 4, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -4, 0, 0, -4, -5, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -5, 0, 0, 4, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -10, 0, 0, -8, -10, -10, 4, -9, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -8, 0, 0, 0, 0, 0, + 0, -10, 0, 0, -10, -5, 0, 8, -6, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -8, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 6, -3, 0, 3, -4, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, -8, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -12, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 5, 0, -9, 0, 0, 0, 0, 5, 6, -3, 6, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 6, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -10, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 6, 0, -7, 0, 0, 0, 0, 6, 8, -4, 7, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 7, 0, 0, 0, 8, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 0, 0, 0, 0, 0, + 0, -15, 0, 0, -12, -6, 0, 8, -7, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -3, 0, 0, 0, 0, 0, -3, -4, 0, -5, -2, 0, 0, 0, 0, -3, -4, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, -12, 0, 0, 0, 0, 0, + 0, 0, 0, -4, 0, 4, 6, -7, 7, 5, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, -4, 8, 4, 6, 0, -8, 0, -4, 5, 7, -5, 11, 0, 0, 5, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 7, 4, 0, -4, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 9, 0, 0, 0, 0, 0, + 0, -24, 0, 0, -7, -18, 0, 4, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, -12, -7, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, -24, 0, 0, 0, 0, 0, + 0, -8, 0, 0, -8, -10, -10, 4, -9, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -8, 0, 0, 0, 0, 0, + 0, -10, 0, 0, -8, -10, -10, 4, -9, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -8, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -5, 0, 0, 4, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -12, 0, -5, 0, -7, 0, 5, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -9, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, -3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -4, -3, 0, 0, -4, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -4, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -12, 0, -4, -5, -7, 0, 5, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -9, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -5, 0, 0, 4, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -17, 0, 0, -9, -15, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -8, 0, 0, -3, 0, -7, 0, 0, -3, -4, 0, 0, 0, 0, 0, -4, -11, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, -12, 0, 0, 0, 0, 0, + 4, 7, 0, -4, 9, 0, -33, -17, -21, 0, 11, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, -4, 0, -27, -17, 10, -21, -16, 10, 7, 0, -4, -5, 9, 8, 7, 0, -6, 0, -4, -4, -17, -17, 0, 0, -18, -8, -17, -5, -18, 0, 0, -20, 0, 0, -4, 0, 0, 0, -14, 12, -15, -11, 0, 0, 0, 12, 0, 0, -4, -17, 12, 0, 0, 4, -4, -31, -6, 0, -6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 0, 0, 0, 0, 0, + 0, 5, 0, 0, 0, 6, -18, 0, -14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 9, 6, -8, 0, 0, 0, 0, 10, 11, 0, 10, 6, 0, 10, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 11, 0, 0, 0, 11, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 11, 0, 0, 0, 0, 0, + 0, -6, 0, -4, 0, -6, 7, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 0, 4, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, + 0, -31, 0, -4, 0, -24, 7, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, -14, 0, 0, 4, -7, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -10, 0, 0, 0, 0, -12, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, -30, 0, 0, 0, 0, 0, + 0, -11, 0, 0, 0, -3, 0, 10, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, 0, -6, 0, 0, -5, 0, 0, -8, 0, 0, 0, 0, -7, 0, -5, -6, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -8, 0, 0, 0, 0, 0, + 0, -17, 0, 0, 0, -11, 0, 8, 5, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -5, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, -15, 0, 0, 0, 0, 0, + 0, 0, 0, -11, 8, 0, -21, -15, -25, -7, 6, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 9, -21, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, -11, -4, -24, -21, 7, -23, -20, 9, 0, -4, -11, -12, 7, 4, 0, -9, -11, -7, -9, -9, -22, -19, 0, -6, -23, -14, -19, -10, -20, 0, 0, -21, 0, -6, -9, 0, -6, -8, -16, 7, -18, -14, 0, 0, 0, 7, 0, 0, -11, -19, 10, 0, 0, 0, -6, -20, -11, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -11, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 6, 0, -8, 0, 0, 0, 0, 6, 8, 0, 7, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 7, 0, 0, 0, 8, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, + 0, -20, 0, -5, -4, -9, 4, 5, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -23, 0, 0, -4, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -17, 0, 0, 0, 0, 0, + 0, -11, 0, -4, -5, -7, 0, 5, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -6, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -7, 0, 0, 4, -6, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -6, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, -7, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -9, 0, -6, 0, 0, -12, 0, -11, -5, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -4, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 3, 5, 0, 4, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 5, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 4, 0, 4, 0, 0, 0, -6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -8, 0, 0, -6, -4, 0, 8, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -6, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -7, 0, -5, 7, -11, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -7, -6, 0, -10, -6, 0, 0, 0, -9, 0, -8, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, -6, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -5, 0, 6, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -6, -5, 0, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -4, 0, 0, 6, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, -4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -4, -1, 0, 0, 0, 0, 0, -7, 0, -3, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, -8, 0, 0, -8, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, -2, -8, 0, -2, -4, 0, -5, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, -7, 0, 0, -2, 0, -17, -11, 0, -3, -2, -8, 0, -17, -11, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, -3, 0, -5, 0, 0, -7, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, -7, 0, -12, -1, 0, 0, 0, 0, 0, -7, -5, -2, -2, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, 0, 0, -7, 0, -5, -5, 0, 0, -5, 0, -10, -5, -5, 0, 0, -7, 0, 0, -7, 0, -7, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, -2, 0, 0, -4, -4, 0, -7, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -2, 0, 0, 0, 0, -2, 0, -10, -7, 0, 0, 0, -2, 0, -15, -4, 0, 0, 0, 3, -1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -2, -7, -8, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -6, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, -10, 0, -2, 0, 0, -2, 0, -4, -2, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -7, -5, 0, 0, -5, 0, -12, -2, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, -3, 0, -2, 0, 0, 0, 0, -7, 0, 0, 0, -3, 0, -8, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, -7, 0, -10, -2, 0, 0, -5, -7, 0, -10, -7, 0, 0, -7, 0, -8, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, -2, 0, 0, -9, 0, -5, 0, -7, 0, 0, -5, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, -17, 0, 0, -6, 0, -2, -2, 0, -12, -13, -13, 0, -3, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, 0, -10, -10, -32, -7, -10, 5, 6, 6, 9, 11, 5, 9, 7, 0, 0, 0, -9, 0, -11, -14, 0, 0, 0, 0, 0, -7, 0, 0, 4, 4, 0, 4, 0, 0, 0, 0, 0, -65, 0, -9, 0, 0, 0, -23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 5, -32, -20, 0, -27, -18, 4, 0, -7, -10, -4, 5, 5, 0, 0, -9, 0, 0, 0, -14, -11, 0, 0, -15, -5, -14, 0, -10, 0, 0, -18, 0, 0, 0, 0, 0, 0, -7, 5, -8, -7, 0, 0, 0, 5, 0, 0, 0, -9, 5, 0, 0, 0, 0, -34, -5, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -33, 0, -12, -12, -35, 0, -12, -7, 6, 4, 9, 10, 5, 7, 6, 0, 0, 0, -21, -3, -24, -24, -6, -3, -3, 0, -14, -26, 0, -11, -3, -3, 0, -3, -11, 0, 0, 0, 0, -43, -7, -21, -3, -3, -3, -24, -3, -3, -3, 0, 0, 0, 0, 0, 0, 6, -6, -7, -35, -22, 0, -33, -21, 0, 0, 0, -12, -8, 5, 0, 0, -4, -21, 0, -7, -7, -19, -16, 0, -5, -21, -10, -24, -8, -16, 0, 0, -23, 0, 0, -7, 0, -5, -6, -13, 0, -15, -26, 0, 0, 0, 0, 0, 0, -6, -16, 4, 0, 0, 0, -4, -36, -10, -4, -9, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -11, -11, 7, 0, -11, 3, -25, -7, -42, -25, 8, -36, 7, 0, 0, 0, 3, 3, 0, 0, 3, 3, 3, 10, 3, 4, 0, 3, -14, -10, 7, -14, 8, 0, 0, 0, 0, 8, 0, 3, 3, 3, 3, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -8, -10, 17, }; static const EpdLigaturePair ubuntu_10_boldLigaturePairs[] = { @@ -3518,7 +4134,7 @@ static const EpdFontData ubuntu_10_bold = { ubuntu_10_boldBitmaps, ubuntu_10_boldGlyphs, ubuntu_10_boldIntervals, - 51, + 69, 24, 20, -4, @@ -3529,10 +4145,10 @@ static const EpdFontData ubuntu_10_bold = { ubuntu_10_boldKernLeftClasses, ubuntu_10_boldKernRightClasses, ubuntu_10_boldKernMatrix, - 572, - 556, - 172, - 155, + 576, + 577, + 173, + 159, ubuntu_10_boldLigaturePairs, 5, }; diff --git a/lib/EpdFont/builtinFonts/ubuntu_10_regular.h b/lib/EpdFont/builtinFonts/ubuntu_10_regular.h index 695862c673..5c953a30c1 100644 --- a/lib/EpdFont/builtinFonts/ubuntu_10_regular.h +++ b/lib/EpdFont/builtinFonts/ubuntu_10_regular.h @@ -3,12 +3,12 @@ * name: ubuntu_10_regular * size: 10 * mode: 1-bit - * Command used: fontconvert.py ubuntu_10_regular 10 ../builtinFonts/source/Ubuntu/Ubuntu-Regular.ttf ../builtinFonts/source/NotoSansHebrew/NotoSansHebrew-Regular.ttf ../builtinFonts/source/Ubuntu/Ubuntu-Vietnamese-Regular.ttf --additional-intervals 0x05D0,0x05EA + * Command used: fontconvert.py ubuntu_10_regular 10 ../builtinFonts/source/Ubuntu/Ubuntu-Regular.ttf ../builtinFonts/source/NotoSansHebrew/NotoSansHebrew-Regular.ttf ../builtinFonts/source/NotoSansArabic/NotoSansArabic-Regular.ttf ../builtinFonts/source/Ubuntu/Ubuntu-Vietnamese-Regular.ttf --additional-intervals 0x05D0,0x05EA --additional-intervals 0x060C,0x060C --additional-intervals 0x061B,0x061B --additional-intervals 0x061F,0x061F --additional-intervals 0x0621,0x0621 --additional-intervals 0x0640,0x0640 --additional-intervals 0x0660,0x0669 --additional-intervals 0x06BA,0x06BA --additional-intervals 0x06D4,0x06D4 --additional-intervals 0x06F0,0x06F9 --additional-intervals 0xFB56,0xFB59 --additional-intervals 0xFB66,0xFB69 --additional-intervals 0xFB7A,0xFB7D --additional-intervals 0xFB88,0xFB95 --additional-intervals 0xFB9E,0xFB9F --additional-intervals 0xFBA6,0xFBB1 --additional-intervals 0xFBFC,0xFBFF --additional-intervals 0xFE80,0xFEFC */ #pragma once #include "EpdFontData.h" -static const uint8_t ubuntu_10_regularBitmaps[18686] = { +static const uint8_t ubuntu_10_regularBitmaps[23522] = { 0xEE, 0xEE, 0xE6, 0x66, 0x66, 0x00, 0xEF, 0xE0, 0xEF, 0xDF, 0xBF, 0x6E, 0xC0, 0x1C, 0x61, 0xCE, 0x1C, 0xE1, 0x8E, 0xFF, 0xFF, 0xFF, 0x38, 0xC3, 0x9C, 0x31, 0xCF, 0xFF, 0xFF, 0xF7, 0x18, 0x73, 0x87, 0x38, 0x63, 0x80, 0x0C, 0x03, 0x03, 0xF9, 0xFE, 0xF1, 0xB8, 0x0E, 0x01, 0xE0, 0x7E, 0x07, @@ -599,584 +599,887 @@ static const uint8_t ubuntu_10_regularBitmaps[18686] = { 0xCF, 0xE1, 0xF8, 0x7E, 0x1F, 0x87, 0xE1, 0xF8, 0x7E, 0x1F, 0x87, 0x61, 0xC3, 0x87, 0x18, 0xE7, 0x38, 0x38, 0x3C, 0x7E, 0xE6, 0x01, 0x7F, 0xDF, 0xC6, 0x7E, 0x7E, 0x7E, 0x42, 0x7E, 0x7E, 0x18, 0x06, 0x60, 0x00, 0x66, 0x66, 0x01, 0xEF, 0xB3, 0xF9, 0xE3, 0x00, 0x3B, 0x3B, 0x99, 0x99, 0x80, - 0xC3, 0x66, 0x3C, 0x3C, 0x7B, 0xFC, 0xC0, 0x76, 0x6C, 0x01, 0x8E, 0x37, 0xFD, 0x80, 0x06, 0xCC, - 0xFF, 0x70, 0x18, 0x03, 0x80, 0x38, 0x03, 0x00, 0x01, 0xFF, 0xBF, 0xF7, 0x00, 0xE0, 0x1C, 0x03, - 0x80, 0x7F, 0xCF, 0xF9, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0xFF, 0xFF, 0xF0, 0x3B, 0x87, - 0x70, 0x00, 0x7F, 0xEF, 0xFD, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1F, 0xF3, 0xFE, 0x70, 0x0E, 0x01, - 0xC0, 0x38, 0x07, 0x00, 0xFF, 0xFF, 0xFC, 0xFF, 0xF1, 0xFF, 0xE0, 0x38, 0x00, 0x70, 0x00, 0xE0, - 0x01, 0xFF, 0x03, 0xFF, 0x07, 0x9F, 0x0E, 0x0E, 0x1C, 0x1C, 0x38, 0x38, 0x70, 0x70, 0xE1, 0xE1, - 0xCF, 0x83, 0x9E, 0x00, 0x07, 0x01, 0xC0, 0xE0, 0x30, 0x00, 0x3F, 0xFF, 0xFF, 0x80, 0xE0, 0x38, - 0x0E, 0x03, 0x80, 0xE0, 0x38, 0x0E, 0x03, 0x80, 0xE0, 0x38, 0x0E, 0x03, 0x80, 0x0F, 0xE3, 0xFF, - 0x7C, 0x67, 0x00, 0xE0, 0x0E, 0x00, 0xFF, 0x8F, 0xF8, 0xE0, 0x0E, 0x00, 0xE0, 0x07, 0x00, 0x7C, - 0x63, 0xFF, 0x1F, 0xE0, 0x1F, 0xCF, 0xF9, 0xE7, 0x38, 0x07, 0x00, 0xE0, 0x1F, 0x80, 0xFC, 0x07, - 0xC0, 0x3C, 0x03, 0x80, 0x77, 0x3F, 0xFF, 0x9F, 0xE0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0xEE, - 0xEE, 0x00, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, - 0x38, 0x03, 0x81, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x81, 0xC0, 0xE0, 0x7E, 0x7F, - 0xF9, 0xF8, 0x0F, 0xF8, 0x00, 0x3F, 0xE0, 0x00, 0xE1, 0x80, 0x03, 0x86, 0x00, 0x0E, 0x18, 0x00, - 0x38, 0x7F, 0x80, 0xE1, 0xFF, 0x03, 0x86, 0x3E, 0x0E, 0x18, 0x38, 0x30, 0x60, 0x61, 0xC1, 0x81, - 0x87, 0x06, 0x0E, 0x78, 0x18, 0xFB, 0xE0, 0x7F, 0xCE, 0x01, 0xFE, 0x00, 0x00, 0x00, 0xE0, 0x70, - 0x0E, 0x07, 0x00, 0xE0, 0x70, 0x0E, 0x07, 0x00, 0xE0, 0x70, 0x0F, 0xFF, 0xFC, 0xFF, 0xFF, 0xEE, - 0x07, 0x1F, 0xE0, 0x70, 0x7E, 0x07, 0x07, 0xE0, 0x70, 0x7E, 0x07, 0x07, 0xE0, 0x71, 0xFE, 0x07, - 0xFE, 0xE0, 0x7F, 0x80, 0xFF, 0xF1, 0xFF, 0xE0, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xFF, 0x03, - 0xFF, 0x07, 0x9E, 0x0E, 0x0E, 0x1C, 0x1C, 0x38, 0x38, 0x70, 0x70, 0xE0, 0xE1, 0xC1, 0xC3, 0x83, - 0x80, 0x03, 0x00, 0x38, 0x03, 0x80, 0x18, 0x00, 0x00, 0x70, 0x7B, 0x83, 0x9C, 0x38, 0xE3, 0x87, - 0x38, 0x3B, 0x81, 0xF8, 0x0F, 0xC0, 0x7F, 0x03, 0xBC, 0x1C, 0xF0, 0xE3, 0xC7, 0x0F, 0x38, 0x3D, - 0xC0, 0xE0, 0x0C, 0x00, 0x70, 0x01, 0xC0, 0x06, 0x00, 0x00, 0x70, 0x1F, 0x81, 0xFC, 0x0F, 0xE0, - 0xFF, 0x0F, 0xF8, 0xEF, 0xC7, 0x7E, 0x73, 0xF7, 0x1F, 0xF8, 0xFF, 0x87, 0xF8, 0x3F, 0xC1, 0xFC, - 0x0F, 0xC0, 0x70, 0x1D, 0xC0, 0xFC, 0x03, 0xE0, 0x00, 0x0E, 0x07, 0x38, 0x39, 0xC1, 0xCE, 0x0C, - 0x38, 0xE1, 0xC7, 0x07, 0x30, 0x3F, 0x80, 0xFC, 0x03, 0xC0, 0x1E, 0x00, 0xE0, 0x4F, 0x03, 0xF0, - 0x1F, 0x00, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, - 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7F, 0xFF, 0xFF, 0xF0, 0x70, 0x07, 0x00, 0x70, 0x07, 0x00, 0x07, - 0x00, 0x1E, 0x00, 0x78, 0x03, 0xF0, 0x0D, 0xC0, 0x73, 0x01, 0xCE, 0x06, 0x18, 0x38, 0x70, 0xFF, - 0xC7, 0xFF, 0x1C, 0x0E, 0x60, 0x3B, 0x80, 0x7E, 0x01, 0xC0, 0xFF, 0xCF, 0xFC, 0xE0, 0x0E, 0x00, - 0xE0, 0x0F, 0xF8, 0xFF, 0xCE, 0x3E, 0xE0, 0xEE, 0x06, 0xE0, 0x6E, 0x0E, 0xE3, 0xEF, 0xFC, 0xFF, - 0x80, 0x7F, 0x8F, 0xFC, 0xE3, 0xEE, 0x0E, 0xE0, 0xEE, 0x3E, 0xFF, 0xCF, 0xFE, 0xE1, 0xEE, 0x07, - 0xE0, 0x7E, 0x07, 0xE1, 0xEF, 0xFE, 0x7F, 0x80, 0xFF, 0xFF, 0xFE, 0x03, 0x80, 0xE0, 0x38, 0x0E, - 0x03, 0x80, 0xE0, 0x38, 0x0E, 0x03, 0x80, 0xE0, 0x38, 0x0E, 0x00, 0x0F, 0xF8, 0x1F, 0xF0, 0x38, - 0x60, 0x70, 0xC0, 0xE1, 0x81, 0xC3, 0x03, 0x86, 0x07, 0x0C, 0x0C, 0x18, 0x38, 0x30, 0x70, 0x60, - 0xE0, 0xC3, 0x81, 0x9F, 0xFF, 0xFF, 0xFF, 0xF0, 0x07, 0xE0, 0x0F, 0xC0, 0x1F, 0x80, 0x38, 0xFF, - 0xDF, 0xFB, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x3F, 0xE7, 0xFC, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, - 0x01, 0xFF, 0xFF, 0xF8, 0x70, 0xE1, 0xCF, 0x1C, 0x78, 0xE3, 0x8E, 0x0E, 0x73, 0x80, 0xEE, 0xE0, - 0x1F, 0xF8, 0x01, 0xFF, 0x00, 0x1F, 0xC0, 0x07, 0xFC, 0x01, 0xDD, 0xC0, 0x73, 0xBC, 0x1E, 0x73, - 0xC3, 0x8E, 0x38, 0xE1, 0xC3, 0xBC, 0x38, 0x78, 0x7F, 0x8F, 0xF9, 0xCF, 0x00, 0x70, 0x0C, 0x07, - 0x87, 0xE0, 0xFE, 0x03, 0xE0, 0x1C, 0x03, 0x80, 0x77, 0x3F, 0xFF, 0x9F, 0xE0, 0xE0, 0x3F, 0x03, - 0xF8, 0x1F, 0xC1, 0xFE, 0x1F, 0xF1, 0xDF, 0x8E, 0xFC, 0xE7, 0xEE, 0x3F, 0xF1, 0xFF, 0x0F, 0xF0, - 0x7F, 0x83, 0xF8, 0x1F, 0x80, 0xE0, 0x1D, 0xC0, 0x7E, 0x03, 0xE0, 0x00, 0x0E, 0x03, 0xF0, 0x3F, - 0x81, 0xFC, 0x1F, 0xE1, 0xFF, 0x1D, 0xF8, 0xEF, 0xCE, 0x7E, 0xE3, 0xFF, 0x1F, 0xF0, 0xFF, 0x07, - 0xF8, 0x3F, 0x81, 0xF8, 0x0E, 0xE0, 0xF7, 0x07, 0x38, 0x71, 0xC7, 0x0E, 0x70, 0x77, 0x03, 0xF0, - 0x1F, 0x80, 0xFE, 0x07, 0x78, 0x39, 0xE1, 0xC7, 0x8E, 0x1E, 0x70, 0x7B, 0x81, 0xC0, 0x0F, 0xF8, - 0x3F, 0xE0, 0xE1, 0x83, 0x86, 0x0E, 0x18, 0x38, 0x60, 0xE1, 0x83, 0x86, 0x0E, 0x18, 0x30, 0x61, - 0xC1, 0x87, 0x06, 0x78, 0x1B, 0xE0, 0x6E, 0x01, 0x80, 0x70, 0x0E, 0x70, 0x0E, 0x78, 0x1E, 0x78, - 0x1F, 0x6C, 0x3F, 0x6C, 0x37, 0x66, 0x37, 0xE6, 0x67, 0xE7, 0x67, 0xE3, 0xE7, 0xE3, 0xC7, 0xE3, - 0xC7, 0xE1, 0xC7, 0xE0, 0x07, 0xE0, 0x03, 0xE0, 0x3E, 0x03, 0xE0, 0x3E, 0x03, 0xE0, 0x3E, 0x03, - 0xFF, 0xFF, 0xFF, 0xE0, 0x3E, 0x03, 0xE0, 0x3E, 0x03, 0xE0, 0x3E, 0x03, 0xE0, 0x30, 0x0F, 0xE0, - 0x7F, 0xE1, 0xF3, 0xE3, 0x81, 0xEE, 0x01, 0xDC, 0x03, 0xB8, 0x07, 0x70, 0x06, 0xE0, 0x1D, 0xC0, - 0x3B, 0x80, 0x73, 0x81, 0xE7, 0xCF, 0x87, 0xFE, 0x03, 0xF8, 0x00, 0xFF, 0xFF, 0xFF, 0xE0, 0x7E, - 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, - 0xE0, 0x70, 0x7F, 0x8F, 0xFC, 0xE3, 0xEE, 0x0E, 0xE0, 0xEE, 0x0E, 0xE3, 0xEF, 0xFC, 0xFF, 0x8E, - 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x00, 0x0F, 0xE3, 0xFF, 0x7C, 0x67, 0x00, 0xE0, - 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x07, 0x00, 0x7C, 0x63, 0xFF, 0x0F, 0xE0, - 0xFF, 0xFF, 0xFF, 0x06, 0x00, 0x60, 0x06, 0x00, 0x60, 0x06, 0x00, 0x60, 0x06, 0x00, 0x60, 0x06, - 0x00, 0x60, 0x06, 0x00, 0x60, 0x06, 0x00, 0xE0, 0x73, 0x83, 0x9C, 0x1C, 0xE0, 0xC3, 0x8E, 0x1C, - 0x70, 0x73, 0x03, 0xF8, 0x0F, 0xC0, 0x3C, 0x01, 0xE0, 0x0E, 0x04, 0xF0, 0x3F, 0x01, 0xF0, 0x00, - 0x01, 0x80, 0x01, 0x80, 0x1F, 0xF8, 0x3F, 0xFC, 0x7D, 0xBE, 0xF1, 0x8F, 0xE1, 0x87, 0xE1, 0x87, - 0xE1, 0x87, 0xE1, 0x87, 0xF1, 0x8F, 0x7D, 0xBE, 0x3F, 0xFC, 0x1F, 0xF8, 0x01, 0x80, 0x01, 0x80, - 0x70, 0x7B, 0x83, 0x8E, 0x38, 0x3B, 0xC1, 0xDC, 0x07, 0xC0, 0x1E, 0x00, 0xE0, 0x0F, 0x80, 0x7E, - 0x07, 0x70, 0x71, 0xC3, 0x87, 0x38, 0x3B, 0x80, 0xE0, 0xE0, 0x73, 0x81, 0xCE, 0x07, 0x38, 0x1C, - 0xE0, 0x73, 0x81, 0xCE, 0x07, 0x38, 0x1C, 0xE0, 0x73, 0x81, 0xCE, 0x07, 0x38, 0x1C, 0xE0, 0x73, - 0xFF, 0xFF, 0xFF, 0xC0, 0x07, 0x00, 0x1C, 0x00, 0x70, 0x01, 0xC0, 0xE0, 0xFC, 0x1F, 0x83, 0xF0, - 0x7E, 0x0F, 0xC1, 0xF8, 0x3F, 0x8F, 0x7F, 0xE7, 0xFC, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x38, - 0xE0, 0xE1, 0xF8, 0x38, 0x7E, 0x0E, 0x1F, 0x83, 0x87, 0xE0, 0xE1, 0xF8, 0x38, 0x7E, 0x0E, 0x1F, - 0x83, 0x87, 0xE0, 0xE1, 0xF8, 0x38, 0x7E, 0x0E, 0x1F, 0x83, 0x87, 0xE0, 0xE1, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFC, 0xE0, 0xE1, 0xCE, 0x0E, 0x1C, 0xE0, 0xE1, 0xCE, 0x0E, 0x1C, 0xE0, 0xE1, 0xCE, 0x0E, - 0x1C, 0xE0, 0xE1, 0xCE, 0x0E, 0x1C, 0xE0, 0xE1, 0xCE, 0x0E, 0x1C, 0xE0, 0xE1, 0xCE, 0x0E, 0x1C, - 0xE0, 0xE1, 0xCF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x07, 0x00, 0x00, 0x70, 0x00, 0x07, 0x00, - 0x00, 0x70, 0xFE, 0x01, 0xFC, 0x00, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xFE, 0x03, 0xFF, 0x07, - 0x3E, 0x0E, 0x1E, 0x1C, 0x1C, 0x38, 0x38, 0x70, 0xF0, 0xE3, 0xC1, 0xFF, 0x83, 0xFC, 0x00, 0xE0, - 0x07, 0xE0, 0x07, 0xE0, 0x07, 0xE0, 0x07, 0xE0, 0x07, 0xFF, 0x87, 0xFF, 0xC7, 0xE3, 0xE7, 0xE0, - 0xE7, 0xE0, 0xE7, 0xE0, 0xE7, 0xE0, 0xE7, 0xE3, 0xE7, 0xFF, 0xC7, 0x7F, 0x87, 0xE0, 0x0E, 0x00, + 0xC3, 0x66, 0x3C, 0x3C, 0x7B, 0xFC, 0xC0, 0x37, 0x6E, 0xEC, 0x76, 0x6C, 0x01, 0x8E, 0x37, 0xFD, + 0x80, 0x06, 0xCC, 0xFF, 0x70, 0x18, 0x03, 0x80, 0x38, 0x03, 0x00, 0x01, 0xFF, 0xBF, 0xF7, 0x00, + 0xE0, 0x1C, 0x03, 0x80, 0x7F, 0xCF, 0xF9, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0xFF, 0xFF, + 0xF0, 0x3B, 0x87, 0x70, 0x00, 0x7F, 0xEF, 0xFD, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1F, 0xF3, 0xFE, + 0x70, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xFF, 0xFF, 0xFC, 0xFF, 0xF1, 0xFF, 0xE0, 0x38, 0x00, + 0x70, 0x00, 0xE0, 0x01, 0xFF, 0x03, 0xFF, 0x07, 0x9F, 0x0E, 0x0E, 0x1C, 0x1C, 0x38, 0x38, 0x70, + 0x70, 0xE1, 0xE1, 0xCF, 0x83, 0x9E, 0x00, 0x07, 0x01, 0xC0, 0xE0, 0x30, 0x00, 0x3F, 0xFF, 0xFF, + 0x80, 0xE0, 0x38, 0x0E, 0x03, 0x80, 0xE0, 0x38, 0x0E, 0x03, 0x80, 0xE0, 0x38, 0x0E, 0x03, 0x80, + 0x0F, 0xE3, 0xFF, 0x7C, 0x67, 0x00, 0xE0, 0x0E, 0x00, 0xFF, 0x8F, 0xF8, 0xE0, 0x0E, 0x00, 0xE0, + 0x07, 0x00, 0x7C, 0x63, 0xFF, 0x1F, 0xE0, 0x1F, 0xCF, 0xF9, 0xE7, 0x38, 0x07, 0x00, 0xE0, 0x1F, + 0x80, 0xFC, 0x07, 0xC0, 0x3C, 0x03, 0x80, 0x77, 0x3F, 0xFF, 0x9F, 0xE0, 0xFF, 0xFF, 0xFF, 0xFF, + 0xFF, 0xF8, 0xEE, 0xEE, 0x00, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, + 0x38, 0x38, 0x38, 0x38, 0x03, 0x81, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x81, 0xC0, + 0xE0, 0x7E, 0x7F, 0xF9, 0xF8, 0x0F, 0xF8, 0x00, 0x3F, 0xE0, 0x00, 0xE1, 0x80, 0x03, 0x86, 0x00, + 0x0E, 0x18, 0x00, 0x38, 0x7F, 0x80, 0xE1, 0xFF, 0x03, 0x86, 0x3E, 0x0E, 0x18, 0x38, 0x30, 0x60, + 0x61, 0xC1, 0x81, 0x87, 0x06, 0x0E, 0x78, 0x18, 0xFB, 0xE0, 0x7F, 0xCE, 0x01, 0xFE, 0x00, 0x00, + 0x00, 0xE0, 0x70, 0x0E, 0x07, 0x00, 0xE0, 0x70, 0x0E, 0x07, 0x00, 0xE0, 0x70, 0x0F, 0xFF, 0xFC, + 0xFF, 0xFF, 0xEE, 0x07, 0x1F, 0xE0, 0x70, 0x7E, 0x07, 0x07, 0xE0, 0x70, 0x7E, 0x07, 0x07, 0xE0, + 0x71, 0xFE, 0x07, 0xFE, 0xE0, 0x7F, 0x80, 0xFF, 0xF1, 0xFF, 0xE0, 0x38, 0x00, 0x70, 0x00, 0xE0, + 0x01, 0xFF, 0x03, 0xFF, 0x07, 0x9E, 0x0E, 0x0E, 0x1C, 0x1C, 0x38, 0x38, 0x70, 0x70, 0xE0, 0xE1, + 0xC1, 0xC3, 0x83, 0x80, 0x03, 0x00, 0x38, 0x03, 0x80, 0x18, 0x00, 0x00, 0x70, 0x7B, 0x83, 0x9C, + 0x38, 0xE3, 0x87, 0x38, 0x3B, 0x81, 0xF8, 0x0F, 0xC0, 0x7F, 0x03, 0xBC, 0x1C, 0xF0, 0xE3, 0xC7, + 0x0F, 0x38, 0x3D, 0xC0, 0xE0, 0x0C, 0x00, 0x70, 0x01, 0xC0, 0x06, 0x00, 0x00, 0x70, 0x1F, 0x81, + 0xFC, 0x0F, 0xE0, 0xFF, 0x0F, 0xF8, 0xEF, 0xC7, 0x7E, 0x73, 0xF7, 0x1F, 0xF8, 0xFF, 0x87, 0xF8, + 0x3F, 0xC1, 0xFC, 0x0F, 0xC0, 0x70, 0x1D, 0xC0, 0xFC, 0x03, 0xE0, 0x00, 0x0E, 0x07, 0x38, 0x39, + 0xC1, 0xCE, 0x0C, 0x38, 0xE1, 0xC7, 0x07, 0x30, 0x3F, 0x80, 0xFC, 0x03, 0xC0, 0x1E, 0x00, 0xE0, + 0x4F, 0x03, 0xF0, 0x1F, 0x00, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, + 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7F, 0xFF, 0xFF, 0xF0, 0x70, 0x07, 0x00, 0x70, + 0x07, 0x00, 0x07, 0x00, 0x1E, 0x00, 0x78, 0x03, 0xF0, 0x0D, 0xC0, 0x73, 0x01, 0xCE, 0x06, 0x18, + 0x38, 0x70, 0xFF, 0xC7, 0xFF, 0x1C, 0x0E, 0x60, 0x3B, 0x80, 0x7E, 0x01, 0xC0, 0xFF, 0xCF, 0xFC, 0xE0, 0x0E, 0x00, 0xE0, 0x0F, 0xF8, 0xFF, 0xCE, 0x3E, 0xE0, 0xEE, 0x06, 0xE0, 0x6E, 0x0E, 0xE3, - 0xEF, 0xFC, 0x7F, 0x80, 0x7F, 0x0F, 0xFC, 0x63, 0xE0, 0x0E, 0x00, 0x70, 0x07, 0x1F, 0xF1, 0xFF, - 0x00, 0x70, 0x07, 0x00, 0x70, 0x0E, 0x63, 0xEF, 0xFC, 0x7F, 0x00, 0xE0, 0x7F, 0x0E, 0x0F, 0xF8, - 0xE1, 0xF3, 0xCE, 0x3C, 0x0E, 0xE3, 0x80, 0xEE, 0x38, 0x07, 0xFF, 0x80, 0x7F, 0xF8, 0x07, 0xE3, - 0x80, 0x7E, 0x38, 0x07, 0xE3, 0x80, 0xEE, 0x1C, 0x0E, 0xE1, 0xF3, 0xCE, 0x0F, 0xFC, 0xE0, 0x7F, - 0x00, 0x1F, 0xF3, 0xFF, 0x7C, 0x77, 0x07, 0x70, 0x77, 0x07, 0x7C, 0x73, 0xFF, 0x1F, 0xF1, 0xC7, - 0x1C, 0x73, 0x87, 0x38, 0x77, 0x07, 0x70, 0x70, 0x3F, 0x0F, 0xE3, 0x3C, 0x07, 0x3F, 0xDF, 0xF7, - 0x9D, 0x87, 0x71, 0xDF, 0xF3, 0xFC, 0x07, 0xC3, 0xF8, 0xFE, 0x38, 0x06, 0x01, 0xFF, 0x3F, 0xF7, - 0x9E, 0xE0, 0xFC, 0x1F, 0x83, 0xF0, 0x7E, 0x1C, 0xF7, 0x9F, 0xE1, 0xF8, 0xFF, 0x3F, 0xEE, 0x3B, - 0x8E, 0xFF, 0xBF, 0xEE, 0x3F, 0x87, 0xE3, 0xFF, 0xEF, 0xF0, 0xFF, 0xFF, 0xE0, 0xE0, 0xE0, 0xE0, - 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0x1F, 0xE0, 0xFF, 0x07, 0x38, 0x39, 0xC1, 0xCE, 0x0C, 0x70, 0xE3, - 0x87, 0x1C, 0x70, 0xE7, 0xFF, 0xFF, 0xFF, 0xC0, 0x7E, 0x03, 0xF0, 0x1C, 0x3F, 0x1F, 0xEF, 0x3F, - 0x87, 0xFF, 0xFF, 0xFE, 0x03, 0x80, 0xF9, 0x9F, 0xE3, 0xF8, 0x71, 0x8E, 0x39, 0x9C, 0x39, 0x9C, - 0x1D, 0xB8, 0x0F, 0xF0, 0x07, 0xE0, 0x0F, 0xF0, 0x1D, 0xB8, 0x39, 0x9C, 0x71, 0x8E, 0xE1, 0x87, - 0x7F, 0x1F, 0xE6, 0x38, 0x0E, 0x3F, 0x0F, 0xE0, 0x38, 0x07, 0x63, 0xDF, 0xE7, 0xF0, 0xE1, 0xF8, - 0xFE, 0x3F, 0x9F, 0xEE, 0xFB, 0x3F, 0xCF, 0xE3, 0xF0, 0xFC, 0x3E, 0x0C, 0x3B, 0x8F, 0xC1, 0xF0, - 0x00, 0x00, 0x38, 0x7E, 0x3F, 0x8F, 0xE7, 0xFB, 0xBE, 0xCF, 0xF3, 0xF8, 0xFC, 0x3F, 0x0F, 0x83, - 0xE3, 0xF9, 0xEE, 0x73, 0xB8, 0xFC, 0x3E, 0x0F, 0xE3, 0xBC, 0xE7, 0xB8, 0xEE, 0x1C, 0x1F, 0xE3, - 0xFC, 0x71, 0x8E, 0x31, 0xC6, 0x38, 0xC6, 0x19, 0xC3, 0x78, 0x7E, 0x0F, 0x81, 0x80, 0x70, 0x3B, - 0x83, 0xDE, 0x1E, 0xF1, 0xFF, 0xCF, 0xF6, 0xFF, 0xB6, 0xFC, 0xF3, 0xE7, 0x1F, 0x38, 0xF8, 0x06, - 0xE1, 0xF8, 0x7E, 0x1F, 0x87, 0xFF, 0xFF, 0xFE, 0x1F, 0x87, 0xE1, 0xF8, 0x7E, 0x1C, 0x3F, 0x0F, - 0xF3, 0xEF, 0x70, 0xEE, 0x0F, 0xC1, 0xF8, 0x3F, 0x0E, 0xF3, 0xCF, 0xF0, 0xFC, 0x00, 0xFF, 0xFF, - 0xFE, 0x1F, 0x87, 0xE1, 0xF8, 0x7E, 0x1F, 0x87, 0xE1, 0xF8, 0x7E, 0x1C, 0xFF, 0x1F, 0xF3, 0x8F, - 0x70, 0xEE, 0x0F, 0xC1, 0xF8, 0x3F, 0x0E, 0xF3, 0xDF, 0xF3, 0xFC, 0x70, 0x0E, 0x01, 0xC0, 0x38, - 0x00, 0x3F, 0x3F, 0xBE, 0x5C, 0x0E, 0x07, 0x03, 0x81, 0xC0, 0xF9, 0x3F, 0xCF, 0xE0, 0xFF, 0xFF, - 0xF0, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC0, 0xE0, 0xDC, 0x39, 0xC7, - 0x38, 0xC7, 0x18, 0x77, 0x0E, 0xE0, 0xD8, 0x1F, 0x01, 0xC0, 0x38, 0x07, 0x01, 0xC1, 0xF8, 0x3E, - 0x00, 0x03, 0x00, 0x06, 0x00, 0x0C, 0x00, 0x18, 0x00, 0x30, 0x03, 0xFC, 0x1F, 0xFE, 0x3D, 0xBE, - 0xE3, 0x1D, 0xC6, 0x1B, 0x0C, 0x37, 0x18, 0x6E, 0x31, 0xCF, 0x6F, 0x9F, 0xFE, 0x0F, 0xF0, 0x03, - 0x00, 0x06, 0x00, 0x0C, 0x00, 0x18, 0x00, 0xE1, 0xCE, 0x70, 0xEE, 0x0F, 0x81, 0xE0, 0x1C, 0x07, - 0xC1, 0xF8, 0x73, 0x8E, 0x3B, 0x83, 0x00, 0xE1, 0xDC, 0x3B, 0x87, 0x70, 0xEE, 0x1D, 0xC3, 0xB8, - 0x77, 0x0E, 0xE1, 0xDF, 0xFF, 0xFF, 0x80, 0x30, 0x06, 0x00, 0xC0, 0x61, 0xD8, 0x76, 0x1D, 0x87, - 0x71, 0xDF, 0xF3, 0xFC, 0x07, 0x01, 0xC0, 0x70, 0x1C, 0xE3, 0x8F, 0xC7, 0x1F, 0x8E, 0x3F, 0x1C, - 0x7E, 0x38, 0xFC, 0x71, 0xF8, 0xE3, 0xF1, 0xC7, 0xE3, 0x8F, 0xFF, 0xFF, 0xFF, 0xF8, 0xE3, 0x8E, - 0x71, 0xC7, 0x38, 0xE3, 0x9C, 0x71, 0xCE, 0x38, 0xE7, 0x1C, 0x73, 0x8E, 0x39, 0xC7, 0x1C, 0xE3, - 0x8E, 0x7F, 0xFF, 0xBF, 0xFF, 0xC0, 0x00, 0x60, 0x00, 0x30, 0x00, 0x18, 0xF8, 0x0F, 0x80, 0x18, - 0x01, 0xFE, 0x1F, 0xF1, 0xCF, 0x18, 0x71, 0x87, 0x1C, 0xF1, 0xFF, 0x1F, 0xE0, 0xE0, 0x1F, 0x80, - 0x7E, 0x01, 0xF8, 0x07, 0xFF, 0x1F, 0xFE, 0x7E, 0x39, 0xF8, 0x77, 0xE3, 0x9F, 0xFE, 0x7F, 0xF1, - 0xC0, 0xE0, 0x38, 0x0E, 0x03, 0xFC, 0xFF, 0xB8, 0xFE, 0x1F, 0x87, 0xE3, 0xFF, 0xEF, 0xF0, 0x7E, - 0x1F, 0xC6, 0x78, 0x06, 0x1F, 0xC7, 0xF0, 0x1C, 0x0E, 0x47, 0xBF, 0xCF, 0xE0, 0xE1, 0xF9, 0xC7, - 0xFB, 0x9E, 0x7F, 0x38, 0x7F, 0xE0, 0xFF, 0xC0, 0xF9, 0x83, 0xF3, 0x87, 0xE7, 0x9F, 0xC7, 0xFB, - 0x87, 0xE0, 0x1F, 0xCF, 0xF7, 0x9D, 0xC3, 0x78, 0xDF, 0xF3, 0xFC, 0xE3, 0x30, 0xDC, 0x36, 0x0C, - 0x18, 0x0F, 0x01, 0xC0, 0x30, 0x00, 0x0F, 0xC7, 0xFB, 0xCF, 0xE1, 0xFF, 0xFF, 0xFF, 0x80, 0xE0, - 0x3E, 0x67, 0xF8, 0xFE, 0x33, 0x0C, 0xC0, 0x00, 0x00, 0x3F, 0x1F, 0xEF, 0x3F, 0x87, 0xFF, 0xFF, - 0xFE, 0x03, 0x80, 0xF9, 0x9F, 0xE3, 0xF8, 0x70, 0x1F, 0xE3, 0xFC, 0x38, 0x07, 0x00, 0xFF, 0x1F, - 0xF3, 0xCE, 0x70, 0xEE, 0x1D, 0xC3, 0xB8, 0x77, 0x0E, 0xE1, 0xDC, 0x3B, 0x87, 0x00, 0xE0, 0x1C, - 0x0F, 0x01, 0xE0, 0x06, 0x0E, 0x1C, 0x18, 0x00, 0xFF, 0xFF, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, - 0xE0, 0xE0, 0xE0, 0x3F, 0xBF, 0xFC, 0x5C, 0x0F, 0xE7, 0xF3, 0x81, 0xC0, 0xF9, 0xBF, 0xCF, 0xE0, - 0x3F, 0x3F, 0x9C, 0xCE, 0x07, 0xC1, 0xF8, 0x3E, 0x07, 0x47, 0xBF, 0xDF, 0xC0, 0xFC, 0x01, 0xFF, - 0xFF, 0xFF, 0xFF, 0xEF, 0xDC, 0x00, 0x03, 0x87, 0x0E, 0x1C, 0x38, 0x70, 0xE1, 0xC3, 0x87, 0x0E, - 0x00, 0x1C, 0x70, 0x00, 0x00, 0x71, 0xC7, 0x1C, 0x71, 0xC7, 0x1C, 0x71, 0xC7, 0x1C, 0xFF, 0xBE, - 0x1F, 0xE0, 0x07, 0xF8, 0x01, 0xC6, 0x00, 0x71, 0x80, 0x1C, 0x7F, 0x07, 0x1F, 0xE1, 0x86, 0x3C, - 0xE1, 0x87, 0xF8, 0x63, 0xFC, 0x1F, 0xEE, 0x07, 0xF0, 0xE1, 0xC0, 0x70, 0xE0, 0x38, 0x70, 0x1C, - 0x38, 0x0F, 0xFF, 0xE7, 0xFF, 0xFB, 0x87, 0x1D, 0xC3, 0x87, 0xE1, 0xC7, 0x70, 0xFF, 0xB8, 0x7F, - 0x80, 0x70, 0x1F, 0xE3, 0xFC, 0x38, 0x07, 0x00, 0xFF, 0x1F, 0xF3, 0xCF, 0x70, 0xEE, 0x1D, 0xC3, - 0xB8, 0x77, 0x0E, 0xE1, 0xDC, 0x3B, 0x87, 0x06, 0x03, 0xC0, 0xE0, 0x30, 0x00, 0x38, 0xFE, 0x7B, - 0x9C, 0xEE, 0x3F, 0x0F, 0x83, 0xF8, 0xEF, 0x39, 0xEE, 0x3B, 0x87, 0x18, 0x07, 0x00, 0xE0, 0x18, - 0x00, 0x38, 0x7E, 0x3F, 0x8F, 0xE7, 0xFB, 0xBE, 0xCF, 0xF3, 0xF8, 0xFC, 0x3F, 0x0F, 0x83, 0x3B, - 0x87, 0xF0, 0x7C, 0x00, 0x00, 0x01, 0xC1, 0xB8, 0x73, 0x8E, 0x71, 0x8E, 0x30, 0xEE, 0x1D, 0xC1, - 0xB0, 0x3E, 0x03, 0x80, 0x70, 0x0E, 0x03, 0x83, 0xF0, 0x7C, 0x00, 0xE1, 0xF8, 0x7E, 0x1F, 0x87, - 0xE1, 0xF8, 0x7E, 0x1F, 0x87, 0xE1, 0xFF, 0xFF, 0xFC, 0x30, 0x0C, 0x03, 0x00, 0x0E, 0x00, 0x1C, - 0x03, 0xFF, 0x87, 0xFF, 0x00, 0xE0, 0x01, 0xC0, 0x03, 0xFC, 0x07, 0xFE, 0x0E, 0x7C, 0x1C, 0x1C, - 0x38, 0x38, 0x70, 0x70, 0xE1, 0xE1, 0xC7, 0x83, 0xFF, 0x07, 0xF8, 0x18, 0x01, 0x80, 0x18, 0x01, - 0x80, 0x18, 0x0F, 0xF8, 0xFF, 0x81, 0x80, 0x1F, 0xE1, 0xFF, 0x1C, 0xF1, 0x87, 0x18, 0x71, 0xCF, - 0x1F, 0xF1, 0xFE, 0x0F, 0xE0, 0x7F, 0xE1, 0xF3, 0xE3, 0x81, 0xEE, 0x01, 0xDF, 0xC3, 0xBF, 0xE7, - 0x79, 0xFE, 0xE1, 0xFD, 0xC0, 0x3B, 0x80, 0x73, 0x81, 0xE7, 0xCF, 0x87, 0xFE, 0x03, 0xF8, 0x00, - 0x3F, 0x0F, 0xF3, 0xCF, 0x7C, 0xEF, 0xFF, 0xDF, 0xF9, 0xFF, 0x06, 0xFB, 0xCF, 0xF0, 0xFC, 0x00, - 0xE0, 0x0F, 0x70, 0x0F, 0x9C, 0x0F, 0xCE, 0x07, 0x07, 0x03, 0x01, 0xC3, 0x80, 0xE1, 0xC0, 0x71, - 0xC0, 0x1C, 0xE0, 0x0E, 0x60, 0x03, 0xF0, 0x01, 0xF8, 0x00, 0xF8, 0x00, 0x3C, 0x00, 0x1C, 0x00, - 0xE0, 0xFE, 0x0F, 0x71, 0xC7, 0x18, 0x73, 0x83, 0xB8, 0x3B, 0x01, 0xF0, 0x1F, 0x01, 0xE0, 0x0E, - 0x00, 0x1D, 0xC0, 0x1F, 0x80, 0x3E, 0x00, 0x00, 0x0E, 0x03, 0x9C, 0x0F, 0x38, 0x1E, 0x70, 0x7C, - 0xE1, 0xF9, 0xC7, 0x73, 0x8E, 0xE7, 0x39, 0xCE, 0xE3, 0x9F, 0xC7, 0x3F, 0x0E, 0x7C, 0x1C, 0xF8, - 0x39, 0xE0, 0x7F, 0x80, 0xF8, 0x00, 0x60, 0x01, 0xC0, 0x03, 0x00, 0x0E, 0x00, 0x3B, 0x83, 0xF0, - 0x1F, 0x00, 0x00, 0x00, 0x0E, 0x1C, 0xE3, 0xCE, 0x3C, 0xE7, 0xCE, 0xEC, 0xEC, 0xCF, 0xCC, 0xF8, - 0xCF, 0x0C, 0xF0, 0xCE, 0x0F, 0x00, 0x70, 0x07, 0x00, 0xE0, 0x0C, 0x30, 0x01, 0x80, 0x3F, 0x81, - 0xFC, 0x03, 0x00, 0x18, 0x00, 0xFF, 0x07, 0xFE, 0x39, 0xF1, 0x83, 0xCC, 0x0E, 0x60, 0x73, 0x07, - 0x9C, 0xF8, 0xFF, 0xC7, 0xF8, 0xFE, 0x1F, 0xC1, 0xC0, 0x38, 0x07, 0xF8, 0xFF, 0x9C, 0x7B, 0x87, - 0x71, 0xEF, 0xF8, 0xFE, 0x00, 0x7F, 0x8F, 0xFC, 0xE3, 0xEE, 0x0E, 0xE0, 0xEE, 0x6E, 0xE7, 0xEF, - 0xFC, 0xFF, 0x8E, 0x18, 0xE1, 0xCE, 0x0C, 0xE0, 0x0E, 0x00, 0xE0, 0x00, 0xFF, 0x1F, 0xF3, 0x8F, - 0x70, 0xEE, 0x0F, 0xC1, 0xF9, 0xBF, 0x3E, 0xF7, 0xDF, 0xF3, 0xFE, 0x70, 0xCE, 0x19, 0xC0, 0x38, - 0x00, 0x01, 0xC0, 0x70, 0x1F, 0xFF, 0xFF, 0xF8, 0x0E, 0x03, 0x80, 0xE0, 0x38, 0x0E, 0x03, 0x80, - 0xE0, 0x38, 0x0E, 0x03, 0x80, 0xE0, 0x38, 0x00, 0x03, 0x03, 0x03, 0xFF, 0xFF, 0xE0, 0xE0, 0xE0, - 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0x3F, 0xE7, 0xFC, 0xC0, 0x18, 0x03, 0x00, 0x60, 0x3F, 0xC7, - 0xF8, 0x30, 0x06, 0x00, 0xC0, 0x18, 0x03, 0x00, 0x60, 0x0C, 0x00, 0x7F, 0xBF, 0xDC, 0x0E, 0x07, - 0x07, 0xF3, 0xF8, 0xE0, 0x70, 0x38, 0x1C, 0x00, 0xFF, 0xCF, 0xFC, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, - 0x00, 0xFF, 0x8F, 0xFC, 0xF3, 0xEE, 0x0E, 0xE0, 0x6E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0xE0, 0x0E, - 0x03, 0xE0, 0xFC, 0x0F, 0x80, 0xFF, 0x3F, 0xCE, 0x03, 0x80, 0xFF, 0x3F, 0xEE, 0x3F, 0x87, 0xE1, - 0xF8, 0x7E, 0x1C, 0x07, 0x03, 0x83, 0xE0, 0xF0, 0x70, 0xE1, 0xC7, 0x8E, 0x3C, 0x38, 0xE7, 0x81, - 0xCE, 0x70, 0x0E, 0xEE, 0x00, 0x7F, 0xC0, 0x07, 0xFC, 0x00, 0x3F, 0x80, 0x07, 0xFC, 0x00, 0xEE, - 0xE0, 0x1C, 0xEF, 0x03, 0xCE, 0x78, 0x38, 0xE3, 0xC7, 0x0E, 0x1F, 0xF0, 0xE1, 0xF0, 0x00, 0x07, - 0x00, 0x00, 0x70, 0x00, 0x07, 0x00, 0x00, 0x70, 0x71, 0x8E, 0x1C, 0xCE, 0x0E, 0x67, 0x03, 0xB7, - 0x00, 0xFF, 0x00, 0x3F, 0x80, 0x3F, 0xE0, 0x3B, 0xF8, 0x39, 0x9E, 0x38, 0xC7, 0xF8, 0x61, 0xE0, - 0x00, 0x70, 0x00, 0x38, 0x00, 0x1C, 0x7F, 0x8F, 0xF9, 0xCF, 0x00, 0x70, 0x0C, 0x07, 0x87, 0xE0, - 0xFE, 0x03, 0xE0, 0x1C, 0x03, 0x80, 0x77, 0x3F, 0xFF, 0x9F, 0xE0, 0x70, 0x07, 0x03, 0xC0, 0x7F, - 0x1F, 0xE6, 0x38, 0x0E, 0x3F, 0x0F, 0xE0, 0x38, 0x07, 0x63, 0x9F, 0xE7, 0xF0, 0x30, 0x0E, 0x0F, - 0x80, 0xE0, 0xF7, 0x0F, 0x38, 0x71, 0xC7, 0x0E, 0x70, 0x77, 0x03, 0xF0, 0x1F, 0x80, 0xFE, 0x07, - 0x78, 0x39, 0xE1, 0xC7, 0x8E, 0x1E, 0x70, 0x7F, 0x81, 0xE0, 0x07, 0x00, 0x38, 0x01, 0xC0, 0x0E, - 0xE3, 0xDC, 0xF3, 0x9C, 0x77, 0x0F, 0xC1, 0xF0, 0x3F, 0x87, 0x78, 0xE7, 0x9C, 0x7F, 0x87, 0x80, - 0x70, 0x0E, 0x01, 0xC0, 0x00, 0xE0, 0x3B, 0x81, 0xCE, 0x0F, 0x38, 0x38, 0xED, 0xC3, 0xBE, 0x0E, - 0xF8, 0x3F, 0xC0, 0xFF, 0x83, 0xBF, 0x0E, 0xDE, 0x3B, 0x38, 0xE0, 0x73, 0x80, 0xEE, 0x03, 0x80, - 0xE0, 0xEE, 0x1C, 0xE1, 0xCE, 0xF8, 0xEF, 0x0F, 0xE0, 0xEF, 0x0E, 0xF8, 0xE1, 0xCE, 0x0E, 0xE0, - 0x70, 0x30, 0x38, 0xC1, 0xCF, 0xEE, 0x3F, 0xF0, 0x33, 0x80, 0xDC, 0x03, 0xF0, 0x0F, 0x80, 0x3F, - 0x00, 0xCE, 0x03, 0x1C, 0x0C, 0x38, 0x30, 0x70, 0xC1, 0xE3, 0x03, 0x80, 0x70, 0xEF, 0xDC, 0x73, - 0x87, 0x70, 0x7E, 0x07, 0xE0, 0x77, 0x07, 0x38, 0x73, 0xC7, 0x1E, 0x70, 0xE0, 0xFE, 0x0E, 0xFE, - 0x1C, 0x0E, 0x38, 0x0E, 0x70, 0x0E, 0xE0, 0x0F, 0xC0, 0x0F, 0xC0, 0x0F, 0x80, 0x0F, 0xC0, 0x0E, - 0xE0, 0x0E, 0x70, 0x0E, 0x38, 0x0E, 0x1C, 0x0E, 0x1E, 0x0E, 0x0E, 0xF8, 0x77, 0xC7, 0x06, 0x70, - 0x37, 0x01, 0xF0, 0x0F, 0x80, 0x7E, 0x03, 0x38, 0x18, 0xE0, 0xC3, 0x86, 0x1E, 0xE0, 0x33, 0x80, - 0xCE, 0x03, 0x38, 0x0C, 0xE0, 0x33, 0x80, 0xCF, 0xFF, 0x3F, 0xFC, 0xE0, 0x33, 0x80, 0xCE, 0x03, - 0x38, 0x0C, 0xE0, 0x33, 0x80, 0xFE, 0x03, 0xC0, 0x03, 0x00, 0x0C, 0x00, 0x30, 0x00, 0xC0, 0xE1, - 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0xFF, 0xCF, 0xFC, 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, 0x1E, 0xE1, 0xE0, - 0x06, 0x00, 0x60, 0x06, 0xE0, 0x3F, 0xE0, 0x3F, 0xE0, 0x30, 0xE0, 0x30, 0xE0, 0x30, 0xE0, 0x30, - 0xFF, 0xF0, 0xFF, 0xF0, 0xE0, 0x30, 0xE0, 0x30, 0xE0, 0x30, 0xE0, 0x30, 0xE0, 0x30, 0xE0, 0x30, - 0xE0, 0x30, 0xE1, 0xFF, 0x0F, 0xF8, 0x71, 0xC3, 0x8F, 0xFC, 0x7F, 0xE3, 0x87, 0x1C, 0x38, 0xE1, - 0xC7, 0x0E, 0x38, 0x70, 0xFF, 0xF0, 0x0F, 0xFF, 0x00, 0xE0, 0x70, 0x0E, 0x07, 0x00, 0xE0, 0x70, - 0x0E, 0x07, 0x00, 0xE0, 0x7F, 0x8E, 0x07, 0xFE, 0xE0, 0x79, 0xEE, 0x07, 0x07, 0xE0, 0x70, 0x7E, - 0x07, 0x07, 0xE0, 0x70, 0x7E, 0x07, 0x07, 0xE0, 0x70, 0x70, 0x00, 0x0F, 0x00, 0x01, 0xE0, 0x00, - 0x7E, 0x00, 0x07, 0x80, 0xFF, 0xC0, 0x7F, 0xE0, 0x38, 0x70, 0x1C, 0x38, 0x0E, 0x1F, 0xE7, 0x0F, - 0xFB, 0x87, 0x3D, 0xC3, 0x87, 0xE1, 0xC3, 0xF0, 0xE1, 0xF8, 0x70, 0xE0, 0x00, 0x70, 0x00, 0xF0, - 0x00, 0xF8, 0x00, 0x78, 0x0F, 0xE0, 0x7F, 0xC1, 0xF1, 0x83, 0x80, 0x0E, 0x1F, 0x9C, 0x7F, 0xB8, - 0xF7, 0x71, 0x86, 0xE7, 0x0F, 0xCE, 0x1F, 0x9C, 0x33, 0x98, 0xE7, 0xFF, 0xC7, 0xFF, 0x03, 0xF8, - 0x00, 0xE0, 0x00, 0xF8, 0x00, 0xF8, 0x00, 0xF0, 0x3E, 0x0F, 0xC3, 0xE0, 0x73, 0xEC, 0xFF, 0x9D, - 0xF3, 0x1F, 0x67, 0xFF, 0xEF, 0xF8, 0xFE, 0x03, 0xC0, 0x3E, 0x03, 0xC0, 0x0F, 0xE3, 0xFF, 0x7C, + 0xEF, 0xFC, 0xFF, 0x80, 0x7F, 0x8F, 0xFC, 0xE3, 0xEE, 0x0E, 0xE0, 0xEE, 0x3E, 0xFF, 0xCF, 0xFE, + 0xE1, 0xEE, 0x07, 0xE0, 0x7E, 0x07, 0xE1, 0xEF, 0xFE, 0x7F, 0x80, 0xFF, 0xFF, 0xFE, 0x03, 0x80, + 0xE0, 0x38, 0x0E, 0x03, 0x80, 0xE0, 0x38, 0x0E, 0x03, 0x80, 0xE0, 0x38, 0x0E, 0x00, 0x0F, 0xF8, + 0x1F, 0xF0, 0x38, 0x60, 0x70, 0xC0, 0xE1, 0x81, 0xC3, 0x03, 0x86, 0x07, 0x0C, 0x0C, 0x18, 0x38, + 0x30, 0x70, 0x60, 0xE0, 0xC3, 0x81, 0x9F, 0xFF, 0xFF, 0xFF, 0xF0, 0x07, 0xE0, 0x0F, 0xC0, 0x1F, + 0x80, 0x38, 0xFF, 0xDF, 0xFB, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x3F, 0xE7, 0xFC, 0xE0, 0x1C, 0x03, + 0x80, 0x70, 0x0E, 0x01, 0xFF, 0xFF, 0xF8, 0x70, 0xE1, 0xCF, 0x1C, 0x78, 0xE3, 0x8E, 0x0E, 0x73, + 0x80, 0xEE, 0xE0, 0x1F, 0xF8, 0x01, 0xFF, 0x00, 0x1F, 0xC0, 0x07, 0xFC, 0x01, 0xDD, 0xC0, 0x73, + 0xBC, 0x1E, 0x73, 0xC3, 0x8E, 0x38, 0xE1, 0xC3, 0xBC, 0x38, 0x78, 0x7F, 0x8F, 0xF9, 0xCF, 0x00, + 0x70, 0x0C, 0x07, 0x87, 0xE0, 0xFE, 0x03, 0xE0, 0x1C, 0x03, 0x80, 0x77, 0x3F, 0xFF, 0x9F, 0xE0, + 0xE0, 0x3F, 0x03, 0xF8, 0x1F, 0xC1, 0xFE, 0x1F, 0xF1, 0xDF, 0x8E, 0xFC, 0xE7, 0xEE, 0x3F, 0xF1, + 0xFF, 0x0F, 0xF0, 0x7F, 0x83, 0xF8, 0x1F, 0x80, 0xE0, 0x1D, 0xC0, 0x7E, 0x03, 0xE0, 0x00, 0x0E, + 0x03, 0xF0, 0x3F, 0x81, 0xFC, 0x1F, 0xE1, 0xFF, 0x1D, 0xF8, 0xEF, 0xCE, 0x7E, 0xE3, 0xFF, 0x1F, + 0xF0, 0xFF, 0x07, 0xF8, 0x3F, 0x81, 0xF8, 0x0E, 0xE0, 0xF7, 0x07, 0x38, 0x71, 0xC7, 0x0E, 0x70, + 0x77, 0x03, 0xF0, 0x1F, 0x80, 0xFE, 0x07, 0x78, 0x39, 0xE1, 0xC7, 0x8E, 0x1E, 0x70, 0x7B, 0x81, + 0xC0, 0x0F, 0xF8, 0x3F, 0xE0, 0xE1, 0x83, 0x86, 0x0E, 0x18, 0x38, 0x60, 0xE1, 0x83, 0x86, 0x0E, + 0x18, 0x30, 0x61, 0xC1, 0x87, 0x06, 0x78, 0x1B, 0xE0, 0x6E, 0x01, 0x80, 0x70, 0x0E, 0x70, 0x0E, + 0x78, 0x1E, 0x78, 0x1F, 0x6C, 0x3F, 0x6C, 0x37, 0x66, 0x37, 0xE6, 0x67, 0xE7, 0x67, 0xE3, 0xE7, + 0xE3, 0xC7, 0xE3, 0xC7, 0xE1, 0xC7, 0xE0, 0x07, 0xE0, 0x03, 0xE0, 0x3E, 0x03, 0xE0, 0x3E, 0x03, + 0xE0, 0x3E, 0x03, 0xFF, 0xFF, 0xFF, 0xE0, 0x3E, 0x03, 0xE0, 0x3E, 0x03, 0xE0, 0x3E, 0x03, 0xE0, + 0x30, 0x0F, 0xE0, 0x7F, 0xE1, 0xF3, 0xE3, 0x81, 0xEE, 0x01, 0xDC, 0x03, 0xB8, 0x07, 0x70, 0x06, + 0xE0, 0x1D, 0xC0, 0x3B, 0x80, 0x73, 0x81, 0xE7, 0xCF, 0x87, 0xFE, 0x03, 0xF8, 0x00, 0xFF, 0xFF, + 0xFF, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, + 0xE0, 0x7E, 0x07, 0xE0, 0x70, 0x7F, 0x8F, 0xFC, 0xE3, 0xEE, 0x0E, 0xE0, 0xEE, 0x0E, 0xE3, 0xEF, + 0xFC, 0xFF, 0x8E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x00, 0x0F, 0xE3, 0xFF, 0x7C, 0x67, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x07, 0x00, 0x7C, 0x63, - 0xFF, 0x1F, 0xE0, 0x70, 0x03, 0x80, 0xF0, 0x3F, 0x3F, 0xBE, 0x5C, 0x0E, 0x07, 0x03, 0x81, 0xC0, - 0xF9, 0x3F, 0xCF, 0xE1, 0x80, 0xE0, 0x70, 0xF8, 0xFF, 0xFF, 0xFF, 0x06, 0x00, 0x60, 0x06, 0x00, - 0x60, 0x06, 0x00, 0x60, 0x06, 0x00, 0x60, 0x06, 0x00, 0x60, 0x06, 0x00, 0x78, 0x07, 0x80, 0x18, - 0x01, 0x80, 0x18, 0x01, 0x80, 0xFF, 0xFF, 0xF0, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x0C, - 0x03, 0xC0, 0xF0, 0x1C, 0x07, 0x01, 0xC0, 0xE0, 0x3B, 0x83, 0x9C, 0x38, 0x71, 0xC3, 0x9C, 0x0E, - 0xE0, 0x7E, 0x01, 0xF0, 0x07, 0x00, 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, - 0xE0, 0xDC, 0x39, 0xC7, 0x38, 0xE7, 0x38, 0x77, 0x0E, 0xC1, 0xF8, 0x1F, 0x03, 0xC0, 0x38, 0x07, - 0x00, 0xE0, 0x1C, 0x03, 0x80, 0xE0, 0x3B, 0x83, 0x9C, 0x18, 0x71, 0xC3, 0x9C, 0x0E, 0xE0, 0x7E, - 0x01, 0xF0, 0x0F, 0x01, 0xFF, 0x0F, 0xF8, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, 0xE0, 0xDC, - 0x39, 0xC7, 0x38, 0xC7, 0x38, 0x77, 0x0E, 0xC0, 0xF8, 0x1E, 0x0F, 0xF1, 0xFE, 0x07, 0x00, 0xE0, - 0x1C, 0x03, 0x80, 0x70, 0x79, 0xC1, 0xC3, 0x8E, 0x07, 0x78, 0x1F, 0xC0, 0x3E, 0x00, 0x78, 0x01, - 0xE0, 0x0F, 0x80, 0x3F, 0x01, 0xDE, 0x0E, 0x38, 0x38, 0x71, 0xC1, 0xFE, 0x03, 0xC0, 0x07, 0x00, - 0x1C, 0x00, 0x70, 0x01, 0xC0, 0xF1, 0xCE, 0x70, 0xEE, 0x0F, 0x81, 0xE0, 0x1C, 0x07, 0xC1, 0xFC, - 0x73, 0x8E, 0x3F, 0x83, 0x80, 0x30, 0x06, 0x00, 0xC0, 0xFF, 0xE7, 0x3F, 0xF9, 0xC0, 0xE0, 0x70, - 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x81, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x81, 0xC0, - 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0xFF, 0xF0, 0xFF, 0xFC, 0x00, 0x07, 0x00, 0x01, 0xC0, - 0x00, 0x70, 0x00, 0x1C, 0xFF, 0x33, 0xFC, 0xC1, 0xC3, 0x07, 0x0C, 0x1C, 0x30, 0x70, 0xC1, 0xC3, - 0x07, 0x0C, 0x1C, 0x30, 0x7F, 0xF1, 0xFF, 0xC0, 0x07, 0x00, 0x1C, 0x00, 0x70, 0xE0, 0xE7, 0x07, - 0x38, 0x39, 0xC1, 0xCE, 0x0E, 0x70, 0x73, 0x83, 0x9E, 0x3C, 0x7F, 0xE1, 0xFF, 0x00, 0x38, 0x01, - 0xC0, 0x0E, 0x00, 0x7C, 0x03, 0xE0, 0x07, 0x00, 0x38, 0x01, 0xC0, 0x0E, 0x61, 0xCC, 0x39, 0x87, - 0x30, 0xE7, 0x1C, 0xFF, 0x8F, 0xF0, 0x0E, 0x01, 0xC0, 0x3C, 0x07, 0x80, 0x30, 0x06, 0x00, 0xC0, - 0xE0, 0xFC, 0x1F, 0x83, 0xF0, 0x7E, 0x0F, 0xDD, 0xFB, 0xBF, 0xFF, 0x7F, 0xE7, 0xFC, 0x3B, 0x87, - 0x70, 0xEE, 0x01, 0xC0, 0x38, 0xE1, 0xF8, 0x7E, 0x1F, 0xB7, 0x7D, 0xDF, 0xF3, 0xFC, 0x37, 0x0D, - 0xC0, 0x70, 0x1C, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0F, 0xFC, 0xFF, 0xEF, 0x1E, 0xE0, - 0xEE, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x70, 0xE0, 0x38, 0x0E, 0x03, 0x80, 0xE0, - 0x3F, 0xCF, 0xFB, 0xCF, 0xE1, 0xF8, 0x7E, 0x1F, 0x87, 0xE1, 0xF8, 0x7E, 0x1F, 0x87, 0x01, 0xFC, - 0x01, 0xFF, 0x01, 0xE7, 0xC1, 0xE0, 0xEC, 0xE0, 0x37, 0x70, 0x1F, 0xFF, 0xFE, 0xFF, 0xFF, 0x0E, - 0x00, 0x07, 0x00, 0x03, 0x80, 0x01, 0xE0, 0x00, 0x7C, 0x60, 0x1F, 0xF8, 0x07, 0xF8, 0x07, 0xE0, - 0x7F, 0xB3, 0xDF, 0xF8, 0x7F, 0xFF, 0xBF, 0xFC, 0x70, 0x03, 0x80, 0x0F, 0x10, 0x7F, 0x81, 0xFC, - 0x01, 0xFC, 0x01, 0xFF, 0x01, 0xE7, 0xC1, 0xE0, 0xEC, 0xE0, 0x37, 0x70, 0x1F, 0xFF, 0xFE, 0xFF, - 0xFF, 0x0E, 0x00, 0x07, 0x00, 0x03, 0x80, 0x01, 0xE0, 0x00, 0x7C, 0x60, 0x1F, 0xF8, 0x07, 0xF8, - 0x00, 0xE0, 0x00, 0x70, 0x00, 0x38, 0x00, 0x1C, 0x00, 0x07, 0xE0, 0x7F, 0xB3, 0xDF, 0xF8, 0x7F, - 0xFF, 0xBF, 0xFC, 0x70, 0x03, 0x80, 0x0F, 0x10, 0x7F, 0x80, 0xFC, 0x03, 0x80, 0x1C, 0x00, 0xE0, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x03, 0xB8, 0x00, 0x7F, 0x00, 0x07, 0xC0, 0x00, 0x00, 0x07, - 0x0E, 0x1C, 0xF1, 0xC7, 0x8E, 0x38, 0xE0, 0xE7, 0x38, 0x0E, 0xEE, 0x01, 0xFF, 0x80, 0x1F, 0xF0, - 0x01, 0xFC, 0x00, 0x7F, 0xC0, 0x1D, 0xDC, 0x07, 0x3B, 0xC1, 0xE7, 0x3C, 0x38, 0xE3, 0x8E, 0x1C, - 0x3B, 0xC3, 0x87, 0x80, 0x06, 0x60, 0x07, 0xE0, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x71, 0x8E, - 0x39, 0x9C, 0x39, 0x9C, 0x1D, 0xB8, 0x0F, 0xF0, 0x07, 0xE0, 0x0F, 0xF0, 0x1D, 0xB8, 0x39, 0x9C, - 0x71, 0x8E, 0xE1, 0x87, 0xE0, 0xEE, 0x1E, 0xE1, 0xCE, 0x38, 0xE7, 0x0E, 0xE0, 0xFC, 0x0F, 0xF8, - 0xFF, 0xCE, 0x3E, 0xE0, 0xEE, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x70, 0x0E, 0x01, 0xE0, 0xFC, 0x0F, - 0x80, 0xE3, 0xF8, 0xEE, 0x73, 0xB8, 0xFC, 0x3F, 0xCF, 0xFB, 0x9F, 0xE1, 0xF8, 0x7E, 0x1C, 0x07, - 0x03, 0xC3, 0xE0, 0xF0, 0x0F, 0xF8, 0x1F, 0xF0, 0x38, 0x60, 0x70, 0xC0, 0xE1, 0x81, 0xC3, 0x03, - 0x86, 0x07, 0x0C, 0x0E, 0x18, 0x18, 0x30, 0x70, 0x60, 0xE0, 0xC7, 0x81, 0x9F, 0x03, 0xF8, 0x07, - 0x80, 0x07, 0x00, 0x0E, 0x00, 0x38, 0x00, 0x60, 0x1F, 0xE0, 0xFF, 0x07, 0x18, 0x38, 0xC1, 0xC6, - 0x0E, 0x30, 0x61, 0x87, 0x0C, 0x78, 0x67, 0x83, 0x38, 0x1E, 0x00, 0x70, 0x03, 0x80, 0x38, 0x01, - 0x80, 0xE0, 0x3E, 0x03, 0xE0, 0x3E, 0x03, 0xE0, 0x3E, 0x03, 0xFF, 0xFF, 0xFF, 0xE0, 0x3E, 0x03, - 0xE0, 0x3E, 0x03, 0xE0, 0x3E, 0x03, 0xE0, 0x30, 0x03, 0x00, 0x70, 0x1F, 0x01, 0xE0, 0xE1, 0xF8, - 0x7E, 0x1F, 0x87, 0xFF, 0xFF, 0xFE, 0x1F, 0x87, 0xE1, 0xF8, 0x7E, 0x1C, 0x07, 0x01, 0xC1, 0xF0, - 0x78, 0xE0, 0x33, 0x80, 0xCE, 0x03, 0x38, 0x0C, 0xE0, 0x33, 0x80, 0xCF, 0xFF, 0x3F, 0xFC, 0xE0, - 0x33, 0x80, 0xCE, 0x03, 0x38, 0x0C, 0xE0, 0x33, 0x80, 0xFE, 0x03, 0xC0, 0x07, 0x00, 0x18, 0x00, - 0xE0, 0x03, 0x00, 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0xFF, 0xCF, 0xFC, 0xE1, 0xCE, 0x1C, 0xE1, - 0xCE, 0x1C, 0xE1, 0xF0, 0x07, 0x00, 0x60, 0x0E, 0x00, 0xC0, 0xE0, 0xFC, 0x1F, 0x83, 0xF0, 0x7E, - 0x0F, 0xC1, 0xF8, 0x3F, 0xCF, 0x7F, 0xE7, 0xFC, 0x03, 0x80, 0x70, 0x0E, 0x07, 0xC0, 0xF8, 0x1C, - 0x03, 0x80, 0x70, 0x0E, 0x00, 0x61, 0xD8, 0x76, 0x1D, 0x87, 0x71, 0xDF, 0xF3, 0xFC, 0x07, 0x01, - 0xC0, 0xF0, 0x3C, 0x0C, 0x03, 0x00, 0xC0, 0x70, 0x0E, 0x1C, 0x03, 0x87, 0x81, 0xE1, 0xE0, 0x7C, - 0x6C, 0x3F, 0x1B, 0x0D, 0xC6, 0x63, 0x73, 0x99, 0x9C, 0xE7, 0x67, 0x38, 0xF9, 0xCE, 0x3C, 0x73, - 0x8F, 0x1C, 0xE1, 0xC7, 0x38, 0x01, 0xFE, 0x00, 0x3C, 0x00, 0x07, 0x00, 0x01, 0x80, 0x00, 0xE0, - 0x00, 0x30, 0x70, 0x38, 0xE0, 0xF1, 0xE1, 0xE3, 0xC7, 0xCF, 0xCF, 0x9D, 0xBF, 0x3B, 0x6E, 0x73, - 0xCC, 0xE7, 0x19, 0xCE, 0x33, 0x80, 0x78, 0x00, 0x70, 0x00, 0xE0, 0x03, 0x80, 0x06, 0x00, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x0C, 0xC0, 0x3F, 0x00, 0x78, 0x00, 0x00, 0x07, 0x00, 0x1E, 0x00, - 0x78, 0x03, 0xF0, 0x0D, 0xC0, 0x73, 0x01, 0xCE, 0x06, 0x18, 0x38, 0x70, 0xFF, 0xC7, 0xFF, 0x1C, - 0x0E, 0x60, 0x3B, 0x80, 0x7E, 0x01, 0xC0, 0x3B, 0x8F, 0xE1, 0xF0, 0x00, 0x00, 0x0F, 0xC3, 0xF8, - 0xCF, 0x01, 0xCF, 0xF7, 0xFD, 0xE7, 0x61, 0xDC, 0x77, 0xFC, 0xFF, 0x0C, 0xC0, 0x33, 0x00, 0x00, - 0x01, 0xC0, 0x07, 0x80, 0x1E, 0x00, 0xFC, 0x03, 0x70, 0x1C, 0xC0, 0x73, 0x81, 0x86, 0x0E, 0x1C, - 0x3F, 0xF1, 0xFF, 0xC7, 0x03, 0x98, 0x0E, 0xE0, 0x1F, 0x80, 0x70, 0x3B, 0x8E, 0xE0, 0x00, 0x00, - 0x3F, 0x0F, 0xE3, 0x3C, 0x07, 0x3F, 0xDF, 0xF7, 0x9D, 0x87, 0x71, 0xDF, 0xF3, 0xFC, 0x00, 0xFF, - 0xE0, 0x1F, 0xFC, 0x07, 0xC0, 0x01, 0xD8, 0x00, 0x3B, 0x00, 0x0E, 0x60, 0x01, 0x8F, 0xF0, 0x71, - 0xFE, 0x1C, 0x30, 0x03, 0xFE, 0x00, 0xFF, 0xC0, 0x18, 0x18, 0x07, 0x03, 0x00, 0xC0, 0x7F, 0xF8, - 0x0F, 0xF8, 0x3F, 0x3E, 0x1F, 0xFF, 0x8C, 0xFD, 0xE0, 0x38, 0x73, 0xFF, 0xFB, 0xFF, 0xFD, 0xE7, - 0x00, 0xC3, 0x80, 0x71, 0xF1, 0x3F, 0xFF, 0x8F, 0xFF, 0xC0, 0x33, 0x07, 0xE0, 0x78, 0x00, 0x0F, - 0xFD, 0xFF, 0xB8, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0xFE, 0x7F, 0xCE, 0x01, 0xC0, 0x38, 0x07, 0x00, - 0xE0, 0x1F, 0xFF, 0xFF, 0x80, 0x33, 0x0F, 0xC1, 0xE0, 0x00, 0x00, 0x0F, 0xC7, 0xFB, 0xCF, 0xE1, - 0xFF, 0xFF, 0xFF, 0x80, 0xE0, 0x3E, 0x67, 0xF8, 0xFE, 0x7F, 0x83, 0xFF, 0x1C, 0x7C, 0x00, 0xE0, - 0x07, 0x80, 0x1C, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x01, 0xF8, 0x0F, 0xC0, 0xE7, 0x9F, 0x1F, 0xF0, - 0x7E, 0x00, 0x7F, 0x1F, 0xE6, 0x78, 0x07, 0x01, 0xFF, 0xFF, 0xFF, 0x87, 0xF3, 0x9F, 0xE3, 0xF0, - 0x1D, 0xC0, 0xEE, 0x00, 0x00, 0xFF, 0x07, 0xFE, 0x38, 0xF8, 0x01, 0xC0, 0x0F, 0x00, 0x38, 0x01, - 0xFF, 0xFF, 0xFF, 0xFE, 0x03, 0xF0, 0x1F, 0x81, 0xCF, 0x3E, 0x3F, 0xE0, 0xFC, 0x00, 0x77, 0x1D, - 0xC0, 0x00, 0x00, 0x7F, 0x1F, 0xE6, 0x78, 0x07, 0x01, 0xFF, 0xFF, 0xFF, 0x87, 0xF3, 0x9F, 0xE3, - 0xF0, 0x03, 0xB8, 0x00, 0x77, 0x00, 0x00, 0x00, 0x38, 0x70, 0xE7, 0x8E, 0x3C, 0x71, 0xC7, 0x07, - 0x39, 0xC0, 0x77, 0x70, 0x0F, 0xFC, 0x00, 0xFF, 0x80, 0x0F, 0xE0, 0x03, 0xFE, 0x00, 0xEE, 0xE0, - 0x39, 0xDE, 0x0F, 0x39, 0xE1, 0xC7, 0x1C, 0x70, 0xE1, 0xDE, 0x1C, 0x3C, 0x06, 0x60, 0x06, 0x60, - 0x00, 0x00, 0x00, 0x00, 0x71, 0x8E, 0x39, 0x9C, 0x39, 0x9C, 0x1D, 0xB8, 0x0F, 0xF0, 0x07, 0xE0, - 0x0F, 0xF0, 0x1D, 0xB8, 0x39, 0x9C, 0x71, 0x8E, 0xE1, 0x87, 0x3B, 0x87, 0x70, 0x00, 0x3F, 0xC7, - 0xFC, 0xE7, 0x80, 0x38, 0x06, 0x03, 0xC3, 0xF0, 0x7F, 0x01, 0xF0, 0x0E, 0x01, 0xC0, 0x3B, 0x9F, - 0xFF, 0xCF, 0xF0, 0x77, 0x1D, 0xC0, 0x00, 0x00, 0x7F, 0x1F, 0xE6, 0x38, 0x0E, 0x3F, 0x0F, 0xE0, - 0x38, 0x07, 0x63, 0xDF, 0xE7, 0xF0, 0x7F, 0xEF, 0xFC, 0x07, 0x01, 0xE0, 0x38, 0x0E, 0x03, 0x80, - 0xFC, 0x03, 0xC0, 0x1C, 0x03, 0x80, 0x77, 0x3F, 0xFF, 0x9F, 0xE0, 0x7F, 0xCF, 0xF8, 0x0E, 0x01, - 0xC0, 0x70, 0x1C, 0x03, 0x80, 0xF8, 0x07, 0xC0, 0x38, 0x03, 0x00, 0xE6, 0x3C, 0xFF, 0x1F, 0xC0, - 0x1F, 0xC0, 0xFE, 0x00, 0x01, 0xC0, 0x7E, 0x07, 0xF0, 0x3F, 0x83, 0xFC, 0x3F, 0xE3, 0xBF, 0x1D, - 0xF9, 0xCF, 0xDC, 0x7F, 0xE3, 0xFE, 0x1F, 0xE0, 0xFF, 0x07, 0xF0, 0x3F, 0x01, 0xC0, 0x3F, 0x8F, - 0xE0, 0x00, 0x00, 0xE1, 0xF8, 0xFE, 0x3F, 0x9F, 0xEE, 0xFB, 0x3F, 0xCF, 0xE3, 0xF0, 0xFC, 0x3E, - 0x0C, 0x1D, 0xC0, 0xEE, 0x00, 0x01, 0xC0, 0x7E, 0x07, 0xF0, 0x3F, 0x83, 0xFC, 0x3F, 0xE3, 0xBF, - 0x1D, 0xF9, 0xCF, 0xDC, 0x7F, 0xE3, 0xFE, 0x1F, 0xE0, 0xFF, 0x07, 0xF0, 0x3F, 0x01, 0xC0, 0x3B, - 0x8E, 0xE0, 0x00, 0x00, 0xE1, 0xF8, 0xFE, 0x3F, 0x9F, 0xEE, 0xFB, 0x3F, 0xCF, 0xE3, 0xF0, 0xFC, - 0x3E, 0x0C, 0x0E, 0xE0, 0x1D, 0xC0, 0x00, 0x00, 0x7F, 0x03, 0xFF, 0x0F, 0x9F, 0x1C, 0x0F, 0x70, - 0x0E, 0xE0, 0x1D, 0xC0, 0x3B, 0x80, 0x37, 0x00, 0xEE, 0x01, 0xDC, 0x03, 0x9C, 0x0F, 0x3E, 0x7C, - 0x3F, 0xF0, 0x1F, 0xC0, 0x3B, 0x87, 0x70, 0x00, 0x00, 0x03, 0xF0, 0xFF, 0x3E, 0xF7, 0x0E, 0xE0, - 0xFC, 0x1F, 0x83, 0xF0, 0xEF, 0x3C, 0xFF, 0x0F, 0xC0, 0x0F, 0xE0, 0x7F, 0xE1, 0xF3, 0xE3, 0x81, - 0xEE, 0x01, 0xDC, 0x03, 0xBF, 0xFF, 0x7F, 0xFE, 0xE0, 0x1D, 0xC0, 0x3B, 0x80, 0x73, 0x81, 0xE7, - 0xCF, 0x87, 0xFE, 0x03, 0xF8, 0x00, 0x3F, 0x0F, 0xF3, 0xCF, 0x70, 0x6F, 0xFF, 0xFF, 0xF8, 0x3F, - 0x0E, 0xF3, 0xCF, 0xF0, 0xFC, 0x00, 0x0E, 0xE0, 0x1D, 0xC0, 0x00, 0x00, 0x7F, 0x03, 0xFF, 0x0F, - 0x9F, 0x1C, 0x0F, 0x70, 0x0E, 0xE0, 0x1D, 0xFF, 0xFB, 0xFF, 0xF7, 0x00, 0xEE, 0x01, 0xDC, 0x03, - 0x9C, 0x0F, 0x3E, 0x7C, 0x3F, 0xF0, 0x1F, 0xC0, 0x3B, 0x87, 0x70, 0x00, 0x00, 0x03, 0xF0, 0xFF, - 0x3C, 0xF7, 0x06, 0xFF, 0xFF, 0xFF, 0x83, 0xF0, 0xEF, 0x3C, 0xFF, 0x0F, 0xC0, 0x3B, 0x83, 0xB8, - 0x00, 0x07, 0xF0, 0xFF, 0xC6, 0x3E, 0x00, 0xE0, 0x07, 0x00, 0x71, 0xFF, 0x1F, 0xF0, 0x07, 0x00, - 0x70, 0x07, 0x00, 0xE6, 0x3E, 0xFF, 0xC7, 0xF0, 0x77, 0x1D, 0xC0, 0x00, 0x00, 0x7E, 0x1F, 0xC6, - 0x78, 0x06, 0x1F, 0xC7, 0xF0, 0x1C, 0x0E, 0x47, 0xBF, 0xCF, 0xE0, 0x1F, 0xC0, 0xFE, 0x00, 0x01, - 0xC0, 0xE7, 0x07, 0x38, 0x39, 0xC1, 0x87, 0x1C, 0x38, 0xE0, 0xE6, 0x07, 0xF0, 0x1F, 0x80, 0x78, - 0x03, 0xC0, 0x1C, 0x09, 0xE0, 0x7E, 0x03, 0xE0, 0x00, 0x3F, 0x87, 0xF0, 0x00, 0x00, 0x0E, 0x0D, - 0xC3, 0x9C, 0x73, 0x8C, 0x71, 0x87, 0x70, 0xEE, 0x0D, 0x81, 0xF0, 0x1C, 0x03, 0x80, 0x70, 0x1C, - 0x1F, 0x83, 0xE0, 0x00, 0x1D, 0xC0, 0xEE, 0x00, 0x01, 0xC0, 0xE7, 0x07, 0x38, 0x39, 0xC1, 0x87, - 0x1C, 0x38, 0xE0, 0xE6, 0x07, 0xF0, 0x1F, 0x80, 0x78, 0x03, 0xC0, 0x1C, 0x09, 0xE0, 0x7E, 0x03, - 0xE0, 0x00, 0x3B, 0x87, 0x70, 0x00, 0x00, 0x0E, 0x0D, 0xC3, 0x9C, 0x73, 0x8C, 0x71, 0x87, 0x70, - 0xEE, 0x0D, 0x81, 0xF0, 0x1C, 0x03, 0x80, 0x70, 0x1C, 0x1F, 0x83, 0xE0, 0x00, 0x06, 0x60, 0x37, - 0x03, 0xF0, 0x1B, 0x0E, 0x07, 0x38, 0x39, 0xC1, 0xCE, 0x0C, 0x38, 0xE1, 0xC7, 0x07, 0x30, 0x3F, - 0x80, 0xFC, 0x03, 0xC0, 0x1E, 0x00, 0xE0, 0x4F, 0x03, 0xF0, 0x1F, 0x00, 0x0C, 0xC1, 0xB8, 0x7E, - 0x0D, 0x80, 0x01, 0xC1, 0xB8, 0x73, 0x8E, 0x71, 0x8E, 0x30, 0xEE, 0x1D, 0xC1, 0xB0, 0x3E, 0x03, - 0x80, 0x70, 0x0E, 0x03, 0x83, 0xF0, 0x7C, 0x00, 0x3B, 0x87, 0x70, 0x00, 0x70, 0x7E, 0x0F, 0xC1, - 0xF8, 0x3F, 0x07, 0xE0, 0xFC, 0x1F, 0xC7, 0xBF, 0xF3, 0xFE, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xE0, - 0x1C, 0x3B, 0x8E, 0xE0, 0x00, 0x00, 0x61, 0xD8, 0x76, 0x1D, 0x87, 0x71, 0xDF, 0xF3, 0xFC, 0x07, - 0x01, 0xC0, 0x70, 0x1C, 0xFF, 0xFF, 0xFE, 0x03, 0x80, 0xE0, 0x38, 0x0E, 0x03, 0x80, 0xE0, 0x38, - 0x0E, 0x03, 0x80, 0xE0, 0x3E, 0x0F, 0x80, 0xE0, 0x38, 0x0E, 0x03, 0x80, 0xFF, 0xFF, 0xE0, 0xE0, - 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xF0, 0xF0, 0x30, 0x30, 0x30, 0x06, 0x60, 0x06, 0x60, 0x00, 0x00, - 0xE0, 0x07, 0xE0, 0x07, 0xE0, 0x07, 0xE0, 0x07, 0xE0, 0x07, 0xFF, 0x87, 0xFF, 0xC7, 0xE3, 0xE7, - 0xE0, 0xE7, 0xE0, 0xE7, 0xE0, 0xE7, 0xE0, 0xE7, 0xE3, 0xE7, 0xFF, 0xC7, 0x7F, 0x87, 0x0C, 0xC0, - 0x33, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xFF, 0x1F, 0xFE, 0x7E, - 0x39, 0xF8, 0x77, 0xE3, 0x9F, 0xFE, 0x7F, 0xF1, 0xC0, 0x70, 0x39, 0xC1, 0xC7, 0x0C, 0x1C, 0xE1, - 0xF7, 0x1F, 0xF1, 0xCF, 0x0E, 0x38, 0x70, 0xC3, 0x07, 0x18, 0x1D, 0xC0, 0xE0, 0x7F, 0x87, 0xF8, - 0x01, 0xC0, 0x1C, 0x01, 0xC0, 0x1C, 0x01, 0xC0, 0x1C, 0x01, 0xC0, 0x1C, 0x7F, 0xEF, 0xFE, 0x7C, - 0x7E, 0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x1E, 0xF6, 0xE7, 0x00, 0xFF, 0xEF, 0xFC, 0x0E, - 0x01, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0xFF, 0xDF, 0xF8, - 0x03, 0x80, 0x70, 0x0F, 0xC1, 0xF8, 0x3F, 0x07, 0xE0, 0xFC, 0x1F, 0x83, 0xF0, 0x70, 0x7B, 0xCE, - 0x73, 0x9C, 0xE7, 0x39, 0xCE, 0x70, 0xFE, 0xF8, 0xE1, 0x87, 0x0E, 0x1C, 0x18, 0x30, 0x70, 0xE1, - 0xC0, 0x7F, 0xE3, 0xFF, 0x8C, 0x0C, 0x60, 0x73, 0x03, 0x98, 0x1C, 0xC0, 0xE6, 0x07, 0x30, 0x39, - 0x81, 0xCC, 0x0E, 0x60, 0x70, 0xC7, 0xCC, 0x7E, 0xC0, 0xEC, 0x06, 0xC0, 0x6C, 0x06, 0xE0, 0x6E, - 0x06, 0xE0, 0xE7, 0x1E, 0x7F, 0xC3, 0xF8, 0x7B, 0xCE, 0x73, 0x9C, 0xE0, 0x7F, 0x9F, 0xF0, 0x1C, - 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x03, - 0x7F, 0x1F, 0xE0, 0x38, 0x07, 0x01, 0xC0, 0x70, 0x1C, 0x07, 0x01, 0xC0, 0xE7, 0xF9, 0xFC, 0x60, - 0x1C, 0x03, 0x80, 0x70, 0x0F, 0xFD, 0xFF, 0x80, 0x70, 0x0E, 0x03, 0x80, 0x70, 0x0C, 0x03, 0x80, - 0x70, 0x0C, 0x03, 0x80, 0x70, 0xFF, 0xEF, 0xFF, 0x70, 0x77, 0x07, 0x70, 0x77, 0x07, 0x70, 0x77, - 0x07, 0x70, 0x77, 0x07, 0x7F, 0xF7, 0xFF, 0x67, 0xE3, 0xBF, 0x9F, 0x1E, 0x70, 0x73, 0x81, 0x9C, - 0x0C, 0xE0, 0x66, 0x07, 0x30, 0x3B, 0x83, 0xDD, 0xFC, 0xEF, 0xC0, 0x7B, 0xCE, 0x73, 0x9C, 0xE7, - 0x39, 0xCE, 0x73, 0x9C, 0xE7, 0xFB, 0xE1, 0xC7, 0x1C, 0x71, 0xC7, 0x1C, 0x7F, 0xFF, 0x7F, 0xE3, - 0xFF, 0x8E, 0x1C, 0x60, 0x77, 0x03, 0xB8, 0x1D, 0xC0, 0xEE, 0x07, 0x30, 0x71, 0xC3, 0x8F, 0xF8, - 0x1F, 0x80, 0x00, 0x07, 0x07, 0x70, 0x73, 0x07, 0x30, 0x73, 0x86, 0x38, 0x61, 0x8E, 0x18, 0xE1, - 0xCC, 0x1D, 0xC1, 0xF8, 0x7F, 0x0F, 0x80, 0x00, 0x00, 0x3F, 0x0F, 0xF3, 0x87, 0x60, 0x6C, 0x0F, - 0xC1, 0xFC, 0x3B, 0xC7, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x3F, - 0x0F, 0xF3, 0x87, 0x60, 0x6C, 0x0F, 0xC1, 0xFE, 0x39, 0xC7, 0x00, 0xC0, 0x7B, 0xFE, 0x7F, 0x80, - 0xE0, 0xCE, 0x19, 0xC7, 0x1C, 0xE3, 0x9C, 0x37, 0x07, 0xE0, 0xF0, 0x0C, 0x01, 0xC0, 0x38, 0x03, - 0x00, 0x70, 0x0E, 0x01, 0xC0, 0x18, 0x70, 0xEF, 0x1C, 0xE3, 0x8E, 0x61, 0xDC, 0x1F, 0x81, 0xE0, - 0x38, 0x03, 0x80, 0x39, 0xFF, 0x3F, 0xE0, 0xFF, 0xFF, 0xFE, 0x00, 0xE0, 0x0E, 0x60, 0xE6, 0x0C, - 0x61, 0xC6, 0x1C, 0x61, 0x86, 0x38, 0x63, 0x86, 0x30, 0x60, 0x06, 0x00, 0x60, 0x06, 0x00, 0x7F, - 0x1F, 0xE0, 0x1C, 0x07, 0x01, 0xC0, 0x70, 0x1C, 0x07, 0x01, 0xC0, 0x70, 0x1C, 0x07, 0xE7, 0x1F, - 0x38, 0xF9, 0xC7, 0xCE, 0x3E, 0xE1, 0xFF, 0x0F, 0xF0, 0xFC, 0x07, 0x60, 0x3B, 0x83, 0x8F, 0xF8, - 0x3F, 0x80, 0x7F, 0xF3, 0xFF, 0xC6, 0x0E, 0x30, 0x71, 0x83, 0x8C, 0x1C, 0x60, 0xE3, 0x07, 0x18, - 0x38, 0xC1, 0xDE, 0x0F, 0xE0, 0x70, 0x03, 0x00, 0x1E, 0x00, 0x78, 0x03, 0xF0, 0x0F, 0xC0, 0x73, - 0x01, 0xCE, 0x06, 0x38, 0x38, 0x70, 0xFF, 0xC7, 0xFF, 0x1F, 0xFE, 0x70, 0x3B, 0x80, 0x6E, 0x01, - 0xC0, 0x00, 0x03, 0x00, 0x1C, 0x00, 0x30, 0x00, 0x00, 0x0F, 0xC3, 0xF8, 0x06, 0x01, 0xC7, 0xF7, - 0xFD, 0xC7, 0x61, 0xD8, 0x77, 0xFC, 0xFF, 0x0E, 0x03, 0x80, 0xE0, 0x38, 0x02, 0x00, 0x1E, 0x00, - 0x78, 0x00, 0xE0, 0x03, 0x00, 0x0C, 0x00, 0x78, 0x01, 0xE0, 0x0F, 0xC0, 0x3F, 0x01, 0xCC, 0x07, - 0x38, 0x18, 0xE0, 0xE1, 0xC3, 0xFF, 0x1F, 0xFC, 0x7F, 0xF9, 0xC0, 0xEE, 0x01, 0xB8, 0x07, 0x1E, - 0x07, 0xC0, 0x70, 0x38, 0x04, 0x0F, 0xC3, 0xF8, 0x06, 0x01, 0xC7, 0xF7, 0xFD, 0xC7, 0x61, 0xD8, - 0x77, 0xFC, 0xFF, 0x0E, 0x00, 0x00, 0x10, 0x00, 0xE0, 0x07, 0x80, 0xDC, 0x07, 0xC0, 0x3F, 0x00, - 0xCC, 0x00, 0xC0, 0x07, 0x80, 0x1E, 0x00, 0xFC, 0x03, 0xF0, 0x1C, 0xC0, 0x73, 0x81, 0x8E, 0x0E, - 0x1C, 0x3F, 0xF1, 0xFF, 0xC7, 0xFF, 0x9C, 0x0E, 0xE0, 0x1B, 0x80, 0x70, 0x00, 0x20, 0x07, 0x00, - 0xE0, 0x5C, 0x0E, 0x81, 0xF0, 0x11, 0x00, 0x00, 0x3F, 0x03, 0xF8, 0x01, 0x80, 0x1C, 0x1F, 0xC7, - 0xFC, 0x71, 0xC6, 0x1C, 0x61, 0xC7, 0xFC, 0x3F, 0xC0, 0xE0, 0x00, 0x80, 0x07, 0x00, 0x1E, 0x00, - 0xF8, 0x07, 0xE0, 0x3F, 0x00, 0xCC, 0x00, 0xC0, 0x07, 0x80, 0x1E, 0x00, 0xFC, 0x03, 0xF0, 0x1C, + 0xFF, 0x0F, 0xE0, 0xFF, 0xFF, 0xFF, 0x06, 0x00, 0x60, 0x06, 0x00, 0x60, 0x06, 0x00, 0x60, 0x06, + 0x00, 0x60, 0x06, 0x00, 0x60, 0x06, 0x00, 0x60, 0x06, 0x00, 0xE0, 0x73, 0x83, 0x9C, 0x1C, 0xE0, + 0xC3, 0x8E, 0x1C, 0x70, 0x73, 0x03, 0xF8, 0x0F, 0xC0, 0x3C, 0x01, 0xE0, 0x0E, 0x04, 0xF0, 0x3F, + 0x01, 0xF0, 0x00, 0x01, 0x80, 0x01, 0x80, 0x1F, 0xF8, 0x3F, 0xFC, 0x7D, 0xBE, 0xF1, 0x8F, 0xE1, + 0x87, 0xE1, 0x87, 0xE1, 0x87, 0xE1, 0x87, 0xF1, 0x8F, 0x7D, 0xBE, 0x3F, 0xFC, 0x1F, 0xF8, 0x01, + 0x80, 0x01, 0x80, 0x70, 0x7B, 0x83, 0x8E, 0x38, 0x3B, 0xC1, 0xDC, 0x07, 0xC0, 0x1E, 0x00, 0xE0, + 0x0F, 0x80, 0x7E, 0x07, 0x70, 0x71, 0xC3, 0x87, 0x38, 0x3B, 0x80, 0xE0, 0xE0, 0x73, 0x81, 0xCE, + 0x07, 0x38, 0x1C, 0xE0, 0x73, 0x81, 0xCE, 0x07, 0x38, 0x1C, 0xE0, 0x73, 0x81, 0xCE, 0x07, 0x38, + 0x1C, 0xE0, 0x73, 0xFF, 0xFF, 0xFF, 0xC0, 0x07, 0x00, 0x1C, 0x00, 0x70, 0x01, 0xC0, 0xE0, 0xFC, + 0x1F, 0x83, 0xF0, 0x7E, 0x0F, 0xC1, 0xF8, 0x3F, 0x8F, 0x7F, 0xE7, 0xFC, 0x03, 0x80, 0x70, 0x0E, + 0x01, 0xC0, 0x38, 0xE0, 0xE1, 0xF8, 0x38, 0x7E, 0x0E, 0x1F, 0x83, 0x87, 0xE0, 0xE1, 0xF8, 0x38, + 0x7E, 0x0E, 0x1F, 0x83, 0x87, 0xE0, 0xE1, 0xF8, 0x38, 0x7E, 0x0E, 0x1F, 0x83, 0x87, 0xE0, 0xE1, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0xE0, 0xE1, 0xCE, 0x0E, 0x1C, 0xE0, 0xE1, 0xCE, 0x0E, 0x1C, 0xE0, + 0xE1, 0xCE, 0x0E, 0x1C, 0xE0, 0xE1, 0xCE, 0x0E, 0x1C, 0xE0, 0xE1, 0xCE, 0x0E, 0x1C, 0xE0, 0xE1, + 0xCE, 0x0E, 0x1C, 0xE0, 0xE1, 0xCF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x07, 0x00, 0x00, 0x70, + 0x00, 0x07, 0x00, 0x00, 0x70, 0xFE, 0x01, 0xFC, 0x00, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xFE, + 0x03, 0xFF, 0x07, 0x3E, 0x0E, 0x1E, 0x1C, 0x1C, 0x38, 0x38, 0x70, 0xF0, 0xE3, 0xC1, 0xFF, 0x83, + 0xFC, 0x00, 0xE0, 0x07, 0xE0, 0x07, 0xE0, 0x07, 0xE0, 0x07, 0xE0, 0x07, 0xFF, 0x87, 0xFF, 0xC7, + 0xE3, 0xE7, 0xE0, 0xE7, 0xE0, 0xE7, 0xE0, 0xE7, 0xE0, 0xE7, 0xE3, 0xE7, 0xFF, 0xC7, 0x7F, 0x87, + 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0F, 0xF8, 0xFF, 0xCE, 0x3E, 0xE0, 0xEE, 0x06, 0xE0, + 0x6E, 0x0E, 0xE3, 0xEF, 0xFC, 0x7F, 0x80, 0x7F, 0x0F, 0xFC, 0x63, 0xE0, 0x0E, 0x00, 0x70, 0x07, + 0x1F, 0xF1, 0xFF, 0x00, 0x70, 0x07, 0x00, 0x70, 0x0E, 0x63, 0xEF, 0xFC, 0x7F, 0x00, 0xE0, 0x7F, + 0x0E, 0x0F, 0xF8, 0xE1, 0xF3, 0xCE, 0x3C, 0x0E, 0xE3, 0x80, 0xEE, 0x38, 0x07, 0xFF, 0x80, 0x7F, + 0xF8, 0x07, 0xE3, 0x80, 0x7E, 0x38, 0x07, 0xE3, 0x80, 0xEE, 0x1C, 0x0E, 0xE1, 0xF3, 0xCE, 0x0F, + 0xFC, 0xE0, 0x7F, 0x00, 0x1F, 0xF3, 0xFF, 0x7C, 0x77, 0x07, 0x70, 0x77, 0x07, 0x7C, 0x73, 0xFF, + 0x1F, 0xF1, 0xC7, 0x1C, 0x73, 0x87, 0x38, 0x77, 0x07, 0x70, 0x70, 0x3F, 0x0F, 0xE3, 0x3C, 0x07, + 0x3F, 0xDF, 0xF7, 0x9D, 0x87, 0x71, 0xDF, 0xF3, 0xFC, 0x07, 0xC3, 0xF8, 0xFE, 0x38, 0x06, 0x01, + 0xFF, 0x3F, 0xF7, 0x9E, 0xE0, 0xFC, 0x1F, 0x83, 0xF0, 0x7E, 0x1C, 0xF7, 0x9F, 0xE1, 0xF8, 0xFF, + 0x3F, 0xEE, 0x3B, 0x8E, 0xFF, 0xBF, 0xEE, 0x3F, 0x87, 0xE3, 0xFF, 0xEF, 0xF0, 0xFF, 0xFF, 0xE0, + 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0x1F, 0xE0, 0xFF, 0x07, 0x38, 0x39, 0xC1, 0xCE, + 0x0C, 0x70, 0xE3, 0x87, 0x1C, 0x70, 0xE7, 0xFF, 0xFF, 0xFF, 0xC0, 0x7E, 0x03, 0xF0, 0x1C, 0x3F, + 0x1F, 0xEF, 0x3F, 0x87, 0xFF, 0xFF, 0xFE, 0x03, 0x80, 0xF9, 0x9F, 0xE3, 0xF8, 0x71, 0x8E, 0x39, + 0x9C, 0x39, 0x9C, 0x1D, 0xB8, 0x0F, 0xF0, 0x07, 0xE0, 0x0F, 0xF0, 0x1D, 0xB8, 0x39, 0x9C, 0x71, + 0x8E, 0xE1, 0x87, 0x7F, 0x1F, 0xE6, 0x38, 0x0E, 0x3F, 0x0F, 0xE0, 0x38, 0x07, 0x63, 0xDF, 0xE7, + 0xF0, 0xE1, 0xF8, 0xFE, 0x3F, 0x9F, 0xEE, 0xFB, 0x3F, 0xCF, 0xE3, 0xF0, 0xFC, 0x3E, 0x0C, 0x3B, + 0x8F, 0xC1, 0xF0, 0x00, 0x00, 0x38, 0x7E, 0x3F, 0x8F, 0xE7, 0xFB, 0xBE, 0xCF, 0xF3, 0xF8, 0xFC, + 0x3F, 0x0F, 0x83, 0xE3, 0xF9, 0xEE, 0x73, 0xB8, 0xFC, 0x3E, 0x0F, 0xE3, 0xBC, 0xE7, 0xB8, 0xEE, + 0x1C, 0x1F, 0xE3, 0xFC, 0x71, 0x8E, 0x31, 0xC6, 0x38, 0xC6, 0x19, 0xC3, 0x78, 0x7E, 0x0F, 0x81, + 0x80, 0x70, 0x3B, 0x83, 0xDE, 0x1E, 0xF1, 0xFF, 0xCF, 0xF6, 0xFF, 0xB6, 0xFC, 0xF3, 0xE7, 0x1F, + 0x38, 0xF8, 0x06, 0xE1, 0xF8, 0x7E, 0x1F, 0x87, 0xFF, 0xFF, 0xFE, 0x1F, 0x87, 0xE1, 0xF8, 0x7E, + 0x1C, 0x3F, 0x0F, 0xF3, 0xEF, 0x70, 0xEE, 0x0F, 0xC1, 0xF8, 0x3F, 0x0E, 0xF3, 0xCF, 0xF0, 0xFC, + 0x00, 0xFF, 0xFF, 0xFE, 0x1F, 0x87, 0xE1, 0xF8, 0x7E, 0x1F, 0x87, 0xE1, 0xF8, 0x7E, 0x1C, 0xFF, + 0x1F, 0xF3, 0x8F, 0x70, 0xEE, 0x0F, 0xC1, 0xF8, 0x3F, 0x0E, 0xF3, 0xDF, 0xF3, 0xFC, 0x70, 0x0E, + 0x01, 0xC0, 0x38, 0x00, 0x3F, 0x3F, 0xBE, 0x5C, 0x0E, 0x07, 0x03, 0x81, 0xC0, 0xF9, 0x3F, 0xCF, + 0xE0, 0xFF, 0xFF, 0xF0, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC0, 0xE0, + 0xDC, 0x39, 0xC7, 0x38, 0xC7, 0x18, 0x77, 0x0E, 0xE0, 0xD8, 0x1F, 0x01, 0xC0, 0x38, 0x07, 0x01, + 0xC1, 0xF8, 0x3E, 0x00, 0x03, 0x00, 0x06, 0x00, 0x0C, 0x00, 0x18, 0x00, 0x30, 0x03, 0xFC, 0x1F, + 0xFE, 0x3D, 0xBE, 0xE3, 0x1D, 0xC6, 0x1B, 0x0C, 0x37, 0x18, 0x6E, 0x31, 0xCF, 0x6F, 0x9F, 0xFE, + 0x0F, 0xF0, 0x03, 0x00, 0x06, 0x00, 0x0C, 0x00, 0x18, 0x00, 0xE1, 0xCE, 0x70, 0xEE, 0x0F, 0x81, + 0xE0, 0x1C, 0x07, 0xC1, 0xF8, 0x73, 0x8E, 0x3B, 0x83, 0x00, 0xE1, 0xDC, 0x3B, 0x87, 0x70, 0xEE, + 0x1D, 0xC3, 0xB8, 0x77, 0x0E, 0xE1, 0xDF, 0xFF, 0xFF, 0x80, 0x30, 0x06, 0x00, 0xC0, 0x61, 0xD8, + 0x76, 0x1D, 0x87, 0x71, 0xDF, 0xF3, 0xFC, 0x07, 0x01, 0xC0, 0x70, 0x1C, 0xE3, 0x8F, 0xC7, 0x1F, + 0x8E, 0x3F, 0x1C, 0x7E, 0x38, 0xFC, 0x71, 0xF8, 0xE3, 0xF1, 0xC7, 0xE3, 0x8F, 0xFF, 0xFF, 0xFF, + 0xF8, 0xE3, 0x8E, 0x71, 0xC7, 0x38, 0xE3, 0x9C, 0x71, 0xCE, 0x38, 0xE7, 0x1C, 0x73, 0x8E, 0x39, + 0xC7, 0x1C, 0xE3, 0x8E, 0x7F, 0xFF, 0xBF, 0xFF, 0xC0, 0x00, 0x60, 0x00, 0x30, 0x00, 0x18, 0xF8, + 0x0F, 0x80, 0x18, 0x01, 0xFE, 0x1F, 0xF1, 0xCF, 0x18, 0x71, 0x87, 0x1C, 0xF1, 0xFF, 0x1F, 0xE0, + 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xFF, 0x1F, 0xFE, 0x7E, 0x39, 0xF8, 0x77, 0xE3, 0x9F, + 0xFE, 0x7F, 0xF1, 0xC0, 0xE0, 0x38, 0x0E, 0x03, 0xFC, 0xFF, 0xB8, 0xFE, 0x1F, 0x87, 0xE3, 0xFF, + 0xEF, 0xF0, 0x7E, 0x1F, 0xC6, 0x78, 0x06, 0x1F, 0xC7, 0xF0, 0x1C, 0x0E, 0x47, 0xBF, 0xCF, 0xE0, + 0xE1, 0xF9, 0xC7, 0xFB, 0x9E, 0x7F, 0x38, 0x7F, 0xE0, 0xFF, 0xC0, 0xF9, 0x83, 0xF3, 0x87, 0xE7, + 0x9F, 0xC7, 0xFB, 0x87, 0xE0, 0x1F, 0xCF, 0xF7, 0x9D, 0xC3, 0x78, 0xDF, 0xF3, 0xFC, 0xE3, 0x30, + 0xDC, 0x36, 0x0C, 0x18, 0x0F, 0x01, 0xC0, 0x30, 0x00, 0x0F, 0xC7, 0xFB, 0xCF, 0xE1, 0xFF, 0xFF, + 0xFF, 0x80, 0xE0, 0x3E, 0x67, 0xF8, 0xFE, 0x33, 0x0C, 0xC0, 0x00, 0x00, 0x3F, 0x1F, 0xEF, 0x3F, + 0x87, 0xFF, 0xFF, 0xFE, 0x03, 0x80, 0xF9, 0x9F, 0xE3, 0xF8, 0x70, 0x1F, 0xE3, 0xFC, 0x38, 0x07, + 0x00, 0xFF, 0x1F, 0xF3, 0xCE, 0x70, 0xEE, 0x1D, 0xC3, 0xB8, 0x77, 0x0E, 0xE1, 0xDC, 0x3B, 0x87, + 0x00, 0xE0, 0x1C, 0x0F, 0x01, 0xE0, 0x06, 0x0E, 0x1C, 0x18, 0x00, 0xFF, 0xFF, 0xE0, 0xE0, 0xE0, + 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0x3F, 0xBF, 0xFC, 0x5C, 0x0F, 0xE7, 0xF3, 0x81, 0xC0, 0xF9, + 0xBF, 0xCF, 0xE0, 0x3F, 0x3F, 0x9C, 0xCE, 0x07, 0xC1, 0xF8, 0x3E, 0x07, 0x47, 0xBF, 0xDF, 0xC0, + 0xFC, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, 0xDC, 0x00, 0x03, 0x87, 0x0E, 0x1C, 0x38, 0x70, 0xE1, + 0xC3, 0x87, 0x0E, 0x00, 0x1C, 0x70, 0x00, 0x00, 0x71, 0xC7, 0x1C, 0x71, 0xC7, 0x1C, 0x71, 0xC7, + 0x1C, 0xFF, 0xBE, 0x1F, 0xE0, 0x07, 0xF8, 0x01, 0xC6, 0x00, 0x71, 0x80, 0x1C, 0x7F, 0x07, 0x1F, + 0xE1, 0x86, 0x3C, 0xE1, 0x87, 0xF8, 0x63, 0xFC, 0x1F, 0xEE, 0x07, 0xF0, 0xE1, 0xC0, 0x70, 0xE0, + 0x38, 0x70, 0x1C, 0x38, 0x0F, 0xFF, 0xE7, 0xFF, 0xFB, 0x87, 0x1D, 0xC3, 0x87, 0xE1, 0xC7, 0x70, + 0xFF, 0xB8, 0x7F, 0x80, 0x70, 0x1F, 0xE3, 0xFC, 0x38, 0x07, 0x00, 0xFF, 0x1F, 0xF3, 0xCF, 0x70, + 0xEE, 0x1D, 0xC3, 0xB8, 0x77, 0x0E, 0xE1, 0xDC, 0x3B, 0x87, 0x06, 0x03, 0xC0, 0xE0, 0x30, 0x00, + 0x38, 0xFE, 0x7B, 0x9C, 0xEE, 0x3F, 0x0F, 0x83, 0xF8, 0xEF, 0x39, 0xEE, 0x3B, 0x87, 0x18, 0x07, + 0x00, 0xE0, 0x18, 0x00, 0x38, 0x7E, 0x3F, 0x8F, 0xE7, 0xFB, 0xBE, 0xCF, 0xF3, 0xF8, 0xFC, 0x3F, + 0x0F, 0x83, 0x3B, 0x87, 0xF0, 0x7C, 0x00, 0x00, 0x01, 0xC1, 0xB8, 0x73, 0x8E, 0x71, 0x8E, 0x30, + 0xEE, 0x1D, 0xC1, 0xB0, 0x3E, 0x03, 0x80, 0x70, 0x0E, 0x03, 0x83, 0xF0, 0x7C, 0x00, 0xE1, 0xF8, + 0x7E, 0x1F, 0x87, 0xE1, 0xF8, 0x7E, 0x1F, 0x87, 0xE1, 0xFF, 0xFF, 0xFC, 0x30, 0x0C, 0x03, 0x00, + 0x0E, 0x00, 0x1C, 0x03, 0xFF, 0x87, 0xFF, 0x00, 0xE0, 0x01, 0xC0, 0x03, 0xFC, 0x07, 0xFE, 0x0E, + 0x7C, 0x1C, 0x1C, 0x38, 0x38, 0x70, 0x70, 0xE1, 0xE1, 0xC7, 0x83, 0xFF, 0x07, 0xF8, 0x18, 0x01, + 0x80, 0x18, 0x01, 0x80, 0x18, 0x0F, 0xF8, 0xFF, 0x81, 0x80, 0x1F, 0xE1, 0xFF, 0x1C, 0xF1, 0x87, + 0x18, 0x71, 0xCF, 0x1F, 0xF1, 0xFE, 0x0F, 0xE0, 0x7F, 0xE1, 0xF3, 0xE3, 0x81, 0xEE, 0x01, 0xDF, + 0xC3, 0xBF, 0xE7, 0x79, 0xFE, 0xE1, 0xFD, 0xC0, 0x3B, 0x80, 0x73, 0x81, 0xE7, 0xCF, 0x87, 0xFE, + 0x03, 0xF8, 0x00, 0x3F, 0x0F, 0xF3, 0xCF, 0x7C, 0xEF, 0xFF, 0xDF, 0xF9, 0xFF, 0x06, 0xFB, 0xCF, + 0xF0, 0xFC, 0x00, 0xE0, 0x0F, 0x70, 0x0F, 0x9C, 0x0F, 0xCE, 0x07, 0x07, 0x03, 0x01, 0xC3, 0x80, + 0xE1, 0xC0, 0x71, 0xC0, 0x1C, 0xE0, 0x0E, 0x60, 0x03, 0xF0, 0x01, 0xF8, 0x00, 0xF8, 0x00, 0x3C, + 0x00, 0x1C, 0x00, 0xE0, 0xFE, 0x0F, 0x71, 0xC7, 0x18, 0x73, 0x83, 0xB8, 0x3B, 0x01, 0xF0, 0x1F, + 0x01, 0xE0, 0x0E, 0x00, 0x1D, 0xC0, 0x1F, 0x80, 0x3E, 0x00, 0x00, 0x0E, 0x03, 0x9C, 0x0F, 0x38, + 0x1E, 0x70, 0x7C, 0xE1, 0xF9, 0xC7, 0x73, 0x8E, 0xE7, 0x39, 0xCE, 0xE3, 0x9F, 0xC7, 0x3F, 0x0E, + 0x7C, 0x1C, 0xF8, 0x39, 0xE0, 0x7F, 0x80, 0xF8, 0x00, 0x60, 0x01, 0xC0, 0x03, 0x00, 0x0E, 0x00, + 0x3B, 0x83, 0xF0, 0x1F, 0x00, 0x00, 0x00, 0x0E, 0x1C, 0xE3, 0xCE, 0x3C, 0xE7, 0xCE, 0xEC, 0xEC, + 0xCF, 0xCC, 0xF8, 0xCF, 0x0C, 0xF0, 0xCE, 0x0F, 0x00, 0x70, 0x07, 0x00, 0xE0, 0x0C, 0x30, 0x01, + 0x80, 0x3F, 0x81, 0xFC, 0x03, 0x00, 0x18, 0x00, 0xFF, 0x07, 0xFE, 0x39, 0xF1, 0x83, 0xCC, 0x0E, + 0x60, 0x73, 0x07, 0x9C, 0xF8, 0xFF, 0xC7, 0xF8, 0xFE, 0x1F, 0xC1, 0xC0, 0x38, 0x07, 0xF8, 0xFF, + 0x9C, 0x7B, 0x87, 0x71, 0xEF, 0xF8, 0xFE, 0x00, 0x7F, 0x8F, 0xFC, 0xE3, 0xEE, 0x0E, 0xE0, 0xEE, + 0x6E, 0xE7, 0xEF, 0xFC, 0xFF, 0x8E, 0x18, 0xE1, 0xCE, 0x0C, 0xE0, 0x0E, 0x00, 0xE0, 0x00, 0xFF, + 0x1F, 0xF3, 0x8F, 0x70, 0xEE, 0x0F, 0xC1, 0xF9, 0xBF, 0x3E, 0xF7, 0xDF, 0xF3, 0xFE, 0x70, 0xCE, + 0x19, 0xC0, 0x38, 0x00, 0x01, 0xC0, 0x70, 0x1F, 0xFF, 0xFF, 0xF8, 0x0E, 0x03, 0x80, 0xE0, 0x38, + 0x0E, 0x03, 0x80, 0xE0, 0x38, 0x0E, 0x03, 0x80, 0xE0, 0x38, 0x00, 0x03, 0x03, 0x03, 0xFF, 0xFF, + 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0x3F, 0xE7, 0xFC, 0xC0, 0x18, 0x03, 0x00, + 0x60, 0x3F, 0xC7, 0xF8, 0x30, 0x06, 0x00, 0xC0, 0x18, 0x03, 0x00, 0x60, 0x0C, 0x00, 0x7F, 0xBF, + 0xDC, 0x0E, 0x07, 0x07, 0xF3, 0xF8, 0xE0, 0x70, 0x38, 0x1C, 0x00, 0xFF, 0xCF, 0xFC, 0xE0, 0x0E, + 0x00, 0xE0, 0x0E, 0x00, 0xFF, 0x8F, 0xFC, 0xF3, 0xEE, 0x0E, 0xE0, 0x6E, 0x07, 0xE0, 0x7E, 0x07, + 0xE0, 0xE0, 0x0E, 0x03, 0xE0, 0xFC, 0x0F, 0x80, 0xFF, 0x3F, 0xCE, 0x03, 0x80, 0xFF, 0x3F, 0xEE, + 0x3F, 0x87, 0xE1, 0xF8, 0x7E, 0x1C, 0x07, 0x03, 0x83, 0xE0, 0xF0, 0x70, 0xE1, 0xC7, 0x8E, 0x3C, + 0x38, 0xE7, 0x81, 0xCE, 0x70, 0x0E, 0xEE, 0x00, 0x7F, 0xC0, 0x07, 0xFC, 0x00, 0x3F, 0x80, 0x07, + 0xFC, 0x00, 0xEE, 0xE0, 0x1C, 0xEF, 0x03, 0xCE, 0x78, 0x38, 0xE3, 0xC7, 0x0E, 0x1F, 0xF0, 0xE1, + 0xF0, 0x00, 0x07, 0x00, 0x00, 0x70, 0x00, 0x07, 0x00, 0x00, 0x70, 0x71, 0x8E, 0x1C, 0xCE, 0x0E, + 0x67, 0x03, 0xB7, 0x00, 0xFF, 0x00, 0x3F, 0x80, 0x3F, 0xE0, 0x3B, 0xF8, 0x39, 0x9E, 0x38, 0xC7, + 0xF8, 0x61, 0xE0, 0x00, 0x70, 0x00, 0x38, 0x00, 0x1C, 0x7F, 0x8F, 0xF9, 0xCF, 0x00, 0x70, 0x0C, + 0x07, 0x87, 0xE0, 0xFE, 0x03, 0xE0, 0x1C, 0x03, 0x80, 0x77, 0x3F, 0xFF, 0x9F, 0xE0, 0x70, 0x07, + 0x03, 0xC0, 0x7F, 0x1F, 0xE6, 0x38, 0x0E, 0x3F, 0x0F, 0xE0, 0x38, 0x07, 0x63, 0x9F, 0xE7, 0xF0, + 0x30, 0x0E, 0x0F, 0x80, 0xE0, 0xF7, 0x0F, 0x38, 0x71, 0xC7, 0x0E, 0x70, 0x77, 0x03, 0xF0, 0x1F, + 0x80, 0xFE, 0x07, 0x78, 0x39, 0xE1, 0xC7, 0x8E, 0x1E, 0x70, 0x7F, 0x81, 0xE0, 0x07, 0x00, 0x38, + 0x01, 0xC0, 0x0E, 0xE3, 0xDC, 0xF3, 0x9C, 0x77, 0x0F, 0xC1, 0xF0, 0x3F, 0x87, 0x78, 0xE7, 0x9C, + 0x7F, 0x87, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x00, 0xE0, 0x3B, 0x81, 0xCE, 0x0F, 0x38, 0x38, 0xED, + 0xC3, 0xBE, 0x0E, 0xF8, 0x3F, 0xC0, 0xFF, 0x83, 0xBF, 0x0E, 0xDE, 0x3B, 0x38, 0xE0, 0x73, 0x80, + 0xEE, 0x03, 0x80, 0xE0, 0xEE, 0x1C, 0xE1, 0xCE, 0xF8, 0xEF, 0x0F, 0xE0, 0xEF, 0x0E, 0xF8, 0xE1, + 0xCE, 0x0E, 0xE0, 0x70, 0x30, 0x38, 0xC1, 0xCF, 0xEE, 0x3F, 0xF0, 0x33, 0x80, 0xDC, 0x03, 0xF0, + 0x0F, 0x80, 0x3F, 0x00, 0xCE, 0x03, 0x1C, 0x0C, 0x38, 0x30, 0x70, 0xC1, 0xE3, 0x03, 0x80, 0x70, + 0xEF, 0xDC, 0x73, 0x87, 0x70, 0x7E, 0x07, 0xE0, 0x77, 0x07, 0x38, 0x73, 0xC7, 0x1E, 0x70, 0xE0, + 0xFE, 0x0E, 0xFE, 0x1C, 0x0E, 0x38, 0x0E, 0x70, 0x0E, 0xE0, 0x0F, 0xC0, 0x0F, 0xC0, 0x0F, 0x80, + 0x0F, 0xC0, 0x0E, 0xE0, 0x0E, 0x70, 0x0E, 0x38, 0x0E, 0x1C, 0x0E, 0x1E, 0x0E, 0x0E, 0xF8, 0x77, + 0xC7, 0x06, 0x70, 0x37, 0x01, 0xF0, 0x0F, 0x80, 0x7E, 0x03, 0x38, 0x18, 0xE0, 0xC3, 0x86, 0x1E, + 0xE0, 0x33, 0x80, 0xCE, 0x03, 0x38, 0x0C, 0xE0, 0x33, 0x80, 0xCF, 0xFF, 0x3F, 0xFC, 0xE0, 0x33, + 0x80, 0xCE, 0x03, 0x38, 0x0C, 0xE0, 0x33, 0x80, 0xFE, 0x03, 0xC0, 0x03, 0x00, 0x0C, 0x00, 0x30, + 0x00, 0xC0, 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0xFF, 0xCF, 0xFC, 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, + 0x1E, 0xE1, 0xE0, 0x06, 0x00, 0x60, 0x06, 0xE0, 0x3F, 0xE0, 0x3F, 0xE0, 0x30, 0xE0, 0x30, 0xE0, + 0x30, 0xE0, 0x30, 0xFF, 0xF0, 0xFF, 0xF0, 0xE0, 0x30, 0xE0, 0x30, 0xE0, 0x30, 0xE0, 0x30, 0xE0, + 0x30, 0xE0, 0x30, 0xE0, 0x30, 0xE1, 0xFF, 0x0F, 0xF8, 0x71, 0xC3, 0x8F, 0xFC, 0x7F, 0xE3, 0x87, + 0x1C, 0x38, 0xE1, 0xC7, 0x0E, 0x38, 0x70, 0xFF, 0xF0, 0x0F, 0xFF, 0x00, 0xE0, 0x70, 0x0E, 0x07, + 0x00, 0xE0, 0x70, 0x0E, 0x07, 0x00, 0xE0, 0x7F, 0x8E, 0x07, 0xFE, 0xE0, 0x79, 0xEE, 0x07, 0x07, + 0xE0, 0x70, 0x7E, 0x07, 0x07, 0xE0, 0x70, 0x7E, 0x07, 0x07, 0xE0, 0x70, 0x70, 0x00, 0x0F, 0x00, + 0x01, 0xE0, 0x00, 0x7E, 0x00, 0x07, 0x80, 0xFF, 0xC0, 0x7F, 0xE0, 0x38, 0x70, 0x1C, 0x38, 0x0E, + 0x1F, 0xE7, 0x0F, 0xFB, 0x87, 0x3D, 0xC3, 0x87, 0xE1, 0xC3, 0xF0, 0xE1, 0xF8, 0x70, 0xE0, 0x00, + 0x70, 0x00, 0xF0, 0x00, 0xF8, 0x00, 0x78, 0x0F, 0xE0, 0x7F, 0xC1, 0xF1, 0x83, 0x80, 0x0E, 0x1F, + 0x9C, 0x7F, 0xB8, 0xF7, 0x71, 0x86, 0xE7, 0x0F, 0xCE, 0x1F, 0x9C, 0x33, 0x98, 0xE7, 0xFF, 0xC7, + 0xFF, 0x03, 0xF8, 0x00, 0xE0, 0x00, 0xF8, 0x00, 0xF8, 0x00, 0xF0, 0x3E, 0x0F, 0xC3, 0xE0, 0x73, + 0xEC, 0xFF, 0x9D, 0xF3, 0x1F, 0x67, 0xFF, 0xEF, 0xF8, 0xFE, 0x03, 0xC0, 0x3E, 0x03, 0xC0, 0x0F, + 0xE3, 0xFF, 0x7C, 0x67, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x07, + 0x00, 0x7C, 0x63, 0xFF, 0x1F, 0xE0, 0x70, 0x03, 0x80, 0xF0, 0x3F, 0x3F, 0xBE, 0x5C, 0x0E, 0x07, + 0x03, 0x81, 0xC0, 0xF9, 0x3F, 0xCF, 0xE1, 0x80, 0xE0, 0x70, 0xF8, 0xFF, 0xFF, 0xFF, 0x06, 0x00, + 0x60, 0x06, 0x00, 0x60, 0x06, 0x00, 0x60, 0x06, 0x00, 0x60, 0x06, 0x00, 0x60, 0x06, 0x00, 0x78, + 0x07, 0x80, 0x18, 0x01, 0x80, 0x18, 0x01, 0x80, 0xFF, 0xFF, 0xF0, 0xC0, 0x30, 0x0C, 0x03, 0x00, + 0xC0, 0x30, 0x0C, 0x03, 0xC0, 0xF0, 0x1C, 0x07, 0x01, 0xC0, 0xE0, 0x3B, 0x83, 0x9C, 0x38, 0x71, + 0xC3, 0x9C, 0x0E, 0xE0, 0x7E, 0x01, 0xF0, 0x07, 0x00, 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x03, + 0x80, 0x1C, 0x00, 0xE0, 0xDC, 0x39, 0xC7, 0x38, 0xE7, 0x38, 0x77, 0x0E, 0xC1, 0xF8, 0x1F, 0x03, + 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0xE0, 0x3B, 0x83, 0x9C, 0x18, 0x71, 0xC3, 0x9C, + 0x0E, 0xE0, 0x7E, 0x01, 0xF0, 0x0F, 0x01, 0xFF, 0x0F, 0xF8, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x1C, + 0x00, 0xE0, 0xDC, 0x39, 0xC7, 0x38, 0xC7, 0x38, 0x77, 0x0E, 0xC0, 0xF8, 0x1E, 0x0F, 0xF1, 0xFE, + 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x79, 0xC1, 0xC3, 0x8E, 0x07, 0x78, 0x1F, 0xC0, 0x3E, + 0x00, 0x78, 0x01, 0xE0, 0x0F, 0x80, 0x3F, 0x01, 0xDE, 0x0E, 0x38, 0x38, 0x71, 0xC1, 0xFE, 0x03, + 0xC0, 0x07, 0x00, 0x1C, 0x00, 0x70, 0x01, 0xC0, 0xF1, 0xCE, 0x70, 0xEE, 0x0F, 0x81, 0xE0, 0x1C, + 0x07, 0xC1, 0xFC, 0x73, 0x8E, 0x3F, 0x83, 0x80, 0x30, 0x06, 0x00, 0xC0, 0xFF, 0xE7, 0x3F, 0xF9, + 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x81, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, + 0x03, 0x81, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0xFF, 0xF0, 0xFF, 0xFC, 0x00, 0x07, + 0x00, 0x01, 0xC0, 0x00, 0x70, 0x00, 0x1C, 0xFF, 0x33, 0xFC, 0xC1, 0xC3, 0x07, 0x0C, 0x1C, 0x30, + 0x70, 0xC1, 0xC3, 0x07, 0x0C, 0x1C, 0x30, 0x7F, 0xF1, 0xFF, 0xC0, 0x07, 0x00, 0x1C, 0x00, 0x70, + 0xE0, 0xE7, 0x07, 0x38, 0x39, 0xC1, 0xCE, 0x0E, 0x70, 0x73, 0x83, 0x9E, 0x3C, 0x7F, 0xE1, 0xFF, + 0x00, 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x7C, 0x03, 0xE0, 0x07, 0x00, 0x38, 0x01, 0xC0, 0x0E, 0x61, + 0xCC, 0x39, 0x87, 0x30, 0xE7, 0x1C, 0xFF, 0x8F, 0xF0, 0x0E, 0x01, 0xC0, 0x3C, 0x07, 0x80, 0x30, + 0x06, 0x00, 0xC0, 0xE0, 0xFC, 0x1F, 0x83, 0xF0, 0x7E, 0x0F, 0xDD, 0xFB, 0xBF, 0xFF, 0x7F, 0xE7, + 0xFC, 0x3B, 0x87, 0x70, 0xEE, 0x01, 0xC0, 0x38, 0xE1, 0xF8, 0x7E, 0x1F, 0xB7, 0x7D, 0xDF, 0xF3, + 0xFC, 0x37, 0x0D, 0xC0, 0x70, 0x1C, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0F, 0xFC, 0xFF, + 0xEF, 0x1E, 0xE0, 0xEE, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x70, 0xE0, 0x38, 0x0E, + 0x03, 0x80, 0xE0, 0x3F, 0xCF, 0xFB, 0xCF, 0xE1, 0xF8, 0x7E, 0x1F, 0x87, 0xE1, 0xF8, 0x7E, 0x1F, + 0x87, 0x01, 0xFC, 0x01, 0xFF, 0x01, 0xE7, 0xC1, 0xE0, 0xEC, 0xE0, 0x37, 0x70, 0x1F, 0xFF, 0xFE, + 0xFF, 0xFF, 0x0E, 0x00, 0x07, 0x00, 0x03, 0x80, 0x01, 0xE0, 0x00, 0x7C, 0x60, 0x1F, 0xF8, 0x07, + 0xF8, 0x07, 0xE0, 0x7F, 0xB3, 0xDF, 0xF8, 0x7F, 0xFF, 0xBF, 0xFC, 0x70, 0x03, 0x80, 0x0F, 0x10, + 0x7F, 0x81, 0xFC, 0x01, 0xFC, 0x01, 0xFF, 0x01, 0xE7, 0xC1, 0xE0, 0xEC, 0xE0, 0x37, 0x70, 0x1F, + 0xFF, 0xFE, 0xFF, 0xFF, 0x0E, 0x00, 0x07, 0x00, 0x03, 0x80, 0x01, 0xE0, 0x00, 0x7C, 0x60, 0x1F, + 0xF8, 0x07, 0xF8, 0x00, 0xE0, 0x00, 0x70, 0x00, 0x38, 0x00, 0x1C, 0x00, 0x07, 0xE0, 0x7F, 0xB3, + 0xDF, 0xF8, 0x7F, 0xFF, 0xBF, 0xFC, 0x70, 0x03, 0x80, 0x0F, 0x10, 0x7F, 0x80, 0xFC, 0x03, 0x80, + 0x1C, 0x00, 0xE0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x03, 0xB8, 0x00, 0x7F, 0x00, 0x07, 0xC0, + 0x00, 0x00, 0x07, 0x0E, 0x1C, 0xF1, 0xC7, 0x8E, 0x38, 0xE0, 0xE7, 0x38, 0x0E, 0xEE, 0x01, 0xFF, + 0x80, 0x1F, 0xF0, 0x01, 0xFC, 0x00, 0x7F, 0xC0, 0x1D, 0xDC, 0x07, 0x3B, 0xC1, 0xE7, 0x3C, 0x38, + 0xE3, 0x8E, 0x1C, 0x3B, 0xC3, 0x87, 0x80, 0x06, 0x60, 0x07, 0xE0, 0x03, 0xC0, 0x00, 0x00, 0x00, + 0x00, 0x71, 0x8E, 0x39, 0x9C, 0x39, 0x9C, 0x1D, 0xB8, 0x0F, 0xF0, 0x07, 0xE0, 0x0F, 0xF0, 0x1D, + 0xB8, 0x39, 0x9C, 0x71, 0x8E, 0xE1, 0x87, 0xE0, 0xEE, 0x1E, 0xE1, 0xCE, 0x38, 0xE7, 0x0E, 0xE0, + 0xFC, 0x0F, 0xF8, 0xFF, 0xCE, 0x3E, 0xE0, 0xEE, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x70, 0x0E, 0x01, + 0xE0, 0xFC, 0x0F, 0x80, 0xE3, 0xF8, 0xEE, 0x73, 0xB8, 0xFC, 0x3F, 0xCF, 0xFB, 0x9F, 0xE1, 0xF8, + 0x7E, 0x1C, 0x07, 0x03, 0xC3, 0xE0, 0xF0, 0x0F, 0xF8, 0x1F, 0xF0, 0x38, 0x60, 0x70, 0xC0, 0xE1, + 0x81, 0xC3, 0x03, 0x86, 0x07, 0x0C, 0x0E, 0x18, 0x18, 0x30, 0x70, 0x60, 0xE0, 0xC7, 0x81, 0x9F, + 0x03, 0xF8, 0x07, 0x80, 0x07, 0x00, 0x0E, 0x00, 0x38, 0x00, 0x60, 0x1F, 0xE0, 0xFF, 0x07, 0x18, + 0x38, 0xC1, 0xC6, 0x0E, 0x30, 0x61, 0x87, 0x0C, 0x78, 0x67, 0x83, 0x38, 0x1E, 0x00, 0x70, 0x03, + 0x80, 0x38, 0x01, 0x80, 0xE0, 0x3E, 0x03, 0xE0, 0x3E, 0x03, 0xE0, 0x3E, 0x03, 0xFF, 0xFF, 0xFF, + 0xE0, 0x3E, 0x03, 0xE0, 0x3E, 0x03, 0xE0, 0x3E, 0x03, 0xE0, 0x30, 0x03, 0x00, 0x70, 0x1F, 0x01, + 0xE0, 0xE1, 0xF8, 0x7E, 0x1F, 0x87, 0xFF, 0xFF, 0xFE, 0x1F, 0x87, 0xE1, 0xF8, 0x7E, 0x1C, 0x07, + 0x01, 0xC1, 0xF0, 0x78, 0xE0, 0x33, 0x80, 0xCE, 0x03, 0x38, 0x0C, 0xE0, 0x33, 0x80, 0xCF, 0xFF, + 0x3F, 0xFC, 0xE0, 0x33, 0x80, 0xCE, 0x03, 0x38, 0x0C, 0xE0, 0x33, 0x80, 0xFE, 0x03, 0xC0, 0x07, + 0x00, 0x18, 0x00, 0xE0, 0x03, 0x00, 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0xFF, 0xCF, 0xFC, 0xE1, + 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0xE1, 0xF0, 0x07, 0x00, 0x60, 0x0E, 0x00, 0xC0, 0xE0, 0xFC, 0x1F, + 0x83, 0xF0, 0x7E, 0x0F, 0xC1, 0xF8, 0x3F, 0xCF, 0x7F, 0xE7, 0xFC, 0x03, 0x80, 0x70, 0x0E, 0x07, + 0xC0, 0xF8, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x00, 0x61, 0xD8, 0x76, 0x1D, 0x87, 0x71, 0xDF, 0xF3, + 0xFC, 0x07, 0x01, 0xC0, 0xF0, 0x3C, 0x0C, 0x03, 0x00, 0xC0, 0x70, 0x0E, 0x1C, 0x03, 0x87, 0x81, + 0xE1, 0xE0, 0x7C, 0x6C, 0x3F, 0x1B, 0x0D, 0xC6, 0x63, 0x73, 0x99, 0x9C, 0xE7, 0x67, 0x38, 0xF9, + 0xCE, 0x3C, 0x73, 0x8F, 0x1C, 0xE1, 0xC7, 0x38, 0x01, 0xFE, 0x00, 0x3C, 0x00, 0x07, 0x00, 0x01, + 0x80, 0x00, 0xE0, 0x00, 0x30, 0x70, 0x38, 0xE0, 0xF1, 0xE1, 0xE3, 0xC7, 0xCF, 0xCF, 0x9D, 0xBF, + 0x3B, 0x6E, 0x73, 0xCC, 0xE7, 0x19, 0xCE, 0x33, 0x80, 0x78, 0x00, 0x70, 0x00, 0xE0, 0x03, 0x80, + 0x06, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x0C, 0xC0, 0x3F, 0x00, 0x78, 0x00, 0x00, 0x07, + 0x00, 0x1E, 0x00, 0x78, 0x03, 0xF0, 0x0D, 0xC0, 0x73, 0x01, 0xCE, 0x06, 0x18, 0x38, 0x70, 0xFF, + 0xC7, 0xFF, 0x1C, 0x0E, 0x60, 0x3B, 0x80, 0x7E, 0x01, 0xC0, 0x3B, 0x8F, 0xE1, 0xF0, 0x00, 0x00, + 0x0F, 0xC3, 0xF8, 0xCF, 0x01, 0xCF, 0xF7, 0xFD, 0xE7, 0x61, 0xDC, 0x77, 0xFC, 0xFF, 0x0C, 0xC0, + 0x33, 0x00, 0x00, 0x01, 0xC0, 0x07, 0x80, 0x1E, 0x00, 0xFC, 0x03, 0x70, 0x1C, 0xC0, 0x73, 0x81, + 0x86, 0x0E, 0x1C, 0x3F, 0xF1, 0xFF, 0xC7, 0x03, 0x98, 0x0E, 0xE0, 0x1F, 0x80, 0x70, 0x3B, 0x8E, + 0xE0, 0x00, 0x00, 0x3F, 0x0F, 0xE3, 0x3C, 0x07, 0x3F, 0xDF, 0xF7, 0x9D, 0x87, 0x71, 0xDF, 0xF3, + 0xFC, 0x00, 0xFF, 0xE0, 0x1F, 0xFC, 0x07, 0xC0, 0x01, 0xD8, 0x00, 0x3B, 0x00, 0x0E, 0x60, 0x01, + 0x8F, 0xF0, 0x71, 0xFE, 0x1C, 0x30, 0x03, 0xFE, 0x00, 0xFF, 0xC0, 0x18, 0x18, 0x07, 0x03, 0x00, + 0xC0, 0x7F, 0xF8, 0x0F, 0xF8, 0x3F, 0x3E, 0x1F, 0xFF, 0x8C, 0xFD, 0xE0, 0x38, 0x73, 0xFF, 0xFB, + 0xFF, 0xFD, 0xE7, 0x00, 0xC3, 0x80, 0x71, 0xF1, 0x3F, 0xFF, 0x8F, 0xFF, 0xC0, 0x33, 0x07, 0xE0, + 0x78, 0x00, 0x0F, 0xFD, 0xFF, 0xB8, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0xFE, 0x7F, 0xCE, 0x01, 0xC0, + 0x38, 0x07, 0x00, 0xE0, 0x1F, 0xFF, 0xFF, 0x80, 0x33, 0x0F, 0xC1, 0xE0, 0x00, 0x00, 0x0F, 0xC7, + 0xFB, 0xCF, 0xE1, 0xFF, 0xFF, 0xFF, 0x80, 0xE0, 0x3E, 0x67, 0xF8, 0xFE, 0x7F, 0x83, 0xFF, 0x1C, + 0x7C, 0x00, 0xE0, 0x07, 0x80, 0x1C, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x01, 0xF8, 0x0F, 0xC0, 0xE7, + 0x9F, 0x1F, 0xF0, 0x7E, 0x00, 0x7F, 0x1F, 0xE6, 0x78, 0x07, 0x01, 0xFF, 0xFF, 0xFF, 0x87, 0xF3, + 0x9F, 0xE3, 0xF0, 0x1D, 0xC0, 0xEE, 0x00, 0x00, 0xFF, 0x07, 0xFE, 0x38, 0xF8, 0x01, 0xC0, 0x0F, + 0x00, 0x38, 0x01, 0xFF, 0xFF, 0xFF, 0xFE, 0x03, 0xF0, 0x1F, 0x81, 0xCF, 0x3E, 0x3F, 0xE0, 0xFC, + 0x00, 0x77, 0x1D, 0xC0, 0x00, 0x00, 0x7F, 0x1F, 0xE6, 0x78, 0x07, 0x01, 0xFF, 0xFF, 0xFF, 0x87, + 0xF3, 0x9F, 0xE3, 0xF0, 0x03, 0xB8, 0x00, 0x77, 0x00, 0x00, 0x00, 0x38, 0x70, 0xE7, 0x8E, 0x3C, + 0x71, 0xC7, 0x07, 0x39, 0xC0, 0x77, 0x70, 0x0F, 0xFC, 0x00, 0xFF, 0x80, 0x0F, 0xE0, 0x03, 0xFE, + 0x00, 0xEE, 0xE0, 0x39, 0xDE, 0x0F, 0x39, 0xE1, 0xC7, 0x1C, 0x70, 0xE1, 0xDE, 0x1C, 0x3C, 0x06, + 0x60, 0x06, 0x60, 0x00, 0x00, 0x00, 0x00, 0x71, 0x8E, 0x39, 0x9C, 0x39, 0x9C, 0x1D, 0xB8, 0x0F, + 0xF0, 0x07, 0xE0, 0x0F, 0xF0, 0x1D, 0xB8, 0x39, 0x9C, 0x71, 0x8E, 0xE1, 0x87, 0x3B, 0x87, 0x70, + 0x00, 0x3F, 0xC7, 0xFC, 0xE7, 0x80, 0x38, 0x06, 0x03, 0xC3, 0xF0, 0x7F, 0x01, 0xF0, 0x0E, 0x01, + 0xC0, 0x3B, 0x9F, 0xFF, 0xCF, 0xF0, 0x77, 0x1D, 0xC0, 0x00, 0x00, 0x7F, 0x1F, 0xE6, 0x38, 0x0E, + 0x3F, 0x0F, 0xE0, 0x38, 0x07, 0x63, 0xDF, 0xE7, 0xF0, 0x7F, 0xEF, 0xFC, 0x07, 0x01, 0xE0, 0x38, + 0x0E, 0x03, 0x80, 0xFC, 0x03, 0xC0, 0x1C, 0x03, 0x80, 0x77, 0x3F, 0xFF, 0x9F, 0xE0, 0x7F, 0xCF, + 0xF8, 0x0E, 0x01, 0xC0, 0x70, 0x1C, 0x03, 0x80, 0xF8, 0x07, 0xC0, 0x38, 0x03, 0x00, 0xE6, 0x3C, + 0xFF, 0x1F, 0xC0, 0x1F, 0xC0, 0xFE, 0x00, 0x01, 0xC0, 0x7E, 0x07, 0xF0, 0x3F, 0x83, 0xFC, 0x3F, + 0xE3, 0xBF, 0x1D, 0xF9, 0xCF, 0xDC, 0x7F, 0xE3, 0xFE, 0x1F, 0xE0, 0xFF, 0x07, 0xF0, 0x3F, 0x01, + 0xC0, 0x3F, 0x8F, 0xE0, 0x00, 0x00, 0xE1, 0xF8, 0xFE, 0x3F, 0x9F, 0xEE, 0xFB, 0x3F, 0xCF, 0xE3, + 0xF0, 0xFC, 0x3E, 0x0C, 0x1D, 0xC0, 0xEE, 0x00, 0x01, 0xC0, 0x7E, 0x07, 0xF0, 0x3F, 0x83, 0xFC, + 0x3F, 0xE3, 0xBF, 0x1D, 0xF9, 0xCF, 0xDC, 0x7F, 0xE3, 0xFE, 0x1F, 0xE0, 0xFF, 0x07, 0xF0, 0x3F, + 0x01, 0xC0, 0x3B, 0x8E, 0xE0, 0x00, 0x00, 0xE1, 0xF8, 0xFE, 0x3F, 0x9F, 0xEE, 0xFB, 0x3F, 0xCF, + 0xE3, 0xF0, 0xFC, 0x3E, 0x0C, 0x0E, 0xE0, 0x1D, 0xC0, 0x00, 0x00, 0x7F, 0x03, 0xFF, 0x0F, 0x9F, + 0x1C, 0x0F, 0x70, 0x0E, 0xE0, 0x1D, 0xC0, 0x3B, 0x80, 0x37, 0x00, 0xEE, 0x01, 0xDC, 0x03, 0x9C, + 0x0F, 0x3E, 0x7C, 0x3F, 0xF0, 0x1F, 0xC0, 0x3B, 0x87, 0x70, 0x00, 0x00, 0x03, 0xF0, 0xFF, 0x3E, + 0xF7, 0x0E, 0xE0, 0xFC, 0x1F, 0x83, 0xF0, 0xEF, 0x3C, 0xFF, 0x0F, 0xC0, 0x0F, 0xE0, 0x7F, 0xE1, + 0xF3, 0xE3, 0x81, 0xEE, 0x01, 0xDC, 0x03, 0xBF, 0xFF, 0x7F, 0xFE, 0xE0, 0x1D, 0xC0, 0x3B, 0x80, + 0x73, 0x81, 0xE7, 0xCF, 0x87, 0xFE, 0x03, 0xF8, 0x00, 0x3F, 0x0F, 0xF3, 0xCF, 0x70, 0x6F, 0xFF, + 0xFF, 0xF8, 0x3F, 0x0E, 0xF3, 0xCF, 0xF0, 0xFC, 0x00, 0x0E, 0xE0, 0x1D, 0xC0, 0x00, 0x00, 0x7F, + 0x03, 0xFF, 0x0F, 0x9F, 0x1C, 0x0F, 0x70, 0x0E, 0xE0, 0x1D, 0xFF, 0xFB, 0xFF, 0xF7, 0x00, 0xEE, + 0x01, 0xDC, 0x03, 0x9C, 0x0F, 0x3E, 0x7C, 0x3F, 0xF0, 0x1F, 0xC0, 0x3B, 0x87, 0x70, 0x00, 0x00, + 0x03, 0xF0, 0xFF, 0x3C, 0xF7, 0x06, 0xFF, 0xFF, 0xFF, 0x83, 0xF0, 0xEF, 0x3C, 0xFF, 0x0F, 0xC0, + 0x3B, 0x83, 0xB8, 0x00, 0x07, 0xF0, 0xFF, 0xC6, 0x3E, 0x00, 0xE0, 0x07, 0x00, 0x71, 0xFF, 0x1F, + 0xF0, 0x07, 0x00, 0x70, 0x07, 0x00, 0xE6, 0x3E, 0xFF, 0xC7, 0xF0, 0x77, 0x1D, 0xC0, 0x00, 0x00, + 0x7E, 0x1F, 0xC6, 0x78, 0x06, 0x1F, 0xC7, 0xF0, 0x1C, 0x0E, 0x47, 0xBF, 0xCF, 0xE0, 0x1F, 0xC0, + 0xFE, 0x00, 0x01, 0xC0, 0xE7, 0x07, 0x38, 0x39, 0xC1, 0x87, 0x1C, 0x38, 0xE0, 0xE6, 0x07, 0xF0, + 0x1F, 0x80, 0x78, 0x03, 0xC0, 0x1C, 0x09, 0xE0, 0x7E, 0x03, 0xE0, 0x00, 0x3F, 0x87, 0xF0, 0x00, + 0x00, 0x0E, 0x0D, 0xC3, 0x9C, 0x73, 0x8C, 0x71, 0x87, 0x70, 0xEE, 0x0D, 0x81, 0xF0, 0x1C, 0x03, + 0x80, 0x70, 0x1C, 0x1F, 0x83, 0xE0, 0x00, 0x1D, 0xC0, 0xEE, 0x00, 0x01, 0xC0, 0xE7, 0x07, 0x38, + 0x39, 0xC1, 0x87, 0x1C, 0x38, 0xE0, 0xE6, 0x07, 0xF0, 0x1F, 0x80, 0x78, 0x03, 0xC0, 0x1C, 0x09, + 0xE0, 0x7E, 0x03, 0xE0, 0x00, 0x3B, 0x87, 0x70, 0x00, 0x00, 0x0E, 0x0D, 0xC3, 0x9C, 0x73, 0x8C, + 0x71, 0x87, 0x70, 0xEE, 0x0D, 0x81, 0xF0, 0x1C, 0x03, 0x80, 0x70, 0x1C, 0x1F, 0x83, 0xE0, 0x00, + 0x06, 0x60, 0x37, 0x03, 0xF0, 0x1B, 0x0E, 0x07, 0x38, 0x39, 0xC1, 0xCE, 0x0C, 0x38, 0xE1, 0xC7, + 0x07, 0x30, 0x3F, 0x80, 0xFC, 0x03, 0xC0, 0x1E, 0x00, 0xE0, 0x4F, 0x03, 0xF0, 0x1F, 0x00, 0x0C, + 0xC1, 0xB8, 0x7E, 0x0D, 0x80, 0x01, 0xC1, 0xB8, 0x73, 0x8E, 0x71, 0x8E, 0x30, 0xEE, 0x1D, 0xC1, + 0xB0, 0x3E, 0x03, 0x80, 0x70, 0x0E, 0x03, 0x83, 0xF0, 0x7C, 0x00, 0x3B, 0x87, 0x70, 0x00, 0x70, + 0x7E, 0x0F, 0xC1, 0xF8, 0x3F, 0x07, 0xE0, 0xFC, 0x1F, 0xC7, 0xBF, 0xF3, 0xFE, 0x01, 0xC0, 0x38, + 0x07, 0x00, 0xE0, 0x1C, 0x3B, 0x8E, 0xE0, 0x00, 0x00, 0x61, 0xD8, 0x76, 0x1D, 0x87, 0x71, 0xDF, + 0xF3, 0xFC, 0x07, 0x01, 0xC0, 0x70, 0x1C, 0xFF, 0xFF, 0xFE, 0x03, 0x80, 0xE0, 0x38, 0x0E, 0x03, + 0x80, 0xE0, 0x38, 0x0E, 0x03, 0x80, 0xE0, 0x3E, 0x0F, 0x80, 0xE0, 0x38, 0x0E, 0x03, 0x80, 0xFF, + 0xFF, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xF0, 0xF0, 0x30, 0x30, 0x30, 0x06, 0x60, 0x06, + 0x60, 0x00, 0x00, 0xE0, 0x07, 0xE0, 0x07, 0xE0, 0x07, 0xE0, 0x07, 0xE0, 0x07, 0xFF, 0x87, 0xFF, + 0xC7, 0xE3, 0xE7, 0xE0, 0xE7, 0xE0, 0xE7, 0xE0, 0xE7, 0xE0, 0xE7, 0xE3, 0xE7, 0xFF, 0xC7, 0x7F, + 0x87, 0x0C, 0xC0, 0x33, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xFF, + 0x1F, 0xFE, 0x7E, 0x39, 0xF8, 0x77, 0xE3, 0x9F, 0xFE, 0x7F, 0xF1, 0xC0, 0x70, 0x39, 0xC1, 0xC7, + 0x0C, 0x1C, 0xE1, 0xF7, 0x1F, 0xF1, 0xCF, 0x0E, 0x38, 0x70, 0xC3, 0x07, 0x18, 0x1D, 0xC0, 0xE0, + 0x7F, 0x87, 0xF8, 0x01, 0xC0, 0x1C, 0x01, 0xC0, 0x1C, 0x01, 0xC0, 0x1C, 0x01, 0xC0, 0x1C, 0x7F, + 0xEF, 0xFE, 0x7C, 0x7E, 0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x0E, 0x1E, 0xF6, 0xE7, 0x00, 0xFF, + 0xEF, 0xFC, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC0, + 0xFF, 0xDF, 0xF8, 0x03, 0x80, 0x70, 0x0F, 0xC1, 0xF8, 0x3F, 0x07, 0xE0, 0xFC, 0x1F, 0x83, 0xF0, + 0x70, 0x7B, 0xCE, 0x73, 0x9C, 0xE7, 0x39, 0xCE, 0x70, 0xFE, 0xF8, 0xE1, 0x87, 0x0E, 0x1C, 0x18, + 0x30, 0x70, 0xE1, 0xC0, 0x7F, 0xE3, 0xFF, 0x8C, 0x0C, 0x60, 0x73, 0x03, 0x98, 0x1C, 0xC0, 0xE6, + 0x07, 0x30, 0x39, 0x81, 0xCC, 0x0E, 0x60, 0x70, 0xC7, 0xCC, 0x7E, 0xC0, 0xEC, 0x06, 0xC0, 0x6C, + 0x06, 0xE0, 0x6E, 0x06, 0xE0, 0xE7, 0x1E, 0x7F, 0xC3, 0xF8, 0x7B, 0xCE, 0x73, 0x9C, 0xE0, 0x7F, + 0x9F, 0xF0, 0x1C, 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC0, + 0x30, 0x0C, 0x03, 0x7F, 0x1F, 0xE0, 0x38, 0x07, 0x01, 0xC0, 0x70, 0x1C, 0x07, 0x01, 0xC0, 0xE7, + 0xF9, 0xFC, 0x60, 0x1C, 0x03, 0x80, 0x70, 0x0F, 0xFD, 0xFF, 0x80, 0x70, 0x0E, 0x03, 0x80, 0x70, + 0x0C, 0x03, 0x80, 0x70, 0x0C, 0x03, 0x80, 0x70, 0xFF, 0xEF, 0xFF, 0x70, 0x77, 0x07, 0x70, 0x77, + 0x07, 0x70, 0x77, 0x07, 0x70, 0x77, 0x07, 0x7F, 0xF7, 0xFF, 0x67, 0xE3, 0xBF, 0x9F, 0x1E, 0x70, + 0x73, 0x81, 0x9C, 0x0C, 0xE0, 0x66, 0x07, 0x30, 0x3B, 0x83, 0xDD, 0xFC, 0xEF, 0xC0, 0x7B, 0xCE, + 0x73, 0x9C, 0xE7, 0x39, 0xCE, 0x73, 0x9C, 0xE7, 0xFB, 0xE1, 0xC7, 0x1C, 0x71, 0xC7, 0x1C, 0x7F, + 0xFF, 0x7F, 0xE3, 0xFF, 0x8E, 0x1C, 0x60, 0x77, 0x03, 0xB8, 0x1D, 0xC0, 0xEE, 0x07, 0x30, 0x71, + 0xC3, 0x8F, 0xF8, 0x1F, 0x80, 0x00, 0x07, 0x07, 0x70, 0x73, 0x07, 0x30, 0x73, 0x86, 0x38, 0x61, + 0x8E, 0x18, 0xE1, 0xCC, 0x1D, 0xC1, 0xF8, 0x7F, 0x0F, 0x80, 0x00, 0x00, 0x3F, 0x0F, 0xF3, 0x87, + 0x60, 0x6C, 0x0F, 0xC1, 0xFC, 0x3B, 0xC7, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC0, + 0x38, 0x07, 0x3F, 0x0F, 0xF3, 0x87, 0x60, 0x6C, 0x0F, 0xC1, 0xFE, 0x39, 0xC7, 0x00, 0xC0, 0x7B, + 0xFE, 0x7F, 0x80, 0xE0, 0xCE, 0x19, 0xC7, 0x1C, 0xE3, 0x9C, 0x37, 0x07, 0xE0, 0xF0, 0x0C, 0x01, + 0xC0, 0x38, 0x03, 0x00, 0x70, 0x0E, 0x01, 0xC0, 0x18, 0x70, 0xEF, 0x1C, 0xE3, 0x8E, 0x61, 0xDC, + 0x1F, 0x81, 0xE0, 0x38, 0x03, 0x80, 0x39, 0xFF, 0x3F, 0xE0, 0xFF, 0xFF, 0xFE, 0x00, 0xE0, 0x0E, + 0x60, 0xE6, 0x0C, 0x61, 0xC6, 0x1C, 0x61, 0x86, 0x38, 0x63, 0x86, 0x30, 0x60, 0x06, 0x00, 0x60, + 0x06, 0x00, 0x7F, 0x1F, 0xE0, 0x1C, 0x07, 0x01, 0xC0, 0x70, 0x1C, 0x07, 0x01, 0xC0, 0x70, 0x1C, + 0x07, 0xE7, 0x1F, 0x38, 0xF9, 0xC7, 0xCE, 0x3E, 0xE1, 0xFF, 0x0F, 0xF0, 0xFC, 0x07, 0x60, 0x3B, + 0x83, 0x8F, 0xF8, 0x3F, 0x80, 0x7F, 0xF3, 0xFF, 0xC6, 0x0E, 0x30, 0x71, 0x83, 0x8C, 0x1C, 0x60, + 0xE3, 0x07, 0x18, 0x38, 0xC1, 0xDE, 0x0F, 0xE0, 0x70, 0x27, 0x67, 0x70, 0x33, 0x77, 0x6E, 0x00, + 0x6E, 0xE4, 0x00, 0x3F, 0xBF, 0xFC, 0x2C, 0x07, 0x03, 0x80, 0xE0, 0x38, 0x0E, 0x03, 0x01, 0x80, + 0x00, 0x60, 0x78, 0x3C, 0x0C, 0x00, 0x1C, 0x3E, 0x7C, 0x60, 0x60, 0x73, 0x3F, 0xFE, 0xF8, 0x00, + 0xFF, 0xFC, 0x00, 0x6F, 0xF2, 0x0C, 0xEE, 0x66, 0x67, 0x77, 0x77, 0x73, 0x30, 0x00, 0x18, 0x76, + 0x19, 0xFE, 0x7F, 0x1F, 0x07, 0x00, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC0, 0x38, 0x0E, 0x03, 0x80, + 0x00, 0x00, 0x06, 0x36, 0x67, 0x67, 0x77, 0x7F, 0xE7, 0xFE, 0x70, 0x03, 0x00, 0x30, 0x03, 0x00, + 0x30, 0x03, 0x00, 0x38, 0x03, 0x80, 0x38, 0x00, 0x00, 0x00, 0x07, 0x03, 0xE1, 0xE0, 0x60, 0x38, + 0x0F, 0xC1, 0xF0, 0x3C, 0x1C, 0x06, 0x03, 0x80, 0xE0, 0x1F, 0xE3, 0xF8, 0x00, 0x1E, 0x0F, 0xC7, + 0x39, 0x86, 0x61, 0xB8, 0x7E, 0x1D, 0x86, 0x61, 0x9F, 0xE3, 0xF0, 0x00, 0x00, 0x3F, 0xCF, 0xF0, + 0x2C, 0x03, 0x00, 0xE0, 0x38, 0x0E, 0x03, 0x80, 0xE0, 0x18, 0x06, 0x01, 0x80, 0x70, 0x1C, 0x00, + 0x40, 0x0E, 0x07, 0xE0, 0x67, 0x0E, 0x70, 0xE3, 0x0C, 0x39, 0xC3, 0x98, 0x19, 0x81, 0xF8, 0x1F, + 0x00, 0xF0, 0x0F, 0x00, 0xE0, 0x06, 0x00, 0x00, 0x02, 0x00, 0x60, 0x07, 0x00, 0xF0, 0x0F, 0x00, + 0xF8, 0x1F, 0x81, 0x98, 0x39, 0xC3, 0x9C, 0x30, 0xC7, 0x0E, 0x70, 0xEE, 0x06, 0xE0, 0x70, 0x00, + 0x08, 0x0F, 0x87, 0xF1, 0x9C, 0xE3, 0x38, 0xC7, 0xF1, 0xFC, 0x1F, 0x80, 0xE0, 0x38, 0x06, 0x01, + 0x80, 0x60, 0x18, 0x00, 0x00, 0x10, 0x00, 0xE0, 0x03, 0x98, 0x06, 0x60, 0x1B, 0x80, 0x7E, 0x01, + 0xF8, 0x06, 0xE0, 0x39, 0xE3, 0xC3, 0xFF, 0x07, 0xF0, 0x7D, 0xF0, 0x6F, 0xF2, 0x0C, 0xEE, 0x66, + 0x67, 0x77, 0x77, 0x73, 0x30, 0x00, 0x18, 0x76, 0x19, 0xFE, 0x7F, 0x1F, 0x07, 0x00, 0xC0, 0x30, + 0x0C, 0x03, 0x00, 0xC0, 0x38, 0x0E, 0x03, 0x80, 0x00, 0x00, 0x06, 0x36, 0x67, 0x67, 0x77, 0x7F, + 0xE7, 0xFE, 0x70, 0x03, 0x00, 0x30, 0x03, 0x00, 0x30, 0x03, 0x00, 0x38, 0x03, 0x80, 0x38, 0x00, + 0x00, 0x00, 0x39, 0xE6, 0xF1, 0xB0, 0x7F, 0x9F, 0xE7, 0xE1, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC0, + 0x30, 0x0C, 0x03, 0x00, 0x00, 0x07, 0x01, 0xE0, 0x78, 0x1F, 0x0E, 0xC3, 0x39, 0xC6, 0x61, 0xB8, + 0x6E, 0x1F, 0x87, 0xED, 0xDF, 0xE7, 0xF8, 0x00, 0x3E, 0x7E, 0x60, 0x60, 0x60, 0x73, 0x3F, 0x1E, + 0x1C, 0x38, 0x70, 0x60, 0xE0, 0xC0, 0x00, 0x40, 0x0E, 0x07, 0xE0, 0x67, 0x0E, 0x70, 0xE3, 0x0C, + 0x39, 0xC3, 0x98, 0x19, 0x81, 0xF8, 0x1F, 0x00, 0xF0, 0x0F, 0x00, 0xE0, 0x06, 0x00, 0x00, 0x02, + 0x00, 0x60, 0x07, 0x00, 0xF0, 0x0F, 0x00, 0xF8, 0x1F, 0x81, 0x98, 0x39, 0xC3, 0x9C, 0x30, 0xC7, + 0x0E, 0x70, 0xEE, 0x06, 0xE0, 0x70, 0x00, 0x08, 0x0F, 0x87, 0xF1, 0x9C, 0xE3, 0x38, 0xC7, 0xF1, + 0xFC, 0x1F, 0x80, 0xE0, 0x38, 0x06, 0x01, 0x80, 0x60, 0x18, 0x00, 0x03, 0x00, 0x1E, 0x00, 0x78, + 0x03, 0xF0, 0x0F, 0xC0, 0x73, 0x01, 0xCE, 0x06, 0x38, 0x38, 0x70, 0xFF, 0xC7, 0xFF, 0x1F, 0xFE, + 0x70, 0x3B, 0x80, 0x6E, 0x01, 0xC0, 0x00, 0x03, 0x00, 0x1C, 0x00, 0x30, 0x00, 0x00, 0x0F, 0xC3, + 0xF8, 0x06, 0x01, 0xC7, 0xF7, 0xFD, 0xC7, 0x61, 0xD8, 0x77, 0xFC, 0xFF, 0x0E, 0x03, 0x80, 0xE0, + 0x38, 0x02, 0x00, 0x1E, 0x00, 0x78, 0x00, 0xE0, 0x03, 0x00, 0x0C, 0x00, 0x78, 0x01, 0xE0, 0x0F, + 0xC0, 0x3F, 0x01, 0xCC, 0x07, 0x38, 0x18, 0xE0, 0xE1, 0xC3, 0xFF, 0x1F, 0xFC, 0x7F, 0xF9, 0xC0, + 0xEE, 0x01, 0xB8, 0x07, 0x1E, 0x07, 0xC0, 0x70, 0x38, 0x04, 0x0F, 0xC3, 0xF8, 0x06, 0x01, 0xC7, + 0xF7, 0xFD, 0xC7, 0x61, 0xD8, 0x77, 0xFC, 0xFF, 0x0E, 0x00, 0x00, 0x10, 0x00, 0xE0, 0x07, 0x80, + 0xDC, 0x07, 0xC0, 0x3F, 0x00, 0xCC, 0x00, 0xC0, 0x07, 0x80, 0x1E, 0x00, 0xFC, 0x03, 0xF0, 0x1C, 0xC0, 0x73, 0x81, 0x8E, 0x0E, 0x1C, 0x3F, 0xF1, 0xFF, 0xC7, 0xFF, 0x9C, 0x0E, 0xE0, 0x1B, 0x80, - 0x70, 0x02, 0x01, 0xC0, 0x38, 0x17, 0x0E, 0x87, 0xC1, 0x10, 0x00, 0x3F, 0x0F, 0xE0, 0x18, 0x07, - 0x1F, 0xDF, 0xF7, 0x1D, 0x87, 0x61, 0xDF, 0xF3, 0xFC, 0x38, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, - 0x1C, 0x03, 0x60, 0x1E, 0x00, 0xFC, 0x03, 0x30, 0x03, 0x00, 0x1E, 0x00, 0x78, 0x03, 0xF0, 0x0F, - 0xC0, 0x73, 0x01, 0xCE, 0x06, 0x38, 0x38, 0x70, 0xFF, 0xC7, 0xFF, 0x1F, 0xFE, 0x70, 0x3B, 0x80, - 0x6E, 0x01, 0xC0, 0x03, 0xC0, 0x7C, 0x03, 0x82, 0xE0, 0xE8, 0x3E, 0x04, 0x40, 0x00, 0x3F, 0x07, - 0xF0, 0x06, 0x00, 0xE1, 0xFC, 0xFF, 0x9C, 0x73, 0x0E, 0x61, 0xCF, 0xF8, 0xFF, 0x07, 0x00, 0x04, - 0x40, 0x3F, 0x81, 0xFC, 0x00, 0x00, 0x03, 0x00, 0x1E, 0x00, 0xFC, 0x03, 0x30, 0x03, 0x00, 0x1E, + 0x70, 0x00, 0x20, 0x07, 0x00, 0xE0, 0x5C, 0x0E, 0x81, 0xF0, 0x11, 0x00, 0x00, 0x3F, 0x03, 0xF8, + 0x01, 0x80, 0x1C, 0x1F, 0xC7, 0xFC, 0x71, 0xC6, 0x1C, 0x61, 0xC7, 0xFC, 0x3F, 0xC0, 0xE0, 0x00, + 0x80, 0x07, 0x00, 0x1E, 0x00, 0xF8, 0x07, 0xE0, 0x3F, 0x00, 0xCC, 0x00, 0xC0, 0x07, 0x80, 0x1E, + 0x00, 0xFC, 0x03, 0xF0, 0x1C, 0xC0, 0x73, 0x81, 0x8E, 0x0E, 0x1C, 0x3F, 0xF1, 0xFF, 0xC7, 0xFF, + 0x9C, 0x0E, 0xE0, 0x1B, 0x80, 0x70, 0x02, 0x01, 0xC0, 0x38, 0x17, 0x0E, 0x87, 0xC1, 0x10, 0x00, + 0x3F, 0x0F, 0xE0, 0x18, 0x07, 0x1F, 0xDF, 0xF7, 0x1D, 0x87, 0x61, 0xDF, 0xF3, 0xFC, 0x38, 0x00, + 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x1C, 0x03, 0x60, 0x1E, 0x00, 0xFC, 0x03, 0x30, 0x03, 0x00, 0x1E, 0x00, 0x78, 0x03, 0xF0, 0x0F, 0xC0, 0x73, 0x01, 0xCE, 0x06, 0x38, 0x38, 0x70, 0xFF, 0xC7, 0xFF, - 0x1F, 0xFE, 0x70, 0x3B, 0x80, 0x6E, 0x01, 0xC0, 0x1D, 0x8F, 0xE3, 0x30, 0x10, 0x0E, 0x07, 0xC1, - 0x10, 0x00, 0x3F, 0x0F, 0xE0, 0x18, 0x07, 0x1F, 0xDF, 0xF7, 0x1D, 0x87, 0x61, 0xDF, 0xF3, 0xFC, - 0x38, 0x00, 0x00, 0x0C, 0x00, 0x78, 0x03, 0xF0, 0x0C, 0xC0, 0x0C, 0x00, 0x78, 0x01, 0xE0, 0x0F, - 0xC0, 0x3F, 0x01, 0xCC, 0x07, 0x38, 0x18, 0xE0, 0xE1, 0xC3, 0xFF, 0x1F, 0xFC, 0x7F, 0xF9, 0xC0, - 0xEE, 0x01, 0xB8, 0x07, 0x00, 0x00, 0x0C, 0x00, 0x70, 0x00, 0xC0, 0x00, 0x01, 0x00, 0xE0, 0x7C, - 0x11, 0x00, 0x03, 0xF0, 0xFE, 0x01, 0x80, 0x71, 0xFD, 0xFF, 0x71, 0xD8, 0x76, 0x1D, 0xFF, 0x3F, - 0xC3, 0x80, 0xE0, 0x38, 0x0E, 0x00, 0x00, 0x80, 0x07, 0x00, 0x1C, 0x00, 0xE0, 0x0D, 0xC0, 0x3F, - 0x00, 0x78, 0x00, 0x00, 0x03, 0x00, 0x1E, 0x00, 0x78, 0x03, 0xF0, 0x0F, 0xC0, 0x73, 0x01, 0xCE, - 0x06, 0x38, 0x38, 0x70, 0xFF, 0xC7, 0xFF, 0x1F, 0xFE, 0x70, 0x3B, 0x80, 0x6E, 0x01, 0xC0, 0x01, - 0x00, 0xE0, 0x70, 0x38, 0x35, 0x07, 0xC1, 0xF0, 0x10, 0x00, 0x0F, 0xC3, 0xF8, 0x06, 0x01, 0xC7, - 0xF7, 0xFD, 0xC7, 0x61, 0xD8, 0x77, 0xFC, 0xFF, 0x0E, 0x00, 0x04, 0x00, 0x38, 0x00, 0xF0, 0x00, - 0xC0, 0x0C, 0xC0, 0x3F, 0x00, 0x78, 0x00, 0x00, 0x03, 0x00, 0x1E, 0x00, 0x78, 0x03, 0xF0, 0x0F, - 0xC0, 0x73, 0x01, 0xCE, 0x06, 0x38, 0x38, 0x70, 0xFF, 0xC7, 0xFF, 0x1F, 0xFE, 0x70, 0x3B, 0x80, - 0x6E, 0x01, 0xC0, 0x10, 0x0E, 0x01, 0xC0, 0x38, 0x35, 0x07, 0xC1, 0xF0, 0x10, 0x00, 0x0F, 0xC3, - 0xF8, 0x06, 0x01, 0xC7, 0xF7, 0xFD, 0xC7, 0x61, 0xD8, 0x77, 0xFC, 0xFF, 0x0E, 0x00, 0x07, 0x00, - 0x1E, 0x00, 0x38, 0x00, 0xE0, 0x0F, 0xC0, 0x3F, 0x00, 0x78, 0x00, 0x00, 0x03, 0x00, 0x1E, 0x00, - 0x78, 0x03, 0xF0, 0x0F, 0xC0, 0x73, 0x01, 0xCE, 0x06, 0x38, 0x38, 0x70, 0xFF, 0xC7, 0xFF, 0x1F, - 0xFE, 0x70, 0x3B, 0x80, 0x6E, 0x01, 0xC0, 0x0C, 0x07, 0xC0, 0x70, 0x38, 0x3D, 0x07, 0xC1, 0xF0, - 0x10, 0x00, 0x0F, 0xC3, 0xF8, 0x06, 0x01, 0xC7, 0xF7, 0xFD, 0xC7, 0x61, 0xD8, 0x77, 0xFC, 0xFF, - 0x0E, 0x00, 0x0F, 0x60, 0x7F, 0x00, 0x98, 0x03, 0x30, 0x0F, 0xC0, 0x1E, 0x00, 0x00, 0x00, 0xC0, - 0x07, 0x80, 0x1E, 0x00, 0xFC, 0x03, 0xF0, 0x1C, 0xC0, 0x73, 0x81, 0x8E, 0x0E, 0x1C, 0x3F, 0xF1, - 0xFF, 0xC7, 0xFF, 0x9C, 0x0E, 0xE0, 0x1B, 0x80, 0x70, 0x1D, 0x8F, 0xE3, 0x70, 0xC4, 0x1F, 0x07, - 0xC0, 0x40, 0x00, 0x3F, 0x0F, 0xE0, 0x18, 0x07, 0x1F, 0xDF, 0xF7, 0x1D, 0x87, 0x61, 0xDF, 0xF3, - 0xFC, 0x38, 0x0C, 0xC0, 0x3F, 0x00, 0x78, 0x00, 0x00, 0x03, 0x00, 0x1E, 0x00, 0x78, 0x03, 0xF0, + 0x1F, 0xFE, 0x70, 0x3B, 0x80, 0x6E, 0x01, 0xC0, 0x03, 0xC0, 0x7C, 0x03, 0x82, 0xE0, 0xE8, 0x3E, + 0x04, 0x40, 0x00, 0x3F, 0x07, 0xF0, 0x06, 0x00, 0xE1, 0xFC, 0xFF, 0x9C, 0x73, 0x0E, 0x61, 0xCF, + 0xF8, 0xFF, 0x07, 0x00, 0x04, 0x40, 0x3F, 0x81, 0xFC, 0x00, 0x00, 0x03, 0x00, 0x1E, 0x00, 0xFC, + 0x03, 0x30, 0x03, 0x00, 0x1E, 0x00, 0x78, 0x03, 0xF0, 0x0F, 0xC0, 0x73, 0x01, 0xCE, 0x06, 0x38, + 0x38, 0x70, 0xFF, 0xC7, 0xFF, 0x1F, 0xFE, 0x70, 0x3B, 0x80, 0x6E, 0x01, 0xC0, 0x1D, 0x8F, 0xE3, + 0x30, 0x10, 0x0E, 0x07, 0xC1, 0x10, 0x00, 0x3F, 0x0F, 0xE0, 0x18, 0x07, 0x1F, 0xDF, 0xF7, 0x1D, + 0x87, 0x61, 0xDF, 0xF3, 0xFC, 0x38, 0x00, 0x00, 0x0C, 0x00, 0x78, 0x03, 0xF0, 0x0C, 0xC0, 0x0C, + 0x00, 0x78, 0x01, 0xE0, 0x0F, 0xC0, 0x3F, 0x01, 0xCC, 0x07, 0x38, 0x18, 0xE0, 0xE1, 0xC3, 0xFF, + 0x1F, 0xFC, 0x7F, 0xF9, 0xC0, 0xEE, 0x01, 0xB8, 0x07, 0x00, 0x00, 0x0C, 0x00, 0x70, 0x00, 0xC0, + 0x00, 0x01, 0x00, 0xE0, 0x7C, 0x11, 0x00, 0x03, 0xF0, 0xFE, 0x01, 0x80, 0x71, 0xFD, 0xFF, 0x71, + 0xD8, 0x76, 0x1D, 0xFF, 0x3F, 0xC3, 0x80, 0xE0, 0x38, 0x0E, 0x00, 0x00, 0x80, 0x07, 0x00, 0x1C, + 0x00, 0xE0, 0x0D, 0xC0, 0x3F, 0x00, 0x78, 0x00, 0x00, 0x03, 0x00, 0x1E, 0x00, 0x78, 0x03, 0xF0, 0x0F, 0xC0, 0x73, 0x01, 0xCE, 0x06, 0x38, 0x38, 0x70, 0xFF, 0xC7, 0xFF, 0x1F, 0xFE, 0x70, 0x3B, - 0x80, 0x6E, 0x01, 0xC0, 0x00, 0x03, 0x00, 0x1C, 0x00, 0x30, 0x00, 0x31, 0x0F, 0xC1, 0xF0, 0x10, - 0x00, 0x0F, 0xC3, 0xF8, 0x06, 0x01, 0xC7, 0xF7, 0xFD, 0xC7, 0x61, 0xD8, 0x77, 0xFC, 0xFF, 0x0E, - 0x03, 0x80, 0xE0, 0x38, 0x7F, 0xDF, 0xFB, 0xFF, 0x70, 0x0E, 0x01, 0xC0, 0x3F, 0xE7, 0xFC, 0xFF, - 0x9C, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xFF, 0xBF, 0xF8, 0x00, 0x0C, 0x03, 0xC0, 0x30, 0x00, 0x00, - 0x0F, 0xC7, 0xFB, 0x8E, 0xE1, 0xFF, 0xFF, 0xFF, 0x80, 0xE0, 0x38, 0x07, 0xF8, 0xFE, 0x0E, 0x03, - 0x01, 0xC0, 0x30, 0x0C, 0x03, 0xE0, 0x1C, 0x07, 0x00, 0xC0, 0xFF, 0xBF, 0xF7, 0xFE, 0xE0, 0x1C, - 0x03, 0x80, 0x7F, 0xCF, 0xF9, 0xFF, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0xFF, 0x7F, 0xF0, 0x1C, - 0x07, 0x80, 0xE0, 0x30, 0x08, 0x0F, 0xC7, 0xFB, 0x8E, 0xE1, 0xFF, 0xFF, 0xFF, 0x80, 0xE0, 0x38, - 0x07, 0xF8, 0xFE, 0x0E, 0x00, 0x1D, 0x87, 0xF0, 0xCC, 0x00, 0x07, 0xFD, 0xFF, 0xBF, 0xF7, 0x00, - 0xE0, 0x1C, 0x03, 0xFE, 0x7F, 0xCF, 0xF9, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1F, 0xFB, 0xFF, 0x80, - 0x11, 0x0F, 0xC7, 0xF0, 0x00, 0x00, 0x0F, 0xC7, 0xFB, 0x8E, 0xE1, 0xFF, 0xFF, 0xFF, 0x80, 0xE0, - 0x38, 0x07, 0xF8, 0xFE, 0x0E, 0x00, 0x00, 0x40, 0x06, 0x00, 0xE0, 0xDC, 0x1F, 0x83, 0xF0, 0x11, - 0x07, 0xFC, 0xFF, 0xCF, 0xFC, 0xE0, 0x0E, 0x00, 0xE0, 0x0F, 0xF8, 0xFF, 0x8F, 0xF8, 0xE0, 0x0E, - 0x00, 0xE0, 0x0E, 0x00, 0xFF, 0xCF, 0xFE, 0x00, 0x40, 0x1C, 0x07, 0x86, 0xE1, 0xF8, 0x7E, 0x0C, - 0xC0, 0x00, 0x3F, 0x0F, 0xF3, 0x8E, 0x70, 0xEF, 0xFD, 0xFF, 0xB8, 0x07, 0x00, 0xE0, 0x0F, 0xF0, - 0xFE, 0x07, 0x00, 0x02, 0x00, 0xE0, 0x1E, 0x07, 0xC1, 0xF8, 0x7E, 0x04, 0x43, 0xFE, 0xFF, 0xDF, - 0xFB, 0x80, 0x70, 0x0E, 0x01, 0xFF, 0x3F, 0xE7, 0xFC, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0F, 0xFD, - 0xFF, 0xC0, 0x02, 0x01, 0x80, 0x70, 0x3E, 0x1F, 0x0F, 0xC3, 0x30, 0x00, 0x3F, 0x1F, 0xEE, 0x3B, - 0x87, 0xFF, 0xFF, 0xFE, 0x03, 0x80, 0xE0, 0x1F, 0xE3, 0xF8, 0x38, 0x03, 0xC0, 0x78, 0x07, 0x06, - 0xE1, 0xE8, 0x7E, 0x04, 0x43, 0xFE, 0xFF, 0xDF, 0xFB, 0x80, 0x70, 0x0E, 0x01, 0xFF, 0x3F, 0xE7, - 0xFC, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0F, 0xFD, 0xFF, 0xC0, 0x03, 0xC0, 0x78, 0x07, 0x06, 0xE1, - 0xE8, 0x7E, 0x0C, 0xC0, 0x00, 0x3F, 0x0F, 0xF3, 0x8E, 0x70, 0xEF, 0xFD, 0xFF, 0xB8, 0x07, 0x00, - 0xE0, 0x0F, 0xF0, 0xFE, 0x07, 0x00, 0x19, 0x07, 0xF0, 0xFC, 0x00, 0x00, 0xC0, 0x3C, 0x0F, 0xC0, - 0x88, 0x7F, 0xDF, 0xFB, 0xFF, 0x70, 0x0E, 0x01, 0xC0, 0x3F, 0xE7, 0xFC, 0xFF, 0x9C, 0x03, 0x80, - 0x70, 0x0E, 0x01, 0xFF, 0xBF, 0xF8, 0x00, 0x0F, 0xE7, 0xF0, 0x00, 0x0C, 0x07, 0x83, 0xF0, 0xCC, - 0x00, 0x0F, 0xC7, 0xFB, 0x8E, 0xE1, 0xFF, 0xFF, 0xFF, 0x80, 0xE0, 0x38, 0x07, 0xF8, 0xFE, 0x0E, - 0x00, 0x00, 0x01, 0x80, 0x78, 0x1F, 0x81, 0x10, 0xFF, 0xBF, 0xF7, 0xFE, 0xE0, 0x1C, 0x03, 0x80, - 0x7F, 0xCF, 0xF9, 0xFF, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0xFF, 0x7F, 0xF0, 0x00, 0x18, 0x07, - 0x80, 0x60, 0x00, 0x03, 0x01, 0xE0, 0xFC, 0x33, 0x00, 0x03, 0xF1, 0xFE, 0xE3, 0xB8, 0x7F, 0xFF, - 0xFF, 0xE0, 0x38, 0x0E, 0x01, 0xFE, 0x3F, 0x83, 0x80, 0xC0, 0x70, 0x0C, 0x00, 0x23, 0xDE, 0x73, - 0x19, 0xCE, 0x73, 0x9C, 0xE7, 0x39, 0xCE, 0x73, 0x9C, 0xE0, 0x73, 0xCE, 0x62, 0x39, 0xCE, 0x73, - 0x9C, 0xE7, 0x39, 0xCE, 0x6E, 0xEE, 0xEE, 0xEE, 0xEE, 0xEE, 0xEE, 0xE0, 0x6E, 0xE0, 0x5F, 0xA1, - 0xFF, 0xFF, 0xFF, 0xFF, 0x1F, 0xF0, 0x0F, 0xC0, 0xFF, 0xC3, 0xCF, 0x9C, 0x0E, 0xE0, 0x1F, 0x80, - 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xDC, 0x0F, 0x78, 0x78, 0xFF, 0xC1, 0xFE, - 0x00, 0xE0, 0x03, 0x00, 0x0E, 0x00, 0x30, 0x00, 0x00, 0x07, 0xE1, 0xFE, 0x78, 0xEE, 0x1D, 0xC1, - 0xB0, 0x3F, 0x07, 0xE1, 0xDC, 0x39, 0xFE, 0x1F, 0x80, 0xC0, 0x18, 0x03, 0x80, 0x60, 0x02, 0x00, - 0x1E, 0x00, 0x18, 0x00, 0xE0, 0x03, 0x00, 0x3F, 0x03, 0xFF, 0x0F, 0x3E, 0x70, 0x3B, 0x80, 0x7E, - 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0x70, 0x3D, 0xE1, 0xE3, 0xFF, 0x07, - 0xF8, 0x03, 0x80, 0x1E, 0x03, 0xC0, 0x38, 0x07, 0x00, 0xC0, 0x7E, 0x1F, 0xE7, 0x8E, 0xE1, 0xDC, - 0x1B, 0x03, 0xF0, 0x7E, 0x1D, 0xC3, 0x9F, 0xE1, 0xF8, 0x0C, 0x00, 0x00, 0x10, 0x00, 0xE0, 0x07, - 0x00, 0xD8, 0x07, 0xC0, 0x3F, 0x00, 0xCC, 0x03, 0xF0, 0x3F, 0xF0, 0xF3, 0xE7, 0x03, 0xB8, 0x07, - 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x77, 0x03, 0xDE, 0x1E, 0x3F, 0xF0, - 0x7F, 0x80, 0x38, 0x00, 0x00, 0x40, 0x1C, 0x03, 0x86, 0xE1, 0xF8, 0x7E, 0x0C, 0xC0, 0x00, 0x3F, - 0x0F, 0xF3, 0xC7, 0x70, 0xEE, 0x0D, 0x81, 0xF8, 0x3F, 0x0E, 0xE1, 0xCF, 0xF0, 0xFC, 0x06, 0x00, - 0x01, 0x80, 0x07, 0x00, 0x0E, 0x00, 0xD8, 0x07, 0x80, 0x3F, 0x00, 0xCC, 0x03, 0xF0, 0x3F, 0xF0, + 0x80, 0x6E, 0x01, 0xC0, 0x01, 0x00, 0xE0, 0x70, 0x38, 0x35, 0x07, 0xC1, 0xF0, 0x10, 0x00, 0x0F, + 0xC3, 0xF8, 0x06, 0x01, 0xC7, 0xF7, 0xFD, 0xC7, 0x61, 0xD8, 0x77, 0xFC, 0xFF, 0x0E, 0x00, 0x04, + 0x00, 0x38, 0x00, 0xF0, 0x00, 0xC0, 0x0C, 0xC0, 0x3F, 0x00, 0x78, 0x00, 0x00, 0x03, 0x00, 0x1E, + 0x00, 0x78, 0x03, 0xF0, 0x0F, 0xC0, 0x73, 0x01, 0xCE, 0x06, 0x38, 0x38, 0x70, 0xFF, 0xC7, 0xFF, + 0x1F, 0xFE, 0x70, 0x3B, 0x80, 0x6E, 0x01, 0xC0, 0x10, 0x0E, 0x01, 0xC0, 0x38, 0x35, 0x07, 0xC1, + 0xF0, 0x10, 0x00, 0x0F, 0xC3, 0xF8, 0x06, 0x01, 0xC7, 0xF7, 0xFD, 0xC7, 0x61, 0xD8, 0x77, 0xFC, + 0xFF, 0x0E, 0x00, 0x07, 0x00, 0x1E, 0x00, 0x38, 0x00, 0xE0, 0x0F, 0xC0, 0x3F, 0x00, 0x78, 0x00, + 0x00, 0x03, 0x00, 0x1E, 0x00, 0x78, 0x03, 0xF0, 0x0F, 0xC0, 0x73, 0x01, 0xCE, 0x06, 0x38, 0x38, + 0x70, 0xFF, 0xC7, 0xFF, 0x1F, 0xFE, 0x70, 0x3B, 0x80, 0x6E, 0x01, 0xC0, 0x0C, 0x07, 0xC0, 0x70, + 0x38, 0x3D, 0x07, 0xC1, 0xF0, 0x10, 0x00, 0x0F, 0xC3, 0xF8, 0x06, 0x01, 0xC7, 0xF7, 0xFD, 0xC7, + 0x61, 0xD8, 0x77, 0xFC, 0xFF, 0x0E, 0x00, 0x0F, 0x60, 0x7F, 0x00, 0x98, 0x03, 0x30, 0x0F, 0xC0, + 0x1E, 0x00, 0x00, 0x00, 0xC0, 0x07, 0x80, 0x1E, 0x00, 0xFC, 0x03, 0xF0, 0x1C, 0xC0, 0x73, 0x81, + 0x8E, 0x0E, 0x1C, 0x3F, 0xF1, 0xFF, 0xC7, 0xFF, 0x9C, 0x0E, 0xE0, 0x1B, 0x80, 0x70, 0x1D, 0x8F, + 0xE3, 0x70, 0xC4, 0x1F, 0x07, 0xC0, 0x40, 0x00, 0x3F, 0x0F, 0xE0, 0x18, 0x07, 0x1F, 0xDF, 0xF7, + 0x1D, 0x87, 0x61, 0xDF, 0xF3, 0xFC, 0x38, 0x0C, 0xC0, 0x3F, 0x00, 0x78, 0x00, 0x00, 0x03, 0x00, + 0x1E, 0x00, 0x78, 0x03, 0xF0, 0x0F, 0xC0, 0x73, 0x01, 0xCE, 0x06, 0x38, 0x38, 0x70, 0xFF, 0xC7, + 0xFF, 0x1F, 0xFE, 0x70, 0x3B, 0x80, 0x6E, 0x01, 0xC0, 0x00, 0x03, 0x00, 0x1C, 0x00, 0x30, 0x00, + 0x31, 0x0F, 0xC1, 0xF0, 0x10, 0x00, 0x0F, 0xC3, 0xF8, 0x06, 0x01, 0xC7, 0xF7, 0xFD, 0xC7, 0x61, + 0xD8, 0x77, 0xFC, 0xFF, 0x0E, 0x03, 0x80, 0xE0, 0x38, 0x7F, 0xDF, 0xFB, 0xFF, 0x70, 0x0E, 0x01, + 0xC0, 0x3F, 0xE7, 0xFC, 0xFF, 0x9C, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xFF, 0xBF, 0xF8, 0x00, 0x0C, + 0x03, 0xC0, 0x30, 0x00, 0x00, 0x0F, 0xC7, 0xFB, 0x8E, 0xE1, 0xFF, 0xFF, 0xFF, 0x80, 0xE0, 0x38, + 0x07, 0xF8, 0xFE, 0x0E, 0x03, 0x01, 0xC0, 0x30, 0x0C, 0x03, 0xE0, 0x1C, 0x07, 0x00, 0xC0, 0xFF, + 0xBF, 0xF7, 0xFE, 0xE0, 0x1C, 0x03, 0x80, 0x7F, 0xCF, 0xF9, 0xFF, 0x38, 0x07, 0x00, 0xE0, 0x1C, + 0x03, 0xFF, 0x7F, 0xF0, 0x1C, 0x07, 0x80, 0xE0, 0x30, 0x08, 0x0F, 0xC7, 0xFB, 0x8E, 0xE1, 0xFF, + 0xFF, 0xFF, 0x80, 0xE0, 0x38, 0x07, 0xF8, 0xFE, 0x0E, 0x00, 0x1D, 0x87, 0xF0, 0xCC, 0x00, 0x07, + 0xFD, 0xFF, 0xBF, 0xF7, 0x00, 0xE0, 0x1C, 0x03, 0xFE, 0x7F, 0xCF, 0xF9, 0xC0, 0x38, 0x07, 0x00, + 0xE0, 0x1F, 0xFB, 0xFF, 0x80, 0x11, 0x0F, 0xC7, 0xF0, 0x00, 0x00, 0x0F, 0xC7, 0xFB, 0x8E, 0xE1, + 0xFF, 0xFF, 0xFF, 0x80, 0xE0, 0x38, 0x07, 0xF8, 0xFE, 0x0E, 0x00, 0x00, 0x40, 0x06, 0x00, 0xE0, + 0xDC, 0x1F, 0x83, 0xF0, 0x11, 0x07, 0xFC, 0xFF, 0xCF, 0xFC, 0xE0, 0x0E, 0x00, 0xE0, 0x0F, 0xF8, + 0xFF, 0x8F, 0xF8, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xFF, 0xCF, 0xFE, 0x00, 0x40, 0x1C, 0x07, + 0x86, 0xE1, 0xF8, 0x7E, 0x0C, 0xC0, 0x00, 0x3F, 0x0F, 0xF3, 0x8E, 0x70, 0xEF, 0xFD, 0xFF, 0xB8, + 0x07, 0x00, 0xE0, 0x0F, 0xF0, 0xFE, 0x07, 0x00, 0x02, 0x00, 0xE0, 0x1E, 0x07, 0xC1, 0xF8, 0x7E, + 0x04, 0x43, 0xFE, 0xFF, 0xDF, 0xFB, 0x80, 0x70, 0x0E, 0x01, 0xFF, 0x3F, 0xE7, 0xFC, 0xE0, 0x1C, + 0x03, 0x80, 0x70, 0x0F, 0xFD, 0xFF, 0xC0, 0x02, 0x01, 0x80, 0x70, 0x3E, 0x1F, 0x0F, 0xC3, 0x30, + 0x00, 0x3F, 0x1F, 0xEE, 0x3B, 0x87, 0xFF, 0xFF, 0xFE, 0x03, 0x80, 0xE0, 0x1F, 0xE3, 0xF8, 0x38, + 0x03, 0xC0, 0x78, 0x07, 0x06, 0xE1, 0xE8, 0x7E, 0x04, 0x43, 0xFE, 0xFF, 0xDF, 0xFB, 0x80, 0x70, + 0x0E, 0x01, 0xFF, 0x3F, 0xE7, 0xFC, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0F, 0xFD, 0xFF, 0xC0, 0x03, + 0xC0, 0x78, 0x07, 0x06, 0xE1, 0xE8, 0x7E, 0x0C, 0xC0, 0x00, 0x3F, 0x0F, 0xF3, 0x8E, 0x70, 0xEF, + 0xFD, 0xFF, 0xB8, 0x07, 0x00, 0xE0, 0x0F, 0xF0, 0xFE, 0x07, 0x00, 0x19, 0x07, 0xF0, 0xFC, 0x00, + 0x00, 0xC0, 0x3C, 0x0F, 0xC0, 0x88, 0x7F, 0xDF, 0xFB, 0xFF, 0x70, 0x0E, 0x01, 0xC0, 0x3F, 0xE7, + 0xFC, 0xFF, 0x9C, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xFF, 0xBF, 0xF8, 0x00, 0x0F, 0xE7, 0xF0, 0x00, + 0x0C, 0x07, 0x83, 0xF0, 0xCC, 0x00, 0x0F, 0xC7, 0xFB, 0x8E, 0xE1, 0xFF, 0xFF, 0xFF, 0x80, 0xE0, + 0x38, 0x07, 0xF8, 0xFE, 0x0E, 0x00, 0x00, 0x01, 0x80, 0x78, 0x1F, 0x81, 0x10, 0xFF, 0xBF, 0xF7, + 0xFE, 0xE0, 0x1C, 0x03, 0x80, 0x7F, 0xCF, 0xF9, 0xFF, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0xFF, + 0x7F, 0xF0, 0x00, 0x18, 0x07, 0x80, 0x60, 0x00, 0x03, 0x01, 0xE0, 0xFC, 0x33, 0x00, 0x03, 0xF1, + 0xFE, 0xE3, 0xB8, 0x7F, 0xFF, 0xFF, 0xE0, 0x38, 0x0E, 0x01, 0xFE, 0x3F, 0x83, 0x80, 0xC0, 0x70, + 0x0C, 0x00, 0x23, 0xDE, 0x73, 0x19, 0xCE, 0x73, 0x9C, 0xE7, 0x39, 0xCE, 0x73, 0x9C, 0xE0, 0x73, + 0xCE, 0x62, 0x39, 0xCE, 0x73, 0x9C, 0xE7, 0x39, 0xCE, 0x6E, 0xEE, 0xEE, 0xEE, 0xEE, 0xEE, 0xEE, + 0xE0, 0x6E, 0xE0, 0x5F, 0xA1, 0xFF, 0xFF, 0xFF, 0xFF, 0x1F, 0xF0, 0x0F, 0xC0, 0xFF, 0xC3, 0xCF, + 0x9C, 0x0E, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xDC, 0x0F, + 0x78, 0x78, 0xFF, 0xC1, 0xFE, 0x00, 0xE0, 0x03, 0x00, 0x0E, 0x00, 0x30, 0x00, 0x00, 0x07, 0xE1, + 0xFE, 0x78, 0xEE, 0x1D, 0xC1, 0xB0, 0x3F, 0x07, 0xE1, 0xDC, 0x39, 0xFE, 0x1F, 0x80, 0xC0, 0x18, + 0x03, 0x80, 0x60, 0x02, 0x00, 0x1E, 0x00, 0x18, 0x00, 0xE0, 0x03, 0x00, 0x3F, 0x03, 0xFF, 0x0F, + 0x3E, 0x70, 0x3B, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0x70, + 0x3D, 0xE1, 0xE3, 0xFF, 0x07, 0xF8, 0x03, 0x80, 0x1E, 0x03, 0xC0, 0x38, 0x07, 0x00, 0xC0, 0x7E, + 0x1F, 0xE7, 0x8E, 0xE1, 0xDC, 0x1B, 0x03, 0xF0, 0x7E, 0x1D, 0xC3, 0x9F, 0xE1, 0xF8, 0x0C, 0x00, + 0x00, 0x10, 0x00, 0xE0, 0x07, 0x00, 0xD8, 0x07, 0xC0, 0x3F, 0x00, 0xCC, 0x03, 0xF0, 0x3F, 0xF0, 0xF3, 0xE7, 0x03, 0xB8, 0x07, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x77, - 0x03, 0xDE, 0x1E, 0x3F, 0xF0, 0x7F, 0x80, 0x38, 0x00, 0x02, 0x00, 0xE0, 0x0E, 0x06, 0xC1, 0xE0, + 0x03, 0xDE, 0x1E, 0x3F, 0xF0, 0x7F, 0x80, 0x38, 0x00, 0x00, 0x40, 0x1C, 0x03, 0x86, 0xE1, 0xF8, 0x7E, 0x0C, 0xC0, 0x00, 0x3F, 0x0F, 0xF3, 0xC7, 0x70, 0xEE, 0x0D, 0x81, 0xF8, 0x3F, 0x0E, 0xE1, - 0xCF, 0xF0, 0xFC, 0x06, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x07, 0x00, 0xD8, 0x07, 0x80, 0x3F, 0x00, + 0xCF, 0xF0, 0xFC, 0x06, 0x00, 0x01, 0x80, 0x07, 0x00, 0x0E, 0x00, 0xD8, 0x07, 0x80, 0x3F, 0x00, 0xCC, 0x03, 0xF0, 0x3F, 0xF0, 0xF3, 0xE7, 0x03, 0xB8, 0x07, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, - 0x07, 0xE0, 0x1F, 0x80, 0x77, 0x03, 0xDE, 0x1E, 0x3F, 0xF0, 0x7F, 0x80, 0x38, 0x00, 0x01, 0x80, - 0x78, 0x03, 0x86, 0xE1, 0xF8, 0x7E, 0x0C, 0xC0, 0x00, 0x3F, 0x0F, 0xF3, 0xC7, 0x70, 0xEE, 0x0D, - 0x81, 0xF8, 0x3F, 0x0E, 0xE1, 0xCF, 0xF0, 0xFC, 0x06, 0x00, 0x0F, 0xE0, 0x3F, 0x00, 0x98, 0x00, - 0xC0, 0x07, 0x80, 0x3F, 0x00, 0xCC, 0x03, 0xF0, 0x3F, 0xF0, 0xF3, 0xE7, 0x03, 0xB8, 0x07, 0xE0, + 0x07, 0xE0, 0x1F, 0x80, 0x77, 0x03, 0xDE, 0x1E, 0x3F, 0xF0, 0x7F, 0x80, 0x38, 0x00, 0x02, 0x00, + 0xE0, 0x0E, 0x06, 0xC1, 0xE0, 0x7E, 0x0C, 0xC0, 0x00, 0x3F, 0x0F, 0xF3, 0xC7, 0x70, 0xEE, 0x0D, + 0x81, 0xF8, 0x3F, 0x0E, 0xE1, 0xCF, 0xF0, 0xFC, 0x06, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x07, 0x00, + 0xD8, 0x07, 0x80, 0x3F, 0x00, 0xCC, 0x03, 0xF0, 0x3F, 0xF0, 0xF3, 0xE7, 0x03, 0xB8, 0x07, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x77, 0x03, 0xDE, 0x1E, 0x3F, 0xF0, 0x7F, - 0x80, 0x38, 0x00, 0x3D, 0x87, 0xE0, 0x98, 0x06, 0x01, 0xE0, 0x7E, 0x0C, 0xC0, 0x00, 0x3F, 0x0F, - 0xF3, 0xC7, 0x70, 0xEE, 0x0D, 0x81, 0xF8, 0x3F, 0x0E, 0xE1, 0xCF, 0xF0, 0xFC, 0x06, 0x00, 0x01, - 0x00, 0x0E, 0x00, 0x7C, 0x03, 0x30, 0x00, 0x00, 0x3F, 0x03, 0xFF, 0x0F, 0x3E, 0x70, 0x3B, 0x80, - 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0x70, 0x3D, 0xE1, 0xE3, 0xFF, - 0x07, 0xF8, 0x03, 0x80, 0x0C, 0x00, 0x38, 0x00, 0xC0, 0x00, 0x01, 0x80, 0x78, 0x1F, 0x83, 0x30, - 0x00, 0x0F, 0xC3, 0xFC, 0xF1, 0xDC, 0x3B, 0x83, 0x60, 0x7E, 0x0F, 0xC3, 0xB8, 0x73, 0xFC, 0x3F, - 0x01, 0x80, 0x30, 0x07, 0x00, 0xC0, 0x00, 0x80, 0x03, 0x80, 0x0E, 0x00, 0x18, 0x60, 0x20, 0xC1, - 0xFB, 0x8F, 0xFF, 0x1E, 0x7C, 0x70, 0x39, 0xC0, 0x3B, 0x80, 0x77, 0x00, 0xEE, 0x01, 0xDC, 0x03, - 0xB8, 0x07, 0x70, 0x0E, 0x70, 0x3C, 0xF0, 0xF0, 0xFF, 0xC0, 0xFF, 0x00, 0x38, 0x00, 0x00, 0x00, - 0x70, 0x07, 0x00, 0xE0, 0x0C, 0x60, 0x06, 0x3F, 0xE7, 0xFE, 0xF1, 0xCE, 0x1C, 0xE0, 0xCC, 0x0E, - 0xE0, 0xEE, 0x1C, 0xE1, 0xC7, 0xF8, 0x3F, 0x00, 0xC0, 0x04, 0x00, 0x1C, 0x00, 0x1C, 0x00, 0x1C, - 0x60, 0x10, 0xC1, 0xFB, 0x8F, 0xFF, 0x1E, 0x7C, 0x70, 0x39, 0xC0, 0x3B, 0x80, 0x77, 0x00, 0xEE, - 0x01, 0xDC, 0x03, 0xB8, 0x07, 0x70, 0x0E, 0x70, 0x3C, 0xF0, 0xF0, 0xFF, 0xC0, 0xFF, 0x00, 0x38, - 0x00, 0x00, 0x01, 0x80, 0x1C, 0x00, 0xE0, 0x06, 0x60, 0x06, 0x3F, 0xE7, 0xFE, 0xF1, 0xCE, 0x1C, - 0xE0, 0xCC, 0x0E, 0xE0, 0xEE, 0x1C, 0xE1, 0xC7, 0xF8, 0x3F, 0x00, 0xC0, 0x02, 0x00, 0x0F, 0x00, - 0x06, 0x00, 0x1C, 0x60, 0x30, 0xC1, 0xFB, 0x8F, 0xFF, 0x1E, 0x7C, 0x70, 0x39, 0xC0, 0x3B, 0x80, - 0x77, 0x00, 0xEE, 0x01, 0xDC, 0x03, 0xB8, 0x07, 0x70, 0x0E, 0x70, 0x3C, 0xF0, 0xF0, 0xFF, 0xC0, - 0xFF, 0x00, 0x38, 0x00, 0x1E, 0x01, 0xE0, 0x0E, 0x00, 0xE6, 0x0C, 0x63, 0xFE, 0x7F, 0xEF, 0x1C, - 0xE1, 0xCE, 0x0C, 0xC0, 0xEE, 0x0E, 0xE1, 0xCE, 0x1C, 0x7F, 0x83, 0xF0, 0x0C, 0x00, 0x06, 0x40, - 0x1F, 0xC0, 0x3F, 0x30, 0x00, 0x60, 0xFD, 0xC7, 0xFF, 0x8F, 0x3E, 0x38, 0x1C, 0xE0, 0x1D, 0xC0, - 0x3B, 0x80, 0x77, 0x00, 0xEE, 0x01, 0xDC, 0x03, 0xB8, 0x07, 0x38, 0x1E, 0x78, 0x78, 0x7F, 0xE0, - 0x7F, 0x80, 0x1C, 0x00, 0x00, 0x03, 0xF8, 0x3F, 0x00, 0x06, 0x00, 0x63, 0xFE, 0x7F, 0xEF, 0x1C, - 0xE1, 0xCE, 0x0C, 0xC0, 0xEE, 0x0E, 0xE1, 0xCE, 0x1C, 0x7F, 0x83, 0xF0, 0x0C, 0x00, 0x00, 0x0C, - 0x00, 0x18, 0x3F, 0x71, 0xFF, 0xE3, 0xCF, 0x8E, 0x07, 0x38, 0x07, 0x70, 0x0E, 0xE0, 0x1D, 0xC0, - 0x3B, 0x80, 0x77, 0x00, 0xEE, 0x01, 0xCE, 0x07, 0x9E, 0x1E, 0x1F, 0xF8, 0x1F, 0xE0, 0x07, 0x00, - 0x0C, 0x00, 0x1C, 0x00, 0x30, 0x00, 0x00, 0x00, 0x06, 0x00, 0x63, 0xFE, 0x7F, 0xEF, 0x1C, 0xE1, - 0xCE, 0x0C, 0xC0, 0xEE, 0x0E, 0xE1, 0xCE, 0x1C, 0x7F, 0x83, 0xF0, 0x0C, 0x00, 0xC0, 0x0E, 0x00, - 0xC0, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, - 0xE0, 0x76, 0x07, 0x70, 0xE7, 0xFE, 0x3F, 0xC0, 0x70, 0x06, 0x00, 0x70, 0x06, 0x00, 0xE1, 0xF8, - 0x7E, 0x1F, 0x87, 0xE1, 0xF8, 0x7E, 0x1F, 0x87, 0xE1, 0xDF, 0xF3, 0xFC, 0x38, 0x0C, 0x07, 0x80, - 0xC0, 0x04, 0x00, 0xF0, 0x03, 0x00, 0x70, 0x06, 0x0E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, - 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0x60, 0x77, 0x0E, 0x7F, 0xE3, 0xFC, 0x07, - 0x00, 0x1C, 0x07, 0x80, 0xE0, 0x30, 0x0C, 0x38, 0x7E, 0x1F, 0x87, 0xE1, 0xF8, 0x7E, 0x1F, 0x87, - 0xE1, 0xF8, 0x77, 0xFC, 0xFF, 0x0E, 0x00, 0x01, 0x00, 0x07, 0x00, 0x1C, 0x00, 0x30, 0x70, 0x40, - 0xFC, 0x0F, 0xB8, 0x1F, 0x70, 0x38, 0xE0, 0x71, 0xC0, 0xE3, 0x81, 0xC7, 0x03, 0x8E, 0x07, 0x1C, - 0x0E, 0x38, 0x1C, 0x70, 0x38, 0x60, 0x70, 0xE1, 0xC1, 0xFF, 0x81, 0xFE, 0x00, 0x70, 0x00, 0x00, - 0x00, 0x60, 0x0E, 0x00, 0xC0, 0x18, 0x30, 0x07, 0xE1, 0xFE, 0x1E, 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, - 0x1C, 0xE1, 0xCE, 0x1C, 0xE1, 0xC7, 0xFC, 0x3F, 0xC0, 0xE0, 0x00, 0x00, 0x18, 0x00, 0x38, 0x00, - 0x38, 0x70, 0x20, 0xFC, 0x0F, 0xB8, 0x1F, 0x70, 0x38, 0xE0, 0x71, 0xC0, 0xE3, 0x81, 0xC7, 0x03, - 0x8E, 0x07, 0x1C, 0x0E, 0x38, 0x1C, 0x70, 0x38, 0x60, 0x70, 0xE1, 0xC1, 0xFF, 0x81, 0xFE, 0x00, - 0x70, 0x00, 0x00, 0x03, 0x80, 0x3C, 0x01, 0xC0, 0x0C, 0x30, 0x07, 0xE1, 0xFE, 0x1E, 0xE1, 0xCE, - 0x1C, 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0xE1, 0xC7, 0xFC, 0x3F, 0xC0, 0xE0, 0x04, 0x00, 0x1E, - 0x00, 0x0C, 0x00, 0x38, 0x70, 0x60, 0xFC, 0x0F, 0xB8, 0x1F, 0x70, 0x38, 0xE0, 0x71, 0xC0, 0xE3, - 0x81, 0xC7, 0x03, 0x8E, 0x07, 0x1C, 0x0E, 0x38, 0x1C, 0x70, 0x38, 0x60, 0x70, 0xE1, 0xC1, 0xFF, - 0x81, 0xFE, 0x00, 0x70, 0x00, 0x1C, 0x01, 0xE0, 0x0E, 0x00, 0xC3, 0x0C, 0x7E, 0x1F, 0xE1, 0xEE, - 0x1C, 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0x7F, 0xC3, 0xFC, 0x0E, 0x00, 0x0C, - 0xC0, 0x3F, 0x80, 0x7E, 0x38, 0x00, 0x7E, 0x07, 0xDC, 0x0F, 0xB8, 0x1C, 0x70, 0x38, 0xE0, 0x71, - 0xC0, 0xE3, 0x81, 0xC7, 0x03, 0x8E, 0x07, 0x1C, 0x0E, 0x38, 0x1C, 0x30, 0x38, 0x70, 0xE0, 0xFF, - 0xC0, 0xFF, 0x00, 0x38, 0x00, 0x01, 0x03, 0xF8, 0x7F, 0x00, 0x03, 0x00, 0x7E, 0x1F, 0xE1, 0xEE, - 0x1C, 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0x7F, 0xC3, 0xFC, 0x0E, 0x00, 0x00, - 0x0E, 0x00, 0x1F, 0x81, 0xF7, 0x03, 0xEE, 0x07, 0x1C, 0x0E, 0x38, 0x1C, 0x70, 0x38, 0xE0, 0x71, - 0xC0, 0xE3, 0x81, 0xC7, 0x03, 0x8E, 0x07, 0x0C, 0x0E, 0x1C, 0x38, 0x3F, 0xF0, 0x3F, 0xC0, 0x0E, - 0x00, 0x18, 0x00, 0x38, 0x00, 0x60, 0x00, 0x00, 0x00, 0x03, 0x00, 0x7E, 0x1F, 0xE1, 0xEE, 0x1C, - 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0x7F, 0xC3, 0xFC, 0x0E, 0x00, 0xC0, 0x1E, - 0x00, 0xC0, 0x0C, 0x00, 0x70, 0x01, 0xC0, 0x06, 0x00, 0x00, 0x70, 0x1D, 0xC1, 0xCE, 0x1C, 0x38, - 0xE1, 0xCE, 0x07, 0x70, 0x3F, 0x00, 0xF8, 0x03, 0x80, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x38, 0x01, - 0xC0, 0x0E, 0x00, 0x18, 0x03, 0x80, 0x38, 0x03, 0x00, 0x00, 0x00, 0x38, 0x37, 0x0E, 0x71, 0xCE, - 0x31, 0xC6, 0x1D, 0xC3, 0xB8, 0x36, 0x07, 0xC0, 0x70, 0x0E, 0x01, 0xC0, 0x70, 0x7E, 0x0F, 0x80, - 0xE0, 0x37, 0x03, 0x9C, 0x1C, 0xE1, 0xC3, 0x8E, 0x0E, 0xE0, 0x7E, 0x01, 0xF0, 0x0F, 0x00, 0x38, - 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, 0x00, 0x06, 0x00, 0x38, 0x01, 0xC0, 0xE0, - 0xF8, 0x76, 0x1D, 0xC6, 0x71, 0x8C, 0xE3, 0xB8, 0x6C, 0x1F, 0x07, 0x80, 0xE0, 0x38, 0x1C, 0xFE, - 0x7F, 0x1C, 0x06, 0x00, 0x78, 0x00, 0xE0, 0x0E, 0x00, 0x60, 0x70, 0x1B, 0x81, 0xCE, 0x0E, 0x70, - 0xE1, 0xC7, 0x07, 0x70, 0x3F, 0x00, 0xF8, 0x07, 0x80, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x38, 0x01, - 0xC0, 0x0E, 0x00, 0x1E, 0x07, 0x80, 0xE0, 0x38, 0x0C, 0x38, 0x3E, 0x1D, 0x87, 0x71, 0x9C, 0x63, - 0x38, 0xEE, 0x1B, 0x07, 0xC1, 0xE0, 0x38, 0x0E, 0x07, 0x0F, 0x83, 0xC0, 0x1E, 0xC0, 0xFE, 0x04, - 0xE0, 0x00, 0x0E, 0x03, 0x70, 0x39, 0xC1, 0xCE, 0x1C, 0x38, 0xE0, 0xEE, 0x07, 0xE0, 0x1F, 0x00, - 0xF0, 0x03, 0x80, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x38, 0x01, 0xC0, 0x00, 0x0F, 0xE3, 0xF0, 0x00, - 0x00, 0x38, 0x3E, 0x1D, 0x87, 0x71, 0x9C, 0x63, 0x38, 0xEE, 0x1B, 0x07, 0xC1, 0xE0, 0x38, 0x0E, - 0x07, 0x0F, 0x83, 0xC0, 0xFF, 0xFF, 0xFF, 0xFF, 0x49, 0xE3, 0x1E, 0x78, 0xC3, 0x0C, 0x30, 0xC3, - 0x0C, 0x30, 0xC3, 0x0C, 0x00, 0x47, 0xBF, 0xFB, 0x4C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, - 0xC0, 0x00, 0x00, 0x87, 0xBF, 0x7C, 0xB0, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x00, - 0x7F, 0xF7, 0xC0, 0x7F, 0xF7, 0xFF, 0x7F, 0xFF, 0xFD, 0xFF, 0xFF, 0xF0, 0x7F, 0xFF, 0xFD, 0xFF, - 0xFF, 0xF0, 0x66, 0xEE, 0xE0, 0x77, 0x76, 0xE0, 0x77, 0x76, 0xE0, 0x66, 0x6E, 0xEE, 0xEE, 0xEE, - 0x77, 0x77, 0x77, 0x66, 0xEE, 0x77, 0x77, 0x77, 0x66, 0xEE, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x0C, - 0x3F, 0xFF, 0xFC, 0x30, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x03, - 0x00, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x3F, 0xFF, 0xFC, 0x30, 0x0C, 0x03, 0x0F, 0xFF, 0xFF, - 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0x7B, 0xFF, 0xFF, 0x78, 0xE1, 0xC3, 0xF0, 0xE1, - 0xF8, 0x70, 0xE0, 0x7C, 0x38, 0x00, 0xEE, 0x38, 0x00, 0xC6, 0x70, 0x00, 0xC6, 0x70, 0x00, 0xC6, - 0xE0, 0x00, 0xEE, 0xC0, 0x00, 0x7D, 0xC0, 0x00, 0x01, 0x80, 0x00, 0x03, 0xBE, 0x3E, 0x03, 0x77, - 0x77, 0x07, 0x63, 0x63, 0x0E, 0x63, 0x63, 0x0E, 0x63, 0x63, 0x1C, 0x77, 0x77, 0x1C, 0x3E, 0x3E, - 0x18, 0xE3, 0x9C, 0xE1, 0xC3, 0x8E, 0x18, 0x61, 0xC3, 0x0E, 0x1C, 0xE3, 0x1C, 0x60, 0x00, 0xE0, + 0x80, 0x38, 0x00, 0x01, 0x80, 0x78, 0x03, 0x86, 0xE1, 0xF8, 0x7E, 0x0C, 0xC0, 0x00, 0x3F, 0x0F, + 0xF3, 0xC7, 0x70, 0xEE, 0x0D, 0x81, 0xF8, 0x3F, 0x0E, 0xE1, 0xCF, 0xF0, 0xFC, 0x06, 0x00, 0x0F, + 0xE0, 0x3F, 0x00, 0x98, 0x00, 0xC0, 0x07, 0x80, 0x3F, 0x00, 0xCC, 0x03, 0xF0, 0x3F, 0xF0, 0xF3, + 0xE7, 0x03, 0xB8, 0x07, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x77, 0x03, + 0xDE, 0x1E, 0x3F, 0xF0, 0x7F, 0x80, 0x38, 0x00, 0x3D, 0x87, 0xE0, 0x98, 0x06, 0x01, 0xE0, 0x7E, + 0x0C, 0xC0, 0x00, 0x3F, 0x0F, 0xF3, 0xC7, 0x70, 0xEE, 0x0D, 0x81, 0xF8, 0x3F, 0x0E, 0xE1, 0xCF, + 0xF0, 0xFC, 0x06, 0x00, 0x01, 0x00, 0x0E, 0x00, 0x7C, 0x03, 0x30, 0x00, 0x00, 0x3F, 0x03, 0xFF, + 0x0F, 0x3E, 0x70, 0x3B, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, + 0x70, 0x3D, 0xE1, 0xE3, 0xFF, 0x07, 0xF8, 0x03, 0x80, 0x0C, 0x00, 0x38, 0x00, 0xC0, 0x00, 0x01, + 0x80, 0x78, 0x1F, 0x83, 0x30, 0x00, 0x0F, 0xC3, 0xFC, 0xF1, 0xDC, 0x3B, 0x83, 0x60, 0x7E, 0x0F, + 0xC3, 0xB8, 0x73, 0xFC, 0x3F, 0x01, 0x80, 0x30, 0x07, 0x00, 0xC0, 0x00, 0x80, 0x03, 0x80, 0x0E, + 0x00, 0x18, 0x60, 0x20, 0xC1, 0xFB, 0x8F, 0xFF, 0x1E, 0x7C, 0x70, 0x39, 0xC0, 0x3B, 0x80, 0x77, + 0x00, 0xEE, 0x01, 0xDC, 0x03, 0xB8, 0x07, 0x70, 0x0E, 0x70, 0x3C, 0xF0, 0xF0, 0xFF, 0xC0, 0xFF, + 0x00, 0x38, 0x00, 0x00, 0x00, 0x70, 0x07, 0x00, 0xE0, 0x0C, 0x60, 0x06, 0x3F, 0xE7, 0xFE, 0xF1, + 0xCE, 0x1C, 0xE0, 0xCC, 0x0E, 0xE0, 0xEE, 0x1C, 0xE1, 0xC7, 0xF8, 0x3F, 0x00, 0xC0, 0x04, 0x00, + 0x1C, 0x00, 0x1C, 0x00, 0x1C, 0x60, 0x10, 0xC1, 0xFB, 0x8F, 0xFF, 0x1E, 0x7C, 0x70, 0x39, 0xC0, + 0x3B, 0x80, 0x77, 0x00, 0xEE, 0x01, 0xDC, 0x03, 0xB8, 0x07, 0x70, 0x0E, 0x70, 0x3C, 0xF0, 0xF0, + 0xFF, 0xC0, 0xFF, 0x00, 0x38, 0x00, 0x00, 0x01, 0x80, 0x1C, 0x00, 0xE0, 0x06, 0x60, 0x06, 0x3F, + 0xE7, 0xFE, 0xF1, 0xCE, 0x1C, 0xE0, 0xCC, 0x0E, 0xE0, 0xEE, 0x1C, 0xE1, 0xC7, 0xF8, 0x3F, 0x00, + 0xC0, 0x02, 0x00, 0x0F, 0x00, 0x06, 0x00, 0x1C, 0x60, 0x30, 0xC1, 0xFB, 0x8F, 0xFF, 0x1E, 0x7C, + 0x70, 0x39, 0xC0, 0x3B, 0x80, 0x77, 0x00, 0xEE, 0x01, 0xDC, 0x03, 0xB8, 0x07, 0x70, 0x0E, 0x70, + 0x3C, 0xF0, 0xF0, 0xFF, 0xC0, 0xFF, 0x00, 0x38, 0x00, 0x1E, 0x01, 0xE0, 0x0E, 0x00, 0xE6, 0x0C, + 0x63, 0xFE, 0x7F, 0xEF, 0x1C, 0xE1, 0xCE, 0x0C, 0xC0, 0xEE, 0x0E, 0xE1, 0xCE, 0x1C, 0x7F, 0x83, + 0xF0, 0x0C, 0x00, 0x06, 0x40, 0x1F, 0xC0, 0x3F, 0x30, 0x00, 0x60, 0xFD, 0xC7, 0xFF, 0x8F, 0x3E, + 0x38, 0x1C, 0xE0, 0x1D, 0xC0, 0x3B, 0x80, 0x77, 0x00, 0xEE, 0x01, 0xDC, 0x03, 0xB8, 0x07, 0x38, + 0x1E, 0x78, 0x78, 0x7F, 0xE0, 0x7F, 0x80, 0x1C, 0x00, 0x00, 0x03, 0xF8, 0x3F, 0x00, 0x06, 0x00, + 0x63, 0xFE, 0x7F, 0xEF, 0x1C, 0xE1, 0xCE, 0x0C, 0xC0, 0xEE, 0x0E, 0xE1, 0xCE, 0x1C, 0x7F, 0x83, + 0xF0, 0x0C, 0x00, 0x00, 0x0C, 0x00, 0x18, 0x3F, 0x71, 0xFF, 0xE3, 0xCF, 0x8E, 0x07, 0x38, 0x07, + 0x70, 0x0E, 0xE0, 0x1D, 0xC0, 0x3B, 0x80, 0x77, 0x00, 0xEE, 0x01, 0xCE, 0x07, 0x9E, 0x1E, 0x1F, + 0xF8, 0x1F, 0xE0, 0x07, 0x00, 0x0C, 0x00, 0x1C, 0x00, 0x30, 0x00, 0x00, 0x00, 0x06, 0x00, 0x63, + 0xFE, 0x7F, 0xEF, 0x1C, 0xE1, 0xCE, 0x0C, 0xC0, 0xEE, 0x0E, 0xE1, 0xCE, 0x1C, 0x7F, 0x83, 0xF0, + 0x0C, 0x00, 0xC0, 0x0E, 0x00, 0xC0, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, + 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x76, 0x07, 0x70, 0xE7, 0xFE, 0x3F, 0xC0, 0x70, 0x06, 0x00, + 0x70, 0x06, 0x00, 0xE1, 0xF8, 0x7E, 0x1F, 0x87, 0xE1, 0xF8, 0x7E, 0x1F, 0x87, 0xE1, 0xDF, 0xF3, + 0xFC, 0x38, 0x0C, 0x07, 0x80, 0xC0, 0x04, 0x00, 0xF0, 0x03, 0x00, 0x70, 0x06, 0x0E, 0x07, 0xE0, + 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0x60, 0x77, + 0x0E, 0x7F, 0xE3, 0xFC, 0x07, 0x00, 0x1C, 0x07, 0x80, 0xE0, 0x30, 0x0C, 0x38, 0x7E, 0x1F, 0x87, + 0xE1, 0xF8, 0x7E, 0x1F, 0x87, 0xE1, 0xF8, 0x77, 0xFC, 0xFF, 0x0E, 0x00, 0x01, 0x00, 0x07, 0x00, + 0x1C, 0x00, 0x30, 0x70, 0x40, 0xFC, 0x0F, 0xB8, 0x1F, 0x70, 0x38, 0xE0, 0x71, 0xC0, 0xE3, 0x81, + 0xC7, 0x03, 0x8E, 0x07, 0x1C, 0x0E, 0x38, 0x1C, 0x70, 0x38, 0x60, 0x70, 0xE1, 0xC1, 0xFF, 0x81, + 0xFE, 0x00, 0x70, 0x00, 0x00, 0x00, 0x60, 0x0E, 0x00, 0xC0, 0x18, 0x30, 0x07, 0xE1, 0xFE, 0x1E, + 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0xE1, 0xC7, 0xFC, 0x3F, 0xC0, 0xE0, 0x00, + 0x00, 0x18, 0x00, 0x38, 0x00, 0x38, 0x70, 0x20, 0xFC, 0x0F, 0xB8, 0x1F, 0x70, 0x38, 0xE0, 0x71, + 0xC0, 0xE3, 0x81, 0xC7, 0x03, 0x8E, 0x07, 0x1C, 0x0E, 0x38, 0x1C, 0x70, 0x38, 0x60, 0x70, 0xE1, + 0xC1, 0xFF, 0x81, 0xFE, 0x00, 0x70, 0x00, 0x00, 0x03, 0x80, 0x3C, 0x01, 0xC0, 0x0C, 0x30, 0x07, + 0xE1, 0xFE, 0x1E, 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0xE1, 0xC7, 0xFC, 0x3F, + 0xC0, 0xE0, 0x04, 0x00, 0x1E, 0x00, 0x0C, 0x00, 0x38, 0x70, 0x60, 0xFC, 0x0F, 0xB8, 0x1F, 0x70, + 0x38, 0xE0, 0x71, 0xC0, 0xE3, 0x81, 0xC7, 0x03, 0x8E, 0x07, 0x1C, 0x0E, 0x38, 0x1C, 0x70, 0x38, + 0x60, 0x70, 0xE1, 0xC1, 0xFF, 0x81, 0xFE, 0x00, 0x70, 0x00, 0x1C, 0x01, 0xE0, 0x0E, 0x00, 0xC3, + 0x0C, 0x7E, 0x1F, 0xE1, 0xEE, 0x1C, 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0x7F, + 0xC3, 0xFC, 0x0E, 0x00, 0x0C, 0xC0, 0x3F, 0x80, 0x7E, 0x38, 0x00, 0x7E, 0x07, 0xDC, 0x0F, 0xB8, + 0x1C, 0x70, 0x38, 0xE0, 0x71, 0xC0, 0xE3, 0x81, 0xC7, 0x03, 0x8E, 0x07, 0x1C, 0x0E, 0x38, 0x1C, + 0x30, 0x38, 0x70, 0xE0, 0xFF, 0xC0, 0xFF, 0x00, 0x38, 0x00, 0x01, 0x03, 0xF8, 0x7F, 0x00, 0x03, + 0x00, 0x7E, 0x1F, 0xE1, 0xEE, 0x1C, 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0x7F, + 0xC3, 0xFC, 0x0E, 0x00, 0x00, 0x0E, 0x00, 0x1F, 0x81, 0xF7, 0x03, 0xEE, 0x07, 0x1C, 0x0E, 0x38, + 0x1C, 0x70, 0x38, 0xE0, 0x71, 0xC0, 0xE3, 0x81, 0xC7, 0x03, 0x8E, 0x07, 0x0C, 0x0E, 0x1C, 0x38, + 0x3F, 0xF0, 0x3F, 0xC0, 0x0E, 0x00, 0x18, 0x00, 0x38, 0x00, 0x60, 0x00, 0x00, 0x00, 0x03, 0x00, + 0x7E, 0x1F, 0xE1, 0xEE, 0x1C, 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0xE1, 0xCE, 0x1C, 0x7F, 0xC3, + 0xFC, 0x0E, 0x00, 0xC0, 0x1E, 0x00, 0xC0, 0x0C, 0x00, 0x70, 0x01, 0xC0, 0x06, 0x00, 0x00, 0x70, + 0x1D, 0xC1, 0xCE, 0x1C, 0x38, 0xE1, 0xCE, 0x07, 0x70, 0x3F, 0x00, 0xF8, 0x03, 0x80, 0x1C, 0x00, + 0xE0, 0x07, 0x00, 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x18, 0x03, 0x80, 0x38, 0x03, 0x00, 0x00, 0x00, + 0x38, 0x37, 0x0E, 0x71, 0xCE, 0x31, 0xC6, 0x1D, 0xC3, 0xB8, 0x36, 0x07, 0xC0, 0x70, 0x0E, 0x01, + 0xC0, 0x70, 0x7E, 0x0F, 0x80, 0xE0, 0x37, 0x03, 0x9C, 0x1C, 0xE1, 0xC3, 0x8E, 0x0E, 0xE0, 0x7E, + 0x01, 0xF0, 0x0F, 0x00, 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, 0x00, 0x06, + 0x00, 0x38, 0x01, 0xC0, 0xE0, 0xF8, 0x76, 0x1D, 0xC6, 0x71, 0x8C, 0xE3, 0xB8, 0x6C, 0x1F, 0x07, + 0x80, 0xE0, 0x38, 0x1C, 0xFE, 0x7F, 0x1C, 0x06, 0x00, 0x78, 0x00, 0xE0, 0x0E, 0x00, 0x60, 0x70, + 0x1B, 0x81, 0xCE, 0x0E, 0x70, 0xE1, 0xC7, 0x07, 0x70, 0x3F, 0x00, 0xF8, 0x07, 0x80, 0x1C, 0x00, + 0xE0, 0x07, 0x00, 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x1E, 0x07, 0x80, 0xE0, 0x38, 0x0C, 0x38, 0x3E, + 0x1D, 0x87, 0x71, 0x9C, 0x63, 0x38, 0xEE, 0x1B, 0x07, 0xC1, 0xE0, 0x38, 0x0E, 0x07, 0x0F, 0x83, + 0xC0, 0x1E, 0xC0, 0xFE, 0x04, 0xE0, 0x00, 0x0E, 0x03, 0x70, 0x39, 0xC1, 0xCE, 0x1C, 0x38, 0xE0, + 0xEE, 0x07, 0xE0, 0x1F, 0x00, 0xF0, 0x03, 0x80, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x38, 0x01, 0xC0, + 0x00, 0x0F, 0xE3, 0xF0, 0x00, 0x00, 0x38, 0x3E, 0x1D, 0x87, 0x71, 0x9C, 0x63, 0x38, 0xEE, 0x1B, + 0x07, 0xC1, 0xE0, 0x38, 0x0E, 0x07, 0x0F, 0x83, 0xC0, 0xFF, 0xFF, 0xFF, 0xFF, 0x49, 0xE3, 0x1E, + 0x78, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x00, 0x47, 0xBF, 0xFB, 0x4C, 0x30, 0xC3, + 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC0, 0x00, 0x00, 0x87, 0xBF, 0x7C, 0xB0, 0xC3, 0x0C, 0x30, 0xC3, + 0x0C, 0x30, 0xC3, 0x0C, 0x00, 0x7F, 0xF7, 0xC0, 0x7F, 0xF7, 0xC0, 0x7F, 0xF7, 0xFF, 0x7F, 0xFF, + 0xFD, 0xFF, 0xFF, 0xF0, 0x7F, 0xFF, 0xFD, 0xFF, 0xFF, 0xF0, 0x66, 0xEE, 0xE0, 0x77, 0x76, 0xE0, + 0x77, 0x76, 0xE0, 0x66, 0x6E, 0xEE, 0xEE, 0xEE, 0x77, 0x77, 0x77, 0x66, 0xEE, 0x77, 0x77, 0x77, + 0x66, 0xEE, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x3F, 0xFF, 0xFC, 0x30, 0x0C, 0x03, 0x00, 0xC0, + 0x30, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x03, 0x00, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x3F, + 0xFF, 0xFC, 0x30, 0x0C, 0x03, 0x0F, 0xFF, 0xFF, 0x0C, 0x03, 0x00, 0xC0, 0x30, 0x0C, 0x03, 0x00, + 0x7B, 0xFF, 0xFF, 0x78, 0xE1, 0xC3, 0xF0, 0xE1, 0xF8, 0x70, 0xE0, 0x7C, 0x38, 0x00, 0xEE, 0x38, + 0x00, 0xC6, 0x70, 0x00, 0xC6, 0x70, 0x00, 0xC6, 0xE0, 0x00, 0xEE, 0xC0, 0x00, 0x7D, 0xC0, 0x00, + 0x01, 0x80, 0x00, 0x03, 0xBE, 0x3E, 0x03, 0x77, 0x77, 0x07, 0x63, 0x63, 0x0E, 0x63, 0x63, 0x0E, + 0x63, 0x63, 0x1C, 0x77, 0x77, 0x1C, 0x3E, 0x3E, 0x18, 0xE3, 0x9C, 0xE1, 0xC3, 0x8E, 0x18, 0x61, + 0xC3, 0x0E, 0x1C, 0xE3, 0x1C, 0x60, 0x00, 0xE0, 0x38, 0x07, 0x01, 0xC0, 0x30, 0x0E, 0x01, 0x80, + 0x70, 0x0C, 0x03, 0x80, 0x60, 0x1C, 0x07, 0x00, 0xE0, 0x38, 0x00, 0x6E, 0xE4, 0x00, 0xE6, 0x77, + 0x31, 0x7C, 0xDF, 0x9F, 0x3E, 0x7C, 0xDB, 0xBE, 0x0C, 0x1C, 0x3C, 0x7C, 0x6C, 0xFE, 0x0C, 0x0C, + 0x7E, 0xC1, 0x83, 0xE1, 0xE0, 0xD3, 0xBE, 0x1E, 0x71, 0x83, 0xEE, 0xEC, 0xDB, 0x9E, 0xFE, 0x1C, + 0x70, 0xC1, 0x87, 0x0C, 0x18, 0x7C, 0xDD, 0x9B, 0xE7, 0xFC, 0xFB, 0xBE, 0x7C, 0xDF, 0x9F, 0x37, + 0xE1, 0xCF, 0x3C, 0x7C, 0xDF, 0x9F, 0x3E, 0x7C, 0xDB, 0xBE, 0x3F, 0xF3, 0x33, 0x33, 0x7C, 0xD8, + 0x38, 0xE3, 0xCF, 0x18, 0x3F, 0x7C, 0xD8, 0x31, 0xE0, 0xE0, 0xD3, 0xFE, 0x0C, 0x1C, 0x3C, 0x7C, + 0x6C, 0xFE, 0x0C, 0x0C, 0x7E, 0xC1, 0x83, 0xE1, 0xE0, 0xD3, 0xBE, 0x1E, 0x71, 0x83, 0xEE, 0xEC, + 0xDB, 0x9E, 0xFE, 0x1C, 0x70, 0xC1, 0x87, 0x0C, 0x18, 0x7C, 0xDD, 0x9B, 0xE7, 0xFC, 0xFB, 0xBE, + 0x7C, 0xDF, 0x9F, 0x37, 0xE1, 0xCF, 0x3C, 0xFF, 0x8F, 0xFF, 0x3E, 0x0C, 0xF9, 0x33, 0xEE, 0xCF, + 0xBB, 0x3E, 0xEC, 0xFB, 0xB3, 0xEE, 0xCF, 0xB8, 0x7E, 0xE1, 0xFB, 0xFE, 0xEF, 0xF8, 0x07, 0xE0, + 0xFE, 0x1E, 0x21, 0xC0, 0x7F, 0xC7, 0xFC, 0x38, 0x07, 0xF8, 0x7F, 0x81, 0x80, 0x1C, 0x01, 0xF2, + 0x0F, 0xF0, 0x7F, 0xFF, 0xEF, 0xFE, 0x06, 0x00, 0x60, 0x07, 0xC0, 0x7C, 0x1F, 0x83, 0xE0, 0x37, + 0xC0, 0x7C, 0x1F, 0x83, 0xE0, 0x36, 0x00, 0x60, 0x06, 0x00, 0x3F, 0x83, 0xFC, 0x33, 0xC0, 0x0C, + 0x00, 0xCF, 0xFE, 0x07, 0x81, 0xE0, 0xFF, 0xE7, 0x00, 0x70, 0x07, 0x00, 0x3C, 0xC3, 0xFE, 0x1F, + 0xC0, 0xFF, 0xFF, 0xFC, 0x1C, 0x01, 0xCF, 0xFD, 0xFF, 0x80, 0xE0, 0x78, 0xFF, 0x1F, 0x83, 0xC0, + 0x1C, 0x01, 0xC0, 0x1C, 0x01, 0xC0, 0x3F, 0x03, 0xFC, 0x33, 0xC0, 0x0E, 0x00, 0xE1, 0xFE, 0x3F, + 0xE7, 0x9F, 0x70, 0x76, 0x06, 0x60, 0x66, 0x0E, 0x60, 0xE7, 0xBC, 0x3F, 0x81, 0xF0, 0x07, 0x00, + 0x1E, 0x00, 0xF8, 0x03, 0xF0, 0x0D, 0xC0, 0x73, 0x81, 0x8E, 0x0E, 0x18, 0x38, 0x70, 0xC1, 0xC7, + 0x03, 0x1C, 0x0E, 0x60, 0x3B, 0xFF, 0xEF, 0xFF, 0xC0, 0xFF, 0xFF, 0xFF, 0xE0, 0x7E, 0x07, 0xE0, + 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, + 0x07, 0xE0, 0x70, 0xFF, 0xFF, 0xFD, 0xC0, 0x38, 0x03, 0x80, 0x38, 0x07, 0x00, 0x70, 0x07, 0x01, + 0xC0, 0x70, 0x1E, 0x03, 0x80, 0xE0, 0x38, 0x07, 0xFF, 0xFF, 0xE0, 0xFF, 0xFF, 0xF0, 0x00, 0xE0, 0x38, 0x07, 0x01, 0xC0, 0x30, 0x0E, 0x01, 0x80, 0x70, 0x0C, 0x03, 0x80, 0x60, 0x1C, 0x07, 0x00, - 0xE0, 0x38, 0x00, 0x7C, 0xDF, 0x9F, 0x3E, 0x7C, 0xDB, 0xBE, 0x0C, 0x1C, 0x3C, 0x7C, 0x6C, 0xFE, - 0x0C, 0x0C, 0x7E, 0xC1, 0x83, 0xE1, 0xE0, 0xD3, 0xBE, 0x1E, 0x71, 0x83, 0xEE, 0xEC, 0xDB, 0x9E, - 0xFE, 0x1C, 0x70, 0xC1, 0x87, 0x0C, 0x18, 0x7C, 0xDD, 0x9B, 0xE7, 0xFC, 0xFB, 0xBE, 0x7C, 0xDF, - 0x9F, 0x37, 0xE1, 0xCF, 0x3C, 0x7C, 0xDF, 0x9F, 0x3E, 0x7C, 0xDB, 0xBE, 0x3F, 0xF3, 0x33, 0x33, - 0x7C, 0xD8, 0x38, 0xE3, 0xCF, 0x18, 0x3F, 0x7C, 0xD8, 0x31, 0xE0, 0xE0, 0xD3, 0xFE, 0x0C, 0x1C, - 0x3C, 0x7C, 0x6C, 0xFE, 0x0C, 0x0C, 0x7E, 0xC1, 0x83, 0xE1, 0xE0, 0xD3, 0xBE, 0x1E, 0x71, 0x83, - 0xEE, 0xEC, 0xDB, 0x9E, 0xFE, 0x1C, 0x70, 0xC1, 0x87, 0x0C, 0x18, 0x7C, 0xDD, 0x9B, 0xE7, 0xFC, - 0xFB, 0xBE, 0x7C, 0xDF, 0x9F, 0x37, 0xE1, 0xCF, 0x3C, 0xFF, 0x8F, 0xFF, 0x3E, 0x0C, 0xF9, 0x33, - 0xEE, 0xCF, 0xBB, 0x3E, 0xEC, 0xFB, 0xB3, 0xEE, 0xCF, 0xB8, 0x7E, 0xE1, 0xFB, 0xFE, 0xEF, 0xF8, - 0x07, 0xE0, 0xFE, 0x1E, 0x21, 0xC0, 0x7F, 0xC7, 0xFC, 0x38, 0x07, 0xF8, 0x7F, 0x81, 0x80, 0x1C, - 0x01, 0xF2, 0x0F, 0xF0, 0x7F, 0xFF, 0xEF, 0xFE, 0x06, 0x00, 0x60, 0x07, 0xC0, 0x7C, 0x1F, 0x83, - 0xE0, 0x37, 0xC0, 0x7C, 0x1F, 0x83, 0xE0, 0x36, 0x00, 0x60, 0x06, 0x00, 0x3F, 0x83, 0xFC, 0x33, - 0xC0, 0x0C, 0x00, 0xCF, 0xFE, 0x07, 0x81, 0xE0, 0xFF, 0xE7, 0x00, 0x70, 0x07, 0x00, 0x3C, 0xC3, - 0xFE, 0x1F, 0xC0, 0xFF, 0xFF, 0xFC, 0x1C, 0x01, 0xCF, 0xFD, 0xFF, 0x80, 0xE0, 0x78, 0xFF, 0x1F, - 0x83, 0xC0, 0x1C, 0x01, 0xC0, 0x1C, 0x01, 0xC0, 0x3F, 0x03, 0xFC, 0x33, 0xC0, 0x0E, 0x00, 0xE1, - 0xFE, 0x3F, 0xE7, 0x9F, 0x70, 0x76, 0x06, 0x60, 0x66, 0x0E, 0x60, 0xE7, 0xBC, 0x3F, 0x81, 0xF0, - 0x07, 0x00, 0x1E, 0x00, 0xF8, 0x03, 0xF0, 0x0D, 0xC0, 0x73, 0x81, 0x8E, 0x0E, 0x18, 0x38, 0x70, - 0xC1, 0xC7, 0x03, 0x1C, 0x0E, 0x60, 0x3B, 0xFF, 0xEF, 0xFF, 0xC0, 0xFF, 0xFF, 0xFF, 0xE0, 0x7E, - 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0x7E, 0x07, - 0xE0, 0x7E, 0x07, 0xE0, 0x70, 0xFF, 0xFF, 0xFD, 0xC0, 0x38, 0x03, 0x80, 0x38, 0x07, 0x00, 0x70, - 0x07, 0x01, 0xC0, 0x70, 0x1E, 0x03, 0x80, 0xE0, 0x38, 0x07, 0xFF, 0xFF, 0xE0, 0xFF, 0xFF, 0xF0, - 0x00, 0xE0, 0x38, 0x07, 0x01, 0xC0, 0x30, 0x0E, 0x01, 0x80, 0x70, 0x0C, 0x03, 0x80, 0x60, 0x1C, - 0x07, 0x00, 0xE0, 0x38, 0x00, 0xFF, 0x80, 0x00, 0x30, 0x01, 0x80, 0x1C, 0x00, 0xC0, 0x06, 0x00, - 0x70, 0x03, 0x80, 0x18, 0x70, 0xC7, 0xCE, 0x3E, 0x60, 0x3B, 0x01, 0xF8, 0x07, 0x80, 0x3C, 0x00, - 0xE0, 0x06, 0x00, 0x7D, 0xE7, 0xFF, 0xE7, 0x3E, 0x73, 0x7F, 0xF7, 0xDE, 0x0F, 0x1F, 0x1E, 0x18, - 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x38, 0x38, 0x78, 0xF8, 0xF0, - 0x3C, 0x6F, 0xFD, 0xBF, 0xB1, 0xE3, 0xC6, 0xFF, 0xDB, 0xFB, 0x1E, 0x03, 0x00, 0xC0, 0x73, 0xFF, - 0xFF, 0xC3, 0x80, 0xC0, 0x70, 0xFF, 0xFF, 0xF3, 0x01, 0xC0, 0x60, 0x00, 0x01, 0xC3, 0xF7, 0xFB, - 0xF0, 0xF0, 0x3F, 0x07, 0xF8, 0x3F, 0x01, 0xC0, 0x0F, 0xFF, 0xFF, 0xE0, 0x3F, 0x07, 0xF8, 0x3F, - 0x03, 0xC3, 0xF7, 0xFB, 0xF0, 0xE0, 0x00, 0x0F, 0xFF, 0xFF, 0x3F, 0x3F, 0x7E, 0x7F, 0x72, 0x72, - 0xE0, 0x60, 0xE0, 0x60, 0xFE, 0xFE, 0xFE, 0xFE, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, - 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0x3E, 0xE7, 0xEE, 0x70, 0x0E, 0x00, - 0xE0, 0x0F, 0xEE, 0xFE, 0xEE, 0x0E, 0xE0, 0xEE, 0x0E, 0xE0, 0xEE, 0x0E, 0xE0, 0xEE, 0x0E, 0xE0, - 0xEE, 0x0E, 0x3E, 0x63, 0xF7, 0x1C, 0x39, 0xC1, 0xCE, 0x0E, 0x7F, 0x73, 0xFB, 0x9C, 0x1C, 0xE0, - 0xE7, 0x07, 0x38, 0x39, 0xC1, 0xCE, 0x0E, 0x70, 0x3B, 0x81, 0xFC, 0x0F, 0x3F, 0x3E, 0x67, 0xE7, - 0xE6, 0x72, 0x72, 0x0E, 0x06, 0x00, 0xE0, 0x60, 0x0F, 0xEF, 0xE6, 0xFE, 0xFE, 0x6E, 0x0E, 0x06, - 0xE0, 0xE0, 0x6E, 0x0E, 0x06, 0xE0, 0xE0, 0x6E, 0x0E, 0x06, 0xE0, 0xE0, 0x6E, 0x0E, 0x06, 0xE0, - 0xE0, 0x6E, 0x0E, 0x06, 0x3F, 0x3E, 0x63, 0xF3, 0xF3, 0x1C, 0x9C, 0x99, 0xC0, 0xC0, 0xCE, 0x06, - 0x06, 0x7F, 0x7F, 0x33, 0xFB, 0xF9, 0x9C, 0x1C, 0x0C, 0xE0, 0xE0, 0x67, 0x07, 0x03, 0x38, 0x38, - 0x19, 0xC1, 0xC0, 0xCE, 0x0E, 0x06, 0x70, 0x70, 0x3B, 0x83, 0x81, 0xFC, 0x1C, 0x07, + 0xE0, 0x38, 0x00, 0xFF, 0x80, 0x00, 0x30, 0x01, 0x80, 0x1C, 0x00, 0xC0, 0x06, 0x00, 0x70, 0x03, + 0x80, 0x18, 0x70, 0xC7, 0xCE, 0x3E, 0x60, 0x3B, 0x01, 0xF8, 0x07, 0x80, 0x3C, 0x00, 0xE0, 0x06, + 0x00, 0x7D, 0xE7, 0xFF, 0xE7, 0x3E, 0x73, 0x7F, 0xF7, 0xDE, 0x0F, 0x1F, 0x1E, 0x18, 0x18, 0x18, + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x38, 0x38, 0x78, 0xF8, 0xF0, 0x3C, 0x6F, + 0xFD, 0xBF, 0xB1, 0xE3, 0xC6, 0xFF, 0xDB, 0xFB, 0x1E, 0x03, 0x00, 0xC0, 0x73, 0xFF, 0xFF, 0xC3, + 0x80, 0xC0, 0x70, 0xFF, 0xFF, 0xF3, 0x01, 0xC0, 0x60, 0x00, 0x01, 0xC3, 0xF7, 0xFB, 0xF0, 0xF0, + 0x3F, 0x07, 0xF8, 0x3F, 0x01, 0xC0, 0x0F, 0xFF, 0xFF, 0xE0, 0x3F, 0x07, 0xF8, 0x3F, 0x03, 0xC3, + 0xF7, 0xFB, 0xF0, 0xE0, 0x00, 0x0F, 0xFF, 0xFF, 0x3F, 0x3F, 0x7E, 0x7F, 0x72, 0x72, 0xE0, 0x60, + 0xE0, 0x60, 0xFE, 0xFE, 0xFE, 0xFE, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, + 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0xE0, 0x3E, 0xE7, 0xEE, 0x70, 0x0E, 0x00, 0xE0, 0x0F, + 0xEE, 0xFE, 0xEE, 0x0E, 0xE0, 0xEE, 0x0E, 0xE0, 0xEE, 0x0E, 0xE0, 0xEE, 0x0E, 0xE0, 0xEE, 0x0E, + 0x3E, 0x63, 0xF7, 0x1C, 0x39, 0xC1, 0xCE, 0x0E, 0x7F, 0x73, 0xFB, 0x9C, 0x1C, 0xE0, 0xE7, 0x07, + 0x38, 0x39, 0xC1, 0xCE, 0x0E, 0x70, 0x3B, 0x81, 0xFC, 0x0F, 0x3F, 0x3E, 0x67, 0xE7, 0xE6, 0x72, + 0x72, 0x0E, 0x06, 0x00, 0xE0, 0x60, 0x0F, 0xEF, 0xE6, 0xFE, 0xFE, 0x6E, 0x0E, 0x06, 0xE0, 0xE0, + 0x6E, 0x0E, 0x06, 0xE0, 0xE0, 0x6E, 0x0E, 0x06, 0xE0, 0xE0, 0x6E, 0x0E, 0x06, 0xE0, 0xE0, 0x6E, + 0x0E, 0x06, 0x3F, 0x3E, 0x63, 0xF3, 0xF3, 0x1C, 0x9C, 0x99, 0xC0, 0xC0, 0xCE, 0x06, 0x06, 0x7F, + 0x7F, 0x33, 0xFB, 0xF9, 0x9C, 0x1C, 0x0C, 0xE0, 0xE0, 0x67, 0x07, 0x03, 0x38, 0x38, 0x19, 0xC1, + 0xC0, 0xCE, 0x0E, 0x06, 0x70, 0x70, 0x3B, 0x83, 0x81, 0xFC, 0x1C, 0x07, 0x00, 0x00, 0x20, 0x00, + 0x06, 0x60, 0x00, 0x7E, 0x00, 0x07, 0xE0, 0x00, 0x3E, 0x00, 0x03, 0xE0, 0x00, 0x77, 0xFF, 0xFE, + 0x3F, 0xFF, 0xC0, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0xF8, 0x00, 0x0F, 0x80, 0x00, + 0x60, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0xE0, 0x00, 0x00, + 0xE0, 0x00, 0x30, 0xE0, 0x00, 0x78, 0xE0, 0x01, 0xF8, 0x7F, 0xFF, 0xFF, 0x3F, 0xFF, 0x1F, 0x0F, + 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF0, 0x00, 0x01, 0xB0, 0x00, 0x00, 0xE0, + 0x00, 0x00, 0xE0, 0x00, 0x00, 0x40, 0x00, 0x08, 0x71, 0xC3, 0x0C, 0x30, 0xDF, 0x78, 0x00, 0x1F, + 0x6C, 0xE3, 0x84, 0x1C, 0x0C, 0x06, 0x07, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x7C, 0x3E, 0x06, 0x07, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0xF8, 0x00, 0x0F, 0x80, 0x00, 0xF8, 0x00, 0x1F, + 0x80, 0x00, 0xF0, 0x20, 0x00, 0x06, 0x60, 0x00, 0x7E, 0x00, 0x07, 0xE0, 0x00, 0x3E, 0x00, 0x03, + 0xE0, 0x00, 0x77, 0xFF, 0xFE, 0x3F, 0xFF, 0xC0, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, + 0x00, 0xF8, 0x00, 0x00, 0xF8, 0x00, 0x00, 0xFC, 0x00, 0x01, 0xF8, 0x00, 0x00, 0xF0, 0x00, 0x00, + 0x00, 0x00, 0x60, 0x00, 0x00, 0xE0, 0x00, 0x00, 0xE0, 0x00, 0x30, 0xE0, 0x00, 0x78, 0xE0, 0x01, + 0xF8, 0x7F, 0xFF, 0xFF, 0x3F, 0xFF, 0x1F, 0x0F, 0xF0, 0x00, 0x01, 0x87, 0x9F, 0x6F, 0xFF, 0x00, + 0x10, 0xC3, 0x0E, 0x38, 0x63, 0xBC, 0xF0, 0x00, 0x00, 0x18, 0x0F, 0x07, 0xC3, 0xE3, 0xF0, 0xF0, + 0x00, 0x00, 0x0E, 0x06, 0x03, 0x03, 0x87, 0xFF, 0xFE, 0x00, 0x7E, 0x07, 0xFE, 0x13, 0xFE, 0x07, + 0xF0, 0xFC, 0x0F, 0x00, 0xE0, 0x0E, 0x00, 0x67, 0xC7, 0x36, 0x30, 0xC1, 0x87, 0x0C, 0x00, 0x70, + 0x01, 0xE0, 0x07, 0xFF, 0x1F, 0xF8, 0x0C, 0x00, 0x7E, 0x00, 0x7F, 0xE0, 0x13, 0xFE, 0x00, 0x7F, + 0x00, 0xFF, 0x00, 0xF3, 0x80, 0xE0, 0xE0, 0xE0, 0x7E, 0x67, 0xDF, 0x73, 0x60, 0x30, 0xC0, 0x18, + 0x70, 0x0C, 0x00, 0x07, 0x00, 0x01, 0xE0, 0x00, 0x7F, 0xF0, 0x1F, 0xF8, 0x00, 0xC0, 0x00, 0x38, + 0x07, 0xF0, 0x7F, 0x80, 0x1F, 0x03, 0xF0, 0xF8, 0xFE, 0x0F, 0x80, 0x00, 0x00, 0x80, 0x1F, 0x81, + 0xF0, 0x06, 0x00, 0xE0, 0x00, 0x00, 0x38, 0x00, 0xFE, 0x01, 0xFE, 0x00, 0x0F, 0x80, 0x3F, 0x01, + 0xFC, 0x3F, 0x9F, 0x7C, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x6C, 0x00, 0xD8, 0x00, 0xE0, 0x01, 0xC0, + 0x01, 0x00, 0x00, 0x00, 0x0C, 0x07, 0x83, 0xE1, 0xB1, 0xF0, 0xF0, 0x00, 0x00, 0x03, 0x03, 0x80, + 0xE0, 0x30, 0x1C, 0x06, 0x03, 0x41, 0xBF, 0xDF, 0xC0, 0x00, 0x00, 0x00, 0xC0, 0x07, 0x80, 0x3E, + 0x01, 0xB0, 0x1F, 0x80, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x30, 0x03, 0x80, 0x0E, 0x00, 0x30, 0x01, + 0xC0, 0x06, 0x00, 0x38, 0x41, 0xC3, 0xFF, 0x9F, 0xDC, 0x00, 0x00, 0x00, 0x1C, 0x1C, 0x36, 0x3E, + 0x12, 0x00, 0x00, 0x0C, 0x0E, 0x06, 0x07, 0x07, 0x07, 0x06, 0x0E, 0x1C, 0x7C, 0xF0, 0x60, 0x00, + 0x03, 0x80, 0x70, 0x1B, 0x03, 0xE0, 0x08, 0x00, 0x00, 0x00, 0x0C, 0x01, 0xC0, 0x18, 0x03, 0x80, + 0x70, 0x0F, 0x81, 0xF8, 0x70, 0x1C, 0x0F, 0x83, 0xE0, 0x30, 0x00, 0x00, 0x18, 0x1E, 0x1F, 0x1B, + 0x3F, 0x3C, 0x00, 0x00, 0x0C, 0x0E, 0x06, 0x07, 0x07, 0x07, 0x06, 0x0E, 0x1C, 0x7C, 0xF0, 0x60, + 0x00, 0x06, 0x00, 0x78, 0x0F, 0x83, 0xB0, 0x7C, 0x0F, 0x00, 0x00, 0x00, 0x01, 0x80, 0x38, 0x03, + 0x00, 0x70, 0x0E, 0x01, 0xF0, 0x3F, 0x0E, 0x03, 0x81, 0xF0, 0x7C, 0x06, 0x00, 0x00, 0x00, 0x40, + 0x00, 0x3C, 0x00, 0x1F, 0x00, 0x0F, 0x80, 0x03, 0xC0, 0x00, 0x70, 0x00, 0x0F, 0x00, 0x00, 0xF0, + 0x60, 0x07, 0x1C, 0x00, 0x73, 0x80, 0x06, 0x70, 0x00, 0xCE, 0x00, 0x18, 0xFF, 0xFF, 0x0F, 0xFF, + 0xC0, 0x7F, 0xC0, 0x00, 0x00, 0x40, 0x00, 0x07, 0x80, 0x00, 0x7C, 0x00, 0x07, 0xC0, 0x00, 0x3C, + 0x00, 0x00, 0xE0, 0x00, 0x03, 0xC0, 0x00, 0x07, 0x80, 0x60, 0x0F, 0x03, 0x80, 0x1E, 0x0E, 0x00, + 0x38, 0x38, 0x00, 0x70, 0xE0, 0x01, 0xE1, 0xFF, 0xFF, 0xE3, 0xFF, 0xF7, 0xC3, 0xFE, 0x00, 0x01, + 0x83, 0xC7, 0xCF, 0x87, 0x07, 0x01, 0xC0, 0x70, 0x1C, 0x07, 0x01, 0x80, 0xE0, 0x77, 0xF3, 0xF0, + 0x00, 0x01, 0x80, 0x78, 0x1F, 0x07, 0xC0, 0x70, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, 0xE0, + 0x06, 0x00, 0x70, 0x07, 0x8F, 0xFF, 0xFC, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x1E, + 0x00, 0x0F, 0xA0, 0x03, 0xDE, 0x00, 0x6F, 0x80, 0x07, 0xC0, 0x01, 0xE0, 0x00, 0x38, 0x00, 0x07, + 0x80, 0x00, 0x78, 0x30, 0x03, 0x8E, 0x00, 0x39, 0xC0, 0x03, 0x38, 0x00, 0x67, 0x00, 0x0C, 0x7F, + 0xFF, 0x87, 0xFF, 0xE0, 0x3F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x78, 0x00, + 0x07, 0xD0, 0x00, 0x3D, 0xE0, 0x00, 0xDF, 0x00, 0x01, 0xF0, 0x00, 0x0F, 0x00, 0x00, 0x38, 0x00, + 0x00, 0xF0, 0x00, 0x01, 0xE0, 0x18, 0x03, 0xC0, 0xE0, 0x07, 0x83, 0x80, 0x0E, 0x0E, 0x00, 0x1C, + 0x38, 0x00, 0x78, 0x7F, 0xFF, 0xF8, 0xFF, 0xFD, 0xF0, 0xFF, 0x80, 0x00, 0x00, 0x03, 0x87, 0xC7, + 0xBF, 0x7E, 0xF9, 0xF0, 0xE0, 0xE0, 0x38, 0x0E, 0x03, 0x80, 0xE0, 0x30, 0x1C, 0x0E, 0xFE, 0x7E, + 0x00, 0x00, 0x00, 0x00, 0x70, 0x1F, 0x03, 0xD8, 0xF7, 0x8D, 0xF0, 0x7C, 0x07, 0x00, 0xE0, 0x07, + 0x00, 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x60, 0x07, 0x00, 0x78, 0xFF, 0xFF, 0xCF, 0x00, 0x00, 0x00, + 0x10, 0x00, 0xE0, 0x03, 0x98, 0x06, 0x60, 0x1B, 0x80, 0x7E, 0x01, 0xF8, 0x06, 0xE0, 0x39, 0xE3, + 0xC3, 0xFF, 0x07, 0xF0, 0x00, 0x38, 0x00, 0x1C, 0x18, 0x06, 0x0C, 0x03, 0x8E, 0x01, 0xF7, 0x00, + 0xFF, 0x80, 0x61, 0xC0, 0x70, 0x78, 0x78, 0x1F, 0xF8, 0x07, 0xF0, 0x00, 0x18, 0x1C, 0x3E, 0x7E, + 0x67, 0xE3, 0xE3, 0xE3, 0x7F, 0x7E, 0x3E, 0x07, 0xE0, 0xE6, 0x0E, 0x70, 0xE3, 0x0E, 0x3E, 0x61, + 0xE0, 0x00, 0x11, 0x8C, 0x73, 0x8C, 0xFE, 0xF1, 0x08, 0xE7, 0x00, 0x00, 0x06, 0x03, 0xC7, 0x79, + 0xE3, 0x78, 0x7C, 0x07, 0x80, 0xF0, 0x0E, 0x00, 0x80, 0x00, 0x00, 0x1C, 0x00, 0x78, 0x03, 0xF0, + 0x0D, 0xE0, 0x73, 0xC1, 0xCF, 0x83, 0x76, 0x0F, 0x9B, 0xFF, 0xEF, 0xFF, 0x8C, 0x18, 0x01, 0xC0, + 0x0F, 0x80, 0x7E, 0x03, 0x98, 0x0E, 0x60, 0x33, 0x80, 0xDC, 0x3F, 0xFF, 0xFF, 0xFC, 0x30, 0xC0, + 0xE3, 0x03, 0xFC, 0x07, 0xF0, 0x07, 0x00, 0x00, 0x01, 0xC0, 0x1E, 0x03, 0xF0, 0x37, 0x87, 0x3C, + 0x73, 0xE3, 0x76, 0x3E, 0x6F, 0xFE, 0xFF, 0xE0, 0x18, 0x07, 0x01, 0xF0, 0x1F, 0x83, 0xB8, 0x33, + 0x83, 0x38, 0x77, 0x0F, 0xFF, 0xFF, 0xF7, 0x1C, 0x30, 0xC3, 0xFC, 0x1F, 0x80, 0xF0, 0x06, 0x00, + 0x01, 0xE0, 0x00, 0x7E, 0x00, 0x0F, 0xC0, 0x03, 0x98, 0x00, 0xE0, 0x00, 0x38, 0x00, 0x07, 0x00, + 0x00, 0x7F, 0xFF, 0xE7, 0xFF, 0xFC, 0x1F, 0xFC, 0x00, 0x07, 0xF9, 0xFF, 0xFF, 0xF9, 0xC0, 0x0C, + 0x00, 0x7C, 0x01, 0xFF, 0xE1, 0xFF, 0x38, 0x00, 0x07, 0x00, 0x00, 0xC0, 0x00, 0x1E, 0x00, 0x03, + 0x80, 0x00, 0x0C, 0x00, 0x03, 0xC0, 0x00, 0xFC, 0x00, 0x1F, 0x80, 0x07, 0x30, 0x01, 0xC0, 0x00, + 0x70, 0x00, 0x0E, 0x00, 0x00, 0xFF, 0xFF, 0xCF, 0xFF, 0xF8, 0x3F, 0xF8, 0x38, 0x01, 0xC0, 0x0C, + 0x00, 0x78, 0x03, 0x80, 0x03, 0xFC, 0xFF, 0xFF, 0xFC, 0xE0, 0x06, 0x00, 0x3E, 0x00, 0xFF, 0xF0, + 0xFF, 0x80, 0x00, 0x1E, 0x00, 0x7F, 0x00, 0x72, 0x00, 0xE0, 0x00, 0xC0, 0x60, 0xE0, 0x60, 0xF8, + 0xE0, 0x7E, 0xE0, 0x0E, 0xE0, 0x0E, 0xE0, 0x1E, 0x78, 0x7C, 0x3F, 0xF8, 0x1F, 0xE0, 0x60, 0x00, + 0x30, 0x1C, 0x38, 0x0F, 0xDC, 0x03, 0xFE, 0x00, 0x67, 0x00, 0x71, 0xE0, 0xF0, 0x7F, 0xF0, 0x1F, + 0xE0, 0x00, 0x08, 0x71, 0xC3, 0x0C, 0x30, 0xDF, 0x78, 0x00, 0x1B, 0x6C, 0x1C, 0x0C, 0x06, 0x07, + 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x7E, 0x3E, 0x00, 0x1C, 0x3E, 0x7C, 0x60, 0x60, 0x73, 0x3F, 0xFE, + 0xF8, 0x00, 0x78, 0x7F, 0x0E, 0x00, 0x18, 0x1C, 0x1C, 0x1C, 0x1C, 0x1C, 0x1C, 0x1C, 0x1C, 0x1C, + 0x1C, 0x1C, 0x1C, 0x1C, 0x78, 0x1F, 0xC0, 0xE0, 0x00, 0x1C, 0x07, 0x01, 0xC0, 0x70, 0x1C, 0x07, + 0x01, 0xC0, 0x70, 0x1C, 0x07, 0x00, 0xC0, 0x30, 0x0C, 0x03, 0xE0, 0x78, 0x00, 0xF7, 0x31, 0xFE, + 0x01, 0x8E, 0x73, 0x9C, 0xE7, 0x39, 0xCE, 0x73, 0x9C, 0xE0, 0xF0, 0xE0, 0xC0, 0xF8, 0xE0, 0x00, + 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x30, 0x30, 0x30, 0x3E, 0x1E, 0x00, + 0x1C, 0x1E, 0x0E, 0x03, 0xC3, 0xC0, 0x00, 0x78, 0x7E, 0x77, 0x31, 0x98, 0xEF, 0xF3, 0xF0, 0x78, + 0x1C, 0x7C, 0x7C, 0x38, 0x00, 0x1C, 0x07, 0x80, 0xE0, 0x0F, 0x03, 0xC0, 0x00, 0x07, 0x81, 0xF8, + 0x77, 0x0C, 0x61, 0x8E, 0x3F, 0xF3, 0xFE, 0x0E, 0x01, 0xC1, 0xF0, 0x7C, 0x0E, 0x00, 0xE7, 0x39, + 0xCE, 0x73, 0x9C, 0xE7, 0x39, 0xCE, 0x31, 0x80, 0xF7, 0x31, 0xEE, 0x00, 0xE1, 0xC3, 0x87, 0x0E, + 0x1C, 0x38, 0x70, 0xE1, 0xC1, 0x83, 0x06, 0x0F, 0x8F, 0x00, 0xF1, 0xC3, 0x07, 0x8E, 0x00, 0x1C, + 0x1E, 0x38, 0x7F, 0x30, 0x72, 0x3E, 0xE0, 0x3C, 0xC0, 0x60, 0xE0, 0x60, 0xF8, 0xE0, 0x7E, 0xE0, + 0x0E, 0xE0, 0x0E, 0xE0, 0x1E, 0x78, 0x7C, 0x3F, 0xF8, 0x1F, 0xE0, 0x1C, 0x00, 0x1C, 0x00, 0x0C, + 0x00, 0x07, 0xC0, 0x03, 0xC0, 0x03, 0x00, 0x01, 0x80, 0xE1, 0xC0, 0x7E, 0xE0, 0x1F, 0xF0, 0x03, + 0x38, 0x03, 0x8F, 0x07, 0x83, 0xFF, 0x80, 0xFF, 0x00, 0x77, 0x30, 0xFF, 0x00, 0x46, 0x31, 0xCE, + 0x33, 0xFB, 0xC0, 0x78, 0x38, 0x18, 0x0F, 0x07, 0x00, 0x00, 0x60, 0x30, 0x38, 0x1C, 0x3F, 0xDD, + 0xE0, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xD8, 0xE1, 0xC3, 0x87, 0x0E, 0x1C, 0x38, 0x70, 0xE1, + 0xC1, 0x83, 0x06, 0x0F, 0x8F, 0x00, 0x00, 0x00, 0x20, 0x00, 0x06, 0x60, 0x00, 0x7E, 0x00, 0x07, + 0xE0, 0x00, 0x3E, 0x00, 0x03, 0xE0, 0x00, 0x77, 0xFF, 0xFE, 0x3F, 0xFF, 0xC0, 0xFF, 0xC0, 0x00, + 0x00, 0x00, 0x06, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0xE0, 0x00, 0x00, + 0xE0, 0x00, 0x30, 0xE0, 0x00, 0x78, 0xE0, 0x01, 0xF8, 0x7F, 0xFF, 0xFF, 0x3F, 0xFF, 0x1F, 0x0F, + 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x00, 0xE0, 0x00, 0x11, 0x8C, 0x73, 0x8C, 0xFE, + 0xF0, 0x00, 0xE6, 0x00, 0x18, 0x0C, 0x0E, 0x07, 0x0F, 0xF7, 0x78, 0x00, 0x00, 0x38, 0x1C, 0x00, + 0x36, 0x3E, 0x04, 0x00, 0x18, 0x1C, 0x3E, 0x7E, 0x67, 0xE3, 0xE3, 0xE3, 0x7F, 0x7E, 0x1F, 0x03, + 0xF0, 0x12, 0x00, 0x00, 0x03, 0x00, 0x70, 0x1F, 0x03, 0xF0, 0x73, 0x0E, 0x30, 0xE3, 0x07, 0xF0, + 0x7F, 0x80, 0xFE, 0x01, 0xE0, 0x00, 0x00, 0xF8, 0x00, 0x1F, 0x80, 0x00, 0x90, 0x20, 0x00, 0x06, + 0x60, 0x00, 0x7E, 0x00, 0x07, 0xE0, 0x00, 0x3E, 0x00, 0x03, 0xE0, 0x00, 0x77, 0xFF, 0xFE, 0x3F, + 0xFF, 0xC0, 0xFF, 0xC0, 0x00, 0xF8, 0x00, 0x01, 0xF8, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, + 0x60, 0x00, 0x00, 0xE0, 0x00, 0x00, 0xE0, 0x00, 0x30, 0xE0, 0x00, 0x78, 0xE0, 0x01, 0xF8, 0x7F, + 0xFF, 0xFF, 0x3F, 0xFF, 0x1F, 0x0F, 0xF0, 0x00, 0xDB, 0xE4, 0x00, 0x10, 0xC3, 0x0E, 0x38, 0x63, + 0xBC, 0xF0, 0x00, 0x3E, 0x3F, 0x09, 0x00, 0x01, 0xC0, 0xC0, 0x60, 0x70, 0xFF, 0xFF, 0xC0, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x60, 0x00, 0x0F, 0x80, 0x01, 0xF8, 0x00, 0x09, 0x02, 0x00, + 0x00, 0x66, 0x00, 0x07, 0xE0, 0x00, 0x7E, 0x00, 0x03, 0xE0, 0x00, 0x3E, 0x00, 0x07, 0x7F, 0xFF, + 0xE3, 0xFF, 0xFC, 0x0F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x60, 0x00, 0x00, + 0xF8, 0x00, 0x01, 0xF8, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0xE0, 0x00, + 0x00, 0xE0, 0x00, 0x30, 0xE0, 0x00, 0x78, 0xE0, 0x01, 0xF8, 0x7F, 0xFF, 0xFF, 0x3F, 0xFF, 0x1F, + 0x0F, 0xF0, 0x00, 0x01, 0xC7, 0x36, 0xF9, 0x00, 0x04, 0x30, 0xC3, 0x8E, 0x18, 0xEF, 0x3C, 0x00, + 0x00, 0x0C, 0x06, 0x07, 0xC7, 0xE1, 0x20, 0x00, 0x38, 0x18, 0x0C, 0x0E, 0x1F, 0xFF, 0xF8, 0x00, + 0x7C, 0x07, 0xFC, 0x13, 0xFC, 0x07, 0xE0, 0xF8, 0x0F, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x07, 0x1C, + 0x30, 0xE1, 0x80, 0x0C, 0x00, 0x70, 0x01, 0xC0, 0x4F, 0xFF, 0x1F, 0xF0, 0x1C, 0x00, 0x7C, 0x01, + 0xFF, 0x01, 0x3F, 0xC0, 0x1F, 0x80, 0xFC, 0x03, 0xD8, 0x0E, 0x38, 0x38, 0x3F, 0xE0, 0x3F, 0xC7, + 0x03, 0x0E, 0x06, 0x00, 0x0C, 0x00, 0x1C, 0x00, 0x1C, 0x04, 0x3F, 0xFC, 0x1F, 0xF0, 0x07, 0x00, + 0x38, 0x07, 0xF0, 0x7F, 0x80, 0x1F, 0x03, 0xF0, 0xF8, 0xFE, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x60, 0x38, 0x00, 0xFE, 0x01, 0xFE, 0x00, 0x0F, 0x80, 0x3F, 0x01, 0xFC, 0x3F, 0x9F, 0x7C, + 0x1F, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x70, 0x00, 0x7C, 0x07, 0xFC, 0x13, 0xFC, 0x07, 0xE0, + 0xF8, 0x0F, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x07, 0x00, 0x30, 0x01, 0x80, 0x0C, 0x00, 0x70, 0x01, + 0xC0, 0x4F, 0xFF, 0x1F, 0xF0, 0x1C, 0x00, 0x7C, 0x01, 0xFF, 0x01, 0x3F, 0xC0, 0x1F, 0x80, 0xFC, + 0x03, 0xD8, 0x0E, 0x38, 0x38, 0x3F, 0xE0, 0x3F, 0xC0, 0x03, 0x00, 0x06, 0x00, 0x0C, 0x00, 0x1C, + 0x00, 0x1C, 0x04, 0x3F, 0xFC, 0x1F, 0xF0, 0x07, 0x00, 0x38, 0x07, 0xF0, 0x7F, 0x80, 0x1F, 0x03, + 0xF0, 0xF8, 0xFE, 0x0F, 0x80, 0x00, 0x00, 0x38, 0x00, 0xFE, 0x01, 0xFE, 0x00, 0x0F, 0x80, 0x3F, + 0x01, 0xFC, 0x3F, 0x9F, 0x7C, 0x1F, 0x00, 0x00, 0x07, 0x00, 0x38, 0x00, 0x80, 0x00, 0x07, 0xC0, + 0x7F, 0xC1, 0x3F, 0xC0, 0x7E, 0x0F, 0x80, 0xF0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0x70, 0x03, 0x00, + 0x18, 0x00, 0xC0, 0x07, 0x00, 0x1C, 0x04, 0xFF, 0xF1, 0xFF, 0x01, 0xC0, 0x07, 0x00, 0x0E, 0x00, + 0x08, 0x00, 0x00, 0x07, 0xC0, 0x1F, 0xF0, 0x13, 0xFC, 0x01, 0xF8, 0x0F, 0xC0, 0x3D, 0x80, 0xE3, + 0x83, 0x83, 0xFE, 0x03, 0xFC, 0x00, 0x30, 0x00, 0x60, 0x00, 0xC0, 0x01, 0xC0, 0x01, 0xC0, 0x43, + 0xFF, 0xC1, 0xFF, 0x00, 0x70, 0x00, 0x38, 0x03, 0x80, 0x10, 0x00, 0x00, 0x38, 0x07, 0xF0, 0x7F, + 0x80, 0x1F, 0x03, 0xF0, 0xF8, 0xFE, 0x0F, 0x80, 0x00, 0x00, 0x30, 0x00, 0x70, 0x00, 0x40, 0x00, + 0x00, 0x03, 0x80, 0x0F, 0xE0, 0x1F, 0xE0, 0x00, 0xF8, 0x03, 0xF0, 0x1F, 0xC3, 0xF9, 0xF7, 0xC1, + 0xF0, 0x00, 0x00, 0x06, 0x07, 0x01, 0xC0, 0x60, 0x38, 0x0C, 0x06, 0x83, 0x7F, 0xBF, 0x80, 0x00, + 0x06, 0x00, 0x70, 0x01, 0xC0, 0x06, 0x00, 0x38, 0x00, 0xC0, 0x07, 0x08, 0x38, 0x7F, 0xF3, 0xFB, + 0x80, 0x00, 0x1C, 0x0E, 0x02, 0x00, 0x00, 0x60, 0x70, 0x1C, 0x06, 0x03, 0x80, 0xC0, 0x68, 0x37, + 0xFB, 0xF8, 0x00, 0x1C, 0x00, 0xE0, 0x02, 0x00, 0x00, 0x00, 0x60, 0x07, 0x00, 0x1C, 0x00, 0x60, + 0x03, 0x80, 0x0C, 0x00, 0x70, 0x83, 0x87, 0xFF, 0x3F, 0xB8, 0x00, 0x00, 0x00, 0x0C, 0x0E, 0x06, + 0x07, 0x07, 0x07, 0x06, 0x0E, 0x1C, 0x7C, 0xF0, 0x60, 0x00, 0x01, 0x80, 0x38, 0x03, 0x00, 0x70, + 0x0E, 0x01, 0xF0, 0x3F, 0x0E, 0x03, 0x81, 0xF0, 0x7C, 0x06, 0x00, 0x0C, 0x1C, 0x08, 0x00, 0x00, + 0x0C, 0x0E, 0x06, 0x07, 0x07, 0x07, 0x06, 0x0E, 0x1C, 0x7C, 0xF0, 0x60, 0x1C, 0x03, 0x80, 0x20, + 0x00, 0x00, 0x00, 0x18, 0x03, 0x80, 0x30, 0x07, 0x00, 0xE0, 0x1F, 0x03, 0xF0, 0xE0, 0x38, 0x1F, + 0x07, 0xC0, 0x60, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x03, 0x80, 0x00, 0x01, 0xC0, 0x07, 0x0C, + 0x60, 0x03, 0x86, 0x33, 0x00, 0xC3, 0x1D, 0x80, 0x73, 0x8D, 0xC0, 0x3F, 0xFE, 0xE0, 0x1F, 0xFE, + 0x70, 0x0C, 0x00, 0x38, 0x0E, 0x00, 0x0F, 0x0F, 0x00, 0x03, 0xFF, 0x00, 0x00, 0xFE, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x38, 0x63, 0x00, 0x03, 0x86, 0x30, 0x60, 0x18, + 0x63, 0x86, 0x01, 0xCE, 0x38, 0xE0, 0x1F, 0xFF, 0xFE, 0x01, 0xFF, 0xEF, 0xE0, 0x18, 0x00, 0x0E, + 0x03, 0x80, 0x00, 0x78, 0x78, 0x00, 0x03, 0xFF, 0x00, 0x00, 0x1F, 0xC0, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x0E, 0x00, 0x06, 0x18, 0xC6, 0x38, 0xC7, 0x38, 0xC7, 0x39, 0xC7, 0xFF, 0xFE, 0xFF, 0xFC, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0xC0, 0x63, 0x18, 0x1C, 0x63, 0x83, 0x8C, 0x70, 0x73, 0x8E, + 0x3F, 0xFF, 0xFF, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, + 0x30, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x3F, 0x00, 0x00, 0x09, 0x10, 0x00, 0x00, 0x1C, 0x00, 0x00, + 0x0E, 0x00, 0x38, 0x63, 0x00, 0x1C, 0x31, 0x98, 0x06, 0x18, 0xEC, 0x03, 0x9C, 0x6E, 0x01, 0xFF, + 0xF7, 0x00, 0xFF, 0xF3, 0x80, 0x60, 0x01, 0xC0, 0x70, 0x00, 0x78, 0x78, 0x00, 0x1F, 0xF8, 0x00, + 0x07, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, + 0x1F, 0x00, 0x00, 0x03, 0xF0, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, + 0x00, 0x38, 0x63, 0x00, 0x03, 0x86, 0x30, 0x60, 0x18, 0x63, 0x86, 0x01, 0xCE, 0x38, 0xE0, 0x1F, + 0xFF, 0xFE, 0x01, 0xFF, 0xEF, 0xE0, 0x18, 0x00, 0x0E, 0x03, 0x80, 0x00, 0x78, 0x78, 0x00, 0x03, + 0xFF, 0x00, 0x00, 0x1F, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0xC0, 0x03, 0xF0, 0x03, + 0xF0, 0x01, 0x24, 0x00, 0x0E, 0x00, 0x06, 0x18, 0xC6, 0x38, 0xC7, 0x38, 0xC7, 0x39, 0xC7, 0xFF, + 0xFE, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x03, 0x00, 0x01, 0xF8, 0x00, 0x3F, + 0x00, 0x02, 0x40, 0x00, 0x00, 0x80, 0x00, 0x30, 0x18, 0xC6, 0x07, 0x18, 0xE0, 0xE3, 0x1C, 0x1C, + 0xE3, 0x8F, 0xFF, 0xFF, 0xFF, 0xFB, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x80, 0x00, 0x07, 0xF8, + 0x00, 0xE1, 0xE7, 0x00, 0x1C, 0x70, 0x76, 0x01, 0x9C, 0x0E, 0xC0, 0x3F, 0x03, 0xB8, 0x07, 0xFF, + 0xF7, 0x00, 0xFF, 0xF8, 0xE0, 0x18, 0xF8, 0x1C, 0x07, 0x00, 0x01, 0xE1, 0xE0, 0x00, 0x1F, 0xF8, + 0x00, 0x01, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x80, 0x00, 0x00, 0xFF, 0x00, 0x03, 0x87, 0x9C, + 0x00, 0x0E, 0x38, 0x38, 0x60, 0x19, 0xC0, 0xE1, 0x80, 0x7E, 0x07, 0x0E, 0x01, 0xFF, 0xFF, 0xB8, + 0x07, 0xFF, 0xFE, 0xE0, 0x18, 0xF8, 0x03, 0x80, 0xE0, 0x00, 0x07, 0x87, 0x80, 0x00, 0x0F, 0xFC, + 0x00, 0x00, 0x1F, 0xC0, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x0F, 0xE1, 0x87, 0x9C, 0x63, 0x83, 0x39, + 0xC0, 0xCE, 0xE0, 0x7F, 0xFF, 0xFB, 0xBF, 0xFC, 0x03, 0xF8, 0x00, 0x00, 0x0F, 0x00, 0x01, 0xFC, + 0x06, 0x1E, 0x70, 0x31, 0xC1, 0x83, 0x9C, 0x0C, 0x1D, 0xC0, 0xE3, 0xFF, 0xFF, 0xFD, 0xFF, 0xFF, + 0x03, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xF8, 0x00, 0x00, 0x7F, 0x80, 0x0E, 0x1E, 0x70, 0x01, 0xC7, 0x07, 0x60, 0x19, + 0xC0, 0xEC, 0x03, 0xF0, 0x3B, 0x80, 0x7F, 0xFF, 0x70, 0x0F, 0xFF, 0x8E, 0x01, 0x8F, 0x81, 0xC0, + 0x70, 0x00, 0x1E, 0x1E, 0x00, 0x01, 0xFF, 0x80, 0x00, 0x1F, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x80, + 0x00, 0x00, 0xFF, 0x00, 0x03, 0x87, 0x9C, 0x00, 0x0E, 0x38, 0x38, 0x60, 0x19, 0xC0, 0xE1, 0x80, + 0x7E, 0x07, 0x0E, 0x01, 0xFF, 0xFF, 0xB8, 0x07, 0xFF, 0xFE, 0xE0, 0x18, 0xF8, 0x03, 0x80, 0xE0, + 0x00, 0x07, 0x87, 0x80, 0x00, 0x0F, 0xFC, 0x00, 0x00, 0x1F, 0xC0, 0x00, 0x00, 0x00, 0x0E, 0x00, + 0x03, 0x80, 0x00, 0x40, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x0F, 0xE1, 0x87, 0x9C, 0x63, 0x83, 0x39, + 0xC0, 0xCE, 0xE0, 0x7F, 0xFF, 0xFB, 0xBF, 0xFC, 0x03, 0xF8, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x70, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x1F, 0xC0, 0x61, 0xE7, 0x03, 0x1C, 0x18, + 0x39, 0xC0, 0xC1, 0xDC, 0x0E, 0x3F, 0xFF, 0xFF, 0xDF, 0xFF, 0xF0, 0x3F, 0x80, 0x00, 0x0C, 0x00, + 0x0C, 0x00, 0x0C, 0x00, 0x0C, 0x00, 0x0C, 0x00, 0x0C, 0x00, 0x0C, 0x00, 0x0C, 0x7C, 0x0D, 0xFE, + 0x0F, 0xC7, 0x0F, 0x87, 0x0F, 0x07, 0x0E, 0x0E, 0xFF, 0xFE, 0xFF, 0xF8, 0x1F, 0xC0, 0x0C, 0x00, + 0x01, 0x80, 0x00, 0x30, 0x00, 0x06, 0x00, 0x00, 0xC0, 0x00, 0x18, 0x00, 0x03, 0x00, 0x00, 0x63, + 0xE0, 0x0D, 0xFE, 0x01, 0xF8, 0xE0, 0x3E, 0x1C, 0x07, 0x83, 0x80, 0xE0, 0xE1, 0xFF, 0xFF, 0xBF, + 0xFF, 0xF8, 0xFE, 0x00, 0x70, 0x01, 0xC0, 0x07, 0x00, 0x1C, 0x00, 0x70, 0x01, 0xC0, 0x07, 0x00, + 0x1C, 0x7C, 0x77, 0xF9, 0xFE, 0xE3, 0xE1, 0xCE, 0x06, 0x70, 0x3B, 0xFF, 0xCF, 0xFE, 0x00, 0x00, + 0x70, 0x00, 0x70, 0x00, 0x70, 0x00, 0x70, 0x00, 0x70, 0x00, 0x70, 0x00, 0x70, 0x00, 0x71, 0xF0, + 0x77, 0xF8, 0x7F, 0xB8, 0x3E, 0x1C, 0x38, 0x18, 0x70, 0x38, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, + 0x0C, 0x00, 0x0C, 0x00, 0x0C, 0x00, 0x0C, 0x18, 0x0C, 0x38, 0x0C, 0x10, 0x0C, 0x00, 0x0C, 0x7C, + 0x0D, 0xFE, 0x0F, 0xC7, 0x0F, 0x87, 0x0F, 0x07, 0x0E, 0x0E, 0xFF, 0xFE, 0xFF, 0xF8, 0x1F, 0xC0, + 0x0C, 0x00, 0x01, 0x80, 0x00, 0x30, 0x00, 0x06, 0x18, 0x00, 0xC7, 0x00, 0x18, 0x40, 0x03, 0x00, + 0x00, 0x63, 0xE0, 0x0D, 0xFE, 0x01, 0xF8, 0xE0, 0x3E, 0x1C, 0x07, 0x83, 0x80, 0xE0, 0xE1, 0xFF, + 0xFF, 0xBF, 0xFF, 0xF8, 0xFE, 0x00, 0x70, 0x01, 0xC0, 0x07, 0x00, 0x1C, 0x70, 0x71, 0xC1, 0xC2, + 0x07, 0x00, 0x1C, 0x7C, 0x77, 0xF9, 0xFE, 0xE3, 0xE1, 0xCE, 0x06, 0x70, 0x3B, 0xFF, 0xCF, 0xFE, + 0x00, 0x00, 0x70, 0x00, 0x70, 0x00, 0x70, 0x00, 0x71, 0xC0, 0x71, 0xC0, 0x70, 0x80, 0x70, 0x00, + 0x71, 0xF0, 0x77, 0xF8, 0x7F, 0xB8, 0x3E, 0x1C, 0x38, 0x18, 0x70, 0x38, 0xFF, 0xFF, 0xFF, 0xFF, + 0x00, 0x00, 0x1E, 0x01, 0xF0, 0x1F, 0x80, 0xC0, 0x0E, 0x00, 0x30, 0xC1, 0xFE, 0x07, 0xF0, 0x3C, + 0x03, 0x80, 0x18, 0x01, 0xC0, 0x0C, 0x00, 0x60, 0x03, 0x00, 0x1C, 0x00, 0x70, 0x03, 0xFF, 0x87, + 0xFC, 0x06, 0x00, 0x0F, 0x01, 0xFC, 0x1F, 0xF0, 0xE3, 0x83, 0x98, 0x0F, 0xC0, 0x3C, 0x03, 0xFE, + 0x3B, 0xF3, 0x80, 0x38, 0x01, 0x80, 0x0C, 0x00, 0x70, 0x03, 0x80, 0x8F, 0xFE, 0x3F, 0xE0, 0x30, + 0x00, 0x00, 0x07, 0xC3, 0xF1, 0xC0, 0x70, 0x1C, 0x03, 0x80, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x0F, + 0x03, 0xF8, 0x7F, 0xC7, 0x1C, 0x79, 0x81, 0xF8, 0x1F, 0x0F, 0xFF, 0xFB, 0xF0, 0x00, 0x0C, 0x00, + 0x60, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x1F, 0x01, 0xF8, 0x0C, 0x00, 0xE0, 0x03, 0x0C, 0x1F, 0xE0, + 0x7F, 0x03, 0xC0, 0x38, 0x01, 0x80, 0x1C, 0x00, 0xC0, 0x06, 0x00, 0x30, 0x01, 0xC0, 0x07, 0x00, + 0x3F, 0xF8, 0x7F, 0xC0, 0x60, 0x06, 0x00, 0x30, 0x00, 0x80, 0x00, 0x00, 0xF0, 0x1F, 0xC1, 0xFF, + 0x0E, 0x38, 0x39, 0x80, 0xFC, 0x03, 0xC0, 0x3F, 0xE3, 0xBF, 0x38, 0x03, 0x80, 0x18, 0x00, 0xC0, + 0x07, 0x00, 0x38, 0x08, 0xFF, 0xE3, 0xFE, 0x03, 0x00, 0x0E, 0x03, 0x80, 0x40, 0x00, 0x00, 0x07, + 0xC3, 0xF1, 0xC0, 0x70, 0x1C, 0x03, 0x80, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x06, 0x00, 0xE0, 0x04, + 0x00, 0x00, 0x0F, 0x03, 0xF8, 0x7F, 0xC7, 0x1C, 0x79, 0x81, 0xF8, 0x1F, 0x0F, 0xFF, 0xFB, 0xF0, + 0x00, 0x00, 0x01, 0x80, 0x00, 0x38, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x3E, + 0x00, 0x07, 0xE0, 0x00, 0x67, 0x60, 0x0E, 0x7E, 0x00, 0xE7, 0xE0, 0x07, 0xFE, 0x00, 0x3F, 0xE0, + 0x00, 0x77, 0xFF, 0xFE, 0x3F, 0xFF, 0xE0, 0xFF, 0xF0, 0x00, 0x00, 0x60, 0x00, 0x00, 0xE0, 0x00, + 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x01, 0xF8, 0x60, 0x03, 0xF8, 0xE0, 0x03, + 0x9C, 0xE0, 0x03, 0x1C, 0xE0, 0x03, 0x98, 0xE0, 0x01, 0xF8, 0x7F, 0xFF, 0xFF, 0x3F, 0xFF, 0xFF, + 0x0F, 0xFC, 0x00, 0x1C, 0x0E, 0x02, 0x00, 0x00, 0xC1, 0xF8, 0xFC, 0xE6, 0x73, 0xB9, 0xCF, 0xE3, + 0xF0, 0x77, 0xF3, 0xF0, 0x00, 0x0C, 0x00, 0xC0, 0x04, 0x00, 0x00, 0x0E, 0x03, 0xF0, 0x3B, 0x87, + 0x38, 0x71, 0x83, 0x38, 0x3F, 0x0F, 0xFE, 0xFF, 0xF0, 0x00, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x3C, 0x00, 0x7E, 0x00, 0x6E, 0x00, 0xE6, 0x60, 0xC7, 0x60, 0xFF, 0xE0, 0xFF, + 0xE0, 0x3E, 0xE0, 0x06, 0xE0, 0x0E, 0x78, 0x3C, 0x3F, 0xF8, 0x1F, 0xE0, 0x00, 0x7C, 0x00, 0x1F, + 0x80, 0x02, 0x40, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x1F, 0x80, 0x0E, 0xE0, 0x03, 0x18, 0x70, 0xC7, + 0x18, 0x3F, 0xFE, 0x07, 0xFF, 0x80, 0x18, 0xE0, 0x0E, 0x1C, 0x07, 0x87, 0xCF, 0xC0, 0xFF, 0xE0, + 0x0F, 0xE0, 0x00, 0x36, 0x1F, 0x04, 0x00, 0x00, 0xC1, 0xF8, 0xFC, 0xE6, 0x73, 0xB9, 0xCF, 0xE3, + 0xF0, 0x77, 0xF3, 0xF0, 0x00, 0x1F, 0x03, 0xF0, 0x12, 0x00, 0x00, 0x0E, 0x03, 0xF0, 0x3B, 0x87, + 0x38, 0x71, 0x83, 0x38, 0x3F, 0x0F, 0xFE, 0xFF, 0xF0, 0x00, 0x00, 0x01, 0x80, 0x00, 0x60, 0x00, + 0x18, 0x00, 0x06, 0x00, 0x61, 0x80, 0x38, 0x60, 0x0C, 0x18, 0x03, 0x86, 0x60, 0x61, 0xB8, 0x78, + 0x6E, 0x18, 0x1B, 0x80, 0x06, 0xE0, 0x03, 0x9F, 0xFF, 0xE3, 0xFF, 0xF0, 0x3F, 0xE0, 0x00, 0x01, + 0x80, 0x00, 0x0C, 0x00, 0x00, 0x60, 0x00, 0x03, 0x00, 0x06, 0x18, 0x00, 0x70, 0xC0, 0x03, 0x06, + 0x00, 0x1C, 0x30, 0x60, 0x61, 0x87, 0x0F, 0x0C, 0x38, 0x60, 0x61, 0xC0, 0x03, 0x8E, 0x00, 0x3C, + 0x3F, 0xFF, 0xF8, 0xFF, 0xFD, 0xE1, 0xFF, 0x00, 0x01, 0x83, 0xC7, 0xCF, 0x87, 0x07, 0x01, 0xC0, + 0x70, 0x1C, 0x07, 0x01, 0x80, 0xE0, 0x77, 0xF3, 0xF0, 0x00, 0x01, 0x80, 0x78, 0x1F, 0x07, 0xC0, + 0x70, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, 0xE0, 0x06, 0x00, 0x70, 0x07, 0x8F, 0xFF, 0xFC, + 0xF0, 0x00, 0x00, 0x18, 0x00, 0x60, 0x01, 0x80, 0x06, 0x00, 0x18, 0x00, 0x60, 0x01, 0x80, 0x06, + 0x00, 0x18, 0x00, 0x60, 0x01, 0x98, 0x07, 0x60, 0x1B, 0x80, 0x6E, 0x01, 0xB8, 0x06, 0xE0, 0x39, + 0xE3, 0xC3, 0xFE, 0x07, 0xF0, 0x00, 0x18, 0x00, 0x0C, 0x00, 0x06, 0x00, 0x03, 0x00, 0x01, 0x80, + 0x00, 0xC0, 0x00, 0x60, 0x00, 0x30, 0x00, 0x18, 0x00, 0x0C, 0x00, 0x06, 0x0C, 0x03, 0x86, 0x01, + 0xC7, 0x00, 0xFB, 0x80, 0x7F, 0xC0, 0x30, 0xE0, 0x38, 0x3C, 0x78, 0x0F, 0xF8, 0x03, 0xF8, 0x00, + 0x31, 0x8C, 0x63, 0x18, 0xC6, 0x31, 0x8E, 0x73, 0x7B, 0x80, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x38, 0x38, 0x38, 0xFE, 0xEF, 0x00, 0x1F, 0x0F, 0xE7, 0x39, 0x86, 0x01, + 0xCF, 0xF7, 0xFB, 0x86, 0xE0, 0x38, 0x0E, 0x03, 0x80, 0xE0, 0x18, 0x06, 0x01, 0x80, 0x00, 0x00, + 0x07, 0x00, 0x7C, 0x0F, 0xE0, 0x73, 0x87, 0x8C, 0x7E, 0x73, 0xFF, 0xF9, 0xFF, 0xC3, 0x06, 0x00, + 0x30, 0x01, 0xC0, 0x0E, 0x00, 0x30, 0x01, 0x80, 0x0E, 0x00, 0x00, 0x00, 0x07, 0x03, 0xE1, 0xFC, + 0xE7, 0x30, 0xDE, 0x3F, 0xFF, 0xBE, 0x00, 0x00, 0x07, 0x00, 0x3E, 0x01, 0xF8, 0x0E, 0x70, 0x38, + 0xC1, 0xE3, 0x8F, 0xFF, 0xBB, 0xFE, 0x03, 0x00, 0x03, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x10, 0x00, 0xE0, 0x03, 0x98, 0x06, 0x60, 0x1B, 0x80, 0x7E, 0x01, 0xF8, 0x06, 0xE0, 0x39, 0xE3, + 0xC3, 0xFF, 0x07, 0xF0, 0x03, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0xC0, 0x00, 0xE0, 0xC0, 0x30, 0x60, 0x1C, 0x70, 0x0F, 0xB8, 0x07, 0xFC, 0x03, 0x0E, 0x03, 0x83, + 0xC3, 0xC0, 0xFF, 0xC0, 0x3F, 0x80, 0x73, 0x88, 0x01, 0x18, 0xC7, 0x38, 0xCF, 0xEF, 0x00, 0x30, + 0x1C, 0x04, 0x00, 0x01, 0x80, 0xC0, 0xE0, 0x70, 0xFF, 0x77, 0x80, 0x00, 0x18, 0x1C, 0x3E, 0x7E, + 0x67, 0xE3, 0xE3, 0xE3, 0x7F, 0x7E, 0x03, 0x00, 0x70, 0x1F, 0x03, 0xF0, 0x73, 0x0E, 0x30, 0xE3, + 0x07, 0xF0, 0x7F, 0x80, 0xFE, 0x01, 0xE0, 0x00, 0x00, 0x01, 0xC0, 0x1E, 0x03, 0xF0, 0x37, 0x87, + 0x3C, 0x73, 0xE3, 0x76, 0x3E, 0x6F, 0xFE, 0xFF, 0xE0, 0x18, 0x07, 0x01, 0xF0, 0x1F, 0x83, 0xB8, + 0x33, 0x83, 0x38, 0x77, 0x0F, 0xFF, 0xFF, 0xF7, 0x1C, 0x30, 0xC3, 0xFC, 0x1F, 0x80, 0xF0, 0x00, + 0x0F, 0x0F, 0xCE, 0xE6, 0x33, 0x1D, 0xFE, 0x7E, 0x0F, 0x03, 0x8F, 0x8F, 0x87, 0x00, 0x00, 0x03, + 0xC0, 0xFC, 0x3B, 0x86, 0x30, 0xC7, 0x1F, 0xF9, 0xFF, 0x07, 0x00, 0xE0, 0xF8, 0x3E, 0x07, 0x00, + 0x00, 0x1E, 0x00, 0x7F, 0x00, 0x72, 0x00, 0xE0, 0x00, 0xC0, 0x60, 0xE0, 0x60, 0xF8, 0xE0, 0x7E, + 0xE0, 0x0E, 0xE0, 0x0E, 0xE0, 0x1E, 0x78, 0x7C, 0x3F, 0xF8, 0x1F, 0xE0, 0x60, 0x00, 0x30, 0x1C, + 0x38, 0x0F, 0xDC, 0x03, 0xFE, 0x00, 0x67, 0x00, 0x71, 0xE0, 0xF0, 0x7F, 0xF0, 0x1F, 0xE0, 0x00, + 0x00, 0x1E, 0x00, 0x7F, 0x00, 0x72, 0x00, 0xE0, 0x00, 0xC0, 0x60, 0xE0, 0x60, 0xF8, 0xE0, 0x7E, + 0xE0, 0x0E, 0xE0, 0x0E, 0xE0, 0x1E, 0x78, 0x7C, 0x3F, 0xF8, 0x1F, 0xE0, 0x00, 0x00, 0x00, 0x00, + 0x06, 0xC0, 0x06, 0xC0, 0x60, 0x00, 0x30, 0x1C, 0x38, 0x0F, 0xDC, 0x03, 0xFE, 0x00, 0x67, 0x00, + 0x71, 0xE0, 0xF0, 0x7F, 0xF0, 0x1F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF8, 0x00, 0xFC, 0x00, + 0x08, 0x71, 0xC3, 0x0C, 0x30, 0xDF, 0x78, 0x00, 0x1B, 0x6C, 0x1C, 0x0C, 0x06, 0x07, 0x0F, 0xFF, + 0xFC, 0x00, 0x00, 0x7E, 0x3E, 0x00, 0x72, 0x07, 0xF9, 0x83, 0x8C, 0x00, 0x61, 0x83, 0x0F, 0x18, + 0x3C, 0xC0, 0xFE, 0x01, 0xF0, 0x07, 0x00, 0x3C, 0x03, 0xF0, 0x39, 0x83, 0x8C, 0x3F, 0xE1, 0xFE, + 0x38, 0x00, 0x7F, 0x30, 0x06, 0x30, 0x00, 0x30, 0x18, 0x30, 0x1C, 0x30, 0x1E, 0x30, 0x0F, 0x30, + 0x07, 0x30, 0x03, 0xB0, 0x01, 0xF0, 0x00, 0xF0, 0x00, 0x70, 0x00, 0xF8, 0x1F, 0xFF, 0x1F, 0x9F, + 0x00, 0x00, 0x70, 0x07, 0x00, 0x60, 0x07, 0x86, 0x70, 0x60, 0x06, 0x30, 0x63, 0xC6, 0x1E, 0x60, + 0xFE, 0x03, 0xE0, 0x1C, 0x01, 0xE0, 0x3F, 0x07, 0x30, 0xE3, 0x1F, 0xF1, 0xFE, 0x70, 0x03, 0x80, + 0x0C, 0x00, 0x3E, 0x30, 0xF0, 0xC0, 0x03, 0x06, 0x0C, 0x1C, 0x30, 0x78, 0xC0, 0xF3, 0x01, 0xCC, + 0x03, 0xB0, 0x07, 0xC0, 0x0F, 0x00, 0x1C, 0x00, 0xF8, 0x7F, 0xFD, 0xF9, 0xF0, 0x00, 0x00, 0x00, + 0xC0, 0x18, 0x03, 0x30, 0x67, 0x8C, 0x79, 0x87, 0xF0, 0x3E, 0x03, 0x80, 0x78, 0x1F, 0x87, 0x31, + 0xC6, 0x7F, 0xCF, 0xF0, 0x00, 0x38, 0x0F, 0x01, 0x80, 0x1E, 0x07, 0x80, 0x00, 0xC0, 0x03, 0x00, + 0x0C, 0x18, 0x30, 0x70, 0xC1, 0xE3, 0x03, 0xCC, 0x07, 0x30, 0x0E, 0xC0, 0x1F, 0x00, 0x3C, 0x00, + 0x70, 0x03, 0xE1, 0xFF, 0xF7, 0xE7, 0xC0, 0x00, 0x1C, 0x00, 0x70, 0x01, 0x80, 0x07, 0x80, 0x1C, + 0x00, 0x00, 0xC0, 0x18, 0x03, 0x30, 0x67, 0x8C, 0x79, 0x87, 0xF0, 0x3E, 0x03, 0x80, 0x78, 0x1F, + 0x87, 0x31, 0xC6, 0x7F, 0xCF, 0xF0, 0x00, 0xC0, 0x03, 0x00, 0x0C, 0x18, 0x30, 0x70, 0xC1, 0xE3, + 0x03, 0xCC, 0x07, 0x30, 0x0E, 0xC0, 0x1F, 0x00, 0x3C, 0x00, 0x70, 0x03, 0xE1, 0xFF, 0xF7, 0xE7, + 0xC0, 0x00, }; static const EpdGlyph ubuntu_10_regularGlyphs[] = { @@ -1612,404 +1915,606 @@ static const EpdGlyph ubuntu_10_regularGlyphs[] = { { 9, 4, 0, -3, 17, 5, 9435 }, // U+030B { 8, 4, 0, -4, 17, 4, 9440 }, // U+030C { 6, 3, 125, 1, 16, 3, 9444 }, // U+0311 - { 4, 4, 0, -2, -1, 2, 9447 }, // U+0326 - { 5, 7, 0, -3, 1, 5, 9449 }, // U+0327 - { 4, 7, 0, -2, 1, 4, 9454 }, // U+0328 - { 0, 0, 0, 0, 0, 0, 9458 }, // U+034F - { 11, 20, 190, 1, 20, 28, 9458 }, // U+0400 - { 11, 18, 190, 1, 18, 25, 9486 }, // U+0401 - { 15, 15, 250, 0, 15, 29, 9511 }, // U+0402 - { 10, 20, 170, 1, 20, 25, 9540 }, // U+0403 - { 12, 15, 207, 1, 15, 23, 9565 }, // U+0404 - { 11, 15, 177, 0, 15, 21, 9588 }, // U+0405 - { 3, 15, 90, 1, 15, 6, 9609 }, // U+0406 - { 8, 18, 90, -1, 18, 18, 9615 }, // U+0407 - { 9, 15, 167, 0, 15, 17, 9633 }, // U+0408 - { 22, 16, 348, 0, 15, 44, 9650 }, // U+0409 - { 20, 15, 342, 1, 15, 38, 9694 }, // U+040A - { 15, 15, 250, 0, 15, 29, 9732 }, // U+040B - { 13, 20, 210, 1, 20, 33, 9761 }, // U+040C - { 13, 20, 243, 1, 20, 33, 9794 }, // U+040D - { 13, 19, 196, 0, 19, 31, 9827 }, // U+040E - { 12, 19, 233, 1, 15, 29, 9858 }, // U+040F - { 14, 15, 221, 0, 15, 27, 9887 }, // U+0410 - { 12, 15, 206, 1, 15, 23, 9914 }, // U+0411 - { 12, 15, 214, 1, 15, 23, 9937 }, // U+0412 - { 10, 15, 170, 1, 15, 19, 9960 }, // U+0413 - { 15, 19, 241, 0, 15, 36, 9979 }, // U+0414 - { 11, 15, 190, 1, 15, 21, 10015 }, // U+0415 - { 19, 15, 302, 0, 15, 36, 10036 }, // U+0416 - { 11, 15, 191, 0, 15, 21, 10072 }, // U+0417 - { 13, 15, 243, 1, 15, 25, 10093 }, // U+0418 - { 13, 19, 243, 1, 19, 31, 10118 }, // U+0419 - { 13, 15, 210, 1, 15, 25, 10149 }, // U+041A - { 14, 15, 236, 0, 15, 27, 10174 }, // U+041B - { 16, 15, 290, 1, 15, 30, 10201 }, // U+041C - { 12, 15, 235, 1, 15, 23, 10231 }, // U+041D - { 15, 15, 259, 1, 15, 29, 10254 }, // U+041E - { 12, 15, 233, 1, 15, 23, 10283 }, // U+041F - { 12, 15, 203, 1, 15, 23, 10306 }, // U+0420 - { 12, 15, 207, 1, 15, 23, 10329 }, // U+0421 - { 12, 15, 188, 0, 15, 23, 10352 }, // U+0422 - { 13, 15, 196, 0, 15, 25, 10375 }, // U+0423 - { 16, 16, 288, 1, 16, 32, 10400 }, // U+0424 - { 13, 15, 210, 0, 15, 25, 10432 }, // U+0425 - { 14, 19, 239, 1, 15, 34, 10457 }, // U+0426 - { 11, 15, 210, 1, 15, 21, 10491 }, // U+0427 - { 18, 15, 328, 1, 15, 34, 10512 }, // U+0428 - { 20, 19, 334, 1, 15, 48, 10546 }, // U+0429 - { 15, 15, 242, 0, 15, 29, 10594 }, // U+042A - { 16, 15, 285, 1, 15, 30, 10623 }, // U+042B - { 12, 15, 205, 1, 15, 23, 10653 }, // U+042C - { 12, 15, 207, 0, 15, 23, 10676 }, // U+042D - { 20, 15, 343, 1, 15, 38, 10699 }, // U+042E - { 12, 15, 212, 0, 15, 23, 10737 }, // U+042F - { 10, 11, 174, 0, 11, 14, 10760 }, // U+0430 - { 11, 16, 198, 1, 16, 22, 10774 }, // U+0431 - { 10, 11, 183, 1, 11, 14, 10796 }, // U+0432 - { 8, 11, 139, 1, 11, 11, 10810 }, // U+0433 - { 13, 14, 201, 0, 11, 23, 10821 }, // U+0434 - { 10, 11, 186, 1, 11, 14, 10844 }, // U+0435 - { 16, 11, 254, 0, 11, 22, 10858 }, // U+0436 - { 10, 11, 163, 0, 11, 14, 10880 }, // U+0437 - { 10, 11, 199, 1, 11, 14, 10894 }, // U+0438 - { 10, 16, 199, 1, 16, 20, 10908 }, // U+0439 - { 10, 11, 179, 1, 11, 14, 10928 }, // U+043A - { 11, 11, 199, 0, 11, 16, 10942 }, // U+043B - { 13, 11, 244, 1, 11, 18, 10958 }, // U+043C - { 10, 11, 195, 1, 11, 14, 10976 }, // U+043D - { 11, 11, 197, 1, 11, 16, 10990 }, // U+043E - { 10, 11, 193, 1, 11, 14, 11006 }, // U+043F - { 11, 15, 196, 1, 11, 21, 11020 }, // U+0440 - { 9, 11, 155, 1, 11, 13, 11041 }, // U+0441 - { 10, 11, 154, 0, 11, 14, 11054 }, // U+0442 - { 11, 15, 166, 0, 11, 21, 11068 }, // U+0443 - { 15, 20, 255, 1, 16, 38, 11089 }, // U+0444 - { 11, 11, 170, 0, 11, 16, 11127 }, // U+0445 - { 11, 14, 195, 1, 11, 20, 11143 }, // U+0446 - { 10, 11, 178, 0, 11, 14, 11163 }, // U+0447 - { 15, 11, 274, 1, 11, 21, 11177 }, // U+0448 - { 17, 14, 278, 1, 11, 30, 11198 }, // U+0449 - { 12, 11, 199, 0, 11, 17, 11228 }, // U+044A - { 14, 11, 253, 1, 11, 20, 11245 }, // U+044B - { 10, 11, 176, 1, 11, 14, 11265 }, // U+044C - { 10, 11, 166, 0, 11, 14, 11279 }, // U+044D - { 15, 11, 270, 1, 11, 21, 11293 }, // U+044E - { 10, 11, 183, 0, 11, 14, 11314 }, // U+044F - { 10, 16, 186, 1, 16, 20, 11328 }, // U+0450 - { 10, 15, 186, 1, 15, 19, 11348 }, // U+0451 - { 11, 20, 190, 0, 16, 28, 11367 }, // U+0452 - { 8, 16, 139, 1, 16, 16, 11395 }, // U+0453 - { 9, 11, 166, 1, 11, 13, 11411 }, // U+0454 - { 9, 11, 149, 0, 11, 13, 11424 }, // U+0455 - { 3, 16, 84, 1, 16, 6, 11437 }, // U+0456 - { 7, 15, 84, -1, 15, 14, 11443 }, // U+0457 - { 6, 20, 84, -2, 16, 15, 11457 }, // U+0458 - { 18, 11, 288, 0, 11, 25, 11472 }, // U+0459 - { 17, 11, 284, 1, 11, 24, 11497 }, // U+045A - { 11, 16, 190, 0, 16, 22, 11521 }, // U+045B - { 10, 16, 179, 1, 16, 20, 11543 }, // U+045C - { 10, 16, 199, 1, 16, 20, 11563 }, // U+045D - { 11, 20, 166, 0, 16, 28, 11583 }, // U+045E - { 10, 14, 192, 1, 11, 18, 11611 }, // U+045F - { 15, 16, 242, 0, 16, 30, 11629 }, // U+0462 - { 12, 16, 199, 0, 16, 24, 11659 }, // U+0463 - { 15, 15, 259, 1, 15, 29, 11683 }, // U+0472 - { 11, 11, 197, 1, 11, 16, 11712 }, // U+0473 - { 17, 15, 251, 0, 15, 32, 11728 }, // U+0474 - { 12, 11, 188, 0, 11, 17, 11760 }, // U+0475 - { 15, 23, 248, 1, 19, 44, 11777 }, // U+048A - { 12, 20, 203, 1, 16, 30, 11821 }, // U+048B - { 13, 16, 210, 0, 16, 26, 11851 }, // U+048C - { 11, 11, 175, 0, 11, 16, 11877 }, // U+048D - { 12, 15, 203, 1, 15, 23, 11893 }, // U+048E - { 11, 15, 196, 1, 11, 21, 11916 }, // U+048F - { 10, 18, 170, 1, 18, 23, 11937 }, // U+0490 - { 8, 14, 143, 1, 14, 14, 11960 }, // U+0491 - { 11, 15, 174, 0, 15, 21, 11974 }, // U+0492 - { 9, 11, 142, 0, 11, 13, 11995 }, // U+0493 - { 12, 19, 208, 1, 15, 29, 12008 }, // U+0494 - { 10, 15, 181, 1, 11, 19, 12037 }, // U+0495 - { 20, 19, 307, 0, 15, 48, 12056 }, // U+0496 - { 17, 14, 258, 0, 11, 30, 12104 }, // U+0497 - { 11, 18, 191, 0, 15, 25, 12134 }, // U+0498 - { 10, 14, 163, 0, 11, 18, 12159 }, // U+0499 - { 13, 19, 219, 1, 15, 31, 12177 }, // U+049A - { 11, 15, 182, 1, 11, 21, 12208 }, // U+049B - { 14, 15, 236, 1, 15, 27, 12229 }, // U+049C - { 12, 11, 206, 1, 11, 17, 12256 }, // U+049D - { 14, 15, 214, 0, 15, 27, 12273 }, // U+049E - { 12, 11, 185, 0, 11, 17, 12300 }, // U+049F - { 16, 15, 246, 0, 15, 30, 12317 }, // U+04A0 - { 13, 11, 202, 0, 11, 18, 12347 }, // U+04A1 - { 14, 19, 241, 1, 15, 34, 12365 }, // U+04A2 - { 12, 14, 199, 1, 11, 21, 12399 }, // U+04A3 - { 16, 15, 272, 1, 15, 30, 12420 }, // U+04A4 - { 13, 11, 219, 1, 11, 18, 12450 }, // U+04A5 - { 20, 19, 344, 1, 15, 48, 12468 }, // U+04A6 - { 17, 15, 287, 1, 11, 32, 12516 }, // U+04A7 - { 15, 19, 262, 1, 15, 36, 12548 }, // U+04A8 - { 11, 14, 203, 1, 11, 20, 12584 }, // U+04A9 - { 12, 18, 207, 1, 15, 27, 12604 }, // U+04AA - { 9, 15, 155, 1, 11, 17, 12631 }, // U+04AB - { 12, 19, 188, 0, 15, 29, 12648 }, // U+04AC - { 10, 14, 154, 0, 11, 18, 12677 }, // U+04AD - { 13, 15, 199, 0, 15, 25, 12695 }, // U+04AE - { 11, 15, 167, 0, 11, 21, 12720 }, // U+04AF - { 13, 15, 199, 0, 15, 25, 12741 }, // U+04B0 - { 11, 15, 167, 0, 11, 21, 12766 }, // U+04B1 - { 14, 19, 218, 0, 15, 34, 12787 }, // U+04B2 - { 11, 14, 175, 0, 11, 20, 12821 }, // U+04B3 - { 18, 19, 282, 0, 15, 43, 12841 }, // U+04B4 - { 14, 14, 220, 0, 11, 25, 12884 }, // U+04B5 - { 13, 19, 217, 1, 15, 31, 12909 }, // U+04B6 - { 11, 14, 181, 0, 11, 20, 12940 }, // U+04B7 - { 11, 15, 213, 1, 15, 21, 12960 }, // U+04B8 - { 10, 11, 178, 0, 11, 14, 12981 }, // U+04B9 - { 12, 15, 213, 1, 15, 23, 12995 }, // U+04BA - { 10, 16, 190, 1, 16, 20, 13018 }, // U+04BB - { 17, 15, 278, 0, 15, 32, 13038 }, // U+04BC - { 13, 11, 223, 0, 11, 18, 13070 }, // U+04BD - { 17, 19, 278, 0, 15, 41, 13088 }, // U+04BE - { 13, 14, 223, 0, 11, 23, 13129 }, // U+04BF - { 3, 15, 90, 1, 15, 6, 13152 }, // U+04C0 - { 19, 19, 302, 0, 19, 46, 13158 }, // U+04C1 - { 16, 16, 254, 0, 16, 32, 13204 }, // U+04C2 - { 12, 19, 210, 1, 15, 29, 13236 }, // U+04C3 - { 10, 15, 181, 1, 11, 19, 13265 }, // U+04C4 - { 15, 19, 241, 0, 15, 36, 13284 }, // U+04C5 - { 13, 15, 203, 0, 11, 25, 13320 }, // U+04C6 - { 12, 19, 235, 1, 15, 29, 13345 }, // U+04C7 - { 10, 15, 195, 1, 11, 19, 13374 }, // U+04C8 - { 14, 19, 241, 1, 15, 34, 13393 }, // U+04C9 - { 12, 15, 199, 1, 11, 23, 13427 }, // U+04CA - { 11, 19, 213, 1, 15, 27, 13450 }, // U+04CB - { 10, 14, 178, 0, 11, 18, 13477 }, // U+04CC - { 18, 19, 300, 1, 15, 43, 13495 }, // U+04CD - { 15, 15, 250, 1, 11, 29, 13538 }, // U+04CE - { 3, 15, 90, 1, 15, 6, 13567 }, // U+04CF - { 14, 19, 221, 0, 19, 34, 13573 }, // U+04D0 - { 10, 16, 174, 0, 16, 20, 13607 }, // U+04D1 - { 14, 18, 221, 0, 18, 32, 13627 }, // U+04D2 - { 10, 15, 174, 0, 15, 19, 13659 }, // U+04D3 - { 19, 15, 312, 0, 15, 36, 13678 }, // U+04D4 - { 17, 11, 286, 0, 11, 24, 13714 }, // U+04D5 - { 11, 19, 190, 1, 19, 27, 13738 }, // U+04D6 - { 10, 16, 186, 1, 16, 20, 13765 }, // U+04D7 - { 13, 15, 235, 1, 15, 25, 13785 }, // U+04D8 - { 10, 11, 186, 1, 11, 14, 13810 }, // U+04D9 - { 13, 18, 235, 1, 18, 30, 13824 }, // U+04DA - { 10, 15, 186, 1, 15, 19, 13854 }, // U+04DB - { 19, 18, 302, 0, 18, 43, 13873 }, // U+04DC - { 16, 15, 254, 0, 15, 30, 13916 }, // U+04DD - { 11, 18, 191, 0, 18, 25, 13946 }, // U+04DE - { 10, 15, 163, 0, 15, 19, 13971 }, // U+04DF - { 11, 15, 189, 0, 15, 21, 13990 }, // U+04E0 - { 11, 15, 157, -1, 11, 21, 14011 }, // U+04E1 - { 13, 18, 243, 1, 18, 30, 14032 }, // U+04E2 - { 10, 15, 199, 1, 15, 19, 14062 }, // U+04E3 - { 13, 18, 243, 1, 18, 30, 14081 }, // U+04E4 - { 10, 15, 199, 1, 15, 19, 14111 }, // U+04E5 - { 15, 18, 259, 1, 18, 34, 14130 }, // U+04E6 - { 11, 15, 197, 1, 15, 21, 14164 }, // U+04E7 - { 15, 15, 259, 1, 15, 29, 14185 }, // U+04E8 - { 11, 11, 197, 1, 11, 16, 14214 }, // U+04E9 - { 15, 18, 259, 1, 18, 34, 14230 }, // U+04EA - { 11, 15, 197, 1, 15, 21, 14264 }, // U+04EB - { 12, 18, 207, 0, 18, 27, 14285 }, // U+04EC - { 10, 15, 166, 0, 15, 19, 14312 }, // U+04ED - { 13, 18, 196, 0, 18, 30, 14331 }, // U+04EE - { 11, 19, 166, 0, 15, 27, 14361 }, // U+04EF - { 13, 18, 196, 0, 18, 30, 14388 }, // U+04F0 - { 11, 19, 166, 0, 15, 27, 14418 }, // U+04F1 - { 13, 19, 196, 0, 19, 31, 14445 }, // U+04F2 - { 11, 20, 166, 0, 16, 28, 14476 }, // U+04F3 - { 11, 18, 210, 1, 18, 25, 14504 }, // U+04F4 - { 10, 15, 178, 0, 15, 19, 14529 }, // U+04F5 - { 10, 19, 170, 1, 15, 24, 14548 }, // U+04F6 - { 8, 14, 139, 1, 11, 14, 14572 }, // U+04F7 - { 16, 18, 285, 1, 18, 36, 14586 }, // U+04F8 - { 14, 15, 253, 1, 15, 27, 14622 }, // U+04F9 - { 13, 12, 211, 0, 12, 20, 14649 }, // U+05D0 - { 12, 12, 191, 0, 12, 18, 14669 }, // U+05D1 - { 8, 13, 125, 0, 12, 13, 14687 }, // U+05D2 - { 11, 12, 181, 0, 12, 17, 14700 }, // U+05D3 - { 11, 12, 209, 1, 12, 17, 14717 }, // U+05D4 - { 5, 12, 100, 0, 12, 8, 14734 }, // U+05D5 - { 7, 12, 110, 0, 12, 11, 14742 }, // U+05D6 - { 13, 12, 221, 0, 12, 20, 14753 }, // U+05D7 - { 12, 12, 211, 1, 12, 18, 14773 }, // U+05D8 - { 5, 8, 98, 0, 12, 5, 14791 }, // U+05D9 - { 10, 16, 182, 0, 12, 20, 14796 }, // U+05DA - { 10, 12, 172, 0, 12, 15, 14816 }, // U+05DB - { 11, 16, 174, 0, 16, 22, 14831 }, // U+05DC - { 12, 12, 228, 1, 12, 18, 14853 }, // U+05DD - { 13, 12, 220, 0, 12, 20, 14871 }, // U+05DE - { 5, 16, 110, 0, 12, 10, 14891 }, // U+05DF - { 6, 12, 126, 1, 12, 9, 14901 }, // U+05E0 - { 13, 12, 214, 0, 12, 20, 14910 }, // U+05E1 - { 12, 15, 198, 0, 13, 23, 14930 }, // U+05E2 - { 11, 16, 207, 1, 12, 22, 14953 }, // U+05E3 - { 11, 12, 200, 1, 12, 17, 14975 }, // U+05E4 - { 11, 16, 176, 0, 12, 22, 14992 }, // U+05E5 - { 11, 12, 185, 0, 12, 17, 15014 }, // U+05E6 - { 12, 16, 209, 1, 12, 24, 15031 }, // U+05E7 - { 10, 12, 174, 0, 12, 15, 15055 }, // U+05E8 - { 13, 12, 243, 1, 12, 20, 15070 }, // U+05E9 - { 13, 12, 228, 0, 12, 20, 15090 }, // U+05EA - { 14, 19, 221, 0, 15, 34, 15110 }, // U+1EA0 - { 10, 16, 174, 0, 12, 20, 15144 }, // U+1EA1 - { 14, 20, 221, 0, 20, 35, 15164 }, // U+1EA2 - { 10, 17, 174, 0, 16, 22, 15199 }, // U+1EA3 - { 14, 22, 221, 0, 22, 39, 15221 }, // U+1EA4 - { 12, 20, 174, 0, 19, 30, 15260 }, // U+1EA5 - { 14, 22, 221, 0, 22, 39, 15290 }, // U+1EA6 - { 10, 20, 174, 0, 19, 25, 15329 }, // U+1EA7 - { 14, 23, 221, 0, 23, 41, 15354 }, // U+1EA8 - { 11, 20, 174, 0, 19, 28, 15395 }, // U+1EA9 - { 14, 23, 221, 0, 23, 41, 15423 }, // U+1EAA - { 10, 20, 174, 0, 19, 25, 15464 }, // U+1EAB - { 14, 24, 221, 0, 20, 42, 15489 }, // U+1EAC - { 10, 21, 174, 0, 17, 27, 15531 }, // U+1EAD - { 14, 23, 221, 0, 23, 41, 15558 }, // U+1EAE - { 10, 21, 174, 0, 20, 27, 15599 }, // U+1EAF - { 14, 23, 221, 0, 23, 41, 15626 }, // U+1EB0 - { 10, 21, 174, 0, 20, 27, 15667 }, // U+1EB1 - { 14, 23, 221, 0, 23, 41, 15694 }, // U+1EB2 - { 10, 21, 174, 0, 20, 27, 15735 }, // U+1EB3 - { 14, 22, 221, 0, 22, 39, 15762 }, // U+1EB4 - { 10, 20, 174, 0, 19, 25, 15801 }, // U+1EB5 - { 14, 23, 221, 0, 19, 41, 15826 }, // U+1EB6 - { 10, 20, 174, 0, 16, 25, 15867 }, // U+1EB7 - { 11, 19, 190, 1, 15, 27, 15892 }, // U+1EB8 - { 10, 16, 186, 1, 12, 20, 15919 }, // U+1EB9 - { 11, 20, 190, 1, 20, 28, 15939 }, // U+1EBA - { 10, 17, 186, 1, 16, 22, 15967 }, // U+1EBB - { 11, 19, 190, 1, 19, 27, 15989 }, // U+1EBC - { 10, 17, 186, 1, 16, 22, 16016 }, // U+1EBD - { 12, 22, 190, 1, 22, 33, 16038 }, // U+1EBE - { 11, 20, 186, 1, 19, 28, 16071 }, // U+1EBF - { 11, 22, 190, 1, 22, 31, 16099 }, // U+1EC0 - { 10, 20, 186, 1, 19, 25, 16130 }, // U+1EC1 - { 11, 22, 190, 1, 22, 31, 16155 }, // U+1EC2 - { 11, 20, 186, 1, 19, 28, 16186 }, // U+1EC3 - { 11, 23, 190, 1, 23, 32, 16214 }, // U+1EC4 - { 10, 21, 186, 1, 20, 27, 16246 }, // U+1EC5 - { 11, 24, 190, 1, 20, 33, 16273 }, // U+1EC6 - { 10, 21, 186, 1, 17, 27, 16306 }, // U+1EC7 - { 5, 20, 90, 0, 20, 13, 16333 }, // U+1EC8 - { 5, 16, 84, 0, 16, 10, 16346 }, // U+1EC9 - { 4, 19, 90, 1, 15, 10, 16356 }, // U+1ECA - { 3, 20, 84, 1, 16, 8, 16366 }, // U+1ECB - { 14, 19, 259, 1, 15, 34, 16374 }, // U+1ECC - { 11, 16, 197, 1, 12, 22, 16408 }, // U+1ECD - { 14, 21, 259, 1, 20, 37, 16430 }, // U+1ECE - { 11, 17, 197, 1, 16, 24, 16467 }, // U+1ECF - { 14, 23, 259, 1, 22, 41, 16491 }, // U+1ED0 - { 11, 20, 197, 1, 19, 28, 16532 }, // U+1ED1 - { 14, 23, 259, 1, 22, 41, 16560 }, // U+1ED2 - { 11, 20, 197, 1, 19, 28, 16601 }, // U+1ED3 - { 14, 23, 259, 1, 22, 41, 16629 }, // U+1ED4 - { 11, 20, 197, 1, 19, 28, 16670 }, // U+1ED5 - { 14, 23, 259, 1, 22, 41, 16698 }, // U+1ED6 - { 11, 20, 197, 1, 19, 28, 16739 }, // U+1ED7 - { 14, 24, 259, 1, 20, 42, 16767 }, // U+1ED8 - { 11, 21, 197, 1, 17, 29, 16809 }, // U+1ED9 - { 15, 21, 259, 1, 20, 40, 16838 }, // U+1EDA - { 12, 18, 197, 1, 17, 27, 16878 }, // U+1EDB - { 15, 21, 259, 1, 20, 40, 16905 }, // U+1EDC - { 12, 18, 197, 1, 17, 27, 16945 }, // U+1EDD - { 15, 21, 259, 1, 20, 40, 16972 }, // U+1EDE - { 12, 17, 197, 1, 16, 26, 17012 }, // U+1EDF - { 15, 20, 259, 1, 19, 38, 17038 }, // U+1EE0 - { 12, 17, 197, 1, 16, 26, 17076 }, // U+1EE1 - { 15, 21, 259, 1, 17, 40, 17102 }, // U+1EE2 - { 12, 18, 197, 1, 14, 27, 17142 }, // U+1EE3 - { 12, 19, 229, 1, 15, 29, 17169 }, // U+1EE4 - { 10, 15, 191, 1, 11, 19, 17198 }, // U+1EE5 - { 12, 21, 229, 1, 20, 32, 17217 }, // U+1EE6 - { 10, 17, 191, 1, 16, 22, 17249 }, // U+1EE7 - { 15, 21, 237, 1, 20, 40, 17271 }, // U+1EE8 - { 12, 18, 199, 1, 17, 27, 17311 }, // U+1EE9 - { 15, 21, 237, 1, 20, 40, 17338 }, // U+1EEA - { 12, 18, 199, 1, 17, 27, 17378 }, // U+1EEB - { 15, 21, 237, 1, 20, 40, 17405 }, // U+1EEC - { 12, 17, 199, 1, 16, 26, 17445 }, // U+1EED - { 15, 20, 237, 1, 19, 38, 17471 }, // U+1EEE - { 12, 17, 199, 1, 16, 26, 17509 }, // U+1EEF - { 15, 21, 237, 1, 17, 40, 17535 }, // U+1EF0 - { 12, 18, 199, 1, 14, 27, 17575 }, // U+1EF1 - { 13, 20, 199, 0, 20, 33, 17602 }, // U+1EF2 - { 11, 21, 166, 0, 17, 29, 17635 }, // U+1EF3 - { 13, 19, 199, 0, 15, 31, 17664 }, // U+1EF4 - { 10, 15, 166, 0, 11, 19, 17695 }, // U+1EF5 - { 13, 20, 199, 0, 20, 33, 17714 }, // U+1EF6 - { 10, 20, 166, 0, 16, 25, 17747 }, // U+1EF7 - { 13, 19, 199, 0, 19, 31, 17772 }, // U+1EF8 - { 10, 20, 166, 0, 16, 25, 17803 }, // U+1EF9 - { 2, 16, 0, -1, 15, 4, 17828 }, // U+200C - { 6, 16, 0, -3, 15, 12, 17832 }, // U+200D - { 6, 18, 0, -1, 16, 14, 17844 }, // U+200E - { 6, 18, 0, -5, 16, 14, 17858 }, // U+200F - { 6, 3, 107, 0, 8, 3, 17872 }, // U+2010 - { 12, 2, 165, -1, 7, 3, 17875 }, // U+2013 - { 22, 2, 332, -1, 7, 6, 17878 }, // U+2014 - { 22, 2, 332, -1, 7, 6, 17884 }, // U+2015 - { 4, 5, 78, 1, 16, 3, 17890 }, // U+2018 - { 4, 5, 78, 0, 16, 3, 17893 }, // U+2019 - { 4, 5, 78, 0, 2, 3, 17896 }, // U+201A - { 8, 5, 139, 1, 16, 5, 17899 }, // U+201C - { 8, 5, 139, 0, 16, 5, 17904 }, // U+201D - { 8, 5, 139, 0, 2, 5, 17909 }, // U+201E - { 10, 18, 159, 0, 15, 23, 17914 }, // U+2020 - { 10, 18, 159, 0, 15, 23, 17937 }, // U+2021 - { 6, 5, 120, 1, 10, 4, 17960 }, // U+2022 - { 17, 3, 332, 2, 3, 7, 17964 }, // U+2026 - { 24, 15, 409, 1, 15, 45, 17971 }, // U+2030 - { 6, 9, 97, 0, 10, 7, 18016 }, // U+2039 - { 6, 9, 97, 0, 10, 7, 18023 }, // U+203A - { 11, 15, 49, -4, 15, 21, 18030 }, // U+2044 - { 7, 8, 120, 0, 15, 7, 18051 }, // U+2070 - { 8, 8, 120, 0, 15, 8, 18058 }, // U+2074 - { 7, 8, 120, 0, 15, 7, 18066 }, // U+2075 - { 7, 8, 120, 0, 15, 7, 18073 }, // U+2076 - { 7, 8, 120, 0, 15, 7, 18080 }, // U+2077 - { 7, 8, 120, 0, 15, 7, 18087 }, // U+2078 - { 7, 8, 120, 0, 15, 7, 18094 }, // U+2079 - { 7, 8, 120, 0, 8, 7, 18101 }, // U+2080 - { 4, 8, 120, 1, 8, 4, 18108 }, // U+2081 - { 7, 8, 120, 0, 8, 7, 18112 }, // U+2082 - { 7, 8, 120, 0, 8, 7, 18119 }, // U+2083 - { 8, 8, 120, 0, 8, 8, 18126 }, // U+2084 - { 7, 8, 120, 0, 8, 7, 18134 }, // U+2085 - { 7, 8, 120, 0, 8, 7, 18141 }, // U+2086 - { 7, 8, 120, 0, 8, 7, 18148 }, // U+2087 - { 7, 8, 120, 0, 8, 7, 18155 }, // U+2088 - { 7, 8, 120, 0, 8, 7, 18162 }, // U+2089 - { 14, 13, 264, 1, 13, 23, 18169 }, // U+20AA - { 12, 14, 188, 0, 14, 21, 18192 }, // U+20AC - { 12, 15, 188, 0, 15, 23, 18213 }, // U+20AE - { 12, 15, 188, 0, 15, 23, 18236 }, // U+20B4 - { 11, 15, 188, 1, 15, 21, 18259 }, // U+20B9 - { 12, 16, 195, 0, 16, 24, 18280 }, // U+2202 - { 14, 15, 217, 0, 15, 27, 18304 }, // U+2206 - { 12, 17, 232, 1, 15, 26, 18331 }, // U+220F - { 11, 17, 172, 0, 15, 24, 18357 }, // U+2211 - { 10, 2, 188, 1, 7, 3, 18381 }, // U+2212 - { 11, 15, 49, -4, 15, 21, 18384 }, // U+2215 - { 3, 3, 82, 1, 8, 2, 18405 }, // U+2219 - { 13, 17, 188, 0, 16, 28, 18407 }, // U+221A - { 12, 6, 196, 0, 9, 9, 18435 }, // U+221E - { 8, 20, 123, 0, 16, 20, 18444 }, // U+222B - { 11, 8, 188, 0, 10, 11, 18464 }, // U+2248 - { 10, 13, 188, 1, 13, 17, 18475 }, // U+2260 - { 10, 12, 188, 1, 12, 15, 18492 }, // U+2264 - { 10, 12, 188, 1, 12, 15, 18507 }, // U+2265 - { 16, 16, 259, 1, 16, 32, 18522 }, // U+FB00 - { 12, 16, 214, 1, 16, 24, 18554 }, // U+FB01 - { 13, 16, 221, 1, 16, 26, 18578 }, // U+FB02 - { 20, 16, 344, 1, 16, 40, 18604 }, // U+FB03 - { 21, 16, 351, 1, 16, 42, 18644 }, // U+FB04 + { 4, 6, 0, -2, 15, 3, 9447 }, // U+0312 + { 4, 4, 0, -2, -1, 2, 9450 }, // U+0326 + { 5, 7, 0, -3, 1, 5, 9452 }, // U+0327 + { 4, 7, 0, -2, 1, 4, 9457 }, // U+0328 + { 0, 0, 0, 0, 0, 0, 9461 }, // U+034F + { 11, 20, 190, 1, 20, 28, 9461 }, // U+0400 + { 11, 18, 190, 1, 18, 25, 9489 }, // U+0401 + { 15, 15, 250, 0, 15, 29, 9514 }, // U+0402 + { 10, 20, 170, 1, 20, 25, 9543 }, // U+0403 + { 12, 15, 207, 1, 15, 23, 9568 }, // U+0404 + { 11, 15, 177, 0, 15, 21, 9591 }, // U+0405 + { 3, 15, 90, 1, 15, 6, 9612 }, // U+0406 + { 8, 18, 90, -1, 18, 18, 9618 }, // U+0407 + { 9, 15, 167, 0, 15, 17, 9636 }, // U+0408 + { 22, 16, 348, 0, 15, 44, 9653 }, // U+0409 + { 20, 15, 342, 1, 15, 38, 9697 }, // U+040A + { 15, 15, 250, 0, 15, 29, 9735 }, // U+040B + { 13, 20, 210, 1, 20, 33, 9764 }, // U+040C + { 13, 20, 243, 1, 20, 33, 9797 }, // U+040D + { 13, 19, 196, 0, 19, 31, 9830 }, // U+040E + { 12, 19, 233, 1, 15, 29, 9861 }, // U+040F + { 14, 15, 221, 0, 15, 27, 9890 }, // U+0410 + { 12, 15, 206, 1, 15, 23, 9917 }, // U+0411 + { 12, 15, 214, 1, 15, 23, 9940 }, // U+0412 + { 10, 15, 170, 1, 15, 19, 9963 }, // U+0413 + { 15, 19, 241, 0, 15, 36, 9982 }, // U+0414 + { 11, 15, 190, 1, 15, 21, 10018 }, // U+0415 + { 19, 15, 302, 0, 15, 36, 10039 }, // U+0416 + { 11, 15, 191, 0, 15, 21, 10075 }, // U+0417 + { 13, 15, 243, 1, 15, 25, 10096 }, // U+0418 + { 13, 19, 243, 1, 19, 31, 10121 }, // U+0419 + { 13, 15, 210, 1, 15, 25, 10152 }, // U+041A + { 14, 15, 236, 0, 15, 27, 10177 }, // U+041B + { 16, 15, 290, 1, 15, 30, 10204 }, // U+041C + { 12, 15, 235, 1, 15, 23, 10234 }, // U+041D + { 15, 15, 259, 1, 15, 29, 10257 }, // U+041E + { 12, 15, 233, 1, 15, 23, 10286 }, // U+041F + { 12, 15, 203, 1, 15, 23, 10309 }, // U+0420 + { 12, 15, 207, 1, 15, 23, 10332 }, // U+0421 + { 12, 15, 188, 0, 15, 23, 10355 }, // U+0422 + { 13, 15, 196, 0, 15, 25, 10378 }, // U+0423 + { 16, 16, 288, 1, 16, 32, 10403 }, // U+0424 + { 13, 15, 210, 0, 15, 25, 10435 }, // U+0425 + { 14, 19, 239, 1, 15, 34, 10460 }, // U+0426 + { 11, 15, 210, 1, 15, 21, 10494 }, // U+0427 + { 18, 15, 328, 1, 15, 34, 10515 }, // U+0428 + { 20, 19, 334, 1, 15, 48, 10549 }, // U+0429 + { 15, 15, 242, 0, 15, 29, 10597 }, // U+042A + { 16, 15, 285, 1, 15, 30, 10626 }, // U+042B + { 12, 15, 205, 1, 15, 23, 10656 }, // U+042C + { 12, 15, 207, 0, 15, 23, 10679 }, // U+042D + { 20, 15, 343, 1, 15, 38, 10702 }, // U+042E + { 12, 15, 212, 0, 15, 23, 10740 }, // U+042F + { 10, 11, 174, 0, 11, 14, 10763 }, // U+0430 + { 11, 16, 198, 1, 16, 22, 10777 }, // U+0431 + { 10, 11, 183, 1, 11, 14, 10799 }, // U+0432 + { 8, 11, 139, 1, 11, 11, 10813 }, // U+0433 + { 13, 14, 201, 0, 11, 23, 10824 }, // U+0434 + { 10, 11, 186, 1, 11, 14, 10847 }, // U+0435 + { 16, 11, 254, 0, 11, 22, 10861 }, // U+0436 + { 10, 11, 163, 0, 11, 14, 10883 }, // U+0437 + { 10, 11, 199, 1, 11, 14, 10897 }, // U+0438 + { 10, 16, 199, 1, 16, 20, 10911 }, // U+0439 + { 10, 11, 179, 1, 11, 14, 10931 }, // U+043A + { 11, 11, 199, 0, 11, 16, 10945 }, // U+043B + { 13, 11, 244, 1, 11, 18, 10961 }, // U+043C + { 10, 11, 195, 1, 11, 14, 10979 }, // U+043D + { 11, 11, 197, 1, 11, 16, 10993 }, // U+043E + { 10, 11, 193, 1, 11, 14, 11009 }, // U+043F + { 11, 15, 196, 1, 11, 21, 11023 }, // U+0440 + { 9, 11, 155, 1, 11, 13, 11044 }, // U+0441 + { 10, 11, 154, 0, 11, 14, 11057 }, // U+0442 + { 11, 15, 166, 0, 11, 21, 11071 }, // U+0443 + { 15, 20, 255, 1, 16, 38, 11092 }, // U+0444 + { 11, 11, 170, 0, 11, 16, 11130 }, // U+0445 + { 11, 14, 195, 1, 11, 20, 11146 }, // U+0446 + { 10, 11, 178, 0, 11, 14, 11166 }, // U+0447 + { 15, 11, 274, 1, 11, 21, 11180 }, // U+0448 + { 17, 14, 278, 1, 11, 30, 11201 }, // U+0449 + { 12, 11, 199, 0, 11, 17, 11231 }, // U+044A + { 14, 11, 253, 1, 11, 20, 11248 }, // U+044B + { 10, 11, 176, 1, 11, 14, 11268 }, // U+044C + { 10, 11, 166, 0, 11, 14, 11282 }, // U+044D + { 15, 11, 270, 1, 11, 21, 11296 }, // U+044E + { 10, 11, 183, 0, 11, 14, 11317 }, // U+044F + { 10, 16, 186, 1, 16, 20, 11331 }, // U+0450 + { 10, 15, 186, 1, 15, 19, 11351 }, // U+0451 + { 11, 20, 190, 0, 16, 28, 11370 }, // U+0452 + { 8, 16, 139, 1, 16, 16, 11398 }, // U+0453 + { 9, 11, 166, 1, 11, 13, 11414 }, // U+0454 + { 9, 11, 149, 0, 11, 13, 11427 }, // U+0455 + { 3, 16, 84, 1, 16, 6, 11440 }, // U+0456 + { 7, 15, 84, -1, 15, 14, 11446 }, // U+0457 + { 6, 20, 84, -2, 16, 15, 11460 }, // U+0458 + { 18, 11, 288, 0, 11, 25, 11475 }, // U+0459 + { 17, 11, 284, 1, 11, 24, 11500 }, // U+045A + { 11, 16, 190, 0, 16, 22, 11524 }, // U+045B + { 10, 16, 179, 1, 16, 20, 11546 }, // U+045C + { 10, 16, 199, 1, 16, 20, 11566 }, // U+045D + { 11, 20, 166, 0, 16, 28, 11586 }, // U+045E + { 10, 14, 192, 1, 11, 18, 11614 }, // U+045F + { 15, 16, 242, 0, 16, 30, 11632 }, // U+0462 + { 12, 16, 199, 0, 16, 24, 11662 }, // U+0463 + { 15, 15, 259, 1, 15, 29, 11686 }, // U+0472 + { 11, 11, 197, 1, 11, 16, 11715 }, // U+0473 + { 17, 15, 251, 0, 15, 32, 11731 }, // U+0474 + { 12, 11, 188, 0, 11, 17, 11763 }, // U+0475 + { 15, 23, 248, 1, 19, 44, 11780 }, // U+048A + { 12, 20, 203, 1, 16, 30, 11824 }, // U+048B + { 13, 16, 210, 0, 16, 26, 11854 }, // U+048C + { 11, 11, 175, 0, 11, 16, 11880 }, // U+048D + { 12, 15, 203, 1, 15, 23, 11896 }, // U+048E + { 11, 15, 196, 1, 11, 21, 11919 }, // U+048F + { 10, 18, 170, 1, 18, 23, 11940 }, // U+0490 + { 8, 14, 143, 1, 14, 14, 11963 }, // U+0491 + { 11, 15, 174, 0, 15, 21, 11977 }, // U+0492 + { 9, 11, 142, 0, 11, 13, 11998 }, // U+0493 + { 12, 19, 208, 1, 15, 29, 12011 }, // U+0494 + { 10, 15, 181, 1, 11, 19, 12040 }, // U+0495 + { 20, 19, 307, 0, 15, 48, 12059 }, // U+0496 + { 17, 14, 258, 0, 11, 30, 12107 }, // U+0497 + { 11, 18, 191, 0, 15, 25, 12137 }, // U+0498 + { 10, 14, 163, 0, 11, 18, 12162 }, // U+0499 + { 13, 19, 219, 1, 15, 31, 12180 }, // U+049A + { 11, 15, 182, 1, 11, 21, 12211 }, // U+049B + { 14, 15, 236, 1, 15, 27, 12232 }, // U+049C + { 12, 11, 206, 1, 11, 17, 12259 }, // U+049D + { 14, 15, 214, 0, 15, 27, 12276 }, // U+049E + { 12, 11, 185, 0, 11, 17, 12303 }, // U+049F + { 16, 15, 246, 0, 15, 30, 12320 }, // U+04A0 + { 13, 11, 202, 0, 11, 18, 12350 }, // U+04A1 + { 14, 19, 241, 1, 15, 34, 12368 }, // U+04A2 + { 12, 14, 199, 1, 11, 21, 12402 }, // U+04A3 + { 16, 15, 272, 1, 15, 30, 12423 }, // U+04A4 + { 13, 11, 219, 1, 11, 18, 12453 }, // U+04A5 + { 20, 19, 344, 1, 15, 48, 12471 }, // U+04A6 + { 17, 15, 287, 1, 11, 32, 12519 }, // U+04A7 + { 15, 19, 262, 1, 15, 36, 12551 }, // U+04A8 + { 11, 14, 203, 1, 11, 20, 12587 }, // U+04A9 + { 12, 18, 207, 1, 15, 27, 12607 }, // U+04AA + { 9, 15, 155, 1, 11, 17, 12634 }, // U+04AB + { 12, 19, 188, 0, 15, 29, 12651 }, // U+04AC + { 10, 14, 154, 0, 11, 18, 12680 }, // U+04AD + { 13, 15, 199, 0, 15, 25, 12698 }, // U+04AE + { 11, 15, 167, 0, 11, 21, 12723 }, // U+04AF + { 13, 15, 199, 0, 15, 25, 12744 }, // U+04B0 + { 11, 15, 167, 0, 11, 21, 12769 }, // U+04B1 + { 14, 19, 218, 0, 15, 34, 12790 }, // U+04B2 + { 11, 14, 175, 0, 11, 20, 12824 }, // U+04B3 + { 18, 19, 282, 0, 15, 43, 12844 }, // U+04B4 + { 14, 14, 220, 0, 11, 25, 12887 }, // U+04B5 + { 13, 19, 217, 1, 15, 31, 12912 }, // U+04B6 + { 11, 14, 181, 0, 11, 20, 12943 }, // U+04B7 + { 11, 15, 213, 1, 15, 21, 12963 }, // U+04B8 + { 10, 11, 178, 0, 11, 14, 12984 }, // U+04B9 + { 12, 15, 213, 1, 15, 23, 12998 }, // U+04BA + { 10, 16, 190, 1, 16, 20, 13021 }, // U+04BB + { 17, 15, 278, 0, 15, 32, 13041 }, // U+04BC + { 13, 11, 223, 0, 11, 18, 13073 }, // U+04BD + { 17, 19, 278, 0, 15, 41, 13091 }, // U+04BE + { 13, 14, 223, 0, 11, 23, 13132 }, // U+04BF + { 3, 15, 90, 1, 15, 6, 13155 }, // U+04C0 + { 19, 19, 302, 0, 19, 46, 13161 }, // U+04C1 + { 16, 16, 254, 0, 16, 32, 13207 }, // U+04C2 + { 12, 19, 210, 1, 15, 29, 13239 }, // U+04C3 + { 10, 15, 181, 1, 11, 19, 13268 }, // U+04C4 + { 15, 19, 241, 0, 15, 36, 13287 }, // U+04C5 + { 13, 15, 203, 0, 11, 25, 13323 }, // U+04C6 + { 12, 19, 235, 1, 15, 29, 13348 }, // U+04C7 + { 10, 15, 195, 1, 11, 19, 13377 }, // U+04C8 + { 14, 19, 241, 1, 15, 34, 13396 }, // U+04C9 + { 12, 15, 199, 1, 11, 23, 13430 }, // U+04CA + { 11, 19, 213, 1, 15, 27, 13453 }, // U+04CB + { 10, 14, 178, 0, 11, 18, 13480 }, // U+04CC + { 18, 19, 300, 1, 15, 43, 13498 }, // U+04CD + { 15, 15, 250, 1, 11, 29, 13541 }, // U+04CE + { 3, 15, 90, 1, 15, 6, 13570 }, // U+04CF + { 14, 19, 221, 0, 19, 34, 13576 }, // U+04D0 + { 10, 16, 174, 0, 16, 20, 13610 }, // U+04D1 + { 14, 18, 221, 0, 18, 32, 13630 }, // U+04D2 + { 10, 15, 174, 0, 15, 19, 13662 }, // U+04D3 + { 19, 15, 312, 0, 15, 36, 13681 }, // U+04D4 + { 17, 11, 286, 0, 11, 24, 13717 }, // U+04D5 + { 11, 19, 190, 1, 19, 27, 13741 }, // U+04D6 + { 10, 16, 186, 1, 16, 20, 13768 }, // U+04D7 + { 13, 15, 235, 1, 15, 25, 13788 }, // U+04D8 + { 10, 11, 186, 1, 11, 14, 13813 }, // U+04D9 + { 13, 18, 235, 1, 18, 30, 13827 }, // U+04DA + { 10, 15, 186, 1, 15, 19, 13857 }, // U+04DB + { 19, 18, 302, 0, 18, 43, 13876 }, // U+04DC + { 16, 15, 254, 0, 15, 30, 13919 }, // U+04DD + { 11, 18, 191, 0, 18, 25, 13949 }, // U+04DE + { 10, 15, 163, 0, 15, 19, 13974 }, // U+04DF + { 11, 15, 189, 0, 15, 21, 13993 }, // U+04E0 + { 11, 15, 157, -1, 11, 21, 14014 }, // U+04E1 + { 13, 18, 243, 1, 18, 30, 14035 }, // U+04E2 + { 10, 15, 199, 1, 15, 19, 14065 }, // U+04E3 + { 13, 18, 243, 1, 18, 30, 14084 }, // U+04E4 + { 10, 15, 199, 1, 15, 19, 14114 }, // U+04E5 + { 15, 18, 259, 1, 18, 34, 14133 }, // U+04E6 + { 11, 15, 197, 1, 15, 21, 14167 }, // U+04E7 + { 15, 15, 259, 1, 15, 29, 14188 }, // U+04E8 + { 11, 11, 197, 1, 11, 16, 14217 }, // U+04E9 + { 15, 18, 259, 1, 18, 34, 14233 }, // U+04EA + { 11, 15, 197, 1, 15, 21, 14267 }, // U+04EB + { 12, 18, 207, 0, 18, 27, 14288 }, // U+04EC + { 10, 15, 166, 0, 15, 19, 14315 }, // U+04ED + { 13, 18, 196, 0, 18, 30, 14334 }, // U+04EE + { 11, 19, 166, 0, 15, 27, 14364 }, // U+04EF + { 13, 18, 196, 0, 18, 30, 14391 }, // U+04F0 + { 11, 19, 166, 0, 15, 27, 14421 }, // U+04F1 + { 13, 19, 196, 0, 19, 31, 14448 }, // U+04F2 + { 11, 20, 166, 0, 16, 28, 14479 }, // U+04F3 + { 11, 18, 210, 1, 18, 25, 14507 }, // U+04F4 + { 10, 15, 178, 0, 15, 19, 14532 }, // U+04F5 + { 10, 19, 170, 1, 15, 24, 14551 }, // U+04F6 + { 8, 14, 139, 1, 11, 14, 14575 }, // U+04F7 + { 16, 18, 285, 1, 18, 36, 14589 }, // U+04F8 + { 14, 15, 253, 1, 15, 27, 14625 }, // U+04F9 + { 13, 12, 211, 0, 12, 20, 14652 }, // U+05D0 + { 12, 12, 191, 0, 12, 18, 14672 }, // U+05D1 + { 8, 13, 125, 0, 12, 13, 14690 }, // U+05D2 + { 11, 12, 181, 0, 12, 17, 14703 }, // U+05D3 + { 11, 12, 209, 1, 12, 17, 14720 }, // U+05D4 + { 5, 12, 100, 0, 12, 8, 14737 }, // U+05D5 + { 7, 12, 110, 0, 12, 11, 14745 }, // U+05D6 + { 13, 12, 221, 0, 12, 20, 14756 }, // U+05D7 + { 12, 12, 211, 1, 12, 18, 14776 }, // U+05D8 + { 5, 8, 98, 0, 12, 5, 14794 }, // U+05D9 + { 10, 16, 182, 0, 12, 20, 14799 }, // U+05DA + { 10, 12, 172, 0, 12, 15, 14819 }, // U+05DB + { 11, 16, 174, 0, 16, 22, 14834 }, // U+05DC + { 12, 12, 228, 1, 12, 18, 14856 }, // U+05DD + { 13, 12, 220, 0, 12, 20, 14874 }, // U+05DE + { 5, 16, 110, 0, 12, 10, 14894 }, // U+05DF + { 6, 12, 126, 1, 12, 9, 14904 }, // U+05E0 + { 13, 12, 214, 0, 12, 20, 14913 }, // U+05E1 + { 12, 15, 198, 0, 13, 23, 14933 }, // U+05E2 + { 11, 16, 207, 1, 12, 22, 14956 }, // U+05E3 + { 11, 12, 200, 1, 12, 17, 14978 }, // U+05E4 + { 11, 16, 176, 0, 12, 22, 14995 }, // U+05E5 + { 11, 12, 185, 0, 12, 17, 15017 }, // U+05E6 + { 12, 16, 209, 1, 12, 24, 15034 }, // U+05E7 + { 10, 12, 174, 0, 12, 15, 15058 }, // U+05E8 + { 13, 12, 243, 1, 12, 20, 15073 }, // U+05E9 + { 13, 12, 228, 0, 12, 20, 15093 }, // U+05EA + { 4, 6, 109, 1, 5, 3, 15113 }, // U+060C + { 4, 12, 115, 1, 11, 6, 15116 }, // U+061B + { 9, 17, 145, 0, 16, 20, 15122 }, // U+061F + { 8, 10, 137, 0, 8, 10, 15142 }, // U+0621 + { 7, 3, 90, 0, 2, 3, 15152 }, // U+0640 + { 4, 4, 191, 4, 8, 2, 15155 }, // U+0660 + { 4, 16, 191, 4, 15, 8, 15157 }, // U+0661 + { 10, 16, 191, 1, 15, 20, 15165 }, // U+0662 + { 12, 16, 191, 0, 15, 24, 15185 }, // U+0663 + { 10, 16, 191, 1, 15, 20, 15209 }, // U+0664 + { 10, 12, 191, 1, 11, 15, 15229 }, // U+0665 + { 10, 16, 191, 1, 15, 20, 15244 }, // U+0666 + { 12, 16, 191, 0, 15, 24, 15264 }, // U+0667 + { 12, 16, 191, 0, 15, 24, 15288 }, // U+0668 + { 10, 16, 191, 1, 15, 20, 15312 }, // U+0669 + { 14, 12, 228, 0, 7, 21, 15332 }, // U+06BA + { 6, 2, 100, 0, 2, 2, 15353 }, // U+06D4 + { 4, 4, 191, 4, 8, 2, 15355 }, // U+06F0 + { 4, 16, 191, 4, 15, 8, 15357 }, // U+06F1 + { 10, 16, 191, 1, 15, 20, 15365 }, // U+06F2 + { 12, 16, 191, 0, 15, 24, 15385 }, // U+06F3 + { 10, 15, 191, 1, 15, 19, 15409 }, // U+06F4 + { 10, 15, 191, 1, 15, 19, 15428 }, // U+06F5 + { 8, 16, 191, 2, 15, 16, 15447 }, // U+06F6 + { 12, 16, 191, 0, 15, 24, 15463 }, // U+06F7 + { 12, 16, 191, 0, 15, 24, 15487 }, // U+06F8 + { 10, 16, 191, 1, 15, 20, 15511 }, // U+06F9 + { 14, 19, 221, 0, 15, 34, 15531 }, // U+1EA0 + { 10, 16, 174, 0, 12, 20, 15565 }, // U+1EA1 + { 14, 20, 221, 0, 20, 35, 15585 }, // U+1EA2 + { 10, 17, 174, 0, 16, 22, 15620 }, // U+1EA3 + { 14, 22, 221, 0, 22, 39, 15642 }, // U+1EA4 + { 12, 20, 174, 0, 19, 30, 15681 }, // U+1EA5 + { 14, 22, 221, 0, 22, 39, 15711 }, // U+1EA6 + { 10, 20, 174, 0, 19, 25, 15750 }, // U+1EA7 + { 14, 23, 221, 0, 23, 41, 15775 }, // U+1EA8 + { 11, 20, 174, 0, 19, 28, 15816 }, // U+1EA9 + { 14, 23, 221, 0, 23, 41, 15844 }, // U+1EAA + { 10, 20, 174, 0, 19, 25, 15885 }, // U+1EAB + { 14, 24, 221, 0, 20, 42, 15910 }, // U+1EAC + { 10, 21, 174, 0, 17, 27, 15952 }, // U+1EAD + { 14, 23, 221, 0, 23, 41, 15979 }, // U+1EAE + { 10, 21, 174, 0, 20, 27, 16020 }, // U+1EAF + { 14, 23, 221, 0, 23, 41, 16047 }, // U+1EB0 + { 10, 21, 174, 0, 20, 27, 16088 }, // U+1EB1 + { 14, 23, 221, 0, 23, 41, 16115 }, // U+1EB2 + { 10, 21, 174, 0, 20, 27, 16156 }, // U+1EB3 + { 14, 22, 221, 0, 22, 39, 16183 }, // U+1EB4 + { 10, 20, 174, 0, 19, 25, 16222 }, // U+1EB5 + { 14, 23, 221, 0, 19, 41, 16247 }, // U+1EB6 + { 10, 20, 174, 0, 16, 25, 16288 }, // U+1EB7 + { 11, 19, 190, 1, 15, 27, 16313 }, // U+1EB8 + { 10, 16, 186, 1, 12, 20, 16340 }, // U+1EB9 + { 11, 20, 190, 1, 20, 28, 16360 }, // U+1EBA + { 10, 17, 186, 1, 16, 22, 16388 }, // U+1EBB + { 11, 19, 190, 1, 19, 27, 16410 }, // U+1EBC + { 10, 17, 186, 1, 16, 22, 16437 }, // U+1EBD + { 12, 22, 190, 1, 22, 33, 16459 }, // U+1EBE + { 11, 20, 186, 1, 19, 28, 16492 }, // U+1EBF + { 11, 22, 190, 1, 22, 31, 16520 }, // U+1EC0 + { 10, 20, 186, 1, 19, 25, 16551 }, // U+1EC1 + { 11, 22, 190, 1, 22, 31, 16576 }, // U+1EC2 + { 11, 20, 186, 1, 19, 28, 16607 }, // U+1EC3 + { 11, 23, 190, 1, 23, 32, 16635 }, // U+1EC4 + { 10, 21, 186, 1, 20, 27, 16667 }, // U+1EC5 + { 11, 24, 190, 1, 20, 33, 16694 }, // U+1EC6 + { 10, 21, 186, 1, 17, 27, 16727 }, // U+1EC7 + { 5, 20, 90, 0, 20, 13, 16754 }, // U+1EC8 + { 5, 16, 84, 0, 16, 10, 16767 }, // U+1EC9 + { 4, 19, 90, 1, 15, 10, 16777 }, // U+1ECA + { 3, 20, 84, 1, 16, 8, 16787 }, // U+1ECB + { 14, 19, 259, 1, 15, 34, 16795 }, // U+1ECC + { 11, 16, 197, 1, 12, 22, 16829 }, // U+1ECD + { 14, 21, 259, 1, 20, 37, 16851 }, // U+1ECE + { 11, 17, 197, 1, 16, 24, 16888 }, // U+1ECF + { 14, 23, 259, 1, 22, 41, 16912 }, // U+1ED0 + { 11, 20, 197, 1, 19, 28, 16953 }, // U+1ED1 + { 14, 23, 259, 1, 22, 41, 16981 }, // U+1ED2 + { 11, 20, 197, 1, 19, 28, 17022 }, // U+1ED3 + { 14, 23, 259, 1, 22, 41, 17050 }, // U+1ED4 + { 11, 20, 197, 1, 19, 28, 17091 }, // U+1ED5 + { 14, 23, 259, 1, 22, 41, 17119 }, // U+1ED6 + { 11, 20, 197, 1, 19, 28, 17160 }, // U+1ED7 + { 14, 24, 259, 1, 20, 42, 17188 }, // U+1ED8 + { 11, 21, 197, 1, 17, 29, 17230 }, // U+1ED9 + { 15, 21, 259, 1, 20, 40, 17259 }, // U+1EDA + { 12, 18, 197, 1, 17, 27, 17299 }, // U+1EDB + { 15, 21, 259, 1, 20, 40, 17326 }, // U+1EDC + { 12, 18, 197, 1, 17, 27, 17366 }, // U+1EDD + { 15, 21, 259, 1, 20, 40, 17393 }, // U+1EDE + { 12, 17, 197, 1, 16, 26, 17433 }, // U+1EDF + { 15, 20, 259, 1, 19, 38, 17459 }, // U+1EE0 + { 12, 17, 197, 1, 16, 26, 17497 }, // U+1EE1 + { 15, 21, 259, 1, 17, 40, 17523 }, // U+1EE2 + { 12, 18, 197, 1, 14, 27, 17563 }, // U+1EE3 + { 12, 19, 229, 1, 15, 29, 17590 }, // U+1EE4 + { 10, 15, 191, 1, 11, 19, 17619 }, // U+1EE5 + { 12, 21, 229, 1, 20, 32, 17638 }, // U+1EE6 + { 10, 17, 191, 1, 16, 22, 17670 }, // U+1EE7 + { 15, 21, 237, 1, 20, 40, 17692 }, // U+1EE8 + { 12, 18, 199, 1, 17, 27, 17732 }, // U+1EE9 + { 15, 21, 237, 1, 20, 40, 17759 }, // U+1EEA + { 12, 18, 199, 1, 17, 27, 17799 }, // U+1EEB + { 15, 21, 237, 1, 20, 40, 17826 }, // U+1EEC + { 12, 17, 199, 1, 16, 26, 17866 }, // U+1EED + { 15, 20, 237, 1, 19, 38, 17892 }, // U+1EEE + { 12, 17, 199, 1, 16, 26, 17930 }, // U+1EEF + { 15, 21, 237, 1, 17, 40, 17956 }, // U+1EF0 + { 12, 18, 199, 1, 14, 27, 17996 }, // U+1EF1 + { 13, 20, 199, 0, 20, 33, 18023 }, // U+1EF2 + { 11, 21, 166, 0, 17, 29, 18056 }, // U+1EF3 + { 13, 19, 199, 0, 15, 31, 18085 }, // U+1EF4 + { 10, 15, 166, 0, 11, 19, 18116 }, // U+1EF5 + { 13, 20, 199, 0, 20, 33, 18135 }, // U+1EF6 + { 10, 20, 166, 0, 16, 25, 18168 }, // U+1EF7 + { 13, 19, 199, 0, 19, 31, 18193 }, // U+1EF8 + { 10, 20, 166, 0, 16, 25, 18224 }, // U+1EF9 + { 0, 0, 43, 0, 0, 0, 18249 }, // U+2009 + { 0, 0, 0, 0, 0, 0, 18249 }, // U+200B + { 2, 16, 0, -1, 15, 4, 18249 }, // U+200C + { 6, 16, 0, -3, 15, 12, 18253 }, // U+200D + { 6, 18, 0, -1, 16, 14, 18265 }, // U+200E + { 6, 18, 0, -5, 16, 14, 18279 }, // U+200F + { 6, 3, 107, 0, 8, 3, 18293 }, // U+2010 + { 6, 3, 107, 0, 7, 3, 18296 }, // U+2011 + { 12, 2, 165, -1, 7, 3, 18299 }, // U+2013 + { 22, 2, 332, -1, 7, 6, 18302 }, // U+2014 + { 22, 2, 332, -1, 7, 6, 18308 }, // U+2015 + { 4, 5, 78, 1, 16, 3, 18314 }, // U+2018 + { 4, 5, 78, 0, 16, 3, 18317 }, // U+2019 + { 4, 5, 78, 0, 2, 3, 18320 }, // U+201A + { 8, 5, 139, 1, 16, 5, 18323 }, // U+201C + { 8, 5, 139, 0, 16, 5, 18328 }, // U+201D + { 8, 5, 139, 0, 2, 5, 18333 }, // U+201E + { 10, 18, 159, 0, 15, 23, 18338 }, // U+2020 + { 10, 18, 159, 0, 15, 23, 18361 }, // U+2021 + { 6, 5, 120, 1, 10, 4, 18384 }, // U+2022 + { 17, 3, 332, 2, 3, 7, 18388 }, // U+2026 + { 0, 0, 43, 0, 0, 0, 18395 }, // U+202F + { 24, 15, 409, 1, 15, 45, 18395 }, // U+2030 + { 6, 9, 97, 0, 10, 7, 18440 }, // U+2039 + { 6, 9, 97, 0, 10, 7, 18447 }, // U+203A + { 11, 15, 49, -4, 15, 21, 18454 }, // U+2044 + { 4, 12, 115, 1, 11, 6, 18475 }, // U+204F + { 7, 8, 120, 0, 15, 7, 18481 }, // U+2070 + { 8, 8, 120, 0, 15, 8, 18488 }, // U+2074 + { 7, 8, 120, 0, 15, 7, 18496 }, // U+2075 + { 7, 8, 120, 0, 15, 7, 18503 }, // U+2076 + { 7, 8, 120, 0, 15, 7, 18510 }, // U+2077 + { 7, 8, 120, 0, 15, 7, 18517 }, // U+2078 + { 7, 8, 120, 0, 15, 7, 18524 }, // U+2079 + { 7, 8, 120, 0, 8, 7, 18531 }, // U+2080 + { 4, 8, 120, 1, 8, 4, 18538 }, // U+2081 + { 7, 8, 120, 0, 8, 7, 18542 }, // U+2082 + { 7, 8, 120, 0, 8, 7, 18549 }, // U+2083 + { 8, 8, 120, 0, 8, 8, 18556 }, // U+2084 + { 7, 8, 120, 0, 8, 7, 18564 }, // U+2085 + { 7, 8, 120, 0, 8, 7, 18571 }, // U+2086 + { 7, 8, 120, 0, 8, 7, 18578 }, // U+2087 + { 7, 8, 120, 0, 8, 7, 18585 }, // U+2088 + { 7, 8, 120, 0, 8, 7, 18592 }, // U+2089 + { 14, 13, 264, 1, 13, 23, 18599 }, // U+20AA + { 12, 14, 188, 0, 14, 21, 18622 }, // U+20AC + { 12, 15, 188, 0, 15, 23, 18643 }, // U+20AE + { 12, 15, 188, 0, 15, 23, 18666 }, // U+20B4 + { 11, 15, 188, 1, 15, 21, 18689 }, // U+20B9 + { 12, 16, 195, 0, 16, 24, 18710 }, // U+2202 + { 14, 15, 217, 0, 15, 27, 18734 }, // U+2206 + { 12, 17, 232, 1, 15, 26, 18761 }, // U+220F + { 11, 17, 172, 0, 15, 24, 18787 }, // U+2211 + { 10, 2, 188, 1, 7, 3, 18811 }, // U+2212 + { 11, 15, 49, -4, 15, 21, 18814 }, // U+2215 + { 3, 3, 82, 1, 8, 2, 18835 }, // U+2219 + { 13, 17, 188, 0, 16, 28, 18837 }, // U+221A + { 12, 6, 196, 0, 9, 9, 18865 }, // U+221E + { 8, 20, 123, 0, 16, 20, 18874 }, // U+222B + { 11, 8, 188, 0, 10, 11, 18894 }, // U+2248 + { 10, 13, 188, 1, 13, 17, 18905 }, // U+2260 + { 10, 12, 188, 1, 12, 15, 18922 }, // U+2264 + { 10, 12, 188, 1, 12, 15, 18937 }, // U+2265 + { 16, 16, 259, 1, 16, 32, 18952 }, // U+FB00 + { 12, 16, 214, 1, 16, 24, 18984 }, // U+FB01 + { 13, 16, 221, 1, 16, 26, 19008 }, // U+FB02 + { 20, 16, 344, 1, 16, 40, 19034 }, // U+FB03 + { 21, 16, 351, 1, 16, 42, 19074 }, // U+FB04 + { 20, 17, 331, 0, 9, 43, 19116 }, // U+FB56 + { 24, 16, 364, 0, 8, 48, 19159 }, // U+FB57 + { 6, 16, 100, -1, 9, 12, 19207 }, // U+FB58 + { 9, 13, 124, 0, 6, 15, 19219 }, // U+FB59 + { 20, 16, 331, 0, 15, 40, 19234 }, // U+FB66 + { 24, 16, 364, 0, 15, 48, 19274 }, // U+FB67 + { 6, 18, 90, 0, 17, 14, 19322 }, // U+FB68 + { 9, 16, 124, 0, 15, 18, 19336 }, // U+FB69 + { 13, 18, 220, 0, 9, 30, 19354 }, // U+FB7A + { 17, 18, 240, 0, 9, 39, 19384 }, // U+FB7B + { 12, 15, 196, 0, 8, 23, 19423 }, // U+FB7C + { 15, 15, 212, 0, 8, 29, 19446 }, // U+FB7D + { 9, 20, 159, 0, 19, 23, 19475 }, // U+FB88 + { 13, 20, 177, 0, 19, 33, 19498 }, // U+FB89 + { 8, 20, 122, -1, 15, 20, 19531 }, // U+FB8A + { 11, 20, 132, -1, 15, 28, 19551 }, // U+FB8B + { 8, 21, 122, -1, 16, 21, 19579 }, // U+FB8C + { 11, 21, 132, -1, 16, 29, 19600 }, // U+FB8D + { 19, 16, 292, 0, 15, 38, 19629 }, // U+FB8E + { 22, 16, 325, 0, 15, 44, 19667 }, // U+FB8F + { 9, 16, 137, 0, 15, 18, 19711 }, // U+FB90 + { 12, 16, 169, 0, 15, 24, 19729 }, // U+FB91 + { 19, 19, 292, 0, 18, 46, 19753 }, // U+FB92 + { 22, 19, 325, 0, 18, 53, 19799 }, // U+FB93 + { 9, 19, 137, 0, 18, 22, 19852 }, // U+FB94 + { 12, 19, 169, 0, 18, 29, 19874 }, // U+FB95 + { 14, 12, 228, 0, 7, 21, 19903 }, // U+FB9E + { 17, 11, 243, 0, 6, 24, 19924 }, // U+FB9F + { 8, 10, 135, 0, 10, 10, 19948 }, // U+FBA6 + { 12, 8, 160, 0, 7, 12, 19958 }, // U+FBA7 + { 5, 13, 90, 0, 9, 9, 19970 }, // U+FBA8 + { 11, 10, 146, 0, 4, 14, 19979 }, // U+FBA9 + { 14, 12, 224, 0, 11, 21, 19993 }, // U+FBAA + { 14, 14, 205, 0, 9, 25, 20014 }, // U+FBAB + { 12, 12, 191, 0, 11, 18, 20039 }, // U+FBAC + { 12, 14, 169, 0, 9, 21, 20057 }, // U+FBAD + { 19, 11, 314, 0, 10, 27, 20078 }, // U+FBAE + { 13, 8, 183, 0, 2, 13, 20105 }, // U+FBAF + { 19, 16, 314, 0, 15, 38, 20118 }, // U+FBB0 + { 13, 13, 183, 0, 7, 22, 20156 }, // U+FBB1 + { 16, 14, 253, 0, 9, 28, 20178 }, // U+FBFC + { 17, 9, 245, 0, 4, 20, 20206 }, // U+FBFD + { 6, 13, 100, -1, 9, 10, 20226 }, // U+FBFE + { 9, 10, 124, 0, 6, 12, 20236 }, // U+FBFF + { 8, 10, 137, 0, 8, 10, 20248 }, // U+FE80 + { 8, 18, 78, -2, 18, 18, 20258 }, // U+FE81 + { 10, 20, 97, -2, 19, 25, 20276 }, // U+FE82 + { 5, 20, 78, 0, 20, 13, 20301 }, // U+FE83 + { 8, 22, 97, 0, 21, 22, 20314 }, // U+FE84 + { 9, 18, 149, 0, 13, 21, 20336 }, // U+FE85 + { 11, 18, 157, 0, 13, 25, 20357 }, // U+FE86 + { 5, 21, 79, 1, 15, 14, 20382 }, // U+FE87 + { 7, 21, 97, 1, 15, 19, 20396 }, // U+FE88 + { 16, 14, 253, 0, 9, 28, 20415 }, // U+FE89 + { 17, 14, 245, 0, 9, 30, 20443 }, // U+FE8A + { 5, 16, 90, 0, 15, 10, 20473 }, // U+FE8B + { 9, 13, 114, 0, 12, 15, 20483 }, // U+FE8C + { 3, 15, 79, 1, 15, 6, 20498 }, // U+FE8D + { 7, 16, 97, 1, 15, 14, 20504 }, // U+FE8E + { 20, 13, 331, 0, 9, 33, 20518 }, // U+FE8F + { 24, 12, 364, 0, 8, 36, 20551 }, // U+FE90 + { 5, 13, 90, 0, 9, 9, 20587 }, // U+FE91 + { 9, 10, 114, 0, 6, 12, 20596 }, // U+FE92 + { 8, 14, 135, 0, 14, 14, 20608 }, // U+FE93 + { 12, 16, 162, 0, 15, 24, 20622 }, // U+FE94 + { 20, 12, 331, 0, 11, 30, 20646 }, // U+FE95 + { 24, 12, 364, 0, 11, 36, 20676 }, // U+FE96 + { 6, 14, 90, 0, 13, 11, 20712 }, // U+FE97 + { 9, 11, 124, 0, 10, 13, 20723 }, // U+FE98 + { 20, 15, 331, 0, 14, 38, 20736 }, // U+FE99 + { 24, 15, 364, 0, 14, 45, 20774 }, // U+FE9A + { 6, 17, 90, 0, 16, 13, 20819 }, // U+FE9B + { 9, 14, 124, 0, 13, 16, 20832 }, // U+FE9C + { 13, 18, 213, 0, 9, 30, 20848 }, // U+FE9D + { 15, 18, 216, 0, 9, 34, 20878 }, // U+FE9E + { 12, 12, 196, 0, 8, 18, 20912 }, // U+FE9F + { 15, 12, 212, 0, 8, 23, 20930 }, // U+FEA0 + { 13, 18, 213, 0, 9, 30, 20953 }, // U+FEA1 + { 15, 18, 216, 0, 9, 34, 20983 }, // U+FEA2 + { 12, 9, 196, 0, 8, 14, 21017 }, // U+FEA3 + { 15, 9, 212, 0, 8, 17, 21031 }, // U+FEA4 + { 13, 22, 213, 0, 13, 36, 21048 }, // U+FEA5 + { 15, 22, 216, 0, 13, 42, 21084 }, // U+FEA6 + { 12, 13, 196, 0, 12, 20, 21126 }, // U+FEA7 + { 15, 13, 212, 0, 12, 25, 21146 }, // U+FEA8 + { 9, 11, 159, 0, 10, 13, 21171 }, // U+FEA9 + { 13, 11, 177, 0, 10, 18, 21184 }, // U+FEAA + { 9, 15, 159, 0, 14, 17, 21202 }, // U+FEAB + { 13, 15, 177, 0, 14, 25, 21219 }, // U+FEAC + { 8, 13, 122, -1, 8, 13, 21244 }, // U+FEAD + { 11, 13, 132, -1, 8, 18, 21257 }, // U+FEAE + { 8, 17, 122, -1, 12, 17, 21275 }, // U+FEAF + { 11, 17, 132, -1, 12, 24, 21292 }, // U+FEB0 + { 25, 14, 403, 0, 9, 44, 21316 }, // U+FEB1 + { 28, 13, 423, 0, 8, 46, 21360 }, // U+FEB2 + { 16, 10, 261, 0, 9, 20, 21406 }, // U+FEB3 + { 19, 9, 283, 0, 8, 22, 21426 }, // U+FEB4 + { 25, 19, 403, 0, 14, 60, 21448 }, // U+FEB5 + { 28, 19, 423, 0, 14, 67, 21508 }, // U+FEB6 + { 16, 15, 261, 0, 14, 30, 21575 }, // U+FEB7 + { 19, 15, 283, 0, 14, 36, 21605 }, // U+FEB8 + { 27, 13, 435, 0, 8, 44, 21641 }, // U+FEB9 + { 30, 13, 451, 0, 8, 49, 21685 }, // U+FEBA + { 18, 9, 301, 0, 8, 21, 21734 }, // U+FEBB + { 21, 9, 316, 0, 8, 24, 21755 }, // U+FEBC + { 27, 17, 435, 0, 12, 58, 21779 }, // U+FEBD + { 30, 17, 451, 0, 12, 64, 21837 }, // U+FEBE + { 18, 13, 301, 0, 12, 30, 21901 }, // U+FEBF + { 21, 13, 316, 0, 12, 35, 21931 }, // U+FEC0 + { 16, 16, 263, 0, 15, 32, 21966 }, // U+FEC1 + { 19, 16, 277, 0, 15, 38, 21998 }, // U+FEC2 + { 14, 16, 226, 0, 15, 28, 22036 }, // U+FEC3 + { 16, 16, 237, 0, 15, 32, 22064 }, // U+FEC4 + { 16, 16, 263, 0, 15, 32, 22096 }, // U+FEC5 + { 19, 16, 277, 0, 15, 38, 22128 }, // U+FEC6 + { 14, 16, 226, 0, 15, 28, 22166 }, // U+FEC7 + { 16, 16, 237, 0, 15, 32, 22194 }, // U+FEC8 + { 13, 20, 169, 0, 11, 33, 22226 }, // U+FEC9 + { 13, 18, 177, 0, 9, 30, 22259 }, // U+FECA + { 10, 11, 168, 0, 10, 14, 22289 }, // U+FECB + { 12, 10, 174, 0, 9, 15, 22303 }, // U+FECC + { 13, 24, 169, 0, 15, 39, 22318 }, // U+FECD + { 13, 22, 177, 0, 13, 36, 22357 }, // U+FECE + { 10, 15, 168, 0, 14, 19, 22393 }, // U+FECF + { 12, 14, 174, 0, 13, 21, 22412 }, // U+FED0 + { 20, 16, 328, 0, 15, 40, 22433 }, // U+FED1 + { 24, 14, 366, 0, 13, 42, 22473 }, // U+FED2 + { 9, 16, 149, 0, 15, 18, 22515 }, // U+FED3 + { 12, 14, 165, 0, 13, 21, 22533 }, // U+FED4 + { 16, 17, 258, 0, 13, 34, 22554 }, // U+FED5 + { 18, 17, 269, 0, 11, 39, 22588 }, // U+FED6 + { 9, 16, 149, 0, 15, 18, 22627 }, // U+FED7 + { 12, 14, 165, 0, 13, 21, 22645 }, // U+FED8 + { 18, 16, 294, 0, 15, 36, 22666 }, // U+FED9 + { 21, 16, 307, 0, 15, 42, 22702 }, // U+FEDA + { 9, 16, 137, 0, 15, 18, 22744 }, // U+FEDB + { 12, 16, 169, 0, 15, 24, 22762 }, // U+FEDC + { 14, 20, 232, 0, 15, 35, 22786 }, // U+FEDD + { 17, 20, 243, 0, 15, 43, 22821 }, // U+FEDE + { 5, 16, 87, 0, 15, 10, 22864 }, // U+FEDF + { 8, 16, 100, 0, 15, 16, 22874 }, // U+FEE0 + { 10, 17, 161, 0, 8, 22, 22890 }, // U+FEE1 + { 13, 17, 187, 0, 8, 28, 22912 }, // U+FEE2 + { 10, 9, 175, 0, 8, 12, 22940 }, // U+FEE3 + { 14, 9, 193, 0, 8, 16, 22952 }, // U+FEE4 + { 14, 16, 228, 0, 11, 28, 22968 }, // U+FEE5 + { 17, 16, 243, 0, 11, 34, 22996 }, // U+FEE6 + { 5, 14, 90, 0, 13, 9, 23030 }, // U+FEE7 + { 9, 11, 114, 0, 10, 13, 23039 }, // U+FEE8 + { 8, 10, 135, 0, 10, 10, 23052 }, // U+FEE9 + { 12, 12, 162, 0, 11, 18, 23062 }, // U+FEEA + { 12, 12, 191, 0, 11, 18, 23080 }, // U+FEEB + { 12, 14, 169, 0, 9, 21, 23098 }, // U+FEEC + { 9, 13, 149, 0, 8, 15, 23119 }, // U+FEED + { 11, 13, 157, 0, 8, 18, 23134 }, // U+FEEE + { 16, 14, 253, 0, 9, 28, 23152 }, // U+FEEF + { 17, 9, 245, 0, 4, 20, 23180 }, // U+FEF0 + { 16, 18, 253, 0, 9, 36, 23200 }, // U+FEF1 + { 17, 13, 245, 0, 4, 28, 23236 }, // U+FEF2 + { 6, 13, 100, -1, 9, 10, 23264 }, // U+FEF3 + { 9, 10, 124, 0, 6, 12, 23274 }, // U+FEF4 + { 13, 16, 194, -2, 16, 26, 23286 }, // U+FEF5 + { 16, 17, 200, -2, 16, 34, 23312 }, // U+FEF6 + { 12, 18, 194, -1, 18, 27, 23346 }, // U+FEF7 + { 14, 19, 200, 0, 18, 34, 23373 }, // U+FEF8 + { 11, 21, 194, 0, 15, 29, 23407 }, // U+FEF9 + { 14, 21, 200, 0, 15, 37, 23436 }, // U+FEFA + { 11, 15, 194, 0, 15, 21, 23473 }, // U+FEFB + { 14, 16, 200, 0, 15, 28, 23494 }, // U+FEFC }; static const EpdUnicodeInterval ubuntu_10_regularIntervals[] = { @@ -2018,52 +2523,70 @@ static const EpdUnicodeInterval ubuntu_10_regularIntervals[] = { { 0xD, 0xD, 0x3 }, { 0x1D, 0x1D, 0x4 }, { 0x20, 0x7E, 0x5 }, - { 0xA0, 0xFF, 0x64 }, - { 0x100, 0x17F, 0xC4 }, + { 0xA0, 0x17F, 0x64 }, { 0x1A0, 0x1A1, 0x144 }, { 0x1AF, 0x1B0, 0x146 }, { 0x1C4, 0x21F, 0x148 }, { 0x300, 0x304, 0x1A4 }, { 0x306, 0x308, 0x1A9 }, { 0x30A, 0x30C, 0x1AC }, - { 0x311, 0x311, 0x1AF }, - { 0x326, 0x328, 0x1B0 }, - { 0x34F, 0x34F, 0x1B3 }, - { 0x400, 0x45F, 0x1B4 }, - { 0x462, 0x463, 0x214 }, - { 0x472, 0x475, 0x216 }, - { 0x48A, 0x4F9, 0x21A }, - { 0x5D0, 0x5EA, 0x28A }, - { 0x1EA0, 0x1EF9, 0x2A5 }, - { 0x200C, 0x2010, 0x2FF }, - { 0x2013, 0x2015, 0x304 }, - { 0x2018, 0x201A, 0x307 }, - { 0x201C, 0x201E, 0x30A }, - { 0x2020, 0x2022, 0x30D }, - { 0x2026, 0x2026, 0x310 }, - { 0x2030, 0x2030, 0x311 }, - { 0x2039, 0x203A, 0x312 }, - { 0x2044, 0x2044, 0x314 }, - { 0x2070, 0x2070, 0x315 }, - { 0x2074, 0x2079, 0x316 }, - { 0x2080, 0x2089, 0x31C }, - { 0x20AA, 0x20AA, 0x326 }, - { 0x20AC, 0x20AC, 0x327 }, - { 0x20AE, 0x20AE, 0x328 }, - { 0x20B4, 0x20B4, 0x329 }, - { 0x20B9, 0x20B9, 0x32A }, - { 0x2202, 0x2202, 0x32B }, - { 0x2206, 0x2206, 0x32C }, - { 0x220F, 0x220F, 0x32D }, - { 0x2211, 0x2212, 0x32E }, - { 0x2215, 0x2215, 0x330 }, - { 0x2219, 0x221A, 0x331 }, - { 0x221E, 0x221E, 0x333 }, - { 0x222B, 0x222B, 0x334 }, - { 0x2248, 0x2248, 0x335 }, - { 0x2260, 0x2260, 0x336 }, - { 0x2264, 0x2265, 0x337 }, - { 0xFB00, 0xFB04, 0x339 }, + { 0x311, 0x312, 0x1AF }, + { 0x326, 0x328, 0x1B1 }, + { 0x34F, 0x34F, 0x1B4 }, + { 0x400, 0x45F, 0x1B5 }, + { 0x462, 0x463, 0x215 }, + { 0x472, 0x475, 0x217 }, + { 0x48A, 0x4F9, 0x21B }, + { 0x5D0, 0x5EA, 0x28B }, + { 0x60C, 0x60C, 0x2A6 }, + { 0x61B, 0x61B, 0x2A7 }, + { 0x61F, 0x61F, 0x2A8 }, + { 0x621, 0x621, 0x2A9 }, + { 0x640, 0x640, 0x2AA }, + { 0x660, 0x669, 0x2AB }, + { 0x6BA, 0x6BA, 0x2B5 }, + { 0x6D4, 0x6D4, 0x2B6 }, + { 0x6F0, 0x6F9, 0x2B7 }, + { 0x1EA0, 0x1EF9, 0x2C1 }, + { 0x2009, 0x2009, 0x31B }, + { 0x200B, 0x2011, 0x31C }, + { 0x2013, 0x2015, 0x323 }, + { 0x2018, 0x201A, 0x326 }, + { 0x201C, 0x201E, 0x329 }, + { 0x2020, 0x2022, 0x32C }, + { 0x2026, 0x2026, 0x32F }, + { 0x202F, 0x2030, 0x330 }, + { 0x2039, 0x203A, 0x332 }, + { 0x2044, 0x2044, 0x334 }, + { 0x204F, 0x204F, 0x335 }, + { 0x2070, 0x2070, 0x336 }, + { 0x2074, 0x2079, 0x337 }, + { 0x2080, 0x2089, 0x33D }, + { 0x20AA, 0x20AA, 0x347 }, + { 0x20AC, 0x20AC, 0x348 }, + { 0x20AE, 0x20AE, 0x349 }, + { 0x20B4, 0x20B4, 0x34A }, + { 0x20B9, 0x20B9, 0x34B }, + { 0x2202, 0x2202, 0x34C }, + { 0x2206, 0x2206, 0x34D }, + { 0x220F, 0x220F, 0x34E }, + { 0x2211, 0x2212, 0x34F }, + { 0x2215, 0x2215, 0x351 }, + { 0x2219, 0x221A, 0x352 }, + { 0x221E, 0x221E, 0x354 }, + { 0x222B, 0x222B, 0x355 }, + { 0x2248, 0x2248, 0x356 }, + { 0x2260, 0x2260, 0x357 }, + { 0x2264, 0x2265, 0x358 }, + { 0xFB00, 0xFB04, 0x35A }, + { 0xFB56, 0xFB59, 0x35F }, + { 0xFB66, 0xFB69, 0x363 }, + { 0xFB7A, 0xFB7D, 0x367 }, + { 0xFB88, 0xFB95, 0x36B }, + { 0xFB9E, 0xFB9F, 0x379 }, + { 0xFBA6, 0xFBB1, 0x37B }, + { 0xFBFC, 0xFBFF, 0x387 }, + { 0xFE80, 0xFEFC, 0x38B }, }; static const EpdKernClassEntry ubuntu_10_regularKernLeftClasses[] = { @@ -2503,6 +3026,10 @@ static const EpdKernClassEntry ubuntu_10_regularKernLeftClasses[] = { { 0x2039, 54 }, // U+2039 { 0x203A, 55 }, // U+203A { 0xFB00, 37 }, // U+FB00 + { 0xFB8C, 152 }, // U+FB8C + { 0xFEAD, 152 }, // U+FEAD + { 0xFEAE, 152 }, // U+FEAE + { 0xFEAF, 152 }, // U+FEAF }; static const EpdKernClassEntry ubuntu_10_regularKernRightClasses[] = { @@ -3000,160 +3527,180 @@ static const EpdKernClassEntry ubuntu_10_regularKernRightClasses[] = { { 0xFB02, 35 }, // U+FB02 { 0xFB03, 35 }, // U+FB03 { 0xFB04, 35 }, // U+FB04 + { 0xFB8E, 159 }, // U+FB8E + { 0xFBA6, 159 }, // U+FBA6 + { 0xFBAA, 159 }, // U+FBAA + { 0xFE8D, 160 }, // U+FE8D + { 0xFEA3, 159 }, // U+FEA3 + { 0xFEA9, 161 }, // U+FEA9 + { 0xFEB1, 161 }, // U+FEB1 + { 0xFEB3, 161 }, // U+FEB3 + { 0xFEB9, 161 }, // U+FEB9 + { 0xFEBB, 161 }, // U+FEBB + { 0xFEC1, 161 }, // U+FEC1 + { 0xFEC3, 161 }, // U+FEC3 + { 0xFECB, 160 }, // U+FECB + { 0xFEDB, 159 }, // U+FEDB + { 0xFEDF, 160 }, // U+FEDF + { 0xFEE1, 159 }, // U+FEE1 + { 0xFEE3, 159 }, // U+FEE3 + { 0xFEE9, 159 }, // U+FEE9 + { 0xFEEB, 159 }, // U+FEEB }; static const int8_t ubuntu_10_regularKernMatrix[] = { - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, -8, -8, -41, 0, -8, -8, 0, 0, 0, 4, 3, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -38, -24, 0, -26, -23, 0, 0, 0, -8, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, -10, -10, 0, 0, -10, -10, -6, 4, -3, 5, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -10, -4, 0, 0, 0, 0, 9, 0, 0, 0, -10, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, 0, 6, 0, 0, -4, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -4, -4, -4, 0, -4, -4, -4, -9, 0, -11, -6, -9, -14, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -4, -5, 0, 0, -9, -7, 0, -7, -6, 0, -4, -4, -9, -6, -6, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -14, 0, 0, 0, 0, 0, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, -3, -3, -41, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -37, -25, 0, -21, -24, -10, -5, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -10, -10, 9, 0, -11, -11, 5, -23, -8, -26, -13, 3, -27, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -23, -10, 0, 0, 0, 0, 8, 6, 0, 0, 0, -11, -11, 3, -39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, -27, 0, 0, -34, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, -17, 0, -4, 0, -10, -17, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -17, 5, -4, -7, -11, -14, 0, -7, -13, -5, 0, 5, 0, -10, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -17, 0, 0, 0, 0, 0, 5, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -17, -9, -9, -24, 0, -9, -9, 0, 10, 0, 11, 7, 7, 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, -9, 0, -21, -20, 9, -17, -20, 6, 0, 0, -9, -9, 7, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 0, 0, -4, -4, 0, -28, -4, -7, -4, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -28, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -3, -3, -9, 0, -3, -3, -6, -15, -4, -12, -8, -13, -18, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, -3, -5, -7, -8, -13, -9, -7, -15, -10, 0, -3, -3, -13, -4, -9, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -26, -6, 0, -21, 9, 0, 6, 0, 0, -5, 11, -6, -6, 10, 0, -6, -6, 5, -21, -3, -21, -6, 8, -26, 6, 0, 0, -9, 0, 0, -4, -4, -4, 0, -5, 0, 0, 0, 0, -4, -4, 4, 0, -5, -7, -6, 9, -5, 5, -7, -3, -6, 0, 11, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -23, 8, - 0, -4, -4, -8, -4, -3, 0, -7, -4, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, -7, -8, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -7, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -8, 0, 0, 7, -10, 0, 0, 5, -6, 7, -7, -7, 8, 0, -7, -7, 3, 6, 0, 6, 0, 4, 6, 3, -3, 0, 0, 0, 0, -5, -5, -5, 0, -5, 0, 0, 0, 0, -5, -5, 0, 0, -7, -5, -6, 5, -5, 0, -9, 0, -15, 0, 7, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, - -5, -9, -4, -11, 0, -11, 0, -14, 0, -13, -4, -6, 0, 0, -8, 0, 0, 0, -4, -9, 0, -6, -6, -8, -14, -5, -4, 0, -14, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -4, -11, - 0, -5, -7, 0, -4, 4, 0, 0, 0, 0, -5, 6, -9, -9, 6, 0, -9, -9, 0, 0, -7, 0, 0, 0, 0, 0, -6, 0, -14, 0, 0, -5, -6, -5, 0, -8, 0, 0, 0, 0, -6, -5, 0, -5, -6, -8, -8, 3, -8, 0, -6, -7, -8, 0, 6, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, - -3, 0, -8, 0, 0, -22, 0, -20, -6, 4, -6, -15, -4, -4, -27, 0, -4, -4, 0, 5, 0, 6, 0, 0, 7, 0, -5, 0, -14, -17, 0, -5, -5, -5, 0, -5, 0, 0, 0, -9, -5, -5, 0, 0, -8, 0, 0, -12, 0, -9, 0, 0, 0, -7, -25, 0, 0, 0, 0, -5, 0, 0, 0, 0, -8, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -34, - 0, 0, 0, -3, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -6, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -3, 0, -3, 0, -12, 0, 0, 0, -3, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -6, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, - 0, 0, -6, 0, -11, 5, -16, 6, 0, 4, -6, 11, -12, -12, 9, 0, -12, -12, 0, 6, 0, 7, 3, 9, 7, 7, 0, 0, -9, 0, 0, -7, -7, -7, 0, -7, 0, 0, 0, 0, -7, -7, 5, 0, -4, -5, -16, 9, -3, 5, -6, 0, -20, 0, 12, 0, 0, 0, 7, -8, 4, 4, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, - 0, -42, -3, 0, -46, 8, -23, 4, 0, 0, 0, 9, -15, -15, 9, 0, -15, -15, 5, -38, -6, -33, -15, 7, -38, 5, 0, 0, -11, 0, 0, -4, -4, -4, 0, -4, 0, 0, 0, 0, -4, -4, 0, 0, 0, -13, -12, 7, -7, 3, -8, -5, -13, 4, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -40, -39, 5, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -5, -8, -4, -9, 0, -11, 0, -14, 0, -11, -4, -6, 0, 0, -8, 0, 0, 0, -3, -9, 0, -6, -5, -8, -14, -5, -3, 0, -14, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, -10, - -4, 0, -4, -8, 0, -30, 0, -21, 0, 0, 0, -17, 0, 0, -32, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -5, 0, -14, -6, 0, -7, -7, -11, 0, -7, 0, 0, 0, 0, -7, -4, 0, 0, 0, 3, 3, 0, 3, 0, 0, -8, -6, 0, -28, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, -38, - -5, -8, -4, 0, 0, -11, 0, 0, 0, -11, -4, -6, 0, 0, -8, 0, 0, 0, -3, -9, 0, -6, -5, -8, -14, -5, -3, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, -7, - 0, 0, -4, 0, 0, 5, 0, 4, 0, -4, -5, 9, -4, -4, 7, 0, -4, -4, 0, 0, 0, -3, 0, 6, -6, 5, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 3, -6, -5, -7, 0, 10, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, - 0, 0, -9, 4, 0, -25, -16, -29, -28, 7, -17, -21, -9, -9, -30, 0, -9, -9, 0, 8, 0, 9, 6, 5, 10, 0, 0, 0, -11, -15, 0, -18, -18, -18, 0, -18, 0, 0, 0, -13, -18, -18, -15, 0, -11, -7, -27, -6, -7, -10, -8, 0, -28, -25, -24, 0, 0, 7, 10, -26, 17, 7, 4, 0, -24, -22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -22, - 0, 0, -3, 0, 0, -3, 0, -14, -3, 0, 0, -3, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -12, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -3, -7, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, - 0, 5, -11, 5, 0, -25, -3, -22, -7, 8, -13, -21, -6, -6, -32, -2, -6, -6, 0, 9, 0, 10, 7, 6, 11, 0, 0, 0, -9, -8, 0, -15, -15, -15, 0, -15, 0, 0, 0, -10, -15, -15, -5, 0, -8, 0, 0, 0, 0, -1, -8, 0, -14, -4, -27, 0, 4, 0, 11, -17, 14, 10, 4, 0, -9, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, -25, - 0, 4, -5, 0, 0, -12, 0, -16, -4, 5, -6, -6, -5, -5, -20, 0, -5, -5, 0, 6, 0, 7, 4, 3, 8, 0, 0, 0, -12, -10, 0, -7, -7, -7, 0, -9, 0, 0, 0, -7, -7, -7, -6, 0, -6, 0, 0, 0, 0, 0, -6, 0, -7, 0, -16, 0, 0, 0, 6, -9, 4, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, -13, - 0, 0, -8, 0, -9, 4, -9, 3, 0, 0, -9, 9, -8, -8, 7, 0, -8, -8, 0, 4, 0, 6, 0, 6, 6, 4, 0, 0, -11, 0, 0, -6, -6, -6, 0, -6, 0, 0, 0, 0, -6, -6, 0, 0, -3, -4, -12, 6, -2, 0, -9, 0, -16, 0, 9, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, - 0, 0, -14, 6, 0, -22, -16, -27, -13, 8, -19, -26, -14, -14, -38, -3, -14, -14, 0, 10, 0, 11, 8, 7, 12, 4, 0, 0, -9, -14, 0, -16, -16, -16, 0, -16, 0, 0, 0, -13, -16, -16, -7, 0, -11, 0, 0, -5, 0, -9, -7, 0, -25, -11, -27, 0, 0, 0, 14, -26, 13, 11, 0, 0, -14, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, -26, - 0, 0, -7, 0, 0, 4, -20, 0, 0, 0, -5, 6, -12, -12, 6, 0, -12, -12, 0, 0, -5, 3, 0, 0, 4, 0, -6, 0, -14, 0, 0, -5, -6, -5, 0, -8, 0, 0, 0, 0, -6, -5, 0, -4, -6, -8, -8, 3, -8, 0, -12, -5, -17, 0, 6, 0, 0, 0, 3, -5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -14, -14, -9, 0, -14, -14, -9, -11, -13, -10, -12, -12, -9, -14, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -14, -6, -7, -8, -10, -9, 9, -10, 0, 0, -14, -14, -12, -16, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, -9, 0, 0, -9, 0, 0, -5, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, -3, 0, 0, -3, -3, 0, 0, 0, 0, -3, -3, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, -3, -3, -3, -7, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -9, 0, -8, -7, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, 0, -5, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, - 0, -12, 0, -9, 0, 0, 0, -7, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, -6, -4, -7, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -11, 0, - 0, 0, 0, 0, 0, 3, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, -4, 0, 0, -5, 0, 0, 0, 0, -4, 0, 0, 0, 0, 4, 3, 5, 4, 0, -7, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 13, 4, -17, -12, -14, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 5, 6, 0, 0, 13, -6, 3, 0, 0, 10, 0, 13, -6, 13, 10, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, -18, - 0, -12, 0, -8, -7, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, 0, -6, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -10, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, -9, 4, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, -9, -9, -9, 0, -10, 0, 0, 0, 0, -10, -9, 0, 0, 0, 0, 0, 6, 0, 0, -6, 0, -11, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -10, 0, -8, -7, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -5, 0, -6, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -9, 0, - 0, -11, 0, -9, -7, 0, 0, -8, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, -6, -5, -7, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -9, 0, - 0, -11, 0, -9, -7, 0, 0, -7, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, -6, -5, -6, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -9, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 4, -18, -11, -15, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 7, 6, 5, 7, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, -17, - 0, 0, 0, 0, 0, 4, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -4, -5, -3, 0, -3, 0, 0, 0, 0, -5, -4, 0, 0, 0, 0, 0, 6, 0, 0, -7, 0, -9, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 3, -12, 0, -11, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -5, -5, -5, 0, -4, 0, 0, 0, 0, -5, -5, 0, 0, 0, 6, 6, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -12, - 0, 0, 0, 0, 3, -11, 0, -9, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 6, 6, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -10, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -7, -7, -7, 0, -7, 0, 0, 0, 0, -7, -7, 0, 0, 0, 0, 0, 6, 0, 0, -7, 0, -10, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, -6, -7, -6, -4, -7, 0, 0, 0, 0, -7, -6, 0, -4, -4, 0, 0, 0, 0, 0, -9, -7, -11, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -9, -10, -4, 0, -10, -10, -7, 0, -8, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -6, 0, 0, 0, -4, 9, 0, 0, 0, -10, -10, 0, -4, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, -3, 0, 0, -5, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, -7, 0, 0, 0, -6, -8, -4, -8, -6, -10, -8, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -6, -5, -6, -8, -7, -6, -8, -9, 0, 0, 0, -10, 0, -8, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -28, -4, -10, -7, 0, -16, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, 0, -4, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, -14, 0, 0, 0, -7, -29, 0, -15, -7, -17, -26, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -29, 0, -8, -12, -12, -18, -7, -11, -19, -13, 0, 0, 0, -17, -5, -14, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, 0, 0, -3, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, -12, -12, -21, 0, -12, -12, -10, -37, -15, -16, -13, -23, -22, -23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -5, -11, 0, -13, 0, -20, 0, -14, 0, -11, 0, -9, 0, 0, -19, 0, 0, 0, 0, -15, 0, -7, 0, -14, -14, -16, -5, 0, -14, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, -19, - 0, -13, 0, -9, -11, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -8, 0, -9, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -10, 0, - 0, 0, 0, 0, 0, 0, 0, -7, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -13, 0, -9, -7, 0, 0, -7, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, -6, -5, -6, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -12, 0, - 0, 6, 0, 20, 0, -4, -4, 0, -4, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 23, -4, 5, -4, -4, -4, 0, -4, 3, 3, 5, -4, -4, -4, -4, 3, -4, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 23, 31, 37, 0, 37, 37, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -14, 0, 0, -7, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -11, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, -8, -7, -5, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, -21, 0, 0, 0, 0, 0, 0, 0, 0, -10, -5, -5, 0, 0, 0, -7, -4, 0, 0, 0, -4, 0, -4, -4, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -19, -4, -4, -4, -4, 0, -4, -4, -4, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -5, -7, 0, -4, 4, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -7, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 5, 0, 0, 6, 0, 0, 0, 0, -9, -9, 0, 0, 0, 0, 0, -5, 0, 0, 0, -5, 0, 0, 0, 0, -6, 0, -5, -5, -8, -6, 3, -6, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -8, -4, 0, -8, 0, 0, 0, 0, -6, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, - -4, -12, 0, -6, -10, -4, 5, -5, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -6, 0, 0, 0, 0, -6, -7, 0, -6, 0, 0, 0, 0, 0, 0, -6, -3, 0, 0, 0, 0, 0, -11, -5, 0, -5, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -3, 0, 0, 0, -5, 0, -6, 0, 0, 0, 0, -3, 0, -10, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -9, 4, 0, -25, -16, -29, -28, 7, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -28, -25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -9, 0, -37, -22, 7, -21, -21, 0, 0, 0, -9, -9, 5, 0, 6, 0, -32, 0, -30, -31, -38, -38, -25, -27, -38, -35, -38, -31, -38, -21, -21, -26, -22, -25, -31, -21, -26, -37, 9, -38, -35, 0, 14, 0, 9, 0, -25, -7, -40, 0, -21, 0, 0, -31, -32, 0, -32, -44, 0, -21, -37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -22, - 0, 0, -8, 0, 0, 7, -10, 0, 0, 5, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, -7, 0, 7, 6, 0, 7, 6, 0, 0, 0, -7, -7, 4, 0, 0, 0, 0, -5, 0, 0, 6, -5, 5, 0, 6, 0, -5, 0, -5, -11, -5, -5, 5, -16, 0, -11, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, -10, -3, 6, -5, 0, 0, -17, 0, -4, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, - 0, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, -5, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -5, -25, -6, -7, -12, 0, 0, 0, 0, -10, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -17, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -5, 0, -10, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -8, 0, 0, 0, 0, -12, 0, 0, -5, 0, 0, -6, -6, -6, -5, -12, -4, -4, 0, 0, -7, -4, -7, 0, 0, -3, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -6, 0, -11, 5, -16, 6, 0, 4, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, -12, 0, 8, 8, 0, 11, 9, 8, 5, 0, -12, -12, 9, 0, 7, 6, 0, -8, 0, 0, 9, -6, 9, 0, 8, 0, -6, 0, -6, -13, -16, -9, 9, -20, 0, -8, 6, 6, 7, -6, 5, 0, 0, 0, 7, -8, 0, -14, -7, 0, -16, 0, -13, -20, 0, -6, -5, 0, 6, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, - 0, 5, -11, 5, 0, -25, -3, -22, -7, 8, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -14, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -6, 0, -27, -21, 8, -21, -20, 5, 0, -2, -6, -6, 6, 0, 6, 0, -9, -6, -6, -6, -21, -13, 0, 0, -21, -10, -13, -6, -13, 0, 0, -13, 0, 0, -6, 0, 0, -10, 11, -13, -6, 0, 14, 0, 11, 0, 0, -7, -13, 0, 0, 0, 0, 0, -9, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, -25, - 0, -26, -6, 0, -21, 9, 0, 6, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -3, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, -6, 5, 9, 8, 0, 11, 9, 7, 5, 0, -6, -6, 8, -17, 7, 5, 0, -5, 0, 0, 9, -4, 9, 0, 8, 0, -4, 0, -4, -13, -5, -4, 9, -9, 0, -8, 6, 6, 0, 0, 5, 0, 0, 0, 0, -8, 0, -8, 0, -26, -7, 0, -12, -6, 0, -5, 0, 0, 6, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -23, 8, - 0, -4, -4, -8, -4, -3, 0, -7, -4, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -6, 0, 0, 0, -3, -7, -6, 0, -5, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -4, 0, 9, -6, 6, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 8, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 8, 7, 0, 8, 7, 6, 5, 0, -6, -9, 6, -9, 6, 0, 0, 0, 0, 0, 7, 0, 7, 0, 7, 0, 0, 0, 0, 0, 10, 0, 7, -6, 0, 0, 0, 5, 0, 0, 0, 0, 0, 22, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 6, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -4, -4, -9, 0, 0, 0, -5, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, -5, 0, 0, 0, -4, -5, -5, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -5, -5, -7, -5, 0, 0, 0, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -5, -8, -4, -9, 0, -11, 5, -14, 0, -11, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -8, -8, -12, -6, -7, -16, -10, 0, 0, 0, -8, 0, -10, 0, -4, 0, 0, 0, -8, 0, -3, -4, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, -4, -5, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, -4, -9, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, -10, - -4, 0, -4, -8, 0, -30, 0, -21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -31, -24, 0, -17, -23, -9, -5, 0, 0, 0, -6, 0, 0, 0, -6, 0, 0, 0, -15, 0, 0, 0, -16, -4, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 3, 0, 5, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, -38, - 0, 0, -9, 4, 0, -25, -16, -29, -28, 7, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -28, -25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -9, 0, -22, -22, 7, -21, -21, 0, 0, 0, -9, -9, 5, 0, 6, 0, -15, 0, -25, -25, -23, -18, -23, -27, -23, -25, -18, -13, -18, -21, -7, -18, -6, -25, -25, -21, -26, -25, 9, -26, -26, 0, 14, 0, 9, 0, -23, -7, -26, 10, -7, 0, 0, -22, -27, 0, -27, -45, 0, -21, -38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -22, - -5, -8, -4, -9, 0, -11, 0, -14, 0, -11, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -18, -19, -12, -6, -18, -20, -15, 0, 0, 0, -8, 0, -13, 0, -6, 0, -5, -4, -13, 0, -4, -3, -14, -6, 0, -5, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, -5, 0, 0, -5, -5, -5, -5, 0, 0, 0, 0, 0, 0, -5, 0, 0, -6, 0, 0, -3, -19, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, -10, - 0, 0, -8, 0, -9, 4, -9, 3, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -8, 0, 0, 0, 0, 9, 0, 0, 0, 0, -8, -8, 6, 0, 0, 0, 0, -9, 0, 0, 7, -6, 7, 0, 6, 0, -6, 0, -6, -10, -2, -6, 6, -15, 0, -10, 0, 0, 6, -7, 0, 0, 0, 0, 6, -9, 0, 0, -8, 6, -4, 0, 0, -16, 0, 0, -6, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, - 0, -4, 0, 9, -6, 6, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 8, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 8, 7, 0, 8, 7, 6, 5, 0, -6, -9, 6, -9, 6, 0, 0, 0, 0, 0, 7, 0, 7, 0, 7, 0, 0, 0, 0, 0, 10, 0, 7, -6, 0, 0, 0, 5, 0, 0, 0, 0, 0, 23, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 6, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -5, -8, -4, -9, 0, -11, 5, -14, 0, -11, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -7, -7, -11, -6, -6, -15, -10, 0, 0, 0, -8, 0, -9, 0, 0, 0, 0, 0, -8, 0, 0, -4, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -9, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, -10, - 0, -9, 0, -8, -7, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, - -4, -8, -4, 0, -6, -6, 6, -7, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -5, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -12, 0, -8, -5, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -5, 0, -26, -19, -15, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, 0, 0, 0, -12, 0, 0, 0, 0, 7, 7, 0, 6, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -10, 0, 8, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0, 7, 0, 0, 0, 0, 0, 8, -4, 7, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -9, 0, -9, -6, -4, 5, -4, -4, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, - 0, -4, -6, 0, 0, 0, -9, 4, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -9, 8, 0, 7, 0, -10, 0, -9, 0, 0, -10, 6, 0, 0, 0, 0, 5, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -12, 0, -8, -6, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -5, 0, 0, 0, -9, 4, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -9, 8, 0, 7, 0, -10, 0, -9, 0, 0, -10, 6, 0, 0, 0, 0, 5, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -11, 0, -9, -7, -7, 6, -8, -6, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -6, 0, 0, 0, 0, 0, 0, -5, 0, -6, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -6, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -9, 0, - 0, -11, -4, -9, -7, -6, 6, -7, -6, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -5, 0, 0, 0, 0, 0, 0, -5, 0, -6, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -5, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -9, 0, - 0, 0, 0, 0, 0, 3, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -4, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0, 6, 0, -4, 0, 0, 5, 4, -4, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -4, 0, -17, -10, -15, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, -12, 0, 0, 0, 0, 7, 7, 0, 6, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -5, 0, -7, 0, -10, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -4, 0, 0, -9, 0, -4, 0, -4, 7, 6, -4, 4, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -10, - -7, -11, 0, -9, -7, -8, 6, -8, -7, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -7, -4, 0, 0, 0, 0, 0, -5, 0, -6, 0, 0, 0, -5, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -4, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -9, 0, - 0, 0, -5, 0, 0, 0, -5, 0, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -4, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, -7, 7, 0, 6, 0, -7, 0, -7, 0, 0, -7, 6, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -10, 0, 8, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0, 7, 0, 0, 0, 0, 0, 8, -4, 7, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -27, 0, -8, -17, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, -6, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -11, 0, -9, -7, -6, 6, -8, -5, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -5, 0, 0, 0, 0, 0, 0, -5, 0, -6, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -9, 0, - 0, -11, 0, -9, -7, -7, 6, -8, -6, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -6, 0, 0, 0, 0, 0, 0, -5, 0, -6, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -9, 0, - 0, -19, -6, 0, -8, 0, 0, 0, 0, -10, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -4, -6, 0, 0, 0, -5, 0, 0, -5, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -6, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, -4, 0, -4, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -8, 0, -9, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -19, -6, -8, -8, 0, 0, 0, 0, -10, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -25, 0, -8, -17, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -6, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -6, 7, 0, 0, -22, -23, -16, 12, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -30, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, -6, 0, 0, -17, 11, -23, -17, 7, 6, 0, -6, -10, 8, 6, 11, 0, -18, 0, -15, -17, -35, -29, -11, -13, -32, -21, -29, -17, -30, -6, -6, -26, -8, -12, -17, -6, -12, -25, 15, -29, -21, 0, 0, 0, 15, 0, -11, -7, -30, 0, -6, 0, 0, -17, -18, 0, -19, -13, 6, -7, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 7, -26, -7, -15, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 7, 0, -9, 0, 0, 0, 0, 11, 11, 0, 10, 6, 0, 11, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 8, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -14, -4, 0, -6, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -32, 0, 0, -22, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, -17, 0, 0, 0, -5, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -6, -19, -4, 0, -6, -11, 6, 0, -5, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, 0, -6, -5, -6, -11, -5, 0, -13, -7, 0, 0, 0, -12, -4, -7, -6, 0, 0, 0, 0, 0, 0, -10, -7, -7, 0, 0, -3, 0, 0, 0, 0, -6, 0, -5, 0, -6, 0, -5, 0, 0, -5, -5, 9, -5, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -7, -7, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -22, 0, 0, -10, -4, 0, 0, -4, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -11, 0, 0, -5, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -14, 6, 0, -22, -16, -27, -13, 8, -19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -25, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, -14, 0, 0, 0, 0, -26, 0, 0, 0, -3, -14, 0, 7, 0, 0, 0, -14, -9, -11, -12, -25, -16, -6, -8, -25, -16, -16, -13, -16, 0, 0, -23, -5, -7, -12, 0, -7, -18, 11, -22, -14, 0, 0, 0, 11, 0, -4, 0, -22, 12, 0, 0, 0, -9, -14, 0, -14, -8, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, -26, - 0, 0, 0, -4, 3, -12, 0, -11, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -5, 0, 0, -12, 0, -5, 0, -5, 7, 6, 0, 5, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -12, - -4, -29, -5, -6, -9, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -19, -6, -8, -8, 0, 0, 0, 0, -10, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -6, -4, -11, 0, -6, 0, -7, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, -4, -4, 0, 0, 0, -4, 0, -3, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -5, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -15, 0, -10, -6, -4, 5, -4, -4, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -4, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -8, -4, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -14, 0, -10, -6, -5, 5, -4, -4, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -5, -8, -4, -9, 0, -11, 5, -14, 0, -11, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, -4, 0, 0, 0, -7, 0, 0, -4, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, -4, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, -10, - 0, -11, 0, -9, -7, -6, 6, -8, -5, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -6, 0, 0, 0, 0, 0, 0, -5, 0, -6, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -6, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -9, 0, - 0, 0, -4, 0, -6, -4, 0, -5, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -11, -7, 0, -4, 0, 0, -11, 0, -4, 0, 0, 0, -4, -4, -4, 0, -9, -4, 0, 0, 0, -7, 0, -8, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -7, -6, 0, 0, 0, 0, 0, 0, -5, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -2, -2, 0, 0, 0, 0, 0, -7, 0, -3, 0, -7, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, -11, 0, 0, -11, 0, 0, -8, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, -6, -11, 0, -4, -5, 0, -7, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, -7, 0, 0, -6, 0, -17, -12, 0, -8, -4, -11, 0, -17, -12, 0, 0, -12, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, -3, 0, -2, 0, 0, -7, 0, 0, -4, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, -7, 0, -6, -2, 0, 0, 0, 0, 0, -4, -7, -6, -6, -4, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, 0, 0, -7, 0, -2, -2, 0, 0, -2, 0, -10, -2, -2, 0, 0, -8, 0, 0, -7, 0, -7, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -4, 0, 0, -5, -5, 0, -9, -9, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -1, 0, 0, 0, 0, -6, 0, -10, -9, 0, 0, 0, -6, 0, -12, -5, 0, 0, 0, 6, -2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -4, -7, -7, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -5, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -10, 0, -1, 0, 0, -1, 0, -10, -4, 0, 0, -4, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, -7, -2, 0, 0, -2, 0, -9, -1, 0, 0, 0, -2, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -8, 0, -6, 0, 0, 0, 0, -7, 0, 0, 0, -8, 0, -11, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, -7, 0, -5, -6, 0, 0, -2, -4, 0, -10, -4, 0, 0, -7, 0, -7, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, -1, 0, 0, -8, 0, -2, 0, -4, 0, 0, -2, 0, 0, -2, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, 0, -17, 0, 0, -5, 0, -6, -1, 0, -11, -13, -13, 0, -8, 0, 0, 0, -7, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, -7, -7, -38, 0, -7, -7, 0, 0, 0, 6, 6, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, -25, 0, 0, 0, 0, -7, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -8, -8, 9, 0, -9, -10, 5, -22, -6, -25, -11, 4, -26, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -22, -8, 0, 0, 0, 0, 9, 0, 0, 0, 0, -9, -9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, -8, -8, -41, 0, -8, -8, 0, 0, 0, 4, 3, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -38, -24, 0, -26, -23, 0, 0, 0, -8, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, -10, -10, 0, 0, -10, -10, -6, 4, -3, 5, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -10, -4, 0, 0, 0, 0, 9, 0, 0, 0, -10, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, 0, 6, 0, 0, -4, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -4, -4, -4, 0, -4, -4, -4, -9, 0, -11, -6, -9, -14, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -4, -5, 0, 0, -9, -7, 0, -7, -6, 0, -4, -4, -9, -6, -6, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -14, 0, 0, 0, 0, 0, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, -3, -3, -41, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -37, -25, 0, -21, -24, -10, -5, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -10, -10, 9, 0, -11, -11, 5, -23, -8, -26, -13, 3, -27, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -23, -10, 0, 0, 0, 0, 8, 6, 0, 0, 0, -11, -11, 3, -39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, -27, 0, 0, -34, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, -17, 0, -4, 0, -10, -17, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -17, 5, -4, -7, -11, -14, 0, -7, -13, -5, 0, 5, 0, -10, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -17, 0, 0, 0, 0, 0, 5, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -17, -9, -9, -24, 0, -9, -9, 0, 10, 0, 11, 7, 7, 11, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, -9, 0, -21, -20, 9, -17, -20, 6, 0, 0, -9, -9, 7, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 0, 0, -4, -4, 0, -28, -4, -7, -4, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -28, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -3, -3, -9, 0, -3, -3, -6, -15, -4, -12, -8, -13, -18, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, -3, -5, -7, -8, -13, -9, -7, -15, -10, 0, -3, -3, -13, -4, -9, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -26, -6, 0, -21, 9, 0, 6, 0, 0, -5, 11, -6, -6, 10, 0, -6, -6, 5, -21, -3, -21, -6, 8, -26, 6, 0, 0, -9, 0, 0, -4, -4, -4, 0, -5, 0, 0, 0, 0, -4, -4, 4, 0, -5, -7, -6, 9, -5, 5, -7, -3, -6, 0, 11, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -23, 8, 0, 0, 0, + 0, -4, -4, -8, -4, -3, 0, -7, -4, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, -7, -8, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -7, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -8, 0, 0, 7, -10, 0, 0, 5, -6, 7, -7, -7, 8, 0, -7, -7, 3, 6, 0, 6, 0, 4, 6, 3, -3, 0, 0, 0, 0, -5, -5, -5, 0, -5, 0, 0, 0, 0, -5, -5, 0, 0, -7, -5, -6, 5, -5, 0, -9, 0, -15, 0, 7, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 0, 0, 0, + -5, -9, -4, -11, 0, -11, 0, -14, 0, -13, -4, -6, 0, 0, -8, 0, 0, 0, -4, -9, 0, -6, -6, -8, -14, -5, -4, 0, -14, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -4, -11, 0, 0, 0, + 0, -5, -7, 0, -4, 4, 0, 0, 0, 0, -5, 6, -9, -9, 6, 0, -9, -9, 0, 0, -7, 0, 0, 0, 0, 0, -6, 0, -14, 0, 0, -5, -6, -5, 0, -8, 0, 0, 0, 0, -6, -5, 0, -5, -6, -8, -8, 3, -8, 0, -6, -7, -8, 0, 6, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, + -3, 0, -8, 0, 0, -22, 0, -20, -6, 4, -6, -15, -4, -4, -27, 0, -4, -4, 0, 5, 0, 6, 0, 0, 7, 0, -5, 0, -14, -17, 0, -5, -5, -5, 0, -5, 0, 0, 0, -9, -5, -5, 0, 0, -8, 0, 0, -12, 0, -9, 0, 0, 0, -7, -25, 0, 0, 0, 0, -5, 0, 0, 0, 0, -8, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -34, 0, 0, 0, + 0, 0, 0, -3, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -6, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -3, 0, -3, 0, -12, 0, 0, 0, -3, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -6, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, + 0, 0, -6, 0, -11, 5, -16, 6, 0, 4, -6, 11, -12, -12, 9, 0, -12, -12, 0, 6, 0, 7, 3, 9, 7, 7, 0, 0, -9, 0, 0, -7, -7, -7, 0, -7, 0, 0, 0, 0, -7, -7, 5, 0, -4, -5, -16, 9, -3, 5, -6, 0, -20, 0, 12, 0, 0, 0, 7, -8, 4, 4, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, + 0, -42, -3, 0, -46, 8, -23, 4, 0, 0, 0, 9, -15, -15, 9, 0, -15, -15, 5, -38, -6, -33, -15, 7, -38, 5, 0, 0, -11, 0, 0, -4, -4, -4, 0, -4, 0, 0, 0, 0, -4, -4, 0, 0, 0, -13, -12, 7, -7, 3, -8, -5, -13, 4, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -40, -39, 5, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -5, -8, -4, -9, 0, -11, 0, -14, 0, -11, -4, -6, 0, 0, -8, 0, 0, 0, -3, -9, 0, -6, -5, -8, -14, -5, -3, 0, -14, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, -10, 0, 0, 0, + -4, 0, -4, -8, 0, -30, 0, -21, 0, 0, 0, -17, 0, 0, -32, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -5, 0, -14, -6, 0, -7, -7, -11, 0, -7, 0, 0, 0, 0, -7, -4, 0, 0, 0, 3, 3, 0, 3, 0, 0, -8, -6, 0, -28, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, -38, 0, 0, 0, + -5, -8, -4, 0, 0, -11, 0, 0, 0, -11, -4, -6, 0, 0, -8, 0, 0, 0, -3, -9, 0, -6, -5, -8, -14, -5, -3, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, -7, 0, 0, 0, + 0, 0, -4, 0, 0, 5, 0, 4, 0, -4, -5, 9, -4, -4, 7, 0, -4, -4, 0, 0, 0, -3, 0, 6, -6, 5, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 3, -6, -5, -7, 0, 10, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, + 0, 0, -9, 4, 0, -25, -16, -29, -28, 7, -17, -21, -9, -9, -30, 0, -9, -9, 0, 8, 0, 9, 6, 5, 10, 0, 0, 0, -11, -15, 0, -18, -18, -18, 0, -18, 0, 0, 0, -13, -18, -18, -15, 0, -11, -7, -27, -6, -7, -10, -8, 0, -28, -25, -24, 0, 0, 7, 10, -26, 17, 7, 4, 0, -24, -22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -22, 0, 0, 0, + 0, 0, -3, 0, 0, -3, 0, -14, -3, 0, 0, -3, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -12, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -3, -7, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, + 0, 5, -11, 5, 0, -25, -3, -22, -7, 8, -13, -21, -6, -6, -32, -2, -6, -6, 0, 9, 0, 10, 7, 6, 11, 0, 0, 0, -9, -8, 0, -15, -15, -15, 0, -15, 0, 0, 0, -10, -15, -15, -5, 0, -8, 0, 0, 0, 0, -1, -8, 0, -14, -4, -27, 0, 4, 0, 11, -17, 14, 10, 4, 0, -9, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, -25, 0, 0, 0, + 0, 4, -5, 0, 0, -12, 0, -16, -4, 5, -6, -6, -5, -5, -20, 0, -5, -5, 0, 6, 0, 7, 4, 3, 8, 0, 0, 0, -12, -10, 0, -7, -7, -7, 0, -9, 0, 0, 0, -7, -7, -7, -6, 0, -6, 0, 0, 0, 0, 0, -6, 0, -7, 0, -16, 0, 0, 0, 6, -9, 4, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, -13, 0, 0, 0, + 0, 0, -8, 0, -9, 4, -9, 3, 0, 0, -9, 9, -8, -8, 7, 0, -8, -8, 0, 4, 0, 6, 0, 6, 6, 4, 0, 0, -11, 0, 0, -6, -6, -6, 0, -6, 0, 0, 0, 0, -6, -6, 0, 0, -3, -4, -12, 6, -2, 0, -9, 0, -16, 0, 9, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, + 0, 0, -14, 6, 0, -22, -16, -27, -13, 8, -19, -26, -14, -14, -38, -3, -14, -14, 0, 10, 0, 11, 8, 7, 12, 4, 0, 0, -9, -14, 0, -16, -16, -16, 0, -16, 0, 0, 0, -13, -16, -16, -7, 0, -11, 0, 0, -5, 0, -9, -7, 0, -25, -11, -27, 0, 0, 0, 14, -26, 13, 11, 0, 0, -14, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, -26, 0, 0, 0, + 0, 0, -7, 0, 0, 4, -20, 0, 0, 0, -5, 6, -12, -12, 6, 0, -12, -12, 0, 0, -5, 3, 0, 0, 4, 0, -6, 0, -14, 0, 0, -5, -6, -5, 0, -8, 0, 0, 0, 0, -6, -5, 0, -4, -6, -8, -8, 3, -8, 0, -12, -5, -17, 0, 6, 0, 0, 0, 3, -5, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -14, -14, -9, 0, -14, -14, -9, -11, -13, -10, -12, -12, -9, -14, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -14, -6, -7, -8, -10, -9, 9, -10, 0, 0, -14, -14, -12, -16, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, -9, 0, 0, -9, 0, 0, -5, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, -3, 0, 0, -3, -3, 0, 0, 0, 0, -3, -3, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, -3, 0, 0, 0, 0, 0, 0, 0, 0, -3, -3, -3, -7, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -9, 0, -8, -7, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, 0, -5, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, + 0, -12, 0, -9, 0, 0, 0, -7, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, -6, -4, -7, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -11, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 3, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, -4, 0, 0, -5, 0, 0, 0, 0, -4, 0, 0, 0, 0, 4, 3, 5, 4, 0, -7, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 13, 4, -17, -12, -14, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 5, 6, 0, 0, 13, -6, 3, 0, 0, 10, 0, 13, -6, 13, 10, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, -18, 0, 0, 0, + 0, -12, 0, -8, -7, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, 0, -6, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -10, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -9, 4, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, -9, -9, -9, 0, -10, 0, 0, 0, 0, -10, -9, 0, 0, 0, 0, 0, 6, 0, 0, -6, 0, -11, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -10, 0, -8, -7, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -5, 0, -6, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -9, 0, 0, 0, 0, + 0, -11, 0, -9, -7, 0, 0, -8, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, -6, -5, -7, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -9, 0, 0, 0, 0, + 0, -11, 0, -9, -7, 0, 0, -7, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, -6, -5, -6, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -9, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 4, -18, -11, -15, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 7, 6, 5, 7, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, -17, 0, 0, 0, + 0, 0, 0, 0, 0, 4, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -4, -5, -3, 0, -3, 0, 0, 0, 0, -5, -4, 0, 0, 0, 0, 0, 6, 0, 0, -7, 0, -9, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 3, -12, 0, -11, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -5, -5, -5, 0, -4, 0, 0, 0, 0, -5, -5, 0, 0, 0, 6, 6, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -12, 0, 0, 0, + 0, 0, 0, 0, 3, -11, 0, -9, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 6, 6, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -10, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -7, -7, -7, 0, -7, 0, 0, 0, 0, -7, -7, 0, 0, 0, 0, 0, 6, 0, 0, -7, 0, -10, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, -6, -7, -6, -4, -7, 0, 0, 0, 0, -7, -6, 0, -4, -4, 0, 0, 0, 0, 0, -9, -7, -11, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -9, -10, -4, 0, -10, -10, -7, 0, -8, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -6, 0, 0, 0, -4, 9, 0, 0, 0, -10, -10, 0, -4, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, -3, 0, 0, -5, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, -7, 0, 0, 0, -6, -8, -4, -8, -6, -10, -8, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -6, -5, -6, -8, -7, -6, -8, -9, 0, 0, 0, -10, 0, -8, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -28, -4, -10, -7, 0, -16, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, 0, -4, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, -14, 0, 0, 0, -7, -29, 0, -15, -7, -17, -26, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -29, 0, -8, -12, -12, -18, -7, -11, -19, -13, 0, 0, 0, -17, -5, -14, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, 0, 0, -3, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, -12, -12, -21, 0, -12, -12, -10, -37, -15, -16, -13, -23, -22, -23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -5, -11, 0, -13, 0, -20, 0, -14, 0, -11, 0, -9, 0, 0, -19, 0, 0, 0, 0, -15, 0, -7, 0, -14, -14, -16, -5, 0, -14, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, -19, 0, 0, 0, + 0, -13, 0, -9, -11, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -8, 0, -9, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -10, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -7, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -13, 0, -9, -7, 0, 0, -7, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, -6, -5, -6, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -12, 0, 0, 0, 0, + 0, 6, 0, 20, 0, -4, -4, 0, -4, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 23, -4, 5, -4, -4, -4, 0, -4, 3, 3, 5, -4, -4, -4, -4, 3, -4, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 23, 31, 37, 0, 37, 37, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -14, 0, 0, -7, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -11, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, -8, -7, -5, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, -21, 0, 0, 0, 0, 0, 0, 0, 0, -10, -5, -5, 0, 0, 0, -7, -4, 0, 0, 0, -4, 0, -4, -4, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -19, -4, -4, -4, -4, 0, -4, -4, -4, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -5, -7, 0, -4, 4, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -7, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 5, 0, 0, 6, 0, 0, 0, 0, -9, -9, 0, 0, 0, 0, 0, -5, 0, 0, 0, -5, 0, 0, 0, 0, -6, 0, -5, -5, -8, -6, 3, -6, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -8, -4, 0, -8, 0, 0, 0, 0, -6, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, + -4, -12, 0, -6, -10, -4, 5, -5, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -6, 0, 0, 0, 0, -6, -7, 0, -6, 0, 0, 0, 0, 0, 0, -6, -3, 0, 0, 0, 0, 0, -11, -5, 0, -5, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -3, 0, 0, 0, -5, 0, -6, 0, 0, 0, 0, -3, 0, -10, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -9, 4, 0, -25, -16, -29, -28, 7, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -28, -25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -9, 0, -37, -22, 7, -21, -21, 0, 0, 0, -9, -9, 5, 0, 6, 0, -32, 0, -30, -31, -38, -38, -25, -27, -38, -35, -38, -31, -38, -21, -21, -26, -22, -25, -31, -21, -26, -37, 9, -38, -35, 0, 14, 0, 9, 0, -25, -7, -40, 0, -21, 0, 0, -31, -32, 0, -32, -44, 0, -21, -37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -22, 0, 0, 0, + 0, 0, -8, 0, 0, 7, -10, 0, 0, 5, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, -7, 0, 7, 6, 0, 7, 6, 0, 0, 0, -7, -7, 4, 0, 0, 0, 0, -5, 0, 0, 6, -5, 5, 0, 6, 0, -5, 0, -5, -11, -5, -5, 5, -16, 0, -11, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, -10, -3, 6, -5, 0, 0, -17, 0, -4, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 0, 0, 0, + 0, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, -5, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -5, -25, -6, -7, -12, 0, 0, 0, 0, -10, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -17, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -5, 0, -10, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -8, 0, 0, 0, 0, -12, 0, 0, -5, 0, 0, -6, -6, -6, -5, -12, -4, -4, 0, 0, -7, -4, -7, 0, 0, -3, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -6, 0, -11, 5, -16, 6, 0, 4, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, -12, 0, 8, 8, 0, 11, 9, 8, 5, 0, -12, -12, 9, 0, 7, 6, 0, -8, 0, 0, 9, -6, 9, 0, 8, 0, -6, 0, -6, -13, -16, -9, 9, -20, 0, -8, 6, 6, 7, -6, 5, 0, 0, 0, 7, -8, 0, -14, -7, 0, -16, 0, -13, -20, 0, -6, -5, 0, 6, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, + 0, 5, -11, 5, 0, -25, -3, -22, -7, 8, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -14, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -6, 0, -27, -21, 8, -21, -20, 5, 0, -2, -6, -6, 6, 0, 6, 0, -9, -6, -6, -6, -21, -13, 0, 0, -21, -10, -13, -6, -13, 0, 0, -13, 0, 0, -6, 0, 0, -10, 11, -13, -6, 0, 14, 0, 11, 0, 0, -7, -13, 0, 0, 0, 0, 0, -9, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, -25, 0, 0, 0, + 0, -26, -6, 0, -21, 9, 0, 6, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -3, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, -6, 5, 9, 8, 0, 11, 9, 7, 5, 0, -6, -6, 8, -17, 7, 5, 0, -5, 0, 0, 9, -4, 9, 0, 8, 0, -4, 0, -4, -13, -5, -4, 9, -9, 0, -8, 6, 6, 0, 0, 5, 0, 0, 0, 0, -8, 0, -8, 0, -26, -7, 0, -12, -6, 0, -5, 0, 0, 6, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -23, 8, 0, 0, 0, + 0, -4, -4, -8, -4, -3, 0, -7, -4, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -6, 0, 0, 0, -3, -7, -6, 0, -5, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -4, 0, 9, -6, 6, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 8, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 8, 7, 0, 8, 7, 6, 5, 0, -6, -9, 6, -9, 6, 0, 0, 0, 0, 0, 7, 0, 7, 0, 7, 0, 0, 0, 0, 0, 10, 0, 7, -6, 0, 0, 0, 5, 0, 0, 0, 0, 0, 22, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 6, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -4, -4, -9, 0, 0, 0, -5, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, -5, 0, 0, 0, -4, -5, -5, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -5, -5, -7, -5, 0, 0, 0, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -5, -8, -4, -9, 0, -11, 5, -14, 0, -11, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -8, -8, -12, -6, -7, -16, -10, 0, 0, 0, -8, 0, -10, 0, -4, 0, 0, 0, -8, 0, -3, -4, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, -4, -5, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, -4, -9, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, -10, 0, 0, 0, + -4, 0, -4, -8, 0, -30, 0, -21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -31, -24, 0, -17, -23, -9, -5, 0, 0, 0, -6, 0, 0, 0, -6, 0, 0, 0, -15, 0, 0, 0, -16, -4, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 3, 0, 5, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, -38, 0, 0, 0, + 0, 0, -9, 4, 0, -25, -16, -29, -28, 7, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -28, -25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -9, 0, -22, -22, 7, -21, -21, 0, 0, 0, -9, -9, 5, 0, 6, 0, -15, 0, -25, -25, -23, -18, -23, -27, -23, -25, -18, -13, -18, -21, -7, -18, -6, -25, -25, -21, -26, -25, 9, -26, -26, 0, 14, 0, 9, 0, -23, -7, -26, 10, -7, 0, 0, -22, -27, 0, -27, -45, 0, -21, -38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -22, 0, 0, 0, + -5, -8, -4, -9, 0, -11, 0, -14, 0, -11, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -18, -19, -12, -6, -18, -20, -15, 0, 0, 0, -8, 0, -13, 0, -6, 0, -5, -4, -13, 0, -4, -3, -14, -6, 0, -5, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, -5, 0, 0, -5, -5, -5, -5, 0, 0, 0, 0, 0, 0, -5, 0, 0, -6, 0, 0, -3, -19, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, -10, 0, 0, 0, + 0, 0, -8, 0, -9, 4, -9, 3, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -8, 0, 0, 0, 0, 9, 0, 0, 0, 0, -8, -8, 6, 0, 0, 0, 0, -9, 0, 0, 7, -6, 7, 0, 6, 0, -6, 0, -6, -10, -2, -6, 6, -15, 0, -10, 0, 0, 6, -7, 0, 0, 0, 0, 6, -9, 0, 0, -8, 6, -4, 0, 0, -16, 0, 0, -6, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, + 0, -4, 0, 9, -6, 6, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 8, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 8, 7, 0, 8, 7, 6, 5, 0, -6, -9, 6, -9, 6, 0, 0, 0, 0, 0, 7, 0, 7, 0, 7, 0, 0, 0, 0, 0, 10, 0, 7, -6, 0, 0, 0, 5, 0, 0, 0, 0, 0, 23, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 6, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -5, -8, -4, -9, 0, -11, 5, -14, 0, -11, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -7, -7, -11, -6, -6, -15, -10, 0, 0, 0, -8, 0, -9, 0, 0, 0, 0, 0, -8, 0, 0, -4, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -9, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, -10, 0, 0, 0, + 0, -9, 0, -8, -7, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, + -4, -8, -4, 0, -6, -6, 6, -7, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -5, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -12, 0, -8, -5, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -5, 0, -26, -19, -15, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, 0, 0, 0, -12, 0, 0, 0, 0, 7, 7, 0, 6, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -10, 0, 8, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0, 7, 0, 0, 0, 0, 0, 8, -4, 7, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -9, 0, -9, -6, -4, 5, -4, -4, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, + 0, -4, -6, 0, 0, 0, -9, 4, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -9, 8, 0, 7, 0, -10, 0, -9, 0, 0, -10, 6, 0, 0, 0, 0, 5, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -12, 0, -8, -6, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -5, 0, 0, 0, -9, 4, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -9, 8, 0, 7, 0, -10, 0, -9, 0, 0, -10, 6, 0, 0, 0, 0, 5, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -11, 0, -9, -7, -7, 6, -8, -6, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -6, 0, 0, 0, 0, 0, 0, -5, 0, -6, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -6, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -9, 0, 0, 0, 0, + 0, -11, -4, -9, -7, -6, 6, -7, -6, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -5, 0, 0, 0, 0, 0, 0, -5, 0, -6, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -5, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -9, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 3, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -4, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0, 6, 0, -4, 0, 0, 5, 4, -4, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -4, 0, -17, -10, -15, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, -12, 0, 0, 0, 0, 7, 7, 0, 6, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 7, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -5, 0, -7, 0, -10, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -4, 0, 0, -9, 0, -4, 0, -4, 7, 6, -4, 4, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -10, 0, 0, 0, + -7, -11, 0, -9, -7, -8, 6, -8, -7, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -7, -4, 0, 0, 0, 0, 0, -5, 0, -6, 0, 0, 0, -5, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -4, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -9, 0, 0, 0, 0, + 0, 0, -5, 0, 0, 0, -5, 0, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -4, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, -7, 7, 0, 6, 0, -7, 0, -7, 0, 0, -7, 6, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -10, 0, 8, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 7, 0, 7, 0, 0, 0, 0, 0, 8, -4, 7, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -27, 0, -8, -17, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, -6, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -11, 0, -9, -7, -6, 6, -8, -5, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -5, 0, 0, 0, 0, 0, 0, -5, 0, -6, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -9, 0, 0, 0, 0, + 0, -11, 0, -9, -7, -7, 6, -8, -6, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -6, 0, 0, 0, 0, 0, 0, -5, 0, -6, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -9, 0, 0, 0, 0, + 0, -19, -6, 0, -8, 0, 0, 0, 0, -10, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -4, -6, 0, 0, 0, -5, 0, 0, -5, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -6, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, -4, 0, -4, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -8, 0, -9, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -19, -6, -8, -8, 0, 0, 0, 0, -10, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -25, 0, -8, -17, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -6, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -6, 7, 0, 0, -22, -23, -16, 12, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -30, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, -6, 0, 0, -17, 11, -23, -17, 7, 6, 0, -6, -10, 8, 6, 11, 0, -18, 0, -15, -17, -35, -29, -11, -13, -32, -21, -29, -17, -30, -6, -6, -26, -8, -12, -17, -6, -12, -25, 15, -29, -21, 0, 0, 0, 15, 0, -11, -7, -30, 0, -6, 0, 0, -17, -18, 0, -19, -13, 6, -7, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 7, -26, -7, -15, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 7, 0, -9, 0, 0, 0, 0, 11, 11, 0, 10, 6, 0, 11, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 11, 0, 0, 8, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -14, -4, 0, -6, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -32, 0, 0, -22, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, -17, 0, 0, 0, -5, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -6, -19, -4, 0, -6, -11, 6, 0, -5, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, 0, -6, -5, -6, -11, -5, 0, -13, -7, 0, 0, 0, -12, -4, -7, -6, 0, 0, 0, 0, 0, 0, -10, -7, -7, 0, 0, -3, 0, 0, 0, 0, -6, 0, -5, 0, -6, 0, -5, 0, 0, -5, -5, 9, -5, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -7, -7, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -22, 0, 0, -10, -4, 0, 0, -4, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -11, 0, 0, -5, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -14, 6, 0, -22, -16, -27, -13, 8, -19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -25, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, -14, 0, 0, 0, 0, -26, 0, 0, 0, -3, -14, 0, 7, 0, 0, 0, -14, -9, -11, -12, -25, -16, -6, -8, -25, -16, -16, -13, -16, 0, 0, -23, -5, -7, -12, 0, -7, -18, 11, -22, -14, 0, 0, 0, 11, 0, -4, 0, -22, 12, 0, 0, 0, -9, -14, 0, -14, -8, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, -26, 0, 0, 0, + 0, 0, 0, -4, 3, -12, 0, -11, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -5, 0, 0, -12, 0, -5, 0, -5, 7, 6, 0, 5, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -12, 0, 0, 0, + -4, -29, -5, -6, -9, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -19, -6, -8, -8, 0, 0, 0, 0, -10, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -6, -4, -11, 0, -6, 0, -7, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, -4, -4, 0, 0, 0, -4, 0, -3, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -5, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -15, 0, -10, -6, -4, 5, -4, -4, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -4, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -8, -4, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -14, 0, -10, -6, -5, 5, -4, -4, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -5, -8, -4, -9, 0, -11, 5, -14, 0, -11, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, -4, 0, 0, 0, -7, 0, 0, -4, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, -4, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -3, -10, 0, 0, 0, + 0, -11, 0, -9, -7, -6, 6, -8, -5, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -6, 0, 0, 0, 0, 0, 0, -5, 0, -6, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -6, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -9, 0, 0, 0, 0, + 0, 0, -4, 0, -6, -4, 0, -5, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -11, -7, 0, -4, 0, 0, -11, 0, -4, 0, 0, 0, -4, -4, -4, 0, -9, -4, 0, 0, 0, -7, 0, -8, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -7, -6, 0, 0, 0, 0, 0, 0, -5, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -2, -2, 0, 0, 0, 0, 0, -7, 0, -3, 0, -7, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, -11, 0, 0, -11, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, -6, -11, 0, -4, -5, 0, -7, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, -7, 0, 0, -6, 0, -17, -12, 0, -8, -4, -11, 0, -17, -12, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, -3, 0, -2, 0, 0, -7, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, -7, 0, -6, -2, 0, 0, 0, 0, 0, -4, -7, -6, -6, -4, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -21, 0, 0, -7, 0, -2, -2, 0, 0, -2, 0, -10, -2, -2, 0, 0, -8, 0, 0, -7, 0, -7, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -4, 0, 0, -5, -5, 0, -9, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -1, 0, 0, 0, 0, -6, 0, -10, -9, 0, 0, 0, -6, 0, -12, -5, 0, 0, 0, 6, -2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -4, -7, -7, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -5, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -10, 0, -1, 0, 0, -1, 0, -10, -4, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, -7, -2, 0, 0, -2, 0, -9, -1, 0, 0, 0, -2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -8, 0, -6, 0, 0, 0, 0, -7, 0, 0, 0, -8, 0, -11, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, -7, 0, -5, -6, 0, 0, -2, -4, 0, -10, -4, 0, 0, -7, 0, -7, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, -1, 0, 0, -8, 0, -2, 0, -4, 0, 0, -2, 0, 0, -2, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, 0, -17, 0, 0, -5, 0, -6, -1, 0, -11, -13, -13, 0, -8, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, -7, -7, -38, 0, -7, -7, 0, 0, 0, 6, 6, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, -25, 0, 0, 0, 0, -7, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -8, -8, 9, 0, -9, -10, 5, -22, -6, -25, -11, 4, -26, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -22, -8, 0, 0, 0, 0, 9, 0, 0, 0, 0, -9, -9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -8, -10, }; static const EpdLigaturePair ubuntu_10_regularLigaturePairs[] = { @@ -3168,7 +3715,7 @@ static const EpdFontData ubuntu_10_regular = { ubuntu_10_regularBitmaps, ubuntu_10_regularGlyphs, ubuntu_10_regularIntervals, - 51, + 69, 24, 20, -4, @@ -3179,10 +3726,10 @@ static const EpdFontData ubuntu_10_regular = { ubuntu_10_regularKernLeftClasses, ubuntu_10_regularKernRightClasses, ubuntu_10_regularKernMatrix, - 436, - 494, - 151, - 158, + 440, + 513, + 152, + 161, ubuntu_10_regularLigaturePairs, 5, }; diff --git a/lib/EpdFont/builtinFonts/ubuntu_12_bold.h b/lib/EpdFont/builtinFonts/ubuntu_12_bold.h index 552dc08321..242b68a74a 100644 --- a/lib/EpdFont/builtinFonts/ubuntu_12_bold.h +++ b/lib/EpdFont/builtinFonts/ubuntu_12_bold.h @@ -3,12 +3,12 @@ * name: ubuntu_12_bold * size: 12 * mode: 1-bit - * Command used: fontconvert.py ubuntu_12_bold 12 ../builtinFonts/source/Ubuntu/Ubuntu-Bold.ttf ../builtinFonts/source/NotoSansHebrew/NotoSansHebrew-Bold.ttf ../builtinFonts/source/Ubuntu/Ubuntu-Vietnamese-Bold.ttf --additional-intervals 0x05D0,0x05EA + * Command used: fontconvert.py ubuntu_12_bold 12 ../builtinFonts/source/Ubuntu/Ubuntu-Bold.ttf ../builtinFonts/source/NotoSansHebrew/NotoSansHebrew-Bold.ttf ../builtinFonts/source/NotoSansArabic/NotoSansArabic-Bold.ttf ../builtinFonts/source/Ubuntu/Ubuntu-Vietnamese-Bold.ttf --additional-intervals 0x05D0,0x05EA --additional-intervals 0x060C,0x060C --additional-intervals 0x061B,0x061B --additional-intervals 0x061F,0x061F --additional-intervals 0x0621,0x0621 --additional-intervals 0x0640,0x0640 --additional-intervals 0x0660,0x0669 --additional-intervals 0x06BA,0x06BA --additional-intervals 0x06D4,0x06D4 --additional-intervals 0x06F0,0x06F9 --additional-intervals 0xFB56,0xFB59 --additional-intervals 0xFB66,0xFB69 --additional-intervals 0xFB7A,0xFB7D --additional-intervals 0xFB88,0xFB95 --additional-intervals 0xFB9E,0xFB9F --additional-intervals 0xFBA6,0xFBB1 --additional-intervals 0xFBFC,0xFBFF --additional-intervals 0xFE80,0xFEFC */ #pragma once #include "EpdFontData.h" -static const uint8_t ubuntu_12_boldBitmaps[28333] = { +static const uint8_t ubuntu_12_boldBitmaps[36561] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xDC, 0x07, 0x7F, 0xFF, 0x70, 0xF7, 0xFD, 0xFF, 0x7F, 0xDF, 0xF3, 0xFC, 0xEF, 0x38, 0x0F, 0x3C, 0x0F, 0x3C, 0x0F, 0x3C, 0x0F, 0x3C, 0xFF, 0xFE, 0xFF, 0xFE, 0xFF, 0xFE, 0x1E, 0x78, 0x1E, 0x78, 0x3C, 0x78, 0xFF, 0xFE, 0xFF, 0xFE, 0xFF, 0xFE, 0x3C, 0xF0, @@ -902,884 +902,1399 @@ static const uint8_t ubuntu_12_boldBitmaps[28333] = { 0xFF, 0x3C, 0xF0, 0x78, 0xDF, 0xFB, 0xFF, 0x73, 0xC0, 0xFF, 0xBF, 0xEF, 0xF8, 0xE3, 0xFF, 0xF7, 0xF8, 0xFC, 0x79, 0xE7, 0x9E, 0x73, 0xBC, 0xFF, 0x3C, 0x7C, 0xFF, 0xBF, 0x77, 0xEF, 0x80, 0x3D, 0xF7, 0xFE, 0xF3, 0xCE, 0x70, 0x79, 0xE7, 0xF8, 0xFE, 0x0F, 0xC0, 0x3F, 0x3F, 0xDD, 0xFE, 0x70, - 0xF7, 0xBD, 0xC0, 0x71, 0xE3, 0xEF, 0xFF, 0xE0, 0x00, 0xE7, 0x1C, 0xF3, 0xFF, 0xDF, 0x0C, 0x00, - 0xF0, 0x07, 0xC0, 0x1F, 0x00, 0x78, 0x01, 0x80, 0x00, 0x1F, 0xFE, 0xFF, 0xF7, 0xFF, 0xBC, 0x01, - 0xE0, 0x0F, 0x00, 0x78, 0x03, 0xFF, 0x9F, 0xFC, 0xFF, 0xE7, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, - 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0x79, 0xC3, 0xDF, 0x1E, 0xF8, 0xF3, 0x80, 0x00, 0x00, 0x03, 0xFF, - 0xDF, 0xFE, 0xFF, 0xF7, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x7F, 0xF3, 0xFF, 0x9F, 0xFC, 0xF0, - 0x07, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0xFF, 0xFE, 0x0F, 0xFF, 0xE0, - 0xFF, 0xFE, 0x00, 0x7C, 0x00, 0x07, 0xC0, 0x00, 0x7C, 0x00, 0x07, 0xFF, 0x80, 0x7F, 0xFC, 0x07, - 0xFF, 0xE0, 0x7C, 0x7E, 0x07, 0xC1, 0xE0, 0x7C, 0x1F, 0x07, 0xC1, 0xF0, 0x7C, 0x3E, 0x07, 0xDF, - 0xE0, 0x7D, 0xFC, 0x07, 0xDF, 0x80, 0x03, 0x00, 0x78, 0x0F, 0x81, 0xF0, 0x1E, 0x00, 0xC0, 0x00, - 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, - 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0x07, 0xFC, 0x1F, 0xFE, 0x3F, 0xFE, - 0x7F, 0x1C, 0x7C, 0x00, 0xF8, 0x00, 0xF8, 0x00, 0xFF, 0xF0, 0xFF, 0xF0, 0xFF, 0xF0, 0xF8, 0x00, - 0xF8, 0x00, 0x7C, 0x00, 0x7F, 0x3C, 0x3F, 0xFE, 0x1F, 0xFE, 0x07, 0xFC, 0x0F, 0xF0, 0xFF, 0xE7, - 0xFF, 0x9F, 0x9C, 0x7C, 0x01, 0xF0, 0x07, 0xF8, 0x0F, 0xF8, 0x1F, 0xF0, 0x3F, 0xE0, 0x1F, 0xC0, - 0x1F, 0x00, 0x7D, 0xE3, 0xF7, 0xFF, 0x9F, 0xFE, 0x3F, 0xE0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFF, 0xF0, 0xF3, 0xFC, 0xFF, 0x3F, 0xCF, 0x00, 0x00, 0x01, 0xE0, 0x78, 0x1E, 0x07, 0x81, - 0xE0, 0x78, 0x1E, 0x07, 0x81, 0xE0, 0x78, 0x1E, 0x07, 0x81, 0xE0, 0x78, 0x1E, 0x07, 0x81, 0xE0, - 0x01, 0xF0, 0x1F, 0x01, 0xF0, 0x1F, 0x01, 0xF0, 0x1F, 0x01, 0xF0, 0x1F, 0x01, 0xF0, 0x1F, 0x01, - 0xF0, 0x1F, 0x01, 0xF7, 0x3E, 0xFF, 0xEF, 0xFC, 0x7F, 0x80, 0x03, 0xFF, 0xC0, 0x00, 0x7F, 0xFC, - 0x00, 0x07, 0xFF, 0xC0, 0x00, 0x7C, 0x7C, 0x00, 0x07, 0xC7, 0xC0, 0x00, 0x7C, 0x7C, 0x00, 0x07, - 0xC7, 0xFF, 0x00, 0x7C, 0x7F, 0xFC, 0x07, 0x87, 0xFF, 0xE0, 0x78, 0x7C, 0x7E, 0x07, 0x87, 0xC1, - 0xE0, 0xF8, 0x7C, 0x1E, 0x1F, 0x07, 0xC1, 0xE7, 0xF0, 0x7C, 0x7E, 0xFE, 0x07, 0xFF, 0xEF, 0xC0, - 0x7F, 0xFC, 0xF8, 0x03, 0xFF, 0x00, 0xF0, 0x3E, 0x00, 0xF0, 0x3E, 0x00, 0xF0, 0x3E, 0x00, 0xF0, - 0x3E, 0x00, 0xF0, 0x3E, 0x00, 0xF0, 0x3E, 0x00, 0xFF, 0xFF, 0xF8, 0xFF, 0xFF, 0xFC, 0xFF, 0xFF, - 0xFE, 0xF0, 0x3E, 0x7F, 0xF0, 0x3E, 0x1F, 0xF0, 0x3E, 0x1F, 0xF0, 0x3E, 0x1F, 0xF0, 0x3E, 0x7F, - 0xF0, 0x3F, 0xFE, 0xF0, 0x3F, 0xFC, 0xF0, 0x3F, 0xF8, 0xFF, 0xFE, 0x1F, 0xFF, 0xC3, 0xFF, 0xF8, - 0x03, 0xE0, 0x00, 0x7C, 0x00, 0x0F, 0x80, 0x01, 0xFF, 0xC0, 0x3F, 0xFC, 0x07, 0xFF, 0xC0, 0xF9, - 0xF8, 0x1F, 0x0F, 0x83, 0xE1, 0xF0, 0x7C, 0x3E, 0x0F, 0x87, 0xC1, 0xF0, 0xF8, 0x3E, 0x1F, 0x07, - 0xC3, 0xE0, 0x00, 0xC0, 0x03, 0xC0, 0x0F, 0x80, 0x3E, 0x00, 0x78, 0x00, 0x60, 0x00, 0x00, 0x78, - 0x3E, 0xF0, 0xF9, 0xE3, 0xF3, 0xCF, 0xC7, 0xBF, 0x0F, 0xFC, 0x1F, 0xF0, 0x3F, 0xC0, 0x7F, 0x80, - 0xFF, 0x81, 0xFF, 0x83, 0xDF, 0x87, 0x9F, 0x8F, 0x1F, 0x9E, 0x1F, 0x3C, 0x1F, 0x78, 0x3F, 0x03, - 0x00, 0x1E, 0x00, 0x3E, 0x00, 0x3E, 0x00, 0x3C, 0x00, 0x30, 0x00, 0x00, 0x78, 0x0F, 0xF0, 0x3F, - 0xE0, 0xFF, 0xC3, 0xFF, 0x8F, 0xFF, 0x1F, 0xFE, 0x7F, 0xFD, 0xF7, 0xFF, 0xCF, 0xFF, 0x9F, 0xFE, - 0x3F, 0xF8, 0x7F, 0xF0, 0xFF, 0xC1, 0xFF, 0x03, 0xFE, 0x07, 0xF8, 0x0F, 0x06, 0x38, 0x07, 0xBC, - 0x03, 0xFE, 0x00, 0xFE, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF0, 0x3E, 0x7C, 0x1F, 0x3E, - 0x0F, 0x8F, 0x8F, 0x87, 0xC7, 0xC1, 0xF3, 0xC0, 0xFB, 0xE0, 0x3F, 0xE0, 0x1F, 0xF0, 0x07, 0xF8, - 0x01, 0xF8, 0x00, 0xFC, 0x00, 0x7C, 0x02, 0x7E, 0x03, 0xFE, 0x01, 0xFE, 0x00, 0xFE, 0x00, 0xF0, - 0x3F, 0xE0, 0x7F, 0xC0, 0xFF, 0x81, 0xFF, 0x03, 0xFE, 0x07, 0xFC, 0x0F, 0xF8, 0x1F, 0xF0, 0x3F, - 0xE0, 0x7F, 0xC0, 0xFF, 0x81, 0xFF, 0x03, 0xFE, 0x07, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x0F, - 0x00, 0x1E, 0x00, 0x3C, 0x00, 0x78, 0x00, 0xF0, 0x00, 0x01, 0xE0, 0x00, 0xFC, 0x00, 0x3F, 0x00, - 0x1F, 0xE0, 0x07, 0xF8, 0x03, 0xFF, 0x00, 0xF3, 0xC0, 0x7C, 0xF8, 0x1E, 0x3E, 0x07, 0x87, 0x83, - 0xFF, 0xF0, 0xFF, 0xFC, 0x3F, 0xFF, 0x9F, 0x03, 0xE7, 0xC0, 0xFB, 0xE0, 0x1F, 0xF8, 0x07, 0xC0, - 0xFF, 0xF3, 0xFF, 0xCF, 0xFF, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0xFC, 0x3F, 0xFC, 0xFF, 0xFB, - 0xC7, 0xEF, 0x07, 0xBC, 0x1E, 0xF0, 0x7B, 0xC7, 0xEF, 0xFF, 0xBF, 0xFC, 0xFF, 0xC0, 0xFF, 0xC3, - 0xFF, 0xCF, 0xFF, 0xBC, 0x7E, 0xF0, 0x7B, 0xC1, 0xEF, 0x1F, 0xBF, 0xFC, 0xFF, 0xF3, 0xFF, 0xEF, - 0x0F, 0xFC, 0x1F, 0xF0, 0x7F, 0xC7, 0xFF, 0xFF, 0xBF, 0xFE, 0xFF, 0xE0, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, - 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x00, 0x07, 0xFF, 0x80, 0x3F, 0xFC, 0x01, 0xFF, 0xE0, 0x0F, 0x8F, - 0x00, 0x7C, 0x78, 0x03, 0xE3, 0xC0, 0x1E, 0x1E, 0x00, 0xF0, 0xF0, 0x07, 0x87, 0x80, 0x7C, 0x3C, - 0x03, 0xE1, 0xE0, 0x1E, 0x0F, 0x01, 0xF0, 0x78, 0x0F, 0x83, 0xC3, 0xFF, 0xFF, 0xDF, 0xFF, 0xFE, - 0xFF, 0xFF, 0xF7, 0xC0, 0x07, 0xBE, 0x00, 0x3D, 0xF0, 0x01, 0xEF, 0x80, 0x0F, 0x7C, 0x00, 0x78, - 0xFF, 0xF7, 0xFF, 0xBF, 0xFD, 0xE0, 0x0F, 0x00, 0x78, 0x03, 0xC0, 0x1F, 0xFC, 0xFF, 0xE7, 0xFF, - 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x78, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0xFC, 0x3E, 0x1F, 0x3F, - 0x1F, 0x1F, 0x8F, 0x8F, 0x9F, 0x87, 0xE7, 0xDF, 0x81, 0xFB, 0xEF, 0x80, 0x7F, 0xFF, 0x80, 0x1F, - 0xFF, 0xC0, 0x07, 0xFF, 0xC0, 0x03, 0xFF, 0xC0, 0x01, 0xFF, 0xF0, 0x01, 0xFF, 0xFC, 0x01, 0xF7, - 0xFF, 0x01, 0xF3, 0xEF, 0xC1, 0xF9, 0xF3, 0xE1, 0xF8, 0xF8, 0xF8, 0xF8, 0x7C, 0x7E, 0xF8, 0x3E, - 0x1F, 0x00, 0x3F, 0xE0, 0xFF, 0xE1, 0xFF, 0xE1, 0xC7, 0xE0, 0x07, 0xC0, 0x0F, 0x80, 0x7E, 0x0F, - 0xFC, 0x1F, 0xF0, 0x3F, 0xF8, 0x03, 0xF0, 0x01, 0xE0, 0x03, 0xCF, 0x1F, 0x9F, 0xFF, 0x7F, 0xFC, - 0x3F, 0xF0, 0xF0, 0x1F, 0xE0, 0x7F, 0xC1, 0xFF, 0x87, 0xFF, 0x1F, 0xFE, 0x3F, 0xFC, 0xFF, 0xFB, - 0xEF, 0xFF, 0x9F, 0xFF, 0x3F, 0xFC, 0x7F, 0xF0, 0xFF, 0xE1, 0xFF, 0x83, 0xFE, 0x07, 0xFC, 0x0F, - 0xF0, 0x1E, 0x0C, 0x70, 0x3D, 0xE0, 0x7F, 0xC0, 0x7F, 0x00, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x78, - 0x0F, 0xF0, 0x3F, 0xE0, 0xFF, 0xC3, 0xFF, 0x8F, 0xFF, 0x1F, 0xFE, 0x7F, 0xFD, 0xF7, 0xFF, 0xCF, - 0xFF, 0x9F, 0xFE, 0x3F, 0xF8, 0x7F, 0xF0, 0xFF, 0xC1, 0xFF, 0x03, 0xFE, 0x07, 0xF8, 0x0F, 0xF0, - 0x7D, 0xE1, 0xF3, 0xC7, 0xE7, 0x9F, 0x8F, 0x7E, 0x1F, 0xF8, 0x3F, 0xE0, 0x7F, 0x80, 0xFF, 0x01, - 0xFF, 0x03, 0xFF, 0x07, 0xBF, 0x0F, 0x3F, 0x1E, 0x3F, 0x3C, 0x3E, 0x78, 0x3E, 0xF0, 0x7E, 0x03, - 0xFF, 0xC1, 0xFF, 0xF0, 0x7F, 0xFC, 0x1F, 0x1F, 0x07, 0xC7, 0xC1, 0xF1, 0xF0, 0x7C, 0x7C, 0x1F, - 0x1F, 0x07, 0x87, 0xC1, 0xE1, 0xF0, 0x78, 0x7C, 0x3E, 0x1F, 0x1F, 0x07, 0xDF, 0xC1, 0xFF, 0xE0, - 0x7F, 0xF0, 0x1F, 0xF8, 0x07, 0xC0, 0x7C, 0x03, 0xE7, 0xE0, 0x3E, 0x7E, 0x07, 0xE7, 0xF0, 0x7E, - 0x7F, 0x0F, 0xE7, 0xF8, 0xFF, 0x7F, 0x9F, 0xF7, 0xFD, 0xFF, 0x7B, 0xDF, 0xF7, 0xBF, 0xDF, 0x79, - 0xFD, 0xFF, 0x9F, 0x8F, 0xF9, 0xF8, 0xFF, 0x8F, 0x8F, 0xF8, 0xF0, 0xFF, 0x80, 0x0F, 0xF8, 0x00, - 0xF0, 0xF0, 0x3F, 0xE0, 0x7F, 0xC0, 0xFF, 0x81, 0xFF, 0x03, 0xFE, 0x07, 0xFC, 0x0F, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0xFF, 0x81, 0xFF, 0x03, 0xFE, 0x07, 0xFC, 0x0F, 0xF8, 0x1F, 0xF0, - 0x3E, 0x07, 0xF8, 0x07, 0xFF, 0x83, 0xFF, 0xF1, 0xFC, 0xFC, 0x7C, 0x0F, 0xBE, 0x03, 0xEF, 0x80, - 0x7F, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0x7F, 0xE0, 0x3E, 0x7C, 0x0F, 0x9F, 0xCF, - 0xE3, 0xFF, 0xF0, 0x7F, 0xF8, 0x07, 0xF8, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x81, 0xFF, - 0x03, 0xFE, 0x07, 0xFC, 0x0F, 0xF8, 0x1F, 0xF0, 0x3F, 0xE0, 0x7F, 0xC0, 0xFF, 0x81, 0xFF, 0x03, - 0xFE, 0x07, 0xFC, 0x0F, 0xF8, 0x1F, 0xF0, 0x3E, 0xFF, 0xC3, 0xFF, 0xCF, 0xFF, 0xBC, 0x7E, 0xF0, - 0x7B, 0xC1, 0xFF, 0x07, 0xBC, 0x7E, 0xFF, 0xFB, 0xFF, 0xCF, 0xFC, 0x3C, 0x00, 0xF0, 0x03, 0xC0, - 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x00, 0x07, 0xFC, 0x3F, 0xFC, 0xFF, 0xF3, 0xF8, 0xE7, 0xC0, 0x1F, - 0x00, 0x3E, 0x00, 0x7C, 0x00, 0xF8, 0x01, 0xF0, 0x03, 0xE0, 0x07, 0xC0, 0x07, 0xC0, 0x0F, 0xE3, - 0x8F, 0xFF, 0x8F, 0xFF, 0x0F, 0xFC, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x3E, 0x00, 0x7C, 0x00, - 0xF8, 0x01, 0xF0, 0x03, 0xE0, 0x07, 0xC0, 0x0F, 0x80, 0x1F, 0x00, 0x3E, 0x00, 0x7C, 0x00, 0xF8, - 0x01, 0xF0, 0x03, 0xE0, 0x07, 0xC0, 0xF8, 0x1F, 0x3E, 0x0F, 0x9F, 0x07, 0xC7, 0xC7, 0xC3, 0xE3, - 0xE0, 0xF9, 0xE0, 0x7D, 0xF0, 0x1F, 0xF0, 0x0F, 0xF8, 0x03, 0xFC, 0x00, 0xFC, 0x00, 0x7E, 0x00, - 0x3E, 0x01, 0x3F, 0x01, 0xFF, 0x00, 0xFF, 0x00, 0x7F, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x0F, 0x00, - 0x0F, 0xFE, 0x01, 0xFF, 0xF8, 0x3F, 0xFF, 0xC7, 0xEF, 0xFE, 0xF8, 0xF3, 0xEF, 0x8F, 0x1F, 0xF0, - 0xF1, 0xFF, 0x0F, 0x1F, 0xF8, 0xF1, 0xFF, 0x8F, 0x3E, 0x7E, 0xF7, 0xE7, 0xFF, 0xFC, 0x3F, 0xFF, - 0x80, 0xFF, 0xF0, 0x00, 0xF0, 0x00, 0x0F, 0x00, 0xFC, 0x1F, 0x3F, 0x1F, 0x8F, 0x8F, 0x87, 0xEF, - 0x81, 0xFF, 0xC0, 0x7F, 0xC0, 0x3F, 0xC0, 0x0F, 0xE0, 0x03, 0xE0, 0x03, 0xF8, 0x03, 0xFE, 0x03, - 0xFF, 0x81, 0xF7, 0xC1, 0xF3, 0xF1, 0xF8, 0xFC, 0xF8, 0x3E, 0xF8, 0x1F, 0x80, 0xF0, 0x3E, 0x3C, - 0x0F, 0x8F, 0x03, 0xE3, 0xC0, 0xF8, 0xF0, 0x3E, 0x3C, 0x0F, 0x8F, 0x03, 0xE3, 0xC0, 0xF8, 0xF0, - 0x3E, 0x3C, 0x0F, 0x8F, 0x03, 0xE3, 0xC0, 0xF8, 0xF0, 0x3E, 0x3C, 0x0F, 0x8F, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0xC0, 0x01, 0xF0, 0x00, 0x7C, 0x00, 0x1F, 0x00, 0x07, 0xC0, 0x01, 0xF0, 0xF0, - 0x3F, 0xC0, 0xFF, 0x03, 0xFC, 0x0F, 0xF0, 0x3F, 0xC0, 0xFF, 0x83, 0xFF, 0x1F, 0xFF, 0xFD, 0xFF, - 0xF3, 0xFF, 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x3C, 0xF0, 0xF8, 0x7F, - 0xC3, 0xE1, 0xFF, 0x0F, 0x87, 0xFC, 0x3E, 0x1F, 0xF0, 0xF8, 0x7F, 0xC3, 0xE1, 0xFF, 0x0F, 0x87, - 0xFC, 0x3E, 0x1F, 0xF0, 0xF8, 0x7F, 0xC3, 0xE1, 0xFF, 0x0F, 0x87, 0xFC, 0x3E, 0x1F, 0xF0, 0xF8, - 0x7F, 0xC3, 0xE1, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0xF0, 0xF8, 0x7C, 0x78, - 0x7C, 0x3E, 0x3C, 0x3E, 0x1F, 0x1E, 0x1F, 0x0F, 0x8F, 0x0F, 0x87, 0xC7, 0x87, 0xC3, 0xE3, 0xC3, - 0xE1, 0xF1, 0xE1, 0xF0, 0xF8, 0xF0, 0xF8, 0x7C, 0x78, 0x7C, 0x3E, 0x3C, 0x3E, 0x1F, 0x1E, 0x1F, - 0x0F, 0x8F, 0x0F, 0x87, 0xC7, 0x87, 0xC3, 0xE3, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0x80, 0x00, 0x07, 0xC0, 0x00, 0x03, 0xE0, 0x00, 0x01, 0xF0, 0x00, 0x00, 0xF8, 0x00, 0x00, - 0x7C, 0xFF, 0x80, 0x1F, 0xF0, 0x03, 0xFE, 0x00, 0x07, 0xC0, 0x00, 0xF8, 0x00, 0x1F, 0x00, 0x03, - 0xFF, 0x80, 0x7F, 0xFC, 0x0F, 0xFF, 0xC1, 0xF3, 0xF8, 0x3E, 0x0F, 0x07, 0xC1, 0xF0, 0xF8, 0x3C, - 0x1F, 0x1F, 0x83, 0xFF, 0xF0, 0x7F, 0xFC, 0x07, 0xFE, 0x00, 0xF0, 0x01, 0xFF, 0x00, 0x1F, 0xF0, - 0x01, 0xFF, 0x00, 0x1F, 0xF0, 0x01, 0xFF, 0x00, 0x1F, 0xFF, 0xC1, 0xFF, 0xFF, 0x1F, 0xFF, 0xF9, - 0xFF, 0x3F, 0x9F, 0xF0, 0xF9, 0xFF, 0x07, 0x9F, 0xF0, 0xF9, 0xFF, 0x1F, 0x9F, 0xFF, 0xF9, 0xFF, - 0xFF, 0x1F, 0xFF, 0xC1, 0xF0, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x0F, - 0xFC, 0x3F, 0xFC, 0xFF, 0xFB, 0xCF, 0xEF, 0x07, 0xFC, 0x1F, 0xF0, 0x7F, 0xC7, 0xEF, 0xFF, 0xBF, - 0xFC, 0xFF, 0xC0, 0x7F, 0xC1, 0xFF, 0xE3, 0xFF, 0xE3, 0x8F, 0xE0, 0x07, 0xC0, 0x07, 0xC0, 0x0F, - 0x8F, 0xFF, 0x1F, 0xFE, 0x3F, 0xFC, 0x00, 0xF8, 0x01, 0xF0, 0x07, 0xCF, 0x3F, 0xBF, 0xFE, 0x7F, - 0xF8, 0x7F, 0xC0, 0xF0, 0x0F, 0xE0, 0xF0, 0x3F, 0xF8, 0xF0, 0x7F, 0xFC, 0xF0, 0xFC, 0xFE, 0xF0, - 0xF8, 0x3E, 0xF1, 0xF0, 0x1F, 0xF1, 0xF0, 0x1F, 0xFF, 0xE0, 0x1F, 0xFF, 0xE0, 0x1F, 0xFF, 0xE0, - 0x1F, 0xF1, 0xF0, 0x1F, 0xF1, 0xF0, 0x1F, 0xF1, 0xF8, 0x3E, 0xF0, 0xFC, 0xFE, 0xF0, 0x7F, 0xFC, - 0xF0, 0x3F, 0xF8, 0xF0, 0x1F, 0xE0, 0x0F, 0xFC, 0x7F, 0xFC, 0xFF, 0xFB, 0xF9, 0xF7, 0xC3, 0xEF, - 0x07, 0xDF, 0x0F, 0xBF, 0x1F, 0x7F, 0xFE, 0x7F, 0xFC, 0x7F, 0xF8, 0xF9, 0xF3, 0xE3, 0xEF, 0x87, - 0xDF, 0x0F, 0xFC, 0x1F, 0xF8, 0x3E, 0x3F, 0xC1, 0xFF, 0x8F, 0xFC, 0x63, 0xE0, 0x0F, 0x8F, 0xFD, - 0xFF, 0xEF, 0xFF, 0x7C, 0xFB, 0xE7, 0xDF, 0xFE, 0xFF, 0xF3, 0xFF, 0x00, 0x01, 0xF0, 0x7F, 0x87, - 0xFE, 0x7F, 0xC7, 0xC0, 0x3C, 0x03, 0xFF, 0x1F, 0xFE, 0xFF, 0xF7, 0xEF, 0xFC, 0x3F, 0xE0, 0xFF, - 0x07, 0xFC, 0x3F, 0xE3, 0xFF, 0xBF, 0x7F, 0xF1, 0xFF, 0x07, 0xF0, 0xFF, 0xE7, 0xFF, 0xBF, 0xFD, - 0xF1, 0xFF, 0x8F, 0x7F, 0xFB, 0xFF, 0xDF, 0xFF, 0xF8, 0xFF, 0xC7, 0xFF, 0xFF, 0xFF, 0xE7, 0xFE, - 0x00, 0xFF, 0xDF, 0xFB, 0xFF, 0x7C, 0x0F, 0x81, 0xF0, 0x3E, 0x07, 0xC0, 0xF8, 0x1F, 0x03, 0xE0, - 0x7C, 0x0F, 0x80, 0x0F, 0xFE, 0x07, 0xFF, 0x03, 0xFF, 0x83, 0xE7, 0xC1, 0xF3, 0xE0, 0xF9, 0xF0, - 0x78, 0xF8, 0x3C, 0x7C, 0x1E, 0x3E, 0x1F, 0x1F, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, - 0x3F, 0xC0, 0x1F, 0xE0, 0x0F, 0xF0, 0x07, 0x80, 0x1F, 0xC1, 0xFF, 0x1F, 0xFD, 0xFB, 0xEF, 0x8F, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x07, 0xE3, 0x9F, 0xFC, 0x7F, 0xE1, 0xFF, 0x00, 0xFC, 0xF8, - 0xFB, 0xE7, 0xCF, 0x8F, 0xBE, 0xF8, 0x3F, 0xFF, 0xC1, 0xFF, 0xFC, 0x07, 0xFF, 0xC0, 0x1F, 0xFC, - 0x01, 0xFF, 0xF0, 0x1F, 0xFF, 0xC1, 0xFF, 0xDF, 0x0F, 0xBE, 0xFC, 0xF9, 0xF3, 0xEF, 0x8F, 0x8F, - 0x80, 0x7F, 0xC7, 0xFE, 0x7F, 0xE7, 0x3E, 0x01, 0xE3, 0xFE, 0x3F, 0xE3, 0xFE, 0x01, 0xF7, 0x1F, - 0x7F, 0xF7, 0xFE, 0x7F, 0xC0, 0xF8, 0x7F, 0xC7, 0xFE, 0x7F, 0xF7, 0xFF, 0xBF, 0xFF, 0xFF, 0xFF, - 0xFF, 0xEF, 0xFE, 0x7F, 0xF3, 0xFF, 0x1F, 0xF0, 0xFF, 0x87, 0x80, 0x18, 0xE1, 0xEF, 0x0F, 0xF8, - 0x3F, 0x80, 0xF8, 0x00, 0x00, 0x00, 0x1F, 0x0F, 0xF8, 0xFF, 0xCF, 0xFE, 0xFF, 0xF7, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFD, 0xFF, 0xCF, 0xFE, 0x7F, 0xE3, 0xFE, 0x1F, 0xF0, 0xF0, 0xF8, 0xFB, 0xE7, 0xCF, - 0xBE, 0x3F, 0xF0, 0xFF, 0x83, 0xFC, 0x0F, 0xF8, 0x3F, 0xF0, 0xFF, 0xC3, 0xEF, 0x8F, 0x9F, 0x3E, - 0x7E, 0xF8, 0xF8, 0x0F, 0xFC, 0x3F, 0xF0, 0xFF, 0xC3, 0xCF, 0x0F, 0x3C, 0x7C, 0xF1, 0xF3, 0xC7, - 0xCF, 0x1E, 0x3D, 0xF8, 0xFF, 0xC3, 0xFE, 0x0F, 0xF0, 0x3C, 0x78, 0x0F, 0x3E, 0x0F, 0x9F, 0x07, - 0xCF, 0xC7, 0xE7, 0xE3, 0xF3, 0xFB, 0xF9, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xEF, 0xFD, 0xF7, 0xFE, - 0x73, 0xFF, 0x01, 0xFF, 0x80, 0xF8, 0xF8, 0xF7, 0xC7, 0xBE, 0x3D, 0xF1, 0xEF, 0x8F, 0x7F, 0xFB, - 0xFF, 0xDF, 0xFE, 0xF8, 0xF7, 0xC7, 0xBE, 0x3D, 0xF1, 0xEF, 0x8F, 0x00, 0x1F, 0xC0, 0xFF, 0x87, - 0xFF, 0x3F, 0x7E, 0xF8, 0xFB, 0xC1, 0xEF, 0x07, 0xBC, 0x1E, 0xF8, 0xFB, 0xF7, 0xE7, 0xFF, 0x0F, - 0xF8, 0x1F, 0xC0, 0xFF, 0xF7, 0xFF, 0xBF, 0xFD, 0xF1, 0xEF, 0x8F, 0x7C, 0x7B, 0xE3, 0xDF, 0x1E, - 0xF8, 0xF7, 0xC7, 0xBE, 0x3D, 0xF1, 0xEF, 0x8F, 0x00, 0x7F, 0xC7, 0xFF, 0x3F, 0xFD, 0xF3, 0xFF, - 0x8F, 0xFC, 0x3F, 0xE1, 0xFF, 0x0F, 0xF8, 0xFF, 0xEF, 0xFF, 0xFD, 0xFF, 0xEF, 0xFC, 0x7C, 0x03, - 0xE0, 0x1F, 0x00, 0xF8, 0x07, 0xC0, 0x00, 0x1F, 0xE7, 0xFD, 0xFF, 0x7E, 0x6F, 0x81, 0xE0, 0x3C, - 0x07, 0x80, 0xF8, 0x1F, 0x8D, 0xFF, 0x9F, 0xF1, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x1F, 0x00, - 0xF8, 0x07, 0xC0, 0x3E, 0x01, 0xF0, 0x0F, 0x80, 0x7C, 0x03, 0xE0, 0x1F, 0x00, 0xF8, 0x00, 0xF8, - 0x7F, 0xE1, 0xE7, 0x87, 0x9F, 0x3E, 0x7C, 0xF0, 0xF3, 0xC3, 0xFF, 0x0F, 0xF8, 0x1F, 0xE0, 0x7F, - 0x80, 0xFC, 0x03, 0xF0, 0x07, 0x80, 0x3E, 0x05, 0xF0, 0x3F, 0xC0, 0xFE, 0x03, 0xF0, 0x00, 0x01, - 0xE0, 0x00, 0x78, 0x00, 0x1E, 0x00, 0x07, 0x80, 0x01, 0xE0, 0x00, 0x78, 0x00, 0xFF, 0xC0, 0xFF, - 0xFC, 0x7F, 0xFF, 0xBF, 0xFF, 0xEF, 0x9E, 0x7F, 0xC7, 0x9F, 0xF1, 0xE3, 0xFC, 0x79, 0xFF, 0x9E, - 0x7F, 0xFF, 0xBE, 0x7F, 0xFF, 0x8F, 0xFF, 0xC0, 0xFF, 0xC0, 0x07, 0x80, 0x01, 0xE0, 0x00, 0x78, - 0x00, 0x1E, 0x00, 0x07, 0x80, 0xF8, 0x79, 0xF3, 0xE3, 0xFF, 0x0F, 0xF8, 0x1F, 0xE0, 0x3F, 0x00, - 0xF8, 0x03, 0xF0, 0x1F, 0xE0, 0xFF, 0xC7, 0xCF, 0x1E, 0x3E, 0xF8, 0x7C, 0xF8, 0xF1, 0xF1, 0xE3, - 0xE3, 0xC7, 0xC7, 0x8F, 0x8F, 0x1F, 0x1E, 0x3E, 0x3C, 0x7C, 0x78, 0xF8, 0xF1, 0xF1, 0xE3, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x03, 0xC0, 0x07, 0x80, 0x0F, 0x00, 0x1E, 0xF1, 0xFF, 0x1F, 0xF1, - 0xFF, 0x1F, 0xF1, 0xFF, 0x9F, 0xFF, 0xF7, 0xFF, 0x3F, 0xF0, 0x1F, 0x01, 0xF0, 0x1F, 0x01, 0xF0, - 0xF8, 0xF1, 0xFF, 0x1E, 0x3F, 0xE3, 0xC7, 0xFC, 0x78, 0xFF, 0x8F, 0x1F, 0xF1, 0xE3, 0xFE, 0x3C, - 0x7F, 0xC7, 0x8F, 0xF8, 0xF1, 0xFF, 0x1E, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xF8, - 0xF1, 0xE7, 0xC7, 0x8F, 0x3E, 0x3C, 0x79, 0xF1, 0xE3, 0xCF, 0x8F, 0x1E, 0x7C, 0x78, 0xF3, 0xE3, - 0xC7, 0x9F, 0x1E, 0x3C, 0xF8, 0xF1, 0xE7, 0xC7, 0x8F, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0x80, 0x00, 0x3C, 0x00, 0x01, 0xE0, 0x00, 0x0F, 0x00, 0x00, 0x78, 0xFF, 0x00, 0xFF, 0x00, - 0xFF, 0x00, 0x1F, 0x00, 0x1F, 0xF8, 0x1F, 0xFC, 0x1F, 0xFE, 0x1F, 0x3E, 0x1F, 0x1E, 0x1F, 0x3E, - 0x1F, 0xFE, 0x1F, 0xFC, 0x1F, 0xF8, 0xF8, 0x03, 0xFE, 0x00, 0xFF, 0x80, 0x3F, 0xE0, 0x0F, 0xFF, - 0xC3, 0xFF, 0xF8, 0xFF, 0xFF, 0x3F, 0xE7, 0xCF, 0xF8, 0xFB, 0xFE, 0x7C, 0xFF, 0xFF, 0x3F, 0xFF, - 0xCF, 0x7F, 0xC3, 0xC0, 0xF8, 0x07, 0xC0, 0x3E, 0x01, 0xF0, 0x0F, 0xFC, 0x7F, 0xFB, 0xFF, 0xDF, - 0x3E, 0xF8, 0xFF, 0xCF, 0xBF, 0xFD, 0xFF, 0xE7, 0xFC, 0x00, 0x7F, 0x83, 0xFF, 0x1F, 0xF8, 0xE7, - 0xE0, 0x0F, 0x0F, 0xF8, 0x7F, 0xE3, 0xFE, 0x00, 0xF3, 0x9F, 0x9F, 0xF8, 0xFF, 0xC7, 0xF8, 0x00, - 0xF8, 0x3F, 0x8F, 0x87, 0xFC, 0xF8, 0xFF, 0xEF, 0x9F, 0xBE, 0xF9, 0xF1, 0xFF, 0xFE, 0x1F, 0xFF, - 0xE1, 0xFF, 0xFE, 0x1F, 0xF9, 0xF1, 0xFF, 0x9F, 0xBE, 0xF8, 0xFF, 0xEF, 0x87, 0xFC, 0xF8, 0x3F, - 0x80, 0x1F, 0xF9, 0xFF, 0xDF, 0xFE, 0xF8, 0xF7, 0xC7, 0xBF, 0xFC, 0xFF, 0xE3, 0xFF, 0x1E, 0x79, - 0xF3, 0xCF, 0x1E, 0xF8, 0xF7, 0x87, 0x80, 0x0C, 0x00, 0xF0, 0x07, 0xC0, 0x1F, 0x00, 0x78, 0x01, - 0x80, 0x00, 0x03, 0xF8, 0x3F, 0xE3, 0xFF, 0xBF, 0x7D, 0xF1, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0x00, 0xFC, 0x73, 0xFF, 0x8F, 0xFC, 0x3F, 0xE0, 0x39, 0xE3, 0xEF, 0x1F, 0x78, 0x73, 0xC0, 0x00, - 0x00, 0x00, 0x7F, 0x07, 0xFC, 0x7F, 0xF7, 0xEF, 0xBE, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, - 0x1F, 0x8E, 0x7F, 0xF1, 0xFF, 0x87, 0xFC, 0x3C, 0x00, 0xF0, 0x0F, 0xFC, 0x3F, 0xF0, 0x3C, 0x00, - 0xF0, 0x03, 0xFE, 0x0F, 0xFC, 0x3F, 0xF8, 0xF3, 0xE3, 0xC7, 0xCF, 0x1F, 0x3C, 0x7C, 0xF1, 0xF3, - 0xC7, 0xCF, 0x1F, 0x3C, 0x7C, 0xF1, 0xF3, 0xC7, 0xC0, 0x1F, 0x00, 0x7C, 0x0F, 0xE0, 0x3F, 0x80, - 0xFC, 0x06, 0x01, 0xE0, 0x3E, 0x0F, 0x01, 0xC0, 0x10, 0x00, 0x07, 0xFE, 0xFF, 0xDF, 0xFB, 0xE0, - 0x7C, 0x0F, 0x81, 0xF0, 0x3E, 0x07, 0xC0, 0xF8, 0x1F, 0x03, 0xE0, 0x7C, 0x00, 0x0F, 0xF0, 0xFF, - 0x8F, 0xFC, 0xFC, 0xE7, 0x80, 0x3F, 0xE1, 0xFF, 0x0F, 0xF8, 0x78, 0x03, 0xF3, 0x8F, 0xFC, 0x7F, - 0xF0, 0xFF, 0x00, 0x1F, 0xE3, 0xFE, 0x7F, 0xC7, 0xCC, 0x7F, 0x07, 0xFE, 0x7F, 0xE3, 0xFE, 0x03, - 0xE7, 0x1E, 0x7F, 0xE7, 0xFC, 0x7F, 0x80, 0x7F, 0xFE, 0xF0, 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFE, 0x71, 0xCF, 0x7D, 0xEF, 0xB8, 0xE0, 0x00, 0x00, 0x07, 0xC0, 0xF8, 0x1F, 0x03, - 0xE0, 0x7C, 0x0F, 0x81, 0xF0, 0x3E, 0x07, 0xC0, 0xF8, 0x1F, 0x03, 0xE0, 0x7C, 0x00, 0x0F, 0x1F, - 0x1F, 0x0F, 0x00, 0x00, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, - 0x1F, 0x1F, 0x1F, 0xFE, 0xFE, 0xFC, 0x0F, 0xFC, 0x00, 0x3F, 0xF0, 0x00, 0xFF, 0xC0, 0x03, 0xCF, - 0x00, 0x0F, 0x3C, 0x00, 0x7C, 0xFF, 0xC1, 0xF3, 0xFF, 0x87, 0xCF, 0xFF, 0x1E, 0x3C, 0x7D, 0xF8, - 0xF1, 0xFF, 0xC3, 0xFF, 0xFE, 0x0F, 0xFE, 0xF0, 0x3F, 0xF0, 0xF8, 0xF0, 0x0F, 0x8F, 0x00, 0xF8, - 0xF0, 0x0F, 0x8F, 0x00, 0xF8, 0xF0, 0x0F, 0xFF, 0xFC, 0xFF, 0xFF, 0xEF, 0xFF, 0xFF, 0xF8, 0xF9, - 0xFF, 0x8F, 0x1F, 0xF8, 0xFF, 0xFF, 0x8F, 0xFE, 0xF8, 0xFF, 0xC0, 0x3C, 0x00, 0xF0, 0x0F, 0xFC, - 0x3F, 0xF0, 0x3C, 0x00, 0xF0, 0x03, 0xFE, 0x0F, 0xFC, 0x3F, 0xF8, 0xF3, 0xE3, 0xC7, 0xCF, 0x1F, - 0x3C, 0x7C, 0xF1, 0xF3, 0xC7, 0xCF, 0x1F, 0x3C, 0x7C, 0xF1, 0xF3, 0xC7, 0xC0, 0x01, 0x80, 0x0F, - 0x00, 0x7C, 0x03, 0xE0, 0x0F, 0x00, 0x18, 0x00, 0x00, 0x3E, 0x3E, 0xF9, 0xF3, 0xEF, 0x8F, 0xFC, - 0x3F, 0xE0, 0xFF, 0x03, 0xFE, 0x0F, 0xFC, 0x3F, 0xF0, 0xFB, 0xE3, 0xE7, 0xCF, 0x9F, 0xBE, 0x3E, - 0x0C, 0x00, 0xF0, 0x07, 0xC0, 0x1F, 0x00, 0x78, 0x01, 0x80, 0x00, 0x1F, 0x0F, 0xF8, 0xFF, 0xCF, - 0xFE, 0xFF, 0xF7, 0xFF, 0xFF, 0xFF, 0xFF, 0xFD, 0xFF, 0xCF, 0xFE, 0x7F, 0xE3, 0xFE, 0x1F, 0xF0, - 0xF0, 0x18, 0xE0, 0xF7, 0x83, 0xFE, 0x07, 0xF0, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x3E, 0x1F, 0xF8, - 0x79, 0xE1, 0xE7, 0xCF, 0x9F, 0x3C, 0x3C, 0xF0, 0xFF, 0xC3, 0xFE, 0x07, 0xF8, 0x1F, 0xE0, 0x3F, - 0x00, 0xFC, 0x01, 0xE0, 0x0F, 0x81, 0x7C, 0x0F, 0xF0, 0x3F, 0x80, 0xFC, 0x00, 0xF8, 0xF7, 0xC7, - 0xBE, 0x3D, 0xF1, 0xEF, 0x8F, 0x7C, 0x7B, 0xE3, 0xDF, 0x1E, 0xF8, 0xF7, 0xC7, 0xBF, 0xFD, 0xFF, - 0xEF, 0xFF, 0x07, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x0F, 0x80, 0x03, 0xE0, 0x0F, 0xFF, 0x83, - 0xFF, 0xE0, 0xFF, 0xF8, 0x03, 0xE0, 0x00, 0xF8, 0x00, 0x3F, 0xF0, 0x0F, 0xFF, 0x03, 0xFF, 0xE0, - 0xF9, 0xF8, 0x3E, 0x1F, 0x0F, 0x87, 0xC3, 0xE1, 0xF0, 0xF8, 0x7C, 0x3E, 0x7E, 0x0F, 0xFF, 0x83, - 0xFF, 0xC0, 0xFF, 0xC0, 0x1E, 0x00, 0x3C, 0x00, 0x78, 0x00, 0xF0, 0x01, 0xE0, 0x03, 0xC0, 0x3F, - 0xFC, 0x7F, 0xF8, 0xFF, 0xF0, 0x3C, 0x00, 0x78, 0x00, 0xFF, 0xC1, 0xFF, 0xC3, 0xFF, 0xC7, 0x8F, - 0x8F, 0x1F, 0x1F, 0xFE, 0x3F, 0xF8, 0x7F, 0xE0, 0x07, 0xF8, 0x07, 0xFF, 0x83, 0xFF, 0xF1, 0xFC, - 0xFC, 0x7C, 0x0F, 0xBE, 0x03, 0xEF, 0x80, 0x7F, 0xFF, 0xBF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xDF, - 0xFF, 0xE0, 0x1E, 0x7C, 0x0F, 0x9F, 0xCF, 0xE3, 0xFF, 0xF0, 0x7F, 0xF8, 0x07, 0xF8, 0x00, 0x1F, - 0xC0, 0xFF, 0x87, 0xFF, 0x3F, 0x7E, 0xF8, 0x7B, 0xFD, 0xEF, 0xFF, 0xBD, 0xFE, 0xF8, 0x7B, 0xF7, - 0xE7, 0xFF, 0x0F, 0xF8, 0x1F, 0xC0, 0xF8, 0x03, 0xF7, 0xC0, 0x3F, 0x9F, 0x03, 0xFC, 0xF8, 0x1F, - 0x47, 0xC1, 0xF0, 0x1F, 0x0F, 0x80, 0xF8, 0x78, 0x03, 0xC7, 0xC0, 0x1F, 0x3E, 0x00, 0xF9, 0xE0, - 0x03, 0xFF, 0x00, 0x1F, 0xF0, 0x00, 0x7F, 0x80, 0x03, 0xFC, 0x00, 0x0F, 0xC0, 0x00, 0x7E, 0x00, - 0x03, 0xE0, 0x00, 0xF8, 0x3E, 0xF8, 0x7E, 0x78, 0x7E, 0x7C, 0xF8, 0x7C, 0xF0, 0x3C, 0xF0, 0x3F, - 0xE0, 0x1F, 0xE0, 0x1F, 0xE0, 0x1F, 0xC0, 0x0F, 0xC0, 0x0F, 0x80, 0x07, 0x80, 0x1E, 0x70, 0x07, - 0xBC, 0x00, 0xFF, 0x00, 0x3F, 0x80, 0x07, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x78, 0xF0, - 0x3E, 0x3C, 0x1F, 0x8F, 0x0F, 0xE3, 0xC7, 0xF8, 0xF1, 0xFE, 0x3C, 0xFF, 0x8F, 0x7D, 0xE3, 0xFE, - 0x78, 0xFF, 0x9E, 0x3F, 0xC7, 0x8F, 0xE1, 0xE3, 0xF8, 0x78, 0xFC, 0x1E, 0x3E, 0x07, 0xFF, 0x81, - 0xFF, 0xC0, 0x7F, 0x00, 0x07, 0x80, 0x01, 0xE0, 0x00, 0xF8, 0x00, 0x3C, 0x00, 0x06, 0x00, 0x38, - 0xE0, 0x7B, 0xC0, 0xFF, 0x80, 0xFE, 0x00, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x78, 0x7C, 0xF1, 0xF9, - 0xE3, 0xF3, 0xCF, 0xE7, 0xBF, 0xCF, 0xFF, 0x9F, 0xFF, 0x3F, 0xFE, 0x7F, 0x7C, 0xFC, 0xF9, 0xF9, - 0xFF, 0xE3, 0xFF, 0x87, 0xE0, 0x03, 0xC0, 0x0F, 0x80, 0x1E, 0x00, 0x18, 0x3C, 0x00, 0xFF, 0x80, - 0xFF, 0x80, 0xFF, 0x80, 0x3C, 0x00, 0x3C, 0x00, 0x3F, 0xF8, 0x3F, 0xFC, 0x3F, 0xFE, 0x3C, 0x7E, - 0x3C, 0x1F, 0x3C, 0x1F, 0x3C, 0x1F, 0x3C, 0x7E, 0x3F, 0xFE, 0x3F, 0xFC, 0x3F, 0xF0, 0x7C, 0x01, - 0xF0, 0x0F, 0xF8, 0x3F, 0xE0, 0x7C, 0x01, 0xFF, 0x87, 0xFF, 0x9F, 0xFE, 0x7C, 0xFD, 0xF1, 0xF7, - 0xCF, 0xDF, 0xFE, 0x7F, 0xF8, 0xFF, 0x80, 0xFF, 0xE3, 0xFF, 0xCF, 0xFF, 0xBC, 0x7F, 0xF0, 0x7F, - 0xDD, 0xFF, 0x7F, 0xFD, 0xFE, 0xFF, 0xFB, 0xFF, 0xCF, 0xFE, 0x3C, 0x3C, 0xF0, 0xF3, 0xC1, 0x8F, - 0x00, 0x3C, 0x00, 0xF0, 0x00, 0x7F, 0xC3, 0xFF, 0xCF, 0xFF, 0x3E, 0x7E, 0xF8, 0xFB, 0xE1, 0xFF, - 0x87, 0xFE, 0xDF, 0xFF, 0xFB, 0xFF, 0xEF, 0xFF, 0xBF, 0xFC, 0xFF, 0xF3, 0xE3, 0xCF, 0x87, 0x3E, - 0x1C, 0xF8, 0x03, 0xE0, 0x00, 0x00, 0xF0, 0x0F, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x0F, + 0x3C, 0xE7, 0x9E, 0x7B, 0xE7, 0x00, 0xF7, 0xBD, 0xC0, 0x71, 0xE3, 0xEF, 0xFF, 0xE0, 0x00, 0xE7, + 0x1C, 0xF3, 0xFF, 0xDF, 0x0C, 0x00, 0xF0, 0x07, 0xC0, 0x1F, 0x00, 0x78, 0x01, 0x80, 0x00, 0x1F, + 0xFE, 0xFF, 0xF7, 0xFF, 0xBC, 0x01, 0xE0, 0x0F, 0x00, 0x78, 0x03, 0xFF, 0x9F, 0xFC, 0xFF, 0xE7, + 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0x79, 0xC3, 0xDF, 0x1E, 0xF8, + 0xF3, 0x80, 0x00, 0x00, 0x03, 0xFF, 0xDF, 0xFE, 0xFF, 0xF7, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, + 0x7F, 0xF3, 0xFF, 0x9F, 0xFC, 0xF0, 0x07, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, + 0xE0, 0xFF, 0xFE, 0x0F, 0xFF, 0xE0, 0xFF, 0xFE, 0x00, 0x7C, 0x00, 0x07, 0xC0, 0x00, 0x7C, 0x00, + 0x07, 0xFF, 0x80, 0x7F, 0xFC, 0x07, 0xFF, 0xE0, 0x7C, 0x7E, 0x07, 0xC1, 0xE0, 0x7C, 0x1F, 0x07, + 0xC1, 0xF0, 0x7C, 0x3E, 0x07, 0xDF, 0xE0, 0x7D, 0xFC, 0x07, 0xDF, 0x80, 0x03, 0x00, 0x78, 0x0F, + 0x81, 0xF0, 0x1E, 0x00, 0xC0, 0x00, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, - 0xF0, 0x0F, 0x00, 0x01, 0xC0, 0x38, 0x07, 0x7F, 0xEF, 0xFD, 0xFF, 0xBE, 0x07, 0xC0, 0xF8, 0x1F, - 0x03, 0xE0, 0x7C, 0x0F, 0x81, 0xF0, 0x3E, 0x07, 0xC0, 0x3F, 0xFE, 0x7F, 0xFC, 0xFF, 0xF9, 0xF0, - 0x03, 0xE0, 0x07, 0xC0, 0x0F, 0x80, 0x7F, 0xF0, 0xFF, 0xE1, 0xFF, 0xC0, 0xF8, 0x01, 0xF0, 0x03, - 0xE0, 0x07, 0xC0, 0x0F, 0x80, 0x1F, 0x00, 0x3E, 0x00, 0x3F, 0xF3, 0xFF, 0x3F, 0xF3, 0xC0, 0x3C, - 0x03, 0xC0, 0xFF, 0xCF, 0xFC, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x00, 0xFF, 0xF3, 0xFF, - 0xCF, 0xFF, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0xFC, 0x3F, 0xFC, 0xFF, 0xFB, 0xC7, 0xEF, 0x07, - 0xFC, 0x1F, 0xF0, 0x3F, 0xC0, 0xFF, 0x03, 0xFC, 0x1F, 0xF0, 0x7C, 0x01, 0xF0, 0x1F, 0x81, 0xFC, - 0x07, 0xF0, 0x1F, 0x00, 0xFF, 0xE7, 0xFF, 0x3F, 0xF9, 0xF0, 0x0F, 0x80, 0x7F, 0xE3, 0xFF, 0x9F, - 0xFE, 0xF9, 0xF7, 0xC7, 0xBE, 0x3F, 0xF0, 0xFF, 0x8F, 0x80, 0x7C, 0x07, 0xC0, 0xFE, 0x07, 0xE0, - 0x3E, 0x00, 0xFC, 0x3E, 0x1F, 0x1F, 0x8F, 0x8F, 0xC3, 0xE3, 0xE7, 0xE0, 0xFC, 0xFB, 0xF0, 0x1F, - 0xBE, 0xF8, 0x03, 0xFF, 0xFC, 0x00, 0x7F, 0xFF, 0x00, 0x0F, 0xFF, 0x80, 0x03, 0xFF, 0xC0, 0x00, - 0xFF, 0xF8, 0x00, 0x7F, 0xFF, 0x00, 0x3E, 0xFF, 0xE0, 0x1F, 0x3E, 0xF8, 0x0F, 0xCF, 0x9F, 0x07, - 0xE3, 0xE3, 0xF9, 0xF0, 0xF8, 0xFE, 0xF8, 0x3E, 0x1F, 0x80, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x78, - 0x00, 0x00, 0x1E, 0x00, 0x00, 0x07, 0x80, 0xFC, 0xF8, 0xF9, 0xF3, 0xE7, 0xC3, 0xEF, 0xBE, 0x07, - 0xFF, 0xF8, 0x1F, 0xFF, 0xC0, 0x3F, 0xFE, 0x00, 0x7F, 0xF0, 0x03, 0xFF, 0xE0, 0x1F, 0xFF, 0xC0, - 0xFF, 0xFF, 0x83, 0xEF, 0xBF, 0xDF, 0x3E, 0x7F, 0xF8, 0xF8, 0xFC, 0x00, 0x00, 0xF0, 0x00, 0x03, - 0xC0, 0x00, 0x0F, 0x00, 0x00, 0x3C, 0x3F, 0xE0, 0xFF, 0xE1, 0xFF, 0xE1, 0xC7, 0xE0, 0x07, 0xC0, - 0x0F, 0x80, 0x7E, 0x0F, 0xFC, 0x1F, 0xF0, 0x3F, 0xF8, 0x03, 0xF0, 0x01, 0xE0, 0x03, 0xCF, 0x1F, - 0x9F, 0xFF, 0x7F, 0xFC, 0x3F, 0xF0, 0x0F, 0x00, 0x1F, 0x00, 0x1E, 0x00, 0xFC, 0x01, 0xF0, 0x00, - 0x7F, 0xC7, 0xFE, 0x7F, 0xE7, 0x3E, 0x01, 0xE3, 0xFE, 0x3F, 0xE3, 0xFE, 0x01, 0xF7, 0x1F, 0x7F, - 0xF7, 0xFE, 0x7F, 0xC0, 0xF0, 0x0F, 0x01, 0x78, 0x1F, 0x81, 0xF0, 0xF0, 0x7C, 0xF0, 0xFC, 0xF1, - 0xF8, 0xF3, 0xF0, 0xF7, 0xE0, 0xFF, 0xC0, 0xFF, 0x80, 0xFF, 0x00, 0xFF, 0x80, 0xFF, 0xC0, 0xFF, - 0xC0, 0xF7, 0xE0, 0xF3, 0xF0, 0xF1, 0xF8, 0xF0, 0xFF, 0xF0, 0x7F, 0xF0, 0x7F, 0x00, 0x0F, 0x00, - 0x0F, 0x00, 0x0F, 0x00, 0x0F, 0x00, 0x0F, 0xF8, 0xFB, 0xE7, 0xCF, 0xBE, 0x3F, 0xF0, 0xFF, 0x83, - 0xFC, 0x0F, 0xF8, 0x3F, 0xF0, 0xFF, 0xC3, 0xEF, 0x8F, 0x9F, 0xFE, 0x3F, 0xF8, 0xFC, 0x00, 0xF0, - 0x03, 0xC0, 0x0F, 0x00, 0x3C, 0xF0, 0x0F, 0xBC, 0x07, 0xEF, 0x01, 0xF3, 0xDC, 0xF8, 0xF7, 0x7C, - 0x3D, 0xFE, 0x0F, 0x7F, 0x83, 0xFF, 0xC0, 0xFF, 0xF0, 0x3F, 0xFE, 0x0F, 0x7F, 0xC3, 0xDF, 0xF0, - 0xF7, 0x7E, 0x3D, 0xCF, 0xCF, 0x01, 0xF3, 0xC0, 0x7E, 0xF0, 0x0F, 0x80, 0xF8, 0x3F, 0xF8, 0x3E, - 0xFF, 0x7C, 0xFF, 0xF8, 0xFF, 0xF0, 0xFF, 0xE0, 0xFF, 0xF0, 0xFF, 0xF0, 0xFF, 0xF8, 0xFF, 0x7C, - 0xF8, 0x3E, 0xF8, 0x3E, 0xF8, 0x1F, 0x3E, 0x00, 0x0F, 0x83, 0xEF, 0xF9, 0xFB, 0xFE, 0xFC, 0xFF, - 0xFE, 0x0F, 0xBF, 0x03, 0xFF, 0x80, 0xFF, 0xC0, 0x3F, 0xE0, 0x0F, 0xF0, 0x03, 0xFE, 0x00, 0xFF, - 0xC0, 0x3F, 0xF8, 0x0F, 0xBF, 0x03, 0xE7, 0xE0, 0xF8, 0xFC, 0x3E, 0x1F, 0x0F, 0x83, 0xE0, 0x7C, - 0x01, 0xFE, 0x7F, 0xFD, 0xF7, 0xFF, 0xC7, 0xDF, 0x0F, 0xFC, 0x1F, 0xF0, 0x3F, 0xC0, 0x7F, 0xC0, - 0xFF, 0xC1, 0xFF, 0xC3, 0xEF, 0xC7, 0xC7, 0xCF, 0x8F, 0xC0, 0xFF, 0x83, 0xEF, 0xF8, 0x7C, 0xFF, - 0x8F, 0x80, 0xF9, 0xF0, 0x0F, 0xBF, 0x00, 0xFF, 0xC0, 0x0F, 0xF8, 0x00, 0xFF, 0x80, 0x0F, 0xFC, - 0x00, 0xFF, 0xE0, 0x0F, 0xFE, 0x00, 0xFB, 0xF0, 0x0F, 0x9F, 0x80, 0xF8, 0xFC, 0x0F, 0x87, 0xC0, - 0xF8, 0x3E, 0x0F, 0x83, 0xF0, 0xFF, 0x1F, 0x7F, 0x9F, 0x3F, 0xDF, 0x03, 0xFF, 0x01, 0xFF, 0x00, - 0xFF, 0x00, 0x7F, 0xC0, 0x3F, 0xF0, 0x1F, 0xFC, 0x0F, 0xBE, 0x07, 0xCF, 0x83, 0xE7, 0xE1, 0xF1, - 0xF0, 0xF0, 0x3E, 0x3C, 0x0F, 0x8F, 0x03, 0xE3, 0xC0, 0xF8, 0xF0, 0x3E, 0x3C, 0x0F, 0x8F, 0x03, - 0xE3, 0xFF, 0xF8, 0xFF, 0xFE, 0x3F, 0xFF, 0x8F, 0x03, 0xE3, 0xC0, 0xF8, 0xF0, 0x3E, 0x3C, 0x0F, - 0x8F, 0x03, 0xFF, 0xC0, 0xFF, 0xF0, 0x3F, 0xC0, 0x00, 0xF0, 0x00, 0x3C, 0x00, 0x0F, 0x00, 0x03, - 0xC0, 0x00, 0xF0, 0xF8, 0xF1, 0xF1, 0xE3, 0xE3, 0xC7, 0xC7, 0x8F, 0x8F, 0x1F, 0xFE, 0x3F, 0xFC, - 0x7F, 0xF8, 0xF8, 0xF1, 0xF1, 0xE3, 0xE3, 0xFF, 0xC7, 0xFF, 0x8F, 0xE0, 0x03, 0xC0, 0x07, 0x80, - 0x0F, 0x00, 0x1E, 0xF0, 0x3F, 0xFE, 0x07, 0xFF, 0xC0, 0xFF, 0xF8, 0x1F, 0x0F, 0x03, 0xE1, 0xE0, - 0x7C, 0x3C, 0x0F, 0x87, 0xFF, 0xF0, 0xFF, 0xFE, 0x1F, 0xFF, 0xC3, 0xC0, 0xF8, 0x78, 0x1F, 0x0F, - 0x03, 0xE1, 0xE0, 0x7C, 0x3C, 0x0F, 0x87, 0x81, 0xF0, 0xF0, 0x3E, 0x00, 0xF8, 0xFE, 0xF8, 0xFE, - 0xF8, 0xFE, 0xF8, 0xF0, 0xF8, 0xF0, 0xFF, 0xF0, 0xFF, 0xF0, 0xFF, 0xF0, 0xF8, 0xF0, 0xF8, 0xF0, - 0xF8, 0xF0, 0xF8, 0xF0, 0xF8, 0xF0, 0xFF, 0xFE, 0x00, 0x7F, 0xFF, 0x00, 0x3F, 0xFF, 0x80, 0x1E, - 0x07, 0xC0, 0x0F, 0x03, 0xE0, 0x07, 0x81, 0xF0, 0x03, 0xC0, 0xFF, 0xE1, 0xE0, 0x7F, 0xF8, 0xF0, - 0x3F, 0xFE, 0x78, 0x1F, 0x3F, 0xBC, 0x0F, 0x83, 0xDE, 0x07, 0xC1, 0xFF, 0x03, 0xE0, 0xFF, 0x81, - 0xF0, 0x3F, 0xC0, 0xF8, 0x3F, 0xE0, 0x7C, 0x1F, 0xF0, 0x3E, 0x0F, 0x80, 0x00, 0x07, 0x80, 0x00, - 0x0F, 0xC0, 0x00, 0x1F, 0xC0, 0x00, 0x0F, 0xC0, 0x00, 0x0F, 0xC0, 0xFF, 0xF0, 0x0F, 0xFF, 0x00, - 0xFF, 0xF0, 0x0F, 0x8F, 0x00, 0xF8, 0xF0, 0x0F, 0x8F, 0xF8, 0xF8, 0xFF, 0xEF, 0x8F, 0xFE, 0xF8, - 0xFB, 0xFF, 0x8F, 0x0F, 0xF8, 0xF0, 0xFF, 0x8F, 0x0F, 0xF8, 0xF0, 0xF0, 0x00, 0x0F, 0x00, 0x01, - 0xF0, 0x00, 0xFE, 0x00, 0x0F, 0xE0, 0x00, 0xFC, 0x07, 0xFC, 0x03, 0xFF, 0x80, 0xFF, 0xE0, 0x3F, - 0x8C, 0x07, 0xC0, 0x01, 0xF0, 0xFE, 0x3E, 0x3F, 0xE7, 0xCF, 0xFE, 0xF9, 0xF7, 0xDF, 0x3C, 0x7B, - 0xEF, 0x8F, 0x7D, 0xF1, 0xE7, 0xFE, 0x7C, 0xFF, 0xFF, 0x8F, 0xFF, 0xE0, 0xFF, 0xF8, 0x07, 0xFC, - 0x00, 0x1F, 0xE0, 0x01, 0xFF, 0x00, 0x0F, 0xE0, 0x00, 0x7C, 0x1F, 0xC0, 0x7F, 0x81, 0xFF, 0x07, - 0xE6, 0x0F, 0x1F, 0x9E, 0x7F, 0xBD, 0xFF, 0x7B, 0xDE, 0xF7, 0x9D, 0xFF, 0x79, 0xFF, 0xF1, 0xFF, - 0xC1, 0xFF, 0x00, 0x7F, 0x00, 0x7F, 0x00, 0x7E, 0x00, 0x3C, 0x07, 0xFC, 0x3F, 0xFC, 0xFF, 0xF3, - 0xF8, 0xE7, 0xC0, 0x1F, 0x00, 0x3E, 0x00, 0x7C, 0x00, 0xF8, 0x01, 0xF0, 0x03, 0xE0, 0x07, 0xC0, - 0x07, 0xC0, 0x0F, 0xE3, 0x8F, 0xFF, 0x8F, 0xFF, 0x07, 0xFC, 0x03, 0x80, 0x07, 0x80, 0x07, 0x00, - 0x7E, 0x00, 0xF8, 0x00, 0x1F, 0xE7, 0xFD, 0xFF, 0x7E, 0x6F, 0x81, 0xE0, 0x3C, 0x07, 0x80, 0xF8, - 0x1F, 0x8D, 0xFF, 0x9F, 0xF0, 0xFE, 0x1E, 0x01, 0xE0, 0x3C, 0x1F, 0x83, 0xE0, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFF, 0xF8, 0x3E, 0x00, 0x7C, 0x00, 0xF8, 0x01, 0xF0, 0x03, 0xE0, 0x07, 0xC0, 0x0F, 0x80, - 0x1F, 0x00, 0x3E, 0x00, 0x7C, 0x00, 0xF8, 0x01, 0xFE, 0x03, 0xFC, 0x07, 0xF8, 0x00, 0xF0, 0x01, - 0xE0, 0x03, 0xC0, 0x07, 0x80, 0x0F, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x1F, 0x00, 0xF8, 0x07, - 0xC0, 0x3E, 0x01, 0xF0, 0x0F, 0x80, 0x7C, 0x03, 0xF8, 0x1F, 0xC0, 0xFE, 0x00, 0xF0, 0x07, 0x80, - 0x3C, 0x01, 0xE0, 0xF8, 0x1F, 0xBE, 0x0F, 0x9F, 0x0F, 0x87, 0xC7, 0xC3, 0xE7, 0xC0, 0xFB, 0xE0, - 0x7F, 0xE0, 0x1F, 0xF0, 0x07, 0xF0, 0x03, 0xF0, 0x00, 0xF8, 0x00, 0x7C, 0x00, 0x3E, 0x00, 0x1F, - 0x00, 0x0F, 0x80, 0x07, 0xC0, 0x03, 0xE0, 0x00, 0xF8, 0x7F, 0xE1, 0xE7, 0x8F, 0x9F, 0x3E, 0x7C, - 0xF0, 0xF7, 0xC3, 0xFF, 0x07, 0xF8, 0x1F, 0xE0, 0x7F, 0x00, 0xFC, 0x03, 0xE0, 0x07, 0x80, 0x1E, - 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0xF8, 0x1F, 0xBE, 0x0F, 0x9F, 0x0F, 0x87, 0xC7, - 0xC3, 0xE7, 0xC0, 0xFB, 0xE0, 0x7F, 0xE0, 0x1F, 0xF0, 0x07, 0xF0, 0x03, 0xF0, 0x07, 0xFF, 0x03, - 0xFF, 0x81, 0xFF, 0xC0, 0x1F, 0x00, 0x0F, 0x80, 0x07, 0xC0, 0x03, 0xE0, 0x00, 0xF8, 0x7F, 0xE1, - 0xE7, 0x8F, 0x9F, 0x3E, 0x7C, 0xF0, 0xF7, 0xC3, 0xFF, 0x07, 0xF8, 0x1F, 0xE0, 0x7F, 0x00, 0xFC, - 0x0F, 0xFC, 0x3F, 0xF0, 0x1E, 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0xFC, 0x1F, 0x1F, - 0x8F, 0xC3, 0xE3, 0xE0, 0xFD, 0xF0, 0x1F, 0xFC, 0x03, 0xFE, 0x00, 0xFF, 0x00, 0x1F, 0xC0, 0x03, - 0xE0, 0x01, 0xFC, 0x00, 0xFF, 0x80, 0x7F, 0xF0, 0x1F, 0x7C, 0x0F, 0x9F, 0x87, 0xE3, 0xFD, 0xF0, - 0x7F, 0xF8, 0x1F, 0xC0, 0x01, 0xF0, 0x00, 0x7C, 0x00, 0x1F, 0x00, 0x07, 0xC0, 0x01, 0xF0, 0xF8, - 0x78, 0xF9, 0xF0, 0xFF, 0xC1, 0xFF, 0x01, 0xFE, 0x01, 0xF8, 0x03, 0xF0, 0x07, 0xE0, 0x1F, 0xE0, - 0x7F, 0xE1, 0xF3, 0xFB, 0xC7, 0xFF, 0x87, 0xE0, 0x03, 0xC0, 0x07, 0x80, 0x0F, 0x00, 0x1E, 0xFF, - 0xFD, 0xF1, 0xFF, 0xFB, 0xE3, 0xFF, 0xF7, 0xC0, 0x3C, 0x0F, 0x80, 0x78, 0x1F, 0x00, 0xF0, 0x3E, - 0x01, 0xE0, 0x7C, 0x03, 0xC0, 0xF8, 0x07, 0x81, 0xF0, 0x0F, 0x03, 0xE0, 0x1E, 0x07, 0xC0, 0x3C, - 0x0F, 0x80, 0x78, 0x1F, 0x00, 0xF0, 0x3E, 0x01, 0xFF, 0xFF, 0x83, 0xFF, 0xFF, 0x07, 0xFF, 0xFE, - 0x00, 0x00, 0x3C, 0x00, 0x00, 0x78, 0x00, 0x00, 0xF0, 0x00, 0x01, 0xE0, 0x00, 0x03, 0xC0, 0xFF, - 0xDE, 0x7F, 0xEF, 0x3F, 0xF7, 0x87, 0xC3, 0xC3, 0xE1, 0xE1, 0xF0, 0xF0, 0xF8, 0x78, 0x7C, 0x3C, - 0x3E, 0x1E, 0x1F, 0x0F, 0x0F, 0xFF, 0xE7, 0xFF, 0xF3, 0xFF, 0xF8, 0x00, 0x3C, 0x00, 0x1E, 0x00, - 0x0F, 0x00, 0x07, 0x80, 0xF8, 0x3E, 0x7C, 0x1F, 0x3E, 0x0F, 0x9F, 0x07, 0xCF, 0x83, 0xE7, 0xC1, - 0xF3, 0xE0, 0xF9, 0xF8, 0x7C, 0x7F, 0xFE, 0x3F, 0xFF, 0x07, 0xFF, 0x80, 0x07, 0xC0, 0x03, 0xE0, - 0x01, 0xF0, 0x00, 0xFE, 0x00, 0x7F, 0x00, 0x3F, 0x80, 0x07, 0xC0, 0x03, 0xE0, 0x01, 0xF0, 0x00, - 0xF8, 0x00, 0x7C, 0xF8, 0xF1, 0xF1, 0xE3, 0xE3, 0xC7, 0xC7, 0x8F, 0x8F, 0x1F, 0x9E, 0x1F, 0xFC, - 0x3F, 0xF8, 0x3F, 0xF0, 0x01, 0xE0, 0x03, 0xF8, 0x07, 0xF0, 0x0F, 0xE0, 0x03, 0xC0, 0x07, 0x80, - 0x0F, 0x00, 0x1E, 0xF8, 0x3F, 0xE0, 0xFF, 0x83, 0xFE, 0x0F, 0xF8, 0x3F, 0xEE, 0xFF, 0xBB, 0xFF, - 0xEF, 0x7F, 0xFD, 0xFF, 0xF1, 0xFF, 0xC0, 0xEF, 0x03, 0xBC, 0x0E, 0xF0, 0x03, 0xC0, 0x0F, 0x00, - 0x3C, 0xF8, 0x7F, 0xC3, 0xFE, 0x1F, 0xF0, 0xFF, 0xB7, 0xFF, 0xBD, 0xFF, 0xEF, 0xFF, 0x3F, 0xF8, - 0x1B, 0xC0, 0xDE, 0x00, 0xF0, 0x07, 0x80, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x03, - 0xFF, 0x8F, 0xFF, 0xBF, 0xFF, 0xF8, 0xFF, 0xC1, 0xFF, 0x03, 0xFC, 0x0F, 0xF0, 0x3F, 0xC0, 0xFF, - 0x03, 0xFC, 0x0F, 0xF0, 0x3C, 0x78, 0x07, 0xC0, 0x3E, 0x01, 0xF0, 0x0F, 0x80, 0x7C, 0x03, 0xFF, - 0x1F, 0xFC, 0xFF, 0xF7, 0xCF, 0xBE, 0x3D, 0xF1, 0xEF, 0x8F, 0x7C, 0x7B, 0xE3, 0xDF, 0x1E, 0xF8, - 0xF7, 0xC7, 0xBE, 0x3C, 0x00, 0x7F, 0x80, 0x07, 0xFE, 0x00, 0x7F, 0xF8, 0x07, 0xE7, 0xEF, 0x7E, - 0x1F, 0x7B, 0xE0, 0x7F, 0xFF, 0x03, 0xFF, 0xFF, 0xFF, 0x7F, 0xFF, 0xF8, 0xFF, 0xFF, 0xC1, 0xF0, - 0x00, 0x0F, 0x80, 0x00, 0x7C, 0x00, 0x01, 0xFC, 0xF0, 0x07, 0xFF, 0xC0, 0x1F, 0xFE, 0x00, 0x7F, - 0xC0, 0x01, 0xFC, 0x71, 0xFF, 0x3D, 0xFF, 0xDF, 0xFB, 0xEF, 0xF8, 0xFF, 0xFF, 0xFD, 0xFF, 0xFE, - 0x7F, 0xFF, 0x0F, 0x80, 0x07, 0xE3, 0x81, 0xFF, 0xC0, 0x7F, 0xE0, 0x1F, 0xF0, 0x00, 0x7F, 0x80, - 0x07, 0xFE, 0x00, 0x7F, 0xF8, 0x07, 0xE7, 0xEF, 0x7E, 0x1F, 0x7B, 0xE0, 0x7F, 0xFF, 0x03, 0xFF, - 0xFF, 0xFF, 0x7F, 0xFF, 0xF8, 0xFF, 0xFF, 0xC1, 0xF0, 0x00, 0x0F, 0x80, 0x00, 0x7C, 0x00, 0x01, - 0xFC, 0xF0, 0x0F, 0xFF, 0xC0, 0x1F, 0xFE, 0x00, 0x7F, 0xE0, 0x00, 0xF0, 0x00, 0x07, 0x80, 0x00, - 0x3C, 0x00, 0x01, 0xE0, 0x00, 0x01, 0xFC, 0x71, 0xFF, 0x3D, 0xFF, 0xDF, 0xFB, 0xEF, 0xF8, 0xFF, - 0xFF, 0xFD, 0xFF, 0xFE, 0x7F, 0xFF, 0x0F, 0x80, 0x07, 0xE3, 0x81, 0xFF, 0xC0, 0x7F, 0xE0, 0x1F, - 0xF0, 0x03, 0xC0, 0x01, 0xE0, 0x00, 0xF0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, - 0x00, 0xE3, 0x00, 0x00, 0x7B, 0xC0, 0x00, 0x3F, 0xE0, 0x00, 0x0F, 0xE0, 0x00, 0x03, 0xE0, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF8, 0x7C, 0x3E, 0x7E, 0x3E, 0x3F, 0x1F, 0x1F, 0x3F, 0x0F, - 0xCF, 0xBF, 0x03, 0xF7, 0xDF, 0x00, 0xFF, 0xFF, 0x00, 0x3F, 0xFF, 0x80, 0x0F, 0xFF, 0x80, 0x07, - 0xFF, 0x80, 0x03, 0xFF, 0xE0, 0x03, 0xFF, 0xF8, 0x03, 0xEF, 0xFE, 0x03, 0xE7, 0xDF, 0x83, 0xF3, - 0xE7, 0xC3, 0xF1, 0xF1, 0xF1, 0xF0, 0xF8, 0xFD, 0xF0, 0x7C, 0x3E, 0x01, 0x8C, 0x00, 0x1E, 0xF0, - 0x00, 0xFF, 0x80, 0x03, 0xF8, 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x9F, 0x1F, - 0x7C, 0xF9, 0xF1, 0xF7, 0xDF, 0x07, 0xFF, 0xF8, 0x3F, 0xFF, 0x80, 0xFF, 0xF8, 0x03, 0xFF, 0x80, - 0x3F, 0xFE, 0x03, 0xFF, 0xF8, 0x3F, 0xFB, 0xE1, 0xF7, 0xDF, 0x9F, 0x3E, 0x7D, 0xF1, 0xF1, 0xF0, - 0xF0, 0x7D, 0xE1, 0xF3, 0xC7, 0xE7, 0x9F, 0x8F, 0x7E, 0x1E, 0xF8, 0x3F, 0xE0, 0x7F, 0xE0, 0xFF, - 0xF1, 0xFF, 0xF3, 0xCF, 0xF7, 0x83, 0xEF, 0x03, 0xDE, 0x07, 0xBC, 0x0F, 0x78, 0x1E, 0xF0, 0x3C, - 0x00, 0xF8, 0x07, 0xF0, 0x3F, 0xC0, 0x7F, 0x00, 0xFC, 0x00, 0xF8, 0xFF, 0xCF, 0xBE, 0xF9, 0xFF, - 0x8F, 0xF8, 0x7F, 0xE3, 0xFF, 0x9F, 0xFE, 0xF9, 0xF7, 0xC7, 0xFE, 0x1F, 0xF0, 0xFF, 0x87, 0x80, - 0x7C, 0x07, 0xC0, 0xFE, 0x07, 0xE0, 0x3E, 0x00, 0x07, 0xFF, 0xC0, 0x3F, 0xFE, 0x01, 0xFF, 0xF0, - 0x0F, 0x8F, 0x80, 0x7C, 0x7C, 0x03, 0xE3, 0xE0, 0x1E, 0x1F, 0x00, 0xF0, 0xF8, 0x07, 0x87, 0xC0, - 0x3C, 0x3E, 0x03, 0xE1, 0xF0, 0x1F, 0x0F, 0x81, 0xF0, 0x7C, 0x3F, 0x83, 0xE3, 0xF8, 0x1F, 0xFF, - 0x80, 0xFE, 0xF0, 0x07, 0xF0, 0x00, 0x07, 0x80, 0x00, 0x7C, 0x00, 0x03, 0xC0, 0x00, 0x3E, 0x00, - 0x00, 0xE0, 0x0F, 0xFC, 0x07, 0xFE, 0x03, 0xFF, 0x01, 0xE7, 0x80, 0xF3, 0xC0, 0xF9, 0xE0, 0x7C, - 0xF0, 0x3E, 0x78, 0x1E, 0x3C, 0x3F, 0x1E, 0x3F, 0x0F, 0xFF, 0x07, 0xFF, 0x03, 0xF0, 0x00, 0x78, - 0x00, 0x7C, 0x00, 0x3C, 0x00, 0x0C, 0x00, 0xF0, 0x3F, 0xE0, 0x7F, 0xC0, 0xFF, 0x81, 0xFF, 0x03, + 0x07, 0xFC, 0x1F, 0xFE, 0x3F, 0xFE, 0x7F, 0x1C, 0x7C, 0x00, 0xF8, 0x00, 0xF8, 0x00, 0xFF, 0xF0, + 0xFF, 0xF0, 0xFF, 0xF0, 0xF8, 0x00, 0xF8, 0x00, 0x7C, 0x00, 0x7F, 0x3C, 0x3F, 0xFE, 0x1F, 0xFE, + 0x07, 0xFC, 0x0F, 0xF0, 0xFF, 0xE7, 0xFF, 0x9F, 0x9C, 0x7C, 0x01, 0xF0, 0x07, 0xF8, 0x0F, 0xF8, + 0x1F, 0xF0, 0x3F, 0xE0, 0x1F, 0xC0, 0x1F, 0x00, 0x7D, 0xE3, 0xF7, 0xFF, 0x9F, 0xFE, 0x3F, 0xE0, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0xF3, 0xFC, 0xFF, 0x3F, 0xCF, 0x00, 0x00, + 0x01, 0xE0, 0x78, 0x1E, 0x07, 0x81, 0xE0, 0x78, 0x1E, 0x07, 0x81, 0xE0, 0x78, 0x1E, 0x07, 0x81, + 0xE0, 0x78, 0x1E, 0x07, 0x81, 0xE0, 0x01, 0xF0, 0x1F, 0x01, 0xF0, 0x1F, 0x01, 0xF0, 0x1F, 0x01, + 0xF0, 0x1F, 0x01, 0xF0, 0x1F, 0x01, 0xF0, 0x1F, 0x01, 0xF7, 0x3E, 0xFF, 0xEF, 0xFC, 0x7F, 0x80, + 0x03, 0xFF, 0xC0, 0x00, 0x7F, 0xFC, 0x00, 0x07, 0xFF, 0xC0, 0x00, 0x7C, 0x7C, 0x00, 0x07, 0xC7, + 0xC0, 0x00, 0x7C, 0x7C, 0x00, 0x07, 0xC7, 0xFF, 0x00, 0x7C, 0x7F, 0xFC, 0x07, 0x87, 0xFF, 0xE0, + 0x78, 0x7C, 0x7E, 0x07, 0x87, 0xC1, 0xE0, 0xF8, 0x7C, 0x1E, 0x1F, 0x07, 0xC1, 0xE7, 0xF0, 0x7C, + 0x7E, 0xFE, 0x07, 0xFF, 0xEF, 0xC0, 0x7F, 0xFC, 0xF8, 0x03, 0xFF, 0x00, 0xF0, 0x3E, 0x00, 0xF0, + 0x3E, 0x00, 0xF0, 0x3E, 0x00, 0xF0, 0x3E, 0x00, 0xF0, 0x3E, 0x00, 0xF0, 0x3E, 0x00, 0xFF, 0xFF, + 0xF8, 0xFF, 0xFF, 0xFC, 0xFF, 0xFF, 0xFE, 0xF0, 0x3E, 0x7F, 0xF0, 0x3E, 0x1F, 0xF0, 0x3E, 0x1F, + 0xF0, 0x3E, 0x1F, 0xF0, 0x3E, 0x7F, 0xF0, 0x3F, 0xFE, 0xF0, 0x3F, 0xFC, 0xF0, 0x3F, 0xF8, 0xFF, + 0xFE, 0x1F, 0xFF, 0xC3, 0xFF, 0xF8, 0x03, 0xE0, 0x00, 0x7C, 0x00, 0x0F, 0x80, 0x01, 0xFF, 0xC0, + 0x3F, 0xFC, 0x07, 0xFF, 0xC0, 0xF9, 0xF8, 0x1F, 0x0F, 0x83, 0xE1, 0xF0, 0x7C, 0x3E, 0x0F, 0x87, + 0xC1, 0xF0, 0xF8, 0x3E, 0x1F, 0x07, 0xC3, 0xE0, 0x00, 0xC0, 0x03, 0xC0, 0x0F, 0x80, 0x3E, 0x00, + 0x78, 0x00, 0x60, 0x00, 0x00, 0x78, 0x3E, 0xF0, 0xF9, 0xE3, 0xF3, 0xCF, 0xC7, 0xBF, 0x0F, 0xFC, + 0x1F, 0xF0, 0x3F, 0xC0, 0x7F, 0x80, 0xFF, 0x81, 0xFF, 0x83, 0xDF, 0x87, 0x9F, 0x8F, 0x1F, 0x9E, + 0x1F, 0x3C, 0x1F, 0x78, 0x3F, 0x03, 0x00, 0x1E, 0x00, 0x3E, 0x00, 0x3E, 0x00, 0x3C, 0x00, 0x30, + 0x00, 0x00, 0x78, 0x0F, 0xF0, 0x3F, 0xE0, 0xFF, 0xC3, 0xFF, 0x8F, 0xFF, 0x1F, 0xFE, 0x7F, 0xFD, + 0xF7, 0xFF, 0xCF, 0xFF, 0x9F, 0xFE, 0x3F, 0xF8, 0x7F, 0xF0, 0xFF, 0xC1, 0xFF, 0x03, 0xFE, 0x07, + 0xF8, 0x0F, 0x06, 0x38, 0x07, 0xBC, 0x03, 0xFE, 0x00, 0xFE, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x00, + 0x01, 0xF0, 0x3E, 0x7C, 0x1F, 0x3E, 0x0F, 0x8F, 0x8F, 0x87, 0xC7, 0xC1, 0xF3, 0xC0, 0xFB, 0xE0, + 0x3F, 0xE0, 0x1F, 0xF0, 0x07, 0xF8, 0x01, 0xF8, 0x00, 0xFC, 0x00, 0x7C, 0x02, 0x7E, 0x03, 0xFE, + 0x01, 0xFE, 0x00, 0xFE, 0x00, 0xF0, 0x3F, 0xE0, 0x7F, 0xC0, 0xFF, 0x81, 0xFF, 0x03, 0xFE, 0x07, + 0xFC, 0x0F, 0xF8, 0x1F, 0xF0, 0x3F, 0xE0, 0x7F, 0xC0, 0xFF, 0x81, 0xFF, 0x03, 0xFE, 0x07, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x0F, 0x00, 0x1E, 0x00, 0x3C, 0x00, 0x78, 0x00, 0xF0, 0x00, 0x01, + 0xE0, 0x00, 0xFC, 0x00, 0x3F, 0x00, 0x1F, 0xE0, 0x07, 0xF8, 0x03, 0xFF, 0x00, 0xF3, 0xC0, 0x7C, + 0xF8, 0x1E, 0x3E, 0x07, 0x87, 0x83, 0xFF, 0xF0, 0xFF, 0xFC, 0x3F, 0xFF, 0x9F, 0x03, 0xE7, 0xC0, + 0xFB, 0xE0, 0x1F, 0xF8, 0x07, 0xC0, 0xFF, 0xF3, 0xFF, 0xCF, 0xFF, 0x3C, 0x00, 0xF0, 0x03, 0xC0, + 0x0F, 0xFC, 0x3F, 0xFC, 0xFF, 0xFB, 0xC7, 0xEF, 0x07, 0xBC, 0x1E, 0xF0, 0x7B, 0xC7, 0xEF, 0xFF, + 0xBF, 0xFC, 0xFF, 0xC0, 0xFF, 0xC3, 0xFF, 0xCF, 0xFF, 0xBC, 0x7E, 0xF0, 0x7B, 0xC1, 0xEF, 0x1F, + 0xBF, 0xFC, 0xFF, 0xF3, 0xFF, 0xEF, 0x0F, 0xFC, 0x1F, 0xF0, 0x7F, 0xC7, 0xFF, 0xFF, 0xBF, 0xFE, + 0xFF, 0xE0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, + 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x00, 0x07, 0xFF, 0x80, 0x3F, + 0xFC, 0x01, 0xFF, 0xE0, 0x0F, 0x8F, 0x00, 0x7C, 0x78, 0x03, 0xE3, 0xC0, 0x1E, 0x1E, 0x00, 0xF0, + 0xF0, 0x07, 0x87, 0x80, 0x7C, 0x3C, 0x03, 0xE1, 0xE0, 0x1E, 0x0F, 0x01, 0xF0, 0x78, 0x0F, 0x83, + 0xC3, 0xFF, 0xFF, 0xDF, 0xFF, 0xFE, 0xFF, 0xFF, 0xF7, 0xC0, 0x07, 0xBE, 0x00, 0x3D, 0xF0, 0x01, + 0xEF, 0x80, 0x0F, 0x7C, 0x00, 0x78, 0xFF, 0xF7, 0xFF, 0xBF, 0xFD, 0xE0, 0x0F, 0x00, 0x78, 0x03, + 0xC0, 0x1F, 0xFC, 0xFF, 0xE7, 0xFF, 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x78, 0x03, 0xFF, 0xFF, 0xFF, + 0xFF, 0xF8, 0xFC, 0x3E, 0x1F, 0x3F, 0x1F, 0x1F, 0x8F, 0x8F, 0x9F, 0x87, 0xE7, 0xDF, 0x81, 0xFB, + 0xEF, 0x80, 0x7F, 0xFF, 0x80, 0x1F, 0xFF, 0xC0, 0x07, 0xFF, 0xC0, 0x03, 0xFF, 0xC0, 0x01, 0xFF, + 0xF0, 0x01, 0xFF, 0xFC, 0x01, 0xF7, 0xFF, 0x01, 0xF3, 0xEF, 0xC1, 0xF9, 0xF3, 0xE1, 0xF8, 0xF8, + 0xF8, 0xF8, 0x7C, 0x7E, 0xF8, 0x3E, 0x1F, 0x00, 0x3F, 0xE0, 0xFF, 0xE1, 0xFF, 0xE1, 0xC7, 0xE0, + 0x07, 0xC0, 0x0F, 0x80, 0x7E, 0x0F, 0xFC, 0x1F, 0xF0, 0x3F, 0xF8, 0x03, 0xF0, 0x01, 0xE0, 0x03, + 0xCF, 0x1F, 0x9F, 0xFF, 0x7F, 0xFC, 0x3F, 0xF0, 0xF0, 0x1F, 0xE0, 0x7F, 0xC1, 0xFF, 0x87, 0xFF, + 0x1F, 0xFE, 0x3F, 0xFC, 0xFF, 0xFB, 0xEF, 0xFF, 0x9F, 0xFF, 0x3F, 0xFC, 0x7F, 0xF0, 0xFF, 0xE1, + 0xFF, 0x83, 0xFE, 0x07, 0xFC, 0x0F, 0xF0, 0x1E, 0x0C, 0x70, 0x3D, 0xE0, 0x7F, 0xC0, 0x7F, 0x00, + 0x7C, 0x00, 0x00, 0x00, 0x00, 0x78, 0x0F, 0xF0, 0x3F, 0xE0, 0xFF, 0xC3, 0xFF, 0x8F, 0xFF, 0x1F, + 0xFE, 0x7F, 0xFD, 0xF7, 0xFF, 0xCF, 0xFF, 0x9F, 0xFE, 0x3F, 0xF8, 0x7F, 0xF0, 0xFF, 0xC1, 0xFF, + 0x03, 0xFE, 0x07, 0xF8, 0x0F, 0xF0, 0x7D, 0xE1, 0xF3, 0xC7, 0xE7, 0x9F, 0x8F, 0x7E, 0x1F, 0xF8, + 0x3F, 0xE0, 0x7F, 0x80, 0xFF, 0x01, 0xFF, 0x03, 0xFF, 0x07, 0xBF, 0x0F, 0x3F, 0x1E, 0x3F, 0x3C, + 0x3E, 0x78, 0x3E, 0xF0, 0x7E, 0x03, 0xFF, 0xC1, 0xFF, 0xF0, 0x7F, 0xFC, 0x1F, 0x1F, 0x07, 0xC7, + 0xC1, 0xF1, 0xF0, 0x7C, 0x7C, 0x1F, 0x1F, 0x07, 0x87, 0xC1, 0xE1, 0xF0, 0x78, 0x7C, 0x3E, 0x1F, + 0x1F, 0x07, 0xDF, 0xC1, 0xFF, 0xE0, 0x7F, 0xF0, 0x1F, 0xF8, 0x07, 0xC0, 0x7C, 0x03, 0xE7, 0xE0, + 0x3E, 0x7E, 0x07, 0xE7, 0xF0, 0x7E, 0x7F, 0x0F, 0xE7, 0xF8, 0xFF, 0x7F, 0x9F, 0xF7, 0xFD, 0xFF, + 0x7B, 0xDF, 0xF7, 0xBF, 0xDF, 0x79, 0xFD, 0xFF, 0x9F, 0x8F, 0xF9, 0xF8, 0xFF, 0x8F, 0x8F, 0xF8, + 0xF0, 0xFF, 0x80, 0x0F, 0xF8, 0x00, 0xF0, 0xF0, 0x3F, 0xE0, 0x7F, 0xC0, 0xFF, 0x81, 0xFF, 0x03, 0xFE, 0x07, 0xFC, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0xFF, 0x81, 0xFF, 0x03, 0xFE, - 0x07, 0xFC, 0x0F, 0xF8, 0x1F, 0xF0, 0x3E, 0x00, 0x7C, 0x00, 0xF8, 0x0F, 0xE0, 0x1F, 0xC0, 0x3F, - 0x00, 0xF8, 0xFF, 0xC7, 0xFE, 0x3F, 0xF1, 0xFF, 0x8F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0xFF, - 0xC7, 0xFE, 0x3F, 0xF1, 0xFF, 0x8F, 0x80, 0x7C, 0x03, 0xC0, 0xFE, 0x07, 0xF0, 0x3F, 0x00, 0xF0, - 0x3E, 0x3C, 0x0F, 0x8F, 0x03, 0xE3, 0xC0, 0xF8, 0xF0, 0x3E, 0x3C, 0x0F, 0x8F, 0x03, 0xE3, 0xFF, - 0xF8, 0xFF, 0xFE, 0x3F, 0xFF, 0x8F, 0x03, 0xE3, 0xC0, 0xF8, 0xF0, 0x3E, 0x3C, 0x0F, 0x8F, 0x03, - 0xFB, 0xC0, 0xFE, 0xF0, 0x3F, 0x80, 0x03, 0xE0, 0x00, 0xF8, 0x00, 0x7C, 0x00, 0x1E, 0x00, 0x03, - 0x80, 0xF8, 0xF1, 0xF1, 0xE3, 0xE3, 0xC7, 0xC7, 0x8F, 0x8F, 0x1F, 0xFE, 0x3F, 0xFC, 0x7F, 0xF8, - 0xF8, 0xF1, 0xF1, 0xE3, 0xE3, 0xF7, 0xC7, 0xEF, 0x8F, 0xC0, 0x07, 0x80, 0x1E, 0x00, 0x3C, 0x00, - 0x30, 0xF0, 0x3F, 0xC0, 0xFF, 0x03, 0xFC, 0x0F, 0xF0, 0x3F, 0xC0, 0xFF, 0x83, 0xFF, 0x1F, 0xFF, - 0xFD, 0xFF, 0xF3, 0xFF, 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x1F, 0xC0, 0x7F, 0x01, 0xFC, 0x07, - 0x80, 0x1E, 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, 0xF1, 0xFF, 0x1F, 0xF1, 0xFF, 0x1F, 0xF9, 0xFF, - 0xFF, 0x7F, 0xF3, 0xFF, 0x01, 0xF0, 0x1F, 0x07, 0xF0, 0x7F, 0x07, 0xF0, 0x78, 0x07, 0x80, 0x78, - 0x07, 0x80, 0x7C, 0x03, 0xE0, 0xFC, 0x07, 0xC1, 0xF8, 0x1F, 0x83, 0xF8, 0x3F, 0x07, 0xF0, 0xFE, - 0x0F, 0xF1, 0xFE, 0x1F, 0xE7, 0xFC, 0x3F, 0xEF, 0xF8, 0x7B, 0xDF, 0xF0, 0xF7, 0xFB, 0xE1, 0xE7, - 0xF7, 0xC7, 0xCF, 0xC7, 0x8F, 0x9F, 0x8F, 0x1F, 0x1F, 0x1E, 0x3E, 0x3C, 0x3F, 0xFC, 0x00, 0x7F, - 0xF8, 0x00, 0xFE, 0x00, 0x00, 0x78, 0x00, 0x01, 0xF0, 0x00, 0x03, 0xC0, 0x00, 0x07, 0x80, 0x00, - 0x06, 0x00, 0x78, 0x1F, 0x0F, 0x83, 0xE1, 0xF0, 0xFC, 0x3F, 0x1F, 0x8F, 0xE7, 0xF1, 0xFE, 0xFE, - 0x3F, 0xFF, 0xC7, 0xBF, 0xF8, 0xF7, 0xEF, 0x1E, 0x7D, 0xE3, 0xCF, 0x3F, 0xF8, 0x07, 0xFF, 0x00, - 0xFE, 0x00, 0x07, 0x80, 0x00, 0xF0, 0x00, 0x3C, 0x00, 0x03, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x07, 0x38, 0x03, 0xDE, 0x00, 0x7F, 0x80, 0x1F, 0xE0, 0x03, - 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x03, 0xF0, 0x00, 0xFC, 0x00, 0x7F, 0x80, 0x1F, - 0xE0, 0x0F, 0xFC, 0x03, 0xCF, 0x01, 0xF3, 0xE0, 0x78, 0xF8, 0x1E, 0x1E, 0x0F, 0xFF, 0xC3, 0xFF, - 0xF0, 0xFF, 0xFE, 0x7C, 0x0F, 0x9F, 0x03, 0xEF, 0x80, 0x7F, 0xE0, 0x1F, 0x1C, 0xE1, 0xE7, 0x87, - 0xF8, 0x3F, 0xC0, 0xFC, 0x00, 0x00, 0x00, 0x07, 0xF8, 0x3F, 0xF1, 0xFF, 0x8C, 0x7C, 0x01, 0xF1, - 0xFF, 0xBF, 0xFD, 0xFF, 0xEF, 0x9F, 0x7C, 0xFB, 0xFF, 0xDF, 0xFE, 0x7F, 0xE0, 0x0F, 0x38, 0x03, - 0xDF, 0x00, 0xF7, 0xC0, 0x3C, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x0F, 0xC0, 0x03, - 0xF0, 0x01, 0xFE, 0x00, 0x7F, 0x80, 0x3F, 0xF0, 0x0F, 0x3C, 0x07, 0xCF, 0x81, 0xE3, 0xE0, 0x78, - 0x78, 0x3F, 0xFF, 0x0F, 0xFF, 0xC3, 0xFF, 0xF9, 0xF0, 0x3E, 0x7C, 0x0F, 0xBE, 0x01, 0xFF, 0x80, - 0x7C, 0x3C, 0xE1, 0xEF, 0x8F, 0x7C, 0x79, 0xC0, 0x00, 0x00, 0x00, 0xFF, 0x07, 0xFE, 0x3F, 0xF1, - 0x8F, 0x80, 0x3E, 0x3F, 0xF7, 0xFF, 0xBF, 0xFD, 0xF3, 0xEF, 0x9F, 0x7F, 0xFB, 0xFF, 0xCF, 0xFC, - 0x00, 0x3F, 0xFF, 0x00, 0x7F, 0xFF, 0x00, 0x7F, 0xFF, 0x00, 0xFF, 0x00, 0x01, 0xFF, 0x00, 0x01, - 0xEF, 0x00, 0x03, 0xEF, 0x00, 0x07, 0xCF, 0xFE, 0x07, 0xCF, 0xFE, 0x0F, 0x8F, 0xFE, 0x0F, 0xFF, - 0x00, 0x1F, 0xFF, 0x00, 0x3F, 0xFF, 0x00, 0x3E, 0x0F, 0x00, 0x7C, 0x0F, 0xFF, 0x7C, 0x0F, 0xFF, - 0xF8, 0x0F, 0xFF, 0x3F, 0xCF, 0xC1, 0xFF, 0xFF, 0x0F, 0xFF, 0xFC, 0x63, 0xFB, 0xF0, 0x0F, 0x87, - 0x8F, 0xFF, 0xFD, 0xFF, 0xFF, 0xEF, 0xFF, 0xFF, 0x7C, 0xF8, 0x03, 0xE3, 0xF3, 0x9F, 0xFF, 0xFC, - 0xFF, 0xFF, 0xE3, 0xFF, 0xFF, 0x00, 0x39, 0xC3, 0xCF, 0x0F, 0xF0, 0x7F, 0x81, 0xF8, 0x00, 0x00, - 0x00, 0x1F, 0xFE, 0xFF, 0xF7, 0xFF, 0xBC, 0x01, 0xE0, 0x0F, 0x00, 0x78, 0x03, 0xFF, 0x9F, 0xFC, - 0xFF, 0xE7, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0x18, 0xC1, 0xEF, - 0x0F, 0xF8, 0x3F, 0x80, 0xF8, 0x00, 0x00, 0x00, 0x03, 0xF8, 0x3F, 0xE3, 0xFF, 0xBF, 0x7D, 0xF1, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0xFC, 0x73, 0xFF, 0x8F, 0xFC, 0x3F, 0xE0, 0x1F, 0xF0, - 0x7F, 0xF8, 0x7F, 0xFC, 0x38, 0xFE, 0x00, 0x1F, 0x00, 0x1F, 0x00, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFF, 0xF8, 0x1F, 0xF8, 0x1F, 0x7C, 0x3F, 0x7E, 0x7E, 0x3F, 0xFC, 0x1F, 0xF8, 0x0F, 0xF0, - 0x7F, 0x83, 0xFF, 0x1F, 0xFC, 0xE7, 0xE0, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0xFF, 0xCF, - 0x9F, 0xFC, 0xFF, 0xC1, 0xF8, 0x00, 0x1E, 0x70, 0x1E, 0xF8, 0x1E, 0xF8, 0x1E, 0x70, 0x00, 0x00, - 0x00, 0x00, 0x1F, 0xF0, 0x7F, 0xF8, 0x7F, 0xFC, 0x38, 0xFE, 0x00, 0x1F, 0x00, 0x1F, 0x00, 0x1F, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x1F, 0xF8, 0x1F, 0x7C, 0x3F, 0x7E, 0x7E, 0x3F, 0xFC, - 0x1F, 0xF8, 0x0F, 0xF0, 0x39, 0xE3, 0xEF, 0x1F, 0x78, 0x73, 0xC0, 0x00, 0x00, 0x01, 0xFE, 0x0F, - 0xFC, 0x7F, 0xF3, 0x9F, 0x80, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC3, 0xFF, 0x3E, 0x7F, 0xF3, - 0xFF, 0x07, 0xE0, 0x00, 0xE7, 0x80, 0x00, 0xFB, 0xC0, 0x00, 0x7D, 0xE0, 0x00, 0x1C, 0xF0, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xF0, 0xF8, 0x7C, 0xFC, 0x7C, 0x7E, 0x3E, 0x3E, 0x7E, 0x1F, - 0x9F, 0x7E, 0x07, 0xEF, 0xBE, 0x01, 0xFF, 0xFE, 0x00, 0x7F, 0xFF, 0x00, 0x1F, 0xFF, 0x00, 0x0F, - 0xFF, 0x00, 0x07, 0xFF, 0xC0, 0x07, 0xFF, 0xF0, 0x07, 0xDF, 0xFC, 0x07, 0xCF, 0xBF, 0x07, 0xE7, - 0xCF, 0x87, 0xE3, 0xE3, 0xE3, 0xE1, 0xF1, 0xFB, 0xE0, 0xF8, 0x7C, 0x03, 0xCE, 0x00, 0x1E, 0xF8, - 0x00, 0xF7, 0xC0, 0x07, 0x9C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xF3, 0xE3, 0xEF, 0x9F, 0x3E, - 0x3E, 0xFB, 0xE0, 0xFF, 0xFF, 0x07, 0xFF, 0xF0, 0x1F, 0xFF, 0x00, 0x7F, 0xF0, 0x07, 0xFF, 0xC0, - 0x7F, 0xFF, 0x07, 0xFF, 0x7C, 0x3E, 0xFB, 0xF3, 0xE7, 0xCF, 0xBE, 0x3E, 0x3E, 0x3C, 0xF0, 0x79, - 0xE0, 0xF3, 0xC1, 0xE7, 0x80, 0x00, 0x00, 0x00, 0x0F, 0xF8, 0x3F, 0xF8, 0x7F, 0xF8, 0x71, 0xF8, - 0x01, 0xF0, 0x03, 0xE0, 0x1F, 0x83, 0xFF, 0x07, 0xFC, 0x0F, 0xFE, 0x00, 0xFC, 0x00, 0x78, 0x00, - 0xF3, 0xC7, 0xE7, 0xFF, 0xDF, 0xFF, 0x0F, 0xFC, 0x00, 0x79, 0xC7, 0xBE, 0x7B, 0xE7, 0x9C, 0x00, - 0x00, 0x00, 0x7F, 0xC7, 0xFE, 0x7F, 0xE7, 0x3E, 0x01, 0xE3, 0xFE, 0x3F, 0xE3, 0xFE, 0x01, 0xF7, - 0x1F, 0x7F, 0xF7, 0xFE, 0x7F, 0xC0, 0x7F, 0xFD, 0xFF, 0xF7, 0xFF, 0xC0, 0x7E, 0x03, 0xF0, 0x1F, - 0x80, 0xFC, 0x03, 0xFC, 0x0F, 0xF8, 0x07, 0xF0, 0x07, 0xC0, 0x0F, 0x00, 0x7D, 0xE3, 0xF7, 0xFF, - 0xBF, 0xFE, 0x3F, 0xE0, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x3E, 0x07, 0xC0, 0x7C, 0x0F, 0x81, 0xF0, - 0x1F, 0xC1, 0xFE, 0x03, 0xF0, 0x1F, 0x00, 0xF0, 0x0F, 0x63, 0xFF, 0xFF, 0xFF, 0xEF, 0xF8, 0x1F, - 0xF0, 0x3F, 0xE0, 0x7F, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x07, 0xF8, 0x1F, 0xF0, 0x7F, - 0xE1, 0xFF, 0xC7, 0xFF, 0x8F, 0xFF, 0x3F, 0xFE, 0xFB, 0xFF, 0xE7, 0xFF, 0xCF, 0xFF, 0x1F, 0xFC, - 0x3F, 0xF8, 0x7F, 0xE0, 0xFF, 0x81, 0xFF, 0x03, 0xFC, 0x07, 0x80, 0x3F, 0xE1, 0xFF, 0x0F, 0xF8, - 0x00, 0x00, 0x00, 0x00, 0x03, 0xE1, 0xFF, 0x1F, 0xF9, 0xFF, 0xDF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0xBF, 0xF9, 0xFF, 0xCF, 0xFC, 0x7F, 0xC3, 0xFE, 0x1E, 0x1E, 0x70, 0x3D, 0xF0, 0x7B, 0xE0, - 0xF3, 0x80, 0x00, 0x00, 0x00, 0x3C, 0x07, 0xF8, 0x1F, 0xF0, 0x7F, 0xE1, 0xFF, 0xC7, 0xFF, 0x8F, - 0xFF, 0x3F, 0xFE, 0xFB, 0xFF, 0xE7, 0xFF, 0xCF, 0xFF, 0x1F, 0xFC, 0x3F, 0xF8, 0x7F, 0xE0, 0xFF, - 0x81, 0xFF, 0x03, 0xFC, 0x07, 0x80, 0x3C, 0xE1, 0xE7, 0x8F, 0x3C, 0x79, 0xC0, 0x00, 0x00, 0x03, - 0xE1, 0xFF, 0x1F, 0xF9, 0xFF, 0xDF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xBF, 0xF9, 0xFF, 0xCF, - 0xFC, 0x7F, 0xC3, 0xFE, 0x1E, 0x0F, 0x38, 0x03, 0xCF, 0x00, 0xF3, 0xC0, 0x3C, 0xF0, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x7F, 0x80, 0x7F, 0xF8, 0x3F, 0xFF, 0x1F, 0xCF, 0xC7, 0xC0, 0xFB, 0xE0, 0x3E, - 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0x7F, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x03, 0xE7, 0xC0, 0xF9, - 0xFC, 0xFE, 0x3F, 0xFF, 0x07, 0xFF, 0x80, 0x7F, 0x80, 0x3C, 0xE0, 0xF7, 0xC3, 0xDF, 0x0F, 0x38, - 0x00, 0x00, 0x00, 0x01, 0xFC, 0x0F, 0xF8, 0x7F, 0xF3, 0xF7, 0xEF, 0x8F, 0xBC, 0x1E, 0xF0, 0x7B, - 0xC1, 0xEF, 0x8F, 0xBF, 0x7E, 0x7F, 0xF0, 0xFF, 0x81, 0xFC, 0x00, 0x07, 0xF8, 0x07, 0xFF, 0x83, - 0xFF, 0xF1, 0xFC, 0xFC, 0x7C, 0x0F, 0xBE, 0x03, 0xEF, 0x80, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFF, 0x80, 0x7F, 0xE0, 0x3E, 0x7C, 0x0F, 0x9F, 0xCF, 0xE3, 0xFF, 0xF0, 0x7F, 0xF8, 0x07, - 0xF8, 0x00, 0x1F, 0xC0, 0xFF, 0x87, 0xFF, 0x3F, 0x7E, 0xF0, 0x7B, 0xFF, 0xEF, 0xFF, 0xBC, 0x1E, - 0xF8, 0xFB, 0xF7, 0xE7, 0xFF, 0x0F, 0xF8, 0x1F, 0xC0, 0x0F, 0x38, 0x03, 0xCF, 0x00, 0xF3, 0xC0, - 0x3C, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0x80, 0x7F, 0xF8, 0x3F, 0xFF, 0x1F, 0xCF, 0xC7, - 0xC0, 0xFB, 0xE0, 0x3E, 0xF8, 0x07, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x07, 0xFE, - 0x03, 0xE7, 0xC0, 0xF9, 0xFC, 0xFE, 0x3F, 0xFF, 0x07, 0xFF, 0x80, 0x7F, 0x80, 0x39, 0xE1, 0xF7, - 0x87, 0xDE, 0x0E, 0x78, 0x00, 0x00, 0x00, 0x01, 0xFC, 0x0F, 0xF8, 0x7F, 0xF3, 0xF7, 0xEF, 0x07, - 0xBF, 0xFE, 0xFF, 0xFB, 0xC1, 0xEF, 0x8F, 0xBF, 0x7E, 0x7F, 0xF0, 0xFF, 0x81, 0xFC, 0x00, 0x3C, - 0xE0, 0x7B, 0xE0, 0xF7, 0xC1, 0xE7, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF0, 0x7F, 0xF8, 0xFF, 0xF8, - 0xE3, 0xF8, 0x01, 0xF0, 0x01, 0xF0, 0x03, 0xE3, 0xFF, 0xC7, 0xFF, 0x8F, 0xFF, 0x00, 0x3E, 0x00, - 0x7C, 0x01, 0xF3, 0xCF, 0xEF, 0xFF, 0x9F, 0xFE, 0x1F, 0xF0, 0x00, 0x39, 0xE3, 0xEF, 0x1F, 0x78, - 0x73, 0xC0, 0x00, 0x00, 0x01, 0xFE, 0x0F, 0xFC, 0x7F, 0xE3, 0x9F, 0x80, 0x3C, 0x3F, 0xE1, 0xFF, - 0x8F, 0xF8, 0x03, 0xCE, 0x7E, 0x7F, 0xE3, 0xFF, 0x1F, 0xE0, 0x0F, 0xF8, 0x07, 0xFC, 0x03, 0xFE, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x7C, 0xF8, 0x3E, 0x7C, 0x1F, 0x1F, 0x1F, 0x0F, - 0x8F, 0x83, 0xE7, 0x81, 0xF7, 0xC0, 0x7F, 0xC0, 0x3F, 0xE0, 0x0F, 0xF0, 0x03, 0xF0, 0x01, 0xF8, - 0x00, 0xF8, 0x04, 0xFC, 0x07, 0xFC, 0x03, 0xFC, 0x01, 0xFC, 0x00, 0x1F, 0xE0, 0x7F, 0x81, 0xFE, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x87, 0xFE, 0x1E, 0x78, 0x79, 0xF3, 0xE7, 0xCF, 0x0F, 0x3C, - 0x3F, 0xF0, 0xFF, 0x81, 0xFE, 0x07, 0xF8, 0x0F, 0xC0, 0x3F, 0x00, 0x78, 0x03, 0xE0, 0x5F, 0x03, - 0xFC, 0x0F, 0xE0, 0x3F, 0x00, 0x0E, 0x38, 0x07, 0xBE, 0x03, 0xDF, 0x01, 0xC7, 0x00, 0x00, 0x00, - 0x00, 0x03, 0xE0, 0x7C, 0xF8, 0x3E, 0x7C, 0x1F, 0x1F, 0x1F, 0x0F, 0x8F, 0x83, 0xE7, 0x81, 0xF7, - 0xC0, 0x7F, 0xC0, 0x3F, 0xE0, 0x0F, 0xF0, 0x03, 0xF0, 0x01, 0xF8, 0x00, 0xF8, 0x04, 0xFC, 0x07, - 0xFC, 0x03, 0xFC, 0x01, 0xFC, 0x00, 0x3C, 0xE0, 0xF7, 0xC3, 0xDF, 0x0F, 0x38, 0x00, 0x00, 0x00, - 0x0F, 0x87, 0xFE, 0x1E, 0x78, 0x79, 0xF3, 0xE7, 0xCF, 0x0F, 0x3C, 0x3F, 0xF0, 0xFF, 0x81, 0xFE, - 0x07, 0xF8, 0x0F, 0xC0, 0x3F, 0x00, 0x78, 0x03, 0xE0, 0x5F, 0x03, 0xFC, 0x0F, 0xE0, 0x3F, 0x00, - 0x03, 0x18, 0x01, 0xCE, 0x01, 0xEF, 0x00, 0xE7, 0x80, 0xF7, 0x80, 0x73, 0x80, 0x00, 0x01, 0xF0, - 0x3E, 0x7C, 0x1F, 0x3E, 0x0F, 0x8F, 0x8F, 0x87, 0xC7, 0xC1, 0xF3, 0xC0, 0xFB, 0xE0, 0x3F, 0xE0, - 0x1F, 0xF0, 0x07, 0xF8, 0x01, 0xF8, 0x00, 0xFC, 0x00, 0x7C, 0x02, 0x7E, 0x03, 0xFE, 0x01, 0xFE, - 0x00, 0xFE, 0x00, 0x06, 0x30, 0x3D, 0xE0, 0xF7, 0x87, 0xBC, 0x3D, 0xE0, 0x63, 0x00, 0x00, 0x3E, - 0x1F, 0xF8, 0x79, 0xE1, 0xE7, 0xCF, 0x9F, 0x3C, 0x3C, 0xF0, 0xFF, 0xC3, 0xFE, 0x07, 0xF8, 0x1F, - 0xE0, 0x3F, 0x00, 0xFC, 0x01, 0xE0, 0x0F, 0x81, 0x7C, 0x0F, 0xF0, 0x3F, 0x80, 0xFC, 0x00, 0x1C, - 0xF0, 0xF3, 0xC3, 0xCF, 0x0F, 0x3C, 0x00, 0x00, 0x00, 0x0F, 0x03, 0xFC, 0x0F, 0xF0, 0x3F, 0xC0, - 0xFF, 0x03, 0xFC, 0x0F, 0xF8, 0x3F, 0xF1, 0xFF, 0xFF, 0xDF, 0xFF, 0x3F, 0xFC, 0x00, 0xF0, 0x03, - 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x79, 0xC7, 0xBE, 0x7B, 0xE7, 0x9C, 0x00, 0x00, - 0x00, 0xF1, 0xFF, 0x1F, 0xF1, 0xFF, 0x1F, 0xF1, 0xFF, 0x9F, 0xFF, 0xF7, 0xFF, 0x3F, 0xF0, 0x1F, - 0x01, 0xF0, 0x1F, 0x01, 0xF0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, - 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xFE, 0x0F, 0xE0, 0xFE, 0x01, 0xE0, - 0x1E, 0x01, 0xE0, 0x1E, 0x01, 0xE0, 0xFF, 0xDF, 0xFB, 0xFF, 0x7C, 0x0F, 0x81, 0xF0, 0x3E, 0x07, - 0xC0, 0xF8, 0x1F, 0x03, 0xF8, 0x7F, 0x0F, 0xE0, 0x3C, 0x07, 0x80, 0xF0, 0x1E, 0x00, 0x07, 0x9C, - 0x00, 0x7B, 0xE0, 0x07, 0xBE, 0x00, 0x79, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x01, 0xFF, - 0x00, 0x1F, 0xF0, 0x01, 0xFF, 0x00, 0x1F, 0xF0, 0x01, 0xFF, 0x00, 0x1F, 0xFF, 0xC1, 0xFF, 0xFF, - 0x1F, 0xFF, 0xF9, 0xFF, 0x3F, 0x9F, 0xF0, 0xF9, 0xFF, 0x07, 0x9F, 0xF0, 0xF9, 0xFF, 0x1F, 0x9F, - 0xFF, 0xF9, 0xFF, 0xFF, 0x1F, 0xFF, 0xC1, 0xF0, 0x07, 0x3C, 0x03, 0xEF, 0x00, 0xFB, 0xC0, 0x1C, - 0xF0, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x80, 0x3F, 0xE0, 0x0F, 0xF8, 0x03, 0xFE, 0x00, 0xFF, 0xFC, - 0x3F, 0xFF, 0x8F, 0xFF, 0xF3, 0xFE, 0x7C, 0xFF, 0x8F, 0xBF, 0xE7, 0xCF, 0xFF, 0xF3, 0xFF, 0xFC, - 0xF7, 0xFC, 0x3C, 0x7E, 0x0F, 0x1F, 0x07, 0x87, 0xC3, 0xC3, 0xF3, 0xE0, 0xF9, 0xF0, 0x7E, 0xF0, - 0x7F, 0xF8, 0x7F, 0xF8, 0x3D, 0xF8, 0x3E, 0x7C, 0x1F, 0x1F, 0x0F, 0x0F, 0x87, 0x83, 0xE3, 0xC0, - 0xFB, 0xE0, 0x7C, 0x3F, 0xC0, 0xFF, 0xE1, 0xFF, 0xC1, 0xFF, 0xC0, 0x0F, 0x80, 0x1F, 0x00, 0x3E, - 0x00, 0x7C, 0x00, 0xF8, 0x01, 0xF0, 0x03, 0xE3, 0xFF, 0xEF, 0xFF, 0xFF, 0xFF, 0xBF, 0xFF, 0x00, - 0x3E, 0x0F, 0xC7, 0xF8, 0xFE, 0x07, 0x81, 0xE0, 0x78, 0x1E, 0x07, 0x81, 0xE0, 0xF9, 0xFE, 0xFF, - 0xFE, 0xFF, 0x3C, 0x00, 0x7F, 0xFD, 0xFF, 0xF7, 0xFF, 0xDF, 0xFE, 0x01, 0xF0, 0x07, 0xC0, 0x1F, - 0x00, 0x7C, 0x01, 0xF0, 0x07, 0xC0, 0x1F, 0x00, 0x7C, 0x01, 0xF0, 0x07, 0xC0, 0x1F, 0x00, 0xFF, - 0xF3, 0xFF, 0xEF, 0xFF, 0xDF, 0xFF, 0x00, 0x3C, 0x00, 0xF0, 0x03, 0xFE, 0x0F, 0xF8, 0x3F, 0xE0, - 0xFF, 0x83, 0xFE, 0x0F, 0xF8, 0x3F, 0xE0, 0xFF, 0x83, 0xC0, 0x7E, 0xFD, 0xFB, 0xF1, 0xE3, 0xC7, - 0x8F, 0x1E, 0x3C, 0x78, 0xF1, 0xE3, 0xC7, 0x80, 0x7F, 0xBF, 0xDF, 0xEF, 0xE3, 0xE1, 0xE0, 0xF0, - 0x78, 0x7C, 0x1E, 0x0F, 0x07, 0x83, 0xE1, 0xF0, 0xF8, 0x7F, 0xFC, 0x7F, 0xFE, 0x7F, 0xFE, 0x7F, - 0xFF, 0x3C, 0x1F, 0x3C, 0x1F, 0x3C, 0x1F, 0x3C, 0x1F, 0x3C, 0x1F, 0x3C, 0x1F, 0x3C, 0x1F, 0x3C, - 0x1F, 0x3C, 0x1F, 0x3C, 0x1F, 0x3C, 0x1F, 0xF3, 0xF1, 0xE7, 0xF3, 0xCF, 0xF7, 0x9F, 0xEF, 0x03, - 0xFE, 0x07, 0xFC, 0x0F, 0xF8, 0x1F, 0xF0, 0x3F, 0xF0, 0x7F, 0xE1, 0xF3, 0xFF, 0xE7, 0xFF, 0x87, - 0xFE, 0x03, 0xF8, 0x00, 0x7E, 0xFD, 0xFB, 0xF1, 0xE3, 0xC7, 0x8F, 0x1E, 0x7F, 0xE3, 0xFF, 0x9F, - 0xFE, 0xFF, 0xF0, 0x0F, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x78, 0x03, 0xC0, 0x1E, 0x00, 0xF0, - 0x07, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x78, 0x03, 0xC0, 0x1E, 0x00, 0xF0, 0x7F, 0x83, 0xFF, - 0x1F, 0xF8, 0xFF, 0xE0, 0x1F, 0x00, 0x7C, 0x03, 0xE0, 0x1F, 0x00, 0xF8, 0x07, 0xC0, 0x7C, 0xFF, - 0xEF, 0xFE, 0x7F, 0xF3, 0xFE, 0x00, 0xF8, 0x03, 0xE0, 0x0F, 0x80, 0x3E, 0x00, 0xFF, 0xFB, 0xFF, - 0xEF, 0xFF, 0x9F, 0xFE, 0x00, 0xF0, 0x07, 0xC0, 0x1F, 0x00, 0x78, 0x03, 0xE0, 0x0F, 0x80, 0x3C, - 0x01, 0xF0, 0x07, 0xC0, 0x1E, 0x00, 0xF8, 0x00, 0xFF, 0xF9, 0xFF, 0xFB, 0xFF, 0xFB, 0xFF, 0xF7, - 0xC1, 0xEF, 0x83, 0xDF, 0x07, 0xBE, 0x0F, 0x7C, 0x1E, 0xF8, 0x3D, 0xF0, 0x7B, 0xFF, 0xF7, 0xFF, - 0xEF, 0xFF, 0xDF, 0xFF, 0x80, 0x78, 0xFC, 0x3C, 0xFF, 0x1F, 0xFF, 0xC7, 0xFF, 0xF3, 0xF0, 0xF9, - 0xF0, 0x7C, 0x78, 0x1E, 0x7C, 0x0F, 0x3E, 0x07, 0x9F, 0x07, 0xCF, 0x03, 0xE7, 0x9F, 0xE7, 0xCF, - 0xF3, 0xEF, 0xF1, 0xF7, 0xF0, 0x7E, 0xFD, 0xFB, 0xF1, 0xE3, 0xC7, 0x8F, 0x1E, 0x3C, 0x78, 0xF1, - 0xE3, 0xC7, 0x8F, 0x1E, 0x3C, 0x78, 0xF0, 0x7C, 0xFE, 0xFF, 0x7F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, - 0x1F, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0x7F, 0xF8, 0x7F, 0xFE, 0x7F, 0xFE, 0x7F, 0xFF, 0x3C, 0x1F, - 0x3C, 0x0F, 0x7C, 0x0F, 0x7C, 0x0F, 0x7C, 0x0F, 0x7C, 0x1F, 0x3C, 0x1F, 0x3F, 0xFE, 0x3F, 0xFE, - 0x1F, 0xFC, 0x07, 0xF8, 0x00, 0x00, 0xF8, 0x3D, 0xF0, 0x79, 0xE0, 0xF3, 0xC3, 0xE7, 0xC7, 0xCF, - 0x8F, 0x9F, 0x1F, 0x1E, 0x3E, 0x3C, 0x78, 0x79, 0xF0, 0xF3, 0xE1, 0xFF, 0x8F, 0xFE, 0x3F, 0xF8, - 0x7F, 0xC0, 0xF8, 0x00, 0x00, 0x00, 0x3F, 0xC1, 0xFF, 0xCF, 0xFF, 0xBF, 0xFE, 0xF0, 0x7F, 0xC1, - 0xFF, 0x07, 0xFF, 0x0F, 0x7C, 0x3C, 0xF0, 0xF0, 0x83, 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x03, - 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x1F, 0xE0, 0x7F, 0xF1, 0xFF, 0xF3, 0xFF, - 0xE7, 0x83, 0xEF, 0x07, 0xDF, 0x0F, 0xBF, 0x0F, 0x3E, 0x3E, 0x3C, 0x7C, 0x01, 0xF9, 0xFF, 0xE7, - 0xFF, 0x8F, 0xFE, 0x1F, 0xF8, 0x00, 0xF8, 0x3D, 0xF0, 0xF7, 0xC7, 0xCF, 0x1F, 0x3E, 0x7C, 0xF9, - 0xE1, 0xEF, 0x87, 0xFC, 0x1F, 0xF0, 0x3F, 0x80, 0xF8, 0x03, 0xE0, 0x07, 0x80, 0x1F, 0x00, 0x7C, - 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x80, 0x3E, 0x00, 0x78, 0x7C, 0x3D, 0xF0, 0xF3, 0xE7, 0xCF, 0xDF, - 0x1F, 0x7C, 0x3F, 0xE0, 0xFF, 0x81, 0xFC, 0x03, 0xE0, 0x0F, 0x80, 0x1F, 0x0F, 0xFE, 0x7F, 0xF9, - 0xFF, 0xE7, 0xFF, 0x80, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xFF, 0xE0, 0x03, 0xC0, 0x0F, 0x80, - 0x1F, 0x7C, 0x3C, 0xF8, 0xF9, 0xF1, 0xF3, 0xE3, 0xC7, 0xC7, 0x8F, 0x9F, 0x1F, 0x3E, 0x3E, 0x78, - 0x7C, 0x00, 0xF8, 0x01, 0xF0, 0x03, 0xE0, 0x07, 0xC0, 0x00, 0x7F, 0xC7, 0xFE, 0x7F, 0xF7, 0xFF, + 0x07, 0xFC, 0x0F, 0xF8, 0x1F, 0xF0, 0x3E, 0x07, 0xF8, 0x07, 0xFF, 0x83, 0xFF, 0xF1, 0xFC, 0xFC, + 0x7C, 0x0F, 0xBE, 0x03, 0xEF, 0x80, 0x7F, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0x7F, + 0xE0, 0x3E, 0x7C, 0x0F, 0x9F, 0xCF, 0xE3, 0xFF, 0xF0, 0x7F, 0xF8, 0x07, 0xF8, 0x00, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF, 0x81, 0xFF, 0x03, 0xFE, 0x07, 0xFC, 0x0F, 0xF8, 0x1F, 0xF0, 0x3F, 0xE0, + 0x7F, 0xC0, 0xFF, 0x81, 0xFF, 0x03, 0xFE, 0x07, 0xFC, 0x0F, 0xF8, 0x1F, 0xF0, 0x3E, 0xFF, 0xC3, + 0xFF, 0xCF, 0xFF, 0xBC, 0x7E, 0xF0, 0x7B, 0xC1, 0xFF, 0x07, 0xBC, 0x7E, 0xFF, 0xFB, 0xFF, 0xCF, + 0xFC, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x00, 0x07, 0xFC, 0x3F, 0xFC, + 0xFF, 0xF3, 0xF8, 0xE7, 0xC0, 0x1F, 0x00, 0x3E, 0x00, 0x7C, 0x00, 0xF8, 0x01, 0xF0, 0x03, 0xE0, + 0x07, 0xC0, 0x07, 0xC0, 0x0F, 0xE3, 0x8F, 0xFF, 0x8F, 0xFF, 0x0F, 0xFC, 0xFF, 0xFF, 0xFF, 0xFF, + 0xFF, 0xF8, 0x3E, 0x00, 0x7C, 0x00, 0xF8, 0x01, 0xF0, 0x03, 0xE0, 0x07, 0xC0, 0x0F, 0x80, 0x1F, + 0x00, 0x3E, 0x00, 0x7C, 0x00, 0xF8, 0x01, 0xF0, 0x03, 0xE0, 0x07, 0xC0, 0xF8, 0x1F, 0x3E, 0x0F, + 0x9F, 0x07, 0xC7, 0xC7, 0xC3, 0xE3, 0xE0, 0xF9, 0xE0, 0x7D, 0xF0, 0x1F, 0xF0, 0x0F, 0xF8, 0x03, + 0xFC, 0x00, 0xFC, 0x00, 0x7E, 0x00, 0x3E, 0x01, 0x3F, 0x01, 0xFF, 0x00, 0xFF, 0x00, 0x7F, 0x00, + 0x00, 0x00, 0xF0, 0x00, 0x0F, 0x00, 0x0F, 0xFE, 0x01, 0xFF, 0xF8, 0x3F, 0xFF, 0xC7, 0xEF, 0xFE, + 0xF8, 0xF3, 0xEF, 0x8F, 0x1F, 0xF0, 0xF1, 0xFF, 0x0F, 0x1F, 0xF8, 0xF1, 0xFF, 0x8F, 0x3E, 0x7E, + 0xF7, 0xE7, 0xFF, 0xFC, 0x3F, 0xFF, 0x80, 0xFF, 0xF0, 0x00, 0xF0, 0x00, 0x0F, 0x00, 0xFC, 0x1F, + 0x3F, 0x1F, 0x8F, 0x8F, 0x87, 0xEF, 0x81, 0xFF, 0xC0, 0x7F, 0xC0, 0x3F, 0xC0, 0x0F, 0xE0, 0x03, + 0xE0, 0x03, 0xF8, 0x03, 0xFE, 0x03, 0xFF, 0x81, 0xF7, 0xC1, 0xF3, 0xF1, 0xF8, 0xFC, 0xF8, 0x3E, + 0xF8, 0x1F, 0x80, 0xF0, 0x3E, 0x3C, 0x0F, 0x8F, 0x03, 0xE3, 0xC0, 0xF8, 0xF0, 0x3E, 0x3C, 0x0F, + 0x8F, 0x03, 0xE3, 0xC0, 0xF8, 0xF0, 0x3E, 0x3C, 0x0F, 0x8F, 0x03, 0xE3, 0xC0, 0xF8, 0xF0, 0x3E, + 0x3C, 0x0F, 0x8F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0x01, 0xF0, 0x00, 0x7C, 0x00, 0x1F, + 0x00, 0x07, 0xC0, 0x01, 0xF0, 0xF0, 0x3F, 0xC0, 0xFF, 0x03, 0xFC, 0x0F, 0xF0, 0x3F, 0xC0, 0xFF, + 0x83, 0xFF, 0x1F, 0xFF, 0xFD, 0xFF, 0xF3, 0xFF, 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x03, 0xC0, + 0x0F, 0x00, 0x3C, 0xF0, 0xF8, 0x7F, 0xC3, 0xE1, 0xFF, 0x0F, 0x87, 0xFC, 0x3E, 0x1F, 0xF0, 0xF8, + 0x7F, 0xC3, 0xE1, 0xFF, 0x0F, 0x87, 0xFC, 0x3E, 0x1F, 0xF0, 0xF8, 0x7F, 0xC3, 0xE1, 0xFF, 0x0F, + 0x87, 0xFC, 0x3E, 0x1F, 0xF0, 0xF8, 0x7F, 0xC3, 0xE1, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, + 0xFF, 0xFC, 0xF0, 0xF8, 0x7C, 0x78, 0x7C, 0x3E, 0x3C, 0x3E, 0x1F, 0x1E, 0x1F, 0x0F, 0x8F, 0x0F, + 0x87, 0xC7, 0x87, 0xC3, 0xE3, 0xC3, 0xE1, 0xF1, 0xE1, 0xF0, 0xF8, 0xF0, 0xF8, 0x7C, 0x78, 0x7C, + 0x3E, 0x3C, 0x3E, 0x1F, 0x1E, 0x1F, 0x0F, 0x8F, 0x0F, 0x87, 0xC7, 0x87, 0xC3, 0xE3, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x07, 0xC0, 0x00, 0x03, 0xE0, 0x00, 0x01, + 0xF0, 0x00, 0x00, 0xF8, 0x00, 0x00, 0x7C, 0xFF, 0x80, 0x1F, 0xF0, 0x03, 0xFE, 0x00, 0x07, 0xC0, + 0x00, 0xF8, 0x00, 0x1F, 0x00, 0x03, 0xFF, 0x80, 0x7F, 0xFC, 0x0F, 0xFF, 0xC1, 0xF3, 0xF8, 0x3E, + 0x0F, 0x07, 0xC1, 0xF0, 0xF8, 0x3C, 0x1F, 0x1F, 0x83, 0xFF, 0xF0, 0x7F, 0xFC, 0x07, 0xFE, 0x00, + 0xF0, 0x01, 0xFF, 0x00, 0x1F, 0xF0, 0x01, 0xFF, 0x00, 0x1F, 0xF0, 0x01, 0xFF, 0x00, 0x1F, 0xFF, + 0xC1, 0xFF, 0xFF, 0x1F, 0xFF, 0xF9, 0xFF, 0x3F, 0x9F, 0xF0, 0xF9, 0xFF, 0x07, 0x9F, 0xF0, 0xF9, + 0xFF, 0x1F, 0x9F, 0xFF, 0xF9, 0xFF, 0xFF, 0x1F, 0xFF, 0xC1, 0xF0, 0xF0, 0x03, 0xC0, 0x0F, 0x00, + 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0xFC, 0x3F, 0xFC, 0xFF, 0xFB, 0xCF, 0xEF, 0x07, 0xFC, 0x1F, + 0xF0, 0x7F, 0xC7, 0xEF, 0xFF, 0xBF, 0xFC, 0xFF, 0xC0, 0x7F, 0xC1, 0xFF, 0xE3, 0xFF, 0xE3, 0x8F, + 0xE0, 0x07, 0xC0, 0x07, 0xC0, 0x0F, 0x8F, 0xFF, 0x1F, 0xFE, 0x3F, 0xFC, 0x00, 0xF8, 0x01, 0xF0, + 0x07, 0xCF, 0x3F, 0xBF, 0xFE, 0x7F, 0xF8, 0x7F, 0xC0, 0xF0, 0x0F, 0xE0, 0xF0, 0x3F, 0xF8, 0xF0, + 0x7F, 0xFC, 0xF0, 0xFC, 0xFE, 0xF0, 0xF8, 0x3E, 0xF1, 0xF0, 0x1F, 0xF1, 0xF0, 0x1F, 0xFF, 0xE0, + 0x1F, 0xFF, 0xE0, 0x1F, 0xFF, 0xE0, 0x1F, 0xF1, 0xF0, 0x1F, 0xF1, 0xF0, 0x1F, 0xF1, 0xF8, 0x3E, + 0xF0, 0xFC, 0xFE, 0xF0, 0x7F, 0xFC, 0xF0, 0x3F, 0xF8, 0xF0, 0x1F, 0xE0, 0x0F, 0xFC, 0x7F, 0xFC, + 0xFF, 0xFB, 0xF9, 0xF7, 0xC3, 0xEF, 0x07, 0xDF, 0x0F, 0xBF, 0x1F, 0x7F, 0xFE, 0x7F, 0xFC, 0x7F, + 0xF8, 0xF9, 0xF3, 0xE3, 0xEF, 0x87, 0xDF, 0x0F, 0xFC, 0x1F, 0xF8, 0x3E, 0x3F, 0xC1, 0xFF, 0x8F, + 0xFC, 0x63, 0xE0, 0x0F, 0x8F, 0xFD, 0xFF, 0xEF, 0xFF, 0x7C, 0xFB, 0xE7, 0xDF, 0xFE, 0xFF, 0xF3, + 0xFF, 0x00, 0x01, 0xF0, 0x7F, 0x87, 0xFE, 0x7F, 0xC7, 0xC0, 0x3C, 0x03, 0xFF, 0x1F, 0xFE, 0xFF, + 0xF7, 0xEF, 0xFC, 0x3F, 0xE0, 0xFF, 0x07, 0xFC, 0x3F, 0xE3, 0xFF, 0xBF, 0x7F, 0xF1, 0xFF, 0x07, + 0xF0, 0xFF, 0xE7, 0xFF, 0xBF, 0xFD, 0xF1, 0xFF, 0x8F, 0x7F, 0xFB, 0xFF, 0xDF, 0xFF, 0xF8, 0xFF, + 0xC7, 0xFF, 0xFF, 0xFF, 0xE7, 0xFE, 0x00, 0xFF, 0xDF, 0xFB, 0xFF, 0x7C, 0x0F, 0x81, 0xF0, 0x3E, + 0x07, 0xC0, 0xF8, 0x1F, 0x03, 0xE0, 0x7C, 0x0F, 0x80, 0x0F, 0xFE, 0x07, 0xFF, 0x03, 0xFF, 0x83, + 0xE7, 0xC1, 0xF3, 0xE0, 0xF9, 0xF0, 0x78, 0xF8, 0x3C, 0x7C, 0x1E, 0x3E, 0x1F, 0x1F, 0x3F, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x3F, 0xC0, 0x1F, 0xE0, 0x0F, 0xF0, 0x07, 0x80, 0x1F, 0xC1, + 0xFF, 0x1F, 0xFD, 0xFB, 0xEF, 0x8F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x07, 0xE3, 0x9F, 0xFC, + 0x7F, 0xE1, 0xFF, 0x00, 0xFC, 0xF8, 0xFB, 0xE7, 0xCF, 0x8F, 0xBE, 0xF8, 0x3F, 0xFF, 0xC1, 0xFF, + 0xFC, 0x07, 0xFF, 0xC0, 0x1F, 0xFC, 0x01, 0xFF, 0xF0, 0x1F, 0xFF, 0xC1, 0xFF, 0xDF, 0x0F, 0xBE, + 0xFC, 0xF9, 0xF3, 0xEF, 0x8F, 0x8F, 0x80, 0x7F, 0xC7, 0xFE, 0x7F, 0xE7, 0x3E, 0x01, 0xE3, 0xFE, + 0x3F, 0xE3, 0xFE, 0x01, 0xF7, 0x1F, 0x7F, 0xF7, 0xFE, 0x7F, 0xC0, 0xF8, 0x7F, 0xC7, 0xFE, 0x7F, + 0xF7, 0xFF, 0xBF, 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, 0xFE, 0x7F, 0xF3, 0xFF, 0x1F, 0xF0, 0xFF, 0x87, + 0x80, 0x18, 0xE1, 0xEF, 0x0F, 0xF8, 0x3F, 0x80, 0xF8, 0x00, 0x00, 0x00, 0x1F, 0x0F, 0xF8, 0xFF, + 0xCF, 0xFE, 0xFF, 0xF7, 0xFF, 0xFF, 0xFF, 0xFF, 0xFD, 0xFF, 0xCF, 0xFE, 0x7F, 0xE3, 0xFE, 0x1F, + 0xF0, 0xF0, 0xF8, 0xFB, 0xE7, 0xCF, 0xBE, 0x3F, 0xF0, 0xFF, 0x83, 0xFC, 0x0F, 0xF8, 0x3F, 0xF0, + 0xFF, 0xC3, 0xEF, 0x8F, 0x9F, 0x3E, 0x7E, 0xF8, 0xF8, 0x0F, 0xFC, 0x3F, 0xF0, 0xFF, 0xC3, 0xCF, + 0x0F, 0x3C, 0x7C, 0xF1, 0xF3, 0xC7, 0xCF, 0x1E, 0x3D, 0xF8, 0xFF, 0xC3, 0xFE, 0x0F, 0xF0, 0x3C, + 0x78, 0x0F, 0x3E, 0x0F, 0x9F, 0x07, 0xCF, 0xC7, 0xE7, 0xE3, 0xF3, 0xFB, 0xF9, 0xFF, 0xFF, 0xFF, + 0xFF, 0xFB, 0xEF, 0xFD, 0xF7, 0xFE, 0x73, 0xFF, 0x01, 0xFF, 0x80, 0xF8, 0xF8, 0xF7, 0xC7, 0xBE, + 0x3D, 0xF1, 0xEF, 0x8F, 0x7F, 0xFB, 0xFF, 0xDF, 0xFE, 0xF8, 0xF7, 0xC7, 0xBE, 0x3D, 0xF1, 0xEF, + 0x8F, 0x00, 0x1F, 0xC0, 0xFF, 0x87, 0xFF, 0x3F, 0x7E, 0xF8, 0xFB, 0xC1, 0xEF, 0x07, 0xBC, 0x1E, + 0xF8, 0xFB, 0xF7, 0xE7, 0xFF, 0x0F, 0xF8, 0x1F, 0xC0, 0xFF, 0xF7, 0xFF, 0xBF, 0xFD, 0xF1, 0xEF, + 0x8F, 0x7C, 0x7B, 0xE3, 0xDF, 0x1E, 0xF8, 0xF7, 0xC7, 0xBE, 0x3D, 0xF1, 0xEF, 0x8F, 0x00, 0x7F, + 0xC7, 0xFF, 0x3F, 0xFD, 0xF3, 0xFF, 0x8F, 0xFC, 0x3F, 0xE1, 0xFF, 0x0F, 0xF8, 0xFF, 0xEF, 0xFF, + 0xFD, 0xFF, 0xEF, 0xFC, 0x7C, 0x03, 0xE0, 0x1F, 0x00, 0xF8, 0x07, 0xC0, 0x00, 0x1F, 0xE7, 0xFD, + 0xFF, 0x7E, 0x6F, 0x81, 0xE0, 0x3C, 0x07, 0x80, 0xF8, 0x1F, 0x8D, 0xFF, 0x9F, 0xF1, 0xFE, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFE, 0x1F, 0x00, 0xF8, 0x07, 0xC0, 0x3E, 0x01, 0xF0, 0x0F, 0x80, 0x7C, 0x03, + 0xE0, 0x1F, 0x00, 0xF8, 0x00, 0xF8, 0x7F, 0xE1, 0xE7, 0x87, 0x9F, 0x3E, 0x7C, 0xF0, 0xF3, 0xC3, + 0xFF, 0x0F, 0xF8, 0x1F, 0xE0, 0x7F, 0x80, 0xFC, 0x03, 0xF0, 0x07, 0x80, 0x3E, 0x05, 0xF0, 0x3F, + 0xC0, 0xFE, 0x03, 0xF0, 0x00, 0x01, 0xE0, 0x00, 0x78, 0x00, 0x1E, 0x00, 0x07, 0x80, 0x01, 0xE0, + 0x00, 0x78, 0x00, 0xFF, 0xC0, 0xFF, 0xFC, 0x7F, 0xFF, 0xBF, 0xFF, 0xEF, 0x9E, 0x7F, 0xC7, 0x9F, + 0xF1, 0xE3, 0xFC, 0x79, 0xFF, 0x9E, 0x7F, 0xFF, 0xBE, 0x7F, 0xFF, 0x8F, 0xFF, 0xC0, 0xFF, 0xC0, + 0x07, 0x80, 0x01, 0xE0, 0x00, 0x78, 0x00, 0x1E, 0x00, 0x07, 0x80, 0xF8, 0x79, 0xF3, 0xE3, 0xFF, + 0x0F, 0xF8, 0x1F, 0xE0, 0x3F, 0x00, 0xF8, 0x03, 0xF0, 0x1F, 0xE0, 0xFF, 0xC7, 0xCF, 0x1E, 0x3E, + 0xF8, 0x7C, 0xF8, 0xF1, 0xF1, 0xE3, 0xE3, 0xC7, 0xC7, 0x8F, 0x8F, 0x1F, 0x1E, 0x3E, 0x3C, 0x7C, + 0x78, 0xF8, 0xF1, 0xF1, 0xE3, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x03, 0xC0, 0x07, 0x80, 0x0F, + 0x00, 0x1E, 0xF1, 0xFF, 0x1F, 0xF1, 0xFF, 0x1F, 0xF1, 0xFF, 0x9F, 0xFF, 0xF7, 0xFF, 0x3F, 0xF0, + 0x1F, 0x01, 0xF0, 0x1F, 0x01, 0xF0, 0xF8, 0xF1, 0xFF, 0x1E, 0x3F, 0xE3, 0xC7, 0xFC, 0x78, 0xFF, + 0x8F, 0x1F, 0xF1, 0xE3, 0xFE, 0x3C, 0x7F, 0xC7, 0x8F, 0xF8, 0xF1, 0xFF, 0x1E, 0x3F, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xF8, 0xF1, 0xE7, 0xC7, 0x8F, 0x3E, 0x3C, 0x79, 0xF1, 0xE3, 0xCF, + 0x8F, 0x1E, 0x7C, 0x78, 0xF3, 0xE3, 0xC7, 0x9F, 0x1E, 0x3C, 0xF8, 0xF1, 0xE7, 0xC7, 0x8F, 0x3F, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x3C, 0x00, 0x01, 0xE0, 0x00, 0x0F, 0x00, + 0x00, 0x78, 0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0x1F, 0x00, 0x1F, 0xF8, 0x1F, 0xFC, 0x1F, 0xFE, + 0x1F, 0x3E, 0x1F, 0x1E, 0x1F, 0x3E, 0x1F, 0xFE, 0x1F, 0xFC, 0x1F, 0xF8, 0xF8, 0x03, 0xFE, 0x00, + 0xFF, 0x80, 0x3F, 0xE0, 0x0F, 0xFF, 0xC3, 0xFF, 0xF8, 0xFF, 0xFF, 0x3F, 0xE7, 0xCF, 0xF8, 0xFB, + 0xFE, 0x7C, 0xFF, 0xFF, 0x3F, 0xFF, 0xCF, 0x7F, 0xC3, 0xC0, 0xF8, 0x07, 0xC0, 0x3E, 0x01, 0xF0, + 0x0F, 0xFC, 0x7F, 0xFB, 0xFF, 0xDF, 0x3E, 0xF8, 0xFF, 0xCF, 0xBF, 0xFD, 0xFF, 0xE7, 0xFC, 0x00, + 0x7F, 0x83, 0xFF, 0x1F, 0xF8, 0xE7, 0xE0, 0x0F, 0x0F, 0xF8, 0x7F, 0xE3, 0xFE, 0x00, 0xF3, 0x9F, + 0x9F, 0xF8, 0xFF, 0xC7, 0xF8, 0x00, 0xF8, 0x3F, 0x8F, 0x87, 0xFC, 0xF8, 0xFF, 0xEF, 0x9F, 0xBE, + 0xF9, 0xF1, 0xFF, 0xFE, 0x1F, 0xFF, 0xE1, 0xFF, 0xFE, 0x1F, 0xF9, 0xF1, 0xFF, 0x9F, 0xBE, 0xF8, + 0xFF, 0xEF, 0x87, 0xFC, 0xF8, 0x3F, 0x80, 0x1F, 0xF9, 0xFF, 0xDF, 0xFE, 0xF8, 0xF7, 0xC7, 0xBF, + 0xFC, 0xFF, 0xE3, 0xFF, 0x1E, 0x79, 0xF3, 0xCF, 0x1E, 0xF8, 0xF7, 0x87, 0x80, 0x0C, 0x00, 0xF0, + 0x07, 0xC0, 0x1F, 0x00, 0x78, 0x01, 0x80, 0x00, 0x03, 0xF8, 0x3F, 0xE3, 0xFF, 0xBF, 0x7D, 0xF1, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0xFC, 0x73, 0xFF, 0x8F, 0xFC, 0x3F, 0xE0, 0x39, 0xE3, + 0xEF, 0x1F, 0x78, 0x73, 0xC0, 0x00, 0x00, 0x00, 0x7F, 0x07, 0xFC, 0x7F, 0xF7, 0xEF, 0xBE, 0x3F, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x1F, 0x8E, 0x7F, 0xF1, 0xFF, 0x87, 0xFC, 0x3C, 0x00, 0xF0, + 0x0F, 0xFC, 0x3F, 0xF0, 0x3C, 0x00, 0xF0, 0x03, 0xFE, 0x0F, 0xFC, 0x3F, 0xF8, 0xF3, 0xE3, 0xC7, + 0xCF, 0x1F, 0x3C, 0x7C, 0xF1, 0xF3, 0xC7, 0xCF, 0x1F, 0x3C, 0x7C, 0xF1, 0xF3, 0xC7, 0xC0, 0x1F, + 0x00, 0x7C, 0x0F, 0xE0, 0x3F, 0x80, 0xFC, 0x06, 0x01, 0xE0, 0x3E, 0x0F, 0x01, 0xC0, 0x10, 0x00, + 0x07, 0xFE, 0xFF, 0xDF, 0xFB, 0xE0, 0x7C, 0x0F, 0x81, 0xF0, 0x3E, 0x07, 0xC0, 0xF8, 0x1F, 0x03, + 0xE0, 0x7C, 0x00, 0x0F, 0xF0, 0xFF, 0x8F, 0xFC, 0xFC, 0xE7, 0x80, 0x3F, 0xE1, 0xFF, 0x0F, 0xF8, + 0x78, 0x03, 0xF3, 0x8F, 0xFC, 0x7F, 0xF0, 0xFF, 0x00, 0x1F, 0xE3, 0xFE, 0x7F, 0xC7, 0xCC, 0x7F, + 0x07, 0xFE, 0x7F, 0xE3, 0xFE, 0x03, 0xE7, 0x1E, 0x7F, 0xE7, 0xFC, 0x7F, 0x80, 0x7F, 0xFE, 0xF0, + 0x03, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x71, 0xCF, 0x7D, 0xEF, 0xB8, 0xE0, 0x00, + 0x00, 0x07, 0xC0, 0xF8, 0x1F, 0x03, 0xE0, 0x7C, 0x0F, 0x81, 0xF0, 0x3E, 0x07, 0xC0, 0xF8, 0x1F, + 0x03, 0xE0, 0x7C, 0x00, 0x0F, 0x1F, 0x1F, 0x0F, 0x00, 0x00, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, + 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0xFE, 0xFE, 0xFC, 0x0F, 0xFC, 0x00, 0x3F, + 0xF0, 0x00, 0xFF, 0xC0, 0x03, 0xCF, 0x00, 0x0F, 0x3C, 0x00, 0x7C, 0xFF, 0xC1, 0xF3, 0xFF, 0x87, + 0xCF, 0xFF, 0x1E, 0x3C, 0x7D, 0xF8, 0xF1, 0xFF, 0xC3, 0xFF, 0xFE, 0x0F, 0xFE, 0xF0, 0x3F, 0xF0, + 0xF8, 0xF0, 0x0F, 0x8F, 0x00, 0xF8, 0xF0, 0x0F, 0x8F, 0x00, 0xF8, 0xF0, 0x0F, 0xFF, 0xFC, 0xFF, + 0xFF, 0xEF, 0xFF, 0xFF, 0xF8, 0xF9, 0xFF, 0x8F, 0x1F, 0xF8, 0xFF, 0xFF, 0x8F, 0xFE, 0xF8, 0xFF, + 0xC0, 0x3C, 0x00, 0xF0, 0x0F, 0xFC, 0x3F, 0xF0, 0x3C, 0x00, 0xF0, 0x03, 0xFE, 0x0F, 0xFC, 0x3F, + 0xF8, 0xF3, 0xE3, 0xC7, 0xCF, 0x1F, 0x3C, 0x7C, 0xF1, 0xF3, 0xC7, 0xCF, 0x1F, 0x3C, 0x7C, 0xF1, + 0xF3, 0xC7, 0xC0, 0x01, 0x80, 0x0F, 0x00, 0x7C, 0x03, 0xE0, 0x0F, 0x00, 0x18, 0x00, 0x00, 0x3E, + 0x3E, 0xF9, 0xF3, 0xEF, 0x8F, 0xFC, 0x3F, 0xE0, 0xFF, 0x03, 0xFE, 0x0F, 0xFC, 0x3F, 0xF0, 0xFB, + 0xE3, 0xE7, 0xCF, 0x9F, 0xBE, 0x3E, 0x0C, 0x00, 0xF0, 0x07, 0xC0, 0x1F, 0x00, 0x78, 0x01, 0x80, + 0x00, 0x1F, 0x0F, 0xF8, 0xFF, 0xCF, 0xFE, 0xFF, 0xF7, 0xFF, 0xFF, 0xFF, 0xFF, 0xFD, 0xFF, 0xCF, + 0xFE, 0x7F, 0xE3, 0xFE, 0x1F, 0xF0, 0xF0, 0x18, 0xE0, 0xF7, 0x83, 0xFE, 0x07, 0xF0, 0x0F, 0x80, + 0x00, 0x00, 0x00, 0x3E, 0x1F, 0xF8, 0x79, 0xE1, 0xE7, 0xCF, 0x9F, 0x3C, 0x3C, 0xF0, 0xFF, 0xC3, + 0xFE, 0x07, 0xF8, 0x1F, 0xE0, 0x3F, 0x00, 0xFC, 0x01, 0xE0, 0x0F, 0x81, 0x7C, 0x0F, 0xF0, 0x3F, + 0x80, 0xFC, 0x00, 0xF8, 0xF7, 0xC7, 0xBE, 0x3D, 0xF1, 0xEF, 0x8F, 0x7C, 0x7B, 0xE3, 0xDF, 0x1E, + 0xF8, 0xF7, 0xC7, 0xBF, 0xFD, 0xFF, 0xEF, 0xFF, 0x07, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x0F, + 0x80, 0x03, 0xE0, 0x0F, 0xFF, 0x83, 0xFF, 0xE0, 0xFF, 0xF8, 0x03, 0xE0, 0x00, 0xF8, 0x00, 0x3F, + 0xF0, 0x0F, 0xFF, 0x03, 0xFF, 0xE0, 0xF9, 0xF8, 0x3E, 0x1F, 0x0F, 0x87, 0xC3, 0xE1, 0xF0, 0xF8, + 0x7C, 0x3E, 0x7E, 0x0F, 0xFF, 0x83, 0xFF, 0xC0, 0xFF, 0xC0, 0x1E, 0x00, 0x3C, 0x00, 0x78, 0x00, + 0xF0, 0x01, 0xE0, 0x03, 0xC0, 0x3F, 0xFC, 0x7F, 0xF8, 0xFF, 0xF0, 0x3C, 0x00, 0x78, 0x00, 0xFF, + 0xC1, 0xFF, 0xC3, 0xFF, 0xC7, 0x8F, 0x8F, 0x1F, 0x1F, 0xFE, 0x3F, 0xF8, 0x7F, 0xE0, 0x07, 0xF8, + 0x07, 0xFF, 0x83, 0xFF, 0xF1, 0xFC, 0xFC, 0x7C, 0x0F, 0xBE, 0x03, 0xEF, 0x80, 0x7F, 0xFF, 0xBF, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xDF, 0xFF, 0xE0, 0x1E, 0x7C, 0x0F, 0x9F, 0xCF, 0xE3, 0xFF, 0xF0, + 0x7F, 0xF8, 0x07, 0xF8, 0x00, 0x1F, 0xC0, 0xFF, 0x87, 0xFF, 0x3F, 0x7E, 0xF8, 0x7B, 0xFD, 0xEF, + 0xFF, 0xBD, 0xFE, 0xF8, 0x7B, 0xF7, 0xE7, 0xFF, 0x0F, 0xF8, 0x1F, 0xC0, 0xF8, 0x03, 0xF7, 0xC0, + 0x3F, 0x9F, 0x03, 0xFC, 0xF8, 0x1F, 0x47, 0xC1, 0xF0, 0x1F, 0x0F, 0x80, 0xF8, 0x78, 0x03, 0xC7, + 0xC0, 0x1F, 0x3E, 0x00, 0xF9, 0xE0, 0x03, 0xFF, 0x00, 0x1F, 0xF0, 0x00, 0x7F, 0x80, 0x03, 0xFC, + 0x00, 0x0F, 0xC0, 0x00, 0x7E, 0x00, 0x03, 0xE0, 0x00, 0xF8, 0x3E, 0xF8, 0x7E, 0x78, 0x7E, 0x7C, + 0xF8, 0x7C, 0xF0, 0x3C, 0xF0, 0x3F, 0xE0, 0x1F, 0xE0, 0x1F, 0xE0, 0x1F, 0xC0, 0x0F, 0xC0, 0x0F, + 0x80, 0x07, 0x80, 0x1E, 0x70, 0x07, 0xBC, 0x00, 0xFF, 0x00, 0x3F, 0x80, 0x07, 0xC0, 0x00, 0x00, + 0x00, 0x00, 0x03, 0xC0, 0x78, 0xF0, 0x3E, 0x3C, 0x1F, 0x8F, 0x0F, 0xE3, 0xC7, 0xF8, 0xF1, 0xFE, + 0x3C, 0xFF, 0x8F, 0x7D, 0xE3, 0xFE, 0x78, 0xFF, 0x9E, 0x3F, 0xC7, 0x8F, 0xE1, 0xE3, 0xF8, 0x78, + 0xFC, 0x1E, 0x3E, 0x07, 0xFF, 0x81, 0xFF, 0xC0, 0x7F, 0x00, 0x07, 0x80, 0x01, 0xE0, 0x00, 0xF8, + 0x00, 0x3C, 0x00, 0x06, 0x00, 0x38, 0xE0, 0x7B, 0xC0, 0xFF, 0x80, 0xFE, 0x00, 0xF8, 0x00, 0x00, + 0x00, 0x00, 0x78, 0x7C, 0xF1, 0xF9, 0xE3, 0xF3, 0xCF, 0xE7, 0xBF, 0xCF, 0xFF, 0x9F, 0xFF, 0x3F, + 0xFE, 0x7F, 0x7C, 0xFC, 0xF9, 0xF9, 0xFF, 0xE3, 0xFF, 0x87, 0xE0, 0x03, 0xC0, 0x0F, 0x80, 0x1E, + 0x00, 0x18, 0x3C, 0x00, 0xFF, 0x80, 0xFF, 0x80, 0xFF, 0x80, 0x3C, 0x00, 0x3C, 0x00, 0x3F, 0xF8, + 0x3F, 0xFC, 0x3F, 0xFE, 0x3C, 0x7E, 0x3C, 0x1F, 0x3C, 0x1F, 0x3C, 0x1F, 0x3C, 0x7E, 0x3F, 0xFE, + 0x3F, 0xFC, 0x3F, 0xF0, 0x7C, 0x01, 0xF0, 0x0F, 0xF8, 0x3F, 0xE0, 0x7C, 0x01, 0xFF, 0x87, 0xFF, + 0x9F, 0xFE, 0x7C, 0xFD, 0xF1, 0xF7, 0xCF, 0xDF, 0xFE, 0x7F, 0xF8, 0xFF, 0x80, 0xFF, 0xE3, 0xFF, + 0xCF, 0xFF, 0xBC, 0x7F, 0xF0, 0x7F, 0xDD, 0xFF, 0x7F, 0xFD, 0xFE, 0xFF, 0xFB, 0xFF, 0xCF, 0xFE, + 0x3C, 0x3C, 0xF0, 0xF3, 0xC1, 0x8F, 0x00, 0x3C, 0x00, 0xF0, 0x00, 0x7F, 0xC3, 0xFF, 0xCF, 0xFF, + 0x3E, 0x7E, 0xF8, 0xFB, 0xE1, 0xFF, 0x87, 0xFE, 0xDF, 0xFF, 0xFB, 0xFF, 0xEF, 0xFF, 0xBF, 0xFC, + 0xFF, 0xF3, 0xE3, 0xCF, 0x87, 0x3E, 0x1C, 0xF8, 0x03, 0xE0, 0x00, 0x00, 0xF0, 0x0F, 0x00, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, + 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0x01, 0xC0, 0x38, 0x07, 0x7F, 0xEF, 0xFD, + 0xFF, 0xBE, 0x07, 0xC0, 0xF8, 0x1F, 0x03, 0xE0, 0x7C, 0x0F, 0x81, 0xF0, 0x3E, 0x07, 0xC0, 0x3F, + 0xFE, 0x7F, 0xFC, 0xFF, 0xF9, 0xF0, 0x03, 0xE0, 0x07, 0xC0, 0x0F, 0x80, 0x7F, 0xF0, 0xFF, 0xE1, + 0xFF, 0xC0, 0xF8, 0x01, 0xF0, 0x03, 0xE0, 0x07, 0xC0, 0x0F, 0x80, 0x1F, 0x00, 0x3E, 0x00, 0x3F, + 0xF3, 0xFF, 0x3F, 0xF3, 0xC0, 0x3C, 0x03, 0xC0, 0xFF, 0xCF, 0xFC, 0x3C, 0x03, 0xC0, 0x3C, 0x03, + 0xC0, 0x3C, 0x00, 0xFF, 0xF3, 0xFF, 0xCF, 0xFF, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0xFC, 0x3F, + 0xFC, 0xFF, 0xFB, 0xC7, 0xEF, 0x07, 0xFC, 0x1F, 0xF0, 0x3F, 0xC0, 0xFF, 0x03, 0xFC, 0x1F, 0xF0, + 0x7C, 0x01, 0xF0, 0x1F, 0x81, 0xFC, 0x07, 0xF0, 0x1F, 0x00, 0xFF, 0xE7, 0xFF, 0x3F, 0xF9, 0xF0, + 0x0F, 0x80, 0x7F, 0xE3, 0xFF, 0x9F, 0xFE, 0xF9, 0xF7, 0xC7, 0xBE, 0x3F, 0xF0, 0xFF, 0x8F, 0x80, + 0x7C, 0x07, 0xC0, 0xFE, 0x07, 0xE0, 0x3E, 0x00, 0xFC, 0x3E, 0x1F, 0x1F, 0x8F, 0x8F, 0xC3, 0xE3, + 0xE7, 0xE0, 0xFC, 0xFB, 0xF0, 0x1F, 0xBE, 0xF8, 0x03, 0xFF, 0xFC, 0x00, 0x7F, 0xFF, 0x00, 0x0F, + 0xFF, 0x80, 0x03, 0xFF, 0xC0, 0x00, 0xFF, 0xF8, 0x00, 0x7F, 0xFF, 0x00, 0x3E, 0xFF, 0xE0, 0x1F, + 0x3E, 0xF8, 0x0F, 0xCF, 0x9F, 0x07, 0xE3, 0xE3, 0xF9, 0xF0, 0xF8, 0xFE, 0xF8, 0x3E, 0x1F, 0x80, + 0x00, 0x01, 0xE0, 0x00, 0x00, 0x78, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x07, 0x80, 0xFC, 0xF8, 0xF9, + 0xF3, 0xE7, 0xC3, 0xEF, 0xBE, 0x07, 0xFF, 0xF8, 0x1F, 0xFF, 0xC0, 0x3F, 0xFE, 0x00, 0x7F, 0xF0, + 0x03, 0xFF, 0xE0, 0x1F, 0xFF, 0xC0, 0xFF, 0xFF, 0x83, 0xEF, 0xBF, 0xDF, 0x3E, 0x7F, 0xF8, 0xF8, + 0xFC, 0x00, 0x00, 0xF0, 0x00, 0x03, 0xC0, 0x00, 0x0F, 0x00, 0x00, 0x3C, 0x3F, 0xE0, 0xFF, 0xE1, + 0xFF, 0xE1, 0xC7, 0xE0, 0x07, 0xC0, 0x0F, 0x80, 0x7E, 0x0F, 0xFC, 0x1F, 0xF0, 0x3F, 0xF8, 0x03, + 0xF0, 0x01, 0xE0, 0x03, 0xCF, 0x1F, 0x9F, 0xFF, 0x7F, 0xFC, 0x3F, 0xF0, 0x0F, 0x00, 0x1F, 0x00, + 0x1E, 0x00, 0xFC, 0x01, 0xF0, 0x00, 0x7F, 0xC7, 0xFE, 0x7F, 0xE7, 0x3E, 0x01, 0xE3, 0xFE, 0x3F, + 0xE3, 0xFE, 0x01, 0xF7, 0x1F, 0x7F, 0xF7, 0xFE, 0x7F, 0xC0, 0xF0, 0x0F, 0x01, 0x78, 0x1F, 0x81, + 0xF0, 0xF0, 0x7C, 0xF0, 0xFC, 0xF1, 0xF8, 0xF3, 0xF0, 0xF7, 0xE0, 0xFF, 0xC0, 0xFF, 0x80, 0xFF, + 0x00, 0xFF, 0x80, 0xFF, 0xC0, 0xFF, 0xC0, 0xF7, 0xE0, 0xF3, 0xF0, 0xF1, 0xF8, 0xF0, 0xFF, 0xF0, + 0x7F, 0xF0, 0x7F, 0x00, 0x0F, 0x00, 0x0F, 0x00, 0x0F, 0x00, 0x0F, 0x00, 0x0F, 0xF8, 0xFB, 0xE7, + 0xCF, 0xBE, 0x3F, 0xF0, 0xFF, 0x83, 0xFC, 0x0F, 0xF8, 0x3F, 0xF0, 0xFF, 0xC3, 0xEF, 0x8F, 0x9F, + 0xFE, 0x3F, 0xF8, 0xFC, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x3C, 0xF0, 0x0F, 0xBC, 0x07, 0xEF, + 0x01, 0xF3, 0xDC, 0xF8, 0xF7, 0x7C, 0x3D, 0xFE, 0x0F, 0x7F, 0x83, 0xFF, 0xC0, 0xFF, 0xF0, 0x3F, + 0xFE, 0x0F, 0x7F, 0xC3, 0xDF, 0xF0, 0xF7, 0x7E, 0x3D, 0xCF, 0xCF, 0x01, 0xF3, 0xC0, 0x7E, 0xF0, + 0x0F, 0x80, 0xF8, 0x3F, 0xF8, 0x3E, 0xFF, 0x7C, 0xFF, 0xF8, 0xFF, 0xF0, 0xFF, 0xE0, 0xFF, 0xF0, + 0xFF, 0xF0, 0xFF, 0xF8, 0xFF, 0x7C, 0xF8, 0x3E, 0xF8, 0x3E, 0xF8, 0x1F, 0x3E, 0x00, 0x0F, 0x83, + 0xEF, 0xF9, 0xFB, 0xFE, 0xFC, 0xFF, 0xFE, 0x0F, 0xBF, 0x03, 0xFF, 0x80, 0xFF, 0xC0, 0x3F, 0xE0, + 0x0F, 0xF0, 0x03, 0xFE, 0x00, 0xFF, 0xC0, 0x3F, 0xF8, 0x0F, 0xBF, 0x03, 0xE7, 0xE0, 0xF8, 0xFC, + 0x3E, 0x1F, 0x0F, 0x83, 0xE0, 0x7C, 0x01, 0xFE, 0x7F, 0xFD, 0xF7, 0xFF, 0xC7, 0xDF, 0x0F, 0xFC, + 0x1F, 0xF0, 0x3F, 0xC0, 0x7F, 0xC0, 0xFF, 0xC1, 0xFF, 0xC3, 0xEF, 0xC7, 0xC7, 0xCF, 0x8F, 0xC0, + 0xFF, 0x83, 0xEF, 0xF8, 0x7C, 0xFF, 0x8F, 0x80, 0xF9, 0xF0, 0x0F, 0xBF, 0x00, 0xFF, 0xC0, 0x0F, + 0xF8, 0x00, 0xFF, 0x80, 0x0F, 0xFC, 0x00, 0xFF, 0xE0, 0x0F, 0xFE, 0x00, 0xFB, 0xF0, 0x0F, 0x9F, + 0x80, 0xF8, 0xFC, 0x0F, 0x87, 0xC0, 0xF8, 0x3E, 0x0F, 0x83, 0xF0, 0xFF, 0x1F, 0x7F, 0x9F, 0x3F, + 0xDF, 0x03, 0xFF, 0x01, 0xFF, 0x00, 0xFF, 0x00, 0x7F, 0xC0, 0x3F, 0xF0, 0x1F, 0xFC, 0x0F, 0xBE, + 0x07, 0xCF, 0x83, 0xE7, 0xE1, 0xF1, 0xF0, 0xF0, 0x3E, 0x3C, 0x0F, 0x8F, 0x03, 0xE3, 0xC0, 0xF8, + 0xF0, 0x3E, 0x3C, 0x0F, 0x8F, 0x03, 0xE3, 0xFF, 0xF8, 0xFF, 0xFE, 0x3F, 0xFF, 0x8F, 0x03, 0xE3, + 0xC0, 0xF8, 0xF0, 0x3E, 0x3C, 0x0F, 0x8F, 0x03, 0xFF, 0xC0, 0xFF, 0xF0, 0x3F, 0xC0, 0x00, 0xF0, + 0x00, 0x3C, 0x00, 0x0F, 0x00, 0x03, 0xC0, 0x00, 0xF0, 0xF8, 0xF1, 0xF1, 0xE3, 0xE3, 0xC7, 0xC7, + 0x8F, 0x8F, 0x1F, 0xFE, 0x3F, 0xFC, 0x7F, 0xF8, 0xF8, 0xF1, 0xF1, 0xE3, 0xE3, 0xFF, 0xC7, 0xFF, + 0x8F, 0xE0, 0x03, 0xC0, 0x07, 0x80, 0x0F, 0x00, 0x1E, 0xF0, 0x3F, 0xFE, 0x07, 0xFF, 0xC0, 0xFF, + 0xF8, 0x1F, 0x0F, 0x03, 0xE1, 0xE0, 0x7C, 0x3C, 0x0F, 0x87, 0xFF, 0xF0, 0xFF, 0xFE, 0x1F, 0xFF, + 0xC3, 0xC0, 0xF8, 0x78, 0x1F, 0x0F, 0x03, 0xE1, 0xE0, 0x7C, 0x3C, 0x0F, 0x87, 0x81, 0xF0, 0xF0, + 0x3E, 0x00, 0xF8, 0xFE, 0xF8, 0xFE, 0xF8, 0xFE, 0xF8, 0xF0, 0xF8, 0xF0, 0xFF, 0xF0, 0xFF, 0xF0, + 0xFF, 0xF0, 0xF8, 0xF0, 0xF8, 0xF0, 0xF8, 0xF0, 0xF8, 0xF0, 0xF8, 0xF0, 0xFF, 0xFE, 0x00, 0x7F, + 0xFF, 0x00, 0x3F, 0xFF, 0x80, 0x1E, 0x07, 0xC0, 0x0F, 0x03, 0xE0, 0x07, 0x81, 0xF0, 0x03, 0xC0, + 0xFF, 0xE1, 0xE0, 0x7F, 0xF8, 0xF0, 0x3F, 0xFE, 0x78, 0x1F, 0x3F, 0xBC, 0x0F, 0x83, 0xDE, 0x07, + 0xC1, 0xFF, 0x03, 0xE0, 0xFF, 0x81, 0xF0, 0x3F, 0xC0, 0xF8, 0x3F, 0xE0, 0x7C, 0x1F, 0xF0, 0x3E, + 0x0F, 0x80, 0x00, 0x07, 0x80, 0x00, 0x0F, 0xC0, 0x00, 0x1F, 0xC0, 0x00, 0x0F, 0xC0, 0x00, 0x0F, + 0xC0, 0xFF, 0xF0, 0x0F, 0xFF, 0x00, 0xFF, 0xF0, 0x0F, 0x8F, 0x00, 0xF8, 0xF0, 0x0F, 0x8F, 0xF8, + 0xF8, 0xFF, 0xEF, 0x8F, 0xFE, 0xF8, 0xFB, 0xFF, 0x8F, 0x0F, 0xF8, 0xF0, 0xFF, 0x8F, 0x0F, 0xF8, + 0xF0, 0xF0, 0x00, 0x0F, 0x00, 0x01, 0xF0, 0x00, 0xFE, 0x00, 0x0F, 0xE0, 0x00, 0xFC, 0x07, 0xFC, + 0x03, 0xFF, 0x80, 0xFF, 0xE0, 0x3F, 0x8C, 0x07, 0xC0, 0x01, 0xF0, 0xFE, 0x3E, 0x3F, 0xE7, 0xCF, + 0xFE, 0xF9, 0xF7, 0xDF, 0x3C, 0x7B, 0xEF, 0x8F, 0x7D, 0xF1, 0xE7, 0xFE, 0x7C, 0xFF, 0xFF, 0x8F, + 0xFF, 0xE0, 0xFF, 0xF8, 0x07, 0xFC, 0x00, 0x1F, 0xE0, 0x01, 0xFF, 0x00, 0x0F, 0xE0, 0x00, 0x7C, + 0x1F, 0xC0, 0x7F, 0x81, 0xFF, 0x07, 0xE6, 0x0F, 0x1F, 0x9E, 0x7F, 0xBD, 0xFF, 0x7B, 0xDE, 0xF7, + 0x9D, 0xFF, 0x79, 0xFF, 0xF1, 0xFF, 0xC1, 0xFF, 0x00, 0x7F, 0x00, 0x7F, 0x00, 0x7E, 0x00, 0x3C, + 0x07, 0xFC, 0x3F, 0xFC, 0xFF, 0xF3, 0xF8, 0xE7, 0xC0, 0x1F, 0x00, 0x3E, 0x00, 0x7C, 0x00, 0xF8, + 0x01, 0xF0, 0x03, 0xE0, 0x07, 0xC0, 0x07, 0xC0, 0x0F, 0xE3, 0x8F, 0xFF, 0x8F, 0xFF, 0x07, 0xFC, + 0x03, 0x80, 0x07, 0x80, 0x07, 0x00, 0x7E, 0x00, 0xF8, 0x00, 0x1F, 0xE7, 0xFD, 0xFF, 0x7E, 0x6F, + 0x81, 0xE0, 0x3C, 0x07, 0x80, 0xF8, 0x1F, 0x8D, 0xFF, 0x9F, 0xF0, 0xFE, 0x1E, 0x01, 0xE0, 0x3C, + 0x1F, 0x83, 0xE0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x3E, 0x00, 0x7C, 0x00, 0xF8, 0x01, 0xF0, + 0x03, 0xE0, 0x07, 0xC0, 0x0F, 0x80, 0x1F, 0x00, 0x3E, 0x00, 0x7C, 0x00, 0xF8, 0x01, 0xFE, 0x03, + 0xFC, 0x07, 0xF8, 0x00, 0xF0, 0x01, 0xE0, 0x03, 0xC0, 0x07, 0x80, 0x0F, 0x00, 0xFF, 0xFF, 0xFF, + 0xFF, 0xFE, 0x1F, 0x00, 0xF8, 0x07, 0xC0, 0x3E, 0x01, 0xF0, 0x0F, 0x80, 0x7C, 0x03, 0xF8, 0x1F, + 0xC0, 0xFE, 0x00, 0xF0, 0x07, 0x80, 0x3C, 0x01, 0xE0, 0xF8, 0x1F, 0xBE, 0x0F, 0x9F, 0x0F, 0x87, + 0xC7, 0xC3, 0xE7, 0xC0, 0xFB, 0xE0, 0x7F, 0xE0, 0x1F, 0xF0, 0x07, 0xF0, 0x03, 0xF0, 0x00, 0xF8, + 0x00, 0x7C, 0x00, 0x3E, 0x00, 0x1F, 0x00, 0x0F, 0x80, 0x07, 0xC0, 0x03, 0xE0, 0x00, 0xF8, 0x7F, + 0xE1, 0xE7, 0x8F, 0x9F, 0x3E, 0x7C, 0xF0, 0xF7, 0xC3, 0xFF, 0x07, 0xF8, 0x1F, 0xE0, 0x7F, 0x00, + 0xFC, 0x03, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0xF8, 0x1F, + 0xBE, 0x0F, 0x9F, 0x0F, 0x87, 0xC7, 0xC3, 0xE7, 0xC0, 0xFB, 0xE0, 0x7F, 0xE0, 0x1F, 0xF0, 0x07, + 0xF0, 0x03, 0xF0, 0x07, 0xFF, 0x03, 0xFF, 0x81, 0xFF, 0xC0, 0x1F, 0x00, 0x0F, 0x80, 0x07, 0xC0, + 0x03, 0xE0, 0x00, 0xF8, 0x7F, 0xE1, 0xE7, 0x8F, 0x9F, 0x3E, 0x7C, 0xF0, 0xF7, 0xC3, 0xFF, 0x07, + 0xF8, 0x1F, 0xE0, 0x7F, 0x00, 0xFC, 0x0F, 0xFC, 0x3F, 0xF0, 0x1E, 0x00, 0x78, 0x01, 0xE0, 0x07, + 0x80, 0x1E, 0x00, 0xFC, 0x1F, 0x1F, 0x8F, 0xC3, 0xE3, 0xE0, 0xFD, 0xF0, 0x1F, 0xFC, 0x03, 0xFE, + 0x00, 0xFF, 0x00, 0x1F, 0xC0, 0x03, 0xE0, 0x01, 0xFC, 0x00, 0xFF, 0x80, 0x7F, 0xF0, 0x1F, 0x7C, + 0x0F, 0x9F, 0x87, 0xE3, 0xFD, 0xF0, 0x7F, 0xF8, 0x1F, 0xC0, 0x01, 0xF0, 0x00, 0x7C, 0x00, 0x1F, + 0x00, 0x07, 0xC0, 0x01, 0xF0, 0xF8, 0x78, 0xF9, 0xF0, 0xFF, 0xC1, 0xFF, 0x01, 0xFE, 0x01, 0xF8, + 0x03, 0xF0, 0x07, 0xE0, 0x1F, 0xE0, 0x7F, 0xE1, 0xF3, 0xFB, 0xC7, 0xFF, 0x87, 0xE0, 0x03, 0xC0, + 0x07, 0x80, 0x0F, 0x00, 0x1E, 0xFF, 0xFD, 0xF1, 0xFF, 0xFB, 0xE3, 0xFF, 0xF7, 0xC0, 0x3C, 0x0F, + 0x80, 0x78, 0x1F, 0x00, 0xF0, 0x3E, 0x01, 0xE0, 0x7C, 0x03, 0xC0, 0xF8, 0x07, 0x81, 0xF0, 0x0F, + 0x03, 0xE0, 0x1E, 0x07, 0xC0, 0x3C, 0x0F, 0x80, 0x78, 0x1F, 0x00, 0xF0, 0x3E, 0x01, 0xFF, 0xFF, + 0x83, 0xFF, 0xFF, 0x07, 0xFF, 0xFE, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x78, 0x00, 0x00, 0xF0, 0x00, + 0x01, 0xE0, 0x00, 0x03, 0xC0, 0xFF, 0xDE, 0x7F, 0xEF, 0x3F, 0xF7, 0x87, 0xC3, 0xC3, 0xE1, 0xE1, + 0xF0, 0xF0, 0xF8, 0x78, 0x7C, 0x3C, 0x3E, 0x1E, 0x1F, 0x0F, 0x0F, 0xFF, 0xE7, 0xFF, 0xF3, 0xFF, + 0xF8, 0x00, 0x3C, 0x00, 0x1E, 0x00, 0x0F, 0x00, 0x07, 0x80, 0xF8, 0x3E, 0x7C, 0x1F, 0x3E, 0x0F, + 0x9F, 0x07, 0xCF, 0x83, 0xE7, 0xC1, 0xF3, 0xE0, 0xF9, 0xF8, 0x7C, 0x7F, 0xFE, 0x3F, 0xFF, 0x07, + 0xFF, 0x80, 0x07, 0xC0, 0x03, 0xE0, 0x01, 0xF0, 0x00, 0xFE, 0x00, 0x7F, 0x00, 0x3F, 0x80, 0x07, + 0xC0, 0x03, 0xE0, 0x01, 0xF0, 0x00, 0xF8, 0x00, 0x7C, 0xF8, 0xF1, 0xF1, 0xE3, 0xE3, 0xC7, 0xC7, + 0x8F, 0x8F, 0x1F, 0x9E, 0x1F, 0xFC, 0x3F, 0xF8, 0x3F, 0xF0, 0x01, 0xE0, 0x03, 0xF8, 0x07, 0xF0, + 0x0F, 0xE0, 0x03, 0xC0, 0x07, 0x80, 0x0F, 0x00, 0x1E, 0xF8, 0x3F, 0xE0, 0xFF, 0x83, 0xFE, 0x0F, + 0xF8, 0x3F, 0xEE, 0xFF, 0xBB, 0xFF, 0xEF, 0x7F, 0xFD, 0xFF, 0xF1, 0xFF, 0xC0, 0xEF, 0x03, 0xBC, + 0x0E, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x3C, 0xF8, 0x7F, 0xC3, 0xFE, 0x1F, 0xF0, 0xFF, 0xB7, 0xFF, + 0xBD, 0xFF, 0xEF, 0xFF, 0x3F, 0xF8, 0x1B, 0xC0, 0xDE, 0x00, 0xF0, 0x07, 0x80, 0xF0, 0x03, 0xC0, + 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x03, 0xFF, 0x8F, 0xFF, 0xBF, 0xFF, 0xF8, 0xFF, 0xC1, 0xFF, 0x03, + 0xFC, 0x0F, 0xF0, 0x3F, 0xC0, 0xFF, 0x03, 0xFC, 0x0F, 0xF0, 0x3C, 0x78, 0x07, 0xC0, 0x3E, 0x01, + 0xF0, 0x0F, 0x80, 0x7C, 0x03, 0xFF, 0x1F, 0xFC, 0xFF, 0xF7, 0xCF, 0xBE, 0x3D, 0xF1, 0xEF, 0x8F, + 0x7C, 0x7B, 0xE3, 0xDF, 0x1E, 0xF8, 0xF7, 0xC7, 0xBE, 0x3C, 0x00, 0x7F, 0x80, 0x07, 0xFE, 0x00, + 0x7F, 0xF8, 0x07, 0xE7, 0xEF, 0x7E, 0x1F, 0x7B, 0xE0, 0x7F, 0xFF, 0x03, 0xFF, 0xFF, 0xFF, 0x7F, + 0xFF, 0xF8, 0xFF, 0xFF, 0xC1, 0xF0, 0x00, 0x0F, 0x80, 0x00, 0x7C, 0x00, 0x01, 0xFC, 0xF0, 0x07, + 0xFF, 0xC0, 0x1F, 0xFE, 0x00, 0x7F, 0xC0, 0x01, 0xFC, 0x71, 0xFF, 0x3D, 0xFF, 0xDF, 0xFB, 0xEF, + 0xF8, 0xFF, 0xFF, 0xFD, 0xFF, 0xFE, 0x7F, 0xFF, 0x0F, 0x80, 0x07, 0xE3, 0x81, 0xFF, 0xC0, 0x7F, + 0xE0, 0x1F, 0xF0, 0x00, 0x7F, 0x80, 0x07, 0xFE, 0x00, 0x7F, 0xF8, 0x07, 0xE7, 0xEF, 0x7E, 0x1F, + 0x7B, 0xE0, 0x7F, 0xFF, 0x03, 0xFF, 0xFF, 0xFF, 0x7F, 0xFF, 0xF8, 0xFF, 0xFF, 0xC1, 0xF0, 0x00, + 0x0F, 0x80, 0x00, 0x7C, 0x00, 0x01, 0xFC, 0xF0, 0x0F, 0xFF, 0xC0, 0x1F, 0xFE, 0x00, 0x7F, 0xE0, + 0x00, 0xF0, 0x00, 0x07, 0x80, 0x00, 0x3C, 0x00, 0x01, 0xE0, 0x00, 0x01, 0xFC, 0x71, 0xFF, 0x3D, + 0xFF, 0xDF, 0xFB, 0xEF, 0xF8, 0xFF, 0xFF, 0xFD, 0xFF, 0xFE, 0x7F, 0xFF, 0x0F, 0x80, 0x07, 0xE3, + 0x81, 0xFF, 0xC0, 0x7F, 0xE0, 0x1F, 0xF0, 0x03, 0xC0, 0x01, 0xE0, 0x00, 0xF0, 0xFF, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0xE3, 0x00, 0x00, 0x7B, 0xC0, 0x00, 0x3F, 0xE0, 0x00, + 0x0F, 0xE0, 0x00, 0x03, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF8, 0x7C, 0x3E, 0x7E, + 0x3E, 0x3F, 0x1F, 0x1F, 0x3F, 0x0F, 0xCF, 0xBF, 0x03, 0xF7, 0xDF, 0x00, 0xFF, 0xFF, 0x00, 0x3F, + 0xFF, 0x80, 0x0F, 0xFF, 0x80, 0x07, 0xFF, 0x80, 0x03, 0xFF, 0xE0, 0x03, 0xFF, 0xF8, 0x03, 0xEF, + 0xFE, 0x03, 0xE7, 0xDF, 0x83, 0xF3, 0xE7, 0xC3, 0xF1, 0xF1, 0xF1, 0xF0, 0xF8, 0xFD, 0xF0, 0x7C, + 0x3E, 0x01, 0x8C, 0x00, 0x1E, 0xF0, 0x00, 0xFF, 0x80, 0x03, 0xF8, 0x00, 0x0F, 0x80, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x1F, 0x9F, 0x1F, 0x7C, 0xF9, 0xF1, 0xF7, 0xDF, 0x07, 0xFF, 0xF8, 0x3F, 0xFF, + 0x80, 0xFF, 0xF8, 0x03, 0xFF, 0x80, 0x3F, 0xFE, 0x03, 0xFF, 0xF8, 0x3F, 0xFB, 0xE1, 0xF7, 0xDF, + 0x9F, 0x3E, 0x7D, 0xF1, 0xF1, 0xF0, 0xF0, 0x7D, 0xE1, 0xF3, 0xC7, 0xE7, 0x9F, 0x8F, 0x7E, 0x1E, + 0xF8, 0x3F, 0xE0, 0x7F, 0xE0, 0xFF, 0xF1, 0xFF, 0xF3, 0xCF, 0xF7, 0x83, 0xEF, 0x03, 0xDE, 0x07, + 0xBC, 0x0F, 0x78, 0x1E, 0xF0, 0x3C, 0x00, 0xF8, 0x07, 0xF0, 0x3F, 0xC0, 0x7F, 0x00, 0xFC, 0x00, + 0xF8, 0xFF, 0xCF, 0xBE, 0xF9, 0xFF, 0x8F, 0xF8, 0x7F, 0xE3, 0xFF, 0x9F, 0xFE, 0xF9, 0xF7, 0xC7, + 0xFE, 0x1F, 0xF0, 0xFF, 0x87, 0x80, 0x7C, 0x07, 0xC0, 0xFE, 0x07, 0xE0, 0x3E, 0x00, 0x07, 0xFF, + 0xC0, 0x3F, 0xFE, 0x01, 0xFF, 0xF0, 0x0F, 0x8F, 0x80, 0x7C, 0x7C, 0x03, 0xE3, 0xE0, 0x1E, 0x1F, + 0x00, 0xF0, 0xF8, 0x07, 0x87, 0xC0, 0x3C, 0x3E, 0x03, 0xE1, 0xF0, 0x1F, 0x0F, 0x81, 0xF0, 0x7C, + 0x3F, 0x83, 0xE3, 0xF8, 0x1F, 0xFF, 0x80, 0xFE, 0xF0, 0x07, 0xF0, 0x00, 0x07, 0x80, 0x00, 0x7C, + 0x00, 0x03, 0xC0, 0x00, 0x3E, 0x00, 0x00, 0xE0, 0x0F, 0xFC, 0x07, 0xFE, 0x03, 0xFF, 0x01, 0xE7, + 0x80, 0xF3, 0xC0, 0xF9, 0xE0, 0x7C, 0xF0, 0x3E, 0x78, 0x1E, 0x3C, 0x3F, 0x1E, 0x3F, 0x0F, 0xFF, + 0x07, 0xFF, 0x03, 0xF0, 0x00, 0x78, 0x00, 0x7C, 0x00, 0x3C, 0x00, 0x0C, 0x00, 0xF0, 0x3F, 0xE0, + 0x7F, 0xC0, 0xFF, 0x81, 0xFF, 0x03, 0xFE, 0x07, 0xFC, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, + 0xC0, 0xFF, 0x81, 0xFF, 0x03, 0xFE, 0x07, 0xFC, 0x0F, 0xF8, 0x1F, 0xF0, 0x3E, 0x00, 0x7C, 0x00, + 0xF8, 0x0F, 0xE0, 0x1F, 0xC0, 0x3F, 0x00, 0xF8, 0xFF, 0xC7, 0xFE, 0x3F, 0xF1, 0xFF, 0x8F, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0xFF, 0xC7, 0xFE, 0x3F, 0xF1, 0xFF, 0x8F, 0x80, 0x7C, 0x03, 0xC0, + 0xFE, 0x07, 0xF0, 0x3F, 0x00, 0xF0, 0x3E, 0x3C, 0x0F, 0x8F, 0x03, 0xE3, 0xC0, 0xF8, 0xF0, 0x3E, + 0x3C, 0x0F, 0x8F, 0x03, 0xE3, 0xFF, 0xF8, 0xFF, 0xFE, 0x3F, 0xFF, 0x8F, 0x03, 0xE3, 0xC0, 0xF8, + 0xF0, 0x3E, 0x3C, 0x0F, 0x8F, 0x03, 0xFB, 0xC0, 0xFE, 0xF0, 0x3F, 0x80, 0x03, 0xE0, 0x00, 0xF8, + 0x00, 0x7C, 0x00, 0x1E, 0x00, 0x03, 0x80, 0xF8, 0xF1, 0xF1, 0xE3, 0xE3, 0xC7, 0xC7, 0x8F, 0x8F, + 0x1F, 0xFE, 0x3F, 0xFC, 0x7F, 0xF8, 0xF8, 0xF1, 0xF1, 0xE3, 0xE3, 0xF7, 0xC7, 0xEF, 0x8F, 0xC0, + 0x07, 0x80, 0x1E, 0x00, 0x3C, 0x00, 0x30, 0xF0, 0x3F, 0xC0, 0xFF, 0x03, 0xFC, 0x0F, 0xF0, 0x3F, + 0xC0, 0xFF, 0x83, 0xFF, 0x1F, 0xFF, 0xFD, 0xFF, 0xF3, 0xFF, 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xF0, + 0x1F, 0xC0, 0x7F, 0x01, 0xFC, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, 0xF1, 0xFF, + 0x1F, 0xF1, 0xFF, 0x1F, 0xF9, 0xFF, 0xFF, 0x7F, 0xF3, 0xFF, 0x01, 0xF0, 0x1F, 0x07, 0xF0, 0x7F, + 0x07, 0xF0, 0x78, 0x07, 0x80, 0x78, 0x07, 0x80, 0x7C, 0x03, 0xE0, 0xFC, 0x07, 0xC1, 0xF8, 0x1F, + 0x83, 0xF8, 0x3F, 0x07, 0xF0, 0xFE, 0x0F, 0xF1, 0xFE, 0x1F, 0xE7, 0xFC, 0x3F, 0xEF, 0xF8, 0x7B, + 0xDF, 0xF0, 0xF7, 0xFB, 0xE1, 0xE7, 0xF7, 0xC7, 0xCF, 0xC7, 0x8F, 0x9F, 0x8F, 0x1F, 0x1F, 0x1E, + 0x3E, 0x3C, 0x3F, 0xFC, 0x00, 0x7F, 0xF8, 0x00, 0xFE, 0x00, 0x00, 0x78, 0x00, 0x01, 0xF0, 0x00, + 0x03, 0xC0, 0x00, 0x07, 0x80, 0x00, 0x06, 0x00, 0x78, 0x1F, 0x0F, 0x83, 0xE1, 0xF0, 0xFC, 0x3F, + 0x1F, 0x8F, 0xE7, 0xF1, 0xFE, 0xFE, 0x3F, 0xFF, 0xC7, 0xBF, 0xF8, 0xF7, 0xEF, 0x1E, 0x7D, 0xE3, + 0xCF, 0x3F, 0xF8, 0x07, 0xFF, 0x00, 0xFE, 0x00, 0x07, 0x80, 0x00, 0xF0, 0x00, 0x3C, 0x00, 0x03, + 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x07, 0x38, 0x03, 0xDE, + 0x00, 0x7F, 0x80, 0x1F, 0xE0, 0x03, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x03, 0xF0, + 0x00, 0xFC, 0x00, 0x7F, 0x80, 0x1F, 0xE0, 0x0F, 0xFC, 0x03, 0xCF, 0x01, 0xF3, 0xE0, 0x78, 0xF8, + 0x1E, 0x1E, 0x0F, 0xFF, 0xC3, 0xFF, 0xF0, 0xFF, 0xFE, 0x7C, 0x0F, 0x9F, 0x03, 0xEF, 0x80, 0x7F, + 0xE0, 0x1F, 0x1C, 0xE1, 0xE7, 0x87, 0xF8, 0x3F, 0xC0, 0xFC, 0x00, 0x00, 0x00, 0x07, 0xF8, 0x3F, + 0xF1, 0xFF, 0x8C, 0x7C, 0x01, 0xF1, 0xFF, 0xBF, 0xFD, 0xFF, 0xEF, 0x9F, 0x7C, 0xFB, 0xFF, 0xDF, + 0xFE, 0x7F, 0xE0, 0x0F, 0x38, 0x03, 0xDF, 0x00, 0xF7, 0xC0, 0x3C, 0xE0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x1E, 0x00, 0x0F, 0xC0, 0x03, 0xF0, 0x01, 0xFE, 0x00, 0x7F, 0x80, 0x3F, 0xF0, 0x0F, 0x3C, + 0x07, 0xCF, 0x81, 0xE3, 0xE0, 0x78, 0x78, 0x3F, 0xFF, 0x0F, 0xFF, 0xC3, 0xFF, 0xF9, 0xF0, 0x3E, + 0x7C, 0x0F, 0xBE, 0x01, 0xFF, 0x80, 0x7C, 0x3C, 0xE1, 0xEF, 0x8F, 0x7C, 0x79, 0xC0, 0x00, 0x00, + 0x00, 0xFF, 0x07, 0xFE, 0x3F, 0xF1, 0x8F, 0x80, 0x3E, 0x3F, 0xF7, 0xFF, 0xBF, 0xFD, 0xF3, 0xEF, + 0x9F, 0x7F, 0xFB, 0xFF, 0xCF, 0xFC, 0x00, 0x3F, 0xFF, 0x00, 0x7F, 0xFF, 0x00, 0x7F, 0xFF, 0x00, + 0xFF, 0x00, 0x01, 0xFF, 0x00, 0x01, 0xEF, 0x00, 0x03, 0xEF, 0x00, 0x07, 0xCF, 0xFE, 0x07, 0xCF, + 0xFE, 0x0F, 0x8F, 0xFE, 0x0F, 0xFF, 0x00, 0x1F, 0xFF, 0x00, 0x3F, 0xFF, 0x00, 0x3E, 0x0F, 0x00, + 0x7C, 0x0F, 0xFF, 0x7C, 0x0F, 0xFF, 0xF8, 0x0F, 0xFF, 0x3F, 0xCF, 0xC1, 0xFF, 0xFF, 0x0F, 0xFF, + 0xFC, 0x63, 0xFB, 0xF0, 0x0F, 0x87, 0x8F, 0xFF, 0xFD, 0xFF, 0xFF, 0xEF, 0xFF, 0xFF, 0x7C, 0xF8, + 0x03, 0xE3, 0xF3, 0x9F, 0xFF, 0xFC, 0xFF, 0xFF, 0xE3, 0xFF, 0xFF, 0x00, 0x39, 0xC3, 0xCF, 0x0F, + 0xF0, 0x7F, 0x81, 0xF8, 0x00, 0x00, 0x00, 0x1F, 0xFE, 0xFF, 0xF7, 0xFF, 0xBC, 0x01, 0xE0, 0x0F, + 0x00, 0x78, 0x03, 0xFF, 0x9F, 0xFC, 0xFF, 0xE7, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x7F, 0xFF, + 0xFF, 0xFF, 0xFF, 0x18, 0xC1, 0xEF, 0x0F, 0xF8, 0x3F, 0x80, 0xF8, 0x00, 0x00, 0x00, 0x03, 0xF8, + 0x3F, 0xE3, 0xFF, 0xBF, 0x7D, 0xF1, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0xFC, 0x73, 0xFF, + 0x8F, 0xFC, 0x3F, 0xE0, 0x1F, 0xF0, 0x7F, 0xF8, 0x7F, 0xFC, 0x38, 0xFE, 0x00, 0x1F, 0x00, 0x1F, + 0x00, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x1F, 0xF8, 0x1F, 0x7C, 0x3F, 0x7E, 0x7E, + 0x3F, 0xFC, 0x1F, 0xF8, 0x0F, 0xF0, 0x7F, 0x83, 0xFF, 0x1F, 0xFC, 0xE7, 0xE0, 0x0F, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFF, 0xF0, 0xFF, 0xCF, 0x9F, 0xFC, 0xFF, 0xC1, 0xF8, 0x00, 0x1E, 0x70, 0x1E, 0xF8, + 0x1E, 0xF8, 0x1E, 0x70, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF0, 0x7F, 0xF8, 0x7F, 0xFC, 0x38, 0xFE, + 0x00, 0x1F, 0x00, 0x1F, 0x00, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x1F, 0xF8, 0x1F, + 0x7C, 0x3F, 0x7E, 0x7E, 0x3F, 0xFC, 0x1F, 0xF8, 0x0F, 0xF0, 0x39, 0xE3, 0xEF, 0x1F, 0x78, 0x73, + 0xC0, 0x00, 0x00, 0x01, 0xFE, 0x0F, 0xFC, 0x7F, 0xF3, 0x9F, 0x80, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, + 0xFF, 0xC3, 0xFF, 0x3E, 0x7F, 0xF3, 0xFF, 0x07, 0xE0, 0x00, 0xE7, 0x80, 0x00, 0xFB, 0xC0, 0x00, + 0x7D, 0xE0, 0x00, 0x1C, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xF0, 0xF8, 0x7C, 0xFC, + 0x7C, 0x7E, 0x3E, 0x3E, 0x7E, 0x1F, 0x9F, 0x7E, 0x07, 0xEF, 0xBE, 0x01, 0xFF, 0xFE, 0x00, 0x7F, + 0xFF, 0x00, 0x1F, 0xFF, 0x00, 0x0F, 0xFF, 0x00, 0x07, 0xFF, 0xC0, 0x07, 0xFF, 0xF0, 0x07, 0xDF, + 0xFC, 0x07, 0xCF, 0xBF, 0x07, 0xE7, 0xCF, 0x87, 0xE3, 0xE3, 0xE3, 0xE1, 0xF1, 0xFB, 0xE0, 0xF8, + 0x7C, 0x03, 0xCE, 0x00, 0x1E, 0xF8, 0x00, 0xF7, 0xC0, 0x07, 0x9C, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x03, 0xF3, 0xE3, 0xEF, 0x9F, 0x3E, 0x3E, 0xFB, 0xE0, 0xFF, 0xFF, 0x07, 0xFF, 0xF0, 0x1F, 0xFF, + 0x00, 0x7F, 0xF0, 0x07, 0xFF, 0xC0, 0x7F, 0xFF, 0x07, 0xFF, 0x7C, 0x3E, 0xFB, 0xF3, 0xE7, 0xCF, + 0xBE, 0x3E, 0x3E, 0x3C, 0xF0, 0x79, 0xE0, 0xF3, 0xC1, 0xE7, 0x80, 0x00, 0x00, 0x00, 0x0F, 0xF8, + 0x3F, 0xF8, 0x7F, 0xF8, 0x71, 0xF8, 0x01, 0xF0, 0x03, 0xE0, 0x1F, 0x83, 0xFF, 0x07, 0xFC, 0x0F, + 0xFE, 0x00, 0xFC, 0x00, 0x78, 0x00, 0xF3, 0xC7, 0xE7, 0xFF, 0xDF, 0xFF, 0x0F, 0xFC, 0x00, 0x79, + 0xC7, 0xBE, 0x7B, 0xE7, 0x9C, 0x00, 0x00, 0x00, 0x7F, 0xC7, 0xFE, 0x7F, 0xE7, 0x3E, 0x01, 0xE3, + 0xFE, 0x3F, 0xE3, 0xFE, 0x01, 0xF7, 0x1F, 0x7F, 0xF7, 0xFE, 0x7F, 0xC0, 0x7F, 0xFD, 0xFF, 0xF7, + 0xFF, 0xC0, 0x7E, 0x03, 0xF0, 0x1F, 0x80, 0xFC, 0x03, 0xFC, 0x0F, 0xF8, 0x07, 0xF0, 0x07, 0xC0, + 0x0F, 0x00, 0x7D, 0xE3, 0xF7, 0xFF, 0xBF, 0xFE, 0x3F, 0xE0, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x3E, + 0x07, 0xC0, 0x7C, 0x0F, 0x81, 0xF0, 0x1F, 0xC1, 0xFE, 0x03, 0xF0, 0x1F, 0x00, 0xF0, 0x0F, 0x63, + 0xFF, 0xFF, 0xFF, 0xEF, 0xF8, 0x1F, 0xF0, 0x3F, 0xE0, 0x7F, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x3C, 0x07, 0xF8, 0x1F, 0xF0, 0x7F, 0xE1, 0xFF, 0xC7, 0xFF, 0x8F, 0xFF, 0x3F, 0xFE, 0xFB, 0xFF, + 0xE7, 0xFF, 0xCF, 0xFF, 0x1F, 0xFC, 0x3F, 0xF8, 0x7F, 0xE0, 0xFF, 0x81, 0xFF, 0x03, 0xFC, 0x07, + 0x80, 0x3F, 0xE1, 0xFF, 0x0F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE1, 0xFF, 0x1F, 0xF9, 0xFF, + 0xDF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xBF, 0xF9, 0xFF, 0xCF, 0xFC, 0x7F, 0xC3, 0xFE, 0x1E, + 0x1E, 0x70, 0x3D, 0xF0, 0x7B, 0xE0, 0xF3, 0x80, 0x00, 0x00, 0x00, 0x3C, 0x07, 0xF8, 0x1F, 0xF0, + 0x7F, 0xE1, 0xFF, 0xC7, 0xFF, 0x8F, 0xFF, 0x3F, 0xFE, 0xFB, 0xFF, 0xE7, 0xFF, 0xCF, 0xFF, 0x1F, + 0xFC, 0x3F, 0xF8, 0x7F, 0xE0, 0xFF, 0x81, 0xFF, 0x03, 0xFC, 0x07, 0x80, 0x3C, 0xE1, 0xE7, 0x8F, + 0x3C, 0x79, 0xC0, 0x00, 0x00, 0x03, 0xE1, 0xFF, 0x1F, 0xF9, 0xFF, 0xDF, 0xFE, 0xFF, 0xFF, 0xFF, + 0xFF, 0xFF, 0xBF, 0xF9, 0xFF, 0xCF, 0xFC, 0x7F, 0xC3, 0xFE, 0x1E, 0x0F, 0x38, 0x03, 0xCF, 0x00, + 0xF3, 0xC0, 0x3C, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0x80, 0x7F, 0xF8, 0x3F, 0xFF, 0x1F, + 0xCF, 0xC7, 0xC0, 0xFB, 0xE0, 0x3E, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0x7F, 0xE0, 0x1F, 0xF8, + 0x07, 0xFE, 0x03, 0xE7, 0xC0, 0xF9, 0xFC, 0xFE, 0x3F, 0xFF, 0x07, 0xFF, 0x80, 0x7F, 0x80, 0x3C, + 0xE0, 0xF7, 0xC3, 0xDF, 0x0F, 0x38, 0x00, 0x00, 0x00, 0x01, 0xFC, 0x0F, 0xF8, 0x7F, 0xF3, 0xF7, + 0xEF, 0x8F, 0xBC, 0x1E, 0xF0, 0x7B, 0xC1, 0xEF, 0x8F, 0xBF, 0x7E, 0x7F, 0xF0, 0xFF, 0x81, 0xFC, + 0x00, 0x07, 0xF8, 0x07, 0xFF, 0x83, 0xFF, 0xF1, 0xFC, 0xFC, 0x7C, 0x0F, 0xBE, 0x03, 0xEF, 0x80, + 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x7F, 0xE0, 0x3E, 0x7C, 0x0F, 0x9F, 0xCF, + 0xE3, 0xFF, 0xF0, 0x7F, 0xF8, 0x07, 0xF8, 0x00, 0x1F, 0xC0, 0xFF, 0x87, 0xFF, 0x3F, 0x7E, 0xF0, + 0x7B, 0xFF, 0xEF, 0xFF, 0xBC, 0x1E, 0xF8, 0xFB, 0xF7, 0xE7, 0xFF, 0x0F, 0xF8, 0x1F, 0xC0, 0x0F, + 0x38, 0x03, 0xCF, 0x00, 0xF3, 0xC0, 0x3C, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0x80, 0x7F, + 0xF8, 0x3F, 0xFF, 0x1F, 0xCF, 0xC7, 0xC0, 0xFB, 0xE0, 0x3E, 0xF8, 0x07, 0xFF, 0xFF, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFF, 0xF8, 0x07, 0xFE, 0x03, 0xE7, 0xC0, 0xF9, 0xFC, 0xFE, 0x3F, 0xFF, 0x07, 0xFF, + 0x80, 0x7F, 0x80, 0x39, 0xE1, 0xF7, 0x87, 0xDE, 0x0E, 0x78, 0x00, 0x00, 0x00, 0x01, 0xFC, 0x0F, + 0xF8, 0x7F, 0xF3, 0xF7, 0xEF, 0x07, 0xBF, 0xFE, 0xFF, 0xFB, 0xC1, 0xEF, 0x8F, 0xBF, 0x7E, 0x7F, + 0xF0, 0xFF, 0x81, 0xFC, 0x00, 0x3C, 0xE0, 0x7B, 0xE0, 0xF7, 0xC1, 0xE7, 0x00, 0x00, 0x00, 0x00, + 0x1F, 0xF0, 0x7F, 0xF8, 0xFF, 0xF8, 0xE3, 0xF8, 0x01, 0xF0, 0x01, 0xF0, 0x03, 0xE3, 0xFF, 0xC7, + 0xFF, 0x8F, 0xFF, 0x00, 0x3E, 0x00, 0x7C, 0x01, 0xF3, 0xCF, 0xEF, 0xFF, 0x9F, 0xFE, 0x1F, 0xF0, + 0x00, 0x39, 0xE3, 0xEF, 0x1F, 0x78, 0x73, 0xC0, 0x00, 0x00, 0x01, 0xFE, 0x0F, 0xFC, 0x7F, 0xE3, + 0x9F, 0x80, 0x3C, 0x3F, 0xE1, 0xFF, 0x8F, 0xF8, 0x03, 0xCE, 0x7E, 0x7F, 0xE3, 0xFF, 0x1F, 0xE0, + 0x0F, 0xF8, 0x07, 0xFC, 0x03, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x7C, 0xF8, + 0x3E, 0x7C, 0x1F, 0x1F, 0x1F, 0x0F, 0x8F, 0x83, 0xE7, 0x81, 0xF7, 0xC0, 0x7F, 0xC0, 0x3F, 0xE0, + 0x0F, 0xF0, 0x03, 0xF0, 0x01, 0xF8, 0x00, 0xF8, 0x04, 0xFC, 0x07, 0xFC, 0x03, 0xFC, 0x01, 0xFC, + 0x00, 0x1F, 0xE0, 0x7F, 0x81, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x87, 0xFE, 0x1E, 0x78, + 0x79, 0xF3, 0xE7, 0xCF, 0x0F, 0x3C, 0x3F, 0xF0, 0xFF, 0x81, 0xFE, 0x07, 0xF8, 0x0F, 0xC0, 0x3F, + 0x00, 0x78, 0x03, 0xE0, 0x5F, 0x03, 0xFC, 0x0F, 0xE0, 0x3F, 0x00, 0x0E, 0x38, 0x07, 0xBE, 0x03, + 0xDF, 0x01, 0xC7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x7C, 0xF8, 0x3E, 0x7C, 0x1F, 0x1F, 0x1F, + 0x0F, 0x8F, 0x83, 0xE7, 0x81, 0xF7, 0xC0, 0x7F, 0xC0, 0x3F, 0xE0, 0x0F, 0xF0, 0x03, 0xF0, 0x01, + 0xF8, 0x00, 0xF8, 0x04, 0xFC, 0x07, 0xFC, 0x03, 0xFC, 0x01, 0xFC, 0x00, 0x3C, 0xE0, 0xF7, 0xC3, + 0xDF, 0x0F, 0x38, 0x00, 0x00, 0x00, 0x0F, 0x87, 0xFE, 0x1E, 0x78, 0x79, 0xF3, 0xE7, 0xCF, 0x0F, + 0x3C, 0x3F, 0xF0, 0xFF, 0x81, 0xFE, 0x07, 0xF8, 0x0F, 0xC0, 0x3F, 0x00, 0x78, 0x03, 0xE0, 0x5F, + 0x03, 0xFC, 0x0F, 0xE0, 0x3F, 0x00, 0x03, 0x18, 0x01, 0xCE, 0x01, 0xEF, 0x00, 0xE7, 0x80, 0xF7, + 0x80, 0x73, 0x80, 0x00, 0x01, 0xF0, 0x3E, 0x7C, 0x1F, 0x3E, 0x0F, 0x8F, 0x8F, 0x87, 0xC7, 0xC1, + 0xF3, 0xC0, 0xFB, 0xE0, 0x3F, 0xE0, 0x1F, 0xF0, 0x07, 0xF8, 0x01, 0xF8, 0x00, 0xFC, 0x00, 0x7C, + 0x02, 0x7E, 0x03, 0xFE, 0x01, 0xFE, 0x00, 0xFE, 0x00, 0x06, 0x30, 0x3D, 0xE0, 0xF7, 0x87, 0xBC, + 0x3D, 0xE0, 0x63, 0x00, 0x00, 0x3E, 0x1F, 0xF8, 0x79, 0xE1, 0xE7, 0xCF, 0x9F, 0x3C, 0x3C, 0xF0, + 0xFF, 0xC3, 0xFE, 0x07, 0xF8, 0x1F, 0xE0, 0x3F, 0x00, 0xFC, 0x01, 0xE0, 0x0F, 0x81, 0x7C, 0x0F, + 0xF0, 0x3F, 0x80, 0xFC, 0x00, 0x1C, 0xF0, 0xF3, 0xC3, 0xCF, 0x0F, 0x3C, 0x00, 0x00, 0x00, 0x0F, + 0x03, 0xFC, 0x0F, 0xF0, 0x3F, 0xC0, 0xFF, 0x03, 0xFC, 0x0F, 0xF8, 0x3F, 0xF1, 0xFF, 0xFF, 0xDF, + 0xFF, 0x3F, 0xFC, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x79, 0xC7, + 0xBE, 0x7B, 0xE7, 0x9C, 0x00, 0x00, 0x00, 0xF1, 0xFF, 0x1F, 0xF1, 0xFF, 0x1F, 0xF1, 0xFF, 0x9F, + 0xFF, 0xF7, 0xFF, 0x3F, 0xF0, 0x1F, 0x01, 0xF0, 0x1F, 0x01, 0xF0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, - 0xF0, 0xF9, 0xE7, 0xFE, 0x79, 0xFF, 0x9E, 0x7F, 0xEF, 0x9F, 0xFB, 0xE7, 0xFE, 0xF1, 0xFF, 0xFC, - 0x7F, 0xFE, 0x1E, 0xFF, 0x07, 0x9E, 0x03, 0xE7, 0xC0, 0xF9, 0xFF, 0xFC, 0x3F, 0xFF, 0x07, 0xFF, - 0x80, 0x7F, 0x80, 0x7F, 0xFC, 0x3F, 0xFF, 0x9F, 0xFF, 0xC7, 0xFF, 0xF1, 0xF0, 0xF8, 0xF8, 0x7C, - 0x7C, 0x3E, 0x3E, 0x1F, 0x1F, 0x0F, 0x8F, 0x87, 0xC7, 0xC3, 0xE7, 0xE1, 0xF7, 0xE0, 0xFB, 0xF0, - 0x7D, 0xF0, 0x3E, 0x01, 0xE0, 0x00, 0xFC, 0x00, 0x3F, 0x00, 0x1F, 0xE0, 0x07, 0xF8, 0x01, 0xFE, - 0x00, 0xFF, 0xC0, 0x3C, 0xF0, 0x1F, 0x3E, 0x07, 0x8F, 0x81, 0xE1, 0xE0, 0xFF, 0xFC, 0x3F, 0xFF, - 0x1F, 0xFF, 0xE7, 0xFF, 0xF9, 0xF0, 0x3E, 0xF8, 0x07, 0xFE, 0x01, 0xF0, 0x00, 0x00, 0x03, 0x80, - 0x01, 0xE0, 0x00, 0x78, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x1F, 0x81, 0xFF, 0x0F, 0xFC, 0x7F, 0xE0, - 0x0F, 0x01, 0x7C, 0xFF, 0xEF, 0xFF, 0x7F, 0xFB, 0xC7, 0xDE, 0x3E, 0xFF, 0xF7, 0xFF, 0x9F, 0xFC, - 0x1E, 0x00, 0xE0, 0x07, 0x80, 0x3C, 0x01, 0xE0, 0x00, 0x00, 0x03, 0xE0, 0x00, 0xFC, 0x00, 0x3F, - 0x00, 0x03, 0xC0, 0x01, 0xE0, 0x00, 0x70, 0x00, 0x1E, 0x00, 0x0F, 0xC0, 0x03, 0xF0, 0x01, 0xFE, - 0x00, 0x7F, 0x80, 0x1F, 0xE0, 0x0F, 0xFC, 0x03, 0xCF, 0x01, 0xF3, 0xE0, 0x78, 0xF8, 0x1E, 0x1E, - 0x0F, 0xFF, 0xC3, 0xFF, 0xF1, 0xFF, 0xFE, 0x7F, 0xFF, 0x9F, 0x03, 0xEF, 0x80, 0x7F, 0xE0, 0x1F, - 0x0F, 0x80, 0x7E, 0x03, 0xF0, 0x07, 0x80, 0x78, 0x03, 0x80, 0x7E, 0x07, 0xFC, 0x3F, 0xF1, 0xFF, - 0x80, 0x3C, 0x05, 0xF3, 0xFF, 0xBF, 0xFD, 0xFF, 0xEF, 0x1F, 0x78, 0xFB, 0xFF, 0xDF, 0xFE, 0x7F, - 0xF0, 0x78, 0x00, 0x00, 0x03, 0x00, 0x01, 0xE0, 0x00, 0xF8, 0x03, 0x7C, 0x01, 0xFE, 0x00, 0xFF, - 0x00, 0x7F, 0x80, 0x1C, 0xE0, 0x02, 0x10, 0x00, 0x78, 0x00, 0x3F, 0x00, 0x0F, 0xC0, 0x07, 0xF8, - 0x01, 0xFE, 0x00, 0x7F, 0x80, 0x3F, 0xF0, 0x0F, 0x3C, 0x07, 0xCF, 0x81, 0xE3, 0xE0, 0x78, 0x78, - 0x3F, 0xFF, 0x0F, 0xFF, 0xC7, 0xFF, 0xF9, 0xFF, 0xFE, 0x7C, 0x0F, 0xBE, 0x01, 0xFF, 0x80, 0x7C, - 0x00, 0x08, 0x00, 0x3C, 0x00, 0xF8, 0x13, 0xE0, 0x77, 0x81, 0xF4, 0x07, 0xF0, 0x0E, 0xE0, 0x08, - 0xC0, 0x3F, 0x00, 0xFF, 0x81, 0xFF, 0x83, 0xFF, 0x00, 0x1E, 0x00, 0xBE, 0x1F, 0xFC, 0x7F, 0xF8, - 0xFF, 0xF1, 0xE3, 0xE3, 0xC7, 0xC7, 0xFF, 0x8F, 0xFF, 0x0F, 0xFE, 0x03, 0xC0, 0x00, 0x00, 0x00, - 0x0C, 0x00, 0x07, 0x80, 0x01, 0xF0, 0x00, 0xFE, 0x00, 0x7F, 0x00, 0x3F, 0x00, 0x1F, 0xE0, 0x07, - 0x38, 0x00, 0x84, 0x00, 0x1E, 0x00, 0x0F, 0xC0, 0x03, 0xF0, 0x01, 0xFE, 0x00, 0x7F, 0x80, 0x1F, - 0xE0, 0x0F, 0xFC, 0x03, 0xCF, 0x01, 0xF3, 0xE0, 0x78, 0xF8, 0x1E, 0x1E, 0x0F, 0xFF, 0xC3, 0xFF, - 0xF1, 0xFF, 0xFE, 0x7F, 0xFF, 0x9F, 0x03, 0xEF, 0x80, 0x7F, 0xE0, 0x1F, 0x00, 0x00, 0x06, 0x00, - 0x78, 0x03, 0xE0, 0x2F, 0x83, 0xBC, 0x3E, 0x43, 0xF8, 0x1D, 0xC0, 0x46, 0x07, 0xE0, 0x7F, 0xC3, - 0xFF, 0x1F, 0xF8, 0x03, 0xC0, 0x5F, 0x3F, 0xFB, 0xFF, 0xDF, 0xFE, 0xF1, 0xF7, 0x8F, 0xBF, 0xFD, - 0xFF, 0xE7, 0xFF, 0x07, 0x80, 0x00, 0x3E, 0x00, 0x0F, 0xC0, 0x03, 0xF0, 0x00, 0x3C, 0x00, 0xDE, + 0xFE, 0x0F, 0xE0, 0xFE, 0x01, 0xE0, 0x1E, 0x01, 0xE0, 0x1E, 0x01, 0xE0, 0xFF, 0xDF, 0xFB, 0xFF, + 0x7C, 0x0F, 0x81, 0xF0, 0x3E, 0x07, 0xC0, 0xF8, 0x1F, 0x03, 0xF8, 0x7F, 0x0F, 0xE0, 0x3C, 0x07, + 0x80, 0xF0, 0x1E, 0x00, 0x07, 0x9C, 0x00, 0x7B, 0xE0, 0x07, 0xBE, 0x00, 0x79, 0xC0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xF0, 0x01, 0xFF, 0x00, 0x1F, 0xF0, 0x01, 0xFF, 0x00, 0x1F, 0xF0, 0x01, 0xFF, + 0x00, 0x1F, 0xFF, 0xC1, 0xFF, 0xFF, 0x1F, 0xFF, 0xF9, 0xFF, 0x3F, 0x9F, 0xF0, 0xF9, 0xFF, 0x07, + 0x9F, 0xF0, 0xF9, 0xFF, 0x1F, 0x9F, 0xFF, 0xF9, 0xFF, 0xFF, 0x1F, 0xFF, 0xC1, 0xF0, 0x07, 0x3C, + 0x03, 0xEF, 0x00, 0xFB, 0xC0, 0x1C, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x80, 0x3F, 0xE0, 0x0F, + 0xF8, 0x03, 0xFE, 0x00, 0xFF, 0xFC, 0x3F, 0xFF, 0x8F, 0xFF, 0xF3, 0xFE, 0x7C, 0xFF, 0x8F, 0xBF, + 0xE7, 0xCF, 0xFF, 0xF3, 0xFF, 0xFC, 0xF7, 0xFC, 0x3C, 0x7E, 0x0F, 0x1F, 0x07, 0x87, 0xC3, 0xC3, + 0xF3, 0xE0, 0xF9, 0xF0, 0x7E, 0xF0, 0x7F, 0xF8, 0x7F, 0xF8, 0x3D, 0xF8, 0x3E, 0x7C, 0x1F, 0x1F, + 0x0F, 0x0F, 0x87, 0x83, 0xE3, 0xC0, 0xFB, 0xE0, 0x7C, 0x3F, 0xC0, 0xFF, 0xE1, 0xFF, 0xC1, 0xFF, + 0xC0, 0x0F, 0x80, 0x1F, 0x00, 0x3E, 0x00, 0x7C, 0x00, 0xF8, 0x01, 0xF0, 0x03, 0xE3, 0xFF, 0xEF, + 0xFF, 0xFF, 0xFF, 0xBF, 0xFF, 0x00, 0x3E, 0x0F, 0xC7, 0xF8, 0xFE, 0x07, 0x81, 0xE0, 0x78, 0x1E, + 0x07, 0x81, 0xE0, 0xF9, 0xFE, 0xFF, 0xFE, 0xFF, 0x3C, 0x00, 0x7F, 0xFD, 0xFF, 0xF7, 0xFF, 0xDF, + 0xFE, 0x01, 0xF0, 0x07, 0xC0, 0x1F, 0x00, 0x7C, 0x01, 0xF0, 0x07, 0xC0, 0x1F, 0x00, 0x7C, 0x01, + 0xF0, 0x07, 0xC0, 0x1F, 0x00, 0xFF, 0xF3, 0xFF, 0xEF, 0xFF, 0xDF, 0xFF, 0x00, 0x3C, 0x00, 0xF0, + 0x03, 0xFE, 0x0F, 0xF8, 0x3F, 0xE0, 0xFF, 0x83, 0xFE, 0x0F, 0xF8, 0x3F, 0xE0, 0xFF, 0x83, 0xC0, + 0x7E, 0xFD, 0xFB, 0xF1, 0xE3, 0xC7, 0x8F, 0x1E, 0x3C, 0x78, 0xF1, 0xE3, 0xC7, 0x80, 0x7F, 0xBF, + 0xDF, 0xEF, 0xE3, 0xE1, 0xE0, 0xF0, 0x78, 0x7C, 0x1E, 0x0F, 0x07, 0x83, 0xE1, 0xF0, 0xF8, 0x7F, + 0xFC, 0x7F, 0xFE, 0x7F, 0xFE, 0x7F, 0xFF, 0x3C, 0x1F, 0x3C, 0x1F, 0x3C, 0x1F, 0x3C, 0x1F, 0x3C, + 0x1F, 0x3C, 0x1F, 0x3C, 0x1F, 0x3C, 0x1F, 0x3C, 0x1F, 0x3C, 0x1F, 0x3C, 0x1F, 0xF3, 0xF1, 0xE7, + 0xF3, 0xCF, 0xF7, 0x9F, 0xEF, 0x03, 0xFE, 0x07, 0xFC, 0x0F, 0xF8, 0x1F, 0xF0, 0x3F, 0xF0, 0x7F, + 0xE1, 0xF3, 0xFF, 0xE7, 0xFF, 0x87, 0xFE, 0x03, 0xF8, 0x00, 0x7E, 0xFD, 0xFB, 0xF1, 0xE3, 0xC7, + 0x8F, 0x1E, 0x7F, 0xE3, 0xFF, 0x9F, 0xFE, 0xFF, 0xF0, 0x0F, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, + 0x78, 0x03, 0xC0, 0x1E, 0x00, 0xF0, 0x07, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x78, 0x03, 0xC0, + 0x1E, 0x00, 0xF0, 0x7F, 0x83, 0xFF, 0x1F, 0xF8, 0xFF, 0xE0, 0x1F, 0x00, 0x7C, 0x03, 0xE0, 0x1F, + 0x00, 0xF8, 0x07, 0xC0, 0x7C, 0xFF, 0xEF, 0xFE, 0x7F, 0xF3, 0xFE, 0x00, 0xF8, 0x03, 0xE0, 0x0F, + 0x80, 0x3E, 0x00, 0xFF, 0xFB, 0xFF, 0xEF, 0xFF, 0x9F, 0xFE, 0x00, 0xF0, 0x07, 0xC0, 0x1F, 0x00, + 0x78, 0x03, 0xE0, 0x0F, 0x80, 0x3C, 0x01, 0xF0, 0x07, 0xC0, 0x1E, 0x00, 0xF8, 0x00, 0xFF, 0xF9, + 0xFF, 0xFB, 0xFF, 0xFB, 0xFF, 0xF7, 0xC1, 0xEF, 0x83, 0xDF, 0x07, 0xBE, 0x0F, 0x7C, 0x1E, 0xF8, + 0x3D, 0xF0, 0x7B, 0xFF, 0xF7, 0xFF, 0xEF, 0xFF, 0xDF, 0xFF, 0x80, 0x78, 0xFC, 0x3C, 0xFF, 0x1F, + 0xFF, 0xC7, 0xFF, 0xF3, 0xF0, 0xF9, 0xF0, 0x7C, 0x78, 0x1E, 0x7C, 0x0F, 0x3E, 0x07, 0x9F, 0x07, + 0xCF, 0x03, 0xE7, 0x9F, 0xE7, 0xCF, 0xF3, 0xEF, 0xF1, 0xF7, 0xF0, 0x7E, 0xFD, 0xFB, 0xF1, 0xE3, + 0xC7, 0x8F, 0x1E, 0x3C, 0x78, 0xF1, 0xE3, 0xC7, 0x8F, 0x1E, 0x3C, 0x78, 0xF0, 0x7C, 0xFE, 0xFF, + 0x7F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0x7F, 0xF8, 0x7F, 0xFE, + 0x7F, 0xFE, 0x7F, 0xFF, 0x3C, 0x1F, 0x3C, 0x0F, 0x7C, 0x0F, 0x7C, 0x0F, 0x7C, 0x0F, 0x7C, 0x1F, + 0x3C, 0x1F, 0x3F, 0xFE, 0x3F, 0xFE, 0x1F, 0xFC, 0x07, 0xF8, 0x00, 0x00, 0xF8, 0x3D, 0xF0, 0x79, + 0xE0, 0xF3, 0xC3, 0xE7, 0xC7, 0xCF, 0x8F, 0x9F, 0x1F, 0x1E, 0x3E, 0x3C, 0x78, 0x79, 0xF0, 0xF3, + 0xE1, 0xFF, 0x8F, 0xFE, 0x3F, 0xF8, 0x7F, 0xC0, 0xF8, 0x00, 0x00, 0x00, 0x3F, 0xC1, 0xFF, 0xCF, + 0xFF, 0xBF, 0xFE, 0xF0, 0x7F, 0xC1, 0xFF, 0x07, 0xFF, 0x0F, 0x7C, 0x3C, 0xF0, 0xF0, 0x83, 0xC0, + 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x1F, + 0xE0, 0x7F, 0xF1, 0xFF, 0xF3, 0xFF, 0xE7, 0x83, 0xEF, 0x07, 0xDF, 0x0F, 0xBF, 0x0F, 0x3E, 0x3E, + 0x3C, 0x7C, 0x01, 0xF9, 0xFF, 0xE7, 0xFF, 0x8F, 0xFE, 0x1F, 0xF8, 0x00, 0xF8, 0x3D, 0xF0, 0xF7, + 0xC7, 0xCF, 0x1F, 0x3E, 0x7C, 0xF9, 0xE1, 0xEF, 0x87, 0xFC, 0x1F, 0xF0, 0x3F, 0x80, 0xF8, 0x03, + 0xE0, 0x07, 0x80, 0x1F, 0x00, 0x7C, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x80, 0x3E, 0x00, 0x78, 0x7C, + 0x3D, 0xF0, 0xF3, 0xE7, 0xCF, 0xDF, 0x1F, 0x7C, 0x3F, 0xE0, 0xFF, 0x81, 0xFC, 0x03, 0xE0, 0x0F, + 0x80, 0x1F, 0x0F, 0xFE, 0x7F, 0xF9, 0xFF, 0xE7, 0xFF, 0x80, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, + 0xFF, 0xE0, 0x03, 0xC0, 0x0F, 0x80, 0x1F, 0x7C, 0x3C, 0xF8, 0xF9, 0xF1, 0xF3, 0xE3, 0xC7, 0xC7, + 0x8F, 0x9F, 0x1F, 0x3E, 0x3E, 0x78, 0x7C, 0x00, 0xF8, 0x01, 0xF0, 0x03, 0xE0, 0x07, 0xC0, 0x00, + 0x7F, 0xC7, 0xFE, 0x7F, 0xF7, 0xFF, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, + 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0xF9, 0xE7, 0xFE, 0x79, 0xFF, 0x9E, 0x7F, 0xEF, 0x9F, + 0xFB, 0xE7, 0xFE, 0xF1, 0xFF, 0xFC, 0x7F, 0xFE, 0x1E, 0xFF, 0x07, 0x9E, 0x03, 0xE7, 0xC0, 0xF9, + 0xFF, 0xFC, 0x3F, 0xFF, 0x07, 0xFF, 0x80, 0x7F, 0x80, 0x7F, 0xFC, 0x3F, 0xFF, 0x9F, 0xFF, 0xC7, + 0xFF, 0xF1, 0xF0, 0xF8, 0xF8, 0x7C, 0x7C, 0x3E, 0x3E, 0x1F, 0x1F, 0x0F, 0x8F, 0x87, 0xC7, 0xC3, + 0xE7, 0xE1, 0xF7, 0xE0, 0xFB, 0xF0, 0x7D, 0xF0, 0x3E, 0x23, 0xDF, 0xEF, 0xFD, 0xE0, 0x00, 0x7C, + 0xF1, 0xE7, 0xCF, 0x9F, 0x7E, 0x00, 0x00, 0x00, 0x00, 0x06, 0x1F, 0x7E, 0xFC, 0xF8, 0xE0, 0x00, + 0x01, 0xFF, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0x7C, 0x3B, 0xE0, 0x1F, 0xC0, 0x7F, 0x01, 0xFC, 0x07, + 0xE0, 0x0F, 0x00, 0x78, 0x00, 0x00, 0x0C, 0x01, 0xF8, 0x0F, 0xC0, 0x7E, 0x03, 0xE0, 0x06, 0x00, + 0x1F, 0x87, 0xF0, 0xFE, 0x3F, 0xC7, 0x80, 0xF0, 0x1F, 0x71, 0xFF, 0x7F, 0xFF, 0xFF, 0xFE, 0x3E, + 0x04, 0x00, 0xFF, 0xBF, 0xEF, 0xFF, 0xFE, 0xFE, 0x00, 0x00, 0xC7, 0xBF, 0x7C, 0xE0, 0x00, 0x03, + 0xCF, 0xBE, 0x79, 0xE7, 0x9F, 0x7D, 0xF7, 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xF0, 0x00, 0x00, 0x07, + 0x83, 0xBC, 0x3D, 0xF1, 0xEF, 0xFF, 0x3F, 0xF1, 0xFF, 0x8F, 0xF0, 0x7C, 0x03, 0xE0, 0x1F, 0x00, + 0x78, 0x03, 0xC0, 0x1E, 0x00, 0xF0, 0x07, 0x80, 0x3C, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x03, 0xC0, + 0xFF, 0xBF, 0xFE, 0xFF, 0x7F, 0xFD, 0xFF, 0xF7, 0xFF, 0xDF, 0xFE, 0x7C, 0x01, 0xF0, 0x03, 0xC0, + 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xF0, 0x1F, 0x03, 0xF0, 0x7E, 0x07, 0xC0, 0x78, 0x07, 0xF0, 0x7F, 0x03, 0xF0, 0x3F, 0x07, + 0xE0, 0x78, 0x0F, 0x80, 0xFF, 0xE7, 0xFE, 0x7F, 0xF3, 0xFE, 0x03, 0x00, 0x07, 0x01, 0xFC, 0x3F, + 0xE7, 0xFE, 0x7F, 0xF7, 0x9F, 0xF8, 0xFF, 0x0F, 0xF0, 0xFF, 0x8F, 0x7F, 0xF7, 0xFE, 0x3F, 0xE1, + 0xFC, 0x00, 0x07, 0xFF, 0x3F, 0xF9, 0xFF, 0xCF, 0xFE, 0x00, 0xF0, 0x07, 0x80, 0x3C, 0x01, 0xE0, + 0x0F, 0x00, 0x7C, 0x03, 0xE0, 0x0F, 0x00, 0x78, 0x03, 0xC0, 0x1E, 0x00, 0xF0, 0x07, 0xC0, 0x10, + 0x10, 0x11, 0xE0, 0x7B, 0xE0, 0xF7, 0xC3, 0xE7, 0x87, 0xCF, 0x8F, 0x0F, 0x3E, 0x1E, 0x78, 0x3E, + 0xF0, 0x7F, 0xE0, 0x7F, 0x80, 0xFF, 0x01, 0xFE, 0x01, 0xF8, 0x03, 0xF0, 0x07, 0xE0, 0x07, 0x80, + 0x0F, 0x00, 0x18, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x3E, 0x00, 0xFC, 0x01, 0xFC, 0x03, + 0xF8, 0x0F, 0xF0, 0x1F, 0xE0, 0x3F, 0xE0, 0xFB, 0xC1, 0xE7, 0x83, 0xCF, 0x8F, 0x8F, 0x1E, 0x1E, + 0x7C, 0x3E, 0xF8, 0x3D, 0xE0, 0x78, 0xC0, 0xC0, 0x00, 0x01, 0xF8, 0x3F, 0xC7, 0xFC, 0xFF, 0xEF, + 0x3E, 0xF1, 0xEF, 0xFE, 0xFF, 0xE7, 0xFE, 0x3F, 0xE0, 0xFF, 0x01, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, + 0x00, 0xF0, 0x0F, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0xF8, 0x00, 0x3E, 0x78, 0x07, 0x9E, 0x01, + 0xE7, 0x80, 0x7F, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, 0xEF, 0x80, 0x79, 0xF0, 0x7E, 0x7F, 0xFF, + 0x0F, 0xFF, 0x81, 0xFF, 0xC0, 0x1F, 0xC0, 0xFF, 0xFF, 0xF8, 0x00, 0xC7, 0xBF, 0x7C, 0xE0, 0x00, + 0x03, 0xCF, 0xBE, 0x79, 0xE7, 0x9F, 0x7D, 0xF7, 0xCF, 0x3C, 0xF3, 0xCF, 0x3C, 0xF0, 0x00, 0x00, + 0x07, 0x83, 0xBC, 0x3D, 0xF1, 0xEF, 0xFF, 0x3F, 0xF1, 0xFF, 0x8F, 0xF0, 0x7C, 0x03, 0xE0, 0x1F, + 0x00, 0x78, 0x03, 0xC0, 0x1E, 0x00, 0xF0, 0x07, 0x80, 0x3C, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x03, + 0xC0, 0xFF, 0xBF, 0xFE, 0xFF, 0x7F, 0xFD, 0xFF, 0xF7, 0xFF, 0xDF, 0xFE, 0x7C, 0x01, 0xF0, 0x03, + 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xF0, 0x00, 0x00, 0x00, + 0x00, 0x07, 0x9F, 0x3D, 0xF9, 0xEF, 0xCF, 0xF8, 0x7F, 0xF9, 0xFF, 0xCF, 0xFF, 0x7F, 0xF3, 0xFC, + 0x1F, 0x00, 0xF8, 0x07, 0xC0, 0x1E, 0x00, 0xF0, 0x07, 0x80, 0x3C, 0x01, 0xE0, 0x00, 0x00, 0x03, + 0x00, 0x1E, 0x00, 0xF8, 0x01, 0xF0, 0x0F, 0xE0, 0x7F, 0xC1, 0xFF, 0x0F, 0xBE, 0x7C, 0x79, 0xE1, + 0xF7, 0x87, 0xDE, 0xCF, 0xFB, 0xBF, 0xFF, 0xF7, 0xFF, 0x9F, 0xFE, 0x3F, 0xF0, 0x1F, 0xC3, 0xFC, + 0x3F, 0x87, 0xF8, 0x78, 0x07, 0x80, 0x7C, 0x63, 0xFE, 0x3F, 0xF0, 0xFF, 0x0F, 0xC1, 0xF8, 0x3F, + 0x03, 0xE0, 0x7C, 0x07, 0xC0, 0x78, 0x01, 0x80, 0x10, 0x11, 0xE0, 0x7B, 0xE0, 0xF7, 0xC3, 0xE7, + 0x87, 0xCF, 0x8F, 0x0F, 0x3E, 0x1E, 0x78, 0x3E, 0xF0, 0x7F, 0xE0, 0x7F, 0x80, 0xFF, 0x01, 0xFE, + 0x01, 0xF8, 0x03, 0xF0, 0x07, 0xE0, 0x07, 0x80, 0x0F, 0x00, 0x18, 0x00, 0x00, 0x00, 0x0F, 0x00, + 0x1F, 0x00, 0x3E, 0x00, 0xFC, 0x01, 0xFC, 0x03, 0xF8, 0x0F, 0xF0, 0x1F, 0xE0, 0x3F, 0xE0, 0xFB, + 0xC1, 0xE7, 0x83, 0xCF, 0x8F, 0x8F, 0x1E, 0x1E, 0x7C, 0x3E, 0xF8, 0x3D, 0xE0, 0x78, 0xC0, 0xC0, + 0x00, 0x01, 0xF8, 0x3F, 0xC7, 0xFC, 0xFF, 0xEF, 0x3E, 0xF1, 0xEF, 0xFE, 0xFF, 0xE7, 0xFE, 0x3F, + 0xE0, 0xFF, 0x01, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x01, 0xE0, 0x00, 0xFC, 0x00, + 0x3F, 0x00, 0x1F, 0xE0, 0x07, 0xF8, 0x01, 0xFE, 0x00, 0xFF, 0xC0, 0x3C, 0xF0, 0x1F, 0x3E, 0x07, + 0x8F, 0x81, 0xE1, 0xE0, 0xFF, 0xFC, 0x3F, 0xFF, 0x1F, 0xFF, 0xE7, 0xFF, 0xF9, 0xF0, 0x3E, 0xF8, + 0x07, 0xFE, 0x01, 0xF0, 0x00, 0x00, 0x03, 0x80, 0x01, 0xE0, 0x00, 0x78, 0x00, 0x1E, 0x00, 0x00, + 0x00, 0x1F, 0x81, 0xFF, 0x0F, 0xFC, 0x7F, 0xE0, 0x0F, 0x01, 0x7C, 0xFF, 0xEF, 0xFF, 0x7F, 0xFB, + 0xC7, 0xDE, 0x3E, 0xFF, 0xF7, 0xFF, 0x9F, 0xFC, 0x1E, 0x00, 0xE0, 0x07, 0x80, 0x3C, 0x01, 0xE0, + 0x00, 0x00, 0x03, 0xE0, 0x00, 0xFC, 0x00, 0x3F, 0x00, 0x03, 0xC0, 0x01, 0xE0, 0x00, 0x70, 0x00, + 0x1E, 0x00, 0x0F, 0xC0, 0x03, 0xF0, 0x01, 0xFE, 0x00, 0x7F, 0x80, 0x1F, 0xE0, 0x0F, 0xFC, 0x03, + 0xCF, 0x01, 0xF3, 0xE0, 0x78, 0xF8, 0x1E, 0x1E, 0x0F, 0xFF, 0xC3, 0xFF, 0xF1, 0xFF, 0xFE, 0x7F, + 0xFF, 0x9F, 0x03, 0xEF, 0x80, 0x7F, 0xE0, 0x1F, 0x0F, 0x80, 0x7E, 0x03, 0xF0, 0x07, 0x80, 0x78, + 0x03, 0x80, 0x7E, 0x07, 0xFC, 0x3F, 0xF1, 0xFF, 0x80, 0x3C, 0x05, 0xF3, 0xFF, 0xBF, 0xFD, 0xFF, + 0xEF, 0x1F, 0x78, 0xFB, 0xFF, 0xDF, 0xFE, 0x7F, 0xF0, 0x78, 0x00, 0x00, 0x03, 0x00, 0x01, 0xE0, + 0x00, 0xF8, 0x03, 0x7C, 0x01, 0xFE, 0x00, 0xFF, 0x00, 0x7F, 0x80, 0x1C, 0xE0, 0x02, 0x10, 0x00, + 0x78, 0x00, 0x3F, 0x00, 0x0F, 0xC0, 0x07, 0xF8, 0x01, 0xFE, 0x00, 0x7F, 0x80, 0x3F, 0xF0, 0x0F, + 0x3C, 0x07, 0xCF, 0x81, 0xE3, 0xE0, 0x78, 0x78, 0x3F, 0xFF, 0x0F, 0xFF, 0xC7, 0xFF, 0xF9, 0xFF, + 0xFE, 0x7C, 0x0F, 0xBE, 0x01, 0xFF, 0x80, 0x7C, 0x00, 0x08, 0x00, 0x3C, 0x00, 0xF8, 0x13, 0xE0, + 0x77, 0x81, 0xF4, 0x07, 0xF0, 0x0E, 0xE0, 0x08, 0xC0, 0x3F, 0x00, 0xFF, 0x81, 0xFF, 0x83, 0xFF, + 0x00, 0x1E, 0x00, 0xBE, 0x1F, 0xFC, 0x7F, 0xF8, 0xFF, 0xF1, 0xE3, 0xE3, 0xC7, 0xC7, 0xFF, 0x8F, + 0xFF, 0x0F, 0xFE, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x07, 0x80, 0x01, 0xF0, 0x00, 0xFE, 0x00, 0x7F, 0x00, 0x3F, 0x00, 0x1F, 0xE0, 0x07, 0x38, 0x00, 0x84, 0x00, 0x1E, 0x00, 0x0F, 0xC0, 0x03, 0xF0, 0x01, 0xFE, 0x00, 0x7F, 0x80, 0x1F, 0xE0, 0x0F, 0xFC, 0x03, 0xCF, 0x01, 0xF3, 0xE0, 0x78, 0xF8, 0x1E, 0x1E, 0x0F, 0xFF, 0xC3, 0xFF, 0xF1, 0xFF, 0xFE, 0x7F, 0xFF, 0x9F, 0x03, 0xEF, - 0x80, 0x7F, 0xE0, 0x1F, 0x00, 0x60, 0x03, 0xF0, 0x0F, 0xC0, 0x07, 0x02, 0x3C, 0x1D, 0xE0, 0xFF, - 0x07, 0xF0, 0x1D, 0xC0, 0x23, 0x01, 0xF8, 0x0F, 0xF8, 0x3F, 0xF0, 0xFF, 0xC0, 0x0F, 0x00, 0xBE, - 0x3F, 0xF9, 0xFF, 0xE7, 0xFF, 0x9E, 0x3E, 0x78, 0xF9, 0xFF, 0xE7, 0xFF, 0x8F, 0xFE, 0x07, 0x80, - 0x00, 0x00, 0x01, 0xF6, 0x00, 0x7F, 0xC0, 0x3F, 0xE0, 0x06, 0x70, 0x00, 0x30, 0x00, 0x1E, 0x00, - 0x0F, 0xC0, 0x07, 0xF8, 0x01, 0xCE, 0x00, 0x21, 0x00, 0x07, 0x80, 0x03, 0xF0, 0x00, 0xFC, 0x00, - 0x7F, 0x80, 0x1F, 0xE0, 0x07, 0xF8, 0x03, 0xFF, 0x00, 0xF3, 0xC0, 0x7C, 0xF8, 0x1E, 0x3E, 0x07, - 0x87, 0x83, 0xFF, 0xF0, 0xFF, 0xFC, 0x7F, 0xFF, 0x9F, 0xFF, 0xE7, 0xC0, 0xFB, 0xE0, 0x1F, 0xF8, - 0x07, 0xC0, 0x1E, 0x61, 0xFF, 0x0F, 0xF8, 0x77, 0x80, 0x20, 0x03, 0x80, 0x3E, 0x03, 0xF8, 0x1D, - 0xC0, 0x46, 0x07, 0xE0, 0x7F, 0xC3, 0xFF, 0x1F, 0xF8, 0x03, 0xC0, 0x5F, 0x3F, 0xFB, 0xFF, 0xDF, - 0xFE, 0xF1, 0xF7, 0x8F, 0xBF, 0xFD, 0xFF, 0xE7, 0xFF, 0x07, 0x80, 0x00, 0xC0, 0x00, 0x78, 0x00, - 0x3F, 0x00, 0x1F, 0xE0, 0x07, 0x38, 0x00, 0x84, 0x00, 0x1E, 0x00, 0x0F, 0xC0, 0x03, 0xF0, 0x01, - 0xFE, 0x00, 0x7F, 0x80, 0x1F, 0xE0, 0x0F, 0xFC, 0x03, 0xCF, 0x01, 0xF3, 0xE0, 0x78, 0xF8, 0x1E, - 0x1E, 0x0F, 0xFF, 0xC3, 0xFF, 0xF1, 0xFF, 0xFE, 0x7F, 0xFF, 0x9F, 0x03, 0xEF, 0x80, 0x7F, 0xE0, - 0x1F, 0x00, 0x00, 0x00, 0x38, 0x00, 0x1E, 0x00, 0x07, 0x80, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x02, - 0x00, 0x38, 0x03, 0xE0, 0x3F, 0x81, 0xDC, 0x04, 0x60, 0x7E, 0x07, 0xFC, 0x3F, 0xF1, 0xFF, 0x80, - 0x3C, 0x05, 0xF3, 0xFF, 0xBF, 0xFD, 0xFF, 0xEF, 0x1F, 0x78, 0xFB, 0xFF, 0xDF, 0xFE, 0x7F, 0xF0, - 0x78, 0x03, 0x80, 0x1E, 0x00, 0xF0, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x07, - 0x80, 0x03, 0xE0, 0x01, 0xF0, 0x00, 0x38, 0x00, 0x77, 0xC0, 0x1F, 0xE0, 0x07, 0xF8, 0x00, 0xFC, - 0x00, 0x0C, 0x00, 0x07, 0x80, 0x03, 0xF0, 0x00, 0xFC, 0x00, 0x7F, 0x80, 0x1F, 0xE0, 0x07, 0xF8, - 0x03, 0xFF, 0x00, 0xF3, 0xC0, 0x7C, 0xF8, 0x1E, 0x3E, 0x07, 0x87, 0x83, 0xFF, 0xF0, 0xFF, 0xFC, - 0x7F, 0xFF, 0x9F, 0xFF, 0xE7, 0xC0, 0xFB, 0xE0, 0x1F, 0xF8, 0x07, 0xC0, 0x00, 0xC0, 0x0F, 0x00, - 0x78, 0x07, 0x80, 0x78, 0x01, 0x80, 0x73, 0x83, 0xFC, 0x1F, 0xE0, 0x7E, 0x00, 0x00, 0x3F, 0x03, - 0xFE, 0x1F, 0xF8, 0xFF, 0xC0, 0x1E, 0x02, 0xF9, 0xFF, 0xDF, 0xFE, 0xFF, 0xF7, 0x8F, 0xBC, 0x7D, - 0xFF, 0xEF, 0xFF, 0x3F, 0xF8, 0x3C, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x78, 0x00, 0x1F, 0x00, - 0x03, 0xE0, 0x00, 0x38, 0x00, 0x77, 0xC0, 0x1F, 0xE0, 0x07, 0xF8, 0x00, 0xFC, 0x00, 0x0C, 0x00, - 0x07, 0x80, 0x03, 0xF0, 0x00, 0xFC, 0x00, 0x7F, 0x80, 0x1F, 0xE0, 0x07, 0xF8, 0x03, 0xFF, 0x00, - 0xF3, 0xC0, 0x7C, 0xF8, 0x1E, 0x3E, 0x07, 0x87, 0x83, 0xFF, 0xF0, 0xFF, 0xFC, 0x7F, 0xFF, 0x9F, - 0xFF, 0xE7, 0xC0, 0xFB, 0xE0, 0x1F, 0xF8, 0x07, 0xC0, 0x00, 0x00, 0x60, 0x07, 0x80, 0x3E, 0x00, - 0xF8, 0x03, 0xC0, 0x73, 0x83, 0xFC, 0x1F, 0xE0, 0x7E, 0x00, 0x00, 0x3F, 0x03, 0xFE, 0x1F, 0xF8, - 0xFF, 0xC0, 0x1E, 0x02, 0xF9, 0xFF, 0xDF, 0xFE, 0xFF, 0xF7, 0x8F, 0xBC, 0x7D, 0xFF, 0xEF, 0xFF, - 0x3F, 0xF8, 0x3C, 0x00, 0x01, 0xC0, 0x00, 0xFC, 0x00, 0x3F, 0x00, 0x01, 0xC0, 0x00, 0xF0, 0x00, - 0x38, 0x00, 0x0C, 0x00, 0x1C, 0xF0, 0x07, 0xF8, 0x01, 0xFE, 0x00, 0x3F, 0x00, 0x03, 0x00, 0x01, - 0xE0, 0x00, 0xFC, 0x00, 0x3F, 0x00, 0x1F, 0xE0, 0x07, 0xF8, 0x01, 0xFE, 0x00, 0xFF, 0xC0, 0x3C, - 0xF0, 0x1F, 0x3E, 0x07, 0x8F, 0x81, 0xE1, 0xE0, 0xFF, 0xFC, 0x3F, 0xFF, 0x1F, 0xFF, 0xE7, 0xFF, - 0xF9, 0xF0, 0x3E, 0xF8, 0x07, 0xFE, 0x01, 0xF0, 0x00, 0x00, 0x7C, 0x03, 0xF0, 0x1F, 0x80, 0x3C, - 0x03, 0xC0, 0x1C, 0x03, 0x9C, 0x1F, 0xE0, 0xFF, 0x03, 0xF0, 0x00, 0x01, 0xF8, 0x1F, 0xF0, 0xFF, - 0xC7, 0xFE, 0x00, 0xF0, 0x17, 0xCF, 0xFE, 0xFF, 0xF7, 0xFF, 0xBC, 0x7D, 0xE3, 0xEF, 0xFF, 0x7F, - 0xF9, 0xFF, 0xC1, 0xE0, 0x03, 0x98, 0x01, 0xFF, 0x00, 0xFF, 0xC0, 0x1F, 0xE0, 0x00, 0x00, 0x01, - 0xCF, 0x00, 0x7F, 0x80, 0x1F, 0xE0, 0x03, 0xF0, 0x00, 0x30, 0x00, 0x1E, 0x00, 0x0F, 0xC0, 0x03, - 0xF0, 0x01, 0xFE, 0x00, 0x7F, 0x80, 0x1F, 0xE0, 0x0F, 0xFC, 0x03, 0xCF, 0x01, 0xF3, 0xE0, 0x78, - 0xF8, 0x1E, 0x1E, 0x0F, 0xFF, 0xC3, 0xFF, 0xF1, 0xFF, 0xFE, 0x7F, 0xFF, 0x9F, 0x03, 0xEF, 0x80, - 0x7F, 0xE0, 0x1F, 0x0E, 0x60, 0xFF, 0x8F, 0xF8, 0x37, 0x80, 0x00, 0x0E, 0x70, 0x7F, 0x83, 0xFC, - 0x0F, 0xC0, 0x00, 0x07, 0xE0, 0x7F, 0xC3, 0xFF, 0x1F, 0xF8, 0x03, 0xC0, 0x5F, 0x3F, 0xFB, 0xFF, - 0xDF, 0xFE, 0xF1, 0xF7, 0x8F, 0xBF, 0xFD, 0xFF, 0xE7, 0xFF, 0x07, 0x80, 0x07, 0x3C, 0x01, 0xFE, - 0x00, 0x7F, 0x80, 0x0F, 0xC0, 0x00, 0xC0, 0x00, 0x78, 0x00, 0x3F, 0x00, 0x0F, 0xC0, 0x07, 0xF8, - 0x01, 0xFE, 0x00, 0x7F, 0x80, 0x3F, 0xF0, 0x0F, 0x3C, 0x07, 0xCF, 0x81, 0xE3, 0xE0, 0x78, 0x78, - 0x3F, 0xFF, 0x0F, 0xFF, 0xC7, 0xFF, 0xF9, 0xFF, 0xFE, 0x7C, 0x0F, 0xBE, 0x01, 0xFF, 0x80, 0x7C, - 0x00, 0x00, 0x00, 0xE0, 0x00, 0x78, 0x00, 0x1E, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, - 0xE7, 0x07, 0xF8, 0x3F, 0xC0, 0xFC, 0x00, 0x00, 0x7E, 0x07, 0xFC, 0x3F, 0xF1, 0xFF, 0x80, 0x3C, - 0x05, 0xF3, 0xFF, 0xBF, 0xFD, 0xFF, 0xEF, 0x1F, 0x78, 0xFB, 0xFF, 0xDF, 0xFE, 0x7F, 0xF0, 0x78, - 0x03, 0x80, 0x1E, 0x00, 0xF0, 0x07, 0x80, 0x00, 0x00, 0xFF, 0xF7, 0xFF, 0xBF, 0xFD, 0xFF, 0xEF, - 0x00, 0x78, 0x03, 0xC0, 0x1F, 0xFC, 0xFF, 0xE7, 0xFF, 0x3F, 0xF9, 0xE0, 0x0F, 0x00, 0x78, 0x03, - 0xFF, 0xDF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x1C, 0x01, 0xF0, 0x0F, 0x80, 0x3C, 0x00, 0x80, - 0x0F, 0x81, 0xFF, 0x1F, 0xF8, 0xFF, 0xEF, 0x8F, 0x78, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, - 0x3F, 0x08, 0xFF, 0xE7, 0xFF, 0x0F, 0xF8, 0x1F, 0x00, 0xE0, 0x0F, 0x00, 0x7C, 0x03, 0xC0, 0x04, - 0x00, 0x1F, 0x00, 0xF8, 0x07, 0xE0, 0x0F, 0x00, 0xF0, 0x07, 0x03, 0xFF, 0xDF, 0xFE, 0xFF, 0xF7, - 0xFF, 0xBC, 0x01, 0xE0, 0x0F, 0x00, 0x7F, 0xF3, 0xFF, 0x9F, 0xFC, 0xFF, 0xE7, 0x80, 0x3C, 0x01, - 0xE0, 0x0F, 0xFF, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0x1F, 0x00, 0xFC, 0x07, 0xE0, 0x07, 0x00, 0x78, - 0x03, 0x80, 0x3E, 0x07, 0xFC, 0x7F, 0xE3, 0xFF, 0xBE, 0x3D, 0xE1, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0x00, 0xFC, 0x23, 0xFF, 0x9F, 0xFC, 0x3F, 0xE0, 0x7C, 0x00, 0x00, 0x01, 0xEE, 0x1F, 0xF0, - 0xFF, 0x82, 0x78, 0x00, 0x03, 0xFF, 0xDF, 0xFE, 0xFF, 0xF7, 0xFF, 0xBC, 0x01, 0xE0, 0x0F, 0x00, - 0x7F, 0xF3, 0xFF, 0x9F, 0xFC, 0xFF, 0xE7, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0xFF, 0x7F, 0xFF, 0xFF, - 0xFF, 0xFF, 0x1E, 0xC1, 0xFF, 0x1F, 0xF8, 0x67, 0x80, 0x00, 0x07, 0xC0, 0xFF, 0x8F, 0xFC, 0x7F, - 0xF7, 0xC7, 0xBC, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x1F, 0x84, 0x7F, 0xF3, 0xFF, 0x87, - 0xFC, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x60, 0x03, 0xC0, 0x1F, 0x06, 0xF8, 0x3F, 0xC1, 0xFC, 0x0F, - 0xF0, 0x39, 0xC0, 0x42, 0x0F, 0xFF, 0x3F, 0xFC, 0xFF, 0xF3, 0xFF, 0xCF, 0x00, 0x3C, 0x00, 0xF0, - 0x03, 0xFF, 0x8F, 0xFE, 0x3F, 0xF8, 0xFF, 0xE3, 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xFF, 0xF3, 0xFF, - 0xEF, 0xFF, 0xBF, 0xFE, 0x00, 0x18, 0x00, 0x38, 0x00, 0xF0, 0x13, 0xE0, 0x7F, 0x03, 0xFC, 0x0F, - 0xF0, 0x1E, 0xE0, 0x10, 0x80, 0x1F, 0x00, 0xFF, 0x83, 0xFF, 0x07, 0xFF, 0x1F, 0x1E, 0x3C, 0x3E, - 0x7F, 0xFC, 0xFF, 0xF9, 0xFF, 0xF3, 0xE0, 0x07, 0xE1, 0x07, 0xFF, 0x0F, 0xFE, 0x07, 0xFC, 0x03, - 0xE0, 0x00, 0x00, 0x0C, 0x00, 0xF0, 0x07, 0xC0, 0x7F, 0x07, 0xF0, 0x7F, 0x07, 0xF8, 0x39, 0xC0, - 0x84, 0x3F, 0xFD, 0xFF, 0xEF, 0xFF, 0x7F, 0xFB, 0xC0, 0x1E, 0x00, 0xF0, 0x07, 0xFF, 0x3F, 0xF9, - 0xFF, 0xCF, 0xFE, 0x78, 0x03, 0xC0, 0x1E, 0x00, 0xFF, 0xF7, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, - 0xC0, 0x0F, 0x00, 0x7C, 0x05, 0xF0, 0x77, 0x8F, 0xD8, 0xFF, 0x07, 0xB8, 0x10, 0x80, 0x7C, 0x0F, - 0xF8, 0xFF, 0xC7, 0xFF, 0x7C, 0x7B, 0xC3, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x01, 0xF8, 0x47, - 0xFF, 0x3F, 0xF8, 0x7F, 0xC0, 0xF8, 0x00, 0xF0, 0x07, 0xE0, 0x0F, 0xC0, 0x0F, 0x06, 0x78, 0x3D, - 0xC1, 0xF8, 0x0F, 0xF0, 0x39, 0xC0, 0x42, 0x0F, 0xFF, 0x3F, 0xFC, 0xFF, 0xF3, 0xFF, 0xCF, 0x00, - 0x3C, 0x00, 0xF0, 0x03, 0xFF, 0x8F, 0xFE, 0x3F, 0xF8, 0xFF, 0xE3, 0xC0, 0x0F, 0x00, 0x3C, 0x00, - 0xFF, 0xF3, 0xFF, 0xEF, 0xFF, 0xBF, 0xFE, 0x00, 0xF8, 0x03, 0xF0, 0x0F, 0xC0, 0x8F, 0x07, 0x78, - 0x7F, 0xC3, 0xFC, 0x0F, 0x70, 0x10, 0x80, 0x3E, 0x03, 0xFE, 0x1F, 0xF8, 0x7F, 0xF3, 0xE3, 0xCF, - 0x0F, 0xBF, 0xFE, 0xFF, 0xFB, 0xFF, 0xEF, 0x80, 0x3F, 0x08, 0x7F, 0xF1, 0xFF, 0xC1, 0xFF, 0x01, - 0xF0, 0x00, 0x01, 0xFF, 0x0F, 0xF8, 0xFF, 0x83, 0x38, 0x03, 0x00, 0x3C, 0x03, 0xF0, 0x3F, 0xC1, - 0xCE, 0x04, 0x21, 0xFF, 0xEF, 0xFF, 0x7F, 0xFB, 0xFF, 0xDE, 0x00, 0xF0, 0x07, 0x80, 0x3F, 0xF9, - 0xFF, 0xCF, 0xFE, 0x7F, 0xF3, 0xC0, 0x1E, 0x00, 0xF0, 0x07, 0xFF, 0xBF, 0xFF, 0xFF, 0xFF, 0xFF, - 0x80, 0x1E, 0xC1, 0xFF, 0x0F, 0xF8, 0x6F, 0x80, 0x20, 0x03, 0x80, 0x7E, 0x07, 0xF8, 0x3D, 0xC0, - 0x84, 0x03, 0xE0, 0x7F, 0xC7, 0xFE, 0x3F, 0xFB, 0xE3, 0xDE, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xF0, 0x0F, 0xC2, 0x3F, 0xF9, 0xFF, 0xC3, 0xFE, 0x07, 0xC0, 0x06, 0x00, 0x78, 0x07, 0xE0, 0x7F, - 0x83, 0x9C, 0x08, 0x43, 0xFF, 0xDF, 0xFE, 0xFF, 0xF7, 0xFF, 0xBC, 0x01, 0xE0, 0x0F, 0x00, 0x7F, - 0xF3, 0xFF, 0x9F, 0xFC, 0xFF, 0xE7, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0xFF, 0x7F, 0xFF, 0xFF, 0xFF, - 0xFF, 0x00, 0x00, 0x70, 0x07, 0xC0, 0x3E, 0x00, 0xF0, 0x02, 0x00, 0x02, 0x00, 0x38, 0x07, 0xE0, - 0x7F, 0x83, 0xDC, 0x08, 0x40, 0x3E, 0x07, 0xFC, 0x7F, 0xE3, 0xFF, 0xBE, 0x3D, 0xE1, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0xFC, 0x23, 0xFF, 0x9F, 0xFC, 0x3F, 0xE0, 0x7C, 0x03, 0x80, 0x3C, - 0x01, 0xF0, 0x0F, 0x00, 0x10, 0x00, 0xFB, 0xFF, 0xCF, 0x79, 0xC7, 0x9E, 0x79, 0xE7, 0x9E, 0x79, - 0xE7, 0x9E, 0x79, 0xE7, 0x9E, 0x79, 0xE7, 0x9E, 0x78, 0xF9, 0xF8, 0xF3, 0xC7, 0x0E, 0x3E, 0x7C, - 0xF9, 0xF3, 0xE7, 0xCF, 0x9F, 0x3E, 0x7C, 0xF9, 0xF3, 0xE0, 0x7B, 0xDE, 0xF7, 0xBD, 0xEF, 0x7B, - 0xDE, 0xF7, 0xBD, 0xEF, 0x7B, 0xC0, 0xE7, 0xBD, 0xE0, 0x03, 0xFF, 0xFF, 0x91, 0xDF, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x3B, 0xFF, 0x79, 0x00, 0x03, 0xF0, 0x03, 0xFF, 0x03, 0xFF, - 0xE0, 0xFF, 0xFC, 0x7E, 0x1F, 0x9F, 0x03, 0xEF, 0x80, 0x7F, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, - 0xFF, 0x80, 0x7F, 0xE0, 0x1F, 0xF8, 0x0F, 0x9F, 0x03, 0xE7, 0xF7, 0xF8, 0xFF, 0xFC, 0x1F, 0xFE, - 0x03, 0xFF, 0x00, 0x1E, 0x00, 0x07, 0x00, 0x01, 0xE0, 0x00, 0x78, 0x00, 0x1E, 0x00, 0x02, 0x00, - 0x0F, 0x80, 0xFF, 0x87, 0xFF, 0x1F, 0xFC, 0xF8, 0xFB, 0xE1, 0xEF, 0x07, 0xBC, 0x1E, 0xF0, 0x7B, - 0xE3, 0xEF, 0xCF, 0x9F, 0xFC, 0x3F, 0xF0, 0x7F, 0x80, 0x70, 0x01, 0xC0, 0x0F, 0x80, 0x3E, 0x00, - 0x78, 0x00, 0x80, 0x03, 0xE0, 0x00, 0xFC, 0x00, 0x3F, 0x00, 0x03, 0xC0, 0x01, 0xE0, 0x00, 0x70, - 0x00, 0x3F, 0x00, 0x3F, 0xF0, 0x3F, 0xFE, 0x0F, 0xFF, 0xC7, 0xE1, 0xF9, 0xF0, 0x3E, 0xF8, 0x07, - 0xFE, 0x01, 0xFF, 0x80, 0x7F, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0xF9, 0xF0, 0x3E, - 0x7F, 0x7F, 0x8F, 0xFF, 0xC1, 0xFF, 0xE0, 0x3F, 0xF0, 0x01, 0xE0, 0x00, 0x0F, 0x00, 0x3E, 0x00, - 0xFC, 0x00, 0xF0, 0x07, 0x80, 0x1C, 0x00, 0xF8, 0x0F, 0xF8, 0x7F, 0xF1, 0xFF, 0xCF, 0x8F, 0xBE, - 0x1E, 0xF0, 0x7B, 0xC1, 0xEF, 0x07, 0xBE, 0x3E, 0xFC, 0xF9, 0xFF, 0xC3, 0xFF, 0x07, 0xF8, 0x07, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x78, 0x00, 0x3E, 0x00, 0xDF, 0x00, 0x7F, 0x00, 0x3F, - 0x00, 0x1F, 0xE0, 0x07, 0x38, 0x00, 0x84, 0x00, 0x3F, 0x00, 0x3F, 0xF0, 0x3F, 0xFE, 0x0F, 0xFF, - 0xC7, 0xE1, 0xF9, 0xF0, 0x3E, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0x7F, 0xE0, 0x1F, 0xF8, 0x07, - 0xFE, 0x01, 0xFF, 0x80, 0xF9, 0xF0, 0x3E, 0x7F, 0x7F, 0x8F, 0xFF, 0xC1, 0xFF, 0xE0, 0x3F, 0xF0, - 0x01, 0xE0, 0x00, 0x00, 0x18, 0x00, 0x38, 0x00, 0xF8, 0x13, 0xE0, 0x77, 0x01, 0xF4, 0x07, 0xF8, - 0x0E, 0xE0, 0x08, 0xC0, 0x1F, 0x00, 0xFF, 0x83, 0xFF, 0x87, 0xFF, 0x1F, 0x1F, 0x3E, 0x1E, 0x78, - 0x3C, 0xF0, 0x79, 0xE0, 0xF3, 0xE3, 0xE7, 0xE7, 0xC7, 0xFF, 0x07, 0xFE, 0x07, 0xF8, 0x03, 0x80, - 0x00, 0x00, 0x00, 0x1C, 0x00, 0x07, 0x80, 0x01, 0xF0, 0x00, 0xFE, 0x00, 0x7B, 0x00, 0x3F, 0x00, - 0x1F, 0xE0, 0x07, 0x38, 0x00, 0x84, 0x00, 0x3F, 0x00, 0x3F, 0xF0, 0x3F, 0xFE, 0x0F, 0xFF, 0xC7, - 0xE1, 0xF9, 0xF0, 0x3E, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0x7F, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, - 0x01, 0xFF, 0x80, 0xF9, 0xF0, 0x3E, 0x7F, 0x7F, 0x8F, 0xFF, 0xC1, 0xFF, 0xE0, 0x3F, 0xF0, 0x01, - 0xE0, 0x00, 0x00, 0x80, 0x07, 0x00, 0x3E, 0x00, 0x7C, 0x02, 0xF0, 0x1D, 0xC0, 0xF8, 0x07, 0xF8, - 0x1D, 0xC0, 0x23, 0x00, 0xF8, 0x0F, 0xF8, 0x7F, 0xF1, 0xFF, 0xCF, 0x8F, 0xBE, 0x1E, 0xF0, 0x7B, - 0xC1, 0xEF, 0x07, 0xBE, 0x3E, 0xFC, 0xF9, 0xFF, 0xC3, 0xFF, 0x07, 0xF8, 0x07, 0x00, 0x00, 0x3E, - 0x00, 0x0F, 0xC0, 0x03, 0xF0, 0x00, 0x3C, 0x00, 0xDE, 0x00, 0x7B, 0x80, 0x3F, 0x00, 0x1F, 0xE0, - 0x07, 0x38, 0x00, 0x84, 0x00, 0x3F, 0x00, 0x3F, 0xF0, 0x3F, 0xFE, 0x0F, 0xFF, 0xC7, 0xE1, 0xF9, + 0x80, 0x7F, 0xE0, 0x1F, 0x00, 0x00, 0x06, 0x00, 0x78, 0x03, 0xE0, 0x2F, 0x83, 0xBC, 0x3E, 0x43, + 0xF8, 0x1D, 0xC0, 0x46, 0x07, 0xE0, 0x7F, 0xC3, 0xFF, 0x1F, 0xF8, 0x03, 0xC0, 0x5F, 0x3F, 0xFB, + 0xFF, 0xDF, 0xFE, 0xF1, 0xF7, 0x8F, 0xBF, 0xFD, 0xFF, 0xE7, 0xFF, 0x07, 0x80, 0x00, 0x3E, 0x00, + 0x0F, 0xC0, 0x03, 0xF0, 0x00, 0x3C, 0x00, 0xDE, 0x00, 0x7F, 0x00, 0x3F, 0x00, 0x1F, 0xE0, 0x07, + 0x38, 0x00, 0x84, 0x00, 0x1E, 0x00, 0x0F, 0xC0, 0x03, 0xF0, 0x01, 0xFE, 0x00, 0x7F, 0x80, 0x1F, + 0xE0, 0x0F, 0xFC, 0x03, 0xCF, 0x01, 0xF3, 0xE0, 0x78, 0xF8, 0x1E, 0x1E, 0x0F, 0xFF, 0xC3, 0xFF, + 0xF1, 0xFF, 0xFE, 0x7F, 0xFF, 0x9F, 0x03, 0xEF, 0x80, 0x7F, 0xE0, 0x1F, 0x00, 0x60, 0x03, 0xF0, + 0x0F, 0xC0, 0x07, 0x02, 0x3C, 0x1D, 0xE0, 0xFF, 0x07, 0xF0, 0x1D, 0xC0, 0x23, 0x01, 0xF8, 0x0F, + 0xF8, 0x3F, 0xF0, 0xFF, 0xC0, 0x0F, 0x00, 0xBE, 0x3F, 0xF9, 0xFF, 0xE7, 0xFF, 0x9E, 0x3E, 0x78, + 0xF9, 0xFF, 0xE7, 0xFF, 0x8F, 0xFE, 0x07, 0x80, 0x00, 0x00, 0x01, 0xF6, 0x00, 0x7F, 0xC0, 0x3F, + 0xE0, 0x06, 0x70, 0x00, 0x30, 0x00, 0x1E, 0x00, 0x0F, 0xC0, 0x07, 0xF8, 0x01, 0xCE, 0x00, 0x21, + 0x00, 0x07, 0x80, 0x03, 0xF0, 0x00, 0xFC, 0x00, 0x7F, 0x80, 0x1F, 0xE0, 0x07, 0xF8, 0x03, 0xFF, + 0x00, 0xF3, 0xC0, 0x7C, 0xF8, 0x1E, 0x3E, 0x07, 0x87, 0x83, 0xFF, 0xF0, 0xFF, 0xFC, 0x7F, 0xFF, + 0x9F, 0xFF, 0xE7, 0xC0, 0xFB, 0xE0, 0x1F, 0xF8, 0x07, 0xC0, 0x1E, 0x61, 0xFF, 0x0F, 0xF8, 0x77, + 0x80, 0x20, 0x03, 0x80, 0x3E, 0x03, 0xF8, 0x1D, 0xC0, 0x46, 0x07, 0xE0, 0x7F, 0xC3, 0xFF, 0x1F, + 0xF8, 0x03, 0xC0, 0x5F, 0x3F, 0xFB, 0xFF, 0xDF, 0xFE, 0xF1, 0xF7, 0x8F, 0xBF, 0xFD, 0xFF, 0xE7, + 0xFF, 0x07, 0x80, 0x00, 0xC0, 0x00, 0x78, 0x00, 0x3F, 0x00, 0x1F, 0xE0, 0x07, 0x38, 0x00, 0x84, + 0x00, 0x1E, 0x00, 0x0F, 0xC0, 0x03, 0xF0, 0x01, 0xFE, 0x00, 0x7F, 0x80, 0x1F, 0xE0, 0x0F, 0xFC, + 0x03, 0xCF, 0x01, 0xF3, 0xE0, 0x78, 0xF8, 0x1E, 0x1E, 0x0F, 0xFF, 0xC3, 0xFF, 0xF1, 0xFF, 0xFE, + 0x7F, 0xFF, 0x9F, 0x03, 0xEF, 0x80, 0x7F, 0xE0, 0x1F, 0x00, 0x00, 0x00, 0x38, 0x00, 0x1E, 0x00, + 0x07, 0x80, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x02, 0x00, 0x38, 0x03, 0xE0, 0x3F, 0x81, 0xDC, 0x04, + 0x60, 0x7E, 0x07, 0xFC, 0x3F, 0xF1, 0xFF, 0x80, 0x3C, 0x05, 0xF3, 0xFF, 0xBF, 0xFD, 0xFF, 0xEF, + 0x1F, 0x78, 0xFB, 0xFF, 0xDF, 0xFE, 0x7F, 0xF0, 0x78, 0x03, 0x80, 0x1E, 0x00, 0xF0, 0x07, 0x80, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x07, 0x80, 0x03, 0xE0, 0x01, 0xF0, 0x00, 0x38, 0x00, + 0x77, 0xC0, 0x1F, 0xE0, 0x07, 0xF8, 0x00, 0xFC, 0x00, 0x0C, 0x00, 0x07, 0x80, 0x03, 0xF0, 0x00, + 0xFC, 0x00, 0x7F, 0x80, 0x1F, 0xE0, 0x07, 0xF8, 0x03, 0xFF, 0x00, 0xF3, 0xC0, 0x7C, 0xF8, 0x1E, + 0x3E, 0x07, 0x87, 0x83, 0xFF, 0xF0, 0xFF, 0xFC, 0x7F, 0xFF, 0x9F, 0xFF, 0xE7, 0xC0, 0xFB, 0xE0, + 0x1F, 0xF8, 0x07, 0xC0, 0x00, 0xC0, 0x0F, 0x00, 0x78, 0x07, 0x80, 0x78, 0x01, 0x80, 0x73, 0x83, + 0xFC, 0x1F, 0xE0, 0x7E, 0x00, 0x00, 0x3F, 0x03, 0xFE, 0x1F, 0xF8, 0xFF, 0xC0, 0x1E, 0x02, 0xF9, + 0xFF, 0xDF, 0xFE, 0xFF, 0xF7, 0x8F, 0xBC, 0x7D, 0xFF, 0xEF, 0xFF, 0x3F, 0xF8, 0x3C, 0x00, 0x00, + 0x00, 0x00, 0xC0, 0x00, 0x78, 0x00, 0x1F, 0x00, 0x03, 0xE0, 0x00, 0x38, 0x00, 0x77, 0xC0, 0x1F, + 0xE0, 0x07, 0xF8, 0x00, 0xFC, 0x00, 0x0C, 0x00, 0x07, 0x80, 0x03, 0xF0, 0x00, 0xFC, 0x00, 0x7F, + 0x80, 0x1F, 0xE0, 0x07, 0xF8, 0x03, 0xFF, 0x00, 0xF3, 0xC0, 0x7C, 0xF8, 0x1E, 0x3E, 0x07, 0x87, + 0x83, 0xFF, 0xF0, 0xFF, 0xFC, 0x7F, 0xFF, 0x9F, 0xFF, 0xE7, 0xC0, 0xFB, 0xE0, 0x1F, 0xF8, 0x07, + 0xC0, 0x00, 0x00, 0x60, 0x07, 0x80, 0x3E, 0x00, 0xF8, 0x03, 0xC0, 0x73, 0x83, 0xFC, 0x1F, 0xE0, + 0x7E, 0x00, 0x00, 0x3F, 0x03, 0xFE, 0x1F, 0xF8, 0xFF, 0xC0, 0x1E, 0x02, 0xF9, 0xFF, 0xDF, 0xFE, + 0xFF, 0xF7, 0x8F, 0xBC, 0x7D, 0xFF, 0xEF, 0xFF, 0x3F, 0xF8, 0x3C, 0x00, 0x01, 0xC0, 0x00, 0xFC, + 0x00, 0x3F, 0x00, 0x01, 0xC0, 0x00, 0xF0, 0x00, 0x38, 0x00, 0x0C, 0x00, 0x1C, 0xF0, 0x07, 0xF8, + 0x01, 0xFE, 0x00, 0x3F, 0x00, 0x03, 0x00, 0x01, 0xE0, 0x00, 0xFC, 0x00, 0x3F, 0x00, 0x1F, 0xE0, + 0x07, 0xF8, 0x01, 0xFE, 0x00, 0xFF, 0xC0, 0x3C, 0xF0, 0x1F, 0x3E, 0x07, 0x8F, 0x81, 0xE1, 0xE0, + 0xFF, 0xFC, 0x3F, 0xFF, 0x1F, 0xFF, 0xE7, 0xFF, 0xF9, 0xF0, 0x3E, 0xF8, 0x07, 0xFE, 0x01, 0xF0, + 0x00, 0x00, 0x7C, 0x03, 0xF0, 0x1F, 0x80, 0x3C, 0x03, 0xC0, 0x1C, 0x03, 0x9C, 0x1F, 0xE0, 0xFF, + 0x03, 0xF0, 0x00, 0x01, 0xF8, 0x1F, 0xF0, 0xFF, 0xC7, 0xFE, 0x00, 0xF0, 0x17, 0xCF, 0xFE, 0xFF, + 0xF7, 0xFF, 0xBC, 0x7D, 0xE3, 0xEF, 0xFF, 0x7F, 0xF9, 0xFF, 0xC1, 0xE0, 0x03, 0x98, 0x01, 0xFF, + 0x00, 0xFF, 0xC0, 0x1F, 0xE0, 0x00, 0x00, 0x01, 0xCF, 0x00, 0x7F, 0x80, 0x1F, 0xE0, 0x03, 0xF0, + 0x00, 0x30, 0x00, 0x1E, 0x00, 0x0F, 0xC0, 0x03, 0xF0, 0x01, 0xFE, 0x00, 0x7F, 0x80, 0x1F, 0xE0, + 0x0F, 0xFC, 0x03, 0xCF, 0x01, 0xF3, 0xE0, 0x78, 0xF8, 0x1E, 0x1E, 0x0F, 0xFF, 0xC3, 0xFF, 0xF1, + 0xFF, 0xFE, 0x7F, 0xFF, 0x9F, 0x03, 0xEF, 0x80, 0x7F, 0xE0, 0x1F, 0x0E, 0x60, 0xFF, 0x8F, 0xF8, + 0x37, 0x80, 0x00, 0x0E, 0x70, 0x7F, 0x83, 0xFC, 0x0F, 0xC0, 0x00, 0x07, 0xE0, 0x7F, 0xC3, 0xFF, + 0x1F, 0xF8, 0x03, 0xC0, 0x5F, 0x3F, 0xFB, 0xFF, 0xDF, 0xFE, 0xF1, 0xF7, 0x8F, 0xBF, 0xFD, 0xFF, + 0xE7, 0xFF, 0x07, 0x80, 0x07, 0x3C, 0x01, 0xFE, 0x00, 0x7F, 0x80, 0x0F, 0xC0, 0x00, 0xC0, 0x00, + 0x78, 0x00, 0x3F, 0x00, 0x0F, 0xC0, 0x07, 0xF8, 0x01, 0xFE, 0x00, 0x7F, 0x80, 0x3F, 0xF0, 0x0F, + 0x3C, 0x07, 0xCF, 0x81, 0xE3, 0xE0, 0x78, 0x78, 0x3F, 0xFF, 0x0F, 0xFF, 0xC7, 0xFF, 0xF9, 0xFF, + 0xFE, 0x7C, 0x0F, 0xBE, 0x01, 0xFF, 0x80, 0x7C, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x78, 0x00, 0x1E, + 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE7, 0x07, 0xF8, 0x3F, 0xC0, 0xFC, 0x00, 0x00, + 0x7E, 0x07, 0xFC, 0x3F, 0xF1, 0xFF, 0x80, 0x3C, 0x05, 0xF3, 0xFF, 0xBF, 0xFD, 0xFF, 0xEF, 0x1F, + 0x78, 0xFB, 0xFF, 0xDF, 0xFE, 0x7F, 0xF0, 0x78, 0x03, 0x80, 0x1E, 0x00, 0xF0, 0x07, 0x80, 0x00, + 0x00, 0xFF, 0xF7, 0xFF, 0xBF, 0xFD, 0xFF, 0xEF, 0x00, 0x78, 0x03, 0xC0, 0x1F, 0xFC, 0xFF, 0xE7, + 0xFF, 0x3F, 0xF9, 0xE0, 0x0F, 0x00, 0x78, 0x03, 0xFF, 0xDF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, + 0x1C, 0x01, 0xF0, 0x0F, 0x80, 0x3C, 0x00, 0x80, 0x0F, 0x81, 0xFF, 0x1F, 0xF8, 0xFF, 0xEF, 0x8F, + 0x78, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC0, 0x3F, 0x08, 0xFF, 0xE7, 0xFF, 0x0F, 0xF8, 0x1F, + 0x00, 0xE0, 0x0F, 0x00, 0x7C, 0x03, 0xC0, 0x04, 0x00, 0x1F, 0x00, 0xF8, 0x07, 0xE0, 0x0F, 0x00, + 0xF0, 0x07, 0x03, 0xFF, 0xDF, 0xFE, 0xFF, 0xF7, 0xFF, 0xBC, 0x01, 0xE0, 0x0F, 0x00, 0x7F, 0xF3, + 0xFF, 0x9F, 0xFC, 0xFF, 0xE7, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0xFF, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, + 0x1F, 0x00, 0xFC, 0x07, 0xE0, 0x07, 0x00, 0x78, 0x03, 0x80, 0x3E, 0x07, 0xFC, 0x7F, 0xE3, 0xFF, + 0xBE, 0x3D, 0xE1, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0xFC, 0x23, 0xFF, 0x9F, 0xFC, 0x3F, + 0xE0, 0x7C, 0x00, 0x00, 0x01, 0xEE, 0x1F, 0xF0, 0xFF, 0x82, 0x78, 0x00, 0x03, 0xFF, 0xDF, 0xFE, + 0xFF, 0xF7, 0xFF, 0xBC, 0x01, 0xE0, 0x0F, 0x00, 0x7F, 0xF3, 0xFF, 0x9F, 0xFC, 0xFF, 0xE7, 0x80, + 0x3C, 0x01, 0xE0, 0x0F, 0xFF, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0x1E, 0xC1, 0xFF, 0x1F, 0xF8, 0x67, + 0x80, 0x00, 0x07, 0xC0, 0xFF, 0x8F, 0xFC, 0x7F, 0xF7, 0xC7, 0xBC, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, + 0xFF, 0xE0, 0x1F, 0x84, 0x7F, 0xF3, 0xFF, 0x87, 0xFC, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x60, 0x03, + 0xC0, 0x1F, 0x06, 0xF8, 0x3F, 0xC1, 0xFC, 0x0F, 0xF0, 0x39, 0xC0, 0x42, 0x0F, 0xFF, 0x3F, 0xFC, + 0xFF, 0xF3, 0xFF, 0xCF, 0x00, 0x3C, 0x00, 0xF0, 0x03, 0xFF, 0x8F, 0xFE, 0x3F, 0xF8, 0xFF, 0xE3, + 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xFF, 0xF3, 0xFF, 0xEF, 0xFF, 0xBF, 0xFE, 0x00, 0x18, 0x00, 0x38, + 0x00, 0xF0, 0x13, 0xE0, 0x7F, 0x03, 0xFC, 0x0F, 0xF0, 0x1E, 0xE0, 0x10, 0x80, 0x1F, 0x00, 0xFF, + 0x83, 0xFF, 0x07, 0xFF, 0x1F, 0x1E, 0x3C, 0x3E, 0x7F, 0xFC, 0xFF, 0xF9, 0xFF, 0xF3, 0xE0, 0x07, + 0xE1, 0x07, 0xFF, 0x0F, 0xFE, 0x07, 0xFC, 0x03, 0xE0, 0x00, 0x00, 0x0C, 0x00, 0xF0, 0x07, 0xC0, + 0x7F, 0x07, 0xF0, 0x7F, 0x07, 0xF8, 0x39, 0xC0, 0x84, 0x3F, 0xFD, 0xFF, 0xEF, 0xFF, 0x7F, 0xFB, + 0xC0, 0x1E, 0x00, 0xF0, 0x07, 0xFF, 0x3F, 0xF9, 0xFF, 0xCF, 0xFE, 0x78, 0x03, 0xC0, 0x1E, 0x00, + 0xFF, 0xF7, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0xC0, 0x0F, 0x00, 0x7C, 0x05, 0xF0, 0x77, 0x8F, + 0xD8, 0xFF, 0x07, 0xB8, 0x10, 0x80, 0x7C, 0x0F, 0xF8, 0xFF, 0xC7, 0xFF, 0x7C, 0x7B, 0xC3, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x01, 0xF8, 0x47, 0xFF, 0x3F, 0xF8, 0x7F, 0xC0, 0xF8, 0x00, 0xF0, + 0x07, 0xE0, 0x0F, 0xC0, 0x0F, 0x06, 0x78, 0x3D, 0xC1, 0xF8, 0x0F, 0xF0, 0x39, 0xC0, 0x42, 0x0F, + 0xFF, 0x3F, 0xFC, 0xFF, 0xF3, 0xFF, 0xCF, 0x00, 0x3C, 0x00, 0xF0, 0x03, 0xFF, 0x8F, 0xFE, 0x3F, + 0xF8, 0xFF, 0xE3, 0xC0, 0x0F, 0x00, 0x3C, 0x00, 0xFF, 0xF3, 0xFF, 0xEF, 0xFF, 0xBF, 0xFE, 0x00, + 0xF8, 0x03, 0xF0, 0x0F, 0xC0, 0x8F, 0x07, 0x78, 0x7F, 0xC3, 0xFC, 0x0F, 0x70, 0x10, 0x80, 0x3E, + 0x03, 0xFE, 0x1F, 0xF8, 0x7F, 0xF3, 0xE3, 0xCF, 0x0F, 0xBF, 0xFE, 0xFF, 0xFB, 0xFF, 0xEF, 0x80, + 0x3F, 0x08, 0x7F, 0xF1, 0xFF, 0xC1, 0xFF, 0x01, 0xF0, 0x00, 0x01, 0xFF, 0x0F, 0xF8, 0xFF, 0x83, + 0x38, 0x03, 0x00, 0x3C, 0x03, 0xF0, 0x3F, 0xC1, 0xCE, 0x04, 0x21, 0xFF, 0xEF, 0xFF, 0x7F, 0xFB, + 0xFF, 0xDE, 0x00, 0xF0, 0x07, 0x80, 0x3F, 0xF9, 0xFF, 0xCF, 0xFE, 0x7F, 0xF3, 0xC0, 0x1E, 0x00, + 0xF0, 0x07, 0xFF, 0xBF, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x1E, 0xC1, 0xFF, 0x0F, 0xF8, 0x6F, 0x80, + 0x20, 0x03, 0x80, 0x7E, 0x07, 0xF8, 0x3D, 0xC0, 0x84, 0x03, 0xE0, 0x7F, 0xC7, 0xFE, 0x3F, 0xFB, + 0xE3, 0xDE, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x0F, 0xC2, 0x3F, 0xF9, 0xFF, 0xC3, 0xFE, + 0x07, 0xC0, 0x06, 0x00, 0x78, 0x07, 0xE0, 0x7F, 0x83, 0x9C, 0x08, 0x43, 0xFF, 0xDF, 0xFE, 0xFF, + 0xF7, 0xFF, 0xBC, 0x01, 0xE0, 0x0F, 0x00, 0x7F, 0xF3, 0xFF, 0x9F, 0xFC, 0xFF, 0xE7, 0x80, 0x3C, + 0x01, 0xE0, 0x0F, 0xFF, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x70, 0x07, 0xC0, 0x3E, 0x00, + 0xF0, 0x02, 0x00, 0x02, 0x00, 0x38, 0x07, 0xE0, 0x7F, 0x83, 0xDC, 0x08, 0x40, 0x3E, 0x07, 0xFC, + 0x7F, 0xE3, 0xFF, 0xBE, 0x3D, 0xE1, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0xFC, 0x23, 0xFF, + 0x9F, 0xFC, 0x3F, 0xE0, 0x7C, 0x03, 0x80, 0x3C, 0x01, 0xF0, 0x0F, 0x00, 0x10, 0x00, 0xFB, 0xFF, + 0xCF, 0x79, 0xC7, 0x9E, 0x79, 0xE7, 0x9E, 0x79, 0xE7, 0x9E, 0x79, 0xE7, 0x9E, 0x79, 0xE7, 0x9E, + 0x78, 0xF9, 0xF8, 0xF3, 0xC7, 0x0E, 0x3E, 0x7C, 0xF9, 0xF3, 0xE7, 0xCF, 0x9F, 0x3E, 0x7C, 0xF9, + 0xF3, 0xE0, 0x7B, 0xDE, 0xF7, 0xBD, 0xEF, 0x7B, 0xDE, 0xF7, 0xBD, 0xEF, 0x7B, 0xC0, 0xE7, 0xBD, + 0xE0, 0x03, 0xFF, 0xFF, 0x91, 0xDF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x3B, 0xFF, + 0x79, 0x00, 0x03, 0xF0, 0x03, 0xFF, 0x03, 0xFF, 0xE0, 0xFF, 0xFC, 0x7E, 0x1F, 0x9F, 0x03, 0xEF, + 0x80, 0x7F, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0x7F, 0xE0, 0x1F, 0xF8, 0x0F, 0x9F, + 0x03, 0xE7, 0xF7, 0xF8, 0xFF, 0xFC, 0x1F, 0xFE, 0x03, 0xFF, 0x00, 0x1E, 0x00, 0x07, 0x00, 0x01, + 0xE0, 0x00, 0x78, 0x00, 0x1E, 0x00, 0x02, 0x00, 0x0F, 0x80, 0xFF, 0x87, 0xFF, 0x1F, 0xFC, 0xF8, + 0xFB, 0xE1, 0xEF, 0x07, 0xBC, 0x1E, 0xF0, 0x7B, 0xE3, 0xEF, 0xCF, 0x9F, 0xFC, 0x3F, 0xF0, 0x7F, + 0x80, 0x70, 0x01, 0xC0, 0x0F, 0x80, 0x3E, 0x00, 0x78, 0x00, 0x80, 0x03, 0xE0, 0x00, 0xFC, 0x00, + 0x3F, 0x00, 0x03, 0xC0, 0x01, 0xE0, 0x00, 0x70, 0x00, 0x3F, 0x00, 0x3F, 0xF0, 0x3F, 0xFE, 0x0F, + 0xFF, 0xC7, 0xE1, 0xF9, 0xF0, 0x3E, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0x7F, 0xE0, 0x1F, 0xF8, + 0x07, 0xFE, 0x01, 0xFF, 0x80, 0xF9, 0xF0, 0x3E, 0x7F, 0x7F, 0x8F, 0xFF, 0xC1, 0xFF, 0xE0, 0x3F, + 0xF0, 0x01, 0xE0, 0x00, 0x0F, 0x00, 0x3E, 0x00, 0xFC, 0x00, 0xF0, 0x07, 0x80, 0x1C, 0x00, 0xF8, + 0x0F, 0xF8, 0x7F, 0xF1, 0xFF, 0xCF, 0x8F, 0xBE, 0x1E, 0xF0, 0x7B, 0xC1, 0xEF, 0x07, 0xBE, 0x3E, + 0xFC, 0xF9, 0xFF, 0xC3, 0xFF, 0x07, 0xF8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x78, + 0x00, 0x3E, 0x00, 0xDF, 0x00, 0x7F, 0x00, 0x3F, 0x00, 0x1F, 0xE0, 0x07, 0x38, 0x00, 0x84, 0x00, + 0x3F, 0x00, 0x3F, 0xF0, 0x3F, 0xFE, 0x0F, 0xFF, 0xC7, 0xE1, 0xF9, 0xF0, 0x3E, 0xF8, 0x07, 0xFE, + 0x01, 0xFF, 0x80, 0x7F, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0xF9, 0xF0, 0x3E, 0x7F, + 0x7F, 0x8F, 0xFF, 0xC1, 0xFF, 0xE0, 0x3F, 0xF0, 0x01, 0xE0, 0x00, 0x00, 0x18, 0x00, 0x38, 0x00, + 0xF8, 0x13, 0xE0, 0x77, 0x01, 0xF4, 0x07, 0xF8, 0x0E, 0xE0, 0x08, 0xC0, 0x1F, 0x00, 0xFF, 0x83, + 0xFF, 0x87, 0xFF, 0x1F, 0x1F, 0x3E, 0x1E, 0x78, 0x3C, 0xF0, 0x79, 0xE0, 0xF3, 0xE3, 0xE7, 0xE7, + 0xC7, 0xFF, 0x07, 0xFE, 0x07, 0xF8, 0x03, 0x80, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x07, 0x80, 0x01, + 0xF0, 0x00, 0xFE, 0x00, 0x7B, 0x00, 0x3F, 0x00, 0x1F, 0xE0, 0x07, 0x38, 0x00, 0x84, 0x00, 0x3F, + 0x00, 0x3F, 0xF0, 0x3F, 0xFE, 0x0F, 0xFF, 0xC7, 0xE1, 0xF9, 0xF0, 0x3E, 0xF8, 0x07, 0xFE, 0x01, + 0xFF, 0x80, 0x7F, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0xF9, 0xF0, 0x3E, 0x7F, 0x7F, + 0x8F, 0xFF, 0xC1, 0xFF, 0xE0, 0x3F, 0xF0, 0x01, 0xE0, 0x00, 0x00, 0x80, 0x07, 0x00, 0x3E, 0x00, + 0x7C, 0x02, 0xF0, 0x1D, 0xC0, 0xF8, 0x07, 0xF8, 0x1D, 0xC0, 0x23, 0x00, 0xF8, 0x0F, 0xF8, 0x7F, + 0xF1, 0xFF, 0xCF, 0x8F, 0xBE, 0x1E, 0xF0, 0x7B, 0xC1, 0xEF, 0x07, 0xBE, 0x3E, 0xFC, 0xF9, 0xFF, + 0xC3, 0xFF, 0x07, 0xF8, 0x07, 0x00, 0x00, 0x3E, 0x00, 0x0F, 0xC0, 0x03, 0xF0, 0x00, 0x3C, 0x00, + 0xDE, 0x00, 0x7B, 0x80, 0x3F, 0x00, 0x1F, 0xE0, 0x07, 0x38, 0x00, 0x84, 0x00, 0x3F, 0x00, 0x3F, + 0xF0, 0x3F, 0xFE, 0x0F, 0xFF, 0xC7, 0xE1, 0xF9, 0xF0, 0x3E, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, + 0x7F, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0xF9, 0xF0, 0x3E, 0x7F, 0x7F, 0x8F, 0xFF, + 0xC1, 0xFF, 0xE0, 0x3F, 0xF0, 0x01, 0xE0, 0x00, 0x00, 0x60, 0x03, 0xE0, 0x0F, 0xC0, 0x07, 0x02, + 0x3C, 0x1D, 0xE0, 0xFF, 0x07, 0xF8, 0x1D, 0xC0, 0x23, 0x00, 0xF8, 0x0F, 0xF8, 0x7F, 0xF1, 0xFF, + 0xCF, 0x8F, 0xBE, 0x1E, 0xF0, 0x7B, 0xC1, 0xEF, 0x07, 0xBE, 0x3E, 0xFC, 0xF9, 0xFF, 0xC3, 0xFF, + 0x07, 0xF8, 0x07, 0x00, 0x00, 0x00, 0x01, 0xFF, 0x00, 0xFF, 0xC0, 0x3F, 0xE0, 0x06, 0x70, 0x00, + 0x30, 0x00, 0x1E, 0x00, 0x0F, 0xC0, 0x07, 0xF8, 0x01, 0xCE, 0x00, 0x21, 0x00, 0x0F, 0xC0, 0x0F, + 0xFC, 0x0F, 0xFF, 0x83, 0xFF, 0xF1, 0xF8, 0x7E, 0x7C, 0x0F, 0xBE, 0x01, 0xFF, 0x80, 0x7F, 0xE0, + 0x1F, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0x7F, 0xE0, 0x3E, 0x7C, 0x0F, 0x9F, 0xDF, 0xE3, 0xFF, + 0xF0, 0x7F, 0xF8, 0x0F, 0xFC, 0x00, 0x78, 0x00, 0x1E, 0x60, 0xFF, 0x83, 0xFE, 0x0E, 0xF0, 0x02, + 0x00, 0x1C, 0x00, 0xF8, 0x07, 0xF8, 0x1D, 0xC0, 0x23, 0x00, 0xF8, 0x0F, 0xF8, 0x7F, 0xF1, 0xFF, + 0xCF, 0x8F, 0xBE, 0x1E, 0xF0, 0x7B, 0xC1, 0xEF, 0x07, 0xBE, 0x3E, 0xFC, 0xF9, 0xFF, 0xC3, 0xFF, + 0x07, 0xF8, 0x07, 0x00, 0x00, 0xC0, 0x00, 0x78, 0x00, 0x3F, 0x00, 0x1F, 0xE0, 0x07, 0x38, 0x00, + 0x84, 0x00, 0x3F, 0x00, 0x3F, 0xF0, 0x3F, 0xFE, 0x0F, 0xFF, 0xC7, 0xE1, 0xF9, 0xF0, 0x3E, 0xF8, + 0x07, 0xFE, 0x01, 0xFF, 0x80, 0x7F, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0xF9, 0xF0, + 0x3E, 0x7F, 0x7F, 0x8F, 0xFF, 0xC1, 0xFF, 0xE0, 0x3F, 0xF0, 0x01, 0xE0, 0x00, 0x70, 0x00, 0x1E, + 0x00, 0x07, 0x80, 0x01, 0xE0, 0x00, 0x20, 0x00, 0x02, 0x00, 0x1C, 0x00, 0xF8, 0x07, 0xF8, 0x1D, + 0xC0, 0x23, 0x00, 0xF8, 0x0F, 0xF8, 0x7F, 0xF1, 0xFF, 0xCF, 0x8F, 0xBE, 0x1E, 0xF0, 0x7B, 0xC1, + 0xEF, 0x07, 0xBE, 0x3E, 0xFC, 0xF9, 0xFF, 0xC3, 0xFF, 0x07, 0xF8, 0x07, 0x00, 0x1C, 0x00, 0xF8, + 0x03, 0xE0, 0x07, 0x80, 0x08, 0x00, 0x00, 0x60, 0x00, 0x3C, 0x00, 0x1F, 0x00, 0x0F, 0x80, 0x03, + 0xC3, 0xC0, 0x40, 0xF0, 0x3F, 0x7C, 0x3F, 0xFE, 0x3F, 0xFF, 0x8F, 0xFF, 0xC7, 0xE1, 0xF9, 0xF0, + 0x3E, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0x7F, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, + 0xF9, 0xF0, 0x3E, 0x7F, 0x7F, 0x8F, 0xFF, 0xC1, 0xFF, 0xE0, 0x3F, 0xF0, 0x01, 0xE0, 0x00, 0x01, + 0x00, 0x07, 0x80, 0x1F, 0x00, 0x7C, 0x00, 0xE3, 0xC0, 0x87, 0x83, 0xEF, 0x1F, 0xFE, 0x7F, 0xFC, + 0xFF, 0xF3, 0xE3, 0xE7, 0xC3, 0xCF, 0x07, 0x9E, 0x0F, 0x3C, 0x1E, 0x7C, 0x7C, 0xFC, 0xF8, 0xFF, + 0xE0, 0xFF, 0xC0, 0xFF, 0x00, 0x70, 0x00, 0x01, 0x80, 0x00, 0xF0, 0x00, 0x3E, 0x00, 0x07, 0xC0, + 0x00, 0xF3, 0xC0, 0x18, 0xF0, 0x3F, 0x7C, 0x3F, 0xFE, 0x3F, 0xFF, 0x8F, 0xFF, 0xC7, 0xE1, 0xF9, 0xF0, 0x3E, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0x7F, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0xF9, 0xF0, 0x3E, 0x7F, 0x7F, 0x8F, 0xFF, 0xC1, 0xFF, 0xE0, 0x3F, 0xF0, 0x01, 0xE0, 0x00, - 0x00, 0x60, 0x03, 0xE0, 0x0F, 0xC0, 0x07, 0x02, 0x3C, 0x1D, 0xE0, 0xFF, 0x07, 0xF8, 0x1D, 0xC0, - 0x23, 0x00, 0xF8, 0x0F, 0xF8, 0x7F, 0xF1, 0xFF, 0xCF, 0x8F, 0xBE, 0x1E, 0xF0, 0x7B, 0xC1, 0xEF, - 0x07, 0xBE, 0x3E, 0xFC, 0xF9, 0xFF, 0xC3, 0xFF, 0x07, 0xF8, 0x07, 0x00, 0x00, 0x00, 0x01, 0xFF, - 0x00, 0xFF, 0xC0, 0x3F, 0xE0, 0x06, 0x70, 0x00, 0x30, 0x00, 0x1E, 0x00, 0x0F, 0xC0, 0x07, 0xF8, - 0x01, 0xCE, 0x00, 0x21, 0x00, 0x0F, 0xC0, 0x0F, 0xFC, 0x0F, 0xFF, 0x83, 0xFF, 0xF1, 0xF8, 0x7E, - 0x7C, 0x0F, 0xBE, 0x01, 0xFF, 0x80, 0x7F, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0x7F, - 0xE0, 0x3E, 0x7C, 0x0F, 0x9F, 0xDF, 0xE3, 0xFF, 0xF0, 0x7F, 0xF8, 0x0F, 0xFC, 0x00, 0x78, 0x00, - 0x1E, 0x60, 0xFF, 0x83, 0xFE, 0x0E, 0xF0, 0x02, 0x00, 0x1C, 0x00, 0xF8, 0x07, 0xF8, 0x1D, 0xC0, - 0x23, 0x00, 0xF8, 0x0F, 0xF8, 0x7F, 0xF1, 0xFF, 0xCF, 0x8F, 0xBE, 0x1E, 0xF0, 0x7B, 0xC1, 0xEF, - 0x07, 0xBE, 0x3E, 0xFC, 0xF9, 0xFF, 0xC3, 0xFF, 0x07, 0xF8, 0x07, 0x00, 0x00, 0xC0, 0x00, 0x78, - 0x00, 0x3F, 0x00, 0x1F, 0xE0, 0x07, 0x38, 0x00, 0x84, 0x00, 0x3F, 0x00, 0x3F, 0xF0, 0x3F, 0xFE, - 0x0F, 0xFF, 0xC7, 0xE1, 0xF9, 0xF0, 0x3E, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0x7F, 0xE0, 0x1F, - 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0xF9, 0xF0, 0x3E, 0x7F, 0x7F, 0x8F, 0xFF, 0xC1, 0xFF, 0xE0, - 0x3F, 0xF0, 0x01, 0xE0, 0x00, 0x70, 0x00, 0x1E, 0x00, 0x07, 0x80, 0x01, 0xE0, 0x00, 0x20, 0x00, - 0x02, 0x00, 0x1C, 0x00, 0xF8, 0x07, 0xF8, 0x1D, 0xC0, 0x23, 0x00, 0xF8, 0x0F, 0xF8, 0x7F, 0xF1, - 0xFF, 0xCF, 0x8F, 0xBE, 0x1E, 0xF0, 0x7B, 0xC1, 0xEF, 0x07, 0xBE, 0x3E, 0xFC, 0xF9, 0xFF, 0xC3, - 0xFF, 0x07, 0xF8, 0x07, 0x00, 0x1C, 0x00, 0xF8, 0x03, 0xE0, 0x07, 0x80, 0x08, 0x00, 0x00, 0x60, - 0x00, 0x3C, 0x00, 0x1F, 0x00, 0x0F, 0x80, 0x03, 0xC3, 0xC0, 0x40, 0xF0, 0x3F, 0x7C, 0x3F, 0xFE, - 0x3F, 0xFF, 0x8F, 0xFF, 0xC7, 0xE1, 0xF9, 0xF0, 0x3E, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0x7F, - 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0xF9, 0xF0, 0x3E, 0x7F, 0x7F, 0x8F, 0xFF, 0xC1, - 0xFF, 0xE0, 0x3F, 0xF0, 0x01, 0xE0, 0x00, 0x01, 0x00, 0x07, 0x80, 0x1F, 0x00, 0x7C, 0x00, 0xE3, - 0xC0, 0x87, 0x83, 0xEF, 0x1F, 0xFE, 0x7F, 0xFC, 0xFF, 0xF3, 0xE3, 0xE7, 0xC3, 0xCF, 0x07, 0x9E, - 0x0F, 0x3C, 0x1E, 0x7C, 0x7C, 0xFC, 0xF8, 0xFF, 0xE0, 0xFF, 0xC0, 0xFF, 0x00, 0x70, 0x00, 0x01, - 0x80, 0x00, 0xF0, 0x00, 0x3E, 0x00, 0x07, 0xC0, 0x00, 0xF3, 0xC0, 0x18, 0xF0, 0x3F, 0x7C, 0x3F, - 0xFE, 0x3F, 0xFF, 0x8F, 0xFF, 0xC7, 0xE1, 0xF9, 0xF0, 0x3E, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, - 0x7F, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0xF9, 0xF0, 0x3E, 0x7F, 0x7F, 0x8F, 0xFF, - 0xC1, 0xFF, 0xE0, 0x3F, 0xF0, 0x01, 0xE0, 0x00, 0x06, 0x00, 0x1E, 0x00, 0x7C, 0x00, 0x3C, 0x00, - 0x3B, 0xC0, 0x27, 0x83, 0xEF, 0x1F, 0xFE, 0x7F, 0xFC, 0xFF, 0xF3, 0xE3, 0xE7, 0xC3, 0xCF, 0x07, - 0x9E, 0x0F, 0x3C, 0x1E, 0x7C, 0x7C, 0xFC, 0xF8, 0xFF, 0xE0, 0xFF, 0xC0, 0xFF, 0x00, 0x70, 0x00, - 0x03, 0xE0, 0x00, 0xFC, 0x00, 0x3F, 0x00, 0x03, 0xC0, 0x01, 0xE3, 0xC0, 0x70, 0xF0, 0x3F, 0x7C, - 0x3F, 0xFE, 0x3F, 0xFF, 0x8F, 0xFF, 0xC7, 0xE1, 0xF9, 0xF0, 0x3E, 0xF8, 0x07, 0xFE, 0x01, 0xFF, - 0x80, 0x7F, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0xF9, 0xF0, 0x3E, 0x7F, 0x7F, 0x8F, - 0xFF, 0xC1, 0xFF, 0xE0, 0x3F, 0xF0, 0x01, 0xE0, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x3F, 0x00, 0x1E, - 0x00, 0x7B, 0xC0, 0xE7, 0x83, 0xEF, 0x1F, 0xFE, 0x7F, 0xFC, 0xFF, 0xF3, 0xE3, 0xE7, 0xC3, 0xCF, - 0x07, 0x9E, 0x0F, 0x3C, 0x1E, 0x7C, 0x7C, 0xFC, 0xF8, 0xFF, 0xE0, 0xFF, 0xC0, 0xFF, 0x00, 0x70, - 0x00, 0x03, 0x98, 0x01, 0xFF, 0x00, 0xFF, 0x80, 0x1B, 0xCF, 0x00, 0x03, 0xC0, 0xFD, 0xF0, 0xFF, - 0xF8, 0xFF, 0xFE, 0x3F, 0xFF, 0x1F, 0x87, 0xE7, 0xC0, 0xFB, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, - 0xFF, 0x80, 0x7F, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x03, 0xE7, 0xC0, 0xF9, 0xFD, 0xFE, 0x3F, 0xFF, - 0x07, 0xFF, 0x80, 0xFF, 0xC0, 0x07, 0x80, 0x1E, 0x60, 0x7F, 0xC0, 0xFF, 0x81, 0xDF, 0xE0, 0x03, - 0xC1, 0xF7, 0x8F, 0xFF, 0x3F, 0xFE, 0x7F, 0xF9, 0xF1, 0xF3, 0xE1, 0xE7, 0x83, 0xCF, 0x07, 0x9E, - 0x0F, 0x3E, 0x3E, 0x7E, 0x7C, 0x7F, 0xF0, 0x7F, 0xE0, 0x7F, 0x80, 0x38, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xF0, 0x00, 0x3C, 0x0F, 0xDF, 0x0F, 0xFF, 0x8F, 0xFF, 0xE3, 0xFF, 0xF1, 0xF8, 0x7E, 0x7C, - 0x0F, 0xBE, 0x01, 0xFF, 0x80, 0x7F, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0x7F, 0xE0, - 0x3E, 0x7C, 0x0F, 0x9F, 0xDF, 0xE3, 0xFF, 0xF0, 0x7F, 0xF8, 0x0F, 0xFC, 0x00, 0x78, 0x00, 0x1C, - 0x00, 0x07, 0x80, 0x01, 0xE0, 0x00, 0x78, 0x00, 0x08, 0x00, 0x00, 0x3C, 0x00, 0x78, 0x3E, 0xF1, - 0xFF, 0xE7, 0xFF, 0xCF, 0xFF, 0x3E, 0x3E, 0x7C, 0x3C, 0xF0, 0x79, 0xE0, 0xF3, 0xC1, 0xE7, 0xC7, - 0xCF, 0xCF, 0x8F, 0xFE, 0x0F, 0xFC, 0x0F, 0xF0, 0x07, 0x00, 0x0E, 0x00, 0x3E, 0x00, 0x7C, 0x00, - 0x78, 0x00, 0x40, 0x00, 0x78, 0x1F, 0xF0, 0x3F, 0xE0, 0x7F, 0xC0, 0xFF, 0x81, 0xFF, 0x03, 0xFE, - 0x07, 0xFC, 0x0F, 0xF8, 0x1F, 0xF0, 0x3F, 0xE0, 0x7F, 0xC0, 0xFF, 0x81, 0xEF, 0x87, 0xDF, 0xBF, - 0xBF, 0xFE, 0x3F, 0xFC, 0x3F, 0xE0, 0x0F, 0x00, 0x1C, 0x00, 0x3C, 0x00, 0x78, 0x00, 0xF0, 0x00, - 0x80, 0x70, 0x7F, 0x8F, 0xF8, 0xFF, 0x8F, 0xF8, 0xFF, 0x8F, 0xF8, 0xFF, 0x8F, 0xF8, 0xFF, 0x8F, - 0xFC, 0xF7, 0xFF, 0x7F, 0xF3, 0xFF, 0x07, 0x80, 0x70, 0x0F, 0x80, 0xF8, 0x0F, 0x00, 0x20, 0x07, - 0xC0, 0x0F, 0xC0, 0x1F, 0x80, 0x0F, 0x00, 0x3C, 0x00, 0x70, 0x1E, 0x07, 0xFC, 0x0F, 0xF8, 0x1F, - 0xF0, 0x3F, 0xE0, 0x7F, 0xC0, 0xFF, 0x81, 0xFF, 0x03, 0xFE, 0x07, 0xFC, 0x0F, 0xF8, 0x1F, 0xF0, - 0x3F, 0xE0, 0x7B, 0xE1, 0xF7, 0xEF, 0xEF, 0xFF, 0x8F, 0xFF, 0x0F, 0xF8, 0x03, 0xC0, 0x1F, 0x01, - 0xF8, 0x0F, 0xC0, 0x38, 0x07, 0x80, 0x70, 0x70, 0x7F, 0x8F, 0xF8, 0xFF, 0x8F, 0xF8, 0xFF, 0x8F, - 0xF8, 0xFF, 0x8F, 0xF8, 0xFF, 0x8F, 0xFC, 0xF7, 0xFF, 0x7F, 0xF3, 0xFF, 0x07, 0x80, 0x00, 0xC0, - 0x00, 0x78, 0x00, 0x3E, 0x00, 0x1F, 0x00, 0x07, 0x83, 0xC0, 0xC0, 0xF7, 0x81, 0xFF, 0xE0, 0x7F, - 0xF8, 0x1F, 0xBE, 0x07, 0x8F, 0x81, 0xE3, 0xE0, 0x78, 0xF8, 0x1E, 0x3E, 0x07, 0x8F, 0x81, 0xE3, - 0xE0, 0x78, 0xF8, 0x1E, 0x3E, 0x07, 0x8F, 0x81, 0xE1, 0xF0, 0xF8, 0x7E, 0xFE, 0x1F, 0xFF, 0x03, - 0xFF, 0xC0, 0x7F, 0xC0, 0x03, 0xC0, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x78, 0x00, 0xE1, - 0xE0, 0x83, 0xDC, 0x1F, 0xFC, 0x7F, 0xF8, 0xFD, 0xF1, 0xE3, 0xE3, 0xC7, 0xC7, 0x8F, 0x8F, 0x1F, - 0x1E, 0x3E, 0x3C, 0x7C, 0x78, 0xFC, 0xF0, 0xFF, 0xE1, 0xFF, 0xC1, 0xFF, 0x80, 0x78, 0x00, 0x06, - 0x00, 0x03, 0xC0, 0x00, 0xF8, 0x00, 0x1F, 0x00, 0x01, 0xC3, 0xC0, 0x20, 0xF7, 0x81, 0xFF, 0xE0, - 0x7F, 0xF8, 0x1F, 0xBE, 0x07, 0x8F, 0x81, 0xE3, 0xE0, 0x78, 0xF8, 0x1E, 0x3E, 0x07, 0x8F, 0x81, - 0xE3, 0xE0, 0x78, 0xF8, 0x1E, 0x3E, 0x07, 0x8F, 0x81, 0xE1, 0xF0, 0xF8, 0x7E, 0xFE, 0x1F, 0xFF, - 0x03, 0xFF, 0xC0, 0x7F, 0xC0, 0x03, 0xC0, 0x00, 0x0C, 0x00, 0x3C, 0x00, 0x7C, 0x00, 0x78, 0x00, - 0x79, 0xE0, 0x43, 0xDC, 0x1F, 0xFC, 0x7F, 0xF8, 0xFD, 0xF1, 0xE3, 0xE3, 0xC7, 0xC7, 0x8F, 0x8F, - 0x1F, 0x1E, 0x3E, 0x3C, 0x7C, 0x78, 0xFC, 0xF0, 0xFF, 0xE1, 0xFF, 0xC1, 0xFF, 0x80, 0x78, 0x00, - 0x07, 0xC0, 0x01, 0xF8, 0x00, 0x7E, 0x00, 0x07, 0x80, 0x03, 0xC3, 0xC0, 0xE0, 0xF7, 0x81, 0xFF, - 0xE0, 0x7F, 0xF8, 0x1F, 0xBE, 0x07, 0x8F, 0x81, 0xE3, 0xE0, 0x78, 0xF8, 0x1E, 0x3E, 0x07, 0x8F, - 0x81, 0xE3, 0xE0, 0x78, 0xF8, 0x1E, 0x3E, 0x07, 0x8F, 0x81, 0xE1, 0xF0, 0xF8, 0x7E, 0xFE, 0x1F, - 0xFF, 0x03, 0xFF, 0xC0, 0x7F, 0xC0, 0x03, 0xC0, 0x00, 0x1F, 0x00, 0x3F, 0x00, 0x3F, 0x00, 0x1C, - 0x00, 0x79, 0xE0, 0xE3, 0xDC, 0x1F, 0xFC, 0x7F, 0xF8, 0xFD, 0xF1, 0xE3, 0xE3, 0xC7, 0xC7, 0x8F, - 0x8F, 0x1F, 0x1E, 0x3E, 0x3C, 0x7C, 0x78, 0xFC, 0xF0, 0xFF, 0xE1, 0xFF, 0xC1, 0xFF, 0x80, 0x78, - 0x00, 0x07, 0x30, 0x03, 0xFE, 0x01, 0xFF, 0x00, 0x37, 0x8F, 0x00, 0x03, 0xDE, 0x07, 0xFF, 0x81, - 0xFF, 0xE0, 0x7E, 0xF8, 0x1E, 0x3E, 0x07, 0x8F, 0x81, 0xE3, 0xE0, 0x78, 0xF8, 0x1E, 0x3E, 0x07, - 0x8F, 0x81, 0xE3, 0xE0, 0x78, 0xF8, 0x1E, 0x3E, 0x07, 0x87, 0xC3, 0xE1, 0xFB, 0xF8, 0x7F, 0xFC, - 0x0F, 0xFF, 0x01, 0xFF, 0x00, 0x0F, 0x00, 0x1E, 0xC0, 0x7F, 0xC0, 0xFF, 0x81, 0x9E, 0xF0, 0x01, - 0xEE, 0x0F, 0xFE, 0x3F, 0xFC, 0x7E, 0xF8, 0xF1, 0xF1, 0xE3, 0xE3, 0xC7, 0xC7, 0x8F, 0x8F, 0x1F, - 0x1E, 0x3E, 0x3C, 0x7E, 0x78, 0x7F, 0xF0, 0xFF, 0xE0, 0xFF, 0xC0, 0x3C, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xF0, 0x00, 0x3D, 0xE0, 0x7F, 0xF8, 0x1F, 0xFE, 0x07, 0xEF, 0x81, 0xE3, 0xE0, 0x78, 0xF8, - 0x1E, 0x3E, 0x07, 0x8F, 0x81, 0xE3, 0xE0, 0x78, 0xF8, 0x1E, 0x3E, 0x07, 0x8F, 0x81, 0xE3, 0xE0, - 0x78, 0x7C, 0x3E, 0x1F, 0xBF, 0x87, 0xFF, 0xC0, 0xFF, 0xF0, 0x1F, 0xF0, 0x00, 0xF0, 0x00, 0x38, - 0x00, 0x0F, 0x00, 0x03, 0xC0, 0x00, 0xF0, 0x00, 0x10, 0x00, 0x00, 0x1E, 0x00, 0x3D, 0xC1, 0xFF, - 0xC7, 0xFF, 0x8F, 0xDF, 0x1E, 0x3E, 0x3C, 0x7C, 0x78, 0xF8, 0xF1, 0xF1, 0xE3, 0xE3, 0xC7, 0xC7, - 0x8F, 0xCF, 0x0F, 0xFE, 0x1F, 0xFC, 0x1F, 0xF8, 0x07, 0x80, 0x0E, 0x00, 0x3E, 0x00, 0x7C, 0x00, - 0xF0, 0x00, 0x40, 0x00, 0x03, 0x00, 0x03, 0xC0, 0x01, 0xF0, 0x00, 0x7C, 0x00, 0x1E, 0x00, 0x06, - 0x00, 0x00, 0x01, 0xF0, 0x3F, 0x7C, 0x1F, 0x3E, 0x1F, 0x0F, 0x8F, 0x87, 0xCF, 0x81, 0xF7, 0xC0, - 0xFF, 0xC0, 0x3F, 0xE0, 0x0F, 0xE0, 0x07, 0xE0, 0x01, 0xF0, 0x00, 0xF8, 0x00, 0x7C, 0x00, 0x3E, - 0x00, 0x1F, 0x00, 0x0F, 0x80, 0x07, 0xC0, 0x0C, 0x00, 0x78, 0x01, 0xF0, 0x03, 0xE0, 0x07, 0x80, - 0x0C, 0x00, 0x00, 0x3E, 0x1F, 0xF8, 0x79, 0xE1, 0xE7, 0xCF, 0x9F, 0x3C, 0x3C, 0xF0, 0xFF, 0xC3, - 0xFE, 0x07, 0xF8, 0x1F, 0xE0, 0x3F, 0x00, 0xFC, 0x01, 0xE0, 0x0F, 0x81, 0x7C, 0x0F, 0xF0, 0x3F, - 0x80, 0xFC, 0x00, 0xF8, 0x0F, 0x7C, 0x0F, 0x9F, 0x07, 0xCF, 0x87, 0xC3, 0xE3, 0xE1, 0xF3, 0xE0, - 0x7D, 0xF0, 0x1F, 0xF0, 0x0F, 0xF0, 0x03, 0xF8, 0x01, 0xF8, 0x00, 0x7C, 0x00, 0x3E, 0x00, 0x1F, - 0x00, 0x0F, 0x80, 0x07, 0xC0, 0x03, 0xE0, 0x01, 0xF0, 0x00, 0x00, 0x00, 0x38, 0x00, 0x3C, 0x00, - 0x1F, 0x00, 0x0F, 0x00, 0x01, 0x00, 0x70, 0x39, 0xF0, 0xFB, 0xE1, 0xE3, 0xC7, 0xC7, 0xCF, 0x8F, - 0x9E, 0x0F, 0x3C, 0x1F, 0xF8, 0x1F, 0xE0, 0x3F, 0xC0, 0x7F, 0x00, 0x7E, 0x00, 0xFC, 0x00, 0xF0, - 0x03, 0xE6, 0x7F, 0x9E, 0xFF, 0x3D, 0xFC, 0x7B, 0xE0, 0x60, 0x07, 0xC0, 0x03, 0xF0, 0x00, 0xF8, - 0x00, 0x1C, 0x00, 0x1C, 0x00, 0x0E, 0x03, 0xE0, 0x3D, 0xF0, 0x3E, 0x7C, 0x1F, 0x3E, 0x1F, 0x0F, - 0x8F, 0x87, 0xCF, 0x81, 0xF7, 0xC0, 0x7F, 0xC0, 0x3F, 0xC0, 0x0F, 0xE0, 0x07, 0xE0, 0x01, 0xF0, - 0x00, 0xF8, 0x00, 0x7C, 0x00, 0x3E, 0x00, 0x1F, 0x00, 0x0F, 0x80, 0x07, 0xC0, 0x0F, 0x80, 0x3F, - 0x00, 0xFC, 0x00, 0xF0, 0x07, 0x80, 0x1C, 0x07, 0x03, 0xBE, 0x1F, 0xF8, 0x79, 0xE3, 0xE7, 0xCF, - 0x9F, 0x3C, 0x3C, 0xF0, 0xFF, 0xC1, 0xFE, 0x07, 0xF8, 0x1F, 0xC0, 0x3F, 0x00, 0xFC, 0x01, 0xE0, - 0x0F, 0x83, 0xFC, 0x0F, 0xF0, 0x3F, 0x80, 0xF8, 0x00, 0x00, 0x00, 0x03, 0xDC, 0x03, 0xFE, 0x03, - 0xFE, 0x00, 0xCE, 0x00, 0x00, 0x03, 0xE0, 0x3D, 0xF0, 0x3E, 0x7C, 0x1F, 0x3E, 0x1F, 0x0F, 0x8F, - 0x87, 0xCF, 0x81, 0xF7, 0xC0, 0x7F, 0xC0, 0x3F, 0xC0, 0x0F, 0xE0, 0x07, 0xE0, 0x01, 0xF0, 0x00, - 0xF8, 0x00, 0x7C, 0x00, 0x3E, 0x00, 0x1F, 0x00, 0x0F, 0x80, 0x07, 0xC0, 0x0E, 0x60, 0x7F, 0xC3, - 0xFE, 0x06, 0xF0, 0x00, 0x01, 0xC0, 0xEF, 0x87, 0xFE, 0x1E, 0x78, 0xF9, 0xF3, 0xE7, 0xCF, 0x0F, - 0x3C, 0x3F, 0xF0, 0x7F, 0x81, 0xFE, 0x07, 0xF0, 0x0F, 0xC0, 0x3F, 0x00, 0x78, 0x03, 0xE0, 0xFF, - 0x03, 0xFC, 0x0F, 0xE0, 0x3E, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x03, 0x37, 0x8C, 0x7B, 0xF3, - 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x00, 0x00, 0x30, 0x37, 0xEC, 0xDB, 0x30, - 0x60, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x00, 0x00, 0x61, 0x83, 0xF6, 0x66, - 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x7B, 0xFD, 0xEF, 0x7B, 0xC0, 0x79, 0xE7, 0x9E, - 0x7B, 0xCF, 0x00, 0x79, 0xE7, 0x9E, 0x7B, 0xCF, 0x00, 0x79, 0xDE, 0xFF, 0x3F, 0xDE, 0xF7, 0xBD, - 0xEF, 0x78, 0x7B, 0xEF, 0x7D, 0xEF, 0xBD, 0xE7, 0xBD, 0xE7, 0xBC, 0xE0, 0x7B, 0xEF, 0x7D, 0xEF, - 0xBD, 0xE7, 0xBD, 0xE7, 0xBC, 0xE0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x0F, 0xFF, 0xFF, - 0xFF, 0xFF, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, - 0xF0, 0x0F, 0x00, 0x70, 0x07, 0x00, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x0F, 0xFF, 0xFF, - 0xFF, 0xFF, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0xF0, 0x0F, 0x00, - 0xF0, 0x0F, 0x00, 0x70, 0x07, 0x00, 0x3E, 0x3F, 0x9F, 0xCF, 0xE7, 0xF3, 0xF8, 0xF8, 0x78, 0x38, - 0x3D, 0xF0, 0xF8, 0x7F, 0xE1, 0xF0, 0xFF, 0xC3, 0xE1, 0xF7, 0x83, 0x83, 0xC0, 0x3F, 0x03, 0xC0, - 0x00, 0x3F, 0xC3, 0xE0, 0x00, 0x1E, 0xF1, 0xE0, 0x00, 0x0E, 0x79, 0xE0, 0x00, 0x07, 0x1C, 0xF0, - 0x00, 0x03, 0x9E, 0xF0, 0x00, 0x01, 0xEF, 0xF8, 0x00, 0x00, 0xFF, 0x78, 0x00, 0x00, 0x3F, 0x7D, - 0xF8, 0x7E, 0x00, 0x3D, 0xFE, 0x7F, 0x80, 0x3D, 0xEF, 0x7B, 0xC0, 0x1E, 0xF3, 0xBC, 0xE0, 0x1E, - 0x71, 0xDC, 0x70, 0x1F, 0x3C, 0xEF, 0x38, 0x0F, 0x1E, 0xF7, 0xBC, 0x0F, 0x87, 0xF9, 0xFE, 0x07, - 0x81, 0xF8, 0x7E, 0x00, 0x00, 0x0E, 0x1F, 0x3E, 0x7C, 0x7C, 0xF8, 0x7C, 0x7C, 0x3E, 0x1F, 0x0E, - 0x08, 0x10, 0x78, 0x78, 0x7C, 0x3E, 0x3E, 0x1F, 0x3E, 0x3E, 0x7C, 0x78, 0x78, 0x10, 0x00, 0x78, - 0x01, 0xE0, 0x0F, 0x80, 0x3C, 0x01, 0xF0, 0x07, 0x80, 0x3C, 0x00, 0xF0, 0x07, 0x80, 0x1E, 0x00, - 0xF0, 0x03, 0xC0, 0x1E, 0x00, 0x78, 0x03, 0xC0, 0x0F, 0x00, 0x78, 0x01, 0xE0, 0x00, 0x3E, 0x3F, - 0xBD, 0xFE, 0x7E, 0x3F, 0x1F, 0xCF, 0xEF, 0x7F, 0x1F, 0x00, 0x0F, 0x0F, 0x87, 0xC7, 0xE7, 0x73, + 0x06, 0x00, 0x1E, 0x00, 0x7C, 0x00, 0x3C, 0x00, 0x3B, 0xC0, 0x27, 0x83, 0xEF, 0x1F, 0xFE, 0x7F, + 0xFC, 0xFF, 0xF3, 0xE3, 0xE7, 0xC3, 0xCF, 0x07, 0x9E, 0x0F, 0x3C, 0x1E, 0x7C, 0x7C, 0xFC, 0xF8, + 0xFF, 0xE0, 0xFF, 0xC0, 0xFF, 0x00, 0x70, 0x00, 0x03, 0xE0, 0x00, 0xFC, 0x00, 0x3F, 0x00, 0x03, + 0xC0, 0x01, 0xE3, 0xC0, 0x70, 0xF0, 0x3F, 0x7C, 0x3F, 0xFE, 0x3F, 0xFF, 0x8F, 0xFF, 0xC7, 0xE1, + 0xF9, 0xF0, 0x3E, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0x7F, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, + 0xFF, 0x80, 0xF9, 0xF0, 0x3E, 0x7F, 0x7F, 0x8F, 0xFF, 0xC1, 0xFF, 0xE0, 0x3F, 0xF0, 0x01, 0xE0, + 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x3F, 0x00, 0x1E, 0x00, 0x7B, 0xC0, 0xE7, 0x83, 0xEF, 0x1F, 0xFE, + 0x7F, 0xFC, 0xFF, 0xF3, 0xE3, 0xE7, 0xC3, 0xCF, 0x07, 0x9E, 0x0F, 0x3C, 0x1E, 0x7C, 0x7C, 0xFC, + 0xF8, 0xFF, 0xE0, 0xFF, 0xC0, 0xFF, 0x00, 0x70, 0x00, 0x03, 0x98, 0x01, 0xFF, 0x00, 0xFF, 0x80, + 0x1B, 0xCF, 0x00, 0x03, 0xC0, 0xFD, 0xF0, 0xFF, 0xF8, 0xFF, 0xFE, 0x3F, 0xFF, 0x1F, 0x87, 0xE7, + 0xC0, 0xFB, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0x7F, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, + 0x03, 0xE7, 0xC0, 0xF9, 0xFD, 0xFE, 0x3F, 0xFF, 0x07, 0xFF, 0x80, 0xFF, 0xC0, 0x07, 0x80, 0x1E, + 0x60, 0x7F, 0xC0, 0xFF, 0x81, 0xDF, 0xE0, 0x03, 0xC1, 0xF7, 0x8F, 0xFF, 0x3F, 0xFE, 0x7F, 0xF9, + 0xF1, 0xF3, 0xE1, 0xE7, 0x83, 0xCF, 0x07, 0x9E, 0x0F, 0x3E, 0x3E, 0x7E, 0x7C, 0x7F, 0xF0, 0x7F, + 0xE0, 0x7F, 0x80, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x3C, 0x0F, 0xDF, 0x0F, 0xFF, + 0x8F, 0xFF, 0xE3, 0xFF, 0xF1, 0xF8, 0x7E, 0x7C, 0x0F, 0xBE, 0x01, 0xFF, 0x80, 0x7F, 0xE0, 0x1F, + 0xF8, 0x07, 0xFE, 0x01, 0xFF, 0x80, 0x7F, 0xE0, 0x3E, 0x7C, 0x0F, 0x9F, 0xDF, 0xE3, 0xFF, 0xF0, + 0x7F, 0xF8, 0x0F, 0xFC, 0x00, 0x78, 0x00, 0x1C, 0x00, 0x07, 0x80, 0x01, 0xE0, 0x00, 0x78, 0x00, + 0x08, 0x00, 0x00, 0x3C, 0x00, 0x78, 0x3E, 0xF1, 0xFF, 0xE7, 0xFF, 0xCF, 0xFF, 0x3E, 0x3E, 0x7C, + 0x3C, 0xF0, 0x79, 0xE0, 0xF3, 0xC1, 0xE7, 0xC7, 0xCF, 0xCF, 0x8F, 0xFE, 0x0F, 0xFC, 0x0F, 0xF0, + 0x07, 0x00, 0x0E, 0x00, 0x3E, 0x00, 0x7C, 0x00, 0x78, 0x00, 0x40, 0x00, 0x78, 0x1F, 0xF0, 0x3F, + 0xE0, 0x7F, 0xC0, 0xFF, 0x81, 0xFF, 0x03, 0xFE, 0x07, 0xFC, 0x0F, 0xF8, 0x1F, 0xF0, 0x3F, 0xE0, + 0x7F, 0xC0, 0xFF, 0x81, 0xEF, 0x87, 0xDF, 0xBF, 0xBF, 0xFE, 0x3F, 0xFC, 0x3F, 0xE0, 0x0F, 0x00, + 0x1C, 0x00, 0x3C, 0x00, 0x78, 0x00, 0xF0, 0x00, 0x80, 0x70, 0x7F, 0x8F, 0xF8, 0xFF, 0x8F, 0xF8, + 0xFF, 0x8F, 0xF8, 0xFF, 0x8F, 0xF8, 0xFF, 0x8F, 0xFC, 0xF7, 0xFF, 0x7F, 0xF3, 0xFF, 0x07, 0x80, + 0x70, 0x0F, 0x80, 0xF8, 0x0F, 0x00, 0x20, 0x07, 0xC0, 0x0F, 0xC0, 0x1F, 0x80, 0x0F, 0x00, 0x3C, + 0x00, 0x70, 0x1E, 0x07, 0xFC, 0x0F, 0xF8, 0x1F, 0xF0, 0x3F, 0xE0, 0x7F, 0xC0, 0xFF, 0x81, 0xFF, + 0x03, 0xFE, 0x07, 0xFC, 0x0F, 0xF8, 0x1F, 0xF0, 0x3F, 0xE0, 0x7B, 0xE1, 0xF7, 0xEF, 0xEF, 0xFF, + 0x8F, 0xFF, 0x0F, 0xF8, 0x03, 0xC0, 0x1F, 0x01, 0xF8, 0x0F, 0xC0, 0x38, 0x07, 0x80, 0x70, 0x70, + 0x7F, 0x8F, 0xF8, 0xFF, 0x8F, 0xF8, 0xFF, 0x8F, 0xF8, 0xFF, 0x8F, 0xF8, 0xFF, 0x8F, 0xFC, 0xF7, + 0xFF, 0x7F, 0xF3, 0xFF, 0x07, 0x80, 0x00, 0xC0, 0x00, 0x78, 0x00, 0x3E, 0x00, 0x1F, 0x00, 0x07, + 0x83, 0xC0, 0xC0, 0xF7, 0x81, 0xFF, 0xE0, 0x7F, 0xF8, 0x1F, 0xBE, 0x07, 0x8F, 0x81, 0xE3, 0xE0, + 0x78, 0xF8, 0x1E, 0x3E, 0x07, 0x8F, 0x81, 0xE3, 0xE0, 0x78, 0xF8, 0x1E, 0x3E, 0x07, 0x8F, 0x81, + 0xE1, 0xF0, 0xF8, 0x7E, 0xFE, 0x1F, 0xFF, 0x03, 0xFF, 0xC0, 0x7F, 0xC0, 0x03, 0xC0, 0x00, 0x03, + 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x78, 0x00, 0xE1, 0xE0, 0x83, 0xDC, 0x1F, 0xFC, 0x7F, 0xF8, 0xFD, + 0xF1, 0xE3, 0xE3, 0xC7, 0xC7, 0x8F, 0x8F, 0x1F, 0x1E, 0x3E, 0x3C, 0x7C, 0x78, 0xFC, 0xF0, 0xFF, + 0xE1, 0xFF, 0xC1, 0xFF, 0x80, 0x78, 0x00, 0x06, 0x00, 0x03, 0xC0, 0x00, 0xF8, 0x00, 0x1F, 0x00, + 0x01, 0xC3, 0xC0, 0x20, 0xF7, 0x81, 0xFF, 0xE0, 0x7F, 0xF8, 0x1F, 0xBE, 0x07, 0x8F, 0x81, 0xE3, + 0xE0, 0x78, 0xF8, 0x1E, 0x3E, 0x07, 0x8F, 0x81, 0xE3, 0xE0, 0x78, 0xF8, 0x1E, 0x3E, 0x07, 0x8F, + 0x81, 0xE1, 0xF0, 0xF8, 0x7E, 0xFE, 0x1F, 0xFF, 0x03, 0xFF, 0xC0, 0x7F, 0xC0, 0x03, 0xC0, 0x00, + 0x0C, 0x00, 0x3C, 0x00, 0x7C, 0x00, 0x78, 0x00, 0x79, 0xE0, 0x43, 0xDC, 0x1F, 0xFC, 0x7F, 0xF8, + 0xFD, 0xF1, 0xE3, 0xE3, 0xC7, 0xC7, 0x8F, 0x8F, 0x1F, 0x1E, 0x3E, 0x3C, 0x7C, 0x78, 0xFC, 0xF0, + 0xFF, 0xE1, 0xFF, 0xC1, 0xFF, 0x80, 0x78, 0x00, 0x07, 0xC0, 0x01, 0xF8, 0x00, 0x7E, 0x00, 0x07, + 0x80, 0x03, 0xC3, 0xC0, 0xE0, 0xF7, 0x81, 0xFF, 0xE0, 0x7F, 0xF8, 0x1F, 0xBE, 0x07, 0x8F, 0x81, + 0xE3, 0xE0, 0x78, 0xF8, 0x1E, 0x3E, 0x07, 0x8F, 0x81, 0xE3, 0xE0, 0x78, 0xF8, 0x1E, 0x3E, 0x07, + 0x8F, 0x81, 0xE1, 0xF0, 0xF8, 0x7E, 0xFE, 0x1F, 0xFF, 0x03, 0xFF, 0xC0, 0x7F, 0xC0, 0x03, 0xC0, + 0x00, 0x1F, 0x00, 0x3F, 0x00, 0x3F, 0x00, 0x1C, 0x00, 0x79, 0xE0, 0xE3, 0xDC, 0x1F, 0xFC, 0x7F, + 0xF8, 0xFD, 0xF1, 0xE3, 0xE3, 0xC7, 0xC7, 0x8F, 0x8F, 0x1F, 0x1E, 0x3E, 0x3C, 0x7C, 0x78, 0xFC, + 0xF0, 0xFF, 0xE1, 0xFF, 0xC1, 0xFF, 0x80, 0x78, 0x00, 0x07, 0x30, 0x03, 0xFE, 0x01, 0xFF, 0x00, + 0x37, 0x8F, 0x00, 0x03, 0xDE, 0x07, 0xFF, 0x81, 0xFF, 0xE0, 0x7E, 0xF8, 0x1E, 0x3E, 0x07, 0x8F, + 0x81, 0xE3, 0xE0, 0x78, 0xF8, 0x1E, 0x3E, 0x07, 0x8F, 0x81, 0xE3, 0xE0, 0x78, 0xF8, 0x1E, 0x3E, + 0x07, 0x87, 0xC3, 0xE1, 0xFB, 0xF8, 0x7F, 0xFC, 0x0F, 0xFF, 0x01, 0xFF, 0x00, 0x0F, 0x00, 0x1E, + 0xC0, 0x7F, 0xC0, 0xFF, 0x81, 0x9E, 0xF0, 0x01, 0xEE, 0x0F, 0xFE, 0x3F, 0xFC, 0x7E, 0xF8, 0xF1, + 0xF1, 0xE3, 0xE3, 0xC7, 0xC7, 0x8F, 0x8F, 0x1F, 0x1E, 0x3E, 0x3C, 0x7E, 0x78, 0x7F, 0xF0, 0xFF, + 0xE0, 0xFF, 0xC0, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x3D, 0xE0, 0x7F, 0xF8, 0x1F, + 0xFE, 0x07, 0xEF, 0x81, 0xE3, 0xE0, 0x78, 0xF8, 0x1E, 0x3E, 0x07, 0x8F, 0x81, 0xE3, 0xE0, 0x78, + 0xF8, 0x1E, 0x3E, 0x07, 0x8F, 0x81, 0xE3, 0xE0, 0x78, 0x7C, 0x3E, 0x1F, 0xBF, 0x87, 0xFF, 0xC0, + 0xFF, 0xF0, 0x1F, 0xF0, 0x00, 0xF0, 0x00, 0x38, 0x00, 0x0F, 0x00, 0x03, 0xC0, 0x00, 0xF0, 0x00, + 0x10, 0x00, 0x00, 0x1E, 0x00, 0x3D, 0xC1, 0xFF, 0xC7, 0xFF, 0x8F, 0xDF, 0x1E, 0x3E, 0x3C, 0x7C, + 0x78, 0xF8, 0xF1, 0xF1, 0xE3, 0xE3, 0xC7, 0xC7, 0x8F, 0xCF, 0x0F, 0xFE, 0x1F, 0xFC, 0x1F, 0xF8, + 0x07, 0x80, 0x0E, 0x00, 0x3E, 0x00, 0x7C, 0x00, 0xF0, 0x00, 0x40, 0x00, 0x03, 0x00, 0x03, 0xC0, + 0x01, 0xF0, 0x00, 0x7C, 0x00, 0x1E, 0x00, 0x06, 0x00, 0x00, 0x01, 0xF0, 0x3F, 0x7C, 0x1F, 0x3E, + 0x1F, 0x0F, 0x8F, 0x87, 0xCF, 0x81, 0xF7, 0xC0, 0xFF, 0xC0, 0x3F, 0xE0, 0x0F, 0xE0, 0x07, 0xE0, + 0x01, 0xF0, 0x00, 0xF8, 0x00, 0x7C, 0x00, 0x3E, 0x00, 0x1F, 0x00, 0x0F, 0x80, 0x07, 0xC0, 0x0C, + 0x00, 0x78, 0x01, 0xF0, 0x03, 0xE0, 0x07, 0x80, 0x0C, 0x00, 0x00, 0x3E, 0x1F, 0xF8, 0x79, 0xE1, + 0xE7, 0xCF, 0x9F, 0x3C, 0x3C, 0xF0, 0xFF, 0xC3, 0xFE, 0x07, 0xF8, 0x1F, 0xE0, 0x3F, 0x00, 0xFC, + 0x01, 0xE0, 0x0F, 0x81, 0x7C, 0x0F, 0xF0, 0x3F, 0x80, 0xFC, 0x00, 0xF8, 0x0F, 0x7C, 0x0F, 0x9F, + 0x07, 0xCF, 0x87, 0xC3, 0xE3, 0xE1, 0xF3, 0xE0, 0x7D, 0xF0, 0x1F, 0xF0, 0x0F, 0xF0, 0x03, 0xF8, + 0x01, 0xF8, 0x00, 0x7C, 0x00, 0x3E, 0x00, 0x1F, 0x00, 0x0F, 0x80, 0x07, 0xC0, 0x03, 0xE0, 0x01, + 0xF0, 0x00, 0x00, 0x00, 0x38, 0x00, 0x3C, 0x00, 0x1F, 0x00, 0x0F, 0x00, 0x01, 0x00, 0x70, 0x39, + 0xF0, 0xFB, 0xE1, 0xE3, 0xC7, 0xC7, 0xCF, 0x8F, 0x9E, 0x0F, 0x3C, 0x1F, 0xF8, 0x1F, 0xE0, 0x3F, + 0xC0, 0x7F, 0x00, 0x7E, 0x00, 0xFC, 0x00, 0xF0, 0x03, 0xE6, 0x7F, 0x9E, 0xFF, 0x3D, 0xFC, 0x7B, + 0xE0, 0x60, 0x07, 0xC0, 0x03, 0xF0, 0x00, 0xF8, 0x00, 0x1C, 0x00, 0x1C, 0x00, 0x0E, 0x03, 0xE0, + 0x3D, 0xF0, 0x3E, 0x7C, 0x1F, 0x3E, 0x1F, 0x0F, 0x8F, 0x87, 0xCF, 0x81, 0xF7, 0xC0, 0x7F, 0xC0, + 0x3F, 0xC0, 0x0F, 0xE0, 0x07, 0xE0, 0x01, 0xF0, 0x00, 0xF8, 0x00, 0x7C, 0x00, 0x3E, 0x00, 0x1F, + 0x00, 0x0F, 0x80, 0x07, 0xC0, 0x0F, 0x80, 0x3F, 0x00, 0xFC, 0x00, 0xF0, 0x07, 0x80, 0x1C, 0x07, + 0x03, 0xBE, 0x1F, 0xF8, 0x79, 0xE3, 0xE7, 0xCF, 0x9F, 0x3C, 0x3C, 0xF0, 0xFF, 0xC1, 0xFE, 0x07, + 0xF8, 0x1F, 0xC0, 0x3F, 0x00, 0xFC, 0x01, 0xE0, 0x0F, 0x83, 0xFC, 0x0F, 0xF0, 0x3F, 0x80, 0xF8, + 0x00, 0x00, 0x00, 0x03, 0xDC, 0x03, 0xFE, 0x03, 0xFE, 0x00, 0xCE, 0x00, 0x00, 0x03, 0xE0, 0x3D, + 0xF0, 0x3E, 0x7C, 0x1F, 0x3E, 0x1F, 0x0F, 0x8F, 0x87, 0xCF, 0x81, 0xF7, 0xC0, 0x7F, 0xC0, 0x3F, + 0xC0, 0x0F, 0xE0, 0x07, 0xE0, 0x01, 0xF0, 0x00, 0xF8, 0x00, 0x7C, 0x00, 0x3E, 0x00, 0x1F, 0x00, + 0x0F, 0x80, 0x07, 0xC0, 0x0E, 0x60, 0x7F, 0xC3, 0xFE, 0x06, 0xF0, 0x00, 0x01, 0xC0, 0xEF, 0x87, + 0xFE, 0x1E, 0x78, 0xF9, 0xF3, 0xE7, 0xCF, 0x0F, 0x3C, 0x3F, 0xF0, 0x7F, 0x81, 0xFE, 0x07, 0xF0, + 0x0F, 0xC0, 0x3F, 0x00, 0x78, 0x03, 0xE0, 0xFF, 0x03, 0xFC, 0x0F, 0xE0, 0x3E, 0x00, 0xFF, 0xFF, + 0xFF, 0xFF, 0xF0, 0x03, 0x37, 0x8C, 0x7B, 0xF3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, + 0xC3, 0x00, 0x00, 0x30, 0x37, 0xEC, 0xDB, 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, + 0xC1, 0x83, 0x00, 0x00, 0x61, 0x83, 0xF6, 0x66, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, + 0x83, 0x06, 0x0C, 0x18, 0xFF, 0xFF, 0xFF, 0x7E, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFF, 0xE0, 0x7B, 0xFD, 0xEF, 0x7B, 0xC0, 0x79, 0xE7, 0x9E, 0x7B, 0xCF, 0x00, 0x79, + 0xE7, 0x9E, 0x7B, 0xCF, 0x00, 0x79, 0xDE, 0xFF, 0x3F, 0xDE, 0xF7, 0xBD, 0xEF, 0x78, 0x7B, 0xEF, + 0x7D, 0xEF, 0xBD, 0xE7, 0xBD, 0xE7, 0xBC, 0xE0, 0x7B, 0xEF, 0x7D, 0xEF, 0xBD, 0xE7, 0xBD, 0xE7, + 0xBC, 0xE0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0x0F, 0x00, + 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0x70, + 0x07, 0x00, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0x0F, 0x00, + 0xF0, 0x0F, 0x00, 0xF0, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0x70, + 0x07, 0x00, 0x3E, 0x3F, 0x9F, 0xCF, 0xE7, 0xF3, 0xF8, 0xF8, 0x78, 0x38, 0x3D, 0xF0, 0xF8, 0x7F, + 0xE1, 0xF0, 0xFF, 0xC3, 0xE1, 0xF7, 0x83, 0x83, 0xC0, 0x3F, 0x03, 0xC0, 0x00, 0x3F, 0xC3, 0xE0, + 0x00, 0x1E, 0xF1, 0xE0, 0x00, 0x0E, 0x79, 0xE0, 0x00, 0x07, 0x1C, 0xF0, 0x00, 0x03, 0x9E, 0xF0, + 0x00, 0x01, 0xEF, 0xF8, 0x00, 0x00, 0xFF, 0x78, 0x00, 0x00, 0x3F, 0x7D, 0xF8, 0x7E, 0x00, 0x3D, + 0xFE, 0x7F, 0x80, 0x3D, 0xEF, 0x7B, 0xC0, 0x1E, 0xF3, 0xBC, 0xE0, 0x1E, 0x71, 0xDC, 0x70, 0x1F, + 0x3C, 0xEF, 0x38, 0x0F, 0x1E, 0xF7, 0xBC, 0x0F, 0x87, 0xF9, 0xFE, 0x07, 0x81, 0xF8, 0x7E, 0x00, + 0x00, 0x0E, 0x1F, 0x3E, 0x7C, 0x7C, 0xF8, 0x7C, 0x7C, 0x3E, 0x1F, 0x0E, 0x08, 0x10, 0x78, 0x78, + 0x7C, 0x3E, 0x3E, 0x1F, 0x3E, 0x3E, 0x7C, 0x78, 0x78, 0x10, 0x00, 0x78, 0x01, 0xE0, 0x0F, 0x80, + 0x3C, 0x01, 0xF0, 0x07, 0x80, 0x3C, 0x00, 0xF0, 0x07, 0x80, 0x1E, 0x00, 0xF0, 0x03, 0xC0, 0x1E, + 0x00, 0x78, 0x03, 0xC0, 0x0F, 0x00, 0x78, 0x01, 0xE0, 0x00, 0x10, 0xFB, 0xF7, 0xE7, 0xC7, 0x00, + 0x00, 0x00, 0x00, 0x07, 0xC7, 0xCF, 0x9F, 0x3E, 0x3C, 0x78, 0x70, 0x3E, 0x3F, 0xBD, 0xFE, 0x7E, + 0x3F, 0x1F, 0xCF, 0xEF, 0x7F, 0x1F, 0x00, 0x0F, 0x0F, 0x87, 0xC7, 0xE7, 0x73, 0xBB, 0xFF, 0xFF, + 0x07, 0x03, 0x80, 0x7F, 0x3F, 0x9C, 0x0E, 0x07, 0xE3, 0xF8, 0x3C, 0x8E, 0x7F, 0x7F, 0x00, 0x0F, + 0x1F, 0x9F, 0x8F, 0x07, 0xF7, 0xFB, 0xDE, 0xEF, 0x7F, 0x1F, 0x00, 0xFF, 0xFF, 0xC3, 0xC1, 0xE1, + 0xE0, 0xF0, 0x70, 0x78, 0x3C, 0x1E, 0x00, 0x3F, 0x3F, 0xBD, 0xEE, 0xE7, 0xF3, 0xFB, 0xDF, 0xEF, + 0xFF, 0xBF, 0x80, 0x3E, 0x3F, 0xBD, 0xDE, 0xF7, 0xFB, 0xFC, 0x1C, 0x3E, 0x7E, 0x3E, 0x00, 0x3E, + 0x3F, 0xBD, 0xFE, 0x7E, 0x3F, 0x1F, 0xCF, 0xEF, 0x7F, 0x1F, 0x00, 0x1E, 0xFD, 0xFB, 0xF0, 0xE1, + 0xC3, 0x87, 0x0E, 0x1C, 0x7E, 0x7F, 0x9B, 0xC1, 0xE1, 0xF1, 0xF1, 0xF0, 0xF0, 0x7F, 0x7F, 0x80, + 0x7E, 0xFF, 0x6F, 0x0F, 0x3E, 0x3F, 0x0F, 0x47, 0xFF, 0xFE, 0x0F, 0x0F, 0x87, 0xC7, 0xE7, 0x73, 0xBB, 0xFF, 0xFF, 0x07, 0x03, 0x80, 0x7F, 0x3F, 0x9C, 0x0E, 0x07, 0xE3, 0xF8, 0x3C, 0x8E, 0x7F, 0x7F, 0x00, 0x0F, 0x1F, 0x9F, 0x8F, 0x07, 0xF7, 0xFB, 0xDE, 0xEF, 0x7F, 0x1F, 0x00, 0xFF, 0xFF, 0xC3, 0xC1, 0xE1, 0xE0, 0xF0, 0x70, 0x78, 0x3C, 0x1E, 0x00, 0x3F, 0x3F, 0xBD, 0xEE, 0xE7, 0xF3, 0xFB, 0xDF, 0xEF, 0xFF, 0xBF, 0x80, 0x3E, 0x3F, 0xBD, 0xDE, 0xF7, 0xFB, 0xFC, 0x1C, 0x3E, 0x7E, - 0x3E, 0x00, 0x3E, 0x3F, 0xBD, 0xFE, 0x7E, 0x3F, 0x1F, 0xCF, 0xEF, 0x7F, 0x1F, 0x00, 0x1E, 0xFD, - 0xFB, 0xF0, 0xE1, 0xC3, 0x87, 0x0E, 0x1C, 0x7E, 0x7F, 0x9B, 0xC1, 0xE1, 0xF1, 0xF1, 0xF0, 0xF0, - 0x7F, 0x7F, 0x80, 0x7E, 0xFF, 0x6F, 0x0F, 0x3E, 0x3F, 0x0F, 0x47, 0xFF, 0xFE, 0x0F, 0x0F, 0x87, - 0xC7, 0xE7, 0x73, 0xBB, 0xFF, 0xFF, 0x07, 0x03, 0x80, 0x7F, 0x3F, 0x9C, 0x0E, 0x07, 0xE3, 0xF8, - 0x3C, 0x8E, 0x7F, 0x7F, 0x00, 0x0F, 0x1F, 0x9F, 0x8F, 0x07, 0xF7, 0xFB, 0xDE, 0xEF, 0x7F, 0x1F, - 0x00, 0xFF, 0xFF, 0xC3, 0xC1, 0xE1, 0xE0, 0xF0, 0x70, 0x78, 0x3C, 0x1E, 0x00, 0x3F, 0x3F, 0xBD, - 0xEE, 0xE7, 0xF3, 0xFB, 0xDF, 0xEF, 0xFF, 0xBF, 0x80, 0x3E, 0x3F, 0xBD, 0xDE, 0xF7, 0xFB, 0xFC, - 0x1C, 0x3E, 0x7E, 0x3E, 0x00, 0x7F, 0xF1, 0xEF, 0xFF, 0x3D, 0xFF, 0xE7, 0xBC, 0x1C, 0xF7, 0x93, - 0xDE, 0xF7, 0x7B, 0xDE, 0xEF, 0x7B, 0xDD, 0xEF, 0x7B, 0xBD, 0xEF, 0x77, 0xBD, 0xEE, 0x6F, 0xBD, - 0xC3, 0xF7, 0xBF, 0xFC, 0xF7, 0xFF, 0x9E, 0xFF, 0xC0, 0x07, 0xF8, 0x3F, 0xE1, 0xFF, 0x87, 0xC4, - 0x3E, 0x00, 0xF0, 0x0F, 0xFE, 0x3F, 0xF8, 0x7C, 0x01, 0xF0, 0x0F, 0xFE, 0x3F, 0xF0, 0x3C, 0x00, - 0xFC, 0xE1, 0xFF, 0x87, 0xFE, 0x07, 0xF8, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC1, 0xE0, 0x07, 0xB0, - 0x1F, 0xC0, 0x7F, 0x07, 0xF8, 0x3F, 0x80, 0xFF, 0xC1, 0x7F, 0x01, 0xFC, 0x3F, 0xC0, 0xFE, 0x01, - 0xF8, 0x01, 0xE0, 0x07, 0x80, 0x1F, 0xE0, 0xFF, 0xC3, 0xFF, 0x06, 0x3E, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0xC3, 0xF8, 0x1F, 0x83, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x7C, 0x01, 0xF9, 0xC3, 0xFF, 0x8F, - 0xFE, 0x0F, 0xF0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC1, 0xF8, 0x01, 0xE3, 0xFF, 0xEF, 0xFF, 0x80, - 0xF8, 0x0F, 0xE3, 0xFF, 0x0F, 0xF8, 0x3F, 0xC0, 0xFC, 0x01, 0xF8, 0x01, 0xF0, 0x03, 0xE0, 0x07, - 0xC0, 0x1F, 0xC0, 0x7F, 0xE0, 0x7F, 0xE0, 0xCF, 0xC0, 0x07, 0xC0, 0x07, 0x83, 0xFF, 0x0F, 0xFE, - 0x3F, 0xFC, 0xFC, 0xF9, 0xE0, 0xF3, 0xC1, 0xE7, 0x83, 0xCF, 0x0F, 0x9F, 0x3E, 0x3F, 0xFC, 0x3F, - 0xF0, 0x3F, 0x80, 0x03, 0xE0, 0x00, 0xF8, 0x00, 0x7F, 0x00, 0x1F, 0xC0, 0x07, 0xF8, 0x03, 0xFE, - 0x00, 0xF7, 0xC0, 0x7D, 0xF0, 0x1E, 0x3C, 0x07, 0x8F, 0x83, 0xE3, 0xE0, 0xF0, 0x7C, 0x7C, 0x1F, - 0x1F, 0x03, 0xC7, 0xFF, 0xFB, 0xFF, 0xFE, 0xFF, 0xFF, 0x80, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0x81, 0xFF, 0x03, 0xFE, 0x07, 0xFC, 0x0F, 0xF8, 0x1F, 0xF0, 0x3F, 0xE0, 0x7F, 0xC0, 0xFF, 0x81, - 0xFF, 0x03, 0xFE, 0x07, 0xFC, 0x0F, 0xF8, 0x1F, 0xF0, 0x3F, 0xE0, 0x7F, 0xC0, 0xFF, 0x81, 0xFF, - 0x03, 0xE0, 0xFF, 0xFB, 0xFF, 0xEF, 0xFF, 0x9F, 0x00, 0x3E, 0x00, 0xF8, 0x01, 0xF0, 0x03, 0xE0, - 0x0F, 0x80, 0x1F, 0x00, 0xFC, 0x03, 0xE0, 0x1F, 0x00, 0xFC, 0x03, 0xE0, 0x1F, 0x00, 0x7C, 0x03, - 0xFF, 0xEF, 0xFF, 0xBF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x78, 0x01, 0xE0, 0x0F, 0x80, - 0x3C, 0x01, 0xF0, 0x07, 0x80, 0x3C, 0x00, 0xF0, 0x07, 0x80, 0x1E, 0x00, 0xF0, 0x03, 0xC0, 0x1E, - 0x00, 0x78, 0x03, 0xC0, 0x0F, 0x00, 0x78, 0x01, 0xE0, 0x00, 0x79, 0xFF, 0xDF, 0x78, 0x00, 0x0F, - 0x00, 0x0F, 0x00, 0x1E, 0x00, 0x1E, 0x00, 0x1E, 0x00, 0x3C, 0x00, 0x3C, 0x00, 0x3C, 0x1C, 0x78, - 0x7E, 0x78, 0x7E, 0x78, 0x7F, 0xF0, 0x7F, 0xF0, 0x0F, 0xF0, 0x07, 0xE0, 0x07, 0xE0, 0x03, 0xE0, - 0x03, 0xC0, 0x3E, 0x7C, 0x7F, 0xFE, 0x7F, 0xFE, 0xF7, 0xEE, 0xF7, 0xEE, 0x7F, 0xFE, 0x7F, 0xFE, - 0x3E, 0x7C, 0x00, 0x01, 0xF0, 0xFC, 0x7F, 0x1F, 0x07, 0x81, 0xE0, 0x78, 0x1E, 0x07, 0x81, 0xE0, - 0x78, 0x1E, 0x07, 0x81, 0xE0, 0x78, 0x1E, 0x07, 0x81, 0xE0, 0x78, 0x3E, 0x3F, 0x8F, 0xC3, 0xE0, - 0x00, 0x00, 0x3E, 0x1D, 0xFE, 0xF7, 0xFF, 0xBD, 0xFE, 0x71, 0xF0, 0x00, 0x03, 0xE1, 0xDF, 0xEF, - 0x7F, 0xFB, 0xDF, 0xE7, 0x1F, 0x00, 0x00, 0xC0, 0x1E, 0x01, 0xCF, 0xFF, 0xFF, 0xFF, 0xFF, 0x07, - 0x00, 0xF0, 0xFF, 0xFF, 0xFF, 0xFF, 0xF3, 0x80, 0x78, 0x03, 0x00, 0x01, 0xF3, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFF, 0xEF, 0xC0, 0xFF, 0xEF, 0xFF, 0xFF, 0xF3, 0xFF, 0x01, 0xF0, 0x00, 0xFF, 0xFF, 0xFF, - 0xFF, 0xF0, 0x78, 0x0F, 0xFC, 0xFF, 0xFF, 0xFF, 0x3F, 0xF0, 0x3F, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFC, 0x78, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x1F, 0xC7, 0xF1, 0xFE, 0x7F, 0x9F, 0xF3, - 0xFC, 0xF9, 0x3F, 0x6F, 0x81, 0xE0, 0x7C, 0x0F, 0x03, 0xFE, 0x7F, 0xDF, 0xF3, 0xFE, 0xFF, 0x9F, - 0xF7, 0xC0, 0xF0, 0x3E, 0x07, 0x81, 0xF0, 0x3C, 0x0F, 0x81, 0xE0, 0x7C, 0x0F, 0x03, 0xE0, 0x78, - 0x1F, 0x03, 0xC0, 0xF8, 0x1E, 0x07, 0xC0, 0xF0, 0x3E, 0x07, 0x80, 0x1F, 0xDE, 0x3F, 0xDF, 0x7F, - 0x9F, 0x7C, 0x9E, 0xF8, 0x00, 0xF8, 0x00, 0xFF, 0x9E, 0xFF, 0x9E, 0xFF, 0x9E, 0xF8, 0x1E, 0xF8, - 0x1E, 0xF8, 0x1E, 0xF8, 0x1E, 0xF8, 0x1E, 0xF8, 0x1E, 0xF8, 0x1E, 0xF8, 0x1E, 0xF8, 0x1E, 0xF8, - 0x1E, 0x1F, 0xDE, 0x0F, 0xF7, 0x87, 0xF9, 0xE1, 0xF2, 0x78, 0xF8, 0x1E, 0x3E, 0x07, 0x8F, 0xF9, - 0xE3, 0xFE, 0x78, 0xFF, 0x9E, 0x3E, 0x07, 0x8F, 0x81, 0xE3, 0xE0, 0x78, 0xF8, 0x1E, 0x3E, 0x07, - 0x8F, 0x81, 0xE3, 0xE0, 0x7C, 0xF8, 0x1F, 0xBE, 0x03, 0xEF, 0x80, 0x78, 0x1F, 0xC7, 0xF3, 0xCF, - 0xF3, 0xFD, 0xF7, 0xFC, 0xFF, 0x7D, 0xF2, 0x7E, 0x8F, 0xF8, 0x1E, 0x00, 0x3E, 0x07, 0x80, 0x0F, - 0xF9, 0xFF, 0x7F, 0xFE, 0x7F, 0xDF, 0xFF, 0x9F, 0xF7, 0xFE, 0x07, 0x81, 0xFF, 0x81, 0xE0, 0x7F, - 0xE0, 0x78, 0x1F, 0xF8, 0x1E, 0x07, 0xFE, 0x07, 0x81, 0xFF, 0x81, 0xE0, 0x7F, 0xE0, 0x78, 0x1F, - 0xF8, 0x1E, 0x07, 0xFE, 0x07, 0x81, 0xFF, 0x81, 0xE0, 0x7C, 0x1F, 0xC7, 0xF3, 0xC3, 0xFC, 0xFF, - 0x7C, 0x7F, 0xCF, 0xF7, 0xC7, 0xC9, 0xFA, 0x7C, 0xF8, 0x1E, 0x07, 0xCF, 0x81, 0xE0, 0x7C, 0xFF, - 0x9F, 0xF7, 0xCF, 0xF9, 0xFF, 0x7C, 0xFF, 0x9F, 0xF7, 0xCF, 0x81, 0xE0, 0x7C, 0xF8, 0x1E, 0x07, - 0xCF, 0x81, 0xE0, 0x7C, 0xF8, 0x1E, 0x07, 0xCF, 0x81, 0xE0, 0x7C, 0xF8, 0x1E, 0x07, 0xCF, 0x81, - 0xE0, 0x7E, 0xF8, 0x1E, 0x03, 0xFF, 0x81, 0xE0, 0x3F, 0xF8, 0x1E, 0x01, 0xE0, + 0x3E, 0x00, 0x7F, 0xF1, 0xEF, 0xFF, 0x3D, 0xFF, 0xE7, 0xBC, 0x1C, 0xF7, 0x93, 0xDE, 0xF7, 0x7B, + 0xDE, 0xEF, 0x7B, 0xDD, 0xEF, 0x7B, 0xBD, 0xEF, 0x77, 0xBD, 0xEE, 0x6F, 0xBD, 0xC3, 0xF7, 0xBF, + 0xFC, 0xF7, 0xFF, 0x9E, 0xFF, 0xC0, 0x07, 0xF8, 0x3F, 0xE1, 0xFF, 0x87, 0xC4, 0x3E, 0x00, 0xF0, + 0x0F, 0xFE, 0x3F, 0xF8, 0x7C, 0x01, 0xF0, 0x0F, 0xFE, 0x3F, 0xF0, 0x3C, 0x00, 0xFC, 0xE1, 0xFF, + 0x87, 0xFE, 0x07, 0xF8, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC1, 0xE0, 0x07, 0xB0, 0x1F, 0xC0, 0x7F, + 0x07, 0xF8, 0x3F, 0x80, 0xFF, 0xC1, 0x7F, 0x01, 0xFC, 0x3F, 0xC0, 0xFE, 0x01, 0xF8, 0x01, 0xE0, + 0x07, 0x80, 0x1F, 0xE0, 0xFF, 0xC3, 0xFF, 0x06, 0x3E, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC3, 0xF8, + 0x1F, 0x83, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x7C, 0x01, 0xF9, 0xC3, 0xFF, 0x8F, 0xFE, 0x0F, 0xF0, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC1, 0xF8, 0x01, 0xE3, 0xFF, 0xEF, 0xFF, 0x80, 0xF8, 0x0F, 0xE3, + 0xFF, 0x0F, 0xF8, 0x3F, 0xC0, 0xFC, 0x01, 0xF8, 0x01, 0xF0, 0x03, 0xE0, 0x07, 0xC0, 0x1F, 0xC0, + 0x7F, 0xE0, 0x7F, 0xE0, 0xCF, 0xC0, 0x07, 0xC0, 0x07, 0x83, 0xFF, 0x0F, 0xFE, 0x3F, 0xFC, 0xFC, + 0xF9, 0xE0, 0xF3, 0xC1, 0xE7, 0x83, 0xCF, 0x0F, 0x9F, 0x3E, 0x3F, 0xFC, 0x3F, 0xF0, 0x3F, 0x80, + 0x03, 0xE0, 0x00, 0xF8, 0x00, 0x7F, 0x00, 0x1F, 0xC0, 0x07, 0xF8, 0x03, 0xFE, 0x00, 0xF7, 0xC0, + 0x7D, 0xF0, 0x1E, 0x3C, 0x07, 0x8F, 0x83, 0xE3, 0xE0, 0xF0, 0x7C, 0x7C, 0x1F, 0x1F, 0x03, 0xC7, + 0xFF, 0xFB, 0xFF, 0xFE, 0xFF, 0xFF, 0x80, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x81, 0xFF, 0x03, + 0xFE, 0x07, 0xFC, 0x0F, 0xF8, 0x1F, 0xF0, 0x3F, 0xE0, 0x7F, 0xC0, 0xFF, 0x81, 0xFF, 0x03, 0xFE, + 0x07, 0xFC, 0x0F, 0xF8, 0x1F, 0xF0, 0x3F, 0xE0, 0x7F, 0xC0, 0xFF, 0x81, 0xFF, 0x03, 0xE0, 0xFF, + 0xFB, 0xFF, 0xEF, 0xFF, 0x9F, 0x00, 0x3E, 0x00, 0xF8, 0x01, 0xF0, 0x03, 0xE0, 0x0F, 0x80, 0x1F, + 0x00, 0xFC, 0x03, 0xE0, 0x1F, 0x00, 0xFC, 0x03, 0xE0, 0x1F, 0x00, 0x7C, 0x03, 0xFF, 0xEF, 0xFF, + 0xBF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x00, 0x78, 0x01, 0xE0, 0x0F, 0x80, 0x3C, 0x01, 0xF0, + 0x07, 0x80, 0x3C, 0x00, 0xF0, 0x07, 0x80, 0x1E, 0x00, 0xF0, 0x03, 0xC0, 0x1E, 0x00, 0x78, 0x03, + 0xC0, 0x0F, 0x00, 0x78, 0x01, 0xE0, 0x00, 0x79, 0xFF, 0xDF, 0x78, 0x00, 0x0F, 0x00, 0x0F, 0x00, + 0x1E, 0x00, 0x1E, 0x00, 0x1E, 0x00, 0x3C, 0x00, 0x3C, 0x00, 0x3C, 0x1C, 0x78, 0x7E, 0x78, 0x7E, + 0x78, 0x7F, 0xF0, 0x7F, 0xF0, 0x0F, 0xF0, 0x07, 0xE0, 0x07, 0xE0, 0x03, 0xE0, 0x03, 0xC0, 0x3E, + 0x7C, 0x7F, 0xFE, 0x7F, 0xFE, 0xF7, 0xEE, 0xF7, 0xEE, 0x7F, 0xFE, 0x7F, 0xFE, 0x3E, 0x7C, 0x00, + 0x01, 0xF0, 0xFC, 0x7F, 0x1F, 0x07, 0x81, 0xE0, 0x78, 0x1E, 0x07, 0x81, 0xE0, 0x78, 0x1E, 0x07, + 0x81, 0xE0, 0x78, 0x1E, 0x07, 0x81, 0xE0, 0x78, 0x3E, 0x3F, 0x8F, 0xC3, 0xE0, 0x00, 0x00, 0x3E, + 0x1D, 0xFE, 0xF7, 0xFF, 0xBD, 0xFE, 0x71, 0xF0, 0x00, 0x03, 0xE1, 0xDF, 0xEF, 0x7F, 0xFB, 0xDF, + 0xE7, 0x1F, 0x00, 0x00, 0xC0, 0x1E, 0x01, 0xCF, 0xFF, 0xFF, 0xFF, 0xFF, 0x07, 0x00, 0xF0, 0xFF, + 0xFF, 0xFF, 0xFF, 0xF3, 0x80, 0x78, 0x03, 0x00, 0x01, 0xF3, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, + 0xC0, 0xFF, 0xEF, 0xFF, 0xFF, 0xF3, 0xFF, 0x01, 0xF0, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x78, + 0x0F, 0xFC, 0xFF, 0xFF, 0xFF, 0x3F, 0xF0, 0x3F, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x78, 0x00, + 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x1F, 0xC7, 0xF1, 0xFE, 0x7F, 0x9F, 0xF3, 0xFC, 0xF9, 0x3F, + 0x6F, 0x81, 0xE0, 0x7C, 0x0F, 0x03, 0xFE, 0x7F, 0xDF, 0xF3, 0xFE, 0xFF, 0x9F, 0xF7, 0xC0, 0xF0, + 0x3E, 0x07, 0x81, 0xF0, 0x3C, 0x0F, 0x81, 0xE0, 0x7C, 0x0F, 0x03, 0xE0, 0x78, 0x1F, 0x03, 0xC0, + 0xF8, 0x1E, 0x07, 0xC0, 0xF0, 0x3E, 0x07, 0x80, 0x1F, 0xDE, 0x3F, 0xDF, 0x7F, 0x9F, 0x7C, 0x9E, + 0xF8, 0x00, 0xF8, 0x00, 0xFF, 0x9E, 0xFF, 0x9E, 0xFF, 0x9E, 0xF8, 0x1E, 0xF8, 0x1E, 0xF8, 0x1E, + 0xF8, 0x1E, 0xF8, 0x1E, 0xF8, 0x1E, 0xF8, 0x1E, 0xF8, 0x1E, 0xF8, 0x1E, 0xF8, 0x1E, 0x1F, 0xDE, + 0x0F, 0xF7, 0x87, 0xF9, 0xE1, 0xF2, 0x78, 0xF8, 0x1E, 0x3E, 0x07, 0x8F, 0xF9, 0xE3, 0xFE, 0x78, + 0xFF, 0x9E, 0x3E, 0x07, 0x8F, 0x81, 0xE3, 0xE0, 0x78, 0xF8, 0x1E, 0x3E, 0x07, 0x8F, 0x81, 0xE3, + 0xE0, 0x7C, 0xF8, 0x1F, 0xBE, 0x03, 0xEF, 0x80, 0x78, 0x1F, 0xC7, 0xF3, 0xCF, 0xF3, 0xFD, 0xF7, + 0xFC, 0xFF, 0x7D, 0xF2, 0x7E, 0x8F, 0xF8, 0x1E, 0x00, 0x3E, 0x07, 0x80, 0x0F, 0xF9, 0xFF, 0x7F, + 0xFE, 0x7F, 0xDF, 0xFF, 0x9F, 0xF7, 0xFE, 0x07, 0x81, 0xFF, 0x81, 0xE0, 0x7F, 0xE0, 0x78, 0x1F, + 0xF8, 0x1E, 0x07, 0xFE, 0x07, 0x81, 0xFF, 0x81, 0xE0, 0x7F, 0xE0, 0x78, 0x1F, 0xF8, 0x1E, 0x07, + 0xFE, 0x07, 0x81, 0xFF, 0x81, 0xE0, 0x7C, 0x1F, 0xC7, 0xF3, 0xC3, 0xFC, 0xFF, 0x7C, 0x7F, 0xCF, + 0xF7, 0xC7, 0xC9, 0xFA, 0x7C, 0xF8, 0x1E, 0x07, 0xCF, 0x81, 0xE0, 0x7C, 0xFF, 0x9F, 0xF7, 0xCF, + 0xF9, 0xFF, 0x7C, 0xFF, 0x9F, 0xF7, 0xCF, 0x81, 0xE0, 0x7C, 0xF8, 0x1E, 0x07, 0xCF, 0x81, 0xE0, + 0x7C, 0xF8, 0x1E, 0x07, 0xCF, 0x81, 0xE0, 0x7C, 0xF8, 0x1E, 0x07, 0xCF, 0x81, 0xE0, 0x7E, 0xF8, + 0x1E, 0x03, 0xFF, 0x81, 0xE0, 0x3F, 0xF8, 0x1E, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, + 0x9C, 0x00, 0x03, 0xCF, 0x00, 0x01, 0xE7, 0x80, 0x00, 0xF3, 0xC0, 0x00, 0x7F, 0xE0, 0x00, 0x3F, + 0xF0, 0x00, 0x1F, 0x7F, 0x00, 0xFF, 0x3F, 0xFF, 0xFF, 0x8F, 0xFF, 0xFF, 0x83, 0xFF, 0xFF, 0x00, + 0x3F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x01, 0xDC, 0x00, 0x00, 0xEE, 0x00, 0x00, 0x77, 0x00, 0x00, + 0x1F, 0x00, 0x00, 0x07, 0x00, 0x00, 0x03, 0x80, 0x00, 0x01, 0x80, 0x00, 0x70, 0x00, 0x00, 0x00, + 0xF0, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x0E, 0x03, 0xC0, 0x00, 0x3E, 0x0F, 0x80, 0x00, 0xFC, 0x1F, + 0x00, 0x03, 0xF8, 0x1F, 0xC0, 0xFF, 0xFF, 0x3F, 0xFF, 0xFF, 0xFF, 0x3F, 0xFF, 0xFD, 0xFE, 0x3F, + 0xFF, 0xE1, 0xFC, 0x0F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x60, 0x00, 0x00, 0x0F, + 0xE0, 0x00, 0x00, 0x1D, 0xC0, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x38, + 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x0E, 0x3E, 0x1E, 0x1E, 0x1F, 0x1F, 0x0F, 0x1F, 0xFF, 0xFE, + 0xFE, 0xF8, 0x00, 0x00, 0x6E, 0xFE, 0xFE, 0x7C, 0x38, 0x38, 0x18, 0x0E, 0x00, 0x78, 0x07, 0xC0, + 0x3E, 0x01, 0xF0, 0x7F, 0xFB, 0xFF, 0xDF, 0xFF, 0xF3, 0xF0, 0x00, 0x00, 0x00, 0xEE, 0x07, 0xF0, + 0x3B, 0x80, 0xF8, 0x03, 0x80, 0x1C, 0x00, 0x60, 0x00, 0x00, 0x30, 0x00, 0x00, 0x18, 0x00, 0x00, + 0x0F, 0xC0, 0x00, 0x07, 0xE0, 0x00, 0x03, 0xB0, 0x00, 0x03, 0xF8, 0x00, 0x01, 0xF8, 0x00, 0x00, + 0x00, 0x1E, 0x70, 0x00, 0x0F, 0x3C, 0x00, 0x07, 0x9E, 0x00, 0x03, 0xCF, 0x00, 0x01, 0xFF, 0x80, + 0x00, 0xFF, 0xC0, 0x00, 0x7D, 0xFC, 0x03, 0xFC, 0xFF, 0xFF, 0xFE, 0x3F, 0xFF, 0xFE, 0x0F, 0xFF, + 0xFC, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0xFC, 0x00, + 0x00, 0x00, 0xFC, 0x00, 0x00, 0x03, 0xB8, 0x00, 0x00, 0x0F, 0xF0, 0x00, 0x00, 0x1F, 0xC0, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x0E, 0x03, + 0xC0, 0x00, 0x3E, 0x0F, 0x80, 0x00, 0xFC, 0x1F, 0x00, 0x03, 0xF8, 0x1F, 0xC0, 0xFF, 0xFF, 0x3F, + 0xFF, 0xFF, 0xFF, 0x3F, 0xFF, 0xFD, 0xFE, 0x3F, 0xFF, 0xE1, 0xFC, 0x0F, 0xFC, 0x00, 0x00, 0x60, + 0x60, 0x7E, 0x7E, 0x77, 0xFE, 0xFC, 0x00, 0x00, 0x1C, 0x3C, 0x3C, 0x3E, 0x3E, 0x1E, 0x1E, 0x1E, + 0xFE, 0xFE, 0xFC, 0xF8, 0x00, 0x1C, 0x00, 0xE0, 0x07, 0xE0, 0x3F, 0x81, 0xDC, 0x1F, 0xC0, 0xFE, + 0x00, 0x00, 0x00, 0x00, 0x70, 0x03, 0xC0, 0x3E, 0x01, 0xF0, 0x0F, 0x83, 0xFF, 0xDF, 0xFE, 0xFF, + 0xFF, 0x9F, 0x80, 0x00, 0x7F, 0x00, 0x7F, 0xF0, 0x1F, 0xFF, 0x8F, 0xFF, 0xE6, 0x3F, 0xF0, 0x07, + 0xFC, 0x0F, 0xFC, 0x1F, 0xF0, 0x1F, 0xC0, 0x1F, 0x80, 0x1F, 0x80, 0x0F, 0x92, 0x07, 0x9F, 0x87, + 0x87, 0xC3, 0xC1, 0x81, 0xE0, 0xE0, 0xF8, 0x20, 0x7C, 0x00, 0x1F, 0x80, 0xCF, 0xFF, 0xF3, 0xFF, + 0xF8, 0xFF, 0xFC, 0x0F, 0xF8, 0x7F, 0x00, 0x07, 0xFF, 0x00, 0x1F, 0xFF, 0x80, 0xFF, 0xFE, 0x06, + 0x3F, 0xF0, 0x00, 0x7F, 0xC0, 0x0F, 0xFC, 0x01, 0xFF, 0xC0, 0x1F, 0xCF, 0x01, 0xF8, 0x7F, 0x9F, + 0x83, 0xFE, 0xF9, 0x2F, 0xF7, 0x9F, 0xBF, 0xF8, 0x7C, 0x03, 0xC1, 0x80, 0x1E, 0x0E, 0x00, 0xF8, + 0x20, 0x07, 0xC0, 0x00, 0x1F, 0x80, 0xC0, 0xFF, 0xFF, 0x03, 0xFF, 0xF8, 0x0F, 0xFF, 0xC0, 0x0F, + 0xF8, 0x00, 0x7F, 0x00, 0x7F, 0xC0, 0x7F, 0xF0, 0x7F, 0xFE, 0x00, 0xFE, 0x00, 0x7E, 0x03, 0xFE, + 0xFF, 0xF8, 0xFF, 0xE0, 0xFF, 0x80, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0xE0, 0x0E, 0xE0, + 0x0E, 0xE0, 0x07, 0xC0, 0x03, 0x80, 0x03, 0x80, 0x03, 0x00, 0x7F, 0x00, 0x0F, 0xF8, 0x01, 0xFF, + 0xC0, 0x3F, 0xFF, 0x00, 0x0F, 0xE0, 0x00, 0xFC, 0x00, 0xFF, 0x87, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, + 0xF3, 0xFF, 0xF8, 0x3F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x80, 0x07, 0xF8, 0x00, 0xFF, 0x00, + 0x07, 0x80, 0x00, 0xF0, 0x00, 0x1E, 0x00, 0x01, 0x80, 0x00, 0x18, 0x01, 0x80, 0x1F, 0x81, 0xF8, + 0x1D, 0xC3, 0xF8, 0x3F, 0x00, 0x00, 0x00, 0x00, 0x18, 0x07, 0x80, 0x7C, 0x03, 0xE0, 0x3E, 0x01, + 0xF0, 0x1F, 0x00, 0xF0, 0x0F, 0x7F, 0xF7, 0xFF, 0x7F, 0xE7, 0xFC, 0x06, 0x00, 0x18, 0x00, 0x0C, + 0x00, 0x07, 0xE0, 0x03, 0xF0, 0x01, 0xDC, 0x01, 0xFC, 0x00, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xC0, 0x01, 0xE0, 0x00, 0xF8, 0x00, 0x3E, 0x00, 0x1F, 0x00, 0x07, 0xC0, 0x03, 0xE0, 0x00, + 0xF0, 0x00, 0x7C, 0x1F, 0xFF, 0xCF, 0xFF, 0xE7, 0xFF, 0xFB, 0xFE, 0xF8, 0x18, 0x00, 0x00, 0x00, + 0xF0, 0x1E, 0x03, 0xC0, 0xDC, 0x3F, 0xC7, 0xF8, 0x66, 0x00, 0x00, 0x00, 0x04, 0x03, 0xC0, 0xF8, + 0x0F, 0x81, 0xF0, 0x1E, 0x03, 0xC0, 0x78, 0x1F, 0x03, 0xE0, 0xF8, 0x7F, 0x3F, 0xC7, 0xF0, 0x78, + 0x0C, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x1E, 0x00, 0x38, 0x01, 0xDC, 0x03, 0xF8, 0x07, 0x70, 0x06, + 0x40, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x3C, 0x00, 0xF8, 0x00, 0xF8, 0x01, 0xF0, 0x01, 0xE0, + 0x03, 0xFC, 0x07, 0xF8, 0x1F, 0xF8, 0x3F, 0xE0, 0xF8, 0x07, 0xF0, 0x3F, 0xC0, 0x7F, 0x00, 0xF8, + 0x00, 0xC0, 0x00, 0x0E, 0x01, 0xC0, 0x3F, 0x07, 0xF0, 0xEE, 0x3F, 0x87, 0xF0, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x03, 0xC0, 0xF8, 0x0F, 0x81, 0xF0, 0x1E, 0x03, 0xC0, 0x78, 0x1F, 0x03, 0xE0, 0xF8, + 0x7F, 0x3F, 0xC7, 0xF0, 0x78, 0x0C, 0x00, 0x0C, 0x00, 0x18, 0x00, 0x3F, 0x00, 0x7E, 0x00, 0xEC, + 0x03, 0xF8, 0x07, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x3C, 0x00, 0xF8, 0x00, + 0xF8, 0x01, 0xF0, 0x01, 0xE0, 0x03, 0xFC, 0x07, 0xF8, 0x1F, 0xF8, 0x3F, 0xE0, 0xF8, 0x07, 0xF0, + 0x3F, 0xC0, 0x7F, 0x00, 0xF8, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x7C, 0x00, 0x03, + 0xF8, 0x00, 0x1F, 0xF0, 0x00, 0x7F, 0x80, 0x01, 0xFC, 0x00, 0x03, 0xE0, 0x00, 0x07, 0xE0, 0x70, + 0x0F, 0xE0, 0xF0, 0x07, 0xE1, 0xE0, 0x07, 0xC3, 0xC0, 0x07, 0xCF, 0x80, 0x07, 0x9F, 0x00, 0x0F, + 0x1F, 0xC0, 0x7E, 0x3F, 0xFF, 0xFC, 0x3F, 0xFF, 0xF8, 0x3F, 0xFF, 0xC0, 0x0F, 0xFC, 0x00, 0x00, + 0x00, 0x0C, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x0F, 0xE0, 0x00, 0x0F, 0xF8, 0x00, 0x0F, 0xF8, 0x00, + 0x03, 0xF8, 0x00, 0x01, 0xF8, 0x00, 0x00, 0x7E, 0x00, 0x70, 0x0F, 0xC0, 0x1E, 0x01, 0xF8, 0x07, + 0x80, 0x3F, 0x01, 0xE0, 0x07, 0xC0, 0xF8, 0x00, 0xF8, 0x3E, 0x00, 0x1F, 0x07, 0xF0, 0x1F, 0xF9, + 0xFF, 0xFF, 0xFF, 0x3F, 0xFF, 0xFF, 0xC7, 0xFF, 0xFB, 0xF0, 0x3F, 0xF8, 0x00, 0x00, 0xE0, 0x3E, + 0x0F, 0xF1, 0xFF, 0x7F, 0xCF, 0xE0, 0xF8, 0x0F, 0xC0, 0x7E, 0x03, 0xF0, 0x1F, 0x80, 0xF8, 0x07, + 0xC0, 0x7C, 0xFF, 0xCF, 0xFC, 0xFF, 0x8F, 0xF0, 0xE0, 0x00, 0x00, 0x60, 0x07, 0xC0, 0x3F, 0xC0, + 0xFF, 0x87, 0xFC, 0x1F, 0xC0, 0x3E, 0x00, 0x7E, 0x00, 0x7E, 0x00, 0x7E, 0x00, 0x7E, 0x00, 0x7C, + 0x00, 0x7C, 0x00, 0xFC, 0x3F, 0xFF, 0x7F, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0x80, 0x00, 0x00, 0x00, + 0x30, 0x00, 0x00, 0xF0, 0x00, 0x07, 0xE0, 0x00, 0x3F, 0x80, 0x01, 0xFC, 0xC0, 0x03, 0xE7, 0xC0, + 0x03, 0x3F, 0x80, 0x01, 0xFF, 0x00, 0x07, 0xF8, 0x00, 0x1F, 0xC0, 0x00, 0x3E, 0x00, 0x00, 0x7E, + 0x07, 0x00, 0xFE, 0x0F, 0x00, 0x7E, 0x1E, 0x00, 0x7C, 0x3C, 0x00, 0x7C, 0xF8, 0x00, 0x79, 0xF0, + 0x00, 0xF1, 0xFC, 0x07, 0xE3, 0xFF, 0xFF, 0xC3, 0xFF, 0xFF, 0x83, 0xFF, 0xFC, 0x00, 0xFF, 0xC0, + 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x3F, 0x80, 0x00, 0x1F, 0x80, 0x00, 0x1F, + 0x8C, 0x00, 0x07, 0x8F, 0x00, 0x01, 0xCF, 0xE0, 0x00, 0x0F, 0xF8, 0x00, 0x0F, 0xF8, 0x00, 0x03, + 0xF8, 0x00, 0x01, 0xF8, 0x00, 0x00, 0x7E, 0x00, 0x70, 0x0F, 0xC0, 0x1E, 0x01, 0xF8, 0x07, 0x80, + 0x3F, 0x01, 0xE0, 0x07, 0xC0, 0xF8, 0x00, 0xF8, 0x3E, 0x00, 0x1F, 0x07, 0xF0, 0x1F, 0xF9, 0xFF, + 0xFF, 0xFF, 0x3F, 0xFF, 0xFF, 0xC7, 0xFF, 0xFB, 0xF0, 0x3F, 0xF8, 0x00, 0x00, 0xC0, 0x1E, 0x03, + 0xF8, 0x7F, 0x07, 0xE7, 0x3C, 0xF9, 0x9F, 0xE1, 0xFF, 0x3F, 0xE3, 0xF8, 0x1F, 0x00, 0xFC, 0x03, + 0xF0, 0x0F, 0xC0, 0x3F, 0x00, 0xF8, 0x03, 0xE0, 0x1F, 0x1F, 0xF8, 0xFF, 0xC7, 0xFC, 0x3F, 0xC1, + 0xC0, 0x00, 0x00, 0xC0, 0x03, 0xC0, 0x0F, 0xE0, 0x3F, 0x80, 0x7E, 0x30, 0x79, 0xF0, 0x67, 0xF8, + 0x0F, 0xF8, 0x3F, 0xE0, 0x7F, 0x00, 0x7C, 0x00, 0x7E, 0x00, 0x3F, 0x00, 0x1F, 0x80, 0x0F, 0xC0, + 0x07, 0xC0, 0x03, 0xE0, 0x03, 0xF0, 0x7F, 0xFE, 0x7F, 0xFF, 0x7F, 0xFF, 0x7F, 0xBF, 0x70, 0x00, + 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0xF8, 0x00, 0x3E, 0x78, 0x07, 0x9E, 0x01, 0xE7, 0x80, 0x7F, + 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, 0xEF, 0x80, 0x79, 0xF0, 0x7E, 0x7F, 0xFF, 0x0F, 0xFF, 0x81, + 0xFF, 0xC0, 0x1F, 0xC0, 0x00, 0x03, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x1E, 0x03, 0xC0, 0x3C, 0x07, + 0x80, 0x7C, 0x0F, 0x00, 0xFF, 0x3E, 0x01, 0xFF, 0x7C, 0x03, 0xFE, 0xF8, 0x07, 0xFD, 0xF0, 0x0F, + 0x01, 0xF0, 0x7E, 0x03, 0xFF, 0xF8, 0x03, 0xFF, 0xF0, 0x03, 0xFF, 0xC0, 0x01, 0xFE, 0x00, 0x00, + 0x0C, 0x01, 0xC0, 0x7C, 0x1F, 0xC1, 0xFC, 0x7F, 0x9F, 0xFB, 0xCF, 0xF9, 0xFF, 0x3F, 0xFF, 0xBF, + 0xF7, 0xFC, 0x7F, 0x00, 0x00, 0x0F, 0xC0, 0x1F, 0xF0, 0x1F, 0xF8, 0x0F, 0xFE, 0x0F, 0x8F, 0x07, + 0x87, 0xC3, 0xC3, 0xFD, 0xE0, 0xFF, 0xF8, 0x3F, 0xB8, 0x0F, 0xC0, 0x00, 0x00, 0x1C, 0x78, 0xF1, + 0xF3, 0xE3, 0xC7, 0x8F, 0xFF, 0xFF, 0xF7, 0xC1, 0x07, 0x0E, 0x3C, 0x38, 0x18, 0x00, 0x78, 0x03, + 0xF0, 0x77, 0xE3, 0xFF, 0xCF, 0xFF, 0xBF, 0xC7, 0xFE, 0x0F, 0xF0, 0x1F, 0xC0, 0x1F, 0x80, 0x3F, + 0x00, 0x3E, 0x00, 0x30, 0x00, 0x00, 0xC0, 0x00, 0x3C, 0x00, 0x0F, 0xC0, 0x01, 0xFC, 0x00, 0x3F, + 0xE0, 0x0F, 0xFE, 0x01, 0xEF, 0xE0, 0x3D, 0xFE, 0x07, 0xBF, 0xC0, 0xFF, 0x7D, 0xFF, 0xEF, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFD, 0xFF, 0xFF, 0x06, 0x03, 0x80, 0x00, 0x78, 0x00, 0x1F, 0xC0, 0x01, 0xFE, + 0x00, 0x3F, 0xE0, 0x07, 0xDE, 0x00, 0x79, 0xE0, 0x07, 0x9E, 0x00, 0x7B, 0xC0, 0x7F, 0xFF, 0xCF, + 0xFF, 0xFE, 0xFF, 0xFF, 0xEF, 0xFF, 0xFE, 0x0F, 0x8F, 0x00, 0x7C, 0xF0, 0x07, 0xFF, 0x00, 0x3F, + 0xF0, 0x01, 0xFE, 0x00, 0x07, 0xC0, 0x0C, 0x00, 0x0F, 0x00, 0x1F, 0x80, 0x1F, 0xC0, 0x3F, 0xE0, + 0x3F, 0xF8, 0x79, 0xFC, 0x79, 0xFC, 0x7F, 0xFE, 0x3F, 0xDE, 0xFF, 0xDE, 0xFF, 0xFE, 0xFF, 0xFE, + 0xFF, 0xFC, 0x00, 0x60, 0x03, 0xE0, 0x07, 0xF0, 0x03, 0xFC, 0x03, 0xFE, 0x01, 0xEF, 0x01, 0xF7, + 0x80, 0xF3, 0xC0, 0x7B, 0xE0, 0xFF, 0xFF, 0x7F, 0xFF, 0xBF, 0xFF, 0xFF, 0xFF, 0xE3, 0xC7, 0xC1, + 0xF3, 0xE0, 0xFF, 0xE0, 0x3F, 0xF0, 0x0F, 0xF0, 0x01, 0xF0, 0x00, 0x01, 0xE0, 0x00, 0x07, 0xE0, + 0x00, 0x1F, 0xE0, 0x00, 0x7F, 0xC0, 0x01, 0xF7, 0xC0, 0x07, 0xC7, 0x80, 0x1F, 0x8E, 0x00, 0x3C, + 0x00, 0x00, 0xF8, 0x00, 0x01, 0xFE, 0x00, 0xFD, 0xFF, 0xFF, 0xFB, 0xFF, 0xFF, 0xF1, 0xFF, 0xFF, + 0xE0, 0x7F, 0xFC, 0x00, 0x00, 0x7E, 0x03, 0xFF, 0x8F, 0xFF, 0xCF, 0xFF, 0xEF, 0xFF, 0xC7, 0xC0, + 0x03, 0xC0, 0x01, 0xFC, 0x1C, 0xFF, 0xFE, 0x3F, 0xFF, 0x0F, 0xFF, 0x80, 0xFF, 0x80, 0x1E, 0x00, + 0x00, 0x7C, 0x00, 0x00, 0xE0, 0x00, 0x01, 0xC0, 0x00, 0x01, 0xF0, 0x00, 0x07, 0xE0, 0x00, 0x0E, + 0x00, 0x00, 0x00, 0xF0, 0x00, 0x03, 0xF0, 0x00, 0x0F, 0xF0, 0x00, 0x3F, 0xE0, 0x00, 0xFB, 0xE0, + 0x03, 0xE3, 0xC0, 0x0F, 0xC7, 0x00, 0x1E, 0x00, 0x00, 0x7C, 0x00, 0x00, 0xFF, 0x00, 0x7E, 0xFF, + 0xFF, 0xFD, 0xFF, 0xFF, 0xF8, 0xFF, 0xFF, 0xF0, 0x3F, 0xFE, 0x00, 0x1C, 0x00, 0x1E, 0x00, 0x0C, + 0x00, 0x07, 0x40, 0x03, 0xE0, 0x03, 0xF0, 0x00, 0xE0, 0x00, 0x00, 0xFC, 0x07, 0xFF, 0x1F, 0xFF, + 0x9F, 0xFF, 0xDF, 0xFF, 0x8F, 0x80, 0x07, 0x80, 0x03, 0xF8, 0x39, 0xFF, 0xFC, 0x7F, 0xFE, 0x1F, + 0xFF, 0x01, 0xFF, 0x00, 0x00, 0x07, 0xF0, 0x00, 0x7F, 0x80, 0x07, 0xFC, 0x00, 0x7F, 0xC0, 0x03, + 0xC0, 0x00, 0x3E, 0x01, 0xE1, 0xE0, 0x0F, 0x0F, 0xC0, 0x78, 0x3F, 0x87, 0xC0, 0xFF, 0x3E, 0x03, + 0xF9, 0xF0, 0x03, 0xCF, 0x80, 0x3E, 0x3F, 0x07, 0xF1, 0xFF, 0xFF, 0x07, 0xFF, 0xF0, 0x1F, 0xFF, + 0x00, 0x3F, 0xC0, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x07, 0x80, 0x70, 0x1E, 0x01, 0xFE, 0xF8, + 0x0F, 0xFF, 0xE0, 0x3F, 0xFF, 0x80, 0x3F, 0xFE, 0x00, 0x7C, 0x7E, 0x03, 0xE1, 0xFF, 0xFF, 0x83, + 0xFF, 0xFC, 0x07, 0xFF, 0xE0, 0x07, 0xFC, 0x00, 0x0E, 0x3E, 0x1E, 0x1E, 0x1F, 0x1F, 0x0F, 0x1F, + 0xFF, 0xFE, 0xFE, 0xF8, 0x00, 0x00, 0xE7, 0xFF, 0xFF, 0xE7, 0x0E, 0x00, 0x78, 0x07, 0xC0, 0x3E, + 0x01, 0xF0, 0x7F, 0xFB, 0xFF, 0xDF, 0xFF, 0xF3, 0xF0, 0x00, 0x00, 0x00, 0xE6, 0x07, 0xF8, 0x3F, + 0xC1, 0xDC, 0x00, 0x1F, 0x87, 0xF0, 0xFE, 0x3F, 0xC7, 0x80, 0xF0, 0x1F, 0x71, 0xFF, 0x7F, 0xFF, + 0xFF, 0xFE, 0x3E, 0x04, 0x00, 0x00, 0x1F, 0xE7, 0xF9, 0xBE, 0x00, 0x00, 0x01, 0xE0, 0x78, 0x1E, + 0x07, 0x81, 0xE0, 0x78, 0x1F, 0x07, 0xC1, 0xF0, 0x7C, 0x1F, 0x07, 0xC1, 0xF0, 0x7C, 0x0F, 0x03, + 0xC0, 0xF0, 0x00, 0x07, 0xF8, 0x7F, 0xC6, 0x78, 0x00, 0x01, 0xE0, 0x1E, 0x01, 0xE0, 0x1E, 0x01, + 0xF0, 0x1F, 0x01, 0xF0, 0x1F, 0x01, 0xF0, 0x1F, 0x01, 0xF0, 0x0F, 0x00, 0xF0, 0x0F, 0x00, 0xF0, + 0x0F, 0xE0, 0xFF, 0x0F, 0xF0, 0x7F, 0x00, 0x00, 0x7B, 0xEE, 0x3A, 0xFF, 0xFE, 0x00, 0x79, 0xE7, + 0x9E, 0x79, 0xE7, 0xDF, 0x7D, 0xF7, 0xDF, 0x7D, 0xF3, 0xCF, 0x3C, 0x78, 0x3E, 0x0E, 0x03, 0x80, + 0x7C, 0x3F, 0x0E, 0x01, 0xE0, 0x78, 0x1E, 0x07, 0x81, 0xF0, 0x7C, 0x1F, 0x07, 0xC1, 0xF0, 0x7C, + 0x1F, 0x03, 0xC0, 0xF0, 0x3C, 0x0F, 0x03, 0xF8, 0xFF, 0x3F, 0xC7, 0xF0, 0x00, 0x0F, 0x01, 0xF0, + 0x1C, 0x01, 0xD0, 0x0F, 0x81, 0xF8, 0x1C, 0x00, 0x00, 0x0F, 0x81, 0xFC, 0x3F, 0xE7, 0xFE, 0x79, + 0xE7, 0x9F, 0x7F, 0xF7, 0xFF, 0x7F, 0xF3, 0xFE, 0x03, 0xE1, 0xFE, 0xFF, 0xC7, 0xF8, 0x7E, 0x07, + 0x80, 0x0F, 0x00, 0x1F, 0x00, 0x1C, 0x00, 0x1D, 0x00, 0x0F, 0x80, 0x1F, 0x80, 0x1C, 0x00, 0x00, + 0x00, 0x0F, 0x80, 0x1F, 0xC0, 0x3F, 0xE0, 0x7F, 0xE0, 0x79, 0xE0, 0x79, 0xF0, 0x7F, 0xFC, 0x7F, + 0xFE, 0x7F, 0xFE, 0x3F, 0xFE, 0x03, 0xF8, 0x1F, 0xE0, 0xFF, 0xC0, 0x7F, 0x80, 0x7E, 0x00, 0x78, + 0x00, 0xF3, 0xCF, 0x3C, 0xF3, 0xCF, 0xBE, 0xFB, 0xEF, 0xBE, 0xFB, 0xEF, 0x9E, 0x79, 0xE7, 0x80, + 0x7B, 0xEE, 0x38, 0x7F, 0xFE, 0x00, 0xF0, 0x78, 0x3C, 0x1E, 0x0F, 0x87, 0xC3, 0xE1, 0xF0, 0xF8, + 0x7C, 0x3E, 0x0F, 0x07, 0x83, 0xC1, 0xE0, 0xFE, 0x7F, 0xBF, 0xCF, 0xE0, 0x03, 0x83, 0xC1, 0xC0, + 0xE8, 0x7C, 0x3E, 0x1C, 0x00, 0x0E, 0x00, 0x00, 0xF0, 0x3F, 0x8E, 0x03, 0xFC, 0x3A, 0x3F, 0xE1, + 0xF3, 0xFE, 0x1F, 0x9E, 0x00, 0x61, 0xF0, 0x0F, 0x0F, 0x00, 0x78, 0x7E, 0x03, 0xC1, 0xFC, 0x3E, + 0x07, 0xF9, 0xF0, 0x1F, 0xCF, 0x80, 0x1E, 0x7C, 0x01, 0xF1, 0xF8, 0x3F, 0x8F, 0xFF, 0xF8, 0x3F, + 0xFF, 0x80, 0xFF, 0xF8, 0x01, 0xFE, 0x00, 0x0E, 0x00, 0x00, 0x78, 0x00, 0x03, 0x80, 0x00, 0x07, + 0x40, 0x00, 0x1F, 0x00, 0x00, 0xFC, 0x00, 0x01, 0x80, 0x00, 0x1E, 0x00, 0x00, 0x78, 0x07, 0x01, + 0xE0, 0x1F, 0xEF, 0x80, 0xFF, 0xFE, 0x03, 0xFF, 0xF8, 0x03, 0xFF, 0xE0, 0x07, 0xC7, 0xE0, 0x3E, + 0x1F, 0xFF, 0xF8, 0x3F, 0xFF, 0xC0, 0x7F, 0xFE, 0x00, 0x7F, 0xC0, 0x00, 0x78, 0xF3, 0x83, 0xA7, + 0xDF, 0x98, 0x00, 0x1C, 0x78, 0xF1, 0xF3, 0xE3, 0xC7, 0x8F, 0xFF, 0xFF, 0xF7, 0xC0, 0x00, 0x1E, + 0x03, 0xE0, 0x38, 0x03, 0xA0, 0x3F, 0x03, 0xF0, 0x38, 0x00, 0x00, 0x1E, 0x01, 0xE0, 0x1E, 0x01, + 0xE0, 0x3E, 0x0F, 0xFE, 0xFF, 0xFF, 0xFF, 0xF7, 0xF0, 0x00, 0xF7, 0xBD, 0xEF, 0x7B, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFF, 0xEF, 0x7B, 0xDE, 0xF0, 0x78, 0x3C, 0x1E, 0x0F, 0x87, 0xC3, 0xE1, 0xF0, 0xF8, + 0x7C, 0x3E, 0x0F, 0x07, 0x83, 0xC1, 0xE0, 0xFE, 0x7F, 0xBF, 0xCF, 0xE0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x07, 0x9C, 0x00, 0x03, 0xCF, 0x00, 0x01, 0xE7, 0x80, 0x00, 0xF3, 0xC0, 0x00, 0x7F, + 0xE0, 0x00, 0x3F, 0xF0, 0x00, 0x1F, 0x7F, 0x00, 0xFF, 0x3F, 0xFF, 0xFF, 0x8F, 0xFF, 0xFF, 0x83, + 0xFF, 0xFF, 0x00, 0x3F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, + 0x1E, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x07, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, + 0x01, 0xE0, 0x00, 0x0E, 0x03, 0xC0, 0x00, 0x3E, 0x0F, 0x80, 0x00, 0xFC, 0x1F, 0x00, 0x03, 0xF8, + 0x1F, 0xC0, 0xFF, 0xFF, 0x3F, 0xFF, 0xFF, 0xFF, 0x3F, 0xFF, 0xFD, 0xFE, 0x3F, 0xFF, 0xE1, 0xFC, + 0x0F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, + 0x0F, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x1C, 0x78, 0xF1, 0xF3, 0xE3, + 0xC7, 0x8F, 0xFF, 0xFF, 0xF7, 0xC0, 0x00, 0x0C, 0x3C, 0x78, 0x70, 0x1E, 0x01, 0xE0, 0x1E, 0x01, + 0xE0, 0x3E, 0x0F, 0xFE, 0xFF, 0xFF, 0xFF, 0xF7, 0xF0, 0x00, 0x00, 0x01, 0xC0, 0x3C, 0x03, 0xE0, + 0x1C, 0x00, 0x00, 0x07, 0x79, 0xFF, 0x1D, 0xE1, 0x98, 0x00, 0x03, 0x00, 0x70, 0x1F, 0x07, 0xF0, + 0x7F, 0x1F, 0xE7, 0xFE, 0xF3, 0xFE, 0x7F, 0xCF, 0xFF, 0xEF, 0xFD, 0xFF, 0x1F, 0xC0, 0x00, 0x00, + 0x00, 0x1E, 0xE0, 0x1F, 0xE0, 0x1F, 0xE0, 0x0C, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x01, + 0xF0, 0x07, 0xF0, 0x1F, 0xF0, 0x3F, 0xF0, 0x7F, 0xF0, 0x7D, 0xF0, 0xF8, 0xF0, 0xF8, 0xF0, 0xFF, + 0xF0, 0x7F, 0xF0, 0x7F, 0xFE, 0x3F, 0xFF, 0x02, 0x7F, 0x00, 0x3F, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x3B, 0x80, 0x00, 0x3D, 0xE0, 0x00, 0x1E, 0xF0, 0x00, 0x06, 0x30, 0xF3, 0x80, 0x00, 0x79, + 0xE0, 0x00, 0x3C, 0xF0, 0x00, 0x1E, 0x78, 0x00, 0x0F, 0xFC, 0x00, 0x07, 0xFE, 0x00, 0x03, 0xEF, + 0xE0, 0x1F, 0xE7, 0xFF, 0xFF, 0xF1, 0xFF, 0xFF, 0xF0, 0x7F, 0xFF, 0xE0, 0x07, 0xFF, 0x80, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xF7, 0x00, 0x00, 0x01, 0xFE, 0x00, 0x00, 0x03, 0xFC, 0x00, 0x00, 0x03, + 0x30, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x01, 0xC0, 0x78, 0x00, + 0x07, 0xC1, 0xF0, 0x00, 0x1F, 0x83, 0xE0, 0x00, 0x7F, 0x03, 0xF8, 0x1F, 0xFF, 0xE7, 0xFF, 0xFF, + 0xFF, 0xE7, 0xFF, 0xFF, 0xBF, 0xC7, 0xFF, 0xFC, 0x3F, 0x81, 0xFF, 0x80, 0x00, 0x00, 0x3B, 0xBD, + 0xEE, 0xF6, 0x30, 0x00, 0x38, 0x3C, 0x1E, 0x0F, 0x87, 0xC1, 0xE0, 0xF0, 0x79, 0xFC, 0xFE, 0x7E, + 0x3E, 0x00, 0x00, 0x00, 0x01, 0xDE, 0x0F, 0xF0, 0x7F, 0x81, 0x98, 0x00, 0x00, 0x38, 0x01, 0xE0, + 0x1F, 0x00, 0xF8, 0x07, 0xC1, 0xFF, 0xEF, 0xFF, 0x7F, 0xFF, 0xCF, 0xC0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x0E, 0x00, 0x00, 0x07, 0x80, 0x00, 0x03, 0x80, 0x00, 0x07, 0x70, 0x00, 0x03, 0xF8, 0x00, + 0x01, 0xDC, 0x00, 0x00, 0x66, 0x1E, 0x70, 0x00, 0x0F, 0x3C, 0x00, 0x07, 0x9E, 0x00, 0x03, 0xCF, + 0x00, 0x01, 0xFF, 0x80, 0x00, 0xFF, 0xC0, 0x00, 0x7D, 0xFC, 0x03, 0xFC, 0xFF, 0xFF, 0xFE, 0x3F, + 0xFF, 0xFE, 0x0F, 0xFF, 0xFC, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x00, + 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x03, 0xB0, 0x00, 0x00, 0x0F, 0xF0, 0x00, + 0x00, 0x1F, 0xE0, 0x00, 0x00, 0x19, 0x80, 0x00, 0x70, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x01, + 0xE0, 0x00, 0x0E, 0x03, 0xC0, 0x00, 0x3E, 0x0F, 0x80, 0x00, 0xFC, 0x1F, 0x00, 0x03, 0xF8, 0x1F, + 0xC0, 0xFF, 0xFF, 0x3F, 0xFF, 0xFF, 0xFF, 0x3F, 0xFF, 0xFD, 0xFE, 0x3F, 0xFF, 0xE1, 0xFC, 0x0F, + 0xFC, 0x00, 0x00, 0x00, 0x38, 0x3C, 0x38, 0xEE, 0xFF, 0xFE, 0x66, 0x00, 0x1C, 0x3C, 0x3C, 0x3E, + 0x3E, 0x1E, 0x1E, 0x1E, 0xFE, 0xFE, 0xFC, 0xF8, 0x00, 0x00, 0x00, 0x78, 0x03, 0xC0, 0x1E, 0x01, + 0xB8, 0x1F, 0xE0, 0xFF, 0x03, 0x30, 0x00, 0x00, 0x70, 0x03, 0xC0, 0x3E, 0x01, 0xF0, 0x0F, 0x83, + 0xFF, 0xDF, 0xFE, 0xFF, 0xFF, 0x9F, 0x80, 0x00, 0x7E, 0x00, 0x7F, 0xE0, 0x1F, 0xFF, 0x8F, 0xFF, + 0xE6, 0x3F, 0xF0, 0x07, 0xF8, 0x0F, 0xFC, 0x1F, 0xF0, 0x1F, 0xC0, 0x1F, 0x80, 0x1F, 0x80, 0x0F, + 0x80, 0x0F, 0x87, 0x07, 0x87, 0x83, 0xC3, 0xC1, 0xE0, 0xE0, 0xF8, 0x00, 0x7C, 0x00, 0x1F, 0x81, + 0xCF, 0xFF, 0xE3, 0xFF, 0xF8, 0xFF, 0xFC, 0x1F, 0xF0, 0x7E, 0x00, 0x07, 0xFE, 0x00, 0x1F, 0xFF, + 0x80, 0xFF, 0xFE, 0x06, 0x3F, 0xF0, 0x00, 0x7F, 0x80, 0x0F, 0xFC, 0x01, 0xFF, 0xC0, 0x1F, 0xDE, + 0x01, 0xF8, 0xFF, 0x9F, 0x83, 0xFE, 0xF8, 0x0F, 0xFF, 0x87, 0x3F, 0x78, 0x78, 0x03, 0xC3, 0xC0, + 0x1E, 0x0E, 0x00, 0xF8, 0x00, 0x07, 0xC0, 0x00, 0x1F, 0x81, 0xC0, 0xFF, 0xFE, 0x03, 0xFF, 0xF8, + 0x0F, 0xFF, 0xC0, 0x1F, 0xF0, 0x00, 0x7F, 0x00, 0x7F, 0xC0, 0x7F, 0xF0, 0x7F, 0xFE, 0x00, 0xFE, + 0x00, 0x7E, 0x03, 0xFE, 0xFF, 0xF8, 0xFF, 0xE0, 0xFF, 0x80, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x03, 0x80, 0x07, 0xC0, 0x07, 0xC0, 0x03, 0x80, 0x7F, 0x00, 0x0F, 0xF8, 0x01, 0xFF, 0xC0, 0x3F, + 0xFF, 0x00, 0x0F, 0xE0, 0x00, 0xFC, 0x00, 0xFF, 0x87, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xF3, 0xFF, + 0xF8, 0x3F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0xE0, 0x00, 0x3C, 0x00, 0x03, 0x80, + 0x00, 0x7E, 0x00, 0x7F, 0xE0, 0x1F, 0xFF, 0x8F, 0xFF, 0xE6, 0x3F, 0xF0, 0x07, 0xF8, 0x0F, 0xFC, + 0x1F, 0xF0, 0x1F, 0xC0, 0x1F, 0x80, 0x1F, 0x80, 0x0F, 0x80, 0x0F, 0x80, 0x07, 0x80, 0x03, 0xC0, + 0x01, 0xE0, 0x00, 0xF8, 0x00, 0x7C, 0x00, 0x1F, 0x81, 0xCF, 0xFF, 0xE3, 0xFF, 0xF8, 0xFF, 0xFC, + 0x1F, 0xF0, 0x7E, 0x00, 0x07, 0xFE, 0x00, 0x1F, 0xFF, 0x80, 0xFF, 0xFE, 0x06, 0x3F, 0xF0, 0x00, + 0x7F, 0x80, 0x0F, 0xFC, 0x01, 0xFF, 0xC0, 0x1F, 0xDE, 0x01, 0xF8, 0xFF, 0x9F, 0x83, 0xFE, 0xF8, + 0x0F, 0xFF, 0x80, 0x3F, 0x78, 0x00, 0x03, 0xC0, 0x00, 0x1E, 0x00, 0x00, 0xF8, 0x00, 0x07, 0xC0, + 0x00, 0x1F, 0x81, 0xC0, 0xFF, 0xFE, 0x03, 0xFF, 0xF8, 0x0F, 0xFF, 0xC0, 0x1F, 0xF0, 0x00, 0x7F, + 0x00, 0x7F, 0xC0, 0x7F, 0xF0, 0x7F, 0xFE, 0x00, 0xFE, 0x00, 0x7E, 0x03, 0xFE, 0xFF, 0xF8, 0xFF, + 0xE0, 0xFF, 0x80, 0xFE, 0x00, 0x00, 0x00, 0x7F, 0x00, 0x0F, 0xF8, 0x01, 0xFF, 0xC0, 0x3F, 0xFF, + 0x00, 0x0F, 0xE0, 0x00, 0xFC, 0x00, 0xFF, 0x87, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xF3, 0xFF, 0xF8, + 0x3F, 0x00, 0x00, 0x00, 0x01, 0x80, 0x01, 0xE0, 0x00, 0xF0, 0x00, 0x78, 0x00, 0x18, 0x00, 0x00, + 0x01, 0xF8, 0x01, 0xFF, 0x80, 0x7F, 0xFE, 0x3F, 0xFF, 0x98, 0xFF, 0xC0, 0x1F, 0xE0, 0x3F, 0xF0, + 0x7F, 0xC0, 0x7F, 0x00, 0x7E, 0x00, 0x7E, 0x00, 0x3E, 0x00, 0x3E, 0x00, 0x1E, 0x00, 0x0F, 0x00, + 0x07, 0x80, 0x03, 0xE0, 0x01, 0xF0, 0x00, 0x7E, 0x07, 0x3F, 0xFF, 0x8F, 0xFF, 0xE3, 0xFF, 0xF0, + 0x7F, 0xC0, 0x01, 0x80, 0x00, 0x1E, 0x00, 0x00, 0xF0, 0x00, 0x07, 0x80, 0x00, 0x18, 0x00, 0x00, + 0x00, 0x01, 0xF8, 0x00, 0x1F, 0xF8, 0x00, 0x7F, 0xFE, 0x03, 0xFF, 0xF8, 0x18, 0xFF, 0xC0, 0x01, + 0xFE, 0x00, 0x3F, 0xF0, 0x07, 0xFF, 0x00, 0x7F, 0x78, 0x07, 0xE3, 0xFE, 0x7E, 0x0F, 0xFB, 0xE0, + 0x3F, 0xFE, 0x00, 0xFD, 0xE0, 0x00, 0x0F, 0x00, 0x00, 0x78, 0x00, 0x03, 0xE0, 0x00, 0x1F, 0x00, + 0x00, 0x7E, 0x07, 0x03, 0xFF, 0xF8, 0x0F, 0xFF, 0xE0, 0x3F, 0xFF, 0x00, 0x7F, 0xC0, 0x00, 0x08, + 0x00, 0x3C, 0x00, 0x3E, 0x00, 0x3C, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0x00, 0x7F, + 0xC0, 0x7F, 0xF0, 0x7F, 0xFE, 0x00, 0xFE, 0x00, 0x7E, 0x03, 0xFE, 0xFF, 0xF8, 0xFF, 0xE0, 0xFF, + 0x80, 0xFE, 0x00, 0x00, 0x00, 0x08, 0x00, 0x07, 0x80, 0x00, 0xF0, 0x00, 0x1E, 0x00, 0x01, 0x80, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xF8, 0x00, 0x7F, 0xC0, 0x0F, 0xFE, 0x01, 0xFF, 0xF8, 0x00, + 0x7F, 0x00, 0x07, 0xE0, 0x07, 0xFC, 0x3F, 0xFF, 0xF7, 0xFF, 0xFF, 0xFF, 0x9F, 0xFF, 0xC1, 0xF8, + 0x00, 0x00, 0x00, 0x01, 0x80, 0x78, 0x07, 0xC0, 0x3E, 0x03, 0xE0, 0x1F, 0x01, 0xF0, 0x0F, 0x00, + 0xF7, 0xFF, 0x7F, 0xF7, 0xFE, 0x7F, 0xC0, 0x60, 0x01, 0x80, 0x03, 0xC0, 0x01, 0xF0, 0x00, 0x7C, + 0x00, 0x3E, 0x00, 0x0F, 0x80, 0x07, 0xC0, 0x01, 0xE0, 0x00, 0xF8, 0x3F, 0xFF, 0x9F, 0xFF, 0xCF, + 0xFF, 0xF7, 0xFD, 0xF0, 0x30, 0x00, 0x04, 0x00, 0xE0, 0x1F, 0x00, 0xF0, 0x06, 0x00, 0x00, 0x01, + 0x80, 0x78, 0x07, 0xC0, 0x3E, 0x03, 0xE0, 0x1F, 0x01, 0xF0, 0x0F, 0x00, 0xF7, 0xFF, 0x7F, 0xF7, + 0xFE, 0x7F, 0xC0, 0x60, 0x04, 0x00, 0x07, 0x00, 0x07, 0xC0, 0x01, 0xE0, 0x00, 0x60, 0x00, 0x00, + 0x00, 0x06, 0x00, 0x0F, 0x00, 0x07, 0xC0, 0x01, 0xF0, 0x00, 0xF8, 0x00, 0x3E, 0x00, 0x1F, 0x00, + 0x07, 0x80, 0x03, 0xE0, 0xFF, 0xFE, 0x7F, 0xFF, 0x3F, 0xFF, 0xDF, 0xF7, 0xC0, 0xC0, 0x00, 0x01, + 0x01, 0xE0, 0xF8, 0x1F, 0x07, 0xC0, 0xF0, 0x3C, 0x0F, 0x07, 0xC1, 0xF0, 0xF8, 0xFE, 0xFF, 0x3F, + 0x87, 0x81, 0x80, 0x01, 0x00, 0x0F, 0x00, 0x3E, 0x00, 0x3E, 0x00, 0x7C, 0x00, 0x78, 0x00, 0xFF, + 0x01, 0xFE, 0x07, 0xFE, 0x0F, 0xF8, 0x3E, 0x01, 0xFC, 0x0F, 0xF0, 0x1F, 0xC0, 0x3E, 0x00, 0x30, + 0x00, 0x03, 0x01, 0xE0, 0x78, 0x1E, 0x03, 0x00, 0x00, 0x00, 0x04, 0x07, 0x83, 0xE0, 0x7C, 0x1F, + 0x03, 0xC0, 0xF0, 0x3C, 0x1F, 0x07, 0xC3, 0xE3, 0xFB, 0xFC, 0xFE, 0x1E, 0x06, 0x00, 0x02, 0x00, + 0x0E, 0x00, 0x3E, 0x00, 0x38, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x07, 0x80, 0x1F, + 0x00, 0x1F, 0x00, 0x3E, 0x00, 0x3C, 0x00, 0x7F, 0x80, 0xFF, 0x03, 0xFF, 0x07, 0xFC, 0x1F, 0x00, + 0xFE, 0x07, 0xF8, 0x0F, 0xE0, 0x1F, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, + 0x00, 0x07, 0x80, 0x00, 0x00, 0x03, 0xE0, 0x00, 0x60, 0x61, 0xF0, 0x00, 0xF8, 0x3C, 0x78, 0x00, + 0x3C, 0x3E, 0x3D, 0xE0, 0x1E, 0x1E, 0x1E, 0xF0, 0x0F, 0x8F, 0x0F, 0x78, 0x07, 0xFF, 0xFF, 0xFC, + 0x03, 0xFF, 0xFF, 0xFE, 0x01, 0xFF, 0xFF, 0xDF, 0x00, 0xFF, 0xDF, 0xCF, 0x80, 0x78, 0x00, 0x03, + 0xE0, 0xFC, 0x00, 0x01, 0xFF, 0xFC, 0x00, 0x00, 0x7F, 0xFE, 0x00, 0x00, 0x1F, 0xFE, 0x00, 0x00, + 0x03, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, + 0x30, 0x30, 0x78, 0x00, 0x03, 0xE0, 0xF1, 0xE0, 0x00, 0x07, 0x87, 0xC7, 0x81, 0xE0, 0x1E, 0x1E, + 0x1E, 0x07, 0x80, 0x7C, 0x78, 0x7C, 0x1E, 0x01, 0xFF, 0xFF, 0xFE, 0xF8, 0x07, 0xFF, 0xFF, 0xFF, + 0xE0, 0x1F, 0xFF, 0xFF, 0xFF, 0x80, 0x7F, 0xEF, 0xEF, 0xFE, 0x01, 0xE0, 0x00, 0x00, 0x7C, 0x1F, + 0x80, 0x00, 0x01, 0xFF, 0xFC, 0x00, 0x00, 0x03, 0xFF, 0xF0, 0x00, 0x00, 0x07, 0xFF, 0x80, 0x00, + 0x00, 0x07, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x00, 0xF8, 0x00, 0x00, 0xF0, 0x40, + 0xE1, 0xE1, 0xE1, 0xE3, 0xE3, 0xC3, 0xC7, 0xC7, 0x87, 0x87, 0x9F, 0x1F, 0x0F, 0xFF, 0xFF, 0xFF, + 0xFF, 0xFF, 0xFB, 0xFF, 0xFF, 0xF7, 0xBF, 0xBF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, + 0x00, 0x03, 0xC0, 0x08, 0x1C, 0x3C, 0x01, 0xE1, 0xE1, 0xE0, 0x1E, 0x1E, 0x1E, 0x01, 0xE1, 0xE1, + 0xE0, 0x3E, 0x3E, 0x3E, 0x0F, 0xFF, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF7, + 0xF7, 0xF3, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, + 0x03, 0xC0, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x00, 0x01, 0xD8, 0x00, 0x00, 0x01, 0xFE, 0x00, 0x00, + 0x00, 0xFF, 0x00, 0x00, 0x00, 0x33, 0x0E, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x07, 0xC0, + 0x00, 0xC0, 0xC3, 0xE0, 0x01, 0xF0, 0x78, 0xF0, 0x00, 0x78, 0x7C, 0x7B, 0xC0, 0x3C, 0x3C, 0x3D, + 0xE0, 0x1F, 0x1E, 0x1E, 0xF0, 0x0F, 0xFF, 0xFF, 0xF8, 0x07, 0xFF, 0xFF, 0xFC, 0x03, 0xFF, 0xFF, + 0xBE, 0x01, 0xFF, 0xBF, 0x9F, 0x00, 0xF0, 0x00, 0x07, 0xC1, 0xF8, 0x00, 0x03, 0xFF, 0xF8, 0x00, + 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x3F, 0xFC, 0x00, 0x00, 0x07, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x01, 0xC0, + 0x00, 0x00, 0x00, 0x1D, 0x80, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x03, 0xFC, 0x00, 0x00, + 0x00, 0x06, 0x60, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x30, + 0x30, 0x78, 0x00, 0x03, 0xE0, 0xF1, 0xE0, 0x00, 0x07, 0x87, 0xC7, 0x81, 0xE0, 0x1E, 0x1E, 0x1E, + 0x07, 0x80, 0x7C, 0x78, 0x7C, 0x1E, 0x01, 0xFF, 0xFF, 0xFE, 0xF8, 0x07, 0xFF, 0xFF, 0xFF, 0xE0, + 0x1F, 0xFF, 0xFF, 0xFF, 0x80, 0x7F, 0xEF, 0xEF, 0xFE, 0x01, 0xE0, 0x00, 0x00, 0x7C, 0x1F, 0x80, + 0x00, 0x01, 0xFF, 0xFC, 0x00, 0x00, 0x03, 0xFF, 0xF0, 0x00, 0x00, 0x07, 0xFF, 0x80, 0x00, 0x00, + 0x07, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x78, 0x00, 0x00, 0xF0, + 0x00, 0x03, 0xF0, 0x00, 0x0F, 0xF0, 0x00, 0x1F, 0xE0, 0x00, 0x19, 0x8E, 0x00, 0x00, 0x7C, 0x00, + 0x00, 0x78, 0x20, 0x70, 0xF0, 0xF0, 0xF1, 0xF1, 0xE1, 0xE3, 0xE3, 0xC3, 0xC3, 0xCF, 0x8F, 0x87, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFD, 0xFF, 0xFF, 0xFB, 0xDF, 0xDF, 0xE0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x77, 0x00, + 0x00, 0x07, 0xF8, 0x00, 0x00, 0x7F, 0x00, 0x00, 0x03, 0x30, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, + 0x03, 0xC0, 0x08, 0x1C, 0x3C, 0x01, 0xE1, 0xE1, 0xE0, 0x1E, 0x1E, 0x1E, 0x01, 0xE1, 0xE1, 0xE0, + 0x3E, 0x3E, 0x3E, 0x0F, 0xFF, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF7, 0xF7, + 0xF3, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0x80, 0x00, 0x00, 0x1F, 0xF8, 0x00, 0x0C, + 0x07, 0xFF, 0x00, 0x07, 0xC1, 0xFF, 0xF0, 0x00, 0xF8, 0x7E, 0x3E, 0xF0, 0x0F, 0x1F, 0x03, 0xDE, + 0x01, 0xF7, 0xC0, 0xFB, 0xC0, 0x3F, 0xFF, 0xFE, 0xF8, 0x07, 0xFF, 0xFF, 0xDF, 0x00, 0xFF, 0xFF, + 0xF3, 0xE0, 0x1F, 0xFF, 0xF8, 0x7C, 0x03, 0xC3, 0xF8, 0x07, 0xC1, 0xF8, 0x00, 0x00, 0xFF, 0xFE, + 0x00, 0x00, 0x0F, 0xFF, 0xC0, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x07, 0xF8, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x3F, 0x80, 0x00, 0x00, 0x01, 0xFF, 0x80, 0x00, 0x0C, 0x07, 0xFF, 0x00, 0x00, + 0x7C, 0x1F, 0xFF, 0x00, 0x00, 0xF8, 0x7E, 0x3E, 0x0F, 0x00, 0xF1, 0xF0, 0x3C, 0x1E, 0x01, 0xF7, + 0xC0, 0xF8, 0x3C, 0x03, 0xFF, 0xFF, 0xFC, 0xF8, 0x07, 0xFF, 0xFF, 0xFD, 0xF0, 0x0F, 0xFF, 0xFF, + 0xFB, 0xE0, 0x1F, 0xFF, 0xFF, 0xF7, 0xC0, 0x3C, 0x3F, 0x80, 0x07, 0xC1, 0xF8, 0x00, 0x00, 0x0F, + 0xFF, 0xE0, 0x00, 0x00, 0x0F, 0xFF, 0xC0, 0x00, 0x00, 0x0F, 0xFF, 0x00, 0x00, 0x00, 0x07, 0xF8, + 0x00, 0x00, 0x00, 0x00, 0x01, 0xF8, 0x00, 0x07, 0xFC, 0x10, 0x0F, 0xFE, 0x1E, 0x1F, 0xFF, 0x1E, + 0x3F, 0x1F, 0x3C, 0x7C, 0x1F, 0x3C, 0xF8, 0x1F, 0xFF, 0xF1, 0xFE, 0xFF, 0xFF, 0xFE, 0xFF, 0xFF, + 0xFC, 0xF7, 0xFF, 0xF0, 0x00, 0xFF, 0x80, 0x00, 0x01, 0xF8, 0x00, 0x00, 0x7F, 0xC0, 0x10, 0x0F, + 0xFE, 0x01, 0xE1, 0xFF, 0xF0, 0x1E, 0x3F, 0x1F, 0x03, 0xC7, 0xC1, 0xF0, 0x3C, 0xF8, 0x1F, 0x0F, + 0xFF, 0x1F, 0xFC, 0xFF, 0xFF, 0xFF, 0xEF, 0xFF, 0xFF, 0xFE, 0xF7, 0xFF, 0xFF, 0xE0, 0x0F, 0xF8, + 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0xF8, 0x00, 0x00, + 0x00, 0x1E, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0xFC, 0x00, 0x00, 0x00, 0xFF, 0xC0, 0x00, 0x60, 0x3F, 0xF8, 0x00, 0x3E, 0x0F, + 0xFF, 0x80, 0x07, 0xC3, 0xF1, 0xF7, 0x80, 0x78, 0xF8, 0x1E, 0xF0, 0x0F, 0xBE, 0x07, 0xDE, 0x01, + 0xFF, 0xFF, 0xF7, 0xC0, 0x3F, 0xFF, 0xFE, 0xF8, 0x07, 0xFF, 0xFF, 0x9F, 0x00, 0xFF, 0xFF, 0xC3, + 0xE0, 0x1E, 0x1F, 0xC0, 0x3E, 0x0F, 0xC0, 0x00, 0x07, 0xFF, 0xF0, 0x00, 0x00, 0x7F, 0xFE, 0x00, + 0x00, 0x07, 0xFF, 0x80, 0x00, 0x00, 0x3F, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, + 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0xF8, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, + 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, + 0xC0, 0x00, 0x00, 0x00, 0xFF, 0xC0, 0x00, 0x06, 0x03, 0xFF, 0x80, 0x00, 0x3E, 0x0F, 0xFF, 0x80, + 0x00, 0x7C, 0x3F, 0x1F, 0x07, 0x80, 0x78, 0xF8, 0x1E, 0x0F, 0x00, 0xFB, 0xE0, 0x7C, 0x1E, 0x01, + 0xFF, 0xFF, 0xFE, 0x7C, 0x03, 0xFF, 0xFF, 0xFE, 0xF8, 0x07, 0xFF, 0xFF, 0xFD, 0xF0, 0x0F, 0xFF, + 0xFF, 0xFB, 0xE0, 0x1E, 0x1F, 0xC0, 0x03, 0xE0, 0xFC, 0x00, 0x00, 0x07, 0xFF, 0xF0, 0x00, 0x00, + 0x07, 0xFF, 0xE0, 0x00, 0x00, 0x07, 0xFF, 0x80, 0x00, 0x00, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x40, 0x00, 0x01, 0xE0, 0x00, 0x01, 0xF0, 0x00, 0x01, 0xE0, 0x00, 0x00, 0xC0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF8, 0x00, 0x07, 0xFC, 0x10, 0x0F, 0xFE, 0x1E, 0x1F, 0xFF, + 0x1E, 0x3F, 0x1F, 0x3C, 0x7C, 0x1F, 0x3C, 0xF8, 0x1F, 0xFF, 0xF1, 0xFE, 0xFF, 0xFF, 0xFE, 0xFF, + 0xFF, 0xFC, 0xF7, 0xFF, 0xF0, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x40, 0x00, 0x00, 0x1E, 0x00, 0x00, + 0x01, 0xF0, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x1F, 0x80, 0x00, 0x07, 0xFC, 0x01, 0x00, 0xFF, 0xE0, 0x1E, 0x1F, 0xFF, 0x01, 0xE3, + 0xF1, 0xF0, 0x3C, 0x7C, 0x1F, 0x03, 0xCF, 0x81, 0xF0, 0xFF, 0xF1, 0xFF, 0xCF, 0xFF, 0xFF, 0xFE, + 0xFF, 0xFF, 0xFF, 0xEF, 0x7F, 0xFF, 0xFE, 0x00, 0xFF, 0x80, 0x00, 0x07, 0x00, 0x00, 0x7C, 0x00, + 0x03, 0xE0, 0x00, 0x0F, 0x00, 0x00, 0x78, 0x00, 0x03, 0xC0, 0x00, 0x1E, 0x00, 0x00, 0xF0, 0x00, + 0x07, 0x9F, 0xC0, 0x3D, 0xFF, 0x01, 0xFF, 0xFC, 0x0F, 0xFF, 0xE0, 0x7F, 0x0F, 0x03, 0xF0, 0x78, + 0x1F, 0x03, 0xCF, 0xFF, 0xFE, 0xFF, 0xFF, 0xE7, 0xFF, 0xFE, 0x3F, 0xFF, 0xE0, 0x3F, 0xF0, 0x00, + 0x07, 0x00, 0x00, 0x0F, 0x80, 0x00, 0x0F, 0x80, 0x00, 0x07, 0x80, 0x00, 0x07, 0x80, 0x00, 0x07, + 0x80, 0x00, 0x07, 0x80, 0x00, 0x07, 0x80, 0x00, 0x07, 0x9F, 0xC0, 0x07, 0xBF, 0xE0, 0x07, 0xFF, + 0xF0, 0x07, 0xFF, 0xF0, 0x07, 0xF0, 0xF0, 0x07, 0xE0, 0xF0, 0x07, 0xC0, 0xF0, 0x7F, 0xFF, 0xFE, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x1F, 0xF8, 0x00, 0x3C, 0x00, 0x0F, 0x00, + 0x03, 0xC0, 0x00, 0xF0, 0x00, 0x3C, 0x00, 0x0F, 0x00, 0x03, 0xC0, 0x00, 0xF0, 0x60, 0x3C, 0xFF, + 0x0F, 0x7F, 0xE3, 0xFF, 0xF8, 0xFF, 0xFF, 0x3F, 0x87, 0xCF, 0xC1, 0xF3, 0xE0, 0xFF, 0xFF, 0xFE, + 0xFF, 0xFF, 0xBF, 0xFF, 0x8F, 0xFF, 0x83, 0xF0, 0x00, 0x3C, 0x00, 0x00, 0xF0, 0x00, 0x03, 0xC0, + 0x00, 0x0F, 0x00, 0x00, 0x3C, 0x00, 0x00, 0xF0, 0x00, 0x03, 0xC0, 0x00, 0x0F, 0x06, 0x00, 0x3C, + 0xFF, 0x00, 0xF7, 0xFE, 0x03, 0xFF, 0xF8, 0x0F, 0xFF, 0xF0, 0x3F, 0x87, 0xC0, 0xFC, 0x1F, 0x03, + 0xE0, 0xFC, 0x3F, 0xFF, 0xFC, 0xFF, 0xFF, 0xFB, 0xFF, 0xFF, 0xEF, 0xFF, 0xBF, 0xBF, 0x00, 0x00, + 0x07, 0x00, 0x00, 0x7C, 0x18, 0x03, 0xE1, 0xE0, 0x0F, 0x0F, 0x00, 0x78, 0x78, 0x03, 0xC1, 0x80, + 0x1E, 0x00, 0x00, 0xF0, 0x00, 0x07, 0x9F, 0xC0, 0x3D, 0xFF, 0x01, 0xFF, 0xFC, 0x0F, 0xFF, 0xE0, + 0x7F, 0x0F, 0x03, 0xF0, 0x78, 0x1F, 0x03, 0xCF, 0xFF, 0xFE, 0xFF, 0xFF, 0xE7, 0xFF, 0xFE, 0x3F, + 0xFF, 0xE0, 0x3F, 0xF0, 0x00, 0x07, 0x00, 0x00, 0x0F, 0x82, 0x00, 0x0F, 0x8F, 0x00, 0x07, 0x8F, + 0x80, 0x07, 0x8F, 0x00, 0x07, 0x86, 0x00, 0x07, 0x80, 0x00, 0x07, 0x80, 0x00, 0x07, 0x9F, 0xC0, + 0x07, 0xBF, 0xE0, 0x07, 0xFF, 0xF0, 0x07, 0xFF, 0xF0, 0x07, 0xF0, 0xF0, 0x07, 0xE0, 0xF0, 0x07, + 0xC0, 0xF0, 0x7F, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x1F, 0xF8, + 0x00, 0x3C, 0x00, 0x0F, 0x04, 0x03, 0xC3, 0x80, 0xF1, 0xF0, 0x3C, 0x78, 0x0F, 0x0C, 0x03, 0xC0, + 0x00, 0xF0, 0x60, 0x3C, 0xFF, 0x0F, 0x7F, 0xE3, 0xFF, 0xF8, 0xFF, 0xFF, 0x3F, 0x87, 0xCF, 0xC1, + 0xF3, 0xE0, 0xFF, 0xFF, 0xFE, 0xFF, 0xFF, 0xBF, 0xFF, 0x8F, 0xFF, 0x83, 0xF0, 0x00, 0x3C, 0x00, + 0x00, 0xF0, 0x40, 0x03, 0xC3, 0x80, 0x0F, 0x1F, 0x00, 0x3C, 0x78, 0x00, 0xF0, 0xC0, 0x03, 0xC0, + 0x00, 0x0F, 0x06, 0x00, 0x3C, 0xFF, 0x00, 0xF7, 0xFE, 0x03, 0xFF, 0xF8, 0x0F, 0xFF, 0xF0, 0x3F, + 0x87, 0xC0, 0xFC, 0x1F, 0x03, 0xE0, 0xFC, 0x3F, 0xFF, 0xFC, 0xFF, 0xFF, 0xFB, 0xFF, 0xFF, 0xEF, + 0xFF, 0xBF, 0xBF, 0x00, 0x00, 0x0F, 0xC0, 0x1F, 0xE0, 0x1F, 0xF0, 0x0F, 0xF8, 0x07, 0x80, 0x03, + 0xC0, 0x01, 0xE0, 0xC0, 0xFF, 0xE0, 0x3F, 0xF8, 0x0F, 0xFC, 0x0F, 0xF8, 0x07, 0xE0, 0x07, 0xC0, + 0x03, 0xC0, 0x03, 0xE0, 0x01, 0xE0, 0x00, 0xF0, 0x00, 0x78, 0x00, 0x3E, 0x00, 0x0F, 0xC0, 0xE7, + 0xFF, 0xF1, 0xFF, 0xF8, 0x7F, 0xFC, 0x0F, 0xF8, 0x07, 0xE0, 0x0F, 0xF8, 0x0F, 0xFE, 0x07, 0xFF, + 0x03, 0xC7, 0x81, 0xF3, 0xC0, 0x7F, 0xE0, 0x1F, 0xE0, 0x07, 0xFF, 0x07, 0xFF, 0x8F, 0xFF, 0xEF, + 0xFF, 0xE7, 0xC0, 0x07, 0xC0, 0x03, 0xC0, 0x01, 0xE0, 0x00, 0xF0, 0x00, 0x7E, 0x0E, 0x3F, 0xFF, + 0x0F, 0xFF, 0xC3, 0xFF, 0xE0, 0x7F, 0x80, 0x03, 0xC0, 0x7F, 0x07, 0xF8, 0x7F, 0xC3, 0xE4, 0x1E, + 0x00, 0xF0, 0x07, 0x86, 0x3F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, 0xF8, 0x00, 0x00, 0x03, 0xF0, + 0x07, 0xFC, 0x07, 0xFF, 0x07, 0xFF, 0x83, 0xE3, 0xC1, 0xFB, 0xE0, 0x7F, 0xE0, 0x1F, 0xF0, 0x7F, + 0xFF, 0x3F, 0xFF, 0xDF, 0xFF, 0xEF, 0xCF, 0xF0, 0x00, 0x00, 0x03, 0x00, 0x03, 0xC0, 0x01, 0xE0, + 0x00, 0xF0, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x80, 0x3F, 0xC0, 0x3F, 0xE0, 0x1F, + 0xF0, 0x0F, 0x00, 0x07, 0x80, 0x03, 0xC1, 0x81, 0xFF, 0xC0, 0x7F, 0xF0, 0x1F, 0xF8, 0x1F, 0xF0, + 0x0F, 0xC0, 0x0F, 0x80, 0x07, 0x80, 0x07, 0xC0, 0x03, 0xC0, 0x01, 0xE0, 0x00, 0xF0, 0x00, 0x7C, + 0x00, 0x1F, 0x81, 0xCF, 0xFF, 0xE3, 0xFF, 0xF0, 0xFF, 0xF8, 0x1F, 0xF0, 0x01, 0x80, 0x01, 0xE0, + 0x00, 0xF0, 0x00, 0x78, 0x00, 0x18, 0x00, 0x00, 0x00, 0x1F, 0x80, 0x3F, 0xE0, 0x3F, 0xF8, 0x1F, + 0xFC, 0x0F, 0x1E, 0x07, 0xCF, 0x01, 0xFF, 0x80, 0x7F, 0x80, 0x1F, 0xFC, 0x1F, 0xFE, 0x3F, 0xFF, + 0xBF, 0xFF, 0x9F, 0x00, 0x1F, 0x00, 0x0F, 0x00, 0x07, 0x80, 0x03, 0xC0, 0x01, 0xF8, 0x38, 0xFF, + 0xFC, 0x3F, 0xFF, 0x0F, 0xFF, 0x81, 0xFE, 0x00, 0x03, 0x00, 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x30, + 0x00, 0x00, 0x0F, 0x01, 0xFC, 0x1F, 0xE1, 0xFF, 0x0F, 0x90, 0x78, 0x03, 0xC0, 0x1E, 0x18, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xBF, 0xE0, 0x00, 0x00, 0x00, 0x80, 0x00, 0xE0, 0x00, 0xF8, 0x00, + 0x78, 0x00, 0x18, 0x00, 0x00, 0x00, 0x0F, 0xC0, 0x1F, 0xF0, 0x1F, 0xFC, 0x1F, 0xFE, 0x0F, 0x8F, + 0x07, 0xEF, 0x81, 0xFF, 0x80, 0x7F, 0xC1, 0xFF, 0xFC, 0xFF, 0xFF, 0x7F, 0xFF, 0xBF, 0x3F, 0xC0, + 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x07, 0x80, 0x00, + 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x01, 0xFC, 0x00, 0x01, 0xFF, 0x00, 0x00, + 0xFF, 0x80, 0x00, 0xFB, 0xEE, 0x00, 0x78, 0xF7, 0x80, 0x3E, 0x7B, 0xC0, 0x1F, 0xFD, 0xE0, 0x0F, + 0xFF, 0xF0, 0x03, 0xFF, 0xF8, 0x00, 0x7F, 0xBF, 0x80, 0x3F, 0x9F, 0xFF, 0xFF, 0xC7, 0xFF, 0xFF, + 0xC1, 0xFF, 0xFF, 0xC0, 0x1F, 0xFF, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, + 0x01, 0xF0, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x07, 0xC0, 0x00, 0x00, 0x3F, 0x81, 0xC0, 0x01, 0xFF, 0x07, 0x80, 0x0F, 0xFC, + 0x1E, 0x00, 0x3C, 0xF8, 0x78, 0x00, 0xF1, 0xE3, 0xE0, 0x03, 0xCF, 0x8F, 0x80, 0x0F, 0xFC, 0x1F, + 0xC0, 0x7F, 0xFE, 0x7F, 0xFF, 0xFF, 0xFC, 0xFF, 0xFF, 0xFF, 0xF1, 0xFF, 0xFF, 0xFF, 0xC0, 0xFF, + 0xE0, 0x00, 0x02, 0x00, 0x70, 0x0F, 0x80, 0x78, 0x03, 0x00, 0x00, 0x07, 0x81, 0xFC, 0x3F, 0xE3, + 0xFE, 0x7D, 0xF7, 0x8F, 0x7C, 0xF7, 0xFF, 0x7F, 0xF3, 0xFF, 0x0F, 0xFF, 0xFE, 0xFF, 0xEF, 0xFC, + 0xFF, 0x08, 0x00, 0x03, 0x00, 0x07, 0x80, 0x07, 0x80, 0x07, 0x80, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x0F, 0xC0, 0x1F, 0xE0, 0x3F, 0xE0, 0x3F, 0xF0, 0x7C, 0xF0, 0x78, 0xF0, 0x7D, 0xF0, 0x3F, + 0xF0, 0xFF, 0xFE, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xDE, + 0x00, 0x1F, 0xE0, 0x01, 0xFE, 0x00, 0x0C, 0xC0, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0xFC, 0x00, + 0x1F, 0xE0, 0x03, 0xFE, 0x00, 0x3F, 0xF7, 0x87, 0xCF, 0x78, 0x7C, 0xF7, 0x87, 0xFF, 0xF8, 0x3F, + 0xFF, 0x83, 0xFF, 0xF8, 0x1F, 0xFF, 0x80, 0x1F, 0x7E, 0x07, 0xE7, 0xFF, 0xFC, 0x3F, 0xFF, 0xC1, + 0xFF, 0xF0, 0x07, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1D, 0xE0, 0x00, 0x3F, 0xE0, 0x00, 0x1D, + 0xE0, 0x00, 0x0C, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x1F, 0xC0, 0x00, 0x3F, 0xE0, + 0x00, 0x3F, 0xF0, 0x00, 0x3D, 0xF0, 0x70, 0x78, 0xF0, 0x78, 0x7F, 0xFE, 0x78, 0x3F, 0xFF, 0xF8, + 0x3F, 0xFF, 0xF8, 0x1F, 0xFE, 0xF8, 0x01, 0xF8, 0xF8, 0x03, 0xE0, 0x7E, 0x0F, 0xE0, 0x7F, 0xFF, + 0xC0, 0x3F, 0xFF, 0x80, 0x1F, 0xFF, 0x00, 0x07, 0xFC, 0x00, 0x00, 0x01, 0xDC, 0x3D, 0xE1, 0xDE, + 0x18, 0xC0, 0x00, 0x07, 0x81, 0xFC, 0x3F, 0xE3, 0xFE, 0x7D, 0xF7, 0x8F, 0x7C, 0xF7, 0xFF, 0x7F, + 0xF3, 0xFF, 0x0F, 0xFF, 0xFE, 0xFF, 0xEF, 0xFC, 0xFF, 0x08, 0x00, 0x00, 0x00, 0x1D, 0xE0, 0x1F, + 0xE0, 0x1F, 0xE0, 0x0C, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xC0, 0x1F, 0xE0, 0x3F, 0xE0, 0x3F, + 0xF0, 0x7C, 0xF0, 0x78, 0xF0, 0x7D, 0xF0, 0x3F, 0xF0, 0xFF, 0xFE, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, + 0xFE, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x78, 0x00, 0x00, 0xF0, 0x00, 0x01, 0xE0, 0x00, + 0xC3, 0xC0, 0x07, 0xC7, 0x80, 0x0F, 0x8F, 0x00, 0x3C, 0x1E, 0x00, 0x3C, 0x3C, 0xE0, 0x38, 0x79, + 0xE0, 0xF8, 0xF3, 0xC7, 0xE1, 0xE7, 0x87, 0x83, 0xDF, 0x0C, 0x07, 0xBE, 0x00, 0x0F, 0x3F, 0x80, + 0xFE, 0x7F, 0xFF, 0xFC, 0x7F, 0xFF, 0xF0, 0x7F, 0xFF, 0xC0, 0x1F, 0xFC, 0x00, 0x00, 0x00, 0x3C, + 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x1E, 0x00, 0x00, 0xC3, 0xC0, 0x00, 0x7C, + 0x78, 0x00, 0x0F, 0x8F, 0x00, 0x03, 0xC1, 0xE0, 0x00, 0x3C, 0x3C, 0x0E, 0x03, 0x87, 0x81, 0xE0, + 0xF8, 0xF0, 0x3C, 0x7E, 0x1E, 0x07, 0x87, 0x83, 0xC1, 0xF0, 0xC0, 0x7C, 0x3E, 0x00, 0x0F, 0x83, + 0xF8, 0x0F, 0xFE, 0x7F, 0xFF, 0xFF, 0xE7, 0xFF, 0xFF, 0xFC, 0x7F, 0xFF, 0xDF, 0x01, 0xFF, 0xC0, + 0x00, 0x00, 0xE0, 0x3E, 0x0F, 0xF1, 0xFF, 0x7F, 0xCF, 0xE0, 0xF8, 0x0F, 0xC0, 0x7E, 0x03, 0xF0, + 0x1F, 0x80, 0xF8, 0x07, 0xC0, 0x7C, 0xFF, 0xCF, 0xFC, 0xFF, 0x8F, 0xF0, 0xE0, 0x00, 0x00, 0x60, + 0x07, 0xC0, 0x3F, 0xC0, 0xFF, 0x87, 0xFC, 0x1F, 0xC0, 0x3E, 0x00, 0x7E, 0x00, 0x7E, 0x00, 0x7E, + 0x00, 0x7E, 0x00, 0x7C, 0x00, 0x7C, 0x00, 0xFC, 0x3F, 0xFF, 0x7F, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, + 0x80, 0x00, 0x00, 0x07, 0x80, 0x01, 0xE0, 0x00, 0x78, 0x00, 0x1E, 0x00, 0x07, 0x80, 0x01, 0xE0, + 0x00, 0x78, 0x00, 0x1E, 0x00, 0x07, 0x80, 0x01, 0xE0, 0x00, 0x78, 0x00, 0x1E, 0x00, 0x07, 0xDE, + 0x01, 0xF7, 0x80, 0x7D, 0xE0, 0x1F, 0xF8, 0x07, 0xBE, 0x01, 0xEF, 0x80, 0x7B, 0xE0, 0x3E, 0x7C, + 0x1F, 0x1F, 0xFF, 0xC3, 0xFF, 0xE0, 0x7F, 0xF0, 0x07, 0xF0, 0x00, 0x00, 0x07, 0x80, 0x00, 0x1E, + 0x00, 0x00, 0x78, 0x00, 0x01, 0xE0, 0x00, 0x07, 0x80, 0x00, 0x1E, 0x00, 0x00, 0x78, 0x00, 0x01, + 0xE0, 0x00, 0x07, 0x80, 0x00, 0x1E, 0x00, 0x00, 0x78, 0x00, 0x01, 0xE0, 0x00, 0x07, 0x81, 0xE0, + 0x1F, 0x07, 0x80, 0x7C, 0x1E, 0x01, 0xFE, 0xF8, 0x07, 0xFF, 0xE0, 0x1F, 0xFF, 0x80, 0x7F, 0xFE, + 0x01, 0xE0, 0x7C, 0x1F, 0x81, 0xFF, 0xFC, 0x03, 0xFF, 0xF0, 0x07, 0xFF, 0x80, 0x07, 0xF8, 0x00, + 0x3C, 0x78, 0xF1, 0xE3, 0xC7, 0x8F, 0x1E, 0x3C, 0x78, 0xF1, 0xE3, 0xC7, 0xCF, 0x7E, 0xFD, 0xFB, + 0xE0, 0x00, 0x3C, 0x07, 0x80, 0xF0, 0x1E, 0x03, 0xC0, 0x78, 0x0F, 0x01, 0xE0, 0x3C, 0x07, 0x80, + 0xF0, 0x1E, 0x03, 0xE0, 0x7C, 0x0F, 0x87, 0xFE, 0xFF, 0xFF, 0xFF, 0xDF, 0x80, 0x00, 0x00, 0x00, + 0x7E, 0x07, 0xF8, 0x7F, 0xE7, 0xFF, 0x9C, 0x7C, 0x21, 0xE0, 0xFF, 0x1F, 0xFB, 0xFF, 0xDF, 0xFF, + 0xF8, 0x6F, 0x80, 0x78, 0x03, 0xC0, 0x1E, 0x00, 0xF0, 0x07, 0xC0, 0x1E, 0x00, 0xF0, 0x07, 0x80, + 0x3C, 0x00, 0x00, 0xF0, 0x00, 0x7F, 0x00, 0x3F, 0xE0, 0x0F, 0xFE, 0x03, 0xFB, 0xC0, 0x7C, 0x78, + 0x1F, 0xC7, 0x83, 0xFF, 0xFE, 0xFF, 0xFF, 0xFE, 0xFF, 0xFF, 0xCF, 0xFF, 0xF8, 0x78, 0x0F, 0x00, + 0x01, 0xE0, 0x00, 0x3E, 0x00, 0x07, 0xC0, 0x00, 0x78, 0x00, 0x0F, 0x00, 0x01, 0xE0, 0x00, 0x3E, + 0x00, 0x03, 0x80, 0x00, 0x01, 0xC0, 0x1F, 0x80, 0xFF, 0x07, 0xFE, 0x1F, 0xF8, 0xF9, 0xF3, 0xC7, + 0xFF, 0xFF, 0xFF, 0xFB, 0xFF, 0xEF, 0x7F, 0x00, 0x00, 0x01, 0xC0, 0x01, 0xF8, 0x00, 0xFF, 0x00, + 0x7F, 0xE0, 0x1E, 0xF8, 0x0F, 0x1F, 0x07, 0xE7, 0xC3, 0xFD, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, + 0x7F, 0xFC, 0x07, 0x80, 0x00, 0xC0, 0x00, 0x78, 0x00, 0x1E, 0x00, 0x07, 0x80, 0x00, 0xC0, 0x00, + 0x00, 0x00, 0x00, 0x70, 0x00, 0x3E, 0x00, 0x0F, 0x9E, 0x01, 0xE7, 0x80, 0x79, 0xE0, 0x1F, 0xF8, + 0x07, 0xFE, 0x01, 0xFF, 0x80, 0x7B, 0xE0, 0x1E, 0x7C, 0x1F, 0x9F, 0xFF, 0xC3, 0xFF, 0xE0, 0x7F, + 0xF0, 0x07, 0xF0, 0x00, 0x00, 0xC0, 0x00, 0x03, 0xC0, 0x00, 0x07, 0x80, 0x00, 0x0F, 0x00, 0x00, + 0x0C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x07, 0xC0, 0x00, 0x07, 0x80, 0xF0, 0x0F, + 0x01, 0xE0, 0x1F, 0x03, 0xC0, 0x3F, 0xCF, 0x80, 0x7F, 0xDF, 0x00, 0xFF, 0xBE, 0x01, 0xFF, 0x7C, + 0x03, 0xC0, 0x7C, 0x1F, 0x80, 0xFF, 0xFE, 0x00, 0xFF, 0xFC, 0x00, 0xFF, 0xF0, 0x00, 0x7F, 0x80, + 0x00, 0x10, 0x71, 0xF1, 0xE1, 0x80, 0x07, 0x1E, 0x3C, 0x7C, 0xF8, 0xF1, 0xE3, 0xFF, 0xFF, 0xFD, + 0xF0, 0x00, 0x0C, 0x01, 0xE0, 0x1E, 0x01, 0xE0, 0x0C, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x1E, 0x01, + 0xE0, 0x1E, 0x03, 0xE0, 0xFF, 0xEF, 0xFF, 0xFF, 0xFF, 0x7F, 0x00, 0x00, 0x0C, 0x01, 0xC0, 0x7C, + 0x1F, 0xC1, 0xFC, 0x7F, 0x9F, 0xFB, 0xCF, 0xF9, 0xFF, 0x3F, 0xFF, 0xBF, 0xF7, 0xFC, 0x7F, 0x00, + 0x00, 0x01, 0xE0, 0x01, 0xF0, 0x07, 0xF0, 0x1F, 0xF0, 0x3F, 0xF0, 0x7F, 0xF0, 0x7D, 0xF0, 0xF8, + 0xF0, 0xF8, 0xF0, 0xFF, 0xF0, 0x7F, 0xF0, 0x7F, 0xFE, 0x3F, 0xFF, 0x02, 0x7F, 0x00, 0x3F, 0x00, + 0x00, 0x0C, 0x00, 0x0F, 0x00, 0x1F, 0x80, 0x1F, 0xC0, 0x3F, 0xE0, 0x3F, 0xF8, 0x79, 0xFC, 0x79, + 0xFC, 0x7F, 0xFE, 0x3F, 0xDE, 0xFF, 0xDE, 0xFF, 0xFE, 0xFF, 0xFE, 0xFF, 0xFC, 0x00, 0x60, 0x03, + 0xE0, 0x07, 0xF0, 0x03, 0xFC, 0x03, 0xFE, 0x01, 0xEF, 0x01, 0xF7, 0x80, 0xF3, 0xC0, 0x7B, 0xE0, + 0xFF, 0xFF, 0x7F, 0xFF, 0xBF, 0xFF, 0xFF, 0xFF, 0xE3, 0xC7, 0xC1, 0xF3, 0xE0, 0xFF, 0xE0, 0x3F, + 0xF0, 0x0F, 0xF0, 0x01, 0xF0, 0x00, 0x00, 0x00, 0xF8, 0x1F, 0xC3, 0xFE, 0x7F, 0xE7, 0x9E, 0x79, + 0xF7, 0xFF, 0x7F, 0xF7, 0xFF, 0x3F, 0xE0, 0x3E, 0x1F, 0xEF, 0xFC, 0x7F, 0x87, 0xE0, 0x78, 0x00, + 0x00, 0x00, 0x0F, 0x80, 0x1F, 0xC0, 0x3F, 0xE0, 0x7F, 0xE0, 0x79, 0xE0, 0x79, 0xF0, 0x7F, 0xFC, + 0x7F, 0xFE, 0x7F, 0xFE, 0x3F, 0xFE, 0x03, 0xF8, 0x1F, 0xE0, 0xFF, 0xC0, 0x7F, 0x80, 0x7E, 0x00, + 0x78, 0x00, 0x00, 0x07, 0xF0, 0x00, 0x7F, 0x80, 0x07, 0xFC, 0x00, 0x7F, 0xC0, 0x03, 0xC0, 0x00, + 0x3E, 0x01, 0xE1, 0xE0, 0x0F, 0x0F, 0xC0, 0x78, 0x3F, 0x87, 0xC0, 0xFF, 0x3E, 0x03, 0xF9, 0xF0, + 0x03, 0xCF, 0x80, 0x3E, 0x3F, 0x07, 0xF1, 0xFF, 0xFF, 0x07, 0xFF, 0xF0, 0x1F, 0xFF, 0x00, 0x3F, + 0xC0, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x07, 0x80, 0x70, 0x1E, 0x01, 0xFE, 0xF8, 0x0F, 0xFF, + 0xE0, 0x3F, 0xFF, 0x80, 0x3F, 0xFE, 0x00, 0x7C, 0x7E, 0x03, 0xE1, 0xFF, 0xFF, 0x83, 0xFF, 0xFC, + 0x07, 0xFF, 0xE0, 0x07, 0xFC, 0x00, 0x00, 0x07, 0xF0, 0x00, 0x7F, 0x80, 0x07, 0xFC, 0x00, 0x7F, + 0xC0, 0x03, 0xC0, 0x00, 0x3E, 0x01, 0xE1, 0xE0, 0x0F, 0x0F, 0xC0, 0x78, 0x3F, 0x87, 0xC0, 0xFF, + 0x3E, 0x03, 0xF9, 0xF0, 0x03, 0xCF, 0x80, 0x3E, 0x3F, 0x07, 0xF1, 0xFF, 0xFF, 0x07, 0xFF, 0xF0, + 0x1F, 0xFF, 0x00, 0x3F, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x80, 0x03, 0xFC, 0x00, + 0x1F, 0xE0, 0x00, 0xE7, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x07, 0x80, 0x70, 0x1E, 0x01, 0xFE, + 0xF8, 0x0F, 0xFF, 0xE0, 0x3F, 0xFF, 0x80, 0x3F, 0xFE, 0x00, 0x7C, 0x7E, 0x03, 0xE1, 0xFF, 0xFF, + 0x83, 0xFF, 0xFC, 0x07, 0xFF, 0xE0, 0x07, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xEE, + 0x00, 0x07, 0xBC, 0x00, 0x1E, 0xF0, 0x00, 0x3B, 0x80, 0x00, 0x0E, 0x3E, 0x1E, 0x1E, 0x1F, 0x1F, + 0x0F, 0x1F, 0xFF, 0xFE, 0xFE, 0xF8, 0x00, 0x00, 0xE7, 0xFF, 0xFF, 0xE7, 0x0E, 0x00, 0x78, 0x07, + 0xC0, 0x3E, 0x01, 0xF0, 0x7F, 0xFB, 0xFF, 0xDF, 0xFF, 0xF3, 0xF0, 0x00, 0x00, 0x00, 0xE6, 0x07, + 0xF8, 0x3F, 0xC1, 0xDC, 0x00, 0x00, 0x00, 0x3F, 0xC0, 0x3F, 0xE1, 0x8D, 0xF3, 0xC0, 0x01, 0xE0, + 0x00, 0xF8, 0x38, 0x7C, 0x3E, 0x3E, 0x1F, 0xDF, 0x07, 0xFF, 0x00, 0xFF, 0x80, 0x3F, 0xC0, 0x0F, + 0xE0, 0x03, 0xF0, 0x03, 0xFC, 0x03, 0xFE, 0x03, 0xE7, 0x83, 0xFF, 0xC1, 0xFF, 0xE0, 0xFF, 0xE0, + 0x7F, 0xE0, 0x00, 0x00, 0x07, 0xF8, 0x00, 0x7F, 0xFC, 0x06, 0xFB, 0xC0, 0x00, 0x3E, 0x00, 0x03, + 0xE0, 0x30, 0x3E, 0x07, 0x83, 0xE0, 0x7C, 0x3E, 0x03, 0xE3, 0xE0, 0x1F, 0x3E, 0x00, 0xFB, 0xE0, + 0x07, 0xFE, 0x00, 0x7F, 0xE0, 0x03, 0xFE, 0x00, 0x1F, 0xE0, 0x01, 0xFE, 0x07, 0xFF, 0xFC, 0x7F, + 0xFF, 0xE7, 0xFD, 0xFE, 0x7F, 0x8F, 0xE0, 0x00, 0x00, 0x78, 0x01, 0xF0, 0x03, 0x80, 0x07, 0x40, + 0x0F, 0xC1, 0x9F, 0x8F, 0x38, 0x1E, 0x00, 0x3E, 0x38, 0x7C, 0xF8, 0xF9, 0xFD, 0xF1, 0xFF, 0xC0, + 0xFF, 0x80, 0xFF, 0x00, 0xFE, 0x00, 0xFC, 0x03, 0xFC, 0x0F, 0xF8, 0x3E, 0x78, 0xFF, 0xF1, 0xFF, + 0xE3, 0xFF, 0x87, 0xFE, 0x00, 0x3C, 0x00, 0x0F, 0x80, 0x01, 0xC0, 0x00, 0x3A, 0x00, 0x03, 0xE7, + 0x80, 0xFC, 0xF0, 0x1C, 0x1F, 0x00, 0x03, 0xE0, 0x60, 0x7C, 0x1E, 0x0F, 0x83, 0xE1, 0xF0, 0x3E, + 0x3E, 0x03, 0xE7, 0xC0, 0x3E, 0xF8, 0x03, 0xFF, 0x00, 0x7F, 0xE0, 0x07, 0xFC, 0x00, 0x7F, 0x80, + 0x0F, 0xF0, 0x7F, 0xFF, 0xCF, 0xFF, 0xFD, 0xFF, 0x7F, 0xBF, 0xC7, 0xF0, 0x00, 0x00, 0x00, 0x30, + 0x03, 0xC0, 0x0F, 0x00, 0x3E, 0x70, 0xFB, 0xE3, 0xEF, 0xEF, 0x9F, 0xFC, 0x1F, 0xF0, 0x3F, 0xC0, + 0x7F, 0x00, 0xFC, 0x07, 0xF8, 0x3F, 0xE1, 0xF3, 0xCF, 0xFF, 0x3F, 0xFC, 0xFF, 0xE3, 0xFF, 0x00, + 0x00, 0x1C, 0x00, 0xF0, 0x03, 0x80, 0x0E, 0x80, 0x3E, 0x00, 0xF8, 0x03, 0x80, 0x00, 0x00, 0x78, + 0x00, 0x0F, 0x00, 0x01, 0xF0, 0x00, 0x3E, 0x06, 0x07, 0xC1, 0xE0, 0xF8, 0x3E, 0x1F, 0x03, 0xE3, + 0xE0, 0x3E, 0x7C, 0x03, 0xEF, 0x80, 0x3F, 0xF0, 0x07, 0xFE, 0x00, 0x7F, 0xC0, 0x07, 0xF8, 0x00, + 0xFF, 0x07, 0xFF, 0xFC, 0xFF, 0xFF, 0xDF, 0xF7, 0xFB, 0xFC, 0x7F, 0x00, 0x00, 0x01, 0xC0, 0x00, + 0x78, 0x00, 0x0E, 0x00, 0x01, 0xD0, 0x00, 0x3E, 0x00, 0x07, 0xC0, 0x00, 0xE0, 0x00, 0x00, 0x00, + 0x30, 0x03, 0xC0, 0x0F, 0x00, 0x3E, 0x70, 0xFB, 0xE3, 0xEF, 0xEF, 0x9F, 0xFC, 0x1F, 0xF0, 0x3F, + 0xC0, 0x7F, 0x00, 0xFC, 0x07, 0xF8, 0x3F, 0xE1, 0xF3, 0xCF, 0xFF, 0x3F, 0xFC, 0xFF, 0xE3, 0xFF, + 0x00, 0x00, 0x78, 0x00, 0x0F, 0x00, 0x01, 0xF0, 0x00, 0x3E, 0x06, 0x07, 0xC1, 0xE0, 0xF8, 0x3E, + 0x1F, 0x03, 0xE3, 0xE0, 0x3E, 0x7C, 0x03, 0xEF, 0x80, 0x3F, 0xF0, 0x07, 0xFE, 0x00, 0x7F, 0xC0, + 0x07, 0xF8, 0x00, 0xFF, 0x07, 0xFF, 0xFC, 0xFF, 0xFF, 0xDF, 0xF7, 0xFB, 0xFC, 0x7F, 0x00, 0x00, + 0x00, }; static const EpdGlyph ubuntu_12_boldGlyphs[] = { @@ -2215,404 +2730,606 @@ static const EpdGlyph ubuntu_12_boldGlyphs[] = { { 12, 4, 0, -4, 19, 6, 14271 }, // U+030B { 11, 4, 0, -6, 19, 6, 14277 }, // U+030C { 9, 4, 156, 0, 19, 5, 14283 }, // U+0311 - { 5, 4, 0, -2, -2, 3, 14288 }, // U+0326 - { 6, 6, 0, -3, 0, 5, 14291 }, // U+0327 - { 6, 8, 0, -3, 2, 6, 14296 }, // U+0328 - { 0, 0, 0, 0, 0, 0, 14302 }, // U+034F - { 13, 24, 242, 2, 24, 39, 14302 }, // U+0400 - { 13, 23, 242, 2, 23, 38, 14341 }, // U+0401 - { 20, 17, 326, 0, 17, 43, 14379 }, // U+0402 - { 12, 24, 237, 2, 24, 36, 14422 }, // U+0403 - { 16, 17, 274, 1, 17, 34, 14458 }, // U+0404 - { 14, 17, 233, 0, 17, 30, 14492 }, // U+0405 - { 4, 17, 126, 2, 17, 9, 14522 }, // U+0406 - { 10, 23, 126, -1, 23, 29, 14531 }, // U+0407 - { 12, 17, 212, 0, 17, 26, 14560 }, // U+0408 - { 28, 17, 452, 0, 17, 60, 14586 }, // U+0409 - { 24, 17, 430, 2, 17, 51, 14646 }, // U+040A - { 19, 17, 308, 0, 17, 41, 14697 }, // U+040B - { 15, 24, 274, 2, 24, 45, 14738 }, // U+040C - { 15, 24, 302, 2, 24, 45, 14783 }, // U+040D - { 17, 24, 261, 0, 24, 51, 14828 }, // U+040E - { 15, 22, 292, 2, 17, 42, 14879 }, // U+040F - { 18, 17, 288, 0, 17, 39, 14921 }, // U+0410 - { 14, 17, 260, 2, 17, 30, 14960 }, // U+0411 - { 14, 17, 269, 2, 17, 30, 14990 }, // U+0412 - { 12, 17, 237, 2, 17, 26, 15020 }, // U+0413 - { 21, 22, 329, 0, 17, 58, 15046 }, // U+0414 - { 13, 17, 242, 2, 17, 28, 15104 }, // U+0415 - { 25, 17, 393, 0, 17, 54, 15132 }, // U+0416 - { 15, 17, 244, 0, 17, 32, 15186 }, // U+0417 - { 15, 17, 302, 2, 17, 32, 15218 }, // U+0418 - { 15, 24, 302, 2, 24, 45, 15250 }, // U+0419 - { 15, 17, 274, 2, 17, 32, 15295 }, // U+041A - { 18, 17, 316, 0, 17, 39, 15327 }, // U+041B - { 20, 17, 359, 1, 17, 43, 15366 }, // U+041C - { 15, 17, 294, 2, 17, 32, 15409 }, // U+041D - { 18, 17, 316, 1, 17, 39, 15441 }, // U+041E - { 15, 17, 292, 2, 17, 32, 15480 }, // U+041F - { 14, 17, 258, 2, 17, 30, 15512 }, // U+0420 - { 15, 17, 259, 1, 17, 32, 15542 }, // U+0421 - { 15, 17, 246, 0, 17, 32, 15574 }, // U+0422 - { 17, 17, 261, 0, 17, 37, 15606 }, // U+0423 - { 20, 18, 348, 1, 18, 45, 15643 }, // U+0424 - { 17, 17, 270, 0, 17, 37, 15688 }, // U+0425 - { 18, 22, 316, 2, 17, 50, 15725 }, // U+0426 - { 14, 17, 272, 1, 17, 30, 15775 }, // U+0427 - { 22, 17, 408, 2, 17, 47, 15805 }, // U+0428 - { 25, 22, 432, 2, 17, 69, 15852 }, // U+0429 - { 19, 17, 309, 0, 17, 41, 15921 }, // U+042A - { 20, 17, 371, 2, 17, 43, 15962 }, // U+042B - { 14, 17, 264, 2, 17, 30, 16005 }, // U+042C - { 15, 17, 272, 1, 17, 32, 16035 }, // U+042D - { 24, 17, 432, 2, 17, 51, 16067 }, // U+042E - { 15, 17, 276, 1, 17, 32, 16118 }, // U+042F - { 13, 13, 221, 0, 13, 22, 16150 }, // U+0430 - { 13, 19, 240, 1, 19, 31, 16172 }, // U+0431 - { 13, 13, 239, 1, 13, 22, 16203 }, // U+0432 - { 11, 13, 181, 1, 13, 18, 16225 }, // U+0433 - { 17, 17, 271, 0, 13, 37, 16243 }, // U+0434 - { 13, 13, 234, 1, 13, 22, 16280 }, // U+0435 - { 21, 13, 340, 0, 13, 35, 16302 }, // U+0436 - { 12, 13, 198, 0, 13, 20, 16337 }, // U+0437 - { 13, 13, 248, 1, 13, 22, 16357 }, // U+0438 - { 13, 20, 248, 1, 20, 33, 16379 }, // U+0439 - { 14, 13, 234, 1, 13, 23, 16412 }, // U+043A - { 14, 13, 251, 0, 13, 23, 16435 }, // U+043B - { 17, 13, 304, 1, 13, 28, 16458 }, // U+043C - { 13, 13, 237, 1, 13, 22, 16486 }, // U+043D - { 14, 13, 243, 1, 13, 23, 16508 }, // U+043E - { 13, 13, 237, 1, 13, 22, 16531 }, // U+043F - { 13, 18, 242, 1, 13, 30, 16553 }, // U+0440 - { 11, 13, 200, 1, 13, 18, 16583 }, // U+0441 - { 13, 13, 210, 0, 13, 22, 16601 }, // U+0442 - { 14, 18, 219, 0, 13, 32, 16623 }, // U+0443 - { 18, 24, 318, 1, 19, 54, 16655 }, // U+0444 - { 14, 13, 222, 0, 13, 23, 16709 }, // U+0445 - { 15, 17, 253, 1, 13, 32, 16732 }, // U+0446 - { 12, 13, 227, 1, 13, 20, 16764 }, // U+0447 - { 19, 13, 344, 1, 13, 31, 16784 }, // U+0448 - { 21, 17, 360, 1, 13, 45, 16815 }, // U+0449 - { 16, 13, 256, 0, 13, 26, 16860 }, // U+044A - { 18, 13, 330, 1, 13, 30, 16886 }, // U+044B - { 13, 13, 226, 1, 13, 22, 16916 }, // U+044C - { 13, 13, 208, 0, 13, 22, 16938 }, // U+044D - { 20, 13, 349, 1, 13, 33, 16960 }, // U+044E - { 13, 13, 234, 0, 13, 22, 16993 }, // U+044F - { 13, 20, 234, 1, 20, 33, 17015 }, // U+0450 - { 13, 19, 234, 1, 19, 31, 17048 }, // U+0451 - { 14, 24, 240, 0, 19, 42, 17079 }, // U+0452 - { 11, 20, 181, 1, 20, 28, 17121 }, // U+0453 - { 13, 13, 208, 0, 13, 22, 17149 }, // U+0454 - { 12, 13, 194, 0, 13, 20, 17171 }, // U+0455 - { 5, 19, 116, 1, 19, 12, 17191 }, // U+0456 - { 11, 19, 116, -2, 19, 27, 17203 }, // U+0457 - { 8, 24, 116, -2, 19, 24, 17230 }, // U+0458 - { 22, 13, 361, 0, 13, 36, 17254 }, // U+0459 - { 20, 13, 347, 1, 13, 33, 17290 }, // U+045A - { 14, 19, 240, 0, 19, 34, 17323 }, // U+045B - { 14, 20, 234, 1, 20, 35, 17357 }, // U+045C - { 13, 20, 248, 1, 20, 33, 17392 }, // U+045D - { 14, 25, 219, 0, 20, 44, 17425 }, // U+045E - { 13, 17, 237, 1, 13, 28, 17469 }, // U+045F - { 18, 19, 299, 0, 19, 43, 17497 }, // U+0462 - { 15, 19, 254, 0, 19, 36, 17540 }, // U+0463 - { 18, 17, 316, 1, 17, 39, 17576 }, // U+0472 - { 14, 13, 243, 1, 13, 23, 17615 }, // U+0473 - { 21, 17, 316, 0, 17, 45, 17638 }, // U+0474 - { 16, 13, 239, 0, 13, 26, 17683 }, // U+0475 - { 18, 29, 331, 2, 24, 66, 17709 }, // U+048A - { 15, 24, 252, 1, 20, 45, 17775 }, // U+048B - { 16, 17, 264, 0, 17, 34, 17820 }, // U+048C - { 14, 14, 226, 0, 14, 25, 17854 }, // U+048D - { 14, 17, 262, 2, 17, 30, 17879 }, // U+048E - { 14, 18, 246, 1, 13, 32, 17909 }, // U+048F - { 12, 20, 229, 2, 20, 30, 17941 }, // U+0490 - { 11, 16, 185, 1, 16, 22, 17971 }, // U+0491 - { 15, 17, 254, 1, 17, 32, 17993 }, // U+0492 - { 12, 13, 210, 1, 13, 20, 18025 }, // U+0493 - { 14, 22, 270, 2, 17, 39, 18045 }, // U+0494 - { 13, 18, 228, 1, 13, 30, 18084 }, // U+0495 - { 26, 21, 409, 0, 17, 69, 18114 }, // U+0496 - { 22, 17, 349, 0, 13, 47, 18183 }, // U+0497 - { 15, 22, 244, 0, 17, 42, 18230 }, // U+0498 - { 12, 18, 198, 0, 13, 27, 18272 }, // U+0499 - { 16, 22, 295, 2, 17, 44, 18299 }, // U+049A - { 14, 17, 242, 1, 13, 30, 18343 }, // U+049B - { 18, 17, 314, 2, 17, 39, 18373 }, // U+049C - { 16, 13, 273, 1, 13, 26, 18412 }, // U+049D - { 18, 18, 283, 0, 18, 41, 18438 }, // U+049E - { 15, 14, 242, 0, 14, 27, 18479 }, // U+049F - { 20, 17, 319, 0, 17, 43, 18506 }, // U+04A0 - { 17, 13, 263, 0, 13, 28, 18549 }, // U+04A1 - { 18, 22, 323, 2, 17, 50, 18577 }, // U+04A2 - { 15, 17, 254, 1, 13, 32, 18627 }, // U+04A3 - { 19, 17, 335, 2, 17, 41, 18659 }, // U+04A4 - { 16, 13, 261, 1, 13, 26, 18700 }, // U+04A5 - { 25, 22, 444, 2, 17, 69, 18726 }, // U+04A6 - { 20, 18, 349, 1, 13, 45, 18795 }, // U+04A7 - { 19, 21, 320, 1, 17, 50, 18840 }, // U+04A8 - { 15, 17, 253, 1, 13, 32, 18890 }, // U+04A9 - { 15, 22, 259, 1, 17, 42, 18922 }, // U+04AA - { 11, 18, 200, 1, 13, 25, 18964 }, // U+04AB - { 15, 22, 246, 0, 17, 42, 18989 }, // U+04AC - { 13, 17, 202, 0, 13, 28, 19031 }, // U+04AD - { 17, 17, 264, 0, 17, 37, 19059 }, // U+04AE - { 14, 18, 220, 0, 13, 32, 19096 }, // U+04AF - { 17, 17, 264, 0, 17, 37, 19128 }, // U+04B0 - { 14, 18, 220, 0, 13, 32, 19165 }, // U+04B1 - { 18, 22, 286, 0, 17, 50, 19197 }, // U+04B2 - { 15, 17, 235, 0, 13, 32, 19247 }, // U+04B3 - { 23, 22, 376, 0, 17, 64, 19279 }, // U+04B4 - { 17, 17, 279, 0, 13, 37, 19343 }, // U+04B5 - { 17, 22, 290, 1, 17, 47, 19380 }, // U+04B6 - { 15, 17, 236, 0, 13, 32, 19427 }, // U+04B7 - { 14, 17, 272, 1, 17, 30, 19459 }, // U+04B8 - { 13, 13, 225, 0, 13, 22, 19489 }, // U+04B9 - { 14, 17, 280, 2, 17, 30, 19511 }, // U+04BA - { 13, 19, 236, 1, 19, 31, 19541 }, // U+04BB - { 21, 17, 352, 0, 17, 45, 19572 }, // U+04BC - { 17, 13, 283, 0, 13, 28, 19617 }, // U+04BD - { 21, 21, 352, 0, 17, 56, 19645 }, // U+04BE - { 17, 16, 283, 0, 13, 34, 19701 }, // U+04BF - { 4, 17, 126, 2, 17, 9, 19735 }, // U+04C0 - { 25, 24, 393, 0, 24, 75, 19744 }, // U+04C1 - { 21, 20, 340, 0, 20, 53, 19819 }, // U+04C2 - { 15, 22, 281, 2, 17, 42, 19872 }, // U+04C3 - { 13, 18, 230, 1, 13, 30, 19914 }, // U+04C4 - { 21, 22, 332, 0, 17, 58, 19944 }, // U+04C5 - { 17, 17, 270, 0, 13, 37, 20002 }, // U+04C6 - { 15, 22, 294, 2, 17, 42, 20039 }, // U+04C7 - { 13, 18, 240, 1, 13, 30, 20081 }, // U+04C8 - { 18, 22, 314, 2, 17, 50, 20111 }, // U+04C9 - { 15, 17, 251, 1, 13, 32, 20161 }, // U+04CA - { 14, 22, 272, 1, 17, 39, 20193 }, // U+04CB - { 12, 17, 227, 1, 13, 26, 20232 }, // U+04CC - { 23, 22, 381, 1, 17, 64, 20258 }, // U+04CD - { 19, 17, 318, 1, 13, 41, 20322 }, // U+04CE - { 5, 17, 116, 1, 17, 11, 20363 }, // U+04CF - { 18, 24, 288, 0, 24, 54, 20374 }, // U+04D0 - { 13, 20, 221, 0, 20, 33, 20428 }, // U+04D1 - { 18, 23, 288, 0, 23, 52, 20461 }, // U+04D2 - { 13, 19, 221, 0, 19, 31, 20513 }, // U+04D3 - { 24, 17, 398, 0, 17, 51, 20544 }, // U+04D4 - { 21, 13, 350, 0, 13, 35, 20595 }, // U+04D5 - { 13, 24, 242, 2, 24, 39, 20630 }, // U+04D6 - { 13, 20, 234, 1, 20, 33, 20669 }, // U+04D7 - { 16, 17, 292, 1, 17, 34, 20702 }, // U+04D8 - { 13, 13, 234, 1, 13, 22, 20736 }, // U+04D9 - { 16, 23, 292, 1, 23, 46, 20758 }, // U+04DA - { 13, 19, 234, 1, 19, 31, 20804 }, // U+04DB - { 25, 23, 393, 0, 23, 72, 20835 }, // U+04DC - { 21, 19, 340, 0, 19, 50, 20907 }, // U+04DD - { 15, 23, 244, 0, 23, 44, 20957 }, // U+04DE - { 12, 19, 198, 0, 19, 29, 21001 }, // U+04DF - { 14, 17, 246, 0, 17, 30, 21030 }, // U+04E0 - { 12, 18, 206, 0, 13, 27, 21060 }, // U+04E1 - { 15, 23, 302, 2, 23, 44, 21087 }, // U+04E2 - { 13, 19, 248, 1, 19, 31, 21131 }, // U+04E3 - { 15, 23, 302, 2, 23, 44, 21162 }, // U+04E4 - { 13, 19, 248, 1, 19, 31, 21206 }, // U+04E5 - { 18, 23, 316, 1, 23, 52, 21237 }, // U+04E6 - { 14, 19, 243, 1, 19, 34, 21289 }, // U+04E7 - { 18, 17, 316, 1, 17, 39, 21323 }, // U+04E8 - { 14, 13, 243, 1, 13, 23, 21362 }, // U+04E9 - { 18, 23, 316, 1, 23, 52, 21385 }, // U+04EA - { 14, 19, 243, 1, 19, 34, 21437 }, // U+04EB - { 15, 23, 272, 1, 23, 44, 21471 }, // U+04EC - { 13, 19, 208, 0, 19, 31, 21515 }, // U+04ED - { 17, 23, 261, 0, 23, 49, 21546 }, // U+04EE - { 14, 24, 219, 0, 19, 42, 21595 }, // U+04EF - { 17, 23, 261, 0, 23, 49, 21637 }, // U+04F0 - { 14, 24, 219, 0, 19, 42, 21686 }, // U+04F1 - { 17, 24, 261, 0, 24, 51, 21728 }, // U+04F2 - { 14, 25, 219, 0, 20, 44, 21779 }, // U+04F3 - { 14, 23, 272, 1, 23, 41, 21823 }, // U+04F4 - { 12, 19, 227, 1, 19, 29, 21864 }, // U+04F5 - { 12, 22, 237, 2, 17, 33, 21893 }, // U+04F6 - { 11, 17, 181, 1, 13, 24, 21926 }, // U+04F7 - { 20, 23, 371, 2, 23, 58, 21950 }, // U+04F8 - { 18, 19, 330, 1, 19, 43, 22008 }, // U+04F9 - { 17, 15, 270, 0, 15, 32, 22051 }, // U+05D0 - { 15, 15, 238, 0, 15, 29, 22083 }, // U+05D1 - { 10, 16, 165, 0, 15, 20, 22112 }, // U+05D2 - { 14, 15, 228, 0, 15, 27, 22132 }, // U+05D3 - { 14, 15, 263, 1, 15, 27, 22159 }, // U+05D4 - { 7, 15, 135, 0, 15, 14, 22186 }, // U+05D5 - { 9, 15, 148, 0, 15, 17, 22200 }, // U+05D6 - { 16, 15, 275, 0, 15, 30, 22217 }, // U+05D7 - { 15, 15, 264, 1, 15, 29, 22247 }, // U+05D8 - { 7, 9, 133, 0, 15, 8, 22276 }, // U+05D9 - { 13, 20, 228, 0, 15, 33, 22284 }, // U+05DA - { 13, 15, 211, 0, 15, 25, 22317 }, // U+05DB - { 14, 19, 222, 0, 19, 34, 22342 }, // U+05DC - { 15, 15, 281, 1, 15, 29, 22376 }, // U+05DD - { 17, 15, 281, 0, 15, 32, 22405 }, // U+05DE - { 7, 20, 142, 0, 15, 18, 22437 }, // U+05DF - { 8, 15, 162, 1, 15, 15, 22455 }, // U+05E0 - { 16, 15, 272, 0, 15, 30, 22470 }, // U+05E1 - { 15, 18, 252, 0, 16, 34, 22500 }, // U+05E2 - { 14, 20, 262, 1, 15, 35, 22534 }, // U+05E3 - { 15, 15, 251, 0, 15, 29, 22569 }, // U+05E4 - { 14, 20, 235, 0, 15, 35, 22598 }, // U+05E5 - { 14, 15, 237, 0, 15, 27, 22633 }, // U+05E6 - { 15, 20, 262, 1, 15, 38, 22660 }, // U+05E7 - { 12, 15, 217, 0, 15, 23, 22698 }, // U+05E8 - { 18, 15, 315, 1, 15, 34, 22721 }, // U+05E9 - { 17, 15, 289, 0, 15, 32, 22755 }, // U+05EA - { 18, 24, 288, 0, 18, 54, 22787 }, // U+1EA0 - { 13, 20, 221, 0, 14, 33, 22841 }, // U+1EA1 - { 18, 24, 288, 0, 24, 54, 22874 }, // U+1EA2 - { 13, 21, 221, 0, 20, 35, 22928 }, // U+1EA3 - { 18, 27, 288, 0, 27, 61, 22963 }, // U+1EA4 - { 15, 24, 221, 0, 23, 45, 23024 }, // U+1EA5 - { 18, 28, 288, 0, 28, 63, 23069 }, // U+1EA6 - { 13, 25, 221, 0, 24, 41, 23132 }, // U+1EA7 - { 18, 28, 288, 0, 28, 63, 23173 }, // U+1EA8 - { 14, 25, 221, 0, 24, 44, 23236 }, // U+1EA9 - { 18, 29, 288, 0, 29, 66, 23280 }, // U+1EAA - { 13, 25, 221, 0, 24, 41, 23346 }, // U+1EAB - { 18, 30, 288, 0, 24, 68, 23387 }, // U+1EAC - { 13, 26, 221, 0, 20, 43, 23455 }, // U+1EAD - { 18, 29, 288, 0, 29, 66, 23498 }, // U+1EAE - { 13, 26, 221, 0, 25, 43, 23564 }, // U+1EAF - { 18, 29, 288, 0, 29, 66, 23607 }, // U+1EB0 - { 13, 26, 221, 0, 25, 43, 23673 }, // U+1EB1 - { 18, 30, 288, 0, 30, 68, 23716 }, // U+1EB2 - { 13, 27, 221, 0, 26, 44, 23784 }, // U+1EB3 - { 18, 28, 288, 0, 28, 63, 23828 }, // U+1EB4 - { 13, 25, 221, 0, 24, 41, 23891 }, // U+1EB5 - { 18, 29, 288, 0, 23, 66, 23932 }, // U+1EB6 - { 13, 26, 221, 0, 20, 43, 23998 }, // U+1EB7 - { 13, 24, 242, 2, 18, 39, 24041 }, // U+1EB8 - { 13, 20, 234, 1, 14, 33, 24080 }, // U+1EB9 - { 13, 24, 242, 2, 24, 39, 24113 }, // U+1EBA - { 13, 21, 234, 1, 20, 35, 24152 }, // U+1EBB - { 13, 24, 242, 2, 24, 39, 24187 }, // U+1EBC - { 13, 20, 234, 1, 19, 33, 24226 }, // U+1EBD - { 14, 28, 242, 2, 28, 49, 24259 }, // U+1EBE - { 15, 24, 234, 1, 23, 45, 24308 }, // U+1EBF - { 13, 28, 242, 2, 28, 46, 24353 }, // U+1EC0 - { 13, 24, 234, 1, 23, 39, 24399 }, // U+1EC1 - { 14, 28, 242, 2, 28, 49, 24438 }, // U+1EC2 - { 14, 24, 234, 1, 23, 42, 24487 }, // U+1EC3 - { 13, 29, 242, 2, 29, 48, 24529 }, // U+1EC4 - { 13, 25, 234, 1, 24, 41, 24577 }, // U+1EC5 - { 13, 30, 242, 2, 24, 49, 24618 }, // U+1EC6 - { 13, 26, 234, 1, 20, 43, 24667 }, // U+1EC7 - { 6, 24, 126, 1, 24, 18, 24710 }, // U+1EC8 - { 7, 20, 116, 0, 20, 18, 24728 }, // U+1EC9 - { 5, 24, 126, 1, 18, 15, 24746 }, // U+1ECA - { 5, 26, 116, 1, 20, 17, 24761 }, // U+1ECB - { 18, 24, 316, 1, 18, 54, 24778 }, // U+1ECC - { 14, 20, 243, 1, 14, 35, 24832 }, // U+1ECD - { 18, 25, 316, 1, 24, 57, 24867 }, // U+1ECE - { 14, 21, 243, 1, 20, 37, 24924 }, // U+1ECF - { 18, 29, 316, 1, 28, 66, 24961 }, // U+1ED0 - { 15, 24, 243, 1, 23, 45, 25027 }, // U+1ED1 - { 18, 29, 316, 1, 28, 66, 25072 }, // U+1ED2 - { 14, 25, 243, 1, 24, 44, 25138 }, // U+1ED3 - { 18, 29, 316, 1, 28, 66, 25182 }, // U+1ED4 - { 14, 25, 243, 1, 24, 44, 25248 }, // U+1ED5 - { 18, 30, 316, 1, 29, 68, 25292 }, // U+1ED6 - { 14, 25, 243, 1, 24, 44, 25360 }, // U+1ED7 - { 18, 30, 316, 1, 24, 68, 25404 }, // U+1ED8 - { 14, 26, 243, 1, 20, 46, 25472 }, // U+1ED9 - { 18, 25, 316, 1, 24, 57, 25518 }, // U+1EDA - { 15, 21, 243, 1, 20, 40, 25575 }, // U+1EDB - { 18, 25, 316, 1, 24, 57, 25615 }, // U+1EDC - { 15, 21, 243, 1, 20, 40, 25672 }, // U+1EDD - { 18, 25, 316, 1, 24, 57, 25712 }, // U+1EDE - { 15, 21, 243, 1, 20, 40, 25769 }, // U+1EDF - { 18, 24, 316, 1, 23, 54, 25809 }, // U+1EE0 - { 15, 20, 243, 1, 19, 38, 25863 }, // U+1EE1 - { 18, 27, 316, 1, 21, 61, 25901 }, // U+1EE2 - { 15, 22, 243, 1, 16, 42, 25962 }, // U+1EE3 - { 15, 24, 283, 1, 18, 45, 26004 }, // U+1EE4 - { 12, 20, 236, 1, 14, 30, 26049 }, // U+1EE5 - { 15, 25, 283, 1, 24, 47, 26079 }, // U+1EE6 - { 12, 21, 236, 1, 20, 32, 26126 }, // U+1EE7 - { 18, 25, 299, 1, 24, 57, 26158 }, // U+1EE8 - { 15, 21, 250, 1, 20, 40, 26215 }, // U+1EE9 - { 18, 25, 299, 1, 24, 57, 26255 }, // U+1EEA - { 15, 21, 250, 1, 20, 40, 26312 }, // U+1EEB - { 18, 25, 299, 1, 24, 57, 26352 }, // U+1EEC - { 15, 21, 250, 1, 20, 40, 26409 }, // U+1EED - { 18, 24, 299, 1, 23, 54, 26449 }, // U+1EEE - { 15, 20, 250, 1, 19, 38, 26503 }, // U+1EEF - { 18, 27, 299, 1, 21, 61, 26541 }, // U+1EF0 - { 15, 22, 250, 1, 16, 42, 26602 }, // U+1EF1 - { 17, 24, 264, 0, 24, 51, 26644 }, // U+1EF2 - { 14, 25, 219, 0, 20, 44, 26695 }, // U+1EF3 - { 17, 24, 264, 0, 18, 51, 26739 }, // U+1EF4 - { 15, 19, 219, 0, 14, 36, 26790 }, // U+1EF5 - { 17, 24, 264, 0, 24, 51, 26826 }, // U+1EF6 - { 14, 25, 219, 0, 20, 44, 26877 }, // U+1EF7 - { 17, 24, 264, 0, 24, 51, 26921 }, // U+1EF8 - { 14, 24, 219, 0, 19, 42, 26972 }, // U+1EF9 - { 2, 18, 0, -1, 17, 5, 27014 }, // U+200C - { 6, 19, 0, -3, 18, 15, 27019 }, // U+200D - { 7, 19, 0, -1, 18, 17, 27034 }, // U+200E - { 7, 19, 0, -6, 18, 17, 27051 }, // U+200F - { 8, 3, 128, 0, 8, 3, 27068 }, // U+2010 - { 13, 3, 200, 0, 9, 5, 27071 }, // U+2013 - { 25, 3, 400, 0, 9, 10, 27076 }, // U+2014 - { 25, 3, 400, 0, 9, 10, 27086 }, // U+2015 - { 5, 7, 97, 1, 19, 5, 27096 }, // U+2018 - { 6, 7, 97, 0, 19, 6, 27101 }, // U+2019 - { 6, 7, 97, 0, 4, 6, 27107 }, // U+201A - { 10, 7, 182, 1, 19, 9, 27113 }, // U+201C - { 11, 7, 182, 0, 19, 10, 27122 }, // U+201D - { 11, 7, 182, 0, 4, 10, 27132 }, // U+201E - { 12, 21, 198, 0, 17, 32, 27142 }, // U+2020 - { 12, 21, 198, 0, 17, 32, 27174 }, // U+2021 - { 9, 7, 146, 0, 12, 8, 27206 }, // U+2022 - { 23, 5, 400, 1, 5, 15, 27214 }, // U+2026 - { 33, 17, 528, 0, 17, 71, 27229 }, // U+2030 - { 8, 13, 131, 0, 14, 13, 27300 }, // U+2039 - { 8, 13, 131, 0, 14, 13, 27313 }, // U+203A - { 14, 18, 61, -5, 18, 32, 27326 }, // U+2044 - { 9, 10, 145, 0, 18, 12, 27358 }, // U+2070 - { 9, 10, 145, 0, 18, 12, 27370 }, // U+2074 - { 9, 10, 145, 0, 18, 12, 27382 }, // U+2075 - { 9, 10, 145, 0, 18, 12, 27394 }, // U+2076 - { 9, 10, 145, 0, 18, 12, 27406 }, // U+2077 - { 9, 10, 145, 0, 18, 12, 27418 }, // U+2078 - { 9, 10, 145, 0, 18, 12, 27430 }, // U+2079 - { 9, 10, 145, 0, 11, 12, 27442 }, // U+2080 - { 7, 10, 145, 0, 11, 9, 27454 }, // U+2081 - { 9, 10, 145, 0, 11, 12, 27463 }, // U+2082 - { 8, 10, 145, 0, 11, 10, 27475 }, // U+2083 - { 9, 10, 145, 0, 11, 12, 27485 }, // U+2084 - { 9, 10, 145, 0, 11, 12, 27497 }, // U+2085 - { 9, 10, 145, 0, 11, 12, 27509 }, // U+2086 - { 9, 10, 145, 0, 11, 12, 27521 }, // U+2087 - { 9, 10, 145, 0, 11, 12, 27533 }, // U+2088 - { 9, 10, 145, 0, 11, 12, 27545 }, // U+2089 - { 19, 15, 346, 1, 15, 36, 27557 }, // U+20AA - { 14, 17, 227, 1, 17, 30, 27593 }, // U+20AC - { 14, 17, 227, 0, 17, 30, 27623 }, // U+20AE - { 14, 17, 227, 0, 17, 30, 27653 }, // U+20B4 - { 14, 17, 227, 1, 17, 30, 27683 }, // U+20B9 - { 15, 18, 245, 0, 18, 34, 27713 }, // U+2202 - { 18, 17, 277, 0, 17, 39, 27747 }, // U+2206 - { 15, 21, 292, 2, 18, 40, 27786 }, // U+220F - { 14, 20, 217, 0, 17, 35, 27826 }, // U+2211 - { 12, 3, 227, 1, 9, 5, 27861 }, // U+2212 - { 14, 18, 61, -5, 18, 32, 27866 }, // U+2215 - { 6, 5, 98, 0, 10, 4, 27898 }, // U+2219 - { 16, 18, 241, 0, 18, 36, 27902 }, // U+221A - { 16, 8, 254, 0, 11, 16, 27938 }, // U+221E - { 10, 25, 160, 0, 19, 32, 27954 }, // U+222B - { 14, 11, 227, 0, 13, 20, 27986 }, // U+2248 - { 12, 14, 227, 1, 14, 21, 28006 }, // U+2260 - { 12, 15, 227, 1, 15, 23, 28027 }, // U+2264 - { 12, 15, 227, 1, 15, 23, 28050 }, // U+2265 - { 21, 19, 336, 1, 19, 50, 28073 }, // U+FB00 - { 16, 19, 283, 1, 19, 38, 28123 }, // U+FB01 - { 18, 19, 294, 1, 19, 43, 28161 }, // U+FB02 - { 26, 19, 451, 1, 19, 62, 28204 }, // U+FB03 - { 28, 19, 462, 1, 19, 67, 28266 }, // U+FB04 + { 6, 7, 0, -3, 18, 6, 14288 }, // U+0312 + { 5, 4, 0, -2, -2, 3, 14294 }, // U+0326 + { 6, 6, 0, -3, 0, 5, 14297 }, // U+0327 + { 6, 8, 0, -3, 2, 6, 14302 }, // U+0328 + { 0, 0, 0, 0, 0, 0, 14308 }, // U+034F + { 13, 24, 242, 2, 24, 39, 14308 }, // U+0400 + { 13, 23, 242, 2, 23, 38, 14347 }, // U+0401 + { 20, 17, 326, 0, 17, 43, 14385 }, // U+0402 + { 12, 24, 237, 2, 24, 36, 14428 }, // U+0403 + { 16, 17, 274, 1, 17, 34, 14464 }, // U+0404 + { 14, 17, 233, 0, 17, 30, 14498 }, // U+0405 + { 4, 17, 126, 2, 17, 9, 14528 }, // U+0406 + { 10, 23, 126, -1, 23, 29, 14537 }, // U+0407 + { 12, 17, 212, 0, 17, 26, 14566 }, // U+0408 + { 28, 17, 452, 0, 17, 60, 14592 }, // U+0409 + { 24, 17, 430, 2, 17, 51, 14652 }, // U+040A + { 19, 17, 308, 0, 17, 41, 14703 }, // U+040B + { 15, 24, 274, 2, 24, 45, 14744 }, // U+040C + { 15, 24, 302, 2, 24, 45, 14789 }, // U+040D + { 17, 24, 261, 0, 24, 51, 14834 }, // U+040E + { 15, 22, 292, 2, 17, 42, 14885 }, // U+040F + { 18, 17, 288, 0, 17, 39, 14927 }, // U+0410 + { 14, 17, 260, 2, 17, 30, 14966 }, // U+0411 + { 14, 17, 269, 2, 17, 30, 14996 }, // U+0412 + { 12, 17, 237, 2, 17, 26, 15026 }, // U+0413 + { 21, 22, 329, 0, 17, 58, 15052 }, // U+0414 + { 13, 17, 242, 2, 17, 28, 15110 }, // U+0415 + { 25, 17, 393, 0, 17, 54, 15138 }, // U+0416 + { 15, 17, 244, 0, 17, 32, 15192 }, // U+0417 + { 15, 17, 302, 2, 17, 32, 15224 }, // U+0418 + { 15, 24, 302, 2, 24, 45, 15256 }, // U+0419 + { 15, 17, 274, 2, 17, 32, 15301 }, // U+041A + { 18, 17, 316, 0, 17, 39, 15333 }, // U+041B + { 20, 17, 359, 1, 17, 43, 15372 }, // U+041C + { 15, 17, 294, 2, 17, 32, 15415 }, // U+041D + { 18, 17, 316, 1, 17, 39, 15447 }, // U+041E + { 15, 17, 292, 2, 17, 32, 15486 }, // U+041F + { 14, 17, 258, 2, 17, 30, 15518 }, // U+0420 + { 15, 17, 259, 1, 17, 32, 15548 }, // U+0421 + { 15, 17, 246, 0, 17, 32, 15580 }, // U+0422 + { 17, 17, 261, 0, 17, 37, 15612 }, // U+0423 + { 20, 18, 348, 1, 18, 45, 15649 }, // U+0424 + { 17, 17, 270, 0, 17, 37, 15694 }, // U+0425 + { 18, 22, 316, 2, 17, 50, 15731 }, // U+0426 + { 14, 17, 272, 1, 17, 30, 15781 }, // U+0427 + { 22, 17, 408, 2, 17, 47, 15811 }, // U+0428 + { 25, 22, 432, 2, 17, 69, 15858 }, // U+0429 + { 19, 17, 309, 0, 17, 41, 15927 }, // U+042A + { 20, 17, 371, 2, 17, 43, 15968 }, // U+042B + { 14, 17, 264, 2, 17, 30, 16011 }, // U+042C + { 15, 17, 272, 1, 17, 32, 16041 }, // U+042D + { 24, 17, 432, 2, 17, 51, 16073 }, // U+042E + { 15, 17, 276, 1, 17, 32, 16124 }, // U+042F + { 13, 13, 221, 0, 13, 22, 16156 }, // U+0430 + { 13, 19, 240, 1, 19, 31, 16178 }, // U+0431 + { 13, 13, 239, 1, 13, 22, 16209 }, // U+0432 + { 11, 13, 181, 1, 13, 18, 16231 }, // U+0433 + { 17, 17, 271, 0, 13, 37, 16249 }, // U+0434 + { 13, 13, 234, 1, 13, 22, 16286 }, // U+0435 + { 21, 13, 340, 0, 13, 35, 16308 }, // U+0436 + { 12, 13, 198, 0, 13, 20, 16343 }, // U+0437 + { 13, 13, 248, 1, 13, 22, 16363 }, // U+0438 + { 13, 20, 248, 1, 20, 33, 16385 }, // U+0439 + { 14, 13, 234, 1, 13, 23, 16418 }, // U+043A + { 14, 13, 251, 0, 13, 23, 16441 }, // U+043B + { 17, 13, 304, 1, 13, 28, 16464 }, // U+043C + { 13, 13, 237, 1, 13, 22, 16492 }, // U+043D + { 14, 13, 243, 1, 13, 23, 16514 }, // U+043E + { 13, 13, 237, 1, 13, 22, 16537 }, // U+043F + { 13, 18, 242, 1, 13, 30, 16559 }, // U+0440 + { 11, 13, 200, 1, 13, 18, 16589 }, // U+0441 + { 13, 13, 210, 0, 13, 22, 16607 }, // U+0442 + { 14, 18, 219, 0, 13, 32, 16629 }, // U+0443 + { 18, 24, 318, 1, 19, 54, 16661 }, // U+0444 + { 14, 13, 222, 0, 13, 23, 16715 }, // U+0445 + { 15, 17, 253, 1, 13, 32, 16738 }, // U+0446 + { 12, 13, 227, 1, 13, 20, 16770 }, // U+0447 + { 19, 13, 344, 1, 13, 31, 16790 }, // U+0448 + { 21, 17, 360, 1, 13, 45, 16821 }, // U+0449 + { 16, 13, 256, 0, 13, 26, 16866 }, // U+044A + { 18, 13, 330, 1, 13, 30, 16892 }, // U+044B + { 13, 13, 226, 1, 13, 22, 16922 }, // U+044C + { 13, 13, 208, 0, 13, 22, 16944 }, // U+044D + { 20, 13, 349, 1, 13, 33, 16966 }, // U+044E + { 13, 13, 234, 0, 13, 22, 16999 }, // U+044F + { 13, 20, 234, 1, 20, 33, 17021 }, // U+0450 + { 13, 19, 234, 1, 19, 31, 17054 }, // U+0451 + { 14, 24, 240, 0, 19, 42, 17085 }, // U+0452 + { 11, 20, 181, 1, 20, 28, 17127 }, // U+0453 + { 13, 13, 208, 0, 13, 22, 17155 }, // U+0454 + { 12, 13, 194, 0, 13, 20, 17177 }, // U+0455 + { 5, 19, 116, 1, 19, 12, 17197 }, // U+0456 + { 11, 19, 116, -2, 19, 27, 17209 }, // U+0457 + { 8, 24, 116, -2, 19, 24, 17236 }, // U+0458 + { 22, 13, 361, 0, 13, 36, 17260 }, // U+0459 + { 20, 13, 347, 1, 13, 33, 17296 }, // U+045A + { 14, 19, 240, 0, 19, 34, 17329 }, // U+045B + { 14, 20, 234, 1, 20, 35, 17363 }, // U+045C + { 13, 20, 248, 1, 20, 33, 17398 }, // U+045D + { 14, 25, 219, 0, 20, 44, 17431 }, // U+045E + { 13, 17, 237, 1, 13, 28, 17475 }, // U+045F + { 18, 19, 299, 0, 19, 43, 17503 }, // U+0462 + { 15, 19, 254, 0, 19, 36, 17546 }, // U+0463 + { 18, 17, 316, 1, 17, 39, 17582 }, // U+0472 + { 14, 13, 243, 1, 13, 23, 17621 }, // U+0473 + { 21, 17, 316, 0, 17, 45, 17644 }, // U+0474 + { 16, 13, 239, 0, 13, 26, 17689 }, // U+0475 + { 18, 29, 331, 2, 24, 66, 17715 }, // U+048A + { 15, 24, 252, 1, 20, 45, 17781 }, // U+048B + { 16, 17, 264, 0, 17, 34, 17826 }, // U+048C + { 14, 14, 226, 0, 14, 25, 17860 }, // U+048D + { 14, 17, 262, 2, 17, 30, 17885 }, // U+048E + { 14, 18, 246, 1, 13, 32, 17915 }, // U+048F + { 12, 20, 229, 2, 20, 30, 17947 }, // U+0490 + { 11, 16, 185, 1, 16, 22, 17977 }, // U+0491 + { 15, 17, 254, 1, 17, 32, 17999 }, // U+0492 + { 12, 13, 210, 1, 13, 20, 18031 }, // U+0493 + { 14, 22, 270, 2, 17, 39, 18051 }, // U+0494 + { 13, 18, 228, 1, 13, 30, 18090 }, // U+0495 + { 26, 21, 409, 0, 17, 69, 18120 }, // U+0496 + { 22, 17, 349, 0, 13, 47, 18189 }, // U+0497 + { 15, 22, 244, 0, 17, 42, 18236 }, // U+0498 + { 12, 18, 198, 0, 13, 27, 18278 }, // U+0499 + { 16, 22, 295, 2, 17, 44, 18305 }, // U+049A + { 14, 17, 242, 1, 13, 30, 18349 }, // U+049B + { 18, 17, 314, 2, 17, 39, 18379 }, // U+049C + { 16, 13, 273, 1, 13, 26, 18418 }, // U+049D + { 18, 18, 283, 0, 18, 41, 18444 }, // U+049E + { 15, 14, 242, 0, 14, 27, 18485 }, // U+049F + { 20, 17, 319, 0, 17, 43, 18512 }, // U+04A0 + { 17, 13, 263, 0, 13, 28, 18555 }, // U+04A1 + { 18, 22, 323, 2, 17, 50, 18583 }, // U+04A2 + { 15, 17, 254, 1, 13, 32, 18633 }, // U+04A3 + { 19, 17, 335, 2, 17, 41, 18665 }, // U+04A4 + { 16, 13, 261, 1, 13, 26, 18706 }, // U+04A5 + { 25, 22, 444, 2, 17, 69, 18732 }, // U+04A6 + { 20, 18, 349, 1, 13, 45, 18801 }, // U+04A7 + { 19, 21, 320, 1, 17, 50, 18846 }, // U+04A8 + { 15, 17, 253, 1, 13, 32, 18896 }, // U+04A9 + { 15, 22, 259, 1, 17, 42, 18928 }, // U+04AA + { 11, 18, 200, 1, 13, 25, 18970 }, // U+04AB + { 15, 22, 246, 0, 17, 42, 18995 }, // U+04AC + { 13, 17, 202, 0, 13, 28, 19037 }, // U+04AD + { 17, 17, 264, 0, 17, 37, 19065 }, // U+04AE + { 14, 18, 220, 0, 13, 32, 19102 }, // U+04AF + { 17, 17, 264, 0, 17, 37, 19134 }, // U+04B0 + { 14, 18, 220, 0, 13, 32, 19171 }, // U+04B1 + { 18, 22, 286, 0, 17, 50, 19203 }, // U+04B2 + { 15, 17, 235, 0, 13, 32, 19253 }, // U+04B3 + { 23, 22, 376, 0, 17, 64, 19285 }, // U+04B4 + { 17, 17, 279, 0, 13, 37, 19349 }, // U+04B5 + { 17, 22, 290, 1, 17, 47, 19386 }, // U+04B6 + { 15, 17, 236, 0, 13, 32, 19433 }, // U+04B7 + { 14, 17, 272, 1, 17, 30, 19465 }, // U+04B8 + { 13, 13, 225, 0, 13, 22, 19495 }, // U+04B9 + { 14, 17, 280, 2, 17, 30, 19517 }, // U+04BA + { 13, 19, 236, 1, 19, 31, 19547 }, // U+04BB + { 21, 17, 352, 0, 17, 45, 19578 }, // U+04BC + { 17, 13, 283, 0, 13, 28, 19623 }, // U+04BD + { 21, 21, 352, 0, 17, 56, 19651 }, // U+04BE + { 17, 16, 283, 0, 13, 34, 19707 }, // U+04BF + { 4, 17, 126, 2, 17, 9, 19741 }, // U+04C0 + { 25, 24, 393, 0, 24, 75, 19750 }, // U+04C1 + { 21, 20, 340, 0, 20, 53, 19825 }, // U+04C2 + { 15, 22, 281, 2, 17, 42, 19878 }, // U+04C3 + { 13, 18, 230, 1, 13, 30, 19920 }, // U+04C4 + { 21, 22, 332, 0, 17, 58, 19950 }, // U+04C5 + { 17, 17, 270, 0, 13, 37, 20008 }, // U+04C6 + { 15, 22, 294, 2, 17, 42, 20045 }, // U+04C7 + { 13, 18, 240, 1, 13, 30, 20087 }, // U+04C8 + { 18, 22, 314, 2, 17, 50, 20117 }, // U+04C9 + { 15, 17, 251, 1, 13, 32, 20167 }, // U+04CA + { 14, 22, 272, 1, 17, 39, 20199 }, // U+04CB + { 12, 17, 227, 1, 13, 26, 20238 }, // U+04CC + { 23, 22, 381, 1, 17, 64, 20264 }, // U+04CD + { 19, 17, 318, 1, 13, 41, 20328 }, // U+04CE + { 5, 17, 116, 1, 17, 11, 20369 }, // U+04CF + { 18, 24, 288, 0, 24, 54, 20380 }, // U+04D0 + { 13, 20, 221, 0, 20, 33, 20434 }, // U+04D1 + { 18, 23, 288, 0, 23, 52, 20467 }, // U+04D2 + { 13, 19, 221, 0, 19, 31, 20519 }, // U+04D3 + { 24, 17, 398, 0, 17, 51, 20550 }, // U+04D4 + { 21, 13, 350, 0, 13, 35, 20601 }, // U+04D5 + { 13, 24, 242, 2, 24, 39, 20636 }, // U+04D6 + { 13, 20, 234, 1, 20, 33, 20675 }, // U+04D7 + { 16, 17, 292, 1, 17, 34, 20708 }, // U+04D8 + { 13, 13, 234, 1, 13, 22, 20742 }, // U+04D9 + { 16, 23, 292, 1, 23, 46, 20764 }, // U+04DA + { 13, 19, 234, 1, 19, 31, 20810 }, // U+04DB + { 25, 23, 393, 0, 23, 72, 20841 }, // U+04DC + { 21, 19, 340, 0, 19, 50, 20913 }, // U+04DD + { 15, 23, 244, 0, 23, 44, 20963 }, // U+04DE + { 12, 19, 198, 0, 19, 29, 21007 }, // U+04DF + { 14, 17, 246, 0, 17, 30, 21036 }, // U+04E0 + { 12, 18, 206, 0, 13, 27, 21066 }, // U+04E1 + { 15, 23, 302, 2, 23, 44, 21093 }, // U+04E2 + { 13, 19, 248, 1, 19, 31, 21137 }, // U+04E3 + { 15, 23, 302, 2, 23, 44, 21168 }, // U+04E4 + { 13, 19, 248, 1, 19, 31, 21212 }, // U+04E5 + { 18, 23, 316, 1, 23, 52, 21243 }, // U+04E6 + { 14, 19, 243, 1, 19, 34, 21295 }, // U+04E7 + { 18, 17, 316, 1, 17, 39, 21329 }, // U+04E8 + { 14, 13, 243, 1, 13, 23, 21368 }, // U+04E9 + { 18, 23, 316, 1, 23, 52, 21391 }, // U+04EA + { 14, 19, 243, 1, 19, 34, 21443 }, // U+04EB + { 15, 23, 272, 1, 23, 44, 21477 }, // U+04EC + { 13, 19, 208, 0, 19, 31, 21521 }, // U+04ED + { 17, 23, 261, 0, 23, 49, 21552 }, // U+04EE + { 14, 24, 219, 0, 19, 42, 21601 }, // U+04EF + { 17, 23, 261, 0, 23, 49, 21643 }, // U+04F0 + { 14, 24, 219, 0, 19, 42, 21692 }, // U+04F1 + { 17, 24, 261, 0, 24, 51, 21734 }, // U+04F2 + { 14, 25, 219, 0, 20, 44, 21785 }, // U+04F3 + { 14, 23, 272, 1, 23, 41, 21829 }, // U+04F4 + { 12, 19, 227, 1, 19, 29, 21870 }, // U+04F5 + { 12, 22, 237, 2, 17, 33, 21899 }, // U+04F6 + { 11, 17, 181, 1, 13, 24, 21932 }, // U+04F7 + { 20, 23, 371, 2, 23, 58, 21956 }, // U+04F8 + { 18, 19, 330, 1, 19, 43, 22014 }, // U+04F9 + { 17, 15, 270, 0, 15, 32, 22057 }, // U+05D0 + { 15, 15, 238, 0, 15, 29, 22089 }, // U+05D1 + { 10, 16, 165, 0, 15, 20, 22118 }, // U+05D2 + { 14, 15, 228, 0, 15, 27, 22138 }, // U+05D3 + { 14, 15, 263, 1, 15, 27, 22165 }, // U+05D4 + { 7, 15, 135, 0, 15, 14, 22192 }, // U+05D5 + { 9, 15, 148, 0, 15, 17, 22206 }, // U+05D6 + { 16, 15, 275, 0, 15, 30, 22223 }, // U+05D7 + { 15, 15, 264, 1, 15, 29, 22253 }, // U+05D8 + { 7, 9, 133, 0, 15, 8, 22282 }, // U+05D9 + { 13, 20, 228, 0, 15, 33, 22290 }, // U+05DA + { 13, 15, 211, 0, 15, 25, 22323 }, // U+05DB + { 14, 19, 222, 0, 19, 34, 22348 }, // U+05DC + { 15, 15, 281, 1, 15, 29, 22382 }, // U+05DD + { 17, 15, 281, 0, 15, 32, 22411 }, // U+05DE + { 7, 20, 142, 0, 15, 18, 22443 }, // U+05DF + { 8, 15, 162, 1, 15, 15, 22461 }, // U+05E0 + { 16, 15, 272, 0, 15, 30, 22476 }, // U+05E1 + { 15, 18, 252, 0, 16, 34, 22506 }, // U+05E2 + { 14, 20, 262, 1, 15, 35, 22540 }, // U+05E3 + { 15, 15, 251, 0, 15, 29, 22575 }, // U+05E4 + { 14, 20, 235, 0, 15, 35, 22604 }, // U+05E5 + { 14, 15, 237, 0, 15, 27, 22639 }, // U+05E6 + { 15, 20, 262, 1, 15, 38, 22666 }, // U+05E7 + { 12, 15, 217, 0, 15, 23, 22704 }, // U+05E8 + { 18, 15, 315, 1, 15, 34, 22727 }, // U+05E9 + { 17, 15, 289, 0, 15, 32, 22761 }, // U+05EA + { 5, 8, 129, 1, 7, 5, 22793 }, // U+060C + { 7, 19, 136, 0, 18, 17, 22798 }, // U+061B + { 13, 20, 205, 0, 19, 33, 22815 }, // U+061F + { 11, 13, 188, 0, 11, 18, 22848 }, // U+0621 + { 10, 5, 116, 0, 4, 7, 22866 }, // U+0640 + { 6, 7, 229, 4, 11, 6, 22873 }, // U+0660 + { 6, 19, 229, 4, 18, 15, 22879 }, // U+0661 + { 13, 19, 229, 1, 18, 31, 22894 }, // U+0662 + { 14, 19, 229, 0, 18, 34, 22925 }, // U+0663 + { 12, 19, 229, 1, 18, 29, 22959 }, // U+0664 + { 12, 14, 229, 1, 14, 21, 22988 }, // U+0665 + { 13, 19, 229, 1, 18, 31, 23009 }, // U+0666 + { 15, 19, 229, 0, 18, 36, 23040 }, // U+0667 + { 15, 19, 229, 0, 18, 36, 23076 }, // U+0668 + { 12, 18, 229, 1, 18, 27, 23112 }, // U+0669 + { 18, 16, 296, 0, 10, 36, 23139 }, // U+06BA + { 7, 3, 130, 1, 3, 3, 23175 }, // U+06D4 + { 6, 7, 229, 4, 11, 6, 23178 }, // U+06F0 + { 6, 19, 229, 4, 18, 15, 23184 }, // U+06F1 + { 13, 19, 229, 1, 18, 31, 23199 }, // U+06F2 + { 14, 19, 229, 0, 18, 34, 23230 }, // U+06F3 + { 13, 19, 229, 1, 18, 31, 23264 }, // U+06F4 + { 14, 17, 229, 0, 17, 30, 23295 }, // U+06F5 + { 12, 18, 229, 1, 17, 27, 23325 }, // U+06F6 + { 15, 19, 229, 0, 18, 36, 23352 }, // U+06F7 + { 15, 19, 229, 0, 18, 36, 23388 }, // U+06F8 + { 12, 18, 229, 1, 18, 27, 23424 }, // U+06F9 + { 18, 24, 288, 0, 18, 54, 23451 }, // U+1EA0 + { 13, 20, 221, 0, 14, 33, 23505 }, // U+1EA1 + { 18, 24, 288, 0, 24, 54, 23538 }, // U+1EA2 + { 13, 21, 221, 0, 20, 35, 23592 }, // U+1EA3 + { 18, 27, 288, 0, 27, 61, 23627 }, // U+1EA4 + { 15, 24, 221, 0, 23, 45, 23688 }, // U+1EA5 + { 18, 28, 288, 0, 28, 63, 23733 }, // U+1EA6 + { 13, 25, 221, 0, 24, 41, 23796 }, // U+1EA7 + { 18, 28, 288, 0, 28, 63, 23837 }, // U+1EA8 + { 14, 25, 221, 0, 24, 44, 23900 }, // U+1EA9 + { 18, 29, 288, 0, 29, 66, 23944 }, // U+1EAA + { 13, 25, 221, 0, 24, 41, 24010 }, // U+1EAB + { 18, 30, 288, 0, 24, 68, 24051 }, // U+1EAC + { 13, 26, 221, 0, 20, 43, 24119 }, // U+1EAD + { 18, 29, 288, 0, 29, 66, 24162 }, // U+1EAE + { 13, 26, 221, 0, 25, 43, 24228 }, // U+1EAF + { 18, 29, 288, 0, 29, 66, 24271 }, // U+1EB0 + { 13, 26, 221, 0, 25, 43, 24337 }, // U+1EB1 + { 18, 30, 288, 0, 30, 68, 24380 }, // U+1EB2 + { 13, 27, 221, 0, 26, 44, 24448 }, // U+1EB3 + { 18, 28, 288, 0, 28, 63, 24492 }, // U+1EB4 + { 13, 25, 221, 0, 24, 41, 24555 }, // U+1EB5 + { 18, 29, 288, 0, 23, 66, 24596 }, // U+1EB6 + { 13, 26, 221, 0, 20, 43, 24662 }, // U+1EB7 + { 13, 24, 242, 2, 18, 39, 24705 }, // U+1EB8 + { 13, 20, 234, 1, 14, 33, 24744 }, // U+1EB9 + { 13, 24, 242, 2, 24, 39, 24777 }, // U+1EBA + { 13, 21, 234, 1, 20, 35, 24816 }, // U+1EBB + { 13, 24, 242, 2, 24, 39, 24851 }, // U+1EBC + { 13, 20, 234, 1, 19, 33, 24890 }, // U+1EBD + { 14, 28, 242, 2, 28, 49, 24923 }, // U+1EBE + { 15, 24, 234, 1, 23, 45, 24972 }, // U+1EBF + { 13, 28, 242, 2, 28, 46, 25017 }, // U+1EC0 + { 13, 24, 234, 1, 23, 39, 25063 }, // U+1EC1 + { 14, 28, 242, 2, 28, 49, 25102 }, // U+1EC2 + { 14, 24, 234, 1, 23, 42, 25151 }, // U+1EC3 + { 13, 29, 242, 2, 29, 48, 25193 }, // U+1EC4 + { 13, 25, 234, 1, 24, 41, 25241 }, // U+1EC5 + { 13, 30, 242, 2, 24, 49, 25282 }, // U+1EC6 + { 13, 26, 234, 1, 20, 43, 25331 }, // U+1EC7 + { 6, 24, 126, 1, 24, 18, 25374 }, // U+1EC8 + { 7, 20, 116, 0, 20, 18, 25392 }, // U+1EC9 + { 5, 24, 126, 1, 18, 15, 25410 }, // U+1ECA + { 5, 26, 116, 1, 20, 17, 25425 }, // U+1ECB + { 18, 24, 316, 1, 18, 54, 25442 }, // U+1ECC + { 14, 20, 243, 1, 14, 35, 25496 }, // U+1ECD + { 18, 25, 316, 1, 24, 57, 25531 }, // U+1ECE + { 14, 21, 243, 1, 20, 37, 25588 }, // U+1ECF + { 18, 29, 316, 1, 28, 66, 25625 }, // U+1ED0 + { 15, 24, 243, 1, 23, 45, 25691 }, // U+1ED1 + { 18, 29, 316, 1, 28, 66, 25736 }, // U+1ED2 + { 14, 25, 243, 1, 24, 44, 25802 }, // U+1ED3 + { 18, 29, 316, 1, 28, 66, 25846 }, // U+1ED4 + { 14, 25, 243, 1, 24, 44, 25912 }, // U+1ED5 + { 18, 30, 316, 1, 29, 68, 25956 }, // U+1ED6 + { 14, 25, 243, 1, 24, 44, 26024 }, // U+1ED7 + { 18, 30, 316, 1, 24, 68, 26068 }, // U+1ED8 + { 14, 26, 243, 1, 20, 46, 26136 }, // U+1ED9 + { 18, 25, 316, 1, 24, 57, 26182 }, // U+1EDA + { 15, 21, 243, 1, 20, 40, 26239 }, // U+1EDB + { 18, 25, 316, 1, 24, 57, 26279 }, // U+1EDC + { 15, 21, 243, 1, 20, 40, 26336 }, // U+1EDD + { 18, 25, 316, 1, 24, 57, 26376 }, // U+1EDE + { 15, 21, 243, 1, 20, 40, 26433 }, // U+1EDF + { 18, 24, 316, 1, 23, 54, 26473 }, // U+1EE0 + { 15, 20, 243, 1, 19, 38, 26527 }, // U+1EE1 + { 18, 27, 316, 1, 21, 61, 26565 }, // U+1EE2 + { 15, 22, 243, 1, 16, 42, 26626 }, // U+1EE3 + { 15, 24, 283, 1, 18, 45, 26668 }, // U+1EE4 + { 12, 20, 236, 1, 14, 30, 26713 }, // U+1EE5 + { 15, 25, 283, 1, 24, 47, 26743 }, // U+1EE6 + { 12, 21, 236, 1, 20, 32, 26790 }, // U+1EE7 + { 18, 25, 299, 1, 24, 57, 26822 }, // U+1EE8 + { 15, 21, 250, 1, 20, 40, 26879 }, // U+1EE9 + { 18, 25, 299, 1, 24, 57, 26919 }, // U+1EEA + { 15, 21, 250, 1, 20, 40, 26976 }, // U+1EEB + { 18, 25, 299, 1, 24, 57, 27016 }, // U+1EEC + { 15, 21, 250, 1, 20, 40, 27073 }, // U+1EED + { 18, 24, 299, 1, 23, 54, 27113 }, // U+1EEE + { 15, 20, 250, 1, 19, 38, 27167 }, // U+1EEF + { 18, 27, 299, 1, 21, 61, 27205 }, // U+1EF0 + { 15, 22, 250, 1, 16, 42, 27266 }, // U+1EF1 + { 17, 24, 264, 0, 24, 51, 27308 }, // U+1EF2 + { 14, 25, 219, 0, 20, 44, 27359 }, // U+1EF3 + { 17, 24, 264, 0, 18, 51, 27403 }, // U+1EF4 + { 15, 19, 219, 0, 14, 36, 27454 }, // U+1EF5 + { 17, 24, 264, 0, 24, 51, 27490 }, // U+1EF6 + { 14, 25, 219, 0, 20, 44, 27541 }, // U+1EF7 + { 17, 24, 264, 0, 24, 51, 27585 }, // U+1EF8 + { 14, 24, 219, 0, 19, 42, 27636 }, // U+1EF9 + { 0, 0, 52, 0, 0, 0, 27678 }, // U+2009 + { 0, 0, 0, 0, 0, 0, 27678 }, // U+200B + { 2, 18, 0, -1, 17, 5, 27678 }, // U+200C + { 6, 19, 0, -3, 18, 15, 27683 }, // U+200D + { 7, 19, 0, -1, 18, 17, 27698 }, // U+200E + { 7, 19, 0, -6, 18, 17, 27715 }, // U+200F + { 8, 3, 128, 0, 8, 3, 27732 }, // U+2010 + { 8, 4, 129, 0, 9, 4, 27735 }, // U+2011 + { 13, 3, 200, 0, 9, 5, 27739 }, // U+2013 + { 25, 3, 400, 0, 9, 10, 27744 }, // U+2014 + { 25, 3, 400, 0, 9, 10, 27754 }, // U+2015 + { 5, 7, 97, 1, 19, 5, 27764 }, // U+2018 + { 6, 7, 97, 0, 19, 6, 27769 }, // U+2019 + { 6, 7, 97, 0, 4, 6, 27775 }, // U+201A + { 10, 7, 182, 1, 19, 9, 27781 }, // U+201C + { 11, 7, 182, 0, 19, 10, 27790 }, // U+201D + { 11, 7, 182, 0, 4, 10, 27800 }, // U+201E + { 12, 21, 198, 0, 17, 32, 27810 }, // U+2020 + { 12, 21, 198, 0, 17, 32, 27842 }, // U+2021 + { 9, 7, 146, 0, 12, 8, 27874 }, // U+2022 + { 23, 5, 400, 1, 5, 15, 27882 }, // U+2026 + { 0, 0, 52, 0, 0, 0, 27897 }, // U+202F + { 33, 17, 528, 0, 17, 71, 27897 }, // U+2030 + { 8, 13, 131, 0, 14, 13, 27968 }, // U+2039 + { 8, 13, 131, 0, 14, 13, 27981 }, // U+203A + { 14, 18, 61, -5, 18, 32, 27994 }, // U+2044 + { 7, 19, 136, 0, 18, 17, 28026 }, // U+204F + { 9, 10, 145, 0, 18, 12, 28043 }, // U+2070 + { 9, 10, 145, 0, 18, 12, 28055 }, // U+2074 + { 9, 10, 145, 0, 18, 12, 28067 }, // U+2075 + { 9, 10, 145, 0, 18, 12, 28079 }, // U+2076 + { 9, 10, 145, 0, 18, 12, 28091 }, // U+2077 + { 9, 10, 145, 0, 18, 12, 28103 }, // U+2078 + { 9, 10, 145, 0, 18, 12, 28115 }, // U+2079 + { 9, 10, 145, 0, 11, 12, 28127 }, // U+2080 + { 7, 10, 145, 0, 11, 9, 28139 }, // U+2081 + { 9, 10, 145, 0, 11, 12, 28148 }, // U+2082 + { 8, 10, 145, 0, 11, 10, 28160 }, // U+2083 + { 9, 10, 145, 0, 11, 12, 28170 }, // U+2084 + { 9, 10, 145, 0, 11, 12, 28182 }, // U+2085 + { 9, 10, 145, 0, 11, 12, 28194 }, // U+2086 + { 9, 10, 145, 0, 11, 12, 28206 }, // U+2087 + { 9, 10, 145, 0, 11, 12, 28218 }, // U+2088 + { 9, 10, 145, 0, 11, 12, 28230 }, // U+2089 + { 19, 15, 346, 1, 15, 36, 28242 }, // U+20AA + { 14, 17, 227, 1, 17, 30, 28278 }, // U+20AC + { 14, 17, 227, 0, 17, 30, 28308 }, // U+20AE + { 14, 17, 227, 0, 17, 30, 28338 }, // U+20B4 + { 14, 17, 227, 1, 17, 30, 28368 }, // U+20B9 + { 15, 18, 245, 0, 18, 34, 28398 }, // U+2202 + { 18, 17, 277, 0, 17, 39, 28432 }, // U+2206 + { 15, 21, 292, 2, 18, 40, 28471 }, // U+220F + { 14, 20, 217, 0, 17, 35, 28511 }, // U+2211 + { 12, 3, 227, 1, 9, 5, 28546 }, // U+2212 + { 14, 18, 61, -5, 18, 32, 28551 }, // U+2215 + { 6, 5, 98, 0, 10, 4, 28583 }, // U+2219 + { 16, 18, 241, 0, 18, 36, 28587 }, // U+221A + { 16, 8, 254, 0, 11, 16, 28623 }, // U+221E + { 10, 25, 160, 0, 19, 32, 28639 }, // U+222B + { 14, 11, 227, 0, 13, 20, 28671 }, // U+2248 + { 12, 14, 227, 1, 14, 21, 28691 }, // U+2260 + { 12, 15, 227, 1, 15, 23, 28712 }, // U+2264 + { 12, 15, 227, 1, 15, 23, 28735 }, // U+2265 + { 21, 19, 336, 1, 19, 50, 28758 }, // U+FB00 + { 16, 19, 283, 1, 19, 38, 28808 }, // U+FB01 + { 18, 19, 294, 1, 19, 43, 28846 }, // U+FB02 + { 26, 19, 451, 1, 19, 62, 28889 }, // U+FB03 + { 28, 19, 462, 1, 19, 67, 28951 }, // U+FB04 + { 25, 21, 410, 0, 12, 66, 29018 }, // U+FB56 + { 31, 19, 457, 0, 10, 74, 29084 }, // U+FB57 + { 8, 21, 144, 0, 12, 21, 29158 }, // U+FB58 + { 13, 18, 164, 0, 9, 30, 29179 }, // U+FB59 + { 25, 19, 410, 0, 18, 60, 29209 }, // U+FB66 + { 31, 19, 457, 0, 18, 74, 29269 }, // U+FB67 + { 8, 22, 127, 0, 21, 22, 29343 }, // U+FB68 + { 13, 19, 164, 0, 18, 31, 29365 }, // U+FB69 + { 17, 23, 275, 0, 13, 49, 29396 }, // U+FB7A + { 21, 23, 304, 0, 13, 61, 29445 }, // U+FB7B + { 16, 20, 252, 0, 11, 40, 29506 }, // U+FB7C + { 19, 20, 262, 0, 11, 48, 29546 }, // U+FB7D + { 12, 23, 207, 0, 22, 35, 29594 }, // U+FB88 + { 17, 23, 228, 0, 22, 49, 29629 }, // U+FB89 + { 11, 26, 164, -1, 20, 36, 29678 }, // U+FB8A + { 15, 26, 180, -1, 20, 49, 29714 }, // U+FB8B + { 11, 26, 164, -1, 20, 36, 29763 }, // U+FB8C + { 15, 26, 180, -1, 20, 49, 29799 }, // U+FB8D + { 23, 19, 364, 0, 18, 55, 29848 }, // U+FB8E + { 26, 19, 381, 0, 18, 62, 29903 }, // U+FB8F + { 12, 19, 182, 0, 18, 29, 29965 }, // U+FB90 + { 15, 19, 203, 0, 18, 36, 29994 }, // U+FB91 + { 23, 23, 364, 0, 22, 67, 30030 }, // U+FB92 + { 26, 23, 381, 0, 22, 75, 30097 }, // U+FB93 + { 13, 23, 182, -1, 22, 38, 30172 }, // U+FB94 + { 16, 23, 203, -1, 22, 46, 30210 }, // U+FB95 + { 18, 16, 296, 0, 10, 36, 30256 }, // U+FB9E + { 23, 15, 322, 0, 9, 44, 30292 }, // U+FB9F + { 11, 15, 188, 0, 14, 21, 30336 }, // U+FBA6 + { 17, 11, 234, 0, 10, 24, 30357 }, // U+FBA7 + { 7, 17, 127, 0, 12, 15, 30381 }, // U+FBA8 + { 15, 13, 206, 0, 6, 25, 30396 }, // U+FBA9 + { 19, 15, 308, 0, 14, 36, 30421 }, // U+FBAA + { 20, 18, 274, 0, 12, 45, 30457 }, // U+FBAB + { 16, 15, 256, 0, 14, 30, 30502 }, // U+FBAC + { 17, 18, 228, 0, 12, 39, 30532 }, // U+FBAD + { 23, 14, 377, 0, 13, 41, 30571 }, // U+FBAE + { 17, 12, 224, 0, 4, 26, 30612 }, // U+FBAF + { 23, 21, 377, 0, 20, 61, 30638 }, // U+FBB0 + { 17, 19, 224, 0, 11, 41, 30699 }, // U+FBB1 + { 21, 18, 328, 0, 12, 48, 30740 }, // U+FBFC + { 22, 13, 320, 0, 7, 36, 30788 }, // U+FBFD + { 8, 18, 144, 0, 12, 18, 30824 }, // U+FBFE + { 13, 15, 164, 0, 9, 25, 30842 }, // U+FBFF + { 11, 13, 188, 0, 11, 18, 30867 }, // U+FE80 + { 10, 23, 108, -2, 23, 29, 30885 }, // U+FE81 + { 12, 25, 127, -2, 24, 38, 30914 }, // U+FE82 + { 6, 25, 108, 0, 25, 19, 30952 }, // U+FE83 + { 10, 27, 127, 0, 26, 34, 30971 }, // U+FE84 + { 12, 24, 199, 0, 18, 36, 31005 }, // U+FE85 + { 16, 24, 210, 0, 18, 48, 31041 }, // U+FE86 + { 6, 27, 109, 1, 19, 21, 31089 }, // U+FE87 + { 9, 27, 127, 1, 19, 31, 31110 }, // U+FE88 + { 21, 19, 328, 0, 13, 50, 31141 }, // U+FE89 + { 22, 19, 320, 0, 13, 53, 31191 }, // U+FE8A + { 7, 21, 127, 0, 20, 19, 31244 }, // U+FE8B + { 12, 18, 154, 0, 17, 27, 31263 }, // U+FE8C + { 5, 19, 109, 1, 19, 12, 31290 }, // U+FE8D + { 9, 20, 127, 1, 19, 23, 31302 }, // U+FE8E + { 25, 19, 410, 0, 12, 60, 31325 }, // U+FE8F + { 31, 17, 457, 0, 10, 66, 31385 }, // U+FE90 + { 7, 18, 127, 0, 12, 16, 31451 }, // U+FE91 + { 12, 15, 154, 0, 9, 23, 31467 }, // U+FE92 + { 11, 21, 188, 0, 20, 29, 31490 }, // U+FE93 + { 16, 23, 222, 0, 22, 46, 31519 }, // U+FE94 + { 25, 16, 410, 0, 15, 50, 31565 }, // U+FE95 + { 31, 16, 457, 0, 15, 62, 31615 }, // U+FE96 + { 9, 19, 127, -1, 18, 22, 31677 }, // U+FE97 + { 13, 16, 164, 0, 15, 26, 31699 }, // U+FE98 + { 25, 19, 410, 0, 18, 60, 31725 }, // U+FE99 + { 31, 19, 457, 0, 18, 74, 31785 }, // U+FE9A + { 8, 22, 127, 0, 21, 22, 31859 }, // U+FE9B + { 13, 19, 164, 0, 18, 31, 31881 }, // U+FE9C + { 17, 23, 275, 0, 13, 49, 31912 }, // U+FE9D + { 21, 23, 296, 0, 13, 61, 31961 }, // U+FE9E + { 16, 17, 252, 0, 11, 34, 32022 }, // U+FE9F + { 19, 17, 262, 0, 11, 41, 32056 }, // U+FEA0 + { 17, 23, 275, 0, 13, 49, 32097 }, // U+FEA1 + { 21, 23, 296, 0, 13, 61, 32146 }, // U+FEA2 + { 16, 12, 252, 0, 11, 24, 32207 }, // U+FEA3 + { 19, 12, 262, 0, 11, 29, 32231 }, // U+FEA4 + { 17, 29, 275, 0, 19, 62, 32260 }, // U+FEA5 + { 21, 29, 296, 0, 19, 77, 32322 }, // U+FEA6 + { 16, 19, 252, 0, 18, 38, 32399 }, // U+FEA7 + { 19, 19, 262, 0, 18, 46, 32437 }, // U+FEA8 + { 12, 14, 207, 0, 13, 21, 32483 }, // U+FEA9 + { 17, 14, 228, 0, 13, 30, 32504 }, // U+FEAA + { 12, 20, 207, 0, 19, 30, 32534 }, // U+FEAB + { 17, 20, 228, 0, 19, 43, 32564 }, // U+FEAC + { 10, 16, 164, -1, 10, 20, 32607 }, // U+FEAD + { 15, 16, 180, -1, 10, 30, 32627 }, // U+FEAE + { 10, 23, 164, -1, 17, 29, 32657 }, // U+FEAF + { 15, 23, 180, -1, 17, 44, 32686 }, // U+FEB0 + { 33, 18, 548, 0, 12, 75, 32730 }, // U+FEB1 + { 38, 17, 576, 0, 11, 81, 32805 }, // U+FEB2 + { 23, 13, 380, 0, 12, 38, 32886 }, // U+FEB3 + { 28, 12, 408, 0, 11, 42, 32924 }, // U+FEB4 + { 33, 25, 548, 0, 19, 104, 32966 }, // U+FEB5 + { 38, 25, 576, 0, 19, 119, 33070 }, // U+FEB6 + { 23, 20, 380, 0, 19, 58, 33189 }, // U+FEB7 + { 28, 20, 408, 0, 19, 70, 33247 }, // U+FEB8 + { 35, 17, 569, 0, 11, 75, 33317 }, // U+FEB9 + { 39, 17, 577, 0, 11, 83, 33392 }, // U+FEBA + { 24, 12, 390, 0, 11, 36, 33475 }, // U+FEBB + { 28, 12, 402, 0, 11, 42, 33511 }, // U+FEBC + { 35, 24, 569, 0, 18, 105, 33553 }, // U+FEBD + { 39, 24, 577, 0, 18, 117, 33658 }, // U+FEBE + { 24, 19, 390, 0, 18, 57, 33775 }, // U+FEBF + { 28, 19, 402, 0, 18, 67, 33832 }, // U+FEC0 + { 21, 20, 338, 0, 19, 53, 33899 }, // U+FEC1 + { 24, 20, 344, 0, 19, 60, 33952 }, // U+FEC2 + { 18, 20, 295, 0, 19, 45, 34012 }, // U+FEC3 + { 22, 20, 305, 0, 19, 55, 34057 }, // U+FEC4 + { 21, 20, 338, 0, 19, 53, 34112 }, // U+FEC5 + { 24, 20, 344, 0, 19, 60, 34165 }, // U+FEC6 + { 18, 20, 295, 0, 19, 45, 34225 }, // U+FEC7 + { 22, 20, 305, 0, 19, 55, 34270 }, // U+FEC8 + { 17, 24, 228, 0, 14, 51, 34325 }, // U+FEC9 + { 17, 22, 228, 0, 12, 47, 34376 }, // U+FECA + { 13, 14, 223, 0, 13, 23, 34423 }, // U+FECB + { 17, 13, 221, -1, 12, 28, 34446 }, // U+FECC + { 17, 31, 228, 0, 21, 66, 34474 }, // U+FECD + { 17, 28, 228, 0, 18, 60, 34540 }, // U+FECE + { 13, 20, 223, 0, 19, 33, 34600 }, // U+FECF + { 17, 19, 221, -1, 18, 41, 34633 }, // U+FED0 + { 25, 22, 410, 0, 21, 69, 34674 }, // U+FED1 + { 30, 20, 446, 0, 19, 75, 34743 }, // U+FED2 + { 12, 22, 202, 0, 21, 33, 34818 }, // U+FED3 + { 16, 20, 212, 0, 19, 40, 34851 }, // U+FED4 + { 20, 23, 333, 0, 18, 58, 34891 }, // U+FED5 + { 24, 23, 342, 0, 16, 69, 34949 }, // U+FED6 + { 12, 22, 202, 0, 21, 33, 35018 }, // U+FED7 + { 16, 20, 212, 0, 19, 40, 35051 }, // U+FED8 + { 23, 20, 372, 0, 19, 58, 35091 }, // U+FED9 + { 27, 20, 390, 0, 19, 68, 35149 }, // U+FEDA + { 12, 19, 182, 0, 18, 29, 35217 }, // U+FEDB + { 15, 19, 203, 0, 18, 36, 35246 }, // U+FEDC + { 18, 25, 296, 0, 19, 57, 35282 }, // U+FEDD + { 22, 25, 316, 0, 19, 69, 35339 }, // U+FEDE + { 7, 20, 119, 0, 19, 18, 35408 }, // U+FEDF + { 11, 20, 138, 0, 19, 28, 35426 }, // U+FEE0 + { 13, 22, 219, 0, 12, 36, 35454 }, // U+FEE1 + { 19, 21, 264, 0, 11, 50, 35490 }, // U+FEE2 + { 14, 12, 233, 0, 11, 21, 35540 }, // U+FEE3 + { 18, 12, 250, 0, 11, 27, 35561 }, // U+FEE4 + { 18, 21, 296, 0, 15, 48, 35588 }, // U+FEE5 + { 23, 21, 322, 0, 15, 61, 35636 }, // U+FEE6 + { 7, 19, 127, 0, 18, 17, 35697 }, // U+FEE7 + { 12, 17, 154, 0, 16, 26, 35714 }, // U+FEE8 + { 11, 15, 188, 0, 14, 21, 35740 }, // U+FEE9 + { 16, 16, 222, 0, 15, 32, 35761 }, // U+FEEA + { 16, 15, 256, 0, 14, 30, 35793 }, // U+FEEB + { 17, 18, 228, 0, 12, 39, 35823 }, // U+FEEC + { 12, 17, 199, 0, 11, 26, 35862 }, // U+FEED + { 16, 17, 210, 0, 11, 34, 35888 }, // U+FEEE + { 21, 18, 328, 0, 12, 48, 35922 }, // U+FEEF + { 22, 13, 320, 0, 7, 36, 35970 }, // U+FEF0 + { 21, 24, 328, 0, 12, 63, 36006 }, // U+FEF1 + { 22, 19, 320, 0, 7, 53, 36069 }, // U+FEF2 + { 8, 18, 144, 0, 12, 18, 36122 }, // U+FEF3 + { 13, 15, 164, 0, 9, 25, 36140 }, // U+FEF4 + { 17, 21, 253, -2, 21, 45, 36165 }, // U+FEF5 + { 20, 22, 272, 0, 21, 55, 36210 }, // U+FEF6 + { 15, 23, 253, 0, 23, 44, 36265 }, // U+FEF7 + { 19, 24, 272, 1, 23, 57, 36309 }, // U+FEF8 + { 14, 27, 253, 1, 19, 48, 36366 }, // U+FEF9 + { 19, 27, 272, 1, 19, 65, 36414 }, // U+FEFA + { 14, 19, 253, 1, 19, 34, 36479 }, // U+FEFB + { 19, 20, 272, 1, 19, 48, 36513 }, // U+FEFC }; static const EpdUnicodeInterval ubuntu_12_boldIntervals[] = { @@ -2621,52 +3338,70 @@ static const EpdUnicodeInterval ubuntu_12_boldIntervals[] = { { 0xD, 0xD, 0x3 }, { 0x1D, 0x1D, 0x4 }, { 0x20, 0x7E, 0x5 }, - { 0xA0, 0xFF, 0x64 }, - { 0x100, 0x17F, 0xC4 }, + { 0xA0, 0x17F, 0x64 }, { 0x1A0, 0x1A1, 0x144 }, { 0x1AF, 0x1B0, 0x146 }, { 0x1C4, 0x21F, 0x148 }, { 0x300, 0x304, 0x1A4 }, { 0x306, 0x308, 0x1A9 }, { 0x30A, 0x30C, 0x1AC }, - { 0x311, 0x311, 0x1AF }, - { 0x326, 0x328, 0x1B0 }, - { 0x34F, 0x34F, 0x1B3 }, - { 0x400, 0x45F, 0x1B4 }, - { 0x462, 0x463, 0x214 }, - { 0x472, 0x475, 0x216 }, - { 0x48A, 0x4F9, 0x21A }, - { 0x5D0, 0x5EA, 0x28A }, - { 0x1EA0, 0x1EF9, 0x2A5 }, - { 0x200C, 0x2010, 0x2FF }, - { 0x2013, 0x2015, 0x304 }, - { 0x2018, 0x201A, 0x307 }, - { 0x201C, 0x201E, 0x30A }, - { 0x2020, 0x2022, 0x30D }, - { 0x2026, 0x2026, 0x310 }, - { 0x2030, 0x2030, 0x311 }, - { 0x2039, 0x203A, 0x312 }, - { 0x2044, 0x2044, 0x314 }, - { 0x2070, 0x2070, 0x315 }, - { 0x2074, 0x2079, 0x316 }, - { 0x2080, 0x2089, 0x31C }, - { 0x20AA, 0x20AA, 0x326 }, - { 0x20AC, 0x20AC, 0x327 }, - { 0x20AE, 0x20AE, 0x328 }, - { 0x20B4, 0x20B4, 0x329 }, - { 0x20B9, 0x20B9, 0x32A }, - { 0x2202, 0x2202, 0x32B }, - { 0x2206, 0x2206, 0x32C }, - { 0x220F, 0x220F, 0x32D }, - { 0x2211, 0x2212, 0x32E }, - { 0x2215, 0x2215, 0x330 }, - { 0x2219, 0x221A, 0x331 }, - { 0x221E, 0x221E, 0x333 }, - { 0x222B, 0x222B, 0x334 }, - { 0x2248, 0x2248, 0x335 }, - { 0x2260, 0x2260, 0x336 }, - { 0x2264, 0x2265, 0x337 }, - { 0xFB00, 0xFB04, 0x339 }, + { 0x311, 0x312, 0x1AF }, + { 0x326, 0x328, 0x1B1 }, + { 0x34F, 0x34F, 0x1B4 }, + { 0x400, 0x45F, 0x1B5 }, + { 0x462, 0x463, 0x215 }, + { 0x472, 0x475, 0x217 }, + { 0x48A, 0x4F9, 0x21B }, + { 0x5D0, 0x5EA, 0x28B }, + { 0x60C, 0x60C, 0x2A6 }, + { 0x61B, 0x61B, 0x2A7 }, + { 0x61F, 0x61F, 0x2A8 }, + { 0x621, 0x621, 0x2A9 }, + { 0x640, 0x640, 0x2AA }, + { 0x660, 0x669, 0x2AB }, + { 0x6BA, 0x6BA, 0x2B5 }, + { 0x6D4, 0x6D4, 0x2B6 }, + { 0x6F0, 0x6F9, 0x2B7 }, + { 0x1EA0, 0x1EF9, 0x2C1 }, + { 0x2009, 0x2009, 0x31B }, + { 0x200B, 0x2011, 0x31C }, + { 0x2013, 0x2015, 0x323 }, + { 0x2018, 0x201A, 0x326 }, + { 0x201C, 0x201E, 0x329 }, + { 0x2020, 0x2022, 0x32C }, + { 0x2026, 0x2026, 0x32F }, + { 0x202F, 0x2030, 0x330 }, + { 0x2039, 0x203A, 0x332 }, + { 0x2044, 0x2044, 0x334 }, + { 0x204F, 0x204F, 0x335 }, + { 0x2070, 0x2070, 0x336 }, + { 0x2074, 0x2079, 0x337 }, + { 0x2080, 0x2089, 0x33D }, + { 0x20AA, 0x20AA, 0x347 }, + { 0x20AC, 0x20AC, 0x348 }, + { 0x20AE, 0x20AE, 0x349 }, + { 0x20B4, 0x20B4, 0x34A }, + { 0x20B9, 0x20B9, 0x34B }, + { 0x2202, 0x2202, 0x34C }, + { 0x2206, 0x2206, 0x34D }, + { 0x220F, 0x220F, 0x34E }, + { 0x2211, 0x2212, 0x34F }, + { 0x2215, 0x2215, 0x351 }, + { 0x2219, 0x221A, 0x352 }, + { 0x221E, 0x221E, 0x354 }, + { 0x222B, 0x222B, 0x355 }, + { 0x2248, 0x2248, 0x356 }, + { 0x2260, 0x2260, 0x357 }, + { 0x2264, 0x2265, 0x358 }, + { 0xFB00, 0xFB04, 0x35A }, + { 0xFB56, 0xFB59, 0x35F }, + { 0xFB66, 0xFB69, 0x363 }, + { 0xFB7A, 0xFB7D, 0x367 }, + { 0xFB88, 0xFB95, 0x36B }, + { 0xFB9E, 0xFB9F, 0x379 }, + { 0xFBA6, 0xFBB1, 0x37B }, + { 0xFBFC, 0xFBFF, 0x387 }, + { 0xFE80, 0xFEFC, 0x38B }, }; static const EpdKernClassEntry ubuntu_12_boldKernLeftClasses[] = { @@ -3242,6 +3977,10 @@ static const EpdKernClassEntry ubuntu_12_boldKernLeftClasses[] = { { 0xFB02, 48 }, // U+FB02 { 0xFB03, 45 }, // U+FB03 { 0xFB04, 48 }, // U+FB04 + { 0xFB8C, 173 }, // U+FB8C + { 0xFEAD, 173 }, // U+FEAD + { 0xFEAE, 173 }, // U+FEAE + { 0xFEAF, 173 }, // U+FEAF }; static const EpdKernClassEntry ubuntu_12_boldKernRightClasses[] = { @@ -3801,181 +4540,203 @@ static const EpdKernClassEntry ubuntu_12_boldKernRightClasses[] = { { 0xFB02, 35 }, // U+FB02 { 0xFB03, 35 }, // U+FB03 { 0xFB04, 35 }, // U+FB04 + { 0xFB8E, 156 }, // U+FB8E + { 0xFBA6, 156 }, // U+FBA6 + { 0xFBAA, 156 }, // U+FBAA + { 0xFE8D, 157 }, // U+FE8D + { 0xFEA3, 156 }, // U+FEA3 + { 0xFEA9, 158 }, // U+FEA9 + { 0xFEB1, 158 }, // U+FEB1 + { 0xFEB3, 158 }, // U+FEB3 + { 0xFEB9, 158 }, // U+FEB9 + { 0xFEBB, 158 }, // U+FEBB + { 0xFEC1, 158 }, // U+FEC1 + { 0xFEC3, 158 }, // U+FEC3 + { 0xFEC9, 159 }, // U+FEC9 + { 0xFECB, 157 }, // U+FECB + { 0xFECD, 159 }, // U+FECD + { 0xFEDB, 156 }, // U+FEDB + { 0xFEDF, 157 }, // U+FEDF + { 0xFEE1, 156 }, // U+FEE1 + { 0xFEE3, 156 }, // U+FEE3 + { 0xFEE9, 156 }, // U+FEE9 + { 0xFEEB, 156 }, // U+FEEB }; static const int8_t ubuntu_12_boldKernMatrix[] = { - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, 0, 0, 0, -35, 0, 0, 0, 0, 0, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, -38, -25, 0, -23, -23, 0, 0, 0, 0, -6, 0, 5, 0, 0, -6, 0, 0, 0, -17, -12, 0, 0, -18, -6, -12, 0, -13, 0, 0, -19, 0, 0, 0, 0, 0, 0, -8, 4, -10, -6, 0, 0, 0, 4, 0, 0, 0, -12, 0, 0, 0, 0, 0, -40, -6, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -8, -8, 8, 0, -8, 0, -32, 0, -28, -16, 4, -40, 0, 0, 0, 0, -8, 0, -8, -8, 0, 0, 0, 0, 0, 0, 0, 0, -15, -12, 4, -15, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -12, 32, -8, 0, -4, 0, 0, 0, -12, 0, 0, -8, -8, 0, 0, -8, 0, 10, 0, 12, 10, 10, 13, 4, 0, 0, 0, -10, 0, -12, -12, -5, 0, 5, 34, -8, -7, 0, -10, -4, -4, 0, 12, 0, 0, 0, 0, 0, 0, -6, -10, 5, 5, 5, -12, 5, 5, 5, 0, 0, 0, 0, 0, 0, 10, -8, -5, 0, 0, 7, 0, 8, 8, 0, 0, -8, -12, 10, 0, 0, 0, -10, -5, -6, -6, 8, -9, 0, 0, 0, -4, -12, 0, -9, 0, 12, -14, 0, -8, -6, 0, 0, -6, 0, 7, -7, -7, 5, 5, 34, 7, 0, 0, -13, -12, 10, 0, 0, 0, -6, 5, -7, -5, -8, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -9, 0, -8, 0, 9, 0, 0, 0, -5, -8, 0, 0, 0, -5, 0, 0, 0, -8, 0, -13, -5, -8, -16, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, -8, 0, -6, -5, 0, -8, -8, 0, -6, -6, 0, 0, 0, -8, 0, -8, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, -7, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -32, 0, 0, 0, -42, -4, 0, 0, 0, 0, 0, 0, -9, -4, 0, 0, 0, 0, -7, 0, -12, -12, 0, 0, 0, -4, 0, -4, 0, 0, 6, 6, 5, 6, 0, 0, 0, 0, 0, -56, 0, -7, 0, 0, 0, -19, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, -42, -30, -5, -32, -29, -7, -6, -4, 0, 0, -9, 0, -6, 0, -7, 0, 0, 0, -18, -6, 0, 0, -18, -6, -12, 0, -6, 0, 0, -7, 5, 0, 0, 0, 0, 0, -5, 0, -4, -4, 0, 0, -4, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, -29, -4, -5, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -16, -16, 16, 0, -16, 5, -32, -12, -33, -17, 10, -38, 9, 0, 0, 0, -12, 0, -12, -12, 0, 0, 0, 0, 0, 0, 0, 0, -23, -22, 8, -23, 7, 0, 0, 0, 0, 10, 0, -12, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, -6, 5, 16, 9, 0, 12, 11, 5, 6, 0, -16, -16, 10, -30, 0, 0, 0, 0, 0, 0, 11, 0, 0, 6, 11, 0, -12, 0, 0, -15, -12, 0, 8, -18, 0, -8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -7, 0, -26, -13, 0, -33, -19, 12, 0, -4, 0, 5, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, -6, 0, 8, 0, -22, 0, -12, 0, -13, -27, -4, 0, 0, 0, 6, 0, 5, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 3, -8, 0, 0, 0, 0, 0, 0, -18, 0, 6, 0, 0, 0, 5, 0, 0, 0, 7, 0, 0, 0, 0, 0, -22, 9, -4, -6, 0, -10, 0, 0, -12, 0, 0, 8, 8, -13, 0, -6, 0, 6, 10, 5, 5, 0, 10, -9, 0, 0, 0, 5, 5, 10, 0, 0, 10, -8, 8, 5, 0, 0, 5, 4, 0, 12, 0, 5, 5, 5, 0, 0, 6, 8, 10, -18, 0, 5, 0, 11, 0, 0, 9, 10, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, -26, 0, -10, -10, -28, 0, -10, 0, 17, 0, 19, 17, 13, 20, 7, 0, 0, 0, -16, 7, -23, -23, 0, 7, 6, 6, -13, -12, 0, -8, 0, 0, 0, 0, -4, 0, 0, 0, 0, -48, 0, -16, 6, 6, 6, -19, 6, 6, 6, 0, 0, 0, 0, 0, 0, 17, -7, 0, -28, -21, 9, -26, -21, 11, 0, 0, -10, -7, 13, 5, 0, -7, -16, -5, -6, -6, -18, -13, 0, 0, -18, -11, -23, -6, -13, 0, 0, -14, 0, 0, -6, 0, 0, -5, -11, 10, -11, -12, 6, 6, 6, 10, 0, 0, -7, -13, 12, 0, 0, 0, 0, -22, -8, 0, -7, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 10, 0, 0, 0, -25, 0, -5, 0, 6, -15, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 5, 6, 4, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, 0, 0, 10, 0, 0, 7, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, -9, 0, 0, 6, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, -7, 0, 0, 0, -14, 0, -12, -4, -10, -17, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, -22, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, -14, 0, -4, -7, 0, -10, -8, 0, -13, -7, 0, 0, 0, -10, 0, -10, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, -7, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -20, 0, -7, 0, -32, 12, 0, 10, 8, -13, 0, 15, 0, -10, -10, 13, 0, -10, 8, -33, -8, -26, -16, 15, -40, 10, 0, -32, -10, -4, 0, -4, -4, 0, 0, 0, 0, 0, 4, 0, 0, -14, -10, 10, -14, 6, -4, 0, -6, 5, 8, 0, -4, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -30, -26, 17, - 0, 0, 0, 0, -5, -5, 0, 4, -12, 4, -8, 0, -4, 0, 0, 0, 0, 0, 0, 0, -7, 0, -12, -4, -9, -14, 0, 0, -8, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -3, -4, -4, 0, -4, 4, 4, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, - 0, 0, 3, -5, 6, -4, 9, -4, 5, 8, 6, 0, 11, 0, -10, -10, 12, 0, -10, 7, 8, 0, 8, 8, 10, 10, 7, 0, 8, 10, 4, 0, -5, -5, 0, 0, 0, 0, 0, 2, 0, -5, 0, 0, 10, 0, 6, 0, 0, -10, 6, 10, 0, 4, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 14, 16, - 0, 0, 0, 0, -8, 0, -16, 8, -21, 0, -8, 0, -10, 0, 0, 0, -9, 0, 0, 0, -9, 0, -10, -4, -15, -18, -4, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 4, 0, -24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -5, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, -7, 0, 0, 0, 4, 0, 8, 4, 4, 0, 0, 0, -5, 0, -5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 5, 7, 0, -5, 0, 0, 0, -4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 16, - 0, 0, -8, -6, 8, 0, -25, 6, -31, 0, 8, -4, -19, 0, -3, -3, -30, -4, -3, 0, 8, 0, 10, 8, 5, 11, 0, 0, 12, 10, -10, 0, -4, -4, 0, 0, 0, 0, -8, -5, 0, -8, 0, 0, -4, 0, -8, 0, 0, 0, -4, -47, 0, -10, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 15, -25, - 0, 0, 0, 0, 0, -10, 8, 7, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -8, -8, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 9, - 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, -8, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, - 0, 0, -8, -8, 10, -16, 12, -20, 9, 4, 0, -6, 10, 0, -22, -22, 8, 0, -22, 0, 9, 0, 7, 5, 14, 7, 10, 0, 8, 11, -4, 0, -16, -16, 0, 0, 0, 0, 0, 4, -4, -14, -18, -18, 14, -18, 8, -5, 0, -20, 0, 10, 0, -4, 0, 0, 17, -14, 14, 12, 4, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, - 4, -39, 4, 0, 0, -41, 16, -8, 7, 10, -14, 0, 12, 0, -8, -8, 12, 4, -8, 7, -31, -4, -34, -20, 12, -40, 7, 0, -32, -13, 5, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, -19, -12, 12, -19, 6, -6, -5, -8, 8, 12, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, -22, 19, - 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -4, 0, 0, -6, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -6, 0, - 0, 0, 0, 0, -8, 0, -16, 8, -21, 0, -8, 0, -10, 0, 0, 0, -9, 0, 0, 0, -9, 0, -10, -4, -15, -18, -4, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 4, 0, -24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -5, - 0, 0, -8, 0, -3, 0, -42, 0, -32, 5, 0, 0, -27, 0, 0, 0, -36, 0, 0, 0, 5, 0, 0, 0, -9, -4, 0, -6, 0, -5, -8, 0, -6, -6, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 5, 8, 0, 0, -4, -4, 5, -50, 0, -8, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 12, -37, - 0, 0, 0, 0, -8, 0, -16, 8, -21, 0, -8, 0, -10, 0, 0, 0, -9, 0, 0, 0, -9, 0, -10, -4, -15, -18, -4, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -5, - 0, 0, 0, 0, 0, -4, 10, -8, 7, 5, -6, -4, 12, 0, -7, -7, 10, 0, -7, 0, -4, -3, -6, 0, 8, -13, 7, 0, -4, -9, -10, 0, -10, -10, 0, 0, 0, 0, 0, 0, -4, -4, 0, 0, 7, 0, 4, 0, 0, -9, 0, 8, 0, -10, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 13, - 0, 0, 0, 0, -3, -14, 4, 11, -6, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -4, -4, 0, -4, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, -4, -6, 0, 0, 0, 6, 0, -8, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 7, - 0, 0, -8, -7, 10, 0, -32, -22, -39, -24, 10, -14, -33, 0, -9, -9, -33, -4, -9, 0, 10, 0, 12, 10, 10, 14, 4, 0, 16, 12, -30, 0, -30, -30, 0, 0, 0, 0, -28, -29, 0, -28, -30, -30, -30, -30, -28, -7, 0, -30, -26, -46, 0, -30, -4, 11, 18, -37, 18, 13, 12, 0, -22, -24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 8, -21, - 0, 0, 0, 0, 0, 0, -12, 0, -22, 4, 0, 0, -8, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 9, 0, - 0, 7, -12, -12, 13, 0, -32, -12, -38, -5, 11, -12, -26, 0, -10, -10, -35, -4, -10, 0, 13, 0, 15, 13, 13, 16, 6, 0, 16, 15, -16, 0, -22, -22, 0, 0, 0, 0, -9, -15, 0, -8, 0, 0, 0, 0, -5, -7, 0, -16, 0, -59, 0, -16, 8, 0, 20, -24, 18, 14, 13, 0, -7, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 15, -25, - 0, 8, -8, -4, 11, 0, -18, 0, -25, 0, 10, -4, -16, 0, -4, -4, -19, 0, -4, 0, 11, 0, 13, 11, 11, 14, 4, 0, 16, 13, -11, 0, -13, -13, 0, 0, 0, 0, -6, -6, 0, -6, 5, 5, 4, 5, 0, -4, 0, -6, 0, -21, 0, -11, 0, 0, 18, -14, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 16, -10, - 0, 0, -8, -8, 10, -10, 10, -13, 9, 7, 8, -6, 14, 0, -15, -15, 10, 0, -15, 7, 10, 0, 12, 10, 14, 13, 10, 0, 12, 12, -12, 0, -12, -12, 0, 0, 0, 0, 0, 4, 0, -10, -10, -10, 10, -10, 6, -5, 0, -15, 0, 14, 0, -12, 0, 0, 16, -8, 16, 8, 4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 14, - 4, 0, -20, -16, 14, -4, -38, -27, -40, -15, 12, -24, -40, 0, -18, -18, -34, -6, -18, -4, 14, 0, 16, 14, 14, 16, 7, 0, 16, 16, -29, 0, -35, -35, 0, 0, 0, 0, -15, -28, 0, -14, -4, 0, -8, -4, -14, -6, 0, -32, -10, -58, 0, -50, 0, 0, 21, -36, 18, 16, 7, 0, -12, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 12, -26, - 0, 0, -4, 0, 6, 0, 11, -8, 0, 6, 6, -4, 10, 0, -5, -5, 10, 0, -5, 5, 6, 0, 8, 6, 10, 9, 5, 0, 8, 8, 4, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 4, 0, 0, -12, 6, 10, 0, 4, 0, 4, 14, 0, 13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 12, 17, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, -8, -8, -11, 0, -8, 0, 12, 0, 14, 12, 12, 15, 6, 0, 0, 36, -14, 0, -14, -14, 0, 0, 4, 38, -14, -13, 0, -14, -12, -12, -12, 12, -12, 0, 0, 0, 0, -11, 0, -14, 4, 4, 4, -16, 4, 4, 4, 0, 0, 0, 0, 0, 0, 12, -12, -6, -11, -11, 8, -11, 8, 10, 0, 0, -8, -15, 12, 0, 0, -13, -14, -8, -10, -9, 8, -13, -9, -10, -9, -11, -14, 0, -13, -10, 12, -15, -12, -14, -4, -10, -10, -9, -11, 8, -11, -13, 4, 4, 38, 8, -7, -6, -15, -14, 11, -9, 0, 0, -9, 0, -11, 0, -11, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -12, -16, -16, 4, -12, -16, 0, -36, -16, -44, -28, 8, -44, 4, 0, 0, 0, -10, 0, -10, -10, 0, 0, 0, 56, 0, 0, -4, -8, -12, -8, 0, 24, 0, 0, 0, 0, 0, 8, 0, -10, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, -4, -6, 0, 0, -5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, -7, -6, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -6, 0, 0, -8, -12, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, 0, -5, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -9, 5, - 0, -8, 0, 0, -10, -12, -12, 5, -11, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, -7, -6, -4, 0, -8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -10, 0, - 0, 0, 0, 0, 0, 0, 7, -4, 0, 4, -5, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, -10, 0, -10, -10, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 5, 3, 0, 0, 0, -6, 0, 0, 0, -10, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 10, 10, - 0, 0, 0, 0, -8, -10, 0, 9, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 6, 4, - 0, 0, 0, 0, 21, 9, -24, 0, -25, 7, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 21, -3, 0, -3, -3, 0, 0, 5, 4, 0, 0, 0, 0, 11, 11, 8, 11, 0, 0, 12, -4, 7, 0, 0, -3, 13, 5, 26, -8, 23, 21, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 22, -23, - 0, 0, 0, 0, -5, -10, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -14, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, -6, -4, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -6, 4, - 0, -8, 0, 0, -8, -10, 0, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, 0, -6, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -6, 5, - 0, 0, 0, 0, 4, -10, 0, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -6, 4, - 0, 0, 0, 0, 5, -10, 0, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, 4, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, -6, -4, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -6, 4, - 0, 0, -8, -5, 0, 5, 5, -18, 8, 4, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -4, 0, -14, -14, 0, 0, 0, 0, 0, 0, -3, -4, 8, 8, 8, 8, 6, -6, 0, -14, 0, 0, 0, -4, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 10, 9, - 0, 0, 0, 0, -8, -10, 10, 0, 0, 8, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 8, -4, 6, 0, 0, -6, 8, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -10, 12, - 0, -7, 0, 0, -8, -10, 0, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, 0, -6, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -6, 5, - 0, -7, 0, 0, -10, -12, -12, 5, -11, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, -7, -6, -4, 0, -9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -10, 0, - 0, 0, 0, 0, -8, -10, 0, 0, 8, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -14, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, -6, -4, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -6, 4, - 0, 0, -8, 0, 0, 7, -24, 0, -22, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -4, -4, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 12, 12, 8, 12, 4, 0, 0, -6, 8, 0, 0, -4, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 19, -22, - 0, 0, 0, 0, -5, -4, 0, 0, -4, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, - 0, 0, 0, 0, 0, 0, 7, -4, 0, 4, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -13, -8, 0, -8, -8, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 7, 4, 0, 0, 0, -8, 0, 0, 0, -8, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 9, - 0, 0, 0, 0, -8, -10, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -6, 4, - 0, 0, -4, 0, 0, 6, -22, 0, -16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -4, 0, -6, -6, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 10, 8, 5, 0, 0, 0, 7, 0, 0, -4, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 16, -16, - 0, 0, -4, 0, 0, 7, -21, 3, -14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -4, 0, -5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 6, 0, 0, 0, 8, 0, 0, -4, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 16, -11, - 0, 0, -8, -5, 0, 5, 8, -8, 8, 6, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -10, 0, -10, -10, 0, 0, 0, 0, 0, 0, 0, 0, 10, 8, 13, 10, 8, -5, 0, -11, 0, 0, 0, -10, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 11, 8, - 0, 0, -4, 0, 0, 6, -22, 0, -16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -4, 0, -6, -6, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 10, 8, 5, 0, 0, 0, 7, 0, 0, -4, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 13, -16, - 0, 0, 0, 0, 0, 0, 10, 0, 4, 4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -6, 0, -6, -6, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 9, 8, 0, 0, -5, -6, 4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 10, 11, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -6, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -9, -6, 0, -6, 8, 0, 8, 10, 0, 0, -9, -11, 8, 0, 0, -8, -7, -6, -6, -6, 8, -8, 0, -6, 0, -7, -8, 0, -8, -6, 11, -11, 0, -10, -4, -6, -7, -6, -7, 8, -7, -6, 0, 0, 26, 8, 0, 0, -12, -11, 11, 0, 0, 0, 0, 0, -7, 0, -7, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, -7, 0, -7, 0, -5, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -6, -5, -7, -8, -4, -6, -5, -7, 0, 0, 0, -5, 0, -8, -6, 0, 0, 0, 0, -4, 0, -5, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 5, 0, 0, 0, 0, -9, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, 0, -13, -4, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 7, 0, 0, 0, -27, 0, -4, 0, 0, -11, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, 0, 0, 7, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, -8, 4, 0, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 4, 4, -12, 0, 4, -8, -30, 0, -16, -8, -15, -32, -10, 0, 0, 0, 4, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, -7, 0, 0, 0, 0, -18, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, -30, 0, -8, -12, -7, -13, -6, -6, -18, -10, 0, 4, 0, -15, 0, -12, -10, 0, 0, 0, 0, -7, 0, -11, 0, -6, 0, 4, 0, 0, 0, 0, 0, -11, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, 0, 0, 0, 0, -9, 0, 0, 0, -12, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -17, -12, -16, -16, -22, -8, -16, -14, -42, -13, -25, -17, -25, -31, -20, 0, 0, 0, -16, -13, -16, -16, -13, -13, -13, 28, -13, -15, -14, -15, -9, -9, -12, 6, -13, 0, 0, 0, 0, -29, -13, -16, -13, -13, -13, -17, -13, -13, -13, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -10, 0, -22, 6, -24, 5, -11, 0, -11, 0, 0, 0, -16, 0, 0, 0, -8, 0, -9, -4, -14, -15, -9, 0, -8, -14, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 6, 0, -21, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -15, 0, 0, -10, -30, 0, 3, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -20, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, -12, -4, -14, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, -23, 0, - 0, 0, 0, 0, 6, 0, -12, 5, -10, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 8, 0, - 0, -10, 0, 0, -8, -6, 0, 0, -8, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -5, -4, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -6, 0, - 0, 10, 0, 0, 24, 0, -10, -8, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 28, -8, 7, -16, -16, 0, 11, 7, 7, -8, -12, 3, -6, 13, 13, 12, 16, 10, 0, 28, 0, 0, 0, 0, -4, 26, 36, 54, 0, 48, 42, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 10, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -10, 0, 0, 0, -6, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -8, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -7, -7, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, -10, -5, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -23, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 5, 0, 0, -7, -7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 8, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -6, 0, 0, -4, -11, 0, 9, -7, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -6, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, -6, -6, -5, -9, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, -6, -6, 0, -6, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, -6, 0, -5, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -7, 10, 0, -32, -22, -39, -24, 10, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, -30, -26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, -7, 0, -33, -31, 0, -33, -29, 0, 0, -4, -9, -10, 10, 0, 0, -6, -30, -4, -20, -20, -25, -24, 0, -4, -26, -26, -30, -20, -25, 0, 0, -28, -30, -20, -20, 0, -26, -20, -21, 0, -22, -29, 0, 15, 0, 0, 0, 0, -7, -25, 5, 0, 0, 0, -34, -43, -30, -6, -24, 0, -19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 8, 0, - 0, 0, 0, -5, 6, -4, 9, -4, 5, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 6, -10, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -7, 7, 12, 4, 0, 11, 6, 6, 5, 0, -10, -11, 10, 0, 0, 0, 4, 0, 0, 0, 6, 0, 5, 0, 6, 0, -5, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 0, 0, 4, 0, 0, -7, 0, 4, 0, 0, 0, -8, 11, 0, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 14, 0, - 0, -5, 0, -4, -3, -14, 4, 11, -6, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, -9, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -9, 0, -4, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, -9, 0, -7, 0, 0, 0, 0, 0, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, - 0, -24, 0, 0, -13, -10, 0, 9, -7, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, 0, -6, 0, 0, -4, 0, 0, -7, 0, 0, 0, 0, -6, -4, -5, -10, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, -4, -5, 0, -6, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, -29, -5, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -20, 0, - 0, -16, 0, 0, 0, -10, 8, 9, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, -14, -5, 0, -5, 0, 10, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -13, 0, - 0, 0, 0, -8, 10, -16, 12, -20, 9, 4, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 7, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -14, 0, 8, 5, 5, 10, 8, 10, 0, 0, -22, -21, 14, 0, 0, 0, -4, -8, 0, 0, 8, -8, 10, 0, 7, 0, -16, 0, -8, -16, -14, -11, 14, -20, 0, -10, 6, 0, 6, 5, -7, 4, 0, 0, 0, 5, -7, 0, -16, -8, 8, -16, 0, -10, -21, 15, 0, -7, -6, 0, -23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 4, 0, -12, 13, 0, -32, -12, -38, -5, 11, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 10, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, -8, 0, -35, -26, 8, -26, -24, 10, 0, -4, -10, -9, 13, 0, 0, -8, -16, -6, -7, -7, -22, -15, 0, 0, -23, -12, -22, -7, -15, 0, 0, -16, 0, 0, -7, 0, 0, -6, -12, 8, -13, -15, 0, 21, 0, 8, 0, 0, -8, -15, 11, 0, 0, 0, 0, -32, -9, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 15, 0, - 0, -23, 0, -7, 0, -32, 12, 0, 10, 8, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -6, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -33, -8, 8, 13, 5, 0, 15, 8, 10, 5, 0, -10, -11, 15, -17, 0, 0, 0, 0, 0, 0, 8, 0, 10, 0, 7, 0, -4, 0, 0, -11, -8, 0, 10, -10, 0, -8, 6, 0, 6, 0, 0, 4, 0, 0, 0, 0, -7, 0, -8, 0, -28, -9, 0, -14, -7, 15, 0, -7, 0, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -30, -26, 0, - 0, 0, 0, 0, -5, -5, 0, 4, -12, 4, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -4, 0, 0, 0, -4, 0, -5, 0, 0, 0, 0, -9, 0, -4, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -7, 0, 0, 9, -14, 11, 0, 14, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 8, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 8, 6, 0, 8, 6, 8, 5, 0, 0, -12, 8, -12, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 8, 0, 0, 0, 0, 0, 9, 0, 8, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, -8, 0, 0, -9, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -5, 0, - 0, 0, 0, -8, 10, -16, 12, -20, 9, 4, 4, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 9, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -14, 0, 8, 5, 7, 10, 8, 10, 0, 0, -22, -18, 14, 0, 0, 0, -4, -8, 0, 0, 8, -7, 10, 0, 7, 0, -16, 0, -7, -11, -9, -10, 14, -15, 0, -10, 0, 0, 0, 7, -6, 4, 0, 0, 0, 7, -7, 0, -14, -7, 10, -10, 0, -5, -17, 15, 0, -4, -6, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -5, -5, 0, 4, -12, 4, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -4, 0, 0, 0, -4, 0, -4, 0, 0, 0, 0, -9, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -4, -6, -4, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -6, 0, - 0, 0, 0, 0, -8, 0, -16, 8, -21, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -9, 0, -10, -10, 0, -14, -8, 0, 0, 0, -15, 0, -11, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, -9, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, - 0, 0, 0, 0, -3, 0, -42, 0, -32, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, -36, -24, 0, -27, -22, -6, -5, 0, 0, 0, -9, 0, -4, 0, -8, 0, 0, 0, -17, 0, 0, 0, -17, -4, -6, 0, 0, 0, 4, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 4, 0, 5, 0, -24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 12, 0, - 0, 7, 0, -7, 10, 0, -32, -22, -39, -24, 10, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 8, -30, -26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, -33, -26, 6, -33, -25, 8, 0, -4, -9, -4, 10, 0, 0, 0, -30, 0, 0, 0, -18, -19, 0, 0, -19, -8, -30, 0, -20, 0, 0, -22, -30, 0, 0, 0, 0, 0, -14, 6, -17, -29, 0, 19, 0, 6, 0, 0, 0, -19, 9, 0, 0, 7, 0, -20, -5, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 8, 0, - 0, -5, 0, 0, -13, 0, -16, 7, -16, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -14, -13, -13, -11, -12, -17, -11, 0, 0, 0, -16, 0, -14, -5, 0, 0, 0, 0, -10, 0, 0, 0, -11, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, -14, 0, 0, 0, 0, -14, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -8, 10, -10, 10, -13, 9, 7, 8, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 8, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, -11, 7, 10, 5, 6, 14, 8, 10, 4, 0, -15, -16, 14, 0, 0, 0, 0, -7, 0, 0, 8, -7, 10, 0, 7, 0, -12, 0, -7, -8, -7, -9, 10, -13, 0, -8, 0, 0, 0, 6, -6, 4, 0, 0, 0, 6, -5, 0, -12, -7, 8, -8, 0, 0, -14, 15, 0, -5, -5, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 0, - 0, 0, 0, 0, -8, 0, -16, 8, -21, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -9, 0, -10, -10, 0, -14, -8, 0, 0, 0, -15, 0, -10, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, -8, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, - 0, -10, 0, 0, -8, -12, 0, 6, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -9, 0, - 0, 0, 0, 0, 0, -7, 0, 10, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -8, 0, 0, -7, -6, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, 0, - 0, 0, 0, 0, 0, 0, -23, 0, -15, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 8, 0, -13, 0, 0, 0, 0, 8, 10, 0, 9, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 0, 0, 0, 10, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 9, 0, - 0, -8, 0, 0, 9, -9, 11, 0, 13, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 8, 0, 0, 0, 0, -5, 9, 0, 8, -5, 0, -4, 4, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -4, 0, - 0, -9, 0, 0, -9, -12, -8, 5, -5, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -7, 0, - 0, 0, 0, -5, 0, 5, 5, -18, 8, 4, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 8, -6, 10, 5, 7, 0, -14, 0, -6, 6, 8, -7, 8, 0, 0, 6, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 8, 4, 0, -6, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 10, 0, - 0, -5, 0, 0, -4, 0, 4, 6, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -5, 0, 5, 5, -18, 8, 4, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 8, -7, 10, 5, 7, 0, -14, 0, -7, 8, 10, -8, 8, 0, 0, 8, 6, 0, 6, 0, -5, 0, 0, 0, 0, 0, 10, 5, 0, -7, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 10, 0, - 0, 0, 0, 0, -6, 0, 0, 5, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -5, 0, 0, -5, -6, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -6, 0, 0, 5, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -12, 0, 0, -10, -12, -12, 5, -11, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -10, 0, - 0, -12, 0, 0, -12, -6, 0, 10, -8, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -10, 0, - 0, 0, 0, 0, 0, 0, 7, -4, 0, 4, -5, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, -10, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 10, 0, - 0, 0, 0, 0, 0, 0, -15, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 6, 0, -11, 0, 0, 0, 0, 6, 8, -4, 7, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 0, - 0, 0, 0, 0, 0, 0, -12, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 8, 0, -8, 0, 0, 0, 0, 8, 10, -4, 9, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 8, 0, 0, 0, 10, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0, - 0, -18, 0, 0, -14, -7, 0, 10, -9, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -4, 0, 0, 0, 0, 0, -4, -4, 0, -6, -2, 0, 0, 0, 0, -3, -4, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, -14, 0, - 0, 0, 0, -5, 0, 5, 8, -8, 8, 6, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -4, 10, 5, 7, 0, -10, 0, -4, 6, 8, -6, 13, 0, 0, 6, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 8, 5, 0, -4, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 11, 0, - 0, -29, 0, 0, -9, -21, 0, 4, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, -14, -9, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, -28, 0, - 0, -10, 0, 0, -10, -12, -12, 5, -11, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -10, 0, - 0, -12, 0, 0, -10, -12, -12, 5, -11, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -10, 0, - 0, 0, 0, 0, -6, 0, 0, 5, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -14, 0, -6, 0, -9, 0, 6, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, -10, 0, - 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, -4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -5, -4, 0, 0, -4, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 4, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -4, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -14, 0, -4, -6, -9, 0, 6, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, -10, 0, - 0, 0, 0, 0, -6, 0, 0, 5, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -20, 0, 0, -11, -18, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -9, 0, 0, -4, 0, -9, 0, 0, -4, -4, 0, 0, 0, 0, 0, -4, -13, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, -14, 0, - 5, 9, 0, -4, 11, 0, -39, -20, -25, 0, 14, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, -24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, -5, 0, -33, -21, 12, -25, -19, 12, 8, 0, -5, -6, 11, 10, 8, 0, -7, 0, -4, -4, -20, -20, 0, 0, -21, -10, -20, -6, -21, 0, 0, -24, 0, 0, -4, 0, 0, 0, -16, 14, -18, -13, 0, 0, 0, 14, 0, 0, -5, -21, 14, 0, 0, 5, -4, -37, -7, 0, -7, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 12, 0, - 0, 6, 0, 0, 0, 7, -21, 0, -17, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 11, 7, -9, 0, 0, 0, 0, 12, 14, 0, 12, 7, 0, 12, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 13, 0, 0, 0, 14, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 13, 0, - 0, -7, 0, -4, 0, -7, 8, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 5, 0, 0, 0, 0, 0, 0, 0, 4, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, - 0, -37, 0, -4, 0, -29, 8, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 5, 0, 0, 0, 0, -17, 0, 0, 4, -8, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -12, 0, 0, 0, 0, -14, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -33, -36, 0, - 0, -13, 0, 0, 0, -4, 0, 12, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, 0, -7, 0, 0, -6, 0, 0, -9, 0, 0, 0, 0, -8, 0, -6, -7, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, -22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -9, 0, - 0, -20, 0, 0, 0, -13, 0, 10, 6, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, -6, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, -18, 0, - 0, 0, 0, -13, 10, 0, -26, -18, -30, -9, 7, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 11, -26, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -13, -4, -29, -25, 8, -28, -24, 10, 0, -5, -13, -14, 8, 5, 0, -11, -14, -9, -11, -11, -27, -23, 0, -7, -28, -16, -23, -12, -24, 0, 0, -25, 0, -7, -11, 0, -7, -10, -20, 9, -21, -17, 0, 0, 0, 9, 0, 0, -13, -23, 12, 0, 0, 0, -8, -24, -14, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, - 0, 0, 0, 0, 0, 0, -13, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 7, 0, -9, 0, 0, 0, 0, 8, 10, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 9, 0, 0, 0, 10, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, - 0, -24, 0, -6, -5, -11, 4, 6, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -28, 0, 0, -4, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -20, 0, - 0, -13, 0, -4, -6, -8, 0, 6, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -8, 0, - 0, 0, 0, 0, -8, 0, 0, 5, -7, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -7, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, 0, 0, 0, -8, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -10, 0, -7, 0, 0, -15, 0, -13, -6, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -4, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 5, 0, 0, 0, 0, 4, 6, 0, 5, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 6, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, - 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 5, 0, 0, 0, -7, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -9, 0, 0, -7, -5, 0, 10, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -7, 0, - 0, 0, 0, 0, -8, 0, -6, 8, -13, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -8, -8, 0, -12, -7, 0, 0, 0, -11, 0, -10, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, -8, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -6, 0, 8, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -8, -6, 0, -4, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -4, 0, 0, 7, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, -4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -4, -1, 0, 0, 0, 0, 0, -8, 0, -4, 0, -8, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, -10, 0, 0, -10, 0, 0, -4, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, -3, -10, 0, -2, -5, 0, -6, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, -8, 0, 0, -3, 0, -20, -13, 0, -4, -2, -10, 0, -20, -13, 0, 0, -13, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, -4, 0, -6, 0, 0, -8, 0, 0, -9, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, -8, 0, -15, -1, 0, 0, 0, 0, 0, -9, -6, -3, -3, -2, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, 0, 0, -8, 0, -6, -6, 0, 0, -6, 0, -12, -6, -6, 0, 0, -8, 0, 0, -8, 0, -8, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, -2, 0, 0, -5, -5, 0, -9, -9, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, -3, 0, 0, 0, 0, -3, 0, -12, -9, 0, 0, 0, -3, 0, -18, -5, 0, 0, 0, 3, -1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -2, -8, -10, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -7, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -12, 0, -3, 0, 0, -3, 0, -5, -2, 0, 0, -9, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -8, -6, 0, 0, -6, 0, -14, -3, 0, 0, 0, -6, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, -4, 0, -3, 0, 0, 0, 0, -8, 0, 0, 0, -4, 0, -10, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, -8, 0, -12, -3, 0, 0, -6, -9, 0, -12, -9, 0, 0, -8, 0, -10, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, -3, 0, 0, -11, 0, -6, 0, -9, 0, 0, -6, 0, 0, -6, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -19, 0, -20, 0, 0, -7, 0, -3, -3, 0, -15, -16, -16, 0, -4, 0, 0, 0, -8, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -33, 0, -12, -12, -38, -8, -12, 6, 8, 7, 11, 13, 6, 10, 9, 0, 0, 0, -11, 0, -13, -17, 0, 0, 0, 0, 0, -8, 0, 0, 5, 5, 0, 5, 0, 0, 0, 0, 0, -78, 0, -11, 0, 0, 0, -28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 6, -38, -24, 0, -33, -22, 5, 0, -8, -12, -5, 6, 6, 0, 0, -11, 0, 0, 0, -17, -13, 0, 0, -18, -6, -17, 0, -12, 0, 0, -21, 0, 0, 0, 0, 0, 0, -8, 6, -9, -8, 0, 0, 0, 6, 0, 0, 0, -11, 6, 0, 0, 0, 0, -40, -6, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -39, 0, -15, -15, -42, 0, -15, -8, 7, 5, 11, 12, 6, 9, 7, 0, 0, 0, -25, -4, -29, -29, -8, -4, -4, 0, -17, -31, 0, -13, -4, -4, 0, -4, -13, 0, 0, 0, 0, -52, -8, -25, -4, -4, -4, -29, -4, -4, -4, 0, 0, 0, 0, 0, 0, 7, -7, -8, -42, -26, 0, -39, -25, 0, 0, 0, -15, -10, 6, 0, 0, -5, -25, 0, -8, -8, -23, -20, 0, -6, -25, -12, -29, -10, -20, 0, 0, -28, 0, 0, -8, 0, -6, -7, -15, 0, -18, -31, 0, 0, 0, 0, 0, 0, -7, -20, 5, 0, 0, 0, -5, -43, -12, -5, -11, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, -13, -13, 9, 0, -13, 4, -30, -8, -50, -30, 9, -43, 8, 0, 0, 0, 4, 4, 0, 0, 4, 4, 4, 12, 4, 4, 0, 4, -16, -12, 8, -16, 10, 0, 0, 0, 0, 9, 0, 4, 4, 4, 4, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, 0, 0, 0, -35, 0, 0, 0, 0, 0, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, -38, -25, 0, -23, -23, 0, 0, 0, 0, -6, 0, 5, 0, 0, -6, 0, 0, 0, -17, -12, 0, 0, -18, -6, -12, 0, -13, 0, 0, -19, 0, 0, 0, 0, 0, 0, -8, 4, -10, -6, 0, 0, 0, 4, 0, 0, 0, -12, 0, 0, 0, 0, 0, -40, -6, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -8, -8, 8, 0, -8, 0, -32, 0, -28, -16, 4, -40, 0, 0, 0, 0, -8, 0, -8, -8, 0, 0, 0, 0, 0, 0, 0, 0, -15, -12, 4, -15, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -12, 32, -8, 0, -4, 0, 0, 0, -12, 0, 0, -8, -8, 0, 0, -8, 0, 10, 0, 12, 10, 10, 13, 4, 0, 0, 0, -10, 0, -12, -12, -5, 0, 5, 34, -8, -7, 0, -10, -4, -4, 0, 12, 0, 0, 0, 0, 0, 0, -6, -10, 5, 5, 5, -12, 5, 5, 5, 0, 0, 0, 0, 0, 0, 10, -8, -5, 0, 0, 7, 0, 8, 8, 0, 0, -8, -12, 10, 0, 0, 0, -10, -5, -6, -6, 8, -9, 0, 0, 0, -4, -12, 0, -9, 0, 12, -14, 0, -8, -6, 0, 0, -6, 0, 7, -7, -7, 5, 5, 34, 7, 0, 0, -13, -12, 10, 0, 0, 0, -6, 5, -7, -5, -8, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -9, 0, -8, 0, 9, 0, 0, 0, -5, -8, 0, 0, 0, -5, 0, 0, 0, -8, 0, -13, -5, -8, -16, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, -8, 0, -6, -5, 0, -8, -8, 0, -6, -6, 0, 0, 0, -8, 0, -8, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, -7, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -32, 0, 0, 0, -42, -4, 0, 0, 0, 0, 0, 0, -9, -4, 0, 0, 0, 0, -7, 0, -12, -12, 0, 0, 0, -4, 0, -4, 0, 0, 6, 6, 5, 6, 0, 0, 0, 0, 0, -56, 0, -7, 0, 0, 0, -19, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, -42, -30, -5, -32, -29, -7, -6, -4, 0, 0, -9, 0, -6, 0, -7, 0, 0, 0, -18, -6, 0, 0, -18, -6, -12, 0, -6, 0, 0, -7, 5, 0, 0, 0, 0, 0, -5, 0, -4, -4, 0, 0, -4, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, -29, -4, -5, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -16, -16, 16, 0, -16, 5, -32, -12, -33, -17, 10, -38, 9, 0, 0, 0, -12, 0, -12, -12, 0, 0, 0, 0, 0, 0, 0, 0, -23, -22, 8, -23, 7, 0, 0, 0, 0, 10, 0, -12, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, -6, 5, 16, 9, 0, 12, 11, 5, 6, 0, -16, -16, 10, -30, 0, 0, 0, 0, 0, 0, 11, 0, 0, 6, 11, 0, -12, 0, 0, -15, -12, 0, 8, -18, 0, -8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -7, 0, -26, -13, 0, -33, -19, 12, 0, -4, 0, 5, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, -6, 0, 8, 0, -22, 0, -12, 0, -13, -27, -4, 0, 0, 0, 6, 0, 5, 5, 8, 0, 0, 0, 0, 0, 0, 0, 0, 3, -8, 0, 0, 0, 0, 0, 0, -18, 0, 6, 0, 0, 0, 5, 0, 0, 0, 7, 0, 0, 0, 0, 0, -22, 9, -4, -6, 0, -10, 0, 0, -12, 0, 0, 8, 8, -13, 0, -6, 0, 6, 10, 5, 5, 0, 10, -9, 0, 0, 0, 5, 5, 10, 0, 0, 10, -8, 8, 5, 0, 0, 5, 4, 0, 12, 0, 5, 5, 5, 0, 0, 6, 8, 10, -18, 0, 5, 0, 11, 0, 0, 9, 10, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, -26, 0, -10, -10, -28, 0, -10, 0, 17, 0, 19, 17, 13, 20, 7, 0, 0, 0, -16, 7, -23, -23, 0, 7, 6, 6, -13, -12, 0, -8, 0, 0, 0, 0, -4, 0, 0, 0, 0, -48, 0, -16, 6, 6, 6, -19, 6, 6, 6, 0, 0, 0, 0, 0, 0, 17, -7, 0, -28, -21, 9, -26, -21, 11, 0, 0, -10, -7, 13, 5, 0, -7, -16, -5, -6, -6, -18, -13, 0, 0, -18, -11, -23, -6, -13, 0, 0, -14, 0, 0, -6, 0, 0, -5, -11, 10, -11, -12, 6, 6, 6, 10, 0, 0, -7, -13, 12, 0, 0, 0, 0, -22, -8, 0, -7, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 10, 0, 0, 0, -25, 0, -5, 0, 6, -15, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 5, 6, 4, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, 0, 0, 10, 0, 0, 7, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, -9, 0, 0, 6, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, -7, 0, 0, 0, -14, 0, -12, -4, -10, -17, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, -22, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, -14, 0, -4, -7, 0, -10, -8, 0, -13, -7, 0, 0, 0, -10, 0, -10, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, -7, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -20, 0, -7, 0, -32, 12, 0, 10, 8, -13, 0, 15, 0, -10, -10, 13, 0, -10, 8, -33, -8, -26, -16, 15, -40, 10, 0, -32, -10, -4, 0, -4, -4, 0, 0, 0, 0, 0, 4, 0, 0, -14, -10, 10, -14, 6, -4, 0, -6, 5, 8, 0, -4, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -30, -26, 17, 0, 0, 0, 0, + 0, 0, 0, 0, -5, -5, 0, 4, -12, 4, -8, 0, -4, 0, 0, 0, 0, 0, 0, 0, -7, 0, -12, -4, -9, -14, 0, 0, -8, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -3, -4, -4, 0, -4, 4, 4, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, + 0, 0, 3, -5, 6, -4, 9, -4, 5, 8, 6, 0, 11, 0, -10, -10, 12, 0, -10, 7, 8, 0, 8, 8, 10, 10, 7, 0, 8, 10, 4, 0, -5, -5, 0, 0, 0, 0, 0, 2, 0, -5, 0, 0, 10, 0, 6, 0, 0, -10, 6, 10, 0, 4, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 14, 16, 0, 0, 0, 0, + 0, 0, 0, 0, -8, 0, -16, 8, -21, 0, -8, 0, -10, 0, 0, 0, -9, 0, 0, 0, -9, 0, -10, -4, -15, -18, -4, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 4, 0, -24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -5, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, -7, 0, 0, 0, 4, 0, 8, 4, 4, 0, 0, 0, -5, 0, -5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 5, 7, 0, -5, 0, 0, 0, -4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 16, 0, 0, 0, 0, + 0, 0, -8, -6, 8, 0, -25, 6, -31, 0, 8, -4, -19, 0, -3, -3, -30, -4, -3, 0, 8, 0, 10, 8, 5, 11, 0, 0, 12, 10, -10, 0, -4, -4, 0, 0, 0, 0, -8, -5, 0, -8, 0, 0, -4, 0, -8, 0, 0, 0, -4, -47, 0, -10, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 15, -25, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -10, 8, 7, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -8, -8, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 9, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, -8, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, + 0, 0, -8, -8, 10, -16, 12, -20, 9, 4, 0, -6, 10, 0, -22, -22, 8, 0, -22, 0, 9, 0, 7, 5, 14, 7, 10, 0, 8, 11, -4, 0, -16, -16, 0, 0, 0, 0, 0, 4, -4, -14, -18, -18, 14, -18, 8, -5, 0, -20, 0, 10, 0, -4, 0, 0, 17, -14, 14, 12, 4, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, + 4, -39, 4, 0, 0, -41, 16, -8, 7, 10, -14, 0, 12, 0, -8, -8, 12, 4, -8, 7, -31, -4, -34, -20, 12, -40, 7, 0, -32, -13, 5, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, -19, -12, 12, -19, 6, -6, -5, -8, 8, 12, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, -22, 19, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -4, 0, 0, -6, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -6, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -8, 0, -16, 8, -21, 0, -8, 0, -10, 0, 0, 0, -9, 0, 0, 0, -9, 0, -10, -4, -15, -18, -4, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 4, 0, -24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -5, 0, 0, 0, 0, + 0, 0, -8, 0, -3, 0, -42, 0, -32, 5, 0, 0, -27, 0, 0, 0, -36, 0, 0, 0, 5, 0, 0, 0, -9, -4, 0, -6, 0, -5, -8, 0, -6, -6, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 5, 8, 0, 0, -4, -4, 5, -50, 0, -8, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 12, -37, 0, 0, 0, 0, + 0, 0, 0, 0, -8, 0, -16, 8, -21, 0, -8, 0, -10, 0, 0, 0, -9, 0, 0, 0, -9, 0, -10, -4, -15, -18, -4, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -5, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -4, 10, -8, 7, 5, -6, -4, 12, 0, -7, -7, 10, 0, -7, 0, -4, -3, -6, 0, 8, -13, 7, 0, -4, -9, -10, 0, -10, -10, 0, 0, 0, 0, 0, 0, -4, -4, 0, 0, 7, 0, 4, 0, 0, -9, 0, 8, 0, -10, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 13, 0, 0, 0, 0, + 0, 0, 0, 0, -3, -14, 4, 11, -6, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -4, -4, 0, -4, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, -4, -6, 0, 0, 0, 6, 0, -8, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 7, 0, 0, 0, 0, + 0, 0, -8, -7, 10, 0, -32, -22, -39, -24, 10, -14, -33, 0, -9, -9, -33, -4, -9, 0, 10, 0, 12, 10, 10, 14, 4, 0, 16, 12, -30, 0, -30, -30, 0, 0, 0, 0, -28, -29, 0, -28, -30, -30, -30, -30, -28, -7, 0, -30, -26, -46, 0, -30, -4, 11, 18, -37, 18, 13, 12, 0, -22, -24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 8, -21, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -12, 0, -22, 4, 0, 0, -8, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 9, 0, 0, 0, 0, 0, + 0, 7, -12, -12, 13, 0, -32, -12, -38, -5, 11, -12, -26, 0, -10, -10, -35, -4, -10, 0, 13, 0, 15, 13, 13, 16, 6, 0, 16, 15, -16, 0, -22, -22, 0, 0, 0, 0, -9, -15, 0, -8, 0, 0, 0, 0, -5, -7, 0, -16, 0, -59, 0, -16, 8, 0, 20, -24, 18, 14, 13, 0, -7, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 15, -25, 0, 0, 0, 0, + 0, 8, -8, -4, 11, 0, -18, 0, -25, 0, 10, -4, -16, 0, -4, -4, -19, 0, -4, 0, 11, 0, 13, 11, 11, 14, 4, 0, 16, 13, -11, 0, -13, -13, 0, 0, 0, 0, -6, -6, 0, -6, 5, 5, 4, 5, 0, -4, 0, -6, 0, -21, 0, -11, 0, 0, 18, -14, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 16, -10, 0, 0, 0, 0, + 0, 0, -8, -8, 10, -10, 10, -13, 9, 7, 8, -6, 14, 0, -15, -15, 10, 0, -15, 7, 10, 0, 12, 10, 14, 13, 10, 0, 12, 12, -12, 0, -12, -12, 0, 0, 0, 0, 0, 4, 0, -10, -10, -10, 10, -10, 6, -5, 0, -15, 0, 14, 0, -12, 0, 0, 16, -8, 16, 8, 4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 14, 0, 0, 0, 0, + 4, 0, -20, -16, 14, -4, -38, -27, -40, -15, 12, -24, -40, 0, -18, -18, -34, -6, -18, -4, 14, 0, 16, 14, 14, 16, 7, 0, 16, 16, -29, 0, -35, -35, 0, 0, 0, 0, -15, -28, 0, -14, -4, 0, -8, -4, -14, -6, 0, -32, -10, -58, 0, -50, 0, 0, 21, -36, 18, 16, 7, 0, -12, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 12, -26, 0, 0, 0, 0, + 0, 0, -4, 0, 6, 0, 11, -8, 0, 6, 6, -4, 10, 0, -5, -5, 10, 0, -5, 5, 6, 0, 8, 6, 10, 9, 5, 0, 8, 8, 4, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 4, 0, 0, -12, 6, 10, 0, 4, 0, 4, 14, 0, 13, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 12, 17, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, -8, -8, -11, 0, -8, 0, 12, 0, 14, 12, 12, 15, 6, 0, 0, 36, -14, 0, -14, -14, 0, 0, 4, 38, -14, -13, 0, -14, -12, -12, -12, 12, -12, 0, 0, 0, 0, -11, 0, -14, 4, 4, 4, -16, 4, 4, 4, 0, 0, 0, 0, 0, 0, 12, -12, -6, -11, -11, 8, -11, 8, 10, 0, 0, -8, -15, 12, 0, 0, -13, -14, -8, -10, -9, 8, -13, -9, -10, -9, -11, -14, 0, -13, -10, 12, -15, -12, -14, -4, -10, -10, -9, -11, 8, -11, -13, 4, 4, 38, 8, -7, -6, -15, -14, 11, -9, 0, 0, -9, 0, -11, 0, -11, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -12, -16, -16, 4, -12, -16, 0, -36, -16, -44, -28, 8, -44, 4, 0, 0, 0, -10, 0, -10, -10, 0, 0, 0, 56, 0, 0, -4, -8, -12, -8, 0, 24, 0, 0, 0, 0, 0, 8, 0, -10, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, -4, -6, 0, 0, -5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, -7, -6, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -6, 0, 0, -8, -12, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -4, 0, -5, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -9, 5, 0, 0, 0, 0, + 0, -8, 0, 0, -10, -12, -12, 5, -11, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, -7, -6, -4, 0, -8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -10, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 7, -4, 0, 4, -5, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, -10, 0, -10, -10, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 5, 3, 0, 0, 0, -6, 0, 0, 0, -10, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 10, 10, 0, 0, 0, 0, + 0, 0, 0, 0, -8, -10, 0, 9, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 6, 4, 0, 0, 0, 0, + 0, 0, 0, 0, 21, 9, -24, 0, -25, 7, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 21, -3, 0, -3, -3, 0, 0, 5, 4, 0, 0, 0, 0, 11, 11, 8, 11, 0, 0, 12, -4, 7, 0, 0, -3, 13, 5, 26, -8, 23, 21, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 22, -23, 0, 0, 0, 0, + 0, 0, 0, 0, -5, -10, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -14, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, -6, -4, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -6, 4, 0, 0, 0, 0, + 0, -8, 0, 0, -8, -10, 0, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, 0, -6, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -6, 5, 0, 0, 0, 0, + 0, 0, 0, 0, 4, -10, 0, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -6, 4, 0, 0, 0, 0, + 0, 0, 0, 0, 5, -10, 0, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, 4, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, -6, -4, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -6, 4, 0, 0, 0, 0, + 0, 0, -8, -5, 0, 5, 5, -18, 8, 4, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -4, 0, -14, -14, 0, 0, 0, 0, 0, 0, -3, -4, 8, 8, 8, 8, 6, -6, 0, -14, 0, 0, 0, -4, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 10, 9, 0, 0, 0, 0, + 0, 0, 0, 0, -8, -10, 10, 0, 0, 8, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 8, -4, 6, 0, 0, -6, 8, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -10, 12, 0, 0, 0, 0, + 0, -7, 0, 0, -8, -10, 0, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, 0, -6, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -6, 5, 0, 0, 0, 0, + 0, -7, 0, 0, -10, -12, -12, 5, -11, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, -7, -6, -4, 0, -9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -10, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -8, -10, 0, 0, 8, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -14, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, -6, -4, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -6, 4, 0, 0, 0, 0, + 0, 0, -8, 0, 0, 7, -24, 0, -22, 7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -4, -4, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 12, 12, 8, 12, 4, 0, 0, -6, 8, 0, 0, -4, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 19, -22, 0, 0, 0, 0, + 0, 0, 0, 0, -5, -4, 0, 0, -4, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 7, -4, 0, 4, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -13, -8, 0, -8, -8, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 7, 4, 0, 0, 0, -8, 0, 0, 0, -8, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 9, 0, 0, 0, 0, + 0, 0, 0, 0, -8, -10, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -6, 4, 0, 0, 0, 0, + 0, 0, -4, 0, 0, 6, -22, 0, -16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -4, 0, -6, -6, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 10, 8, 5, 0, 0, 0, 7, 0, 0, -4, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 16, -16, 0, 0, 0, 0, + 0, 0, -4, 0, 0, 7, -21, 3, -14, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -4, 0, -5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 6, 0, 0, 0, 8, 0, 0, -4, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 16, -11, 0, 0, 0, 0, + 0, 0, -8, -5, 0, 5, 8, -8, 8, 6, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -10, 0, -10, -10, 0, 0, 0, 0, 0, 0, 0, 0, 10, 8, 13, 10, 8, -5, 0, -11, 0, 0, 0, -10, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 11, 8, 0, 0, 0, 0, + 0, 0, -4, 0, 0, 6, -22, 0, -16, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -4, 0, -6, -6, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 10, 8, 5, 0, 0, 0, 7, 0, 0, -4, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 13, -16, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 10, 0, 4, 4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -6, 0, -6, -6, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 9, 8, 0, 0, -5, -6, 4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 10, 11, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -6, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -9, -6, 0, -6, 8, 0, 8, 10, 0, 0, -9, -11, 8, 0, 0, -8, -7, -6, -6, -6, 8, -8, 0, -6, 0, -7, -8, 0, -8, -6, 11, -11, 0, -10, -4, -6, -7, -6, -7, 8, -7, -6, 0, 0, 26, 8, 0, 0, -12, -11, 11, 0, 0, 0, 0, 0, -7, 0, -7, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, -7, 0, -7, 0, -5, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -6, -5, -7, -8, -4, -6, -5, -7, 0, 0, 0, -5, 0, -8, -6, 0, 0, 0, 0, -4, 0, -5, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 5, 0, 0, 0, 0, -9, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, 0, -13, -4, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 7, 0, 0, 0, -27, 0, -4, 0, 0, -11, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, 0, 0, 7, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, -8, 4, 0, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 4, 4, -12, 0, 4, -8, -30, 0, -16, -8, -15, -32, -10, 0, 0, 0, 4, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, -7, 0, 0, 0, 0, -18, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, -30, 0, -8, -12, -7, -13, -6, -6, -18, -10, 0, 4, 0, -15, 0, -12, -10, 0, 0, 0, 0, -7, 0, -11, 0, -6, 0, 4, 0, 0, 0, 0, 0, -11, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, 0, 0, 0, 0, -9, 0, 0, 0, -12, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -17, -12, -16, -16, -22, -8, -16, -14, -42, -13, -25, -17, -25, -31, -20, 0, 0, 0, -16, -13, -16, -16, -13, -13, -13, 28, -13, -15, -14, -15, -9, -9, -12, 6, -13, 0, 0, 0, 0, -29, -13, -16, -13, -13, -13, -17, -13, -13, -13, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -10, 0, -22, 6, -24, 5, -11, 0, -11, 0, 0, 0, -16, 0, 0, 0, -8, 0, -9, -4, -14, -15, -9, 0, -8, -14, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 6, 0, -21, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -15, 0, 0, -10, -30, 0, 3, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -20, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, -12, -4, -14, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, -23, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 6, 0, -12, 5, -10, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 8, 0, 0, 0, 0, 0, + 0, -10, 0, 0, -8, -6, 0, 0, -8, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -5, -4, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -6, 0, 0, 0, 0, 0, + 0, 10, 0, 0, 24, 0, -10, -8, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 28, -8, 7, -16, -16, 0, 11, 7, 7, -8, -12, 3, -6, 13, 13, 12, 16, 10, 0, 28, 0, 0, 0, 0, -4, 26, 36, 54, 0, 48, 42, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 10, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -10, 0, 0, 0, -6, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -8, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -7, -7, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, -10, -5, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -23, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 5, 0, 0, -7, -7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 8, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -6, 0, 0, -4, -11, 0, 9, -7, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -6, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, -6, -6, -5, -9, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, -6, -6, 0, -6, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, -6, 0, -5, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -7, 10, 0, -32, -22, -39, -24, 10, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, -30, -26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, -7, 0, -33, -31, 0, -33, -29, 0, 0, -4, -9, -10, 10, 0, 0, -6, -30, -4, -20, -20, -25, -24, 0, -4, -26, -26, -30, -20, -25, 0, 0, -28, -30, -20, -20, 0, -26, -20, -21, 0, -22, -29, 0, 15, 0, 0, 0, 0, -7, -25, 5, 0, 0, 0, -34, -43, -30, -6, -24, 0, -19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 8, 0, 0, 0, 0, 0, + 0, 0, 0, -5, 6, -4, 9, -4, 5, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 6, -10, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -7, 7, 12, 4, 0, 11, 6, 6, 5, 0, -10, -11, 10, 0, 0, 0, 4, 0, 0, 0, 6, 0, 5, 0, 6, 0, -5, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 0, 0, 4, 0, 0, -7, 0, 4, 0, 0, 0, -8, 11, 0, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 14, 0, 0, 0, 0, 0, + 0, -5, 0, -4, -3, -14, 4, 11, -6, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, -9, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -9, 0, -4, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, -9, 0, -7, 0, 0, 0, 0, 0, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, + 0, -24, 0, 0, -13, -10, 0, 9, -7, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, 0, -6, 0, 0, -4, 0, 0, -7, 0, 0, 0, 0, -6, -4, -5, -10, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, -4, -5, 0, -6, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, -29, -5, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -20, 0, 0, 0, 0, 0, + 0, -16, 0, 0, 0, -10, 8, 9, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, -14, -5, 0, -5, 0, 10, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -13, 0, 0, 0, 0, 0, + 0, 0, 0, -8, 10, -16, 12, -20, 9, 4, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 7, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -14, 0, 8, 5, 5, 10, 8, 10, 0, 0, -22, -21, 14, 0, 0, 0, -4, -8, 0, 0, 8, -8, 10, 0, 7, 0, -16, 0, -8, -16, -14, -11, 14, -20, 0, -10, 6, 0, 6, 5, -7, 4, 0, 0, 0, 5, -7, 0, -16, -8, 8, -16, 0, -10, -21, 15, 0, -7, -6, 0, -23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 4, 0, -12, 13, 0, -32, -12, -38, -5, 11, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 10, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, -8, 0, -35, -26, 8, -26, -24, 10, 0, -4, -10, -9, 13, 0, 0, -8, -16, -6, -7, -7, -22, -15, 0, 0, -23, -12, -22, -7, -15, 0, 0, -16, 0, 0, -7, 0, 0, -6, -12, 8, -13, -15, 0, 21, 0, 8, 0, 0, -8, -15, 11, 0, 0, 0, 0, -32, -9, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 15, 0, 0, 0, 0, 0, + 0, -23, 0, -7, 0, -32, 12, 0, 10, 8, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -6, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -33, -8, 8, 13, 5, 0, 15, 8, 10, 5, 0, -10, -11, 15, -17, 0, 0, 0, 0, 0, 0, 8, 0, 10, 0, 7, 0, -4, 0, 0, -11, -8, 0, 10, -10, 0, -8, 6, 0, 6, 0, 0, 4, 0, 0, 0, 0, -7, 0, -8, 0, -28, -9, 0, -14, -7, 15, 0, -7, 0, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -30, -26, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -5, -5, 0, 4, -12, 4, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -4, 0, 0, 0, -4, 0, -5, 0, 0, 0, 0, -9, 0, -4, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -7, 0, 0, 9, -14, 11, 0, 14, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 8, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 8, 6, 0, 8, 6, 8, 5, 0, 0, -12, 8, -12, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 8, 0, 0, 0, 0, 0, 9, 0, 8, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, -8, 0, 0, -9, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -5, 0, 0, 0, 0, 0, + 0, 0, 0, -8, 10, -16, 12, -20, 9, 4, 4, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 9, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -14, 0, 8, 5, 7, 10, 8, 10, 0, 0, -22, -18, 14, 0, 0, 0, -4, -8, 0, 0, 8, -7, 10, 0, 7, 0, -16, 0, -7, -11, -9, -10, 14, -15, 0, -10, 0, 0, 0, 7, -6, 4, 0, 0, 0, 7, -7, 0, -14, -7, 10, -10, 0, -5, -17, 15, 0, -4, -6, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -5, -5, 0, 4, -12, 4, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -4, 0, 0, 0, -4, 0, -4, 0, 0, 0, 0, -9, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -4, -6, -4, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -6, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -8, 0, -16, 8, -21, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -9, 0, -10, -10, 0, -14, -8, 0, 0, 0, -15, 0, -11, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, -9, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -3, 0, -42, 0, -32, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, -36, -24, 0, -27, -22, -6, -5, 0, 0, 0, -9, 0, -4, 0, -8, 0, 0, 0, -17, 0, 0, 0, -17, -4, -6, 0, 0, 0, 4, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 4, 0, 5, 0, -24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 12, 0, 0, 0, 0, 0, + 0, 7, 0, -7, 10, 0, -32, -22, -39, -24, 10, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 8, -30, -26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, -33, -26, 6, -33, -25, 8, 0, -4, -9, -4, 10, 0, 0, 0, -30, 0, 0, 0, -18, -19, 0, 0, -19, -8, -30, 0, -20, 0, 0, -22, -30, 0, 0, 0, 0, 0, -14, 6, -17, -29, 0, 19, 0, 6, 0, 0, 0, -19, 9, 0, 0, 7, 0, -20, -5, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 8, 0, 0, 0, 0, 0, + 0, -5, 0, 0, -13, 0, -16, 7, -16, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -14, -13, -13, -11, -12, -17, -11, 0, 0, 0, -16, 0, -14, -5, 0, 0, 0, 0, -10, 0, 0, 0, -11, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, -14, 0, 0, 0, 0, -14, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -8, 10, -10, 10, -13, 9, 7, 8, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 8, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, -11, 7, 10, 5, 6, 14, 8, 10, 4, 0, -15, -16, 14, 0, 0, 0, 0, -7, 0, 0, 8, -7, 10, 0, 7, 0, -12, 0, -7, -8, -7, -9, 10, -13, 0, -8, 0, 0, 0, 6, -6, 4, 0, 0, 0, 6, -5, 0, -12, -7, 8, -8, 0, 0, -14, 15, 0, -5, -5, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -8, 0, -16, 8, -21, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, -9, 0, -10, -10, 0, -14, -8, 0, 0, 0, -15, 0, -10, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, -8, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, -10, 0, 0, -8, -12, 0, 6, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -9, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -7, 0, 10, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -8, 0, 0, -7, -6, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -23, 0, -15, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 8, 0, -13, 0, 0, 0, 0, 8, 10, 0, 9, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 0, 0, 0, 10, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 9, 0, 0, 0, 0, 0, + 0, -8, 0, 0, 9, -9, 11, 0, 13, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 8, 0, 8, 0, 0, 0, 0, -5, 9, 0, 8, -5, 0, -4, 4, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -4, 0, 0, 0, 0, 0, + 0, -9, 0, 0, -9, -12, -8, 5, -5, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -7, 0, 0, 0, 0, 0, + 0, 0, 0, -5, 0, 5, 5, -18, 8, 4, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 8, -6, 10, 5, 7, 0, -14, 0, -6, 6, 8, -7, 8, 0, 0, 6, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 8, 4, 0, -6, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 10, 0, 0, 0, 0, 0, + 0, -5, 0, 0, -4, 0, 4, 6, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -5, 0, 5, 5, -18, 8, 4, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 8, -7, 10, 5, 7, 0, -14, 0, -7, 8, 10, -8, 8, 0, 0, 8, 6, 0, 6, 0, -5, 0, 0, 0, 0, 0, 10, 5, 0, -7, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 10, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -6, 0, 0, 5, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -5, 0, 0, -5, -6, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -6, 0, 0, 5, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -12, 0, 0, -10, -12, -12, 5, -11, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -10, 0, 0, 0, 0, 0, + 0, -12, 0, 0, -12, -6, 0, 10, -8, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -10, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 7, -4, 0, 4, -5, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, -10, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 10, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -15, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 6, 0, -11, 0, 0, 0, 0, 6, 8, -4, 7, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -12, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 8, 0, -8, 0, 0, 0, 0, 8, 10, -4, 9, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 8, 0, 0, 0, 10, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 0, 0, 0, 0, 0, + 0, -18, 0, 0, -14, -7, 0, 10, -9, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -4, 0, 0, 0, 0, 0, -4, -4, 0, -6, -2, 0, 0, 0, 0, -3, -4, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, -14, 0, 0, 0, 0, 0, + 0, 0, 0, -5, 0, 5, 8, -8, 8, 6, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -4, 10, 5, 7, 0, -10, 0, -4, 6, 8, -6, 13, 0, 0, 6, 6, 0, 6, 0, 0, 0, 0, 0, 0, 0, 8, 5, 0, -4, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 11, 0, 0, 0, 0, 0, + 0, -29, 0, 0, -9, -21, 0, 4, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, -14, -9, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, -28, 0, 0, 0, 0, 0, + 0, -10, 0, 0, -10, -12, -12, 5, -11, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -10, 0, 0, 0, 0, 0, + 0, -12, 0, 0, -10, -12, -12, 5, -11, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -10, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -6, 0, 0, 5, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -14, 0, -6, 0, -9, 0, 6, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, -10, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, -4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -5, -4, 0, 0, -4, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -4, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -14, 0, -4, -6, -9, 0, 6, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, -10, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -6, 0, 0, 5, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -20, 0, 0, -11, -18, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -9, 0, 0, -4, 0, -9, 0, 0, -4, -4, 0, 0, 0, 0, 0, -4, -13, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, -14, 0, 0, 0, 0, 0, + 5, 9, 0, -4, 11, 0, -39, -20, -25, 0, 14, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, -24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, -5, 0, -33, -21, 12, -25, -19, 12, 8, 0, -5, -6, 11, 10, 8, 0, -7, 0, -4, -4, -20, -20, 0, 0, -21, -10, -20, -6, -21, 0, 0, -24, 0, 0, -4, 0, 0, 0, -16, 14, -18, -13, 0, 0, 0, 14, 0, 0, -5, -21, 14, 0, 0, 5, -4, -37, -7, 0, -7, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 12, 0, 0, 0, 0, 0, + 0, 6, 0, 0, 0, 7, -21, 0, -17, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 11, 7, -9, 0, 0, 0, 0, 12, 14, 0, 12, 7, 0, 12, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 13, 0, 0, 0, 14, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 13, 0, 0, 0, 0, 0, + 0, -7, 0, -4, 0, -7, 8, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 5, 0, 0, 0, 0, 0, 0, 0, 4, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, + 0, -37, 0, -4, 0, -29, 8, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 5, 0, 0, 0, 0, -17, 0, 0, 4, -8, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -12, 0, 0, 0, 0, -14, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -33, -36, 0, 0, 0, 0, 0, + 0, -13, 0, 0, 0, -4, 0, 12, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, 0, -7, 0, 0, -6, 0, 0, -9, 0, 0, 0, 0, -8, 0, -6, -7, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, -22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -9, 0, 0, 0, 0, 0, + 0, -20, 0, 0, 0, -13, 0, 10, 6, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, -6, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, -18, 0, 0, 0, 0, 0, + 0, 0, 0, -13, 10, 0, -26, -18, -30, -9, 7, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 11, -26, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -13, -4, -29, -25, 8, -28, -24, 10, 0, -5, -13, -14, 8, 5, 0, -11, -14, -9, -11, -11, -27, -23, 0, -7, -28, -16, -23, -12, -24, 0, 0, -25, 0, -7, -11, 0, -7, -10, -20, 9, -21, -17, 0, 0, 0, 9, 0, 0, -13, -23, 12, 0, 0, 0, -8, -24, -14, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -13, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 7, 0, -9, 0, 0, 0, 0, 8, 10, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 9, 0, 0, 0, 10, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, + 0, -24, 0, -6, -5, -11, 4, 6, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -28, 0, 0, -4, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, -20, 0, 0, 0, 0, 0, + 0, -13, 0, -4, -6, -8, 0, 6, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -8, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -8, 0, 0, 5, -7, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -7, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, 0, 0, 0, -8, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -10, 0, -7, 0, 0, -15, 0, -13, -6, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -4, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 5, 0, 0, 0, 0, 4, 6, 0, 5, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 6, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 5, 0, 0, 0, -7, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -9, 0, 0, -7, -5, 0, 10, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -7, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -8, 0, -6, 8, -13, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -8, -8, 0, -12, -7, 0, 0, 0, -11, 0, -10, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, -8, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -6, 0, 8, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -8, -6, 0, -4, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -4, 0, 0, 7, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, -4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -4, -1, 0, 0, 0, 0, 0, -8, 0, -4, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, -10, 0, 0, -10, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, -3, -10, 0, -2, -5, 0, -6, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, -8, 0, 0, -3, 0, -20, -13, 0, -4, -2, -10, 0, -20, -13, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, -4, 0, -6, 0, 0, -8, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, -8, 0, -15, -1, 0, 0, 0, 0, 0, -9, -6, -3, -3, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -24, 0, 0, -8, 0, -6, -6, 0, 0, -6, 0, -12, -6, -6, 0, 0, -8, 0, 0, -8, 0, -8, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, -2, 0, 0, -5, -5, 0, -9, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, -3, 0, 0, 0, 0, -3, 0, -12, -9, 0, 0, 0, -3, 0, -18, -5, 0, 0, 0, 3, -1, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -2, -8, -10, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -7, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, -12, 0, -3, 0, 0, -3, 0, -5, -2, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -8, -6, 0, 0, -6, 0, -14, -3, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, -4, 0, -3, 0, 0, 0, 0, -8, 0, 0, 0, -4, 0, -10, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, -8, 0, -12, -3, 0, 0, -6, -9, 0, -12, -9, 0, 0, -8, 0, -10, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, -3, 0, 0, -11, 0, -6, 0, -9, 0, 0, -6, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -19, 0, -20, 0, 0, -7, 0, -3, -3, 0, -15, -16, -16, 0, -4, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -33, 0, -12, -12, -38, -8, -12, 6, 8, 7, 11, 13, 6, 10, 9, 0, 0, 0, -11, 0, -13, -17, 0, 0, 0, 0, 0, -8, 0, 0, 5, 5, 0, 5, 0, 0, 0, 0, 0, -78, 0, -11, 0, 0, 0, -28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 6, -38, -24, 0, -33, -22, 5, 0, -8, -12, -5, 6, 6, 0, 0, -11, 0, 0, 0, -17, -13, 0, 0, -18, -6, -17, 0, -12, 0, 0, -21, 0, 0, 0, 0, 0, 0, -8, 6, -9, -8, 0, 0, 0, 6, 0, 0, 0, -11, 6, 0, 0, 0, 0, -40, -6, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -39, 0, -15, -15, -42, 0, -15, -8, 7, 5, 11, 12, 6, 9, 7, 0, 0, 0, -25, -4, -29, -29, -8, -4, -4, 0, -17, -31, 0, -13, -4, -4, 0, -4, -13, 0, 0, 0, 0, -52, -8, -25, -4, -4, -4, -29, -4, -4, -4, 0, 0, 0, 0, 0, 0, 7, -7, -8, -42, -26, 0, -39, -25, 0, 0, 0, -15, -10, 6, 0, 0, -5, -25, 0, -8, -8, -23, -20, 0, -6, -25, -12, -29, -10, -20, 0, 0, -28, 0, 0, -8, 0, -6, -7, -15, 0, -18, -31, 0, 0, 0, 0, 0, 0, -7, -20, 5, 0, 0, 0, -5, -43, -12, -5, -11, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, -13, -13, 9, 0, -13, 4, -30, -8, -50, -30, 9, -43, 8, 0, 0, 0, 4, 4, 0, 0, 4, 4, 4, 12, 4, 4, 0, 4, -16, -12, 8, -16, 10, 0, 0, 0, 0, 9, 0, 4, 4, 4, 4, 0, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, -10, -12, 20, }; static const EpdLigaturePair ubuntu_12_boldLigaturePairs[] = { @@ -3990,7 +4751,7 @@ static const EpdFontData ubuntu_12_bold = { ubuntu_12_boldBitmaps, ubuntu_12_boldGlyphs, ubuntu_12_boldIntervals, - 51, + 69, 29, 24, -5, @@ -4001,10 +4762,10 @@ static const EpdFontData ubuntu_12_bold = { ubuntu_12_boldKernLeftClasses, ubuntu_12_boldKernRightClasses, ubuntu_12_boldKernMatrix, - 572, - 556, - 172, - 155, + 576, + 577, + 173, + 159, ubuntu_12_boldLigaturePairs, 5, }; diff --git a/lib/EpdFont/builtinFonts/ubuntu_12_regular.h b/lib/EpdFont/builtinFonts/ubuntu_12_regular.h index df9fa07fc2..34342c7c07 100644 --- a/lib/EpdFont/builtinFonts/ubuntu_12_regular.h +++ b/lib/EpdFont/builtinFonts/ubuntu_12_regular.h @@ -3,12 +3,12 @@ * name: ubuntu_12_regular * size: 12 * mode: 1-bit - * Command used: fontconvert.py ubuntu_12_regular 12 ../builtinFonts/source/Ubuntu/Ubuntu-Regular.ttf ../builtinFonts/source/NotoSansHebrew/NotoSansHebrew-Regular.ttf ../builtinFonts/source/Ubuntu/Ubuntu-Vietnamese-Regular.ttf --additional-intervals 0x05D0,0x05EA + * Command used: fontconvert.py ubuntu_12_regular 12 ../builtinFonts/source/Ubuntu/Ubuntu-Regular.ttf ../builtinFonts/source/NotoSansHebrew/NotoSansHebrew-Regular.ttf ../builtinFonts/source/NotoSansArabic/NotoSansArabic-Regular.ttf ../builtinFonts/source/Ubuntu/Ubuntu-Vietnamese-Regular.ttf --additional-intervals 0x05D0,0x05EA --additional-intervals 0x060C,0x060C --additional-intervals 0x061B,0x061B --additional-intervals 0x061F,0x061F --additional-intervals 0x0621,0x0621 --additional-intervals 0x0640,0x0640 --additional-intervals 0x0660,0x0669 --additional-intervals 0x06BA,0x06BA --additional-intervals 0x06D4,0x06D4 --additional-intervals 0x06F0,0x06F9 --additional-intervals 0xFB56,0xFB59 --additional-intervals 0xFB66,0xFB69 --additional-intervals 0xFB7A,0xFB7D --additional-intervals 0xFB88,0xFB95 --additional-intervals 0xFB9E,0xFB9F --additional-intervals 0xFBA6,0xFBB1 --additional-intervals 0xFBFC,0xFBFF --additional-intervals 0xFE80,0xFEFC */ #pragma once #include "EpdFontData.h" -static const uint8_t ubuntu_12_regularBitmaps[25740] = { +static const uint8_t ubuntu_12_regularBitmaps[32540] = { 0x73, 0x9C, 0xE7, 0x39, 0xCE, 0x73, 0x9C, 0xE0, 0x01, 0xDE, 0x70, 0xF7, 0xF7, 0xF7, 0x67, 0x67, 0x67, 0x0E, 0x18, 0x1C, 0x70, 0x38, 0xE0, 0x71, 0xC0, 0xC3, 0x9F, 0xFF, 0xFF, 0xFF, 0x8E, 0x38, 0x1C, 0x70, 0x30, 0xE3, 0xFF, 0xFF, 0xFF, 0xF3, 0x8E, 0x07, 0x1C, 0x0E, 0x38, 0x38, 0x60, 0x71, @@ -825,799 +825,1224 @@ static const uint8_t ubuntu_12_regularBitmaps[25740] = { 0x70, 0x77, 0x07, 0x70, 0x70, 0x00, 0xE0, 0xE0, 0xE0, 0xE0, 0x1C, 0xE7, 0x38, 0x1E, 0x1F, 0x1D, 0xDC, 0x70, 0x79, 0xFF, 0xEC, 0x78, 0xFF, 0xFF, 0xC3, 0xE7, 0xFE, 0x7E, 0x6F, 0x70, 0x00, 0xE7, 0xE7, 0x7B, 0x7C, 0xF7, 0x78, 0x1D, 0xC7, 0x39, 0xCE, 0x33, 0x80, 0x63, 0x99, 0x8F, 0xC3, 0xC0, - 0x7C, 0x7E, 0xEE, 0xC6, 0x76, 0x6C, 0x31, 0xE1, 0x87, 0xFB, 0xE0, 0x10, 0xC7, 0x18, 0x61, 0xE7, - 0x80, 0x18, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0x00, 0x00, 0x00, 0x0F, 0xFE, 0xFF, 0xEE, 0x00, - 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xFF, 0xCF, 0xFC, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, - 0x0E, 0x00, 0xFF, 0xFF, 0xFF, 0x3B, 0x87, 0xBC, 0x3B, 0x80, 0x00, 0x00, 0x0F, 0xFE, 0xFF, 0xEE, - 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xFF, 0xCF, 0xFC, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, - 0xE0, 0x0E, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x3F, 0xFF, 0x00, 0x70, 0x00, 0x1C, 0x00, 0x07, - 0x00, 0x01, 0xC0, 0x00, 0x7F, 0xE0, 0x1F, 0xFE, 0x07, 0x8F, 0x81, 0xC0, 0xF0, 0x70, 0x1C, 0x1C, - 0x07, 0x07, 0x01, 0xC1, 0xC0, 0xF0, 0x70, 0x7C, 0x1C, 0x7E, 0x07, 0x1F, 0x00, 0x03, 0x00, 0xE0, - 0x38, 0x0F, 0x00, 0xC0, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0xFC, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC0, - 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0x07, 0xF8, - 0x7F, 0xF3, 0xF1, 0xDE, 0x00, 0x70, 0x01, 0xC0, 0x0F, 0x00, 0x3F, 0xF8, 0xFF, 0xE3, 0x80, 0x0F, - 0x00, 0x1C, 0x00, 0x70, 0x01, 0xE0, 0x03, 0xF1, 0xC7, 0xFF, 0x07, 0xF8, 0x1F, 0xE1, 0xFF, 0x9F, - 0x1C, 0xE0, 0x07, 0x00, 0x3C, 0x00, 0xF8, 0x03, 0xE0, 0x07, 0xC0, 0x0F, 0x80, 0x3C, 0x00, 0xF0, - 0x03, 0x80, 0x3D, 0xE7, 0xCF, 0xFE, 0x3F, 0xC0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x67, - 0x7B, 0xD9, 0xC0, 0x00, 0x00, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x81, 0xC0, 0xE0, 0x70, - 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x81, 0xC0, 0xE0, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x01, - 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x03, 0xF9, 0xF7, 0xFE, 0x7F, 0x00, - 0x07, 0xFF, 0x00, 0x01, 0xFF, 0xC0, 0x00, 0x70, 0x70, 0x00, 0x1C, 0x1C, 0x00, 0x07, 0x07, 0x00, - 0x01, 0xC1, 0xC0, 0x00, 0x70, 0x7F, 0xC0, 0x1C, 0x1F, 0xFC, 0x07, 0x07, 0x1F, 0x81, 0xC1, 0xC0, - 0xE0, 0xF0, 0x70, 0x38, 0x38, 0x1C, 0x0F, 0x0E, 0x07, 0x03, 0x87, 0x81, 0xC0, 0xE7, 0xC0, 0x71, - 0xFB, 0xE0, 0x1F, 0xFC, 0xF0, 0x07, 0xFC, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x38, 0x01, 0xC0, 0x70, - 0x03, 0x80, 0xE0, 0x07, 0x01, 0xC0, 0x0E, 0x03, 0x80, 0x1C, 0x07, 0x00, 0x3F, 0xFF, 0xFC, 0x7F, - 0xFF, 0xFE, 0xE0, 0x3C, 0x7D, 0xC0, 0x70, 0x3F, 0x80, 0xE0, 0x3F, 0x01, 0xC0, 0x7E, 0x03, 0x80, - 0xFC, 0x07, 0x03, 0xF8, 0x0F, 0x1F, 0x70, 0x1F, 0xFC, 0xE0, 0x3F, 0xF0, 0xFF, 0xFC, 0x3F, 0xFF, - 0x00, 0x70, 0x00, 0x1C, 0x00, 0x07, 0x00, 0x01, 0xC0, 0x00, 0x7F, 0xE0, 0x1F, 0xFC, 0x07, 0x8F, - 0x81, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x81, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, - 0x07, 0x03, 0x80, 0x01, 0x80, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x38, - 0x1E, 0xE0, 0xF3, 0x87, 0x8E, 0x3C, 0x39, 0xE0, 0xEF, 0x03, 0xF8, 0x0F, 0xC0, 0x3F, 0x80, 0xFF, - 0x03, 0xBE, 0x0E, 0x7C, 0x38, 0xF8, 0xE1, 0xF3, 0x83, 0xCE, 0x07, 0xB8, 0x0F, 0x0C, 0x00, 0x1C, - 0x00, 0x1C, 0x00, 0x1C, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x70, 0x0E, 0xE0, 0x3D, 0xC0, 0xFB, - 0x81, 0xF7, 0x07, 0xEE, 0x1F, 0xDC, 0x7B, 0xB8, 0xE7, 0x73, 0x8E, 0xEF, 0x1D, 0xFC, 0x3B, 0xF0, - 0x77, 0xE0, 0xEF, 0x81, 0xDE, 0x03, 0xBC, 0x07, 0x70, 0x0E, 0x0C, 0x70, 0x1D, 0xC0, 0x3F, 0x80, - 0x3E, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x07, 0xB8, 0x0E, 0x78, 0x1C, 0x70, 0x78, 0xF0, 0xE0, 0xE1, - 0xC1, 0xE7, 0x01, 0xCE, 0x03, 0xFC, 0x03, 0xF0, 0x03, 0xE0, 0x07, 0x80, 0x07, 0x00, 0x1C, 0x04, - 0xF8, 0x0F, 0xE0, 0x1F, 0x80, 0x00, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, - 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x7E, 0x01, - 0xFF, 0xFF, 0xFF, 0xFC, 0x1C, 0x00, 0x70, 0x01, 0xC0, 0x07, 0x00, 0x1C, 0x00, 0x01, 0xC0, 0x01, - 0xF0, 0x00, 0xF8, 0x00, 0xFC, 0x00, 0x77, 0x00, 0x73, 0x80, 0x39, 0xE0, 0x3C, 0x70, 0x1C, 0x3C, - 0x0E, 0x0E, 0x0F, 0x07, 0x07, 0xFF, 0xC3, 0xFF, 0xE3, 0x80, 0x71, 0xC0, 0x3D, 0xE0, 0x0E, 0xE0, - 0x07, 0x80, 0xFF, 0xE7, 0xFF, 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0xFF, 0x1F, 0xFC, 0xE3, - 0xF7, 0x03, 0xF8, 0x1F, 0xC0, 0x7E, 0x07, 0xF0, 0x3B, 0x87, 0xDF, 0xFC, 0xFF, 0xC0, 0xFF, 0xC7, - 0xFF, 0x38, 0xFD, 0xC0, 0xEE, 0x07, 0x70, 0x3B, 0x87, 0xDF, 0xFC, 0xFF, 0xF7, 0x0F, 0xB8, 0x1F, - 0xC0, 0x7E, 0x03, 0xF0, 0x3F, 0x87, 0xDF, 0xFE, 0xFF, 0xC0, 0xFF, 0xFF, 0xFF, 0x80, 0x70, 0x0E, - 0x01, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x00, - 0xE0, 0x00, 0x07, 0xFF, 0x01, 0xFF, 0xC0, 0x70, 0x70, 0x1C, 0x1C, 0x07, 0x07, 0x01, 0xC1, 0xC0, - 0x70, 0x70, 0x1C, 0x1C, 0x07, 0x07, 0x01, 0xC1, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x1E, 0x07, 0x07, - 0x01, 0xC3, 0xC0, 0x73, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x7E, 0x00, 0x1F, 0x80, 0x07, 0xE0, - 0x01, 0xF8, 0x00, 0x70, 0xFF, 0xEF, 0xFE, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0F, 0xFC, - 0xFF, 0xCE, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0F, 0xFF, 0xFF, 0xF0, 0x78, 0x38, - 0x3C, 0x78, 0x70, 0xF0, 0x70, 0xE3, 0xC0, 0x71, 0xCF, 0x00, 0xF3, 0xBC, 0x00, 0xF7, 0xF0, 0x00, - 0xFF, 0xC0, 0x00, 0xFF, 0x80, 0x03, 0xFF, 0x00, 0x0F, 0x77, 0x00, 0x1C, 0xE7, 0x00, 0x71, 0xCF, - 0x01, 0xC3, 0x8F, 0x07, 0x87, 0x0E, 0x0E, 0x0E, 0x1E, 0x3C, 0x1C, 0x1E, 0xF0, 0x38, 0x1C, 0x3F, - 0xC1, 0xFF, 0xC3, 0x9F, 0x00, 0x1E, 0x00, 0x78, 0x01, 0xC0, 0x1F, 0x07, 0xF8, 0x1F, 0xF0, 0x07, - 0xE0, 0x03, 0x80, 0x0E, 0x00, 0x38, 0x00, 0xE7, 0x9F, 0x9F, 0xFC, 0x3F, 0xE0, 0xE0, 0x1D, 0xC0, - 0x7B, 0x81, 0xF7, 0x03, 0xEE, 0x0F, 0xDC, 0x3F, 0xB8, 0xF7, 0x71, 0xCE, 0xE7, 0x1D, 0xDE, 0x3B, - 0xF8, 0x77, 0xE0, 0xEF, 0xC1, 0xDF, 0x03, 0xBC, 0x07, 0x78, 0x0E, 0xE0, 0x1C, 0x1C, 0x60, 0x3D, - 0xC0, 0x3F, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x38, 0x07, 0x70, 0x1E, 0xE0, 0x7D, 0xC0, 0xFB, - 0x83, 0xF7, 0x0F, 0xEE, 0x3D, 0xDC, 0x73, 0xB9, 0xC7, 0x77, 0x8E, 0xFE, 0x1D, 0xF8, 0x3B, 0xF0, - 0x77, 0xC0, 0xEF, 0x01, 0xDE, 0x03, 0xB8, 0x07, 0x00, 0xE0, 0x7B, 0x83, 0xCE, 0x1E, 0x38, 0xF0, - 0xE7, 0x83, 0xBC, 0x0F, 0xE0, 0x3F, 0x00, 0xFE, 0x03, 0xFC, 0x0E, 0xF8, 0x39, 0xF0, 0xE3, 0xE3, - 0x87, 0xCE, 0x0F, 0x38, 0x1E, 0xE0, 0x3C, 0x07, 0xFF, 0x07, 0xFF, 0x07, 0x07, 0x07, 0x07, 0x07, - 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x0F, 0x07, 0x0E, 0x07, 0x0E, - 0x07, 0x1E, 0x07, 0x7C, 0x07, 0xF8, 0x07, 0xF0, 0x07, 0x38, 0x01, 0xC7, 0x80, 0x1C, 0x7C, 0x03, - 0xC7, 0xC0, 0x3E, 0x7E, 0x06, 0xE7, 0x60, 0x6E, 0x77, 0x0C, 0xE7, 0x30, 0xCE, 0x73, 0x1C, 0xE7, - 0x39, 0x8E, 0x71, 0x98, 0xE7, 0x1F, 0x8E, 0x70, 0xF0, 0xEF, 0x0F, 0x0E, 0xF0, 0xE0, 0xEE, 0x00, - 0x0E, 0xE0, 0x00, 0xE0, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x7E, 0x01, - 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, - 0xE0, 0x1C, 0x07, 0xF8, 0x0F, 0xFE, 0x0F, 0xCF, 0x8F, 0x01, 0xE7, 0x00, 0x7B, 0x80, 0x3F, 0xC0, - 0x0F, 0xC0, 0x07, 0xE0, 0x03, 0xF0, 0x01, 0xFC, 0x00, 0xEE, 0x00, 0xF7, 0x00, 0x7B, 0xC0, 0x78, - 0xFC, 0xF8, 0x3F, 0xF8, 0x07, 0xF8, 0x00, 0xFF, 0xFF, 0xFF, 0xFE, 0x01, 0xF8, 0x07, 0xE0, 0x1F, - 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x7E, - 0x01, 0xF8, 0x07, 0xE0, 0x1C, 0xFF, 0x87, 0xFF, 0x38, 0xFD, 0xC0, 0xEE, 0x07, 0xF0, 0x3F, 0x81, - 0xFC, 0x0E, 0xE3, 0xF7, 0xFF, 0x3F, 0xF1, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, 0xE0, - 0x00, 0x07, 0xF8, 0x7F, 0xF3, 0xF3, 0xDE, 0x00, 0x78, 0x01, 0xC0, 0x0F, 0x00, 0x38, 0x00, 0xE0, - 0x03, 0x80, 0x0F, 0x00, 0x3C, 0x00, 0x70, 0x01, 0xE0, 0x03, 0xF1, 0xC7, 0xFF, 0x07, 0xF8, 0xFF, - 0xFF, 0xFF, 0xF0, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x1E, - 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, 0xF0, 0x1E, 0xE0, - 0x39, 0xE0, 0x71, 0xC1, 0xE3, 0xC3, 0x83, 0x87, 0x07, 0x9C, 0x07, 0x38, 0x0F, 0xF0, 0x0F, 0xC0, - 0x0F, 0x80, 0x1E, 0x00, 0x1C, 0x00, 0x70, 0x13, 0xE0, 0x3F, 0x80, 0x7E, 0x00, 0x00, 0xE0, 0x00, - 0x0E, 0x00, 0x07, 0xFE, 0x01, 0xFF, 0xF8, 0x3E, 0xEF, 0xC7, 0x8E, 0x1E, 0x70, 0xE0, 0xEF, 0x0E, - 0x0E, 0xE0, 0xE0, 0xFE, 0x0E, 0x0F, 0xF0, 0xE0, 0xE7, 0x0E, 0x0E, 0x78, 0xE1, 0xE3, 0xEE, 0xFC, - 0x1F, 0xFF, 0x80, 0xFF, 0xE0, 0x00, 0xE0, 0x00, 0x0E, 0x00, 0x70, 0x1E, 0x78, 0x1C, 0x3C, 0x3C, - 0x1C, 0x78, 0x1E, 0x70, 0x0F, 0xF0, 0x07, 0xE0, 0x03, 0xC0, 0x03, 0xC0, 0x07, 0xE0, 0x0F, 0xE0, - 0x0E, 0xF0, 0x1E, 0x78, 0x3C, 0x3C, 0x38, 0x1C, 0x78, 0x1E, 0xF0, 0x0E, 0xE0, 0x1C, 0xE0, 0x1C, + 0x7C, 0x7E, 0xEE, 0xC6, 0x37, 0x7E, 0xEE, 0xE0, 0x76, 0x6C, 0x31, 0xE1, 0x87, 0xFB, 0xE0, 0x10, + 0xC7, 0x18, 0x61, 0xE7, 0x80, 0x18, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0x00, 0x00, 0x00, 0x0F, + 0xFE, 0xFF, 0xEE, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xFF, 0xCF, 0xFC, 0xE0, 0x0E, 0x00, + 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xFF, 0xFF, 0xFF, 0x3B, 0x87, 0xBC, 0x3B, 0x80, 0x00, 0x00, + 0x0F, 0xFE, 0xFF, 0xEE, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xFF, 0xCF, 0xFC, 0xE0, 0x0E, + 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x3F, 0xFF, 0x00, 0x70, + 0x00, 0x1C, 0x00, 0x07, 0x00, 0x01, 0xC0, 0x00, 0x7F, 0xE0, 0x1F, 0xFE, 0x07, 0x8F, 0x81, 0xC0, + 0xF0, 0x70, 0x1C, 0x1C, 0x07, 0x07, 0x01, 0xC1, 0xC0, 0xF0, 0x70, 0x7C, 0x1C, 0x7E, 0x07, 0x1F, + 0x00, 0x03, 0x00, 0xE0, 0x38, 0x0F, 0x00, 0xC0, 0x00, 0x00, 0x07, 0xFF, 0xFF, 0xFC, 0x03, 0x80, + 0x70, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x38, + 0x07, 0x00, 0x07, 0xF8, 0x7F, 0xF3, 0xF1, 0xDE, 0x00, 0x70, 0x01, 0xC0, 0x0F, 0x00, 0x3F, 0xF8, + 0xFF, 0xE3, 0x80, 0x0F, 0x00, 0x1C, 0x00, 0x70, 0x01, 0xE0, 0x03, 0xF1, 0xC7, 0xFF, 0x07, 0xF8, + 0x1F, 0xE1, 0xFF, 0x9F, 0x1C, 0xE0, 0x07, 0x00, 0x3C, 0x00, 0xF8, 0x03, 0xE0, 0x07, 0xC0, 0x0F, + 0x80, 0x3C, 0x00, 0xF0, 0x03, 0x80, 0x3D, 0xE7, 0xCF, 0xFE, 0x3F, 0xC0, 0xFF, 0xFF, 0xFF, 0xFF, + 0xFF, 0xFF, 0xE0, 0x67, 0x7B, 0xD9, 0xC0, 0x00, 0x00, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, + 0x81, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x81, 0xC0, 0xE0, 0x00, 0xE0, 0x1C, 0x03, + 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x03, 0xF9, + 0xF7, 0xFE, 0x7F, 0x00, 0x07, 0xFF, 0x00, 0x01, 0xFF, 0xC0, 0x00, 0x70, 0x70, 0x00, 0x1C, 0x1C, + 0x00, 0x07, 0x07, 0x00, 0x01, 0xC1, 0xC0, 0x00, 0x70, 0x7F, 0xC0, 0x1C, 0x1F, 0xFC, 0x07, 0x07, + 0x1F, 0x81, 0xC1, 0xC0, 0xE0, 0xF0, 0x70, 0x38, 0x38, 0x1C, 0x0F, 0x0E, 0x07, 0x03, 0x87, 0x81, + 0xC0, 0xE7, 0xC0, 0x71, 0xFB, 0xE0, 0x1F, 0xFC, 0xF0, 0x07, 0xFC, 0x00, 0x00, 0x00, 0x00, 0xE0, + 0x38, 0x01, 0xC0, 0x70, 0x03, 0x80, 0xE0, 0x07, 0x01, 0xC0, 0x0E, 0x03, 0x80, 0x1C, 0x07, 0x00, + 0x3F, 0xFF, 0xFC, 0x7F, 0xFF, 0xFE, 0xE0, 0x3C, 0x7D, 0xC0, 0x70, 0x3F, 0x80, 0xE0, 0x3F, 0x01, + 0xC0, 0x7E, 0x03, 0x80, 0xFC, 0x07, 0x03, 0xF8, 0x0F, 0x1F, 0x70, 0x1F, 0xFC, 0xE0, 0x3F, 0xF0, + 0xFF, 0xFC, 0x3F, 0xFF, 0x00, 0x70, 0x00, 0x1C, 0x00, 0x07, 0x00, 0x01, 0xC0, 0x00, 0x7F, 0xE0, + 0x1F, 0xFC, 0x07, 0x8F, 0x81, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x81, 0xC0, 0xE0, + 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x80, 0x01, 0x80, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x0E, 0x00, + 0x00, 0x00, 0x00, 0x38, 0x1E, 0xE0, 0xF3, 0x87, 0x8E, 0x3C, 0x39, 0xE0, 0xEF, 0x03, 0xF8, 0x0F, + 0xC0, 0x3F, 0x80, 0xFF, 0x03, 0xBE, 0x0E, 0x7C, 0x38, 0xF8, 0xE1, 0xF3, 0x83, 0xCE, 0x07, 0xB8, + 0x0F, 0x0C, 0x00, 0x1C, 0x00, 0x1C, 0x00, 0x1C, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x70, 0x0E, + 0xE0, 0x3D, 0xC0, 0xFB, 0x81, 0xF7, 0x07, 0xEE, 0x1F, 0xDC, 0x7B, 0xB8, 0xE7, 0x73, 0x8E, 0xEF, + 0x1D, 0xFC, 0x3B, 0xF0, 0x77, 0xE0, 0xEF, 0x81, 0xDE, 0x03, 0xBC, 0x07, 0x70, 0x0E, 0x0C, 0x70, + 0x1D, 0xC0, 0x3F, 0x80, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x07, 0xB8, 0x0E, 0x78, 0x1C, 0x70, + 0x78, 0xF0, 0xE0, 0xE1, 0xC1, 0xE7, 0x01, 0xCE, 0x03, 0xFC, 0x03, 0xF0, 0x03, 0xE0, 0x07, 0x80, + 0x07, 0x00, 0x1C, 0x04, 0xF8, 0x0F, 0xE0, 0x1F, 0x80, 0x00, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, + 0x07, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, + 0x1F, 0x80, 0x7E, 0x01, 0xFF, 0xFF, 0xFF, 0xFC, 0x1C, 0x00, 0x70, 0x01, 0xC0, 0x07, 0x00, 0x1C, + 0x00, 0x01, 0xC0, 0x01, 0xF0, 0x00, 0xF8, 0x00, 0xFC, 0x00, 0x77, 0x00, 0x73, 0x80, 0x39, 0xE0, + 0x3C, 0x70, 0x1C, 0x3C, 0x0E, 0x0E, 0x0F, 0x07, 0x07, 0xFF, 0xC3, 0xFF, 0xE3, 0x80, 0x71, 0xC0, + 0x3D, 0xE0, 0x0E, 0xE0, 0x07, 0x80, 0xFF, 0xE7, 0xFF, 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x03, + 0xFF, 0x1F, 0xFC, 0xE3, 0xF7, 0x03, 0xF8, 0x1F, 0xC0, 0x7E, 0x07, 0xF0, 0x3B, 0x87, 0xDF, 0xFC, + 0xFF, 0xC0, 0xFF, 0xC7, 0xFF, 0x38, 0xFD, 0xC0, 0xEE, 0x07, 0x70, 0x3B, 0x87, 0xDF, 0xFC, 0xFF, + 0xF7, 0x0F, 0xB8, 0x1F, 0xC0, 0x7E, 0x03, 0xF0, 0x3F, 0x87, 0xDF, 0xFE, 0xFF, 0xC0, 0xFF, 0xFF, + 0xFF, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x01, + 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x00, 0x07, 0xFF, 0x01, 0xFF, 0xC0, 0x70, 0x70, 0x1C, 0x1C, 0x07, + 0x07, 0x01, 0xC1, 0xC0, 0x70, 0x70, 0x1C, 0x1C, 0x07, 0x07, 0x01, 0xC1, 0xC0, 0xE0, 0x70, 0x38, + 0x1C, 0x1E, 0x07, 0x07, 0x01, 0xC3, 0xC0, 0x73, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x7E, 0x00, + 0x1F, 0x80, 0x07, 0xE0, 0x01, 0xF8, 0x00, 0x70, 0xFF, 0xEF, 0xFE, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, + 0x00, 0xE0, 0x0F, 0xFC, 0xFF, 0xCE, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0F, 0xFF, + 0xFF, 0xF0, 0x78, 0x38, 0x3C, 0x78, 0x70, 0xF0, 0x70, 0xE3, 0xC0, 0x71, 0xCF, 0x00, 0xF3, 0xBC, + 0x00, 0xF7, 0xF0, 0x00, 0xFF, 0xC0, 0x00, 0xFF, 0x80, 0x03, 0xFF, 0x00, 0x0F, 0x77, 0x00, 0x1C, + 0xE7, 0x00, 0x71, 0xCF, 0x01, 0xC3, 0x8F, 0x07, 0x87, 0x0E, 0x0E, 0x0E, 0x1E, 0x3C, 0x1C, 0x1E, + 0xF0, 0x38, 0x1C, 0x3F, 0xC1, 0xFF, 0xC3, 0x9F, 0x00, 0x1E, 0x00, 0x78, 0x01, 0xC0, 0x1F, 0x07, + 0xF8, 0x1F, 0xF0, 0x07, 0xE0, 0x03, 0x80, 0x0E, 0x00, 0x38, 0x00, 0xE7, 0x9F, 0x9F, 0xFC, 0x3F, + 0xE0, 0xE0, 0x1D, 0xC0, 0x7B, 0x81, 0xF7, 0x03, 0xEE, 0x0F, 0xDC, 0x3F, 0xB8, 0xF7, 0x71, 0xCE, + 0xE7, 0x1D, 0xDE, 0x3B, 0xF8, 0x77, 0xE0, 0xEF, 0xC1, 0xDF, 0x03, 0xBC, 0x07, 0x78, 0x0E, 0xE0, + 0x1C, 0x1C, 0x60, 0x3D, 0xC0, 0x3F, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x38, 0x07, 0x70, 0x1E, + 0xE0, 0x7D, 0xC0, 0xFB, 0x83, 0xF7, 0x0F, 0xEE, 0x3D, 0xDC, 0x73, 0xB9, 0xC7, 0x77, 0x8E, 0xFE, + 0x1D, 0xF8, 0x3B, 0xF0, 0x77, 0xC0, 0xEF, 0x01, 0xDE, 0x03, 0xB8, 0x07, 0x00, 0xE0, 0x7B, 0x83, + 0xCE, 0x1E, 0x38, 0xF0, 0xE7, 0x83, 0xBC, 0x0F, 0xE0, 0x3F, 0x00, 0xFE, 0x03, 0xFC, 0x0E, 0xF8, + 0x39, 0xF0, 0xE3, 0xE3, 0x87, 0xCE, 0x0F, 0x38, 0x1E, 0xE0, 0x3C, 0x07, 0xFF, 0x07, 0xFF, 0x07, + 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x0F, + 0x07, 0x0E, 0x07, 0x0E, 0x07, 0x1E, 0x07, 0x7C, 0x07, 0xF8, 0x07, 0xF0, 0x07, 0x38, 0x01, 0xC7, + 0x80, 0x1C, 0x7C, 0x03, 0xC7, 0xC0, 0x3E, 0x7E, 0x06, 0xE7, 0x60, 0x6E, 0x77, 0x0C, 0xE7, 0x30, + 0xCE, 0x73, 0x1C, 0xE7, 0x39, 0x8E, 0x71, 0x98, 0xE7, 0x1F, 0x8E, 0x70, 0xF0, 0xEF, 0x0F, 0x0E, + 0xF0, 0xE0, 0xEE, 0x00, 0x0E, 0xE0, 0x00, 0xE0, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, + 0x1F, 0x80, 0x7E, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, + 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1C, 0x07, 0xF8, 0x0F, 0xFE, 0x0F, 0xCF, 0x8F, 0x01, 0xE7, 0x00, + 0x7B, 0x80, 0x3F, 0xC0, 0x0F, 0xC0, 0x07, 0xE0, 0x03, 0xF0, 0x01, 0xFC, 0x00, 0xEE, 0x00, 0xF7, + 0x00, 0x7B, 0xC0, 0x78, 0xFC, 0xF8, 0x3F, 0xF8, 0x07, 0xF8, 0x00, 0xFF, 0xFF, 0xFF, 0xFE, 0x01, + 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, + 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1C, 0xFF, 0x87, 0xFF, 0x38, 0xFD, 0xC0, 0xEE, + 0x07, 0xF0, 0x3F, 0x81, 0xFC, 0x0E, 0xE3, 0xF7, 0xFF, 0x3F, 0xF1, 0xC0, 0x0E, 0x00, 0x70, 0x03, + 0x80, 0x1C, 0x00, 0xE0, 0x00, 0x07, 0xF8, 0x7F, 0xF3, 0xF3, 0xDE, 0x00, 0x78, 0x01, 0xC0, 0x0F, + 0x00, 0x38, 0x00, 0xE0, 0x03, 0x80, 0x0F, 0x00, 0x3C, 0x00, 0x70, 0x01, 0xE0, 0x03, 0xF1, 0xC7, + 0xFF, 0x07, 0xF8, 0xFF, 0xFF, 0xFF, 0xF0, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x01, + 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x01, 0xE0, 0x07, + 0x80, 0xF0, 0x1E, 0xE0, 0x39, 0xE0, 0x71, 0xC1, 0xE3, 0xC3, 0x83, 0x87, 0x07, 0x9C, 0x07, 0x38, + 0x0F, 0xF0, 0x0F, 0xC0, 0x0F, 0x80, 0x1E, 0x00, 0x1C, 0x00, 0x70, 0x13, 0xE0, 0x3F, 0x80, 0x7E, + 0x00, 0x00, 0xE0, 0x00, 0x0E, 0x00, 0x07, 0xFE, 0x01, 0xFF, 0xF8, 0x3E, 0xEF, 0xC7, 0x8E, 0x1E, + 0x70, 0xE0, 0xEF, 0x0E, 0x0E, 0xE0, 0xE0, 0xFE, 0x0E, 0x0F, 0xF0, 0xE0, 0xE7, 0x0E, 0x0E, 0x78, + 0xE1, 0xE3, 0xEE, 0xFC, 0x1F, 0xFF, 0x80, 0xFF, 0xE0, 0x00, 0xE0, 0x00, 0x0E, 0x00, 0x70, 0x1E, + 0x78, 0x1C, 0x3C, 0x3C, 0x1C, 0x78, 0x1E, 0x70, 0x0F, 0xF0, 0x07, 0xE0, 0x03, 0xC0, 0x03, 0xC0, + 0x07, 0xE0, 0x0F, 0xE0, 0x0E, 0xF0, 0x1E, 0x78, 0x3C, 0x3C, 0x38, 0x1C, 0x78, 0x1E, 0xF0, 0x0E, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, - 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x07, - 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0xE0, 0x3F, 0x01, 0xF8, 0x0F, 0xC0, 0x7E, 0x03, - 0xF0, 0x1F, 0x80, 0xFE, 0x07, 0x78, 0x7B, 0xFF, 0xC7, 0xFE, 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, - 0xE0, 0x07, 0x00, 0x38, 0xE0, 0x70, 0x3F, 0x03, 0x81, 0xF8, 0x1C, 0x0F, 0xC0, 0xE0, 0x7E, 0x07, - 0x03, 0xF0, 0x38, 0x1F, 0x81, 0xC0, 0xFC, 0x0E, 0x07, 0xE0, 0x70, 0x3F, 0x03, 0x81, 0xF8, 0x1C, - 0x0F, 0xC0, 0xE0, 0x7E, 0x07, 0x03, 0xF0, 0x38, 0x1F, 0x81, 0xC0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xF8, 0xE0, 0x70, 0x39, 0xC0, 0xE0, 0x73, 0x81, 0xC0, 0xE7, 0x03, 0x81, 0xCE, 0x07, 0x03, 0x9C, - 0x0E, 0x07, 0x38, 0x1C, 0x0E, 0x70, 0x38, 0x1C, 0xE0, 0x70, 0x39, 0xC0, 0xE0, 0x73, 0x81, 0xC0, - 0xE7, 0x03, 0x81, 0xCE, 0x07, 0x03, 0x9C, 0x0E, 0x07, 0x38, 0x1C, 0x0E, 0x7F, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFE, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x38, 0x00, 0x00, 0x70, 0x00, 0x00, 0xE0, 0x00, 0x01, - 0xC0, 0xFF, 0x00, 0x3F, 0xC0, 0x00, 0x70, 0x00, 0x1C, 0x00, 0x07, 0x00, 0x01, 0xC0, 0x00, 0x7F, - 0xC0, 0x1F, 0xFC, 0x07, 0x1F, 0x81, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0F, 0x07, 0x03, 0x81, 0xC0, - 0xE0, 0x71, 0xF8, 0x1F, 0xFC, 0x07, 0xFC, 0x00, 0xE0, 0x03, 0xF8, 0x00, 0xFE, 0x00, 0x3F, 0x80, - 0x0F, 0xE0, 0x03, 0xF8, 0x00, 0xFF, 0xF8, 0x3F, 0xFF, 0x8F, 0xE3, 0xF3, 0xF8, 0x1C, 0xFE, 0x07, - 0x3F, 0x81, 0xEF, 0xE0, 0x73, 0xF8, 0x1C, 0xFE, 0x3F, 0x3F, 0xFF, 0x8F, 0xFF, 0x83, 0xC0, 0xE0, - 0x07, 0x00, 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0xFF, 0x1F, 0xFC, 0xE3, 0xF7, 0x03, 0xB8, - 0x1F, 0xC0, 0x7E, 0x07, 0xF0, 0x3B, 0x87, 0xDF, 0xFC, 0xFF, 0xC0, 0x7F, 0xC1, 0xFF, 0xC1, 0xC7, - 0xC0, 0x03, 0xC0, 0x03, 0xC0, 0x03, 0x80, 0x07, 0x0F, 0xFE, 0x1F, 0xFC, 0x00, 0x38, 0x00, 0x70, - 0x00, 0xE0, 0x03, 0xC0, 0x0F, 0x1C, 0x7C, 0x7F, 0xF0, 0x7F, 0xC0, 0xE0, 0x1F, 0xC1, 0xC0, 0xFF, - 0xE3, 0x83, 0xE7, 0xE7, 0x0F, 0x01, 0xCE, 0x1C, 0x03, 0xDC, 0x78, 0x03, 0xB8, 0xF0, 0x07, 0x7F, - 0xC0, 0x0F, 0xFF, 0x80, 0x1F, 0xC7, 0x00, 0x3F, 0x8F, 0x00, 0x77, 0x0E, 0x00, 0xEE, 0x1C, 0x03, - 0xDC, 0x3C, 0x07, 0x38, 0x3E, 0x7E, 0x70, 0x3F, 0xF8, 0xE0, 0x1F, 0xC0, 0x0F, 0xFC, 0x7F, 0xF3, - 0xE1, 0xDE, 0x07, 0x70, 0x1D, 0xC0, 0x77, 0x81, 0xCF, 0x87, 0x3F, 0xFC, 0x3F, 0xF0, 0xE1, 0xC7, - 0x87, 0x1C, 0x1C, 0xF0, 0x73, 0x81, 0xDE, 0x07, 0x70, 0x1C, 0x7F, 0x8F, 0xF9, 0x8F, 0x00, 0xE0, - 0x0E, 0x7F, 0xDF, 0xFF, 0xCF, 0xE0, 0xFC, 0x1F, 0xC7, 0xFF, 0xF3, 0xFC, 0x03, 0xF0, 0x7F, 0x87, - 0xF8, 0x78, 0x07, 0x80, 0x38, 0x01, 0xFF, 0x1F, 0xFC, 0xFD, 0xF7, 0x83, 0xF8, 0x0F, 0xC0, 0x7E, - 0x03, 0xF8, 0x1D, 0xC1, 0xEE, 0x0E, 0x7C, 0xF1, 0xFF, 0x07, 0xF0, 0xFF, 0x9F, 0xFB, 0x8F, 0x70, - 0xEE, 0x3D, 0xFF, 0x3F, 0xF7, 0x1F, 0xE0, 0xFC, 0x1F, 0x8F, 0xFF, 0xEF, 0xF8, 0xFF, 0x7F, 0xB8, - 0x1C, 0x0E, 0x07, 0x03, 0x81, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x00, 0x0F, 0xF8, 0x1F, 0xF0, - 0x38, 0xE0, 0x71, 0xC0, 0xE3, 0x81, 0x87, 0x07, 0x0E, 0x0E, 0x1C, 0x1C, 0x38, 0x70, 0x70, 0xE0, - 0xE7, 0xFF, 0xFF, 0xFF, 0xFC, 0x01, 0xF8, 0x03, 0xF0, 0x07, 0xE0, 0x0E, 0x1F, 0x83, 0xFE, 0x79, - 0xEF, 0x0F, 0xE0, 0x7F, 0xFF, 0xFF, 0xFE, 0x00, 0xE0, 0x0F, 0x00, 0x7C, 0x63, 0xFE, 0x1F, 0xE0, - 0x78, 0xE1, 0xC7, 0x1C, 0x70, 0x73, 0x9C, 0x07, 0x77, 0x00, 0x7F, 0xC0, 0x07, 0xF8, 0x01, 0xFF, - 0x00, 0x77, 0x70, 0x1C, 0xE7, 0x07, 0x9C, 0xF0, 0xE3, 0x8F, 0x38, 0x70, 0xEF, 0x0E, 0x1E, 0xFF, - 0x3F, 0xEE, 0x7C, 0x07, 0x03, 0xCF, 0xE3, 0xF8, 0x0F, 0x01, 0xC0, 0x7E, 0x3F, 0xFF, 0xFF, 0x00, - 0xE0, 0xFC, 0x3F, 0x8F, 0xF1, 0xFE, 0x7F, 0xDD, 0xFB, 0xBF, 0xE7, 0xF8, 0xFF, 0x1F, 0xC3, 0xF0, - 0x7E, 0x0E, 0x71, 0x87, 0x70, 0xFE, 0x0F, 0x80, 0x00, 0x00, 0x38, 0x3F, 0x0F, 0xE3, 0xFC, 0x7F, - 0x9F, 0xF7, 0x7E, 0xEF, 0xF9, 0xFE, 0x3F, 0xC7, 0xF0, 0xFC, 0x1F, 0x83, 0x80, 0xE1, 0xEE, 0x3C, - 0xE7, 0x8E, 0xF0, 0xFE, 0x0F, 0xC0, 0xFC, 0x0F, 0xE0, 0xEF, 0x0E, 0x78, 0xE3, 0xCE, 0x1C, 0xE0, - 0xE0, 0x0F, 0xF8, 0x7F, 0xC3, 0x8E, 0x1C, 0x70, 0xE3, 0x87, 0x1C, 0x38, 0xE3, 0x87, 0x1C, 0x39, - 0xE1, 0xDE, 0x0F, 0xF0, 0x7E, 0x03, 0x80, 0x70, 0x0E, 0x78, 0x1E, 0x78, 0x1E, 0x7C, 0x3E, 0x7C, - 0x36, 0x76, 0x77, 0x76, 0x67, 0x67, 0xE7, 0x63, 0xC7, 0xE3, 0xC7, 0xE1, 0xC7, 0xE0, 0x07, 0xE0, - 0x07, 0xE0, 0xFC, 0x1F, 0x83, 0xF0, 0x7E, 0x0F, 0xFF, 0xFF, 0xFF, 0x07, 0xE0, 0xFC, 0x1F, 0x83, - 0xF0, 0x7E, 0x0E, 0x1F, 0xC1, 0xFF, 0x1E, 0x7C, 0xE0, 0xEE, 0x07, 0xF0, 0x1F, 0x80, 0xFC, 0x07, - 0xE0, 0x7B, 0x83, 0x9E, 0x7C, 0x7F, 0xC1, 0xFC, 0x00, 0xFF, 0xFF, 0xFF, 0x83, 0xF0, 0x7E, 0x0F, - 0xC1, 0xF8, 0x3F, 0x07, 0xE0, 0xFC, 0x1F, 0x83, 0xF0, 0x7E, 0x0E, 0xFF, 0x8F, 0xFC, 0xE3, 0xEE, - 0x0E, 0xE0, 0xFE, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0xFE, 0x0E, 0xF3, 0xEF, 0xFC, 0xFF, 0x8E, 0x00, - 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0x1F, 0xC7, 0xF9, 0xF3, 0x38, 0x0E, 0x01, 0xC0, 0x38, 0x07, - 0x00, 0xE0, 0x1E, 0x01, 0xF3, 0x1F, 0xE1, 0xFC, 0xFF, 0xFF, 0xFF, 0x0E, 0x00, 0xE0, 0x0E, 0x00, - 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x7F, 0x07, 0x70, - 0x77, 0x0E, 0x78, 0xE3, 0x8E, 0x38, 0xC1, 0xDC, 0x1D, 0xC1, 0xF8, 0x0F, 0x80, 0xF8, 0x07, 0x00, - 0x70, 0x07, 0x09, 0xE0, 0xFC, 0x0F, 0x80, 0x01, 0xC0, 0x00, 0xE0, 0x00, 0x70, 0x00, 0x38, 0x00, - 0x1C, 0x00, 0x0E, 0x00, 0x3F, 0xE0, 0x7F, 0xFC, 0x7D, 0xDF, 0x38, 0xE3, 0xF8, 0x70, 0xFC, 0x38, - 0x7E, 0x1C, 0x3F, 0x0E, 0x1F, 0x87, 0x0E, 0xE3, 0x8F, 0x7D, 0xDF, 0x1F, 0xFF, 0x03, 0xFE, 0x00, - 0x38, 0x00, 0x1C, 0x00, 0x0E, 0x00, 0x07, 0x00, 0x03, 0x80, 0x70, 0x73, 0xC7, 0x0E, 0x78, 0x3B, - 0x81, 0xF8, 0x07, 0x80, 0x3C, 0x01, 0xF0, 0x1F, 0xC1, 0xEF, 0x0E, 0x38, 0xE1, 0xEF, 0x07, 0x00, - 0xE0, 0xE7, 0x07, 0x38, 0x39, 0xC1, 0xCE, 0x0E, 0x70, 0x73, 0x83, 0x9C, 0x1C, 0xE0, 0xE7, 0x07, - 0x38, 0x39, 0xFF, 0xFF, 0xFF, 0x80, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x38, 0xE0, 0xFC, 0x1F, 0x83, - 0xF0, 0x7E, 0x0F, 0xE3, 0xDF, 0xF9, 0xFF, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0xE1, 0xC3, - 0xF0, 0xE1, 0xF8, 0x70, 0xFC, 0x38, 0x7E, 0x1C, 0x3F, 0x0E, 0x1F, 0x87, 0x0F, 0xC3, 0x87, 0xE1, - 0xC3, 0xF0, 0xE1, 0xF8, 0x70, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0xE1, 0xC3, 0x9C, 0x38, 0x73, 0x87, - 0x0E, 0x70, 0xE1, 0xCE, 0x1C, 0x39, 0xC3, 0x87, 0x38, 0x70, 0xE7, 0x0E, 0x1C, 0xE1, 0xC3, 0x9C, - 0x38, 0x73, 0x87, 0x0E, 0x7F, 0xFF, 0xFF, 0xFF, 0xFE, 0x00, 0x01, 0xC0, 0x00, 0x38, 0x00, 0x07, - 0x00, 0x00, 0xE0, 0xFC, 0x01, 0xF8, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xFF, 0x03, 0xFF, 0x87, 0x8F, - 0x0E, 0x0E, 0x1C, 0x1E, 0x38, 0x38, 0x78, 0xF0, 0xFF, 0xE0, 0xFF, 0x00, 0xE0, 0x0F, 0xC0, 0x1F, - 0x80, 0x3F, 0x00, 0x7E, 0x00, 0xFF, 0xF1, 0xFF, 0xF3, 0xF1, 0xE7, 0xE1, 0xEF, 0xC3, 0xDF, 0x8F, - 0x3F, 0xFE, 0x7F, 0xF8, 0xE0, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0F, 0xF9, 0xFF, 0xB8, 0xF7, 0x0F, - 0xE0, 0xFC, 0x3F, 0x8F, 0x7F, 0xEF, 0xF8, 0x7F, 0x07, 0xFC, 0x63, 0xC0, 0x0E, 0x00, 0xE1, 0xFE, - 0x1F, 0xF0, 0x0E, 0x00, 0xE0, 0x1E, 0x63, 0xE7, 0xFC, 0x7F, 0x00, 0xE0, 0xFC, 0x71, 0xFF, 0x38, - 0xF3, 0xDC, 0xF0, 0xFE, 0x70, 0x3F, 0xF8, 0x1F, 0xFC, 0x0F, 0xCE, 0x07, 0xE7, 0x03, 0xF3, 0xC3, - 0xF8, 0xF3, 0xDC, 0x3F, 0xCE, 0x0F, 0xC0, 0x1F, 0xF3, 0xFF, 0x3C, 0x77, 0x07, 0x70, 0x77, 0xC7, - 0x3F, 0xF1, 0xFF, 0x1C, 0x73, 0x87, 0x38, 0x77, 0x07, 0x70, 0x70, 0x1C, 0x01, 0xC0, 0x0E, 0x00, - 0x70, 0x03, 0x00, 0x00, 0x00, 0x01, 0xF8, 0x3F, 0xE7, 0x9E, 0xF0, 0xFE, 0x07, 0xFF, 0xFF, 0xFF, - 0xE0, 0x0E, 0x00, 0xF0, 0x07, 0xC6, 0x3F, 0xE1, 0xFE, 0x39, 0xC3, 0xDC, 0x39, 0xC0, 0x00, 0x00, - 0x01, 0xF8, 0x3F, 0xE7, 0x9E, 0xF0, 0xFE, 0x07, 0xFF, 0xFF, 0xFF, 0xE0, 0x0E, 0x00, 0xF0, 0x07, - 0xC6, 0x3F, 0xE1, 0xFE, 0x38, 0x01, 0xC0, 0x3F, 0xE1, 0xFF, 0x03, 0x80, 0x1C, 0x00, 0xFF, 0x87, - 0xFE, 0x3C, 0xF1, 0xC3, 0xCE, 0x0E, 0x70, 0x73, 0x83, 0x9C, 0x1C, 0xE0, 0xE7, 0x07, 0x38, 0x39, - 0xC1, 0xCE, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x3C, 0x07, 0xC0, 0x3E, 0x07, 0x03, 0x83, 0x83, 0x81, - 0x80, 0x00, 0x01, 0xFE, 0xFF, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x81, 0xC0, 0xE0, 0x70, 0x38, - 0x1C, 0x00, 0x1F, 0xC7, 0xF9, 0xF3, 0x38, 0x0E, 0x01, 0xFE, 0x3F, 0xC7, 0x00, 0xE0, 0x1E, 0x01, - 0xF3, 0x9F, 0xF1, 0xFE, 0x3F, 0xBF, 0xEF, 0x33, 0x80, 0xF0, 0x3F, 0x03, 0xF0, 0x3E, 0x03, 0x80, - 0xFE, 0x7B, 0xFE, 0xFF, 0x00, 0xFF, 0x00, 0x07, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0xE7, 0x7B, - 0xB9, 0xC0, 0x00, 0x00, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x81, 0xC0, 0xE0, 0x70, 0x38, - 0x1C, 0x0E, 0x00, 0x1E, 0x3C, 0x00, 0x00, 0x01, 0xC3, 0x87, 0x0E, 0x1C, 0x38, 0x70, 0xE1, 0xC3, - 0x87, 0x0E, 0x1C, 0x38, 0xF3, 0xDF, 0xBE, 0x00, 0x0F, 0xF8, 0x00, 0x7F, 0xC0, 0x03, 0x8E, 0x00, - 0x1C, 0x70, 0x00, 0xE3, 0x80, 0x07, 0x1F, 0xF0, 0x38, 0xFF, 0xC3, 0x87, 0x9F, 0x1C, 0x38, 0x39, - 0xE1, 0xC1, 0xDE, 0x0E, 0x1F, 0xF0, 0x7F, 0xEE, 0x03, 0xFE, 0x00, 0xE0, 0xE0, 0x1C, 0x1C, 0x03, - 0x83, 0x80, 0x70, 0x70, 0x0E, 0x0E, 0x01, 0xC1, 0xFF, 0x3F, 0xFF, 0xF7, 0xFF, 0x1F, 0xE0, 0xE0, - 0xFC, 0x1C, 0x1F, 0x83, 0x8F, 0xF0, 0x7F, 0xEE, 0x0F, 0xF8, 0x38, 0x01, 0xC0, 0x3F, 0xE1, 0xFF, - 0x03, 0x80, 0x1C, 0x00, 0xFF, 0x87, 0xFE, 0x3C, 0xF1, 0xC3, 0xCE, 0x0E, 0x70, 0x73, 0x83, 0x9C, - 0x1C, 0xE0, 0xE7, 0x07, 0x38, 0x39, 0xC1, 0xCE, 0x0E, 0x03, 0x00, 0x70, 0x0E, 0x01, 0xC0, 0x1C, - 0x00, 0x00, 0x00, 0x0E, 0x1E, 0xE3, 0xCE, 0x78, 0xEF, 0x0F, 0xE0, 0xFC, 0x0F, 0xC0, 0xFE, 0x0E, - 0xF0, 0xE7, 0x8E, 0x3C, 0xE1, 0xCE, 0x0E, 0x18, 0x07, 0x80, 0x70, 0x07, 0x00, 0x60, 0x00, 0x00, - 0x07, 0x07, 0xE1, 0xFC, 0x7F, 0x8F, 0xF3, 0xFE, 0xEF, 0xDD, 0xFF, 0x3F, 0xC7, 0xF8, 0xFE, 0x1F, - 0x83, 0xF0, 0x70, 0x18, 0xE1, 0xDC, 0x1F, 0xC0, 0xF8, 0x00, 0x00, 0x00, 0xE0, 0x7F, 0x07, 0x70, - 0x77, 0x0E, 0x78, 0xE3, 0x8E, 0x38, 0xC1, 0xDC, 0x1D, 0xC1, 0xF8, 0x0F, 0x80, 0xF8, 0x07, 0x00, - 0x70, 0x07, 0x09, 0xE0, 0xFC, 0x0F, 0x80, 0xE0, 0xFC, 0x1F, 0x83, 0xF0, 0x7E, 0x0F, 0xC1, 0xF8, - 0x3F, 0x07, 0xE0, 0xFC, 0x1F, 0x83, 0xFF, 0xFF, 0xFE, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x00, 0x07, - 0x00, 0x01, 0xC0, 0x0F, 0xFF, 0x83, 0xFF, 0xE0, 0x07, 0x00, 0x01, 0xC0, 0x00, 0x70, 0x00, 0x1F, - 0xF0, 0x07, 0xFF, 0x01, 0xC7, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0xC1, 0xC0, 0xE0, 0x70, - 0x38, 0x1C, 0x7E, 0x07, 0xFF, 0x01, 0xFF, 0x00, 0x1C, 0x00, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x01, - 0xC0, 0x03, 0x80, 0x3F, 0xF8, 0x7F, 0xF0, 0x1C, 0x00, 0x38, 0x00, 0x7F, 0xC0, 0xFF, 0xE1, 0xE3, - 0xC3, 0x83, 0x87, 0x07, 0x8E, 0x0E, 0x1E, 0x3C, 0x3F, 0xF8, 0x3F, 0xC0, 0x07, 0xF8, 0x0F, 0xFE, - 0x0F, 0xCF, 0x8F, 0x01, 0xE7, 0x80, 0x7B, 0x80, 0x3F, 0xC0, 0x0F, 0xFF, 0x07, 0xFF, 0xE7, 0xFC, - 0xFF, 0xFC, 0x1F, 0xEE, 0x00, 0x77, 0x00, 0x7B, 0xC0, 0x78, 0xF8, 0xF8, 0x3F, 0xF8, 0x07, 0xF8, - 0x00, 0x1F, 0xC1, 0xFF, 0x1E, 0x7C, 0xE0, 0xEF, 0xE7, 0xFF, 0xBF, 0xDF, 0xFC, 0x7F, 0xE0, 0x7B, - 0x83, 0x9E, 0x7C, 0x7F, 0xC1, 0xFC, 0x00, 0xE0, 0x03, 0xEF, 0x00, 0x7E, 0x70, 0x0F, 0x67, 0x80, - 0xE0, 0x78, 0x0E, 0x03, 0x81, 0xC0, 0x3C, 0x1C, 0x01, 0xC3, 0xC0, 0x1C, 0x38, 0x01, 0xE3, 0x80, - 0x0E, 0x70, 0x00, 0xF7, 0x00, 0x07, 0xF0, 0x00, 0x7E, 0x00, 0x03, 0xE0, 0x00, 0x3C, 0x00, 0x03, - 0xC0, 0x00, 0xE0, 0x3D, 0xE0, 0xF9, 0xC1, 0xC3, 0x87, 0x07, 0x8E, 0x07, 0x1C, 0x0E, 0x70, 0x0E, - 0xE0, 0x1F, 0x80, 0x3F, 0x00, 0x3E, 0x00, 0x78, 0x00, 0x70, 0x00, 0x1C, 0x60, 0x0F, 0x70, 0x03, - 0xF0, 0x00, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x71, 0xC0, 0x78, 0xE0, 0x7C, 0x70, 0x3E, - 0x38, 0x3F, 0x1C, 0x3F, 0x8E, 0x3D, 0xC7, 0x1C, 0xE3, 0x9C, 0x71, 0xDE, 0x38, 0xFE, 0x1C, 0x7E, - 0x0E, 0x3F, 0x07, 0x1F, 0x03, 0x8F, 0x01, 0xC7, 0x80, 0xFF, 0x80, 0x7E, 0x00, 0x0E, 0x00, 0x07, - 0x00, 0x07, 0x00, 0x03, 0x80, 0x01, 0x80, 0x71, 0x80, 0xEE, 0x03, 0xF8, 0x07, 0xC0, 0x00, 0x00, - 0x00, 0x0E, 0x0E, 0x38, 0x78, 0xE3, 0xE3, 0x8F, 0x8E, 0x7E, 0x3B, 0xB8, 0xEE, 0xE3, 0xF3, 0x8F, - 0x8E, 0x3E, 0x38, 0xF0, 0xE3, 0x83, 0xEE, 0x0F, 0x80, 0x0E, 0x00, 0x38, 0x01, 0xE0, 0x07, 0x00, - 0x18, 0x38, 0x00, 0x70, 0x03, 0xFE, 0x07, 0xFC, 0x03, 0x80, 0x07, 0x00, 0x0E, 0x00, 0x1F, 0xF8, - 0x3F, 0xF8, 0x71, 0xF8, 0xE0, 0x79, 0xC0, 0x73, 0x80, 0xE7, 0x01, 0xCE, 0x07, 0x9C, 0x3E, 0x3F, - 0xF8, 0x7F, 0xE0, 0x38, 0x07, 0xFC, 0x3F, 0xE0, 0x70, 0x03, 0x80, 0x1F, 0xF0, 0xFF, 0xC7, 0x1F, - 0x38, 0x39, 0xC1, 0xCE, 0x3E, 0x7F, 0xE3, 0xFE, 0x00, 0xFF, 0x87, 0xFF, 0x38, 0xFD, 0xC0, 0xEE, - 0x07, 0xF0, 0x3F, 0x99, 0xFC, 0xEE, 0xE7, 0xF7, 0xFF, 0x3F, 0xF1, 0xC3, 0x8E, 0x0E, 0x70, 0x63, - 0x80, 0x1C, 0x00, 0xE0, 0x00, 0xFF, 0x8F, 0xFC, 0xE3, 0xEE, 0x0E, 0xE0, 0xFE, 0x07, 0xE0, 0x7E, - 0x67, 0xE6, 0xFE, 0x7E, 0xF3, 0xEF, 0xFC, 0xFF, 0xCE, 0x1C, 0xE0, 0xCE, 0x00, 0xE0, 0x0E, 0x00, - 0x00, 0xE0, 0x1C, 0x03, 0xFF, 0xFF, 0xFF, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, - 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x00, 0x03, 0x81, 0xC0, 0xFF, - 0xFF, 0xFF, 0x03, 0x81, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x81, 0xC0, 0x3F, 0xF9, - 0xFF, 0xCE, 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, 0xE0, 0x1F, 0xF0, 0xFF, 0x81, 0xC0, 0x0E, 0x00, - 0x70, 0x03, 0x80, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x38, 0x00, 0x3F, 0xE7, 0xFC, 0xE0, 0x1C, 0x03, - 0x80, 0x70, 0x3F, 0xE7, 0xFC, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0xFF, 0xE7, 0xFF, 0x38, - 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0xFE, 0x1F, 0xFC, 0xF1, 0xF7, 0x07, 0xB8, 0x1F, 0xC0, 0xFE, - 0x03, 0xF0, 0x1F, 0x80, 0xFC, 0x07, 0xE0, 0x78, 0x03, 0x80, 0x3C, 0x07, 0xC0, 0xFE, 0x07, 0xC0, - 0xFF, 0x9F, 0xF3, 0x80, 0x70, 0x0E, 0x01, 0xFF, 0x3F, 0xF7, 0x1E, 0xE1, 0xFC, 0x1F, 0x83, 0xF0, - 0x7E, 0x0E, 0x01, 0xC0, 0x78, 0x1E, 0x0F, 0x81, 0xE0, 0x78, 0x38, 0x3C, 0x78, 0x70, 0xF0, 0x70, - 0xE3, 0xC0, 0x71, 0xCF, 0x00, 0x73, 0xBC, 0x00, 0xF7, 0xF0, 0x00, 0xFF, 0xC0, 0x00, 0xFF, 0x80, - 0x03, 0xFF, 0x00, 0x0F, 0x77, 0x00, 0x1C, 0xE7, 0x00, 0x71, 0xCF, 0x01, 0xC3, 0x8F, 0x07, 0x87, - 0x0E, 0x0E, 0x0E, 0x1E, 0x3C, 0x1C, 0x1F, 0xF0, 0x38, 0x1E, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x38, - 0x00, 0x00, 0x70, 0x00, 0x00, 0xE0, 0x00, 0x01, 0xC0, 0x78, 0xE1, 0xC3, 0x8E, 0x38, 0x1C, 0xE7, - 0x00, 0xEE, 0xE0, 0x07, 0xFC, 0x00, 0x3F, 0xC0, 0x07, 0xFC, 0x00, 0xEF, 0xE0, 0x1C, 0xEF, 0x03, - 0xCE, 0x78, 0x38, 0xE3, 0xC7, 0x0E, 0x1F, 0xF0, 0xE1, 0xF0, 0x00, 0x07, 0x00, 0x00, 0x70, 0x00, - 0x07, 0x00, 0x00, 0x70, 0x3F, 0xC1, 0xFF, 0xC3, 0x9F, 0x00, 0x1E, 0x00, 0x78, 0x01, 0xC0, 0x1F, - 0x07, 0xF8, 0x1F, 0xF0, 0x07, 0xE0, 0x03, 0x80, 0x0E, 0x00, 0x38, 0x00, 0xE7, 0x9F, 0x9F, 0xFC, - 0x7F, 0xE0, 0x1C, 0x00, 0x38, 0x00, 0xE0, 0x0F, 0x80, 0x3C, 0x00, 0xFF, 0x3F, 0xEE, 0x7C, 0x07, - 0x03, 0xCF, 0xE3, 0xF8, 0x0F, 0x01, 0xC0, 0x7E, 0x3F, 0xFF, 0xFF, 0x07, 0x00, 0xE0, 0x38, 0x3E, - 0x0F, 0x00, 0xE0, 0x79, 0xC1, 0xE3, 0x87, 0x87, 0x1E, 0x0E, 0x78, 0x1D, 0xE0, 0x3F, 0x80, 0x7E, - 0x00, 0xFE, 0x01, 0xDE, 0x03, 0x9E, 0x07, 0x1E, 0x0E, 0x1E, 0x1C, 0x3C, 0x38, 0x3C, 0x70, 0x3F, - 0xE0, 0x3E, 0x00, 0x1C, 0x00, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xC0, 0xE1, 0xEE, 0x3C, 0xE7, - 0x8E, 0xE0, 0xFC, 0x0F, 0x80, 0xFC, 0x0F, 0xE0, 0xEF, 0x0E, 0x78, 0xE3, 0xCE, 0x1F, 0xE0, 0xF0, - 0x07, 0x00, 0x70, 0x07, 0x00, 0x70, 0xE0, 0x1E, 0xE0, 0x3C, 0xE0, 0x78, 0xEC, 0xF0, 0xED, 0xE0, - 0xED, 0xC0, 0xEF, 0x80, 0xFF, 0x80, 0xFF, 0x80, 0xED, 0xC0, 0xED, 0xE0, 0xEC, 0xF0, 0xEC, 0x70, - 0xE0, 0x78, 0xE0, 0x3C, 0xE0, 0x1E, 0xE0, 0x0E, 0xE0, 0x73, 0x83, 0xCF, 0xDE, 0x3F, 0xF0, 0xFF, - 0x83, 0xFC, 0x0F, 0xF8, 0x3F, 0xE0, 0xFD, 0xC3, 0xF3, 0x8E, 0x0F, 0x38, 0x1E, 0xE0, 0x38, 0x38, - 0x1E, 0x38, 0x3C, 0xFF, 0x78, 0xFF, 0xF0, 0x39, 0xE0, 0x3B, 0xC0, 0x3F, 0x80, 0x3F, 0x00, 0x3F, - 0x80, 0x3F, 0xC0, 0x3B, 0xE0, 0x38, 0xF0, 0x38, 0x78, 0x38, 0x3C, 0x38, 0x1E, 0x38, 0x1E, 0x38, - 0x0F, 0x38, 0x78, 0xE3, 0xCF, 0xFE, 0x3F, 0xF0, 0x3F, 0x80, 0xFC, 0x03, 0xF0, 0x0F, 0xE0, 0x3B, - 0xC0, 0xE7, 0x83, 0x8F, 0x0E, 0x1E, 0x38, 0x3C, 0xFF, 0x03, 0xDF, 0xE0, 0xF0, 0x1C, 0x3C, 0x03, - 0x8F, 0x00, 0x73, 0xC0, 0x0E, 0xF0, 0x01, 0xF8, 0x00, 0x3F, 0x00, 0x07, 0xF0, 0x00, 0xFF, 0x00, - 0x1D, 0xF0, 0x03, 0x9F, 0x00, 0x71, 0xE0, 0x0E, 0x1E, 0x01, 0xC1, 0xE0, 0x38, 0x1E, 0x07, 0x01, - 0xC0, 0xFC, 0x1D, 0xF8, 0x70, 0x71, 0xE0, 0xE7, 0x81, 0xDE, 0x03, 0xF8, 0x07, 0xE0, 0x0F, 0xF0, - 0x1C, 0xF0, 0x38, 0xF0, 0x70, 0xE0, 0xE0, 0xE1, 0xC1, 0xE0, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, - 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xFF, 0xFC, 0xFF, 0xFC, 0xE0, 0x1C, 0xE0, 0x1C, - 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1F, 0xE0, 0x1F, 0x00, 0x07, 0x00, 0x07, - 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0xE0, 0xE7, 0x07, 0x38, 0x39, 0xC1, 0xCE, 0x0E, 0x7F, 0xF3, - 0xFF, 0x9C, 0x1C, 0xE0, 0xE7, 0x07, 0x38, 0x39, 0xC1, 0xFE, 0x0F, 0x80, 0x1C, 0x00, 0xE0, 0x07, - 0x00, 0x38, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, 0xC3, 0x80, 0x70, 0xE0, 0x1C, 0x38, 0x07, 0x0E, - 0x01, 0xC3, 0xFF, 0xF0, 0xFF, 0xFC, 0x38, 0x07, 0x0E, 0x01, 0xC3, 0x80, 0x70, 0xE0, 0x1C, 0x38, - 0x07, 0x0E, 0x01, 0xC3, 0x80, 0x70, 0xE0, 0x1C, 0x00, 0xE0, 0xFF, 0x83, 0xFE, 0x0E, 0x38, 0x38, - 0xE0, 0xE3, 0xFF, 0x8F, 0xFE, 0x38, 0x38, 0xE0, 0xE3, 0x83, 0x8E, 0x0E, 0x38, 0x38, 0xE0, 0xE0, - 0xFF, 0xF8, 0x01, 0xFF, 0xF0, 0x03, 0x80, 0xE0, 0x07, 0x01, 0xC0, 0x0E, 0x03, 0x80, 0x1C, 0x07, - 0x00, 0x38, 0x0F, 0xFC, 0x70, 0x1F, 0xFC, 0xE0, 0x3C, 0x7D, 0xC0, 0x70, 0x3B, 0x80, 0xE0, 0x7F, - 0x01, 0xC0, 0x7E, 0x03, 0x80, 0xFC, 0x07, 0x01, 0xF8, 0x0E, 0x03, 0xF0, 0x1C, 0x07, 0xE0, 0x38, - 0x0E, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x70, 0x00, 0x03, 0xE0, 0x00, 0x3F, 0x80, 0x00, 0x7C, 0x00, - 0xFF, 0xE0, 0x1F, 0xFC, 0x03, 0x83, 0x80, 0x70, 0x70, 0x0E, 0x0E, 0x01, 0xC1, 0xFF, 0x38, 0x3F, - 0xF7, 0x07, 0x1E, 0xE0, 0xE1, 0xFC, 0x1C, 0x1F, 0x83, 0x83, 0xF0, 0x70, 0x7E, 0x0E, 0x0E, 0x00, - 0x01, 0xC0, 0x00, 0x78, 0x00, 0x1E, 0x00, 0x0F, 0xC0, 0x01, 0xE0, 0x07, 0xF8, 0x07, 0xFE, 0x03, - 0xF1, 0x80, 0xF0, 0x00, 0x78, 0x00, 0x1C, 0x1F, 0x8F, 0x0F, 0xF3, 0x87, 0xDE, 0xE1, 0xC3, 0xB8, - 0x70, 0xFF, 0x1C, 0x3D, 0xC7, 0x0F, 0x71, 0xC3, 0x9E, 0x71, 0xE3, 0xFD, 0xF0, 0x7F, 0xF8, 0x07, - 0xF8, 0x00, 0x1C, 0x00, 0x07, 0x80, 0x00, 0xFC, 0x00, 0x1F, 0x80, 0x01, 0xE0, 0x1F, 0x80, 0xFE, - 0x07, 0xC0, 0x3C, 0x7C, 0xE3, 0xFB, 0x9E, 0xEE, 0x73, 0xB9, 0xC6, 0xE7, 0x3B, 0xDC, 0xE7, 0xFF, - 0x8F, 0xFC, 0x1F, 0xC0, 0x0F, 0x00, 0x1F, 0x00, 0x3E, 0x00, 0x78, 0x07, 0xF8, 0x7F, 0xF3, 0xF3, - 0xDE, 0x00, 0x78, 0x01, 0xC0, 0x0F, 0x00, 0x38, 0x00, 0xE0, 0x03, 0x80, 0x0F, 0x00, 0x3C, 0x00, - 0x70, 0x01, 0xE0, 0x03, 0xF1, 0xC7, 0xFF, 0x07, 0xF8, 0x06, 0x00, 0x3C, 0x00, 0x70, 0x01, 0xC0, - 0x1F, 0x00, 0x7C, 0x00, 0x1F, 0xC7, 0xF9, 0xF3, 0x38, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xE0, - 0x1E, 0x01, 0xF3, 0x1F, 0xE1, 0xFC, 0x0C, 0x01, 0xC0, 0x38, 0x07, 0x03, 0xE0, 0x7C, 0x00, 0xFF, - 0xFF, 0xFF, 0xF0, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x1E, - 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x01, 0xF8, 0x07, 0xE0, 0x03, 0x80, 0x0E, - 0x00, 0x38, 0x00, 0xE0, 0x03, 0x80, 0xFF, 0xFF, 0xFF, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, - 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xF8, 0x0F, 0x80, 0x38, 0x03, 0x80, 0x38, 0x03, 0x80, - 0xF0, 0x1E, 0xE0, 0x39, 0xE0, 0xF1, 0xC1, 0xC3, 0xC7, 0x83, 0xDE, 0x03, 0xB8, 0x07, 0xF0, 0x07, - 0xC0, 0x07, 0x00, 0x0E, 0x00, 0x1C, 0x00, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xC0, 0x03, 0x80, - 0xE0, 0x77, 0x83, 0x9C, 0x1C, 0xE1, 0xE7, 0x8E, 0x1C, 0x70, 0xE7, 0x07, 0xB8, 0x1D, 0xC0, 0xFC, - 0x03, 0xE0, 0x1E, 0x00, 0xF0, 0x03, 0x80, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x38, 0x00, 0xF0, 0x1E, - 0xE0, 0x39, 0xE0, 0xF1, 0xC1, 0xC3, 0xC7, 0x83, 0xCE, 0x03, 0xB8, 0x07, 0xF0, 0x07, 0xC0, 0x0F, - 0x80, 0xFF, 0xE1, 0xFF, 0xC0, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xC0, 0x03, 0x80, 0xE0, 0x77, - 0x83, 0x9C, 0x1C, 0xE1, 0xC7, 0x8E, 0x1C, 0x70, 0xE7, 0x03, 0xB8, 0x1F, 0x80, 0xFC, 0x03, 0xE0, - 0xFF, 0xC7, 0xFE, 0x03, 0x80, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x38, 0x00, 0x70, 0x1E, 0x3C, 0x0E, - 0x0F, 0x0F, 0x03, 0x8F, 0x01, 0xE7, 0x00, 0x7F, 0x80, 0x1F, 0x80, 0x07, 0x80, 0x03, 0xC0, 0x03, - 0xF0, 0x03, 0xF8, 0x01, 0xDE, 0x01, 0xE7, 0x81, 0xE1, 0xE0, 0xE0, 0x70, 0xF0, 0x3F, 0xF0, 0x0F, - 0x80, 0x03, 0xC0, 0x01, 0xE0, 0x00, 0xF0, 0x00, 0x78, 0x00, 0x3C, 0x70, 0x73, 0xC7, 0x0E, 0x78, - 0x3B, 0x81, 0xF8, 0x07, 0x80, 0x3C, 0x01, 0xF0, 0x1F, 0xC1, 0xEF, 0x0E, 0x38, 0xE1, 0xFF, 0x07, - 0x80, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x38, 0xFF, 0xF8, 0xE7, 0xFF, 0xC7, 0x01, 0xC0, 0x38, 0x0E, - 0x01, 0xC0, 0x70, 0x0E, 0x03, 0x80, 0x70, 0x1C, 0x03, 0x80, 0xE0, 0x1C, 0x07, 0x00, 0xE0, 0x38, - 0x07, 0x01, 0xC0, 0x38, 0x0E, 0x01, 0xC0, 0x70, 0x0E, 0x03, 0x80, 0x70, 0x1C, 0x03, 0x80, 0xFF, - 0xFF, 0x07, 0xFF, 0xF8, 0x00, 0x01, 0xC0, 0x00, 0x0E, 0x00, 0x00, 0x70, 0x00, 0x03, 0x80, 0x00, - 0x1C, 0xFF, 0xCE, 0xFF, 0xCE, 0x1E, 0x0E, 0x1E, 0x0E, 0x1E, 0x0E, 0x1E, 0x0E, 0x1E, 0x0E, 0x1E, - 0x0E, 0x1E, 0x0E, 0x1E, 0x0E, 0x1E, 0x0E, 0x1F, 0xFF, 0x1F, 0xFF, 0x00, 0x07, 0x00, 0x07, 0x00, - 0x07, 0x00, 0x07, 0xE0, 0x39, 0xC0, 0x73, 0x80, 0xE7, 0x01, 0xCE, 0x03, 0x9C, 0x07, 0x38, 0x0E, - 0x78, 0x1C, 0x78, 0x78, 0xFF, 0xF0, 0x7F, 0xE0, 0x01, 0xC0, 0x03, 0x80, 0x07, 0x00, 0x0E, 0x00, - 0x1F, 0x00, 0x3E, 0x00, 0x1C, 0x00, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xC0, 0xE0, 0xE7, 0x07, - 0x38, 0x39, 0xC1, 0xCE, 0x0E, 0x78, 0xF1, 0xFF, 0x87, 0xFC, 0x00, 0xE0, 0x07, 0x00, 0x38, 0x01, - 0xE0, 0x0F, 0x00, 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0xE0, 0x3F, 0x01, 0xF8, 0x0F, 0xC0, 0x7E, - 0x03, 0xF0, 0x1F, 0x9C, 0xFE, 0xE7, 0x7F, 0x7B, 0xFF, 0xCF, 0xFE, 0x0E, 0x70, 0x73, 0x83, 0x9C, - 0x00, 0xE0, 0x07, 0x00, 0x38, 0x70, 0x77, 0x07, 0x70, 0x77, 0x07, 0x76, 0x77, 0xEF, 0x7F, 0xF3, - 0xFF, 0x06, 0x70, 0x67, 0x00, 0x70, 0x07, 0x00, 0x70, 0xE0, 0x07, 0x00, 0x38, 0x01, 0xC0, 0x0E, - 0x00, 0x70, 0x03, 0xFF, 0x1F, 0xFE, 0xF1, 0xF7, 0x03, 0xF8, 0x0F, 0xC0, 0x7E, 0x03, 0xF0, 0x1F, - 0x80, 0xFC, 0x07, 0xE0, 0x38, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x3F, 0xE7, 0xFE, - 0xF3, 0xDC, 0x3F, 0x83, 0xF0, 0x7E, 0x0F, 0xC1, 0xF8, 0x3F, 0x07, 0xE0, 0xFC, 0x1F, 0x83, 0x80, - 0x00, 0x7F, 0x00, 0x1F, 0xFC, 0x03, 0xE7, 0xC0, 0x38, 0x1E, 0xE7, 0x00, 0xEE, 0x70, 0x0F, 0xFF, - 0x00, 0x77, 0xFF, 0xFF, 0x3F, 0xFF, 0xF0, 0xF0, 0x00, 0x07, 0x00, 0x00, 0x70, 0x00, 0x07, 0x80, - 0x00, 0x38, 0x00, 0x03, 0xF1, 0xC0, 0x1F, 0xFE, 0x00, 0x7F, 0xC0, 0x01, 0xF8, 0x07, 0xFC, 0xE7, - 0x9E, 0xEF, 0x0E, 0xFE, 0x07, 0x7F, 0xFF, 0x3F, 0xFF, 0x0E, 0x00, 0x0E, 0x00, 0x0F, 0x00, 0x07, - 0xCE, 0x07, 0xFE, 0x01, 0xFE, 0x00, 0x7F, 0x00, 0x1F, 0xFC, 0x03, 0xE7, 0xC0, 0x38, 0x1E, 0xE7, - 0x00, 0xEE, 0x70, 0x0F, 0xFF, 0x00, 0x77, 0xFF, 0xFF, 0x3F, 0xFF, 0xF0, 0xF0, 0x00, 0x0F, 0x00, - 0x00, 0x70, 0x00, 0x07, 0x80, 0x00, 0x38, 0x00, 0x03, 0xF1, 0xC0, 0x1F, 0xFE, 0x00, 0x7F, 0xC0, - 0x01, 0xC0, 0x00, 0x1C, 0x00, 0x01, 0xC0, 0x00, 0x1C, 0x00, 0x01, 0xC0, 0x01, 0xF8, 0x07, 0xFC, - 0xE7, 0x9E, 0xEF, 0x0E, 0xFE, 0x07, 0x7F, 0xFF, 0x3F, 0xFF, 0x0E, 0x00, 0x0E, 0x00, 0x0F, 0x00, - 0x07, 0xCE, 0x07, 0xFE, 0x01, 0xFE, 0x00, 0xE0, 0x00, 0xE0, 0x00, 0xE0, 0x00, 0xE0, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x01, 0xC6, 0x00, 0x01, 0xDC, 0x00, 0x03, 0xF8, 0x00, 0x03, 0xE0, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x0E, 0x0F, 0x1E, 0x1C, 0x3C, 0x1C, 0x38, 0xF0, 0x1C, - 0x73, 0xC0, 0x3C, 0xEF, 0x00, 0x3D, 0xFC, 0x00, 0x3F, 0xF0, 0x00, 0x3F, 0xE0, 0x00, 0xFF, 0xC0, - 0x03, 0xDD, 0xC0, 0x07, 0x39, 0xC0, 0x1C, 0x73, 0xC0, 0x70, 0xE3, 0xC1, 0xE1, 0xC3, 0x83, 0x83, - 0x87, 0x8F, 0x07, 0x07, 0xBC, 0x0E, 0x07, 0x00, 0x03, 0x1C, 0x00, 0x77, 0x00, 0x0F, 0xE0, 0x00, - 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x38, 0x71, 0xC7, 0x1C, 0x1C, 0xE7, 0x01, 0xDD, 0xC0, - 0x1F, 0xF0, 0x01, 0xFE, 0x00, 0x7F, 0xC0, 0x1D, 0xDC, 0x07, 0x39, 0xC1, 0xE7, 0x3C, 0x38, 0xE3, - 0xCE, 0x1C, 0x3B, 0xC3, 0x87, 0x80, 0xE0, 0x7F, 0x07, 0xB8, 0x79, 0xC7, 0x8E, 0x78, 0x77, 0x83, - 0xF8, 0x1F, 0xF0, 0xFF, 0xE7, 0x1F, 0xB8, 0x3D, 0xC0, 0xFE, 0x03, 0xF0, 0x1F, 0x80, 0xFC, 0x07, - 0xE0, 0x38, 0x03, 0xC0, 0x1C, 0x03, 0xE0, 0xFE, 0x07, 0xE0, 0xE1, 0xFC, 0x7B, 0x9E, 0x77, 0x8F, - 0xC1, 0xFE, 0x3F, 0xE7, 0x3E, 0xE1, 0xFC, 0x1F, 0x83, 0xF0, 0x7E, 0x0E, 0x01, 0xC0, 0x78, 0x1E, - 0x0F, 0x81, 0xE0, 0x07, 0xFF, 0x01, 0xFF, 0xC0, 0x70, 0x70, 0x1C, 0x1C, 0x07, 0x07, 0x01, 0xC1, - 0xC0, 0x70, 0x70, 0x1C, 0x1C, 0x07, 0x07, 0x01, 0xC1, 0xC0, 0xF0, 0x70, 0x38, 0x1C, 0x0E, 0x07, - 0x07, 0x81, 0xC7, 0xC0, 0x73, 0xE0, 0x1F, 0xF0, 0x07, 0xC0, 0x00, 0x70, 0x00, 0x38, 0x00, 0x0E, - 0x00, 0x07, 0x00, 0x01, 0xC0, 0x0F, 0xF8, 0x0F, 0xF8, 0x0E, 0x38, 0x0E, 0x38, 0x0E, 0x38, 0x0E, - 0x38, 0x0E, 0x38, 0x1C, 0x38, 0x1C, 0x38, 0x3C, 0x38, 0x78, 0x38, 0xF8, 0x3E, 0xE0, 0x3E, 0x00, - 0x0E, 0x00, 0x0E, 0x00, 0x1E, 0x00, 0x1C, 0x00, 0x18, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, - 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, - 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1C, 0x00, 0x70, 0x01, 0xC0, 0x0F, 0x00, 0xF8, 0x03, 0xE0, - 0xE0, 0xFC, 0x1F, 0x83, 0xF0, 0x7E, 0x0F, 0xFF, 0xFF, 0xFF, 0x07, 0xE0, 0xFC, 0x1F, 0x83, 0xF0, - 0x7E, 0x0E, 0x01, 0xC0, 0x38, 0x0F, 0x07, 0xC0, 0xF8, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, - 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xFF, 0xFC, 0xFF, 0xFC, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, - 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1F, 0xE0, 0x1F, 0x00, 0x07, 0x00, 0x0E, 0x00, - 0x0E, 0x00, 0x1C, 0x00, 0x1C, 0xE0, 0xE7, 0x07, 0x38, 0x39, 0xC1, 0xCE, 0x0E, 0x7F, 0xF3, 0xFF, - 0x9C, 0x1C, 0xE0, 0xE7, 0x07, 0x38, 0x39, 0xC1, 0xFE, 0x0F, 0x80, 0x1C, 0x00, 0xE0, 0x0E, 0x00, - 0x70, 0x03, 0x00, 0xE0, 0x3F, 0x01, 0xF8, 0x0F, 0xC0, 0x7E, 0x03, 0xF0, 0x1F, 0xC0, 0xEE, 0x07, - 0x7C, 0x7B, 0xFF, 0xC7, 0xFE, 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, 0xE0, 0x1F, 0x00, 0xF8, 0x07, - 0x00, 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0xE0, 0xFC, 0x1F, 0x83, 0xF0, 0x7E, 0x0F, 0xE3, 0xDF, - 0xF9, 0xFF, 0x00, 0xE0, 0x1C, 0x03, 0x81, 0xF0, 0x3E, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x38, - 0x01, 0xC1, 0xE0, 0x07, 0x07, 0xC0, 0x3C, 0x1F, 0x00, 0xF8, 0x7E, 0x06, 0xE1, 0xD8, 0x1B, 0x87, - 0x70, 0xCE, 0x1C, 0xC3, 0x38, 0x73, 0x1C, 0xE1, 0xCE, 0x63, 0x87, 0x19, 0x8E, 0x1C, 0x7E, 0x38, - 0x70, 0xF0, 0xE3, 0xC3, 0xC3, 0x8F, 0x0E, 0x0E, 0x38, 0x00, 0x3F, 0xE0, 0x00, 0xFC, 0x00, 0x00, - 0xE0, 0x00, 0x03, 0x80, 0x00, 0x1C, 0x00, 0x00, 0x70, 0x00, 0x01, 0x80, 0x70, 0x0E, 0x1E, 0x07, - 0x87, 0x81, 0xE1, 0xF0, 0xF8, 0x7C, 0x36, 0x1D, 0x9D, 0xC7, 0x66, 0x71, 0x9F, 0x9C, 0x63, 0xC7, - 0x38, 0xF1, 0xCE, 0x1C, 0x73, 0x80, 0x1F, 0xE0, 0x07, 0xC0, 0x00, 0x70, 0x00, 0x38, 0x00, 0x0E, - 0x00, 0x07, 0x80, 0x00, 0xC0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x0E, 0x30, 0x03, 0xB8, - 0x01, 0xFC, 0x00, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x07, 0xC0, 0x03, 0xE0, 0x03, - 0xF0, 0x01, 0xDC, 0x01, 0xCE, 0x00, 0xE7, 0x80, 0xF1, 0xC0, 0x70, 0xF0, 0x38, 0x38, 0x3C, 0x1C, - 0x1F, 0xFF, 0x0F, 0xFF, 0x8E, 0x01, 0xC7, 0x00, 0xF7, 0x80, 0x3B, 0x80, 0x1E, 0x31, 0xC7, 0x70, - 0xFE, 0x0F, 0x80, 0x00, 0x00, 0x1F, 0xE3, 0xFE, 0x63, 0xC0, 0x38, 0x03, 0x9F, 0xF7, 0xFF, 0xF3, - 0xF8, 0x3F, 0x07, 0xF1, 0xFF, 0xFC, 0xFF, 0x00, 0x0E, 0x70, 0x07, 0xB8, 0x03, 0x9C, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x0E, 0x00, 0x0F, 0x80, 0x07, 0xC0, 0x07, 0xE0, 0x03, 0xB8, 0x03, 0x9C, 0x01, - 0xCF, 0x01, 0xE3, 0x80, 0xE1, 0xE0, 0x70, 0x70, 0x78, 0x38, 0x3F, 0xFE, 0x1F, 0xFF, 0x1C, 0x03, - 0x8E, 0x01, 0xEF, 0x00, 0x77, 0x00, 0x3C, 0x3B, 0x8F, 0x78, 0xEE, 0x00, 0x00, 0x00, 0xFF, 0x1F, - 0xF3, 0x1E, 0x01, 0xC0, 0x1C, 0xFF, 0xBF, 0xFF, 0x9F, 0xC1, 0xF8, 0x3F, 0x8F, 0xFF, 0xE7, 0xF8, - 0x00, 0x3F, 0xFC, 0x00, 0xFF, 0xF8, 0x03, 0xF8, 0x00, 0x07, 0x70, 0x00, 0x1E, 0xE0, 0x00, 0x39, - 0xC0, 0x00, 0xE3, 0x80, 0x03, 0xC7, 0xFC, 0x07, 0x0F, 0xF8, 0x1C, 0x1C, 0x00, 0x78, 0x38, 0x00, - 0xFF, 0xF0, 0x03, 0xFF, 0xE0, 0x07, 0x01, 0xC0, 0x1E, 0x03, 0x80, 0x38, 0x07, 0xFF, 0xE0, 0x0F, - 0xFE, 0x7F, 0x1F, 0x87, 0xFB, 0xFC, 0x63, 0xFB, 0xE0, 0x1E, 0x0E, 0x00, 0xE0, 0xE3, 0xFF, 0xFE, - 0x7F, 0xFF, 0xEF, 0x9E, 0x00, 0xE0, 0xE0, 0x0E, 0x0F, 0x00, 0xF1, 0xF8, 0xCF, 0xFF, 0xFC, 0x3F, - 0x9F, 0xC0, 0x71, 0x87, 0xB8, 0x3F, 0x01, 0xF0, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0xFE, 0xE0, 0x0E, - 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0F, 0xFC, 0xFF, 0xCE, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, - 0xE0, 0x0F, 0xFF, 0xFF, 0xF0, 0x38, 0xC3, 0xDC, 0x1F, 0x80, 0xF8, 0x00, 0x00, 0x00, 0x1F, 0x83, - 0xFE, 0x79, 0xEF, 0x0F, 0xE0, 0x7F, 0xFF, 0xFF, 0xFE, 0x00, 0xE0, 0x0F, 0x00, 0x7C, 0x63, 0xFE, - 0x1F, 0xE0, 0x3F, 0xE0, 0x7F, 0xF8, 0x38, 0xFC, 0x00, 0x3C, 0x00, 0x1E, 0x00, 0x0E, 0x00, 0x0E, - 0x00, 0x0E, 0xFF, 0xFF, 0xFF, 0xFE, 0xE0, 0x0E, 0xF0, 0x0E, 0x70, 0x1E, 0x78, 0x1C, 0x7C, 0x7C, - 0x3F, 0xF8, 0x0F, 0xE0, 0x7F, 0x87, 0xFC, 0x63, 0xE0, 0x0F, 0x00, 0x70, 0x07, 0xFF, 0xFF, 0xFF, - 0xE0, 0x7F, 0x0F, 0x79, 0xE7, 0xFC, 0x3F, 0x80, 0x0E, 0xE0, 0x1E, 0xF0, 0x0E, 0xE0, 0x00, 0x00, - 0x00, 0x00, 0x3F, 0xE0, 0x7F, 0xF8, 0x38, 0xFC, 0x00, 0x3C, 0x00, 0x1E, 0x00, 0x0E, 0x00, 0x0E, - 0x00, 0x0E, 0xFF, 0xFF, 0xFF, 0xFE, 0xE0, 0x0E, 0xF0, 0x0E, 0x70, 0x1E, 0x78, 0x1C, 0x7C, 0x7C, - 0x3F, 0xF8, 0x0F, 0xE0, 0x39, 0xC3, 0xBC, 0x39, 0xC0, 0x00, 0x00, 0x07, 0xF8, 0x7F, 0xC6, 0x3E, - 0x00, 0xF0, 0x07, 0x00, 0x7F, 0xFF, 0xFF, 0xFE, 0x07, 0xF0, 0xF7, 0x9E, 0x7F, 0xC3, 0xF8, 0x01, - 0xCE, 0x00, 0x03, 0xDC, 0x00, 0x07, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x07, 0x07, - 0x8F, 0x0E, 0x1E, 0x0E, 0x1C, 0x78, 0x0E, 0x39, 0xE0, 0x1E, 0x77, 0x80, 0x1E, 0xFE, 0x00, 0x1F, - 0xF8, 0x00, 0x1F, 0xF0, 0x00, 0x7F, 0xE0, 0x01, 0xEE, 0xE0, 0x03, 0x9C, 0xE0, 0x0E, 0x39, 0xE0, - 0x38, 0x71, 0xE0, 0xF0, 0xE1, 0xC1, 0xC1, 0xC3, 0xC7, 0x83, 0x83, 0xDE, 0x07, 0x03, 0x80, 0x03, - 0xB8, 0x00, 0xF7, 0x80, 0x0E, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF1, 0xC3, 0x8E, 0x38, 0xE0, - 0xE7, 0x38, 0x0E, 0xEE, 0x00, 0xFF, 0x80, 0x0F, 0xF0, 0x03, 0xFE, 0x00, 0xEE, 0xE0, 0x39, 0xCE, - 0x0F, 0x39, 0xE1, 0xC7, 0x1E, 0x70, 0xE1, 0xDE, 0x1C, 0x3C, 0x19, 0xC0, 0xF7, 0x81, 0x9C, 0x00, - 0x00, 0x00, 0x00, 0xFF, 0x07, 0xFF, 0x0E, 0x7C, 0x00, 0x78, 0x01, 0xE0, 0x07, 0x00, 0x7C, 0x1F, - 0xE0, 0x7F, 0xC0, 0x1F, 0x80, 0x0E, 0x00, 0x38, 0x00, 0xE0, 0x03, 0x9E, 0x7E, 0x7F, 0xF0, 0xFF, - 0x80, 0x73, 0x9D, 0xE7, 0x38, 0x00, 0x00, 0x3F, 0xCF, 0xFB, 0x9F, 0x01, 0xC0, 0xF3, 0xF8, 0xFE, - 0x03, 0xC0, 0x70, 0x1F, 0x8F, 0xFF, 0xFF, 0xC0, 0x7F, 0xFB, 0xFF, 0xC0, 0x1C, 0x01, 0xC0, 0x1C, - 0x01, 0xC0, 0x1C, 0x01, 0xFC, 0x0F, 0xF0, 0x0F, 0xC0, 0x1E, 0x00, 0x70, 0x03, 0x80, 0x1D, 0xE7, - 0xFF, 0xFE, 0x7F, 0xC0, 0x7F, 0xF7, 0xFE, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0F, 0x00, 0xF8, - 0x0F, 0xE0, 0x3F, 0x00, 0xF0, 0x07, 0x00, 0x70, 0x07, 0x00, 0xF7, 0x3E, 0x7F, 0xE7, 0xF8, 0x1F, - 0xE0, 0x3F, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x03, 0xB8, 0x0F, 0x70, 0x3E, 0xE0, 0x7D, - 0xC1, 0xFB, 0x87, 0xF7, 0x1E, 0xEE, 0x39, 0xDC, 0xE3, 0xBB, 0xC7, 0x7F, 0x0E, 0xFC, 0x1D, 0xF8, - 0x3B, 0xE0, 0x77, 0x80, 0xEF, 0x01, 0xDC, 0x03, 0x80, 0x3F, 0x87, 0xF0, 0x00, 0x00, 0x00, 0x01, - 0xC1, 0xF8, 0x7F, 0x1F, 0xE3, 0xFC, 0xFF, 0xBB, 0xF7, 0x7F, 0xCF, 0xF1, 0xFE, 0x3F, 0x87, 0xE0, - 0xFC, 0x1C, 0x1C, 0xE0, 0x3D, 0xC0, 0x73, 0x80, 0x00, 0x00, 0x00, 0x1C, 0x03, 0xB8, 0x0F, 0x70, - 0x3E, 0xE0, 0x7D, 0xC1, 0xFB, 0x87, 0xF7, 0x1E, 0xEE, 0x39, 0xDC, 0xE3, 0xBB, 0xC7, 0x7F, 0x0E, - 0xFC, 0x1D, 0xF8, 0x3B, 0xE0, 0x77, 0x80, 0xEF, 0x01, 0xDC, 0x03, 0x80, 0x3B, 0x8F, 0x78, 0xEE, - 0x00, 0x00, 0x01, 0xC1, 0xF8, 0x7F, 0x1F, 0xE3, 0xFC, 0xFF, 0xBB, 0xF7, 0x7F, 0xCF, 0xF1, 0xFE, - 0x3F, 0x87, 0xE0, 0xFC, 0x1C, 0x07, 0x38, 0x03, 0xBC, 0x01, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x3F, 0xC0, 0x7F, 0xF0, 0x7E, 0x7C, 0x78, 0x0F, 0x38, 0x03, 0xDC, 0x01, 0xFE, 0x00, 0x7E, 0x00, - 0x3F, 0x00, 0x1F, 0x80, 0x0F, 0xE0, 0x07, 0x70, 0x07, 0xB8, 0x03, 0xDE, 0x03, 0xC7, 0xE7, 0xC1, - 0xFF, 0xC0, 0x3F, 0xC0, 0x19, 0xC1, 0xEF, 0x06, 0x70, 0x00, 0x00, 0x00, 0x0F, 0xE0, 0xFF, 0x8F, - 0x3E, 0x70, 0x77, 0x03, 0xF8, 0x0F, 0xC0, 0x7E, 0x03, 0xF0, 0x3D, 0xC1, 0xCF, 0x3E, 0x3F, 0xE0, - 0xFE, 0x00, 0x07, 0xF8, 0x0F, 0xFE, 0x0F, 0x8F, 0x8F, 0x01, 0xE7, 0x00, 0x7B, 0x80, 0x1F, 0x80, - 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x01, 0xFC, 0x00, 0xEE, 0x00, 0xF7, 0x80, 0x7B, 0xC0, 0x78, - 0xFC, 0xF8, 0x3F, 0xF8, 0x07, 0xF8, 0x00, 0x1F, 0xC1, 0xFF, 0x1F, 0x7C, 0xE0, 0xEE, 0x07, 0xFF, - 0xFF, 0xFF, 0xFC, 0x07, 0xE0, 0x7B, 0x83, 0x9E, 0x7C, 0x7F, 0xC1, 0xFC, 0x00, 0x07, 0x38, 0x03, - 0xBC, 0x01, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xC0, 0x7F, 0xF0, 0x7C, 0x7C, 0x78, 0x0F, - 0x38, 0x03, 0xDC, 0x00, 0xFC, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x0F, 0xE0, 0x07, 0x70, - 0x07, 0xBC, 0x03, 0xDE, 0x03, 0xC7, 0xE7, 0xC1, 0xFF, 0xC0, 0x3F, 0xC0, 0x39, 0xC1, 0xEF, 0x0E, - 0x70, 0x00, 0x00, 0x00, 0x0F, 0xE0, 0xFF, 0x8F, 0xBE, 0x70, 0x77, 0x03, 0xFF, 0xFF, 0xFF, 0xFE, - 0x03, 0xF0, 0x3D, 0xC1, 0xCF, 0x3E, 0x3F, 0xE0, 0xFE, 0x00, 0x39, 0xC0, 0x7B, 0x80, 0xE7, 0x00, - 0x00, 0x00, 0x00, 0x0F, 0xF8, 0x3F, 0xF8, 0x38, 0xF8, 0x00, 0x78, 0x00, 0x78, 0x00, 0x70, 0x00, - 0xE1, 0xFF, 0xC3, 0xFF, 0x80, 0x07, 0x00, 0x0E, 0x00, 0x1C, 0x00, 0x78, 0x01, 0xE3, 0x8F, 0x8F, - 0xFE, 0x0F, 0xF8, 0x00, 0x73, 0x87, 0xB8, 0x73, 0x80, 0x00, 0x00, 0x07, 0xF0, 0x7F, 0xC6, 0x3C, - 0x00, 0xE0, 0x0E, 0x1F, 0xE1, 0xFF, 0x00, 0xE0, 0x0E, 0x01, 0xE6, 0x3E, 0x7F, 0xC7, 0xF0, 0x0F, - 0xF0, 0x1F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x03, 0xDC, 0x07, 0x3C, 0x0E, 0x38, 0x3C, - 0x78, 0x70, 0x70, 0xE0, 0xF3, 0x80, 0xE7, 0x01, 0xFE, 0x01, 0xF8, 0x01, 0xF0, 0x03, 0xC0, 0x03, - 0x80, 0x0E, 0x02, 0x7C, 0x07, 0xF0, 0x0F, 0xC0, 0x00, 0x1F, 0xC1, 0xFC, 0x00, 0x00, 0x00, 0x00, - 0x0E, 0x07, 0xF0, 0x77, 0x07, 0x70, 0xE7, 0x8E, 0x38, 0xE3, 0x8C, 0x1D, 0xC1, 0xDC, 0x1F, 0x80, - 0xF8, 0x0F, 0x80, 0x70, 0x07, 0x00, 0x70, 0x9E, 0x0F, 0xC0, 0xF8, 0x00, 0x0E, 0x70, 0x3D, 0xE0, - 0x39, 0xC0, 0x00, 0x00, 0x00, 0x1E, 0x03, 0xDC, 0x07, 0x3C, 0x0E, 0x38, 0x3C, 0x78, 0x70, 0x70, - 0xE0, 0xF3, 0x80, 0xE7, 0x01, 0xFE, 0x01, 0xF8, 0x01, 0xF0, 0x03, 0xC0, 0x03, 0x80, 0x0E, 0x02, - 0x7C, 0x07, 0xF0, 0x0F, 0xC0, 0x00, 0x1D, 0xC3, 0xDE, 0x1D, 0xC0, 0x00, 0x00, 0x0E, 0x07, 0xF0, - 0x77, 0x07, 0x70, 0xE7, 0x8E, 0x38, 0xE3, 0x8C, 0x1D, 0xC1, 0xDC, 0x1F, 0x80, 0xF8, 0x0F, 0x80, - 0x70, 0x07, 0x00, 0x70, 0x9E, 0x0F, 0xC0, 0xF8, 0x00, 0x01, 0x98, 0x07, 0x70, 0x1D, 0xC0, 0x73, - 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x78, 0x0F, 0x70, 0x1C, 0xF0, 0x38, 0xE0, 0xF1, 0xE1, 0xC1, - 0xC3, 0x83, 0xCE, 0x03, 0x9C, 0x07, 0xF8, 0x07, 0xE0, 0x07, 0xC0, 0x0F, 0x00, 0x0E, 0x00, 0x38, - 0x09, 0xF0, 0x1F, 0xC0, 0x3F, 0x00, 0x07, 0x30, 0x77, 0x0E, 0xE1, 0xDC, 0x18, 0xC0, 0x00, 0x00, - 0x0E, 0x07, 0xF0, 0x77, 0x07, 0x70, 0xE7, 0x8E, 0x38, 0xE3, 0x8C, 0x1D, 0xC1, 0xDC, 0x1F, 0x80, - 0xF8, 0x0F, 0x80, 0x70, 0x07, 0x00, 0x70, 0x9E, 0x0F, 0xC0, 0xF8, 0x00, 0x1C, 0xE0, 0xEF, 0x07, - 0x38, 0x00, 0x00, 0x00, 0x70, 0x1F, 0x80, 0xFC, 0x07, 0xE0, 0x3F, 0x01, 0xF8, 0x0F, 0xC0, 0x7F, - 0x03, 0xBC, 0x3D, 0xFF, 0xE3, 0xFF, 0x00, 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x1C, - 0x73, 0x8F, 0x71, 0xCE, 0x00, 0x00, 0x01, 0xC1, 0xF8, 0x3F, 0x07, 0xE0, 0xFC, 0x1F, 0xC7, 0xBF, - 0xF3, 0xFE, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0xFF, 0xFF, 0xFF, 0x80, 0x70, 0x0E, 0x01, - 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0xC0, 0xF8, - 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x00, 0xFF, 0x7F, 0xB8, 0x1C, 0x0E, 0x07, 0x03, 0x81, - 0xC0, 0xE0, 0x70, 0x38, 0x1E, 0x0F, 0x03, 0x81, 0xC0, 0xE0, 0x70, 0x00, 0x07, 0x38, 0x01, 0xDE, - 0x00, 0x73, 0x80, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0xFE, 0x00, 0x3F, 0x80, 0x0F, 0xE0, 0x03, - 0xF8, 0x00, 0xFE, 0x00, 0x3F, 0xFE, 0x0F, 0xFF, 0xE3, 0xF8, 0xFC, 0xFE, 0x07, 0x3F, 0x81, 0xCF, - 0xE0, 0x7B, 0xF8, 0x1C, 0xFE, 0x07, 0x3F, 0x8F, 0xCF, 0xFF, 0xE3, 0xFF, 0xE0, 0xF0, 0x0E, 0xE0, - 0x3D, 0xE0, 0x3B, 0x80, 0x00, 0x00, 0x00, 0x1C, 0x01, 0xF8, 0x03, 0xF0, 0x07, 0xE0, 0x0F, 0xC0, - 0x1F, 0xFE, 0x3F, 0xFE, 0x7E, 0x3C, 0xFC, 0x3D, 0xF8, 0x7B, 0xF1, 0xE7, 0xFF, 0xCF, 0xFF, 0x1C, - 0x78, 0x0E, 0x78, 0x1C, 0x78, 0x38, 0x70, 0x70, 0x71, 0xC1, 0xF3, 0x87, 0xFF, 0x1C, 0xFC, 0x38, - 0xE0, 0xE1, 0xE1, 0xC1, 0xC3, 0x81, 0xC7, 0x03, 0xCE, 0x03, 0x9C, 0x03, 0x80, 0x7F, 0x87, 0xFE, - 0x00, 0x78, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x38, 0x01, - 0xC0, 0x0E, 0x7F, 0xFF, 0xFF, 0xE0, 0x3E, 0x1F, 0x83, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, - 0x03, 0x81, 0xC1, 0xE3, 0xFF, 0xDF, 0xCE, 0x00, 0x7F, 0xFB, 0xFF, 0xC0, 0x38, 0x01, 0xC0, 0x0E, - 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x03, - 0x80, 0xFF, 0xE7, 0xFF, 0x80, 0x1E, 0x00, 0x70, 0x03, 0x80, 0x1D, 0x80, 0xFC, 0x07, 0xE0, 0x3F, - 0x01, 0xF8, 0x0F, 0xC0, 0x7E, 0x03, 0xF0, 0x1F, 0x80, 0xE0, 0x7D, 0xF1, 0xC7, 0x1C, 0x71, 0xC7, - 0x1C, 0x71, 0xC7, 0x1C, 0x71, 0xC0, 0xFF, 0xFC, 0xF1, 0x87, 0x0E, 0x1C, 0x38, 0x70, 0xE1, 0xC3, - 0x87, 0x0F, 0x0E, 0x00, 0xFF, 0xF3, 0xFF, 0xE3, 0x03, 0xDC, 0x07, 0x70, 0x1D, 0xC0, 0x77, 0x01, - 0xDC, 0x07, 0x70, 0x1D, 0xC0, 0x77, 0x01, 0xDC, 0x07, 0x70, 0x1D, 0xC0, 0x77, 0x01, 0xC0, 0xE3, - 0xF3, 0x8F, 0xEE, 0x07, 0xB8, 0x0F, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, - 0x77, 0x03, 0x9C, 0x0E, 0x7C, 0xF8, 0xFF, 0xC1, 0xFC, 0x00, 0x7D, 0xF1, 0xC7, 0x1C, 0x71, 0xC7, - 0x1C, 0xFF, 0x9F, 0xF8, 0x07, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, - 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0xFF, 0x1F, 0xF0, - 0x0F, 0x00, 0xE0, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0xE0, 0x3D, 0xFF, - 0x3F, 0xC0, 0x00, 0x07, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x7F, 0xFB, 0xFF, 0xC0, 0x0E, 0x00, - 0x70, 0x07, 0x00, 0x38, 0x01, 0xC0, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x70, 0x03, 0x80, 0x1C, 0x01, - 0xC0, 0x0E, 0x00, 0xFF, 0xF9, 0xFF, 0xF8, 0xE0, 0xF3, 0x80, 0xF7, 0x00, 0xEE, 0x01, 0xDC, 0x03, - 0xB8, 0x07, 0x70, 0x0E, 0xE0, 0x1D, 0xC0, 0x3B, 0x80, 0x77, 0x00, 0xEF, 0xFF, 0xDF, 0xFF, 0x80, - 0xE3, 0xF1, 0xCF, 0xF1, 0xF8, 0xF3, 0xE0, 0xE7, 0x81, 0xE7, 0x01, 0xCE, 0x03, 0x9C, 0x07, 0x70, - 0x0E, 0xE0, 0x1D, 0xC0, 0x73, 0x80, 0xE7, 0x07, 0xDE, 0xFF, 0x39, 0xFC, 0x00, 0xFF, 0xCE, 0x73, - 0x9C, 0xE7, 0x39, 0xCE, 0x73, 0x9C, 0xE7, 0x39, 0xCE, 0x70, 0x7C, 0xFC, 0x78, 0x70, 0xE1, 0xC3, - 0x87, 0x0E, 0x1C, 0x38, 0x70, 0xFF, 0xFF, 0x80, 0xFF, 0xF3, 0xFF, 0xE3, 0x87, 0x9C, 0x07, 0x70, - 0x1D, 0xC0, 0x77, 0x01, 0xDC, 0x07, 0x70, 0x1D, 0xC0, 0x77, 0x01, 0xDE, 0x0E, 0x3C, 0x78, 0xFF, - 0xC0, 0xFE, 0x00, 0x00, 0x01, 0xC0, 0x73, 0x81, 0xCE, 0x07, 0x38, 0x1C, 0xE0, 0x71, 0xC1, 0xC7, - 0x0F, 0x1C, 0x38, 0x70, 0xE1, 0xE3, 0x83, 0x9C, 0x0E, 0xF0, 0x3F, 0x87, 0xFC, 0x1F, 0xC0, 0x70, - 0x00, 0x3F, 0xC3, 0xFF, 0x1E, 0x7D, 0xC0, 0xEE, 0x07, 0xF0, 0x1F, 0x80, 0xFE, 0x07, 0x7C, 0x39, - 0xE1, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x38, 0x01, 0xC0, 0x0E, - 0x00, 0x70, 0x1F, 0xC3, 0xFF, 0x1E, 0x3D, 0xC0, 0xEE, 0x03, 0xF0, 0x1F, 0x80, 0xEF, 0x07, 0x7C, - 0x39, 0xE1, 0xC0, 0x1E, 0x00, 0xE0, 0x1F, 0x7F, 0xF3, 0xFE, 0x00, 0x70, 0x73, 0x83, 0x9E, 0x1C, - 0x70, 0xE3, 0x87, 0x0E, 0x70, 0x73, 0x83, 0xF8, 0x0F, 0xC0, 0x7C, 0x01, 0xC0, 0x0E, 0x00, 0x70, - 0x03, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x1E, 0x00, 0x70, 0x03, 0x80, 0xF0, 0x77, 0x07, 0x78, - 0x73, 0x87, 0x3C, 0xE1, 0xCE, 0x0F, 0xE0, 0xFC, 0x07, 0x80, 0x38, 0x03, 0xC0, 0x1C, 0x00, 0xEF, - 0xFE, 0xFF, 0xE0, 0xFF, 0xFF, 0xFF, 0xF0, 0x01, 0xC0, 0x0E, 0x00, 0x39, 0xC0, 0xE7, 0x07, 0x1C, - 0x1C, 0x70, 0x71, 0xC1, 0xC7, 0x0E, 0x1C, 0x38, 0x70, 0xE1, 0xC7, 0x07, 0x1C, 0x1C, 0x00, 0x70, - 0x01, 0xC0, 0x07, 0x00, 0x1C, 0x00, 0xFF, 0x9F, 0xF8, 0x0F, 0x00, 0xE0, 0x1E, 0x01, 0xC0, 0x38, - 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x38, 0xE1, 0xC7, 0xE1, 0xC7, 0xE1, - 0xC7, 0xE3, 0xC7, 0xE3, 0x87, 0xE3, 0x87, 0xEF, 0x87, 0xFF, 0x07, 0xFE, 0x07, 0x70, 0x07, 0x70, - 0x0E, 0x78, 0x1E, 0x3C, 0x3C, 0x1F, 0xF8, 0x0F, 0xF0, 0x7F, 0xFC, 0x7F, 0xFE, 0x1C, 0x1E, 0x1C, - 0x0F, 0x1C, 0x07, 0x1C, 0x07, 0x1C, 0x07, 0x1C, 0x07, 0x1C, 0x07, 0x1C, 0x07, 0x1C, 0x07, 0x1C, - 0x07, 0x1C, 0x07, 0x7C, 0x07, 0x78, 0x07, 0x01, 0xC0, 0x01, 0xE0, 0x00, 0xF8, 0x00, 0x7C, 0x00, + 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xFF, 0xFF, + 0xFF, 0xFF, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0xE0, 0x3F, 0x01, 0xF8, + 0x0F, 0xC0, 0x7E, 0x03, 0xF0, 0x1F, 0x80, 0xFE, 0x07, 0x78, 0x7B, 0xFF, 0xC7, 0xFE, 0x00, 0x70, + 0x03, 0x80, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x38, 0xE0, 0x70, 0x3F, 0x03, 0x81, 0xF8, 0x1C, 0x0F, + 0xC0, 0xE0, 0x7E, 0x07, 0x03, 0xF0, 0x38, 0x1F, 0x81, 0xC0, 0xFC, 0x0E, 0x07, 0xE0, 0x70, 0x3F, + 0x03, 0x81, 0xF8, 0x1C, 0x0F, 0xC0, 0xE0, 0x7E, 0x07, 0x03, 0xF0, 0x38, 0x1F, 0x81, 0xC0, 0xFF, + 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0xE0, 0x70, 0x39, 0xC0, 0xE0, 0x73, 0x81, 0xC0, 0xE7, 0x03, 0x81, + 0xCE, 0x07, 0x03, 0x9C, 0x0E, 0x07, 0x38, 0x1C, 0x0E, 0x70, 0x38, 0x1C, 0xE0, 0x70, 0x39, 0xC0, + 0xE0, 0x73, 0x81, 0xC0, 0xE7, 0x03, 0x81, 0xCE, 0x07, 0x03, 0x9C, 0x0E, 0x07, 0x38, 0x1C, 0x0E, + 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x38, 0x00, 0x00, 0x70, 0x00, + 0x00, 0xE0, 0x00, 0x01, 0xC0, 0xFF, 0x00, 0x3F, 0xC0, 0x00, 0x70, 0x00, 0x1C, 0x00, 0x07, 0x00, + 0x01, 0xC0, 0x00, 0x7F, 0xC0, 0x1F, 0xFC, 0x07, 0x1F, 0x81, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0F, + 0x07, 0x03, 0x81, 0xC0, 0xE0, 0x71, 0xF8, 0x1F, 0xFC, 0x07, 0xFC, 0x00, 0xE0, 0x03, 0xF8, 0x00, + 0xFE, 0x00, 0x3F, 0x80, 0x0F, 0xE0, 0x03, 0xF8, 0x00, 0xFF, 0xF8, 0x3F, 0xFF, 0x8F, 0xE3, 0xF3, + 0xF8, 0x1C, 0xFE, 0x07, 0x3F, 0x81, 0xEF, 0xE0, 0x73, 0xF8, 0x1C, 0xFE, 0x3F, 0x3F, 0xFF, 0x8F, + 0xFF, 0x83, 0xC0, 0xE0, 0x07, 0x00, 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0xFF, 0x1F, 0xFC, + 0xE3, 0xF7, 0x03, 0xB8, 0x1F, 0xC0, 0x7E, 0x07, 0xF0, 0x3B, 0x87, 0xDF, 0xFC, 0xFF, 0xC0, 0x7F, + 0xC1, 0xFF, 0xC1, 0xC7, 0xC0, 0x03, 0xC0, 0x03, 0xC0, 0x03, 0x80, 0x07, 0x0F, 0xFE, 0x1F, 0xFC, + 0x00, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x03, 0xC0, 0x0F, 0x1C, 0x7C, 0x7F, 0xF0, 0x7F, 0xC0, 0xE0, + 0x1F, 0xC1, 0xC0, 0xFF, 0xE3, 0x83, 0xE7, 0xE7, 0x0F, 0x01, 0xCE, 0x1C, 0x03, 0xDC, 0x78, 0x03, + 0xB8, 0xF0, 0x07, 0x7F, 0xC0, 0x0F, 0xFF, 0x80, 0x1F, 0xC7, 0x00, 0x3F, 0x8F, 0x00, 0x77, 0x0E, + 0x00, 0xEE, 0x1C, 0x03, 0xDC, 0x3C, 0x07, 0x38, 0x3E, 0x7E, 0x70, 0x3F, 0xF8, 0xE0, 0x1F, 0xC0, + 0x0F, 0xFC, 0x7F, 0xF3, 0xE1, 0xDE, 0x07, 0x70, 0x1D, 0xC0, 0x77, 0x81, 0xCF, 0x87, 0x3F, 0xFC, + 0x3F, 0xF0, 0xE1, 0xC7, 0x87, 0x1C, 0x1C, 0xF0, 0x73, 0x81, 0xDE, 0x07, 0x70, 0x1C, 0x7F, 0x8F, + 0xF9, 0x8F, 0x00, 0xE0, 0x0E, 0x7F, 0xDF, 0xFF, 0xCF, 0xE0, 0xFC, 0x1F, 0xC7, 0xFF, 0xF3, 0xFC, + 0x03, 0xF0, 0x7F, 0x87, 0xF8, 0x78, 0x07, 0x80, 0x38, 0x01, 0xFF, 0x1F, 0xFC, 0xFD, 0xF7, 0x83, + 0xF8, 0x0F, 0xC0, 0x7E, 0x03, 0xF8, 0x1D, 0xC1, 0xEE, 0x0E, 0x7C, 0xF1, 0xFF, 0x07, 0xF0, 0xFF, + 0x9F, 0xFB, 0x8F, 0x70, 0xEE, 0x3D, 0xFF, 0x3F, 0xF7, 0x1F, 0xE0, 0xFC, 0x1F, 0x8F, 0xFF, 0xEF, + 0xF8, 0xFF, 0x7F, 0xB8, 0x1C, 0x0E, 0x07, 0x03, 0x81, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x00, + 0x0F, 0xF8, 0x1F, 0xF0, 0x38, 0xE0, 0x71, 0xC0, 0xE3, 0x81, 0x87, 0x07, 0x0E, 0x0E, 0x1C, 0x1C, + 0x38, 0x70, 0x70, 0xE0, 0xE7, 0xFF, 0xFF, 0xFF, 0xFC, 0x01, 0xF8, 0x03, 0xF0, 0x07, 0xE0, 0x0E, + 0x1F, 0x83, 0xFE, 0x79, 0xEF, 0x0F, 0xE0, 0x7F, 0xFF, 0xFF, 0xFE, 0x00, 0xE0, 0x0F, 0x00, 0x7C, + 0x63, 0xFE, 0x1F, 0xE0, 0x78, 0xE1, 0xC7, 0x1C, 0x70, 0x73, 0x9C, 0x07, 0x77, 0x00, 0x7F, 0xC0, + 0x07, 0xF8, 0x01, 0xFF, 0x00, 0x77, 0x70, 0x1C, 0xE7, 0x07, 0x9C, 0xF0, 0xE3, 0x8F, 0x38, 0x70, + 0xEF, 0x0E, 0x1E, 0xFF, 0x3F, 0xEE, 0x7C, 0x07, 0x03, 0xCF, 0xE3, 0xF8, 0x0F, 0x01, 0xC0, 0x7E, + 0x3F, 0xFF, 0xFF, 0x00, 0xE0, 0xFC, 0x3F, 0x8F, 0xF1, 0xFE, 0x7F, 0xDD, 0xFB, 0xBF, 0xE7, 0xF8, + 0xFF, 0x1F, 0xC3, 0xF0, 0x7E, 0x0E, 0x71, 0x87, 0x70, 0xFE, 0x0F, 0x80, 0x00, 0x00, 0x38, 0x3F, + 0x0F, 0xE3, 0xFC, 0x7F, 0x9F, 0xF7, 0x7E, 0xEF, 0xF9, 0xFE, 0x3F, 0xC7, 0xF0, 0xFC, 0x1F, 0x83, + 0x80, 0xE1, 0xEE, 0x3C, 0xE7, 0x8E, 0xF0, 0xFE, 0x0F, 0xC0, 0xFC, 0x0F, 0xE0, 0xEF, 0x0E, 0x78, + 0xE3, 0xCE, 0x1C, 0xE0, 0xE0, 0x0F, 0xF8, 0x7F, 0xC3, 0x8E, 0x1C, 0x70, 0xE3, 0x87, 0x1C, 0x38, + 0xE3, 0x87, 0x1C, 0x39, 0xE1, 0xDE, 0x0F, 0xF0, 0x7E, 0x03, 0x80, 0x70, 0x0E, 0x78, 0x1E, 0x78, + 0x1E, 0x7C, 0x3E, 0x7C, 0x36, 0x76, 0x77, 0x76, 0x67, 0x67, 0xE7, 0x63, 0xC7, 0xE3, 0xC7, 0xE1, + 0xC7, 0xE0, 0x07, 0xE0, 0x07, 0xE0, 0xFC, 0x1F, 0x83, 0xF0, 0x7E, 0x0F, 0xFF, 0xFF, 0xFF, 0x07, + 0xE0, 0xFC, 0x1F, 0x83, 0xF0, 0x7E, 0x0E, 0x1F, 0xC1, 0xFF, 0x1E, 0x7C, 0xE0, 0xEE, 0x07, 0xF0, + 0x1F, 0x80, 0xFC, 0x07, 0xE0, 0x7B, 0x83, 0x9E, 0x7C, 0x7F, 0xC1, 0xFC, 0x00, 0xFF, 0xFF, 0xFF, + 0x83, 0xF0, 0x7E, 0x0F, 0xC1, 0xF8, 0x3F, 0x07, 0xE0, 0xFC, 0x1F, 0x83, 0xF0, 0x7E, 0x0E, 0xFF, + 0x8F, 0xFC, 0xE3, 0xEE, 0x0E, 0xE0, 0xFE, 0x07, 0xE0, 0x7E, 0x07, 0xE0, 0xFE, 0x0E, 0xF3, 0xEF, + 0xFC, 0xFF, 0x8E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0x1F, 0xC7, 0xF9, 0xF3, 0x38, 0x0E, + 0x01, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1E, 0x01, 0xF3, 0x1F, 0xE1, 0xFC, 0xFF, 0xFF, 0xFF, 0x0E, + 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, + 0xE0, 0x7F, 0x07, 0x70, 0x77, 0x0E, 0x78, 0xE3, 0x8E, 0x38, 0xC1, 0xDC, 0x1D, 0xC1, 0xF8, 0x0F, + 0x80, 0xF8, 0x07, 0x00, 0x70, 0x07, 0x09, 0xE0, 0xFC, 0x0F, 0x80, 0x01, 0xC0, 0x00, 0xE0, 0x00, + 0x70, 0x00, 0x38, 0x00, 0x1C, 0x00, 0x0E, 0x00, 0x3F, 0xE0, 0x7F, 0xFC, 0x7D, 0xDF, 0x38, 0xE3, + 0xF8, 0x70, 0xFC, 0x38, 0x7E, 0x1C, 0x3F, 0x0E, 0x1F, 0x87, 0x0E, 0xE3, 0x8F, 0x7D, 0xDF, 0x1F, + 0xFF, 0x03, 0xFE, 0x00, 0x38, 0x00, 0x1C, 0x00, 0x0E, 0x00, 0x07, 0x00, 0x03, 0x80, 0x70, 0x73, + 0xC7, 0x0E, 0x78, 0x3B, 0x81, 0xF8, 0x07, 0x80, 0x3C, 0x01, 0xF0, 0x1F, 0xC1, 0xEF, 0x0E, 0x38, + 0xE1, 0xEF, 0x07, 0x00, 0xE0, 0xE7, 0x07, 0x38, 0x39, 0xC1, 0xCE, 0x0E, 0x70, 0x73, 0x83, 0x9C, + 0x1C, 0xE0, 0xE7, 0x07, 0x38, 0x39, 0xFF, 0xFF, 0xFF, 0x80, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x38, + 0xE0, 0xFC, 0x1F, 0x83, 0xF0, 0x7E, 0x0F, 0xE3, 0xDF, 0xF9, 0xFF, 0x00, 0xE0, 0x1C, 0x03, 0x80, + 0x70, 0x0E, 0xE1, 0xC3, 0xF0, 0xE1, 0xF8, 0x70, 0xFC, 0x38, 0x7E, 0x1C, 0x3F, 0x0E, 0x1F, 0x87, + 0x0F, 0xC3, 0x87, 0xE1, 0xC3, 0xF0, 0xE1, 0xF8, 0x70, 0xFF, 0xFF, 0xFF, 0xFF, 0xF8, 0xE1, 0xC3, + 0x9C, 0x38, 0x73, 0x87, 0x0E, 0x70, 0xE1, 0xCE, 0x1C, 0x39, 0xC3, 0x87, 0x38, 0x70, 0xE7, 0x0E, + 0x1C, 0xE1, 0xC3, 0x9C, 0x38, 0x73, 0x87, 0x0E, 0x7F, 0xFF, 0xFF, 0xFF, 0xFE, 0x00, 0x01, 0xC0, + 0x00, 0x38, 0x00, 0x07, 0x00, 0x00, 0xE0, 0xFC, 0x01, 0xF8, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xFF, + 0x03, 0xFF, 0x87, 0x8F, 0x0E, 0x0E, 0x1C, 0x1E, 0x38, 0x38, 0x78, 0xF0, 0xFF, 0xE0, 0xFF, 0x00, + 0xE0, 0x0F, 0xC0, 0x1F, 0x80, 0x3F, 0x00, 0x7E, 0x00, 0xFF, 0xF1, 0xFF, 0xF3, 0xF1, 0xE7, 0xE1, + 0xEF, 0xC3, 0xDF, 0x8F, 0x3F, 0xFE, 0x7F, 0xF8, 0xE0, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0F, 0xF9, + 0xFF, 0xB8, 0xF7, 0x0F, 0xE0, 0xFC, 0x3F, 0x8F, 0x7F, 0xEF, 0xF8, 0x7F, 0x07, 0xFC, 0x63, 0xC0, + 0x0E, 0x00, 0xE1, 0xFE, 0x1F, 0xF0, 0x0E, 0x00, 0xE0, 0x1E, 0x63, 0xE7, 0xFC, 0x7F, 0x00, 0xE0, + 0xFC, 0x71, 0xFF, 0x38, 0xF3, 0xDC, 0xF0, 0xFE, 0x70, 0x3F, 0xF8, 0x1F, 0xFC, 0x0F, 0xCE, 0x07, + 0xE7, 0x03, 0xF3, 0xC3, 0xF8, 0xF3, 0xDC, 0x3F, 0xCE, 0x0F, 0xC0, 0x1F, 0xF3, 0xFF, 0x3C, 0x77, + 0x07, 0x70, 0x77, 0xC7, 0x3F, 0xF1, 0xFF, 0x1C, 0x73, 0x87, 0x38, 0x77, 0x07, 0x70, 0x70, 0x1C, + 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0x00, 0x00, 0x00, 0x01, 0xF8, 0x3F, 0xE7, 0x9E, 0xF0, 0xFE, + 0x07, 0xFF, 0xFF, 0xFF, 0xE0, 0x0E, 0x00, 0xF0, 0x07, 0xC6, 0x3F, 0xE1, 0xFE, 0x39, 0xC3, 0xDC, + 0x39, 0xC0, 0x00, 0x00, 0x01, 0xF8, 0x3F, 0xE7, 0x9E, 0xF0, 0xFE, 0x07, 0xFF, 0xFF, 0xFF, 0xE0, + 0x0E, 0x00, 0xF0, 0x07, 0xC6, 0x3F, 0xE1, 0xFE, 0x38, 0x01, 0xC0, 0x3F, 0xE1, 0xFF, 0x03, 0x80, + 0x1C, 0x00, 0xFF, 0x87, 0xFE, 0x3C, 0xF1, 0xC3, 0xCE, 0x0E, 0x70, 0x73, 0x83, 0x9C, 0x1C, 0xE0, + 0xE7, 0x07, 0x38, 0x39, 0xC1, 0xCE, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x3C, 0x07, 0xC0, 0x3E, 0x07, + 0x03, 0x83, 0x83, 0x81, 0x80, 0x00, 0x01, 0xFE, 0xFF, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x81, + 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x00, 0x1F, 0xC7, 0xF9, 0xF3, 0x38, 0x0E, 0x01, 0xFE, 0x3F, 0xC7, + 0x00, 0xE0, 0x1E, 0x01, 0xF3, 0x9F, 0xF1, 0xFE, 0x3F, 0xBF, 0xEF, 0x33, 0x80, 0xF0, 0x3F, 0x03, + 0xF0, 0x3E, 0x03, 0x80, 0xFE, 0x7B, 0xFE, 0xFF, 0x00, 0xFF, 0x00, 0x07, 0x77, 0x77, 0x77, 0x77, + 0x77, 0x77, 0xE7, 0x7B, 0xB9, 0xC0, 0x00, 0x00, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x81, + 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x00, 0x1E, 0x3C, 0x00, 0x00, 0x01, 0xC3, 0x87, 0x0E, 0x1C, + 0x38, 0x70, 0xE1, 0xC3, 0x87, 0x0E, 0x1C, 0x38, 0xF3, 0xDF, 0xBE, 0x00, 0x0F, 0xF8, 0x00, 0x7F, + 0xC0, 0x03, 0x8E, 0x00, 0x1C, 0x70, 0x00, 0xE3, 0x80, 0x07, 0x1F, 0xF0, 0x38, 0xFF, 0xC3, 0x87, + 0x9F, 0x1C, 0x38, 0x39, 0xE1, 0xC1, 0xDE, 0x0E, 0x1F, 0xF0, 0x7F, 0xEE, 0x03, 0xFE, 0x00, 0xE0, + 0xE0, 0x1C, 0x1C, 0x03, 0x83, 0x80, 0x70, 0x70, 0x0E, 0x0E, 0x01, 0xC1, 0xFF, 0x3F, 0xFF, 0xF7, + 0xFF, 0x1F, 0xE0, 0xE0, 0xFC, 0x1C, 0x1F, 0x83, 0x8F, 0xF0, 0x7F, 0xEE, 0x0F, 0xF8, 0x38, 0x01, + 0xC0, 0x3F, 0xE1, 0xFF, 0x03, 0x80, 0x1C, 0x00, 0xFF, 0x87, 0xFE, 0x3C, 0xF1, 0xC3, 0xCE, 0x0E, + 0x70, 0x73, 0x83, 0x9C, 0x1C, 0xE0, 0xE7, 0x07, 0x38, 0x39, 0xC1, 0xCE, 0x0E, 0x03, 0x00, 0x70, + 0x0E, 0x01, 0xC0, 0x1C, 0x00, 0x00, 0x00, 0x0E, 0x1E, 0xE3, 0xCE, 0x78, 0xEF, 0x0F, 0xE0, 0xFC, + 0x0F, 0xC0, 0xFE, 0x0E, 0xF0, 0xE7, 0x8E, 0x3C, 0xE1, 0xCE, 0x0E, 0x18, 0x07, 0x80, 0x70, 0x07, + 0x00, 0x60, 0x00, 0x00, 0x07, 0x07, 0xE1, 0xFC, 0x7F, 0x8F, 0xF3, 0xFE, 0xEF, 0xDD, 0xFF, 0x3F, + 0xC7, 0xF8, 0xFE, 0x1F, 0x83, 0xF0, 0x70, 0x18, 0xE1, 0xDC, 0x1F, 0xC0, 0xF8, 0x00, 0x00, 0x00, + 0xE0, 0x7F, 0x07, 0x70, 0x77, 0x0E, 0x78, 0xE3, 0x8E, 0x38, 0xC1, 0xDC, 0x1D, 0xC1, 0xF8, 0x0F, + 0x80, 0xF8, 0x07, 0x00, 0x70, 0x07, 0x09, 0xE0, 0xFC, 0x0F, 0x80, 0xE0, 0xFC, 0x1F, 0x83, 0xF0, + 0x7E, 0x0F, 0xC1, 0xF8, 0x3F, 0x07, 0xE0, 0xFC, 0x1F, 0x83, 0xFF, 0xFF, 0xFE, 0x1C, 0x03, 0x80, + 0x70, 0x0E, 0x00, 0x07, 0x00, 0x01, 0xC0, 0x0F, 0xFF, 0x83, 0xFF, 0xE0, 0x07, 0x00, 0x01, 0xC0, + 0x00, 0x70, 0x00, 0x1F, 0xF0, 0x07, 0xFF, 0x01, 0xC7, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, + 0xC1, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x7E, 0x07, 0xFF, 0x01, 0xFF, 0x00, 0x1C, 0x00, 0x38, 0x00, + 0x70, 0x00, 0xE0, 0x01, 0xC0, 0x03, 0x80, 0x3F, 0xF8, 0x7F, 0xF0, 0x1C, 0x00, 0x38, 0x00, 0x7F, + 0xC0, 0xFF, 0xE1, 0xE3, 0xC3, 0x83, 0x87, 0x07, 0x8E, 0x0E, 0x1E, 0x3C, 0x3F, 0xF8, 0x3F, 0xC0, + 0x07, 0xF8, 0x0F, 0xFE, 0x0F, 0xCF, 0x8F, 0x01, 0xE7, 0x80, 0x7B, 0x80, 0x3F, 0xC0, 0x0F, 0xFF, + 0x07, 0xFF, 0xE7, 0xFC, 0xFF, 0xFC, 0x1F, 0xEE, 0x00, 0x77, 0x00, 0x7B, 0xC0, 0x78, 0xF8, 0xF8, + 0x3F, 0xF8, 0x07, 0xF8, 0x00, 0x1F, 0xC1, 0xFF, 0x1E, 0x7C, 0xE0, 0xEF, 0xE7, 0xFF, 0xBF, 0xDF, + 0xFC, 0x7F, 0xE0, 0x7B, 0x83, 0x9E, 0x7C, 0x7F, 0xC1, 0xFC, 0x00, 0xE0, 0x03, 0xEF, 0x00, 0x7E, + 0x70, 0x0F, 0x67, 0x80, 0xE0, 0x78, 0x0E, 0x03, 0x81, 0xC0, 0x3C, 0x1C, 0x01, 0xC3, 0xC0, 0x1C, + 0x38, 0x01, 0xE3, 0x80, 0x0E, 0x70, 0x00, 0xF7, 0x00, 0x07, 0xF0, 0x00, 0x7E, 0x00, 0x03, 0xE0, + 0x00, 0x3C, 0x00, 0x03, 0xC0, 0x00, 0xE0, 0x3D, 0xE0, 0xF9, 0xC1, 0xC3, 0x87, 0x07, 0x8E, 0x07, + 0x1C, 0x0E, 0x70, 0x0E, 0xE0, 0x1F, 0x80, 0x3F, 0x00, 0x3E, 0x00, 0x78, 0x00, 0x70, 0x00, 0x1C, + 0x60, 0x0F, 0x70, 0x03, 0xF0, 0x00, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x71, 0xC0, 0x78, + 0xE0, 0x7C, 0x70, 0x3E, 0x38, 0x3F, 0x1C, 0x3F, 0x8E, 0x3D, 0xC7, 0x1C, 0xE3, 0x9C, 0x71, 0xDE, + 0x38, 0xFE, 0x1C, 0x7E, 0x0E, 0x3F, 0x07, 0x1F, 0x03, 0x8F, 0x01, 0xC7, 0x80, 0xFF, 0x80, 0x7E, + 0x00, 0x0E, 0x00, 0x07, 0x00, 0x07, 0x00, 0x03, 0x80, 0x01, 0x80, 0x71, 0x80, 0xEE, 0x03, 0xF8, + 0x07, 0xC0, 0x00, 0x00, 0x00, 0x0E, 0x0E, 0x38, 0x78, 0xE3, 0xE3, 0x8F, 0x8E, 0x7E, 0x3B, 0xB8, + 0xEE, 0xE3, 0xF3, 0x8F, 0x8E, 0x3E, 0x38, 0xF0, 0xE3, 0x83, 0xEE, 0x0F, 0x80, 0x0E, 0x00, 0x38, + 0x01, 0xE0, 0x07, 0x00, 0x18, 0x38, 0x00, 0x70, 0x03, 0xFE, 0x07, 0xFC, 0x03, 0x80, 0x07, 0x00, + 0x0E, 0x00, 0x1F, 0xF8, 0x3F, 0xF8, 0x71, 0xF8, 0xE0, 0x79, 0xC0, 0x73, 0x80, 0xE7, 0x01, 0xCE, + 0x07, 0x9C, 0x3E, 0x3F, 0xF8, 0x7F, 0xE0, 0x38, 0x07, 0xFC, 0x3F, 0xE0, 0x70, 0x03, 0x80, 0x1F, + 0xF0, 0xFF, 0xC7, 0x1F, 0x38, 0x39, 0xC1, 0xCE, 0x3E, 0x7F, 0xE3, 0xFE, 0x00, 0xFF, 0x87, 0xFF, + 0x38, 0xFD, 0xC0, 0xEE, 0x07, 0xF0, 0x3F, 0x99, 0xFC, 0xEE, 0xE7, 0xF7, 0xFF, 0x3F, 0xF1, 0xC3, + 0x8E, 0x0E, 0x70, 0x63, 0x80, 0x1C, 0x00, 0xE0, 0x00, 0xFF, 0x8F, 0xFC, 0xE3, 0xEE, 0x0E, 0xE0, + 0xFE, 0x07, 0xE0, 0x7E, 0x67, 0xE6, 0xFE, 0x7E, 0xF3, 0xEF, 0xFC, 0xFF, 0xCE, 0x1C, 0xE0, 0xCE, + 0x00, 0xE0, 0x0E, 0x00, 0x00, 0xE0, 0x1C, 0x03, 0xFF, 0xFF, 0xFF, 0xC0, 0x38, 0x07, 0x00, 0xE0, + 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x00, + 0x03, 0x81, 0xC0, 0xFF, 0xFF, 0xFF, 0x03, 0x81, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, + 0x81, 0xC0, 0x3F, 0xF9, 0xFF, 0xCE, 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, 0xE0, 0x1F, 0xF0, 0xFF, + 0x81, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x38, 0x00, 0x3F, 0xE7, + 0xFC, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x3F, 0xE7, 0xFC, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, + 0xFF, 0xE7, 0xFF, 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0xFE, 0x1F, 0xFC, 0xF1, 0xF7, 0x07, + 0xB8, 0x1F, 0xC0, 0xFE, 0x03, 0xF0, 0x1F, 0x80, 0xFC, 0x07, 0xE0, 0x78, 0x03, 0x80, 0x3C, 0x07, + 0xC0, 0xFE, 0x07, 0xC0, 0xFF, 0x9F, 0xF3, 0x80, 0x70, 0x0E, 0x01, 0xFF, 0x3F, 0xF7, 0x1E, 0xE1, + 0xFC, 0x1F, 0x83, 0xF0, 0x7E, 0x0E, 0x01, 0xC0, 0x78, 0x1E, 0x0F, 0x81, 0xE0, 0x78, 0x38, 0x3C, + 0x78, 0x70, 0xF0, 0x70, 0xE3, 0xC0, 0x71, 0xCF, 0x00, 0x73, 0xBC, 0x00, 0xF7, 0xF0, 0x00, 0xFF, + 0xC0, 0x00, 0xFF, 0x80, 0x03, 0xFF, 0x00, 0x0F, 0x77, 0x00, 0x1C, 0xE7, 0x00, 0x71, 0xCF, 0x01, + 0xC3, 0x8F, 0x07, 0x87, 0x0E, 0x0E, 0x0E, 0x1E, 0x3C, 0x1C, 0x1F, 0xF0, 0x38, 0x1E, 0x00, 0x00, + 0x1C, 0x00, 0x00, 0x38, 0x00, 0x00, 0x70, 0x00, 0x00, 0xE0, 0x00, 0x01, 0xC0, 0x78, 0xE1, 0xC3, + 0x8E, 0x38, 0x1C, 0xE7, 0x00, 0xEE, 0xE0, 0x07, 0xFC, 0x00, 0x3F, 0xC0, 0x07, 0xFC, 0x00, 0xEF, + 0xE0, 0x1C, 0xEF, 0x03, 0xCE, 0x78, 0x38, 0xE3, 0xC7, 0x0E, 0x1F, 0xF0, 0xE1, 0xF0, 0x00, 0x07, + 0x00, 0x00, 0x70, 0x00, 0x07, 0x00, 0x00, 0x70, 0x3F, 0xC1, 0xFF, 0xC3, 0x9F, 0x00, 0x1E, 0x00, + 0x78, 0x01, 0xC0, 0x1F, 0x07, 0xF8, 0x1F, 0xF0, 0x07, 0xE0, 0x03, 0x80, 0x0E, 0x00, 0x38, 0x00, + 0xE7, 0x9F, 0x9F, 0xFC, 0x7F, 0xE0, 0x1C, 0x00, 0x38, 0x00, 0xE0, 0x0F, 0x80, 0x3C, 0x00, 0xFF, + 0x3F, 0xEE, 0x7C, 0x07, 0x03, 0xCF, 0xE3, 0xF8, 0x0F, 0x01, 0xC0, 0x7E, 0x3F, 0xFF, 0xFF, 0x07, + 0x00, 0xE0, 0x38, 0x3E, 0x0F, 0x00, 0xE0, 0x79, 0xC1, 0xE3, 0x87, 0x87, 0x1E, 0x0E, 0x78, 0x1D, + 0xE0, 0x3F, 0x80, 0x7E, 0x00, 0xFE, 0x01, 0xDE, 0x03, 0x9E, 0x07, 0x1E, 0x0E, 0x1E, 0x1C, 0x3C, + 0x38, 0x3C, 0x70, 0x3F, 0xE0, 0x3E, 0x00, 0x1C, 0x00, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xC0, + 0xE1, 0xEE, 0x3C, 0xE7, 0x8E, 0xE0, 0xFC, 0x0F, 0x80, 0xFC, 0x0F, 0xE0, 0xEF, 0x0E, 0x78, 0xE3, + 0xCE, 0x1F, 0xE0, 0xF0, 0x07, 0x00, 0x70, 0x07, 0x00, 0x70, 0xE0, 0x1E, 0xE0, 0x3C, 0xE0, 0x78, + 0xEC, 0xF0, 0xED, 0xE0, 0xED, 0xC0, 0xEF, 0x80, 0xFF, 0x80, 0xFF, 0x80, 0xED, 0xC0, 0xED, 0xE0, + 0xEC, 0xF0, 0xEC, 0x70, 0xE0, 0x78, 0xE0, 0x3C, 0xE0, 0x1E, 0xE0, 0x0E, 0xE0, 0x73, 0x83, 0xCF, + 0xDE, 0x3F, 0xF0, 0xFF, 0x83, 0xFC, 0x0F, 0xF8, 0x3F, 0xE0, 0xFD, 0xC3, 0xF3, 0x8E, 0x0F, 0x38, + 0x1E, 0xE0, 0x38, 0x38, 0x1E, 0x38, 0x3C, 0xFF, 0x78, 0xFF, 0xF0, 0x39, 0xE0, 0x3B, 0xC0, 0x3F, + 0x80, 0x3F, 0x00, 0x3F, 0x80, 0x3F, 0xC0, 0x3B, 0xE0, 0x38, 0xF0, 0x38, 0x78, 0x38, 0x3C, 0x38, + 0x1E, 0x38, 0x1E, 0x38, 0x0F, 0x38, 0x78, 0xE3, 0xCF, 0xFE, 0x3F, 0xF0, 0x3F, 0x80, 0xFC, 0x03, + 0xF0, 0x0F, 0xE0, 0x3B, 0xC0, 0xE7, 0x83, 0x8F, 0x0E, 0x1E, 0x38, 0x3C, 0xFF, 0x03, 0xDF, 0xE0, + 0xF0, 0x1C, 0x3C, 0x03, 0x8F, 0x00, 0x73, 0xC0, 0x0E, 0xF0, 0x01, 0xF8, 0x00, 0x3F, 0x00, 0x07, + 0xF0, 0x00, 0xFF, 0x00, 0x1D, 0xF0, 0x03, 0x9F, 0x00, 0x71, 0xE0, 0x0E, 0x1E, 0x01, 0xC1, 0xE0, + 0x38, 0x1E, 0x07, 0x01, 0xC0, 0xFC, 0x1D, 0xF8, 0x70, 0x71, 0xE0, 0xE7, 0x81, 0xDE, 0x03, 0xF8, + 0x07, 0xE0, 0x0F, 0xF0, 0x1C, 0xF0, 0x38, 0xF0, 0x70, 0xE0, 0xE0, 0xE1, 0xC1, 0xE0, 0xE0, 0x1C, + 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xFF, 0xFC, 0xFF, 0xFC, + 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1F, 0xE0, 0x1F, + 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0xE0, 0xE7, 0x07, 0x38, 0x39, 0xC1, + 0xCE, 0x0E, 0x7F, 0xF3, 0xFF, 0x9C, 0x1C, 0xE0, 0xE7, 0x07, 0x38, 0x39, 0xC1, 0xFE, 0x0F, 0x80, + 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x38, 0xE0, 0x1F, 0xF8, 0x07, 0xFE, 0x01, 0xC3, 0x80, 0x70, 0xE0, + 0x1C, 0x38, 0x07, 0x0E, 0x01, 0xC3, 0xFF, 0xF0, 0xFF, 0xFC, 0x38, 0x07, 0x0E, 0x01, 0xC3, 0x80, + 0x70, 0xE0, 0x1C, 0x38, 0x07, 0x0E, 0x01, 0xC3, 0x80, 0x70, 0xE0, 0x1C, 0x00, 0xE0, 0xFF, 0x83, + 0xFE, 0x0E, 0x38, 0x38, 0xE0, 0xE3, 0xFF, 0x8F, 0xFE, 0x38, 0x38, 0xE0, 0xE3, 0x83, 0x8E, 0x0E, + 0x38, 0x38, 0xE0, 0xE0, 0xFF, 0xF8, 0x01, 0xFF, 0xF0, 0x03, 0x80, 0xE0, 0x07, 0x01, 0xC0, 0x0E, + 0x03, 0x80, 0x1C, 0x07, 0x00, 0x38, 0x0F, 0xFC, 0x70, 0x1F, 0xFC, 0xE0, 0x3C, 0x7D, 0xC0, 0x70, + 0x3B, 0x80, 0xE0, 0x7F, 0x01, 0xC0, 0x7E, 0x03, 0x80, 0xFC, 0x07, 0x01, 0xF8, 0x0E, 0x03, 0xF0, + 0x1C, 0x07, 0xE0, 0x38, 0x0E, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x70, 0x00, 0x03, 0xE0, 0x00, 0x3F, + 0x80, 0x00, 0x7C, 0x00, 0xFF, 0xE0, 0x1F, 0xFC, 0x03, 0x83, 0x80, 0x70, 0x70, 0x0E, 0x0E, 0x01, + 0xC1, 0xFF, 0x38, 0x3F, 0xF7, 0x07, 0x1E, 0xE0, 0xE1, 0xFC, 0x1C, 0x1F, 0x83, 0x83, 0xF0, 0x70, + 0x7E, 0x0E, 0x0E, 0x00, 0x01, 0xC0, 0x00, 0x78, 0x00, 0x1E, 0x00, 0x0F, 0xC0, 0x01, 0xE0, 0x07, + 0xF8, 0x07, 0xFE, 0x03, 0xF1, 0x80, 0xF0, 0x00, 0x78, 0x00, 0x1C, 0x1F, 0x8F, 0x0F, 0xF3, 0x87, + 0xDE, 0xE1, 0xC3, 0xB8, 0x70, 0xFF, 0x1C, 0x3D, 0xC7, 0x0F, 0x71, 0xC3, 0x9E, 0x71, 0xE3, 0xFD, + 0xF0, 0x7F, 0xF8, 0x07, 0xF8, 0x00, 0x1C, 0x00, 0x07, 0x80, 0x00, 0xFC, 0x00, 0x1F, 0x80, 0x01, + 0xE0, 0x1F, 0x80, 0xFE, 0x07, 0xC0, 0x3C, 0x7C, 0xE3, 0xFB, 0x9E, 0xEE, 0x73, 0xB9, 0xC6, 0xE7, + 0x3B, 0xDC, 0xE7, 0xFF, 0x8F, 0xFC, 0x1F, 0xC0, 0x0F, 0x00, 0x1F, 0x00, 0x3E, 0x00, 0x78, 0x07, + 0xF8, 0x7F, 0xF3, 0xF3, 0xDE, 0x00, 0x78, 0x01, 0xC0, 0x0F, 0x00, 0x38, 0x00, 0xE0, 0x03, 0x80, + 0x0F, 0x00, 0x3C, 0x00, 0x70, 0x01, 0xE0, 0x03, 0xF1, 0xC7, 0xFF, 0x07, 0xF8, 0x06, 0x00, 0x3C, + 0x00, 0x70, 0x01, 0xC0, 0x1F, 0x00, 0x7C, 0x00, 0x1F, 0xC7, 0xF9, 0xF3, 0x38, 0x0E, 0x01, 0xC0, + 0x38, 0x07, 0x00, 0xE0, 0x1E, 0x01, 0xF3, 0x1F, 0xE1, 0xFC, 0x0C, 0x01, 0xC0, 0x38, 0x07, 0x03, + 0xE0, 0x7C, 0x00, 0xFF, 0xFF, 0xFF, 0xF0, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x01, + 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x1E, 0x00, 0x78, 0x01, 0xF8, 0x07, + 0xE0, 0x03, 0x80, 0x0E, 0x00, 0x38, 0x00, 0xE0, 0x03, 0x80, 0xFF, 0xFF, 0xFF, 0x0E, 0x00, 0xE0, + 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xF8, 0x0F, 0x80, 0x38, 0x03, + 0x80, 0x38, 0x03, 0x80, 0xF0, 0x1E, 0xE0, 0x39, 0xE0, 0xF1, 0xC1, 0xC3, 0xC7, 0x83, 0xDE, 0x03, + 0xB8, 0x07, 0xF0, 0x07, 0xC0, 0x07, 0x00, 0x0E, 0x00, 0x1C, 0x00, 0x38, 0x00, 0x70, 0x00, 0xE0, + 0x01, 0xC0, 0x03, 0x80, 0xE0, 0x77, 0x83, 0x9C, 0x1C, 0xE1, 0xE7, 0x8E, 0x1C, 0x70, 0xE7, 0x07, + 0xB8, 0x1D, 0xC0, 0xFC, 0x03, 0xE0, 0x1E, 0x00, 0xF0, 0x03, 0x80, 0x1C, 0x00, 0xE0, 0x07, 0x00, + 0x38, 0x00, 0xF0, 0x1E, 0xE0, 0x39, 0xE0, 0xF1, 0xC1, 0xC3, 0xC7, 0x83, 0xCE, 0x03, 0xB8, 0x07, + 0xF0, 0x07, 0xC0, 0x0F, 0x80, 0xFF, 0xE1, 0xFF, 0xC0, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xC0, + 0x03, 0x80, 0xE0, 0x77, 0x83, 0x9C, 0x1C, 0xE1, 0xC7, 0x8E, 0x1C, 0x70, 0xE7, 0x03, 0xB8, 0x1F, + 0x80, 0xFC, 0x03, 0xE0, 0xFF, 0xC7, 0xFE, 0x03, 0x80, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x38, 0x00, + 0x70, 0x1E, 0x3C, 0x0E, 0x0F, 0x0F, 0x03, 0x8F, 0x01, 0xE7, 0x00, 0x7F, 0x80, 0x1F, 0x80, 0x07, + 0x80, 0x03, 0xC0, 0x03, 0xF0, 0x03, 0xF8, 0x01, 0xDE, 0x01, 0xE7, 0x81, 0xE1, 0xE0, 0xE0, 0x70, + 0xF0, 0x3F, 0xF0, 0x0F, 0x80, 0x03, 0xC0, 0x01, 0xE0, 0x00, 0xF0, 0x00, 0x78, 0x00, 0x3C, 0x70, + 0x73, 0xC7, 0x0E, 0x78, 0x3B, 0x81, 0xF8, 0x07, 0x80, 0x3C, 0x01, 0xF0, 0x1F, 0xC1, 0xEF, 0x0E, + 0x38, 0xE1, 0xFF, 0x07, 0x80, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x38, 0xFF, 0xF8, 0xE7, 0xFF, 0xC7, + 0x01, 0xC0, 0x38, 0x0E, 0x01, 0xC0, 0x70, 0x0E, 0x03, 0x80, 0x70, 0x1C, 0x03, 0x80, 0xE0, 0x1C, + 0x07, 0x00, 0xE0, 0x38, 0x07, 0x01, 0xC0, 0x38, 0x0E, 0x01, 0xC0, 0x70, 0x0E, 0x03, 0x80, 0x70, + 0x1C, 0x03, 0x80, 0xFF, 0xFF, 0x07, 0xFF, 0xF8, 0x00, 0x01, 0xC0, 0x00, 0x0E, 0x00, 0x00, 0x70, + 0x00, 0x03, 0x80, 0x00, 0x1C, 0xFF, 0xCE, 0xFF, 0xCE, 0x1E, 0x0E, 0x1E, 0x0E, 0x1E, 0x0E, 0x1E, + 0x0E, 0x1E, 0x0E, 0x1E, 0x0E, 0x1E, 0x0E, 0x1E, 0x0E, 0x1E, 0x0E, 0x1F, 0xFF, 0x1F, 0xFF, 0x00, + 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0xE0, 0x39, 0xC0, 0x73, 0x80, 0xE7, 0x01, 0xCE, 0x03, + 0x9C, 0x07, 0x38, 0x0E, 0x78, 0x1C, 0x78, 0x78, 0xFF, 0xF0, 0x7F, 0xE0, 0x01, 0xC0, 0x03, 0x80, + 0x07, 0x00, 0x0E, 0x00, 0x1F, 0x00, 0x3E, 0x00, 0x1C, 0x00, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x01, + 0xC0, 0xE0, 0xE7, 0x07, 0x38, 0x39, 0xC1, 0xCE, 0x0E, 0x78, 0xF1, 0xFF, 0x87, 0xFC, 0x00, 0xE0, + 0x07, 0x00, 0x38, 0x01, 0xE0, 0x0F, 0x00, 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0xE0, 0x3F, 0x01, + 0xF8, 0x0F, 0xC0, 0x7E, 0x03, 0xF0, 0x1F, 0x9C, 0xFE, 0xE7, 0x7F, 0x7B, 0xFF, 0xCF, 0xFE, 0x0E, + 0x70, 0x73, 0x83, 0x9C, 0x00, 0xE0, 0x07, 0x00, 0x38, 0x70, 0x77, 0x07, 0x70, 0x77, 0x07, 0x76, + 0x77, 0xEF, 0x7F, 0xF3, 0xFF, 0x06, 0x70, 0x67, 0x00, 0x70, 0x07, 0x00, 0x70, 0xE0, 0x07, 0x00, + 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0xFF, 0x1F, 0xFE, 0xF1, 0xF7, 0x03, 0xF8, 0x0F, 0xC0, + 0x7E, 0x03, 0xF0, 0x1F, 0x80, 0xFC, 0x07, 0xE0, 0x38, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x01, + 0xC0, 0x3F, 0xE7, 0xFE, 0xF3, 0xDC, 0x3F, 0x83, 0xF0, 0x7E, 0x0F, 0xC1, 0xF8, 0x3F, 0x07, 0xE0, + 0xFC, 0x1F, 0x83, 0x80, 0x00, 0x7F, 0x00, 0x1F, 0xFC, 0x03, 0xE7, 0xC0, 0x38, 0x1E, 0xE7, 0x00, + 0xEE, 0x70, 0x0F, 0xFF, 0x00, 0x77, 0xFF, 0xFF, 0x3F, 0xFF, 0xF0, 0xF0, 0x00, 0x07, 0x00, 0x00, + 0x70, 0x00, 0x07, 0x80, 0x00, 0x38, 0x00, 0x03, 0xF1, 0xC0, 0x1F, 0xFE, 0x00, 0x7F, 0xC0, 0x01, + 0xF8, 0x07, 0xFC, 0xE7, 0x9E, 0xEF, 0x0E, 0xFE, 0x07, 0x7F, 0xFF, 0x3F, 0xFF, 0x0E, 0x00, 0x0E, + 0x00, 0x0F, 0x00, 0x07, 0xCE, 0x07, 0xFE, 0x01, 0xFE, 0x00, 0x7F, 0x00, 0x1F, 0xFC, 0x03, 0xE7, + 0xC0, 0x38, 0x1E, 0xE7, 0x00, 0xEE, 0x70, 0x0F, 0xFF, 0x00, 0x77, 0xFF, 0xFF, 0x3F, 0xFF, 0xF0, + 0xF0, 0x00, 0x0F, 0x00, 0x00, 0x70, 0x00, 0x07, 0x80, 0x00, 0x38, 0x00, 0x03, 0xF1, 0xC0, 0x1F, + 0xFE, 0x00, 0x7F, 0xC0, 0x01, 0xC0, 0x00, 0x1C, 0x00, 0x01, 0xC0, 0x00, 0x1C, 0x00, 0x01, 0xC0, + 0x01, 0xF8, 0x07, 0xFC, 0xE7, 0x9E, 0xEF, 0x0E, 0xFE, 0x07, 0x7F, 0xFF, 0x3F, 0xFF, 0x0E, 0x00, + 0x0E, 0x00, 0x0F, 0x00, 0x07, 0xCE, 0x07, 0xFE, 0x01, 0xFE, 0x00, 0xE0, 0x00, 0xE0, 0x00, 0xE0, + 0x00, 0xE0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, 0x01, 0xC6, 0x00, 0x01, 0xDC, 0x00, 0x03, + 0xF8, 0x00, 0x03, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x0E, 0x0F, 0x1E, 0x1C, 0x3C, + 0x1C, 0x38, 0xF0, 0x1C, 0x73, 0xC0, 0x3C, 0xEF, 0x00, 0x3D, 0xFC, 0x00, 0x3F, 0xF0, 0x00, 0x3F, + 0xE0, 0x00, 0xFF, 0xC0, 0x03, 0xDD, 0xC0, 0x07, 0x39, 0xC0, 0x1C, 0x73, 0xC0, 0x70, 0xE3, 0xC1, + 0xE1, 0xC3, 0x83, 0x83, 0x87, 0x8F, 0x07, 0x07, 0xBC, 0x0E, 0x07, 0x00, 0x03, 0x1C, 0x00, 0x77, + 0x00, 0x0F, 0xE0, 0x00, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x38, 0x71, 0xC7, 0x1C, 0x1C, + 0xE7, 0x01, 0xDD, 0xC0, 0x1F, 0xF0, 0x01, 0xFE, 0x00, 0x7F, 0xC0, 0x1D, 0xDC, 0x07, 0x39, 0xC1, + 0xE7, 0x3C, 0x38, 0xE3, 0xCE, 0x1C, 0x3B, 0xC3, 0x87, 0x80, 0xE0, 0x7F, 0x07, 0xB8, 0x79, 0xC7, + 0x8E, 0x78, 0x77, 0x83, 0xF8, 0x1F, 0xF0, 0xFF, 0xE7, 0x1F, 0xB8, 0x3D, 0xC0, 0xFE, 0x03, 0xF0, + 0x1F, 0x80, 0xFC, 0x07, 0xE0, 0x38, 0x03, 0xC0, 0x1C, 0x03, 0xE0, 0xFE, 0x07, 0xE0, 0xE1, 0xFC, + 0x7B, 0x9E, 0x77, 0x8F, 0xC1, 0xFE, 0x3F, 0xE7, 0x3E, 0xE1, 0xFC, 0x1F, 0x83, 0xF0, 0x7E, 0x0E, + 0x01, 0xC0, 0x78, 0x1E, 0x0F, 0x81, 0xE0, 0x07, 0xFF, 0x01, 0xFF, 0xC0, 0x70, 0x70, 0x1C, 0x1C, + 0x07, 0x07, 0x01, 0xC1, 0xC0, 0x70, 0x70, 0x1C, 0x1C, 0x07, 0x07, 0x01, 0xC1, 0xC0, 0xF0, 0x70, + 0x38, 0x1C, 0x0E, 0x07, 0x07, 0x81, 0xC7, 0xC0, 0x73, 0xE0, 0x1F, 0xF0, 0x07, 0xC0, 0x00, 0x70, + 0x00, 0x38, 0x00, 0x0E, 0x00, 0x07, 0x00, 0x01, 0xC0, 0x0F, 0xF8, 0x0F, 0xF8, 0x0E, 0x38, 0x0E, + 0x38, 0x0E, 0x38, 0x0E, 0x38, 0x0E, 0x38, 0x1C, 0x38, 0x1C, 0x38, 0x3C, 0x38, 0x78, 0x38, 0xF8, + 0x3E, 0xE0, 0x3E, 0x00, 0x0E, 0x00, 0x0E, 0x00, 0x1E, 0x00, 0x1C, 0x00, 0x18, 0xE0, 0x1F, 0x80, + 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x7E, 0x01, + 0xF8, 0x07, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, 0x07, 0xE0, 0x1C, 0x00, 0x70, 0x01, 0xC0, 0x0F, + 0x00, 0xF8, 0x03, 0xE0, 0xE0, 0xFC, 0x1F, 0x83, 0xF0, 0x7E, 0x0F, 0xFF, 0xFF, 0xFF, 0x07, 0xE0, + 0xFC, 0x1F, 0x83, 0xF0, 0x7E, 0x0E, 0x01, 0xC0, 0x38, 0x0F, 0x07, 0xC0, 0xF8, 0xE0, 0x1C, 0xE0, + 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xFF, 0xFC, 0xFF, 0xFC, 0xE0, + 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1C, 0xE0, 0x1F, 0xE0, 0x1F, 0x00, + 0x07, 0x00, 0x0E, 0x00, 0x0E, 0x00, 0x1C, 0x00, 0x1C, 0xE0, 0xE7, 0x07, 0x38, 0x39, 0xC1, 0xCE, + 0x0E, 0x7F, 0xF3, 0xFF, 0x9C, 0x1C, 0xE0, 0xE7, 0x07, 0x38, 0x39, 0xC1, 0xFE, 0x0F, 0x80, 0x1C, + 0x00, 0xE0, 0x0E, 0x00, 0x70, 0x03, 0x00, 0xE0, 0x3F, 0x01, 0xF8, 0x0F, 0xC0, 0x7E, 0x03, 0xF0, + 0x1F, 0xC0, 0xEE, 0x07, 0x7C, 0x7B, 0xFF, 0xC7, 0xFE, 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, 0xE0, + 0x1F, 0x00, 0xF8, 0x07, 0x00, 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0xE0, 0xFC, 0x1F, 0x83, 0xF0, + 0x7E, 0x0F, 0xE3, 0xDF, 0xF9, 0xFF, 0x00, 0xE0, 0x1C, 0x03, 0x81, 0xF0, 0x3E, 0x07, 0x00, 0xE0, + 0x1C, 0x03, 0x80, 0x38, 0x01, 0xC1, 0xE0, 0x07, 0x07, 0xC0, 0x3C, 0x1F, 0x00, 0xF8, 0x7E, 0x06, + 0xE1, 0xD8, 0x1B, 0x87, 0x70, 0xCE, 0x1C, 0xC3, 0x38, 0x73, 0x1C, 0xE1, 0xCE, 0x63, 0x87, 0x19, + 0x8E, 0x1C, 0x7E, 0x38, 0x70, 0xF0, 0xE3, 0xC3, 0xC3, 0x8F, 0x0E, 0x0E, 0x38, 0x00, 0x3F, 0xE0, + 0x00, 0xFC, 0x00, 0x00, 0xE0, 0x00, 0x03, 0x80, 0x00, 0x1C, 0x00, 0x00, 0x70, 0x00, 0x01, 0x80, + 0x70, 0x0E, 0x1E, 0x07, 0x87, 0x81, 0xE1, 0xF0, 0xF8, 0x7C, 0x36, 0x1D, 0x9D, 0xC7, 0x66, 0x71, + 0x9F, 0x9C, 0x63, 0xC7, 0x38, 0xF1, 0xCE, 0x1C, 0x73, 0x80, 0x1F, 0xE0, 0x07, 0xC0, 0x00, 0x70, + 0x00, 0x38, 0x00, 0x0E, 0x00, 0x07, 0x80, 0x00, 0xC0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xE0, + 0x0E, 0x30, 0x03, 0xB8, 0x01, 0xFC, 0x00, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x07, + 0xC0, 0x03, 0xE0, 0x03, 0xF0, 0x01, 0xDC, 0x01, 0xCE, 0x00, 0xE7, 0x80, 0xF1, 0xC0, 0x70, 0xF0, + 0x38, 0x38, 0x3C, 0x1C, 0x1F, 0xFF, 0x0F, 0xFF, 0x8E, 0x01, 0xC7, 0x00, 0xF7, 0x80, 0x3B, 0x80, + 0x1E, 0x31, 0xC7, 0x70, 0xFE, 0x0F, 0x80, 0x00, 0x00, 0x1F, 0xE3, 0xFE, 0x63, 0xC0, 0x38, 0x03, + 0x9F, 0xF7, 0xFF, 0xF3, 0xF8, 0x3F, 0x07, 0xF1, 0xFF, 0xFC, 0xFF, 0x00, 0x0E, 0x70, 0x07, 0xB8, + 0x03, 0x9C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x0F, 0x80, 0x07, 0xC0, 0x07, 0xE0, 0x03, + 0xB8, 0x03, 0x9C, 0x01, 0xCF, 0x01, 0xE3, 0x80, 0xE1, 0xE0, 0x70, 0x70, 0x78, 0x38, 0x3F, 0xFE, + 0x1F, 0xFF, 0x1C, 0x03, 0x8E, 0x01, 0xEF, 0x00, 0x77, 0x00, 0x3C, 0x3B, 0x8F, 0x78, 0xEE, 0x00, + 0x00, 0x00, 0xFF, 0x1F, 0xF3, 0x1E, 0x01, 0xC0, 0x1C, 0xFF, 0xBF, 0xFF, 0x9F, 0xC1, 0xF8, 0x3F, + 0x8F, 0xFF, 0xE7, 0xF8, 0x00, 0x3F, 0xFC, 0x00, 0xFF, 0xF8, 0x03, 0xF8, 0x00, 0x07, 0x70, 0x00, + 0x1E, 0xE0, 0x00, 0x39, 0xC0, 0x00, 0xE3, 0x80, 0x03, 0xC7, 0xFC, 0x07, 0x0F, 0xF8, 0x1C, 0x1C, + 0x00, 0x78, 0x38, 0x00, 0xFF, 0xF0, 0x03, 0xFF, 0xE0, 0x07, 0x01, 0xC0, 0x1E, 0x03, 0x80, 0x38, + 0x07, 0xFF, 0xE0, 0x0F, 0xFE, 0x7F, 0x1F, 0x87, 0xFB, 0xFC, 0x63, 0xFB, 0xE0, 0x1E, 0x0E, 0x00, + 0xE0, 0xE3, 0xFF, 0xFE, 0x7F, 0xFF, 0xEF, 0x9E, 0x00, 0xE0, 0xE0, 0x0E, 0x0F, 0x00, 0xF1, 0xF8, + 0xCF, 0xFF, 0xFC, 0x3F, 0x9F, 0xC0, 0x71, 0x87, 0xB8, 0x3F, 0x01, 0xF0, 0x00, 0x00, 0x00, 0xFF, + 0xEF, 0xFE, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0F, 0xFC, 0xFF, 0xCE, 0x00, 0xE0, 0x0E, + 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0F, 0xFF, 0xFF, 0xF0, 0x38, 0xC3, 0xDC, 0x1F, 0x80, 0xF8, 0x00, + 0x00, 0x00, 0x1F, 0x83, 0xFE, 0x79, 0xEF, 0x0F, 0xE0, 0x7F, 0xFF, 0xFF, 0xFE, 0x00, 0xE0, 0x0F, + 0x00, 0x7C, 0x63, 0xFE, 0x1F, 0xE0, 0x3F, 0xE0, 0x7F, 0xF8, 0x38, 0xFC, 0x00, 0x3C, 0x00, 0x1E, + 0x00, 0x0E, 0x00, 0x0E, 0x00, 0x0E, 0xFF, 0xFF, 0xFF, 0xFE, 0xE0, 0x0E, 0xF0, 0x0E, 0x70, 0x1E, + 0x78, 0x1C, 0x7C, 0x7C, 0x3F, 0xF8, 0x0F, 0xE0, 0x7F, 0x87, 0xFC, 0x63, 0xE0, 0x0F, 0x00, 0x70, + 0x07, 0xFF, 0xFF, 0xFF, 0xE0, 0x7F, 0x0F, 0x79, 0xE7, 0xFC, 0x3F, 0x80, 0x0E, 0xE0, 0x1E, 0xF0, + 0x0E, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xE0, 0x7F, 0xF8, 0x38, 0xFC, 0x00, 0x3C, 0x00, 0x1E, + 0x00, 0x0E, 0x00, 0x0E, 0x00, 0x0E, 0xFF, 0xFF, 0xFF, 0xFE, 0xE0, 0x0E, 0xF0, 0x0E, 0x70, 0x1E, + 0x78, 0x1C, 0x7C, 0x7C, 0x3F, 0xF8, 0x0F, 0xE0, 0x39, 0xC3, 0xBC, 0x39, 0xC0, 0x00, 0x00, 0x07, + 0xF8, 0x7F, 0xC6, 0x3E, 0x00, 0xF0, 0x07, 0x00, 0x7F, 0xFF, 0xFF, 0xFE, 0x07, 0xF0, 0xF7, 0x9E, + 0x7F, 0xC3, 0xF8, 0x01, 0xCE, 0x00, 0x03, 0xDC, 0x00, 0x07, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x0F, 0x07, 0x07, 0x8F, 0x0E, 0x1E, 0x0E, 0x1C, 0x78, 0x0E, 0x39, 0xE0, 0x1E, 0x77, 0x80, + 0x1E, 0xFE, 0x00, 0x1F, 0xF8, 0x00, 0x1F, 0xF0, 0x00, 0x7F, 0xE0, 0x01, 0xEE, 0xE0, 0x03, 0x9C, + 0xE0, 0x0E, 0x39, 0xE0, 0x38, 0x71, 0xE0, 0xF0, 0xE1, 0xC1, 0xC1, 0xC3, 0xC7, 0x83, 0x83, 0xDE, + 0x07, 0x03, 0x80, 0x03, 0xB8, 0x00, 0xF7, 0x80, 0x0E, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF1, + 0xC3, 0x8E, 0x38, 0xE0, 0xE7, 0x38, 0x0E, 0xEE, 0x00, 0xFF, 0x80, 0x0F, 0xF0, 0x03, 0xFE, 0x00, + 0xEE, 0xE0, 0x39, 0xCE, 0x0F, 0x39, 0xE1, 0xC7, 0x1E, 0x70, 0xE1, 0xDE, 0x1C, 0x3C, 0x19, 0xC0, + 0xF7, 0x81, 0x9C, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x07, 0xFF, 0x0E, 0x7C, 0x00, 0x78, 0x01, 0xE0, + 0x07, 0x00, 0x7C, 0x1F, 0xE0, 0x7F, 0xC0, 0x1F, 0x80, 0x0E, 0x00, 0x38, 0x00, 0xE0, 0x03, 0x9E, + 0x7E, 0x7F, 0xF0, 0xFF, 0x80, 0x73, 0x9D, 0xE7, 0x38, 0x00, 0x00, 0x3F, 0xCF, 0xFB, 0x9F, 0x01, + 0xC0, 0xF3, 0xF8, 0xFE, 0x03, 0xC0, 0x70, 0x1F, 0x8F, 0xFF, 0xFF, 0xC0, 0x7F, 0xFB, 0xFF, 0xC0, + 0x1C, 0x01, 0xC0, 0x1C, 0x01, 0xC0, 0x1C, 0x01, 0xFC, 0x0F, 0xF0, 0x0F, 0xC0, 0x1E, 0x00, 0x70, + 0x03, 0x80, 0x1D, 0xE7, 0xFF, 0xFE, 0x7F, 0xC0, 0x7F, 0xF7, 0xFE, 0x00, 0xE0, 0x1C, 0x03, 0x80, + 0x70, 0x0F, 0x00, 0xF8, 0x0F, 0xE0, 0x3F, 0x00, 0xF0, 0x07, 0x00, 0x70, 0x07, 0x00, 0xF7, 0x3E, + 0x7F, 0xE7, 0xF8, 0x1F, 0xE0, 0x3F, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x03, 0xB8, 0x0F, + 0x70, 0x3E, 0xE0, 0x7D, 0xC1, 0xFB, 0x87, 0xF7, 0x1E, 0xEE, 0x39, 0xDC, 0xE3, 0xBB, 0xC7, 0x7F, + 0x0E, 0xFC, 0x1D, 0xF8, 0x3B, 0xE0, 0x77, 0x80, 0xEF, 0x01, 0xDC, 0x03, 0x80, 0x3F, 0x87, 0xF0, + 0x00, 0x00, 0x00, 0x01, 0xC1, 0xF8, 0x7F, 0x1F, 0xE3, 0xFC, 0xFF, 0xBB, 0xF7, 0x7F, 0xCF, 0xF1, + 0xFE, 0x3F, 0x87, 0xE0, 0xFC, 0x1C, 0x1C, 0xE0, 0x3D, 0xC0, 0x73, 0x80, 0x00, 0x00, 0x00, 0x1C, + 0x03, 0xB8, 0x0F, 0x70, 0x3E, 0xE0, 0x7D, 0xC1, 0xFB, 0x87, 0xF7, 0x1E, 0xEE, 0x39, 0xDC, 0xE3, + 0xBB, 0xC7, 0x7F, 0x0E, 0xFC, 0x1D, 0xF8, 0x3B, 0xE0, 0x77, 0x80, 0xEF, 0x01, 0xDC, 0x03, 0x80, + 0x3B, 0x8F, 0x78, 0xEE, 0x00, 0x00, 0x01, 0xC1, 0xF8, 0x7F, 0x1F, 0xE3, 0xFC, 0xFF, 0xBB, 0xF7, + 0x7F, 0xCF, 0xF1, 0xFE, 0x3F, 0x87, 0xE0, 0xFC, 0x1C, 0x07, 0x38, 0x03, 0xBC, 0x01, 0xCE, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x3F, 0xC0, 0x7F, 0xF0, 0x7E, 0x7C, 0x78, 0x0F, 0x38, 0x03, 0xDC, 0x01, + 0xFE, 0x00, 0x7E, 0x00, 0x3F, 0x00, 0x1F, 0x80, 0x0F, 0xE0, 0x07, 0x70, 0x07, 0xB8, 0x03, 0xDE, + 0x03, 0xC7, 0xE7, 0xC1, 0xFF, 0xC0, 0x3F, 0xC0, 0x19, 0xC1, 0xEF, 0x06, 0x70, 0x00, 0x00, 0x00, + 0x0F, 0xE0, 0xFF, 0x8F, 0x3E, 0x70, 0x77, 0x03, 0xF8, 0x0F, 0xC0, 0x7E, 0x03, 0xF0, 0x3D, 0xC1, + 0xCF, 0x3E, 0x3F, 0xE0, 0xFE, 0x00, 0x07, 0xF8, 0x0F, 0xFE, 0x0F, 0x8F, 0x8F, 0x01, 0xE7, 0x00, + 0x7B, 0x80, 0x1F, 0x80, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xF0, 0x01, 0xFC, 0x00, 0xEE, 0x00, 0xF7, + 0x80, 0x7B, 0xC0, 0x78, 0xFC, 0xF8, 0x3F, 0xF8, 0x07, 0xF8, 0x00, 0x1F, 0xC1, 0xFF, 0x1F, 0x7C, + 0xE0, 0xEE, 0x07, 0xFF, 0xFF, 0xFF, 0xFC, 0x07, 0xE0, 0x7B, 0x83, 0x9E, 0x7C, 0x7F, 0xC1, 0xFC, + 0x00, 0x07, 0x38, 0x03, 0xBC, 0x01, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xC0, 0x7F, 0xF0, + 0x7C, 0x7C, 0x78, 0x0F, 0x38, 0x03, 0xDC, 0x00, 0xFC, 0x00, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0x80, + 0x0F, 0xE0, 0x07, 0x70, 0x07, 0xBC, 0x03, 0xDE, 0x03, 0xC7, 0xE7, 0xC1, 0xFF, 0xC0, 0x3F, 0xC0, + 0x39, 0xC1, 0xEF, 0x0E, 0x70, 0x00, 0x00, 0x00, 0x0F, 0xE0, 0xFF, 0x8F, 0xBE, 0x70, 0x77, 0x03, + 0xFF, 0xFF, 0xFF, 0xFE, 0x03, 0xF0, 0x3D, 0xC1, 0xCF, 0x3E, 0x3F, 0xE0, 0xFE, 0x00, 0x39, 0xC0, + 0x7B, 0x80, 0xE7, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xF8, 0x3F, 0xF8, 0x38, 0xF8, 0x00, 0x78, 0x00, + 0x78, 0x00, 0x70, 0x00, 0xE1, 0xFF, 0xC3, 0xFF, 0x80, 0x07, 0x00, 0x0E, 0x00, 0x1C, 0x00, 0x78, + 0x01, 0xE3, 0x8F, 0x8F, 0xFE, 0x0F, 0xF8, 0x00, 0x73, 0x87, 0xB8, 0x73, 0x80, 0x00, 0x00, 0x07, + 0xF0, 0x7F, 0xC6, 0x3C, 0x00, 0xE0, 0x0E, 0x1F, 0xE1, 0xFF, 0x00, 0xE0, 0x0E, 0x01, 0xE6, 0x3E, + 0x7F, 0xC7, 0xF0, 0x0F, 0xF0, 0x1F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x03, 0xDC, 0x07, + 0x3C, 0x0E, 0x38, 0x3C, 0x78, 0x70, 0x70, 0xE0, 0xF3, 0x80, 0xE7, 0x01, 0xFE, 0x01, 0xF8, 0x01, + 0xF0, 0x03, 0xC0, 0x03, 0x80, 0x0E, 0x02, 0x7C, 0x07, 0xF0, 0x0F, 0xC0, 0x00, 0x1F, 0xC1, 0xFC, + 0x00, 0x00, 0x00, 0x00, 0x0E, 0x07, 0xF0, 0x77, 0x07, 0x70, 0xE7, 0x8E, 0x38, 0xE3, 0x8C, 0x1D, + 0xC1, 0xDC, 0x1F, 0x80, 0xF8, 0x0F, 0x80, 0x70, 0x07, 0x00, 0x70, 0x9E, 0x0F, 0xC0, 0xF8, 0x00, + 0x0E, 0x70, 0x3D, 0xE0, 0x39, 0xC0, 0x00, 0x00, 0x00, 0x1E, 0x03, 0xDC, 0x07, 0x3C, 0x0E, 0x38, + 0x3C, 0x78, 0x70, 0x70, 0xE0, 0xF3, 0x80, 0xE7, 0x01, 0xFE, 0x01, 0xF8, 0x01, 0xF0, 0x03, 0xC0, + 0x03, 0x80, 0x0E, 0x02, 0x7C, 0x07, 0xF0, 0x0F, 0xC0, 0x00, 0x1D, 0xC3, 0xDE, 0x1D, 0xC0, 0x00, + 0x00, 0x0E, 0x07, 0xF0, 0x77, 0x07, 0x70, 0xE7, 0x8E, 0x38, 0xE3, 0x8C, 0x1D, 0xC1, 0xDC, 0x1F, + 0x80, 0xF8, 0x0F, 0x80, 0x70, 0x07, 0x00, 0x70, 0x9E, 0x0F, 0xC0, 0xF8, 0x00, 0x01, 0x98, 0x07, + 0x70, 0x1D, 0xC0, 0x73, 0x00, 0x66, 0x00, 0x00, 0x00, 0x00, 0x78, 0x0F, 0x70, 0x1C, 0xF0, 0x38, + 0xE0, 0xF1, 0xE1, 0xC1, 0xC3, 0x83, 0xCE, 0x03, 0x9C, 0x07, 0xF8, 0x07, 0xE0, 0x07, 0xC0, 0x0F, + 0x00, 0x0E, 0x00, 0x38, 0x09, 0xF0, 0x1F, 0xC0, 0x3F, 0x00, 0x07, 0x30, 0x77, 0x0E, 0xE1, 0xDC, + 0x18, 0xC0, 0x00, 0x00, 0x0E, 0x07, 0xF0, 0x77, 0x07, 0x70, 0xE7, 0x8E, 0x38, 0xE3, 0x8C, 0x1D, + 0xC1, 0xDC, 0x1F, 0x80, 0xF8, 0x0F, 0x80, 0x70, 0x07, 0x00, 0x70, 0x9E, 0x0F, 0xC0, 0xF8, 0x00, + 0x1C, 0xE0, 0xEF, 0x07, 0x38, 0x00, 0x00, 0x00, 0x70, 0x1F, 0x80, 0xFC, 0x07, 0xE0, 0x3F, 0x01, + 0xF8, 0x0F, 0xC0, 0x7F, 0x03, 0xBC, 0x3D, 0xFF, 0xE3, 0xFF, 0x00, 0x38, 0x01, 0xC0, 0x0E, 0x00, + 0x70, 0x03, 0x80, 0x1C, 0x73, 0x8F, 0x71, 0xCE, 0x00, 0x00, 0x01, 0xC1, 0xF8, 0x3F, 0x07, 0xE0, + 0xFC, 0x1F, 0xC7, 0xBF, 0xF3, 0xFE, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0xFF, 0xFF, 0xFF, + 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC0, + 0x38, 0x07, 0xC0, 0xF8, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x00, 0xFF, 0x7F, 0xB8, 0x1C, + 0x0E, 0x07, 0x03, 0x81, 0xC0, 0xE0, 0x70, 0x38, 0x1E, 0x0F, 0x03, 0x81, 0xC0, 0xE0, 0x70, 0x00, + 0x07, 0x38, 0x01, 0xDE, 0x00, 0x73, 0x80, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0xFE, 0x00, 0x3F, + 0x80, 0x0F, 0xE0, 0x03, 0xF8, 0x00, 0xFE, 0x00, 0x3F, 0xFE, 0x0F, 0xFF, 0xE3, 0xF8, 0xFC, 0xFE, + 0x07, 0x3F, 0x81, 0xCF, 0xE0, 0x7B, 0xF8, 0x1C, 0xFE, 0x07, 0x3F, 0x8F, 0xCF, 0xFF, 0xE3, 0xFF, + 0xE0, 0xF0, 0x0E, 0xE0, 0x3D, 0xE0, 0x3B, 0x80, 0x00, 0x00, 0x00, 0x1C, 0x01, 0xF8, 0x03, 0xF0, + 0x07, 0xE0, 0x0F, 0xC0, 0x1F, 0xFE, 0x3F, 0xFE, 0x7E, 0x3C, 0xFC, 0x3D, 0xF8, 0x7B, 0xF1, 0xE7, + 0xFF, 0xCF, 0xFF, 0x1C, 0x78, 0x0E, 0x78, 0x1C, 0x78, 0x38, 0x70, 0x70, 0x71, 0xC1, 0xF3, 0x87, + 0xFF, 0x1C, 0xFC, 0x38, 0xE0, 0xE1, 0xE1, 0xC1, 0xC3, 0x81, 0xC7, 0x03, 0xCE, 0x03, 0x9C, 0x03, + 0x80, 0x7F, 0x87, 0xFE, 0x00, 0x78, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, 0xE0, + 0x07, 0x00, 0x38, 0x01, 0xC0, 0x0E, 0x7F, 0xFF, 0xFF, 0xE0, 0x3E, 0x1F, 0x83, 0xC0, 0xE0, 0x70, + 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x81, 0xC1, 0xE3, 0xFF, 0xDF, 0xCE, 0x00, 0x7F, 0xFB, 0xFF, 0xC0, + 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x38, 0x01, 0xC0, + 0x0E, 0x00, 0x70, 0x03, 0x80, 0xFF, 0xE7, 0xFF, 0x80, 0x1E, 0x00, 0x70, 0x03, 0x80, 0x1D, 0x80, + 0xFC, 0x07, 0xE0, 0x3F, 0x01, 0xF8, 0x0F, 0xC0, 0x7E, 0x03, 0xF0, 0x1F, 0x80, 0xE0, 0x7D, 0xF1, + 0xC7, 0x1C, 0x71, 0xC7, 0x1C, 0x71, 0xC7, 0x1C, 0x71, 0xC0, 0xFF, 0xFC, 0xF1, 0x87, 0x0E, 0x1C, + 0x38, 0x70, 0xE1, 0xC3, 0x87, 0x0F, 0x0E, 0x00, 0xFF, 0xF3, 0xFF, 0xE3, 0x03, 0xDC, 0x07, 0x70, + 0x1D, 0xC0, 0x77, 0x01, 0xDC, 0x07, 0x70, 0x1D, 0xC0, 0x77, 0x01, 0xDC, 0x07, 0x70, 0x1D, 0xC0, + 0x77, 0x01, 0xC0, 0xE3, 0xF3, 0x8F, 0xEE, 0x07, 0xB8, 0x0F, 0xE0, 0x1F, 0x80, 0x7E, 0x01, 0xF8, + 0x07, 0xE0, 0x1F, 0x80, 0x77, 0x03, 0x9C, 0x0E, 0x7C, 0xF8, 0xFF, 0xC1, 0xFC, 0x00, 0x7D, 0xF1, + 0xC7, 0x1C, 0x71, 0xC7, 0x1C, 0xFF, 0x9F, 0xF8, 0x07, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x38, 0x07, + 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, + 0x70, 0xFF, 0x1F, 0xF0, 0x0F, 0x00, 0xE0, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, + 0x80, 0xE0, 0x3D, 0xFF, 0x3F, 0xC0, 0x00, 0x07, 0x80, 0x3C, 0x01, 0xE0, 0x0F, 0x00, 0x7F, 0xFB, + 0xFF, 0xC0, 0x0E, 0x00, 0x70, 0x07, 0x00, 0x38, 0x01, 0xC0, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x70, + 0x03, 0x80, 0x1C, 0x01, 0xC0, 0x0E, 0x00, 0xFF, 0xF9, 0xFF, 0xF8, 0xE0, 0xF3, 0x80, 0xF7, 0x00, + 0xEE, 0x01, 0xDC, 0x03, 0xB8, 0x07, 0x70, 0x0E, 0xE0, 0x1D, 0xC0, 0x3B, 0x80, 0x77, 0x00, 0xEF, + 0xFF, 0xDF, 0xFF, 0x80, 0xE3, 0xF1, 0xCF, 0xF1, 0xF8, 0xF3, 0xE0, 0xE7, 0x81, 0xE7, 0x01, 0xCE, + 0x03, 0x9C, 0x07, 0x70, 0x0E, 0xE0, 0x1D, 0xC0, 0x73, 0x80, 0xE7, 0x07, 0xDE, 0xFF, 0x39, 0xFC, + 0x00, 0xFF, 0xCE, 0x73, 0x9C, 0xE7, 0x39, 0xCE, 0x73, 0x9C, 0xE7, 0x39, 0xCE, 0x70, 0x7C, 0xFC, + 0x78, 0x70, 0xE1, 0xC3, 0x87, 0x0E, 0x1C, 0x38, 0x70, 0xFF, 0xFF, 0x80, 0xFF, 0xF3, 0xFF, 0xE3, + 0x87, 0x9C, 0x07, 0x70, 0x1D, 0xC0, 0x77, 0x01, 0xDC, 0x07, 0x70, 0x1D, 0xC0, 0x77, 0x01, 0xDE, + 0x0E, 0x3C, 0x78, 0xFF, 0xC0, 0xFE, 0x00, 0x00, 0x01, 0xC0, 0x73, 0x81, 0xCE, 0x07, 0x38, 0x1C, + 0xE0, 0x71, 0xC1, 0xC7, 0x0F, 0x1C, 0x38, 0x70, 0xE1, 0xE3, 0x83, 0x9C, 0x0E, 0xF0, 0x3F, 0x87, + 0xFC, 0x1F, 0xC0, 0x70, 0x00, 0x3F, 0xC3, 0xFF, 0x1E, 0x7D, 0xC0, 0xEE, 0x07, 0xF0, 0x1F, 0x80, + 0xFE, 0x07, 0x7C, 0x39, 0xE1, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, 0xE0, 0x07, 0x00, + 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x1F, 0xC3, 0xFF, 0x1E, 0x3D, 0xC0, 0xEE, 0x03, 0xF0, 0x1F, + 0x80, 0xEF, 0x07, 0x7C, 0x39, 0xE1, 0xC0, 0x1E, 0x00, 0xE0, 0x1F, 0x7F, 0xF3, 0xFE, 0x00, 0x70, + 0x73, 0x83, 0x9E, 0x1C, 0x70, 0xE3, 0x87, 0x0E, 0x70, 0x73, 0x83, 0xF8, 0x0F, 0xC0, 0x7C, 0x01, + 0xC0, 0x0E, 0x00, 0x70, 0x03, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x1E, 0x00, 0x70, 0x03, 0x80, + 0xF0, 0x77, 0x07, 0x78, 0x73, 0x87, 0x3C, 0xE1, 0xCE, 0x0F, 0xE0, 0xFC, 0x07, 0x80, 0x38, 0x03, + 0xC0, 0x1C, 0x00, 0xEF, 0xFE, 0xFF, 0xE0, 0xFF, 0xFF, 0xFF, 0xF0, 0x01, 0xC0, 0x0E, 0x00, 0x39, + 0xC0, 0xE7, 0x07, 0x1C, 0x1C, 0x70, 0x71, 0xC1, 0xC7, 0x0E, 0x1C, 0x38, 0x70, 0xE1, 0xC7, 0x07, + 0x1C, 0x1C, 0x00, 0x70, 0x01, 0xC0, 0x07, 0x00, 0x1C, 0x00, 0xFF, 0x9F, 0xF8, 0x0F, 0x00, 0xE0, + 0x1E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x38, 0xE1, + 0xC7, 0xE1, 0xC7, 0xE1, 0xC7, 0xE3, 0xC7, 0xE3, 0x87, 0xE3, 0x87, 0xEF, 0x87, 0xFF, 0x07, 0xFE, + 0x07, 0x70, 0x07, 0x70, 0x0E, 0x78, 0x1E, 0x3C, 0x3C, 0x1F, 0xF8, 0x0F, 0xF0, 0x7F, 0xFC, 0x7F, + 0xFE, 0x1C, 0x1E, 0x1C, 0x0F, 0x1C, 0x07, 0x1C, 0x07, 0x1C, 0x07, 0x1C, 0x07, 0x1C, 0x07, 0x1C, + 0x07, 0x1C, 0x07, 0x1C, 0x07, 0x1C, 0x07, 0x7C, 0x07, 0x78, 0x07, 0x67, 0xEE, 0xFF, 0x00, 0x19, + 0xCE, 0x77, 0x39, 0xC0, 0x00, 0x1D, 0xE7, 0x30, 0x00, 0x07, 0xF9, 0xFF, 0x78, 0x6E, 0x01, 0xC0, + 0x38, 0x07, 0x80, 0x78, 0x07, 0x80, 0x78, 0x07, 0x00, 0x60, 0x0C, 0x00, 0x00, 0x00, 0x0F, 0x01, + 0xE0, 0x3C, 0x03, 0x00, 0x1F, 0x0F, 0xC7, 0xA1, 0xC0, 0x70, 0x1C, 0x03, 0xF8, 0x7F, 0xFF, 0x3F, + 0x04, 0x00, 0xFF, 0xFF, 0xFC, 0x03, 0x3C, 0xE2, 0x00, 0x07, 0x39, 0xCE, 0x31, 0xCE, 0x73, 0x9C, + 0xE7, 0x18, 0xC7, 0x39, 0xC0, 0x00, 0x1C, 0x1B, 0x83, 0x70, 0xEF, 0xFC, 0xFF, 0x1F, 0x03, 0x80, + 0x70, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0x60, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x86, 0x67, 0x19, 0xDC, 0x67, 0x73, 0x9D, 0xFF, 0xF3, 0xFF, 0x8F, 0x98, 0x38, 0x00, + 0xE0, 0x03, 0x80, 0x0E, 0x00, 0x38, 0x00, 0xE0, 0x03, 0x80, 0x06, 0x00, 0x18, 0x00, 0x60, 0x00, + 0x00, 0x00, 0x00, 0x01, 0xC0, 0xF8, 0x3E, 0x0F, 0x01, 0xC0, 0x30, 0x07, 0x00, 0xFE, 0x0F, 0xC1, + 0xF0, 0x38, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x86, 0xFF, 0xEF, 0xF8, 0x00, 0x00, 0x1F, 0x07, 0xF1, + 0xFE, 0x70, 0xEE, 0x1D, 0xC1, 0xB8, 0x3F, 0x07, 0xE0, 0xDC, 0x3B, 0xCF, 0x3F, 0xC3, 0xF8, 0x00, + 0x00, 0x00, 0x07, 0xFC, 0x7F, 0xC7, 0xFC, 0x00, 0xC0, 0x0C, 0x00, 0xC0, 0x0C, 0x00, 0xE0, 0x0E, + 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0x60, 0x06, 0x00, 0x70, 0x07, 0x00, 0x00, 0x00, 0x03, + 0x80, 0x7F, 0x01, 0xDC, 0x0E, 0x70, 0x38, 0xE0, 0xE3, 0x87, 0x0E, 0x1C, 0x1C, 0x60, 0x73, 0x81, + 0xCE, 0x03, 0xB0, 0x0F, 0xC0, 0x3F, 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x0C, 0x00, 0x20, 0x00, + 0x00, 0x00, 0x0E, 0x00, 0x38, 0x01, 0xE0, 0x07, 0xC0, 0x1F, 0x00, 0xFC, 0x03, 0xF8, 0x0E, 0xE0, + 0x73, 0x81, 0xCF, 0x06, 0x1C, 0x38, 0x70, 0xE0, 0xE7, 0x03, 0x9C, 0x0E, 0xF0, 0x1F, 0x80, 0x70, + 0x00, 0x80, 0x3E, 0x0F, 0xE3, 0xDC, 0x71, 0xCC, 0x39, 0xC7, 0x3C, 0xE3, 0xFC, 0x3F, 0x80, 0x30, + 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x06, 0x00, 0xC0, 0x00, 0x00, 0x0E, 0x00, 0x0E, 0x00, + 0x0E, 0x20, 0x07, 0x70, 0x07, 0x70, 0x07, 0x60, 0x07, 0xE0, 0x07, 0xE0, 0x07, 0x70, 0x07, 0x78, + 0x1E, 0x7F, 0xFC, 0x3F, 0xF8, 0x0F, 0xF0, 0xFF, 0xF0, 0x03, 0x3C, 0xE2, 0x00, 0x07, 0x39, 0xCE, + 0x31, 0xCE, 0x73, 0x9C, 0xE7, 0x18, 0xC7, 0x39, 0xC0, 0x00, 0x1C, 0x1B, 0x83, 0x70, 0xEF, 0xFC, + 0xFF, 0x1F, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0x60, 0x0E, 0x01, 0xC0, 0x38, + 0x07, 0x00, 0x00, 0x00, 0x00, 0x01, 0x86, 0x67, 0x19, 0xDC, 0x67, 0x73, 0x9D, 0xFF, 0xF3, 0xFF, + 0x8F, 0x98, 0x38, 0x00, 0xE0, 0x03, 0x80, 0x0E, 0x00, 0x38, 0x00, 0xE0, 0x03, 0x80, 0x06, 0x00, + 0x18, 0x00, 0x60, 0x00, 0x00, 0x00, 0xE7, 0x9D, 0xF3, 0xB8, 0x77, 0x0F, 0xFC, 0xFF, 0xDF, 0xE3, + 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x38, 0x03, 0x00, 0x60, 0x0C, 0x01, 0xC0, 0x38, 0x00, 0x06, 0x00, + 0xF0, 0x07, 0x00, 0xF8, 0x1F, 0x81, 0xDC, 0x39, 0xC3, 0x8E, 0x70, 0xE7, 0x06, 0x60, 0x76, 0x07, + 0x60, 0x76, 0x67, 0x76, 0x67, 0xFE, 0x3F, 0xC0, 0x1F, 0x8F, 0xE3, 0x91, 0xC0, 0x70, 0x1C, 0x03, + 0x88, 0xFF, 0x1F, 0x83, 0xC1, 0xE0, 0x70, 0x38, 0x0E, 0x07, 0x01, 0xC0, 0xE0, 0x00, 0x00, 0x00, + 0x03, 0x80, 0x7F, 0x01, 0xDC, 0x0E, 0x70, 0x38, 0xE0, 0xE3, 0x87, 0x0E, 0x1C, 0x1C, 0x60, 0x73, + 0x81, 0xCE, 0x03, 0xB0, 0x0F, 0xC0, 0x3F, 0x00, 0x78, 0x01, 0xE0, 0x07, 0x80, 0x0C, 0x00, 0x20, + 0x00, 0x00, 0x00, 0x0E, 0x00, 0x38, 0x01, 0xE0, 0x07, 0xC0, 0x1F, 0x00, 0xFC, 0x03, 0xF8, 0x0E, + 0xE0, 0x73, 0x81, 0xCF, 0x06, 0x1C, 0x38, 0x70, 0xE0, 0xE7, 0x03, 0x9C, 0x0E, 0xF0, 0x1F, 0x80, + 0x70, 0x00, 0x80, 0x3E, 0x0F, 0xE3, 0xDC, 0x71, 0xCC, 0x39, 0xC7, 0x3C, 0xE3, 0xFC, 0x3F, 0x80, + 0x30, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x06, 0x00, 0xC0, 0x00, 0x01, 0xC0, 0x01, 0xE0, + 0x00, 0xF8, 0x00, 0x7C, 0x00, 0x7F, 0x00, 0x3B, 0x80, 0x39, 0xC0, 0x1C, 0x70, 0x1E, 0x38, 0x0E, + 0x1E, 0x07, 0x07, 0x07, 0xFF, 0x83, 0xFF, 0xE3, 0xFF, 0xF1, 0xC0, 0x38, 0xE0, 0x1E, 0xF0, 0x07, + 0x70, 0x03, 0xC0, 0x00, 0x00, 0x30, 0x00, 0x1C, 0x00, 0x0E, 0x00, 0x07, 0x00, 0x1E, 0x0F, 0xF1, + 0xFF, 0x00, 0xE0, 0x1C, 0x01, 0xCF, 0xFB, 0xFF, 0xF1, 0xFC, 0x1F, 0x83, 0xF0, 0x7F, 0xFE, 0xFF, + 0xC3, 0xC0, 0x20, 0x0E, 0x01, 0xC0, 0x38, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0xF8, 0x00, 0x3C, + 0x00, 0x1C, 0x00, 0x0C, 0x00, 0x07, 0x00, 0x07, 0x80, 0x03, 0xE0, 0x01, 0xF0, 0x01, 0xFC, 0x00, + 0xEE, 0x00, 0xE7, 0x00, 0x71, 0xC0, 0x78, 0xE0, 0x38, 0x78, 0x1C, 0x1C, 0x1F, 0xFE, 0x0F, 0xFF, + 0x8F, 0xFF, 0xC7, 0x00, 0xE3, 0x80, 0x7B, 0xC0, 0x1D, 0xC0, 0x0F, 0x1E, 0x03, 0xE0, 0x1C, 0x07, + 0x80, 0xE0, 0x3C, 0x1F, 0xE3, 0xFE, 0x01, 0xC0, 0x38, 0x03, 0x9F, 0xF7, 0xFF, 0xE3, 0xF8, 0x3F, + 0x07, 0xE0, 0xFF, 0xFD, 0xFF, 0x87, 0x80, 0x00, 0x06, 0x00, 0x07, 0x80, 0x03, 0x80, 0x33, 0x80, + 0x3D, 0x80, 0x3F, 0x00, 0x1D, 0xC0, 0x08, 0x40, 0x01, 0xC0, 0x01, 0xE0, 0x00, 0xF8, 0x00, 0x7C, + 0x00, 0x7F, 0x00, 0x3B, 0x80, 0x39, 0xC0, 0x1C, 0x70, 0x1E, 0x38, 0x0E, 0x1E, 0x07, 0x07, 0x07, + 0xFF, 0x83, 0xFF, 0xE3, 0xFF, 0xF1, 0xC0, 0x38, 0xE0, 0x1E, 0xF0, 0x07, 0x70, 0x03, 0xC0, 0x00, + 0x00, 0x01, 0x80, 0x1E, 0x00, 0xE0, 0xEE, 0x0F, 0xE0, 0xFE, 0x07, 0x70, 0x10, 0x00, 0xF0, 0x1F, + 0xE0, 0xFF, 0x80, 0x1C, 0x00, 0xE0, 0x03, 0x87, 0xFC, 0x7F, 0xE7, 0x8F, 0x38, 0x39, 0xC1, 0xCE, + 0x0E, 0x7F, 0xF1, 0xFF, 0x81, 0xE0, 0x00, 0x60, 0x00, 0x78, 0x00, 0x1C, 0x00, 0x37, 0x00, 0x3D, + 0x80, 0x3F, 0x00, 0x1D, 0xC0, 0x08, 0x40, 0x01, 0xC0, 0x01, 0xE0, 0x00, 0xF8, 0x00, 0x7C, 0x00, 0x7F, 0x00, 0x3B, 0x80, 0x39, 0xC0, 0x1C, 0x70, 0x1E, 0x38, 0x0E, 0x1E, 0x07, 0x07, 0x07, 0xFF, 0x83, 0xFF, 0xE3, 0xFF, 0xF1, 0xC0, 0x38, 0xE0, 0x1E, 0xF0, 0x07, 0x70, 0x03, 0xC0, 0x00, 0x00, - 0x30, 0x00, 0x1C, 0x00, 0x0E, 0x00, 0x07, 0x00, 0x1E, 0x0F, 0xF1, 0xFF, 0x00, 0xE0, 0x1C, 0x01, - 0xCF, 0xFB, 0xFF, 0xF1, 0xFC, 0x1F, 0x83, 0xF0, 0x7F, 0xFE, 0xFF, 0xC3, 0xC0, 0x20, 0x0E, 0x01, - 0xC0, 0x38, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0xF8, 0x00, 0x3C, 0x00, 0x1C, 0x00, 0x0C, 0x00, - 0x07, 0x00, 0x07, 0x80, 0x03, 0xE0, 0x01, 0xF0, 0x01, 0xFC, 0x00, 0xEE, 0x00, 0xE7, 0x00, 0x71, - 0xC0, 0x78, 0xE0, 0x38, 0x78, 0x1C, 0x1C, 0x1F, 0xFE, 0x0F, 0xFF, 0x8F, 0xFF, 0xC7, 0x00, 0xE3, - 0x80, 0x7B, 0xC0, 0x1D, 0xC0, 0x0F, 0x1E, 0x03, 0xE0, 0x1C, 0x07, 0x80, 0xE0, 0x3C, 0x1F, 0xE3, - 0xFE, 0x01, 0xC0, 0x38, 0x03, 0x9F, 0xF7, 0xFF, 0xE3, 0xF8, 0x3F, 0x07, 0xE0, 0xFF, 0xFD, 0xFF, - 0x87, 0x80, 0x00, 0x06, 0x00, 0x07, 0x80, 0x03, 0x80, 0x33, 0x80, 0x3D, 0x80, 0x3F, 0x00, 0x1D, - 0xC0, 0x08, 0x40, 0x01, 0xC0, 0x01, 0xE0, 0x00, 0xF8, 0x00, 0x7C, 0x00, 0x7F, 0x00, 0x3B, 0x80, - 0x39, 0xC0, 0x1C, 0x70, 0x1E, 0x38, 0x0E, 0x1E, 0x07, 0x07, 0x07, 0xFF, 0x83, 0xFF, 0xE3, 0xFF, - 0xF1, 0xC0, 0x38, 0xE0, 0x1E, 0xF0, 0x07, 0x70, 0x03, 0xC0, 0x00, 0x00, 0x01, 0x80, 0x1E, 0x00, - 0xE0, 0xEE, 0x0F, 0xE0, 0xFE, 0x07, 0x70, 0x10, 0x00, 0xF0, 0x1F, 0xE0, 0xFF, 0x80, 0x1C, 0x00, - 0xE0, 0x03, 0x87, 0xFC, 0x7F, 0xE7, 0x8F, 0x38, 0x39, 0xC1, 0xCE, 0x0E, 0x7F, 0xF1, 0xFF, 0x81, - 0xE0, 0x00, 0x60, 0x00, 0x78, 0x00, 0x1C, 0x00, 0x37, 0x00, 0x3D, 0x80, 0x3F, 0x00, 0x1D, 0xC0, - 0x08, 0x40, 0x01, 0xC0, 0x01, 0xE0, 0x00, 0xF8, 0x00, 0x7C, 0x00, 0x7F, 0x00, 0x3B, 0x80, 0x39, - 0xC0, 0x1C, 0x70, 0x1E, 0x38, 0x0E, 0x1E, 0x07, 0x07, 0x07, 0xFF, 0x83, 0xFF, 0xE3, 0xFF, 0xF1, - 0xC0, 0x38, 0xE0, 0x1E, 0xF0, 0x07, 0x70, 0x03, 0xC0, 0x00, 0x00, 0x60, 0x1E, 0x01, 0xE0, 0xFC, - 0x3F, 0x8F, 0xE1, 0xDC, 0x10, 0x03, 0xC1, 0xFE, 0x3F, 0xE0, 0x1C, 0x03, 0x80, 0x39, 0xFF, 0x7F, - 0xFE, 0x3F, 0x83, 0xF0, 0x7E, 0x0F, 0xFF, 0xDF, 0xF8, 0x78, 0x00, 0x38, 0x00, 0x3E, 0x00, 0x0F, - 0x80, 0x03, 0x80, 0x19, 0x80, 0x1E, 0xC0, 0x1F, 0x80, 0x0E, 0xE0, 0x04, 0x20, 0x00, 0xE0, 0x00, - 0xF0, 0x00, 0x7C, 0x00, 0x3E, 0x00, 0x3F, 0x80, 0x1D, 0xC0, 0x1C, 0xE0, 0x0E, 0x38, 0x0F, 0x1C, - 0x07, 0x0F, 0x03, 0x83, 0x83, 0xFF, 0xC1, 0xFF, 0xF1, 0xFF, 0xF8, 0xE0, 0x1C, 0x70, 0x0F, 0x78, - 0x03, 0xB8, 0x01, 0xE0, 0x01, 0xC0, 0x1F, 0x01, 0xF0, 0x0F, 0x0E, 0xE1, 0xFC, 0x3F, 0x83, 0xB8, - 0x10, 0x01, 0xE0, 0x7F, 0x87, 0xFC, 0x01, 0xC0, 0x1C, 0x00, 0xE3, 0xFE, 0x7F, 0xEF, 0x1E, 0xE0, - 0xEE, 0x0E, 0xE0, 0xEF, 0xFE, 0x7F, 0xE0, 0xF0, 0x07, 0xB8, 0x07, 0xF8, 0x03, 0xFC, 0x00, 0x00, - 0x00, 0x18, 0x00, 0x1E, 0x00, 0x1F, 0x80, 0x0E, 0xE0, 0x04, 0x20, 0x00, 0xE0, 0x00, 0xF0, 0x00, - 0x7C, 0x00, 0x3E, 0x00, 0x3F, 0x80, 0x1D, 0xC0, 0x1C, 0xE0, 0x0E, 0x38, 0x0F, 0x1C, 0x07, 0x0F, - 0x03, 0x83, 0x83, 0xFF, 0xC1, 0xFF, 0xF1, 0xFF, 0xF8, 0xE0, 0x1C, 0x70, 0x0F, 0x78, 0x03, 0xB8, - 0x01, 0xE0, 0x1C, 0xC7, 0xF9, 0xFE, 0x00, 0x00, 0xE0, 0x3E, 0x0F, 0xE1, 0xDC, 0x10, 0x03, 0xC1, - 0xFE, 0x3F, 0xE0, 0x1C, 0x03, 0x80, 0x39, 0xFF, 0x7F, 0xFE, 0x3F, 0x83, 0xF0, 0x7E, 0x0F, 0xFF, - 0xDF, 0xF8, 0x78, 0x00, 0x00, 0x00, 0xC0, 0x00, 0xF0, 0x00, 0xFC, 0x00, 0x77, 0x00, 0x21, 0x00, - 0x07, 0x00, 0x07, 0x80, 0x03, 0xE0, 0x01, 0xF0, 0x01, 0xFC, 0x00, 0xEE, 0x00, 0xE7, 0x00, 0x71, - 0xC0, 0x78, 0xE0, 0x38, 0x78, 0x1C, 0x1C, 0x1F, 0xFE, 0x0F, 0xFF, 0x8F, 0xFF, 0xC7, 0x00, 0xE3, - 0x80, 0x7B, 0xC0, 0x1D, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x70, 0x00, 0x38, 0x00, 0x1C, - 0x00, 0x00, 0x01, 0xC0, 0x7C, 0x1F, 0xC3, 0xB8, 0x20, 0x07, 0x83, 0xFC, 0x7F, 0xC0, 0x38, 0x07, - 0x00, 0x73, 0xFE, 0xFF, 0xFC, 0x7F, 0x07, 0xE0, 0xFC, 0x1F, 0xFF, 0xBF, 0xF0, 0xF0, 0x08, 0x03, - 0x80, 0x70, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x1C, 0x00, 0x1C, 0x00, 0x1C, 0x00, 0x35, - 0x80, 0x19, 0xC0, 0x0F, 0xC0, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x70, 0x00, 0x78, 0x00, 0x3E, 0x00, - 0x1F, 0x00, 0x1F, 0xC0, 0x0E, 0xE0, 0x0E, 0x70, 0x07, 0x1C, 0x07, 0x8E, 0x03, 0x87, 0x81, 0xC1, - 0xC1, 0xFF, 0xE0, 0xFF, 0xF8, 0xFF, 0xFC, 0x70, 0x0E, 0x38, 0x07, 0xBC, 0x01, 0xDC, 0x00, 0xF0, - 0x00, 0x00, 0x70, 0x0E, 0x03, 0x80, 0xE0, 0x6B, 0x0E, 0xE0, 0xFC, 0x0F, 0x00, 0x00, 0x78, 0x3F, - 0xC7, 0xFC, 0x03, 0x80, 0x70, 0x07, 0x3F, 0xEF, 0xFF, 0xC7, 0xF0, 0x7E, 0x0F, 0xC1, 0xFF, 0xFB, - 0xFF, 0x0F, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0xC0, 0x00, 0x70, 0x00, 0x1C, 0x00, 0x35, 0x80, - 0x19, 0xC0, 0x0F, 0xC0, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x70, 0x00, 0x78, 0x00, 0x3E, 0x00, 0x1F, - 0x00, 0x1F, 0xC0, 0x0E, 0xE0, 0x0E, 0x70, 0x07, 0x1C, 0x07, 0x8E, 0x03, 0x87, 0x81, 0xC1, 0xC1, - 0xFF, 0xE0, 0xFF, 0xF8, 0xFF, 0xFC, 0x70, 0x0E, 0x38, 0x07, 0xBC, 0x01, 0xDC, 0x00, 0xF0, 0x00, - 0x07, 0x00, 0xF0, 0x0E, 0x00, 0xE0, 0x6B, 0x0E, 0xE0, 0xFC, 0x0F, 0x00, 0x00, 0x78, 0x3F, 0xC7, - 0xFC, 0x03, 0x80, 0x70, 0x07, 0x3F, 0xEF, 0xFF, 0xC7, 0xF0, 0x7E, 0x0F, 0xC1, 0xFF, 0xFB, 0xFF, - 0x0F, 0x00, 0x03, 0xC0, 0x01, 0xF0, 0x00, 0x38, 0x00, 0x38, 0x00, 0x7B, 0x00, 0x33, 0x80, 0x1F, - 0x80, 0x07, 0x80, 0x00, 0x00, 0x00, 0xE0, 0x00, 0xF0, 0x00, 0x7C, 0x00, 0x3E, 0x00, 0x3F, 0x80, - 0x1D, 0xC0, 0x1C, 0xE0, 0x0E, 0x38, 0x0F, 0x1C, 0x07, 0x0F, 0x03, 0x83, 0x83, 0xFF, 0xC1, 0xFF, - 0xF1, 0xFF, 0xF8, 0xE0, 0x1C, 0x70, 0x0F, 0x78, 0x03, 0xB8, 0x01, 0xE0, 0x04, 0x03, 0xE0, 0x7C, - 0x03, 0x80, 0xE0, 0x7B, 0x0E, 0xE0, 0xFC, 0x0F, 0x00, 0x00, 0x78, 0x3F, 0xC7, 0xFC, 0x03, 0x80, - 0x70, 0x07, 0x3F, 0xEF, 0xFF, 0xC7, 0xF0, 0x7E, 0x0F, 0xC1, 0xFF, 0xFB, 0xFF, 0x0F, 0x00, 0x00, - 0x00, 0x03, 0xFC, 0x03, 0xFC, 0x01, 0x9C, 0x00, 0x63, 0x00, 0x33, 0x80, 0x1F, 0x80, 0x07, 0x80, - 0x00, 0x00, 0x00, 0xE0, 0x00, 0xF0, 0x00, 0x7C, 0x00, 0x3E, 0x00, 0x3F, 0x80, 0x1D, 0xC0, 0x1C, + 0x60, 0x1E, 0x01, 0xE0, 0xFC, 0x3F, 0x8F, 0xE1, 0xDC, 0x10, 0x03, 0xC1, 0xFE, 0x3F, 0xE0, 0x1C, + 0x03, 0x80, 0x39, 0xFF, 0x7F, 0xFE, 0x3F, 0x83, 0xF0, 0x7E, 0x0F, 0xFF, 0xDF, 0xF8, 0x78, 0x00, + 0x38, 0x00, 0x3E, 0x00, 0x0F, 0x80, 0x03, 0x80, 0x19, 0x80, 0x1E, 0xC0, 0x1F, 0x80, 0x0E, 0xE0, + 0x04, 0x20, 0x00, 0xE0, 0x00, 0xF0, 0x00, 0x7C, 0x00, 0x3E, 0x00, 0x3F, 0x80, 0x1D, 0xC0, 0x1C, 0xE0, 0x0E, 0x38, 0x0F, 0x1C, 0x07, 0x0F, 0x03, 0x83, 0x83, 0xFF, 0xC1, 0xFF, 0xF1, 0xFF, 0xF8, - 0xE0, 0x1C, 0x70, 0x0F, 0x78, 0x03, 0xB8, 0x01, 0xE0, 0x18, 0x87, 0xF9, 0xFE, 0x11, 0x83, 0x18, - 0x77, 0x07, 0xE0, 0x78, 0x00, 0x03, 0xC1, 0xFE, 0x3F, 0xE0, 0x1C, 0x03, 0x80, 0x39, 0xFF, 0x7F, - 0xFE, 0x3F, 0x83, 0xF0, 0x7E, 0x0F, 0xFF, 0xDF, 0xF8, 0x78, 0x06, 0x30, 0x03, 0x38, 0x01, 0xF8, - 0x00, 0x78, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x0F, 0x00, 0x07, 0xC0, 0x03, 0xE0, 0x03, 0xF8, 0x01, - 0xDC, 0x01, 0xCE, 0x00, 0xE3, 0x80, 0xF1, 0xC0, 0x70, 0xF0, 0x38, 0x38, 0x3F, 0xFC, 0x1F, 0xFF, - 0x1F, 0xFF, 0x8E, 0x01, 0xC7, 0x00, 0xF7, 0x80, 0x3B, 0x80, 0x1E, 0x00, 0x00, 0x01, 0x80, 0x00, - 0xE0, 0x00, 0x70, 0x00, 0x38, 0x00, 0x31, 0x87, 0x70, 0xFE, 0x07, 0x80, 0x00, 0x3C, 0x1F, 0xE3, - 0xFE, 0x01, 0xC0, 0x38, 0x03, 0x9F, 0xF7, 0xFF, 0xE3, 0xF8, 0x3F, 0x07, 0xE0, 0xFF, 0xFD, 0xFF, - 0x87, 0x80, 0x40, 0x1C, 0x03, 0x80, 0x70, 0xFF, 0xEF, 0xFE, 0xFF, 0xEE, 0x00, 0xE0, 0x0E, 0x00, - 0xE0, 0x0E, 0x00, 0xFF, 0xCF, 0xFC, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xFF, - 0xFF, 0xFF, 0x00, 0x00, 0xC0, 0x1E, 0x01, 0xE0, 0x0C, 0x00, 0x07, 0x01, 0xFC, 0x3F, 0xE7, 0x8E, - 0xF0, 0xFE, 0x07, 0xFF, 0xFF, 0xFF, 0xFF, 0xEE, 0x00, 0xF0, 0x07, 0x82, 0x3F, 0xE1, 0xFE, 0x07, - 0x80, 0x60, 0x0F, 0x00, 0xF0, 0x06, 0x00, 0x04, 0x01, 0xF0, 0x1F, 0x00, 0x70, 0x0E, 0x00, 0x60, + 0xE0, 0x1C, 0x70, 0x0F, 0x78, 0x03, 0xB8, 0x01, 0xE0, 0x01, 0xC0, 0x1F, 0x01, 0xF0, 0x0F, 0x0E, + 0xE1, 0xFC, 0x3F, 0x83, 0xB8, 0x10, 0x01, 0xE0, 0x7F, 0x87, 0xFC, 0x01, 0xC0, 0x1C, 0x00, 0xE3, + 0xFE, 0x7F, 0xEF, 0x1E, 0xE0, 0xEE, 0x0E, 0xE0, 0xEF, 0xFE, 0x7F, 0xE0, 0xF0, 0x07, 0xB8, 0x07, + 0xF8, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x18, 0x00, 0x1E, 0x00, 0x1F, 0x80, 0x0E, 0xE0, 0x04, 0x20, + 0x00, 0xE0, 0x00, 0xF0, 0x00, 0x7C, 0x00, 0x3E, 0x00, 0x3F, 0x80, 0x1D, 0xC0, 0x1C, 0xE0, 0x0E, + 0x38, 0x0F, 0x1C, 0x07, 0x0F, 0x03, 0x83, 0x83, 0xFF, 0xC1, 0xFF, 0xF1, 0xFF, 0xF8, 0xE0, 0x1C, + 0x70, 0x0F, 0x78, 0x03, 0xB8, 0x01, 0xE0, 0x1C, 0xC7, 0xF9, 0xFE, 0x00, 0x00, 0xE0, 0x3E, 0x0F, + 0xE1, 0xDC, 0x10, 0x03, 0xC1, 0xFE, 0x3F, 0xE0, 0x1C, 0x03, 0x80, 0x39, 0xFF, 0x7F, 0xFE, 0x3F, + 0x83, 0xF0, 0x7E, 0x0F, 0xFF, 0xDF, 0xF8, 0x78, 0x00, 0x00, 0x00, 0xC0, 0x00, 0xF0, 0x00, 0xFC, + 0x00, 0x77, 0x00, 0x21, 0x00, 0x07, 0x00, 0x07, 0x80, 0x03, 0xE0, 0x01, 0xF0, 0x01, 0xFC, 0x00, + 0xEE, 0x00, 0xE7, 0x00, 0x71, 0xC0, 0x78, 0xE0, 0x38, 0x78, 0x1C, 0x1C, 0x1F, 0xFE, 0x0F, 0xFF, + 0x8F, 0xFF, 0xC7, 0x00, 0xE3, 0x80, 0x7B, 0xC0, 0x1D, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xC0, 0x00, + 0x70, 0x00, 0x38, 0x00, 0x1C, 0x00, 0x00, 0x01, 0xC0, 0x7C, 0x1F, 0xC3, 0xB8, 0x20, 0x07, 0x83, + 0xFC, 0x7F, 0xC0, 0x38, 0x07, 0x00, 0x73, 0xFE, 0xFF, 0xFC, 0x7F, 0x07, 0xE0, 0xFC, 0x1F, 0xFF, + 0xBF, 0xF0, 0xF0, 0x08, 0x03, 0x80, 0x70, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x1C, 0x00, + 0x1C, 0x00, 0x1C, 0x00, 0x35, 0x80, 0x19, 0xC0, 0x0F, 0xC0, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x70, + 0x00, 0x78, 0x00, 0x3E, 0x00, 0x1F, 0x00, 0x1F, 0xC0, 0x0E, 0xE0, 0x0E, 0x70, 0x07, 0x1C, 0x07, + 0x8E, 0x03, 0x87, 0x81, 0xC1, 0xC1, 0xFF, 0xE0, 0xFF, 0xF8, 0xFF, 0xFC, 0x70, 0x0E, 0x38, 0x07, + 0xBC, 0x01, 0xDC, 0x00, 0xF0, 0x00, 0x00, 0x70, 0x0E, 0x03, 0x80, 0xE0, 0x6B, 0x0E, 0xE0, 0xFC, + 0x0F, 0x00, 0x00, 0x78, 0x3F, 0xC7, 0xFC, 0x03, 0x80, 0x70, 0x07, 0x3F, 0xEF, 0xFF, 0xC7, 0xF0, + 0x7E, 0x0F, 0xC1, 0xFF, 0xFB, 0xFF, 0x0F, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0xC0, 0x00, 0x70, + 0x00, 0x1C, 0x00, 0x35, 0x80, 0x19, 0xC0, 0x0F, 0xC0, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x70, 0x00, + 0x78, 0x00, 0x3E, 0x00, 0x1F, 0x00, 0x1F, 0xC0, 0x0E, 0xE0, 0x0E, 0x70, 0x07, 0x1C, 0x07, 0x8E, + 0x03, 0x87, 0x81, 0xC1, 0xC1, 0xFF, 0xE0, 0xFF, 0xF8, 0xFF, 0xFC, 0x70, 0x0E, 0x38, 0x07, 0xBC, + 0x01, 0xDC, 0x00, 0xF0, 0x00, 0x07, 0x00, 0xF0, 0x0E, 0x00, 0xE0, 0x6B, 0x0E, 0xE0, 0xFC, 0x0F, + 0x00, 0x00, 0x78, 0x3F, 0xC7, 0xFC, 0x03, 0x80, 0x70, 0x07, 0x3F, 0xEF, 0xFF, 0xC7, 0xF0, 0x7E, + 0x0F, 0xC1, 0xFF, 0xFB, 0xFF, 0x0F, 0x00, 0x03, 0xC0, 0x01, 0xF0, 0x00, 0x38, 0x00, 0x38, 0x00, + 0x7B, 0x00, 0x33, 0x80, 0x1F, 0x80, 0x07, 0x80, 0x00, 0x00, 0x00, 0xE0, 0x00, 0xF0, 0x00, 0x7C, + 0x00, 0x3E, 0x00, 0x3F, 0x80, 0x1D, 0xC0, 0x1C, 0xE0, 0x0E, 0x38, 0x0F, 0x1C, 0x07, 0x0F, 0x03, + 0x83, 0x83, 0xFF, 0xC1, 0xFF, 0xF1, 0xFF, 0xF8, 0xE0, 0x1C, 0x70, 0x0F, 0x78, 0x03, 0xB8, 0x01, + 0xE0, 0x04, 0x03, 0xE0, 0x7C, 0x03, 0x80, 0xE0, 0x7B, 0x0E, 0xE0, 0xFC, 0x0F, 0x00, 0x00, 0x78, + 0x3F, 0xC7, 0xFC, 0x03, 0x80, 0x70, 0x07, 0x3F, 0xEF, 0xFF, 0xC7, 0xF0, 0x7E, 0x0F, 0xC1, 0xFF, + 0xFB, 0xFF, 0x0F, 0x00, 0x00, 0x00, 0x03, 0xFC, 0x03, 0xFC, 0x01, 0x9C, 0x00, 0x63, 0x00, 0x33, + 0x80, 0x1F, 0x80, 0x07, 0x80, 0x00, 0x00, 0x00, 0xE0, 0x00, 0xF0, 0x00, 0x7C, 0x00, 0x3E, 0x00, + 0x3F, 0x80, 0x1D, 0xC0, 0x1C, 0xE0, 0x0E, 0x38, 0x0F, 0x1C, 0x07, 0x0F, 0x03, 0x83, 0x83, 0xFF, + 0xC1, 0xFF, 0xF1, 0xFF, 0xF8, 0xE0, 0x1C, 0x70, 0x0F, 0x78, 0x03, 0xB8, 0x01, 0xE0, 0x18, 0x87, + 0xF9, 0xFE, 0x11, 0x83, 0x18, 0x77, 0x07, 0xE0, 0x78, 0x00, 0x03, 0xC1, 0xFE, 0x3F, 0xE0, 0x1C, + 0x03, 0x80, 0x39, 0xFF, 0x7F, 0xFE, 0x3F, 0x83, 0xF0, 0x7E, 0x0F, 0xFF, 0xDF, 0xF8, 0x78, 0x06, + 0x30, 0x03, 0x38, 0x01, 0xF8, 0x00, 0x78, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x0F, 0x00, 0x07, 0xC0, + 0x03, 0xE0, 0x03, 0xF8, 0x01, 0xDC, 0x01, 0xCE, 0x00, 0xE3, 0x80, 0xF1, 0xC0, 0x70, 0xF0, 0x38, + 0x38, 0x3F, 0xFC, 0x1F, 0xFF, 0x1F, 0xFF, 0x8E, 0x01, 0xC7, 0x00, 0xF7, 0x80, 0x3B, 0x80, 0x1E, + 0x00, 0x00, 0x01, 0x80, 0x00, 0xE0, 0x00, 0x70, 0x00, 0x38, 0x00, 0x31, 0x87, 0x70, 0xFE, 0x07, + 0x80, 0x00, 0x3C, 0x1F, 0xE3, 0xFE, 0x01, 0xC0, 0x38, 0x03, 0x9F, 0xF7, 0xFF, 0xE3, 0xF8, 0x3F, + 0x07, 0xE0, 0xFF, 0xFD, 0xFF, 0x87, 0x80, 0x40, 0x1C, 0x03, 0x80, 0x70, 0xFF, 0xEF, 0xFE, 0xFF, + 0xEE, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xFF, 0xCF, 0xFC, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, + 0x00, 0xE0, 0x0E, 0x00, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0xC0, 0x1E, 0x01, 0xE0, 0x0C, 0x00, 0x07, + 0x01, 0xFC, 0x3F, 0xE7, 0x8E, 0xF0, 0xFE, 0x07, 0xFF, 0xFF, 0xFF, 0xFF, 0xEE, 0x00, 0xF0, 0x07, + 0x82, 0x3F, 0xE1, 0xFE, 0x07, 0x80, 0x60, 0x0F, 0x00, 0xF0, 0x06, 0x00, 0x04, 0x01, 0xF0, 0x1F, + 0x00, 0x70, 0x0E, 0x00, 0x60, 0xFF, 0xEF, 0xFE, 0xFF, 0xEE, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, + 0x00, 0xFF, 0xCF, 0xFC, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xFF, 0xFF, 0xFF, + 0x1F, 0x01, 0xF8, 0x03, 0x80, 0x70, 0x06, 0x00, 0x70, 0x1F, 0xC3, 0xFE, 0x78, 0xEF, 0x0F, 0xE0, + 0x7F, 0xFF, 0xFF, 0xFF, 0xFE, 0xE0, 0x0F, 0x00, 0x78, 0x23, 0xFE, 0x1F, 0xE0, 0x78, 0x1C, 0xC3, + 0xFC, 0x7F, 0x80, 0x00, 0x00, 0x0F, 0xFE, 0xFF, 0xEF, 0xFE, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, + 0xE0, 0x0F, 0xFC, 0xFF, 0xCE, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0F, 0xFF, 0xFF, + 0xF0, 0x08, 0x03, 0xFC, 0x3F, 0xC3, 0x38, 0x00, 0x00, 0x70, 0x1F, 0xC3, 0xFE, 0x78, 0xEF, 0x0F, + 0xE0, 0x7F, 0xFF, 0xFF, 0xFF, 0xFE, 0xE0, 0x0F, 0x00, 0x78, 0x23, 0xFE, 0x1F, 0xE0, 0x78, 0x00, + 0x30, 0x03, 0xC0, 0x1C, 0x1D, 0xC1, 0xFC, 0x1F, 0x80, 0xEE, 0x06, 0x20, 0xFF, 0xE7, 0xFF, 0x3F, + 0xF9, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, 0xFF, 0xC7, 0xFE, 0x38, 0x01, 0xC0, 0x0E, + 0x00, 0x70, 0x03, 0x80, 0x1C, 0x00, 0xFF, 0xF7, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x60, 0x03, 0x80, + 0x1C, 0x06, 0xE0, 0x3D, 0x01, 0xF8, 0x06, 0x70, 0x10, 0x80, 0x1C, 0x01, 0xFC, 0x0F, 0xF8, 0x78, + 0xE3, 0xC3, 0xCE, 0x07, 0x3F, 0xFC, 0xFF, 0xF3, 0xFF, 0x8E, 0x00, 0x3C, 0x00, 0x78, 0x20, 0xFF, + 0x81, 0xFE, 0x01, 0xE0, 0x03, 0x00, 0x78, 0x03, 0x80, 0xFC, 0x1E, 0xC3, 0xF0, 0x3B, 0x83, 0x10, 0xFF, 0xEF, 0xFE, 0xFF, 0xEE, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xFF, 0xCF, 0xFC, 0xE0, - 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xFF, 0xFF, 0xFF, 0x1F, 0x01, 0xF8, 0x03, 0x80, - 0x70, 0x06, 0x00, 0x70, 0x1F, 0xC3, 0xFE, 0x78, 0xEF, 0x0F, 0xE0, 0x7F, 0xFF, 0xFF, 0xFF, 0xFE, - 0xE0, 0x0F, 0x00, 0x78, 0x23, 0xFE, 0x1F, 0xE0, 0x78, 0x1C, 0xC3, 0xFC, 0x7F, 0x80, 0x00, 0x00, - 0x0F, 0xFE, 0xFF, 0xEF, 0xFE, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0F, 0xFC, 0xFF, 0xCE, - 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0F, 0xFF, 0xFF, 0xF0, 0x08, 0x03, 0xFC, 0x3F, - 0xC3, 0x38, 0x00, 0x00, 0x70, 0x1F, 0xC3, 0xFE, 0x78, 0xEF, 0x0F, 0xE0, 0x7F, 0xFF, 0xFF, 0xFF, - 0xFE, 0xE0, 0x0F, 0x00, 0x78, 0x23, 0xFE, 0x1F, 0xE0, 0x78, 0x00, 0x30, 0x03, 0xC0, 0x1C, 0x1D, - 0xC1, 0xFC, 0x1F, 0x80, 0xEE, 0x06, 0x20, 0xFF, 0xE7, 0xFF, 0x3F, 0xF9, 0xC0, 0x0E, 0x00, 0x70, - 0x03, 0x80, 0x1C, 0x00, 0xFF, 0xC7, 0xFE, 0x38, 0x01, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0x80, 0x1C, - 0x00, 0xFF, 0xF7, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x60, 0x03, 0x80, 0x1C, 0x06, 0xE0, 0x3D, 0x01, - 0xF8, 0x06, 0x70, 0x10, 0x80, 0x1C, 0x01, 0xFC, 0x0F, 0xF8, 0x78, 0xE3, 0xC3, 0xCE, 0x07, 0x3F, - 0xFC, 0xFF, 0xF3, 0xFF, 0x8E, 0x00, 0x3C, 0x00, 0x78, 0x20, 0xFF, 0x81, 0xFE, 0x01, 0xE0, 0x03, - 0x00, 0x78, 0x03, 0x80, 0xFC, 0x1E, 0xC3, 0xF0, 0x3B, 0x83, 0x10, 0xFF, 0xEF, 0xFE, 0xFF, 0xEE, - 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xFF, 0xCF, 0xFC, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, - 0xE0, 0x0E, 0x00, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x38, 0x03, 0x80, 0x1C, 0x06, 0xE0, 0xF4, 0x1F, - 0x81, 0x9C, 0x10, 0x80, 0x70, 0x1F, 0xC3, 0xFE, 0x78, 0xEF, 0x0F, 0xE0, 0x7F, 0xFF, 0xFF, 0xFF, - 0xFE, 0xE0, 0x0F, 0x00, 0x78, 0x23, 0xFE, 0x1F, 0xE0, 0x78, 0x00, 0x00, 0x3E, 0x01, 0xF0, 0x0F, - 0x0E, 0xE1, 0xEC, 0x3F, 0x03, 0xB8, 0x31, 0x0F, 0xFE, 0xFF, 0xEF, 0xFE, 0xE0, 0x0E, 0x00, 0xE0, - 0x0E, 0x00, 0xE0, 0x0F, 0xFC, 0xFF, 0xCE, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0F, - 0xFF, 0xFF, 0xF0, 0x00, 0xE0, 0x07, 0x80, 0x2E, 0x00, 0xF0, 0x66, 0x07, 0xB0, 0x7E, 0x03, 0x38, - 0x10, 0x80, 0x38, 0x07, 0xF0, 0x7F, 0xC7, 0x8E, 0x78, 0x7B, 0x81, 0xDF, 0xFE, 0xFF, 0xF7, 0xFF, - 0x38, 0x01, 0xE0, 0x07, 0x82, 0x1F, 0xF0, 0x7F, 0x80, 0xF0, 0x3C, 0xC7, 0xFC, 0x7F, 0x80, 0x00, - 0x0E, 0x01, 0xE0, 0x3F, 0x03, 0xB8, 0x31, 0x0F, 0xFE, 0xFF, 0xEF, 0xFE, 0xE0, 0x0E, 0x00, 0xE0, - 0x0E, 0x00, 0xE0, 0x0F, 0xFC, 0xFF, 0xCE, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0F, - 0xFF, 0xFF, 0xF0, 0x00, 0x01, 0xEC, 0x3F, 0xC3, 0x38, 0x00, 0x00, 0x60, 0x0F, 0x01, 0xF8, 0x19, - 0xC1, 0x08, 0x07, 0x01, 0xFC, 0x3F, 0xE7, 0x8E, 0xF0, 0xFE, 0x07, 0xFF, 0xFF, 0xFF, 0xFF, 0xEE, - 0x00, 0xF0, 0x07, 0x82, 0x3F, 0xE1, 0xFE, 0x07, 0x80, 0x00, 0x00, 0xE0, 0x1E, 0x03, 0xF0, 0x3B, - 0x83, 0x10, 0xFF, 0xEF, 0xFE, 0xFF, 0xEE, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xFF, 0xCF, - 0xFC, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0xC0, - 0x1E, 0x01, 0xE0, 0x0C, 0x00, 0x00, 0x00, 0x60, 0x0F, 0x01, 0xF8, 0x19, 0xC1, 0x08, 0x07, 0x01, - 0xFC, 0x3F, 0xE7, 0x8E, 0xF0, 0xFE, 0x07, 0xFF, 0xFF, 0xFF, 0xFF, 0xEE, 0x00, 0xF0, 0x07, 0x82, - 0x3F, 0xE1, 0xFE, 0x07, 0x80, 0x60, 0x0F, 0x00, 0xF0, 0x06, 0x00, 0x07, 0xBE, 0x77, 0x31, 0xCE, - 0x73, 0x9C, 0xE7, 0x39, 0xCE, 0x73, 0x9C, 0xE7, 0x39, 0xCE, 0xF7, 0xCE, 0xF6, 0x01, 0xCE, 0x73, - 0x9C, 0xE7, 0x39, 0xCE, 0x73, 0x9C, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x06, - 0x77, 0x70, 0x6F, 0xF6, 0x00, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x70, 0x6F, 0xF6, 0x03, 0xF0, - 0x07, 0xFE, 0x07, 0xFF, 0x87, 0x83, 0xE7, 0x80, 0x73, 0x80, 0x3F, 0xC0, 0x0F, 0xE0, 0x07, 0xE0, - 0x03, 0xF0, 0x01, 0xF8, 0x00, 0xFE, 0x00, 0x77, 0x00, 0x3B, 0x80, 0x3D, 0xE0, 0x3C, 0x7C, 0x3C, - 0x1F, 0xFE, 0x07, 0xFC, 0x00, 0x78, 0x00, 0x18, 0x00, 0x1C, 0x00, 0x0F, 0x00, 0x07, 0x00, 0x07, - 0x00, 0xFE, 0x0F, 0xF8, 0xF1, 0xEF, 0x07, 0x70, 0x3F, 0x80, 0xFC, 0x07, 0xE0, 0x3F, 0x03, 0xFC, - 0x1C, 0xF1, 0xE3, 0xFE, 0x0F, 0xE0, 0x1C, 0x00, 0xC0, 0x07, 0x00, 0x38, 0x01, 0xC0, 0x00, 0x00, - 0x01, 0xF0, 0x00, 0xF8, 0x00, 0x1C, 0x00, 0x1E, 0x00, 0x0E, 0x00, 0x0F, 0xC0, 0x1F, 0xF8, 0x1F, - 0xFE, 0x1E, 0x0F, 0x9E, 0x01, 0xCE, 0x00, 0xFF, 0x00, 0x3F, 0x80, 0x1F, 0x80, 0x0F, 0xC0, 0x07, - 0xE0, 0x03, 0xF8, 0x01, 0xDC, 0x00, 0xEE, 0x00, 0xF7, 0x80, 0xF1, 0xF0, 0xF0, 0x7F, 0xF8, 0x1F, - 0xF0, 0x01, 0xE0, 0x00, 0x0F, 0x00, 0x7C, 0x00, 0xE0, 0x0F, 0x00, 0x60, 0x03, 0x80, 0x7F, 0x07, - 0xFC, 0x78, 0xF7, 0x83, 0xB8, 0x1F, 0xC0, 0x7E, 0x03, 0xF0, 0x1F, 0x81, 0xFE, 0x0E, 0x78, 0xF1, - 0xFF, 0x07, 0xF0, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0xC0, 0x01, 0xC0, 0x0D, 0xC0, - 0x0F, 0xC0, 0x0F, 0xC0, 0x0E, 0xE0, 0x02, 0x10, 0x01, 0xF8, 0x03, 0xFF, 0x03, 0xFF, 0xC3, 0xC1, - 0xF3, 0xC0, 0x39, 0xC0, 0x1F, 0xE0, 0x07, 0xF0, 0x03, 0xF0, 0x01, 0xF8, 0x00, 0xFC, 0x00, 0x7F, - 0x00, 0x3B, 0x80, 0x1D, 0xC0, 0x1E, 0xF0, 0x1E, 0x3E, 0x1E, 0x0F, 0xFF, 0x03, 0xFE, 0x00, 0x3C, - 0x00, 0x00, 0x00, 0x00, 0x60, 0x03, 0x80, 0x1E, 0x07, 0xF0, 0x3F, 0x81, 0xF8, 0x07, 0x70, 0x00, - 0x80, 0x1C, 0x01, 0xFC, 0x0F, 0xF8, 0x78, 0xF3, 0xC1, 0xCE, 0x07, 0xB8, 0x0E, 0xE0, 0x3B, 0x80, - 0xEE, 0x07, 0xBC, 0x1C, 0x78, 0xF0, 0xFF, 0x81, 0xFC, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x30, 0x00, - 0x3C, 0x00, 0x0F, 0x00, 0x0F, 0x80, 0x0F, 0xC0, 0x0F, 0xC0, 0x0E, 0xE0, 0x02, 0x10, 0x01, 0xF8, - 0x03, 0xFF, 0x03, 0xFF, 0xC3, 0xC1, 0xF3, 0xC0, 0x39, 0xC0, 0x1F, 0xE0, 0x07, 0xF0, 0x03, 0xF0, - 0x01, 0xF8, 0x00, 0xFC, 0x00, 0x7F, 0x00, 0x3B, 0x80, 0x1D, 0xC0, 0x1E, 0xF0, 0x1E, 0x3E, 0x1E, - 0x0F, 0xFF, 0x03, 0xFE, 0x00, 0x3C, 0x00, 0x01, 0x00, 0x1C, 0x00, 0xF0, 0x03, 0xC0, 0x7E, 0x07, - 0xC0, 0x7E, 0x03, 0xB8, 0x00, 0x80, 0x38, 0x07, 0xF0, 0x7F, 0xC7, 0x8F, 0x78, 0x3B, 0x81, 0xFC, - 0x07, 0xE0, 0x3F, 0x01, 0xF8, 0x1F, 0xE0, 0xE7, 0x8F, 0x1F, 0xF0, 0x7F, 0x00, 0xE0, 0x00, 0x18, - 0x00, 0x1F, 0x00, 0x0F, 0x80, 0x03, 0xC0, 0x0D, 0xC0, 0x0F, 0xC0, 0x0F, 0xC0, 0x0E, 0xE0, 0x02, - 0x10, 0x01, 0xF8, 0x03, 0xFF, 0x03, 0xFF, 0xC3, 0xC1, 0xF3, 0xC0, 0x39, 0xC0, 0x1F, 0xE0, 0x07, - 0xF0, 0x03, 0xF0, 0x01, 0xF8, 0x00, 0xFC, 0x00, 0x7F, 0x00, 0x3B, 0x80, 0x1D, 0xC0, 0x1E, 0xF0, - 0x1E, 0x3E, 0x1E, 0x0F, 0xFF, 0x03, 0xFE, 0x00, 0x3C, 0x00, 0x00, 0xF0, 0x07, 0xC0, 0x1E, 0x0E, - 0xE0, 0xFE, 0x0F, 0xC0, 0x77, 0x00, 0x10, 0x07, 0x00, 0xFE, 0x0F, 0xF8, 0xF1, 0xEF, 0x07, 0x70, - 0x3F, 0x80, 0xFC, 0x07, 0xE0, 0x3F, 0x03, 0xFC, 0x1C, 0xF1, 0xE3, 0xFE, 0x0F, 0xE0, 0x1C, 0x00, - 0x01, 0x10, 0x03, 0xFC, 0x03, 0xFC, 0x00, 0x8C, 0x00, 0x0C, 0x00, 0x0F, 0x00, 0x0F, 0xC0, 0x0E, + 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x38, 0x03, 0x80, + 0x1C, 0x06, 0xE0, 0xF4, 0x1F, 0x81, 0x9C, 0x10, 0x80, 0x70, 0x1F, 0xC3, 0xFE, 0x78, 0xEF, 0x0F, + 0xE0, 0x7F, 0xFF, 0xFF, 0xFF, 0xFE, 0xE0, 0x0F, 0x00, 0x78, 0x23, 0xFE, 0x1F, 0xE0, 0x78, 0x00, + 0x00, 0x3E, 0x01, 0xF0, 0x0F, 0x0E, 0xE1, 0xEC, 0x3F, 0x03, 0xB8, 0x31, 0x0F, 0xFE, 0xFF, 0xEF, + 0xFE, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0F, 0xFC, 0xFF, 0xCE, 0x00, 0xE0, 0x0E, 0x00, + 0xE0, 0x0E, 0x00, 0xE0, 0x0F, 0xFF, 0xFF, 0xF0, 0x00, 0xE0, 0x07, 0x80, 0x2E, 0x00, 0xF0, 0x66, + 0x07, 0xB0, 0x7E, 0x03, 0x38, 0x10, 0x80, 0x38, 0x07, 0xF0, 0x7F, 0xC7, 0x8E, 0x78, 0x7B, 0x81, + 0xDF, 0xFE, 0xFF, 0xF7, 0xFF, 0x38, 0x01, 0xE0, 0x07, 0x82, 0x1F, 0xF0, 0x7F, 0x80, 0xF0, 0x3C, + 0xC7, 0xFC, 0x7F, 0x80, 0x00, 0x0E, 0x01, 0xE0, 0x3F, 0x03, 0xB8, 0x31, 0x0F, 0xFE, 0xFF, 0xEF, + 0xFE, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0F, 0xFC, 0xFF, 0xCE, 0x00, 0xE0, 0x0E, 0x00, + 0xE0, 0x0E, 0x00, 0xE0, 0x0F, 0xFF, 0xFF, 0xF0, 0x00, 0x01, 0xEC, 0x3F, 0xC3, 0x38, 0x00, 0x00, + 0x60, 0x0F, 0x01, 0xF8, 0x19, 0xC1, 0x08, 0x07, 0x01, 0xFC, 0x3F, 0xE7, 0x8E, 0xF0, 0xFE, 0x07, + 0xFF, 0xFF, 0xFF, 0xFF, 0xEE, 0x00, 0xF0, 0x07, 0x82, 0x3F, 0xE1, 0xFE, 0x07, 0x80, 0x00, 0x00, + 0xE0, 0x1E, 0x03, 0xF0, 0x3B, 0x83, 0x10, 0xFF, 0xEF, 0xFE, 0xFF, 0xEE, 0x00, 0xE0, 0x0E, 0x00, + 0xE0, 0x0E, 0x00, 0xFF, 0xCF, 0xFC, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xFF, + 0xFF, 0xFF, 0x00, 0x00, 0xC0, 0x1E, 0x01, 0xE0, 0x0C, 0x00, 0x00, 0x00, 0x60, 0x0F, 0x01, 0xF8, + 0x19, 0xC1, 0x08, 0x07, 0x01, 0xFC, 0x3F, 0xE7, 0x8E, 0xF0, 0xFE, 0x07, 0xFF, 0xFF, 0xFF, 0xFF, + 0xEE, 0x00, 0xF0, 0x07, 0x82, 0x3F, 0xE1, 0xFE, 0x07, 0x80, 0x60, 0x0F, 0x00, 0xF0, 0x06, 0x00, + 0x07, 0xBE, 0x77, 0x31, 0xCE, 0x73, 0x9C, 0xE7, 0x39, 0xCE, 0x73, 0x9C, 0xE7, 0x39, 0xCE, 0xF7, + 0xCE, 0xF6, 0x01, 0xCE, 0x73, 0x9C, 0xE7, 0x39, 0xCE, 0x73, 0x9C, 0x77, 0x77, 0x77, 0x77, 0x77, + 0x77, 0x77, 0x77, 0x77, 0x06, 0x77, 0x70, 0x6F, 0xF6, 0x00, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, + 0x70, 0x6F, 0xF6, 0x03, 0xF0, 0x07, 0xFE, 0x07, 0xFF, 0x87, 0x83, 0xE7, 0x80, 0x73, 0x80, 0x3F, + 0xC0, 0x0F, 0xE0, 0x07, 0xE0, 0x03, 0xF0, 0x01, 0xF8, 0x00, 0xFE, 0x00, 0x77, 0x00, 0x3B, 0x80, + 0x3D, 0xE0, 0x3C, 0x7C, 0x3C, 0x1F, 0xFE, 0x07, 0xFC, 0x00, 0x78, 0x00, 0x18, 0x00, 0x1C, 0x00, + 0x0F, 0x00, 0x07, 0x00, 0x07, 0x00, 0xFE, 0x0F, 0xF8, 0xF1, 0xEF, 0x07, 0x70, 0x3F, 0x80, 0xFC, + 0x07, 0xE0, 0x3F, 0x03, 0xFC, 0x1C, 0xF1, 0xE3, 0xFE, 0x0F, 0xE0, 0x1C, 0x00, 0xC0, 0x07, 0x00, + 0x38, 0x01, 0xC0, 0x00, 0x00, 0x01, 0xF0, 0x00, 0xF8, 0x00, 0x1C, 0x00, 0x1E, 0x00, 0x0E, 0x00, + 0x0F, 0xC0, 0x1F, 0xF8, 0x1F, 0xFE, 0x1E, 0x0F, 0x9E, 0x01, 0xCE, 0x00, 0xFF, 0x00, 0x3F, 0x80, + 0x1F, 0x80, 0x0F, 0xC0, 0x07, 0xE0, 0x03, 0xF8, 0x01, 0xDC, 0x00, 0xEE, 0x00, 0xF7, 0x80, 0xF1, + 0xF0, 0xF0, 0x7F, 0xF8, 0x1F, 0xF0, 0x01, 0xE0, 0x00, 0x0F, 0x00, 0x7C, 0x00, 0xE0, 0x0F, 0x00, + 0x60, 0x03, 0x80, 0x7F, 0x07, 0xFC, 0x78, 0xF7, 0x83, 0xB8, 0x1F, 0xC0, 0x7E, 0x03, 0xF0, 0x1F, + 0x81, 0xFE, 0x0E, 0x78, 0xF1, 0xFF, 0x07, 0xF0, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, + 0xC0, 0x01, 0xC0, 0x0D, 0xC0, 0x0F, 0xC0, 0x0F, 0xC0, 0x0E, 0xE0, 0x02, 0x10, 0x01, 0xF8, 0x03, + 0xFF, 0x03, 0xFF, 0xC3, 0xC1, 0xF3, 0xC0, 0x39, 0xC0, 0x1F, 0xE0, 0x07, 0xF0, 0x03, 0xF0, 0x01, + 0xF8, 0x00, 0xFC, 0x00, 0x7F, 0x00, 0x3B, 0x80, 0x1D, 0xC0, 0x1E, 0xF0, 0x1E, 0x3E, 0x1E, 0x0F, + 0xFF, 0x03, 0xFE, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x60, 0x03, 0x80, 0x1E, 0x07, 0xF0, 0x3F, + 0x81, 0xF8, 0x07, 0x70, 0x00, 0x80, 0x1C, 0x01, 0xFC, 0x0F, 0xF8, 0x78, 0xF3, 0xC1, 0xCE, 0x07, + 0xB8, 0x0E, 0xE0, 0x3B, 0x80, 0xEE, 0x07, 0xBC, 0x1C, 0x78, 0xF0, 0xFF, 0x81, 0xFC, 0x01, 0xC0, + 0x00, 0x00, 0x00, 0x30, 0x00, 0x3C, 0x00, 0x0F, 0x00, 0x0F, 0x80, 0x0F, 0xC0, 0x0F, 0xC0, 0x0E, 0xE0, 0x02, 0x10, 0x01, 0xF8, 0x03, 0xFF, 0x03, 0xFF, 0xC3, 0xC1, 0xF3, 0xC0, 0x39, 0xC0, 0x1F, 0xE0, 0x07, 0xF0, 0x03, 0xF0, 0x01, 0xF8, 0x00, 0xFC, 0x00, 0x7F, 0x00, 0x3B, 0x80, 0x1D, 0xC0, - 0x1E, 0xF0, 0x1E, 0x3E, 0x1E, 0x0F, 0xFF, 0x03, 0xFE, 0x00, 0x3C, 0x00, 0x0C, 0x40, 0xFF, 0x0F, - 0xF0, 0x20, 0x00, 0x70, 0x07, 0xC0, 0x7E, 0x03, 0xB8, 0x00, 0x80, 0x38, 0x07, 0xF0, 0x7F, 0xC7, + 0x1E, 0xF0, 0x1E, 0x3E, 0x1E, 0x0F, 0xFF, 0x03, 0xFE, 0x00, 0x3C, 0x00, 0x01, 0x00, 0x1C, 0x00, + 0xF0, 0x03, 0xC0, 0x7E, 0x07, 0xC0, 0x7E, 0x03, 0xB8, 0x00, 0x80, 0x38, 0x07, 0xF0, 0x7F, 0xC7, 0x8F, 0x78, 0x3B, 0x81, 0xFC, 0x07, 0xE0, 0x3F, 0x01, 0xF8, 0x1F, 0xE0, 0xE7, 0x8F, 0x1F, 0xF0, - 0x7F, 0x00, 0xE0, 0x00, 0x80, 0x00, 0xE0, 0x00, 0xF8, 0x00, 0xFE, 0x00, 0x73, 0x00, 0x00, 0x00, - 0x0F, 0xC0, 0x1F, 0xF8, 0x1F, 0xFE, 0x1E, 0x0F, 0x9E, 0x01, 0xCE, 0x00, 0xFF, 0x00, 0x3F, 0x80, - 0x1F, 0x80, 0x0F, 0xC0, 0x07, 0xE0, 0x03, 0xF8, 0x01, 0xDC, 0x00, 0xEE, 0x00, 0xF7, 0x80, 0xF1, - 0xF0, 0xF0, 0x7F, 0xF8, 0x1F, 0xF0, 0x01, 0xE0, 0x00, 0x60, 0x00, 0x70, 0x00, 0x3C, 0x00, 0x1C, - 0x00, 0x00, 0x00, 0x38, 0x03, 0xE0, 0x3F, 0x01, 0xDC, 0x00, 0x40, 0x1C, 0x03, 0xF8, 0x3F, 0xE3, - 0xC7, 0xBC, 0x1D, 0xC0, 0xFE, 0x03, 0xF0, 0x1F, 0x80, 0xFC, 0x0F, 0xF0, 0x73, 0xC7, 0x8F, 0xF8, - 0x3F, 0x80, 0x70, 0x03, 0x00, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x0F, - 0x00, 0x07, 0x80, 0x01, 0xC3, 0x80, 0x20, 0xE0, 0x3F, 0x38, 0x3F, 0xFE, 0x1F, 0xFF, 0x0F, 0x07, - 0xC7, 0x80, 0x71, 0xC0, 0x1E, 0xF0, 0x03, 0xBC, 0x00, 0xEE, 0x00, 0x3B, 0x80, 0x0E, 0xE0, 0x03, - 0xBC, 0x00, 0xE7, 0x00, 0x39, 0xC0, 0x1E, 0x78, 0x0F, 0x0F, 0x87, 0x81, 0xFF, 0xE0, 0x3F, 0xE0, - 0x01, 0xE0, 0x00, 0x00, 0x00, 0x06, 0x00, 0x38, 0x01, 0xC0, 0x06, 0x1C, 0x10, 0x70, 0x71, 0xC7, - 0xFE, 0x3F, 0xF9, 0xE3, 0xCF, 0x07, 0x38, 0x1E, 0xE0, 0x3B, 0x80, 0xEE, 0x03, 0xB8, 0x1E, 0xF0, - 0x71, 0xE3, 0xC3, 0xFE, 0x07, 0xF0, 0x07, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x38, 0x00, 0x07, - 0x00, 0x00, 0xE3, 0x80, 0x10, 0xE0, 0x3F, 0x38, 0x3F, 0xFE, 0x1F, 0xFF, 0x0F, 0x07, 0xC7, 0x80, - 0x71, 0xC0, 0x1E, 0xF0, 0x03, 0xBC, 0x00, 0xEE, 0x00, 0x3B, 0x80, 0x0E, 0xE0, 0x03, 0xBC, 0x00, - 0xE7, 0x00, 0x39, 0xC0, 0x1E, 0x78, 0x0F, 0x0F, 0x87, 0x81, 0xFF, 0xE0, 0x3F, 0xE0, 0x01, 0xE0, - 0x00, 0x08, 0x00, 0x70, 0x01, 0xE0, 0x03, 0xC0, 0x07, 0x1C, 0x08, 0x70, 0x71, 0xC7, 0xFE, 0x3F, - 0xF9, 0xE3, 0xCF, 0x07, 0x38, 0x1E, 0xE0, 0x3B, 0x80, 0xEE, 0x03, 0xB8, 0x1E, 0xF0, 0x71, 0xE3, - 0xC3, 0xFE, 0x07, 0xF0, 0x07, 0x00, 0x00, 0x00, 0x00, 0xF8, 0x00, 0x3E, 0x00, 0x03, 0x80, 0x01, - 0xE3, 0x80, 0x70, 0xE0, 0x3F, 0x38, 0x3F, 0xFE, 0x1F, 0xFF, 0x0F, 0x07, 0xC7, 0x80, 0x71, 0xC0, - 0x1E, 0xF0, 0x03, 0xBC, 0x00, 0xEE, 0x00, 0x3B, 0x80, 0x0E, 0xE0, 0x03, 0xBC, 0x00, 0xE7, 0x00, - 0x39, 0xC0, 0x1E, 0x78, 0x0F, 0x0F, 0x87, 0x81, 0xFF, 0xE0, 0x3F, 0xE0, 0x01, 0xE0, 0x00, 0x0F, - 0x00, 0x3E, 0x00, 0x38, 0x01, 0xE7, 0x06, 0x1C, 0x1C, 0x71, 0xFF, 0x8F, 0xFE, 0x78, 0xF3, 0xC1, - 0xCE, 0x07, 0xB8, 0x0E, 0xE0, 0x3B, 0x80, 0xEE, 0x07, 0xBC, 0x1C, 0x78, 0xF0, 0xFF, 0x81, 0xFC, - 0x01, 0xC0, 0x00, 0x00, 0x01, 0xFE, 0x00, 0x7F, 0x80, 0x11, 0xCE, 0x00, 0x03, 0x80, 0xFC, 0xE0, - 0xFF, 0xF8, 0x7F, 0xFC, 0x3C, 0x1F, 0x1E, 0x01, 0xC7, 0x00, 0x7B, 0xC0, 0x0E, 0xF0, 0x03, 0xB8, - 0x00, 0xEE, 0x00, 0x3B, 0x80, 0x0E, 0xF0, 0x03, 0x9C, 0x00, 0xE7, 0x00, 0x79, 0xE0, 0x3C, 0x3E, - 0x1E, 0x07, 0xFF, 0x80, 0xFF, 0x80, 0x07, 0x80, 0x00, 0x40, 0x7F, 0x83, 0xFC, 0x0C, 0x67, 0x00, - 0x1C, 0x1C, 0x71, 0xFF, 0x8F, 0xFE, 0x78, 0xF3, 0xC1, 0xCE, 0x07, 0xB8, 0x0E, 0xE0, 0x3B, 0x80, - 0xEE, 0x07, 0xBC, 0x1C, 0x78, 0xF0, 0xFF, 0x81, 0xFC, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0xE0, - 0x00, 0x38, 0x0F, 0xCE, 0x0F, 0xFF, 0x87, 0xFF, 0xC3, 0xC1, 0xF1, 0xE0, 0x1C, 0x70, 0x07, 0xBC, - 0x00, 0xEF, 0x00, 0x3B, 0x80, 0x0E, 0xE0, 0x03, 0xB8, 0x00, 0xEF, 0x00, 0x39, 0xC0, 0x0E, 0x70, - 0x07, 0x9E, 0x03, 0xC3, 0xE1, 0xE0, 0x7F, 0xF8, 0x0F, 0xF8, 0x00, 0x78, 0x00, 0x0C, 0x00, 0x07, - 0x00, 0x01, 0xE0, 0x00, 0x70, 0x00, 0x00, 0x1C, 0x00, 0x70, 0x71, 0xC7, 0xFE, 0x3F, 0xF9, 0xE3, - 0xCF, 0x07, 0x38, 0x1E, 0xE0, 0x3B, 0x80, 0xEE, 0x03, 0xB8, 0x1E, 0xF0, 0x71, 0xE3, 0xC3, 0xFE, - 0x07, 0xF0, 0x07, 0x00, 0x18, 0x00, 0x70, 0x01, 0xC0, 0x07, 0x00, 0xE0, 0x1B, 0x80, 0xFE, 0x03, - 0xF8, 0x0F, 0xE0, 0x3F, 0x80, 0xFE, 0x03, 0xF8, 0x0F, 0xE0, 0x3F, 0x80, 0xFE, 0x03, 0xF8, 0x0F, - 0xE0, 0x3B, 0x80, 0xEF, 0x03, 0x9E, 0x3E, 0x7F, 0xF0, 0xFF, 0x80, 0x78, 0x00, 0xC0, 0x07, 0x00, - 0x1C, 0x00, 0x70, 0x00, 0xF0, 0x7F, 0x07, 0xF0, 0x7F, 0x07, 0xF0, 0x7F, 0x07, 0xF0, 0x7F, 0x07, - 0x70, 0x77, 0x07, 0x78, 0x73, 0xFF, 0x3F, 0xF0, 0x78, 0x06, 0x00, 0xF0, 0x0F, 0x00, 0x60, 0x00, - 0x00, 0x3E, 0x00, 0xF8, 0x00, 0xE0, 0x07, 0x80, 0x1C, 0x0E, 0x01, 0xB8, 0x0F, 0xE0, 0x3F, 0x80, - 0xFE, 0x03, 0xF8, 0x0F, 0xE0, 0x3F, 0x80, 0xFE, 0x03, 0xF8, 0x0F, 0xE0, 0x3F, 0x80, 0xFE, 0x03, - 0xB8, 0x0E, 0xF0, 0x39, 0xE3, 0xE7, 0xFF, 0x0F, 0xF8, 0x07, 0x80, 0x0F, 0x00, 0xF8, 0x03, 0x80, - 0x70, 0x06, 0x00, 0x00, 0xF0, 0x7F, 0x07, 0xF0, 0x7F, 0x07, 0xF0, 0x7F, 0x07, 0xF0, 0x7F, 0x07, - 0x70, 0x77, 0x07, 0x78, 0x73, 0xFF, 0x3F, 0xF0, 0x78, 0x00, 0x00, 0x00, 0xC0, 0x00, 0xF0, 0x00, - 0xF0, 0x00, 0x70, 0x38, 0x30, 0x1F, 0x80, 0x7D, 0xC0, 0x7E, 0xE0, 0x3C, 0x70, 0x1E, 0x38, 0x0F, - 0x1C, 0x07, 0x8E, 0x03, 0xC7, 0x01, 0xE3, 0x80, 0xF1, 0xC0, 0x78, 0xE0, 0x3C, 0x70, 0x1E, 0x38, - 0x0E, 0x1C, 0x07, 0x0F, 0x03, 0x83, 0xC7, 0xC1, 0xFF, 0xC0, 0x7F, 0xC0, 0x07, 0x80, 0x00, 0x01, - 0x00, 0x07, 0x00, 0x0E, 0x00, 0x38, 0x00, 0xE0, 0xE0, 0x81, 0xC0, 0x07, 0xF8, 0x3E, 0xF0, 0x79, - 0xE0, 0xE3, 0xC1, 0xC7, 0x83, 0x8F, 0x07, 0x1E, 0x0E, 0x3C, 0x1C, 0x38, 0x38, 0x70, 0x70, 0xF0, - 0xE0, 0xFF, 0xC1, 0xFF, 0x80, 0x78, 0x00, 0x00, 0x00, 0x06, 0x00, 0x07, 0x80, 0x01, 0xE0, 0x00, - 0x70, 0x38, 0x08, 0x1F, 0x80, 0x7D, 0xC0, 0x7E, 0xE0, 0x3C, 0x70, 0x1E, 0x38, 0x0F, 0x1C, 0x07, - 0x8E, 0x03, 0xC7, 0x01, 0xE3, 0x80, 0xF1, 0xC0, 0x78, 0xE0, 0x3C, 0x70, 0x1E, 0x38, 0x0E, 0x1C, - 0x07, 0x0F, 0x03, 0x83, 0xC7, 0xC1, 0xFF, 0xC0, 0x7F, 0xC0, 0x07, 0x80, 0x00, 0x08, 0x00, 0x38, - 0x00, 0x78, 0x00, 0x70, 0x00, 0x70, 0xE0, 0x41, 0xC0, 0x07, 0xF8, 0x3E, 0xF0, 0x79, 0xE0, 0xE3, - 0xC1, 0xC7, 0x83, 0x8F, 0x07, 0x1E, 0x0E, 0x3C, 0x1C, 0x38, 0x38, 0x70, 0x70, 0xF0, 0xE0, 0xFF, - 0xC1, 0xFF, 0x80, 0x78, 0x00, 0x00, 0x00, 0x07, 0xC0, 0x03, 0xE0, 0x00, 0x70, 0x00, 0x78, 0x38, - 0x38, 0x1F, 0x80, 0x7D, 0xC0, 0x7E, 0xE0, 0x3C, 0x70, 0x1E, 0x38, 0x0F, 0x1C, 0x07, 0x8E, 0x03, - 0xC7, 0x01, 0xE3, 0x80, 0xF1, 0xC0, 0x78, 0xE0, 0x3C, 0x70, 0x1E, 0x38, 0x0E, 0x1C, 0x07, 0x0F, - 0x03, 0x83, 0xC7, 0xC1, 0xFF, 0xC0, 0x7F, 0xC0, 0x07, 0x80, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x0E, - 0x00, 0x38, 0x70, 0x60, 0xE0, 0x03, 0xFC, 0x1F, 0x78, 0x3C, 0xF0, 0x71, 0xE0, 0xE3, 0xC1, 0xC7, - 0x83, 0x8F, 0x07, 0x1E, 0x0E, 0x1C, 0x1C, 0x38, 0x38, 0x78, 0x70, 0x7F, 0xE0, 0xFF, 0xC0, 0x3C, - 0x00, 0x00, 0x00, 0x0F, 0xF0, 0x0F, 0xF0, 0x02, 0x30, 0x70, 0x00, 0x3F, 0x00, 0xFB, 0x80, 0xFD, - 0xC0, 0x78, 0xE0, 0x3C, 0x70, 0x1E, 0x38, 0x0F, 0x1C, 0x07, 0x8E, 0x03, 0xC7, 0x01, 0xE3, 0x80, - 0xF1, 0xC0, 0x78, 0xE0, 0x3C, 0x70, 0x1C, 0x38, 0x0E, 0x1E, 0x07, 0x07, 0x8F, 0x83, 0xFF, 0x80, - 0xFF, 0x80, 0x0F, 0x00, 0x08, 0x40, 0x3F, 0x80, 0xFF, 0x01, 0x9C, 0x70, 0x00, 0xE0, 0x03, 0xFC, - 0x1F, 0x78, 0x3C, 0xF0, 0x71, 0xE0, 0xE3, 0xC1, 0xC7, 0x83, 0x8F, 0x07, 0x1E, 0x0E, 0x1C, 0x1C, - 0x38, 0x38, 0x78, 0x70, 0x7F, 0xE0, 0xFF, 0xC0, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, - 0xFC, 0x03, 0xEE, 0x03, 0xF7, 0x01, 0xE3, 0x80, 0xF1, 0xC0, 0x78, 0xE0, 0x3C, 0x70, 0x1E, 0x38, - 0x0F, 0x1C, 0x07, 0x8E, 0x03, 0xC7, 0x01, 0xE3, 0x80, 0xF1, 0xC0, 0x70, 0xE0, 0x38, 0x78, 0x1C, - 0x1E, 0x3E, 0x0F, 0xFE, 0x03, 0xFE, 0x00, 0x3C, 0x00, 0x0C, 0x00, 0x0E, 0x00, 0x07, 0x00, 0x03, - 0x80, 0x00, 0x00, 0x0E, 0x00, 0x1C, 0x00, 0x7F, 0x83, 0xEF, 0x07, 0x9E, 0x0E, 0x3C, 0x1C, 0x78, - 0x38, 0xF0, 0x71, 0xE0, 0xE3, 0xC1, 0xC3, 0x83, 0x87, 0x07, 0x0F, 0x0E, 0x0F, 0xFC, 0x1F, 0xF8, - 0x07, 0x80, 0x0C, 0x00, 0x3C, 0x00, 0x78, 0x00, 0x60, 0x00, 0x06, 0x00, 0x1E, 0x00, 0x1C, 0x00, - 0x1C, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x78, 0x0F, 0x70, 0x1C, 0xF0, 0x78, 0xE0, 0xE1, 0xE3, - 0xC1, 0xEF, 0x01, 0xDC, 0x03, 0xF8, 0x03, 0xE0, 0x03, 0x80, 0x07, 0x00, 0x0E, 0x00, 0x1C, 0x00, - 0x38, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xC0, 0x0C, 0x01, 0xE0, 0x0E, 0x00, 0x70, 0x03, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xE0, 0x7F, 0x07, 0x70, 0x77, 0x0E, 0x78, 0xE3, 0x8E, 0x38, 0xC1, 0xDC, 0x1D, - 0xC1, 0xF8, 0x0F, 0x80, 0xF8, 0x07, 0x00, 0x70, 0x07, 0x09, 0xE0, 0xFC, 0x0F, 0x80, 0xE0, 0x0F, - 0xE0, 0x3D, 0xC0, 0x73, 0xC1, 0xE3, 0x83, 0x87, 0x8E, 0x07, 0x9C, 0x07, 0x70, 0x0F, 0xE0, 0x0F, - 0x80, 0x0E, 0x00, 0x1C, 0x00, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xC0, 0x03, 0x80, 0x07, 0x00, - 0x00, 0x00, 0x08, 0x00, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x00, 0xE0, 0x7F, 0x07, 0x70, 0x77, 0x0E, - 0x78, 0xE3, 0x8E, 0x39, 0xE1, 0xDC, 0x1D, 0xC1, 0xF8, 0x0F, 0x80, 0xF8, 0x07, 0x00, 0x70, 0x0E, - 0x2F, 0xE7, 0xFC, 0x7F, 0x87, 0x00, 0x00, 0x0F, 0x80, 0x1F, 0x00, 0x0E, 0x00, 0x38, 0x00, 0x60, - 0x38, 0x03, 0xF8, 0x0F, 0x70, 0x1C, 0xF0, 0x78, 0xE0, 0xE1, 0xE3, 0x81, 0xE7, 0x01, 0xDC, 0x03, - 0xF8, 0x03, 0xE0, 0x03, 0x80, 0x07, 0x00, 0x0E, 0x00, 0x1C, 0x00, 0x38, 0x00, 0x70, 0x00, 0xE0, - 0x01, 0xC0, 0x0F, 0x00, 0xF8, 0x03, 0x80, 0x70, 0x06, 0x00, 0x00, 0xE0, 0x7F, 0x07, 0x70, 0x77, - 0x0E, 0x78, 0xE3, 0x8E, 0x39, 0xE1, 0xDC, 0x1D, 0xC1, 0xF8, 0x0F, 0x80, 0xF8, 0x07, 0x00, 0x70, - 0x0E, 0x0F, 0xE0, 0xFC, 0x0F, 0x80, 0x06, 0x30, 0x1F, 0xE0, 0x7F, 0x80, 0x00, 0x00, 0x00, 0x1C, - 0x01, 0xFC, 0x07, 0xB8, 0x0E, 0x78, 0x3C, 0x70, 0x70, 0xF1, 0xC0, 0xF3, 0x80, 0xEE, 0x01, 0xFC, - 0x01, 0xF0, 0x01, 0xC0, 0x03, 0x80, 0x07, 0x00, 0x0E, 0x00, 0x1C, 0x00, 0x38, 0x00, 0x70, 0x00, - 0xE0, 0x00, 0x08, 0x41, 0xFE, 0x3F, 0xC3, 0x38, 0x00, 0x00, 0x00, 0xE0, 0x7F, 0x07, 0x70, 0x77, - 0x0E, 0x78, 0xE3, 0x8E, 0x39, 0xE1, 0xDC, 0x1D, 0xC1, 0xF8, 0x0F, 0x80, 0xF8, 0x07, 0x00, 0x70, - 0x0E, 0x0F, 0xE0, 0xFC, 0x0F, 0x80, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x87, 0x37, 0x8C, 0x7B, 0xF3, - 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x00, 0x00, 0x30, 0x37, 0xEC, 0xDB, 0x30, - 0x60, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x06, 0x00, 0x00, 0x61, 0x83, 0xF6, - 0x66, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0xFF, 0xFF, - 0x7F, 0xFD, 0xFF, 0xF0, 0x7F, 0xFF, 0xFF, 0xDF, 0xFF, 0xFF, 0xF0, 0x7F, 0xFF, 0xFF, 0xDF, 0xFF, - 0xFF, 0xF0, 0x33, 0x9D, 0xEE, 0x70, 0x7B, 0xDC, 0xE7, 0x30, 0x7B, 0xDC, 0xE7, 0x30, 0x33, 0xB9, - 0xDD, 0xDE, 0xEE, 0x77, 0x38, 0x7B, 0xBD, 0xDC, 0xEE, 0x77, 0x73, 0x38, 0x7B, 0xBD, 0xDC, 0xEE, - 0x77, 0x73, 0x38, 0x06, 0x00, 0xC0, 0x18, 0x03, 0x00, 0x60, 0xFF, 0xDF, 0xF8, 0x30, 0x06, 0x00, - 0xC0, 0x18, 0x03, 0x00, 0x60, 0x0C, 0x01, 0x80, 0x30, 0x06, 0x00, 0xC0, 0x18, 0x03, 0x00, 0x60, - 0x06, 0x00, 0xC0, 0x18, 0x03, 0x00, 0x60, 0xFF, 0xDF, 0xF8, 0x30, 0x06, 0x00, 0xC0, 0x18, 0x03, - 0x07, 0xFE, 0xFF, 0xC1, 0x80, 0x30, 0x06, 0x00, 0xC0, 0x18, 0x03, 0x00, 0x60, 0x7D, 0xFF, 0xFF, - 0xFF, 0xEF, 0x80, 0xF0, 0x70, 0x77, 0x87, 0x83, 0xFC, 0x1C, 0x1C, 0x3E, 0x07, 0x00, 0x03, 0xF8, - 0x70, 0x00, 0x3D, 0xC3, 0x80, 0x01, 0xC6, 0x38, 0x00, 0x0E, 0x3B, 0xC0, 0x00, 0x71, 0xDC, 0x00, - 0x03, 0x8D, 0xC0, 0x00, 0x1E, 0xEE, 0xF8, 0x7C, 0x7F, 0xEF, 0xE7, 0xF1, 0xF7, 0xF7, 0x3B, 0x80, - 0x77, 0x1B, 0x8E, 0x07, 0xB8, 0xFC, 0x70, 0x39, 0xC7, 0xE3, 0x83, 0x8E, 0x37, 0x1C, 0x1C, 0x7B, - 0x9D, 0xC1, 0xC1, 0xFC, 0xFE, 0x0E, 0x07, 0xC3, 0xE0, 0x0C, 0x38, 0xF1, 0xC7, 0x8E, 0x1E, 0x1C, - 0x3C, 0x38, 0x30, 0xC3, 0x87, 0x1E, 0x38, 0xF3, 0x9E, 0x73, 0x8C, 0x00, 0x00, 0x38, 0x03, 0x80, - 0x1C, 0x01, 0xC0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0x70, 0x07, 0x00, 0x38, 0x03, 0x80, 0x1C, 0x01, - 0xC0, 0x1C, 0x00, 0xE0, 0x0E, 0x00, 0x70, 0x00, 0x3E, 0x3F, 0x9D, 0xDC, 0x6E, 0x3F, 0x1F, 0x8C, - 0xEE, 0x7F, 0x1F, 0x00, 0x07, 0x07, 0x87, 0xC7, 0xE7, 0x73, 0x3B, 0xFF, 0xFF, 0x07, 0x03, 0x80, - 0x7E, 0xFD, 0x87, 0xEF, 0xE3, 0xC1, 0xE7, 0xFF, 0xF8, 0x0F, 0x1F, 0x9F, 0x0F, 0xC7, 0xF3, 0xB9, - 0x8E, 0xEE, 0x7F, 0x1F, 0x00, 0x7F, 0x3F, 0x81, 0xC1, 0xC0, 0xE0, 0xE0, 0x70, 0x30, 0x38, 0x1C, - 0x00, 0x3E, 0x3F, 0x9D, 0xCE, 0xE7, 0xE3, 0xF9, 0x8D, 0xEE, 0x7F, 0x1F, 0x00, 0x3E, 0x3F, 0x9D, - 0xDC, 0x67, 0xF1, 0xF8, 0x1C, 0x3E, 0x7E, 0x3C, 0x00, 0x3E, 0x3F, 0x9D, 0xDC, 0x6E, 0x3F, 0x1F, - 0x8C, 0xEE, 0x7F, 0x1F, 0x00, 0x3B, 0xFF, 0xF1, 0x8C, 0x63, 0x18, 0xC0, 0x7E, 0x7F, 0x67, 0x07, - 0x0E, 0x1C, 0x38, 0x70, 0x7F, 0x7F, 0x7E, 0x7E, 0x6F, 0x3E, 0x3E, 0x0F, 0x07, 0x67, 0x7F, 0x7E, - 0x07, 0x07, 0x87, 0xC7, 0xE7, 0x73, 0x3B, 0xFF, 0xFF, 0x07, 0x03, 0x80, 0x7E, 0xFD, 0x87, 0xEF, - 0xE3, 0xC1, 0xE7, 0xFF, 0xF8, 0x0F, 0x1F, 0x9F, 0x0F, 0xC7, 0xF3, 0xB9, 0x8E, 0xEE, 0x7F, 0x1F, - 0x00, 0x7F, 0x3F, 0x81, 0xC1, 0xC0, 0xE0, 0xE0, 0x70, 0x30, 0x38, 0x1C, 0x00, 0x3E, 0x3F, 0x9D, - 0xCE, 0xE7, 0xE3, 0xF9, 0x8D, 0xEE, 0x7F, 0x1F, 0x00, 0x3E, 0x3F, 0x9D, 0xDC, 0x67, 0xF1, 0xF8, - 0x1C, 0x3E, 0x7E, 0x3C, 0x00, 0xFF, 0xC7, 0xFF, 0xE7, 0xE0, 0xE7, 0xE0, 0x67, 0xE6, 0x67, 0xE6, - 0x67, 0xE6, 0x67, 0xE6, 0x67, 0xE6, 0x67, 0xE6, 0x67, 0xE6, 0x67, 0xE6, 0x07, 0xE6, 0x1F, 0xE7, - 0xFE, 0xE7, 0xFC, 0x07, 0xF8, 0x7F, 0x87, 0xCC, 0x38, 0x03, 0x80, 0x7F, 0xF3, 0xFF, 0x87, 0x00, - 0x38, 0x07, 0xFE, 0x3F, 0xF0, 0x70, 0x03, 0xC0, 0x0E, 0x00, 0x7C, 0x61, 0xFF, 0x07, 0xF8, 0xFF, - 0xFF, 0xFF, 0xC1, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0xF0, 0x1F, 0x83, 0xF0, 0x7F, 0x03, 0xF8, 0x01, - 0xF8, 0x0F, 0xC1, 0xF8, 0x3F, 0x81, 0xFC, 0x00, 0xE0, 0x07, 0x00, 0x1F, 0xC0, 0x7F, 0xC1, 0x8F, - 0x00, 0x1C, 0x00, 0x71, 0xFF, 0xF7, 0xFF, 0xC0, 0xF8, 0x07, 0xC0, 0x7C, 0x07, 0xFF, 0xDF, 0xFF, - 0x38, 0x00, 0xE0, 0x03, 0xC7, 0x0F, 0xFE, 0x0F, 0xF0, 0xFF, 0xFF, 0xFF, 0xC0, 0xF0, 0x03, 0x8F, - 0xFF, 0x7F, 0xF8, 0x07, 0x00, 0xF8, 0xFF, 0x87, 0xF0, 0x1E, 0x00, 0x78, 0x01, 0xC0, 0x07, 0x00, - 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x7F, 0x83, 0xFE, 0x18, 0xF8, 0x01, 0xE0, 0x07, 0x00, 0x38, 0x01, - 0xC3, 0xFF, 0x3F, 0xFB, 0xE7, 0xFC, 0x1F, 0xC0, 0xFE, 0x07, 0x70, 0x3B, 0x81, 0xDC, 0x1C, 0xFB, - 0xE3, 0xFE, 0x0F, 0xE0, 0x03, 0xC0, 0x01, 0xE0, 0x01, 0xF8, 0x00, 0xFC, 0x00, 0x67, 0x00, 0x73, - 0x80, 0x38, 0xE0, 0x38, 0x70, 0x1C, 0x38, 0x1C, 0x0E, 0x0E, 0x07, 0x07, 0x03, 0xC7, 0x00, 0xE3, - 0x80, 0x71, 0xC0, 0x3D, 0xFF, 0xFE, 0xFF, 0xFF, 0x00, 0xFF, 0xFF, 0xFF, 0xFE, 0x03, 0xF8, 0x0F, - 0xE0, 0x3F, 0x80, 0xFE, 0x03, 0xF8, 0x0F, 0xE0, 0x3F, 0x80, 0xFE, 0x03, 0xF8, 0x0F, 0xE0, 0x3F, - 0x80, 0xFE, 0x03, 0xF8, 0x0F, 0xE0, 0x3F, 0x80, 0xFE, 0x03, 0xF8, 0x0F, 0xFF, 0xFF, 0xFF, 0xDC, - 0x00, 0x70, 0x03, 0xC0, 0x0E, 0x00, 0x38, 0x01, 0xE0, 0x07, 0x80, 0x1C, 0x01, 0xE0, 0x1E, 0x00, - 0xE0, 0x0F, 0x00, 0xF0, 0x07, 0x00, 0x78, 0x03, 0x80, 0x3F, 0xFF, 0xFF, 0xF0, 0xFF, 0xFF, 0xFF, - 0x00, 0x38, 0x03, 0x80, 0x1C, 0x01, 0xC0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0x70, 0x07, 0x00, 0x38, - 0x03, 0x80, 0x1C, 0x01, 0xC0, 0x1C, 0x00, 0xE0, 0x0E, 0x00, 0x70, 0x00, 0xFF, 0xF0, 0x00, 0x0E, - 0x00, 0x18, 0x00, 0x70, 0x00, 0xE0, 0x01, 0x80, 0x07, 0x00, 0x0E, 0x00, 0x1C, 0x00, 0x30, 0x00, - 0xE1, 0xE1, 0xC7, 0xC3, 0x0F, 0xCE, 0x03, 0x9C, 0x03, 0xB8, 0x07, 0x60, 0x07, 0xC0, 0x0F, 0x80, - 0x1E, 0x00, 0x1C, 0x00, 0x3C, 0xF9, 0xFF, 0xF7, 0x7D, 0xF8, 0xE3, 0x77, 0xDD, 0xFF, 0xF3, 0xEF, - 0x80, 0x07, 0x83, 0xE0, 0xF0, 0x78, 0x1C, 0x07, 0x01, 0xC0, 0x70, 0x1C, 0x07, 0x01, 0xC0, 0x70, - 0x1C, 0x07, 0x01, 0xC0, 0x70, 0x1C, 0x07, 0x01, 0xC0, 0x70, 0x1C, 0x1F, 0x0F, 0x83, 0xC0, 0x7C, - 0x3F, 0xF7, 0xEF, 0xFC, 0x3E, 0x00, 0x00, 0x00, 0x7C, 0x3F, 0xF7, 0xEF, 0xFC, 0x3E, 0x00, 0xC0, - 0x1C, 0x01, 0xCF, 0xFF, 0xFF, 0xF0, 0x70, 0x07, 0x00, 0xE0, 0xFF, 0xFF, 0xFF, 0x38, 0x03, 0x80, - 0x30, 0x00, 0x00, 0x70, 0x1F, 0x0F, 0xE3, 0xF8, 0xFC, 0x0F, 0x00, 0xFC, 0x03, 0xF8, 0x0F, 0xE0, - 0x1F, 0x00, 0x70, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xF0, 0xE0, 0x0F, 0x80, 0x7F, 0x00, 0xFC, 0x03, - 0xF0, 0x0F, 0x03, 0xF0, 0xFC, 0x7F, 0x0F, 0x80, 0xE0, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xF0, - 0x3F, 0x1F, 0xDF, 0xCF, 0xFF, 0x33, 0xCB, 0x80, 0xE0, 0xE0, 0x78, 0x38, 0x1C, 0x0F, 0xF7, 0xFB, - 0xFD, 0xFE, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x81, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, - 0x07, 0x03, 0x81, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x00, 0x3F, 0x03, 0xFB, 0xFC, 0x9F, - 0xC0, 0x0E, 0x00, 0x70, 0x03, 0xFD, 0xDF, 0xEE, 0xE0, 0x77, 0x03, 0xB8, 0x1D, 0xC0, 0xEE, 0x07, - 0x70, 0x3B, 0x81, 0xDC, 0x0E, 0xE0, 0x77, 0x03, 0xB8, 0x1C, 0x3F, 0x71, 0xFD, 0xCF, 0x27, 0x38, - 0x1C, 0xE0, 0x73, 0x81, 0xCF, 0xF7, 0x3F, 0xDC, 0xE0, 0x73, 0x81, 0xCE, 0x07, 0x38, 0x1C, 0xE0, - 0x73, 0x81, 0xCE, 0x07, 0x38, 0x1C, 0xE0, 0x7B, 0x80, 0xFE, 0x01, 0xC0, 0x3F, 0x1F, 0x80, 0xFE, - 0x7F, 0x3B, 0xCC, 0xF2, 0x77, 0x01, 0xC0, 0x0E, 0x07, 0x80, 0x1C, 0x0E, 0x00, 0x3F, 0xDF, 0xE7, - 0x7F, 0xBF, 0xCE, 0xE0, 0x70, 0x1D, 0xC0, 0xE0, 0x3B, 0x81, 0xC0, 0x77, 0x03, 0x80, 0xEE, 0x07, - 0x01, 0xDC, 0x0E, 0x03, 0xB8, 0x1C, 0x07, 0x70, 0x38, 0x0E, 0xE0, 0x70, 0x1D, 0xC0, 0xE0, 0x3B, - 0x81, 0xC0, 0x70, 0x3F, 0x1F, 0x9C, 0x7F, 0x3F, 0x9C, 0xF3, 0x3C, 0x9C, 0xE0, 0x38, 0x1C, 0xE0, - 0x78, 0x1C, 0xE0, 0x70, 0x1C, 0xFF, 0x7F, 0x9C, 0xFF, 0x7F, 0x9C, 0xE0, 0x70, 0x1C, 0xE0, 0x70, - 0x1C, 0xE0, 0x70, 0x1C, 0xE0, 0x70, 0x1C, 0xE0, 0x70, 0x1C, 0xE0, 0x70, 0x1C, 0xE0, 0x70, 0x1C, - 0xE0, 0x70, 0x1C, 0xE0, 0x70, 0x1E, 0xE0, 0x70, 0x0F, 0xE0, 0x70, 0x0F, + 0x7F, 0x00, 0xE0, 0x00, 0x18, 0x00, 0x1F, 0x00, 0x0F, 0x80, 0x03, 0xC0, 0x0D, 0xC0, 0x0F, 0xC0, + 0x0F, 0xC0, 0x0E, 0xE0, 0x02, 0x10, 0x01, 0xF8, 0x03, 0xFF, 0x03, 0xFF, 0xC3, 0xC1, 0xF3, 0xC0, + 0x39, 0xC0, 0x1F, 0xE0, 0x07, 0xF0, 0x03, 0xF0, 0x01, 0xF8, 0x00, 0xFC, 0x00, 0x7F, 0x00, 0x3B, + 0x80, 0x1D, 0xC0, 0x1E, 0xF0, 0x1E, 0x3E, 0x1E, 0x0F, 0xFF, 0x03, 0xFE, 0x00, 0x3C, 0x00, 0x00, + 0xF0, 0x07, 0xC0, 0x1E, 0x0E, 0xE0, 0xFE, 0x0F, 0xC0, 0x77, 0x00, 0x10, 0x07, 0x00, 0xFE, 0x0F, + 0xF8, 0xF1, 0xEF, 0x07, 0x70, 0x3F, 0x80, 0xFC, 0x07, 0xE0, 0x3F, 0x03, 0xFC, 0x1C, 0xF1, 0xE3, + 0xFE, 0x0F, 0xE0, 0x1C, 0x00, 0x01, 0x10, 0x03, 0xFC, 0x03, 0xFC, 0x00, 0x8C, 0x00, 0x0C, 0x00, + 0x0F, 0x00, 0x0F, 0xC0, 0x0E, 0xE0, 0x02, 0x10, 0x01, 0xF8, 0x03, 0xFF, 0x03, 0xFF, 0xC3, 0xC1, + 0xF3, 0xC0, 0x39, 0xC0, 0x1F, 0xE0, 0x07, 0xF0, 0x03, 0xF0, 0x01, 0xF8, 0x00, 0xFC, 0x00, 0x7F, + 0x00, 0x3B, 0x80, 0x1D, 0xC0, 0x1E, 0xF0, 0x1E, 0x3E, 0x1E, 0x0F, 0xFF, 0x03, 0xFE, 0x00, 0x3C, + 0x00, 0x0C, 0x40, 0xFF, 0x0F, 0xF0, 0x20, 0x00, 0x70, 0x07, 0xC0, 0x7E, 0x03, 0xB8, 0x00, 0x80, + 0x38, 0x07, 0xF0, 0x7F, 0xC7, 0x8F, 0x78, 0x3B, 0x81, 0xFC, 0x07, 0xE0, 0x3F, 0x01, 0xF8, 0x1F, + 0xE0, 0xE7, 0x8F, 0x1F, 0xF0, 0x7F, 0x00, 0xE0, 0x00, 0x80, 0x00, 0xE0, 0x00, 0xF8, 0x00, 0xFE, + 0x00, 0x73, 0x00, 0x00, 0x00, 0x0F, 0xC0, 0x1F, 0xF8, 0x1F, 0xFE, 0x1E, 0x0F, 0x9E, 0x01, 0xCE, + 0x00, 0xFF, 0x00, 0x3F, 0x80, 0x1F, 0x80, 0x0F, 0xC0, 0x07, 0xE0, 0x03, 0xF8, 0x01, 0xDC, 0x00, + 0xEE, 0x00, 0xF7, 0x80, 0xF1, 0xF0, 0xF0, 0x7F, 0xF8, 0x1F, 0xF0, 0x01, 0xE0, 0x00, 0x60, 0x00, + 0x70, 0x00, 0x3C, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x38, 0x03, 0xE0, 0x3F, 0x01, 0xDC, 0x00, 0x40, + 0x1C, 0x03, 0xF8, 0x3F, 0xE3, 0xC7, 0xBC, 0x1D, 0xC0, 0xFE, 0x03, 0xF0, 0x1F, 0x80, 0xFC, 0x0F, + 0xF0, 0x73, 0xC7, 0x8F, 0xF8, 0x3F, 0x80, 0x70, 0x03, 0x00, 0x1C, 0x00, 0xE0, 0x07, 0x00, 0x00, + 0x00, 0x00, 0x1C, 0x00, 0x0F, 0x00, 0x07, 0x80, 0x01, 0xC3, 0x80, 0x20, 0xE0, 0x3F, 0x38, 0x3F, + 0xFE, 0x1F, 0xFF, 0x0F, 0x07, 0xC7, 0x80, 0x71, 0xC0, 0x1E, 0xF0, 0x03, 0xBC, 0x00, 0xEE, 0x00, + 0x3B, 0x80, 0x0E, 0xE0, 0x03, 0xBC, 0x00, 0xE7, 0x00, 0x39, 0xC0, 0x1E, 0x78, 0x0F, 0x0F, 0x87, + 0x81, 0xFF, 0xE0, 0x3F, 0xE0, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x06, 0x00, 0x38, 0x01, 0xC0, 0x06, + 0x1C, 0x10, 0x70, 0x71, 0xC7, 0xFE, 0x3F, 0xF9, 0xE3, 0xCF, 0x07, 0x38, 0x1E, 0xE0, 0x3B, 0x80, + 0xEE, 0x03, 0xB8, 0x1E, 0xF0, 0x71, 0xE3, 0xC3, 0xFE, 0x07, 0xF0, 0x07, 0x00, 0x00, 0x00, 0x00, + 0xC0, 0x00, 0x38, 0x00, 0x07, 0x00, 0x00, 0xE3, 0x80, 0x10, 0xE0, 0x3F, 0x38, 0x3F, 0xFE, 0x1F, + 0xFF, 0x0F, 0x07, 0xC7, 0x80, 0x71, 0xC0, 0x1E, 0xF0, 0x03, 0xBC, 0x00, 0xEE, 0x00, 0x3B, 0x80, + 0x0E, 0xE0, 0x03, 0xBC, 0x00, 0xE7, 0x00, 0x39, 0xC0, 0x1E, 0x78, 0x0F, 0x0F, 0x87, 0x81, 0xFF, + 0xE0, 0x3F, 0xE0, 0x01, 0xE0, 0x00, 0x08, 0x00, 0x70, 0x01, 0xE0, 0x03, 0xC0, 0x07, 0x1C, 0x08, + 0x70, 0x71, 0xC7, 0xFE, 0x3F, 0xF9, 0xE3, 0xCF, 0x07, 0x38, 0x1E, 0xE0, 0x3B, 0x80, 0xEE, 0x03, + 0xB8, 0x1E, 0xF0, 0x71, 0xE3, 0xC3, 0xFE, 0x07, 0xF0, 0x07, 0x00, 0x00, 0x00, 0x00, 0xF8, 0x00, + 0x3E, 0x00, 0x03, 0x80, 0x01, 0xE3, 0x80, 0x70, 0xE0, 0x3F, 0x38, 0x3F, 0xFE, 0x1F, 0xFF, 0x0F, + 0x07, 0xC7, 0x80, 0x71, 0xC0, 0x1E, 0xF0, 0x03, 0xBC, 0x00, 0xEE, 0x00, 0x3B, 0x80, 0x0E, 0xE0, + 0x03, 0xBC, 0x00, 0xE7, 0x00, 0x39, 0xC0, 0x1E, 0x78, 0x0F, 0x0F, 0x87, 0x81, 0xFF, 0xE0, 0x3F, + 0xE0, 0x01, 0xE0, 0x00, 0x0F, 0x00, 0x3E, 0x00, 0x38, 0x01, 0xE7, 0x06, 0x1C, 0x1C, 0x71, 0xFF, + 0x8F, 0xFE, 0x78, 0xF3, 0xC1, 0xCE, 0x07, 0xB8, 0x0E, 0xE0, 0x3B, 0x80, 0xEE, 0x07, 0xBC, 0x1C, + 0x78, 0xF0, 0xFF, 0x81, 0xFC, 0x01, 0xC0, 0x00, 0x00, 0x01, 0xFE, 0x00, 0x7F, 0x80, 0x11, 0xCE, + 0x00, 0x03, 0x80, 0xFC, 0xE0, 0xFF, 0xF8, 0x7F, 0xFC, 0x3C, 0x1F, 0x1E, 0x01, 0xC7, 0x00, 0x7B, + 0xC0, 0x0E, 0xF0, 0x03, 0xB8, 0x00, 0xEE, 0x00, 0x3B, 0x80, 0x0E, 0xF0, 0x03, 0x9C, 0x00, 0xE7, + 0x00, 0x79, 0xE0, 0x3C, 0x3E, 0x1E, 0x07, 0xFF, 0x80, 0xFF, 0x80, 0x07, 0x80, 0x00, 0x40, 0x7F, + 0x83, 0xFC, 0x0C, 0x67, 0x00, 0x1C, 0x1C, 0x71, 0xFF, 0x8F, 0xFE, 0x78, 0xF3, 0xC1, 0xCE, 0x07, + 0xB8, 0x0E, 0xE0, 0x3B, 0x80, 0xEE, 0x07, 0xBC, 0x1C, 0x78, 0xF0, 0xFF, 0x81, 0xFC, 0x01, 0xC0, + 0x00, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x38, 0x0F, 0xCE, 0x0F, 0xFF, 0x87, 0xFF, 0xC3, 0xC1, 0xF1, + 0xE0, 0x1C, 0x70, 0x07, 0xBC, 0x00, 0xEF, 0x00, 0x3B, 0x80, 0x0E, 0xE0, 0x03, 0xB8, 0x00, 0xEF, + 0x00, 0x39, 0xC0, 0x0E, 0x70, 0x07, 0x9E, 0x03, 0xC3, 0xE1, 0xE0, 0x7F, 0xF8, 0x0F, 0xF8, 0x00, + 0x78, 0x00, 0x0C, 0x00, 0x07, 0x00, 0x01, 0xE0, 0x00, 0x70, 0x00, 0x00, 0x1C, 0x00, 0x70, 0x71, + 0xC7, 0xFE, 0x3F, 0xF9, 0xE3, 0xCF, 0x07, 0x38, 0x1E, 0xE0, 0x3B, 0x80, 0xEE, 0x03, 0xB8, 0x1E, + 0xF0, 0x71, 0xE3, 0xC3, 0xFE, 0x07, 0xF0, 0x07, 0x00, 0x18, 0x00, 0x70, 0x01, 0xC0, 0x07, 0x00, + 0xE0, 0x1B, 0x80, 0xFE, 0x03, 0xF8, 0x0F, 0xE0, 0x3F, 0x80, 0xFE, 0x03, 0xF8, 0x0F, 0xE0, 0x3F, + 0x80, 0xFE, 0x03, 0xF8, 0x0F, 0xE0, 0x3B, 0x80, 0xEF, 0x03, 0x9E, 0x3E, 0x7F, 0xF0, 0xFF, 0x80, + 0x78, 0x00, 0xC0, 0x07, 0x00, 0x1C, 0x00, 0x70, 0x00, 0xF0, 0x7F, 0x07, 0xF0, 0x7F, 0x07, 0xF0, + 0x7F, 0x07, 0xF0, 0x7F, 0x07, 0x70, 0x77, 0x07, 0x78, 0x73, 0xFF, 0x3F, 0xF0, 0x78, 0x06, 0x00, + 0xF0, 0x0F, 0x00, 0x60, 0x00, 0x00, 0x3E, 0x00, 0xF8, 0x00, 0xE0, 0x07, 0x80, 0x1C, 0x0E, 0x01, + 0xB8, 0x0F, 0xE0, 0x3F, 0x80, 0xFE, 0x03, 0xF8, 0x0F, 0xE0, 0x3F, 0x80, 0xFE, 0x03, 0xF8, 0x0F, + 0xE0, 0x3F, 0x80, 0xFE, 0x03, 0xB8, 0x0E, 0xF0, 0x39, 0xE3, 0xE7, 0xFF, 0x0F, 0xF8, 0x07, 0x80, + 0x0F, 0x00, 0xF8, 0x03, 0x80, 0x70, 0x06, 0x00, 0x00, 0xF0, 0x7F, 0x07, 0xF0, 0x7F, 0x07, 0xF0, + 0x7F, 0x07, 0xF0, 0x7F, 0x07, 0x70, 0x77, 0x07, 0x78, 0x73, 0xFF, 0x3F, 0xF0, 0x78, 0x00, 0x00, + 0x00, 0xC0, 0x00, 0xF0, 0x00, 0xF0, 0x00, 0x70, 0x38, 0x30, 0x1F, 0x80, 0x7D, 0xC0, 0x7E, 0xE0, + 0x3C, 0x70, 0x1E, 0x38, 0x0F, 0x1C, 0x07, 0x8E, 0x03, 0xC7, 0x01, 0xE3, 0x80, 0xF1, 0xC0, 0x78, + 0xE0, 0x3C, 0x70, 0x1E, 0x38, 0x0E, 0x1C, 0x07, 0x0F, 0x03, 0x83, 0xC7, 0xC1, 0xFF, 0xC0, 0x7F, + 0xC0, 0x07, 0x80, 0x00, 0x01, 0x00, 0x07, 0x00, 0x0E, 0x00, 0x38, 0x00, 0xE0, 0xE0, 0x81, 0xC0, + 0x07, 0xF8, 0x3E, 0xF0, 0x79, 0xE0, 0xE3, 0xC1, 0xC7, 0x83, 0x8F, 0x07, 0x1E, 0x0E, 0x3C, 0x1C, + 0x38, 0x38, 0x70, 0x70, 0xF0, 0xE0, 0xFF, 0xC1, 0xFF, 0x80, 0x78, 0x00, 0x00, 0x00, 0x06, 0x00, + 0x07, 0x80, 0x01, 0xE0, 0x00, 0x70, 0x38, 0x08, 0x1F, 0x80, 0x7D, 0xC0, 0x7E, 0xE0, 0x3C, 0x70, + 0x1E, 0x38, 0x0F, 0x1C, 0x07, 0x8E, 0x03, 0xC7, 0x01, 0xE3, 0x80, 0xF1, 0xC0, 0x78, 0xE0, 0x3C, + 0x70, 0x1E, 0x38, 0x0E, 0x1C, 0x07, 0x0F, 0x03, 0x83, 0xC7, 0xC1, 0xFF, 0xC0, 0x7F, 0xC0, 0x07, + 0x80, 0x00, 0x08, 0x00, 0x38, 0x00, 0x78, 0x00, 0x70, 0x00, 0x70, 0xE0, 0x41, 0xC0, 0x07, 0xF8, + 0x3E, 0xF0, 0x79, 0xE0, 0xE3, 0xC1, 0xC7, 0x83, 0x8F, 0x07, 0x1E, 0x0E, 0x3C, 0x1C, 0x38, 0x38, + 0x70, 0x70, 0xF0, 0xE0, 0xFF, 0xC1, 0xFF, 0x80, 0x78, 0x00, 0x00, 0x00, 0x07, 0xC0, 0x03, 0xE0, + 0x00, 0x70, 0x00, 0x78, 0x38, 0x38, 0x1F, 0x80, 0x7D, 0xC0, 0x7E, 0xE0, 0x3C, 0x70, 0x1E, 0x38, + 0x0F, 0x1C, 0x07, 0x8E, 0x03, 0xC7, 0x01, 0xE3, 0x80, 0xF1, 0xC0, 0x78, 0xE0, 0x3C, 0x70, 0x1E, + 0x38, 0x0E, 0x1C, 0x07, 0x0F, 0x03, 0x83, 0xC7, 0xC1, 0xFF, 0xC0, 0x7F, 0xC0, 0x07, 0x80, 0x00, + 0x0F, 0x00, 0x1F, 0x00, 0x0E, 0x00, 0x38, 0x70, 0x60, 0xE0, 0x03, 0xFC, 0x1F, 0x78, 0x3C, 0xF0, + 0x71, 0xE0, 0xE3, 0xC1, 0xC7, 0x83, 0x8F, 0x07, 0x1E, 0x0E, 0x1C, 0x1C, 0x38, 0x38, 0x78, 0x70, + 0x7F, 0xE0, 0xFF, 0xC0, 0x3C, 0x00, 0x00, 0x00, 0x0F, 0xF0, 0x0F, 0xF0, 0x02, 0x30, 0x70, 0x00, + 0x3F, 0x00, 0xFB, 0x80, 0xFD, 0xC0, 0x78, 0xE0, 0x3C, 0x70, 0x1E, 0x38, 0x0F, 0x1C, 0x07, 0x8E, + 0x03, 0xC7, 0x01, 0xE3, 0x80, 0xF1, 0xC0, 0x78, 0xE0, 0x3C, 0x70, 0x1C, 0x38, 0x0E, 0x1E, 0x07, + 0x07, 0x8F, 0x83, 0xFF, 0x80, 0xFF, 0x80, 0x0F, 0x00, 0x08, 0x40, 0x3F, 0x80, 0xFF, 0x01, 0x9C, + 0x70, 0x00, 0xE0, 0x03, 0xFC, 0x1F, 0x78, 0x3C, 0xF0, 0x71, 0xE0, 0xE3, 0xC1, 0xC7, 0x83, 0x8F, + 0x07, 0x1E, 0x0E, 0x1C, 0x1C, 0x38, 0x38, 0x78, 0x70, 0x7F, 0xE0, 0xFF, 0xC0, 0x3C, 0x00, 0x00, + 0x00, 0x00, 0x01, 0xC0, 0x00, 0xFC, 0x03, 0xEE, 0x03, 0xF7, 0x01, 0xE3, 0x80, 0xF1, 0xC0, 0x78, + 0xE0, 0x3C, 0x70, 0x1E, 0x38, 0x0F, 0x1C, 0x07, 0x8E, 0x03, 0xC7, 0x01, 0xE3, 0x80, 0xF1, 0xC0, + 0x70, 0xE0, 0x38, 0x78, 0x1C, 0x1E, 0x3E, 0x0F, 0xFE, 0x03, 0xFE, 0x00, 0x3C, 0x00, 0x0C, 0x00, + 0x0E, 0x00, 0x07, 0x00, 0x03, 0x80, 0x00, 0x00, 0x0E, 0x00, 0x1C, 0x00, 0x7F, 0x83, 0xEF, 0x07, + 0x9E, 0x0E, 0x3C, 0x1C, 0x78, 0x38, 0xF0, 0x71, 0xE0, 0xE3, 0xC1, 0xC3, 0x83, 0x87, 0x07, 0x0F, + 0x0E, 0x0F, 0xFC, 0x1F, 0xF8, 0x07, 0x80, 0x0C, 0x00, 0x3C, 0x00, 0x78, 0x00, 0x60, 0x00, 0x06, + 0x00, 0x1E, 0x00, 0x1C, 0x00, 0x1C, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x78, 0x0F, 0x70, 0x1C, + 0xF0, 0x78, 0xE0, 0xE1, 0xE3, 0xC1, 0xEF, 0x01, 0xDC, 0x03, 0xF8, 0x03, 0xE0, 0x03, 0x80, 0x07, + 0x00, 0x0E, 0x00, 0x1C, 0x00, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xC0, 0x0C, 0x01, 0xE0, 0x0E, + 0x00, 0x70, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x7F, 0x07, 0x70, 0x77, 0x0E, 0x78, 0xE3, + 0x8E, 0x38, 0xC1, 0xDC, 0x1D, 0xC1, 0xF8, 0x0F, 0x80, 0xF8, 0x07, 0x00, 0x70, 0x07, 0x09, 0xE0, + 0xFC, 0x0F, 0x80, 0xE0, 0x0F, 0xE0, 0x3D, 0xC0, 0x73, 0xC1, 0xE3, 0x83, 0x87, 0x8E, 0x07, 0x9C, + 0x07, 0x70, 0x0F, 0xE0, 0x0F, 0x80, 0x0E, 0x00, 0x1C, 0x00, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x01, + 0xC0, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x00, 0xE0, + 0x7F, 0x07, 0x70, 0x77, 0x0E, 0x78, 0xE3, 0x8E, 0x39, 0xE1, 0xDC, 0x1D, 0xC1, 0xF8, 0x0F, 0x80, + 0xF8, 0x07, 0x00, 0x70, 0x0E, 0x2F, 0xE7, 0xFC, 0x7F, 0x87, 0x00, 0x00, 0x0F, 0x80, 0x1F, 0x00, + 0x0E, 0x00, 0x38, 0x00, 0x60, 0x38, 0x03, 0xF8, 0x0F, 0x70, 0x1C, 0xF0, 0x78, 0xE0, 0xE1, 0xE3, + 0x81, 0xE7, 0x01, 0xDC, 0x03, 0xF8, 0x03, 0xE0, 0x03, 0x80, 0x07, 0x00, 0x0E, 0x00, 0x1C, 0x00, + 0x38, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xC0, 0x0F, 0x00, 0xF8, 0x03, 0x80, 0x70, 0x06, 0x00, 0x00, + 0xE0, 0x7F, 0x07, 0x70, 0x77, 0x0E, 0x78, 0xE3, 0x8E, 0x39, 0xE1, 0xDC, 0x1D, 0xC1, 0xF8, 0x0F, + 0x80, 0xF8, 0x07, 0x00, 0x70, 0x0E, 0x0F, 0xE0, 0xFC, 0x0F, 0x80, 0x06, 0x30, 0x1F, 0xE0, 0x7F, + 0x80, 0x00, 0x00, 0x00, 0x1C, 0x01, 0xFC, 0x07, 0xB8, 0x0E, 0x78, 0x3C, 0x70, 0x70, 0xF1, 0xC0, + 0xF3, 0x80, 0xEE, 0x01, 0xFC, 0x01, 0xF0, 0x01, 0xC0, 0x03, 0x80, 0x07, 0x00, 0x0E, 0x00, 0x1C, + 0x00, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x00, 0x08, 0x41, 0xFE, 0x3F, 0xC3, 0x38, 0x00, 0x00, 0x00, + 0xE0, 0x7F, 0x07, 0x70, 0x77, 0x0E, 0x78, 0xE3, 0x8E, 0x39, 0xE1, 0xDC, 0x1D, 0xC1, 0xF8, 0x0F, + 0x80, 0xF8, 0x07, 0x00, 0x70, 0x0E, 0x0F, 0xE0, 0xFC, 0x0F, 0x80, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, + 0x87, 0x37, 0x8C, 0x7B, 0xF3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x0C, 0x30, 0xC3, 0x00, 0x00, + 0x30, 0x37, 0xEC, 0xDB, 0x30, 0x60, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x06, + 0x00, 0x00, 0x61, 0x83, 0xF6, 0x66, 0xC1, 0x83, 0x06, 0x0C, 0x18, 0x30, 0x60, 0xC1, 0x83, 0x06, + 0x0C, 0x18, 0x30, 0xFF, 0xFF, 0xFD, 0xFB, 0xF0, 0x7F, 0xFD, 0xFF, 0xF0, 0x7F, 0xFF, 0xFF, 0xDF, + 0xFF, 0xFF, 0xF0, 0x7F, 0xFF, 0xFF, 0xDF, 0xFF, 0xFF, 0xF0, 0x33, 0x9D, 0xEE, 0x70, 0x7B, 0xDC, + 0xE7, 0x30, 0x7B, 0xDC, 0xE7, 0x30, 0x33, 0xB9, 0xDD, 0xDE, 0xEE, 0x77, 0x38, 0x7B, 0xBD, 0xDC, + 0xEE, 0x77, 0x73, 0x38, 0x7B, 0xBD, 0xDC, 0xEE, 0x77, 0x73, 0x38, 0x06, 0x00, 0xC0, 0x18, 0x03, + 0x00, 0x60, 0xFF, 0xDF, 0xF8, 0x30, 0x06, 0x00, 0xC0, 0x18, 0x03, 0x00, 0x60, 0x0C, 0x01, 0x80, + 0x30, 0x06, 0x00, 0xC0, 0x18, 0x03, 0x00, 0x60, 0x06, 0x00, 0xC0, 0x18, 0x03, 0x00, 0x60, 0xFF, + 0xDF, 0xF8, 0x30, 0x06, 0x00, 0xC0, 0x18, 0x03, 0x07, 0xFE, 0xFF, 0xC1, 0x80, 0x30, 0x06, 0x00, + 0xC0, 0x18, 0x03, 0x00, 0x60, 0x7D, 0xFF, 0xFF, 0xFF, 0xEF, 0x80, 0xF0, 0x70, 0x77, 0x87, 0x83, + 0xFC, 0x1C, 0x1C, 0x3E, 0x07, 0x00, 0x03, 0xF8, 0x70, 0x00, 0x3D, 0xC3, 0x80, 0x01, 0xC6, 0x38, + 0x00, 0x0E, 0x3B, 0xC0, 0x00, 0x71, 0xDC, 0x00, 0x03, 0x8D, 0xC0, 0x00, 0x1E, 0xEE, 0xF8, 0x7C, + 0x7F, 0xEF, 0xE7, 0xF1, 0xF7, 0xF7, 0x3B, 0x80, 0x77, 0x1B, 0x8E, 0x07, 0xB8, 0xFC, 0x70, 0x39, + 0xC7, 0xE3, 0x83, 0x8E, 0x37, 0x1C, 0x1C, 0x7B, 0x9D, 0xC1, 0xC1, 0xFC, 0xFE, 0x0E, 0x07, 0xC3, + 0xE0, 0x0C, 0x38, 0xF1, 0xC7, 0x8E, 0x1E, 0x1C, 0x3C, 0x38, 0x30, 0xC3, 0x87, 0x1E, 0x38, 0xF3, + 0x9E, 0x73, 0x8C, 0x00, 0x00, 0x38, 0x03, 0x80, 0x1C, 0x01, 0xC0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, + 0x70, 0x07, 0x00, 0x38, 0x03, 0x80, 0x1C, 0x01, 0xC0, 0x1C, 0x00, 0xE0, 0x0E, 0x00, 0x70, 0x00, + 0x77, 0xBC, 0xE0, 0x00, 0x0E, 0x73, 0x8E, 0x71, 0x8C, 0x3E, 0x3F, 0x9D, 0xDC, 0x6E, 0x3F, 0x1F, + 0x8C, 0xEE, 0x7F, 0x1F, 0x00, 0x07, 0x07, 0x87, 0xC7, 0xE7, 0x73, 0x3B, 0xFF, 0xFF, 0x07, 0x03, + 0x80, 0x7E, 0xFD, 0x87, 0xEF, 0xE3, 0xC1, 0xE7, 0xFF, 0xF8, 0x0F, 0x1F, 0x9F, 0x0F, 0xC7, 0xF3, + 0xB9, 0x8E, 0xEE, 0x7F, 0x1F, 0x00, 0x7F, 0x3F, 0x81, 0xC1, 0xC0, 0xE0, 0xE0, 0x70, 0x30, 0x38, + 0x1C, 0x00, 0x3E, 0x3F, 0x9D, 0xCE, 0xE7, 0xE3, 0xF9, 0x8D, 0xEE, 0x7F, 0x1F, 0x00, 0x3E, 0x3F, + 0x9D, 0xDC, 0x67, 0xF1, 0xF8, 0x1C, 0x3E, 0x7E, 0x3C, 0x00, 0x3E, 0x3F, 0x9D, 0xDC, 0x6E, 0x3F, + 0x1F, 0x8C, 0xEE, 0x7F, 0x1F, 0x00, 0x3B, 0xFF, 0xF1, 0x8C, 0x63, 0x18, 0xC0, 0x7E, 0x7F, 0x67, + 0x07, 0x0E, 0x1C, 0x38, 0x70, 0x7F, 0x7F, 0x7E, 0x7E, 0x6F, 0x3E, 0x3E, 0x0F, 0x07, 0x67, 0x7F, + 0x7E, 0x07, 0x07, 0x87, 0xC7, 0xE7, 0x73, 0x3B, 0xFF, 0xFF, 0x07, 0x03, 0x80, 0x7E, 0xFD, 0x87, + 0xEF, 0xE3, 0xC1, 0xE7, 0xFF, 0xF8, 0x0F, 0x1F, 0x9F, 0x0F, 0xC7, 0xF3, 0xB9, 0x8E, 0xEE, 0x7F, + 0x1F, 0x00, 0x7F, 0x3F, 0x81, 0xC1, 0xC0, 0xE0, 0xE0, 0x70, 0x30, 0x38, 0x1C, 0x00, 0x3E, 0x3F, + 0x9D, 0xCE, 0xE7, 0xE3, 0xF9, 0x8D, 0xEE, 0x7F, 0x1F, 0x00, 0x3E, 0x3F, 0x9D, 0xDC, 0x67, 0xF1, + 0xF8, 0x1C, 0x3E, 0x7E, 0x3C, 0x00, 0xFF, 0xC7, 0xFF, 0xE7, 0xE0, 0xE7, 0xE0, 0x67, 0xE6, 0x67, + 0xE6, 0x67, 0xE6, 0x67, 0xE6, 0x67, 0xE6, 0x67, 0xE6, 0x67, 0xE6, 0x67, 0xE6, 0x07, 0xE6, 0x1F, + 0xE7, 0xFE, 0xE7, 0xFC, 0x07, 0xF8, 0x7F, 0x87, 0xCC, 0x38, 0x03, 0x80, 0x7F, 0xF3, 0xFF, 0x87, + 0x00, 0x38, 0x07, 0xFE, 0x3F, 0xF0, 0x70, 0x03, 0xC0, 0x0E, 0x00, 0x7C, 0x61, 0xFF, 0x07, 0xF8, + 0xFF, 0xFF, 0xFF, 0xC1, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0xF0, 0x1F, 0x83, 0xF0, 0x7F, 0x03, 0xF8, + 0x01, 0xF8, 0x0F, 0xC1, 0xF8, 0x3F, 0x81, 0xFC, 0x00, 0xE0, 0x07, 0x00, 0x1F, 0xC0, 0x7F, 0xC1, + 0x8F, 0x00, 0x1C, 0x00, 0x71, 0xFF, 0xF7, 0xFF, 0xC0, 0xF8, 0x07, 0xC0, 0x7C, 0x07, 0xFF, 0xDF, + 0xFF, 0x38, 0x00, 0xE0, 0x03, 0xC7, 0x0F, 0xFE, 0x0F, 0xF0, 0xFF, 0xFF, 0xFF, 0xC0, 0xF0, 0x03, + 0x8F, 0xFF, 0x7F, 0xF8, 0x07, 0x00, 0xF8, 0xFF, 0x87, 0xF0, 0x1E, 0x00, 0x78, 0x01, 0xC0, 0x07, + 0x00, 0x3C, 0x00, 0xF0, 0x03, 0xC0, 0x7F, 0x83, 0xFE, 0x18, 0xF8, 0x01, 0xE0, 0x07, 0x00, 0x38, + 0x01, 0xC3, 0xFF, 0x3F, 0xFB, 0xE7, 0xFC, 0x1F, 0xC0, 0xFE, 0x07, 0x70, 0x3B, 0x81, 0xDC, 0x1C, + 0xFB, 0xE3, 0xFE, 0x0F, 0xE0, 0x03, 0xC0, 0x01, 0xE0, 0x01, 0xF8, 0x00, 0xFC, 0x00, 0x67, 0x00, + 0x73, 0x80, 0x38, 0xE0, 0x38, 0x70, 0x1C, 0x38, 0x1C, 0x0E, 0x0E, 0x07, 0x07, 0x03, 0xC7, 0x00, + 0xE3, 0x80, 0x71, 0xC0, 0x3D, 0xFF, 0xFE, 0xFF, 0xFF, 0x00, 0xFF, 0xFF, 0xFF, 0xFE, 0x03, 0xF8, + 0x0F, 0xE0, 0x3F, 0x80, 0xFE, 0x03, 0xF8, 0x0F, 0xE0, 0x3F, 0x80, 0xFE, 0x03, 0xF8, 0x0F, 0xE0, + 0x3F, 0x80, 0xFE, 0x03, 0xF8, 0x0F, 0xE0, 0x3F, 0x80, 0xFE, 0x03, 0xF8, 0x0F, 0xFF, 0xFF, 0xFF, + 0xDC, 0x00, 0x70, 0x03, 0xC0, 0x0E, 0x00, 0x38, 0x01, 0xE0, 0x07, 0x80, 0x1C, 0x01, 0xE0, 0x1E, + 0x00, 0xE0, 0x0F, 0x00, 0xF0, 0x07, 0x00, 0x78, 0x03, 0x80, 0x3F, 0xFF, 0xFF, 0xF0, 0xFF, 0xFF, + 0xFF, 0x00, 0x38, 0x03, 0x80, 0x1C, 0x01, 0xC0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0x70, 0x07, 0x00, + 0x38, 0x03, 0x80, 0x1C, 0x01, 0xC0, 0x1C, 0x00, 0xE0, 0x0E, 0x00, 0x70, 0x00, 0xFF, 0xF0, 0x00, + 0x0E, 0x00, 0x18, 0x00, 0x70, 0x00, 0xE0, 0x01, 0x80, 0x07, 0x00, 0x0E, 0x00, 0x1C, 0x00, 0x30, + 0x00, 0xE1, 0xE1, 0xC7, 0xC3, 0x0F, 0xCE, 0x03, 0x9C, 0x03, 0xB8, 0x07, 0x60, 0x07, 0xC0, 0x0F, + 0x80, 0x1E, 0x00, 0x1C, 0x00, 0x3C, 0xF9, 0xFF, 0xF7, 0x7D, 0xF8, 0xE3, 0x77, 0xDD, 0xFF, 0xF3, + 0xEF, 0x80, 0x07, 0x83, 0xE0, 0xF0, 0x78, 0x1C, 0x07, 0x01, 0xC0, 0x70, 0x1C, 0x07, 0x01, 0xC0, + 0x70, 0x1C, 0x07, 0x01, 0xC0, 0x70, 0x1C, 0x07, 0x01, 0xC0, 0x70, 0x1C, 0x1F, 0x0F, 0x83, 0xC0, + 0x7C, 0x3F, 0xF7, 0xEF, 0xFC, 0x3E, 0x00, 0x00, 0x00, 0x7C, 0x3F, 0xF7, 0xEF, 0xFC, 0x3E, 0x00, + 0xC0, 0x1C, 0x01, 0xCF, 0xFF, 0xFF, 0xF0, 0x70, 0x07, 0x00, 0xE0, 0xFF, 0xFF, 0xFF, 0x38, 0x03, + 0x80, 0x30, 0x00, 0x00, 0x70, 0x1F, 0x0F, 0xE3, 0xF8, 0xFC, 0x0F, 0x00, 0xFC, 0x03, 0xF8, 0x0F, + 0xE0, 0x1F, 0x00, 0x70, 0x00, 0x00, 0x0F, 0xFF, 0xFF, 0xF0, 0xE0, 0x0F, 0x80, 0x7F, 0x00, 0xFC, + 0x03, 0xF0, 0x0F, 0x03, 0xF0, 0xFC, 0x7F, 0x0F, 0x80, 0xE0, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFF, + 0xF0, 0x3F, 0x1F, 0xDF, 0xCF, 0xFF, 0x33, 0xCB, 0x80, 0xE0, 0xE0, 0x78, 0x38, 0x1C, 0x0F, 0xF7, + 0xFB, 0xFD, 0xFE, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x81, 0xC0, 0xE0, 0x70, 0x38, 0x1C, + 0x0E, 0x07, 0x03, 0x81, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x00, 0x3F, 0x03, 0xFB, 0xFC, + 0x9F, 0xC0, 0x0E, 0x00, 0x70, 0x03, 0xFD, 0xDF, 0xEE, 0xE0, 0x77, 0x03, 0xB8, 0x1D, 0xC0, 0xEE, + 0x07, 0x70, 0x3B, 0x81, 0xDC, 0x0E, 0xE0, 0x77, 0x03, 0xB8, 0x1C, 0x3F, 0x71, 0xFD, 0xCF, 0x27, + 0x38, 0x1C, 0xE0, 0x73, 0x81, 0xCF, 0xF7, 0x3F, 0xDC, 0xE0, 0x73, 0x81, 0xCE, 0x07, 0x38, 0x1C, + 0xE0, 0x73, 0x81, 0xCE, 0x07, 0x38, 0x1C, 0xE0, 0x7B, 0x80, 0xFE, 0x01, 0xC0, 0x3F, 0x1F, 0x80, + 0xFE, 0x7F, 0x3B, 0xCC, 0xF2, 0x77, 0x01, 0xC0, 0x0E, 0x07, 0x80, 0x1C, 0x0E, 0x00, 0x3F, 0xDF, + 0xE7, 0x7F, 0xBF, 0xCE, 0xE0, 0x70, 0x1D, 0xC0, 0xE0, 0x3B, 0x81, 0xC0, 0x77, 0x03, 0x80, 0xEE, + 0x07, 0x01, 0xDC, 0x0E, 0x03, 0xB8, 0x1C, 0x07, 0x70, 0x38, 0x0E, 0xE0, 0x70, 0x1D, 0xC0, 0xE0, + 0x3B, 0x81, 0xC0, 0x70, 0x3F, 0x1F, 0x9C, 0x7F, 0x3F, 0x9C, 0xF3, 0x3C, 0x9C, 0xE0, 0x38, 0x1C, + 0xE0, 0x78, 0x1C, 0xE0, 0x70, 0x1C, 0xFF, 0x7F, 0x9C, 0xFF, 0x7F, 0x9C, 0xE0, 0x70, 0x1C, 0xE0, + 0x70, 0x1C, 0xE0, 0x70, 0x1C, 0xE0, 0x70, 0x1C, 0xE0, 0x70, 0x1C, 0xE0, 0x70, 0x1C, 0xE0, 0x70, + 0x1C, 0xE0, 0x70, 0x1C, 0xE0, 0x70, 0x1E, 0xE0, 0x70, 0x0F, 0xE0, 0x70, 0x0F, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x0E, 0x60, 0x00, 0x0E, 0x70, 0x00, 0x07, 0x60, 0x00, 0x07, 0xE0, 0x00, 0x07, 0xE0, + 0x00, 0x07, 0xF0, 0x00, 0x07, 0x78, 0x00, 0x1E, 0x7F, 0xFF, 0xFE, 0x1F, 0xFF, 0xF8, 0x07, 0xFF, + 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x7E, 0x00, 0x00, 0x76, 0x00, + 0x00, 0x1C, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x18, 0x00, 0x60, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, + 0x18, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x06, 0x0E, 0x00, 0x00, 0x78, 0x78, 0x00, 0x0F, 0x81, 0xE0, + 0x03, 0xFF, 0x0F, 0xFF, 0xFF, 0x7F, 0x1F, 0xFF, 0xE1, 0xF8, 0x3F, 0xF0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0xE0, 0x00, 0x00, 0x77, 0x00, 0x00, 0x01, 0xB0, 0x00, 0x00, + 0x07, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x18, 0x38, 0x70, 0xE0, + 0xC1, 0x83, 0x0E, 0xFD, 0xF0, 0x00, 0x0D, 0xDF, 0xB7, 0x38, 0x70, 0x60, 0x00, 0x01, 0xC0, 0x30, + 0x0E, 0x01, 0xC0, 0x7C, 0x3F, 0xFF, 0xBF, 0x00, 0x00, 0x00, 0xD8, 0x3B, 0x83, 0x60, 0x38, 0x07, + 0x00, 0x40, 0x00, 0x30, 0x00, 0x00, 0x30, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x3F, 0x00, 0x00, 0x3B, + 0x00, 0x00, 0x7F, 0x00, 0x00, 0x7E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x60, 0x00, 0x0E, + 0x70, 0x00, 0x07, 0x60, 0x00, 0x07, 0xE0, 0x00, 0x07, 0xE0, 0x00, 0x07, 0xF0, 0x00, 0x07, 0x78, + 0x00, 0x1E, 0x7F, 0xFF, 0xFE, 0x1F, 0xFF, 0xF8, 0x07, 0xFF, 0x80, 0x00, 0x30, 0x00, 0x00, 0x01, + 0x80, 0x00, 0x00, 0x0F, 0x80, 0x00, 0x00, 0x7E, 0x00, 0x00, 0x03, 0xB0, 0x00, 0x00, 0x3F, 0x80, + 0x00, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x1C, + 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x30, 0x70, 0x00, 0x03, 0xC3, 0xC0, 0x00, + 0x7C, 0x0F, 0x00, 0x1F, 0xF8, 0x7F, 0xFF, 0xFB, 0xF8, 0xFF, 0xFF, 0x0F, 0xC1, 0xFF, 0x80, 0x00, + 0x60, 0xC1, 0xF3, 0xF7, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0xE1, 0xC3, 0x83, 0x87, 0x0E, 0x1C, 0x7B, + 0xE7, 0x80, 0x00, 0x18, 0x03, 0x00, 0x7C, 0x0F, 0xC1, 0xD8, 0x7F, 0x0F, 0xC0, 0x00, 0x00, 0x00, + 0x00, 0x38, 0x06, 0x01, 0xC0, 0x38, 0x0F, 0x87, 0xFF, 0xF7, 0xE0, 0x00, 0x3C, 0x00, 0x7F, 0xC0, + 0x7F, 0xFE, 0x01, 0xFE, 0x01, 0xFE, 0x07, 0xF0, 0x0F, 0x80, 0x1E, 0x00, 0x38, 0x00, 0x70, 0x00, + 0x73, 0x70, 0xE7, 0xF0, 0xE3, 0x70, 0xE1, 0xC0, 0xE1, 0xC0, 0xE0, 0xC0, 0xF0, 0x00, 0x78, 0x00, + 0x3F, 0xFE, 0x1F, 0xFF, 0x07, 0xFC, 0x3C, 0x00, 0x07, 0xFC, 0x00, 0x7F, 0xFE, 0x00, 0x1F, 0xE0, + 0x01, 0xFE, 0x00, 0x7F, 0xC0, 0x0F, 0x9C, 0x01, 0xE0, 0xE0, 0x38, 0x0F, 0x07, 0x00, 0x7E, 0x73, + 0x73, 0xEE, 0x7F, 0x00, 0xE3, 0x70, 0x0E, 0x1C, 0x00, 0xE1, 0xC0, 0x0E, 0x0C, 0x00, 0xF0, 0x00, + 0x07, 0x80, 0x00, 0x3F, 0xFE, 0x01, 0xFF, 0xF0, 0x07, 0xFC, 0x00, 0x7F, 0x01, 0xFF, 0x03, 0xFE, + 0x00, 0x3F, 0x00, 0xFC, 0x0F, 0xE1, 0xFC, 0x3F, 0xC0, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xF0, + 0x0F, 0xC0, 0x37, 0x00, 0x30, 0x01, 0xC0, 0x03, 0x00, 0x7F, 0x00, 0x1F, 0xF0, 0x03, 0xFE, 0x00, + 0x03, 0xF0, 0x00, 0xFC, 0x00, 0xFE, 0x01, 0xFF, 0xC3, 0xFC, 0x7E, 0xFC, 0x0F, 0x80, 0x00, 0x00, + 0x00, 0x00, 0x36, 0x00, 0x1D, 0xC0, 0x03, 0x60, 0x00, 0x70, 0x00, 0x1C, 0x00, 0x02, 0x00, 0x00, + 0x18, 0x03, 0x00, 0x7C, 0x0F, 0xC1, 0xD8, 0x7F, 0x0F, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x03, + 0xC0, 0x38, 0x07, 0x80, 0x70, 0x07, 0x00, 0xE0, 0x1C, 0x03, 0xB8, 0xF7, 0xFC, 0xFF, 0x01, 0x00, + 0x18, 0x00, 0x30, 0x00, 0x7C, 0x00, 0xFC, 0x01, 0xDC, 0x07, 0xF0, 0x0F, 0xE0, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0C, 0x00, 0x38, 0x00, 0x38, 0x00, 0x78, 0x00, 0x70, 0x00, 0x70, 0x00, 0xE0, + 0x01, 0xC0, 0x03, 0xC3, 0x8F, 0xC7, 0xFF, 0xEF, 0xF3, 0xC1, 0x00, 0x00, 0x04, 0x07, 0x03, 0x83, + 0x63, 0xB9, 0xD8, 0x00, 0x00, 0x02, 0x03, 0x81, 0xC0, 0x60, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x83, + 0x83, 0xC3, 0xCF, 0xC7, 0xC1, 0x80, 0x0C, 0x00, 0x70, 0x03, 0x80, 0x76, 0x03, 0xF0, 0x1D, 0x80, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x38, 0x01, 0xC0, 0x06, 0x00, 0x38, 0x01, 0xC0, 0x0F, 0x00, 0x7E, + 0x03, 0xF0, 0x38, 0x03, 0xC0, 0x3C, 0x0F, 0xC0, 0x7C, 0x01, 0x80, 0x00, 0x18, 0x06, 0x01, 0xF0, + 0x7E, 0x1D, 0x8F, 0xE3, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x20, 0x1C, 0x07, 0x00, 0xC0, 0x38, 0x0E, + 0x03, 0x80, 0xE0, 0x38, 0x1C, 0x0F, 0x07, 0x8F, 0xC3, 0xE0, 0x60, 0x00, 0x18, 0x00, 0xC0, 0x07, + 0xC0, 0x3F, 0x01, 0xD8, 0x1F, 0xC0, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x0E, 0x00, + 0x70, 0x01, 0x80, 0x0E, 0x00, 0x70, 0x03, 0xC0, 0x1F, 0x80, 0xFC, 0x0E, 0x00, 0xF0, 0x0F, 0x03, + 0xF0, 0x1F, 0x00, 0x60, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x78, 0x00, 0x03, 0xF0, 0x00, 0x1F, + 0x80, 0x00, 0x7C, 0x00, 0x01, 0xE0, 0x00, 0x03, 0x80, 0x00, 0x07, 0x80, 0x00, 0x07, 0x80, 0xC0, + 0x03, 0x81, 0xC0, 0x03, 0x83, 0x00, 0x03, 0x8E, 0x00, 0x07, 0x1C, 0x00, 0x07, 0x3C, 0x00, 0x0E, + 0x3C, 0x00, 0x3C, 0x7F, 0xFF, 0xF0, 0x3F, 0xFF, 0xC0, 0x1F, 0xFC, 0x00, 0x00, 0x00, 0x0C, 0x00, + 0x00, 0x0F, 0x00, 0x00, 0x0F, 0xC0, 0x00, 0x0F, 0xC0, 0x00, 0x07, 0xC0, 0x00, 0x03, 0xC0, 0x00, + 0x00, 0xE0, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x07, 0x80, 0x18, 0x00, 0xF0, 0x07, 0x00, 0x1E, 0x01, + 0x80, 0x03, 0xC0, 0xE0, 0x00, 0x70, 0x38, 0x00, 0x0E, 0x0F, 0x00, 0x03, 0xC1, 0xE0, 0x03, 0xF8, + 0x7F, 0xFF, 0xFF, 0xC7, 0xFF, 0xF9, 0xF0, 0x7F, 0xF0, 0x00, 0x00, 0x40, 0x3C, 0x1F, 0x8F, 0xC7, + 0xE0, 0xF0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0x80, 0x38, 0x07, 0x00, 0xE0, 0x3C, + 0xFF, 0x1F, 0xC3, 0x00, 0x00, 0x00, 0x40, 0x0F, 0x80, 0x7E, 0x07, 0xE0, 0x7E, 0x01, 0xE0, 0x0E, + 0x00, 0x1C, 0x00, 0x78, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xC0, 0x03, 0x80, 0x0E, 0x00, 0x3C, 0x01, + 0xFC, 0xFF, 0xFF, 0xF9, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0xF0, 0x00, 0x03, 0xE0, + 0x00, 0x1F, 0x60, 0x00, 0xFB, 0xC0, 0x01, 0xDF, 0x80, 0x02, 0xFC, 0x00, 0x03, 0xE0, 0x00, 0x0F, + 0x00, 0x00, 0x1C, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x3C, 0x06, 0x00, 0x1C, 0x0E, 0x00, 0x1C, 0x18, + 0x00, 0x1C, 0x70, 0x00, 0x38, 0xE0, 0x00, 0x39, 0xE0, 0x00, 0x71, 0xE0, 0x01, 0xE3, 0xFF, 0xFF, + 0x81, 0xFF, 0xFE, 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x0F, + 0x80, 0x00, 0x0F, 0xB0, 0x00, 0x0F, 0xBC, 0x00, 0x03, 0xBF, 0x00, 0x00, 0xBF, 0x00, 0x00, 0x1F, + 0x00, 0x00, 0x0F, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x1E, 0x00, 0x60, 0x03, + 0xC0, 0x1C, 0x00, 0x78, 0x06, 0x00, 0x0F, 0x03, 0x80, 0x01, 0xC0, 0xE0, 0x00, 0x38, 0x3C, 0x00, + 0x0F, 0x07, 0x80, 0x0F, 0xE1, 0xFF, 0xFF, 0xFF, 0x1F, 0xFF, 0xE7, 0xC1, 0xFF, 0xC0, 0x00, 0x00, + 0x80, 0x70, 0x3E, 0x1F, 0x27, 0x9F, 0xEF, 0xF7, 0xE3, 0xF0, 0x78, 0x1E, 0x01, 0xE0, 0x1E, 0x01, + 0xE0, 0x1E, 0x01, 0xC0, 0x1C, 0x03, 0x80, 0x70, 0x1E, 0x7F, 0x8F, 0xE1, 0x80, 0x00, 0x00, 0x80, + 0x0E, 0x00, 0xF8, 0x0F, 0x90, 0x7B, 0xE3, 0xDF, 0x8D, 0xF8, 0x1F, 0x80, 0x78, 0x03, 0x80, 0x07, + 0x00, 0x1E, 0x00, 0x1C, 0x00, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x03, 0x80, 0x0F, 0x00, 0x7F, 0x3F, + 0xFF, 0xFE, 0x7F, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x0E, 0x00, 0x0E, 0x20, 0x07, 0x70, 0x07, 0x70, + 0x07, 0x60, 0x07, 0xE0, 0x07, 0xE0, 0x07, 0x70, 0x07, 0x78, 0x1E, 0x7F, 0xFC, 0x3F, 0xF8, 0x0F, + 0xF0, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x07, 0x02, 0x00, 0x70, 0x70, 0x07, 0x07, 0x00, 0x78, + 0x60, 0x07, 0xFE, 0x00, 0x7F, 0xE0, 0x07, 0x07, 0x00, 0x70, 0x70, 0x0E, 0x07, 0xFF, 0xE0, 0x3F, + 0xFC, 0x00, 0xFF, 0x00, 0x08, 0x07, 0x81, 0xE0, 0xFC, 0x3B, 0x9C, 0x66, 0x1F, 0x87, 0xE1, 0xDC, + 0xE7, 0xF8, 0xFC, 0x04, 0x00, 0xFC, 0x07, 0xF8, 0x3C, 0xE0, 0xE1, 0x83, 0x87, 0x0E, 0x1E, 0x18, + 0x3E, 0x60, 0x78, 0x00, 0x00, 0x00, 0xE3, 0x8E, 0x1C, 0x71, 0xC7, 0x3F, 0xEF, 0x04, 0x30, 0x87, + 0x0C, 0x38, 0x03, 0xC0, 0x3E, 0x3D, 0xF3, 0xE3, 0xBE, 0x0D, 0xC0, 0x7C, 0x03, 0xE0, 0x0F, 0x00, + 0x38, 0x01, 0x80, 0x01, 0x00, 0x03, 0x80, 0x03, 0xC0, 0x03, 0xF0, 0x07, 0xF8, 0x0E, 0x7C, 0x0E, + 0x3E, 0x0E, 0x7E, 0x0E, 0x77, 0x07, 0xF7, 0x07, 0xE7, 0xFF, 0xFF, 0xFF, 0xFE, 0x18, 0x18, 0x00, + 0x60, 0x00, 0xF8, 0x00, 0xFE, 0x00, 0x77, 0x00, 0x73, 0x80, 0x39, 0xC0, 0x1C, 0xE0, 0x0C, 0xF0, + 0x4F, 0xF8, 0x7F, 0xFF, 0xFF, 0xFF, 0xE1, 0xC1, 0x80, 0x70, 0xC0, 0x3C, 0x60, 0x0F, 0xF0, 0x03, + 0xF8, 0x00, 0xF0, 0x00, 0x08, 0x00, 0x38, 0x00, 0xF0, 0x07, 0xE0, 0x3F, 0xC0, 0xE7, 0x83, 0x1F, + 0x0C, 0x7E, 0x39, 0xF8, 0xFE, 0x71, 0xF1, 0xFF, 0xFE, 0xFF, 0xF8, 0x01, 0x80, 0x03, 0x80, 0x1F, + 0x00, 0xFC, 0x07, 0x38, 0x1C, 0xE0, 0xE3, 0x83, 0x8C, 0x0E, 0x70, 0x3F, 0xC3, 0xFF, 0xFF, 0xFF, + 0xCE, 0x1C, 0x38, 0x70, 0xF1, 0xC1, 0xFE, 0x03, 0xF8, 0x03, 0x80, 0x03, 0x00, 0x00, 0x0F, 0x00, + 0x00, 0x1F, 0x00, 0x00, 0x7F, 0x00, 0x01, 0xCE, 0x00, 0x07, 0x8C, 0x00, 0x1E, 0x10, 0x00, 0x38, + 0x00, 0x00, 0xE0, 0x00, 0x00, 0xF0, 0x00, 0x0D, 0xFF, 0xFF, 0xF8, 0xFF, 0xFF, 0xF0, 0x3F, 0xFE, + 0x00, 0x07, 0xFE, 0x7F, 0xFD, 0xFF, 0xF7, 0x80, 0x0C, 0x00, 0x1C, 0x00, 0x3F, 0x80, 0x1F, 0xFF, + 0x0F, 0xFE, 0x0C, 0x00, 0x00, 0x78, 0x00, 0x00, 0xC0, 0x00, 0x01, 0x80, 0x00, 0x01, 0xE0, 0x00, + 0x07, 0xC0, 0x00, 0x0C, 0xC0, 0x00, 0x03, 0xC0, 0x00, 0x07, 0xC0, 0x00, 0x1F, 0xC0, 0x00, 0x73, + 0x80, 0x01, 0xE3, 0x00, 0x07, 0x84, 0x00, 0x0E, 0x00, 0x00, 0x38, 0x00, 0x00, 0x3C, 0x00, 0x03, + 0x7F, 0xFF, 0xFE, 0x3F, 0xFF, 0xFC, 0x0F, 0xFF, 0x80, 0x0C, 0x00, 0x78, 0x00, 0xC0, 0x01, 0x80, + 0x01, 0xE0, 0x07, 0xC0, 0x0C, 0x00, 0x03, 0xFF, 0x3F, 0xFE, 0xFF, 0xFB, 0xC0, 0x06, 0x00, 0x0E, + 0x00, 0x1F, 0xC0, 0x0F, 0xFF, 0x87, 0xFF, 0x00, 0x03, 0xC0, 0x01, 0xFC, 0x00, 0x7F, 0x00, 0x1E, + 0x00, 0x03, 0x80, 0x00, 0xE0, 0x08, 0x1C, 0x03, 0x83, 0xE0, 0x70, 0x3F, 0x0C, 0x01, 0xFB, 0x80, + 0x07, 0x70, 0x00, 0xE7, 0x00, 0x3C, 0xF0, 0x0F, 0x1F, 0xFF, 0xC1, 0xFF, 0xF0, 0x0F, 0xF0, 0x00, + 0x20, 0x00, 0x07, 0x00, 0xC0, 0x70, 0x0F, 0x86, 0x00, 0xFF, 0xE0, 0x03, 0xFE, 0x00, 0x1C, 0x70, + 0x01, 0xC7, 0x80, 0x78, 0x3F, 0xFF, 0x81, 0xFF, 0xE0, 0x0F, 0xF8, 0x00, 0x00, 0x18, 0x38, 0x70, + 0xE0, 0xC1, 0x83, 0x0E, 0xFD, 0xF0, 0x00, 0x0D, 0xDF, 0xB7, 0x00, 0x01, 0xC0, 0x30, 0x0E, 0x01, + 0xC0, 0x7C, 0x3F, 0xFF, 0xBF, 0x00, 0x00, 0x00, 0xD8, 0x3B, 0x83, 0x60, 0x1F, 0x0F, 0xC7, 0xA1, + 0xC0, 0x70, 0x1C, 0x03, 0xF8, 0x7F, 0xFF, 0x3F, 0x04, 0x00, 0x38, 0x7F, 0xD3, 0xC0, 0x00, 0x00, + 0xE0, 0x70, 0x38, 0x0C, 0x06, 0x03, 0x01, 0x80, 0xC0, 0x60, 0x30, 0x18, 0x0E, 0x07, 0x03, 0x81, + 0xC0, 0xE0, 0x38, 0x1F, 0xF1, 0x3C, 0x00, 0x00, 0x00, 0x38, 0x07, 0x00, 0x60, 0x0C, 0x01, 0x80, + 0x30, 0x06, 0x00, 0xE0, 0x1C, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xF0, 0x1F, + 0xC1, 0xF8, 0x00, 0x33, 0xCC, 0x30, 0xFB, 0xEC, 0x00, 0x71, 0xC7, 0x0C, 0x30, 0xC3, 0x0C, 0x30, + 0xC3, 0x0E, 0x38, 0xE3, 0x8E, 0x30, 0x78, 0x30, 0x18, 0x0F, 0x87, 0xC3, 0x00, 0x00, 0x70, 0x38, + 0x0C, 0x06, 0x03, 0x01, 0x80, 0xC0, 0x70, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x81, 0xC0, 0xE0, 0x78, + 0x3F, 0x8F, 0xC0, 0x00, 0x0C, 0x1E, 0x0C, 0x06, 0x03, 0xE1, 0xF0, 0xC0, 0x38, 0x3F, 0x3F, 0x9C, + 0xFC, 0x7E, 0x3F, 0x1D, 0xFE, 0xFF, 0x0F, 0x83, 0x87, 0xDF, 0xCF, 0xC7, 0x00, 0x0C, 0x01, 0xE0, + 0x0C, 0x00, 0x60, 0x03, 0xE0, 0x1F, 0x00, 0xC0, 0x00, 0x00, 0x1C, 0x01, 0xF8, 0x1F, 0xC0, 0xE7, + 0x0E, 0x38, 0x71, 0xC3, 0xCE, 0x0F, 0xFE, 0x7F, 0xF0, 0x3F, 0x01, 0xC0, 0x3E, 0x0F, 0xE0, 0x7E, + 0x03, 0x80, 0x00, 0xE3, 0x8E, 0x18, 0x61, 0x86, 0x18, 0x61, 0x86, 0x1C, 0x71, 0xC7, 0x1C, 0x71, + 0xC0, 0x0C, 0xF3, 0x0C, 0x1E, 0xFB, 0x00, 0xE0, 0xE0, 0x60, 0x60, 0x60, 0x60, 0x60, 0x70, 0x70, + 0x70, 0x70, 0x70, 0x70, 0x70, 0x70, 0x78, 0x7F, 0x3F, 0x00, 0x30, 0xF0, 0xC0, 0xC0, 0x78, 0xF8, + 0xC0, 0x0E, 0x00, 0x03, 0xC0, 0x78, 0x60, 0x3F, 0x8C, 0x0F, 0xE1, 0xF3, 0xC0, 0x3E, 0x70, 0x06, + 0x1C, 0x01, 0x03, 0x80, 0x70, 0x7C, 0x0E, 0x07, 0xE1, 0x80, 0x3F, 0x70, 0x00, 0xEE, 0x00, 0x1C, + 0xE0, 0x07, 0x9E, 0x01, 0xE3, 0xFF, 0xF8, 0x3F, 0xFE, 0x01, 0xFE, 0x00, 0x0E, 0x00, 0x01, 0xE0, + 0x00, 0x18, 0x00, 0x01, 0x80, 0x00, 0x1F, 0x00, 0x01, 0xF0, 0x00, 0x18, 0x00, 0x02, 0x00, 0x00, + 0x70, 0x0C, 0x07, 0x00, 0xF8, 0x60, 0x0F, 0xFE, 0x00, 0x3F, 0xE0, 0x01, 0xC7, 0x00, 0x1C, 0x78, + 0x07, 0x83, 0xFF, 0xF8, 0x1F, 0xFE, 0x00, 0xFF, 0x80, 0x31, 0xEE, 0x38, 0x7F, 0xF6, 0x00, 0x38, + 0xE3, 0x87, 0x1C, 0x71, 0xCF, 0xFB, 0xC0, 0x00, 0x18, 0x1E, 0x06, 0x01, 0x80, 0x3C, 0x1F, 0x06, + 0x00, 0x00, 0x1C, 0x07, 0x01, 0xC0, 0x70, 0x3E, 0x3F, 0xFF, 0x7C, 0x00, 0xEE, 0xE6, 0x66, 0x66, + 0x66, 0x67, 0x77, 0x77, 0x77, 0xE0, 0xE0, 0x60, 0x60, 0x60, 0x60, 0x60, 0x70, 0x70, 0x70, 0x70, + 0x70, 0x70, 0x70, 0x70, 0x78, 0x7F, 0x3F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x60, 0x00, + 0x0E, 0x70, 0x00, 0x07, 0x60, 0x00, 0x07, 0xE0, 0x00, 0x07, 0xE0, 0x00, 0x07, 0xF0, 0x00, 0x07, + 0x78, 0x00, 0x1E, 0x7F, 0xFF, 0xFE, 0x1F, 0xFF, 0xF8, 0x07, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x18, 0x00, 0x60, 0x00, 0x00, 0x03, 0x80, + 0x00, 0x00, 0x18, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x06, 0x0E, 0x00, 0x00, 0x78, 0x78, 0x00, 0x0F, + 0x81, 0xE0, 0x03, 0xFF, 0x0F, 0xFF, 0xFF, 0x7F, 0x1F, 0xFF, 0xE1, 0xF8, 0x3F, 0xF0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x00, 0xE0, + 0x00, 0x00, 0x00, 0xE3, 0x8E, 0x1C, 0x71, 0xC7, 0x3F, 0xEF, 0x00, 0x01, 0xC7, 0x1C, 0x00, 0x07, + 0x01, 0xC0, 0x70, 0x1C, 0x0F, 0x8F, 0xFF, 0xDF, 0x00, 0x00, 0x01, 0x80, 0x70, 0x18, 0x00, 0x3B, + 0x0F, 0xE3, 0xB0, 0x00, 0x00, 0x02, 0x01, 0xE0, 0x78, 0x3F, 0x0E, 0xE7, 0x19, 0x87, 0xE1, 0xF8, + 0x77, 0x39, 0xFE, 0x3F, 0x00, 0x1D, 0x80, 0x7E, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x18, 0x00, 0x60, 0x0F, 0xC0, 0x7F, 0x03, 0xFC, 0x1C, 0x70, 0x61, 0xC3, 0x87, 0x07, 0xFC, 0x1F, + 0xF0, 0x3F, 0xE0, 0x03, 0xF0, 0x07, 0xC0, 0x00, 0x00, 0x76, 0x00, 0x00, 0x7E, 0x00, 0x00, 0x76, + 0x00, 0x00, 0x00, 0x0E, 0x60, 0x00, 0x0E, 0x70, 0x00, 0x07, 0x60, 0x00, 0x07, 0xE0, 0x00, 0x07, + 0xE0, 0x00, 0x07, 0xF0, 0x00, 0x07, 0x78, 0x00, 0x1E, 0x7F, 0xFF, 0xFE, 0x1F, 0xFF, 0xF8, 0x07, + 0xFF, 0x80, 0x00, 0x76, 0x00, 0x00, 0x03, 0xF8, 0x00, 0x00, 0x1D, 0x80, 0x00, 0x00, 0x00, 0x00, + 0x06, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x60, 0xE0, + 0x00, 0x07, 0x87, 0x80, 0x00, 0xF8, 0x1E, 0x00, 0x3F, 0xF0, 0xFF, 0xFF, 0xF7, 0xF1, 0xFF, 0xFE, + 0x1F, 0x83, 0xFF, 0x00, 0x00, 0xED, 0xFF, 0xB0, 0x00, 0x00, 0x0E, 0x1C, 0x38, 0x38, 0x70, 0xE1, + 0xC7, 0xBE, 0x78, 0x00, 0x33, 0x07, 0xE0, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x60, 0x1C, + 0x03, 0x80, 0xF8, 0x7F, 0xFF, 0x7E, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x1C, + 0x00, 0x00, 0x76, 0x00, 0x00, 0x7E, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x0E, 0x60, 0x00, 0x0E, + 0x70, 0x00, 0x07, 0x60, 0x00, 0x07, 0xE0, 0x00, 0x07, 0xE0, 0x00, 0x07, 0xF0, 0x00, 0x07, 0x78, + 0x00, 0x1E, 0x7F, 0xFF, 0xFE, 0x1F, 0xFF, 0xF8, 0x07, 0xFF, 0x80, 0x00, 0x18, 0x00, 0x00, 0x00, + 0xE0, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xEC, 0x00, 0x00, 0x07, 0xF0, 0x00, 0x00, 0x3B, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x38, + 0x00, 0x00, 0xC1, 0xC0, 0x00, 0x0F, 0x0F, 0x00, 0x01, 0xF0, 0x3C, 0x00, 0x7F, 0xE1, 0xFF, 0xFF, + 0xEF, 0xE3, 0xFF, 0xFC, 0x3F, 0x07, 0xFE, 0x00, 0x00, 0x30, 0x70, 0xE7, 0x6F, 0xFD, 0x80, 0x00, + 0x00, 0x70, 0xE1, 0xC1, 0xC3, 0x87, 0x0E, 0x3D, 0xF3, 0xC0, 0x00, 0x0C, 0x03, 0x80, 0x30, 0x19, + 0x83, 0xF0, 0x7E, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x30, 0x0E, 0x01, 0xC0, 0x7C, 0x3F, 0xFF, + 0xBF, 0x00, 0x00, 0x3C, 0x00, 0xFF, 0x01, 0xFF, 0xF0, 0x0F, 0xF0, 0x1F, 0xE0, 0xFC, 0x03, 0xC0, + 0x0F, 0x00, 0x38, 0x00, 0xE0, 0x01, 0xC0, 0x07, 0x04, 0x0E, 0x1C, 0x1C, 0x38, 0x38, 0x20, 0x70, + 0x00, 0xF0, 0x00, 0xF0, 0x00, 0xFF, 0xF8, 0xFF, 0xF0, 0x7F, 0x80, 0x3C, 0x00, 0x1F, 0xE0, 0x07, + 0xFF, 0xC0, 0x07, 0xF8, 0x01, 0xFE, 0x01, 0xFC, 0x00, 0xF3, 0x00, 0x78, 0xE0, 0x38, 0x3C, 0x1C, + 0x07, 0xF7, 0x00, 0xFF, 0x82, 0x00, 0xE1, 0xC0, 0x38, 0x70, 0x0E, 0x08, 0x03, 0x80, 0x00, 0xF0, + 0x00, 0x1E, 0x00, 0x03, 0xFF, 0xE0, 0x7F, 0xF8, 0x07, 0xF8, 0x00, 0x7F, 0x01, 0xFF, 0x03, 0xFE, + 0x00, 0x3F, 0x00, 0xFC, 0x0F, 0xE1, 0xFC, 0x3F, 0xC0, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, + 0x07, 0x80, 0x0C, 0x00, 0x7F, 0x00, 0x1F, 0xF0, 0x03, 0xFE, 0x00, 0x03, 0xF0, 0x00, 0xFC, 0x00, + 0xFE, 0x01, 0xFF, 0xC3, 0xFC, 0x7E, 0xFC, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x07, + 0x00, 0x01, 0xC0, 0x00, 0x3C, 0x00, 0xFF, 0x01, 0xFF, 0xF0, 0x0F, 0xF0, 0x1F, 0xE0, 0xFC, 0x03, + 0xC0, 0x0F, 0x00, 0x38, 0x00, 0xE0, 0x01, 0xC0, 0x07, 0x00, 0x0E, 0x00, 0x1C, 0x00, 0x38, 0x00, + 0x70, 0x00, 0xF0, 0x00, 0xF0, 0x00, 0xFF, 0xF8, 0xFF, 0xF0, 0x7F, 0x80, 0x3C, 0x00, 0x1F, 0xE0, + 0x07, 0xFF, 0xC0, 0x07, 0xF8, 0x01, 0xFE, 0x01, 0xFC, 0x00, 0xF3, 0x00, 0x78, 0xE0, 0x38, 0x3C, + 0x1C, 0x07, 0xF7, 0x00, 0xFF, 0x80, 0x00, 0xE0, 0x00, 0x38, 0x00, 0x0E, 0x00, 0x03, 0x80, 0x00, + 0xF0, 0x00, 0x1E, 0x00, 0x03, 0xFF, 0xE0, 0x7F, 0xF8, 0x07, 0xF8, 0x00, 0x7F, 0x01, 0xFF, 0x03, + 0xFE, 0x00, 0x3F, 0x00, 0xFC, 0x0F, 0xE1, 0xFC, 0x3F, 0xC0, 0xFC, 0x00, 0x00, 0x00, 0x7F, 0x00, + 0x1F, 0xF0, 0x03, 0xFE, 0x00, 0x03, 0xF0, 0x00, 0xFC, 0x00, 0xFE, 0x01, 0xFF, 0xC3, 0xFC, 0x7E, + 0xFC, 0x0F, 0x80, 0x00, 0x00, 0x01, 0x80, 0x07, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, + 0x1F, 0xE0, 0x3F, 0xFE, 0x01, 0xFE, 0x03, 0xFC, 0x1F, 0x80, 0x78, 0x01, 0xE0, 0x07, 0x00, 0x1C, + 0x00, 0x38, 0x00, 0xE0, 0x01, 0xC0, 0x03, 0x80, 0x07, 0x00, 0x0E, 0x00, 0x1E, 0x00, 0x1E, 0x00, + 0x1F, 0xFF, 0x1F, 0xFE, 0x0F, 0xF0, 0x01, 0x80, 0x00, 0xE0, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x0F, 0x00, 0x07, 0xF8, 0x01, 0xFF, 0xF0, 0x01, 0xFE, 0x00, 0x7F, 0x80, 0x7F, 0x00, 0x3C, + 0xC0, 0x1E, 0x38, 0x0E, 0x0F, 0x07, 0x01, 0xFD, 0xC0, 0x3F, 0xE0, 0x00, 0x38, 0x00, 0x0E, 0x00, + 0x03, 0x80, 0x00, 0xE0, 0x00, 0x3C, 0x00, 0x07, 0x80, 0x00, 0xFF, 0xF8, 0x1F, 0xFE, 0x01, 0xFE, + 0x00, 0x18, 0x00, 0x70, 0x01, 0x80, 0x00, 0x00, 0x00, 0x01, 0xFC, 0x07, 0xFC, 0x0F, 0xF8, 0x00, + 0xFC, 0x03, 0xF0, 0x3F, 0x87, 0xF0, 0xFF, 0x03, 0xF0, 0x00, 0x00, 0x00, 0x18, 0x00, 0x0E, 0x00, + 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xC0, 0x07, 0xFC, 0x00, 0xFF, 0x80, 0x00, 0xFC, + 0x00, 0x3F, 0x00, 0x3F, 0x80, 0x7F, 0xF0, 0xFF, 0x1F, 0xBF, 0x03, 0xE0, 0x00, 0x00, 0x03, 0x00, + 0xF0, 0x0E, 0x01, 0xE0, 0x1C, 0x01, 0xC0, 0x38, 0x07, 0x00, 0xEE, 0x3D, 0xFF, 0x3F, 0xC0, 0x40, + 0x03, 0x00, 0x0E, 0x00, 0x0E, 0x00, 0x1E, 0x00, 0x1C, 0x00, 0x1C, 0x00, 0x38, 0x00, 0x70, 0x00, + 0xF0, 0xE3, 0xF1, 0xFF, 0xFB, 0xFC, 0xF0, 0x40, 0x00, 0x0C, 0x01, 0xC0, 0x38, 0x00, 0x00, 0x00, + 0x06, 0x01, 0xE0, 0x1C, 0x03, 0xC0, 0x38, 0x03, 0x80, 0x70, 0x0E, 0x01, 0xDC, 0x7B, 0xFE, 0x7F, + 0x80, 0x80, 0x0E, 0x00, 0x1C, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x01, 0xC0, 0x01, + 0xC0, 0x03, 0xC0, 0x03, 0x80, 0x03, 0x80, 0x07, 0x00, 0x0E, 0x00, 0x1E, 0x1C, 0x7E, 0x3F, 0xFF, + 0x7F, 0x9E, 0x08, 0x00, 0x02, 0x03, 0x81, 0xC0, 0x60, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x83, 0x83, + 0xC3, 0xCF, 0xC7, 0xC1, 0x80, 0x02, 0x00, 0x38, 0x01, 0xC0, 0x06, 0x00, 0x38, 0x01, 0xC0, 0x0F, + 0x00, 0x7E, 0x03, 0xF0, 0x38, 0x03, 0xC0, 0x3C, 0x0F, 0xC0, 0x7C, 0x01, 0x80, 0x00, 0x0E, 0x07, + 0x03, 0x80, 0x00, 0x00, 0x10, 0x1C, 0x0E, 0x03, 0x01, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x1C, 0x1E, + 0x1E, 0x7E, 0x3E, 0x0C, 0x00, 0x0C, 0x00, 0xF0, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x1C, + 0x00, 0xE0, 0x03, 0x00, 0x1C, 0x00, 0xE0, 0x07, 0x80, 0x3F, 0x01, 0xF8, 0x1C, 0x01, 0xE0, 0x1E, + 0x07, 0xE0, 0x3E, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, + 0x0E, 0x00, 0x00, 0x00, 0x70, 0x00, 0xE0, 0xE3, 0x80, 0x03, 0x87, 0x0C, 0x80, 0x1C, 0x38, 0x6E, + 0x00, 0xE1, 0xC3, 0x70, 0x07, 0x9E, 0x3B, 0x00, 0x3F, 0xFF, 0xF8, 0x01, 0xFF, 0xFD, 0xC0, 0x0E, + 0x00, 0x07, 0x00, 0x70, 0x00, 0x3C, 0x07, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x03, 0xFF, 0x80, 0x00, + 0x0F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x03, 0x83, 0x8E, + 0x00, 0x00, 0xE1, 0xC3, 0x02, 0x00, 0x70, 0xE1, 0x83, 0x80, 0x38, 0x71, 0xE1, 0xC0, 0x1E, 0x78, + 0xF8, 0xC0, 0x0F, 0xFF, 0xFF, 0xE0, 0x07, 0xFF, 0xE7, 0xF0, 0x03, 0x80, 0x00, 0x1C, 0x01, 0xC0, + 0x00, 0x0F, 0x01, 0xC0, 0x00, 0x03, 0xFF, 0xE0, 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x3F, 0xC0, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x07, 0x00, 0x00, 0xE1, 0xC3, 0x8C, 0x38, 0x61, + 0xC7, 0x0C, 0x39, 0xC3, 0x87, 0x3C, 0x79, 0xDF, 0xFF, 0xFB, 0xFF, 0x7E, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xC0, 0x00, 0x01, 0x80, 0x70, 0xE3, 0x80, 0xE1, 0x87, 0x01, 0xC3, 0x0E, 0x07, 0x0E, 0x1C, + 0x0F, 0x1E, 0x7C, 0x7F, 0xFF, 0xFF, 0xFF, 0xDF, 0xBE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, + 0x00, 0x00, 0xE0, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x07, 0x70, 0x00, 0x00, + 0x1B, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x01, + 0xC0, 0x03, 0x83, 0x8E, 0x00, 0x0E, 0x1C, 0x32, 0x00, 0x70, 0xE1, 0xB8, 0x03, 0x87, 0x0D, 0xC0, + 0x1E, 0x78, 0xEC, 0x00, 0xFF, 0xFF, 0xE0, 0x07, 0xFF, 0xF7, 0x00, 0x38, 0x00, 0x1C, 0x01, 0xC0, + 0x00, 0xF0, 0x1C, 0x00, 0x03, 0xFF, 0xE0, 0x00, 0x0F, 0xFE, 0x00, 0x00, 0x3F, 0xC0, 0x00, 0x00, + 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x06, 0xC0, + 0x00, 0x00, 0x07, 0x70, 0x00, 0x00, 0x01, 0xB8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x03, 0x83, 0x8E, 0x00, 0x00, 0xE1, + 0xC3, 0x02, 0x00, 0x70, 0xE1, 0x83, 0x80, 0x38, 0x71, 0xE1, 0xC0, 0x1E, 0x78, 0xF8, 0xC0, 0x0F, + 0xFF, 0xFF, 0xE0, 0x07, 0xFF, 0xE7, 0xF0, 0x03, 0x80, 0x00, 0x1C, 0x01, 0xC0, 0x00, 0x0F, 0x01, + 0xC0, 0x00, 0x03, 0xFF, 0xE0, 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x3F, 0xC0, 0x00, 0x00, 0x00, + 0x30, 0x00, 0x0E, 0x00, 0x01, 0xC0, 0x00, 0x6E, 0x00, 0x1F, 0xC0, 0x01, 0xB8, 0x00, 0x00, 0x00, + 0x00, 0x0E, 0x00, 0x01, 0xC0, 0x00, 0x38, 0x70, 0xE3, 0x0E, 0x18, 0x71, 0xC3, 0x0E, 0x70, 0xE1, + 0xCF, 0x1E, 0x77, 0xFF, 0xFE, 0xFF, 0xDF, 0x80, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0xE0, 0x00, + 0x01, 0xC0, 0x00, 0x06, 0xE0, 0x00, 0x1F, 0xC0, 0x00, 0x1B, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xC0, 0x00, 0x01, 0x80, 0x70, 0xE3, 0x80, 0xE1, 0x87, 0x01, 0xC3, 0x0E, 0x07, + 0x0E, 0x1C, 0x0F, 0x1E, 0x7C, 0x7F, 0xFF, 0xFF, 0xFF, 0xDF, 0xBE, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x78, 0x00, 0x00, 0x01, 0xFC, 0x00, 0x00, 0x03, 0xFE, 0x00, 0x0E, 0x0F, 0x8F, 0x00, 0x07, + 0x1E, 0x07, 0x20, 0x07, 0x1C, 0x07, 0x70, 0x07, 0x38, 0x07, 0x70, 0x07, 0xF0, 0x1E, 0x60, 0x07, + 0xFF, 0xFC, 0xE0, 0x07, 0xFF, 0xF8, 0xE0, 0x07, 0x1F, 0x80, 0x70, 0x07, 0x00, 0x00, 0x78, 0x0E, + 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x1F, 0xFC, 0x00, 0x00, 0x0F, 0xF0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x78, 0x00, 0x00, 0x00, 0x1F, 0xC0, 0x00, 0x00, 0x03, 0xFE, 0x00, 0x00, 0xE0, 0xF8, 0xF0, + 0x00, 0x07, 0x1E, 0x07, 0x02, 0x00, 0x71, 0xC0, 0x70, 0x70, 0x07, 0x38, 0x07, 0x07, 0x00, 0x7F, + 0x01, 0xF0, 0x60, 0x07, 0xFF, 0xFF, 0xEE, 0x00, 0x7F, 0xFF, 0xFE, 0xE0, 0x07, 0x1F, 0x80, 0x07, + 0x00, 0x70, 0x00, 0x00, 0x78, 0x0E, 0x00, 0x00, 0x03, 0xFF, 0xE0, 0x00, 0x00, 0x1F, 0xFC, 0x00, + 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x1F, 0xC0, 0x00, 0xFF, 0x87, 0x07, + 0x8F, 0x1C, 0x38, 0x1C, 0x71, 0xC0, 0x73, 0xCE, 0x01, 0xDF, 0x70, 0x1E, 0xFF, 0xFF, 0xF3, 0x9F, + 0xFF, 0x80, 0x1F, 0xF0, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x03, 0xF8, 0x00, 0x03, 0xFE, 0x03, 0x83, + 0xC7, 0x81, 0xC3, 0x81, 0xC0, 0xE3, 0x80, 0xE0, 0xF3, 0x80, 0x70, 0xFB, 0x80, 0xF8, 0xFF, 0xFF, + 0xFF, 0xF3, 0xFF, 0xFF, 0xC0, 0x7F, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x70, + 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, + 0x00, 0x00, 0x01, 0xFC, 0x00, 0x00, 0x03, 0xFE, 0x00, 0x0E, 0x0F, 0x8F, 0x00, 0x07, 0x1E, 0x07, + 0x20, 0x07, 0x1C, 0x07, 0x70, 0x07, 0x38, 0x07, 0x70, 0x07, 0xF0, 0x1E, 0x60, 0x07, 0xFF, 0xFC, + 0xE0, 0x07, 0xFF, 0xF8, 0xE0, 0x07, 0x1F, 0x80, 0x70, 0x07, 0x00, 0x00, 0x78, 0x0E, 0x00, 0x00, + 0x3F, 0xFE, 0x00, 0x00, 0x1F, 0xFC, 0x00, 0x00, 0x0F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x01, 0xFC, 0x00, 0x00, 0x00, 0x3F, 0xE0, + 0x00, 0x0E, 0x0F, 0x8F, 0x00, 0x00, 0x71, 0xE0, 0x70, 0x20, 0x07, 0x1C, 0x07, 0x07, 0x00, 0x73, + 0x80, 0x70, 0x70, 0x07, 0xF0, 0x1F, 0x06, 0x00, 0x7F, 0xFF, 0xFE, 0xE0, 0x07, 0xFF, 0xFF, 0xEE, + 0x00, 0x71, 0xF8, 0x00, 0x70, 0x07, 0x00, 0x00, 0x07, 0x80, 0xE0, 0x00, 0x00, 0x3F, 0xFE, 0x00, + 0x00, 0x01, 0xFF, 0xC0, 0x00, 0x00, 0x0F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x07, + 0x00, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x7F, 0x00, 0x03, + 0xFE, 0x1C, 0x1E, 0x3C, 0x70, 0xE0, 0x71, 0xC7, 0x01, 0xCF, 0x38, 0x07, 0x7D, 0xC0, 0x7B, 0xFF, + 0xFF, 0xCE, 0x7F, 0xFE, 0x00, 0x7F, 0xC0, 0x00, 0x01, 0x80, 0x00, 0x00, 0xE0, 0x00, 0x00, 0x70, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x1F, 0xC0, 0x00, 0x1F, 0xF0, + 0x1C, 0x1E, 0x3C, 0x0E, 0x1C, 0x0E, 0x07, 0x1C, 0x07, 0x07, 0x9C, 0x03, 0x87, 0xDC, 0x07, 0xC7, + 0xFF, 0xFF, 0xFF, 0x9F, 0xFF, 0xFE, 0x03, 0xFE, 0x00, 0x0E, 0x00, 0x01, 0xC0, 0x00, 0x18, 0x00, + 0x03, 0x00, 0x00, 0x60, 0x00, 0x0C, 0x00, 0x01, 0x80, 0x00, 0x30, 0x00, 0x07, 0x07, 0x00, 0xE7, + 0xF0, 0x1D, 0xFF, 0x03, 0xF8, 0xF0, 0x7C, 0x0E, 0x0F, 0x01, 0xC1, 0xC0, 0x38, 0x70, 0x1E, 0xFF, + 0xFF, 0x9F, 0xFF, 0xE0, 0x7F, 0xC0, 0x00, 0x0E, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x18, 0x00, 0x00, + 0x30, 0x00, 0x00, 0x60, 0x00, 0x00, 0xC0, 0x00, 0x01, 0x80, 0x00, 0x03, 0x00, 0x00, 0x07, 0x07, + 0x00, 0x0E, 0x7F, 0x00, 0x1D, 0xFF, 0x00, 0x3F, 0x8F, 0x00, 0x7C, 0x0E, 0x00, 0xF0, 0x1C, 0x01, + 0xC0, 0x38, 0x07, 0x01, 0xF0, 0xFF, 0xFF, 0xFD, 0xFF, 0xFF, 0xF8, 0x7F, 0xC0, 0x00, 0x30, 0x00, + 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x38, 0x00, 0x38, 0x00, 0x38, 0x30, + 0x38, 0xFE, 0x3B, 0xFE, 0x3F, 0xC7, 0x3F, 0x07, 0x3E, 0x07, 0x3C, 0x07, 0x78, 0x7E, 0xFF, 0xFC, + 0xFF, 0xF0, 0xF0, 0x00, 0x30, 0x00, 0x06, 0x00, 0x00, 0xC0, 0x00, 0x18, 0x00, 0x03, 0x00, 0x00, + 0x60, 0x00, 0x0E, 0x00, 0x01, 0xC0, 0x00, 0x38, 0x30, 0x07, 0x1F, 0xC0, 0xEF, 0xF8, 0x1F, 0xE3, + 0x83, 0xF0, 0x70, 0x7C, 0x0E, 0x0F, 0x01, 0xC3, 0xC3, 0xF8, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xC0, + 0x00, 0x00, 0x0E, 0x00, 0x01, 0xC0, 0x00, 0x18, 0x00, 0x03, 0x03, 0x00, 0x60, 0x70, 0x0C, 0x0C, + 0x01, 0x80, 0x00, 0x30, 0x00, 0x07, 0x07, 0x00, 0xE7, 0xF0, 0x1D, 0xFF, 0x03, 0xF8, 0xF0, 0x7C, + 0x0E, 0x0F, 0x01, 0xC1, 0xC0, 0x38, 0x70, 0x1E, 0xFF, 0xFF, 0x9F, 0xFF, 0xE0, 0x7F, 0xC0, 0x00, + 0x0E, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x18, 0x00, 0x00, 0x30, 0x60, 0x00, 0x61, 0xC0, 0x00, 0xC1, + 0x80, 0x01, 0x80, 0x00, 0x03, 0x00, 0x00, 0x07, 0x07, 0x00, 0x0E, 0x7F, 0x00, 0x1D, 0xFF, 0x00, + 0x3F, 0x8F, 0x00, 0x7C, 0x0E, 0x00, 0xF0, 0x1C, 0x01, 0xC0, 0x38, 0x07, 0x01, 0xF0, 0xFF, 0xFF, + 0xFD, 0xFF, 0xFF, 0xF8, 0x7F, 0xC0, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x60, 0x30, + 0x70, 0x30, 0x60, 0x38, 0x00, 0x38, 0x00, 0x38, 0x30, 0x38, 0xFE, 0x3B, 0xFE, 0x3F, 0xC7, 0x3F, + 0x07, 0x3E, 0x07, 0x3C, 0x07, 0x78, 0x7E, 0xFF, 0xFC, 0xFF, 0xF0, 0xF0, 0x00, 0x30, 0x00, 0x06, + 0x00, 0x00, 0xC0, 0x00, 0x18, 0x30, 0x03, 0x07, 0x00, 0x60, 0xC0, 0x0E, 0x00, 0x01, 0xC0, 0x00, + 0x38, 0x30, 0x07, 0x1F, 0xC0, 0xEF, 0xF8, 0x1F, 0xE3, 0x83, 0xF0, 0x70, 0x7C, 0x0E, 0x0F, 0x01, + 0xC3, 0xC3, 0xF8, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xC0, 0x00, 0x00, 0x0F, 0x00, 0x7F, 0x01, 0xFE, + 0x03, 0x80, 0x06, 0x00, 0x0C, 0x00, 0x1C, 0x10, 0x3F, 0xF0, 0x3F, 0xE0, 0x3E, 0x00, 0xF0, 0x03, + 0xC0, 0x07, 0x00, 0x1C, 0x00, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xC0, 0x03, 0x80, 0x03, 0xC0, + 0x07, 0xFF, 0xC7, 0xFF, 0xC3, 0xFE, 0x00, 0x03, 0x80, 0x3F, 0x80, 0xFF, 0x83, 0xC7, 0x07, 0x86, + 0x07, 0x9C, 0x07, 0xF0, 0x07, 0xE0, 0x0F, 0xE0, 0x3F, 0xFC, 0xF3, 0xFB, 0xC0, 0x0F, 0x00, 0x1C, + 0x00, 0x38, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xE0, 0x11, 0xFF, 0xF1, 0xFF, 0xE1, 0xFF, 0x00, 0x0F, + 0xC1, 0xFC, 0x3E, 0x83, 0x80, 0x30, 0x03, 0x00, 0x38, 0x03, 0xE7, 0x1F, 0xFF, 0xFE, 0xFF, 0x00, + 0x00, 0x03, 0x80, 0x3F, 0x80, 0xFF, 0x83, 0xC7, 0x07, 0x06, 0x07, 0x9C, 0x07, 0xF8, 0x07, 0xE0, + 0x1F, 0xE1, 0xFF, 0xFB, 0xE3, 0xF8, 0x00, 0x00, 0x06, 0x00, 0x1E, 0x00, 0x18, 0x00, 0x00, 0x00, + 0x00, 0x01, 0xE0, 0x0F, 0xE0, 0x3F, 0xC0, 0x70, 0x00, 0xC0, 0x01, 0x80, 0x03, 0x82, 0x07, 0xFE, + 0x07, 0xFC, 0x07, 0xC0, 0x1E, 0x00, 0x78, 0x00, 0xE0, 0x03, 0x80, 0x07, 0x00, 0x0E, 0x00, 0x1C, + 0x00, 0x38, 0x00, 0x70, 0x00, 0x78, 0x00, 0xFF, 0xF8, 0xFF, 0xF8, 0x7F, 0xC0, 0x03, 0x00, 0x07, + 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x07, 0xF0, 0x1F, 0xF0, 0x78, 0xE0, 0xF0, 0xC0, + 0xF3, 0x80, 0xFE, 0x00, 0xFC, 0x01, 0xFC, 0x07, 0xFF, 0x9E, 0x7F, 0x78, 0x01, 0xE0, 0x03, 0x80, + 0x07, 0x00, 0x0E, 0x00, 0x1C, 0x00, 0x3C, 0x02, 0x3F, 0xFE, 0x3F, 0xFC, 0x3F, 0xE0, 0x03, 0x00, + 0x70, 0x07, 0x00, 0x00, 0x00, 0x00, 0xFC, 0x1F, 0xC3, 0xE8, 0x38, 0x03, 0x00, 0x30, 0x03, 0x80, + 0x3E, 0x71, 0xFF, 0xFF, 0xEF, 0xF0, 0x00, 0x00, 0x03, 0x00, 0x0E, 0x00, 0x0C, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x70, 0x07, 0xF0, 0x1F, 0xF0, 0x78, 0xE0, 0xE0, 0xC0, 0xF3, 0x80, 0xFF, 0x00, 0xFC, + 0x03, 0xFC, 0x3F, 0xFF, 0x7C, 0x7F, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x78, 0x00, 0x00, + 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x7C, 0x00, 0x00, 0xFE, + 0x00, 0x01, 0xCE, 0x60, 0x01, 0xC7, 0x70, 0x01, 0xC7, 0x60, 0x01, 0xC7, 0xE0, 0x01, 0xFF, 0xE0, + 0x00, 0xFF, 0xF0, 0x00, 0x07, 0x78, 0x00, 0x0E, 0x7F, 0xFF, 0xFE, 0x1F, 0xFF, 0xFC, 0x07, 0xFF, + 0xE0, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xFC, 0x0C, 0x00, 0x07, 0xF0, 0x70, 0x00, + 0x73, 0xC3, 0x00, 0x03, 0x8E, 0x38, 0x00, 0x1C, 0x71, 0xC0, 0x00, 0xE3, 0x8F, 0x00, 0x07, 0xB8, + 0x3C, 0x00, 0x1F, 0xC1, 0xFF, 0xFF, 0xFF, 0xE3, 0xFF, 0xFF, 0xFF, 0x07, 0xFF, 0x80, 0x00, 0x0E, + 0x01, 0xC0, 0x38, 0x00, 0x00, 0x00, 0x1E, 0x07, 0xE1, 0xFE, 0x39, 0xC6, 0x39, 0xC3, 0x1C, 0x63, + 0xFC, 0x3F, 0x80, 0x70, 0x3C, 0xFF, 0x9F, 0xC0, 0x00, 0x00, 0x06, 0x00, 0x1C, 0x00, 0x60, 0x00, + 0x00, 0x00, 0x00, 0x1C, 0x01, 0xF8, 0x07, 0xF0, 0x39, 0xE0, 0xE3, 0x83, 0x0E, 0x0E, 0x38, 0x3D, + 0xC0, 0x7F, 0x0F, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x1B, 0x80, 0x07, 0xF0, 0x00, 0x6E, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x07, 0xE0, 0x00, 0xFE, 0x00, 0x39, 0xC0, 0x07, 0x19, + 0xC0, 0xC3, 0xB8, 0x1C, 0x77, 0x03, 0xFF, 0xC0, 0x3F, 0xB8, 0x01, 0xF7, 0x00, 0x0E, 0x70, 0x03, + 0xCF, 0x00, 0xF0, 0xFF, 0xFC, 0x0F, 0xFF, 0x00, 0x7F, 0x80, 0x00, 0x1D, 0x80, 0x00, 0x7F, 0x00, + 0x01, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0xF8, 0x00, 0x07, 0xF0, + 0x00, 0x39, 0xC0, 0x00, 0xE7, 0x03, 0x03, 0x0E, 0x1C, 0x0E, 0x38, 0x70, 0x3F, 0xFD, 0x80, 0x7F, + 0xFE, 0x00, 0x3F, 0x38, 0x00, 0x70, 0x70, 0x03, 0xC1, 0xE0, 0x1E, 0x03, 0xFF, 0xF0, 0x0F, 0xFF, + 0x80, 0x0F, 0xF8, 0x00, 0x1B, 0x07, 0x70, 0x6E, 0x00, 0x00, 0x00, 0x1E, 0x07, 0xE1, 0xFE, 0x39, + 0xC6, 0x39, 0xC3, 0x1C, 0x63, 0xFC, 0x3F, 0x80, 0x70, 0x3C, 0xFF, 0x9F, 0xC0, 0x00, 0x00, 0x1D, + 0x80, 0x7E, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x01, 0xF8, 0x07, 0xF0, 0x39, 0xE0, 0xE3, + 0x83, 0x0E, 0x0E, 0x38, 0x3D, 0xC0, 0x7F, 0x0F, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x30, + 0x00, 0x01, 0x80, 0x00, 0x0E, 0x00, 0x00, 0x70, 0x00, 0x83, 0x80, 0x1E, 0x1C, 0x00, 0xE0, 0xE0, + 0x0E, 0x07, 0x00, 0x38, 0x3B, 0x00, 0xC1, 0xDC, 0x0F, 0x0E, 0xC1, 0xF0, 0x7E, 0x06, 0x03, 0xF0, + 0x00, 0x1F, 0xC0, 0x00, 0xEF, 0x00, 0x1E, 0x7F, 0xFF, 0xF0, 0xFF, 0xFF, 0x01, 0xFF, 0x80, 0x00, + 0x00, 0x30, 0x00, 0x00, 0x18, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x07, 0x00, 0x00, 0x83, 0x80, 0x01, + 0xE1, 0xC0, 0x00, 0xE0, 0xE0, 0x00, 0xE0, 0x70, 0x00, 0x38, 0x38, 0x30, 0x0C, 0x1C, 0x1C, 0x0F, + 0x0E, 0x0C, 0x1F, 0x07, 0x0E, 0x06, 0x03, 0x87, 0x00, 0x01, 0xC3, 0xC0, 0x00, 0xE0, 0xF0, 0x01, + 0xF8, 0x7F, 0xFF, 0xFF, 0x8F, 0xFF, 0xF7, 0xC1, 0xFF, 0xC0, 0x00, 0x00, 0x40, 0x3C, 0x1F, 0x8F, + 0xC7, 0xE0, 0xF0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0xC0, 0x3C, 0x03, 0x80, 0x38, 0x07, 0x00, 0xE0, + 0x3C, 0xFF, 0x1F, 0xC3, 0x00, 0x00, 0x00, 0x40, 0x0F, 0x80, 0x7E, 0x07, 0xE0, 0x7E, 0x01, 0xE0, + 0x0E, 0x00, 0x1C, 0x00, 0x78, 0x00, 0x70, 0x00, 0xE0, 0x01, 0xC0, 0x03, 0x80, 0x0E, 0x00, 0x3C, + 0x01, 0xFC, 0xFF, 0xFF, 0xF9, 0xFC, 0x00, 0x00, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, + 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, + 0x00, 0x07, 0x20, 0x07, 0x70, 0x07, 0x70, 0x07, 0x60, 0x07, 0xE0, 0x07, 0xE0, 0x07, 0x70, 0x0E, + 0x78, 0x1E, 0x7F, 0xFC, 0x3F, 0xF8, 0x0F, 0xF0, 0x00, 0x07, 0x00, 0x00, 0x70, 0x00, 0x07, 0x00, + 0x00, 0x70, 0x00, 0x07, 0x00, 0x00, 0x70, 0x00, 0x07, 0x00, 0x00, 0x70, 0x00, 0x07, 0x00, 0x00, + 0x70, 0x00, 0x07, 0x00, 0x00, 0x70, 0x00, 0x07, 0x02, 0x00, 0x70, 0x70, 0x07, 0x07, 0x00, 0x78, + 0x60, 0x07, 0xFE, 0x00, 0x7F, 0xE0, 0x07, 0x07, 0x00, 0xF0, 0x78, 0x1E, 0x03, 0xFF, 0xC0, 0x1F, + 0xF8, 0x00, 0xFE, 0x00, 0x38, 0xE3, 0x8E, 0x38, 0xE3, 0x8E, 0x38, 0xE3, 0x8E, 0x18, 0x61, 0x8E, + 0xFB, 0xC0, 0x00, 0x38, 0x1C, 0x0E, 0x07, 0x03, 0x81, 0xC0, 0xE0, 0x70, 0x38, 0x1C, 0x0E, 0x07, + 0x01, 0x80, 0xC0, 0x70, 0x7C, 0xFF, 0xFB, 0xC0, 0x00, 0x07, 0x81, 0xFC, 0x3F, 0xE3, 0x8E, 0x30, + 0x60, 0x06, 0x0F, 0xE3, 0xFE, 0x7F, 0xEF, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x0E, 0x00, 0xE0, 0x06, + 0x00, 0x60, 0x07, 0x00, 0x70, 0x07, 0x00, 0x00, 0x00, 0x07, 0xC0, 0x0F, 0xE0, 0x1F, 0xE0, 0x3C, + 0x70, 0x78, 0x70, 0x7C, 0x30, 0xFE, 0x38, 0xEF, 0xFF, 0xE7, 0xFF, 0xE1, 0xC0, 0xE0, 0x00, 0xE0, + 0x00, 0xE0, 0x00, 0xE0, 0x00, 0x60, 0x00, 0x70, 0x00, 0x70, 0x00, 0x70, 0x00, 0x70, 0x00, 0x07, + 0xC0, 0xFE, 0x0F, 0xE1, 0xC7, 0x18, 0x73, 0x87, 0x7E, 0x7F, 0xFE, 0xE7, 0xE0, 0x00, 0x00, 0x00, + 0x07, 0xC0, 0x0F, 0xE0, 0x0E, 0xE0, 0x1C, 0x70, 0x38, 0x70, 0x3C, 0x38, 0x7E, 0x3C, 0xFF, 0xFF, + 0xE7, 0xFF, 0x01, 0xC0, 0x01, 0x80, 0x01, 0xC0, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, + 0x00, 0x0E, 0x00, 0x0E, 0x20, 0x07, 0x70, 0x07, 0x70, 0x07, 0x60, 0x07, 0xE0, 0x07, 0xE0, 0x07, + 0x70, 0x07, 0x78, 0x1E, 0x7F, 0xFC, 0x3F, 0xF8, 0x0F, 0xF0, 0x01, 0x80, 0x00, 0x1C, 0x00, 0x01, + 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x70, 0x20, 0x07, + 0x07, 0x00, 0x70, 0x70, 0x07, 0x86, 0x00, 0x7F, 0xE0, 0x07, 0xFE, 0x00, 0x70, 0x70, 0x07, 0x07, + 0x00, 0xE0, 0x7F, 0xFE, 0x03, 0xFF, 0xC0, 0x0F, 0xF0, 0x00, 0x30, 0xE3, 0x00, 0x00, 0x03, 0x8E, + 0x38, 0x71, 0xC7, 0x1C, 0xFF, 0xBC, 0x00, 0x18, 0x0E, 0x01, 0x80, 0x00, 0x00, 0x00, 0x01, 0xC0, + 0x70, 0x1C, 0x07, 0x03, 0xE3, 0xFF, 0xF7, 0xC0, 0x00, 0x08, 0x07, 0x81, 0xE0, 0xFC, 0x3B, 0x9C, + 0x66, 0x1F, 0x87, 0xE1, 0xDC, 0xE7, 0xF8, 0xFC, 0x01, 0x80, 0x06, 0x00, 0xFC, 0x07, 0xF0, 0x3F, + 0xC1, 0xC7, 0x06, 0x1C, 0x38, 0x70, 0x7F, 0xC1, 0xFF, 0x03, 0xFE, 0x00, 0x3F, 0x00, 0x7C, 0x00, + 0x00, 0x08, 0x00, 0x38, 0x00, 0xF0, 0x07, 0xE0, 0x3F, 0xC0, 0xE7, 0x83, 0x1F, 0x0C, 0x7E, 0x39, + 0xF8, 0xFE, 0x71, 0xF1, 0xFF, 0xFE, 0xFF, 0xF8, 0x01, 0x80, 0x03, 0x80, 0x1F, 0x00, 0xFC, 0x07, + 0x38, 0x1C, 0xE0, 0xE3, 0x83, 0x8C, 0x0E, 0x70, 0x3F, 0xC3, 0xFF, 0xFF, 0xFF, 0xCE, 0x1C, 0x38, + 0x70, 0xF1, 0xC1, 0xFE, 0x03, 0xF8, 0x03, 0x80, 0x1C, 0x1F, 0x9F, 0xCE, 0x7E, 0x3F, 0x1F, 0x8E, + 0xFF, 0x7F, 0x87, 0xC1, 0xC3, 0xEF, 0xE7, 0xE3, 0x80, 0x1C, 0x01, 0xF8, 0x1F, 0xC0, 0xE7, 0x0E, + 0x38, 0x71, 0xC3, 0xCE, 0x0F, 0xFE, 0x7F, 0xF0, 0x3F, 0x01, 0xC0, 0x3E, 0x0F, 0xE0, 0x7E, 0x03, + 0x80, 0x00, 0x00, 0x03, 0xC0, 0x01, 0xFC, 0x00, 0x7F, 0x00, 0x1E, 0x00, 0x03, 0x80, 0x00, 0xE0, + 0x08, 0x1C, 0x03, 0x83, 0xE0, 0x70, 0x3F, 0x0C, 0x01, 0xFB, 0x80, 0x07, 0x70, 0x00, 0xE7, 0x00, + 0x3C, 0xF0, 0x0F, 0x1F, 0xFF, 0xC1, 0xFF, 0xF0, 0x0F, 0xF0, 0x00, 0x20, 0x00, 0x07, 0x00, 0xC0, + 0x70, 0x0F, 0x86, 0x00, 0xFF, 0xE0, 0x03, 0xFE, 0x00, 0x1C, 0x70, 0x01, 0xC7, 0x80, 0x78, 0x3F, + 0xFF, 0x81, 0xFF, 0xE0, 0x0F, 0xF8, 0x00, 0x00, 0x03, 0xC0, 0x01, 0xFC, 0x00, 0x7F, 0x00, 0x1E, + 0x00, 0x03, 0x80, 0x00, 0xE0, 0x08, 0x1C, 0x03, 0x83, 0xE0, 0x70, 0x3F, 0x0C, 0x01, 0xFB, 0x80, + 0x07, 0x70, 0x00, 0xE7, 0x00, 0x3C, 0xF0, 0x0F, 0x1F, 0xFF, 0xC1, 0xFF, 0xF0, 0x0F, 0xF0, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0xB8, 0x00, 0x3F, 0x00, 0x06, 0xE0, 0x00, 0x20, 0x00, 0x07, 0x00, + 0xC0, 0x70, 0x0F, 0x86, 0x00, 0xFF, 0xE0, 0x03, 0xFE, 0x00, 0x1C, 0x70, 0x01, 0xC7, 0x80, 0x78, + 0x3F, 0xFF, 0x81, 0xFF, 0xE0, 0x0F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0x00, 0x07, + 0xF0, 0x00, 0x76, 0x00, 0x00, 0x18, 0x38, 0x70, 0xE0, 0xC1, 0x83, 0x0E, 0xFD, 0xF0, 0x00, 0x0D, + 0xDF, 0xB7, 0x00, 0x01, 0xC0, 0x30, 0x0E, 0x01, 0xC0, 0x7C, 0x3F, 0xFF, 0xBF, 0x00, 0x00, 0x00, + 0xD8, 0x3B, 0x83, 0x60, 0x78, 0x01, 0xFF, 0x3B, 0x3C, 0x70, 0x00, 0xE0, 0x81, 0xC3, 0x83, 0x87, + 0xC7, 0x07, 0xCE, 0x03, 0xDC, 0x03, 0xF8, 0x03, 0xE0, 0x01, 0xC0, 0x07, 0xC0, 0x1F, 0xC0, 0x7B, + 0x81, 0xE3, 0x07, 0x8E, 0x1F, 0xFC, 0x3F, 0xF0, 0x38, 0x00, 0x0F, 0xF3, 0x81, 0x3E, 0x70, 0x00, + 0x0E, 0x00, 0x01, 0xC0, 0x30, 0x38, 0x07, 0x07, 0x00, 0x70, 0xE0, 0x07, 0x1C, 0x00, 0x73, 0x80, + 0x07, 0x70, 0x00, 0x7E, 0x00, 0x0F, 0xC0, 0x00, 0xF8, 0x00, 0x0F, 0x00, 0x01, 0xF0, 0x01, 0xFE, + 0x03, 0xFD, 0xF8, 0x7F, 0x1F, 0x00, 0x00, 0x00, 0x38, 0x01, 0xE0, 0x06, 0x00, 0x18, 0x00, 0x7C, + 0x39, 0xF0, 0xE6, 0x03, 0x84, 0x0E, 0x38, 0x38, 0xF8, 0xE1, 0xF3, 0x81, 0xEE, 0x03, 0xF8, 0x07, + 0xC0, 0x07, 0x00, 0x3E, 0x01, 0xFC, 0x0F, 0x70, 0x78, 0xC3, 0xC7, 0x1F, 0xFC, 0x7F, 0xE0, 0x30, + 0x00, 0x78, 0x00, 0x30, 0x00, 0x18, 0x00, 0x07, 0x87, 0x07, 0xC3, 0x83, 0x01, 0xC0, 0x00, 0xE0, + 0x60, 0x70, 0x38, 0x38, 0x0E, 0x1C, 0x03, 0x8E, 0x00, 0xE7, 0x00, 0x3B, 0x80, 0x0F, 0xC0, 0x07, + 0xE0, 0x01, 0xF0, 0x00, 0x78, 0x00, 0x3E, 0x00, 0xFF, 0x07, 0xFB, 0xF3, 0xF8, 0xF8, 0x00, 0x00, + 0x00, 0xE0, 0x0E, 0x00, 0xE4, 0x0E, 0xE0, 0xEF, 0x8E, 0x7C, 0xE1, 0xEE, 0x0F, 0xE0, 0x7C, 0x01, + 0xC0, 0x3E, 0x07, 0xF0, 0xF7, 0x1E, 0x33, 0xC7, 0x7F, 0xF7, 0xFE, 0x00, 0x03, 0x80, 0x78, 0x06, + 0x00, 0x60, 0x07, 0xC0, 0x7C, 0x06, 0x00, 0x00, 0xE0, 0x00, 0xE0, 0x00, 0xE0, 0x00, 0xE0, 0xC0, + 0xE0, 0xE0, 0xE0, 0x70, 0xE0, 0x38, 0xE0, 0x1C, 0xE0, 0x0E, 0xE0, 0x07, 0xE0, 0x07, 0xE0, 0x03, + 0xE0, 0x01, 0xE0, 0x01, 0xF0, 0x0F, 0xF0, 0xFF, 0x7E, 0xFE, 0x3E, 0x00, 0x00, 0x0C, 0x00, 0x1E, + 0x00, 0x38, 0x00, 0x38, 0x00, 0x1F, 0x00, 0x3F, 0x00, 0x18, 0x00, 0x00, 0xE0, 0x0E, 0x00, 0xE4, + 0x0E, 0xE0, 0xEF, 0x8E, 0x7C, 0xE1, 0xEE, 0x0F, 0xE0, 0x7C, 0x01, 0xC0, 0x3E, 0x07, 0xF0, 0xF7, + 0x1E, 0x33, 0xC7, 0x7F, 0xF7, 0xFE, 0x00, 0xE0, 0x00, 0xE0, 0x00, 0xE0, 0x00, 0xE0, 0xC0, 0xE0, + 0xE0, 0xE0, 0x70, 0xE0, 0x38, 0xE0, 0x1C, 0xE0, 0x0E, 0xE0, 0x07, 0xE0, 0x07, 0xE0, 0x03, 0xE0, + 0x01, 0xE0, 0x01, 0xF0, 0x0F, 0xF0, 0xFF, 0x7E, 0xFE, 0x3E, 0x00, 0x00, }; static const EpdGlyph ubuntu_12_regularGlyphs[] = { @@ -2053,404 +2478,606 @@ static const EpdGlyph ubuntu_12_regularGlyphs[] = { { 11, 4, 0, -4, 20, 6, 13045 }, // U+030B { 9, 4, 0, -5, 20, 5, 13051 }, // U+030C { 8, 4, 150, 1, 19, 4, 13056 }, // U+0311 - { 4, 4, 0, -2, -2, 2, 13060 }, // U+0326 - { 6, 6, 0, -3, 0, 5, 13062 }, // U+0327 - { 6, 7, 0, -3, 1, 6, 13067 }, // U+0328 - { 0, 0, 0, 0, 0, 0, 13073 }, // U+034F - { 12, 24, 228, 2, 24, 36, 13073 }, // U+0400 - { 12, 22, 228, 2, 22, 33, 13109 }, // U+0401 - { 18, 17, 300, 0, 17, 39, 13142 }, // U+0402 - { 11, 24, 204, 2, 24, 33, 13181 }, // U+0403 - { 14, 17, 248, 1, 17, 30, 13214 }, // U+0404 - { 13, 17, 213, 0, 17, 28, 13244 }, // U+0405 - { 3, 17, 108, 2, 17, 7, 13272 }, // U+0406 - { 9, 22, 108, -1, 22, 25, 13279 }, // U+0407 - { 11, 17, 200, 0, 17, 24, 13304 }, // U+0408 - { 26, 18, 417, 0, 17, 59, 13328 }, // U+0409 - { 23, 17, 410, 2, 17, 49, 13387 }, // U+040A - { 18, 17, 300, 0, 17, 39, 13436 }, // U+040B - { 14, 24, 252, 2, 24, 42, 13475 }, // U+040C - { 15, 24, 291, 2, 24, 45, 13517 }, // U+040D - { 15, 23, 235, 0, 23, 44, 13562 }, // U+040E - { 14, 22, 280, 2, 17, 39, 13606 }, // U+040F - { 17, 17, 265, 0, 17, 37, 13645 }, // U+0410 - { 13, 17, 248, 2, 17, 28, 13682 }, // U+0411 - { 13, 17, 257, 2, 17, 28, 13710 }, // U+0412 - { 11, 17, 204, 2, 17, 24, 13738 }, // U+0413 - { 18, 22, 289, 0, 17, 50, 13762 }, // U+0414 - { 12, 17, 228, 2, 17, 26, 13812 }, // U+0415 - { 23, 17, 362, 0, 17, 49, 13838 }, // U+0416 - { 14, 17, 229, 0, 17, 30, 13887 }, // U+0417 - { 15, 17, 291, 2, 17, 32, 13917 }, // U+0418 - { 15, 23, 291, 2, 23, 44, 13949 }, // U+0419 - { 14, 17, 252, 2, 17, 30, 13993 }, // U+041A - { 16, 17, 283, 0, 17, 34, 14023 }, // U+041B - { 20, 17, 348, 1, 17, 43, 14057 }, // U+041C - { 14, 17, 282, 2, 17, 30, 14100 }, // U+041D - { 17, 17, 311, 1, 17, 37, 14130 }, // U+041E - { 14, 17, 280, 2, 17, 30, 14167 }, // U+041F - { 13, 17, 243, 2, 17, 28, 14197 }, // U+0420 - { 14, 17, 248, 1, 17, 30, 14225 }, // U+0421 - { 14, 17, 226, 0, 17, 30, 14255 }, // U+0422 - { 15, 17, 235, 0, 17, 32, 14285 }, // U+0423 - { 20, 18, 346, 1, 18, 45, 14317 }, // U+0424 - { 16, 17, 252, 0, 17, 34, 14362 }, // U+0425 - { 16, 22, 287, 2, 17, 44, 14396 }, // U+0426 - { 13, 17, 252, 1, 17, 28, 14440 }, // U+0427 - { 21, 17, 393, 2, 17, 45, 14468 }, // U+0428 - { 23, 22, 401, 2, 17, 64, 14513 }, // U+0429 - { 18, 17, 290, 0, 17, 39, 14577 }, // U+042A - { 18, 17, 342, 2, 17, 39, 14616 }, // U+042B - { 13, 17, 246, 2, 17, 28, 14655 }, // U+042C - { 15, 17, 248, 0, 17, 32, 14683 }, // U+042D - { 23, 17, 412, 2, 17, 49, 14715 }, // U+042E - { 14, 17, 254, 0, 17, 30, 14764 }, // U+042F - { 11, 13, 209, 1, 13, 18, 14794 }, // U+0430 - { 13, 19, 238, 1, 19, 31, 14812 }, // U+0431 - { 11, 13, 219, 2, 13, 18, 14843 }, // U+0432 - { 9, 13, 167, 2, 13, 15, 14861 }, // U+0433 - { 15, 17, 241, 0, 13, 32, 14876 }, // U+0434 - { 12, 13, 224, 1, 13, 20, 14908 }, // U+0435 - { 19, 13, 305, 0, 13, 31, 14928 }, // U+0436 - { 10, 13, 196, 1, 13, 17, 14959 }, // U+0437 - { 11, 13, 239, 2, 13, 18, 14976 }, // U+0438 - { 11, 19, 239, 2, 19, 27, 14994 }, // U+0439 - { 12, 13, 215, 2, 13, 20, 15021 }, // U+043A - { 13, 13, 239, 0, 13, 22, 15041 }, // U+043B - { 16, 13, 292, 1, 13, 26, 15063 }, // U+043C - { 11, 13, 234, 2, 13, 18, 15089 }, // U+043D - { 13, 13, 236, 1, 13, 22, 15107 }, // U+043E - { 11, 13, 231, 2, 13, 18, 15129 }, // U+043F - { 12, 18, 236, 2, 13, 27, 15147 }, // U+0440 - { 11, 13, 186, 1, 13, 18, 15174 }, // U+0441 - { 12, 13, 185, 0, 13, 20, 15192 }, // U+0442 - { 12, 18, 199, 0, 13, 27, 15212 }, // U+0443 - { 17, 24, 306, 1, 19, 51, 15239 }, // U+0444 - { 13, 13, 204, 0, 13, 22, 15290 }, // U+0445 - { 13, 17, 234, 2, 13, 28, 15312 }, // U+0446 - { 11, 13, 213, 1, 13, 18, 15340 }, // U+0447 - { 17, 13, 329, 2, 13, 28, 15358 }, // U+0448 - { 19, 17, 334, 2, 13, 41, 15386 }, // U+0449 - { 15, 13, 239, 0, 13, 25, 15427 }, // U+044A - { 15, 13, 303, 2, 13, 25, 15452 }, // U+044B - { 11, 13, 211, 2, 13, 18, 15477 }, // U+044C - { 12, 13, 199, 0, 13, 20, 15495 }, // U+044D - { 17, 13, 324, 2, 13, 28, 15515 }, // U+044E - { 12, 13, 219, 0, 13, 20, 15543 }, // U+044F - { 12, 20, 224, 1, 20, 30, 15563 }, // U+0450 - { 12, 18, 224, 1, 18, 27, 15593 }, // U+0451 - { 13, 24, 228, 0, 19, 39, 15620 }, // U+0452 - { 9, 20, 167, 2, 20, 23, 15659 }, // U+0453 - { 11, 13, 199, 1, 13, 18, 15682 }, // U+0454 - { 10, 13, 178, 1, 13, 17, 15700 }, // U+0455 - { 4, 18, 101, 1, 18, 9, 15717 }, // U+0456 - { 9, 18, 101, -1, 18, 21, 15726 }, // U+0457 - { 7, 23, 101, -2, 18, 21, 15747 }, // U+0458 - { 21, 13, 345, 0, 13, 35, 15768 }, // U+0459 - { 19, 13, 340, 2, 13, 31, 15803 }, // U+045A - { 13, 19, 228, 0, 19, 31, 15834 }, // U+045B - { 12, 20, 215, 2, 20, 30, 15865 }, // U+045C - { 11, 20, 239, 2, 20, 28, 15895 }, // U+045D - { 12, 24, 199, 0, 19, 36, 15923 }, // U+045E - { 11, 17, 230, 2, 13, 24, 15959 }, // U+045F - { 18, 18, 290, 0, 18, 41, 15983 }, // U+0462 - { 15, 19, 239, 0, 19, 36, 16024 }, // U+0463 - { 17, 17, 311, 1, 17, 37, 16060 }, // U+0472 - { 13, 13, 236, 1, 13, 22, 16097 }, // U+0473 - { 20, 17, 301, 0, 17, 43, 16119 }, // U+0474 - { 15, 13, 226, 0, 13, 25, 16162 }, // U+0475 - { 17, 28, 298, 2, 23, 60, 16187 }, // U+048A - { 14, 24, 243, 2, 19, 42, 16247 }, // U+048B - { 15, 18, 252, 0, 18, 34, 16289 }, // U+048C - { 13, 13, 210, 0, 13, 22, 16323 }, // U+048D - { 13, 17, 243, 2, 17, 28, 16345 }, // U+048E - { 12, 18, 236, 2, 13, 27, 16373 }, // U+048F - { 11, 20, 204, 2, 20, 28, 16400 }, // U+0490 - { 9, 16, 171, 2, 16, 18, 16428 }, // U+0491 - { 13, 17, 209, 0, 17, 28, 16446 }, // U+0492 - { 11, 13, 170, 0, 13, 18, 16474 }, // U+0493 - { 13, 22, 250, 2, 17, 36, 16492 }, // U+0494 - { 11, 18, 218, 2, 13, 25, 16528 }, // U+0495 - { 23, 22, 368, 0, 17, 64, 16553 }, // U+0496 - { 20, 17, 310, 0, 13, 43, 16617 }, // U+0497 - { 14, 22, 229, 0, 17, 39, 16660 }, // U+0498 - { 10, 18, 196, 1, 13, 23, 16699 }, // U+0499 - { 15, 22, 262, 2, 17, 42, 16722 }, // U+049A - { 12, 17, 218, 2, 13, 26, 16764 }, // U+049B - { 16, 17, 283, 2, 17, 34, 16790 }, // U+049C - { 14, 13, 248, 2, 13, 23, 16824 }, // U+049D - { 16, 17, 256, 0, 17, 34, 16847 }, // U+049E - { 14, 13, 222, 0, 13, 23, 16881 }, // U+049F - { 19, 17, 296, 0, 17, 41, 16904 }, // U+04A0 - { 15, 13, 243, 0, 13, 25, 16945 }, // U+04A1 - { 16, 22, 290, 2, 17, 44, 16970 }, // U+04A2 - { 13, 17, 239, 2, 13, 28, 17014 }, // U+04A3 - { 18, 17, 326, 2, 17, 39, 17042 }, // U+04A4 - { 14, 13, 262, 2, 13, 23, 17081 }, // U+04A5 - { 23, 22, 413, 2, 17, 64, 17104 }, // U+04A6 - { 19, 18, 344, 2, 13, 43, 17168 }, // U+04A7 - { 18, 22, 314, 1, 17, 50, 17211 }, // U+04A8 - { 14, 17, 244, 1, 13, 30, 17261 }, // U+04A9 - { 14, 23, 248, 1, 17, 41, 17291 }, // U+04AA - { 11, 19, 186, 1, 13, 27, 17332 }, // U+04AB - { 14, 22, 226, 0, 17, 39, 17359 }, // U+04AC - { 12, 17, 185, 0, 13, 26, 17398 }, // U+04AD - { 15, 17, 239, 0, 17, 32, 17424 }, // U+04AE - { 13, 18, 201, 0, 13, 30, 17456 }, // U+04AF - { 15, 17, 239, 0, 17, 32, 17486 }, // U+04B0 - { 13, 18, 201, 0, 13, 30, 17518 }, // U+04B1 - { 17, 22, 261, 0, 17, 47, 17548 }, // U+04B2 - { 13, 17, 210, 0, 13, 28, 17595 }, // U+04B3 - { 21, 22, 338, 0, 17, 58, 17623 }, // U+04B4 - { 16, 17, 264, 0, 13, 34, 17681 }, // U+04B5 - { 15, 22, 260, 1, 17, 42, 17715 }, // U+04B6 - { 13, 17, 218, 1, 13, 28, 17757 }, // U+04B7 - { 13, 17, 255, 1, 17, 28, 17785 }, // U+04B8 - { 12, 13, 213, 0, 13, 20, 17813 }, // U+04B9 - { 13, 17, 256, 2, 17, 28, 17833 }, // U+04BA - { 11, 19, 228, 2, 19, 27, 17861 }, // U+04BB - { 20, 17, 334, 0, 17, 43, 17888 }, // U+04BC - { 16, 13, 268, 0, 13, 26, 17931 }, // U+04BD - { 20, 22, 334, 0, 17, 55, 17957 }, // U+04BE - { 16, 17, 268, 0, 13, 34, 18012 }, // U+04BF - { 3, 17, 108, 2, 17, 7, 18046 }, // U+04C0 - { 23, 23, 362, 0, 23, 67, 18053 }, // U+04C1 - { 19, 19, 305, 0, 19, 46, 18120 }, // U+04C2 - { 13, 22, 252, 2, 17, 36, 18166 }, // U+04C3 - { 11, 18, 218, 2, 13, 25, 18202 }, // U+04C4 - { 18, 22, 290, 0, 17, 50, 18227 }, // U+04C5 - { 16, 18, 244, 0, 13, 36, 18277 }, // U+04C6 - { 14, 22, 282, 2, 17, 39, 18313 }, // U+04C7 - { 11, 18, 234, 2, 13, 25, 18352 }, // U+04C8 - { 16, 22, 289, 2, 17, 44, 18377 }, // U+04C9 - { 13, 18, 239, 2, 13, 30, 18421 }, // U+04CA - { 13, 22, 255, 1, 17, 36, 18451 }, // U+04CB - { 11, 17, 213, 1, 13, 24, 18487 }, // U+04CC - { 22, 22, 360, 1, 17, 61, 18511 }, // U+04CD - { 18, 18, 300, 1, 13, 41, 18572 }, // U+04CE - { 3, 17, 108, 2, 17, 7, 18613 }, // U+04CF - { 17, 23, 265, 0, 23, 49, 18620 }, // U+04D0 - { 11, 19, 209, 1, 19, 27, 18669 }, // U+04D1 - { 17, 22, 265, 0, 22, 47, 18696 }, // U+04D2 - { 11, 18, 209, 1, 18, 25, 18743 }, // U+04D3 - { 23, 17, 374, 0, 17, 49, 18768 }, // U+04D4 - { 20, 13, 344, 1, 13, 33, 18817 }, // U+04D5 - { 12, 23, 228, 2, 23, 35, 18850 }, // U+04D6 - { 12, 19, 224, 1, 19, 29, 18885 }, // U+04D7 - { 16, 17, 282, 1, 17, 34, 18914 }, // U+04D8 - { 12, 13, 224, 1, 13, 20, 18948 }, // U+04D9 - { 16, 22, 282, 1, 22, 44, 18968 }, // U+04DA - { 12, 18, 224, 1, 18, 27, 19012 }, // U+04DB - { 23, 22, 362, 0, 22, 64, 19039 }, // U+04DC - { 19, 18, 305, 0, 18, 43, 19103 }, // U+04DD - { 14, 22, 229, 0, 22, 39, 19146 }, // U+04DE - { 10, 18, 196, 1, 18, 23, 19185 }, // U+04DF - { 13, 17, 227, 0, 17, 28, 19208 }, // U+04E0 - { 12, 18, 188, -1, 13, 27, 19236 }, // U+04E1 - { 15, 22, 291, 2, 22, 42, 19263 }, // U+04E2 - { 11, 18, 239, 2, 18, 25, 19305 }, // U+04E3 - { 15, 22, 291, 2, 22, 42, 19330 }, // U+04E4 - { 11, 18, 239, 2, 18, 25, 19372 }, // U+04E5 - { 17, 22, 311, 1, 22, 47, 19397 }, // U+04E6 - { 13, 18, 236, 1, 18, 30, 19444 }, // U+04E7 - { 17, 17, 311, 1, 17, 37, 19474 }, // U+04E8 - { 13, 13, 236, 1, 13, 22, 19511 }, // U+04E9 - { 17, 22, 311, 1, 22, 47, 19533 }, // U+04EA - { 13, 18, 236, 1, 18, 30, 19580 }, // U+04EB - { 15, 22, 248, 0, 22, 42, 19610 }, // U+04EC - { 12, 18, 199, 0, 18, 27, 19652 }, // U+04ED - { 15, 22, 235, 0, 22, 42, 19679 }, // U+04EE - { 12, 23, 199, 0, 18, 35, 19721 }, // U+04EF - { 15, 22, 235, 0, 22, 42, 19756 }, // U+04F0 - { 12, 23, 199, 0, 18, 35, 19798 }, // U+04F1 - { 15, 24, 235, 0, 24, 45, 19833 }, // U+04F2 - { 12, 25, 199, 0, 20, 38, 19878 }, // U+04F3 - { 13, 22, 252, 1, 22, 36, 19916 }, // U+04F4 - { 11, 18, 213, 1, 18, 25, 19952 }, // U+04F5 - { 11, 22, 204, 2, 17, 31, 19977 }, // U+04F6 - { 9, 17, 167, 2, 13, 20, 20008 }, // U+04F7 - { 18, 22, 342, 2, 22, 50, 20028 }, // U+04F8 - { 15, 18, 303, 2, 18, 34, 20078 }, // U+04F9 - { 15, 15, 253, 0, 15, 29, 20112 }, // U+05D0 - { 13, 15, 229, 1, 15, 25, 20141 }, // U+05D1 - { 9, 16, 150, 0, 15, 18, 20166 }, // U+05D2 - { 13, 15, 217, 0, 15, 25, 20184 }, // U+05D3 - { 13, 15, 251, 1, 15, 25, 20209 }, // U+05D4 - { 6, 15, 120, 0, 15, 12, 20234 }, // U+05D5 - { 7, 15, 132, 1, 15, 14, 20246 }, // U+05D6 - { 14, 15, 265, 1, 15, 27, 20260 }, // U+05D7 - { 14, 15, 254, 1, 15, 27, 20287 }, // U+05D8 - { 6, 9, 118, 0, 15, 7, 20314 }, // U+05D9 - { 11, 20, 218, 1, 15, 28, 20321 }, // U+05DA - { 11, 15, 206, 1, 15, 21, 20349 }, // U+05DB - { 13, 20, 209, 0, 20, 33, 20370 }, // U+05DC - { 15, 15, 274, 1, 15, 29, 20403 }, // U+05DD - { 15, 15, 264, 1, 15, 29, 20432 }, // U+05DE - { 5, 20, 132, 1, 15, 13, 20461 }, // U+05DF - { 7, 15, 152, 1, 15, 14, 20474 }, // U+05E0 - { 14, 15, 257, 1, 15, 27, 20488 }, // U+05E1 - { 14, 17, 237, 0, 16, 30, 20515 }, // U+05E2 - { 13, 20, 248, 1, 15, 33, 20545 }, // U+05E3 - { 13, 15, 240, 1, 15, 25, 20578 }, // U+05E4 - { 13, 20, 212, 0, 15, 33, 20603 }, // U+05E5 - { 12, 15, 222, 1, 15, 23, 20636 }, // U+05E6 - { 14, 20, 251, 1, 15, 35, 20659 }, // U+05E7 - { 11, 15, 209, 1, 15, 21, 20694 }, // U+05E8 - { 16, 15, 292, 1, 15, 30, 20715 }, // U+05E9 - { 16, 15, 274, 0, 15, 30, 20745 }, // U+05EA - { 17, 23, 265, 0, 18, 49, 20775 }, // U+1EA0 - { 11, 19, 209, 1, 14, 27, 20824 }, // U+1EA1 - { 17, 24, 265, 0, 24, 51, 20851 }, // U+1EA2 - { 11, 20, 209, 1, 19, 28, 20902 }, // U+1EA3 - { 17, 26, 265, 0, 26, 56, 20930 }, // U+1EA4 - { 13, 24, 209, 1, 23, 39, 20986 }, // U+1EA5 - { 17, 26, 265, 0, 26, 56, 21025 }, // U+1EA6 - { 11, 24, 209, 1, 23, 33, 21081 }, // U+1EA7 - { 17, 27, 265, 0, 27, 58, 21114 }, // U+1EA8 - { 12, 24, 209, 1, 23, 36, 21172 }, // U+1EA9 - { 17, 27, 265, 0, 27, 58, 21208 }, // U+1EAA - { 11, 24, 209, 1, 23, 33, 21266 }, // U+1EAB - { 17, 29, 265, 0, 24, 62, 21299 }, // U+1EAC - { 11, 25, 209, 1, 20, 35, 21361 }, // U+1EAD - { 17, 28, 265, 0, 28, 60, 21396 }, // U+1EAE - { 11, 25, 209, 1, 24, 35, 21456 }, // U+1EAF - { 17, 28, 265, 0, 28, 60, 21491 }, // U+1EB0 - { 11, 25, 209, 1, 24, 35, 21551 }, // U+1EB1 - { 17, 27, 265, 0, 27, 58, 21586 }, // U+1EB2 - { 11, 25, 209, 1, 24, 35, 21644 }, // U+1EB3 - { 17, 27, 265, 0, 27, 58, 21679 }, // U+1EB4 - { 11, 24, 209, 1, 23, 33, 21737 }, // U+1EB5 - { 17, 28, 265, 0, 23, 60, 21770 }, // U+1EB6 - { 11, 24, 209, 1, 19, 33, 21830 }, // U+1EB7 - { 12, 23, 228, 2, 18, 35, 21863 }, // U+1EB8 - { 12, 19, 224, 1, 14, 29, 21898 }, // U+1EB9 - { 12, 24, 228, 2, 24, 36, 21927 }, // U+1EBA - { 12, 20, 224, 1, 19, 30, 21963 }, // U+1EBB - { 12, 23, 228, 2, 23, 35, 21993 }, // U+1EBC - { 12, 20, 224, 1, 19, 30, 22028 }, // U+1EBD - { 13, 26, 228, 2, 26, 43, 22058 }, // U+1EBE - { 14, 24, 224, 1, 23, 42, 22101 }, // U+1EBF - { 12, 26, 228, 2, 26, 39, 22143 }, // U+1EC0 - { 12, 24, 224, 1, 23, 36, 22182 }, // U+1EC1 - { 12, 27, 228, 2, 27, 41, 22218 }, // U+1EC2 - { 13, 24, 224, 1, 23, 39, 22259 }, // U+1EC3 - { 12, 27, 228, 2, 27, 41, 22298 }, // U+1EC4 - { 12, 25, 224, 1, 24, 38, 22339 }, // U+1EC5 - { 12, 29, 228, 2, 24, 44, 22377 }, // U+1EC6 - { 12, 25, 224, 1, 20, 38, 22421 }, // U+1EC7 - { 5, 24, 108, 1, 24, 15, 22459 }, // U+1EC8 - { 5, 19, 101, 1, 19, 12, 22474 }, // U+1EC9 - { 4, 23, 108, 1, 18, 12, 22486 }, // U+1ECA - { 4, 24, 101, 1, 19, 12, 22498 }, // U+1ECB - { 17, 23, 311, 1, 18, 49, 22510 }, // U+1ECC - { 13, 19, 236, 1, 14, 31, 22559 }, // U+1ECD - { 17, 25, 311, 1, 24, 54, 22590 }, // U+1ECE - { 13, 20, 236, 1, 19, 33, 22644 }, // U+1ECF - { 17, 28, 311, 1, 27, 60, 22677 }, // U+1ED0 - { 14, 24, 236, 1, 23, 42, 22737 }, // U+1ED1 - { 17, 28, 311, 1, 27, 60, 22779 }, // U+1ED2 - { 13, 24, 236, 1, 23, 39, 22839 }, // U+1ED3 - { 17, 28, 311, 1, 27, 60, 22878 }, // U+1ED4 - { 13, 23, 236, 1, 22, 38, 22938 }, // U+1ED5 - { 17, 28, 311, 1, 27, 60, 22976 }, // U+1ED6 - { 13, 24, 236, 1, 23, 39, 23036 }, // U+1ED7 - { 17, 29, 311, 1, 24, 62, 23075 }, // U+1ED8 - { 13, 25, 236, 1, 20, 41, 23137 }, // U+1ED9 - { 18, 25, 311, 1, 24, 57, 23178 }, // U+1EDA - { 14, 21, 236, 1, 20, 37, 23235 }, // U+1EDB - { 18, 25, 311, 1, 24, 57, 23272 }, // U+1EDC - { 14, 21, 236, 1, 20, 37, 23329 }, // U+1EDD - { 18, 25, 311, 1, 24, 57, 23366 }, // U+1EDE - { 14, 20, 236, 1, 19, 35, 23423 }, // U+1EDF - { 18, 24, 311, 1, 23, 54, 23458 }, // U+1EE0 - { 14, 20, 236, 1, 19, 35, 23512 }, // U+1EE1 - { 18, 26, 311, 1, 21, 59, 23547 }, // U+1EE2 - { 14, 21, 236, 1, 16, 37, 23606 }, // U+1EE3 - { 14, 23, 275, 2, 18, 41, 23643 }, // U+1EE4 - { 12, 18, 230, 1, 13, 27, 23684 }, // U+1EE5 - { 14, 25, 275, 2, 24, 44, 23711 }, // U+1EE6 - { 12, 20, 230, 1, 19, 30, 23755 }, // U+1EE7 - { 17, 25, 284, 2, 24, 54, 23785 }, // U+1EE8 - { 15, 21, 239, 1, 20, 40, 23839 }, // U+1EE9 - { 17, 25, 284, 2, 24, 54, 23879 }, // U+1EEA - { 15, 21, 239, 1, 20, 40, 23933 }, // U+1EEB - { 17, 25, 284, 2, 24, 54, 23973 }, // U+1EEC - { 15, 20, 239, 1, 19, 38, 24027 }, // U+1EED - { 17, 24, 284, 2, 23, 51, 24065 }, // U+1EEE - { 15, 20, 239, 1, 19, 38, 24116 }, // U+1EEF - { 17, 26, 284, 2, 21, 56, 24154 }, // U+1EF0 - { 15, 21, 239, 1, 16, 40, 24210 }, // U+1EF1 - { 15, 24, 239, 0, 24, 45, 24250 }, // U+1EF2 - { 12, 26, 199, 0, 21, 39, 24295 }, // U+1EF3 - { 15, 23, 239, 0, 18, 44, 24334 }, // U+1EF4 - { 12, 18, 199, 0, 13, 27, 24378 }, // U+1EF5 - { 15, 24, 239, 0, 24, 45, 24405 }, // U+1EF6 - { 12, 24, 199, 0, 19, 36, 24450 }, // U+1EF7 - { 15, 23, 239, 0, 23, 44, 24486 }, // U+1EF8 - { 12, 24, 199, 0, 19, 36, 24530 }, // U+1EF9 - { 2, 19, 0, -1, 18, 5, 24566 }, // U+200C - { 6, 19, 0, -3, 18, 15, 24571 }, // U+200D - { 7, 20, 0, -1, 18, 18, 24586 }, // U+200E - { 7, 20, 0, -6, 18, 18, 24604 }, // U+200F - { 8, 2, 128, 0, 8, 2, 24622 }, // U+2010 - { 14, 2, 198, -1, 9, 4, 24624 }, // U+2013 - { 26, 2, 398, -1, 9, 7, 24628 }, // U+2014 - { 26, 2, 398, -1, 9, 7, 24635 }, // U+2015 - { 5, 6, 94, 1, 19, 4, 24642 }, // U+2018 - { 5, 6, 94, 0, 19, 4, 24646 }, // U+2019 - { 5, 6, 94, 0, 3, 4, 24650 }, // U+201A - { 9, 6, 167, 1, 19, 7, 24654 }, // U+201C - { 9, 6, 167, 0, 19, 7, 24661 }, // U+201D - { 9, 6, 167, 0, 3, 7, 24668 }, // U+201E - { 11, 21, 190, 0, 17, 29, 24675 }, // U+2020 - { 11, 21, 190, 0, 17, 29, 24704 }, // U+2021 - { 7, 6, 144, 1, 12, 6, 24733 }, // U+2022 - { 21, 3, 398, 2, 3, 8, 24739 }, // U+2026 - { 29, 17, 491, 1, 17, 62, 24747 }, // U+2030 - { 7, 11, 116, 0, 13, 10, 24809 }, // U+2039 - { 6, 11, 116, 1, 13, 9, 24819 }, // U+203A - { 13, 17, 59, -5, 17, 28, 24828 }, // U+2044 - { 9, 10, 144, 0, 18, 12, 24856 }, // U+2070 - { 9, 10, 144, 0, 18, 12, 24868 }, // U+2074 - { 7, 10, 144, 1, 18, 9, 24880 }, // U+2075 - { 9, 10, 144, 0, 18, 12, 24889 }, // U+2076 - { 9, 10, 144, 0, 18, 12, 24901 }, // U+2077 - { 9, 10, 144, 0, 18, 12, 24913 }, // U+2078 - { 9, 10, 144, 0, 18, 12, 24925 }, // U+2079 - { 9, 10, 144, 0, 10, 12, 24937 }, // U+2080 - { 5, 10, 144, 1, 10, 7, 24949 }, // U+2081 - { 8, 10, 144, 0, 10, 10, 24956 }, // U+2082 - { 8, 10, 144, 0, 10, 10, 24966 }, // U+2083 - { 9, 10, 144, 0, 10, 12, 24976 }, // U+2084 - { 7, 10, 144, 1, 10, 9, 24988 }, // U+2085 - { 9, 10, 144, 0, 10, 12, 24997 }, // U+2086 - { 9, 10, 144, 0, 10, 12, 25009 }, // U+2087 - { 9, 10, 144, 0, 10, 12, 25021 }, // U+2088 - { 9, 10, 144, 0, 10, 12, 25033 }, // U+2089 - { 16, 15, 317, 2, 15, 30, 25045 }, // U+20AA - { 13, 17, 226, 1, 17, 28, 25075 }, // U+20AC - { 13, 17, 226, 1, 17, 28, 25103 }, // U+20AE - { 14, 17, 226, 0, 17, 30, 25131 }, // U+20B4 - { 13, 17, 226, 1, 17, 28, 25161 }, // U+20B9 - { 13, 19, 234, 1, 19, 31, 25189 }, // U+2202 - { 17, 17, 260, 0, 17, 37, 25220 }, // U+2206 - { 14, 20, 279, 2, 17, 35, 25257 }, // U+220F - { 13, 20, 206, 0, 17, 33, 25292 }, // U+2211 - { 12, 2, 226, 1, 8, 3, 25325 }, // U+2212 - { 13, 17, 59, -5, 17, 28, 25328 }, // U+2215 - { 4, 3, 98, 1, 9, 2, 25356 }, // U+2219 - { 15, 20, 226, 0, 20, 38, 25358 }, // U+221A - { 14, 7, 235, 0, 11, 13, 25396 }, // U+221E - { 10, 24, 148, 0, 19, 30, 25409 }, // U+222B - { 12, 10, 226, 1, 13, 15, 25439 }, // U+2248 - { 12, 13, 226, 1, 14, 20, 25454 }, // U+2260 - { 12, 15, 226, 1, 15, 23, 25474 }, // U+2264 - { 12, 15, 226, 1, 15, 23, 25497 }, // U+2265 - { 18, 19, 310, 2, 19, 43, 25520 }, // U+FB00 - { 13, 19, 257, 2, 19, 31, 25563 }, // U+FB01 - { 14, 19, 265, 2, 19, 34, 25594 }, // U+FB02 - { 23, 19, 413, 2, 19, 55, 25628 }, // U+FB03 - { 24, 19, 421, 2, 19, 57, 25683 }, // U+FB04 + { 4, 7, 0, -2, 18, 4, 13060 }, // U+0312 + { 4, 4, 0, -2, -2, 2, 13064 }, // U+0326 + { 6, 6, 0, -3, 0, 5, 13066 }, // U+0327 + { 6, 7, 0, -3, 1, 6, 13071 }, // U+0328 + { 0, 0, 0, 0, 0, 0, 13077 }, // U+034F + { 12, 24, 228, 2, 24, 36, 13077 }, // U+0400 + { 12, 22, 228, 2, 22, 33, 13113 }, // U+0401 + { 18, 17, 300, 0, 17, 39, 13146 }, // U+0402 + { 11, 24, 204, 2, 24, 33, 13185 }, // U+0403 + { 14, 17, 248, 1, 17, 30, 13218 }, // U+0404 + { 13, 17, 213, 0, 17, 28, 13248 }, // U+0405 + { 3, 17, 108, 2, 17, 7, 13276 }, // U+0406 + { 9, 22, 108, -1, 22, 25, 13283 }, // U+0407 + { 11, 17, 200, 0, 17, 24, 13308 }, // U+0408 + { 26, 18, 417, 0, 17, 59, 13332 }, // U+0409 + { 23, 17, 410, 2, 17, 49, 13391 }, // U+040A + { 18, 17, 300, 0, 17, 39, 13440 }, // U+040B + { 14, 24, 252, 2, 24, 42, 13479 }, // U+040C + { 15, 24, 291, 2, 24, 45, 13521 }, // U+040D + { 15, 23, 235, 0, 23, 44, 13566 }, // U+040E + { 14, 22, 280, 2, 17, 39, 13610 }, // U+040F + { 17, 17, 265, 0, 17, 37, 13649 }, // U+0410 + { 13, 17, 248, 2, 17, 28, 13686 }, // U+0411 + { 13, 17, 257, 2, 17, 28, 13714 }, // U+0412 + { 11, 17, 204, 2, 17, 24, 13742 }, // U+0413 + { 18, 22, 289, 0, 17, 50, 13766 }, // U+0414 + { 12, 17, 228, 2, 17, 26, 13816 }, // U+0415 + { 23, 17, 362, 0, 17, 49, 13842 }, // U+0416 + { 14, 17, 229, 0, 17, 30, 13891 }, // U+0417 + { 15, 17, 291, 2, 17, 32, 13921 }, // U+0418 + { 15, 23, 291, 2, 23, 44, 13953 }, // U+0419 + { 14, 17, 252, 2, 17, 30, 13997 }, // U+041A + { 16, 17, 283, 0, 17, 34, 14027 }, // U+041B + { 20, 17, 348, 1, 17, 43, 14061 }, // U+041C + { 14, 17, 282, 2, 17, 30, 14104 }, // U+041D + { 17, 17, 311, 1, 17, 37, 14134 }, // U+041E + { 14, 17, 280, 2, 17, 30, 14171 }, // U+041F + { 13, 17, 243, 2, 17, 28, 14201 }, // U+0420 + { 14, 17, 248, 1, 17, 30, 14229 }, // U+0421 + { 14, 17, 226, 0, 17, 30, 14259 }, // U+0422 + { 15, 17, 235, 0, 17, 32, 14289 }, // U+0423 + { 20, 18, 346, 1, 18, 45, 14321 }, // U+0424 + { 16, 17, 252, 0, 17, 34, 14366 }, // U+0425 + { 16, 22, 287, 2, 17, 44, 14400 }, // U+0426 + { 13, 17, 252, 1, 17, 28, 14444 }, // U+0427 + { 21, 17, 393, 2, 17, 45, 14472 }, // U+0428 + { 23, 22, 401, 2, 17, 64, 14517 }, // U+0429 + { 18, 17, 290, 0, 17, 39, 14581 }, // U+042A + { 18, 17, 342, 2, 17, 39, 14620 }, // U+042B + { 13, 17, 246, 2, 17, 28, 14659 }, // U+042C + { 15, 17, 248, 0, 17, 32, 14687 }, // U+042D + { 23, 17, 412, 2, 17, 49, 14719 }, // U+042E + { 14, 17, 254, 0, 17, 30, 14768 }, // U+042F + { 11, 13, 209, 1, 13, 18, 14798 }, // U+0430 + { 13, 19, 238, 1, 19, 31, 14816 }, // U+0431 + { 11, 13, 219, 2, 13, 18, 14847 }, // U+0432 + { 9, 13, 167, 2, 13, 15, 14865 }, // U+0433 + { 15, 17, 241, 0, 13, 32, 14880 }, // U+0434 + { 12, 13, 224, 1, 13, 20, 14912 }, // U+0435 + { 19, 13, 305, 0, 13, 31, 14932 }, // U+0436 + { 10, 13, 196, 1, 13, 17, 14963 }, // U+0437 + { 11, 13, 239, 2, 13, 18, 14980 }, // U+0438 + { 11, 19, 239, 2, 19, 27, 14998 }, // U+0439 + { 12, 13, 215, 2, 13, 20, 15025 }, // U+043A + { 13, 13, 239, 0, 13, 22, 15045 }, // U+043B + { 16, 13, 292, 1, 13, 26, 15067 }, // U+043C + { 11, 13, 234, 2, 13, 18, 15093 }, // U+043D + { 13, 13, 236, 1, 13, 22, 15111 }, // U+043E + { 11, 13, 231, 2, 13, 18, 15133 }, // U+043F + { 12, 18, 236, 2, 13, 27, 15151 }, // U+0440 + { 11, 13, 186, 1, 13, 18, 15178 }, // U+0441 + { 12, 13, 185, 0, 13, 20, 15196 }, // U+0442 + { 12, 18, 199, 0, 13, 27, 15216 }, // U+0443 + { 17, 24, 306, 1, 19, 51, 15243 }, // U+0444 + { 13, 13, 204, 0, 13, 22, 15294 }, // U+0445 + { 13, 17, 234, 2, 13, 28, 15316 }, // U+0446 + { 11, 13, 213, 1, 13, 18, 15344 }, // U+0447 + { 17, 13, 329, 2, 13, 28, 15362 }, // U+0448 + { 19, 17, 334, 2, 13, 41, 15390 }, // U+0449 + { 15, 13, 239, 0, 13, 25, 15431 }, // U+044A + { 15, 13, 303, 2, 13, 25, 15456 }, // U+044B + { 11, 13, 211, 2, 13, 18, 15481 }, // U+044C + { 12, 13, 199, 0, 13, 20, 15499 }, // U+044D + { 17, 13, 324, 2, 13, 28, 15519 }, // U+044E + { 12, 13, 219, 0, 13, 20, 15547 }, // U+044F + { 12, 20, 224, 1, 20, 30, 15567 }, // U+0450 + { 12, 18, 224, 1, 18, 27, 15597 }, // U+0451 + { 13, 24, 228, 0, 19, 39, 15624 }, // U+0452 + { 9, 20, 167, 2, 20, 23, 15663 }, // U+0453 + { 11, 13, 199, 1, 13, 18, 15686 }, // U+0454 + { 10, 13, 178, 1, 13, 17, 15704 }, // U+0455 + { 4, 18, 101, 1, 18, 9, 15721 }, // U+0456 + { 9, 18, 101, -1, 18, 21, 15730 }, // U+0457 + { 7, 23, 101, -2, 18, 21, 15751 }, // U+0458 + { 21, 13, 345, 0, 13, 35, 15772 }, // U+0459 + { 19, 13, 340, 2, 13, 31, 15807 }, // U+045A + { 13, 19, 228, 0, 19, 31, 15838 }, // U+045B + { 12, 20, 215, 2, 20, 30, 15869 }, // U+045C + { 11, 20, 239, 2, 20, 28, 15899 }, // U+045D + { 12, 24, 199, 0, 19, 36, 15927 }, // U+045E + { 11, 17, 230, 2, 13, 24, 15963 }, // U+045F + { 18, 18, 290, 0, 18, 41, 15987 }, // U+0462 + { 15, 19, 239, 0, 19, 36, 16028 }, // U+0463 + { 17, 17, 311, 1, 17, 37, 16064 }, // U+0472 + { 13, 13, 236, 1, 13, 22, 16101 }, // U+0473 + { 20, 17, 301, 0, 17, 43, 16123 }, // U+0474 + { 15, 13, 226, 0, 13, 25, 16166 }, // U+0475 + { 17, 28, 298, 2, 23, 60, 16191 }, // U+048A + { 14, 24, 243, 2, 19, 42, 16251 }, // U+048B + { 15, 18, 252, 0, 18, 34, 16293 }, // U+048C + { 13, 13, 210, 0, 13, 22, 16327 }, // U+048D + { 13, 17, 243, 2, 17, 28, 16349 }, // U+048E + { 12, 18, 236, 2, 13, 27, 16377 }, // U+048F + { 11, 20, 204, 2, 20, 28, 16404 }, // U+0490 + { 9, 16, 171, 2, 16, 18, 16432 }, // U+0491 + { 13, 17, 209, 0, 17, 28, 16450 }, // U+0492 + { 11, 13, 170, 0, 13, 18, 16478 }, // U+0493 + { 13, 22, 250, 2, 17, 36, 16496 }, // U+0494 + { 11, 18, 218, 2, 13, 25, 16532 }, // U+0495 + { 23, 22, 368, 0, 17, 64, 16557 }, // U+0496 + { 20, 17, 310, 0, 13, 43, 16621 }, // U+0497 + { 14, 22, 229, 0, 17, 39, 16664 }, // U+0498 + { 10, 18, 196, 1, 13, 23, 16703 }, // U+0499 + { 15, 22, 262, 2, 17, 42, 16726 }, // U+049A + { 12, 17, 218, 2, 13, 26, 16768 }, // U+049B + { 16, 17, 283, 2, 17, 34, 16794 }, // U+049C + { 14, 13, 248, 2, 13, 23, 16828 }, // U+049D + { 16, 17, 256, 0, 17, 34, 16851 }, // U+049E + { 14, 13, 222, 0, 13, 23, 16885 }, // U+049F + { 19, 17, 296, 0, 17, 41, 16908 }, // U+04A0 + { 15, 13, 243, 0, 13, 25, 16949 }, // U+04A1 + { 16, 22, 290, 2, 17, 44, 16974 }, // U+04A2 + { 13, 17, 239, 2, 13, 28, 17018 }, // U+04A3 + { 18, 17, 326, 2, 17, 39, 17046 }, // U+04A4 + { 14, 13, 262, 2, 13, 23, 17085 }, // U+04A5 + { 23, 22, 413, 2, 17, 64, 17108 }, // U+04A6 + { 19, 18, 344, 2, 13, 43, 17172 }, // U+04A7 + { 18, 22, 314, 1, 17, 50, 17215 }, // U+04A8 + { 14, 17, 244, 1, 13, 30, 17265 }, // U+04A9 + { 14, 23, 248, 1, 17, 41, 17295 }, // U+04AA + { 11, 19, 186, 1, 13, 27, 17336 }, // U+04AB + { 14, 22, 226, 0, 17, 39, 17363 }, // U+04AC + { 12, 17, 185, 0, 13, 26, 17402 }, // U+04AD + { 15, 17, 239, 0, 17, 32, 17428 }, // U+04AE + { 13, 18, 201, 0, 13, 30, 17460 }, // U+04AF + { 15, 17, 239, 0, 17, 32, 17490 }, // U+04B0 + { 13, 18, 201, 0, 13, 30, 17522 }, // U+04B1 + { 17, 22, 261, 0, 17, 47, 17552 }, // U+04B2 + { 13, 17, 210, 0, 13, 28, 17599 }, // U+04B3 + { 21, 22, 338, 0, 17, 58, 17627 }, // U+04B4 + { 16, 17, 264, 0, 13, 34, 17685 }, // U+04B5 + { 15, 22, 260, 1, 17, 42, 17719 }, // U+04B6 + { 13, 17, 218, 1, 13, 28, 17761 }, // U+04B7 + { 13, 17, 255, 1, 17, 28, 17789 }, // U+04B8 + { 12, 13, 213, 0, 13, 20, 17817 }, // U+04B9 + { 13, 17, 256, 2, 17, 28, 17837 }, // U+04BA + { 11, 19, 228, 2, 19, 27, 17865 }, // U+04BB + { 20, 17, 334, 0, 17, 43, 17892 }, // U+04BC + { 16, 13, 268, 0, 13, 26, 17935 }, // U+04BD + { 20, 22, 334, 0, 17, 55, 17961 }, // U+04BE + { 16, 17, 268, 0, 13, 34, 18016 }, // U+04BF + { 3, 17, 108, 2, 17, 7, 18050 }, // U+04C0 + { 23, 23, 362, 0, 23, 67, 18057 }, // U+04C1 + { 19, 19, 305, 0, 19, 46, 18124 }, // U+04C2 + { 13, 22, 252, 2, 17, 36, 18170 }, // U+04C3 + { 11, 18, 218, 2, 13, 25, 18206 }, // U+04C4 + { 18, 22, 290, 0, 17, 50, 18231 }, // U+04C5 + { 16, 18, 244, 0, 13, 36, 18281 }, // U+04C6 + { 14, 22, 282, 2, 17, 39, 18317 }, // U+04C7 + { 11, 18, 234, 2, 13, 25, 18356 }, // U+04C8 + { 16, 22, 289, 2, 17, 44, 18381 }, // U+04C9 + { 13, 18, 239, 2, 13, 30, 18425 }, // U+04CA + { 13, 22, 255, 1, 17, 36, 18455 }, // U+04CB + { 11, 17, 213, 1, 13, 24, 18491 }, // U+04CC + { 22, 22, 360, 1, 17, 61, 18515 }, // U+04CD + { 18, 18, 300, 1, 13, 41, 18576 }, // U+04CE + { 3, 17, 108, 2, 17, 7, 18617 }, // U+04CF + { 17, 23, 265, 0, 23, 49, 18624 }, // U+04D0 + { 11, 19, 209, 1, 19, 27, 18673 }, // U+04D1 + { 17, 22, 265, 0, 22, 47, 18700 }, // U+04D2 + { 11, 18, 209, 1, 18, 25, 18747 }, // U+04D3 + { 23, 17, 374, 0, 17, 49, 18772 }, // U+04D4 + { 20, 13, 344, 1, 13, 33, 18821 }, // U+04D5 + { 12, 23, 228, 2, 23, 35, 18854 }, // U+04D6 + { 12, 19, 224, 1, 19, 29, 18889 }, // U+04D7 + { 16, 17, 282, 1, 17, 34, 18918 }, // U+04D8 + { 12, 13, 224, 1, 13, 20, 18952 }, // U+04D9 + { 16, 22, 282, 1, 22, 44, 18972 }, // U+04DA + { 12, 18, 224, 1, 18, 27, 19016 }, // U+04DB + { 23, 22, 362, 0, 22, 64, 19043 }, // U+04DC + { 19, 18, 305, 0, 18, 43, 19107 }, // U+04DD + { 14, 22, 229, 0, 22, 39, 19150 }, // U+04DE + { 10, 18, 196, 1, 18, 23, 19189 }, // U+04DF + { 13, 17, 227, 0, 17, 28, 19212 }, // U+04E0 + { 12, 18, 188, -1, 13, 27, 19240 }, // U+04E1 + { 15, 22, 291, 2, 22, 42, 19267 }, // U+04E2 + { 11, 18, 239, 2, 18, 25, 19309 }, // U+04E3 + { 15, 22, 291, 2, 22, 42, 19334 }, // U+04E4 + { 11, 18, 239, 2, 18, 25, 19376 }, // U+04E5 + { 17, 22, 311, 1, 22, 47, 19401 }, // U+04E6 + { 13, 18, 236, 1, 18, 30, 19448 }, // U+04E7 + { 17, 17, 311, 1, 17, 37, 19478 }, // U+04E8 + { 13, 13, 236, 1, 13, 22, 19515 }, // U+04E9 + { 17, 22, 311, 1, 22, 47, 19537 }, // U+04EA + { 13, 18, 236, 1, 18, 30, 19584 }, // U+04EB + { 15, 22, 248, 0, 22, 42, 19614 }, // U+04EC + { 12, 18, 199, 0, 18, 27, 19656 }, // U+04ED + { 15, 22, 235, 0, 22, 42, 19683 }, // U+04EE + { 12, 23, 199, 0, 18, 35, 19725 }, // U+04EF + { 15, 22, 235, 0, 22, 42, 19760 }, // U+04F0 + { 12, 23, 199, 0, 18, 35, 19802 }, // U+04F1 + { 15, 24, 235, 0, 24, 45, 19837 }, // U+04F2 + { 12, 25, 199, 0, 20, 38, 19882 }, // U+04F3 + { 13, 22, 252, 1, 22, 36, 19920 }, // U+04F4 + { 11, 18, 213, 1, 18, 25, 19956 }, // U+04F5 + { 11, 22, 204, 2, 17, 31, 19981 }, // U+04F6 + { 9, 17, 167, 2, 13, 20, 20012 }, // U+04F7 + { 18, 22, 342, 2, 22, 50, 20032 }, // U+04F8 + { 15, 18, 303, 2, 18, 34, 20082 }, // U+04F9 + { 15, 15, 253, 0, 15, 29, 20116 }, // U+05D0 + { 13, 15, 229, 1, 15, 25, 20145 }, // U+05D1 + { 9, 16, 150, 0, 15, 18, 20170 }, // U+05D2 + { 13, 15, 217, 0, 15, 25, 20188 }, // U+05D3 + { 13, 15, 251, 1, 15, 25, 20213 }, // U+05D4 + { 6, 15, 120, 0, 15, 12, 20238 }, // U+05D5 + { 7, 15, 132, 1, 15, 14, 20250 }, // U+05D6 + { 14, 15, 265, 1, 15, 27, 20264 }, // U+05D7 + { 14, 15, 254, 1, 15, 27, 20291 }, // U+05D8 + { 6, 9, 118, 0, 15, 7, 20318 }, // U+05D9 + { 11, 20, 218, 1, 15, 28, 20325 }, // U+05DA + { 11, 15, 206, 1, 15, 21, 20353 }, // U+05DB + { 13, 20, 209, 0, 20, 33, 20374 }, // U+05DC + { 15, 15, 274, 1, 15, 29, 20407 }, // U+05DD + { 15, 15, 264, 1, 15, 29, 20436 }, // U+05DE + { 5, 20, 132, 1, 15, 13, 20465 }, // U+05DF + { 7, 15, 152, 1, 15, 14, 20478 }, // U+05E0 + { 14, 15, 257, 1, 15, 27, 20492 }, // U+05E1 + { 14, 17, 237, 0, 16, 30, 20519 }, // U+05E2 + { 13, 20, 248, 1, 15, 33, 20549 }, // U+05E3 + { 13, 15, 240, 1, 15, 25, 20582 }, // U+05E4 + { 13, 20, 212, 0, 15, 33, 20607 }, // U+05E5 + { 12, 15, 222, 1, 15, 23, 20640 }, // U+05E6 + { 14, 20, 251, 1, 15, 35, 20663 }, // U+05E7 + { 11, 15, 209, 1, 15, 21, 20698 }, // U+05E8 + { 16, 15, 292, 1, 15, 30, 20719 }, // U+05E9 + { 16, 15, 274, 0, 15, 30, 20749 }, // U+05EA + { 4, 7, 131, 2, 6, 4, 20779 }, // U+060C + { 5, 14, 138, 1, 13, 9, 20783 }, // U+061B + { 11, 20, 174, 0, 19, 28, 20792 }, // U+061F + { 10, 11, 164, 0, 9, 14, 20820 }, // U+0621 + { 8, 3, 108, 0, 2, 3, 20834 }, // U+0640 + { 5, 5, 229, 5, 10, 4, 20837 }, // U+0660 + { 5, 19, 229, 5, 18, 12, 20841 }, // U+0661 + { 11, 19, 229, 2, 18, 27, 20853 }, // U+0662 + { 14, 19, 229, 0, 18, 34, 20880 }, // U+0663 + { 11, 19, 229, 2, 18, 27, 20914 }, // U+0664 + { 11, 14, 229, 2, 13, 20, 20941 }, // U+0665 + { 12, 19, 229, 1, 18, 29, 20961 }, // U+0666 + { 14, 19, 229, 0, 18, 34, 20990 }, // U+0667 + { 14, 19, 229, 0, 18, 34, 21024 }, // U+0668 + { 11, 18, 229, 2, 17, 25, 21058 }, // U+0669 + { 16, 14, 274, 0, 8, 28, 21083 }, // U+06BA + { 6, 2, 120, 1, 2, 2, 21111 }, // U+06D4 + { 5, 5, 229, 5, 10, 4, 21113 }, // U+06F0 + { 5, 19, 229, 5, 18, 12, 21117 }, // U+06F1 + { 11, 19, 229, 2, 18, 27, 21129 }, // U+06F2 + { 14, 19, 229, 0, 18, 34, 21156 }, // U+06F3 + { 11, 17, 229, 2, 17, 24, 21190 }, // U+06F4 + { 12, 17, 229, 1, 17, 26, 21214 }, // U+06F5 + { 10, 18, 229, 2, 17, 23, 21240 }, // U+06F6 + { 14, 19, 229, 0, 18, 34, 21263 }, // U+06F7 + { 14, 19, 229, 0, 18, 34, 21297 }, // U+06F8 + { 11, 18, 229, 2, 17, 25, 21331 }, // U+06F9 + { 17, 23, 265, 0, 18, 49, 21356 }, // U+1EA0 + { 11, 19, 209, 1, 14, 27, 21405 }, // U+1EA1 + { 17, 24, 265, 0, 24, 51, 21432 }, // U+1EA2 + { 11, 20, 209, 1, 19, 28, 21483 }, // U+1EA3 + { 17, 26, 265, 0, 26, 56, 21511 }, // U+1EA4 + { 13, 24, 209, 1, 23, 39, 21567 }, // U+1EA5 + { 17, 26, 265, 0, 26, 56, 21606 }, // U+1EA6 + { 11, 24, 209, 1, 23, 33, 21662 }, // U+1EA7 + { 17, 27, 265, 0, 27, 58, 21695 }, // U+1EA8 + { 12, 24, 209, 1, 23, 36, 21753 }, // U+1EA9 + { 17, 27, 265, 0, 27, 58, 21789 }, // U+1EAA + { 11, 24, 209, 1, 23, 33, 21847 }, // U+1EAB + { 17, 29, 265, 0, 24, 62, 21880 }, // U+1EAC + { 11, 25, 209, 1, 20, 35, 21942 }, // U+1EAD + { 17, 28, 265, 0, 28, 60, 21977 }, // U+1EAE + { 11, 25, 209, 1, 24, 35, 22037 }, // U+1EAF + { 17, 28, 265, 0, 28, 60, 22072 }, // U+1EB0 + { 11, 25, 209, 1, 24, 35, 22132 }, // U+1EB1 + { 17, 27, 265, 0, 27, 58, 22167 }, // U+1EB2 + { 11, 25, 209, 1, 24, 35, 22225 }, // U+1EB3 + { 17, 27, 265, 0, 27, 58, 22260 }, // U+1EB4 + { 11, 24, 209, 1, 23, 33, 22318 }, // U+1EB5 + { 17, 28, 265, 0, 23, 60, 22351 }, // U+1EB6 + { 11, 24, 209, 1, 19, 33, 22411 }, // U+1EB7 + { 12, 23, 228, 2, 18, 35, 22444 }, // U+1EB8 + { 12, 19, 224, 1, 14, 29, 22479 }, // U+1EB9 + { 12, 24, 228, 2, 24, 36, 22508 }, // U+1EBA + { 12, 20, 224, 1, 19, 30, 22544 }, // U+1EBB + { 12, 23, 228, 2, 23, 35, 22574 }, // U+1EBC + { 12, 20, 224, 1, 19, 30, 22609 }, // U+1EBD + { 13, 26, 228, 2, 26, 43, 22639 }, // U+1EBE + { 14, 24, 224, 1, 23, 42, 22682 }, // U+1EBF + { 12, 26, 228, 2, 26, 39, 22724 }, // U+1EC0 + { 12, 24, 224, 1, 23, 36, 22763 }, // U+1EC1 + { 12, 27, 228, 2, 27, 41, 22799 }, // U+1EC2 + { 13, 24, 224, 1, 23, 39, 22840 }, // U+1EC3 + { 12, 27, 228, 2, 27, 41, 22879 }, // U+1EC4 + { 12, 25, 224, 1, 24, 38, 22920 }, // U+1EC5 + { 12, 29, 228, 2, 24, 44, 22958 }, // U+1EC6 + { 12, 25, 224, 1, 20, 38, 23002 }, // U+1EC7 + { 5, 24, 108, 1, 24, 15, 23040 }, // U+1EC8 + { 5, 19, 101, 1, 19, 12, 23055 }, // U+1EC9 + { 4, 23, 108, 1, 18, 12, 23067 }, // U+1ECA + { 4, 24, 101, 1, 19, 12, 23079 }, // U+1ECB + { 17, 23, 311, 1, 18, 49, 23091 }, // U+1ECC + { 13, 19, 236, 1, 14, 31, 23140 }, // U+1ECD + { 17, 25, 311, 1, 24, 54, 23171 }, // U+1ECE + { 13, 20, 236, 1, 19, 33, 23225 }, // U+1ECF + { 17, 28, 311, 1, 27, 60, 23258 }, // U+1ED0 + { 14, 24, 236, 1, 23, 42, 23318 }, // U+1ED1 + { 17, 28, 311, 1, 27, 60, 23360 }, // U+1ED2 + { 13, 24, 236, 1, 23, 39, 23420 }, // U+1ED3 + { 17, 28, 311, 1, 27, 60, 23459 }, // U+1ED4 + { 13, 23, 236, 1, 22, 38, 23519 }, // U+1ED5 + { 17, 28, 311, 1, 27, 60, 23557 }, // U+1ED6 + { 13, 24, 236, 1, 23, 39, 23617 }, // U+1ED7 + { 17, 29, 311, 1, 24, 62, 23656 }, // U+1ED8 + { 13, 25, 236, 1, 20, 41, 23718 }, // U+1ED9 + { 18, 25, 311, 1, 24, 57, 23759 }, // U+1EDA + { 14, 21, 236, 1, 20, 37, 23816 }, // U+1EDB + { 18, 25, 311, 1, 24, 57, 23853 }, // U+1EDC + { 14, 21, 236, 1, 20, 37, 23910 }, // U+1EDD + { 18, 25, 311, 1, 24, 57, 23947 }, // U+1EDE + { 14, 20, 236, 1, 19, 35, 24004 }, // U+1EDF + { 18, 24, 311, 1, 23, 54, 24039 }, // U+1EE0 + { 14, 20, 236, 1, 19, 35, 24093 }, // U+1EE1 + { 18, 26, 311, 1, 21, 59, 24128 }, // U+1EE2 + { 14, 21, 236, 1, 16, 37, 24187 }, // U+1EE3 + { 14, 23, 275, 2, 18, 41, 24224 }, // U+1EE4 + { 12, 18, 230, 1, 13, 27, 24265 }, // U+1EE5 + { 14, 25, 275, 2, 24, 44, 24292 }, // U+1EE6 + { 12, 20, 230, 1, 19, 30, 24336 }, // U+1EE7 + { 17, 25, 284, 2, 24, 54, 24366 }, // U+1EE8 + { 15, 21, 239, 1, 20, 40, 24420 }, // U+1EE9 + { 17, 25, 284, 2, 24, 54, 24460 }, // U+1EEA + { 15, 21, 239, 1, 20, 40, 24514 }, // U+1EEB + { 17, 25, 284, 2, 24, 54, 24554 }, // U+1EEC + { 15, 20, 239, 1, 19, 38, 24608 }, // U+1EED + { 17, 24, 284, 2, 23, 51, 24646 }, // U+1EEE + { 15, 20, 239, 1, 19, 38, 24697 }, // U+1EEF + { 17, 26, 284, 2, 21, 56, 24735 }, // U+1EF0 + { 15, 21, 239, 1, 16, 40, 24791 }, // U+1EF1 + { 15, 24, 239, 0, 24, 45, 24831 }, // U+1EF2 + { 12, 26, 199, 0, 21, 39, 24876 }, // U+1EF3 + { 15, 23, 239, 0, 18, 44, 24915 }, // U+1EF4 + { 12, 18, 199, 0, 13, 27, 24959 }, // U+1EF5 + { 15, 24, 239, 0, 24, 45, 24986 }, // U+1EF6 + { 12, 24, 199, 0, 19, 36, 25031 }, // U+1EF7 + { 15, 23, 239, 0, 23, 44, 25067 }, // U+1EF8 + { 12, 24, 199, 0, 19, 36, 25111 }, // U+1EF9 + { 0, 0, 52, 0, 0, 0, 25147 }, // U+2009 + { 0, 0, 0, 0, 0, 0, 25147 }, // U+200B + { 2, 19, 0, -1, 18, 5, 25147 }, // U+200C + { 6, 19, 0, -3, 18, 15, 25152 }, // U+200D + { 7, 20, 0, -1, 18, 18, 25167 }, // U+200E + { 7, 20, 0, -6, 18, 18, 25185 }, // U+200F + { 8, 2, 128, 0, 8, 2, 25203 }, // U+2010 + { 7, 3, 129, 1, 8, 3, 25205 }, // U+2011 + { 14, 2, 198, -1, 9, 4, 25208 }, // U+2013 + { 26, 2, 398, -1, 9, 7, 25212 }, // U+2014 + { 26, 2, 398, -1, 9, 7, 25219 }, // U+2015 + { 5, 6, 94, 1, 19, 4, 25226 }, // U+2018 + { 5, 6, 94, 0, 19, 4, 25230 }, // U+2019 + { 5, 6, 94, 0, 3, 4, 25234 }, // U+201A + { 9, 6, 167, 1, 19, 7, 25238 }, // U+201C + { 9, 6, 167, 0, 19, 7, 25245 }, // U+201D + { 9, 6, 167, 0, 3, 7, 25252 }, // U+201E + { 11, 21, 190, 0, 17, 29, 25259 }, // U+2020 + { 11, 21, 190, 0, 17, 29, 25288 }, // U+2021 + { 7, 6, 144, 1, 12, 6, 25317 }, // U+2022 + { 21, 3, 398, 2, 3, 8, 25323 }, // U+2026 + { 0, 0, 52, 0, 0, 0, 25331 }, // U+202F + { 29, 17, 491, 1, 17, 62, 25331 }, // U+2030 + { 7, 11, 116, 0, 13, 10, 25393 }, // U+2039 + { 6, 11, 116, 1, 13, 9, 25403 }, // U+203A + { 13, 17, 59, -5, 17, 28, 25412 }, // U+2044 + { 5, 14, 138, 1, 13, 9, 25440 }, // U+204F + { 9, 10, 144, 0, 18, 12, 25449 }, // U+2070 + { 9, 10, 144, 0, 18, 12, 25461 }, // U+2074 + { 7, 10, 144, 1, 18, 9, 25473 }, // U+2075 + { 9, 10, 144, 0, 18, 12, 25482 }, // U+2076 + { 9, 10, 144, 0, 18, 12, 25494 }, // U+2077 + { 9, 10, 144, 0, 18, 12, 25506 }, // U+2078 + { 9, 10, 144, 0, 18, 12, 25518 }, // U+2079 + { 9, 10, 144, 0, 10, 12, 25530 }, // U+2080 + { 5, 10, 144, 1, 10, 7, 25542 }, // U+2081 + { 8, 10, 144, 0, 10, 10, 25549 }, // U+2082 + { 8, 10, 144, 0, 10, 10, 25559 }, // U+2083 + { 9, 10, 144, 0, 10, 12, 25569 }, // U+2084 + { 7, 10, 144, 1, 10, 9, 25581 }, // U+2085 + { 9, 10, 144, 0, 10, 12, 25590 }, // U+2086 + { 9, 10, 144, 0, 10, 12, 25602 }, // U+2087 + { 9, 10, 144, 0, 10, 12, 25614 }, // U+2088 + { 9, 10, 144, 0, 10, 12, 25626 }, // U+2089 + { 16, 15, 317, 2, 15, 30, 25638 }, // U+20AA + { 13, 17, 226, 1, 17, 28, 25668 }, // U+20AC + { 13, 17, 226, 1, 17, 28, 25696 }, // U+20AE + { 14, 17, 226, 0, 17, 30, 25724 }, // U+20B4 + { 13, 17, 226, 1, 17, 28, 25754 }, // U+20B9 + { 13, 19, 234, 1, 19, 31, 25782 }, // U+2202 + { 17, 17, 260, 0, 17, 37, 25813 }, // U+2206 + { 14, 20, 279, 2, 17, 35, 25850 }, // U+220F + { 13, 20, 206, 0, 17, 33, 25885 }, // U+2211 + { 12, 2, 226, 1, 8, 3, 25918 }, // U+2212 + { 13, 17, 59, -5, 17, 28, 25921 }, // U+2215 + { 4, 3, 98, 1, 9, 2, 25949 }, // U+2219 + { 15, 20, 226, 0, 20, 38, 25951 }, // U+221A + { 14, 7, 235, 0, 11, 13, 25989 }, // U+221E + { 10, 24, 148, 0, 19, 30, 26002 }, // U+222B + { 12, 10, 226, 1, 13, 15, 26032 }, // U+2248 + { 12, 13, 226, 1, 14, 20, 26047 }, // U+2260 + { 12, 15, 226, 1, 15, 23, 26067 }, // U+2264 + { 12, 15, 226, 1, 15, 23, 26090 }, // U+2265 + { 18, 19, 310, 2, 19, 43, 26113 }, // U+FB00 + { 13, 19, 257, 2, 19, 31, 26156 }, // U+FB01 + { 14, 19, 265, 2, 19, 34, 26187 }, // U+FB02 + { 23, 19, 413, 2, 19, 55, 26221 }, // U+FB03 + { 24, 19, 421, 2, 19, 57, 26276 }, // U+FB04 + { 24, 20, 397, 0, 11, 60, 26333 }, // U+FB56 + { 29, 18, 437, 0, 9, 66, 26393 }, // U+FB57 + { 7, 19, 120, -1, 11, 17, 26459 }, // U+FB58 + { 11, 16, 149, 0, 8, 22, 26476 }, // U+FB59 + { 24, 19, 397, 0, 18, 57, 26498 }, // U+FB66 + { 29, 19, 437, 0, 18, 69, 26555 }, // U+FB67 + { 7, 21, 108, 0, 20, 19, 26624 }, // U+FB68 + { 11, 18, 149, 0, 17, 25, 26643 }, // U+FB69 + { 16, 21, 264, 0, 11, 42, 26668 }, // U+FB7A + { 20, 21, 288, 0, 11, 53, 26710 }, // U+FB7B + { 14, 17, 236, 0, 9, 30, 26763 }, // U+FB7C + { 18, 17, 255, 0, 9, 39, 26793 }, // U+FB7D + { 11, 23, 191, 0, 22, 32, 26832 }, // U+FB88 + { 15, 23, 213, 0, 22, 44, 26864 }, // U+FB89 + { 9, 23, 147, -1, 17, 26, 26908 }, // U+FB8A + { 13, 23, 158, -1, 17, 38, 26934 }, // U+FB8B + { 10, 25, 147, -1, 19, 32, 26972 }, // U+FB8C + { 13, 25, 158, -1, 19, 41, 27004 }, // U+FB8D + { 23, 19, 351, 0, 18, 55, 27045 }, // U+FB8E + { 26, 19, 390, 0, 18, 62, 27100 }, // U+FB8F + { 11, 19, 165, 0, 18, 27, 27162 }, // U+FB90 + { 14, 19, 203, 0, 18, 34, 27189 }, // U+FB91 + { 23, 22, 351, 0, 21, 64, 27223 }, // U+FB92 + { 26, 22, 390, 0, 21, 72, 27287 }, // U+FB93 + { 11, 22, 165, 0, 21, 31, 27359 }, // U+FB94 + { 14, 22, 203, 0, 21, 39, 27390 }, // U+FB95 + { 16, 14, 274, 0, 8, 28, 27429 }, // U+FB9E + { 20, 14, 292, 0, 8, 35, 27457 }, // U+FB9F + { 10, 12, 162, 0, 12, 15, 27492 }, // U+FBA6 + { 14, 10, 192, 0, 9, 18, 27507 }, // U+FBA7 + { 6, 16, 108, 0, 11, 12, 27525 }, // U+FBA8 + { 13, 11, 175, 0, 4, 18, 27537 }, // U+FBA9 + { 16, 14, 269, 0, 13, 28, 27555 }, // U+FBAA + { 17, 17, 246, 0, 11, 37, 27583 }, // U+FBAB + { 14, 14, 230, 0, 13, 25, 27620 }, // U+FBAC + { 14, 17, 203, 0, 11, 30, 27645 }, // U+FBAD + { 23, 13, 377, 0, 12, 38, 27675 }, // U+FBAE + { 15, 9, 220, 0, 2, 17, 27713 }, // U+FBAF + { 23, 19, 377, 0, 18, 55, 27730 }, // U+FBB0 + { 15, 16, 220, 0, 9, 30, 27785 }, // U+FBB1 + { 19, 17, 304, 0, 11, 41, 27815 }, // U+FBFC + { 20, 11, 294, 0, 5, 28, 27856 }, // U+FBFD + { 7, 16, 120, -1, 11, 14, 27884 }, // U+FBFE + { 11, 13, 149, 0, 8, 18, 27898 }, // U+FBFF + { 10, 11, 164, 0, 9, 14, 27916 }, // U+FE80 + { 9, 21, 94, -2, 21, 24, 27930 }, // U+FE81 + { 11, 24, 116, -2, 23, 33, 27954 }, // U+FE82 + { 6, 24, 94, 0, 24, 18, 27987 }, // U+FE83 + { 9, 27, 116, 0, 26, 31, 28005 }, // U+FE84 + { 9, 22, 179, 1, 16, 25, 28036 }, // U+FE85 + { 13, 23, 189, 1, 17, 38, 28061 }, // U+FE86 + { 6, 26, 95, 1, 18, 20, 28099 }, // U+FE87 + { 8, 26, 116, 1, 18, 26, 28119 }, // U+FE88 + { 19, 18, 304, 0, 12, 43, 28145 }, // U+FE89 + { 20, 18, 294, 0, 12, 45, 28188 }, // U+FE8A + { 6, 19, 108, 0, 18, 15, 28233 }, // U+FE8B + { 10, 16, 137, 0, 15, 20, 28248 }, // U+FE8C + { 4, 18, 95, 1, 18, 9, 28268 }, // U+FE8D + { 8, 19, 116, 1, 18, 19, 28277 }, // U+FE8E + { 24, 17, 397, 0, 11, 51, 28296 }, // U+FE8F + { 29, 15, 437, 0, 9, 55, 28347 }, // U+FE90 + { 6, 16, 108, 0, 11, 12, 28402 }, // U+FE91 + { 10, 13, 137, 0, 8, 17, 28414 }, // U+FE92 + { 10, 17, 162, 0, 17, 22, 28431 }, // U+FE93 + { 14, 20, 194, 0, 19, 35, 28453 }, // U+FE94 + { 24, 14, 397, 0, 13, 42, 28488 }, // U+FE95 + { 29, 14, 437, 0, 13, 51, 28530 }, // U+FE96 + { 7, 17, 108, 0, 16, 15, 28581 }, // U+FE97 + { 11, 14, 149, 0, 13, 20, 28596 }, // U+FE98 + { 24, 17, 397, 0, 16, 51, 28616 }, // U+FE99 + { 29, 17, 437, 0, 16, 62, 28667 }, // U+FE9A + { 7, 20, 108, 0, 19, 18, 28729 }, // U+FE9B + { 11, 17, 149, 0, 16, 24, 28747 }, // U+FE9C + { 15, 21, 256, 0, 11, 40, 28771 }, // U+FE9D + { 18, 21, 260, 0, 11, 48, 28811 }, // U+FE9E + { 14, 14, 236, 0, 9, 25, 28859 }, // U+FE9F + { 18, 14, 255, 0, 9, 32, 28884 }, // U+FEA0 + { 15, 21, 256, 0, 11, 40, 28916 }, // U+FEA1 + { 18, 21, 260, 0, 11, 48, 28956 }, // U+FEA2 + { 14, 10, 236, 0, 9, 18, 29004 }, // U+FEA3 + { 18, 10, 255, 0, 9, 23, 29022 }, // U+FEA4 + { 15, 26, 256, 0, 16, 49, 29045 }, // U+FEA5 + { 18, 26, 260, 0, 16, 59, 29094 }, // U+FEA6 + { 14, 15, 236, 0, 14, 27, 29153 }, // U+FEA7 + { 18, 15, 255, 0, 14, 34, 29180 }, // U+FEA8 + { 11, 13, 191, 0, 12, 18, 29214 }, // U+FEA9 + { 15, 13, 213, 0, 12, 25, 29232 }, // U+FEAA + { 11, 18, 191, 0, 17, 25, 29257 }, // U+FEAB + { 15, 18, 213, 0, 17, 34, 29282 }, // U+FEAC + { 9, 15, 147, -1, 9, 17, 29316 }, // U+FEAD + { 13, 15, 158, -1, 9, 25, 29333 }, // U+FEAE + { 9, 20, 147, -1, 14, 23, 29358 }, // U+FEAF + { 13, 20, 158, -1, 14, 33, 29381 }, // U+FEB0 + { 29, 17, 484, 0, 11, 62, 29414 }, // U+FEB1 + { 33, 15, 508, 0, 9, 62, 29476 }, // U+FEB2 + { 19, 12, 314, 0, 11, 29, 29538 }, // U+FEB3 + { 23, 10, 340, 0, 9, 29, 29567 }, // U+FEB4 + { 29, 23, 484, 0, 17, 84, 29596 }, // U+FEB5 + { 33, 23, 508, 0, 17, 95, 29680 }, // U+FEB6 + { 19, 18, 314, 0, 17, 43, 29775 }, // U+FEB7 + { 23, 18, 340, 0, 17, 52, 29818 }, // U+FEB8 + { 32, 16, 522, 0, 10, 64, 29870 }, // U+FEB9 + { 36, 16, 541, 0, 10, 72, 29934 }, // U+FEBA + { 22, 11, 361, 0, 10, 31, 30006 }, // U+FEBB + { 25, 11, 380, 0, 10, 35, 30037 }, // U+FEBC + { 32, 21, 522, 0, 15, 84, 30072 }, // U+FEBD + { 36, 21, 541, 0, 15, 95, 30156 }, // U+FEBE + { 22, 16, 361, 0, 15, 44, 30251 }, // U+FEBF + { 25, 16, 380, 0, 15, 50, 30295 }, // U+FEC0 + { 19, 19, 315, 0, 18, 46, 30345 }, // U+FEC1 + { 23, 19, 332, 0, 18, 55, 30391 }, // U+FEC2 + { 16, 19, 271, 0, 18, 38, 30446 }, // U+FEC3 + { 19, 19, 284, 0, 18, 46, 30484 }, // U+FEC4 + { 19, 19, 315, 0, 18, 46, 30530 }, // U+FEC5 + { 23, 19, 332, 0, 18, 55, 30576 }, // U+FEC6 + { 16, 19, 271, 0, 18, 38, 30631 }, // U+FEC7 + { 19, 19, 284, 0, 18, 46, 30669 }, // U+FEC8 + { 15, 23, 203, 0, 13, 44, 30715 }, // U+FEC9 + { 15, 21, 212, 0, 11, 40, 30759 }, // U+FECA + { 12, 12, 201, 0, 11, 18, 30799 }, // U+FECB + { 15, 12, 208, 0, 11, 23, 30817 }, // U+FECC + { 15, 28, 203, 0, 18, 53, 30840 }, // U+FECD + { 15, 26, 212, 0, 16, 49, 30893 }, // U+FECE + { 12, 17, 201, 0, 16, 26, 30942 }, // U+FECF + { 15, 17, 208, 0, 16, 32, 30968 }, // U+FED0 + { 24, 19, 393, 0, 18, 57, 31000 }, // U+FED1 + { 29, 17, 439, 0, 16, 62, 31057 }, // U+FED2 + { 11, 19, 179, 0, 18, 27, 31119 }, // U+FED3 + { 14, 17, 198, 0, 16, 30, 31146 }, // U+FED4 + { 19, 21, 310, 0, 16, 50, 31176 }, // U+FED5 + { 22, 21, 323, 0, 14, 58, 31226 }, // U+FED6 + { 11, 19, 179, 0, 18, 27, 31284 }, // U+FED7 + { 14, 17, 198, 0, 16, 30, 31311 }, // U+FED8 + { 21, 19, 353, 0, 18, 50, 31341 }, // U+FED9 + { 25, 19, 369, 0, 18, 60, 31391 }, // U+FEDA + { 11, 19, 165, 0, 18, 27, 31451 }, // U+FEDB + { 14, 19, 203, 0, 18, 34, 31478 }, // U+FEDC + { 16, 24, 278, 0, 18, 48, 31512 }, // U+FEDD + { 20, 24, 292, 0, 18, 60, 31560 }, // U+FEDE + { 6, 19, 104, 0, 18, 15, 31620 }, // U+FEDF + { 9, 19, 120, 0, 18, 22, 31635 }, // U+FEE0 + { 12, 20, 194, 0, 10, 30, 31657 }, // U+FEE1 + { 16, 20, 225, 0, 10, 40, 31687 }, // U+FEE2 + { 12, 10, 210, 0, 9, 15, 31727 }, // U+FEE3 + { 16, 11, 231, 0, 10, 22, 31742 }, // U+FEE4 + { 16, 19, 274, 0, 13, 38, 31764 }, // U+FEE5 + { 20, 19, 292, 0, 13, 48, 31802 }, // U+FEE6 + { 6, 17, 108, 0, 16, 13, 31850 }, // U+FEE7 + { 10, 14, 137, 0, 13, 18, 31863 }, // U+FEE8 + { 10, 12, 162, 0, 12, 15, 31881 }, // U+FEE9 + { 14, 14, 194, 0, 13, 25, 31896 }, // U+FEEA + { 14, 14, 230, 0, 13, 25, 31921 }, // U+FEEB + { 14, 17, 203, 0, 11, 30, 31946 }, // U+FEEC + { 9, 15, 179, 1, 9, 17, 31976 }, // U+FEED + { 13, 15, 189, 1, 9, 25, 31993 }, // U+FEEE + { 19, 17, 304, 0, 11, 41, 32018 }, // U+FEEF + { 20, 11, 294, 0, 5, 28, 32059 }, // U+FEF0 + { 19, 22, 304, 0, 11, 53, 32087 }, // U+FEF1 + { 20, 16, 294, 0, 5, 40, 32140 }, // U+FEF2 + { 7, 16, 120, -1, 11, 14, 32180 }, // U+FEF3 + { 11, 13, 149, 0, 8, 18, 32194 }, // U+FEF4 + { 15, 19, 233, -2, 19, 36, 32212 }, // U+FEF5 + { 19, 20, 240, -2, 19, 48, 32248 }, // U+FEF6 + { 14, 22, 233, -1, 22, 39, 32296 }, // U+FEF7 + { 17, 23, 240, 0, 22, 49, 32335 }, // U+FEF8 + { 12, 26, 233, 1, 18, 39, 32384 }, // U+FEF9 + { 16, 26, 240, 1, 18, 52, 32423 }, // U+FEFA + { 12, 18, 233, 1, 18, 27, 32475 }, // U+FEFB + { 16, 19, 240, 1, 18, 38, 32502 }, // U+FEFC }; static const EpdUnicodeInterval ubuntu_12_regularIntervals[] = { @@ -2459,52 +3086,70 @@ static const EpdUnicodeInterval ubuntu_12_regularIntervals[] = { { 0xD, 0xD, 0x3 }, { 0x1D, 0x1D, 0x4 }, { 0x20, 0x7E, 0x5 }, - { 0xA0, 0xFF, 0x64 }, - { 0x100, 0x17F, 0xC4 }, + { 0xA0, 0x17F, 0x64 }, { 0x1A0, 0x1A1, 0x144 }, { 0x1AF, 0x1B0, 0x146 }, { 0x1C4, 0x21F, 0x148 }, { 0x300, 0x304, 0x1A4 }, { 0x306, 0x308, 0x1A9 }, { 0x30A, 0x30C, 0x1AC }, - { 0x311, 0x311, 0x1AF }, - { 0x326, 0x328, 0x1B0 }, - { 0x34F, 0x34F, 0x1B3 }, - { 0x400, 0x45F, 0x1B4 }, - { 0x462, 0x463, 0x214 }, - { 0x472, 0x475, 0x216 }, - { 0x48A, 0x4F9, 0x21A }, - { 0x5D0, 0x5EA, 0x28A }, - { 0x1EA0, 0x1EF9, 0x2A5 }, - { 0x200C, 0x2010, 0x2FF }, - { 0x2013, 0x2015, 0x304 }, - { 0x2018, 0x201A, 0x307 }, - { 0x201C, 0x201E, 0x30A }, - { 0x2020, 0x2022, 0x30D }, - { 0x2026, 0x2026, 0x310 }, - { 0x2030, 0x2030, 0x311 }, - { 0x2039, 0x203A, 0x312 }, - { 0x2044, 0x2044, 0x314 }, - { 0x2070, 0x2070, 0x315 }, - { 0x2074, 0x2079, 0x316 }, - { 0x2080, 0x2089, 0x31C }, - { 0x20AA, 0x20AA, 0x326 }, - { 0x20AC, 0x20AC, 0x327 }, - { 0x20AE, 0x20AE, 0x328 }, - { 0x20B4, 0x20B4, 0x329 }, - { 0x20B9, 0x20B9, 0x32A }, - { 0x2202, 0x2202, 0x32B }, - { 0x2206, 0x2206, 0x32C }, - { 0x220F, 0x220F, 0x32D }, - { 0x2211, 0x2212, 0x32E }, - { 0x2215, 0x2215, 0x330 }, - { 0x2219, 0x221A, 0x331 }, - { 0x221E, 0x221E, 0x333 }, - { 0x222B, 0x222B, 0x334 }, - { 0x2248, 0x2248, 0x335 }, - { 0x2260, 0x2260, 0x336 }, - { 0x2264, 0x2265, 0x337 }, - { 0xFB00, 0xFB04, 0x339 }, + { 0x311, 0x312, 0x1AF }, + { 0x326, 0x328, 0x1B1 }, + { 0x34F, 0x34F, 0x1B4 }, + { 0x400, 0x45F, 0x1B5 }, + { 0x462, 0x463, 0x215 }, + { 0x472, 0x475, 0x217 }, + { 0x48A, 0x4F9, 0x21B }, + { 0x5D0, 0x5EA, 0x28B }, + { 0x60C, 0x60C, 0x2A6 }, + { 0x61B, 0x61B, 0x2A7 }, + { 0x61F, 0x61F, 0x2A8 }, + { 0x621, 0x621, 0x2A9 }, + { 0x640, 0x640, 0x2AA }, + { 0x660, 0x669, 0x2AB }, + { 0x6BA, 0x6BA, 0x2B5 }, + { 0x6D4, 0x6D4, 0x2B6 }, + { 0x6F0, 0x6F9, 0x2B7 }, + { 0x1EA0, 0x1EF9, 0x2C1 }, + { 0x2009, 0x2009, 0x31B }, + { 0x200B, 0x2011, 0x31C }, + { 0x2013, 0x2015, 0x323 }, + { 0x2018, 0x201A, 0x326 }, + { 0x201C, 0x201E, 0x329 }, + { 0x2020, 0x2022, 0x32C }, + { 0x2026, 0x2026, 0x32F }, + { 0x202F, 0x2030, 0x330 }, + { 0x2039, 0x203A, 0x332 }, + { 0x2044, 0x2044, 0x334 }, + { 0x204F, 0x204F, 0x335 }, + { 0x2070, 0x2070, 0x336 }, + { 0x2074, 0x2079, 0x337 }, + { 0x2080, 0x2089, 0x33D }, + { 0x20AA, 0x20AA, 0x347 }, + { 0x20AC, 0x20AC, 0x348 }, + { 0x20AE, 0x20AE, 0x349 }, + { 0x20B4, 0x20B4, 0x34A }, + { 0x20B9, 0x20B9, 0x34B }, + { 0x2202, 0x2202, 0x34C }, + { 0x2206, 0x2206, 0x34D }, + { 0x220F, 0x220F, 0x34E }, + { 0x2211, 0x2212, 0x34F }, + { 0x2215, 0x2215, 0x351 }, + { 0x2219, 0x221A, 0x352 }, + { 0x221E, 0x221E, 0x354 }, + { 0x222B, 0x222B, 0x355 }, + { 0x2248, 0x2248, 0x356 }, + { 0x2260, 0x2260, 0x357 }, + { 0x2264, 0x2265, 0x358 }, + { 0xFB00, 0xFB04, 0x35A }, + { 0xFB56, 0xFB59, 0x35F }, + { 0xFB66, 0xFB69, 0x363 }, + { 0xFB7A, 0xFB7D, 0x367 }, + { 0xFB88, 0xFB95, 0x36B }, + { 0xFB9E, 0xFB9F, 0x379 }, + { 0xFBA6, 0xFBB1, 0x37B }, + { 0xFBFC, 0xFBFF, 0x387 }, + { 0xFE80, 0xFEFC, 0x38B }, }; static const EpdKernClassEntry ubuntu_12_regularKernLeftClasses[] = { @@ -2944,6 +3589,10 @@ static const EpdKernClassEntry ubuntu_12_regularKernLeftClasses[] = { { 0x2039, 54 }, // U+2039 { 0x203A, 55 }, // U+203A { 0xFB00, 37 }, // U+FB00 + { 0xFB8C, 152 }, // U+FB8C + { 0xFEAD, 152 }, // U+FEAD + { 0xFEAE, 152 }, // U+FEAE + { 0xFEAF, 152 }, // U+FEAF }; static const EpdKernClassEntry ubuntu_12_regularKernRightClasses[] = { @@ -3441,160 +4090,180 @@ static const EpdKernClassEntry ubuntu_12_regularKernRightClasses[] = { { 0xFB02, 35 }, // U+FB02 { 0xFB03, 35 }, // U+FB03 { 0xFB04, 35 }, // U+FB04 + { 0xFB8E, 159 }, // U+FB8E + { 0xFBA6, 159 }, // U+FBA6 + { 0xFBAA, 159 }, // U+FBAA + { 0xFE8D, 160 }, // U+FE8D + { 0xFEA3, 159 }, // U+FEA3 + { 0xFEA9, 161 }, // U+FEA9 + { 0xFEB1, 161 }, // U+FEB1 + { 0xFEB3, 161 }, // U+FEB3 + { 0xFEB9, 161 }, // U+FEB9 + { 0xFEBB, 161 }, // U+FEBB + { 0xFEC1, 161 }, // U+FEC1 + { 0xFEC3, 161 }, // U+FEC3 + { 0xFECB, 160 }, // U+FECB + { 0xFEDB, 159 }, // U+FEDB + { 0xFEDF, 160 }, // U+FEDF + { 0xFEE1, 159 }, // U+FEE1 + { 0xFEE3, 159 }, // U+FEE3 + { 0xFEE9, 159 }, // U+FEE9 + { 0xFEEB, 159 }, // U+FEEB }; static const int8_t ubuntu_12_regularKernMatrix[] = { - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, -10, -10, -49, 0, -10, -10, 0, 0, 0, 5, 4, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, -46, -29, 0, -32, -28, 0, 0, 0, -10, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, -12, -12, 0, 0, -12, -12, -7, 4, -4, 6, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -12, -5, 0, 0, 0, 0, 11, 0, 0, 0, -12, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, 0, 7, 0, 0, -5, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, -5, -5, 0, -5, -5, -5, -11, 0, -14, -7, -11, -17, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -5, -6, 0, 0, -10, -8, 0, -9, -8, 0, -5, -5, -11, -8, -7, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -17, 0, 0, 0, 0, 0, -5, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, -4, -4, -49, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -45, -30, 0, -26, -29, -12, -6, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, -12, -12, 11, 0, -13, -13, 6, -28, -9, -31, -16, 4, -32, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -28, -12, 0, 0, 0, 0, 10, 7, 0, 0, 0, -13, -13, 4, -47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -17, 0, -32, 0, 0, -40, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, -20, 0, -5, 0, -12, -20, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, 6, -4, -9, -14, -16, 0, -9, -16, -6, 0, 6, 0, -12, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -20, 0, 0, 0, 0, 0, 6, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -11, -11, -28, 0, -10, -10, 0, 12, 0, 13, 9, 8, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, -11, 0, -25, -24, 10, -20, -24, 7, 0, 0, -10, -10, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 0, 0, -4, -4, 0, -34, -5, -8, -5, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -34, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -4, -4, -10, 0, -4, -4, -7, -18, -5, -14, -9, -16, -22, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, -4, -6, -9, -9, -16, -10, -8, -18, -12, 0, -4, -4, -16, -5, -11, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -22, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -31, -8, 0, -25, 10, 0, 7, 0, 0, -6, 13, -8, -8, 12, 0, -8, -8, 6, -26, -4, -25, -7, 10, -32, 8, 0, 0, -11, 0, 0, -5, -5, -5, 0, -6, 0, 0, 0, 0, -5, -5, 5, 0, -6, -8, -8, 10, -6, 6, -8, -4, -8, 0, 14, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, -21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -28, -27, 10, - 0, -4, -4, -10, -4, -4, 0, -8, -4, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, -8, -10, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -9, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -9, 0, 0, 9, -12, 0, 0, 6, -7, 9, -8, -8, 9, 0, -8, -8, 4, 7, 0, 7, 0, 5, 7, 4, -4, 0, 0, 0, 0, -6, -6, -6, 0, -6, 0, 0, 0, 0, -6, -6, 0, 0, -8, -6, -7, 6, -6, 0, -11, 0, -18, 0, 9, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, - -6, -10, -5, -13, 0, -13, 0, -17, 0, -16, -4, -8, 0, 0, -10, 0, 0, 0, -4, -11, 0, -7, -7, -10, -16, -6, -4, 0, -17, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, -14, - 0, -6, -8, 0, -5, 4, 0, 0, 0, 0, -6, 7, -11, -11, 7, 0, -11, -11, 0, 0, -9, 0, 0, 0, 0, 0, -7, 0, -17, 0, 0, -6, -7, -6, 0, -9, 0, 0, 0, 0, -7, -6, 0, -6, -8, -10, -10, 4, -10, 0, -8, -9, -9, 0, 7, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, - -4, 0, -10, 0, 0, -26, 0, -24, -7, 5, -7, -18, -5, -5, -32, 0, -5, -5, 0, 6, 0, 7, 0, 0, 8, 0, -6, 0, -16, -20, 0, -6, -6, -6, 0, -6, 0, 0, 0, -11, -6, -6, 0, 0, -10, 0, 0, -14, 0, -10, 0, 0, 0, -8, -30, 0, 0, 0, 0, -6, 0, 0, 0, 0, -10, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -41, - 0, 0, 0, -4, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, -7, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -4, 0, -4, 0, -14, 0, 0, 0, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -8, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, - 0, 0, -7, 0, -13, 6, -19, 7, 0, 4, -8, 14, -14, -14, 11, 0, -14, -14, 0, 7, 0, 8, 4, 10, 9, 8, 0, 0, -10, 0, 0, -8, -8, -8, 0, -8, 0, 0, 0, 0, -8, -8, 6, 0, -5, -6, -19, 11, -4, 6, -8, 0, -24, 0, 14, 0, 0, 0, 8, -10, 4, 4, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, - 0, -50, -4, 0, -56, 9, -28, 5, 0, 0, 0, 11, -18, -18, 11, 0, -18, -18, 6, -46, -7, -40, -18, 8, -46, 6, 0, 0, -13, 0, 0, -5, -5, -5, 0, -5, 0, 0, 0, 0, -5, -5, 0, 0, 0, -16, -15, 8, -8, 4, -10, -6, -16, 4, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -48, -47, 6, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -6, -9, -5, -11, 0, -13, 0, -17, 0, -14, -4, -8, 0, 0, -10, 0, 0, 0, -4, -11, 0, -7, -6, -10, -16, -6, -4, 0, -17, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, -12, - -4, 0, -5, -10, 0, -36, 0, -25, 0, 0, 0, -20, 0, 0, -38, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, -6, 0, -16, -8, 0, -8, -8, -13, 0, -8, 0, 0, 0, 0, -8, -4, 0, 0, 0, 4, 4, 0, 4, 0, 0, -10, -7, 0, -34, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -46, - -6, -9, -5, 0, 0, -13, 0, 0, 0, -14, -4, -8, 0, 0, -10, 0, 0, 0, -4, -11, 0, -7, -6, -10, -16, -6, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, -8, - 0, 0, -5, 0, 0, 6, 0, 5, 0, -5, -6, 11, -4, -4, 9, 0, -4, -4, 0, 0, 0, -4, 0, 8, -8, 6, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 4, -7, -6, -8, 0, 12, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, - 0, 0, -11, 5, 0, -30, -20, -34, -34, 9, -20, -26, -11, -11, -36, 0, -11, -11, 0, 10, 0, 11, 7, 6, 12, 0, 0, 0, -13, -18, 0, -22, -22, -22, 0, -22, 0, 0, 0, -16, -22, -22, -18, 0, -14, -9, -32, -7, -9, -12, -10, 0, -34, -30, -29, 0, 0, 8, 12, -32, 20, 8, 4, 0, -29, -26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, - 0, 0, -4, 0, 0, -4, 0, -16, -4, 0, 0, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -15, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -4, -9, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, - 0, 6, -13, 6, 0, -30, -4, -27, -8, 10, -15, -25, -7, -7, -38, -2, -7, -7, 0, 11, 0, 12, 8, 8, 13, 0, 0, 0, -11, -10, 0, -18, -18, -18, 0, -18, 0, 0, 0, -12, -18, -18, -6, 0, -10, 0, 0, 0, 0, -1, -10, 0, -17, -4, -33, 0, 4, 0, 13, -20, 16, 12, 4, 0, -10, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 10, -30, - 0, 5, -6, 0, 0, -15, 0, -19, -4, 6, -8, -7, -6, -6, -24, 0, -6, -6, 0, 8, 0, 9, 5, 4, 10, 0, 0, 0, -15, -12, 0, -9, -9, -9, 0, -10, 0, 0, 0, -8, -9, -9, -7, 0, -8, 0, 0, 0, 0, 0, -7, 0, -8, 0, -20, 0, 0, 0, 7, -10, 4, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 10, -15, - 0, 0, -10, 0, -10, 5, -11, 4, 0, 0, -10, 11, -10, -10, 8, 0, -10, -10, 0, 5, 0, 7, 0, 7, 8, 5, 0, 0, -14, 0, 0, -7, -7, -7, 0, -7, 0, 0, 0, 0, -7, -7, 0, 0, -4, -4, -15, 8, -3, 0, -10, 0, -19, 0, 11, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, - 0, 0, -17, 7, 0, -26, -20, -33, -15, 10, -23, -32, -16, -16, -46, -3, -16, -16, 0, 12, 0, 13, 9, 8, 14, 4, 0, 0, -10, -16, 0, -20, -20, -20, 0, -20, 0, 0, 0, -16, -20, -20, -8, 0, -14, 0, 0, -6, 0, -11, -9, 0, -30, -13, -32, 0, 0, 0, 16, -31, 16, 13, 0, 0, -17, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, -31, - 0, 0, -8, 0, 0, 4, -24, 0, 0, 0, -6, 7, -14, -14, 7, 0, -14, -14, 0, 0, -6, 4, 0, 0, 5, 0, -7, 0, -17, 0, 0, -6, -7, -6, 0, -9, 0, 0, 0, 0, -7, -6, 0, -5, -8, -9, -10, 4, -9, 0, -14, -6, -20, 0, 7, 0, 0, 0, 4, -6, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -17, -17, -11, 0, -17, -17, -10, -13, -15, -12, -15, -14, -11, -16, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -17, -8, -9, -10, -12, -11, 10, -12, 0, 0, -17, -17, -14, -19, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -19, 0, -11, 0, 0, -10, 0, 0, -6, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 0, 0, -4, -4, 0, 0, 0, 0, -4, -4, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, -4, -8, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -11, 0, -10, -8, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, 0, -6, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, - 0, -15, 0, -11, 0, 0, 0, -9, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -5, -7, -5, -8, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -13, 0, - 0, 0, 0, 0, 0, 4, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, -5, 0, 0, -6, 0, 0, 0, 0, -5, 0, 0, 0, 0, 4, 4, 6, 4, 0, -8, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 16, 4, -21, -14, -17, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 7, 6, 8, 0, 0, 16, -8, 4, 0, 0, 12, 0, 16, -7, 16, 12, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -21, - 0, -15, 0, -10, -8, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, 0, -7, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -12, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, -11, 4, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, -10, -10, -10, 0, -12, 0, 0, 0, 0, -12, -10, 0, 0, 0, 0, 0, 8, 0, 0, -8, 0, -14, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -12, 0, -10, -9, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -6, 0, -7, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -10, 0, - 0, -13, 0, -11, -8, 0, 0, -9, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, -7, -6, -8, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -11, 0, - 0, -13, 0, -11, -8, 0, 0, -9, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, -7, -6, -7, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -11, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 5, -22, -13, -18, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 8, 8, 6, 8, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, -21, - 0, 0, 0, 0, 0, 4, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, -5, -6, -4, 0, -4, 0, 0, 0, 0, -6, -5, 0, 0, 0, 0, 0, 7, 0, 0, -8, 0, -11, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 4, -14, 0, -13, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, -6, -6, -6, 0, -5, 0, 0, 0, 0, -6, -6, 0, 0, 0, 7, 7, 6, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, -14, - 0, 0, 0, 0, 4, -13, 0, -11, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 7, 7, 6, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, -12, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, -8, -8, -8, 0, -8, 0, 0, 0, 0, -8, -8, 0, 0, 0, 0, 0, 7, 0, 0, -8, 0, -12, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, -8, -8, -8, -5, -9, 0, 0, 0, 0, -8, -7, 0, -5, -5, 0, 0, 0, 0, 0, -11, -8, -13, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -10, -12, -5, 0, -12, -12, -8, 0, -9, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -7, 0, 0, 0, -5, 11, 0, 0, 0, -12, -12, 0, -4, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, -4, 0, 0, -6, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, -8, 0, 0, 0, -7, -10, -4, -10, -8, -12, -10, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, -8, -6, -7, -10, -8, -8, -9, -10, 0, 0, 0, -12, 0, -9, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -33, -4, -12, -8, 0, -19, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -31, 0, -5, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, -17, 0, 0, 0, -8, -34, 0, -18, -8, -20, -31, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -34, 0, -10, -14, -14, -22, -8, -13, -23, -15, 0, 0, 0, -20, -6, -16, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -31, 0, 0, -4, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, -15, -15, -25, 0, -15, -15, -12, -44, -18, -19, -16, -28, -26, -27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -6, -13, 0, -16, 0, -24, 0, -16, 0, -14, 0, -11, 0, 0, -22, 0, 0, 0, 0, -18, 0, -8, 0, -17, -17, -19, -6, 0, -17, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -6, -23, - 0, -16, 0, -11, -13, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -10, 0, -11, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -12, 0, - 0, 0, 0, 0, 0, 0, 0, -8, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -16, 0, -11, -8, 0, 0, -9, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, -7, -6, -7, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, -14, 0, - 0, 7, 0, 24, 0, -4, -4, 0, -4, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 28, -4, 6, -4, -4, -4, 0, -4, 3, 3, 6, -4, -4, -4, -4, 4, -4, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 28, 38, 44, 0, 44, 44, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -17, 0, 0, -8, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, -14, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, -9, -8, -6, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, -25, 0, 0, 0, 0, 0, 0, 0, 0, -12, -6, -6, 0, 0, 0, -9, -5, 0, 0, 0, -5, 0, -5, -5, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -23, -5, -5, -5, -5, 0, -5, -5, -5, -5, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -6, -8, 0, -5, 4, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -9, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 6, 0, 0, 7, 0, 0, 0, 0, -11, -11, 0, 0, 0, 0, 0, -6, 0, 0, 0, -6, 0, 0, 0, 0, -7, 0, -6, -6, -10, -7, 4, -7, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -9, -4, 0, -10, 0, 0, 0, 0, -8, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, - -5, -15, 0, -7, -12, -5, 6, -6, -5, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -8, 0, 0, 0, 0, -7, -9, 0, -8, 0, 0, 0, 0, 0, 0, -7, -4, 0, 0, 0, 0, 0, -14, -6, 0, -6, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -4, 0, 0, 0, -6, 0, -7, 0, 0, 0, 0, -4, 0, -12, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -11, 5, 0, -30, -20, -34, -34, 9, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, -34, -30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, -11, 0, -44, -26, 8, -26, -26, 0, 0, 0, -11, -11, 6, 0, 7, 0, -39, 0, -36, -37, -46, -46, -30, -32, -45, -42, -46, -37, -46, -25, -25, -32, -26, -30, -37, -25, -31, -44, 11, -46, -42, 0, 17, 0, 11, 0, -30, -9, -48, 0, -25, 0, 0, -37, -39, 0, -39, -53, 0, -26, -45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, - 0, 0, -9, 0, 0, 9, -12, 0, 0, 6, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, -8, 0, 8, 7, 0, 9, 7, 0, 0, 0, -8, -8, 5, 0, 0, 0, 0, -6, 0, 0, 7, -6, 6, 0, 8, 0, -6, 0, -6, -13, -6, -6, 6, -19, 0, -13, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, -12, -4, 7, -6, 0, 0, -20, 0, -5, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, - 0, -5, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, -6, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -6, -30, -8, -9, -14, 0, 0, 0, 0, -12, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -6, 0, -12, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, -9, 0, 0, 0, 0, -14, 0, 0, -6, 0, 0, -8, -8, -8, -6, -15, -4, -5, 0, 0, -8, -5, -8, 0, 0, -4, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -7, 0, -13, 6, -19, 7, 0, 4, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, -14, 0, 10, 10, 0, 14, 11, 9, 6, 0, -14, -14, 10, 0, 8, 7, 0, -10, 0, 0, 11, -8, 11, 0, 10, 0, -8, 0, -8, -16, -19, -11, 11, -24, 0, -9, 8, 8, 8, -8, 6, 0, 0, 0, 8, -9, 0, -17, -8, 0, -19, 0, -15, -24, 0, -8, -6, 0, 7, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, - 0, 6, -13, 6, 0, -30, -4, -27, -8, 10, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, -17, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, -7, 0, -32, -25, 10, -25, -24, 6, 0, -2, -7, -7, 8, 0, 8, 0, -10, -7, -7, -8, -25, -15, 0, 0, -25, -12, -15, -8, -15, 0, 0, -16, 0, 0, -8, 0, 0, -12, 13, -15, -8, 0, 16, 0, 13, 0, 0, -8, -15, 0, 0, 0, 0, 0, -10, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 10, -30, - 0, -31, -8, 0, -25, 10, 0, 7, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -4, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, -8, 6, 10, 10, 0, 13, 10, 9, 6, 0, -8, -8, 10, -20, 8, 6, 0, -6, 0, 0, 10, -5, 11, 0, 10, 0, -5, 0, -5, -15, -6, -5, 10, -11, 0, -10, 7, 8, 0, 0, 6, 0, 0, 0, 0, -10, 0, -9, 0, -32, -8, 0, -14, -7, 0, -6, 0, 0, 8, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -28, -27, 10, - 0, -4, -4, -10, -4, -4, 0, -8, -4, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -8, 0, 0, 0, -4, -8, -7, 0, -6, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -5, 0, 10, -7, 7, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 10, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 10, 9, 0, 10, 8, 7, 6, 0, -7, -10, 7, -11, 7, 0, 0, 0, 0, 0, 8, 0, 8, 0, 9, 0, 0, 0, 0, 0, 12, 0, 8, -8, 0, 0, 0, 6, 0, 0, 0, 0, 0, 26, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 7, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -5, -5, -10, 0, 0, 0, -6, -4, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -6, 0, 0, 0, -5, -6, -6, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -6, -6, -8, -6, 0, 0, 0, 0, -5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -6, -9, -5, -11, 0, -13, 6, -17, 0, -14, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, -9, -9, -14, -8, -8, -19, -12, 0, 0, 0, -10, 0, -12, 0, -5, 0, 0, 0, -10, 0, -4, -5, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -5, -5, -6, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, -5, -11, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, -12, - -4, 0, -5, -10, 0, -36, 0, -25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -37, -29, 0, -20, -28, -11, -6, 0, 0, 0, -7, 0, 0, 0, -8, 0, 0, 0, -18, 0, 0, 0, -19, -5, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 4, 0, 6, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -46, - 0, 0, -11, 5, 0, -30, -20, -34, -34, 9, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, -34, -30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, -11, 0, -26, -26, 8, -26, -26, 0, 0, 0, -11, -11, 6, 0, 7, 0, -18, 0, -30, -30, -28, -22, -28, -33, -27, -30, -22, -16, -22, -25, -9, -22, -7, -30, -30, -25, -31, -30, 11, -31, -31, 0, 17, 0, 11, 0, -27, -9, -31, 12, -9, 0, 0, -27, -32, 0, -32, -54, 0, -26, -45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, - -6, -9, -5, -11, 0, -13, 0, -17, 0, -14, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, -22, -23, -15, -8, -22, -24, -18, 0, 0, 0, -10, 0, -16, 0, -7, 0, -6, -5, -16, 0, -4, -4, -17, -7, 0, -6, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, -6, 0, 0, -6, -6, -6, -6, 0, 0, 0, 0, 0, 0, -6, 0, 0, -7, 0, 0, -4, -23, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, -12, - 0, 0, -10, 0, -10, 5, -11, 4, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, -19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, -10, 0, 0, 0, 0, 11, 0, 0, 0, 0, -10, -10, 7, 0, 0, 0, 0, -11, 0, 0, 8, -7, 8, 0, 8, 0, -7, 0, -7, -12, -3, -7, 8, -18, 0, -12, 0, 0, 7, -8, 0, 0, 0, 0, 7, -11, 0, 0, -9, 8, -4, 0, 0, -19, 0, 0, -7, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, - 0, -5, 0, 10, -7, 7, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 10, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 10, 9, 0, 10, 8, 7, 6, 0, -7, -10, 7, -11, 7, 0, 0, 0, 0, 0, 8, 0, 8, 0, 9, 0, 0, 0, 0, 0, 12, 0, 8, -8, 0, 0, 0, 6, 0, 0, 0, 0, 0, 28, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 7, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -6, -9, -5, -11, 0, -13, 6, -17, 0, -14, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, -9, -8, -14, -8, -8, -18, -12, 0, 0, 0, -10, 0, -11, 0, 0, 0, 0, 0, -9, 0, 0, -4, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -5, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -11, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, -12, - 0, -11, 0, -10, -8, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, - -5, -9, -4, 0, -8, -8, 7, -8, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -6, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -14, 0, -9, -6, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -6, 0, -32, -22, -18, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -4, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, 0, 0, 0, -15, 0, 0, 0, 0, 9, 9, 0, 7, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 9, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -12, 0, 10, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 10, -4, 8, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -10, 0, -11, -7, -5, 6, -4, -5, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -5, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, - 0, -4, -7, 0, 0, 0, -11, 4, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -10, 9, 0, 8, 0, -12, 0, -10, 0, 0, -12, 8, 0, 0, 0, 0, 6, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -15, 0, -10, -7, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -6, 0, 0, 0, -11, 4, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -10, 9, 0, 8, 0, -12, 0, -10, 0, 0, -12, 8, 0, 0, 0, 0, 6, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -13, 0, -11, -8, -8, 7, -9, -7, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -7, 0, 0, 0, 0, 0, 0, -6, 0, -7, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -7, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -11, 0, - 0, -13, -4, -11, -8, -8, 7, -9, -7, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -6, 0, 0, 0, 0, 0, 0, -6, 0, -7, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -6, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -11, 0, - 0, 0, 0, 0, 0, 4, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, -5, 0, 0, 6, 4, -5, 6, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -5, 0, -20, -12, -18, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -4, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, -15, 0, 0, 0, 0, 9, 9, 0, 7, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 9, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -6, 0, -9, 0, -12, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -5, 0, 0, -11, 0, -5, 0, -5, 8, 7, -5, 5, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -12, - -8, -13, 0, -11, -8, -10, 7, -9, -9, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -9, -5, 0, 0, 0, 0, 0, -6, 0, -7, 0, 0, 0, -6, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, -4, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -11, 0, - 0, 0, -6, 0, 0, 0, -6, 0, 0, -4, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -4, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -8, 9, 0, 8, 0, -8, 0, -8, 0, 0, -8, 7, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -12, 0, 10, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 10, -4, 8, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -32, 0, -10, -21, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -19, -8, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -13, 0, -11, -8, -8, 7, -9, -6, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -6, 0, 0, 0, 0, 0, 0, -6, 0, -7, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -11, 0, - 0, -13, 0, -11, -8, -8, 7, -9, -7, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -7, 0, 0, 0, 0, 0, 0, -6, 0, -7, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -11, 0, - 0, -23, -8, 0, -10, 0, 0, 0, 0, -12, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -5, -8, 0, 0, 0, -6, 0, 0, -6, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -8, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, -4, 0, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -9, 0, -10, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -23, -7, -9, -10, 0, 0, 0, 0, -12, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -30, 0, -10, -20, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, -8, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -7, 8, 0, 0, -27, -28, -19, 15, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -36, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, -8, 0, 0, -20, 13, -27, -20, 8, 8, 0, -8, -12, 10, 7, 13, 0, -22, 0, -18, -20, -42, -35, -13, -16, -38, -25, -35, -20, -36, -8, -8, -31, -9, -14, -20, -8, -14, -30, 18, -35, -25, 0, 0, 0, 18, 0, -13, -8, -36, 0, -8, 0, 0, -20, -22, 0, -22, -16, 7, -9, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 9, -31, -8, -18, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 8, 0, -11, 0, 0, 0, 0, 13, 13, 0, 12, 7, 0, 13, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 10, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -17, -4, 0, -7, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -38, 0, 0, -26, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, -20, 0, 0, 0, -6, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -7, -23, -5, 0, -8, -14, 7, 0, -6, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, 0, -8, -6, -7, -14, -6, 0, -16, -9, 0, 0, 0, -15, -5, -8, -7, 0, 0, 0, 0, 0, 0, -12, -8, -8, 0, 0, -4, 0, 0, 0, 0, -8, 0, -6, 0, -8, 0, -6, 0, 0, -6, -6, 10, -6, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, -8, -8, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -26, 0, 0, -12, -5, 0, 0, -5, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -14, 0, 0, -6, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -17, 7, 0, -26, -20, -33, -15, 10, -23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, -30, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, -16, 0, 0, 0, 0, -32, 0, 0, 0, -3, -16, 0, 8, 0, 0, 0, -16, -10, -14, -15, -30, -20, -7, -10, -30, -19, -20, -16, -20, 0, 0, -28, -6, -8, -15, 0, -8, -22, 13, -26, -17, 0, 0, 0, 13, 0, -5, 0, -26, 14, 0, 0, 0, -10, -17, 0, -16, -10, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, -31, - 0, 0, 0, -5, 4, -14, 0, -13, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -6, 0, 0, -14, 0, -6, 0, -6, 9, 7, 0, 6, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, -14, - -4, -35, -6, -7, -11, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -23, -7, -9, -10, 0, 0, 0, 0, -12, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -7, -5, -13, 0, -8, 0, -8, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, -5, -5, 0, 0, 0, -5, 0, -4, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -6, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -6, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -18, 0, -12, -7, -5, 6, -4, -5, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -4, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -10, -5, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -17, 0, -12, -7, -6, 6, -4, -5, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -6, -9, -5, -11, 0, -13, 6, -17, 0, -14, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, -5, 0, 0, 0, -9, 0, 0, -4, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -5, -5, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, -12, - 0, -13, 0, -11, -8, -8, 7, -9, -6, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -7, 0, 0, 0, 0, 0, 0, -6, 0, -7, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -7, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -11, 0, - 0, 0, -4, 0, -8, -4, 0, -6, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -13, -8, 0, -4, 0, 0, -13, 0, -5, 0, 0, 0, -4, -4, -4, 0, -10, -4, 0, 0, 0, -8, 0, -10, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -8, -8, 0, 0, 0, 0, 0, 0, -6, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -2, -2, 0, 0, 0, 0, 0, -8, 0, -4, 0, -8, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, -13, 0, 0, -13, 0, 0, -10, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, -8, -13, 0, -5, -6, 0, -9, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, -8, 0, 0, -8, 0, -20, -14, 0, -10, -5, -13, 0, -20, -14, 0, 0, -14, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, -4, 0, -3, 0, 0, -8, 0, 0, -4, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, -8, 0, -8, -2, 0, 0, 0, 0, 0, -4, -9, -8, -8, -5, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, 0, 0, -8, 0, -3, -3, 0, 0, -3, 0, -12, -3, -3, 0, 0, -9, 0, 0, -8, 0, -8, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, -5, 0, 0, -6, -6, 0, -10, -10, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, -2, 0, 0, 0, 0, -8, 0, -12, -10, 0, 0, 0, -8, 0, -15, -6, 0, 0, 0, 8, -2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -5, -8, -9, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -6, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, -12, 0, -2, 0, 0, -2, 0, -12, -5, 0, 0, -4, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, -8, -3, 0, 0, -3, 0, -11, -2, 0, 0, 0, -3, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -10, 0, -8, 0, 0, 0, 0, -8, 0, 0, 0, -10, 0, -13, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, -8, 0, -6, -8, 0, 0, -3, -4, 0, -12, -4, 0, 0, -8, 0, -9, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, -2, 0, 0, -10, 0, -3, 0, -4, 0, 0, -3, 0, 0, -3, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, 0, -20, 0, 0, -6, 0, -8, -2, 0, -14, -16, -16, 0, -10, 0, 0, 0, -8, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -30, -8, -8, -46, 0, -8, -8, 0, 0, 0, 8, 7, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, -30, 0, 0, 0, 0, -8, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, -10, -10, 11, 0, -11, -12, 6, -27, -8, -30, -14, 5, -31, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, -10, 0, 0, 0, 0, 10, 0, 0, 0, 0, -11, -11, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, -10, -10, -49, 0, -10, -10, 0, 0, 0, 5, 4, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, -46, -29, 0, -32, -28, 0, 0, 0, -10, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, -12, -12, 0, 0, -12, -12, -7, 4, -4, 6, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -12, -5, 0, 0, 0, 0, 11, 0, 0, 0, -12, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, 0, 7, 0, 0, -5, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, -5, -5, 0, -5, -5, -5, -11, 0, -14, -7, -11, -17, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -5, -6, 0, 0, -10, -8, 0, -9, -8, 0, -5, -5, -11, -8, -7, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -17, 0, 0, 0, 0, 0, -5, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, -4, -4, -49, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -45, -30, 0, -26, -29, -12, -6, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, -12, -12, 11, 0, -13, -13, 6, -28, -9, -31, -16, 4, -32, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -28, -12, 0, 0, 0, 0, 10, 7, 0, 0, 0, -13, -13, 4, -47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -17, 0, -32, 0, 0, -40, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, -20, 0, -5, 0, -12, -20, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, 6, -4, -9, -14, -16, 0, -9, -16, -6, 0, 6, 0, -12, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -20, 0, 0, 0, 0, 0, 6, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -11, -11, -28, 0, -10, -10, 0, 12, 0, 13, 9, 8, 14, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, -11, 0, -25, -24, 10, -20, -24, 7, 0, 0, -10, -10, 8, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 0, 0, -4, -4, 0, -34, -5, -8, -5, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -34, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -4, -4, -10, 0, -4, -4, -7, -18, -5, -14, -9, -16, -22, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, -4, -6, -9, -9, -16, -10, -8, -18, -12, 0, -4, -4, -16, -5, -11, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -22, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -31, -8, 0, -25, 10, 0, 7, 0, 0, -6, 13, -8, -8, 12, 0, -8, -8, 6, -26, -4, -25, -7, 10, -32, 8, 0, 0, -11, 0, 0, -5, -5, -5, 0, -6, 0, 0, 0, 0, -5, -5, 5, 0, -6, -8, -8, 10, -6, 6, -8, -4, -8, 0, 14, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, -21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -28, -27, 10, 0, 0, 0, + 0, -4, -4, -10, -4, -4, 0, -8, -4, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, -8, -10, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -9, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -9, 0, 0, 9, -12, 0, 0, 6, -7, 9, -8, -8, 9, 0, -8, -8, 4, 7, 0, 7, 0, 5, 7, 4, -4, 0, 0, 0, 0, -6, -6, -6, 0, -6, 0, 0, 0, 0, -6, -6, 0, 0, -8, -6, -7, 6, -6, 0, -11, 0, -18, 0, 9, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 0, 0, 0, + -6, -10, -5, -13, 0, -13, 0, -17, 0, -16, -4, -8, 0, 0, -10, 0, 0, 0, -4, -11, 0, -7, -7, -10, -16, -6, -4, 0, -17, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, -14, 0, 0, 0, + 0, -6, -8, 0, -5, 4, 0, 0, 0, 0, -6, 7, -11, -11, 7, 0, -11, -11, 0, 0, -9, 0, 0, 0, 0, 0, -7, 0, -17, 0, 0, -6, -7, -6, 0, -9, 0, 0, 0, 0, -7, -6, 0, -6, -8, -10, -10, 4, -10, 0, -8, -9, -9, 0, 7, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, + -4, 0, -10, 0, 0, -26, 0, -24, -7, 5, -7, -18, -5, -5, -32, 0, -5, -5, 0, 6, 0, 7, 0, 0, 8, 0, -6, 0, -16, -20, 0, -6, -6, -6, 0, -6, 0, 0, 0, -11, -6, -6, 0, 0, -10, 0, 0, -14, 0, -10, 0, 0, 0, -8, -30, 0, 0, 0, 0, -6, 0, 0, 0, 0, -10, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -41, 0, 0, 0, + 0, 0, 0, -4, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, -7, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -4, 0, -4, 0, -14, 0, 0, 0, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -8, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, + 0, 0, -7, 0, -13, 6, -19, 7, 0, 4, -8, 14, -14, -14, 11, 0, -14, -14, 0, 7, 0, 8, 4, 10, 9, 8, 0, 0, -10, 0, 0, -8, -8, -8, 0, -8, 0, 0, 0, 0, -8, -8, 6, 0, -5, -6, -19, 11, -4, 6, -8, 0, -24, 0, 14, 0, 0, 0, 8, -10, 4, 4, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, + 0, -50, -4, 0, -56, 9, -28, 5, 0, 0, 0, 11, -18, -18, 11, 0, -18, -18, 6, -46, -7, -40, -18, 8, -46, 6, 0, 0, -13, 0, 0, -5, -5, -5, 0, -5, 0, 0, 0, 0, -5, -5, 0, 0, 0, -16, -15, 8, -8, 4, -10, -6, -16, 4, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -48, -47, 6, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -6, -9, -5, -11, 0, -13, 0, -17, 0, -14, -4, -8, 0, 0, -10, 0, 0, 0, -4, -11, 0, -7, -6, -10, -16, -6, -4, 0, -17, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, -12, 0, 0, 0, + -4, 0, -5, -10, 0, -36, 0, -25, 0, 0, 0, -20, 0, 0, -38, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, -6, 0, -16, -8, 0, -8, -8, -13, 0, -8, 0, 0, 0, 0, -8, -4, 0, 0, 0, 4, 4, 0, 4, 0, 0, -10, -7, 0, -34, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -46, 0, 0, 0, + -6, -9, -5, 0, 0, -13, 0, 0, 0, -14, -4, -8, 0, 0, -10, 0, 0, 0, -4, -11, 0, -7, -6, -10, -16, -6, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, -8, 0, 0, 0, + 0, 0, -5, 0, 0, 6, 0, 5, 0, -5, -6, 11, -4, -4, 9, 0, -4, -4, 0, 0, 0, -4, 0, 8, -8, 6, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 4, -7, -6, -8, 0, 12, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, + 0, 0, -11, 5, 0, -30, -20, -34, -34, 9, -20, -26, -11, -11, -36, 0, -11, -11, 0, 10, 0, 11, 7, 6, 12, 0, 0, 0, -13, -18, 0, -22, -22, -22, 0, -22, 0, 0, 0, -16, -22, -22, -18, 0, -14, -9, -32, -7, -9, -12, -10, 0, -34, -30, -29, 0, 0, 8, 12, -32, 20, 8, 4, 0, -29, -26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, 0, 0, 0, + 0, 0, -4, 0, 0, -4, 0, -16, -4, 0, 0, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -15, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -4, -9, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, + 0, 6, -13, 6, 0, -30, -4, -27, -8, 10, -15, -25, -7, -7, -38, -2, -7, -7, 0, 11, 0, 12, 8, 8, 13, 0, 0, 0, -11, -10, 0, -18, -18, -18, 0, -18, 0, 0, 0, -12, -18, -18, -6, 0, -10, 0, 0, 0, 0, -1, -10, 0, -17, -4, -33, 0, 4, 0, 13, -20, 16, 12, 4, 0, -10, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 10, -30, 0, 0, 0, + 0, 5, -6, 0, 0, -15, 0, -19, -4, 6, -8, -7, -6, -6, -24, 0, -6, -6, 0, 8, 0, 9, 5, 4, 10, 0, 0, 0, -15, -12, 0, -9, -9, -9, 0, -10, 0, 0, 0, -8, -9, -9, -7, 0, -8, 0, 0, 0, 0, 0, -7, 0, -8, 0, -20, 0, 0, 0, 7, -10, 4, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 10, -15, 0, 0, 0, + 0, 0, -10, 0, -10, 5, -11, 4, 0, 0, -10, 11, -10, -10, 8, 0, -10, -10, 0, 5, 0, 7, 0, 7, 8, 5, 0, 0, -14, 0, 0, -7, -7, -7, 0, -7, 0, 0, 0, 0, -7, -7, 0, 0, -4, -4, -15, 8, -3, 0, -10, 0, -19, 0, 11, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, -17, 7, 0, -26, -20, -33, -15, 10, -23, -32, -16, -16, -46, -3, -16, -16, 0, 12, 0, 13, 9, 8, 14, 4, 0, 0, -10, -16, 0, -20, -20, -20, 0, -20, 0, 0, 0, -16, -20, -20, -8, 0, -14, 0, 0, -6, 0, -11, -9, 0, -30, -13, -32, 0, 0, 0, 16, -31, 16, 13, 0, 0, -17, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, -31, 0, 0, 0, + 0, 0, -8, 0, 0, 4, -24, 0, 0, 0, -6, 7, -14, -14, 7, 0, -14, -14, 0, 0, -6, 4, 0, 0, 5, 0, -7, 0, -17, 0, 0, -6, -7, -6, 0, -9, 0, 0, 0, 0, -7, -6, 0, -5, -8, -9, -10, 4, -9, 0, -14, -6, -20, 0, 7, 0, 0, 0, 4, -6, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -17, -17, -11, 0, -17, -17, -10, -13, -15, -12, -15, -14, -11, -16, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -17, -8, -9, -10, -12, -11, 10, -12, 0, 0, -17, -17, -14, -19, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -19, 0, -11, 0, 0, -10, 0, 0, -6, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 0, 0, -4, -4, 0, 0, 0, 0, -4, -4, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, 0, 0, 0, 0, 0, 0, 0, 0, -4, -4, -4, -8, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -11, 0, -10, -8, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, 0, -6, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, + 0, -15, 0, -11, 0, 0, 0, -9, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -5, -7, -5, -8, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -13, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 4, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, -5, 0, 0, -6, 0, 0, 0, 0, -5, 0, 0, 0, 0, 4, 4, 6, 4, 0, -8, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 16, 4, -21, -14, -17, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 7, 6, 8, 0, 0, 16, -8, 4, 0, 0, 12, 0, 16, -7, 16, 12, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -21, 0, 0, 0, + 0, -15, 0, -10, -8, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, 0, -7, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -12, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -11, 4, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, -10, -10, -10, 0, -12, 0, 0, 0, 0, -12, -10, 0, 0, 0, 0, 0, 8, 0, 0, -8, 0, -14, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -12, 0, -10, -9, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -6, 0, -7, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -10, 0, 0, 0, 0, + 0, -13, 0, -11, -8, 0, 0, -9, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, -7, -6, -8, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -11, 0, 0, 0, 0, + 0, -13, 0, -11, -8, 0, 0, -9, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, -7, -6, -7, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -11, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 5, -22, -13, -18, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 8, 8, 6, 8, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, -21, 0, 0, 0, + 0, 0, 0, 0, 0, 4, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, -5, -6, -4, 0, -4, 0, 0, 0, 0, -6, -5, 0, 0, 0, 0, 0, 7, 0, 0, -8, 0, -11, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 4, -14, 0, -13, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, -6, -6, -6, 0, -5, 0, 0, 0, 0, -6, -6, 0, 0, 0, 7, 7, 6, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, -14, 0, 0, 0, + 0, 0, 0, 0, 4, -13, 0, -11, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 7, 7, 6, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, -12, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, -8, -8, -8, 0, -8, 0, 0, 0, 0, -8, -8, 0, 0, 0, 0, 0, 7, 0, 0, -8, 0, -12, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, -8, -8, -8, -5, -9, 0, 0, 0, 0, -8, -7, 0, -5, -5, 0, 0, 0, 0, 0, -11, -8, -13, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -10, -12, -5, 0, -12, -12, -8, 0, -9, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -7, 0, 0, 0, -5, 11, 0, 0, 0, -12, -12, 0, -4, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, -4, 0, 0, -6, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, -8, 0, 0, 0, -7, -10, -4, -10, -8, -12, -10, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, -8, -6, -7, -10, -8, -8, -9, -10, 0, 0, 0, -12, 0, -9, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -33, -4, -12, -8, 0, -19, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -31, 0, -5, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, -17, 0, 0, 0, -8, -34, 0, -18, -8, -20, -31, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -34, 0, -10, -14, -14, -22, -8, -13, -23, -15, 0, 0, 0, -20, -6, -16, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -31, 0, 0, -4, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, -15, -15, -25, 0, -15, -15, -12, -44, -18, -19, -16, -28, -26, -27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -6, -13, 0, -16, 0, -24, 0, -16, 0, -14, 0, -11, 0, 0, -22, 0, 0, 0, 0, -18, 0, -8, 0, -17, -17, -19, -6, 0, -17, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -6, -23, 0, 0, 0, + 0, -16, 0, -11, -13, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -10, 0, -11, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, -12, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -8, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -16, 0, -11, -8, 0, 0, -9, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, -7, -6, -7, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, -14, 0, 0, 0, 0, + 0, 7, 0, 24, 0, -4, -4, 0, -4, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 28, -4, 6, -4, -4, -4, 0, -4, 3, 3, 6, -4, -4, -4, -4, 4, -4, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 28, 38, 44, 0, 44, 44, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -17, 0, 0, -8, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, -14, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, -9, -8, -6, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, -25, 0, 0, 0, 0, 0, 0, 0, 0, -12, -6, -6, 0, 0, 0, -9, -5, 0, 0, 0, -5, 0, -5, -5, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -23, -5, -5, -5, -5, 0, -5, -5, -5, -5, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -6, -8, 0, -5, 4, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -9, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 6, 0, 0, 7, 0, 0, 0, 0, -11, -11, 0, 0, 0, 0, 0, -6, 0, 0, 0, -6, 0, 0, 0, 0, -7, 0, -6, -6, -10, -7, 4, -7, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -9, -4, 0, -10, 0, 0, 0, 0, -8, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, + -5, -15, 0, -7, -12, -5, 6, -6, -5, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -8, 0, 0, 0, 0, -7, -9, 0, -8, 0, 0, 0, 0, 0, 0, -7, -4, 0, 0, 0, 0, 0, -14, -6, 0, -6, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, -4, 0, 0, 0, -6, 0, -7, 0, 0, 0, 0, -4, 0, -12, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -11, 5, 0, -30, -20, -34, -34, 9, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, -34, -30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, -11, 0, -44, -26, 8, -26, -26, 0, 0, 0, -11, -11, 6, 0, 7, 0, -39, 0, -36, -37, -46, -46, -30, -32, -45, -42, -46, -37, -46, -25, -25, -32, -26, -30, -37, -25, -31, -44, 11, -46, -42, 0, 17, 0, 11, 0, -30, -9, -48, 0, -25, 0, 0, -37, -39, 0, -39, -53, 0, -26, -45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, 0, 0, 0, + 0, 0, -9, 0, 0, 9, -12, 0, 0, 6, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, -8, 0, 8, 7, 0, 9, 7, 0, 0, 0, -8, -8, 5, 0, 0, 0, 0, -6, 0, 0, 7, -6, 6, 0, 8, 0, -6, 0, -6, -13, -6, -6, 6, -19, 0, -13, 0, 0, 8, 0, 0, 0, 0, 0, 8, 0, 0, -12, -4, 7, -6, 0, 0, -20, 0, -5, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 0, 0, 0, + 0, -5, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, -6, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -6, -30, -8, -9, -14, 0, 0, 0, 0, -12, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -20, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -6, 0, -12, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15, -9, 0, 0, 0, 0, -14, 0, 0, -6, 0, 0, -8, -8, -8, -6, -15, -4, -5, 0, 0, -8, -5, -8, 0, 0, -4, 0, 0, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -7, 0, -13, 6, -19, 7, 0, 4, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, -14, 0, 10, 10, 0, 14, 11, 9, 6, 0, -14, -14, 10, 0, 8, 7, 0, -10, 0, 0, 11, -8, 11, 0, 10, 0, -8, 0, -8, -16, -19, -11, 11, -24, 0, -9, 8, 8, 8, -8, 6, 0, 0, 0, 8, -9, 0, -17, -8, 0, -19, 0, -15, -24, 0, -8, -6, 0, 7, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, + 0, 6, -13, 6, 0, -30, -4, -27, -8, 10, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, -17, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, -7, 0, -32, -25, 10, -25, -24, 6, 0, -2, -7, -7, 8, 0, 8, 0, -10, -7, -7, -8, -25, -15, 0, 0, -25, -12, -15, -8, -15, 0, 0, -16, 0, 0, -8, 0, 0, -12, 13, -15, -8, 0, 16, 0, 13, 0, 0, -8, -15, 0, 0, 0, 0, 0, -10, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 10, -30, 0, 0, 0, + 0, -31, -8, 0, -25, 10, 0, 7, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -4, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, -8, 6, 10, 10, 0, 13, 10, 9, 6, 0, -8, -8, 10, -20, 8, 6, 0, -6, 0, 0, 10, -5, 11, 0, 10, 0, -5, 0, -5, -15, -6, -5, 10, -11, 0, -10, 7, 8, 0, 0, 6, 0, 0, 0, 0, -10, 0, -9, 0, -32, -8, 0, -14, -7, 0, -6, 0, 0, 8, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -28, -27, 10, 0, 0, 0, + 0, -4, -4, -10, -4, -4, 0, -8, -4, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -8, 0, 0, 0, -4, -8, -7, 0, -6, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -5, 0, 10, -7, 7, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 10, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 10, 9, 0, 10, 8, 7, 6, 0, -7, -10, 7, -11, 7, 0, 0, 0, 0, 0, 8, 0, 8, 0, 9, 0, 0, 0, 0, 0, 12, 0, 8, -8, 0, 0, 0, 6, 0, 0, 0, 0, 0, 26, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 7, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -5, -5, -10, 0, 0, 0, -6, -4, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -6, 0, 0, 0, -5, -6, -6, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -6, -6, -8, -6, 0, 0, 0, 0, -5, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -6, -9, -5, -11, 0, -13, 6, -17, 0, -14, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, -9, -9, -14, -8, -8, -19, -12, 0, 0, 0, -10, 0, -12, 0, -5, 0, 0, 0, -10, 0, -4, -5, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -5, -5, -6, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, -5, -11, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, -12, 0, 0, 0, + -4, 0, -5, -10, 0, -36, 0, -25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -37, -29, 0, -20, -28, -11, -6, 0, 0, 0, -7, 0, 0, 0, -8, 0, 0, 0, -18, 0, 0, 0, -19, -5, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 4, 0, 6, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -46, 0, 0, 0, + 0, 0, -11, 5, 0, -30, -20, -34, -34, 9, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, -34, -30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, -11, 0, -26, -26, 8, -26, -26, 0, 0, 0, -11, -11, 6, 0, 7, 0, -18, 0, -30, -30, -28, -22, -28, -33, -27, -30, -22, -16, -22, -25, -9, -22, -7, -30, -30, -25, -31, -30, 11, -31, -31, 0, 17, 0, 11, 0, -27, -9, -31, 12, -9, 0, 0, -27, -32, 0, -32, -54, 0, -26, -45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, 0, 0, 0, + -6, -9, -5, -11, 0, -13, 0, -17, 0, -14, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, -22, -23, -15, -8, -22, -24, -18, 0, 0, 0, -10, 0, -16, 0, -7, 0, -6, -5, -16, 0, -4, -4, -17, -7, 0, -6, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, -6, 0, 0, -6, -6, -6, -6, 0, 0, 0, 0, 0, 0, -6, 0, 0, -7, 0, 0, -4, -23, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, -12, 0, 0, 0, + 0, 0, -10, 0, -10, 5, -11, 4, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, -19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, -10, 0, 0, 0, 0, 11, 0, 0, 0, 0, -10, -10, 7, 0, 0, 0, 0, -11, 0, 0, 8, -7, 8, 0, 8, 0, -7, 0, -7, -12, -3, -7, 8, -18, 0, -12, 0, 0, 7, -8, 0, 0, 0, 0, 7, -11, 0, 0, -9, 8, -4, 0, 0, -19, 0, 0, -7, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, -5, 0, 10, -7, 7, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 10, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 10, 9, 0, 10, 8, 7, 6, 0, -7, -10, 7, -11, 7, 0, 0, 0, 0, 0, 8, 0, 8, 0, 9, 0, 0, 0, 0, 0, 12, 0, 8, -8, 0, 0, 0, 6, 0, 0, 0, 0, 0, 28, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 7, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -6, -9, -5, -11, 0, -13, 6, -17, 0, -14, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, -9, -8, -14, -8, -8, -18, -12, 0, 0, 0, -10, 0, -11, 0, 0, 0, 0, 0, -9, 0, 0, -4, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -5, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -11, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, -12, 0, 0, 0, + 0, -11, 0, -10, -8, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, + -5, -9, -4, 0, -8, -8, 7, -8, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -6, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -14, 0, -9, -6, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -6, 0, -32, -22, -18, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -4, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, 0, 0, 0, -15, 0, 0, 0, 0, 9, 9, 0, 7, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 9, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -12, 0, 10, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 10, -4, 8, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -10, 0, -11, -7, -5, 6, -4, -5, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, -5, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, + 0, -4, -7, 0, 0, 0, -11, 4, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -10, 9, 0, 8, 0, -12, 0, -10, 0, 0, -12, 8, 0, 0, 0, 0, 6, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -15, 0, -10, -7, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -6, 0, 0, 0, -11, 4, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -10, 9, 0, 8, 0, -12, 0, -10, 0, 0, -12, 8, 0, 0, 0, 0, 6, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -13, 0, -11, -8, -8, 7, -9, -7, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -7, 0, 0, 0, 0, 0, 0, -6, 0, -7, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -7, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -11, 0, 0, 0, 0, + 0, -13, -4, -11, -8, -8, 7, -9, -7, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -6, 0, 0, 0, 0, 0, 0, -6, 0, -7, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -6, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -11, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 4, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -5, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, -5, 0, 0, 6, 4, -5, 6, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -5, 0, -20, -12, -18, 0, -20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, -4, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, -15, 0, 0, 0, 0, 9, 9, 0, 7, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 9, 0, 0, 9, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -6, 0, -9, 0, -12, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, -5, 0, 0, -11, 0, -5, 0, -5, 8, 7, -5, 5, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, -12, 0, 0, 0, + -8, -13, 0, -11, -8, -10, 7, -9, -9, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -9, -5, 0, 0, 0, 0, 0, -6, 0, -7, 0, 0, 0, -6, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, -4, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -11, 0, 0, 0, 0, + 0, 0, -6, 0, 0, 0, -6, 0, 0, -4, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, -4, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, -8, 9, 0, 8, 0, -8, 0, -8, 0, 0, -8, 7, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -12, 0, 10, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8, 0, 0, 0, 0, 0, 10, -4, 8, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -32, 0, -10, -21, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -19, -8, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -13, 0, -11, -8, -8, 7, -9, -6, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -6, 0, 0, 0, 0, 0, 0, -6, 0, -7, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -11, 0, 0, 0, 0, + 0, -13, 0, -11, -8, -8, 7, -9, -7, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -7, 0, 0, 0, 0, 0, 0, -6, 0, -7, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -11, 0, 0, 0, 0, + 0, -23, -8, 0, -10, 0, 0, 0, 0, -12, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -5, -8, 0, 0, 0, -6, 0, 0, -6, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -8, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, -4, 0, -4, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -9, 0, -10, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -23, -7, -9, -10, 0, 0, 0, 0, -12, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -30, 0, -10, -20, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, -8, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -7, 8, 0, 0, -27, -28, -19, 15, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, -36, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, -8, 0, 0, -20, 13, -27, -20, 8, 8, 0, -8, -12, 10, 7, 13, 0, -22, 0, -18, -20, -42, -35, -13, -16, -38, -25, -35, -20, -36, -8, -8, -31, -9, -14, -20, -8, -14, -30, 18, -35, -25, 0, 0, 0, 18, 0, -13, -8, -36, 0, -8, 0, 0, -20, -22, 0, -22, -16, 7, -9, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 9, -31, -8, -18, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 8, 0, -11, 0, 0, 0, 0, 13, 13, 0, 12, 7, 0, 13, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 13, 0, 0, 10, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -17, -4, 0, -7, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -38, 0, 0, -26, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, -20, 0, 0, 0, -6, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -7, -23, -5, 0, -8, -14, 7, 0, -6, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -25, 0, -8, -6, -7, -14, -6, 0, -16, -9, 0, 0, 0, -15, -5, -8, -7, 0, 0, 0, 0, 0, 0, -12, -8, -8, 0, 0, -4, 0, 0, 0, 0, -8, 0, -6, 0, -8, 0, -6, 0, 0, -6, -6, 10, -6, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, -8, -8, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -26, 0, 0, -12, -5, 0, 0, -5, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -14, 0, 0, -6, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -17, 7, 0, -26, -20, -33, -15, 10, -23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, -30, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, -16, 0, 0, 0, 0, -32, 0, 0, 0, -3, -16, 0, 8, 0, 0, 0, -16, -10, -14, -15, -30, -20, -7, -10, -30, -19, -20, -16, -20, 0, 0, -28, -6, -8, -15, 0, -8, -22, 13, -26, -17, 0, 0, 0, 13, 0, -5, 0, -26, 14, 0, 0, 0, -10, -17, 0, -16, -10, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, -31, 0, 0, 0, + 0, 0, 0, -5, 4, -14, 0, -13, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, -6, 0, 0, -14, 0, -6, 0, -6, 9, 7, 0, 6, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, -14, 0, 0, 0, + -4, -35, -6, -7, -11, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -23, -7, -9, -10, 0, 0, 0, 0, -12, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -7, -5, -13, 0, -8, 0, -8, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, -5, -5, 0, 0, 0, -5, 0, -4, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -6, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -6, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -18, 0, -12, -7, -5, 6, -4, -5, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -4, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -10, -5, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -17, 0, -12, -7, -6, 6, -4, -5, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -6, -9, -5, -11, 0, -13, 6, -17, 0, -14, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -11, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, -5, 0, 0, 0, -9, 0, 0, -4, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -5, -5, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -4, -12, 0, 0, 0, + 0, -13, 0, -11, -8, -8, 7, -9, -6, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -7, 0, 0, 0, 0, 0, 0, -6, 0, -7, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -7, 0, 0, -7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, -11, 0, 0, 0, 0, + 0, 0, -4, 0, -8, -4, 0, -6, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, -17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, -7, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 0, -13, -8, 0, -4, 0, 0, -13, 0, -5, 0, 0, 0, -4, -4, -4, 0, -10, -4, 0, 0, 0, -8, 0, -10, 0, 0, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -8, -8, 0, 0, 0, 0, 0, 0, -6, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -9, 0, -9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -2, -2, 0, 0, 0, 0, 0, -8, 0, -4, 0, -8, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, -13, 0, 0, -13, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, -8, -13, 0, -5, -6, 0, -9, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, -8, 0, 0, -8, 0, -20, -14, 0, -10, -5, -13, 0, -20, -14, 0, 0, -14, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, -4, 0, -3, 0, 0, -8, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, 0, 0, 0, -8, 0, -8, -2, 0, 0, 0, 0, 0, -4, -9, -8, -8, -5, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -26, 0, 0, -8, 0, -3, -3, 0, 0, -3, 0, -12, -3, -3, 0, 0, -9, 0, 0, -8, 0, -8, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, -5, 0, 0, -6, -6, 0, -10, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, -2, 0, 0, 0, 0, -8, 0, -12, -10, 0, 0, 0, -8, 0, -15, -6, 0, 0, 0, 8, -2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, -5, -8, -9, 0, 0, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6, -6, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2, 0, -12, 0, -2, 0, 0, -2, 0, -12, -5, 0, 0, -4, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3, -8, -3, 0, 0, -3, 0, -11, -2, 0, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5, -10, 0, -8, 0, 0, 0, 0, -8, 0, 0, 0, -10, 0, -13, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, 0, 0, 0, 0, 0, -8, 0, -6, -8, 0, 0, -3, -4, 0, -12, -4, 0, 0, -8, 0, -9, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -10, 0, 0, 0, 0, 0, -2, 0, 0, -10, 0, -3, 0, -4, 0, 0, -3, 0, 0, -3, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -18, 0, -20, 0, 0, -6, 0, -8, -2, 0, -14, -16, -16, 0, -10, 0, 0, 0, -8, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -30, -8, -8, -46, 0, -8, -8, 0, 0, 0, 8, 7, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -8, 0, 0, 0, 0, -30, 0, 0, 0, 0, -8, -8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, -10, -10, 11, 0, -11, -12, 6, -27, -8, -30, -14, 5, -31, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, -10, 0, 0, 0, 0, 10, 0, 0, 0, 0, -11, -11, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -16, -10, -12, }; static const EpdLigaturePair ubuntu_12_regularLigaturePairs[] = { @@ -3609,7 +4278,7 @@ static const EpdFontData ubuntu_12_regular = { ubuntu_12_regularBitmaps, ubuntu_12_regularGlyphs, ubuntu_12_regularIntervals, - 51, + 69, 29, 24, -5, @@ -3620,10 +4289,10 @@ static const EpdFontData ubuntu_12_regular = { ubuntu_12_regularKernLeftClasses, ubuntu_12_regularKernRightClasses, ubuntu_12_regularKernMatrix, - 436, - 494, - 151, - 158, + 440, + 513, + 152, + 161, ubuntu_12_regularLigaturePairs, 5, }; diff --git a/lib/EpdFont/scripts/convert-builtin-fonts.sh b/lib/EpdFont/scripts/convert-builtin-fonts.sh index a259603ab6..9cd62f1185 100755 --- a/lib/EpdFont/scripts/convert-builtin-fonts.sh +++ b/lib/EpdFont/scripts/convert-builtin-fonts.sh @@ -31,19 +31,48 @@ done UI_FONT_SIZES=(10 12) UI_FONT_STYLES=("Regular" "Bold") +# Arabic glyphs for UI text (menus, file browser titles). The built-in fonts +# must cover the *output* of MiniBidi's do_shape() — contextual presentation +# forms — not base letters, or shaped UI text silently drops glyphs. +# Curated for firmware-size budget: core Arabic (Presentation Forms-B, +# incl. the Lam-Alef ligature forms) plus the Farsi/Urdu extra letters' +# Presentation Forms-A blocks, the few characters shaping leaves at their +# base codepoint, Arabic punctuation, and both digit sets. No harakat and +# no Sindhi/Pashto/Kurdish forms — book text gets those from SD-card fonts. +ARABIC_INTERVALS=( + --additional-intervals 0x060C,0x060C # Arabic comma + --additional-intervals 0x061B,0x061B # Arabic semicolon + --additional-intervals 0x061F,0x061F # Arabic question mark + --additional-intervals 0x0621,0x0621 # hamza (non-joining, never shaped) + --additional-intervals 0x0640,0x0640 # tatweel + --additional-intervals 0x0660,0x0669 # Arabic-Indic digits + --additional-intervals 0x06BA,0x06BA # noon ghunna base (initial/medial keep base cp) + --additional-intervals 0x06D4,0x06D4 # Urdu full stop + --additional-intervals 0x06F0,0x06F9 # extended Arabic-Indic digits (Farsi/Urdu) + --additional-intervals 0xFB56,0xFB59 # peh (Farsi) + --additional-intervals 0xFB66,0xFB69 # tteh (Urdu) + --additional-intervals 0xFB7A,0xFB7D # tcheh (Farsi) + --additional-intervals 0xFB88,0xFB95 # ddal, jeh, rreh (Urdu), keheh, gaf (Farsi/Urdu) + --additional-intervals 0xFB9E,0xFB9F # noon ghunna isolated/final (Urdu) + --additional-intervals 0xFBA6,0xFBB1 # heh goal, heh doachashmee, yeh barree(+hamza) (Urdu) + --additional-intervals 0xFBFC,0xFBFF # farsi yeh (Farsi/Urdu) + --additional-intervals 0xFE80,0xFEFC # Presentation Forms-B: core Arabic + Lam-Alef +) + for size in ${UI_FONT_SIZES[@]}; do for style in ${UI_FONT_STYLES[@]}; do font_name="ubuntu_${size}_$(echo $style | tr '[:upper:]' '[:lower:]')" font_path="../builtinFonts/source/Ubuntu/Ubuntu-${style}.ttf" hebrew_path="../builtinFonts/source/NotoSansHebrew/NotoSansHebrew-${style}.ttf" + arabic_path="../builtinFonts/source/NotoSansArabic/NotoSansArabic-${style}.ttf" # Ubuntu lacks the Latin Extended Additional block (U+1EA0-U+1EF9) used for # Vietnamese tone marks. Append a Vietnamese-only Ubuntu cut so those glyphs # are filled from it while every glyph Ubuntu already has stays unchanged # (fontstack is ordered by descending priority). viet_path="../builtinFonts/source/Ubuntu/Ubuntu-Vietnamese-${style}.ttf" output_path="../builtinFonts/${font_name}.h" - python fontconvert.py $font_name $size $font_path $hebrew_path $viet_path \ - --additional-intervals 0x05D0,0x05EA > $output_path + python fontconvert.py $font_name $size $font_path $hebrew_path $arabic_path $viet_path \ + --additional-intervals 0x05D0,0x05EA "${ARABIC_INTERVALS[@]}" > $output_path echo "Generated $output_path" done done @@ -51,7 +80,8 @@ done python fontconvert.py notosans_8_regular 8 \ ../builtinFonts/source/NotoSans/NotoSans-Regular.ttf \ ../builtinFonts/source/NotoSansHebrew/NotoSansHebrew-Regular.ttf \ - --additional-intervals 0x05D0,0x05EA > ../builtinFonts/notosans_8_regular.h + ../builtinFonts/source/NotoSansArabic/NotoSansArabic-Regular.ttf \ + --additional-intervals 0x05D0,0x05EA "${ARABIC_INTERVALS[@]}" > ../builtinFonts/notosans_8_regular.h echo "" echo "Running compression verification..." diff --git a/lib/Epub/Epub.cpp b/lib/Epub/Epub.cpp index 5f5dcc8ac3..13b4885eba 100644 --- a/lib/Epub/Epub.cpp +++ b/lib/Epub/Epub.cpp @@ -153,18 +153,11 @@ bool Epub::parseTocNcxFile() const { LOG_DBG("EBP", "Parsing toc ncx file: %s", tocNcxItem.c_str()); - const auto tmpNcxPath = getCachePath() + "/toc.ncx"; - HalFile tempNcxFile; - if (!Storage.openFileForWrite("EBP", tmpNcxPath, tempNcxFile)) { + size_t ncxSize; + if (!getItemSize(tocNcxItem, &ncxSize)) { + LOG_ERR("EBP", "Could not get size of toc ncx file"); return false; } - readItemContentsToStream(tocNcxItem, tempNcxFile, 1024); - // Explicitly close() file before reopening for reading - tempNcxFile.close(); - if (!Storage.openFileForRead("EBP", tmpNcxPath, tempNcxFile)) { - return false; - } - const auto ncxSize = tempNcxFile.size(); TocNcxParser ncxParser(contentBasePath, ncxSize, bookMetadataCache.get()); @@ -173,29 +166,13 @@ bool Epub::parseTocNcxFile() const { return false; } - const auto ncxBuffer = static_cast(malloc(1024)); - if (!ncxBuffer) { - LOG_ERR("EBP", "Could not allocate memory for toc ncx parser"); + // Stream the decompressed NCX straight into the parser instead of round-tripping + // through a temp file on the SD card (decompress -> write -> reopen -> reread -> delete). + if (!readItemContentsToStream(tocNcxItem, ncxParser, 1024)) { + LOG_ERR("EBP", "Could not read toc ncx file"); return false; } - while (tempNcxFile.available()) { - const auto readSize = tempNcxFile.read(ncxBuffer, 1024); - if (readSize == 0) break; - const auto processedSize = ncxParser.write(ncxBuffer, readSize); - - if (processedSize != readSize) { - LOG_ERR("EBP", "Could not process all toc ncx data"); - free(ncxBuffer); - return false; - } - } - - free(ncxBuffer); - // Explicitly close() file before calling Storage.remove() - tempNcxFile.close(); - Storage.remove(tmpNcxPath.c_str()); - LOG_DBG("EBP", "Parsed TOC items"); return true; } @@ -209,18 +186,11 @@ bool Epub::parseTocNavFile() const { LOG_DBG("EBP", "Parsing toc nav file: %s", tocNavItem.c_str()); - const auto tmpNavPath = getCachePath() + "/toc.nav"; - HalFile tempNavFile; - if (!Storage.openFileForWrite("EBP", tmpNavPath, tempNavFile)) { + size_t navSize; + if (!getItemSize(tocNavItem, &navSize)) { + LOG_ERR("EBP", "Could not get size of toc nav file"); return false; } - readItemContentsToStream(tocNavItem, tempNavFile, 1024); - // Explicitly close() file before reopening for reading - tempNavFile.close(); - if (!Storage.openFileForRead("EBP", tmpNavPath, tempNavFile)) { - return false; - } - const auto navSize = tempNavFile.size(); // Note: We can't use `contentBasePath` here as the nav file may be in a different folder to the content.opf // and the HTMLX nav file will have hrefs relative to itself @@ -232,28 +202,13 @@ bool Epub::parseTocNavFile() const { return false; } - const auto navBuffer = static_cast(malloc(1024)); - if (!navBuffer) { - LOG_ERR("EBP", "Could not allocate memory for toc nav parser"); + // Stream the decompressed nav document straight into the parser instead of round-tripping + // through a temp file on the SD card (decompress -> write -> reopen -> reread -> delete). + if (!readItemContentsToStream(tocNavItem, navParser, 1024)) { + LOG_ERR("EBP", "Could not read toc nav file"); return false; } - while (tempNavFile.available()) { - const auto readSize = tempNavFile.read(navBuffer, 1024); - const auto processedSize = navParser.write(navBuffer, readSize); - - if (processedSize != readSize) { - LOG_ERR("EBP", "Could not process all toc nav data"); - free(navBuffer); - return false; - } - } - - free(navBuffer); - // Explicitly close() file before calling Storage.remove() - tempNavFile.close(); - Storage.remove(tmpNavPath.c_str()); - LOG_DBG("EBP", "Parsed TOC nav items"); return true; } @@ -396,6 +351,11 @@ bool Epub::load(const bool buildIfMissing, const bool skipLoadingCss) { Storage.removeDir((cachePath + "/sections").c_str()); } } + // Release the resolved CSS rule map: it is only needed transiently while building + // section caches, and createSectionFile reloads it from cache on demand. Holding it + // resident pins tens of KB for the whole reading session (more on warm resume into + // an already-cached chapter, where createSectionFile never runs to clear it). + cssParser->clear(); LOG_DBG("EBP", "Loaded ePub: %s", filepath.c_str()); return true; } diff --git a/lib/Epub/Epub/BookMetadataCache.cpp b/lib/Epub/Epub/BookMetadataCache.cpp index 76d75fa270..ee6bfbd444 100644 --- a/lib/Epub/Epub/BookMetadataCache.cpp +++ b/lib/Epub/Epub/BookMetadataCache.cpp @@ -1,5 +1,6 @@ #include "BookMetadataCache.h" +#include #include #include #include @@ -14,6 +15,52 @@ constexpr uint8_t BOOK_CACHE_VERSION = 8; // v8: TOC/book titles stored NFC-com constexpr char bookBinFile[] = "/book.bin"; constexpr char tmpSpineBinFile[] = "/spine.bin.tmp"; constexpr char tmpTocBinFile[] = "/toc.bin.tmp"; +// Buffer size for the buildBookBin streams. 3 buffers x 4KB, transient (freed on +// return); 4KB = 8 SD sectors per transfer, enough to stop the sector-cache thrash. +constexpr size_t BUILD_IO_BUFFER_SIZE = 4096; + +// Entry (de)serializers, templated so they run over HalFile and the Buffered* +// wrappers alike (two instantiations each -- a few hundred bytes of flash, in +// exchange for the build path streaming at SD speed instead of per-pod). +template +uint32_t writeSpineEntryTo(F& file, const BookMetadataCache::SpineEntry& entry) { + const uint32_t pos = file.position(); + serialization::writeString(file, entry.href); + serialization::writePod(file, entry.cumulativeSize); + serialization::writePod(file, entry.tocIndex); + return pos; +} + +template +uint32_t writeTocEntryTo(F& file, const BookMetadataCache::TocEntry& entry) { + const uint32_t pos = file.position(); + serialization::writeString(file, entry.title); + serialization::writeString(file, entry.href); + serialization::writeString(file, entry.anchor); + serialization::writePod(file, entry.level); + serialization::writePod(file, entry.spineIndex); + return pos; +} + +template +BookMetadataCache::SpineEntry readSpineEntryFrom(F& file) { + BookMetadataCache::SpineEntry entry; + serialization::readString(file, entry.href); + serialization::readPod(file, entry.cumulativeSize); + serialization::readPod(file, entry.tocIndex); + return entry; +} + +template +BookMetadataCache::TocEntry readTocEntryFrom(F& file) { + BookMetadataCache::TocEntry entry; + serialization::readString(file, entry.title); + serialization::readString(file, entry.href); + serialization::readString(file, entry.anchor); + serialization::readPod(file, entry.level); + serialization::readPod(file, entry.spineIndex); + return entry; +} } // namespace /* ============= WRITING / BUILDING FUNCTIONS ================ */ @@ -30,13 +77,23 @@ bool BookMetadataCache::beginContentOpfPass() { LOG_DBG("BMC", "Beginning content opf pass"); // Open spine file for writing - return Storage.openFileForWrite("BMC", cachePath + tmpSpineBinFile, spineFile); + if (!Storage.openFileForWrite("BMC", cachePath + tmpSpineBinFile, spineFile)) { + return false; + } + // Wrapper OOM is fine: createSpineEntry falls back to unbuffered writes. + passOut = makeUniqueNoThrow(spineFile, BUILD_IO_BUFFER_SIZE); + return true; } bool BookMetadataCache::endContentOpfPass() { + const bool flushed = !passOut || passOut->flush(); + passOut.reset(); // Explicit close() required: member variable persists beyond function scope spineFile.close(); - return true; + if (!flushed) { + LOG_ERR("BMC", "Failed writing spine tmp file"); + } + return flushed; } bool BookMetadataCache::beginTocPass() { @@ -74,10 +131,17 @@ bool BookMetadataCache::beginTocPass() { useSpineHrefIndex = false; } + // Wrapper OOM is fine: createTocEntry falls back to unbuffered writes. + passOut = makeUniqueNoThrow(tocFile, BUILD_IO_BUFFER_SIZE); return true; } bool BookMetadataCache::endTocPass() { + const bool flushed = !passOut || passOut->flush(); + passOut.reset(); + if (!flushed) { + LOG_ERR("BMC", "Failed writing toc tmp file"); + } // Explicit close() required: member variables persist beyond function scope tocFile.close(); spineFile.close(); @@ -86,7 +150,7 @@ bool BookMetadataCache::endTocPass() { spineHrefIndex.shrink_to_fit(); useSpineHrefIndex = false; - return true; + return flushed; } bool BookMetadataCache::endWrite() { @@ -119,6 +183,14 @@ bool BookMetadataCache::buildBookBin(const std::string& epubPath, const BookMeta return false; } + // Buffered streams for the whole build: every access below is sequential per + // file, but interleaved ACROSS files, which thrashes SdFat's single shared + // sector cache when unbuffered (one 512B SD transaction per 4-byte pod -- + // measured 31s for a 1,732-spine omnibus). Three 4KB buffers, freed on return. + serialization::BufferedFileWriter bookOut(bookFile, BUILD_IO_BUFFER_SIZE); + serialization::BufferedFileReader spineIn(spineFile, BUILD_IO_BUFFER_SIZE); + serialization::BufferedFileReader tocIn(tocFile, BUILD_IO_BUFFER_SIZE); + constexpr uint32_t headerASize = sizeof(BOOK_CACHE_VERSION) + /* LUT Offset */ sizeof(uint32_t) + sizeof(spineCount) + sizeof(tocCount); const uint32_t metadataSize = metadata.title.size() + metadata.author.size() + metadata.language.size() + @@ -128,31 +200,34 @@ bool BookMetadataCache::buildBookBin(const std::string& epubPath, const BookMeta const uint32_t lutOffset = headerASize + metadataSize; // Header A - serialization::writePod(bookFile, BOOK_CACHE_VERSION); - serialization::writePod(bookFile, lutOffset); - serialization::writePod(bookFile, spineCount); - serialization::writePod(bookFile, tocCount); + serialization::writePod(bookOut, BOOK_CACHE_VERSION); + serialization::writePod(bookOut, lutOffset); + serialization::writePod(bookOut, spineCount); + serialization::writePod(bookOut, tocCount); // Metadata - serialization::writeString(bookFile, metadata.title); - serialization::writeString(bookFile, metadata.author); - serialization::writeString(bookFile, metadata.language); - serialization::writeString(bookFile, metadata.coverItemHref); - serialization::writeString(bookFile, metadata.textReferenceHref); + serialization::writeString(bookOut, metadata.title); + serialization::writeString(bookOut, metadata.author); + serialization::writeString(bookOut, metadata.language); + serialization::writeString(bookOut, metadata.coverItemHref); + serialization::writeString(bookOut, metadata.textReferenceHref); // Loop through spine entries, writing LUT positions - spineFile.seek(0); + spineIn.seek(0); for (int i = 0; i < spineCount; i++) { - uint32_t pos = spineFile.position(); - auto spineEntry = readSpineEntry(spineFile); - serialization::writePod(bookFile, pos + lutOffset + lutSize); + const uint32_t pos = spineIn.position(); + readSpineEntryFrom(spineIn); + serialization::writePod(bookOut, pos + lutOffset + lutSize); } + // Total size of the spine tmp file: entries land in book.bin after the toc LUT + // and the full spine block, so toc LUT positions are offset by it. + const auto spineBytes = static_cast(spineIn.position()); // Loop through toc entries, writing LUT positions - tocFile.seek(0); + tocIn.seek(0); for (int i = 0; i < tocCount; i++) { - uint32_t pos = tocFile.position(); - auto tocEntry = readTocEntry(tocFile); - serialization::writePod(bookFile, pos + lutOffset + lutSize + static_cast(spineFile.position())); + const uint32_t pos = tocIn.position(); + readTocEntryFrom(tocIn); + serialization::writePod(bookOut, pos + lutOffset + lutSize + spineBytes); } // LUTs complete @@ -160,9 +235,9 @@ bool BookMetadataCache::buildBookBin(const std::string& epubPath, const BookMeta // Build spineIndex->tocIndex mapping in one pass (O(n) instead of O(n*m)) std::deque spineToTocIndex(spineCount, -1); - tocFile.seek(0); + tocIn.seek(0); for (int j = 0; j < tocCount; j++) { - auto tocEntry = readTocEntry(tocFile); + auto tocEntry = readTocEntryFrom(tocIn); if (tocEntry.spineIndex >= 0 && tocEntry.spineIndex < spineCount) { if (spineToTocIndex[tocEntry.spineIndex] == -1) { spineToTocIndex[tocEntry.spineIndex] = static_cast(j); @@ -197,9 +272,9 @@ bool BookMetadataCache::buildBookBin(const std::string& epubPath, const BookMeta std::deque targets; targets.resize(spineCount); - spineFile.seek(0); + spineIn.seek(0); for (int i = 0; i < spineCount; i++) { - auto entry = readSpineEntry(spineFile); + auto entry = readSpineEntryFrom(spineIn); std::string path = FsHelpers::normalisePath(entry.href); ZipFile::SizeTarget t; @@ -224,10 +299,10 @@ bool BookMetadataCache::buildBookBin(const std::string& epubPath, const BookMeta } uint32_t cumSize = 0; - spineFile.seek(0); + spineIn.seek(0); int lastSpineTocIndex = -1; for (int i = 0; i < spineCount; i++) { - auto spineEntry = readSpineEntry(spineFile); + auto spineEntry = readSpineEntryFrom(spineIn); spineEntry.tocIndex = spineToTocIndex[i]; @@ -260,23 +335,33 @@ bool BookMetadataCache::buildBookBin(const std::string& epubPath, const BookMeta spineEntry.cumulativeSize = cumSize; // Write out spine data to book.bin - writeSpineEntry(bookFile, spineEntry); + writeSpineEntryTo(bookOut, spineEntry); } // Close opened zip file zip.close(); // Loop through toc entries from toc file writing to book.bin - tocFile.seek(0); + tocIn.seek(0); for (int i = 0; i < tocCount; i++) { - auto tocEntry = readTocEntry(tocFile); - writeTocEntry(bookFile, tocEntry); + auto tocEntry = readTocEntryFrom(tocIn); + writeTocEntryTo(bookOut, tocEntry); } + const bool written = bookOut.flush(); + // Explicit close() required: member variables persist beyond function scope bookFile.close(); spineFile.close(); tocFile.close(); + if (!written) { + // A short write (card full/removed) would leave a truncated book.bin that + // still passes the version check on load; remove it so the next open rebuilds. + LOG_ERR("BMC", "Failed writing book.bin, removing truncated file"); + Storage.remove((cachePath + bookBinFile).c_str()); + return false; + } + LOG_DBG("BMC", "Successfully built book.bin"); return true; } @@ -294,21 +379,11 @@ bool BookMetadataCache::cleanupTmpFiles() const { } uint32_t BookMetadataCache::writeSpineEntry(HalFile& file, const SpineEntry& entry) const { - const uint32_t pos = file.position(); - serialization::writeString(file, entry.href); - serialization::writePod(file, entry.cumulativeSize); - serialization::writePod(file, entry.tocIndex); - return pos; + return writeSpineEntryTo(file, entry); } uint32_t BookMetadataCache::writeTocEntry(HalFile& file, const TocEntry& entry) const { - const uint32_t pos = file.position(); - serialization::writeString(file, entry.title); - serialization::writeString(file, entry.href); - serialization::writeString(file, entry.anchor); - serialization::writePod(file, entry.level); - serialization::writePod(file, entry.spineIndex); - return pos; + return writeTocEntryTo(file, entry); } // Note: for the LUT to be accurate, this **MUST** be called for all spine items before `addTocEntry` is ever called @@ -320,7 +395,11 @@ void BookMetadataCache::createSpineEntry(const std::string& href) { } const SpineEntry entry(href, 0, -1); - writeSpineEntry(spineFile, entry); + if (passOut) { + writeSpineEntryTo(*passOut, entry); + } else { + writeSpineEntry(spineFile, entry); + } spineCount++; } @@ -368,7 +447,11 @@ void BookMetadataCache::createTocEntry(const std::string& title, const std::stri // Compose the title to NFC at index time so the cache stores precomposed glyphs; // device fonts have no combining-mark positioning, so NFD titles render broken. const TocEntry entry(utf8ComposeNfc(title), href, anchor, level, spineIndex); - writeTocEntry(tocFile, entry); + if (passOut) { + writeTocEntryTo(*passOut, entry); + } else { + writeTocEntry(tocFile, entry); + } tocCount++; } @@ -442,19 +525,7 @@ BookMetadataCache::TocEntry BookMetadataCache::getTocEntry(const int index) { } BookMetadataCache::SpineEntry BookMetadataCache::readSpineEntry(HalFile& file) const { - SpineEntry entry; - serialization::readString(file, entry.href); - serialization::readPod(file, entry.cumulativeSize); - serialization::readPod(file, entry.tocIndex); - return entry; + return readSpineEntryFrom(file); } -BookMetadataCache::TocEntry BookMetadataCache::readTocEntry(HalFile& file) const { - TocEntry entry; - serialization::readString(file, entry.title); - serialization::readString(file, entry.href); - serialization::readString(file, entry.anchor); - serialization::readPod(file, entry.level); - serialization::readPod(file, entry.spineIndex); - return entry; -} +BookMetadataCache::TocEntry BookMetadataCache::readTocEntry(HalFile& file) const { return readTocEntryFrom(file); } diff --git a/lib/Epub/Epub/BookMetadataCache.h b/lib/Epub/Epub/BookMetadataCache.h index 2114c66414..3a479f8e0f 100644 --- a/lib/Epub/Epub/BookMetadataCache.h +++ b/lib/Epub/Epub/BookMetadataCache.h @@ -1,9 +1,11 @@ #pragma once +#include #include #include #include +#include #include class BookMetadataCache { @@ -54,6 +56,11 @@ class BookMetadataCache { // Temp file handles during build HalFile spineFile; HalFile tocFile; + // Buffers the per-entry tmp-file writes during the OPF/TOC passes: those + // writes interleave with zip-inflate SD reads, and unbuffered they thrash + // SdFat's shared sector cache (one 512B transaction per 4-byte pod). One + // wrapper serves whichever pass is active (spine, then toc). + std::unique_ptr passOut; // Index for fast href→spineIndex lookup (used only for large EPUBs) struct SpineHrefIndexEntry { diff --git a/lib/Epub/Epub/Page.cpp b/lib/Epub/Epub/Page.cpp index 5032056cd5..71e7485dcc 100644 --- a/lib/Epub/Epub/Page.cpp +++ b/lib/Epub/Epub/Page.cpp @@ -39,7 +39,17 @@ std::unique_ptr PageLine::deserialize(HalFile& file) { serialization::readPod(file, yPos); auto tb = TextBlock::deserialize(file); - return std::unique_ptr(new PageLine(std::move(tb), xPos, yPos)); + if (!tb) { + LOG_ERR("PGE", "Deserialization failed: null TextBlock"); + return nullptr; + } + + auto* line = new (std::nothrow) PageLine(std::move(tb), xPos, yPos); + if (!line) { + LOG_ERR("PGE", "Deserialization failed: could not allocate PageLine"); + return nullptr; + } + return std::unique_ptr(line); } void PageImage::render(GfxRenderer& renderer, const int fontId, const int xOffset, const int yOffset) { @@ -47,6 +57,10 @@ void PageImage::render(GfxRenderer& renderer, const int fontId, const int xOffse imageBlock->render(renderer, xPos + xOffset, yPos + yOffset); } +void PageImage::renderPlaceholder(GfxRenderer& renderer, const int xOffset, const int yOffset) const { + imageBlock->renderPlaceholder(renderer, xPos + xOffset, yPos + yOffset); +} + bool PageImage::serialize(HalFile& file) { serialization::writePod(file, xPos); serialization::writePod(file, yPos); @@ -115,6 +129,17 @@ void Page::renderImages(GfxRenderer& renderer, const int fontId, const int xOffs [](const PageElement& element) { return element.getTag() == TAG_PageImage; }); } +void Page::renderWithImagePlaceholders(GfxRenderer& renderer, const int fontId, const int xOffset, + const int yOffset) const { + for (const auto& element : elements) { + if (element->getTag() == TAG_PageImage) { + static_cast(*element).renderPlaceholder(renderer, xOffset, yOffset); + } else { + element->render(renderer, fontId, xOffset, yOffset); + } + } +} + bool Page::serialize(HalFile& file) const { const uint16_t count = elements.size(); serialization::writePod(file, count); @@ -155,9 +180,15 @@ std::unique_ptr Page::deserialize(HalFile& file) { if (tag == TAG_PageLine) { auto pl = PageLine::deserialize(file); + if (!pl) { + return nullptr; + } page->elements.push_back(std::move(pl)); } else if (tag == TAG_PageImage) { auto pi = PageImage::deserialize(file); + if (!pi) { + return nullptr; + } page->elements.push_back(std::move(pi)); } else if (tag == TAG_PageHorizontalRule) { auto rule = PageHorizontalRule::deserialize(file); diff --git a/lib/Epub/Epub/Page.h b/lib/Epub/Epub/Page.h index 0947469939..d265de1003 100644 --- a/lib/Epub/Epub/Page.h +++ b/lib/Epub/Epub/Page.h @@ -50,6 +50,7 @@ class PageImage final : public PageElement { PageImage(std::shared_ptr block, const int16_t xPos, const int16_t yPos) : PageElement(xPos, yPos), imageBlock(std::move(block)) {} void render(GfxRenderer& renderer, int fontId, int xOffset, int yOffset) override; + void renderPlaceholder(GfxRenderer& renderer, int xOffset, int yOffset) const; bool serialize(HalFile& file) override; PageElementTag getTag() const override { return TAG_PageImage; } static std::unique_ptr deserialize(HalFile& file); @@ -89,6 +90,7 @@ class Page { void render(GfxRenderer& renderer, int fontId, int xOffset, int yOffset) const; void renderImages(GfxRenderer& renderer, int fontId, int xOffset, int yOffset) const; + void renderWithImagePlaceholders(GfxRenderer& renderer, int fontId, int xOffset, int yOffset) const; bool serialize(HalFile& file) const; static std::unique_ptr deserialize(HalFile& file); @@ -98,6 +100,13 @@ class Page { [](const std::shared_ptr& el) { return el->getTag() == TAG_PageImage; }); } + bool hasImagesNeedingDecode() const { + return std::any_of(elements.begin(), elements.end(), [](const std::shared_ptr& element) { + return element->getTag() == TAG_PageImage && + static_cast(*element).getImageBlock().needsDecode(); + }); + } + // Get bounding box of all images on the page (union of image rects) // Returns false if no images. Coordinates are relative to page origin. bool getImageBoundingBox(int16_t& outX, int16_t& outY, int16_t& outW, int16_t& outH) const { diff --git a/lib/Epub/Epub/ParsedText.cpp b/lib/Epub/Epub/ParsedText.cpp index ebe758db4f..bf6ff8d76f 100644 --- a/lib/Epub/Epub/ParsedText.cpp +++ b/lib/Epub/Epub/ParsedText.cpp @@ -2,6 +2,7 @@ #include #include +#include #include #include @@ -286,7 +287,30 @@ void ParsedText::addWord(std::string word, const EpdFontFamily::Style fontStyle, effectiveNoSpaceBefore = true; } + const auto ensureTokenCapacity = [&](const size_t additionalTokens) { + if (additionalTokens == 0) return; + const size_t requiredSize = words.size() + additionalTokens; + if (words.capacity() >= requiredSize) return; + + size_t newCapacity = words.capacity(); + if (newCapacity < 16) { + newCapacity = 16; + } + while (newCapacity < requiredSize) { + newCapacity *= 2; + } + + words.reserve(newCapacity); + wordStyles.reserve(newCapacity); + wordContinues.reserve(newCapacity); + wordNoSpaceBefore.reserve(newCapacity); + wordIsFocusSuffix.reserve(newCapacity); + }; + if (auto breakOffsets = cjkCharacterBreakByteOffsets(word); !breakOffsets.empty()) { + // CJK-heavy paragraphs can push hundreds of tiny tokens quickly when CSS toggles + // inline styles. Reserve once up front to avoid repeated vector growth reallocations. + ensureTokenCapacity(breakOffsets.size() + 1); bool firstToken = true; size_t tokenStart = 0; for (const size_t breakOffset : breakOffsets) { @@ -325,29 +349,8 @@ void ParsedText::addWord(std::string word, const EpdFontFamily::Style fontStyle, // --- FOCUS READING LOGIC BELOW --- - // Pre-reserve capacity to prevent mid-word heap reallocations. - size_t maxPossibleNewTokens = word.length(); - size_t requiredSize = words.size() + maxPossibleNewTokens; - - if (words.capacity() < requiredSize) { - // Emulate standard geometric growth (doubling) to ensure we don't reallocate on every word. - size_t newCapacity = words.capacity() * 2; - - // Ensure the doubled capacity is actually enough for this specific word - if (newCapacity < requiredSize) { - newCapacity = requiredSize; - } - // Set a sensible minimum starting size so the first few words don't trigger tiny reallocations - if (newCapacity < 16) { - newCapacity = 16; - } - - words.reserve(newCapacity); - wordStyles.reserve(newCapacity); - wordContinues.reserve(newCapacity); - wordNoSpaceBefore.reserve(newCapacity); - wordIsFocusSuffix.reserve(newCapacity); - } + // Worst case: a segment boundary on each byte (highly punctuated UTF-8 text). + ensureTokenCapacity(word.length()); // Lambda helper to process and push individual sub-segments of the string // Use std::string_view to avoid heap allocations when slicing @@ -1133,8 +1136,14 @@ void ParsedText::extractLine(const size_t breakIndex, const int pageWidth, const } if (!lineHasFocusSplit) { - processLine(std::make_shared(std::move(lineWords), std::move(lineXPos), std::move(lineWordStyles), - std::vector{}, std::vector{}, blockStyle)); + // TextBlock flattens the vectors into its arena; they stay owned here and die at return. + auto block = std::make_shared(lineWords, lineXPos, lineWordStyles, std::vector{}, + std::vector{}, blockStyle); + if (!block->valid()) { + LOG_ERR("PTX", "Dropping line: TextBlock arena allocation failed"); + return; + } + processLine(std::move(block)); return; } @@ -1179,6 +1188,10 @@ void ParsedText::extractLine(const size_t breakIndex, const int pageWidth, const } } - processLine(std::make_shared(std::move(outWords), std::move(outXPos), std::move(outStyles), - std::move(outBoundaries), std::move(outSuffixX), blockStyle)); + auto block = std::make_shared(outWords, outXPos, outStyles, outBoundaries, outSuffixX, blockStyle); + if (!block->valid()) { + LOG_ERR("PTX", "Dropping line: TextBlock arena allocation failed"); + return; + } + processLine(std::move(block)); } diff --git a/lib/Epub/Epub/ReaderRenderSpec.h b/lib/Epub/Epub/ReaderRenderSpec.h new file mode 100644 index 0000000000..7d701498fc --- /dev/null +++ b/lib/Epub/Epub/ReaderRenderSpec.h @@ -0,0 +1,24 @@ +#pragma once +#include + +// The resolved text-rendering configuration a reader hands to the layout +// engine. Section-cache validation keys on every field: a section file built +// with a different spec is discarded and rebuilt. +// +// Build one via CrossPointSettings::readerRenderSpec(width, height), which +// fills every field: the settings-derived ones from the store, the viewport +// from the caller. Taking the viewport as arguments is what keeps a spec from +// existing in a half-filled state — the 0 defaults below are a last-resort +// backstop (a 0x0 viewport lays out nothing), not an invitation to omit it. +struct ReaderRenderSpec { + int fontId = 0; + float lineCompression = 1.0f; + bool extraParagraphSpacing = false; + uint8_t paragraphAlignment = 0; + uint16_t viewportWidth = 0; + uint16_t viewportHeight = 0; + bool hyphenationEnabled = false; + bool embeddedStyle = true; + uint8_t imageRendering = 0; + bool focusReadingEnabled = false; +}; diff --git a/lib/Epub/Epub/Section.cpp b/lib/Epub/Epub/Section.cpp index 12ef05ebd7..1554595874 100644 --- a/lib/Epub/Epub/Section.cpp +++ b/lib/Epub/Epub/Section.cpp @@ -2,6 +2,7 @@ #include #include +#include #include #include "Epub/css/CssParser.h" @@ -11,62 +12,95 @@ namespace { // v28: text decoration bits now include line-through in serialized wordStyles. -constexpr uint8_t SECTION_FILE_VERSION = 28; +// v29: TextBlock word data stored as one flat arena (offset table + NUL-terminated +// text blob) instead of length-prefixed strings and per-field arrays. +// v30: Arabic shaping changed both drawing and measurement (getTextAdvanceX now +// measures the shaped visual text); cached word positions from v29 no longer +// match what drawText renders. +constexpr uint8_t SECTION_FILE_VERSION = 31; +// Written into the version field while a build is in progress; patched to +// SECTION_FILE_VERSION only when the build is finalized. An abandoned / +// crash-interrupted .bin therefore carries version 0, which loadSectionFile rejects +// as unknown and clears -- so an incomplete file is never mistaken for a valid one. +constexpr uint8_t SECTION_FILE_INCOMPLETE_VERSION = 0; +// Written when a build is suspended partway (reader exited or device slept mid-build). +// The file carries valid pages 0..pageCount-1, all LUTs, and a trailer with the parse +// watermark (bytesConsumed, totalBytes) appended after the li LUT. loadSectionFile +// accepts it so a resume shows those pages instantly; the reader extends it by +// rebuilding in the background. Uses the same header layout as SECTION_FILE_VERSION, +// so finalized files are untouched by this feature; older firmware treats the sentinel +// as an unknown version and rebuilds, which is a safe downgrade. +// MUST change in lockstep with SECTION_FILE_VERSION: the sentinel IS the partial's +// format version, so a stale-format partial otherwise passes the header check and +// only fails (noisily, via the block-decode error path) when a page is loaded. +// Derived so the pairing can't be forgotten: 0xFE for v28, 0xFD for v29, ... +constexpr uint8_t SECTION_FILE_PARTIAL_VERSION = 0xFE - (SECTION_FILE_VERSION - 28); constexpr uint32_t HEADER_SIZE = sizeof(uint8_t) + sizeof(int) + sizeof(float) + sizeof(bool) + sizeof(uint8_t) + sizeof(uint16_t) + sizeof(uint16_t) + sizeof(uint16_t) + sizeof(bool) + sizeof(bool) + sizeof(uint8_t) + sizeof(bool) + sizeof(uint32_t) + sizeof(uint32_t) + sizeof(uint32_t) + sizeof(uint32_t); - -struct PageLutEntry { - uint32_t fileOffset; - uint16_t paragraphIndex; - uint16_t listItemIndex; -}; } // namespace +// Out-of-line so the unique_ptr in BuildContext can be +// constructed/destroyed where the parser's full definition is visible. +Section::Section(const std::shared_ptr& epub, const int spineIndex, GfxRenderer& renderer) + : epub(epub), + spineIndex(spineIndex), + renderer(renderer), + filePath(epub->getCachePath() + "/sections/" + std::to_string(spineIndex) + ".bin") {} + +// Suspend any in-progress build so every section.reset() / navigation / sleep path +// persists the pages already laid out as a partial .bin instead of discarding them +// (no-op once a build has completed or never started). +Section::~Section() { suspendBuild(); } + uint32_t Section::onPageComplete(std::unique_ptr page) { if (!file) { - LOG_ERR("SCT", "File not open for writing page %d", pageCount); + LOG_ERR("SCT", "File not open for writing page %d", builtPageCount_); return 0; } const uint32_t position = file.position(); if (!page->serialize(file)) { - LOG_ERR("SCT", "Failed to serialize page %d", pageCount); + LOG_ERR("SCT", "Failed to serialize page %d", builtPageCount_); return 0; } - LOG_DBG("SCT", "Page %d processed", pageCount); + LOG_DBG("SCT", "Page %d processed", builtPageCount_); - pageCount++; + builtPageCount_++; + // pageCount is the pages available to read: a rebuild over a partial only raises it + // once it has laid out more pages than the partial already covers. + if (builtPageCount_ > pageCount) { + pageCount = builtPageCount_; + } return position; } -void Section::writeSectionFileHeader(const int fontId, const float lineCompression, const bool extraParagraphSpacing, - const uint8_t paragraphAlignment, const uint16_t viewportWidth, - const uint16_t viewportHeight, const bool hyphenationEnabled, - const bool embeddedStyle, const uint8_t imageRendering, - const bool focusReadingEnabled) { +void Section::writeSectionFileHeader(const ReaderRenderSpec& spec) { if (!file) { LOG_DBG("SCT", "File not open for writing header"); return; } - static_assert(HEADER_SIZE == sizeof(SECTION_FILE_VERSION) + sizeof(fontId) + sizeof(lineCompression) + - sizeof(extraParagraphSpacing) + sizeof(paragraphAlignment) + sizeof(viewportWidth) + - sizeof(viewportHeight) + sizeof(pageCount) + sizeof(hyphenationEnabled) + - sizeof(embeddedStyle) + sizeof(imageRendering) + sizeof(focusReadingEnabled) + - sizeof(uint32_t) + sizeof(uint32_t) + sizeof(uint32_t) + sizeof(uint32_t), + static_assert(HEADER_SIZE == sizeof(SECTION_FILE_VERSION) + sizeof(spec.fontId) + sizeof(spec.lineCompression) + + sizeof(spec.extraParagraphSpacing) + sizeof(spec.paragraphAlignment) + + sizeof(spec.viewportWidth) + sizeof(spec.viewportHeight) + sizeof(pageCount) + + sizeof(spec.hyphenationEnabled) + sizeof(spec.embeddedStyle) + + sizeof(spec.imageRendering) + sizeof(spec.focusReadingEnabled) + sizeof(uint32_t) + + sizeof(uint32_t) + sizeof(uint32_t) + sizeof(uint32_t), "Header size mismatch"); - serialization::writePod(file, SECTION_FILE_VERSION); - serialization::writePod(file, fontId); - serialization::writePod(file, lineCompression); - serialization::writePod(file, extraParagraphSpacing); - serialization::writePod(file, paragraphAlignment); - serialization::writePod(file, viewportWidth); - serialization::writePod(file, viewportHeight); - serialization::writePod(file, hyphenationEnabled); - serialization::writePod(file, embeddedStyle); - serialization::writePod(file, imageRendering); - serialization::writePod(file, focusReadingEnabled); + // Written as the incomplete sentinel; finalizeBuild() patches it to + // SECTION_FILE_VERSION as the last step, committing the file. + serialization::writePod(file, SECTION_FILE_INCOMPLETE_VERSION); + serialization::writePod(file, spec.fontId); + serialization::writePod(file, spec.lineCompression); + serialization::writePod(file, spec.extraParagraphSpacing); + serialization::writePod(file, spec.paragraphAlignment); + serialization::writePod(file, spec.viewportWidth); + serialization::writePod(file, spec.viewportHeight); + serialization::writePod(file, spec.hyphenationEnabled); + serialization::writePod(file, spec.embeddedStyle); + serialization::writePod(file, spec.imageRendering); + serialization::writePod(file, spec.focusReadingEnabled); serialization::writePod(file, pageCount); // Placeholder for page count (will be initially 0, patched later) serialization::writePod(file, static_cast(0)); // Placeholder for LUT offset (patched later) serialization::writePod(file, static_cast(0)); // Placeholder for anchor map offset (patched later) @@ -74,25 +108,24 @@ void Section::writeSectionFileHeader(const int fontId, const float lineCompressi serialization::writePod(file, static_cast(0)); // Placeholder for li LUT offset (patched later) } -bool Section::loadSectionFile(const int fontId, const float lineCompression, const bool extraParagraphSpacing, - const uint8_t paragraphAlignment, const uint16_t viewportWidth, - const uint16_t viewportHeight, const bool hyphenationEnabled, const bool embeddedStyle, - const uint8_t imageRendering, const bool focusReadingEnabled) { +bool Section::loadSectionFile(const ReaderRenderSpec& spec) { if (!Storage.openFileForRead("SCT", filePath, file)) { return false; } // Match parameters + bool filePartial = false; { uint8_t version; serialization::readPod(file, version); - if (version != SECTION_FILE_VERSION) { + if (version != SECTION_FILE_VERSION && version != SECTION_FILE_PARTIAL_VERSION) { // Explicit close() required: member variable persists beyond function scope file.close(); LOG_ERR("SCT", "Deserialization failed: Unknown version %u", version); clearCache(); return false; } + filePartial = (version == SECTION_FILE_PARTIAL_VERSION); int fileFontId; uint16_t fileViewportWidth, fileViewportHeight; @@ -114,11 +147,11 @@ bool Section::loadSectionFile(const int fontId, const float lineCompression, con serialization::readPod(file, fileImageRendering); serialization::readPod(file, fileFocusReadingEnabled); - if (fontId != fileFontId || lineCompression != fileLineCompression || - extraParagraphSpacing != fileExtraParagraphSpacing || paragraphAlignment != fileParagraphAlignment || - viewportWidth != fileViewportWidth || viewportHeight != fileViewportHeight || - hyphenationEnabled != fileHyphenationEnabled || embeddedStyle != fileEmbeddedStyle || - imageRendering != fileImageRendering || focusReadingEnabled != fileFocusReadingEnabled) { + if (spec.fontId != fileFontId || spec.lineCompression != fileLineCompression || + spec.extraParagraphSpacing != fileExtraParagraphSpacing || spec.paragraphAlignment != fileParagraphAlignment || + spec.viewportWidth != fileViewportWidth || spec.viewportHeight != fileViewportHeight || + spec.hyphenationEnabled != fileHyphenationEnabled || spec.embeddedStyle != fileEmbeddedStyle || + spec.imageRendering != fileImageRendering || spec.focusReadingEnabled != fileFocusReadingEnabled) { file.close(); LOG_ERR("SCT", "Deserialization failed: Parameters do not match"); clearCache(); @@ -127,14 +160,42 @@ bool Section::loadSectionFile(const int fontId, const float lineCompression, con } serialization::readPod(file, pageCount); + + if (filePartial) { + // A partial's pageCount is the watermark of a suspended build. Read the watermark + // trailer (appended after the li LUT) so estimatedTotalPages can extrapolate. + uint32_t liLutOffset = 0; + file.seek(HEADER_SIZE - sizeof(uint32_t)); + serialization::readPod(file, liLutOffset); + const uint32_t trailerOffset = liLutOffset + static_cast(pageCount) * sizeof(uint16_t); + const bool trailerValid = + pageCount > 0 && liLutOffset >= HEADER_SIZE && trailerOffset + 2 * sizeof(uint32_t) <= file.size(); + if (!trailerValid) { + file.close(); + LOG_ERR("SCT", "Deserialization failed: malformed partial section"); + clearCache(); + pageCount = 0; + return false; + } + file.seek(trailerOffset); + serialization::readPod(file, partialBytesConsumed_); + serialization::readPod(file, partialTotalBytes_); + partial_ = true; + partialPageCount_ = pageCount; + } + // Explicit close() required: member variable persists beyond function scope file.close(); - LOG_DBG("SCT", "Deserialization succeeded: %d pages", pageCount); + LOG_DBG("SCT", "Deserialization succeeded: %d pages%s", pageCount, filePartial ? " (partial)" : ""); return true; } // Your updated class method (assuming you are using the 'SD' object, which is a wrapper for a specific filesystem) bool Section::clearCache() const { + const std::string tmpBin = binTmpPath(); + if (Storage.exists(tmpBin.c_str())) { + Storage.remove(tmpBin.c_str()); + } if (!Storage.exists(filePath.c_str())) { LOG_DBG("SCT", "Cache does not exist, no action needed"); return true; @@ -149,13 +210,40 @@ bool Section::clearCache() const { return true; } -bool Section::createSectionFile(const int fontId, const float lineCompression, const bool extraParagraphSpacing, - const uint8_t paragraphAlignment, const uint16_t viewportWidth, - const uint16_t viewportHeight, const bool hyphenationEnabled, const bool embeddedStyle, - const uint8_t imageRendering, const bool focusReadingEnabled, - const std::function& popupFn) { +bool Section::createSectionFile(const ReaderRenderSpec& spec, const std::function& popupFn) { + // One-shot build: start, then lay out the whole section in a single pass. + if (!startBuild(spec, popupFn)) { + return false; + } + if (!buildSomeMore(0)) { // 0 = build to completion + return false; + } + return buildComplete_; +} + +bool Section::startBuild(const ReaderRenderSpec& spec, const std::function& popupFn) { + if (build_) { + LOG_ERR("SCT", "startBuild called while a build is already active"); + return false; + } + buildComplete_ = false; + builtPageCount_ = 0; + // Pages from a loaded partial stay readable (from filePath) while this build writes + // to the tmp .bin, so availability never drops below the partial's watermark. + pageCount = partial_ ? partialPageCount_ : 0; + + // Remove a stale tmp .bin from a crash-interrupted build; this build recreates it. + { + const std::string staleTmp = binTmpPath(); + if (Storage.exists(staleTmp.c_str())) { + Storage.remove(staleTmp.c_str()); + } + } + const auto localPath = epub->getSpineItem(spineIndex).href; - const auto tmpHtmlPath = epub->getCachePath() + "/.tmp_" + std::to_string(spineIndex) + ".html"; + const auto htmlDir = epub->getCachePath() + "/html"; + const auto htmlPath = htmlDir + "/" + std::to_string(spineIndex) + ".html"; + const auto tmpHtmlPath = htmlDir + "/.tmp_" + std::to_string(spineIndex) + ".html"; // Create cache directory if it doesn't exist { @@ -163,62 +251,100 @@ bool Section::createSectionFile(const int fontId, const float lineCompression, c Storage.mkdir(sectionsDir.c_str()); } - // Retry logic for SD card timing issues - bool success = false; - uint32_t fileSize = 0; - for (int attempt = 0; attempt < 3 && !success; attempt++) { - if (attempt > 0) { - LOG_DBG("SCT", "Retrying stream (attempt %d)...", attempt + 1); - delay(50); // Brief delay before retry - } + // Reuse the previously unzipped HTML if we already have it. The unzipped HTML is keyed only on the + // book (it lives in the per-book cache dir), not on render settings, so it survives the invalidation + // that wipes the layout (.bin) caches when font/margin/orientation change -- rebuilds then skip zip + // inflation entirely. It's promoted by an atomic rename as soon as the inflate succeeds (below), so + // even a window-only giant spine -- whose .bin never finalizes -- still caches its HTML, letting a + // reopen skip the multi-second inflate. If htmlPath exists it is known-complete. + const bool reusedHtml = Storage.exists(htmlPath.c_str()); + bool htmlCached = reusedHtml; + if (reusedHtml) { + LOG_DBG("SCT", "Reusing cached HTML %s", htmlPath.c_str()); + } else { + Storage.mkdir(htmlDir.c_str()); + + // Retry logic for SD card timing issues + bool streamed = false; + uint32_t fileSize = 0; + for (int attempt = 0; attempt < 3 && !streamed; attempt++) { + if (attempt > 0) { + LOG_DBG("SCT", "Retrying stream (attempt %d)...", attempt + 1); + delay(50); // Brief delay before retry + } + + // Remove any incomplete file from previous attempt before retrying + if (Storage.exists(tmpHtmlPath.c_str())) { + Storage.remove(tmpHtmlPath.c_str()); + } - // Remove any incomplete file from previous attempt before retrying - if (Storage.exists(tmpHtmlPath.c_str())) { - Storage.remove(tmpHtmlPath.c_str()); + HalFile tmpHtml; + if (!Storage.openFileForWrite("SCT", tmpHtmlPath, tmpHtml)) { + continue; + } + // Larger chunks mean far fewer SD writes inflating the HTML; a 1KB chunk turned a 584KB + // single-spine novel into ~570 tiny writes (multi-second). 8KB keeps the transient buffers + // small while cutting the write count 8x. + streamed = epub->readItemContentsToStream(localPath, tmpHtml, 8192); + fileSize = tmpHtml.size(); + // Explicitly close() file before calling Storage.remove() + tmpHtml.close(); + + // If streaming failed, remove the incomplete file immediately + if (!streamed && Storage.exists(tmpHtmlPath.c_str())) { + Storage.remove(tmpHtmlPath.c_str()); + LOG_DBG("SCT", "Removed incomplete temp file after failed attempt"); + } } - HalFile tmpHtml; - if (!Storage.openFileForWrite("SCT", tmpHtmlPath, tmpHtml)) { - continue; + if (!streamed) { + LOG_ERR("SCT", "Failed to stream item contents to temp file after retries"); + return false; } - success = epub->readItemContentsToStream(localPath, tmpHtml, 1024); - fileSize = tmpHtml.size(); - // Explicitly close() file before calling Storage.remove() - tmpHtml.close(); - - // If streaming failed, remove the incomplete file immediately - if (!success && Storage.exists(tmpHtmlPath.c_str())) { - Storage.remove(tmpHtmlPath.c_str()); - LOG_DBG("SCT", "Removed incomplete temp file after failed attempt"); + + LOG_DBG("SCT", "Streamed temp HTML to %s (%d bytes)", tmpHtmlPath.c_str(), fileSize); + + // Promote to the persistent HTML cache immediately -- the inflate is complete and the bytes are + // valid regardless of whether the layout build finishes, so reopening (even a window-only spine + // that never finalizes its .bin) skips re-inflation. If the rename fails we just parse the temp. + if (Storage.rename(tmpHtmlPath.c_str(), htmlPath.c_str())) { + htmlCached = true; + } else { + LOG_DBG("SCT", "Failed to promote HTML cache; parsing from temp"); } } - if (!success) { - LOG_ERR("SCT", "Failed to stream item contents to temp file after retries"); + if (!Storage.openFileForWrite("SCT", binTmpPath(), file)) { + if (!reusedHtml) Storage.remove(tmpHtmlPath.c_str()); return false; } + // Header is written with the incomplete-version sentinel; finalizeBuild() commits it. + writeSectionFileHeader(spec); - LOG_DBG("SCT", "Streamed temp HTML to %s (%d bytes)", tmpHtmlPath.c_str(), fileSize); - - if (!Storage.openFileForWrite("SCT", filePath, file)) { + auto ctx = makeUniqueNoThrow(); + if (!ctx) { + LOG_ERR("SCT", "OOM: BuildContext"); + file.close(); + Storage.remove(binTmpPath().c_str()); + if (!reusedHtml) Storage.remove(tmpHtmlPath.c_str()); return false; } - writeSectionFileHeader(fontId, lineCompression, extraParagraphSpacing, paragraphAlignment, viewportWidth, - viewportHeight, hyphenationEnabled, embeddedStyle, imageRendering, focusReadingEnabled); - std::vector lut = {}; + // htmlCached == "htmlPath is the live cache" (reused, or just promoted). finalizeBuild/abandonBuild + // then leave the cached HTML alone; only an un-promoted temp (rename failed) is theirs to clean up. + ctx->reusedHtml = htmlCached; + ctx->htmlPath = htmlPath; + ctx->tmpHtmlPath = tmpHtmlPath; + ctx->parsePath = htmlCached ? htmlPath : tmpHtmlPath; // Derive the content base directory and image cache path prefix for the parser - size_t lastSlash = localPath.find_last_of('/'); - std::string contentBase = (lastSlash != std::string::npos) ? localPath.substr(0, lastSlash + 1) : ""; - std::string imageBasePath = epub->getCachePath() + "/img_" + std::to_string(spineIndex) + "_"; - - CssParser* cssParser = nullptr; - if (embeddedStyle) { - cssParser = epub->getCssParser(); - if (cssParser) { - if (!cssParser->loadFromCache()) { - LOG_ERR("SCT", "Failed to load CSS from cache"); - } + const size_t lastSlash = localPath.find_last_of('/'); + ctx->contentBase = (lastSlash != std::string::npos) ? localPath.substr(0, lastSlash + 1) : ""; + ctx->imageBasePath = epub->getCachePath() + "/img_" + std::to_string(spineIndex) + "_"; + + if (spec.embeddedStyle) { + ctx->cssParser = epub->getCssParser(); + if (ctx->cssParser && !ctx->cssParser->loadFromCache()) { + LOG_ERR("SCT", "Failed to load CSS from cache"); } } @@ -235,113 +361,377 @@ bool Section::createSectionFile(const int fontId, const float lineCompression, c } } - ChapterHtmlSlimParser visitor( - epub, tmpHtmlPath, renderer, fontId, lineCompression, extraParagraphSpacing, paragraphAlignment, viewportWidth, - viewportHeight, hyphenationEnabled, focusReadingEnabled, - [this, &lut](std::unique_ptr page, const uint16_t paragraphIndex, const uint16_t listItemIndex) { - lut.push_back({this->onPageComplete(std::move(page)), paragraphIndex, listItemIndex}); + // The parser stores the path/contentBase/imageBasePath by reference, so they must + // live in the BuildContext (which outlives the parser). The page-complete callback + // captures the BuildContext pointer to append to its in-RAM LUT; build_ owns the + // context for the parser's whole lifetime. + BuildContext* ctxPtr = ctx.get(); + ctx->parser = makeUniqueNoThrow( + epub, ctxPtr->parsePath, renderer, spec.fontId, spec.lineCompression, spec.extraParagraphSpacing, + spec.paragraphAlignment, spec.viewportWidth, spec.viewportHeight, spec.hyphenationEnabled, + spec.focusReadingEnabled, + [this, ctxPtr](std::unique_ptr page, const uint16_t paragraphIndex, const uint16_t listItemIndex) { + ctxPtr->lut.push_back({this->onPageComplete(std::move(page)), paragraphIndex, listItemIndex}); }, - embeddedStyle, contentBase, imageBasePath, imageRendering, std::move(tocAnchors), popupFn, cssParser); + spec.embeddedStyle, ctxPtr->contentBase, ctxPtr->imageBasePath, spec.imageRendering, std::move(tocAnchors), + popupFn, ctxPtr->cssParser); + if (!ctx->parser) { + LOG_ERR("SCT", "OOM: ChapterHtmlSlimParser"); + if (ctx->cssParser) ctx->cssParser->clear(); + file.close(); + Storage.remove(binTmpPath().c_str()); + if (!reusedHtml) Storage.remove(tmpHtmlPath.c_str()); + return false; + } + Hyphenator::setPreferredLanguage(epub->getLanguage()); - success = visitor.parseAndBuildPages(); + build_ = std::move(ctx); - Storage.remove(tmpHtmlPath.c_str()); - if (!success) { - LOG_ERR("SCT", "Failed to parse XML and build pages"); - // Explicitly close() file before calling Storage.remove() - file.close(); - Storage.remove(filePath.c_str()); - if (cssParser) { - cssParser->clear(); - } + if (!build_->parser->beginParse()) { + LOG_ERR("SCT", "Failed to begin parse"); + abandonBuild(); return false; } + build_->totalBytes = build_->parser->parseTotalBytes(); + return true; +} - const uint32_t lutOffset = file.position(); - bool hasFailedLutRecords = false; - // Write LUT - for (const auto& entry : lut) { - if (entry.fileOffset == 0) { - hasFailedLutRecords = true; - break; +bool Section::buildSomeMore(const int maxPages) { + if (!build_ || !build_->parser) { + LOG_ERR("SCT", "buildSomeMore with no active build"); + return false; + } + // Pace on pages laid out by THIS build, not pageCount: during a rebuild over a partial, + // pageCount stays pinned at the partial's watermark until the build passes it, which + // would otherwise turn one "small" chunk into a blocking rebuild of the whole watermark. + const int startCount = builtPageCount_; + for (;;) { + const auto status = build_->parser->parseStep(); + if (status == ChapterHtmlSlimParser::ParseStatus::Error) { + LOG_ERR("SCT", "Parse error during incremental build"); + abandonBuild(); + return false; } - serialization::writePod(file, entry.fileOffset); + if (status == ChapterHtmlSlimParser::ParseStatus::Done) { + return finalizeBuild(); + } + // ParseStatus::More: yield once we've laid out the requested number of pages. + if (maxPages > 0 && (builtPageCount_ - startCount) >= maxPages) { + build_->bytesConsumed = build_->parser->parseBytesConsumed(); + return true; + } + } +} + +bool Section::hasHtmlCache() const { + const std::string htmlPath = epub->getCachePath() + "/html/" + std::to_string(spineIndex) + ".html"; + return Storage.exists(htmlPath.c_str()); +} + +std::optional Section::findAnchorDuringBuild(const std::string& anchor) const { + if (!build_ || !build_->parser) return std::nullopt; + for (const auto& [key, page] : build_->parser->getAnchors()) { + if (key == anchor) return page; } + return std::nullopt; +} - if (hasFailedLutRecords) { - LOG_ERR("SCT", "Failed to write LUT due to invalid page positions"); - // Explicitly close() file before calling Storage.remove() +std::optional Section::findAnchor(const std::string& anchor) const { + if (const auto page = findAnchorDuringBuild(anchor)) { + return page; + } + // Fall back to the on-disk anchor map: a finalized section, or a partial whose map + // covers everything up to its watermark (nullopt past it -- build further and retry). + return getPageForAnchor(anchor); +} + +uint16_t Section::estimatedTotalPages() const { + // Extrapolation from a suspended session's watermark trailer. A static snapshot, so no EMA + // damping is needed. Also the best guess while a rebuild is running but hasn't laid out + // enough pages yet to extrapolate from its own progress. + const auto partialEstimate = [this]() -> uint16_t { + if (!partial_ || partialBytesConsumed_ == 0 || partialTotalBytes_ <= partialBytesConsumed_) { + return pageCount; + } + const uint64_t est = static_cast(partialPageCount_) * partialTotalBytes_ / partialBytesConsumed_; + if (est <= pageCount) return pageCount; + return est > 60000 ? 60000 : static_cast(est); + }; + + if (!build_) { + return partial_ ? partialEstimate() : pageCount; // partial -> extrapolate, finalized -> exact + } + const uint32_t consumed = build_->bytesConsumed; + const uint32_t total = build_->totalBytes; + if (builtPageCount_ == 0 || consumed == 0 || total <= consumed) return partialEstimate(); + + // Raw extrapolation: scale the pages built so far by the fraction of HTML still unparsed. This + // re-derives from a growing, non-uniform sample, so it jitters up and down as the build crosses + // dense vs sparse regions of the chapter. + const uint64_t raw = static_cast(builtPageCount_) * total / consumed; + + // Damp that jitter with an exponential moving average. Step it once per build advance (keyed on + // bytesConsumed) rather than per status-bar redraw, so the smoothing rate doesn't depend on how + // often we repaint. As the build nears the end, consumed -> total and raw -> the built count, so + // the average settles onto the true count (and finalizeBuild then returns the exact pageCount). + constexpr float ALPHA = 0.25f; // weight of each new sample; lower = steadier but slower to settle + if (build_->smoothedEstimate <= 0) { + build_->smoothedEstimate = static_cast(raw); // seed on the first estimate + } else if (consumed != build_->smoothedAtConsumed) { + build_->smoothedEstimate += ALPHA * (static_cast(raw) - build_->smoothedEstimate); + } + build_->smoothedAtConsumed = consumed; + + const uint64_t est = static_cast(build_->smoothedEstimate + 0.5f); + if (est <= pageCount) return pageCount; // never fewer than the pages already available + return est > 60000 ? 60000 : static_cast(est); +} + +// Write the LUTs and anchor map into the open tmp .bin, patch the header with the built +// page count and table offsets, stamp `version` as the commit point, then swap the tmp +// file over filePath. For SECTION_FILE_PARTIAL_VERSION a watermark trailer +// (bytesConsumed, totalBytes) is appended after the li LUT so a later open can estimate +// the total page count. The parser must still be alive (anchors are read from it). +// On failure the tmp is removed and any pre-existing file at filePath is left intact. +bool Section::commitBuildFile(const uint8_t version, const uint32_t bytesConsumed, const uint32_t totalBytes) { + const bool asPartial = (version == SECTION_FILE_PARTIAL_VERSION); + + const auto failCommit = [this]() { + // Explicit close() required before remove (member variable, O_RDWR handle). file.close(); - Storage.remove(filePath.c_str()); + Storage.remove(binTmpPath().c_str()); return false; + }; + + const uint32_t lutOffset = file.position(); + for (const auto& entry : build_->lut) { + if (entry.fileOffset == 0) { + LOG_ERR("SCT", "Failed to write LUT due to invalid page positions"); + return failCommit(); + } + serialization::writePod(file, entry.fileOffset); } - // Write anchor-to-page map for fragment navigation (e.g. footnote targets) + // Write anchor-to-page map for fragment navigation (e.g. footnote targets). For a + // partial, skip anchors that landed on the incomplete trailing page the suspend drops. const uint32_t anchorMapOffset = file.position(); - const auto& anchors = visitor.getAnchors(); - serialization::writePod(file, static_cast(anchors.size())); + const auto& anchors = build_->parser->getAnchors(); + uint16_t anchorCount = 0; + for (const auto& [anchor, page] : anchors) { + if (!asPartial || page < builtPageCount_) anchorCount++; + } + serialization::writePod(file, anchorCount); for (const auto& [anchor, page] : anchors) { + if (asPartial && page >= builtPageCount_) continue; serialization::writeString(file, anchor); serialization::writePod(file, page); } const uint32_t paragraphLutOffset = file.position(); - serialization::writePod(file, static_cast(lut.size())); - for (const auto& entry : lut) { + serialization::writePod(file, static_cast(build_->lut.size())); + for (const auto& entry : build_->lut) { serialization::writePod(file, entry.paragraphIndex); } const uint32_t liLutFileOffset = static_cast(file.position()); - for (const auto& entry : lut) { + for (const auto& entry : build_->lut) { serialization::writePod(file, entry.listItemIndex); } - // Patch header with final pageCount, lutOffset, anchorMapOffset, paragraphLutOffset, and liLutOffset - file.seek(HEADER_SIZE - sizeof(uint32_t) * 4 - sizeof(pageCount)); - serialization::writePod(file, pageCount); + if (asPartial) { + // Watermark trailer, located on load as liLutOffset + pageCount * sizeof(uint16_t). + serialization::writePod(file, bytesConsumed); + serialization::writePod(file, totalBytes); + } + + // Patch header with the built page count and section offsets... + file.seek(HEADER_SIZE - sizeof(uint32_t) * 4 - sizeof(builtPageCount_)); + serialization::writePod(file, builtPageCount_); serialization::writePod(file, lutOffset); serialization::writePod(file, anchorMapOffset); serialization::writePod(file, paragraphLutOffset); serialization::writePod(file, liLutFileOffset); + // ...then commit by overwriting the sentinel version with the real one. Writing the + // version last makes it the commit point: a crash before here leaves version 0. + file.seek(0); + serialization::writePod(file, version); // Explicit close() required: member variable persists beyond function scope file.close(); - if (cssParser) { - cssParser->clear(); + + // Swap into place. A crash between remove and rename loses the old file but keeps a + // fully-committed tmp; the next build just removes it and rebuilds. + if (Storage.exists(filePath.c_str())) { + Storage.remove(filePath.c_str()); + } + if (!Storage.rename(binTmpPath().c_str(), filePath.c_str())) { + LOG_ERR("SCT", "Failed to move built section into place"); + Storage.remove(binTmpPath().c_str()); + return false; } return true; } -std::unique_ptr Section::loadPageFromSectionFile() { - if (!Storage.openFileForRead("SCT", filePath, file)) { +bool Section::finalizeBuild() { + // Flush the trailing page (emits the last page via the completePageFn into the LUT). + build_->parser->finishParse(); + + if (!build_->reusedHtml) { + // Parse succeeded: promote the freshly unzipped HTML to the persistent cache so future + // rebuilds skip zip inflation. If promotion fails, drop the temp -- the build still succeeded. + if (!Storage.rename(build_->tmpHtmlPath.c_str(), build_->htmlPath.c_str())) { + LOG_DBG("SCT", "Failed to promote HTML cache, removing temp"); + Storage.remove(build_->tmpHtmlPath.c_str()); + } + } + + const bool committed = commitBuildFile(SECTION_FILE_VERSION, 0, 0); + if (build_->cssParser) build_->cssParser->clear(); + build_.reset(); + if (!committed) { + // commitBuildFile removed filePath before the failed swap, so nothing valid remains. + partial_ = false; + partialPageCount_ = 0; + pageCount = 0; + builtPageCount_ = 0; + return false; + } + buildComplete_ = true; + partial_ = false; + partialPageCount_ = 0; + pageCount = builtPageCount_; + return true; +} + +void Section::suspendBuild() { + if (!build_) return; + + // Only worth persisting if this build produced pages a pre-existing partial doesn't + // already cover; otherwise keep the older (bigger) partial and just drop the tmp. + const bool worthKeeping = builtPageCount_ > 0 && (!partial_ || builtPageCount_ > partialPageCount_); + + bool committed = false; + if (worthKeeping) { + // Capture the parse watermark and commit before tearing the parser down (the anchor + // map is read from it). The incomplete trailing page is intentionally not flushed: + // only fully laid-out pages are persisted, and the rebuild re-derives the rest. + const uint32_t consumed = static_cast(build_->parser->parseBytesConsumed()); + committed = commitBuildFile(SECTION_FILE_PARTIAL_VERSION, consumed, build_->totalBytes); + if (committed) { + partial_ = true; + partialPageCount_ = builtPageCount_; + partialBytesConsumed_ = consumed; + partialTotalBytes_ = build_->totalBytes; + LOG_INF("SCT", "Suspended build: %u pages persisted", builtPageCount_); + } + } + + if (build_->parser) build_->parser->abortParse(); + if (build_->cssParser) build_->cssParser->clear(); + if (!committed && file) { + // Explicit close() required before remove (member variable, O_RDWR handle). + file.close(); + Storage.remove(binTmpPath().c_str()); + } + if (!build_->reusedHtml && Storage.exists(build_->tmpHtmlPath.c_str())) { + Storage.remove(build_->tmpHtmlPath.c_str()); + } + build_.reset(); + buildComplete_ = false; + pageCount = partial_ ? partialPageCount_ : 0; + builtPageCount_ = 0; +} + +void Section::abandonBuild() { + if (!build_) return; + if (build_->parser) build_->parser->abortParse(); + if (build_->cssParser) build_->cssParser->clear(); + if (file) { + // Explicit close() required before remove (member variable, O_RDWR handle). + file.close(); + Storage.remove(binTmpPath().c_str()); + } + // A parse error would recur against the same HTML, so drop any partial too -- resuming + // from it would just re-enter the failing build every open. + if (Storage.exists(filePath.c_str())) { + Storage.remove(filePath.c_str()); + } + if (!build_->reusedHtml && Storage.exists(build_->tmpHtmlPath.c_str())) { + Storage.remove(build_->tmpHtmlPath.c_str()); + } + build_.reset(); + buildComplete_ = false; + partial_ = false; + partialPageCount_ = 0; + pageCount = 0; + builtPageCount_ = 0; +} + +std::unique_ptr Section::loadPageDuringBuild(const int page) { + if (!build_ || page < 0 || page >= static_cast(build_->lut.size()) || !file) { + return nullptr; + } + const uint32_t pos = build_->lut[page].fileOffset; + if (pos == 0) { return nullptr; } + // The .bin is open O_RDWR for the build. Read the already-written page, then restore + // the write cursor so the next onPageComplete keeps appending where it left off. + const uint32_t writePos = file.position(); + file.seek(pos); + auto p = Page::deserialize(file); + file.seek(writePos); + return p; +} - file.seek(HEADER_SIZE - sizeof(uint32_t) * 4); +// Read a page from the committed file at filePath (finalized section or partial from a +// previous session). Uses a local handle so it is safe while a build holds the member +// `file` open on the tmp .bin. +std::unique_ptr Section::loadPageAt(const int page) const { + HalFile f; + if (!Storage.openFileForRead("SCT", filePath, f)) { + return nullptr; + } + + f.seek(HEADER_SIZE - sizeof(uint32_t) * 4); uint32_t lutOffset; - serialization::readPod(file, lutOffset); - file.seek(lutOffset + sizeof(uint32_t) * currentPage); + serialization::readPod(f, lutOffset); + f.seek(lutOffset + sizeof(uint32_t) * page); uint32_t pagePos; - serialization::readPod(file, pagePos); - file.seek(pagePos); + serialization::readPod(f, pagePos); + f.seek(pagePos); - auto page = Page::deserialize(file); - // Explicit close() required: member variable persists beyond function scope - file.close(); - return page; + return Page::deserialize(f); + // No f.close() needed -- DESTRUCTOR_CLOSES_FILE=1 handles it at scope exit +} + +std::unique_ptr Section::loadPage(const int page) { + if (page < 0) { + return nullptr; + } + if (build_ && page < static_cast(build_->lut.size())) { + return loadPageDuringBuild(page); + } + // Not (yet) in the active build: serve from the file on disk -- a finalized section, + // or a partial from a previous session whose pages the rebuild hasn't reached again. + const int onDisk = partial_ ? partialPageCount_ : (build_ ? 0 : pageCount); + if (page >= onDisk) { + return nullptr; + } + return loadPageAt(page); } std::string Section::getTextFromSectionFile() { std::string fullText; - auto p = this->loadPageFromSectionFile(); + auto p = loadPage(currentPage); if (p) { for (const auto& el : p->elements) { if (el->getTag() == TAG_PageLine) { const auto& line = static_cast(*el); if (line.getBlock()) { - const auto& words = line.getBlock()->getWords(); - for (const auto& w : words) { + const auto& block = *line.getBlock(); + for (uint16_t i = 0; i < block.wordCount(); i++) { if (!fullText.empty()) fullText += " "; - fullText += w; + fullText += block.wordText(i); } } } @@ -361,6 +751,15 @@ std::optional Section::getCachedPageCount() const { return std::nullopt; } + // Only a finalized section's count is the chapter total; a partial's count is just the + // suspended build's watermark, which would skew progress mapping. Callers fall back to + // their own estimates. + uint8_t version; + serialization::readPod(f, version); + if (version != SECTION_FILE_VERSION) { + return std::nullopt; + } + f.seek(HEADER_SIZE - sizeof(uint32_t) * 4 - sizeof(uint16_t)); uint16_t count; serialization::readPod(f, count); diff --git a/lib/Epub/Epub/Section.h b/lib/Epub/Epub/Section.h index ef216608e9..80056f305f 100644 --- a/lib/Epub/Epub/Section.h +++ b/lib/Epub/Epub/Section.h @@ -3,11 +3,15 @@ #include #include #include +#include #include "Epub.h" +#include "ReaderRenderSpec.h" class Page; class GfxRenderer; +class ChapterHtmlSlimParser; +class CssParser; class Section { std::shared_ptr epub; @@ -16,35 +20,121 @@ class Section { std::string filePath; HalFile file; - void writeSectionFileHeader(int fontId, float lineCompression, bool extraParagraphSpacing, uint8_t paragraphAlignment, - uint16_t viewportWidth, uint16_t viewportHeight, bool hyphenationEnabled, - bool embeddedStyle, uint8_t imageRendering, bool focusReadingEnabled); + void writeSectionFileHeader(const ReaderRenderSpec& spec); uint32_t onPageComplete(std::unique_ptr page); + // Page-offset table entry, kept in RAM while an incremental build is running so + // already-built pages can be located in the partially-written .bin. + struct PageLutEntry { + uint32_t fileOffset; + uint16_t paragraphIndex; + uint16_t listItemIndex; + }; + // Held only while an incremental build is in progress (see startBuild). Carries the + // live parser plus the strings it references (the parser stores them by reference) + // and the in-RAM page-offset table. + struct BuildContext { + std::unique_ptr parser; + std::vector lut; + std::string parsePath; + std::string contentBase; + std::string imageBasePath; + std::string htmlPath; + std::string tmpHtmlPath; + bool reusedHtml = false; + CssParser* cssParser = nullptr; + // HTML byte progress, for estimating the section's total page count while it's still building. + uint32_t bytesConsumed = 0; + uint32_t totalBytes = 0; + // Exponentially-smoothed page-count estimate (0 = not yet seeded) and the bytesConsumed at its + // last update. The raw byte-ratio estimate jitters as the build crosses dense/sparse regions; + // the EMA is stepped once per build advance (not per redraw) to damp that wobble. + float smoothedEstimate = 0; + uint32_t smoothedAtConsumed = 0; + }; + std::unique_ptr build_; + bool buildComplete_ = false; + // Pages laid out by the active build (== build_->lut.size()). Distinct from pageCount, + // which is the pages *available to read* and also counts a loaded partial file's pages. + uint16_t builtPageCount_ = 0; + // A partial section file (suspended build from a previous session) is loaded at filePath. + // Its pages 0..partialPageCount_-1 are readable while a rebuild extends past them. + bool partial_ = false; + uint16_t partialPageCount_ = 0; + // Parse watermark from the partial's trailer, for estimating the total page count. + uint32_t partialBytesConsumed_ = 0; + uint32_t partialTotalBytes_ = 0; + bool finalizeBuild(); + // Write the LUTs/anchor map (and, for a partial, the watermark trailer), patch the + // header, stamp the version byte, and swap the tmp .bin over filePath. + bool commitBuildFile(uint8_t version, uint32_t bytesConsumed, uint32_t totalBytes); + // Builds write here and are swapped over filePath only on commit, so a prior + // partial/finalized file stays readable while a rebuild is in progress. + std::string binTmpPath() const { return filePath + ".part"; } + std::unique_ptr loadPageAt(int page) const; + // Read a page already laid out by the in-progress build (page < build LUT size), from + // the partially-written tmp .bin without disturbing the build's write cursor. + std::unique_ptr loadPageDuringBuild(int page); + public: uint16_t pageCount = 0; int currentPage = 0; - explicit Section(const std::shared_ptr& epub, const int spineIndex, GfxRenderer& renderer) - : epub(epub), - spineIndex(spineIndex), - renderer(renderer), - filePath(epub->getCachePath() + "/sections/" + std::to_string(spineIndex) + ".bin") {} - ~Section() = default; - bool loadSectionFile(int fontId, float lineCompression, bool extraParagraphSpacing, uint8_t paragraphAlignment, - uint16_t viewportWidth, uint16_t viewportHeight, bool hyphenationEnabled, bool embeddedStyle, - uint8_t imageRendering, bool focusReadingEnabled); + // Constructor and destructor are out-of-line: BuildContext holds a unique_ptr to the + // forward-declared ChapterHtmlSlimParser, whose full definition is only visible in the .cpp. + explicit Section(const std::shared_ptr& epub, int spineIndex, GfxRenderer& renderer); + ~Section(); + bool loadSectionFile(const ReaderRenderSpec& spec); bool clearCache() const; - bool createSectionFile(int fontId, float lineCompression, bool extraParagraphSpacing, uint8_t paragraphAlignment, - uint16_t viewportWidth, uint16_t viewportHeight, bool hyphenationEnabled, bool embeddedStyle, - uint8_t imageRendering, bool focusReadingEnabled, - const std::function& popupFn = nullptr); - std::unique_ptr loadPageFromSectionFile(); + bool createSectionFile(const ReaderRenderSpec& spec, const std::function& popupFn = nullptr); + + // Incremental build: lay out the section a few pages at a time so a large chapter + // can show its first page immediately and keep the UI responsive while the rest + // builds. createSectionFile() above is the one-shot wrapper over these. + // if (!startBuild(...)) fail; + // each tick: buildSomeMore(N); render up to pageCount; when isBuildComplete() stop. + bool startBuild(const ReaderRenderSpec& spec, const std::function& popupFn = nullptr); + // Lay out up to maxPages more pages (maxPages <= 0 = build to completion). Returns + // false on error (the build is abandoned). Sets isBuildComplete() when finished. + bool buildSomeMore(int maxPages); + bool isBuilding() const { return static_cast(build_); } + bool isBuildComplete() const { return buildComplete_; } + // Best-known total page count: the exact pageCount once finalized, or a smoothed byte-based + // estimate (pages so far scaled by totalBytes/bytesConsumed, damped by an EMA) while a giant spine + // is still building, so "page X of Y" / progress don't read off the small build watermark. + uint16_t estimatedTotalPages() const; + void abandonBuild(); + // Persist an in-progress build as a partial section file (version sentinel + LUTs + + // watermark trailer) instead of discarding it, so the next open of this spine can show + // its pages instantly and only rebuild in the background. Called by the destructor, so + // any teardown path (exit, sleep, navigation) keeps the work already done. Keeps a + // pre-existing partial when it covers more pages than this build reached. + void suspendBuild(); + // True when a partial file was loaded: pageCount is a watermark, not the chapter total. + bool isPartial() const { return partial_; } + + // Unified page read: from the active build if it has reached the page, otherwise from + // the on-disk file (finalized section, or a partial the rebuild hasn't caught up to). + std::unique_ptr loadPage(int page); + std::string getTextFromSectionFile(); + // Resolve an anchor from the in-progress build first, then the on-disk anchor map + // (covers finalized sections and partials from a previous session). + std::optional findAnchor(const std::string& anchor) const; + + // True if this spine's unzipped HTML is already cached, so a build won't pay the (multi-second on a + // giant spine) zip inflation. Lets the reader skip the indexing popup on a fast reopen/rebuild. + bool hasHtmlCache() const; + // Look up the page number for an anchor id from the section cache file. std::optional getPageForAnchor(const std::string& anchor) const; + // Look up an anchor among the pages built so far by the in-progress build, so an anchor jump + // (TOC / chapter select, usually the chapter top = page 0) can resolve without laying out the + // whole chapter. Returns nullopt if the anchor hasn't been reached yet (build more) or no build. + std::optional findAnchorDuringBuild(const std::string& anchor) const; + // Get the page count from the section cache file without fully loading it. std::optional getCachedPageCount() const; diff --git a/lib/Epub/Epub/blocks/BlockStyle.h b/lib/Epub/Epub/blocks/BlockStyle.h index fbc18d4248..08bcfd627c 100644 --- a/lib/Epub/Epub/blocks/BlockStyle.h +++ b/lib/Epub/Epub/blocks/BlockStyle.h @@ -32,6 +32,11 @@ struct BlockStyle { bool isRtl = false; // true if resolved direction is RTL bool directionDefined = false; // true if direction was explicitly set in CSS/HTML + // Set when this block was created by a
element. Used by startNewTextBlock to inject + // a full line-height gap when the
block stays empty (section-break use case). + // NOT propagated through getCombinedBlockStyle so it can't leak into sibling blocks. + bool fromBrElement = false; + // Combined insets (margin + padding) [[nodiscard]] int16_t leftInset() const { return marginLeft + paddingLeft; } [[nodiscard]] int16_t rightInset() const { return marginRight + paddingRight; } @@ -92,6 +97,9 @@ struct BlockStyle { result.directionDefined = true; } + // fromBrElement is consumed by startNewTextBlock when an empty
block + // is merged with the following paragraph; never propagate it further. + result.fromBrElement = false; return result; } diff --git a/lib/Epub/Epub/blocks/ImageBlock.cpp b/lib/Epub/Epub/blocks/ImageBlock.cpp index 709d70e4d9..aa99951b13 100644 --- a/lib/Epub/Epub/blocks/ImageBlock.cpp +++ b/lib/Epub/Epub/blocks/ImageBlock.cpp @@ -5,6 +5,8 @@ #include #include +#include + #include "Epub/converters/DirectPixelWriter.h" #include "Epub/converters/ImageDecoderFactory.h" @@ -29,6 +31,54 @@ std::string getCachePath(const std::string& imagePath) { return imagePath + ".pxc"; } +bool readValidCacheHeader(HalFile& cacheFile, const int expectedWidth, const int expectedHeight, uint16_t& cachedWidth, + uint16_t& cachedHeight) { + if (cacheFile.read(&cachedWidth, 2) != 2 || cacheFile.read(&cachedHeight, 2) != 2) { + return false; + } + + const int widthDiff = abs(cachedWidth - expectedWidth); + const int heightDiff = abs(cachedHeight - expectedHeight); + if (widthDiff > 1 || heightDiff > 1) { + return false; + } + + const size_t bytesPerRow = (cachedWidth + 3) / 4; + const size_t expectedSize = 4 + bytesPerRow * cachedHeight; + return cacheFile.size() >= expectedSize; +} + +// Pages are deserialized afresh on each visit. Keep a bounded, allocation-free +// record so an image that failed renders its placeholder directly for the rest +// of the reader session instead of paying another placeholder refresh and +// decode. The reader clears this on entry so transient memory/storage failures +// are retried. +constexpr size_t MAX_SESSION_IMAGE_FAILURES = 16; +uint64_t failedImageHashes[MAX_SESSION_IMAGE_FAILURES]; +size_t failedImageCount = 0; + +uint64_t imagePathHash(const std::string& path) { + uint64_t hash = 14695981039346656037ull; + for (const char c : path) { + hash ^= static_cast(c); + hash *= 1099511628211ull; + } + return hash; +} + +bool imageFailedThisSession(const std::string& path) { + const uint64_t hash = imagePathHash(path); + for (size_t i = 0; i < failedImageCount; i++) { + if (failedImageHashes[i] == hash) return true; + } + return false; +} + +void rememberImageFailure(const std::string& path) { + if (failedImageCount == MAX_SESSION_IMAGE_FAILURES || imageFailedThisSession(path)) return; + failedImageHashes[failedImageCount++] = imagePathHash(path); +} + bool renderFromCache(GfxRenderer& renderer, const std::string& cachePath, int x, int y, int expectedWidth, int expectedHeight) { HalFile cacheFile; @@ -37,16 +87,8 @@ bool renderFromCache(GfxRenderer& renderer, const std::string& cachePath, int x, } uint16_t cachedWidth, cachedHeight; - if (cacheFile.read(&cachedWidth, 2) != 2 || cacheFile.read(&cachedHeight, 2) != 2) { - return false; - } - - // Verify dimensions are close (allow 1 pixel tolerance for rounding differences) - int widthDiff = abs(cachedWidth - expectedWidth); - int heightDiff = abs(cachedHeight - expectedHeight); - if (widthDiff > 1 || heightDiff > 1) { - LOG_ERR("IMG", "Cache dimension mismatch: %dx%d vs %dx%d", cachedWidth, cachedHeight, expectedWidth, - expectedHeight); + if (!readValidCacheHeader(cacheFile, expectedWidth, expectedHeight, cachedWidth, cachedHeight)) { + LOG_ERR("IMG", "Invalid image cache: %s", cachePath.c_str()); return false; } @@ -119,6 +161,28 @@ bool renderFromCache(GfxRenderer& renderer, const std::string& cachePath, int x, } // namespace +bool ImageBlock::hasValidCache() const { + const auto cachePath = getCachePath(imagePath); + HalFile cacheFile; + if (!Storage.openFileForRead("IMG", cachePath, cacheFile)) { + return false; + } + + uint16_t cachedWidth, cachedHeight; + return readValidCacheHeader(cacheFile, width, height, cachedWidth, cachedHeight); +} + +bool ImageBlock::needsDecode() const { return !imageFailedThisSession(imagePath) && !hasValidCache(); } + +void ImageBlock::clearSessionRenderFailures() { failedImageCount = 0; } + +void ImageBlock::renderPlaceholder(GfxRenderer& renderer, const int x, const int y) const { + renderer.fillRect(x, y, width, height, true); + if (width > 2 && height > 2) { + renderer.fillRect(x + 1, y + 1, width - 2, height - 2, false); + } +} + void ImageBlock::render(GfxRenderer& renderer, const int x, const int y) { // The font-prewarm scan pass only accumulates glyphs; an image contributes // none, and its DirectPixelWriter output bypasses the renderer's scan-mode @@ -150,6 +214,11 @@ void ImageBlock::render(GfxRenderer& renderer, const int x, const int y) { return; } + if (imageFailedThisSession(imagePath)) { + renderPlaceholder(renderer, x, y); + return; + } + // Try to render from cache first std::string cachePath = getCachePath(imagePath); if (renderFromCache(renderer, cachePath, x, y, width, height)) { @@ -161,6 +230,8 @@ void ImageBlock::render(GfxRenderer& renderer, const int x, const int y) { HalFile file; if (!Storage.openFileForRead("IMG", imagePath, file)) { LOG_ERR("IMG", "Image file not found: %s", imagePath.c_str()); + rememberImageFailure(imagePath); + renderPlaceholder(renderer, x, y); return; } size_t fileSize = file.size(); @@ -168,6 +239,8 @@ void ImageBlock::render(GfxRenderer& renderer, const int x, const int y) { if (fileSize == 0) { LOG_ERR("IMG", "Image file is empty: %s", imagePath.c_str()); + rememberImageFailure(imagePath); + renderPlaceholder(renderer, x, y); return; } @@ -187,6 +260,8 @@ void ImageBlock::render(GfxRenderer& renderer, const int x, const int y) { ImageToFramebufferDecoder* decoder = ImageDecoderFactory::getDecoder(imagePath); if (!decoder) { LOG_ERR("IMG", "No decoder found for image: %s", imagePath.c_str()); + rememberImageFailure(imagePath); + renderPlaceholder(renderer, x, y); return; } @@ -195,6 +270,8 @@ void ImageBlock::render(GfxRenderer& renderer, const int x, const int y) { bool success = decoder->decodeToFramebuffer(imagePath, renderer, config); if (!success) { LOG_ERR("IMG", "Failed to decode image: %s", imagePath.c_str()); + rememberImageFailure(imagePath); + renderPlaceholder(renderer, x, y); return; } diff --git a/lib/Epub/Epub/blocks/ImageBlock.h b/lib/Epub/Epub/blocks/ImageBlock.h index e6cccae782..886b5e98e8 100644 --- a/lib/Epub/Epub/blocks/ImageBlock.h +++ b/lib/Epub/Epub/blocks/ImageBlock.h @@ -16,6 +16,10 @@ class ImageBlock final : public Block { int16_t getHeight() const { return height; } bool imageExists() const; + bool hasValidCache() const; + bool needsDecode() const; + void renderPlaceholder(GfxRenderer& renderer, int x, int y) const; + static void clearSessionRenderFailures(); BlockType getType() override { return IMAGE_BLOCK; } bool isEmpty() override { return false; } diff --git a/lib/Epub/Epub/blocks/TextBlock.cpp b/lib/Epub/Epub/blocks/TextBlock.cpp index 3d5f920b49..c90467d6ed 100644 --- a/lib/Epub/Epub/blocks/TextBlock.cpp +++ b/lib/Epub/Epub/blocks/TextBlock.cpp @@ -3,19 +3,114 @@ #include #include #include +#include #include #include -void TextBlock::render(const GfxRenderer& renderer, const int fontId, const int x, const int y) const { +size_t TextBlock::arenaSize(const uint16_t wordCount, const bool hasFocus, const uint16_t textBytes) { + // Layout documented in TextBlock.h: 16-bit arrays first, then 8-bit arrays, then text. + size_t size = static_cast(wordCount) * (sizeof(uint16_t) + sizeof(int16_t) + sizeof(uint8_t)); + if (hasFocus) { + size += static_cast(wordCount) * (sizeof(uint16_t) + sizeof(uint8_t)); + } + return size + textBytes; +} + +void TextBlock::bindArenaPointers() { + uint8_t* base = arena.get(); + const size_t wc = numWords; + textOffArr = reinterpret_cast(base); + xposArr = reinterpret_cast(base + wc * 2); + size_t off = wc * 4; + if (focusPresent) { + focusSuffixXArr = reinterpret_cast(base + off); + off += wc * 2; + } + stylesArr = base + off; + off += wc; + if (focusPresent) { + focusBoundaryArr = base + off; + off += wc; + } + textArr = reinterpret_cast(base + off); +} + +TextBlock::TextBlock(const std::vector& words, const std::vector& wordXpos, + const std::vector& wordStyles, const std::vector& focusBoundary, + const std::vector& focusSuffixX, const BlockStyle& blockStyle) + : blockStyle(blockStyle) { // Focus annotations are optional: empty vectors mean no word in this block has a split. // When present, they must be sized in lockstep with words[]. - const bool hasFocus = !wordFocusBoundary.empty(); - if (words.size() != wordXpos.size() || words.size() != wordStyles.size() || - (hasFocus && (words.size() != wordFocusBoundary.size() || words.size() != wordFocusSuffixX.size()))) { - LOG_ERR("TXB", "Render skipped: size mismatch (words=%u, xpos=%u, styles=%u, boundary=%u, suffixX=%u)\n", - (uint32_t)words.size(), (uint32_t)wordXpos.size(), (uint32_t)wordStyles.size(), - (uint32_t)wordFocusBoundary.size(), (uint32_t)wordFocusSuffixX.size()); + const bool hasFocus = !focusBoundary.empty(); + if (words.size() != wordXpos.size() || words.size() != wordStyles.size() || words.size() > 10000 || + (hasFocus && (words.size() != focusBoundary.size() || words.size() != focusSuffixX.size()))) { + LOG_ERR("TXB", "Construction failed: size mismatch (words=%u, xpos=%u, styles=%u, boundary=%u, suffixX=%u)", + static_cast(words.size()), static_cast(wordXpos.size()), + static_cast(wordStyles.size()), static_cast(focusBoundary.size()), + static_cast(focusSuffixX.size())); + isValid = false; + return; + } + + numWords = static_cast(words.size()); + focusPresent = hasFocus; + if (numWords == 0) { + return; // valid empty block, no arena + } + + // Pass 1: total text size, one NUL per word. A line is at most a physical + // row of the page, so uint16_t offsets are ample; reject anything larger. + size_t totalText = 0; + for (const auto& w : words) totalText += w.size() + 1; + if (totalText > UINT16_MAX) { + LOG_ERR("TXB", "Construction failed: text size %u exceeds arena limit", static_cast(totalText)); + numWords = 0; + focusPresent = false; + isValid = false; + return; + } + textBytes = static_cast(totalText); + + const size_t size = arenaSize(numWords, focusPresent, textBytes); + arena = makeUniqueNoThrow(size); + if (!arena) { + LOG_ERR("TXB", "OOM: arena %u bytes", static_cast(size)); + numWords = 0; + textBytes = 0; + focusPresent = false; + isValid = false; + return; + } + bindArenaPointers(); + + // Pass 2: fill. Mutable aliases of the const views bound above. + auto* textOff = const_cast(textOffArr); + auto* xpos = const_cast(xposArr); + auto* styles = const_cast(stylesArr); + auto* text = const_cast(textArr); + uint16_t off = 0; + for (uint16_t i = 0; i < numWords; i++) { + textOff[i] = off; + xpos[i] = wordXpos[i]; + styles[i] = static_cast(wordStyles[i]); + memcpy(text + off, words[i].data(), words[i].size()); + off += static_cast(words[i].size()); + text[off++] = '\0'; + } + if (focusPresent) { + auto* suffixX = const_cast(focusSuffixXArr); + auto* boundary = const_cast(focusBoundaryArr); + for (uint16_t i = 0; i < numWords; i++) { + suffixX[i] = focusSuffixX[i]; + boundary[i] = focusBoundary[i]; + } + } +} + +void TextBlock::render(const GfxRenderer& renderer, const int fontId, const int x, const int y) const { + if (!isValid) { + LOG_ERR("TXB", "Render skipped: invalid block"); return; } @@ -54,12 +149,13 @@ void TextBlock::render(const GfxRenderer& renderer, const int fontId, const int } }; - for (size_t i = 0; i < words.size(); i++) { - const int wordX = wordXpos[i] + x; - const EpdFontFamily::Style currentStyle = wordStyles[i]; - const auto baseDir = static_cast( - BidiUtils::detectParagraphLevel(words[i].c_str(), blockStyle.isRtl ? 1 : 0)); - const uint8_t boundary = hasFocus ? wordFocusBoundary[i] : 0; + for (uint16_t i = 0; i < numWords; i++) { + const char* word = wordText(i); + const int wordX = xposArr[i] + x; + const EpdFontFamily::Style currentStyle = wordStyle(i); + const auto baseDir = + static_cast(BidiUtils::detectParagraphLevel(word, blockStyle.isRtl ? 1 : 0)); + const uint8_t boundary = focusBoundary(i); // SUP/SUB shift the baseline passed to drawText; the glyph is also scaled 50% inside // drawText, so these offsets are chosen relative to the full-size ascender: @@ -82,14 +178,15 @@ void TextBlock::render(const GfxRenderer& renderer, const int fontId, const int static_assert(sizeof(boldBuf) >= MAX_FOCUS_PREFIX_BYTES, "boldBuf too small for max focus prefix (9 codepoints * 4 UTF-8 bytes + null)"); const auto boldStyle = static_cast(currentStyle | EpdFontFamily::BOLD); - const size_t boldLen = std::min({static_cast(boundary), words[i].size(), sizeof(boldBuf) - 1}); - memcpy(boldBuf, words[i].c_str(), boldLen); + const size_t boldLen = + std::min({static_cast(boundary), static_cast(wordTextLen(i)), sizeof(boldBuf) - 1}); + memcpy(boldBuf, word, boldLen); boldBuf[boldLen] = '\0'; renderer.drawText(fontId, wordX, wordY, boldBuf, true, boldStyle, baseDir); - const int suffixX = wordX + wordFocusSuffixX[i]; - renderer.drawText(fontId, suffixX, wordY, words[i].c_str() + boldLen, true, currentStyle, baseDir); + const int suffixX = wordX + focusSuffixXArr[i]; + renderer.drawText(fontId, suffixX, wordY, word + boldLen, true, currentStyle, baseDir); } else { - renderer.drawText(fontId, wordX, wordY, words[i].c_str(), true, currentStyle, baseDir); + renderer.drawText(fontId, wordX, wordY, word, true, currentStyle, baseDir); } if (scanning) { @@ -97,18 +194,17 @@ void TextBlock::render(const GfxRenderer& renderer, const int fontId, const int } if (EpdFontFamily::hasTextDecoration(currentStyle)) { - const std::string& w = words[i]; int lineStartX = wordX; - int lineWidth = renderer.getTextWidth(fontId, w.c_str(), currentStyle, baseDir); + int lineWidth = renderer.getTextWidth(fontId, word, currentStyle, baseDir); if ((currentStyle & (EpdFontFamily::SUP | EpdFontFamily::SUB)) != 0) { lineWidth = (lineWidth + 1) / 2; } // Do not decorate the synthetic em-space used for paragraph indentation. - if (w.size() >= 3 && static_cast(w[0]) == 0xE2 && static_cast(w[1]) == 0x80 && - static_cast(w[2]) == 0x83) { - const char* visibleText = w.c_str() + 3; + if (wordTextLen(i) >= 3 && static_cast(word[0]) == 0xE2 && static_cast(word[1]) == 0x80 && + static_cast(word[2]) == 0x83) { + const char* visibleText = word + 3; lineStartX += renderer.getTextAdvanceX(fontId, "\xe2\x80\x83", currentStyle); lineWidth = renderer.getTextWidth(fontId, visibleText, currentStyle, baseDir); if ((currentStyle & (EpdFontFamily::SUP | EpdFontFamily::SUB)) != 0) { @@ -140,29 +236,23 @@ void TextBlock::render(const GfxRenderer& renderer, const int fontId, const int } bool TextBlock::serialize(HalFile& file) const { - // Focus annotations are optional; vectors are either empty (no splits in this block) - // or sized in lockstep with words[]. - const bool hasFocus = !wordFocusBoundary.empty(); - if (words.size() != wordXpos.size() || words.size() != wordStyles.size() || - (hasFocus && (words.size() != wordFocusBoundary.size() || words.size() != wordFocusSuffixX.size()))) { - LOG_ERR("TXB", "Serialization failed: size mismatch (words=%u, xpos=%u, styles=%u, boundary=%u, suffixX=%u)\n", - static_cast(words.size()), static_cast(wordXpos.size()), - static_cast(wordStyles.size()), static_cast(wordFocusBoundary.size()), - static_cast(wordFocusSuffixX.size())); + if (!isValid) { + LOG_ERR("TXB", "Serialization failed: invalid block"); return false; } - // Word data - serialization::writePod(file, static_cast(words.size())); - for (const auto& w : words) serialization::writeString(file, w); - for (auto x : wordXpos) serialization::writePod(file, x); - for (auto s : wordStyles) serialization::writePod(file, s); - // Focus block: 1-byte presence flag, followed by per-word vectors only when present. - // Saves 3 bytes/word when focus reading is disabled or no word on this line was split. - serialization::writePod(file, static_cast(hasFocus ? 1 : 0)); - if (hasFocus) { - for (auto b : wordFocusBoundary) serialization::writePod(file, b); - for (auto sx : wordFocusSuffixX) serialization::writePod(file, sx); + // Word data: scalars, then the arena verbatim -- its in-memory layout is + // exactly the on-disk layout (see TextBlock.h), so one write covers all + // per-word arrays and the text blob. + serialization::writePod(file, numWords); + serialization::writePod(file, static_cast(focusPresent ? 1 : 0)); + serialization::writePod(file, textBytes); + if (numWords > 0) { + const size_t size = arenaSize(numWords, focusPresent, textBytes); + if (file.write(arena.get(), size) != size) { + LOG_ERR("TXB", "Serialization failed: arena write (%u bytes)", static_cast(size)); + return false; + } } // Style (alignment + margins/padding/indent) @@ -186,41 +276,64 @@ bool TextBlock::serialize(HalFile& file) const { std::unique_ptr TextBlock::deserialize(HalFile& file) { uint16_t wc; - std::vector words; - std::vector wordXpos; - std::vector wordStyles; - std::vector wordFocusBoundary; - std::vector wordFocusSuffixX; - BlockStyle blockStyle; - - // Word count + uint8_t hasFocus; + uint16_t textBytes; serialization::readPod(file, wc); + serialization::readPod(file, hasFocus); + serialization::readPod(file, textBytes); - // Sanity check: prevent allocation of unreasonably large vectors (max 10000 words per block) + // Sanity checks: cap the arena allocation and reject impossible geometry + // (every word carries at least its NUL terminator). if (wc > 10000) { LOG_ERR("TXB", "Deserialization failed: word count %u exceeds maximum", wc); return nullptr; } + if ((wc == 0 && textBytes != 0) || (wc > 0 && textBytes < wc)) { + LOG_ERR("TXB", "Deserialization failed: bad text size %u for %u words", textBytes, wc); + return nullptr; + } - // Word data - words.resize(wc); - wordXpos.resize(wc); - wordStyles.resize(wc); - for (auto& w : words) serialization::readString(file, w); - for (auto& x : wordXpos) serialization::readPod(file, x); - for (auto& s : wordStyles) serialization::readPod(file, s); - // Focus block: presence flag, then vectors only if present. Empty vectors when absent - // signal "no splits in this block" to render() (zero per-word RAM cost). - uint8_t hasFocus; - serialization::readPod(file, hasFocus); - if (hasFocus) { - wordFocusBoundary.resize(wc); - wordFocusSuffixX.resize(wc); - for (auto& b : wordFocusBoundary) serialization::readPod(file, b); - for (auto& sx : wordFocusSuffixX) serialization::readPod(file, sx); + std::unique_ptr block(new (std::nothrow) TextBlock()); + if (!block) { + LOG_ERR("TXB", "OOM: TextBlock"); + return nullptr; + } + block->numWords = wc; + block->textBytes = textBytes; + block->focusPresent = hasFocus != 0; + + if (wc > 0) { + const size_t size = arenaSize(wc, block->focusPresent, textBytes); + block->arena = makeUniqueNoThrow(size); + if (!block->arena) { + LOG_ERR("TXB", "OOM: arena %u bytes", static_cast(size)); + return nullptr; + } + if (file.read(block->arena.get(), size) != size) { + LOG_ERR("TXB", "Deserialization failed: arena read (%u bytes)", static_cast(size)); + return nullptr; + } + block->bindArenaPointers(); + + // Validate offsets before anything dereferences wordText(): offset 0 first, + // strictly increasing, in bounds, and every word NUL-terminated (word i ends + // at the byte before offset i+1; the last word at the last text byte). + const uint16_t* textOff = block->textOffArr; + const char* text = block->textArr; + if (textOff[0] != 0 || text[textBytes - 1] != '\0') { + LOG_ERR("TXB", "Deserialization failed: corrupt text layout"); + return nullptr; + } + for (uint16_t i = 1; i < wc; i++) { + if (textOff[i] <= textOff[i - 1] || textOff[i] >= textBytes || text[textOff[i] - 1] != '\0') { + LOG_ERR("TXB", "Deserialization failed: corrupt word offset %u", i); + return nullptr; + } + } } // Style (alignment + margins/padding/indent) + BlockStyle& blockStyle = block->blockStyle; serialization::readPod(file, blockStyle.alignment); serialization::readPod(file, blockStyle.textAlignDefined); serialization::readPod(file, blockStyle.marginTop); @@ -236,7 +349,5 @@ std::unique_ptr TextBlock::deserialize(HalFile& file) { serialization::readPod(file, blockStyle.isRtl); serialization::readPod(file, blockStyle.directionDefined); - return std::unique_ptr(new TextBlock(std::move(words), std::move(wordXpos), std::move(wordStyles), - std::move(wordFocusBoundary), std::move(wordFocusSuffixX), - blockStyle)); + return block; } diff --git a/lib/Epub/Epub/blocks/TextBlock.h b/lib/Epub/Epub/blocks/TextBlock.h index 5f4bf80e1c..38f24f5349 100644 --- a/lib/Epub/Epub/blocks/TextBlock.h +++ b/lib/Epub/Epub/blocks/TextBlock.h @@ -9,42 +9,83 @@ #include "Block.h" #include "BlockStyle.h" -// Represents a line of text on a page +// Represents a line of text on a page. +// +// All per-word data lives in ONE flat heap allocation (the arena) instead of +// six parallel vectors: a resident page holds ~25-30 of these blocks, and the +// vector-of-string layout cost ~250 throwing allocations per page load, which +// was the primary driver of heap fragmentation on the ESP32-C3. +// +// Arena layout, in order (2-byte alignment holds by construction: all 16-bit +// arrays come first and the arena base is allocator-aligned; RISC-V faults on +// unaligned multi-byte access): +// uint16_t textOff[wordCount] byte offset of word i's text in text[] +// int16_t xpos[wordCount] +// uint16_t focusSuffixX[wordCount] present only when focusPresent +// uint8_t styles[wordCount] +// uint8_t focusBoundary[wordCount] present only when focusPresent +// char text[textBytes] all words back to back, NUL-terminated +// +// Each word is stored NUL-terminated so render() can hand `text + textOff[i]` +// straight to C APIs (drawText) with no std::string materialization. +// +// Focus split semantics (unchanged from the vector layout): boundary N > 0 +// means the first N bytes of word i render bold, the remainder in the base +// style. N is bounded to 9 codepoints (<= 36 UTF-8 bytes) by the clamp in +// ParsedText::addWord. focusSuffixX is the pre-computed pixel offset from the +// word start to the regular suffix. Both arrays are omitted from the arena +// entirely when no word on the line has a split (zero per-word RAM cost when +// focus reading is disabled). class TextBlock final : public Block { private: - std::vector words; - std::vector wordXpos; - std::vector wordStyles; - // Per-word focus boundary: N > 0 means the first N bytes of words[i] are rendered bold, - // the remainder in the base style. 0 means no split (whole word uses wordStyles[i]). - // N encodes the bold PREFIX length only — bounded to 9 codepoints (≤36 UTF-8 bytes) by - // FOCUS_READING_PERCENT's 1..9 clamp in ParsedText::addWord, so it always fits in uint8_t. - // Vector is empty when no focus splits exist anywhere in the block (zero per-word RAM cost - // when focus reading is disabled, or on lines that happen to contain no splittable words). - std::vector wordFocusBoundary; - // Pre-computed pixel offset from word start to the regular suffix, stored when boundary > 0. - // Eliminates getTextAdvanceX from the render path. 0 when boundary == 0. - // Empty in lockstep with wordFocusBoundary. - std::vector wordFocusSuffixX; BlockStyle blockStyle; + uint16_t numWords = 0; + uint16_t textBytes = 0; // total size of the text region, including NULs + bool focusPresent = false; + bool isValid = true; + // The ONLY allocation: makeUniqueNoThrow, so OOM yields an invalid block + // instead of abort() (bare new is not nothrow with -fno-exceptions). + std::unique_ptr arena; + // Typed views into the arena, bound once after the arena is filled. All + // 16-bit bases sit at even offsets, so direct dereference is alignment-safe. + const uint16_t* textOffArr = nullptr; + const int16_t* xposArr = nullptr; + const uint16_t* focusSuffixXArr = nullptr; // null when !focusPresent + const uint8_t* stylesArr = nullptr; + const uint8_t* focusBoundaryArr = nullptr; // null when !focusPresent + const char* textArr = nullptr; + + TextBlock() = default; // deserialize() fills the fields directly + static size_t arenaSize(uint16_t wordCount, bool hasFocus, uint16_t textBytes); + void bindArenaPointers(); public: - explicit TextBlock(std::vector words, std::vector word_xpos, - std::vector word_styles, std::vector focus_boundary, - std::vector focus_suffix_x, const BlockStyle& blockStyle = BlockStyle()) - : words(std::move(words)), - wordXpos(std::move(word_xpos)), - wordStyles(std::move(word_styles)), - wordFocusBoundary(std::move(focus_boundary)), - wordFocusSuffixX(std::move(focus_suffix_x)), - blockStyle(blockStyle) {} + // Flatten-on-construct: copies the layout-time vectors into the arena; the + // vectors die with the caller. On arena OOM the block is empty and valid() + // is false -- callers must check and fail the line instead of using it. + explicit TextBlock(const std::vector& words, const std::vector& wordXpos, + const std::vector& wordStyles, const std::vector& focusBoundary, + const std::vector& focusSuffixX, const BlockStyle& blockStyle = BlockStyle()); ~TextBlock() override = default; + TextBlock(const TextBlock&) = delete; + TextBlock& operator=(const TextBlock&) = delete; + void setBlockStyle(const BlockStyle& blockStyle) { this->blockStyle = blockStyle; } const BlockStyle& getBlockStyle() const { return blockStyle; } - const std::vector& getWords() const { return words; } - bool isEmpty() override { return words.empty(); } - size_t wordCount() const { return words.size(); } - // given a renderer works out where to break the words into lines + bool isEmpty() override { return numWords == 0; } + bool valid() const { return isValid; } + uint16_t wordCount() const { return numWords; } + // NUL-terminated by construction; safe to pass to C APIs directly. + const char* wordText(const uint16_t i) const { return textArr + textOffArr[i]; } + uint16_t wordTextLen(const uint16_t i) const { + const uint16_t end = (i + 1 < numWords) ? textOffArr[i + 1] : textBytes; + return end - textOffArr[i] - 1; // exclude the NUL + } + int16_t wordXpos(const uint16_t i) const { return xposArr[i]; } + EpdFontFamily::Style wordStyle(const uint16_t i) const { return static_cast(stylesArr[i]); } + uint8_t focusBoundary(const uint16_t i) const { return focusPresent ? focusBoundaryArr[i] : 0; } + uint16_t focusSuffixX(const uint16_t i) const { return focusPresent ? focusSuffixXArr[i] : 0; } + void render(const GfxRenderer& renderer, int fontId, int x, int y) const; BlockType getType() override { return TEXT_BLOCK; } bool serialize(HalFile& file) const; diff --git a/lib/Epub/Epub/converters/PngToFramebufferConverter.cpp b/lib/Epub/Epub/converters/PngToFramebufferConverter.cpp index 24492e596d..e6719b0fe9 100644 --- a/lib/Epub/Epub/converters/PngToFramebufferConverter.cpp +++ b/lib/Epub/Epub/converters/PngToFramebufferConverter.cpp @@ -99,24 +99,58 @@ int bytesPerPixelFromType(int pixelType) { } } -int requiredPngInternalBufferBytes(int srcWidth, int pixelType) { +int packedRowBytes(int srcWidth, int bitsPerSample) { return (srcWidth * bitsPerSample + 7) / 8; } + +int requiredPngInternalBufferBytes(int srcWidth, int pixelType, int bitsPerSample) { // +1 filter byte per scanline, *2 for current+previous lines, +32 for alignment margin. int pitch = srcWidth * bytesPerPixelFromType(pixelType); + if ((pixelType == PNG_PIXEL_GRAYSCALE || pixelType == PNG_PIXEL_INDEXED) && bitsPerSample < 8) { + pitch = packedRowBytes(srcWidth, bitsPerSample); + } return ((pitch + 1) * 2) + 32; } +bool isSupportedBitDepth(int pixelType, int bitsPerSample) { + if (bitsPerSample == 8) return true; + if (bitsPerSample != 1 && bitsPerSample != 2 && bitsPerSample != 4) return false; + return pixelType == PNG_PIXEL_GRAYSCALE || pixelType == PNG_PIXEL_INDEXED; +} + +uint8_t readPackedSample(const uint8_t* pixels, int x, int bitsPerSample) { + if (bitsPerSample == 8) return pixels[x]; + + const int bitOffset = x * bitsPerSample; + const int shift = 8 - bitsPerSample - (bitOffset & 7); + const uint8_t mask = (1U << bitsPerSample) - 1; + return (pixels[bitOffset >> 3] >> shift) & mask; +} + +uint8_t expandSampleToByte(uint8_t sample, int bitsPerSample) { + if (bitsPerSample == 8) return sample; + const uint8_t maxSample = (1U << bitsPerSample) - 1; + return static_cast((sample * 255U) / maxSample); +} + // Convert entire source line to grayscale with alpha blending to white background. +// Low-bit-depth grayscale/indexed scanlines are packed most-significant sample first. // For indexed PNGs with tRNS chunk, alpha values are stored at palette[768] onwards. // Processing the whole line at once improves cache locality and reduces per-pixel overhead. -void convertLineToGray(uint8_t* pPixels, uint8_t* grayLine, int width, int pixelType, uint8_t* palette, int hasAlpha) { +void convertLineToGray(const uint8_t* pPixels, uint8_t* grayLine, int width, int pixelType, int bitsPerSample, + uint8_t* palette, int hasAlpha) { switch (pixelType) { case PNG_PIXEL_GRAYSCALE: - memcpy(grayLine, pPixels, width); + if (bitsPerSample == 8) { + memcpy(grayLine, pPixels, width); + } else { + for (int x = 0; x < width; x++) { + grayLine[x] = expandSampleToByte(readPackedSample(pPixels, x, bitsPerSample), bitsPerSample); + } + } break; case PNG_PIXEL_TRUECOLOR: for (int x = 0; x < width; x++) { - uint8_t* p = &pPixels[x * 3]; + const uint8_t* p = &pPixels[x * 3]; grayLine[x] = (uint8_t)((p[0] * 77 + p[1] * 150 + p[2] * 29) >> 8); } break; @@ -125,7 +159,7 @@ void convertLineToGray(uint8_t* pPixels, uint8_t* grayLine, int width, int pixel if (palette) { if (hasAlpha) { for (int x = 0; x < width; x++) { - uint8_t idx = pPixels[x]; + uint8_t idx = readPackedSample(pPixels, x, bitsPerSample); uint8_t* p = &palette[idx * 3]; uint8_t gray = (uint8_t)((p[0] * 77 + p[1] * 150 + p[2] * 29) >> 8); uint8_t alpha = palette[768 + idx]; @@ -133,12 +167,15 @@ void convertLineToGray(uint8_t* pPixels, uint8_t* grayLine, int width, int pixel } } else { for (int x = 0; x < width; x++) { - uint8_t* p = &palette[pPixels[x] * 3]; + uint8_t idx = readPackedSample(pPixels, x, bitsPerSample); + uint8_t* p = &palette[idx * 3]; grayLine[x] = (uint8_t)((p[0] * 77 + p[1] * 150 + p[2] * 29) >> 8); } } } else { - memcpy(grayLine, pPixels, width); + for (int x = 0; x < width; x++) { + grayLine[x] = expandSampleToByte(readPackedSample(pPixels, x, bitsPerSample), bitsPerSample); + } } break; @@ -152,7 +189,7 @@ void convertLineToGray(uint8_t* pPixels, uint8_t* grayLine, int width, int pixel case PNG_PIXEL_TRUECOLOR_ALPHA: for (int x = 0; x < width; x++) { - uint8_t* p = &pPixels[x * 4]; + const uint8_t* p = &pPixels[x * 4]; uint8_t gray = (uint8_t)((p[0] * 77 + p[1] * 150 + p[2] * 29) >> 8); uint8_t alpha = p[3]; grayLine[x] = (uint8_t)((gray * alpha + 255 * (255 - alpha)) / 255); @@ -172,74 +209,83 @@ int pngDrawCallback(PNGDRAW* pDraw) { int srcY = pDraw->y; int srcWidth = ctx->srcWidth; - // Calculate destination Y with scaling - int dstY = (int)(srcY * ctx->scale); - - // Skip if we already rendered this destination row (multiple source rows map to same dest) - if (dstY == ctx->lastDstY) return 1; - ctx->lastDstY = dstY; - - // Check bounds - if (dstY >= ctx->dstHeight) return 1; + // Map source rows with the exact output-height ratio. During downscaling, + // multiple source rows can select the same output row; during upscaling, one + // source row must be repeated across every output row in its range. Emitting + // only the first row of an upscale leaves zero-filled (black) gaps in the + // streamed pixel cache. + int firstDstY = (srcY * ctx->dstHeight) / ctx->srcHeight; + int endDstY = firstDstY + 1; + if (ctx->dstHeight > ctx->srcHeight) { + endDstY = ((srcY + 1) * ctx->dstHeight) / ctx->srcHeight; + } - int outY = ctx->config->y + dstY; - if (outY >= ctx->screenHeight) return 1; + if (firstDstY <= ctx->lastDstY) firstDstY = ctx->lastDstY + 1; + if (firstDstY >= endDstY || firstDstY >= ctx->dstHeight) return 1; + if (endDstY > ctx->dstHeight) endDstY = ctx->dstHeight; // Convert entire source line to grayscale (improves cache locality) - convertLineToGray(pDraw->pPixels, ctx->grayLineBuffer, srcWidth, pDraw->iPixelType, pDraw->pPalette, + convertLineToGray(pDraw->pPixels, ctx->grayLineBuffer, srcWidth, pDraw->iPixelType, pDraw->iBpp, pDraw->pPalette, pDraw->iHasAlpha); - // Render scaled row using Bresenham-style integer stepping (no floating-point division) + // Render scaled rows using Bresenham-style integer stepping (no floating-point division) int dstWidth = ctx->dstWidth; int outXBase = ctx->config->x; int screenWidth = ctx->screenWidth; bool useDithering = ctx->config->useDithering; - bool caching = ctx->caching; - // Pre-compute orientation and render-mode state once per row + // Pre-compute orientation and render-mode state once per callback. DirectPixelWriter pw; pw.init(*ctx->renderer); - pw.beginRow(outY); - - // The cache streams to disk one row at a time. Flushing rows below this one - // (PNGdec delivers scanlines top to bottom) repositions the single-row band. - // A flush failure stops caching for the rest of the decode so we never write - // past the band buffer; finalize() then drops the partial file. - DirectCacheWriter cw; - if (caching) { - if (!ctx->cache.advanceTo(dstY)) { - caching = false; - ctx->caching = false; - } else { - cw.init(ctx->cache.buffer, ctx->cache.bytesPerRow, ctx->cache.bandRows, ctx->cache.originX); - cw.beginRow(outY, ctx->config->y + ctx->cache.bandStart); + + for (int dstY = firstDstY; dstY < endDstY; dstY++) { + ctx->lastDstY = dstY; + int outY = ctx->config->y + dstY; + if (outY >= ctx->screenHeight) continue; + + pw.beginRow(outY); + + // The cache streams to disk one row at a time. Flushing rows below this one + // (PNGdec delivers scanlines top to bottom) repositions the single-row band. + // A flush failure stops caching for the rest of the decode so we never write + // past the band buffer; finalize() then drops the partial file. + bool caching = ctx->caching; + DirectCacheWriter cw; + if (caching) { + if (!ctx->cache.advanceTo(dstY)) { + caching = false; + ctx->caching = false; + } else { + cw.init(ctx->cache.buffer, ctx->cache.bytesPerRow, ctx->cache.bandRows, ctx->cache.originX); + cw.beginRow(outY, ctx->config->y + ctx->cache.bandStart); + } } - } - int srcX = 0; - int error = 0; + int srcX = 0; + int error = 0; - for (int dstX = 0; dstX < dstWidth; dstX++) { - int outX = outXBase + dstX; - if (outX < screenWidth) { - uint8_t gray = ctx->grayLineBuffer[srcX]; + for (int dstX = 0; dstX < dstWidth; dstX++) { + int outX = outXBase + dstX; + if (outX < screenWidth) { + uint8_t gray = ctx->grayLineBuffer[srcX]; - uint8_t ditheredGray; - if (useDithering) { - ditheredGray = applyBayerDither4Level(gray, outX, outY); - } else { - ditheredGray = gray / 85; - if (ditheredGray > 3) ditheredGray = 3; + uint8_t ditheredGray; + if (useDithering) { + ditheredGray = applyBayerDither4Level(gray, outX, outY); + } else { + ditheredGray = gray / 85; + if (ditheredGray > 3) ditheredGray = 3; + } + pw.writePixel(outX, ditheredGray); + if (caching) cw.writePixel(outX, ditheredGray); } - pw.writePixel(outX, ditheredGray); - if (caching) cw.writePixel(outX, ditheredGray); - } - // Bresenham-style stepping: advance srcX based on ratio srcWidth/dstWidth - error += srcWidth; - while (error >= dstWidth) { - error -= dstWidth; - srcX++; + // Bresenham-style stepping: advance srcX based on ratio srcWidth/dstWidth + error += srcWidth; + while (error >= dstWidth) { + error -= dstWidth; + srcX++; + } } } @@ -332,30 +378,44 @@ bool PngToFramebufferConverter::decodeToFramebuffer(const std::string& imagePath } ctx.lastDstY = -1; // Reset row tracking - LOG_DBG("PNG", "PNG %dx%d -> %dx%d (scale %.2f), bpp: %d", ctx.srcWidth, ctx.srcHeight, ctx.dstWidth, ctx.dstHeight, - ctx.scale, png->getBpp()); - const int pixelType = png->getPixelType(); - const int requiredInternal = requiredPngInternalBufferBytes(ctx.srcWidth, pixelType); + const int bitsPerSample = png->getBpp(); + LOG_DBG("PNG", "PNG %dx%d -> %dx%d (scale %.2f), type: %d, bpp: %d", ctx.srcWidth, ctx.srcHeight, ctx.dstWidth, + ctx.dstHeight, ctx.scale, pixelType, bitsPerSample); + + const int requiredInternal = requiredPngInternalBufferBytes(ctx.srcWidth, pixelType, bitsPerSample); if (requiredInternal > PNG_MAX_BUFFERED_PIXELS) { - LOG_ERR("PNG", - "PNG row buffer too small: need %d bytes for width=%d type=%d, configured PNG_MAX_BUFFERED_PIXELS=%d", - requiredInternal, ctx.srcWidth, pixelType, PNG_MAX_BUFFERED_PIXELS); + LOG_ERR( + "PNG", + "PNG row buffer too small: need %d bytes for width=%d type=%d bpp=%d, configured PNG_MAX_BUFFERED_PIXELS=%d", + requiredInternal, ctx.srcWidth, pixelType, bitsPerSample, PNG_MAX_BUFFERED_PIXELS); LOG_ERR("PNG", "Aborting decode to avoid PNGdec internal buffer overflow"); return false; } - if (png->getBpp() != 8) { - warnUnsupportedFeature("bit depth (" + std::to_string(png->getBpp()) + "bpp)", imagePath); + if (!isSupportedBitDepth(pixelType, bitsPerSample)) { + warnUnsupportedFeature( + "bit depth (" + std::to_string(bitsPerSample) + "bpp) for pixel type " + std::to_string(pixelType), imagePath); + return false; + } + + // The converter expands each source row to 8-bit grayscale before dithering, + // so this scratch buffer is sized by source pixels even when PNGdec reads a + // packed 1/2/4-bit row internally. + constexpr size_t MAX_GRAY_LINE_BUFFER_BYTES = PNG_MAX_BUFFERED_PIXELS / 2; + const size_t grayBufSize = static_cast(ctx.srcWidth); + if (grayBufSize > MAX_GRAY_LINE_BUFFER_BYTES) { + LOG_ERR("PNG", "Expanded gray row too wide: need %u bytes for width=%d, max=%u", static_cast(grayBufSize), + ctx.srcWidth, static_cast(MAX_GRAY_LINE_BUFFER_BYTES)); + return false; } - // Allocate grayscale line buffer on demand (~3.2 KB) - freed after decode - const size_t grayBufSize = PNG_MAX_BUFFERED_PIXELS / 2; - ctx.grayLineBuffer = static_cast(malloc(grayBufSize)); - if (!ctx.grayLineBuffer) { + auto grayLineBuffer = makeUniqueNoThrow(grayBufSize); + if (!grayLineBuffer) { LOG_ERR("PNG", "Failed to allocate gray line buffer"); return false; } + ctx.grayLineBuffer = grayLineBuffer.get(); // Stream the pixel cache to disk. PNGdec delivers source scanlines top to // bottom and we emit at most one (downscaled) output row per callback, so the @@ -375,7 +435,6 @@ bool PngToFramebufferConverter::decodeToFramebuffer(const std::string& imagePath rc = png->decode(&ctx, 0); unsigned long decodeTime = millis() - decodeStart; - free(ctx.grayLineBuffer); ctx.grayLineBuffer = nullptr; if (rc != PNG_SUCCESS) { diff --git a/lib/Epub/Epub/css/CssParser.cpp b/lib/Epub/Epub/css/CssParser.cpp index 3c30fd851a..64939fc892 100644 --- a/lib/Epub/Epub/css/CssParser.cpp +++ b/lib/Epub/Epub/css/CssParser.cpp @@ -431,6 +431,11 @@ CssStyle CssParser::parseDeclarations(std::string_view declBlock) { // Rule processing void CssParser::processRuleBlockWithStyle(std::string_view selectorGroup, const CssStyle& style) { + // Skip rules that don't define any supported properties to save RAM. + if (!style.defined.anySet()) { + return; + } + // Check if we've reached the rule limit before processing if (rulesBySelector_.size() >= MAX_RULES) { LOG_DBG("CSS", "Reached max rules limit (%zu), stopping CSS parsing", MAX_RULES); @@ -803,6 +808,9 @@ bool CssParser::loadFromCache() { return false; } + // Size the bucket array up front to avoid incremental rehashes while loading rules. + rulesBySelector_.reserve(ruleCount); + auto hasRemainingBytes = [&file](const size_t neededBytes) -> bool { return static_cast(file.available()) >= neededBytes; }; diff --git a/lib/Epub/Epub/css/CssParser.h b/lib/Epub/Epub/css/CssParser.h index 41797fd339..892216b3c8 100644 --- a/lib/Epub/Epub/css/CssParser.h +++ b/lib/Epub/Epub/css/CssParser.h @@ -33,7 +33,7 @@ class CssParser { public: // Bump when CSS cache format or rules change; section caches are invalidated when this changes - static constexpr uint8_t CSS_CACHE_VERSION = 7; + static constexpr uint8_t CSS_CACHE_VERSION = 8; explicit CssParser(std::string cachePath) : cachePath(std::move(cachePath)) {} ~CssParser() = default; diff --git a/lib/Epub/Epub/hyphenation/Hyphenator.cpp b/lib/Epub/Epub/hyphenation/Hyphenator.cpp index ed05d0612b..eaea7b31a2 100644 --- a/lib/Epub/Epub/hyphenation/Hyphenator.cpp +++ b/lib/Epub/Epub/hyphenation/Hyphenator.cpp @@ -24,7 +24,7 @@ struct Iso639Mapping { }; static constexpr Iso639Mapping kIso639Mappings[] = {{"eng", "en"}, {"fra", "fr"}, {"fre", "fr"}, {"deu", "de"}, {"ger", "de"}, {"rus", "ru"}, {"spa", "es"}, {"ita", "it"}, - {"ukr", "uk"}, {"swe", "sv"}}; + {"ukr", "uk"}, {"swe", "sv"}, {"fin", "fi"}}; // Maps a BCP-47 or ISO 639-2 language tag to a language-specific hyphenator. const LanguageHyphenator* hyphenatorForLanguage(const std::string& langTag) { diff --git a/lib/Epub/Epub/hyphenation/LanguageRegistry.cpp b/lib/Epub/Epub/hyphenation/LanguageRegistry.cpp index fc770c76c4..2b0b1d706b 100644 --- a/lib/Epub/Epub/hyphenation/LanguageRegistry.cpp +++ b/lib/Epub/Epub/hyphenation/LanguageRegistry.cpp @@ -7,6 +7,7 @@ #include "generated/hyph-de.trie.h" #include "generated/hyph-en.trie.h" #include "generated/hyph-es.trie.h" +#include "generated/hyph-fi.trie.h" #include "generated/hyph-fr.trie.h" #include "generated/hyph-it.trie.h" #include "generated/hyph-pl.trie.h" @@ -26,8 +27,9 @@ LanguageHyphenator italianHyphenator(it_patterns, isLatinLetter, toLowerLatin); LanguageHyphenator swedishHyphenator(sv_patterns, isLatinLetter, toLowerLatin); LanguageHyphenator ukrainianHyphenator(uk_patterns, isCyrillicLetter, toLowerCyrillic); LanguageHyphenator polishHyphenator(pl_patterns, isLatinLetter, toLowerLatin); +LanguageHyphenator finnishHyphenator(fi_patterns, isLatinLetter, toLowerLatin); -using EntryArray = std::array; +using EntryArray = std::array; const EntryArray& entries() { static const EntryArray kEntries = {{{"english", "en", &englishHyphenator}, @@ -38,7 +40,8 @@ const EntryArray& entries() { {"italian", "it", &italianHyphenator}, {"polish", "pl", &polishHyphenator}, {"swedish", "sv", &swedishHyphenator}, - {"ukrainian", "uk", &ukrainianHyphenator}}}; + {"ukrainian", "uk", &ukrainianHyphenator}, + {"finnish", "fi", &finnishHyphenator}}}; return kEntries; } diff --git a/lib/Epub/Epub/hyphenation/generated/hyph-fi.trie.h b/lib/Epub/Epub/hyphenation/generated/hyph-fi.trie.h new file mode 100644 index 0000000000..062a83d44a --- /dev/null +++ b/lib/Epub/Epub/hyphenation/generated/hyph-fi.trie.h @@ -0,0 +1,95 @@ +#pragma once + +#include +#include + +#include "Epub/hyphenation/SerializedHyphenationTrie.h" + +// Auto-generated by generate_hyphenation_trie.py. Do not edit manually. +alignas(4) constexpr uint8_t fi_trie_data[] = { + 0x01, 0x01, 0x16, 0x0B, 0x0C, 0x17, 0x0C, 0x15, 0x0C, 0x0B, 0x16, 0x29, 0x2B, 0x20, 0x1F, 0x0C, + 0x33, 0x02, 0x0B, 0x02, 0x0B, 0x0C, 0x01, 0x0C, 0x34, 0x0B, 0x2A, 0x0B, 0x2A, 0x0B, 0x0C, 0x20, + 0x0B, 0x21, 0xA0, 0x00, 0x41, 0xA0, 0x02, 0x51, 0x21, 0x69, 0xFD, 0x21, 0x6C, 0xFD, 0xA1, 0x00, + 0x41, 0x62, 0xFD, 0xA0, 0x01, 0xA2, 0xA1, 0x00, 0x81, 0x6F, 0xFD, 0xA3, 0x00, 0x81, 0x69, 0x6F, + 0x75, 0xF8, 0xF8, 0xF8, 0x28, 0x61, 0x65, 0x69, 0x6F, 0x75, 0x79, 0x6C, 0x72, 0xDE, 0xDE, 0xEA, + 0xDE, 0xDE, 0xDE, 0xF2, 0xF7, 0x22, 0xA4, 0xB6, 0xCD, 0xCD, 0xA1, 0x00, 0x81, 0x61, 0xD9, 0x28, + 0x61, 0x65, 0x69, 0x6F, 0x75, 0x79, 0xC3, 0x72, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 0xC3, 0xF6, 0xFB, + 0xA2, 0x00, 0x81, 0x61, 0x65, 0xC3, 0xC3, 0x48, 0x61, 0x65, 0x69, 0x6F, 0x75, 0x79, 0x6C, 0x72, + 0xFF, 0xAB, 0xFF, 0xAB, 0xFF, 0xAB, 0xFF, 0xAB, 0xFF, 0xAB, 0xFF, 0xAB, 0xFF, 0xE3, 0xFF, 0xF9, + 0x49, 0x61, 0x65, 0x69, 0x6F, 0x75, 0x79, 0xC3, 0x6C, 0x72, 0xFF, 0x92, 0xFF, 0x92, 0xFF, 0x92, + 0xFF, 0x92, 0xFF, 0x92, 0xFF, 0x92, 0xFF, 0xC5, 0xFF, 0xA6, 0xFF, 0xCA, 0x47, 0x61, 0x65, 0x69, + 0x6F, 0x75, 0x79, 0xC3, 0xFF, 0x76, 0xFF, 0x76, 0xFF, 0x76, 0xFF, 0x76, 0xFF, 0x76, 0xFF, 0x76, + 0xFF, 0xA9, 0xA0, 0x00, 0xF1, 0x21, 0x73, 0xFD, 0xA1, 0x00, 0x41, 0x75, 0xFD, 0xA0, 0x00, 0x81, + 0x43, 0x61, 0x65, 0x69, 0xFF, 0x63, 0xFF, 0x63, 0xFF, 0x63, 0xC1, 0x01, 0xA2, 0x61, 0xFF, 0x59, + 0x4A, 0x61, 0x65, 0x69, 0x6F, 0x75, 0x79, 0xC3, 0x6C, 0x72, 0x76, 0xFF, 0x42, 0xFF, 0xE8, 0xFF, + 0x42, 0xFF, 0x42, 0xFF, 0x42, 0xFF, 0x42, 0xFF, 0x75, 0xFF, 0xED, 0xFF, 0xF0, 0xFF, 0xFA, 0xA1, + 0x00, 0x41, 0x73, 0xCE, 0x47, 0x61, 0x65, 0x69, 0x6F, 0x75, 0x79, 0xC3, 0xFF, 0xFB, 0xFF, 0x1E, + 0xFF, 0x1E, 0xFF, 0x1E, 0xFF, 0x1E, 0xFF, 0x1E, 0xFF, 0x51, 0xA0, 0x01, 0x52, 0x21, 0x6F, 0xFD, + 0x22, 0x74, 0x6E, 0xFD, 0xFD, 0xA0, 0x01, 0x73, 0x21, 0x6E, 0xFD, 0x22, 0x61, 0x6F, 0xFD, 0xFA, + 0x21, 0x61, 0xEA, 0x21, 0x6B, 0xFD, 0x21, 0x65, 0xF2, 0xA4, 0x00, 0x41, 0x6E, 0x6A, 0x69, 0x6C, + 0xE7, 0xF2, 0xFA, 0xFD, 0x21, 0x73, 0xE1, 0x21, 0x75, 0xFD, 0xA1, 0x00, 0x41, 0x64, 0xFD, 0x21, + 0x74, 0xD6, 0x21, 0x73, 0xFD, 0x22, 0x65, 0x69, 0xFA, 0xFD, 0x21, 0x61, 0xCB, 0x21, 0x6E, 0xBD, + 0x22, 0x74, 0x6F, 0xBD, 0xFD, 0x21, 0x69, 0xC0, 0x21, 0x61, 0xFD, 0xA4, 0x00, 0x41, 0x70, 0x73, + 0x74, 0x6D, 0xEA, 0xEF, 0xF5, 0xFD, 0x21, 0x69, 0xD9, 0xA1, 0x00, 0x41, 0x6C, 0xFD, 0x47, 0x61, + 0x65, 0x69, 0x6F, 0x75, 0x79, 0xC3, 0xFF, 0xBB, 0xFF, 0xCC, 0xFE, 0xA4, 0xFF, 0xED, 0xFE, 0xA4, + 0xFF, 0xFB, 0xFE, 0xD7, 0xA0, 0x01, 0x41, 0x21, 0x73, 0xFD, 0x21, 0x75, 0xFD, 0xA1, 0x00, 0x41, + 0x72, 0xFD, 0x49, 0x61, 0x65, 0x69, 0x6F, 0x75, 0x79, 0xC3, 0x6C, 0x72, 0xFE, 0x80, 0xFF, 0xFB, + 0xFE, 0x80, 0xFE, 0x80, 0xFE, 0x80, 0xFE, 0x80, 0xFE, 0xB3, 0xFF, 0x2B, 0xFE, 0x94, 0x21, 0x61, + 0xDC, 0x48, 0x61, 0x65, 0x69, 0x6F, 0x75, 0x79, 0xC3, 0x74, 0xFF, 0x3E, 0xFE, 0x61, 0xFE, 0x61, + 0xFE, 0x61, 0xFE, 0x61, 0xFE, 0x61, 0xFE, 0x94, 0xFF, 0xFD, 0x42, 0x69, 0x65, 0xFF, 0x80, 0xFF, + 0x40, 0x42, 0x6F, 0x65, 0xFF, 0x84, 0xFF, 0x47, 0x41, 0x75, 0xFF, 0x32, 0x21, 0x74, 0xFC, 0x42, + 0x61, 0x6F, 0xFF, 0xFD, 0xFF, 0x36, 0xA4, 0x00, 0x41, 0x73, 0x6C, 0x6A, 0x70, 0xE4, 0xEB, 0xF9, + 0xF2, 0x41, 0x79, 0xFF, 0x24, 0x21, 0x74, 0xFC, 0x21, 0x69, 0xFD, 0xA1, 0x00, 0x41, 0x73, 0xFD, + 0x42, 0x2E, 0x6E, 0xFF, 0x15, 0xFF, 0x15, 0x21, 0x61, 0xF9, 0x21, 0x65, 0xFD, 0xA1, 0x00, 0x41, + 0x64, 0xFD, 0x41, 0x65, 0xFE, 0xF8, 0x21, 0x6A, 0xFC, 0x42, 0x6B, 0x74, 0xFE, 0xFC, 0xFE, 0xFC, + 0x21, 0x73, 0xF9, 0x21, 0x69, 0xFD, 0xC3, 0x00, 0x41, 0x68, 0x70, 0x73, 0xFF, 0xF0, 0xFF, 0xFD, + 0xFF, 0x24, 0x41, 0x74, 0xFF, 0x23, 0xC2, 0x00, 0x41, 0x72, 0x68, 0xFF, 0x30, 0xFF, 0xFC, 0xA0, + 0x00, 0x52, 0x21, 0x72, 0xFD, 0x21, 0x69, 0xFA, 0x21, 0x6C, 0xFD, 0xA0, 0x00, 0x61, 0x21, 0x68, + 0xFD, 0x4A, 0x61, 0x65, 0x69, 0x6F, 0x75, 0x79, 0xC3, 0x74, 0x70, 0x63, 0xFF, 0x95, 0xFF, 0xAA, + 0xFF, 0xBC, 0xFF, 0xD5, 0xFD, 0xC1, 0xFF, 0xE5, 0xFD, 0xF4, 0xFF, 0xF1, 0xFF, 0xF7, 0xFF, 0xFD, + 0x48, 0x61, 0x65, 0x69, 0x6F, 0x75, 0x79, 0xC3, 0x73, 0xFD, 0xA2, 0xFD, 0xA2, 0xFD, 0xA2, 0xFD, + 0xA2, 0xFD, 0xA2, 0xFD, 0xA2, 0xFD, 0xD5, 0xFF, 0xDE, 0xA0, 0x00, 0x92, 0xA0, 0x00, 0xB2, 0xA0, + 0x01, 0x01, 0xC3, 0x00, 0x61, 0x69, 0x65, 0x79, 0xFE, 0x20, 0xFE, 0x20, 0xFF, 0xFD, 0x22, 0xA4, + 0xB6, 0xF4, 0xAD, 0x25, 0x79, 0x61, 0x6F, 0x75, 0xC3, 0xA8, 0xE6, 0xE6, 0xE9, 0xFB, 0x42, 0xB6, + 0xA4, 0xFF, 0x9D, 0xFF, 0x9D, 0x46, 0x79, 0x61, 0x6F, 0x75, 0xC3, 0x65, 0xFF, 0x96, 0xFF, 0xD4, + 0xFF, 0xD4, 0xFF, 0xD7, 0xFF, 0xF9, 0xFF, 0xD7, 0x22, 0xA4, 0xB6, 0xDB, 0xED, 0xA0, 0x00, 0x72, + 0xA0, 0x00, 0x71, 0x21, 0xA4, 0xFD, 0x21, 0xC3, 0xFD, 0x21, 0xA4, 0xFD, 0x21, 0x69, 0xF4, 0xA0, + 0x01, 0x22, 0x21, 0x70, 0xFD, 0x21, 0x6F, 0xFD, 0x21, 0x69, 0xFD, 0x26, 0x61, 0x6F, 0x75, 0xC3, + 0x65, 0x6C, 0xE2, 0xE2, 0xE2, 0xEE, 0xF1, 0xFD, 0x22, 0xA4, 0xB6, 0xD8, 0xD8, 0x21, 0x61, 0xD3, + 0xA0, 0x00, 0xB1, 0x24, 0x75, 0x69, 0x65, 0x6F, 0xCD, 0xCD, 0xFD, 0xFD, 0x24, 0x61, 0x65, 0x6F, + 0x75, 0xF4, 0xF4, 0xF4, 0xF4, 0x25, 0x79, 0xC3, 0x61, 0x75, 0x69, 0xBB, 0xE3, 0xE8, 0xEE, 0xF7, + 0xA0, 0x00, 0xD2, 0x22, 0xA4, 0xB6, 0xFD, 0xFD, 0x44, 0x61, 0x65, 0x6F, 0x69, 0xFF, 0x64, 0xFF, + 0x64, 0xFF, 0x64, 0xFF, 0x64, 0x42, 0x65, 0x61, 0xFF, 0x9B, 0xFF, 0xCB, 0x21, 0x65, 0xC4, 0x22, + 0x61, 0x75, 0xC1, 0xC1, 0xA0, 0x02, 0x32, 0x21, 0x73, 0xFD, 0x21, 0x6F, 0xFD, 0x49, 0x79, 0xC3, + 0x75, 0x61, 0x65, 0x69, 0x6F, 0x73, 0x6C, 0xFF, 0x80, 0xFF, 0xD6, 0xFF, 0xDB, 0xFF, 0xB0, 0xFF, + 0xE8, 0xFF, 0xEF, 0xFF, 0xF2, 0xFD, 0x70, 0xFF, 0xFD, 0x44, 0x69, 0x65, 0x6F, 0x75, 0xFF, 0x23, + 0xFF, 0x23, 0xFF, 0x23, 0xFF, 0x23, 0x43, 0x75, 0x61, 0x65, 0xFF, 0x5A, 0xFF, 0x8A, 0xFF, 0x8A, + 0x41, 0x76, 0xFF, 0x5F, 0x21, 0x61, 0xFC, 0xA0, 0x01, 0xC2, 0x21, 0x73, 0xFD, 0x21, 0x69, 0xFD, + 0x21, 0x65, 0xFD, 0x43, 0x69, 0x6F, 0x6B, 0xFF, 0xF1, 0xFD, 0xF7, 0xFF, 0xFD, 0xA0, 0x01, 0xA4, + 0x21, 0x73, 0xFD, 0x21, 0x61, 0xFD, 0x43, 0x6E, 0x74, 0x6B, 0xFC, 0x7D, 0xFC, 0x7D, 0xFF, 0xFD, + 0x41, 0x69, 0xFC, 0x73, 0x22, 0x61, 0x6F, 0xF2, 0xFC, 0x21, 0x69, 0xFB, 0x48, 0xC3, 0x61, 0x75, + 0x65, 0x6F, 0x69, 0x6C, 0x73, 0xFF, 0x3C, 0xFF, 0xAD, 0xFF, 0xBA, 0xFF, 0x20, 0xFF, 0x20, 0xFF, + 0x50, 0xFF, 0xD7, 0xFF, 0xFD, 0x44, 0x61, 0x69, 0x75, 0x79, 0xFE, 0xB7, 0xFE, 0xB7, 0xFE, 0xB7, + 0xFE, 0xB7, 0x42, 0x61, 0x69, 0xFE, 0xEE, 0xFE, 0xEE, 0x42, 0x75, 0x61, 0xFE, 0xE7, 0xFF, 0x17, + 0x42, 0xA4, 0xB6, 0xFE, 0xE6, 0xFF, 0x30, 0x24, 0x65, 0x61, 0x75, 0xC3, 0xDE, 0xEB, 0xF2, 0xF9, + 0x43, 0x61, 0x65, 0x6F, 0xFE, 0x8C, 0xFE, 0x8C, 0xFE, 0x8C, 0x42, 0x61, 0x75, 0xFE, 0xC6, 0xFE, + 0xC6, 0x44, 0x75, 0x61, 0x65, 0x6F, 0xFE, 0xBF, 0xFE, 0xEF, 0xFE, 0xEF, 0xFE, 0xEF, 0x41, 0xB6, + 0xFE, 0xB2, 0x21, 0xC3, 0xFC, 0x42, 0xA4, 0xB6, 0xFE, 0xB1, 0xFF, 0xFD, 0x43, 0x61, 0x6F, 0x79, + 0xFE, 0xD4, 0xFE, 0xD4, 0xFE, 0xD4, 0x42, 0x61, 0x65, 0xFE, 0x56, 0xFE, 0x56, 0x26, 0x69, 0x61, + 0x75, 0xC3, 0x65, 0x6F, 0xC3, 0xCD, 0xD4, 0xE8, 0xEF, 0xF9, 0xA0, 0x01, 0x11, 0x21, 0xA4, 0xFD, + 0xA0, 0x01, 0xE2, 0x21, 0x6E, 0xFD, 0x21, 0x69, 0xFD, 0x21, 0x64, 0xFD, 0xA0, 0x02, 0x03, 0x21, + 0x61, 0xFD, 0x21, 0x72, 0xFD, 0x21, 0x75, 0xFD, 0x21, 0x75, 0xFD, 0x23, 0xC3, 0x79, 0x73, 0xE2, + 0xEE, 0xFD, 0x41, 0x72, 0xFD, 0xD9, 0x42, 0x6C, 0x68, 0xFC, 0x47, 0xFF, 0xFC, 0xC1, 0x00, 0x81, + 0x69, 0xFB, 0xA6, 0x21, 0x76, 0xFA, 0x59, 0x62, 0x64, 0x66, 0x67, 0x68, 0x6A, 0x6B, 0x6C, 0x6D, + 0x6E, 0x70, 0x72, 0x73, 0x74, 0x76, 0xC3, 0x79, 0x6F, 0x75, 0x61, 0x65, 0x69, 0x2E, 0x63, 0x71, + 0xFB, 0xAE, 0xFB, 0xC9, 0xFB, 0xE1, 0xFB, 0xFA, 0xFC, 0x16, 0xFC, 0x16, 0xFC, 0x4A, 0xFC, 0x6E, + 0xFC, 0x16, 0xFC, 0xE8, 0xFD, 0x0C, 0xFD, 0x2B, 0xFD, 0xCB, 0xFD, 0xEA, 0xFC, 0x16, 0xFE, 0x42, + 0xFE, 0x65, 0xFE, 0x8F, 0xFE, 0xC7, 0xFF, 0x36, 0xFF, 0x71, 0xFF, 0xB7, 0xFF, 0xE5, 0xFF, 0xF0, + 0xFF, 0xFD, +}; + +constexpr SerializedHyphenationPatterns fi_patterns = { + 0x496u, + fi_trie_data, + sizeof(fi_trie_data), +}; diff --git a/lib/Epub/Epub/parsers/ChapterHtmlSlimParser.cpp b/lib/Epub/Epub/parsers/ChapterHtmlSlimParser.cpp index 31b94fbf63..a686b36601 100644 --- a/lib/Epub/Epub/parsers/ChapterHtmlSlimParser.cpp +++ b/lib/Epub/Epub/parsers/ChapterHtmlSlimParser.cpp @@ -22,6 +22,17 @@ constexpr size_t MIN_SIZE_FOR_POPUP = 10 * 1024; // 10KB constexpr size_t PARSE_BUFFER_SIZE = 1024; +// This number comes from PR #73 +// If we have > 750 words buffered up, perform the layout and consume out all but the last line +// There should be enough here to build out 1-2 full pages and doing this will free up a lot of +// memory. +// Spotted when reading Intermezzo, there are some really long text blocks in there. +constexpr size_t TEXT_BLOCK_SOFT_FLUSH_WORDS = 750; + +// When CSS is enabled, flush earlier to save RAM. 320 is still more than enough to build a CJK +// page at font size 14 +constexpr size_t TEXT_BLOCK_SOFT_FLUSH_WORDS_WITH_CSS = 320; + // Hard cap on the number of anchor IDs recorded per chapter. Legitimate navigation // anchors (TOC entries, footnotes, cross-references) rarely exceed a few hundred per // chapter. A runaway count usually means a converter injected machine-generated IDs on @@ -35,7 +46,7 @@ constexpr const char* BOLD_TAGS[] = {"b", "strong"}; constexpr const char* ITALIC_TAGS[] = {"i", "em"}; constexpr const char* UNDERLINE_TAGS[] = {"u", "ins"}; constexpr const char* LINETHROUGH_TAGS[] = {"del", "s", "strike"}; -constexpr const char* IMAGE_TAGS[] = {"img"}; +constexpr const char* IMAGE_TAGS[] = {"img", "image"}; constexpr const char* SKIP_TAGS[] = {"head"}; bool isWhitespace(const char c) { return c == ' ' || c == '\r' || c == '\n' || c == '\t'; } @@ -225,6 +236,7 @@ void ChapterHtmlSlimParser::flushPartWordBuffer() { currentTextBlock->addWord(partWordBuffer, fontStyle, false, nextWordContinues); partWordBufferIndex = 0; nextWordContinues = false; + listItemBulletOnly = false; } // start a new text block if needed @@ -239,8 +251,28 @@ void ChapterHtmlSlimParser::startNewTextBlock(const BlockStyle& blockStyle) { // open. Merge those into the new style so the first child in a container inherits // the container's vertical spacing. const auto style = currentTextBlock->getBlockStyle(); - currentTextBlock->setBlockStyle(style.getCombinedBlockStyle(blockStyle, BlockStyle::CombineAxis::Vertical)); + BlockStyle incoming = blockStyle; + if (style.fromBrElement) { + // The empty block was created by a
section separator. Inject a full line of + // blank space before the following paragraph so the scene/section break is visible. + // This only fires when the
block stayed empty (i.e. no inline text was added). + const int16_t lineHeight = static_cast(renderer.getLineHeight(fontId) * lineCompression + 0.5f); + incoming.marginTop = static_cast(incoming.marginTop + lineHeight); + } + + currentTextBlock->setBlockStyle(style.getCombinedBlockStyle(incoming, BlockStyle::CombineAxis::Vertical)); + + flushPendingAnchor(); + return; + } + //
  • added a bullet as the first word, making the block non-empty. When a nested + // block-level child (

    ,

    , etc.) opens, reuse the block instead of flushing + // the bullet to its own line. The bullet stays inline with the child's text. + if (listItemBulletOnly) { + const auto style = currentTextBlock->getBlockStyle(); + currentTextBlock->setBlockStyle(style.getCombinedBlockStyle(blockStyle, BlockStyle::CombineAxis::Vertical)); + listItemBulletOnly = false; flushPendingAnchor(); return; } @@ -252,6 +284,7 @@ void ChapterHtmlSlimParser::startNewTextBlock(const BlockStyle& blockStyle) { flushPendingAnchor(); currentTextBlock.reset(new ParsedText(extraParagraphSpacing, hyphenationEnabled, focusReadingEnabled, blockStyle)); wordsExtractedInBlock = 0; + listItemBulletOnly = false; } void ChapterHtmlSlimParser::emitHorizontalRule(const BlockStyle& blockStyle) { @@ -486,11 +519,18 @@ void XMLCALL ChapterHtmlSlimParser::startElement(void* userData, const XML_Char* for (int i = 0; atts[i]; i += 2) { if (strcmp(atts[i], "src") == 0) { src = atts[i + 1]; + } else if (src.empty() && (strcmp(atts[i], "href") == 0 || strcmp(atts[i], "xlink:href") == 0)) { + src = atts[i + 1]; } else if (strcmp(atts[i], "alt") == 0) { alt = atts[i + 1]; } } + const size_t fragmentPos = src.find('#'); + if (fragmentPos != std::string::npos) { + src.resize(fragmentPos); + } + // imageRendering: 0=display, 1=placeholder (alt text only), 2=suppress entirely if (self->imageRendering == 2) { self->skipUntilDepth = self->depth; @@ -498,19 +538,6 @@ void XMLCALL ChapterHtmlSlimParser::startElement(void* userData, const XML_Char* return; } - // Skip image if CSS display:none - if (self->cssParser) { - CssStyle imgDisplayStyle = self->cssParser->resolveStyle("img", classAttr); - if (!styleAttr.empty()) { - imgDisplayStyle.applyOver(CssParser::parseInlineStyle(styleAttr)); - } - if (imgDisplayStyle.hasDisplay() && imgDisplayStyle.display == CssDisplay::None) { - self->skipUntilDepth = self->depth; - self->depth += 1; - return; - } - } - if (!src.empty() && self->imageRendering != 1) { LOG_DBG("EHP", "Found image: src=%s", src.c_str()); @@ -534,24 +561,28 @@ void XMLCALL ChapterHtmlSlimParser::startElement(void* userData, const XML_Char* extractSuccess = self->epub->readItemContentsToStream(resolvedPath, cachedImageFile, 4096); cachedImageFile.flush(); cachedImageFile.close(); - delay(50); // Give SD card time to sync } if (extractSuccess) { - // Get image dimensions + // Get image dimensions, retrying to absorb SD-card sync latency on slow + // cards. Replaces a blanket delay(50) that cost ~50ms on every image, and + // closes the silent-drop bug where a single getDimensions failure was fatal. ImageDimensions dims = {0, 0}; ImageToFramebufferDecoder* decoder = ImageDecoderFactory::getDecoder(cachedImagePath); - if (decoder && decoder->getDimensions(cachedImagePath, dims)) { + bool gotDimensions = false; + for (int attempt = 0; attempt < 3 && !gotDimensions; attempt++) { + if (attempt > 0) { + delay(50); // Give a slow SD card time to finish syncing before retrying + } + gotDimensions = decoder && decoder->getDimensions(cachedImagePath, dims); + } + if (gotDimensions) { LOG_DBG("EHP", "Image dimensions: %dx%d", dims.width, dims.height); int displayWidth = 0; int displayHeight = 0; const float emSize = static_cast(self->renderer.getFontAscenderSize(self->fontId)); - CssStyle imgStyle = self->cssParser ? self->cssParser->resolveStyle("img", classAttr) : CssStyle{}; - // Merge inline style (e.g. style="height: 2em") so it overrides stylesheet rules - if (!styleAttr.empty()) { - imgStyle.applyOver(CssParser::parseInlineStyle(styleAttr)); - } + const CssStyle& imgStyle = cssStyle; const bool hasCssHeight = imgStyle.hasImageHeight(); const bool hasCssWidth = imgStyle.hasImageWidth(); @@ -855,7 +886,14 @@ void XMLCALL ChapterHtmlSlimParser::startElement(void* userData, const XML_Char* // flush word preceding
    to currentTextBlock before calling startNewTextBlock self->flushPartWordBuffer(); } - self->startNewTextBlock(self->blockStyleStack.back().withoutBottom()); + // Tag the new block so startNewTextBlock can inject a full line-height gap if + // the block remains empty (i.e.
    is a section separator between paragraphs). + // If the block gets text added before the next block opens it becomes non-empty, + // goes through makePages() normally, and the flag has no effect (inline
    case). + BlockStyle brStyle = + self->currentTextBlock ? self->currentTextBlock->getBlockStyle() : self->blockStyleStack.back(); + brStyle.fromBrElement = true; + self->startNewTextBlock(brStyle); } else { self->currentCssStyle = cssStyle; const auto accumulated = self->blockStyleStack.back().getCombinedBlockStyle(userAlignmentBlockStyle, @@ -866,6 +904,7 @@ void XMLCALL ChapterHtmlSlimParser::startElement(void* userData, const XML_Char* if (strcmp(name, "li") == 0) { self->currentTextBlock->addWord("\xe2\x80\xa2", EpdFontFamily::REGULAR); + self->listItemBulletOnly = true; } } } else if (matches(name, UNDERLINE_TAGS, std::size(UNDERLINE_TAGS))) { @@ -1115,24 +1154,28 @@ void XMLCALL ChapterHtmlSlimParser::characterData(void* userData, const XML_Char } self->partWordBufferIndex = safeLen; self->flushPartWordBuffer(); + self->nextWordContinues = true; for (int j = 0; j < overflow; j++) { self->partWordBuffer[j] = saved[j]; } self->partWordBufferIndex = overflow; } else { self->flushPartWordBuffer(); + self->nextWordContinues = true; } } self->partWordBuffer[self->partWordBufferIndex++] = s[i]; } - // If we have > 750 words buffered up, perform the layout and consume out all but the last line - // There should be enough here to build out 1-2 full pages and doing this will free up a lot of - // memory. - // Spotted when reading Intermezzo, there are some really long text blocks in there. - if (self->currentTextBlock->size() > 750) { - LOG_DBG("EHP", "Text block too long, splitting into multiple pages"); + // Keep token growth bounded: CSS-heavy spans can fragment text into many tiny + // words, so flush earlier when embedded CSS is active. We still keep the + // "exclude last line" behavior to preserve paragraph flow across chunks. + const size_t blockWordCount = self->currentTextBlock->size(); + const size_t softFlushThreshold = + self->embeddedStyle ? TEXT_BLOCK_SOFT_FLUSH_WORDS_WITH_CSS : TEXT_BLOCK_SOFT_FLUSH_WORDS; + if (blockWordCount > softFlushThreshold) { + LOG_DBG("EHP", "Text block soft flush (%u words)", static_cast(blockWordCount)); const int horizontalInset = self->currentTextBlock->getBlockStyle().totalHorizontalInset(); const uint16_t effectiveWidth = (horizontalInset < self->viewportWidth) ? static_cast(self->viewportWidth - horizontalInset) @@ -1272,10 +1315,19 @@ void XMLCALL ChapterHtmlSlimParser::endElement(void* userData, const XML_Char* n } self->blockStyleStack.pop_back(); } + + //
  • closes: if the bullet never got inline text (empty
  • or
  • with only + // block children that were flushed), clear the flag so the next sibling doesn't + // merge into this block. + if (strcmp(name, "li") == 0) { + self->listItemBulletOnly = false; + } } } -bool ChapterHtmlSlimParser::parseAndBuildPages() { +ChapterHtmlSlimParser::~ChapterHtmlSlimParser() { abortParse(); } + +bool ChapterHtmlSlimParser::beginParse() { // Initialize block style stack with a root entry representing "no ancestor block elements". // The user's paragraph alignment is set as the default so child elements without explicit // text-align inherit it correctly through getCombinedBlockStyle. @@ -1293,67 +1345,78 @@ bool ChapterHtmlSlimParser::parseAndBuildPages() { paragraphAlignmentBlockStyle.alignment = align; startNewTextBlock(paragraphAlignmentBlockStyle); - XML_Parser parser = XML_ParserCreate(nullptr); - int done; - - if (!parser) { + xmlParser_ = XML_ParserCreate(nullptr); + if (!xmlParser_) { LOG_ERR("EHP", "Couldn't allocate memory for parser"); return false; } // Handle HTML entities (like  ) that aren't in XML spec or DTD // Using DefaultHandlerExpand preserves normal entity expansion from DOCTYPE - XML_SetDefaultHandlerExpand(parser, defaultHandlerExpand); + XML_SetDefaultHandlerExpand(xmlParser_, defaultHandlerExpand); - HalFile file; - if (!Storage.openFileForRead("EHP", filepath, file)) { - destroyXmlParser(parser); + if (!Storage.openFileForRead("EHP", filepath, parseFile_)) { + destroyXmlParser(xmlParser_); + xmlParser_ = nullptr; return false; } // Get file size to decide whether to show indexing popup. - if (popupFn && file.size() >= MIN_SIZE_FOR_POPUP) { + if (popupFn && parseFile_.size() >= MIN_SIZE_FOR_POPUP) { popupFn(); } - XML_SetUserData(parser, this); - XML_SetElementHandler(parser, startElement, endElement); - XML_SetCharacterDataHandler(parser, characterData); + XML_SetUserData(xmlParser_, this); + XML_SetElementHandler(xmlParser_, startElement, endElement); + XML_SetCharacterDataHandler(xmlParser_, characterData); - // Compute the time taken to parse and build pages - const uint32_t chapterStartTime = millis(); - do { - void* const buf = XML_GetBuffer(parser, PARSE_BUFFER_SIZE); - if (!buf) { - LOG_ERR("EHP", "Couldn't allocate memory for buffer"); - destroyXmlParser(parser); - file.close(); - return false; - } + parseStartTime_ = millis(); + return true; +} - const size_t len = file.read(buf, PARSE_BUFFER_SIZE); +ChapterHtmlSlimParser::ParseStatus ChapterHtmlSlimParser::parseStep() { + void* const buf = XML_GetBuffer(xmlParser_, PARSE_BUFFER_SIZE); + if (!buf) { + LOG_ERR("EHP", "Couldn't allocate memory for buffer"); + return ParseStatus::Error; + } - if (len == 0 && file.available() > 0) { - LOG_ERR("EHP", "File read error"); - destroyXmlParser(parser); - file.close(); - return false; - } + const size_t len = parseFile_.read(buf, PARSE_BUFFER_SIZE); - done = file.available() == 0; + if (len == 0 && parseFile_.available() > 0) { + LOG_ERR("EHP", "File read error"); + return ParseStatus::Error; + } - if (XML_ParseBuffer(parser, static_cast(len), done) == XML_STATUS_ERROR) { - LOG_ERR("EHP", "Parse error at line %lu:\n%s", XML_GetCurrentLineNumber(parser), - XML_ErrorString(XML_GetErrorCode(parser))); - destroyXmlParser(parser); - file.close(); - return false; - } - } while (!done); - LOG_DBG("EHP", "Time to parse and build pages: %lu ms", millis() - chapterStartTime); + const int done = parseFile_.available() == 0; + + if (XML_ParseBuffer(xmlParser_, static_cast(len), done) == XML_STATUS_ERROR) { + LOG_ERR("EHP", "Parse error at line %lu:\n%s", XML_GetCurrentLineNumber(xmlParser_), + XML_ErrorString(XML_GetErrorCode(xmlParser_))); + return ParseStatus::Error; + } + + return done ? ParseStatus::Done : ParseStatus::More; +} - destroyXmlParser(parser); - file.close(); +void ChapterHtmlSlimParser::abortParse() { + if (xmlParser_) { + destroyXmlParser(xmlParser_); + xmlParser_ = nullptr; + } + // Only close the file if it was successfully opened in beginParse() + if (parseFile_.isOpen()) { + parseFile_.close(); + } +} + +bool ChapterHtmlSlimParser::finishParse() { + if (xmlParser_) { + LOG_DBG("EHP", "Time to parse and build pages: %lu ms", millis() - parseStartTime_); + destroyXmlParser(xmlParser_); + xmlParser_ = nullptr; + } + parseFile_.close(); // Process last page if there is still text if (currentTextBlock) { @@ -1371,6 +1434,23 @@ bool ChapterHtmlSlimParser::parseAndBuildPages() { return true; } +bool ChapterHtmlSlimParser::parseAndBuildPages() { + if (!beginParse()) { + return false; + } + for (;;) { + const ParseStatus status = parseStep(); + if (status == ParseStatus::Error) { + abortParse(); + return false; + } + if (status == ParseStatus::Done) { + break; + } + } + return finishParse(); +} + void ChapterHtmlSlimParser::addLineToPage(std::shared_ptr line) { const int lineHeight = renderer.getLineHeight(fontId) * lineCompression; diff --git a/lib/Epub/Epub/parsers/ChapterHtmlSlimParser.h b/lib/Epub/Epub/parsers/ChapterHtmlSlimParser.h index 4e619ae34f..9cc01e6957 100644 --- a/lib/Epub/Epub/parsers/ChapterHtmlSlimParser.h +++ b/lib/Epub/Epub/parsers/ChapterHtmlSlimParser.h @@ -1,5 +1,6 @@ #pragma once +#include #include #include @@ -79,6 +80,7 @@ class ChapterHtmlSlimParser { int tableDepth = 0; int tableRowIndex = 0; int tableColIndex = 0; + bool listItemBulletOnly = false; // true when currentTextBlock has only the
  • bullet // Anchor-to-page mapping: tracks which page each HTML id attribute lands on int completedPageCount = 0; @@ -96,6 +98,16 @@ class ChapterHtmlSlimParser { std::vector> pendingFootnotes; // int wordsExtractedInBlock = 0; + // Resumable parse state. The one-shot parseAndBuildPages() drives these + // internally; the incremental section builder drives them across render ticks + // so a large single chapter can yield between pages instead of blocking the UI + // until the whole thing is laid out. parseFile_ and the expat parser stay alive + // for the lifetime of the parse so it can be paused and resumed at buffer + // boundaries. + XML_Parser xmlParser_ = nullptr; + HalFile parseFile_; + uint32_t parseStartTime_ = 0; + void updateEffectiveInlineStyle(); void startNewTextBlock(const BlockStyle& blockStyle); void flushPendingAnchor(); @@ -144,8 +156,28 @@ class ChapterHtmlSlimParser { imageBasePath(imageBasePath), tocAnchors(std::move(tocAnchors)) {} - ~ChapterHtmlSlimParser() = default; + ~ChapterHtmlSlimParser(); + + // One-shot parse: builds every page before returning (begin + step* + finish). bool parseAndBuildPages(); + + // Resumable parse, for the incremental section builder. Drive as: + // if (!beginParse()) fail; + // loop: switch (parseStep()) { More: keep going / yield; Done: finishParse(); Error: abortParse(); } + // Pages are emitted via completePageFn as they complete during parseStep(), so + // the caller can stop once enough pages are built and resume on a later tick. + enum class ParseStatus { More, Done, Error }; + bool beginParse(); + ParseStatus parseStep(); + bool finishParse(); // flush the trailing page and tear down; returns true + void abortParse(); // tear down without flushing (error / abandon) + void addLineToPage(std::shared_ptr line); const std::vector>& getAnchors() const { return anchorData; } + + // Byte progress of the in-flight parse, used to estimate a still-building section's total page + // count (a giant single-spine book never fully lays out, so its real count is unknown). Valid + // between beginParse() and finishParse()/abortParse(). + size_t parseBytesConsumed() { return parseFile_ ? parseFile_.position() : 0; } + size_t parseTotalBytes() { return parseFile_ ? parseFile_.size() : 0; } }; diff --git a/lib/Epub/Epub/parsers/ContentOpfParser.cpp b/lib/Epub/Epub/parsers/ContentOpfParser.cpp index 85bc7a68d3..04a0a3dece 100644 --- a/lib/Epub/Epub/parsers/ContentOpfParser.cpp +++ b/lib/Epub/Epub/parsers/ContentOpfParser.cpp @@ -137,8 +137,10 @@ void XMLCALL ContentOpfParser::startElement(void* userData, const XML_Char* name LOG_ERR("COF", "Couldn't open temp items file for reading. This is probably going to be a fatal error."); } - // Sort item index for binary search if we have enough items - if (self->itemIndex.size() >= LARGE_SPINE_THRESHOLD) { + // Sort the (unconditionally-built) item index so every idref lookup uses binary + // search. Without this, small/medium manifests fell back to an O(spine × manifest) + // linear rescan of .items.bin per itemref (up to ~200ms/item at large scale). + if (!self->itemIndex.empty()) { std::sort(self->itemIndex.begin(), self->itemIndex.end(), [](const ItemIndexEntry& a, const ItemIndexEntry& b) { return a.idHash < b.idHash || (a.idHash == b.idHash && a.idLen < b.idLen); }); @@ -284,9 +286,8 @@ void XMLCALL ContentOpfParser::startElement(void* userData, const XML_Char* name ++it; } } else { - // Slow path: linear scan (for small manifests, keeps original behavior) - // TODO: This lookup is slow as need to scan through all items each time. - // It can take up to 200ms per item when getting to 1500 items. + // Fallback linear scan, only reached when the index is empty (no manifest + // items). The fast binary-search path above is used for all real manifests. self->tempItemStore.seek(0); std::string itemId; while (self->tempItemStore.available()) { diff --git a/lib/Epub/Epub/parsers/ContentOpfParser.h b/lib/Epub/Epub/parsers/ContentOpfParser.h index 0a0e51ba9f..c037313333 100644 --- a/lib/Epub/Epub/parsers/ContentOpfParser.h +++ b/lib/Epub/Epub/parsers/ContentOpfParser.h @@ -32,7 +32,7 @@ class ContentOpfParser final : public Print { HalFile tempItemStore; std::string coverItemId; - // Index for fast idref→href lookup (used only for large EPUBs) + // Index for fast idref→href lookup (binary search over .items.bin) struct ItemIndexEntry { uint32_t idHash; // FNV-1a hash of itemId uint16_t idLen; // length for collision reduction @@ -41,8 +41,6 @@ class ContentOpfParser final : public Print { std::deque itemIndex; bool useItemIndex = false; - static constexpr uint16_t LARGE_SPINE_THRESHOLD = 400; - // FNV-1a hash function static uint32_t fnvHash(const std::string& s) { uint32_t hash = 2166136261u; diff --git a/lib/FsHelpers/FsHelpers.cpp b/lib/FsHelpers/FsHelpers.cpp index 6b31563374..6f686688c3 100644 --- a/lib/FsHelpers/FsHelpers.cpp +++ b/lib/FsHelpers/FsHelpers.cpp @@ -79,6 +79,53 @@ std::string normalisePath(const std::string& path) { return result; } +bool naturalLess(const std::string& str1, const std::string& str2) { + // Naive natural sort: numeric-aware, case-insensitive + const char* s1 = str1.c_str(); + const char* s2 = str2.c_str(); + + // ctype functions require unsigned char values: passing a negative char (UTF-8 + // bytes above 0x7f with signed char) is undefined behavior + const auto isDigit = [](const char c) { return isdigit(static_cast(c)) != 0; }; + + // Iterate while both strings have characters + while (*s1 && *s2) { + // Check if both are at the start of a number + if (isDigit(*s1) && isDigit(*s2)) { + // Skip leading zeros and track them + while (*s1 == '0') s1++; + while (*s2 == '0') s2++; + + // Count digits to compare lengths first + int len1 = 0, len2 = 0; + while (isDigit(s1[len1])) len1++; + while (isDigit(s2[len2])) len2++; + + // Different length so return smaller integer value + if (len1 != len2) return len1 < len2; + + // Same length so compare digit by digit + for (int i = 0; i < len1; i++) { + if (s1[i] != s2[i]) return s1[i] < s2[i]; + } + + // Numbers equal so advance pointers + s1 += len1; + s2 += len2; + } else { + // Regular case-insensitive character comparison + const int c1 = tolower(static_cast(*s1)); + const int c2 = tolower(static_cast(*s2)); + if (c1 != c2) return c1 < c2; + s1++; + s2++; + } + } + + // One string is prefix of other + return *s1 == '\0' && *s2 != '\0'; +} + void sortFileList(std::vector& strs) { std::sort(begin(strs), end(strs), [](const std::string& str1, const std::string& str2) { // Directories first @@ -86,46 +133,7 @@ void sortFileList(std::vector& strs) { bool isDir2 = str2.back() == '/'; if (isDir1 != isDir2) return isDir1; - // Start naive natural sort - const char* s1 = str1.c_str(); - const char* s2 = str2.c_str(); - - // Iterate while both strings have characters - while (*s1 && *s2) { - // Check if both are at the start of a number - if (isdigit(*s1) && isdigit(*s2)) { - // Skip leading zeros and track them - while (*s1 == '0') s1++; - while (*s2 == '0') s2++; - - // Count digits to compare lengths first - int len1 = 0, len2 = 0; - while (isdigit(s1[len1])) len1++; - while (isdigit(s2[len2])) len2++; - - // Different length so return smaller integer value - if (len1 != len2) return len1 < len2; - - // Same length so compare digit by digit - for (int i = 0; i < len1; i++) { - if (s1[i] != s2[i]) return s1[i] < s2[i]; - } - - // Numbers equal so advance pointers - s1 += len1; - s2 += len2; - } else { - // Regular case-insensitive character comparison - char c1 = tolower(*s1); - char c2 = tolower(*s2); - if (c1 != c2) return c1 < c2; - s1++; - s2++; - } - } - - // One string is prefix of other - return *s1 == '\0' && *s2 != '\0'; + return naturalLess(str1, str2); }); } diff --git a/lib/FsHelpers/FsHelpers.h b/lib/FsHelpers/FsHelpers.h index 728b190f3d..87abd5444c 100644 --- a/lib/FsHelpers/FsHelpers.h +++ b/lib/FsHelpers/FsHelpers.h @@ -11,6 +11,10 @@ std::string decodeUriEscapes(const std::string& path); std::string normalisePath(const std::string& path); +// Numeric-aware, case-insensitive comparison ("2" < "10"). Returns true when str1 orders +// before str2. Same ordering sortFileList applies within the file/directory groups. +bool naturalLess(const std::string& str1, const std::string& str2); + void sortFileList(std::vector& strs); /** diff --git a/lib/GfxRenderer/GfxRenderer.cpp b/lib/GfxRenderer/GfxRenderer.cpp index 1e9ad982b0..17f0ca3dcd 100644 --- a/lib/GfxRenderer/GfxRenderer.cpp +++ b/lib/GfxRenderer/GfxRenderer.cpp @@ -1,6 +1,7 @@ #include "GfxRenderer.h" #include +#include #include #include #include @@ -24,6 +25,36 @@ uint8_t resolveSdCardStyle(const SdCardFont& font, const EpdFontFamily::Style st namespace { const char* resolveVisualText(const char* text, std::string& visualBuffer, BidiUtils::BidiBaseDir baseDir); + +// Appends the shaped visual form of every RTL token in `text` to `shapedOut`. +// getTextAdvanceX() measures the bidi-reordered, Arabic-shaped codepoint stream, +// so the SD advance table must be warmed with the presentation forms as well as +// the logical codepoints — otherwise every RTL word measurement misses the fast +// path and falls through to onGlyphMiss(), which opens the .cpfont and reads +// glyph metadata + bitmap into the 8-slot overflow ring, once per glyph. +// Tokens without RTL lead bytes (0xD6-0xDB) are skipped with a byte scan, so +// pure-LTR text pays almost nothing. +void appendShapedRtlTokens(const char* text, std::string& shapedOut) { + const auto isBreak = [](const char c) { return c == ' ' || c == '\n' || c == '\r' || c == '\t'; }; + std::string token; + std::string visual; + const char* p = text; + while (*p) { + while (*p && isBreak(*p)) ++p; + const char* start = p; + bool hasRtlBytes = false; + while (*p && !isBreak(*p)) { + const auto b = static_cast(*p); + hasRtlBytes = hasRtlBytes || (b >= 0xD6 && b <= 0xDB); + ++p; + } + if (!hasRtlBytes) continue; + token.assign(start, p - start); + if (BidiUtils::applyBidiVisual(token.c_str(), visual, static_cast(BidiUtils::BidiBaseDir::AUTO))) { + shapedOut += visual; + } + } +} } // namespace const uint8_t* GfxRenderer::getGlyphBitmap(const EpdFontData* fontData, const EpdGlyph* glyph) const { @@ -57,7 +88,9 @@ const uint8_t* GfxRenderer::getGlyphBitmap(const EpdFontData* fontData, const Ep void GfxRenderer::ensureSdCardFontReady(int fontId, const char* utf8Text, uint8_t styleMask) const { auto it = sdCardFonts_.find(fontId); if (it != sdCardFonts_.end()) { - int missed = it->second->buildAdvanceTable(utf8Text, styleMask); + std::string shaped; + appendShapedRtlTokens(utf8Text, shaped); + int missed = it->second->buildAdvanceTable(utf8Text, styleMask, shaped.empty() ? nullptr : shaped.c_str()); if (missed > 0) { LOG_DBG("GFX", "ensureSdCardFontReady: %d glyph(s) not found", missed); } @@ -71,7 +104,12 @@ void GfxRenderer::ensureSdCardFontReady(int fontId, const std::vectorsecond->buildAdvanceTable(words, includeHyphen, styleMask); + std::string shaped; + for (const auto& w : words) { + appendShapedRtlTokens(w.c_str(), shaped); + } + int missed = + it->second->buildAdvanceTable(words, includeHyphen, styleMask, shaped.empty() ? nullptr : shaped.c_str()); if (missed > 0) { LOG_DBG("GFX", "ensureSdCardFontReady: %d glyph(s) not found", missed); } @@ -91,6 +129,47 @@ void GfxRenderer::begin() { bwBufferChunks.assign((frameBufferSize + BW_BUFFER_CHUNK_SIZE - 1) / BW_BUFFER_CHUNK_SIZE, nullptr); } +void GfxRenderer::releaseFrameBufferForBuild() { + // Lend the framebuffer's bytes IN PLACE: the allocation is never freed, so + // it cannot move and repeated loans cannot fragment the heap (the previous + // free+realloc model measurably decayed the max contiguous block over a + // session). The bytes are deposited in the build-scratch registry so + // memory-hungry build phases (e.g. InflateStream's tinfl state + window) + // can claim them instead of allocating. + uint32_t size = 0; + uint8_t* scratch = display.lendFrameBufferStorage(&size); + frameBuffer = nullptr; + if (scratch) { + buildscratch::lend(scratch, size); + } +} + +bool GfxRenderer::restoreFrameBufferAfterBuild() { + buildscratch::reclaim(); + display.returnFrameBufferStorage(); // cannot fail: the allocation was never freed + frameBuffer = display.getFrameBuffer(); + return frameBuffer != nullptr; +} + +GfxRenderer::FrameBufferLoan::FrameBufferLoan(GfxRenderer& renderer) : renderer_(renderer) { + // Nesting guard: if the framebuffer is already lent out (an outer loan), + // stay inert so this end() cannot return storage the outer loan still owns. + if (!renderer_.hasFrameBuffer()) return; + renderer_.releaseFrameBufferForBuild(); + active_ = true; +} + +void GfxRenderer::FrameBufferLoan::end() { + if (!active_) return; + active_ = false; + if (!renderer_.restoreFrameBufferAfterBuild()) { + // Only reachable if the framebuffer never existed, which begin() already + // asserts against; kept as a backstop since running blind helps nobody. + LOG_ERR("GFX", "Framebuffer restore failed - restarting"); + ESP.restart(); + } +} + bool GfxRenderer::isFontCacheScanning() const { return fontCacheManager_ && fontCacheManager_->isScanning(); } void GfxRenderer::insertFont(const int fontId, EpdFontFamily font) { @@ -134,6 +213,61 @@ static inline void rotateCoordinates(const GfxRenderer::Orientation orientation, } } +// Output of screenRectToAlignedMemRect: a rectangle in panel-memory +// coordinates whose x and width are guaranteed to be multiples of 8 (the +// SDK's EInkDisplay::displayWindow alignment requirement). `valid == false` +// means the input was empty or fully outside the panel. +struct AlignedMemRect { + uint16_t x = 0; + uint16_t y = 0; + uint16_t w = 0; + uint16_t h = 0; + bool valid = false; +}; + +// Translate a screen-coordinate rectangle (the coordinate system used by +// fillRect / drawText / the rest of the renderer's public API) into a +// panel-memory rectangle suitable for direct framebuffer indexing. Rotates +// the rectangle's two opposite corners with rotateCoordinates(), takes the +// bounding box (which naturally swaps width/height in Portrait / +// PortraitInverted), then snaps the x extent outward to multiples of 8 and +// clamps to panel bounds. Precondition: panel dims are multiples of 8 (true +// for the 800x480 panel), so clamping cannot re-break alignment. +static AlignedMemRect screenRectToAlignedMemRect(GfxRenderer::Orientation orientation, int sx, int sy, int sw, int sh, + uint16_t panelWidth, uint16_t panelHeight) { + AlignedMemRect out; + if (sw <= 0 || sh <= 0) return out; + + int x0, y0, x1, y1; + rotateCoordinates(orientation, sx, sy, &x0, &y0, panelWidth, panelHeight); + rotateCoordinates(orientation, sx + sw - 1, sy + sh - 1, &x1, &y1, panelWidth, panelHeight); + + const int memXLo = std::min(x0, x1); + const int memYLo = std::min(y0, y1); + const int memXHi = std::max(x0, x1) + 1; // exclusive upper bound + const int memYHi = std::max(y0, y1) + 1; + + // Snap x outward to multiples of 8. + int alignedXLo = memXLo & ~0x7; // round down + int alignedXHi = (memXHi + 7) & ~0x7; // round up + + if (alignedXLo < 0) alignedXLo = 0; + if (alignedXHi > panelWidth) alignedXHi = panelWidth; + int clampedYLo = memYLo; + int clampedYHi = memYHi; + if (clampedYLo < 0) clampedYLo = 0; + if (clampedYHi > panelHeight) clampedYHi = panelHeight; + + if (alignedXHi <= alignedXLo || clampedYHi <= clampedYLo) return out; + + out.x = static_cast(alignedXLo); + out.y = static_cast(clampedYLo); + out.w = static_cast(alignedXHi - alignedXLo); + out.h = static_cast(clampedYHi - clampedYLo); + out.valid = true; + return out; +} + enum class TextRotation { None, Rotated90CW }; // Shared glyph rendering logic for normal and rotated text. @@ -418,18 +552,21 @@ void GfxRenderer::drawText(const int fontId, const int x, const int y, const cha uint32_t cp; uint32_t prevCp = 0; while ((cp = utf8NextCodepoint(reinterpret_cast(&textCursor)))) { - // Skip Hebrew Niqqud (vowel marks) - // Temporary: avoid adding Niqqud to built-in fonts. Remove when custom fonts are supported. - if (cp >= 0x0591 && cp <= 0x05C7) { - continue; - } - - if (utf8IsCombiningMark(cp)) { + // RTL vowel marks (Hebrew niqqud, Arabic harakat) ride the combining-mark + // path: zero-advance overlays on the preceding base glyph (applyBidiVisual + // emits base-then-marks per UAX#9 L3). anchorFor pins position-sensitive + // niqqud (dagesh, shin/sin dots, holam) to their spot on the base; other + // marks stay centered, raised above the base or (kasra) at their + // font-native position. Fonts without their glyphs — the built-ins — miss + // the getGlyph lookup and skip them, as before. + if (utf8IsCombiningMark(cp) || BidiUtils::isTransparentMark(cp)) { const EpdGlyph* combiningGlyph = font.getGlyph(cp, style); if (!combiningGlyph) continue; - const int raiseBy = combiningMark::raiseAboveBase(combiningGlyph->top, combiningGlyph->height, lastBaseTop); - const int combiningX = combiningMark::centerOver(lastBaseX, lastBaseLeft, lastBaseWidth, combiningGlyph->left, - combiningGlyph->width); + const auto anchor = combiningMark::anchorFor(cp); + const int raiseBy = + combiningMark::raiseAboveBase(anchor, combiningGlyph->top, combiningGlyph->height, lastBaseTop); + const int combiningX = combiningMark::anchorOver(anchor, lastBaseX, lastBaseLeft, lastBaseWidth, + combiningGlyph->left, combiningGlyph->width); renderCharImpl(*this, renderMode, font, cp, combiningX, yPos - raiseBy, black, style); continue; } @@ -1369,6 +1506,53 @@ void GfxRenderer::displayBuffer(const HalDisplay::RefreshMode refreshMode) const display.displayBuffer(refreshMode, fadingFix); } +void GfxRenderer::displayBufferAsync(const HalDisplay::RefreshMode refreshMode) const { + // The async path has no turn-off-screen hook, which the sunlight fading fix + // relies on; keep those users on the blocking path. + if (fadingFix) { + display.displayBuffer(refreshMode, fadingFix); + return; + } + display.displayBufferAsync(refreshMode); +} + +void GfxRenderer::waitRefreshComplete() const { display.waitRefreshComplete(); } + +bool GfxRenderer::supportsAsyncRefresh() const { return !fadingFix && display.supportsAsyncRefresh(); } + +size_t GfxRenderer::readFramebufferRegion(int x, int y, int w, int h, uint8_t* dst, size_t dstCapacity) const { + if (dst == nullptr || w <= 0 || h <= 0) return 0; + + const AlignedMemRect mem = screenRectToAlignedMemRect(orientation, x, y, w, h, panelWidth, panelHeight); + if (!mem.valid) return 0; + + const size_t rowBytes = mem.w / 8; // exact: mem.w is a multiple of 8 + const size_t needed = rowBytes * mem.h; + if (needed > dstCapacity) return 0; + + for (uint16_t row = 0; row < mem.h; ++row) { + const uint8_t* srcRow = frameBuffer + (static_cast(mem.y + row) * panelWidthBytes) + (mem.x / 8); + uint8_t* dstRow = dst + (static_cast(row) * rowBytes); + memcpy(dstRow, srcRow, rowBytes); + } + return needed; +} + +void GfxRenderer::writeFramebufferRegion(int x, int y, int w, int h, const uint8_t* src) { + if (src == nullptr || w <= 0 || h <= 0) return; + + const AlignedMemRect mem = screenRectToAlignedMemRect(orientation, x, y, w, h, panelWidth, panelHeight); + if (!mem.valid) return; + + const size_t rowBytes = mem.w / 8; // exact: mem.w is a multiple of 8 + + for (uint16_t row = 0; row < mem.h; ++row) { + const uint8_t* srcRow = src + (static_cast(row) * rowBytes); + uint8_t* dstRow = frameBuffer + (static_cast(mem.y + row) * panelWidthBytes) + (mem.x / 8); + memcpy(dstRow, srcRow, rowBytes); + } +} + std::string GfxRenderer::truncatedText(const int fontId, const char* text, const int maxWidth, const EpdFontFamily::Style style) const { if (!text || maxWidth <= 0) return ""; @@ -1482,6 +1666,35 @@ int GfxRenderer::getScreenHeight() const { return panelWidth; } +void GfxRenderer::tapToLogical(float nx, float ny, int& outX, int& outY) const { + int phyX = static_cast(nx * panelWidth); + int phyY = static_cast(ny * panelHeight); + if (phyX < 0) phyX = 0; + if (phyX > panelWidth - 1) phyX = panelWidth - 1; + if (phyY < 0) phyY = 0; + if (phyY > panelHeight - 1) phyY = panelHeight - 1; + + switch (orientation) { + case Portrait: + outX = panelHeight - 1 - phyY; + outY = phyX; + break; + case PortraitInverted: + outX = phyY; + outY = panelWidth - 1 - phyX; + break; + case LandscapeClockwise: + outX = panelWidth - 1 - phyX; + outY = panelHeight - 1 - phyY; + break; + case LandscapeCounterClockwise: + default: + outX = phyX; + outY = phyY; + break; + } +} + // Translate a logical rect through rotateCoordinates and take the bounding // box of its four corners on the physical panel. Output coords are inclusive // and clamped. Returns false if the rect ends up fully off-panel. @@ -1615,6 +1828,15 @@ int GfxRenderer::getKerning(const int fontId, const uint32_t leftCp, const uint3 } int GfxRenderer::getTextAdvanceX(const int fontId, const char* text, EpdFontFamily::Style style) const { + // Measure the exact codepoint stream drawText renders: bidi-reordered and + // Arabic-shaped (contextual presentation forms, Lam-Alef collapse). + // Measuring the raw logical text counts the Alef a ligature absorbs and + // uses base-letter advances instead of presentation-form advances, so RTL + // lines come out wider than they draw — uneven word gaps and a ragged + // right margin. + std::string visual; + text = resolveVisualText(text, visual, BidiUtils::BidiBaseDir::AUTO); + // Advance table fast-path for SD card fonts during layout. // No kerning/ligature lookup — consistent with previous metadataOnly behavior // where kern/lig data was not loaded. @@ -1630,6 +1852,10 @@ int GfxRenderer::getTextAdvanceX(const int fontId, const char* text, EpdFontFami } const auto& font = fontIt->second; while (uint32_t cp = utf8NextCodepoint(reinterpret_cast(&text))) { + // RTL vowel marks (niqqud/harakat) are zero-advance overlays in drawText — no width. + if (BidiUtils::isTransparentMark(cp)) { + continue; + } int32_t advFP = sdIt->second->getAdvance(cp, styleIdx); if (advFP == 0 && !utf8IsCombiningMark(cp)) { const EpdGlyph* glyph = font.getGlyph(cp, style); @@ -1652,6 +1878,10 @@ int GfxRenderer::getTextAdvanceX(const int fontId, const char* text, EpdFontFami int32_t prevAdvanceFP = 0; // 12.4 fixed-point: prev glyph's advance + next kern for snap const auto& font = fontIt->second; while ((cp = utf8NextCodepoint(reinterpret_cast(&text)))) { + // RTL vowel marks (niqqud/harakat) are zero-advance overlays in drawText — no width. + if (BidiUtils::isTransparentMark(cp)) { + continue; + } if (utf8IsCombiningMark(cp)) { continue; } @@ -1728,18 +1958,21 @@ void GfxRenderer::drawTextRotated90CW(const int fontId, const int x, const int y uint32_t cp; uint32_t prevCp = 0; while ((cp = utf8NextCodepoint(reinterpret_cast(&text)))) { - // Skip Hebrew Niqqud (vowel marks) - // Temporary: avoid adding Niqqud to built-in fonts. Remove when custom fonts are supported. - if (cp >= 0x0591 && cp <= 0x05C7) { - continue; - } - - if (utf8IsCombiningMark(cp)) { + // RTL vowel marks (Hebrew niqqud, Arabic harakat) ride the combining-mark + // path: zero-advance overlays on the preceding base glyph (applyBidiVisual + // emits base-then-marks per UAX#9 L3). anchorFor pins position-sensitive + // niqqud (dagesh, shin/sin dots, holam) to their spot on the base; other + // marks stay centered, raised above the base or (kasra) at their + // font-native position. Fonts without their glyphs — the built-ins — miss + // the getGlyph lookup and skip them, as before. + if (utf8IsCombiningMark(cp) || BidiUtils::isTransparentMark(cp)) { const EpdGlyph* combiningGlyph = font.getGlyph(cp, style); if (!combiningGlyph) continue; - const int raiseBy = combiningMark::raiseAboveBase(combiningGlyph->top, combiningGlyph->height, lastBaseTop); + const auto anchor = combiningMark::anchorFor(cp); + const int raiseBy = + combiningMark::raiseAboveBase(anchor, combiningGlyph->top, combiningGlyph->height, lastBaseTop); const int combiningX = x - raiseBy; - const int combiningY = combiningMark::centerOverRotated90CW(lastBaseY, lastBaseLeft, lastBaseWidth, + const int combiningY = combiningMark::anchorOverRotated90CW(anchor, lastBaseY, lastBaseLeft, lastBaseWidth, combiningGlyph->left, combiningGlyph->width); renderCharImpl(*this, renderMode, font, cp, combiningX, combiningY, black, style); continue; diff --git a/lib/GfxRenderer/GfxRenderer.h b/lib/GfxRenderer/GfxRenderer.h index 5aa9ae7264..a23c01bdb8 100644 --- a/lib/GfxRenderer/GfxRenderer.h +++ b/lib/GfxRenderer/GfxRenderer.h @@ -134,7 +134,19 @@ class GfxRenderer { // Screen ops int getScreenWidth() const; int getScreenHeight() const; + void tapToLogical(float nx, float ny, int& outX, int& outY) const; void displayBuffer(HalDisplay::RefreshMode refreshMode = HalDisplay::FAST_REFRESH) const; + // Non-blocking refresh: starts the waveform and returns so CPU work (e.g. + // grayscale strip rendering) can overlap the panel's refresh time. The + // framebuffer must stay untouched until waitRefreshComplete(). Falls back to + // a blocking refresh when fadingFix is enabled or the panel lacks deferral + // support. See HalDisplay::displayBufferAsync for the baseline contract. + void displayBufferAsync(HalDisplay::RefreshMode refreshMode = HalDisplay::FAST_REFRESH) const; + void waitRefreshComplete() const; + // True when displayBufferAsync() genuinely overlaps: panel defers and + // fadingFix isn't forcing the blocking path. Callers can skip overlap + // scaffolding (e.g. whole-plane grayscale buffers) when false. + bool supportsAsyncRefresh() const; // EXPERIMENTAL: Windowed update - display only a rectangular region // void displayWindow(int x, int y, int width, int height) const; void invertScreen() const; @@ -189,6 +201,15 @@ class GfxRenderer { void drawBitmap1Bit(const Bitmap& bitmap, int x, int y, int maxWidth, int maxHeight) const; void fillPolygon(const int* xPoints, const int* yPoints, int numPoints, bool state = true) const; + // Snapshot / restore a screen-coordinate framebuffer region (byte-aligned in + // panel memory). readFramebufferRegion returns the bytes written to dst, or + // 0 when the region is empty, offscreen, or exceeds dstCapacity. Pass the + // same rectangle to writeFramebufferRegion to restore the saved pixels. + // Enables partial-repaint patterns (e.g. moving a selection highlight) + // without re-rendering the whole page. + size_t readFramebufferRegion(int x, int y, int w, int h, uint8_t* dst, size_t dstCapacity) const; + void writeFramebufferRegion(int x, int y, int w, int h, const uint8_t* src); + // Text int getTextWidth(int fontId, const char* text, EpdFontFamily::Style style = EpdFontFamily::REGULAR, BidiUtils::BidiBaseDir baseDir = BidiUtils::BidiBaseDir::AUTO) const; @@ -250,6 +271,34 @@ class GfxRenderer { // Font helpers const uint8_t* getGlyphBitmap(const EpdFontData* fontData, const EpdGlyph* glyph) const; + // Lend the 48 KB framebuffer's bytes to a memory-hungry phase (chapter + // builds) WITHOUT freeing the allocation, so it never moves and repeated + // loans cannot fragment the heap. Between release and restore NOTHING may + // draw or display — the panel keeps showing its last refreshed image. The + // lent bytes are published via buildscratch::claim() for consumers like + // InflateStream. restore returns the buffer white, so the caller must + // redraw the full screen; it cannot fail (no allocation involved). + void releaseFrameBufferForBuild(); + bool restoreFrameBufferAfterBuild(); + bool hasFrameBuffer() const { return frameBuffer != nullptr; } + + // RAII form of the loan above, for blocking build regions with early-return + // error paths: restores on scope exit (or explicitly via end()). Display the + // popup/screen the panel should hold BEFORE constructing one. Constructing + // while the framebuffer is already lent yields an inert loan (nesting-safe). + class FrameBufferLoan { + public: + explicit FrameBufferLoan(GfxRenderer& renderer); + ~FrameBufferLoan() { end(); } + void end(); + FrameBufferLoan(const FrameBufferLoan&) = delete; + FrameBufferLoan& operator=(const FrameBufferLoan&) = delete; + + private: + GfxRenderer& renderer_; + bool active_ = false; + }; + // Low level functions uint8_t* getFrameBuffer() const; size_t getBufferSize() const; diff --git a/lib/I18n/translations/arabic.yaml b/lib/I18n/translations/arabic.yaml new file mode 100644 index 0000000000..613823fb42 --- /dev/null +++ b/lib/I18n/translations/arabic.yaml @@ -0,0 +1,394 @@ +_language_name: "العربية" +_language_code: "AR" +_order: "28" + +STR_CROSSPOINT: "CrossPoint" +STR_BOOTING: "جاري بدء التشغيل" +STR_SLEEPING: "وضع السكون" +STR_ENTERING_SLEEP: "جاري الدخول في وضع السكون" +STR_BROWSE_FILES: "تصفح الملفات" +STR_FILE_TRANSFER: "نقل الملفات" +STR_SETTINGS_TITLE: "الإعدادات" +STR_CONTINUE_READING: "متابعة القراءة" +STR_NO_OPEN_BOOK: "لا يوجد كتاب مفتوح" +STR_START_READING: "ابدأ القراءة أدناه" +STR_NO_FILES_FOUND: "لم يتم العثور على ملفات" +STR_SELECT_CHAPTER: "اختر الفصل" +STR_NO_CHAPTERS: "لا توجد فصول" +STR_END_OF_BOOK: "نهاية الكتاب" +STR_EMPTY_CHAPTER: "فصل فارغ" +STR_INDEXING: "جاري الفهرسة" +STR_INDEX_FAILED: "فشلت الفهرسة - كتاب غير صالح" +STR_MEMORY_ERROR: "خطأ في الذاكرة" +STR_PAGE_LOAD_ERROR: "خطأ في تحميل الصفحة" +STR_EMPTY_FILE: "ملف فارغ" +STR_OUT_OF_BOUNDS: "خارج النطاق" +STR_LOADING: "جاري التحميل..." +STR_LOADING_POPUP: "جاري التحميل" +STR_WIFI_NETWORKS: "شبكات Wi-Fi" +STR_NO_NETWORKS: "لم يتم العثور على شبكات" +STR_NETWORKS_FOUND: "تم العثور على %zu شبكة" +STR_SCANNING: "جاري البحث..." +STR_FINDING_SAVED_WIFI: "جاري البحث عن شبكة Wi-Fi محفوظة..." +STR_CONNECTING: "جاري الاتصال..." +STR_CONNECTING_SAVED_WIFI: "جاري الاتصال بشبكة Wi-Fi محفوظة..." +STR_SHOW_NETWORKS: "عرض" +STR_CONNECTED: "تم الاتصال!" +STR_CONNECTION_FAILED: "فشل الاتصال" +STR_FORGET_NETWORK: "نسيان هذه الشبكة؟" +STR_SAVE_PASSWORD: "حفظ كلمة المرور للمرة القادمة؟" +STR_PRESS_OK_SCAN: "اضغط موافق لإعادة البحث" +STR_JOIN_NETWORK: "الانضمام إلى شبكة" +STR_CREATE_HOTSPOT: "إنشاء نقطة اتصال" +STR_JOIN_DESC: "الاتصال بشبكة Wi-Fi موجودة" +STR_HOTSPOT_DESC: "إنشاء شبكة Wi-Fi يمكن للآخرين الانضمام إليها" +STR_STARTING_HOTSPOT: "جاري تشغيل نقطة الاتصال..." +STR_HOTSPOT_MODE: "وضع نقطة الاتصال" +STR_CONNECT_WIFI_HINT: "قم بتوصيل جهازك بشبكة Wi-Fi هذه" +STR_OPEN_URL_HINT: "افتح هذا العنوان في المتصفح" +STR_OR_HTTP_PREFIX: "أو http://" +STR_SCAN_QR_HINT: "أو امسح رمز QR بهاتفك:" +STR_CALIBRE_WIRELESS: "اتصال Calibre اللاسلكي" +STR_NETWORK_LEGEND: "* = مشفرة | + = محفوظة" +STR_MAC_ADDRESS: "عنوان MAC:" +STR_CHECKING_WIFI: "جاري فحص Wi-Fi..." +STR_ENTER_WIFI_PASSWORD: "أدخل كلمة مرور الشبكة" +STR_ADD_HIDDEN_NETWORK: "إضافة شبكة مخفية..." +STR_ENTER_WIFI_SSID: "أدخل اسم الشبكة (SSID)" +STR_TO_PREFIX: "إلى " +STR_CALIBRE_RECEIVING: "جاري الاستلام: " +STR_CALIBRE_RECEIVED: "تم الاستلام: " +STR_CALIBRE_INSTRUCTION_1: "1) قم بتثبيت إضافة CrossPoint Reader" +STR_CALIBRE_INSTRUCTION_2: "2) اتصل بنفس شبكة Wi-Fi" +STR_CALIBRE_INSTRUCTION_3: "3) في Calibre: اختر \"إرسال إلى الجهاز\"" +STR_CALIBRE_INSTRUCTION_4: "اترك هذه الشاشة مفتوحة أثناء الإرسال" +STR_CAT_DISPLAY: "الشاشة" +STR_CAT_READER: "القراءة" +STR_CAT_CONTROLS: "الأزرار" +STR_CAT_SYSTEM: "النظام" +STR_SLEEP_SCREEN: "شاشة السكون" +STR_QUICK_RESUME_TIMEOUT: "استئناف سريع بعد المهلة" +STR_SLEEP_COVER_MODE: "عرض الغلاف في وضع السكون" +STR_HIDE_BATTERY: "إخفاء نسبة البطارية" +STR_EXTRA_SPACING: "تباعد إضافي بين الفقرات" +STR_TEXT_AA: "تنعيم حواف النص" +STR_IMAGES: "الصور" +STR_IMAGES_DISPLAY: "عرض" +STR_IMAGES_PLACEHOLDER: "عنصر نائب" +STR_IMAGES_SUPPRESS: "إخفاء" +STR_EOB_HOME: "الرئيسية" +STR_EOB_CONTINUE_WITH: "المتابعة إلى" +STR_SHORT_PWR_BTN: "ضغطة قصيرة على زر التشغيل" +STR_ORIENTATION: "اتجاه القراءة" +STR_SIDE_BTN_LAYOUT: "تخطيط الأزرار الجانبية (أثناء القراءة)" +STR_FRONT_BTN_FOLLOW_ORIENTATION: "تدوير الأزرار الأمامية مع الشاشة" +STR_LONG_PRESS_BEHAVIOR: "سلوك الضغطة الطويلة" +STR_LONG_PRESS_BEHAVIOR_OFF: "إيقاف" +STR_LONG_PRESS_BEHAVIOR_SKIP: "تخطي الفصل" +STR_LONG_PRESS_BEHAVIOR_ORIENTATION: "تغيير الاتجاه" +STR_LONG_PRESS_MENU: "قائمة الضغطة الطويلة" +STR_FONT_PREVIEW_TEXT: "نص حكيم له سر قاطع وذو شأن عظيم مكتوب على ثوب أخضر ومغلف بجلد أزرق" +STR_FONT_FAMILY: "خط القراءة" +STR_FONT_SIZE: "حجم الخط" +STR_LINE_SPACING: "تباعد الأسطر" +STR_SCREEN_MARGIN: "هوامش شاشة القراءة" +STR_PARA_ALIGNMENT: "محاذاة الفقرات" +STR_HYPHENATION: "تقسيم الكلمات" +STR_TIME_TO_SLEEP: "مهلة الدخول في السكون" +STR_SHOW_HIDDEN_FILES: "عرض الملفات المخفية" +STR_REMOVE_READ_FROM_RECENTS: "إزالة الكتب المقروءة من قائمة الكتب الأخيرة" +STR_MOVE_FINISHED_TO_READ: "نقل الكتب المنتهية إلى مجلد المقروءة" +STR_REFRESH_FREQ: "معدل تحديث الشاشة" +STR_KOREADER_SYNC: "مزامنة KOReader" +STR_CHECK_UPDATES: "التحقق من التحديثات" +STR_LANGUAGE: "اللغة" +STR_CLEAR_READING_CACHE: "مسح ذاكرة القراءة المؤقتة" +STR_USERNAME: "اسم المستخدم" +STR_PASSWORD: "كلمة المرور" +STR_SYNC_SERVER_URL: "عنوان خادم المزامنة" +STR_DOCUMENT_MATCHING: "مطابقة المستندات" +STR_SEND_METADATA: "إرسال البيانات الوصفية للمستند" +STR_AUTHENTICATE: "تسجيل الدخول" +STR_KOREADER_USERNAME: "اسم مستخدم KOReader" +STR_KOREADER_PASSWORD: "كلمة مرور KOReader" +STR_FILENAME: "اسم الملف" +STR_BINARY: "ثنائي" +STR_SET_CREDENTIALS_FIRST: "أدخل بيانات الاعتماد أولا" +STR_WIFI_CONN_FAILED: "فشل الاتصال بالشبكة" +STR_AUTHENTICATING: "جاري التحقق..." +STR_AUTH_SUCCESS: "تم تسجيل الدخول بنجاح!" +STR_KOREADER_AUTH: "تسجيل الدخول إلى KOReader" +STR_SYNC_READY: "مزامنة KOReader جاهزة للاستخدام" +STR_AUTH_FAILED: "فشل تسجيل الدخول" +STR_DONE: "تم" +STR_CLEAR_CACHE_WARNING_1: "سيؤدي هذا إلى مسح جميع بيانات الكتب المخزنة." +STR_CLEAR_CACHE_WARNING_2: "سيتم فقدان كل تقدم القراءة!" +STR_CLEAR_CACHE_WARNING_3: "ستحتاج الكتب إلى إعادة فهرسة" +STR_CLEAR_CACHE_WARNING_4: "عند فتحها مرة أخرى." +STR_CLEARING_CACHE: "جاري مسح الذاكرة المؤقتة..." +STR_CACHE_CLEARED: "تم مسح الذاكرة المؤقتة" +STR_ITEMS_REMOVED: "عناصر تمت إزالتها" +STR_FAILED_LOWER: "فشل" +STR_CLEAR_CACHE_FAILED: "فشل مسح الذاكرة المؤقتة" +STR_CHECK_SERIAL_OUTPUT: "راجع مخرجات المنفذ التسلسلي للتفاصيل" +STR_DARK: "داكن" +STR_LIGHT: "فاتح" +STR_CUSTOM: "مخصص" +STR_COVER: "الغلاف" +STR_NONE_OPT: "بدون" +STR_FIT: "ملاءمة" +STR_CROP: "قص" +STR_NEVER: "أبدا" +STR_IN_READER: "أثناء القراءة" +STR_ALWAYS: "دائما" +STR_IGNORE: "تجاهل" +STR_SLEEP: "سكون" +STR_PAGE_TURN: "تقليب الصفحة" +STR_FORCE_REFRESH: "تحديث الشاشة" +STR_PORTRAIT: "عمودي" +STR_LANDSCAPE_CW: "أفقي (يمين)" +STR_INVERTED: "عكس الألوان" +STR_ORIENTATION_INVERTED: "عمودي 180°" +STR_LANDSCAPE_CCW: "أفقي (يسار)" +STR_PREV_NEXT: "السابق/التالي" +STR_NEXT_PREV: "التالي/السابق" +STR_KOSYNC: "KOSync" +STR_BOOKMARK_OPTION: "إشارة مرجعية" +STR_DISABLED: "معطل" +STR_NOTO_SERIF: "Noto Serif" +STR_NOTO_SANS: "Noto Sans" +STR_SMALL: "صغير" +STR_MEDIUM: "متوسط" +STR_LARGE: "كبير" +STR_X_LARGE: "كبير جدا" +STR_TIGHT: "ضيق" +STR_NORMAL: "عادي" +STR_WIDE: "واسع" +STR_JUSTIFY: "ضبط الطرفين" +STR_ALIGN_LEFT: "يسار" +STR_CENTER: "وسط" +STR_ALIGN_RIGHT: "يمين" +STR_PAGES_1: "صفحة واحدة" +STR_PAGES_5: "5 صفحات" +STR_PAGES_10: "10 صفحات" +STR_PAGES_15: "15 صفحة" +STR_PAGES_30: "30 صفحة" +STR_UPDATE: "تحديث" +STR_CHECKING_UPDATE: "جاري التحقق من التحديثات..." +STR_NEW_UPDATE: "يتوفر تحديث جديد!" +STR_CURRENT_VERSION: "الإصدار الحالي: " +STR_NEW_VERSION: "الإصدار الجديد: " +STR_UPDATING: "جاري التحديث..." +STR_NO_UPDATE: "لا يتوفر تحديث" +STR_UPDATE_FAILED: "فشل التحديث" +STR_UPDATE_COMPLETE: "اكتمل التحديث" +STR_POWER_ON_HINT: "اضغط مطولا على زر التشغيل لتشغيل الجهاز من جديد" +STR_RESTARTING_HINT: "جاري إعادة التشغيل... إذا لم يعمل الجهاز، اضغط مطولا على زر التشغيل لعدة ثوان." +STR_NO_ENTRIES: "لم يتم العثور على عناصر" +STR_DOWNLOADING: "جاري التنزيل..." +STR_DOWNLOAD_FAILED: "فشل التنزيل" +STR_ERROR_MSG: "خطأ:" +STR_UNNAMED: "بدون اسم" +STR_HOLD_OPEN_TO_DELETE: "اضغط مطولا على فتح للحذف" +STR_NO_SERVER_URL: "لم يتم تحديد عنوان الخادم" +STR_FETCH_FEED_FAILED: "فشل جلب القائمة" +STR_PARSE_FEED_FAILED: "فشل تحليل القائمة" +STR_NEXT_PAGE: "الصفحة التالية" +STR_PREV_PAGE: "الصفحة السابقة" +STR_NETWORK_PREFIX: "الشبكة: " +STR_IP_ADDRESS_PREFIX: "عنوان IP: " +STR_ERROR_GENERAL_FAILURE: "خطأ: فشل عام" +STR_ERROR_NETWORK_NOT_FOUND: "خطأ: الشبكة غير موجودة" +STR_ERROR_CONNECTION_TIMEOUT: "خطأ: انتهت مهلة الاتصال" +STR_SD_CARD: "بطاقة SD" +STR_BACK: "رجوع »" +STR_EXIT: "خروج »" +STR_HOME: "الرئيسية »" +STR_SELECT: "اختيار" +STR_SELECTED: "محدد" +STR_TOGGLE: "تبديل" +STR_TOGGLE_BOOKMARK: "إضافة/إزالة إشارة مرجعية" +STR_CONFIRM: "تأكيد" +STR_CANCEL: "إلغاء" +STR_CONNECT: "اتصال" +STR_OPEN: "فتح" +STR_DOWNLOAD: "تنزيل" +STR_RETRY: "إعادة المحاولة" +STR_YES: "نعم" +STR_NO: "لا" +STR_SHOW: "عرض" +STR_HIDE: "إخفاء" +STR_STATE_ON: "تشغيل" +STR_STATE_OFF: "إيقاف" +STR_NOT_SET: "غير محدد" +STR_DIR_LEFT: "يسار" +STR_DIR_RIGHT: "يمين" +STR_DIR_UP: "أعلى" +STR_DIR_DOWN: "أسفل" +STR_OK_BUTTON: "موافق" +STR_SLEEP_COVER_FILTER: "مرشح غلاف شاشة السكون" +STR_FILTER_CONTRAST: "التباين" +STR_CUSTOMISE_STATUS_BAR: "تخصيص شريط الحالة" +STR_CHAPTER_PAGE_COUNT: "عدد صفحات الفصل" +STR_BOOK_PROGRESS_PERCENTAGE: "نسبة التقدم في الكتاب" +STR_PROGRESS_BAR: "شريط التقدم" +STR_PROGRESS_BAR_THICKNESS: "سمك شريط التقدم" +STR_PROGRESS_BAR_THIN: "رفيع" +STR_PROGRESS_BAR_MEDIUM: "متوسط" +STR_PROGRESS_BAR_THICK: "سميك" +STR_BOOK: "الكتاب" +STR_CHAPTER: "الفصل" +STR_EXAMPLE_CHAPTER: "الفصل 21" +STR_EXAMPLE_BOOK: "عنوان الكتاب" +STR_PREVIEW: "معاينة" +STR_TITLE: "العنوان" +STR_BATTERY: "البطارية" +STR_XTC_STATUS_BAR: "شريط حالة XTC" +STR_BOTTOM: "أسفل" +STR_TOP: "أعلى" +STR_CLOCK: "الساعة" +STR_CLOCK_UTC_OFFSET: "فرق التوقيت عن UTC" +STR_CLOCK_FORMAT: "تنسيق الساعة" +STR_CLOCK_FORMAT_24H: "24 ساعة" +STR_CLOCK_FORMAT_12H: "12 ساعة" +STR_CURRENT_TIME: "الوقت الحالي:" +STR_NEXT_FIELD: "التالي" +STR_CLOCK_SYNC: "مزامنة الساعة" +STR_CLOCK_SYNC_NOW: "مزامنة الساعة الآن" +STR_CLOCK_SYNCING: "جاري المزامنة عبر NTP..." +STR_CLOCK_SYNC_OK: "تمت مزامنة الساعة" +STR_CLOCK_SYNC_FAIL: "فشلت المزامنة" +STR_CLOCK_SYNC_NO_WIFI: "لا يوجد اتصال Wi-Fi" +STR_CLOCK_SYNC_NO_WIFI_HINT: "اتصل بشبكة Wi-Fi أولا، ثم حاول مرة أخرى." +STR_CLOCK_SYNCED: "تمت مزامنة الساعة" +STR_UI_THEME: "مظهر الواجهة" +STR_THEME_CLASSIC: "كلاسيكي" +STR_THEME_LYRA: "Lyra" +STR_THEME_ROUNDEDRAFF: "RoundedRaff" +STR_THEME_LYRA_EXTENDED: "Lyra موسع" +STR_SUNLIGHT_FADING_FIX: "إصلاح بهتان الشاشة في الشمس" +STR_REMAP_FRONT_BUTTONS: "تغيير وظائف الأزرار الأمامية" +STR_BOOKMARKS: "الإشارات المرجعية" +STR_BOOKMARK_ADDED: "تمت إضافة الإشارة المرجعية." +STR_BOOKMARK_REMOVED: "تمت إزالة الإشارة المرجعية." +STR_OPDS_BROWSER: "متصفح OPDS" +STR_SEARCH: "بحث" +STR_COVER_CUSTOM: "الغلاف + مخصص" +STR_QUICK_RESUME: "استئناف سريع" +STR_MENU_RECENT_BOOKS: "الكتب الأخيرة" +STR_REMOVE_FROM_RECENTS: "إزالة من الكتب الأخيرة؟" +STR_NO_RECENT_BOOKS: "لا توجد كتب أخيرة" +STR_CALIBRE_DESC: "استخدم النقل اللاسلكي من Calibre" +STR_FORGET_AND_REMOVE: "نسيان الشبكة وحذف كلمة المرور المحفوظة؟" +STR_FORGET_BUTTON: "نسيان" +STR_CALIBRE_STARTING: "جاري تشغيل Calibre..." +STR_CALIBRE_SETUP: "الإعداد" +STR_CALIBRE_STATUS: "الحالة" +STR_CLEAR_BUTTON: "مسح" +STR_DEFAULT_VALUE: "افتراضي" +STR_REMAP_PROMPT: "اضغط زرا أماميا لكل وظيفة" +STR_UNASSIGNED: "غير معين" +STR_ALREADY_ASSIGNED: "معين مسبقا" +STR_REMAP_RESET_HINT: "الزر الجانبي العلوي: استعادة التخطيط الافتراضي" +STR_REMAP_CANCEL_HINT: "الزر الجانبي السفلي: إلغاء التغيير" +STR_HW_BACK_LABEL: "رجوع (الزر 1)" +STR_HW_CONFIRM_LABEL: "تأكيد (الزر 2)" +STR_HW_LEFT_LABEL: "يسار (الزر 3)" +STR_HW_RIGHT_LABEL: "يمين (الزر 4)" +STR_GO_TO_PERCENT: "الانتقال إلى نسبة %" +STR_GO_HOME_BUTTON: "العودة إلى الرئيسية" +STR_SYNC_PROGRESS: "مزامنة التقدم" +STR_DELETE_CACHE: "حذف ذاكرة الكتاب المؤقتة" +STR_DELETE: "حذف" +STR_CONFIRM_DELETE_BOOKMARK: "حذف هذه الإشارة المرجعية؟" +STR_DISPLAY_QR: "عرض الصفحة كرمز QR" +STR_CHAPTER_PREFIX: "الفصل: " +STR_PAGES_SEPARATOR: " صفحات | " +STR_BOOK_PREFIX: "الكتاب: " +STR_CALIBRE_URL_HINT: "في Calibre، أضف /opds إلى العنوان" +STR_SYNCING_TIME: "جاري مزامنة الوقت..." +STR_CALC_HASH: "جاري حساب بصمة المستند..." +STR_HASH_FAILED: "فشل حساب بصمة المستند" +STR_FETCH_PROGRESS: "جاري جلب التقدم من الخادم..." +STR_UPLOAD_PROGRESS: "جاري رفع التقدم..." +STR_NO_CREDENTIALS_MSG: "لم يتم إعداد بيانات الاعتماد" +STR_KOREADER_SETUP_HINT: "قم بإعداد حساب KOReader في الإعدادات" +STR_PROGRESS_FOUND: "تم العثور على تقدم سابق!" +STR_REMOTE_LABEL: "الخادم:" +STR_LOCAL_LABEL: "الجهاز:" +STR_PAGE_OVERALL_FORMAT: "صفحة %d، %.2f%% إجمالا" +STR_PAGE_TOTAL_OVERALL_FORMAT: "صفحة %d من %d، %.2f%% إجمالا" +STR_DEVICE_FROM_FORMAT: " من: %s" +STR_APPLY_REMOTE: "استخدام تقدم الخادم" +STR_UPLOAD_LOCAL: "رفع التقدم المحلي" +STR_NO_REMOTE_MSG: "لا يوجد تقدم على الخادم" +STR_UPLOAD_PROMPT: "رفع الموضع الحالي؟" +STR_UPLOAD_SUCCESS: "تم رفع التقدم!" +STR_SYNC_FAILED_MSG: "فشلت المزامنة" +STR_SAVE_PROGRESS_FAILED: "تعذر حفظ التقدم" +STR_SECTION_PREFIX: "القسم " +STR_UPLOAD: "رفع" +STR_BOOK_S_STYLE: "تنسيق الكتاب الأصلي" +STR_EMBEDDED_STYLE: "التنسيق المضمن" +STR_FOCUS_READING: "قراءة مركزة" +STR_OPDS_SERVER_URL: "عنوان خادم OPDS" +STR_PWR_BTN_FOOTNOTE_BACK: "عودة سريعة من الحواشي" +STR_SET_SLEEP_COVER: "تعيين الغلاف" +STR_FOOTNOTES: "الحواشي" +STR_NO_FOOTNOTES: "لا توجد حواش في هذه الصفحة" +STR_LINK: "[رابط]" +STR_SCREENSHOT_BUTTON: "التقاط لقطة شاشة" +STR_SLEEP_TIMER_VALUE_FORMAT: "%u دقيقة" +STR_SLEEP_NEVER: "أبدا" +STR_STEP_HINT_FRONT: "الأزرار الأمامية:" +STR_STEP_HINT_SIDE: "الأزرار الجانبية:" +STR_ADD_SERVER: "إضافة خادم" +STR_SERVER_NAME: "اسم الخادم" +STR_NO_SERVERS: "لم يتم إعداد خوادم OPDS" +STR_DELETE_SERVER: "حذف الخادم" +STR_OPDS_SERVERS: "خوادم OPDS" +STR_AUTO_TURN_ENABLED: "التقليب التلقائي مفعل: " +STR_AUTO_TURN_PAGES_PER_MIN: "التقليب التلقائي (صفحات في الدقيقة)" +STR_MANAGE_FONTS: "إدارة الخطوط" +STR_FONT_BROWSER: "متصفح الخطوط" +STR_LOADING_FONT_LIST: "جاري تحميل قائمة الخطوط..." +STR_NO_FONTS_AVAILABLE: "لا تتوفر خطوط" +STR_FONT_INSTALLED: "تم تثبيت الخط!" +STR_FONT_INSTALL_FAILED: "فشل تثبيت الخط" +STR_INSTALLED: "مثبت" +STR_DOWNLOAD_ALL: "تنزيل الكل" +STR_UPDATE_ALL: "تحديث الكل" +STR_UPDATE_AVAILABLE: "تحديث" +STR_CRASH_TITLE: "تعطل النظام" +STR_CRASH_DESCRIPTION: "تم حفظ تقرير مفصل في الملف crash_report.txt. يرجى إرفاق هذا الملف عند الإبلاغ عن المشكلة." +STR_CRASH_REASON: "سبب التعطل:" +STR_CRASH_NO_REASON: "(لم يتم تسجيل سبب)" +STR_TILT_PAGE_TURN: "تقليب الصفحة بالإمالة" +STR_KB_HINT_MOVE_CURSOR: "اضغط زر اليمين أو اليسار لتحريك المؤشر" +STR_KB_HINT_RETURN_CURSOR: "اضغط زر اليسار للعودة إلى موضع المؤشر" +STR_KB_HINT_HIDE_PASSWORD: "اضغط مطولا على زر اليمين ثم اضغط [***] لإخفاء كلمة المرور" +STR_KB_HINT_SHOW_PASSWORD: "اضغط مطولا على زر اليمين ثم اضغط [abc] لإظهار كلمة المرور" +STR_KB_HINT_TOGGLE_HIDE_PASSWORD: "اضغط [***] لإخفاء كلمة المرور" +STR_KB_HINT_TOGGLE_SHOW_PASSWORD: "اضغط [abc] لإظهار كلمة المرور" +STR_KB_HINT_EDIT_ENTRY: "اضغط مطولا على زر الأعلى للتعديل" +STR_KB_TIPS: "نصائح:" +STR_KB_HINT_RETURN_KEYBOARD: "اضغط زر الأسفل للعودة إلى لوحة المفاتيح" +STR_KB_HINT_EXIT_URL_MODE: "اضغط ABC للخروج من وضع URL" +STR_KB_HINT_CLEAR_TEXT: "اضغط مطولا على DEL لمسح كل النص" +STR_KB_HINT_SECONDARY_CHAR: "اضغط مطولا على زر الاختيار للحرف الثانوي" +STR_KB_HINT_UPPER_SECONDARY: "اضغط مطولا على زر الاختيار للحرف الكبير أو الثانوي" +STR_KB_HINT_LOWER_SECONDARY: "اضغط مطولا على زر الاختيار للحرف الصغير أو الثانوي" +STR_KB_HINT_URL_SNIPPETS: "اضغط URL للاختصارات" +STR_SD_FIRMWARE_UPDATE: "تحديث البرنامج الثابت من بطاقة SD" +STR_SELECT_FIRMWARE_FILE: "اختر ملف البرنامج الثابت (.bin)" +STR_NO_BIN_FILES: "لم يتم العثور على ملفات .bin" +STR_VALIDATING_FIRMWARE: "جاري التحقق من البرنامج الثابت..." +STR_INVALID_FIRMWARE: "ملف برنامج ثابت غير صالح" +STR_FIRMWARE_TOO_LARGE: "البرنامج الثابت أكبر من القسم المخصص له" +STR_FIRMWARE_TOO_SMALL: "ملف البرنامج الثابت صغير جدا" +STR_FIRMWARE_UPDATE_PROMPT: "تحديث البرنامج الثابت؟" +STR_FIRMWARE_FILE_OPEN_FAILED: "تعذر فتح الملف" +STR_FIRMWARE_WRITE_FAILED: "فشلت كتابة البرنامج الثابت" +STR_FIRMWARE_UPDATE_DO_NOT_POWER_OFF: "لا تطفئ الجهاز!" +STR_RECOVERY_MODE: "وضع الاستعادة" +STR_RECOVERY_MODE_HINT: "ضع الملف firmware.bin في المجلد الرئيسي لبطاقة SD ثم اختره" \ No newline at end of file diff --git a/lib/I18n/translations/belarusian.yaml b/lib/I18n/translations/belarusian.yaml index 0b3c682305..88d27867f7 100644 --- a/lib/I18n/translations/belarusian.yaml +++ b/lib/I18n/translations/belarusian.yaml @@ -68,6 +68,7 @@ STR_TEXT_AA: "Згладжванне тэксту" STR_SHORT_PWR_BTN: "Кароткае націсканне PWR" STR_ORIENTATION: "Арыентацыя чытання" STR_SIDE_BTN_LAYOUT: "Бакавыя кнопкі" +STR_TOUCH_READER_CONTROLS: "Сэнсарнае кіраванне чытаннем" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Арыентаваць пярэднія кнопкі" STR_LONG_PRESS_SKIP: "Доўгае націсканне - змена раздзела" STR_FONT_PREVIEW_TEXT: "У Іўі худы жвавы чорт у зялёнай камізэльцы пабег пад'есці фаршу з юшкай" @@ -87,6 +88,7 @@ STR_USERNAME: "Імя карыстальніка" STR_PASSWORD: "Пароль" STR_SYNC_SERVER_URL: "URL сервера сінхранізацыі" STR_DOCUMENT_MATCHING: "Супастаўленне дакументаў" +STR_SEND_METADATA: "Адпраўляць метаданыя дакумента" STR_AUTHENTICATE: "Аўтарызацыя" STR_KOREADER_USERNAME: "Імя карыстальніка KOReader" STR_KOREADER_PASSWORD: "Пароль KOReader" @@ -297,6 +299,13 @@ STR_SLEEP_TIMER_VALUE_FORMAT: "%u хв" STR_SLEEP_NEVER: "Ніколі" STR_STEP_HINT_FRONT: "Пярэднія кнопкі:" STR_STEP_HINT_SIDE: "Бакавыя кнопкі:" +STR_OPDS_DOWNLOAD_FOLDER: "Папка для спампоўкі" +STR_OPDS_FILENAME_FORMAT: "Фармат назвы файла" +STR_FMT_AUTHOR_TITLE: "Аўтар - Назва" +STR_FMT_TITLE_AUTHOR: "Назва - Аўтар" +STR_FMT_TITLE: "Назва" STR_AUTO_TURN_ENABLED: "Аўтаперагортванне: " STR_AUTO_TURN_PAGES_PER_MIN: "Аўтаперагортванне (старонак за хвіліну)" STR_TILT_PAGE_TURN: "Перагортванне нахілам" +STR_ADD_HIDDEN_NETWORK: "Дадаць схаваную сетку..." +STR_ENTER_WIFI_SSID: "Увядзіце назву сеткі (SSID)" diff --git a/lib/I18n/translations/bosnian.yaml b/lib/I18n/translations/bosnian.yaml new file mode 100644 index 0000000000..5ac44e68a6 --- /dev/null +++ b/lib/I18n/translations/bosnian.yaml @@ -0,0 +1,393 @@ +_language_name: "Bosanski" +_language_code: "BS" +_order: "29" +STR_CROSSPOINT: "CrossPoint" +STR_BOOTING: "POKRETANJE" +STR_SLEEPING: "REŽIM MIROVANJA" +STR_ENTERING_SLEEP: "Prelazak u režim mirovanja" +STR_BROWSE_FILES: "Pregled datoteka" +STR_FILE_TRANSFER: "Prijenos datoteka" +STR_SETTINGS_TITLE: "Postavke" +STR_CONTINUE_READING: "Nastavi čitanje" +STR_NO_OPEN_BOOK: "Nema otvorene knjige" +STR_START_READING: "Počni čitati ispod" +STR_NO_FILES_FOUND: "Nema pronađenih datoteka" +STR_SELECT_CHAPTER: "Odaberi poglavlje" +STR_NO_CHAPTERS: "Nema poglavlja" +STR_END_OF_BOOK: "Kraj knjige" +STR_EMPTY_CHAPTER: "Prazno poglavlje" +STR_INDEXING: "Indeksiranje" +STR_INDEX_FAILED: "Indeksiranje nije uspjelo - nevažeća knjiga" +STR_MEMORY_ERROR: "Greška memorije" +STR_PAGE_LOAD_ERROR: "Greška pri učitavanju stranice" +STR_EMPTY_FILE: "Prazna datoteka" +STR_OUT_OF_BOUNDS: "Izvan granica" +STR_LOADING: "Učitavanje..." +STR_LOADING_POPUP: "Učitavanje" +STR_WIFI_NETWORKS: "Wi-Fi mreže" +STR_NO_NETWORKS: "Nema pronađenih mreža" +STR_NETWORKS_FOUND: "%zu pronađenih mreža" +STR_SCANNING: "Skeniranje..." +STR_FINDING_SAVED_WIFI: "Traženje sačuvanog Wi-Fi-a..." +STR_CONNECTING: "Povezivanje..." +STR_CONNECTING_SAVED_WIFI: "Povezivanje na sačuvani Wi-Fi..." +STR_SHOW_NETWORKS: "Prikaži" +STR_CONNECTED: "Povezano!" +STR_CONNECTION_FAILED: "Povezivanje nije uspjelo" +STR_FORGET_NETWORK: "Zaboraviti mrežu?" +STR_SAVE_PASSWORD: "Sačuvati lozinku za sljedeći put?" +STR_PRESS_OK_SCAN: "Pritisni OK za ponovno skeniranje" +STR_JOIN_NETWORK: "Pridruži se mreži" +STR_CREATE_HOTSPOT: "Kreiraj hotspot" +STR_JOIN_DESC: "Poveži se na postojeću Wi-Fi mrežu" +STR_HOTSPOT_DESC: "Kreiraj Wi-Fi mrežu kojoj se drugi mogu pridružiti" +STR_STARTING_HOTSPOT: "Pokretanje hotspota..." +STR_HOTSPOT_MODE: "Hotspot način rada" +STR_CONNECT_WIFI_HINT: "Poveži svoj uređaj na ovu Wi-Fi mrežu" +STR_OPEN_URL_HINT: "Otvori ovaj URL u svom pregledniku" +STR_OR_HTTP_PREFIX: "ili http://" +STR_SCAN_QR_HINT: "ili skeniraj QR kod svojim telefonom:" +STR_CALIBRE_WIRELESS: "Calibre bežično" +STR_NETWORK_LEGEND: "* = Šifrovano | + = Sačuvano" +STR_MAC_ADDRESS: "MAC adresa:" +STR_CHECKING_WIFI: "Provjera Wi-Fi-a..." +STR_ENTER_WIFI_PASSWORD: "Unesi Wi-Fi lozinku" +STR_ADD_HIDDEN_NETWORK: "Dodaj skrivenu mrežu..." +STR_ENTER_WIFI_SSID: "Unesi naziv mreže (SSID)" +STR_TO_PREFIX: "na " +STR_CALIBRE_RECEIVING: "Primanje: " +STR_CALIBRE_RECEIVED: "Primljeno: " +STR_CALIBRE_INSTRUCTION_1: "1) Instaliraj CrossPoint Reader dodatak" +STR_CALIBRE_INSTRUCTION_2: "2) Budi na istoj Wi-Fi mreži" +STR_CALIBRE_INSTRUCTION_3: "3) U Calibreu: \"Pošalji na uređaj\"" +STR_CALIBRE_INSTRUCTION_4: "\"Drži ovaj ekran otvorenim tokom slanja\"" +STR_CAT_DISPLAY: "Ekran" +STR_CAT_READER: "Čitač" +STR_CAT_CONTROLS: "Kontrole" +STR_CAT_SYSTEM: "Sistem" +STR_SLEEP_SCREEN: "Ekran mirovanja" +STR_QUICK_RESUME_TIMEOUT: "Brzi nastavak nakon isteka vremena" +STR_SLEEP_COVER_MODE: "Način prikaza korica na ekranu mirovanja" +STR_HIDE_BATTERY: "Sakrij % baterije" +STR_EXTRA_SPACING: "Dodatni razmak između paragrafa" +STR_TEXT_AA: "Zaglađivanje teksta" +STR_IMAGES: "Slike" +STR_IMAGES_DISPLAY: "Prikaz" +STR_IMAGES_PLACEHOLDER: "Rezervisano mjesto" +STR_IMAGES_SUPPRESS: "Sakrij" +STR_EOB_HOME: "Početna" +STR_EOB_CONTINUE_WITH: "Nastavi sa" +STR_SHORT_PWR_BTN: "Kratak klik dugmeta napajanja" +STR_ORIENTATION: "Orijentacija čitanja" +STR_SIDE_BTN_LAYOUT: "Raspored bočnih dugmadi (čitač)" +STR_FRONT_BTN_FOLLOW_ORIENTATION: "Orijentiši prednja dugmad" +STR_LONG_PRESS_BEHAVIOR: "Ponašanje dugog pritiska dugmeta" +STR_LONG_PRESS_BEHAVIOR_OFF: "ISKLJUČENO" +STR_LONG_PRESS_BEHAVIOR_SKIP: "Preskakanje poglavlja" +STR_LONG_PRESS_BEHAVIOR_ORIENTATION: "Promjena orijentacije" +STR_LONG_PRESS_MENU: "Meni dugog pritiska" +STR_FONT_PREVIEW_TEXT: "Brza smeđa lisica preskače lijenog psa" +STR_FONT_FAMILY: "Porodica fonta čitača" +STR_FONT_SIZE: "Veličina fonta čitača" +STR_LINE_SPACING: "Razmak između redova čitača" +STR_SCREEN_MARGIN: "Margina ekrana čitača" +STR_PARA_ALIGNMENT: "Poravnanje paragrafa čitača" +STR_HYPHENATION: "Rastavljanje riječi" +STR_TIME_TO_SLEEP: "Vrijeme do mirovanja" +STR_SHOW_HIDDEN_FILES: "Prikaži skrivene datoteke" +STR_REMOVE_READ_FROM_RECENTS: "Ukloni pročitane knjige sa liste nedavnih" +STR_MOVE_FINISHED_TO_READ: "Premjesti završene knjige u fasciklu Read" +STR_REFRESH_FREQ: "Učestalost osvježavanja" +STR_KOREADER_SYNC: "KOReader sinhronizacija" +STR_CHECK_UPDATES: "Provjeri ažuriranja" +STR_LANGUAGE: "Jezik" +STR_CLEAR_READING_CACHE: "Očisti keš čitanja" +STR_USERNAME: "Korisničko ime" +STR_PASSWORD: "Lozinka" +STR_SYNC_SERVER_URL: "URL servera za sinhronizaciju" +STR_DOCUMENT_MATCHING: "Podudaranje dokumenata" +STR_SEND_METADATA: "Pošalji metapodatke dokumenta" +STR_AUTHENTICATE: "Autentifikuj" +STR_KOREADER_USERNAME: "KOReader korisničko ime" +STR_KOREADER_PASSWORD: "KOReader lozinka" +STR_FILENAME: "Naziv datoteke" +STR_BINARY: "Binarno" +STR_SET_CREDENTIALS_FIRST: "Prvo postavi vjerodajnice" +STR_WIFI_CONN_FAILED: "Wi-Fi povezivanje nije uspjelo" +STR_AUTHENTICATING: "Autentifikacija..." +STR_AUTH_SUCCESS: "Uspješno autentifikovano!" +STR_KOREADER_AUTH: "KOReader autentifikacija" +STR_SYNC_READY: "KOReader sinhronizacija je spremna za upotrebu" +STR_AUTH_FAILED: "Autentifikacija nije uspjela" +STR_DONE: "Gotovo" +STR_CLEAR_CACHE_WARNING_1: "Ovo će očistiti sve keširane podatke knjiga." +STR_CLEAR_CACHE_WARNING_2: "Sav napredak čitanja će biti izgubljen!" +STR_CLEAR_CACHE_WARNING_3: "Knjige će morati biti ponovo indeksirane" +STR_CLEAR_CACHE_WARNING_4: "kada se ponovo otvore." +STR_CLEARING_CACHE: "Čišćenje keša..." +STR_CACHE_CLEARED: "Keš očišćen" +STR_ITEMS_REMOVED: "stavki uklonjeno" +STR_FAILED_LOWER: "nije uspjelo" +STR_CLEAR_CACHE_FAILED: "Čišćenje keša nije uspjelo" +STR_CHECK_SERIAL_OUTPUT: "Provjeri serijski izlaz za detalje" +STR_DARK: "Tamno" +STR_LIGHT: "Svijetlo" +STR_CUSTOM: "Prilagođeno" +STR_COVER: "Korice" +STR_NONE_OPT: "Ništa" +STR_FIT: "Prilagodi" +STR_CROP: "Isjeci" +STR_NEVER: "Nikad" +STR_IN_READER: "U čitaču" +STR_ALWAYS: "Uvijek" +STR_IGNORE: "Ignoriši" +STR_SLEEP: "Mirovanje" +STR_PAGE_TURN: "Okretanje stranice" +STR_FORCE_REFRESH: "Osvježi ekran" +STR_PORTRAIT: "Uspravno" +STR_LANDSCAPE_CW: "Položeno (u smjeru kazaljke na satu)" +STR_INVERTED: "Obrnuto" +STR_ORIENTATION_INVERTED: "Uspravno 180°" +STR_LANDSCAPE_CCW: "Položeno (suprotno smjeru kazaljke na satu)" +STR_PREV_NEXT: "Prethodno/Sljedeće" +STR_NEXT_PREV: "Sljedeće/Prethodno" +STR_KOSYNC: "KOSync" +STR_BOOKMARK_OPTION: "Obilježivač" +STR_DISABLED: "Onemogućeno" +STR_NOTO_SERIF: "Noto Serif" +STR_NOTO_SANS: "Noto Sans" +STR_SMALL: "Malo" +STR_MEDIUM: "Srednje" +STR_LARGE: "Veliko" +STR_X_LARGE: "Vrlo veliko" +STR_TIGHT: "Usko" +STR_NORMAL: "Normalno" +STR_WIDE: "Široko" +STR_JUSTIFY: "Poravnaj obostrano" +STR_ALIGN_LEFT: "Lijevo" +STR_CENTER: "Centrirano" +STR_ALIGN_RIGHT: "Desno" +STR_PAGES_1: "1 stranica" +STR_PAGES_5: "5 stranica" +STR_PAGES_10: "10 stranica" +STR_PAGES_15: "15 stranica" +STR_PAGES_30: "30 stranica" +STR_UPDATE: "Ažuriraj" +STR_CHECKING_UPDATE: "Provjera ažuriranja..." +STR_NEW_UPDATE: "Dostupno je novo ažuriranje!" +STR_CURRENT_VERSION: "Trenutna verzija: " +STR_NEW_VERSION: "Nova verzija: " +STR_UPDATING: "Ažuriranje..." +STR_NO_UPDATE: "Nema dostupnih ažuriranja" +STR_UPDATE_FAILED: "Ažuriranje nije uspjelo" +STR_UPDATE_COMPLETE: "Ažuriranje završeno" +STR_POWER_ON_HINT: "Pritisni i drži dugme napajanja da ponovo uključiš" +STR_RESTARTING_HINT: "Ponovno pokretanje... Ako se uređaj ne pokrene ponovo, drži dugme napajanja nekoliko sekundi." +STR_NO_ENTRIES: "Nema pronađenih unosa" +STR_DOWNLOADING: "Preuzimanje..." +STR_DOWNLOAD_FAILED: "Preuzimanje nije uspjelo" +STR_ERROR_MSG: "Greška:" +STR_UNNAMED: "Neimenovano" +STR_HOLD_OPEN_TO_DELETE: "Drži Otvori za brisanje" +STR_NO_SERVER_URL: "Nije podešen URL servera" +STR_FETCH_FEED_FAILED: "Dohvatanje feeda nije uspjelo" +STR_PARSE_FEED_FAILED: "Obrada feeda nije uspjela" +STR_NEXT_PAGE: "Sljedeća stranica »" +STR_PREV_PAGE: "« Prethodna stranica" +STR_NETWORK_PREFIX: "Mreža: " +STR_IP_ADDRESS_PREFIX: "IP adresa: " +STR_ERROR_GENERAL_FAILURE: "Greška: Opšta greška" +STR_ERROR_NETWORK_NOT_FOUND: "Greška: Mreža nije pronađena" +STR_ERROR_CONNECTION_TIMEOUT: "Greška: Isteklo vrijeme veze" +STR_SD_CARD: "SD kartica" +STR_BACK: "« Nazad" +STR_EXIT: "« Izlaz" +STR_HOME: "« Početna" +STR_SELECT: "Odaberi" +STR_SELECTED: "Odabrano" +STR_TOGGLE: "Promijeni" +STR_TOGGLE_BOOKMARK: "Promijeni obilježivač" +STR_CONFIRM: "Potvrdi" +STR_CANCEL: "Otkaži" +STR_CONNECT: "Poveži" +STR_OPEN: "Otvori" +STR_DOWNLOAD: "Preuzmi" +STR_RETRY: "Pokušaj ponovo" +STR_YES: "Da" +STR_NO: "Ne" +STR_SHOW: "Prikaži" +STR_HIDE: "Sakrij" +STR_STATE_ON: "UKLJUČENO" +STR_STATE_OFF: "ISKLJUČENO" +STR_NOT_SET: "Nije postavljeno" +STR_DIR_LEFT: "Lijevo" +STR_DIR_RIGHT: "Desno" +STR_DIR_UP: "Gore" +STR_DIR_DOWN: "Dolje" +STR_OK_BUTTON: "OK" +STR_SLEEP_COVER_FILTER: "Filter korica ekrana mirovanja" +STR_FILTER_CONTRAST: "Kontrast" +STR_CUSTOMISE_STATUS_BAR: "Prilagodi statusnu traku" +STR_CHAPTER_PAGE_COUNT: "Broj stranica poglavlja" +STR_BOOK_PROGRESS_PERCENTAGE: "Procenat napretka knjige" +STR_PROGRESS_BAR: "Traka napretka" +STR_PROGRESS_BAR_THICKNESS: "Debljina trake napretka" +STR_PROGRESS_BAR_THIN: "Tanka" +STR_PROGRESS_BAR_MEDIUM: "Srednja" +STR_PROGRESS_BAR_THICK: "Debela" +STR_BOOK: "Knjiga" +STR_CHAPTER: "Poglavlje" +STR_EXAMPLE_CHAPTER: "Poglavlje 21" +STR_EXAMPLE_BOOK: "Naslov knjige" +STR_PREVIEW: "Pregled" +STR_TITLE: "Naslov" +STR_BATTERY: "Baterija" +STR_XTC_STATUS_BAR: "XTC statusna traka" +STR_BOTTOM: "Dolje" +STR_TOP: "Gore" +STR_CLOCK: "Sat" +STR_CLOCK_UTC_OFFSET: "UTC odstupanje sata" +STR_CLOCK_FORMAT: "Format sata" +STR_CLOCK_FORMAT_24H: "24-časovni" +STR_CLOCK_FORMAT_12H: "12-časovni" +STR_CURRENT_TIME: "Trenutno vrijeme:" +STR_NEXT_FIELD: "Sljedeće" +STR_CLOCK_SYNC: "Sinhronizuj sat" +STR_CLOCK_SYNC_NOW: "Sinhronizuj sat sada" +STR_CLOCK_SYNCING: "Sinhronizacija sa NTP-a..." +STR_CLOCK_SYNC_OK: "Sat sinhronizovan" +STR_CLOCK_SYNC_FAIL: "Sinhronizacija nije uspjela" +STR_CLOCK_SYNC_NO_WIFI: "Wi-Fi nije povezan" +STR_CLOCK_SYNC_NO_WIFI_HINT: "Prvo se poveži na Wi-Fi, pa pokušaj ponovo." +STR_CLOCK_SYNCED: "Sat sinhronizovan" +STR_UI_THEME: "Tema korisničkog interfejsa" +STR_THEME_CLASSIC: "Klasična" +STR_THEME_LYRA: "Lyra" +STR_THEME_ROUNDEDRAFF: "RoundedRaff" +STR_THEME_LYRA_EXTENDED: "Lyra proširena" +STR_SUNLIGHT_FADING_FIX: "Ispravka blijeđenja na suncu" +STR_REMAP_FRONT_BUTTONS: "Premapiraj prednja dugmad" +STR_BOOKMARKS: "Obilježivači" +STR_BOOKMARK_ADDED: "Obilježivač dodan." +STR_BOOKMARK_REMOVED: "Obilježivač uklonjen." +STR_OPDS_BROWSER: "OPDS pregledač" +STR_SEARCH: "Pretraga" +STR_COVER_CUSTOM: "Korice + Prilagođeno" +STR_QUICK_RESUME: "Brzi nastavak" +STR_MENU_RECENT_BOOKS: "Nedavne knjige" +STR_REMOVE_FROM_RECENTS: "Ukloniti iz nedavnih knjiga?" +STR_NO_RECENT_BOOKS: "Nema nedavnih knjiga" +STR_CALIBRE_DESC: "Koristi Calibre bežični prijenos uređaja" +STR_FORGET_AND_REMOVE: "Zaboraviti mrežu i ukloniti sačuvanu lozinku?" +STR_FORGET_BUTTON: "Zaboravi" +STR_CALIBRE_STARTING: "Pokretanje Calibrea..." +STR_CALIBRE_SETUP: "Podešavanje" +STR_CALIBRE_STATUS: "Status" +STR_CLEAR_BUTTON: "Očisti" +STR_DEFAULT_VALUE: "Zadano" +STR_REMAP_PROMPT: "Pritisni prednje dugme za svaku ulogu" +STR_UNASSIGNED: "Nedodijeljeno" +STR_ALREADY_ASSIGNED: "Već dodijeljeno" +STR_REMAP_RESET_HINT: "Bočno dugme Gore: Vrati na zadani raspored" +STR_REMAP_CANCEL_HINT: "Bočno dugme Dolje: Otkaži premapiranje" +STR_HW_BACK_LABEL: "Nazad (1. dugme)" +STR_HW_CONFIRM_LABEL: "Potvrdi (2. dugme)" +STR_HW_LEFT_LABEL: "Lijevo (3. dugme)" +STR_HW_RIGHT_LABEL: "Desno (4. dugme)" +STR_GO_TO_PERCENT: "Idi na %" +STR_GO_HOME_BUTTON: "Idi na početnu" +STR_SYNC_PROGRESS: "Sinhronizuj napredak" +STR_DELETE_CACHE: "Obriši keš knjige" +STR_DELETE: "Obriši" +STR_CONFIRM_DELETE_BOOKMARK: "Obrisati ovaj obilježivač?" +STR_DISPLAY_QR: "Prikaži stranicu kao QR" +STR_CHAPTER_PREFIX: "Poglavlje: " +STR_PAGES_SEPARATOR: " stranica | " +STR_BOOK_PREFIX: "Knjiga: " +STR_CALIBRE_URL_HINT: "Za Calibre, dodaj /opds na svoj URL" +STR_SYNCING_TIME: "Sinhronizacija vremena..." +STR_CALC_HASH: "Izračunavanje heša dokumenta..." +STR_HASH_FAILED: "Izračunavanje heša dokumenta nije uspjelo" +STR_FETCH_PROGRESS: "Dohvatanje udaljenog napretka..." +STR_UPLOAD_PROGRESS: "Slanje napretka..." +STR_NO_CREDENTIALS_MSG: "Nisu podešene vjerodajnice" +STR_KOREADER_SETUP_HINT: "Podesi KOReader nalog u Postavkama" +STR_PROGRESS_FOUND: "Napredak pronađen!" +STR_REMOTE_LABEL: "Udaljeno:" +STR_LOCAL_LABEL: "Lokalno:" +STR_PAGE_OVERALL_FORMAT: "Stranica %d, %.2f%% ukupno" +STR_PAGE_TOTAL_OVERALL_FORMAT: "Stranica %d/%d, %.2f%% ukupno" +STR_DEVICE_FROM_FORMAT: " Sa: %s" +STR_APPLY_REMOTE: "Primijeni udaljeni napredak" +STR_UPLOAD_LOCAL: "Pošalji lokalni napredak" +STR_NO_REMOTE_MSG: "Nije pronađen udaljeni napredak" +STR_UPLOAD_PROMPT: "Poslati trenutnu poziciju?" +STR_UPLOAD_SUCCESS: "Napredak poslan!" +STR_SYNC_FAILED_MSG: "Sinhronizacija nije uspjela" +STR_SAVE_PROGRESS_FAILED: "Napredak nije mogao biti sačuvan" +STR_SECTION_PREFIX: "Sekcija " +STR_UPLOAD: "Pošalji" +STR_BOOK_S_STYLE: "Stil knjige" +STR_EMBEDDED_STYLE: "Ugrađeni stil" +STR_FOCUS_READING: "Fokusirano čitanje" +STR_OPDS_SERVER_URL: "URL OPDS servera" +STR_PWR_BTN_FOOTNOTE_BACK: "Brzi povratak iz fusnota" +STR_SET_SLEEP_COVER: "Postavi korice" +STR_FOOTNOTES: "Fusnote" +STR_NO_FOOTNOTES: "Nema fusnota na ovoj stranici" +STR_LINK: "[link]" +STR_SCREENSHOT_BUTTON: "Snimi ekran" +STR_SLEEP_TIMER_VALUE_FORMAT: "%u min" +STR_SLEEP_NEVER: "Nikad" +STR_STEP_HINT_FRONT: "Prednja dugmad:" +STR_STEP_HINT_SIDE: "Bočna dugmad:" +STR_ADD_SERVER: "Dodaj server" +STR_SERVER_NAME: "Naziv servera" +STR_NO_SERVERS: "Nema podešenih OPDS servera" +STR_DELETE_SERVER: "Obriši server" +STR_OPDS_SERVERS: "OPDS serveri" +STR_AUTO_TURN_ENABLED: "Automatsko okretanje omogućeno: " +STR_AUTO_TURN_PAGES_PER_MIN: "Automatsko okretanje (stranica po minuti)" +STR_MANAGE_FONTS: "Upravljaj fontovima" +STR_FONT_BROWSER: "Pregledač fontova" +STR_LOADING_FONT_LIST: "Učitavanje liste fontova..." +STR_NO_FONTS_AVAILABLE: "Nema dostupnih fontova" +STR_FONT_INSTALLED: "Font instaliran!" +STR_FONT_INSTALL_FAILED: "Instalacija fonta nije uspjela" +STR_INSTALLED: "Instalirano" +STR_DOWNLOAD_ALL: "Preuzmi sve" +STR_UPDATE_ALL: "Ažuriraj sve" +STR_UPDATE_AVAILABLE: "Ažuriranje" +STR_CRASH_TITLE: "Sistemski pad" +STR_CRASH_DESCRIPTION: "Detaljan izvještaj je sačuvan u crash_report.txt. Molimo priloži ovu datoteku u svoj izvještaj o grešci." +STR_CRASH_REASON: "Razlog pada:" +STR_CRASH_NO_REASON: "(Razlog nije zabilježen)" +STR_TILT_PAGE_TURN: "Okretanje stranice naginjanjem" +STR_KB_HINT_MOVE_CURSOR: "Pritisni LIJEVO ili DESNO za pomjeranje kursora" +STR_KB_HINT_RETURN_CURSOR: "Pritisni LIJEVO za povratak na poziciju kursora" +STR_KB_HINT_HIDE_PASSWORD: "Drži DESNO pa pritisni [***] za skrivanje lozinke" +STR_KB_HINT_SHOW_PASSWORD: "Drži DESNO pa pritisni [abc] za prikaz lozinke" +STR_KB_HINT_TOGGLE_HIDE_PASSWORD: "Pritisni [***] za skrivanje lozinke" +STR_KB_HINT_TOGGLE_SHOW_PASSWORD: "Pritisni [abc] za prikaz lozinke" +STR_KB_HINT_EDIT_ENTRY: "Drži GORE za uređivanje unosa" +STR_KB_TIPS: "Savjeti:" +STR_KB_HINT_RETURN_KEYBOARD: "Pritisni DOLJE za povratak na tastaturu" +STR_KB_HINT_EXIT_URL_MODE: "Pritisni ABC za izlazak iz URL načina" +STR_KB_HINT_CLEAR_TEXT: "Drži DEL za brisanje cijelog teksta" +STR_KB_HINT_SECONDARY_CHAR: "Drži SELECT za sekundarni znak" +STR_KB_HINT_UPPER_SECONDARY: "Drži SELECT za VELIKA SLOVA ili sekundarni znak" +STR_KB_HINT_LOWER_SECONDARY: "Drži SELECT za mala slova ili sekundarni znak" +STR_KB_HINT_URL_SNIPPETS: "Pritisni URL za isječke" +STR_SD_FIRMWARE_UPDATE: "Ažuriranje firmvera sa SD kartice" +STR_SELECT_FIRMWARE_FILE: "Odaberi datoteku firmvera (.bin)" +STR_NO_BIN_FILES: "Nema pronađenih .bin datoteka" +STR_VALIDATING_FIRMWARE: "Provjera firmvera..." +STR_INVALID_FIRMWARE: "Nevažeća datoteka firmvera" +STR_FIRMWARE_TOO_LARGE: "Firmver je prevelik za particiju" +STR_FIRMWARE_TOO_SMALL: "Datoteka firmvera je premala" +STR_FIRMWARE_UPDATE_PROMPT: "Ažurirati firmver?" +STR_FIRMWARE_FILE_OPEN_FAILED: "Datoteka se ne može otvoriti" +STR_FIRMWARE_WRITE_FAILED: "Upisivanje firmvera nije uspjelo" +STR_FIRMWARE_UPDATE_DO_NOT_POWER_OFF: "Ne isključuj napajanje!" +STR_RECOVERY_MODE: "Način oporavka" +STR_RECOVERY_MODE_HINT: "Stavi firmware.bin u korijenski direktorij SD kartice i odaberi ga" diff --git a/lib/I18n/translations/catalan.yaml b/lib/I18n/translations/catalan.yaml index 0094050086..eb1a5abc33 100644 --- a/lib/I18n/translations/catalan.yaml +++ b/lib/I18n/translations/catalan.yaml @@ -7,7 +7,7 @@ STR_BOOTING: "ARRENCANT" STR_SLEEPING: "ENTRANT EN REPÒS" STR_ENTERING_SLEEP: "Entrant en repòs" STR_BROWSE_FILES: "Explora fitxers" -STR_FILE_TRANSFER: "Transferència" +STR_FILE_TRANSFER: "Transferència de fitxers" STR_SETTINGS_TITLE: "Configuració" STR_CONTINUE_READING: "Continua llegint" STR_NO_OPEN_BOOK: "Cap llibre obert" @@ -18,6 +18,7 @@ STR_NO_CHAPTERS: "Sense capítols" STR_END_OF_BOOK: "Final del llibre" STR_EMPTY_CHAPTER: "Capítol buit" STR_INDEXING: "S'està indexant" +STR_INDEX_FAILED: "No s'ha pogut indexar: llibre no vàlid" STR_MEMORY_ERROR: "Error de memòria" STR_PAGE_LOAD_ERROR: "Error en carregar la pàgina" STR_EMPTY_FILE: "Fitxer buit" @@ -28,58 +29,64 @@ STR_WIFI_NETWORKS: "Xarxes Wi-Fi" STR_NO_NETWORKS: "No s'han trobat xarxes" STR_NETWORKS_FOUND: "%zu xarxes trobades" STR_SCANNING: "S'està escanejant..." +STR_FINDING_SAVED_WIFI: "S'estan cercant xarxes Wi-Fi desades..." STR_CONNECTING: "S'està connectant..." +STR_CONNECTING_SAVED_WIFI: "S'està connectant a una xarxa Wi-Fi desada..." +STR_SHOW_NETWORKS: "Mostra" STR_CONNECTED: "S'ha connectat!" STR_CONNECTION_FAILED: "Error de connexió" -STR_FORGET_NETWORK: "Voleu oblidar aquesta xarxa?" -STR_SAVE_PASSWORD: "Voleu desar la contrasenya per a la propera vegada?" -STR_PRESS_OK_SCAN: "Premeu OK per tornar a escanejar" +STR_FORGET_NETWORK: "Vols oblidar aquesta xarxa?" +STR_SAVE_PASSWORD: "Vols desar la contrasenya per a la propera vegada?" +STR_PRESS_OK_SCAN: "Prem OK per tornar a escanejar" STR_JOIN_NETWORK: "Uneix-te a una xarxa" STR_CREATE_HOTSPOT: "Crea un punt d'accés" STR_JOIN_DESC: "Connecta't a una xarxa Wi-Fi existent" STR_HOTSPOT_DESC: "Crea una xarxa Wi-Fi per unir-s'hi" STR_STARTING_HOTSPOT: "S'està iniciant el punt d'accés..." STR_HOTSPOT_MODE: "Mode de punt d'accés" -STR_CONNECT_WIFI_HINT: "Connecteu el dispositiu a aquesta xarxa Wi-Fi" -STR_OPEN_URL_HINT: "Obriu aquest URL al navegador" +STR_CONNECT_WIFI_HINT: "Connecta el dispositiu a aquesta xarxa Wi-Fi" +STR_OPEN_URL_HINT: "Obre aquest URL al navegador" STR_OR_HTTP_PREFIX: "o http://" -STR_SCAN_QR_HINT: "o escanegeu el codi QR amb el telèfon:" +STR_SCAN_QR_HINT: "o escaneja el codi QR amb el telèfon:" STR_CALIBRE_WIRELESS: "Calibre sense fils" STR_NETWORK_LEGEND: "* = Encriptat | + = Desat" STR_MAC_ADDRESS: "Adreça MAC:" STR_CHECKING_WIFI: "S'està comprovant el Wi-Fi..." -STR_ENTER_WIFI_PASSWORD: "Introduïu la contrasenya Wi-Fi" +STR_ENTER_WIFI_PASSWORD: "Introdueix la contrasenya Wi-Fi" STR_TO_PREFIX: "a " STR_CALIBRE_RECEIVING: "S'està rebent: " STR_CALIBRE_RECEIVED: "S'ha rebut: " -STR_CALIBRE_INSTRUCTION_1: "1) Instal·leu el connector CrossPoint Reader" -STR_CALIBRE_INSTRUCTION_2: "2) Estigueu a la mateixa xarxa Wi-Fi" +STR_CALIBRE_INSTRUCTION_1: "1) Instal·la el connector CrossPoint Reader" +STR_CALIBRE_INSTRUCTION_2: "2) Estigues a la mateixa xarxa Wi-Fi" STR_CALIBRE_INSTRUCTION_3: "3) A Calibre: \"Envia a un dispositiu\"" -STR_CALIBRE_INSTRUCTION_4: "\"Mantingueu aquesta pantalla oberta mentre s'envia\"" +STR_CALIBRE_INSTRUCTION_4: "\"Mantén aquesta pantalla oberta mentre s'envia\"" STR_CAT_DISPLAY: "Visualització" STR_CAT_READER: "Lector" STR_CAT_CONTROLS: "Controls" STR_CAT_SYSTEM: "Sistema" STR_SLEEP_SCREEN: "Pantalla de repòs" -STR_SLEEP_COVER_MODE: "Mode de pantalla de repòs" +STR_SLEEP_COVER_MODE: "Ajust de la portada en repòs" STR_HIDE_BATTERY: "Oculta el % de bateria" STR_EXTRA_SPACING: "Espaiat de paràgraf extra" STR_TEXT_AA: "Antialiàsing del text" STR_IMAGES: "Imatges" STR_IMAGES_DISPLAY: "Mostrar" -STR_IMAGES_PLACEHOLDER: "Text de mostra" +STR_IMAGES_PLACEHOLDER: "Text alternatiu" STR_IMAGES_SUPPRESS: "Suprimir" -STR_SHORT_PWR_BTN: "Clic curt del botó d'engegada" +STR_EOB_HOME: "Inici" +STR_EOB_CONTINUE_WITH: "Continua amb" +STR_SHORT_PWR_BTN: "Pulsació curta del botó d'engegada" STR_ORIENTATION: "Orientació de lectura" STR_SIDE_BTN_LAYOUT: "Disposició botons laterals" +STR_TOUCH_READER_CONTROLS: "Controls tàctils del lector" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Orientar botons frontals" -STR_LONG_PRESS_BEHAVIOR: "Comportament de prémer llargament el botó" +STR_LONG_PRESS_BEHAVIOR: "Acció en mantenir premut un botó" STR_LONG_PRESS_BEHAVIOR_OFF: "Desactivat" STR_LONG_PRESS_BEHAVIOR_SKIP: "Saltar capítols" STR_LONG_PRESS_BEHAVIOR_ORIENTATION: "Canvi d'orientació" STR_LONG_PRESS_MENU: "Funció de pulsació llarga" -STR_FONT_FAMILY: "Tipus de lletra" -STR_FONT_SIZE: "Mida de la lletra (UI)" +STR_FONT_FAMILY: "Font del lector" +STR_FONT_SIZE: "Cos de lletra del lector" STR_LINE_SPACING: "Interlineat del lector" STR_SCREEN_MARGIN: "Marge de pantalla del lector" STR_PARA_ALIGNMENT: "Alineació de paràgrafs del lector" @@ -88,15 +95,16 @@ STR_TIME_TO_SLEEP: "Temps per entrar en repòs" STR_SHOW_HIDDEN_FILES: "Mostra fitxers ocults" STR_REMOVE_READ_FROM_RECENTS: "Esborra els llibres llegits de la llista de recents" STR_MOVE_FINISHED_TO_READ: "Mou els llibres acabats a la carpeta Read" -STR_REFRESH_FREQ: "Freqüència de refresc" +STR_REFRESH_FREQ: "Freqüència d'actualització" STR_KOREADER_SYNC: "Sincronització del KOReader" STR_CHECK_UPDATES: "Comprova si hi ha actualitzacions" -STR_LANGUAGE: "Idioma" +STR_LANGUAGE: "Llengua" STR_CLEAR_READING_CACHE: "Esborra la memòria cau de lectura" STR_USERNAME: "Nom d'usuari" STR_PASSWORD: "Contrasenya" STR_SYNC_SERVER_URL: "URL del servidor de sincronització" STR_DOCUMENT_MATCHING: "Coincidència de documents" +STR_SEND_METADATA: "Envia metadades del document" STR_AUTHENTICATE: "Autentica" STR_KOREADER_USERNAME: "Nom d'usuari del KOReader" STR_KOREADER_PASSWORD: "Contrasenya del KOReader" @@ -142,7 +150,7 @@ STR_PREV_NEXT: "Anterior/Següent" STR_NEXT_PREV: "Següent/Anterior" STR_KOSYNC: "KOSync" STR_BOOKMARK_OPTION: "Punt de llibre" -STR_DISABLED: "Desactivats" +STR_DISABLED: "Sense funció" STR_NOTO_SERIF: "Noto Serif" STR_NOTO_SANS: "Noto Sans" STR_SMALL: "Petita" @@ -170,16 +178,16 @@ STR_UPDATING: "S'està actualitzant..." STR_NO_UPDATE: "No hi ha actualitzacions disponibles" STR_UPDATE_FAILED: "Ha fallat l'actualització" STR_UPDATE_COMPLETE: "Actualització completada" -STR_POWER_ON_HINT: "Premeu i manteniu premut el botó d'encesa per tornar a engegar" +STR_POWER_ON_HINT: "Prem i mantén premut el botó d'encesa per tornar a engegar" STR_NO_ENTRIES: "No s'ha trobat cap entrada" STR_DOWNLOADING: "S'està baixant..." STR_DOWNLOAD_FAILED: "Ha fallat la baixada" STR_ERROR_MSG: "Error:" STR_UNNAMED: "Sense nom" -STR_HOLD_OPEN_TO_DELETE: "Manteniu premut Obre per esborrar" +STR_HOLD_OPEN_TO_DELETE: "Mantén premut Obre per esborrar" STR_NO_SERVER_URL: "No s'ha configurat cap URL de servidor" -STR_FETCH_FEED_FAILED: "Ha fallat l'obtenció del feed" -STR_PARSE_FEED_FAILED: "Ha fallat l'anàlisi del feed" +STR_FETCH_FEED_FAILED: "Ha fallat l'obtenció del canal de continguts" +STR_PARSE_FEED_FAILED: "Ha fallat l'anàlisi del canal de continguts" STR_NETWORK_PREFIX: "Xarxa: " STR_IP_ADDRESS_PREFIX: "Adreça IP: " STR_ERROR_GENERAL_FAILURE: "Error: Fallada general" @@ -192,7 +200,7 @@ STR_HOME: "« Inici" STR_SELECT: "Selecciona" STR_SELECTED: "Seleccionat" STR_TOGGLE: "Canvia" -STR_TOGGLE_BOOKMARK: "Commuta punt de llibre" +STR_TOGGLE_BOOKMARK: "Afegeix o elimina el punt de llibre" STR_CONFIRM: "Confirma" STR_CANCEL: "Cancel·la" STR_CONNECT: "Connecta" @@ -211,7 +219,7 @@ STR_DIR_RIGHT: "Dreta" STR_DIR_UP: "Amunt" STR_DIR_DOWN: "Avall" STR_OK_BUTTON: "OK" -STR_SLEEP_COVER_FILTER: "Filtre de pantalla de repòs" +STR_SLEEP_COVER_FILTER: "Filtre de la portada en repòs" STR_FILTER_CONTRAST: "Contrast" STR_CUSTOMISE_STATUS_BAR: "Personalitza la barra d'estat" STR_CHAPTER_PAGE_COUNT: "Comptador de pàgines del capítol" @@ -233,7 +241,7 @@ STR_THEME_CLASSIC: "Clàssic" STR_THEME_LYRA: "Lyra" STR_THEME_LYRA_EXTENDED: "Lyra Ampliat" STR_SUNLIGHT_FADING_FIX: "Correcció de l'esvaïment pel sol" -STR_QUICK_RESUME_TIMEOUT: "Represa ràpida després del temps" +STR_QUICK_RESUME_TIMEOUT: "Represa ràpida per inactivitat" STR_REMAP_FRONT_BUTTONS: "Reassigna els botons frontals" STR_BOOKMARKS: "Punts de llibre" STR_BOOKMARK_ADDED: "S'ha afegit el punt de llibre." @@ -242,17 +250,17 @@ STR_OPDS_BROWSER: "Navegador OPDS" STR_COVER_CUSTOM: "Portada + Personalitzat" STR_QUICK_RESUME: "Represa ràpida" STR_MENU_RECENT_BOOKS: "Llibres recents" -STR_REMOVE_FROM_RECENTS: "Voleu suprimir-lo de Llibres recents?" +STR_REMOVE_FROM_RECENTS: "Vols suprimir-lo de Llibres recents?" STR_NO_RECENT_BOOKS: "No hi ha llibres recents" STR_CALIBRE_DESC: "Usa les transferències sense fils de Calibre" -STR_FORGET_AND_REMOVE: "Voleu suprimir la contrasenya desada?" +STR_FORGET_AND_REMOVE: "Vols oblidar la xarxa i suprimir la contrasenya desada?" STR_FORGET_BUTTON: "Oblida" STR_CALIBRE_STARTING: "S'està iniciant el Calibre..." STR_CALIBRE_SETUP: "Configura" STR_CALIBRE_STATUS: "Estat" STR_CLEAR_BUTTON: "Esborra" STR_DEFAULT_VALUE: "Per defecte" -STR_REMAP_PROMPT: "Premeu un botó frontal per a cada rol" +STR_REMAP_PROMPT: "Prem un botó frontal per a cada rol" STR_UNASSIGNED: "No assignat" STR_ALREADY_ASSIGNED: "Ja assignat" STR_REMAP_RESET_HINT: "Botó lateral Amunt: Restableix la disposició per defecte" @@ -266,19 +274,19 @@ STR_GO_HOME_BUTTON: "Ves a l'inici" STR_SYNC_PROGRESS: "Sincronitza el progrés" STR_DELETE_CACHE: "Esborra la memòria cau del llibre" STR_DELETE: "Esborra" -STR_CONFIRM_DELETE_BOOKMARK: "Voleu esborrar aquest punt de llibre?" +STR_CONFIRM_DELETE_BOOKMARK: "Vols esborrar aquest punt de llibre?" STR_DISPLAY_QR: "Mostra la pàgina com a QR" STR_CHAPTER_PREFIX: "Capítol: " STR_PAGES_SEPARATOR: " pàgines | " STR_BOOK_PREFIX: "Llibre: " -STR_CALIBRE_URL_HINT: "Per al Calibre, afegiu /opds a la URL" +STR_CALIBRE_URL_HINT: "Per al Calibre, afegeix /opds a la URL" STR_SYNCING_TIME: "S'està sincronitzant el temps..." -STR_CALC_HASH: "S'està calculant el hash del document..." -STR_HASH_FAILED: "No s'ha pogut calcular el hash del document" +STR_CALC_HASH: "S'està calculant l'empremta electrònica del document..." +STR_HASH_FAILED: "No s'ha pogut calcular l'empremta electrònica del document" STR_FETCH_PROGRESS: "S'està obtenint el progrés remot..." STR_UPLOAD_PROGRESS: "S'està pujant el progrés..." STR_NO_CREDENTIALS_MSG: "No s'han configurat credencials" -STR_KOREADER_SETUP_HINT: "Configureu el compte de KOReader a la configuració" +STR_KOREADER_SETUP_HINT: "Configura el compte de KOReader a la configuració" STR_PROGRESS_FOUND: "S'ha trobat progrés!" STR_REMOTE_LABEL: "Remot:" STR_LOCAL_LABEL: "Local:" @@ -288,7 +296,7 @@ STR_DEVICE_FROM_FORMAT: " De: %s" STR_APPLY_REMOTE: "Aplica el progrés remot" STR_UPLOAD_LOCAL: "Puja el progrés local" STR_NO_REMOTE_MSG: "No s'ha trobat progrés remot" -STR_UPLOAD_PROMPT: "Voleu pujar la posició actual?" +STR_UPLOAD_PROMPT: "Vols pujar la posició actual?" STR_UPLOAD_SUCCESS: "Progrés pujat!" STR_SYNC_FAILED_MSG: "Sincronització fallida" STR_SAVE_PROGRESS_FAILED: "No s'ha pogut desar el progrés" @@ -307,11 +315,11 @@ STR_SLEEP_NEVER: "Mai" STR_STEP_HINT_FRONT: "Botons frontals:" STR_STEP_HINT_SIDE: "Botons laterals:" STR_SCREENSHOT_BUTTON: "Fes una captura de pantalla" -STR_AUTO_TURN_ENABLED: "Passar automàtic activat: " -STR_AUTO_TURN_PAGES_PER_MIN: "Passar automàtic (pàgines per minut)" +STR_AUTO_TURN_ENABLED: "Pas automàtic de pàgina activat" +STR_AUTO_TURN_PAGES_PER_MIN: "Pas automàtic de pàgina (pàg./min)" STR_TILT_PAGE_TURN: "Pas de pàgina per inclinació" STR_FORCE_REFRESH: "Refresca la pantalla" -STR_RESTARTING_HINT: "S'està reiniciant... Si el dispositiu no es reinicia, manteniu premut el botó d'encesa durant uns segons." +STR_RESTARTING_HINT: "S'està reiniciant... Si el dispositiu no es reinicia, mantén premut el botó d'encesa durant uns segons." STR_NEXT_PAGE: "Pàgina següent »" STR_PREV_PAGE: "« Pàgina anterior" STR_XTC_STATUS_BAR: "Barra d'estat XTC" @@ -340,20 +348,25 @@ STR_SERVER_NAME: "Nom del servidor" STR_NO_SERVERS: "No hi ha servidors OPDS configurats" STR_DELETE_SERVER: "Suprimeix el servidor" STR_OPDS_SERVERS: "Servidors OPDS" -STR_MANAGE_FONTS: "Gestiona els tipus de lletra" -STR_FONT_BROWSER: "Navegador de tipus de lletra" -STR_LOADING_FONT_LIST: "S'està carregant la llista de tipus de lletra..." -STR_NO_FONTS_AVAILABLE: "No hi ha tipus de lletra disponibles" +STR_OPDS_DOWNLOAD_FOLDER: "Carpeta de baixades" +STR_OPDS_FILENAME_FORMAT: "Format del nom de fitxer" +STR_FMT_AUTHOR_TITLE: "Autor - Títol" +STR_FMT_TITLE_AUTHOR: "Títol - Autor" +STR_FMT_TITLE: "Títol" +STR_MANAGE_FONTS: "Gestiona les fonts" +STR_FONT_BROWSER: "Navegador de fonts" +STR_LOADING_FONT_LIST: "S'està carregant la llista de fonts..." +STR_NO_FONTS_AVAILABLE: "No hi ha fonts disponibles" STR_FONT_PREVIEW_TEXT: "Jove xef, porti whisky amb quinze glaçons d'hidrogen, coi!" -STR_FONT_INSTALLED: "Tipus de lletra instal·lat!" -STR_FONT_INSTALL_FAILED: "Ha fallat la instal·lació del tipus de lletra" +STR_FONT_INSTALLED: "Font instal·lada!" +STR_FONT_INSTALL_FAILED: "Ha fallat la instal·lació de la font" STR_INSTALLED: "Instal·lat" STR_DOWNLOAD_ALL: "Descarrega-ho tot" STR_UPDATE_ALL: "Actualitza-ho tot" STR_UPDATE_AVAILABLE: "Actualitza" -STR_CRASH_TITLE: "Bloqueig del sistema" -STR_CRASH_DESCRIPTION: "S'ha desat un informe detallat a crash_report.txt. Incloeu aquest fitxer a l'informe d'errors." -STR_CRASH_REASON: "Motiu del bloqueig:" +STR_CRASH_TITLE: "Fallada del sistema" +STR_CRASH_DESCRIPTION: "S'ha desat un informe detallat a crash_report.txt. Inclou aquest fitxer a l'informe d'errors." +STR_CRASH_REASON: "Motiu de la fallada" STR_CRASH_NO_REASON: "(No s'ha registrat cap motiu)" STR_KB_HINT_MOVE_CURSOR: "Prem Esquerra o Dreta per moure el cursor" STR_KB_HINT_RETURN_CURSOR: "Prem Esquerra per tornar a la posició del cursor" @@ -366,20 +379,22 @@ STR_KB_TIPS: "Consells:" STR_KB_HINT_RETURN_KEYBOARD: "Prem Avall per tornar al teclat" STR_KB_HINT_EXIT_URL_MODE: "Prem ABC per sortir del mode URL" STR_KB_HINT_CLEAR_TEXT: "Mantén premut DEL per esborrar tot el text" -STR_KB_HINT_SECONDARY_CHAR: "Mantén premut SELECT per al caràcter secundari" -STR_KB_HINT_UPPER_SECONDARY: "Mantén premut SELECT per MAJÚSCULES o caràcter secundari" -STR_KB_HINT_LOWER_SECONDARY: "Mantén premut SELECT per minúscules o caràcter secundari" +STR_KB_HINT_SECONDARY_CHAR: "Mantén premut SELECT: caràcter secundari" +STR_KB_HINT_UPPER_SECONDARY: "Mantén premut SELECT: majúscules o caràcter secundari" +STR_KB_HINT_LOWER_SECONDARY: "Mantén premut SELECT: minúscules o caràcter secundari" STR_KB_HINT_URL_SNIPPETS: "Prem URL per inserir fragments" STR_SD_FIRMWARE_UPDATE: "Actualització de firmware des de la targeta SD" -STR_SELECT_FIRMWARE_FILE: "Seleccioneu un fitxer de firmware (.bin)" +STR_SELECT_FIRMWARE_FILE: "Selecciona un fitxer de firmware (.bin)" STR_NO_BIN_FILES: "No s'han trobat fitxers .bin" STR_VALIDATING_FIRMWARE: "S'està validant el firmware..." STR_INVALID_FIRMWARE: "Fitxer de firmware no vàlid" STR_FIRMWARE_TOO_LARGE: "El firmware és massa gran per a la partició" STR_FIRMWARE_TOO_SMALL: "El fitxer de firmware és massa petit" -STR_FIRMWARE_UPDATE_PROMPT: "Voleu actualitzar el firmware?" +STR_FIRMWARE_UPDATE_PROMPT: "Vols actualitzar el firmware?" STR_FIRMWARE_FILE_OPEN_FAILED: "No es pot obrir el fitxer" STR_FIRMWARE_WRITE_FAILED: "Ha fallat l'escriptura del firmware" -STR_FIRMWARE_UPDATE_DO_NOT_POWER_OFF: "No apagueu el dispositiu!" +STR_FIRMWARE_UPDATE_DO_NOT_POWER_OFF: "No apaguis el dispositiu!" STR_RECOVERY_MODE: "Mode de recuperació" -STR_RECOVERY_MODE_HINT: "Poseu firmware.bin a l'arrel de la targeta SD i seleccioneu-lo" +STR_RECOVERY_MODE_HINT: "Posa firmware.bin a l'arrel de la targeta SD i selecciona'l" +STR_ADD_HIDDEN_NETWORK: "Afegeix una xarxa oculta..." +STR_ENTER_WIFI_SSID: "Introdueix el nom de la xarxa (SSID)" diff --git a/lib/I18n/translations/czech.yaml b/lib/I18n/translations/czech.yaml index f5155a341c..3a0963190b 100644 --- a/lib/I18n/translations/czech.yaml +++ b/lib/I18n/translations/czech.yaml @@ -49,7 +49,7 @@ STR_NETWORK_LEGEND: "* = Šifrováno | + = Uloženo" STR_MAC_ADDRESS: "MAC adresa:" STR_CHECKING_WIFI: "Kontrola Wi-Fi..." STR_ENTER_WIFI_PASSWORD: "Zadejte heslo Wi-Fi" -STR_TO_PREFIX: "pro" +STR_TO_PREFIX: "k " STR_CALIBRE_RECEIVING: "Příjem:" STR_CALIBRE_RECEIVED: "Přijato:" STR_CALIBRE_INSTRUCTION_1: "1) Nainstalujte plugin CrossPoint Reader" @@ -68,6 +68,7 @@ STR_TEXT_AA: "Vyhlazování textu" STR_SHORT_PWR_BTN: "Krátké stisknutí tlačítka napájení" STR_ORIENTATION: "Orientace čtení" STR_SIDE_BTN_LAYOUT: "Rozvržení bočních tlačítek (čtečka)" +STR_TOUCH_READER_CONTROLS: "Dotykové ovládání čtečky" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Orientovat přední tlačítka" STR_LONG_PRESS_BEHAVIOR: "Chování při dlouhém stisknutí tlačítka" STR_LONG_PRESS_BEHAVIOR_OFF: "VYP" @@ -92,6 +93,7 @@ STR_USERNAME: "Uživatelské jméno" STR_PASSWORD: "Heslo" STR_SYNC_SERVER_URL: "URL synch. serveru" STR_DOCUMENT_MATCHING: "Párování dokumentů" +STR_SEND_METADATA: "Odesílat metadata dokumentu" STR_AUTHENTICATE: "Ověření" STR_KOREADER_USERNAME: "Uživ. jméno KOReaderu" STR_KOREADER_PASSWORD: "Heslo KOReaderu" @@ -269,9 +271,16 @@ STR_BOOK_S_STYLE: "Styl knihy" STR_EMBEDDED_STYLE: "Vložený styl" STR_FOCUS_READING: "Soustředěné čtení" STR_OPDS_SERVER_URL: "URL serveru OPDS" +STR_OPDS_DOWNLOAD_FOLDER: "Složka pro stahování" +STR_OPDS_FILENAME_FORMAT: "Formát názvu souboru" +STR_FMT_AUTHOR_TITLE: "Autor - Název" +STR_FMT_TITLE_AUTHOR: "Název - Autor" +STR_FMT_TITLE: "Název" STR_SCREENSHOT_BUTTON: "Udělat snímek obrazovky" STR_SLEEP_TIMER_VALUE_FORMAT: "%u min" STR_SLEEP_NEVER: "Nikdy" STR_STEP_HINT_FRONT: "Přední tlačítka:" STR_STEP_HINT_SIDE: "Boční tlačítka:" STR_TILT_PAGE_TURN: "Otáčení stránek nakloněním" +STR_ADD_HIDDEN_NETWORK: "Přidat skrytou síť..." +STR_ENTER_WIFI_SSID: "Zadejte název sítě (SSID)" diff --git a/lib/I18n/translations/danish.yaml b/lib/I18n/translations/danish.yaml index e657aabc0d..fdcb43121d 100644 --- a/lib/I18n/translations/danish.yaml +++ b/lib/I18n/translations/danish.yaml @@ -72,6 +72,7 @@ STR_IMAGES_SUPPRESS: "Skjul" STR_SHORT_PWR_BTN: "Kort tryk på tænd/sluk-knap" STR_ORIENTATION: "Læseretning" STR_SIDE_BTN_LAYOUT: "Knaplayout på siden (læser)" +STR_TOUCH_READER_CONTROLS: "Touchkontroller i læser" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Orientér forreste knapper" STR_LONG_PRESS_BEHAVIOR: "Comportamiento al mantener pulsado el botón" STR_LONG_PRESS_BEHAVIOR_OFF: "Desactivado" @@ -97,6 +98,7 @@ STR_USERNAME: "Brugernavn" STR_PASSWORD: "Adgangskode" STR_SYNC_SERVER_URL: "Synkroniseringsserver-URL" STR_DOCUMENT_MATCHING: "Dokumentsammenkobling" +STR_SEND_METADATA: "Send dokumentmetadata" STR_AUTHENTICATE: "Godkend" STR_KOREADER_USERNAME: "KOReader brugernavn" STR_KOREADER_PASSWORD: "KOReader adgangskode" @@ -299,7 +301,14 @@ STR_SLEEP_TIMER_VALUE_FORMAT: "%u min" STR_SLEEP_NEVER: "Aldrig" STR_STEP_HINT_FRONT: "Frontknapper:" STR_STEP_HINT_SIDE: "Sideknapper:" +STR_OPDS_DOWNLOAD_FOLDER: "Downloadmappe" +STR_OPDS_FILENAME_FORMAT: "Filnavnsformat" +STR_FMT_AUTHOR_TITLE: "Forfatter - Titel" +STR_FMT_TITLE_AUTHOR: "Titel - Forfatter" +STR_FMT_TITLE: "Titel" STR_SCREENSHOT_BUTTON: "Tag skærmbillede" STR_AUTO_TURN_ENABLED: "Automatisk sidevendning aktiveret: " STR_AUTO_TURN_PAGES_PER_MIN: "Automatisk vending (sider per minut)" STR_TILT_PAGE_TURN: "Vip for at vende side" +STR_ADD_HIDDEN_NETWORK: "Tilføj skjult netværk..." +STR_ENTER_WIFI_SSID: "Indtast netværksnavn (SSID)" diff --git a/lib/I18n/translations/dutch.yaml b/lib/I18n/translations/dutch.yaml index abe10661f7..fe6cc61cd2 100644 --- a/lib/I18n/translations/dutch.yaml +++ b/lib/I18n/translations/dutch.yaml @@ -72,6 +72,7 @@ STR_IMAGES_SUPPRESS: "Verbergen" STR_SHORT_PWR_BTN: "Korte klik aan/uit-knop" STR_ORIENTATION: "Leesstand" STR_SIDE_BTN_LAYOUT: "Indeling zijknoppen (lezer)" +STR_TOUCH_READER_CONTROLS: "Aanraakbediening lezer" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Richt voorste knoppen" STR_LONG_PRESS_BEHAVIOR: "Long-press button behavior" STR_LONG_PRESS_BEHAVIOR_OFF: "OFF" @@ -97,6 +98,7 @@ STR_USERNAME: "Gebruikersnaam" STR_PASSWORD: "Wachtwoord" STR_SYNC_SERVER_URL: "Sync-server URL" STR_DOCUMENT_MATCHING: "Documentkoppeling" +STR_SEND_METADATA: "Documentmetadata versturen" STR_AUTHENTICATE: "Authenticatie" STR_KOREADER_USERNAME: "KOReader gebruikersnaam" STR_KOREADER_PASSWORD: "KOReader wachtwoord" @@ -299,7 +301,14 @@ STR_SLEEP_TIMER_VALUE_FORMAT: "%u min" STR_SLEEP_NEVER: "Nooit" STR_STEP_HINT_FRONT: "Voorknoppen:" STR_STEP_HINT_SIDE: "Zijknoppen:" +STR_OPDS_DOWNLOAD_FOLDER: "Downloadmap" +STR_OPDS_FILENAME_FORMAT: "Bestandsnaamformaat" +STR_FMT_AUTHOR_TITLE: "Auteur - Titel" +STR_FMT_TITLE_AUTHOR: "Titel - Auteur" +STR_FMT_TITLE: "Titel" STR_SCREENSHOT_BUTTON: "Screenshot maken" STR_AUTO_TURN_ENABLED: "Automatisch omslaan ingeschakeld: " STR_AUTO_TURN_PAGES_PER_MIN: "Autom. omslaan (pagina's per minuut)" STR_TILT_PAGE_TURN: "Kantel om te bladeren" +STR_ADD_HIDDEN_NETWORK: "Verborgen netwerk toevoegen..." +STR_ENTER_WIFI_SSID: "Voer netwerknaam in (SSID)" diff --git a/lib/I18n/translations/english.yaml b/lib/I18n/translations/english.yaml index d9174a2abf..7a77dcc6b8 100644 --- a/lib/I18n/translations/english.yaml +++ b/lib/I18n/translations/english.yaml @@ -10,6 +10,7 @@ STR_BROWSE_FILES: "Browse Files" STR_FILE_TRANSFER: "File Transfer" STR_SETTINGS_TITLE: "Settings" STR_CONTINUE_READING: "Continue Reading" +STR_RESUME: "Resume" STR_NO_OPEN_BOOK: "No open book" STR_START_READING: "Start reading below" STR_NO_FILES_FOUND: "No files found" @@ -18,17 +19,27 @@ STR_NO_CHAPTERS: "No chapters" STR_END_OF_BOOK: "End of book" STR_EMPTY_CHAPTER: "Empty chapter" STR_INDEXING: "Indexing" +STR_INDEX_FAILED: "Failed to index - invalid book" STR_MEMORY_ERROR: "Memory error" STR_PAGE_LOAD_ERROR: "Page load error" STR_EMPTY_FILE: "Empty file" STR_OUT_OF_BOUNDS: "Out of bounds" STR_LOADING: "Loading..." STR_LOADING_POPUP: "Loading" +STR_LOOKUP: "Look Up" +STR_DICT_LOOKING_UP: "Looking up..." +STR_DICT_INDEXING: "Indexing dictionary..." +STR_DICT_NOT_FOUND: "Not found" +STR_DICT_NO_DICT_SET: "No dictionary set" +STR_DICT_ERROR: "Dictionary error" STR_WIFI_NETWORKS: "Wi-Fi Networks" STR_NO_NETWORKS: "No networks found" STR_NETWORKS_FOUND: "%zu networks found" STR_SCANNING: "Scanning..." +STR_FINDING_SAVED_WIFI: "Finding saved Wi-Fi..." STR_CONNECTING: "Connecting..." +STR_CONNECTING_SAVED_WIFI: "Connecting to saved Wi-Fi..." +STR_SHOW_NETWORKS: "Show" STR_CONNECTED: "Connected!" STR_CONNECTION_FAILED: "Connection Failed" STR_FORGET_NETWORK: "Forget Network?" @@ -49,6 +60,8 @@ STR_NETWORK_LEGEND: "* = Encrypted | + = Saved" STR_MAC_ADDRESS: "MAC address:" STR_CHECKING_WIFI: "Checking Wi-Fi..." STR_ENTER_WIFI_PASSWORD: "Enter Wi-Fi password" +STR_ADD_HIDDEN_NETWORK: "Add hidden network..." +STR_ENTER_WIFI_SSID: "Enter network name (SSID)" STR_TO_PREFIX: "to " STR_CALIBRE_RECEIVING: "Receiving: " STR_CALIBRE_RECEIVED: "Received: " @@ -70,9 +83,12 @@ STR_IMAGES: "Images" STR_IMAGES_DISPLAY: "Display" STR_IMAGES_PLACEHOLDER: "Placeholder" STR_IMAGES_SUPPRESS: "Suppress" +STR_EOB_HOME: "Home" +STR_EOB_CONTINUE_WITH: "Continue with" STR_SHORT_PWR_BTN: "Short Power Button Click" STR_ORIENTATION: "Reading Orientation" STR_SIDE_BTN_LAYOUT: "Side Button Layout (reader)" +STR_TOUCH_READER_CONTROLS: "Touch Reader Controls" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Orient front buttons" STR_LONG_PRESS_BEHAVIOR: "Long-press button behavior" STR_LONG_PRESS_BEHAVIOR_OFF: "OFF" @@ -99,7 +115,16 @@ STR_USERNAME: "Username" STR_PASSWORD: "Password" STR_SYNC_SERVER_URL: "Sync Server URL" STR_DOCUMENT_MATCHING: "Document Matching" +STR_SEND_METADATA: "Send Document Metadata" +STR_SYNC_BEHAVIOR: "Sync Behavior" +STR_ASK_EVERY_TIME: "Ask every time" +STR_SMART_SYNC: "Smart sync" STR_AUTHENTICATE: "Authenticate" +STR_SIGN_UP: "Sign Up" +STR_CREATING_ACCOUNT: "Creating account..." +STR_ACCOUNT_CREATED: "Account created" +STR_SIGNUP_FAILED: "Sign up failed" +STR_USERNAME_TAKEN: "Username is already registered" STR_KOREADER_USERNAME: "KOReader Username" STR_KOREADER_PASSWORD: "KOReader Password" STR_FILENAME: "Filename" @@ -145,6 +170,7 @@ STR_PREV_NEXT: "Prev/Next" STR_NEXT_PREV: "Next/Prev" STR_KOSYNC: "KOSync" STR_BOOKMARK_OPTION: "Bookmark" +STR_DICTIONARY: "Dictionary" STR_DISABLED: "Disabled" STR_NOTO_SERIF: "Noto Serif" STR_NOTO_SANS: "Noto Sans" @@ -205,6 +231,7 @@ STR_CONNECT: "Connect" STR_OPEN: "Open" STR_DOWNLOAD: "Download" STR_RETRY: "Retry" +STR_TAP_TO_RETRY: "Tap to retry" STR_YES: "Yes" STR_NO: "No" STR_SHOW: "Show" @@ -217,6 +244,9 @@ STR_DIR_RIGHT: "Right" STR_DIR_UP: "Up" STR_DIR_DOWN: "Down" STR_OK_BUTTON: "OK" +STR_KEY_SHIFT: "Shift" +STR_KEY_MODE_SYMBOLS: "?123" +STR_KEY_MODE_ABC: "abc" STR_SLEEP_COVER_FILTER: "Sleep Screen Cover Filter" STR_FILTER_CONTRAST: "Contrast" STR_CUSTOMISE_STATUS_BAR: "Customise Status Bar" @@ -315,6 +345,7 @@ STR_UPLOAD_LOCAL: "Upload local progress" STR_NO_REMOTE_MSG: "No remote progress found" STR_UPLOAD_PROMPT: "Upload current position?" STR_UPLOAD_SUCCESS: "Progress uploaded!" +STR_ALREADY_SYNCED: "Already synced" STR_SYNC_FAILED_MSG: "Sync failed" STR_SAVE_PROGRESS_FAILED: "Could not save progress" STR_SECTION_PREFIX: "Section " @@ -324,6 +355,7 @@ STR_EMBEDDED_STYLE: "Embedded Style" STR_FOCUS_READING: "Focus Reading" STR_OPDS_SERVER_URL: "OPDS Server URL" STR_PWR_BTN_FOOTNOTE_BACK: "Quick-return from footnotes" +STR_BACK_SHORT_TO_FILE_BROWSER: "Short Back to File Browser" STR_SET_SLEEP_COVER: "Set Cover" STR_FOOTNOTES: "Footnotes" STR_NO_FOOTNOTES: "No footnotes on this page" @@ -338,6 +370,12 @@ STR_SERVER_NAME: "Server Name" STR_NO_SERVERS: "No OPDS servers configured" STR_DELETE_SERVER: "Delete Server" STR_OPDS_SERVERS: "OPDS Servers" +STR_OPDS_DOWNLOAD_FOLDER: "Download folder" +STR_OPDS_FILENAME_FORMAT: "Filename format" +STR_FMT_AUTHOR_TITLE: "Author - Title" +STR_FMT_TITLE_AUTHOR: "Title - Author" +STR_FMT_TITLE: "Title" +STR_OPDS_SD_ROOT: "SD root" STR_AUTO_TURN_ENABLED: "Auto Turn Enabled: " STR_AUTO_TURN_PAGES_PER_MIN: "Auto Turn (Pages Per Minute)" STR_MANAGE_FONTS: "Manage Fonts" diff --git a/lib/I18n/translations/finnish.yaml b/lib/I18n/translations/finnish.yaml index 10cadbf31d..3fe0e480e6 100644 --- a/lib/I18n/translations/finnish.yaml +++ b/lib/I18n/translations/finnish.yaml @@ -68,6 +68,7 @@ STR_TEXT_AA: "Tekstin reunanpehmennys" STR_SHORT_PWR_BTN: "Lyhyt virtapainikkeen painallus" STR_ORIENTATION: "Lukusuunta" STR_SIDE_BTN_LAYOUT: "Sivupainikkeiden asettelu (lukija)" +STR_TOUCH_READER_CONTROLS: "Lukijan kosketusohjaus" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Suuntaa etupainikkeet" STR_LONG_PRESS_BEHAVIOR: "Long-press button behavior" STR_LONG_PRESS_BEHAVIOR_OFF: "OFF" @@ -92,6 +93,7 @@ STR_USERNAME: "Käyttäjänimi" STR_PASSWORD: "Salasana" STR_SYNC_SERVER_URL: "Synkronointipalvelimen osoite" STR_DOCUMENT_MATCHING: "Dokumenttien tunnistus" +STR_SEND_METADATA: "Lähetä asiakirjan metatiedot" STR_AUTHENTICATE: "Tunnistaudu" STR_KOREADER_USERNAME: "KOReader-käyttäjänimi" STR_KOREADER_PASSWORD: "KOReader-salasana" @@ -267,9 +269,16 @@ STR_BOOK_S_STYLE: "Kirjan tyyli" STR_EMBEDDED_STYLE: "Upotettu tyyli" STR_FOCUS_READING: "Keskittynyt lukeminen" STR_OPDS_SERVER_URL: "OPDS-palvelimen osoite" +STR_OPDS_DOWNLOAD_FOLDER: "Latauskansio" +STR_OPDS_FILENAME_FORMAT: "Tiedostonimen muoto" +STR_FMT_AUTHOR_TITLE: "Tekijä - Nimi" +STR_FMT_TITLE_AUTHOR: "Nimi - Tekijä" +STR_FMT_TITLE: "Nimi" STR_SCREENSHOT_BUTTON: "Ota kuvakaappaus" STR_SLEEP_TIMER_VALUE_FORMAT: "%u min" STR_SLEEP_NEVER: "Ei koskaan" STR_STEP_HINT_FRONT: "Etupainikkeet:" STR_STEP_HINT_SIDE: "Sivupainikkeet:" STR_TILT_PAGE_TURN: "Sivunkääntö kallistamalla" +STR_ADD_HIDDEN_NETWORK: "Lisää piilotettu verkko..." +STR_ENTER_WIFI_SSID: "Anna verkon nimi (SSID)" diff --git a/lib/I18n/translations/french.yaml b/lib/I18n/translations/french.yaml index decf2e46de..beee855ee4 100644 --- a/lib/I18n/translations/french.yaml +++ b/lib/I18n/translations/french.yaml @@ -72,6 +72,7 @@ STR_IMAGES_SUPPRESS: "Masquer" STR_SHORT_PWR_BTN: "Appui court alim." STR_ORIENTATION: "Orientation de lecture" STR_SIDE_BTN_LAYOUT: "Boutons latéraux" +STR_TOUCH_READER_CONTROLS: "Commandes tactiles lecteur" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Orienter boutons avant" STR_LONG_PRESS_BEHAVIOR: "Comportement lors d'un appui long" STR_LONG_PRESS_BEHAVIOR_OFF: "Désactivé" @@ -97,6 +98,7 @@ STR_USERNAME: "Nom d’utilisateur" STR_PASSWORD: "Mot de passe" STR_SYNC_SERVER_URL: "URL du serveur" STR_DOCUMENT_MATCHING: "Correspondance" +STR_SEND_METADATA: "Envoyer métadonnées" STR_AUTHENTICATE: "Connexion" STR_KOREADER_USERNAME: "Utilisateur" STR_KOREADER_PASSWORD: "Mot de passe" @@ -300,7 +302,14 @@ STR_SLEEP_TIMER_VALUE_FORMAT: "%u min" STR_SLEEP_NEVER: "Jamais" STR_STEP_HINT_FRONT: "Boutons avant :" STR_STEP_HINT_SIDE: "Boutons latéraux :" +STR_OPDS_DOWNLOAD_FOLDER: "Dossier de téléchargement" +STR_OPDS_FILENAME_FORMAT: "Format du nom de fichier" +STR_FMT_AUTHOR_TITLE: "Auteur - Titre" +STR_FMT_TITLE_AUTHOR: "Titre - Auteur" +STR_FMT_TITLE: "Titre" STR_SCREENSHOT_BUTTON: "Capture d'écran" STR_AUTO_TURN_ENABLED: "Tourne-page auto : " STR_AUTO_TURN_PAGES_PER_MIN: "Tourne-page auto (pages par minute)" STR_TILT_PAGE_TURN: "Tourner par inclinaison" +STR_ADD_HIDDEN_NETWORK: "Ajouter un réseau masqué..." +STR_ENTER_WIFI_SSID: "Saisir le nom du réseau (SSID)" diff --git a/lib/I18n/translations/german.yaml b/lib/I18n/translations/german.yaml index 97ab710549..a4457a732f 100644 --- a/lib/I18n/translations/german.yaml +++ b/lib/I18n/translations/german.yaml @@ -68,6 +68,7 @@ STR_TEXT_AA: "Schriftglättung" STR_SHORT_PWR_BTN: "An-Taste kurz drücken" STR_ORIENTATION: "Leseausrichtung" STR_SIDE_BTN_LAYOUT: "Seitliche Tasten (Lesen)" +STR_TOUCH_READER_CONTROLS: "Touch-Steuerung beim Lesen" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Vordere Tasten ausrichten" STR_LONG_PRESS_BEHAVIOR: "Verhalten bei langem Tastendruck" STR_LONG_PRESS_BEHAVIOR_OFF: "Aus" @@ -91,6 +92,7 @@ STR_USERNAME: "Benutzername" STR_PASSWORD: "Passwort" STR_SYNC_SERVER_URL: "Sync-Server-URL" STR_DOCUMENT_MATCHING: "Dateizuordnung" +STR_SEND_METADATA: "Metadaten senden" STR_AUTHENTICATE: "Authentifizieren" STR_KOREADER_USERNAME: "KOReader-Benutzername" STR_KOREADER_PASSWORD: "KOReader-Passwort" @@ -314,6 +316,7 @@ STR_BOOK_S_STYLE: "Buch-Stil" STR_EMBEDDED_STYLE: "Eingebetteter Stil" STR_FOCUS_READING: "Fokus-Lesen" STR_OPDS_SERVER_URL: "OPDS-Server-URL" +STR_BACK_SHORT_TO_FILE_BROWSER: "Kurz zurück drücken zum Datei-Browser" STR_SET_SLEEP_COVER: "Wähle Cover" STR_SCREENSHOT_BUTTON: "Screenshot aufnehmen" STR_FOOTNOTES: "Fußnoten" @@ -328,6 +331,11 @@ STR_SERVER_NAME: "Servername" STR_NO_SERVERS: "Keine OPDS-Server konfiguriert" STR_DELETE_SERVER: "Server entfernen" STR_OPDS_SERVERS: "OPDS-Server" +STR_OPDS_DOWNLOAD_FOLDER: "Download-Ordner" +STR_OPDS_FILENAME_FORMAT: "Dateinamenformat" +STR_FMT_AUTHOR_TITLE: "Autor - Titel" +STR_FMT_TITLE_AUTHOR: "Titel - Autor" +STR_FMT_TITLE: "Titel" STR_AUTO_TURN_ENABLED: "Auto-Umblättern aktiv: " STR_AUTO_TURN_PAGES_PER_MIN: "Auto-Umblättern (Seiten/Min.)" STR_IMAGES: "Bilder" @@ -380,3 +388,5 @@ STR_FIRMWARE_WRITE_FAILED: "Schreiben der Firmware-Datei ist fehlgeschlagen" STR_FIRMWARE_UPDATE_DO_NOT_POWER_OFF: "Nicht ausschalten!" STR_RECOVERY_MODE: "Wiederherstellungsmodus" STR_RECOVERY_MODE_HINT: "Lege firmware.bin im SD-Kartenwurzelverzeichnis ab und wähle es aus" +STR_ADD_HIDDEN_NETWORK: "Verstecktes Netzwerk hinzufügen..." +STR_ENTER_WIFI_SSID: "Netzwerknamen eingeben (SSID)" diff --git a/lib/I18n/translations/hebrew.yaml b/lib/I18n/translations/hebrew.yaml index b48d0c0692..9d4b813b15 100644 --- a/lib/I18n/translations/hebrew.yaml +++ b/lib/I18n/translations/hebrew.yaml @@ -73,6 +73,7 @@ STR_IMAGES_SUPPRESS: "הסתר תמונות" STR_SHORT_PWR_BTN: "לחיצה קצרה על כפתור ההפעלה" STR_ORIENTATION: "כיוון קריאה (מסך)" STR_SIDE_BTN_LAYOUT: "פריסת כפתורי צד (בקריאה)" +STR_TOUCH_READER_CONTROLS: "שליטה במגע (קורא)" STR_LONG_PRESS_BEHAVIOR: "פעולת לחיצה ארוכה" STR_LONG_PRESS_BEHAVIOR_OFF: "כבוי" STR_LONG_PRESS_BEHAVIOR_SKIP: "דלג פרק" @@ -95,6 +96,7 @@ STR_USERNAME: "שם משתמש" STR_PASSWORD: "סיסמה" STR_SYNC_SERVER_URL: "כתובת שרת סנכרון" STR_DOCUMENT_MATCHING: "התאמת מסמכים" +STR_SEND_METADATA: "שלח מטא-נתוני מסמך" STR_AUTHENTICATE: "התחבר" STR_KOREADER_USERNAME: "שם משתמש ב-KOReader" STR_KOREADER_PASSWORD: "סיסמת KOReader" @@ -305,6 +307,11 @@ STR_NO_SERVERS: "לא הוגדרו שרתי OPDS" STR_DELETE_SERVER: "מחק שרת" STR_DELETE_CONFIRM: "למחוק שרת זה?" STR_OPDS_SERVERS: "שרתי OPDS" +STR_OPDS_DOWNLOAD_FOLDER: "תיקיית הורדות" +STR_OPDS_FILENAME_FORMAT: "תבנית שם קובץ" +STR_FMT_AUTHOR_TITLE: "מחבר - כותרת" +STR_FMT_TITLE_AUTHOR: "כותרת - מחבר" +STR_FMT_TITLE: "כותרת" STR_AUTO_TURN_ENABLED: "דפדוף אוטומטי פועל: " STR_AUTO_TURN_PAGES_PER_MIN: "דפדוף אוטומטי (דפים בדקה)" STR_MANAGE_FONTS: "ניהול גופנים" @@ -391,3 +398,5 @@ STR_SLEEP_TIMER_VALUE_FORMAT: "%u דקות" STR_SLEEP_NEVER: "אף פעם" STR_STEP_HINT_FRONT: "לחצנים קדמיים:" STR_STEP_HINT_SIDE: "לחצני צד:" +STR_ADD_HIDDEN_NETWORK: "הוסף רשת מוסתרת..." +STR_ENTER_WIFI_SSID: "הזן שם רשת (SSID)" diff --git a/lib/I18n/translations/hungarian.yaml b/lib/I18n/translations/hungarian.yaml index 7da48b4c55..50040c81fe 100644 --- a/lib/I18n/translations/hungarian.yaml +++ b/lib/I18n/translations/hungarian.yaml @@ -49,6 +49,8 @@ STR_NETWORK_LEGEND: "* = Titkosított | + = Mentett" STR_MAC_ADDRESS: "MAC-cím:" STR_CHECKING_WIFI: "Wi-Fi ellenőrzése..." STR_ENTER_WIFI_PASSWORD: "Add meg a Wi-Fi jelszót" +STR_ADD_HIDDEN_NETWORK: "Rejtett hálózat hozzáadása..." +STR_ENTER_WIFI_SSID: "Add meg a hálózat nevét (SSID)" STR_TO_PREFIX: "- " STR_CALIBRE_RECEIVING: "Fogadás: " STR_CALIBRE_RECEIVED: "Fogadva: " @@ -72,6 +74,7 @@ STR_IMAGES_SUPPRESS: "Elnyomás" STR_SHORT_PWR_BTN: "Rövid bekapcsológomb nyomás" STR_ORIENTATION: "Olvasási irány" STR_SIDE_BTN_LAYOUT: "Oldalsó gomb elrendezés (olvasó)" +STR_TOUCH_READER_CONTROLS: "Érintős olvasóvezérlés" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Elülső gombok tájolása" STR_LONG_PRESS_SKIP: "Hosszú nyomás - fejezet ugrás" STR_FONT_PREVIEW_TEXT: "Egy hűtlen vejét fülöncsípő, dühös mexikói úr Wesselényinél mázol Quitóban" @@ -94,6 +97,7 @@ STR_USERNAME: "Felhasználónév" STR_PASSWORD: "Jelszó" STR_SYNC_SERVER_URL: "Szinkronizálás szerver URL" STR_DOCUMENT_MATCHING: "Dokumentum egyeztetés" +STR_SEND_METADATA: "Dokumentum metaadatok küldése" STR_AUTHENTICATE: "Hitelesítés" STR_KOREADER_USERNAME: "KOReader felhasználónév" STR_KOREADER_PASSWORD: "KOReader jelszó" @@ -296,7 +300,102 @@ STR_SLEEP_TIMER_VALUE_FORMAT: "%u perc" STR_SLEEP_NEVER: "Soha" STR_STEP_HINT_FRONT: "Elülső gombok:" STR_STEP_HINT_SIDE: "Oldalsó gombok:" +STR_OPDS_DOWNLOAD_FOLDER: "Letöltési mappa" +STR_OPDS_FILENAME_FORMAT: "Fájlnév formátuma" +STR_FMT_AUTHOR_TITLE: "Szerző - Cím" +STR_FMT_TITLE_AUTHOR: "Cím - Szerző" +STR_FMT_TITLE: "Cím" STR_SCREENSHOT_BUTTON: "Képernyőkép készítése" STR_AUTO_TURN_ENABLED: "Automatikus lapozás bekapcsolva: " STR_AUTO_TURN_PAGES_PER_MIN: "Automatikus lapozás (oldal/perc)" STR_TILT_PAGE_TURN: "Döntéses lapozás" +STR_ADD_SERVER: "Szerver hozzáadása" +STR_BOOKMARKS: "Könyvjelzők" +STR_BOOKMARK_ADDED: "Könyvjelző hozzáadva." +STR_BOOKMARK_OPTION: "Könyvjelző" +STR_BOTTOM: "Alul" +STR_CLOCK: "Óra" +STR_CLOCK_FORMAT: "Óraformátum" +STR_CLOCK_FORMAT_12H: "12 órás" +STR_CLOCK_FORMAT_24H: "24 órás" +STR_CLOCK_SYNC: "Óra szinkronizálása" +STR_CLOCK_SYNCED: "Óra szinkronizálva" +STR_CLOCK_SYNCING: "Szinkronizálás NTP-ről..." +STR_CLOCK_SYNC_FAIL: "Szinkronizálás sikertelen" +STR_CLOCK_SYNC_NOW: "Óra szinkronizálása most" +STR_CLOCK_SYNC_NO_WIFI: "Wi-Fi nincs csatlakoztatva" +STR_CLOCK_SYNC_NO_WIFI_HINT: "Először csatlakozz Wi-Fi-hez, majd próbáld újra." +STR_CLOCK_SYNC_OK: "Óra szinkronizálva" +STR_CLOCK_UTC_OFFSET: "Óra UTC eltolás" +STR_CONFIRM_DELETE_BOOKMARK: "Törlöd ezt a könyvjelzőt?" +STR_CONNECTING_SAVED_WIFI: "Csatlakozás mentett Wi-Fi-hez..." +STR_CRASH_DESCRIPTION: "A részletes jelentés a crash_report.txt fájlba lett mentve. Kérjük, csatold ezt a fájlt a hibajelentéshez." +STR_CRASH_NO_REASON: "(Nem került rögzítésre ok)" +STR_CRASH_REASON: "Összeomlás oka:" +STR_CRASH_TITLE: "Rendszerösszeomlás" +STR_CURRENT_TIME: "Aktuális idő:" +STR_DELETE_SERVER: "Szerver törlése" +STR_DISABLED: "Letiltva" +STR_DOWNLOAD_ALL: "Összes letöltése" +STR_EOB_CONTINUE_WITH: "Folytatás ezzel" +STR_EOB_HOME: "Kezdőképernyő" +STR_FINDING_SAVED_WIFI: "Mentett Wi-Fi keresése..." +STR_FIRMWARE_FILE_OPEN_FAILED: "A fájl nem nyitható meg" +STR_FIRMWARE_TOO_LARGE: "A firmware túl nagy a partícióhoz" +STR_FIRMWARE_TOO_SMALL: "A firmware fájl túl kicsi" +STR_FIRMWARE_UPDATE_DO_NOT_POWER_OFF: "Ne kapcsold ki!" +STR_FIRMWARE_UPDATE_PROMPT: "Frissíted a firmware-t?" +STR_FIRMWARE_WRITE_FAILED: "A firmware írása sikertelen" +STR_FONT_BROWSER: "Betűtípus-böngésző" +STR_FONT_INSTALLED: "Betűtípus telepítve!" +STR_FONT_INSTALL_FAILED: "A betűtípus telepítése sikertelen" +STR_FORCE_REFRESH: "Képernyő frissítése" +STR_INDEX_FAILED: "Indexelés sikertelen – érvénytelen könyv" +STR_INSTALLED: "Telepítve" +STR_INVALID_FIRMWARE: "Érvénytelen firmware fájl" +STR_KB_HINT_CLEAR_TEXT: "Tartsd nyomva a DEL-t az összes szöveg törléséhez" +STR_KB_HINT_EDIT_ENTRY: "Tartsd nyomva a FEL-t a bejegyzés szerkesztéséhez" +STR_KB_HINT_EXIT_URL_MODE: "Nyomd meg az ABC-t az URL mód elhagyásához" +STR_KB_HINT_HIDE_PASSWORD: "Tartsd nyomva a JOBBRA-t, majd nyomd meg a [***]-ot a jelszó elrejtéséhez" +STR_KB_HINT_LOWER_SECONDARY: "Tartsd nyomva a SELECT-et kisbetűért vagy másodlagos karakterért" +STR_KB_HINT_MOVE_CURSOR: "Nyomd meg a BALRA vagy JOBBRA gombot a kurzor mozgatásához" +STR_KB_HINT_RETURN_CURSOR: "Nyomd meg a BALRA-t a kurzorpozícióhoz való visszatéréshez" +STR_KB_HINT_RETURN_KEYBOARD: "Nyomd meg a LE-t a billentyűzethez való visszatéréshez" +STR_KB_HINT_SECONDARY_CHAR: "Tartsd nyomva a SELECT-et másodlagos karakterért" +STR_KB_HINT_SHOW_PASSWORD: "Tartsd nyomva a JOBBRA-t, majd nyomd meg az [abc]-t a jelszó megjelenítéséhez" +STR_KB_HINT_TOGGLE_HIDE_PASSWORD: "Nyomd meg a [***]-ot a jelszó elrejtéséhez" +STR_KB_HINT_TOGGLE_SHOW_PASSWORD: "Nyomd meg az [abc]-t a jelszó megjelenítéséhez" +STR_KB_HINT_UPPER_SECONDARY: "Tartsd nyomva a SELECT-et NAGYBETŰÉRT vagy másodlagos karakterért" +STR_KB_HINT_URL_SNIPPETS: "Nyomd meg az URL-t az URL-részletekért" +STR_KB_TIPS: "Tippek:" +STR_KOSYNC: "KOSync" +STR_LOADING_FONT_LIST: "Betűtípuslista betöltése..." +STR_LONG_PRESS_BEHAVIOR: "Hosszú gombnyomás viselkedése" +STR_LONG_PRESS_BEHAVIOR_OFF: "KI" +STR_LONG_PRESS_BEHAVIOR_ORIENTATION: "Tájolásváltás" +STR_LONG_PRESS_BEHAVIOR_SKIP: "Fejezetugrás" +STR_LONG_PRESS_MENU: "Hosszú nyomás – Menü" +STR_MANAGE_FONTS: "Betűtípusok kezelése" +STR_NEXT_FIELD: "Következő" +STR_NEXT_PAGE: "Következő oldal »" +STR_NO_BIN_FILES: "Nincs .bin fájl" +STR_NO_FONTS_AVAILABLE: "Nincs elérhető betűtípus" +STR_NO_SERVERS: "Nincs beállított OPDS szerver" +STR_OPDS_SERVERS: "OPDS szerverek" +STR_PREV_PAGE: "« Előző oldal" +STR_PWR_BTN_FOOTNOTE_BACK: "Gyors visszatérés lábjegyzetből" +STR_RECOVERY_MODE: "Helyreállítási mód" +STR_RECOVERY_MODE_HINT: "Helyezd a firmware.bin fájlt az SD-kártya gyökerébe, majd válaszd ki" +STR_RESTARTING_HINT: "Újraindítás... Ha az eszköz nem indul újra, tartsd nyomva a bekapcsológombot néhány másodpercig." +STR_SD_FIRMWARE_UPDATE: "Firmware frissítés SD-kártyáról" +STR_SEARCH: "Keresés" +STR_SELECT_FIRMWARE_FILE: "Válassz firmware fájlt (.bin)" +STR_SERVER_NAME: "Szerver neve" +STR_SET_SLEEP_COVER: "Borító beállítása" +STR_SHOW_NETWORKS: "Megjelenítés" +STR_THEME_ROUNDEDRAFF: "RoundedRaff" +STR_TOP: "Felül" +STR_UPDATE_ALL: "Összes frissítése" +STR_UPDATE_AVAILABLE: "Frissítés" +STR_VALIDATING_FIRMWARE: "Firmware ellenőrzése..." +STR_XTC_STATUS_BAR: "XTC állapotsáv" diff --git a/lib/I18n/translations/indonesia.yaml b/lib/I18n/translations/indonesia.yaml new file mode 100644 index 0000000000..d71ab0fc4e --- /dev/null +++ b/lib/I18n/translations/indonesia.yaml @@ -0,0 +1,423 @@ +_language_name: "Bahasa Indonesia" +_language_code: "ID" +_order: "30" + +STR_CROSSPOINT: "CrossPoint" +STR_BOOTING: "MEMULAI" +STR_SLEEPING: "MODE TIDUR" +STR_ENTERING_SLEEP: "Memasuki mode tidur" +STR_BROWSE_FILES: "Jelajahi Berkas" +STR_FILE_TRANSFER: "Transfer Berkas" +STR_SETTINGS_TITLE: "Pengaturan" +STR_CONTINUE_READING: "Lanjutkan Membaca" +STR_RESUME: "Lanjutkan" +STR_NO_OPEN_BOOK: "Tidak ada buku yang dibuka" +STR_START_READING: "Mulai membaca di bawah" +STR_NO_FILES_FOUND: "Tidak ada berkas ditemukan" +STR_SELECT_CHAPTER: "Pilih Bab" +STR_NO_CHAPTERS: "Tidak ada bab" +STR_END_OF_BOOK: "Akhir buku" +STR_EMPTY_CHAPTER: "Bab kosong" +STR_INDEXING: "Mengindeks" +STR_INDEX_FAILED: "Gagal mengindeks - buku tidak valid" +STR_MEMORY_ERROR: "Kesalahan memori" +STR_PAGE_LOAD_ERROR: "Gagal memuat halaman" +STR_EMPTY_FILE: "Berkas kosong" +STR_OUT_OF_BOUNDS: "Di luar batas" +STR_LOADING: "Memuat..." +STR_LOADING_POPUP: "Memuat" +STR_LOOKUP: "Cari Kata" +STR_DICT_LOOKING_UP: "Mencari..." +STR_DICT_INDEXING: "Mengindeks kamus..." +STR_DICT_NOT_FOUND: "Tidak ditemukan" +STR_DICT_NO_DICT_SET: "Kamus belum diatur" +STR_DICT_ERROR: "Kesalahan kamus" +STR_WIFI_NETWORKS: "Jaringan Wi-Fi" +STR_NO_NETWORKS: "Tidak ada jaringan ditemukan" +STR_NETWORKS_FOUND: "%zu jaringan ditemukan" +STR_SCANNING: "Memindai..." +STR_FINDING_SAVED_WIFI: "Mencari Wi-Fi tersimpan..." +STR_CONNECTING: "Menghubungkan..." +STR_CONNECTING_SAVED_WIFI: "Menghubungkan ke Wi-Fi tersimpan..." +STR_SHOW_NETWORKS: "Tampilkan" +STR_CONNECTED: "Terhubung!" +STR_CONNECTION_FAILED: "Koneksi Gagal" +STR_FORGET_NETWORK: "Lupakan Jaringan?" +STR_SAVE_PASSWORD: "Simpan kata sandi untuk lain kali?" +STR_PRESS_OK_SCAN: "Tekan OK untuk memindai ulang" +STR_JOIN_NETWORK: "Gabung ke Jaringan" +STR_CREATE_HOTSPOT: "Buat Hotspot" +STR_JOIN_DESC: "Hubungkan ke jaringan Wi-Fi yang ada" +STR_HOTSPOT_DESC: "Buat jaringan Wi-Fi agar perangkat lain dapat terhubung" +STR_STARTING_HOTSPOT: "Memulai Hotspot..." +STR_HOTSPOT_MODE: "Mode Hotspot" +STR_CONNECT_WIFI_HINT: "Hubungkan perangkat Anda ke jaringan Wi-Fi ini" +STR_OPEN_URL_HINT: "Buka URL ini di peramban Anda" +STR_OR_HTTP_PREFIX: "atau http://" +STR_SCAN_QR_HINT: "atau pindai kode QR dengan ponsel Anda:" +STR_CALIBRE_WIRELESS: "Calibre Nirkabel" +STR_NETWORK_LEGEND: "* = Terenkripsi | + = Tersimpan" +STR_MAC_ADDRESS: "Alamat MAC:" +STR_CHECKING_WIFI: "Memeriksa Wi-Fi..." +STR_ENTER_WIFI_PASSWORD: "Masukkan kata sandi Wi-Fi" +STR_ADD_HIDDEN_NETWORK: "Tambah jaringan tersembunyi..." +STR_ENTER_WIFI_SSID: "Masukkan nama jaringan (SSID)" +STR_TO_PREFIX: "ke " +STR_CALIBRE_RECEIVING: "Menerima: " +STR_CALIBRE_RECEIVED: "Diterima: " +STR_CALIBRE_INSTRUCTION_1: "1) Pasang plugin CrossPoint Reader" +STR_CALIBRE_INSTRUCTION_2: "2) Hubungkan ke jaringan Wi-Fi yang sama" +STR_CALIBRE_INSTRUCTION_3: "3) Di Calibre: \"Kirim ke perangkat\"" +STR_CALIBRE_INSTRUCTION_4: "\"Biarkan layar ini tetap terbuka saat mengirim\"" +STR_CAT_DISPLAY: "Tampilan" +STR_CAT_READER: "Pembaca" +STR_CAT_CONTROLS: "Kontrol" +STR_CAT_SYSTEM: "Sistem" +STR_SLEEP_SCREEN: "Layar Tidur" +STR_QUICK_RESUME_TIMEOUT: "Lanjutkan Cepat saat Waktu Habis" +STR_SLEEP_COVER_MODE: "Mode Sampul Layar Tidur" +STR_HIDE_BATTERY: "Sembunyikan % Baterai" +STR_EXTRA_SPACING: "Jarak Paragraf Tambahan" +STR_TEXT_AA: "Anti-Aliasing Teks" +STR_IMAGES: "Gambar" +STR_IMAGES_DISPLAY: "Tampilkan" +STR_IMAGES_PLACEHOLDER: "Gambar Pengganti" +STR_IMAGES_SUPPRESS: "Sembunyikan" +STR_EOB_HOME: "Beranda" +STR_EOB_CONTINUE_WITH: "Lanjutkan dengan" +STR_SHORT_PWR_BTN: "Tekanan Singkat Tombol Daya" +STR_ORIENTATION: "Orientasi Membaca" +STR_SIDE_BTN_LAYOUT: "Atur Tombol Samping (pembaca)" +STR_TOUCH_READER_CONTROLS: "Kontrol Sentuh Pembaca" +STR_FRONT_BTN_FOLLOW_ORIENTATION: "Sesuaikan tombol depan" +STR_LONG_PRESS_BEHAVIOR: "Tindakan Tekan Lama Tombol" +STR_LONG_PRESS_BEHAVIOR_OFF: "MATI" +STR_LONG_PRESS_BEHAVIOR_SKIP: "Lompati bab" +STR_LONG_PRESS_BEHAVIOR_ORIENTATION: "Ubah orientasi" +STR_LONG_PRESS_MENU: "Menu Tekan Lama" +STR_FONT_PREVIEW_TEXT: "Rubah cepat berwarna cokelat melompati anjing yang malas" +STR_FONT_FAMILY: "Jenis Font Pembaca" +STR_FONT_SIZE: "Ukuran Font Pembaca" +STR_LINE_SPACING: "Jarak Baris Pembaca" +STR_SCREEN_MARGIN: "Margin Layar Pembaca" +STR_PARA_ALIGNMENT: "Rataan Paragraf Pembaca" +STR_HYPHENATION: "Pemenggalan Kata" +STR_TIME_TO_SLEEP: "Waktu Sebelum Tidur" +STR_SHOW_HIDDEN_FILES: "Tampilkan Berkas Tersembunyi" +STR_REMOVE_READ_FROM_RECENTS: "Bersihkan Buku Dibaca" +STR_MOVE_FINISHED_TO_READ: "Pindah Buku Selesai ke 'Dibaca'" +STR_REFRESH_FREQ: "Frekuensi Penyegaran" +STR_KOREADER_SYNC: "Sinkronisasi KOReader" +STR_CHECK_UPDATES: "Periksa pembaruan" +STR_LANGUAGE: "Bahasa" +STR_CLEAR_READING_CACHE: "Hapus Tembolok Membaca" +STR_USERNAME: "Nama pengguna" +STR_PASSWORD: "Kata sandi" +STR_SYNC_SERVER_URL: "URL Server Sinkronisasi" +STR_DOCUMENT_MATCHING: "Pencocokan Dokumen" +STR_SEND_METADATA: "Kirim Metadata Dokumen" +STR_SYNC_BEHAVIOR: "Perilaku Sinkronisasi" +STR_ASK_EVERY_TIME: "Tanyakan setiap kali" +STR_SMART_SYNC: "Sinkronisasi pintar" +STR_AUTHENTICATE: "Otentikasi" +STR_SIGN_UP: "Daftar" +STR_CREATING_ACCOUNT: "Membuat akun..." +STR_ACCOUNT_CREATED: "Akun berhasil dibuat" +STR_SIGNUP_FAILED: "Pendaftaran gagal" +STR_USERNAME_TAKEN: "Nama pengguna sudah terdaftar" +STR_KOREADER_USERNAME: "Nama Pengguna KOReader" +STR_KOREADER_PASSWORD: "Kata Sandi KOReader" +STR_FILENAME: "Nama berkas" +STR_BINARY: "Biner" +STR_SET_CREDENTIALS_FIRST: "Atur kredensial terlebih dahulu" +STR_WIFI_CONN_FAILED: "Koneksi Wi-Fi gagal" +STR_AUTHENTICATING: "Mengotentikasi..." +STR_AUTH_SUCCESS: "Otentikasi berhasil!" +STR_KOREADER_AUTH: "Otentikasi KOReader" +STR_SYNC_READY: "Sinkronisasi KOReader siap digunakan" +STR_AUTH_FAILED: "Otentikasi Gagal" +STR_DONE: "Selesai" +STR_CLEAR_CACHE_WARNING_1: "Ini akan menghapus semua data buku tersimpan." +STR_CLEAR_CACHE_WARNING_2: "Semua kemajuan membaca akan hilang!" +STR_CLEAR_CACHE_WARNING_3: "Buku perlu diindeks ulang" +STR_CLEAR_CACHE_WARNING_4: "saat dibuka kembali." +STR_CLEARING_CACHE: "Menghapus tembolok..." +STR_CACHE_CLEARED: "Tembolok Dihapus" +STR_ITEMS_REMOVED: "item dihapus" +STR_FAILED_LOWER: "gagal" +STR_CLEAR_CACHE_FAILED: "Gagal menghapus tembolok" +STR_CHECK_SERIAL_OUTPUT: "Periksa output serial untuk rincian" +STR_DARK: "Gelap" +STR_LIGHT: "Terang" +STR_CUSTOM: "Kustom" +STR_COVER: "Sampul" +STR_NONE_OPT: "Tidak Ada" +STR_FIT: "Pas Layar" +STR_CROP: "Potong" +STR_NEVER: "Jangan Pernah" +STR_IN_READER: "Di Pembaca" +STR_ALWAYS: "Selalu" +STR_IGNORE: "Abaikan" +STR_SLEEP: "Tidur" +STR_PAGE_TURN: "Ganti Halaman" +STR_FORCE_REFRESH: "Segarkan Layar" +STR_PORTRAIT: "Potret" +STR_LANDSCAPE_CW: "Lansekap Searah Jarum Jam" +STR_INVERTED: "Terbalik" +STR_ORIENTATION_INVERTED: "Potret 180°" +STR_LANDSCAPE_CCW: "Lansekap Berlawanan Jarum Jam" +STR_PREV_NEXT: "Mundur/Maju" +STR_NEXT_PREV: "Maju/Mundur" +STR_KOSYNC: "KOSync" +STR_BOOKMARK_OPTION: "Pembatas Buku" +STR_DICTIONARY: "Kamus" +STR_DISABLED: "Dinonaktifkan" +STR_NOTO_SERIF: "Noto Serif" +STR_NOTO_SANS: "Noto Sans" +STR_SMALL: "Kecil" +STR_MEDIUM: "Sedang" +STR_LARGE: "Besar" +STR_X_LARGE: "Sangat Besar" +STR_TIGHT: "Rapat" +STR_NORMAL: "Normal" +STR_WIDE: "Lebar" +STR_JUSTIFY: "Rata Kanan Kiri" +STR_ALIGN_LEFT: "Kiri" +STR_CENTER: "Tengah" +STR_ALIGN_RIGHT: "Kanan" +STR_PAGES_1: "1 halaman" +STR_PAGES_5: "5 halaman" +STR_PAGES_10: "10 halaman" +STR_PAGES_15: "15 halaman" +STR_PAGES_30: "30 halaman" +STR_UPDATE: "Perbarui" +STR_CHECKING_UPDATE: "Memeriksa pembaruan..." +STR_NEW_UPDATE: "Pembaruan baru tersedia!" +STR_CURRENT_VERSION: "Versi Saat Ini: " +STR_NEW_VERSION: "Versi Baru: " +STR_UPDATING: "Memperbarui..." +STR_NO_UPDATE: "Tidak ada pembaruan tersedia" +STR_UPDATE_FAILED: "Pembaruan gagal" +STR_UPDATE_COMPLETE: "Pembaruan selesai" +STR_POWER_ON_HINT: "Tekan dan tahan tombol daya untuk menyalakan kembali" +STR_RESTARTING_HINT: "Memulai ulang... Jika perangkat tidak restart, tahan tombol daya selama beberapa detik." +STR_NO_ENTRIES: "Tidak ada entri ditemukan" +STR_DOWNLOADING: "Mengunduh..." +STR_DOWNLOAD_FAILED: "Gagal mengunduh" +STR_ERROR_MSG: "Kesalahan:" +STR_UNNAMED: "Tanpa Nama" +STR_HOLD_OPEN_TO_DELETE: "Tahan Buka untuk Menghapus" +STR_NO_SERVER_URL: "URL server belum dikonfigurasi" +STR_FETCH_FEED_FAILED: "Gagal mengambil umpan" +STR_PARSE_FEED_FAILED: "Gagal mengurai umpan" +STR_NEXT_PAGE: "Halaman Berikutnya »" +STR_PREV_PAGE: "« Halaman Sebelumnya" +STR_NETWORK_PREFIX: "Jaringan: " +STR_IP_ADDRESS_PREFIX: "Alamat IP: " +STR_ERROR_GENERAL_FAILURE: "Kesalahan: Kegagalan umum" +STR_ERROR_NETWORK_NOT_FOUND: "Kesalahan: Jaringan tidak ditemukan" +STR_ERROR_CONNECTION_TIMEOUT: "Kesalahan: Tenggat waktu koneksi habis" +STR_SD_CARD: "Kartu SD" +STR_BACK: "« Kembali" +STR_EXIT: "« Keluar" +STR_HOME: "« Beranda" +STR_SELECT: "Pilih" +STR_SELECTED: "Dipilih" +STR_TOGGLE: "Beralih" +STR_TOGGLE_BOOKMARK: "Beralih Pembatas Buku" +STR_CONFIRM: "Konfirmasi" +STR_CANCEL: "Batal" +STR_CONNECT: "Hubungkan" +STR_OPEN: "Buka" +STR_DOWNLOAD: "Unduh" +STR_RETRY: "Coba Lagi" +STR_TAP_TO_RETRY: "Ketuk untuk mencoba lagi" +STR_YES: "Ya" +STR_NO: "Tidak" +STR_SHOW: "Tampilkan" +STR_HIDE: "Sembunyikan" +STR_STATE_ON: "NYALA" +STR_STATE_OFF: "MATI" +STR_NOT_SET: "Belum Diatur" +STR_DIR_LEFT: "Kiri" +STR_DIR_RIGHT: "Kanan" +STR_DIR_UP: "Atas" +STR_DIR_DOWN: "Bawah" +STR_OK_BUTTON: "OK" +STR_KEY_SHIFT: "Shift" +STR_KEY_MODE_SYMBOLS: "?123" +STR_KEY_MODE_ABC: "abc" +STR_SLEEP_COVER_FILTER: "Filter Sampul Layar Tidur" +STR_FILTER_CONTRAST: "Kontras" +STR_CUSTOMISE_STATUS_BAR: "Sesuaikan Bilah Status" +STR_CHAPTER_PAGE_COUNT: "Jumlah Halaman Bab" +STR_BOOK_PROGRESS_PERCENTAGE: "Persentase Kemajuan Buku" +STR_PROGRESS_BAR: "Bilah Kemajuan" +STR_PROGRESS_BAR_THICKNESS: "Ketebalan Bilah Kemajuan" +STR_PROGRESS_BAR_THIN: "Tipis" +STR_PROGRESS_BAR_MEDIUM: "Sedang" +STR_PROGRESS_BAR_THICK: "Tebal" +STR_BOOK: "Buku" +STR_CHAPTER: "Bab" +STR_EXAMPLE_CHAPTER: "Bab 21" +STR_EXAMPLE_BOOK: "Judul Buku" +STR_PREVIEW: "Pratinjau" +STR_TITLE: "Judul" +STR_BATTERY: "Baterai" +STR_XTC_STATUS_BAR: "Bilah Status XTC" +STR_BOTTOM: "Bawah" +STR_TOP: "Atas" +STR_CLOCK: "Jam" +STR_CLOCK_UTC_OFFSET: "Zona Waktu (UTC Offset)" +STR_CLOCK_FORMAT: "Format Jam" +STR_CLOCK_FORMAT_24H: "24-jam" +STR_CLOCK_FORMAT_12H: "12-jam" +STR_CURRENT_TIME: "Waktu saat ini:" +STR_NEXT_FIELD: "Berikutnya" +STR_CLOCK_SYNC: "Sinkronkan Jam" +STR_CLOCK_SYNC_NOW: "Sinkronkan jam sekarang" +STR_CLOCK_SYNCING: "Menyinkronkan dari NTP..." +STR_CLOCK_SYNC_OK: "Jam tersinkronisasi" +STR_CLOCK_SYNC_FAIL: "Sinkronisasi gagal" +STR_CLOCK_SYNC_NO_WIFI: "Wi-Fi tidak terhubung" +STR_CLOCK_SYNC_NO_WIFI_HINT: "Hubungkan ke Wi-Fi terlebih dahulu, lalu coba lagi." +STR_CLOCK_SYNCED: "Jam Tersinkronisasi" +STR_UI_THEME: "Tema UI" +STR_THEME_CLASSIC: "Klasik" +STR_THEME_LYRA: "Lyra" +STR_THEME_ROUNDEDRAFF: "RoundedRaff" +STR_THEME_LYRA_EXTENDED: "Lyra Extended" +STR_SUNLIGHT_FADING_FIX: "Koreksi Pemudaran Matahari" +STR_REMAP_FRONT_BUTTONS: "Pemetaan Ulang Tombol Depan" +STR_BOOKMARKS: "Pembatas Buku" +STR_BOOKMARK_ADDED: "Pembatas buku ditambahkan." +STR_BOOKMARK_REMOVED: "Pembatas buku dihapus." +STR_OPDS_BROWSER: "Peramban OPDS" +STR_SEARCH: "Cari" +STR_COVER_CUSTOM: "Sampul + Kustom" +STR_QUICK_RESUME: "Lanjutkan Cepat" +STR_MENU_RECENT_BOOKS: "Buku Terbaru" +STR_REMOVE_FROM_RECENTS: "Hapus dari Buku Terbaru?" +STR_NO_RECENT_BOOKS: "Tidak ada buku terbaru" +STR_CALIBRE_DESC: "Gunakan transfer perangkat nirkabel Calibre" +STR_FORGET_AND_REMOVE: "Lupakan jaringan dan hapus kata sandi tersimpan?" +STR_FORGET_BUTTON: "Lupakan" +STR_CALIBRE_STARTING: "Memulai Calibre..." +STR_CALIBRE_SETUP: "Pengaturan" +STR_CALIBRE_STATUS: "Status" +STR_CLEAR_BUTTON: "Hapus" +STR_DEFAULT_VALUE: "Bawaan" +STR_REMAP_PROMPT: "Tekan tombol depan untuk setiap fungsi" +STR_UNASSIGNED: "Belum Ditetapkan" +STR_ALREADY_ASSIGNED: "Sudah ditetapkan" +STR_REMAP_RESET_HINT: "Tombol samping Atas: Atur ulang ke tata letak bawaan" +STR_REMAP_CANCEL_HINT: "Tombol samping Bawah: Batalkan pemetaan ulang" +STR_HW_BACK_LABEL: "Kembali (Tombol ke-1)" +STR_HW_CONFIRM_LABEL: "Konfirmasi (Tombol ke-2)" +STR_HW_LEFT_LABEL: "Kiri (Tombol ke-3)" +STR_HW_RIGHT_LABEL: "Kanan (Tombol ke-4)" +STR_GO_TO_PERCENT: "Menuju ke %" +STR_GO_HOME_BUTTON: "Ke Beranda" +STR_SYNC_PROGRESS: "Sinkronkan Kemajuan" +STR_DELETE_CACHE: "Hapus Tembolok Buku" +STR_DELETE: "Hapus" +STR_CONFIRM_DELETE_BOOKMARK: "Hapus pembatas buku ini?" +STR_DISPLAY_QR: "Tampilkan halaman sebagai QR" +STR_CHAPTER_PREFIX: "Bab: " +STR_PAGES_SEPARATOR: " halaman | " +STR_BOOK_PREFIX: "Buku: " +STR_CALIBRE_URL_HINT: "Untuk Calibre, tambahkan /opds ke URL Anda" +STR_SYNCING_TIME: "Menyinkronkan waktu..." +STR_CALC_HASH: "Menghitung hash dokumen..." +STR_HASH_FAILED: "Gagal menghitung hash dokumen" +STR_FETCH_PROGRESS: "Mengambil kemajuan jarak jauh..." +STR_UPLOAD_PROGRESS: "Mengunggah kemajuan..." +STR_NO_CREDENTIALS_MSG: "Kredensial belum dikonfigurasi" +STR_KOREADER_SETUP_HINT: "Atur akun KOReader di Pengaturan" +STR_PROGRESS_FOUND: "Kemajuan ditemukan!" +STR_REMOTE_LABEL: "Jarak Jauh:" +STR_LOCAL_LABEL: "Lokal:" +STR_PAGE_OVERALL_FORMAT: "Halaman %d, %.2f%% keseluruhan" +STR_PAGE_TOTAL_OVERALL_FORMAT: "Halaman %d/%d, %.2f%% keseluruhan" +STR_DEVICE_FROM_FORMAT: " Dari: %s" +STR_APPLY_REMOTE: "Terapkan kemajuan jarak jauh" +STR_UPLOAD_LOCAL: "Unggah kemajuan lokal" +STR_NO_REMOTE_MSG: "Tidak ada kemajuan jarak jauh ditemukan" +STR_UPLOAD_PROMPT: "Unggah posisi saat ini?" +STR_UPLOAD_SUCCESS: "Kemajuan berhasil diunggah!" +STR_ALREADY_SYNCED: "Sudah tersinkronisasi" +STR_SYNC_FAILED_MSG: "Sinkronisasi gagal" +STR_SAVE_PROGRESS_FAILED: "Gagal menyimpan kemajuan" +STR_SECTION_PREFIX: "Bagian " +STR_UPLOAD: "Unggah" +STR_BOOK_S_STYLE: "Gaya Buku" +STR_EMBEDDED_STYLE: "Gaya Tersemat" +STR_FOCUS_READING: "Membaca Fokus" +STR_OPDS_SERVER_URL: "URL Server OPDS" +STR_PWR_BTN_FOOTNOTE_BACK: "Kembali cepat dari catatan kaki" +STR_BACK_SHORT_TO_FILE_BROWSER: "Tekan Singkat Kembali ke Peramban" +STR_SET_SLEEP_COVER: "Atur Sampul" +STR_FOOTNOTES: "Catatan Kaki" +STR_NO_FOOTNOTES: "Tidak ada catatan kaki di halaman ini" +STR_LINK: "[tautan]" +STR_SCREENSHOT_BUTTON: "Ambil tangkapan layar" +STR_SLEEP_TIMER_VALUE_FORMAT: "%u mnt" +STR_SLEEP_NEVER: "Jangan Pernah" +STR_STEP_HINT_FRONT: "Tombol depan:" +STR_STEP_HINT_SIDE: "Tombol samping:" +STR_ADD_SERVER: "Tambah Server" +STR_SERVER_NAME: "Nama Server" +STR_NO_SERVERS: "Tidak ada server OPDS yang dikonfigurasi" +STR_DELETE_SERVER: "Hapus Server" +STR_OPDS_SERVERS: "Server OPDS" +STR_OPDS_DOWNLOAD_FOLDER: "Folder unduhan" +STR_OPDS_FILENAME_FORMAT: "Format nama berkas" +STR_FMT_AUTHOR_TITLE: "Penulis - Judul" +STR_FMT_TITLE_AUTHOR: "Judul - Penulis" +STR_FMT_TITLE: "Judul" +STR_OPDS_SD_ROOT: "Akar SD" +STR_AUTO_TURN_ENABLED: "Pembalik Otomatis Aktif: " +STR_AUTO_TURN_PAGES_PER_MIN: "Pembalik Otomatis (Halaman Per Menit)" +STR_MANAGE_FONTS: "Kelola Font" +STR_FONT_BROWSER: "Peramban Font" +STR_LOADING_FONT_LIST: "Memuat daftar font..." +STR_NO_FONTS_AVAILABLE: "Tidak ada font tersedia" +STR_FONT_INSTALLED: "Font terpasang!" +STR_FONT_INSTALL_FAILED: "Pemasangan font gagal" +STR_INSTALLED: "Terpasang" +STR_DOWNLOAD_ALL: "Unduh Semua" +STR_UPDATE_ALL: "Perbarui Semua" +STR_UPDATE_AVAILABLE: "Perbarui" +STR_CRASH_TITLE: "Kerusakan Sistem" +STR_CRASH_DESCRIPTION: "Laporan terperinci telah disimpan ke crash_report.txt. Harap sertakan berkas ini dalam laporan bug Anda." +STR_CRASH_REASON: "Penyebab kerusakan:" +STR_CRASH_NO_REASON: "(Tidak ada alasan yang terekam)" +STR_TILT_PAGE_TURN: "Miringkan untuk Ganti Halaman" +STR_KB_HINT_MOVE_CURSOR: "Tekan KIRI atau KANAN untuk memindahkan kursor" +STR_KB_HINT_RETURN_CURSOR: "Tekan KIRI untuk kembali ke posisi kursor" +STR_KB_HINT_HIDE_PASSWORD: "Tahan KANAN lalu tekan [***] untuk menyembunyikan kata sandi" +STR_KB_HINT_SHOW_PASSWORD: "Tahan KANAN lalu tekan [abc] untuk menampilkan kata sandi" +STR_KB_HINT_TOGGLE_HIDE_PASSWORD: "Tekan [***] untuk menyembunyikan kata sandi" +STR_KB_HINT_TOGGLE_SHOW_PASSWORD: "Tekan [abc] untuk menampilkan kata sandi" +STR_KB_HINT_EDIT_ENTRY: "Tahan ATAS untuk mengedit entri" +STR_KB_TIPS: "Tips:" +STR_KB_HINT_RETURN_KEYBOARD: "Tekan BAWAH untuk kembali ke papan ketik" +STR_KB_HINT_EXIT_URL_MODE: "Tekan ABC untuk keluar dari mode URL" +STR_KB_HINT_CLEAR_TEXT: "Tahan DEL untuk menghapus semua teks" +STR_KB_HINT_SECONDARY_CHAR: "Tahan SELECT untuk karakter sekunder" +STR_KB_HINT_UPPER_SECONDARY: "Tahan SELECT untuk HURUF BESAR atau karakter sekunder" +STR_KB_HINT_LOWER_SECONDARY: "Tahan SELECT untuk huruf kecil atau karakter sekunder" +STR_KB_HINT_URL_SNIPPETS: "Tekan URL untuk cuplikan" +STR_SD_FIRMWARE_UPDATE: "Pembaruan Firmware Kartu SD" +STR_SELECT_FIRMWARE_FILE: "Pilih berkas firmware (.bin)" +STR_NO_BIN_FILES: "Tidak ada berkas .bin ditemukan" +STR_VALIDATING_FIRMWARE: "Memvalidasi firmware..." +STR_INVALID_FIRMWARE: "Berkas firmware tidak valid" +STR_FIRMWARE_TOO_LARGE: "Firmware terlalu besar untuk partisi" +STR_FIRMWARE_TOO_SMALL: "Berkas firmware terlalu kecil" +STR_FIRMWARE_UPDATE_PROMPT: "Perbarui firmware?" +STR_FIRMWARE_FILE_OPEN_FAILED: "Tidak dapat membuka berkas" +STR_FIRMWARE_WRITE_FAILED: "Penulisan firmware gagal" +STR_FIRMWARE_UPDATE_DO_NOT_POWER_OFF: "Jangan matikan daya!" +STR_RECOVERY_MODE: "Mode Pemulihan" +STR_RECOVERY_MODE_HINT: "Tempatkan firmware.bin di akar kartu SD lalu pilih" diff --git a/lib/I18n/translations/italian.yaml b/lib/I18n/translations/italian.yaml index 70fc18dc34..7ae622a43e 100644 --- a/lib/I18n/translations/italian.yaml +++ b/lib/I18n/translations/italian.yaml @@ -72,6 +72,7 @@ STR_IMAGES_SUPPRESS: "Nascondi" STR_SHORT_PWR_BTN: "Press. breve pul. accensione" STR_ORIENTATION: "Orientamento lettura" STR_SIDE_BTN_LAYOUT: "Pul. laterali (lettore)" +STR_TOUCH_READER_CONTROLS: "Controlli touch lettore" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Orienta pul. frontali" STR_LONG_PRESS_BEHAVIOR: "Press. lunga pul. laterali" STR_LONG_PRESS_BEHAVIOR_OFF: "OFF" @@ -98,6 +99,7 @@ STR_USERNAME: "Nome utente" STR_PASSWORD: "Password" STR_SYNC_SERVER_URL: "URL server di sincronizzazione" STR_DOCUMENT_MATCHING: "Corrispondenza documenti" +STR_SEND_METADATA: "Invia metadati documento" STR_AUTHENTICATE: "Autentica" STR_KOREADER_USERNAME: "Nome utente KOReader" STR_KOREADER_PASSWORD: "Password KOReader" @@ -314,6 +316,11 @@ STR_SERVER_NAME: "Nome server" STR_NO_SERVERS: "Nessun server OPDS configurato" STR_DELETE_SERVER: "Elimina server" STR_OPDS_SERVERS: "Server OPDS" +STR_OPDS_DOWNLOAD_FOLDER: "Cartella download" +STR_OPDS_FILENAME_FORMAT: "Formato nome file" +STR_FMT_AUTHOR_TITLE: "Autore - Titolo" +STR_FMT_TITLE_AUTHOR: "Titolo - Autore" +STR_FMT_TITLE: "Titolo" STR_AUTO_TURN_ENABLED: "Volta pagina automatico: " STR_AUTO_TURN_PAGES_PER_MIN: "Volta pagina automatico (pag/min)" STR_MANAGE_FONTS: "Gestisci font" @@ -383,3 +390,8 @@ STR_DISABLED: "Disattivato" STR_BOOKMARK_OPTION: "Segnalibro" STR_KOSYNC: "KOSync" STR_PWR_BTN_FOOTNOTE_BACK: "Rientro rapido dalle note" +STR_EOB_CONTINUE_WITH: "Continua con" +STR_EOB_HOME: "Home" +STR_INDEX_FAILED: "Indicizzazione fallita - libro non valido" +STR_ADD_HIDDEN_NETWORK: "Aggiungi rete nascosta..." +STR_ENTER_WIFI_SSID: "Inserisci il nome della rete (SSID)" diff --git a/lib/I18n/translations/kazakh.yaml b/lib/I18n/translations/kazakh.yaml index 808ba51808..430f94aecf 100644 --- a/lib/I18n/translations/kazakh.yaml +++ b/lib/I18n/translations/kazakh.yaml @@ -67,6 +67,7 @@ STR_TEXT_AA: "Мәтін сырғытпасы" STR_SHORT_PWR_BTN: "Қуат түймесін қысқа басу" STR_ORIENTATION: "Оқу бағдары" STR_SIDE_BTN_LAYOUT: "Бүйірлік түймелер орналасуы (оқырман)" +STR_TOUCH_READER_CONTROLS: "Оқырманның сенсорлық басқаруы" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Алдыңғы түймелерді бағдарлау" STR_LONG_PRESS_SKIP: "Ұзақ басу арқылы тарау өткізу" STR_FONT_PREVIEW_TEXT: "Канагаттандырылмагандыктарыныздан" @@ -88,6 +89,7 @@ STR_USERNAME: "Пайдаланушы аты" STR_PASSWORD: "Құпия сөз" STR_SYNC_SERVER_URL: "Синхрондау сервері URL" STR_DOCUMENT_MATCHING: "Құжат сәйкестендіру" +STR_SEND_METADATA: "Құжат метадеректерін жіберу" STR_AUTHENTICATE: "Аутентификация" STR_KOREADER_USERNAME: "KOReader пайдаланушы аты" STR_KOREADER_PASSWORD: "KOReader құпия сөзі" @@ -295,7 +297,14 @@ STR_SLEEP_TIMER_VALUE_FORMAT: "%u мин" STR_SLEEP_NEVER: "Ешқашан" STR_STEP_HINT_FRONT: "Алдыңғы түймелер:" STR_STEP_HINT_SIDE: "Бүйір түймелері:" +STR_OPDS_DOWNLOAD_FOLDER: "Жүктеп алу қалтасы" +STR_OPDS_FILENAME_FORMAT: "Файл атауының пішімі" +STR_FMT_AUTHOR_TITLE: "Автор - Атауы" +STR_FMT_TITLE_AUTHOR: "Атауы - Автор" +STR_FMT_TITLE: "Атауы" STR_SCREENSHOT_BUTTON: "Скриншот түсіру" STR_AUTO_TURN_ENABLED: "Автоматты бет аудару қосулы: " STR_AUTO_TURN_PAGES_PER_MIN: "Автоматты бет аудару (минутына бет саны)" STR_TILT_PAGE_TURN: "Еңкейту арқылы бет аудару" +STR_ADD_HIDDEN_NETWORK: "Жасырын желіні қосу..." +STR_ENTER_WIFI_SSID: "Желі атауын енгізіңіз (SSID)" diff --git a/lib/I18n/translations/lithuanian.yaml b/lib/I18n/translations/lithuanian.yaml index 0b17cf28d9..793a807b3a 100644 --- a/lib/I18n/translations/lithuanian.yaml +++ b/lib/I18n/translations/lithuanian.yaml @@ -72,6 +72,7 @@ STR_IMAGES_SUPPRESS: "Slėpti" STR_SHORT_PWR_BTN: "Trumpas įjungimo pasp." STR_ORIENTATION: "Orientacija" STR_SIDE_BTN_LAYOUT: "Šoniniai mygtukai" +STR_TOUCH_READER_CONTROLS: "Lietimo valdikliai skaityklėje" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Orientuoti priekinius mygtukus" STR_LONG_PRESS_SKIP: "Praleisti skyrių (ilgai)" STR_FONT_PREVIEW_TEXT: "Įlinkdama fechtuotojo špaga sublykčiojusi pragręžė apvalų arbūzą" @@ -94,6 +95,7 @@ STR_USERNAME: "Vartotojas" STR_PASSWORD: "Slaptažodis" STR_SYNC_SERVER_URL: "Serverio URL" STR_DOCUMENT_MATCHING: "Atpažinimas" +STR_SEND_METADATA: "Siųsti dokumento metaduomenis" STR_AUTHENTICATE: "Prisijungti" STR_KOREADER_USERNAME: "KOReader vartotojas" STR_KOREADER_PASSWORD: "KOReader slaptažodis" @@ -296,7 +298,14 @@ STR_SLEEP_TIMER_VALUE_FORMAT: "%u min." STR_SLEEP_NEVER: "Niekada" STR_STEP_HINT_FRONT: "Priekiniai mygtukai:" STR_STEP_HINT_SIDE: "Šoniniai mygtukai:" +STR_OPDS_DOWNLOAD_FOLDER: "Atsisiuntimų aplankas" +STR_OPDS_FILENAME_FORMAT: "Failo pavadinimo formatas" +STR_FMT_AUTHOR_TITLE: "Autorius - Pavadinimas" +STR_FMT_TITLE_AUTHOR: "Pavadinimas - Autorius" +STR_FMT_TITLE: "Pavadinimas" STR_SCREENSHOT_BUTTON: "Ekrano nuotrauka" STR_AUTO_TURN_ENABLED: "Auto-vertimas: " STR_AUTO_TURN_PAGES_PER_MIN: "Auto-vertimas (psl/min)" STR_TILT_PAGE_TURN: "Puslapio vertimas pakreipiant" +STR_ADD_HIDDEN_NETWORK: "Pridėti paslėptą tinklą..." +STR_ENTER_WIFI_SSID: "Įveskite tinklo pavadinimą (SSID)" diff --git a/lib/I18n/translations/norwegian.yaml b/lib/I18n/translations/norwegian.yaml new file mode 100644 index 0000000000..041edfc569 --- /dev/null +++ b/lib/I18n/translations/norwegian.yaml @@ -0,0 +1,385 @@ +_language_name: "Norsk bokmål" +_language_code: "NB" +_order: "26" + +STR_CROSSPOINT: "CrossPoint" +STR_BOOTING: "STARTER" +STR_SLEEPING: "HVILER" +STR_ENTERING_SLEEP: "Går i hvilemodus" +STR_BROWSE_FILES: "Bla i filer" +STR_FILE_TRANSFER: "Filoverføring" +STR_SETTINGS_TITLE: "Innstillinger" +STR_CONTINUE_READING: "Fortsett å lese" +STR_NO_OPEN_BOOK: "Ingen åpen bok" +STR_START_READING: "Start å lese nedenfor" +STR_NO_FILES_FOUND: "Ingen filer funnet" +STR_SELECT_CHAPTER: "Velg kapittel" +STR_NO_CHAPTERS: "Ingen kapitler" +STR_END_OF_BOOK: "Slutten av boken" +STR_EMPTY_CHAPTER: "Tomt kapittel" +STR_INDEXING: "Indekserer" +STR_MEMORY_ERROR: "Minnefeil" +STR_PAGE_LOAD_ERROR: "Feil ved sidelasting" +STR_EMPTY_FILE: "Tom fil" +STR_OUT_OF_BOUNDS: "Utenfor område" +STR_LOADING: "Laster..." +STR_LOADING_POPUP: "Laster" +STR_WIFI_NETWORKS: "WiFi-nettverk" +STR_NO_NETWORKS: "Ingen nettverk funnet" +STR_NETWORKS_FOUND: "%zu nettverk funnet" +STR_SCANNING: "Skanner..." +STR_CONNECTING: "Kobler til..." +STR_CONNECTED: "Tilkoblet!" +STR_CONNECTION_FAILED: "Tilkobling mislyktes" +STR_FORGET_NETWORK: "Glem nettverk?" +STR_SAVE_PASSWORD: "Lagre passord til neste gang?" +STR_PRESS_OK_SCAN: "Trykk OK for å skanne på nytt" +STR_JOIN_NETWORK: "Koble til et nettverk" +STR_CREATE_HOTSPOT: "Opprett hotspot" +STR_JOIN_DESC: "Koble til et eksisterende WiFi-nettverk" +STR_HOTSPOT_DESC: "Opprett et WiFi-nettverk andre kan koble seg til" +STR_STARTING_HOTSPOT: "Starter hotspot..." +STR_HOTSPOT_MODE: "Hotspot-modus" +STR_CONNECT_WIFI_HINT: "Koble enheten din til dette WiFi-nettverket" +STR_OPEN_URL_HINT: "Åpne denne URL-en i nettleseren din" +STR_OR_HTTP_PREFIX: "eller http://" +STR_SCAN_QR_HINT: "eller skann QR-kode med telefonen din:" +STR_CALIBRE_WIRELESS: "Calibre Wireless" +STR_NETWORK_LEGEND: "* = Kryptert | + = Lagret" +STR_MAC_ADDRESS: "MAC-adresse:" +STR_CHECKING_WIFI: "Sjekker WiFi..." +STR_ENTER_WIFI_PASSWORD: "Skriv inn WiFi-passord" +STR_TO_PREFIX: "til " +STR_CALIBRE_RECEIVING: "Mottar: " +STR_CALIBRE_RECEIVED: "Mottatt: " +STR_CALIBRE_INSTRUCTION_1: "1) Installer CrossPoint Reader-plugin" +STR_CALIBRE_INSTRUCTION_2: "2) Vær på samme WiFi-nettverk" +STR_CALIBRE_INSTRUCTION_3: "3) I Calibre: \"Send til enhet\"" +STR_CALIBRE_INSTRUCTION_4: "\"Hold denne skjermen åpen mens du sender\"" +STR_CAT_DISPLAY: "Skjerm" +STR_CAT_READER: "Leser" +STR_CAT_CONTROLS: "Betjening" +STR_CAT_SYSTEM: "System" +STR_SLEEP_SCREEN: "Hvileskjerm" +STR_QUICK_RESUME_TIMEOUT: "Hurtig gjenopptak ved tidsavbrudd" +STR_SLEEP_COVER_MODE: "Omslagsmodus for hvileskjerm" +STR_HIDE_BATTERY: "Skjul batteri %" +STR_EXTRA_SPACING: "Ekstra avsnittsavstand" +STR_TEXT_AA: "Tekstutjevning" +STR_IMAGES: "Bilder" +STR_IMAGES_DISPLAY: "Vis" +STR_IMAGES_PLACEHOLDER: "Plassholder" +STR_IMAGES_SUPPRESS: "Skjul" +STR_SHORT_PWR_BTN: "Kort trykk på av/på-knapp" +STR_ORIENTATION: "Leseretning" +STR_SIDE_BTN_LAYOUT: "Sideknapp-oppsett (leser)" +STR_FRONT_BTN_FOLLOW_ORIENTATION: "Orienter frontknapper" +STR_LONG_PRESS_BEHAVIOR: "Atferd ved langt trykk" +STR_LONG_PRESS_BEHAVIOR_OFF: "AV" +STR_LONG_PRESS_BEHAVIOR_SKIP: "Kapittelhopp" +STR_LONG_PRESS_BEHAVIOR_ORIENTATION: "Endre orientering" +STR_LONG_PRESS_MENU: "Langt trykk på Meny" +STR_FONT_PREVIEW_TEXT: "Høvdingens kjære squaw får litt pizza i Mexico by" +STR_FONT_FAMILY: "Skrifttype i leser" +STR_FONT_SIZE: "Skriftstørrelse i leser" +STR_LINE_SPACING: "Linjeavstand i leser" +STR_SCREEN_MARGIN: "Skjermmarg i leser" +STR_PARA_ALIGNMENT: "Avsnittsjustering i leser" +STR_HYPHENATION: "Orddeling" +STR_TIME_TO_SLEEP: "Tid før hvile" +STR_SHOW_HIDDEN_FILES: "Vis skjulte filer" +STR_REMOVE_READ_FROM_RECENTS: "Fjern leste bøker fra Nylig-listen" +STR_MOVE_FINISHED_TO_READ: "Flytt fullførte bøker til Read-mappen" +STR_REFRESH_FREQ: "Oppdateringsfrekvens" +STR_KOREADER_SYNC: "KOReader Sync" +STR_CHECK_UPDATES: "Se etter oppdateringer" +STR_LANGUAGE: "Språk" +STR_CLEAR_READING_CACHE: "Tøm lesebuffer" +STR_USERNAME: "Brukernavn" +STR_PASSWORD: "Passord" +STR_SYNC_SERVER_URL: "URL til synk-server" +STR_DOCUMENT_MATCHING: "Dokumentgjenkjenning" +STR_AUTHENTICATE: "Godkjenn" +STR_KOREADER_USERNAME: "KOReader-brukernavn" +STR_KOREADER_PASSWORD: "KOReader-passord" +STR_FILENAME: "Filnavn" +STR_BINARY: "Binær" +STR_SET_CREDENTIALS_FIRST: "Angi påloggingsinfo først" +STR_WIFI_CONN_FAILED: "WiFi-tilkobling mislyktes" +STR_AUTHENTICATING: "Godkjenner..." +STR_AUTH_SUCCESS: "Godkjenning vellykket!" +STR_KOREADER_AUTH: "KOReader-godkjenning" +STR_SYNC_READY: "KOReader-synk er klar til bruk" +STR_AUTH_FAILED: "Godkjenning mislyktes" +STR_DONE: "Ferdig" +STR_CLEAR_CACHE_WARNING_1: "Dette tømmer alle bufrede bokdata." +STR_CLEAR_CACHE_WARNING_2: "All lesefremdrift går tapt!" +STR_CLEAR_CACHE_WARNING_3: "Bøker må indekseres på nytt" +STR_CLEAR_CACHE_WARNING_4: "når de åpnes igjen." +STR_CLEARING_CACHE: "Tømmer buffer..." +STR_CACHE_CLEARED: "Buffer tømt" +STR_ITEMS_REMOVED: "elementer fjernet" +STR_FAILED_LOWER: "mislyktes" +STR_CLEAR_CACHE_FAILED: "Kunne ikke tømme buffer" +STR_CHECK_SERIAL_OUTPUT: "Sjekk seriell utdata for detaljer" +STR_DARK: "Mørk" +STR_LIGHT: "Lys" +STR_CUSTOM: "Egendefinert" +STR_COVER: "Omslag" +STR_NONE_OPT: "Ingen" +STR_FIT: "Tilpass" +STR_CROP: "Beskjær" +STR_NEVER: "Aldri" +STR_IN_READER: "I leseren" +STR_ALWAYS: "Alltid" +STR_IGNORE: "Ignorer" +STR_SLEEP: "Hvile" +STR_PAGE_TURN: "Bla om" +STR_FORCE_REFRESH: "Oppdater skjerm" +STR_PORTRAIT: "Stående" +STR_LANDSCAPE_CW: "Liggende med klokken" +STR_INVERTED: "Opp ned" +STR_ORIENTATION_INVERTED: "Portrett 180°" +STR_LANDSCAPE_CCW: "Liggende mot klokken" +STR_PREV_NEXT: "Forrige/Neste" +STR_NEXT_PREV: "Neste/Forrige" +STR_KOSYNC: "KOSync" +STR_BOOKMARK_OPTION: "Bokmerke" +STR_DISABLED: "Deaktivert" +STR_NOTO_SERIF: "Noto Serif" +STR_NOTO_SANS: "Noto Sans" +STR_SMALL: "Liten" +STR_MEDIUM: "Middels" +STR_LARGE: "Stor" +STR_X_LARGE: "Ekstra stor" +STR_TIGHT: "Tett" +STR_NORMAL: "Normal" +STR_WIDE: "Bred" +STR_JUSTIFY: "Blokkjustert" +STR_ALIGN_LEFT: "Venstre" +STR_CENTER: "Midtstilt" +STR_ALIGN_RIGHT: "Høyre" +STR_PAGES_1: "1 side" +STR_PAGES_5: "5 sider" +STR_PAGES_10: "10 sider" +STR_PAGES_15: "15 sider" +STR_PAGES_30: "30 sider" +STR_UPDATE: "Oppdater" +STR_CHECKING_UPDATE: "Ser etter oppdatering..." +STR_NEW_UPDATE: "Ny oppdatering tilgjengelig!" +STR_CURRENT_VERSION: "Nåværende versjon: " +STR_NEW_VERSION: "Ny versjon: " +STR_UPDATING: "Oppdaterer..." +STR_NO_UPDATE: "Ingen oppdatering tilgjengelig" +STR_UPDATE_FAILED: "Oppdatering mislyktes" +STR_UPDATE_COMPLETE: "Oppdatering fullført" +STR_POWER_ON_HINT: "Trykk og hold av/på-knappen for å slå på igjen" +STR_RESTARTING_HINT: "Starter på nytt... Hvis enheten ikke starter, hold av/på-knappen i noen sekunder." +STR_NO_ENTRIES: "Ingen oppføringer funnet" +STR_DOWNLOADING: "Laster ned..." +STR_DOWNLOAD_FAILED: "Nedlasting mislyktes" +STR_ERROR_MSG: "Feil:" +STR_UNNAMED: "Uten navn" +STR_HOLD_OPEN_TO_DELETE: "Hold Åpne for å slette" +STR_NO_SERVER_URL: "Ingen server-URL konfigurert" +STR_FETCH_FEED_FAILED: "Kunne ikke hente feed" +STR_PARSE_FEED_FAILED: "Kunne ikke tolke feed" +STR_NEXT_PAGE: "Neste side »" +STR_PREV_PAGE: "« Forrige side" +STR_NETWORK_PREFIX: "Nettverk: " +STR_IP_ADDRESS_PREFIX: "IP-adresse: " +STR_ERROR_GENERAL_FAILURE: "Feil: Generell feil" +STR_ERROR_NETWORK_NOT_FOUND: "Feil: Nettverk ikke funnet" +STR_ERROR_CONNECTION_TIMEOUT: "Feil: Tidsavbrudd for tilkobling" +STR_SD_CARD: "SD-kort" +STR_BACK: "« Tilbake" +STR_EXIT: "« Avslutt" +STR_HOME: "« Hjem" +STR_SELECT: "Velg" +STR_SELECTED: "Valgt" +STR_TOGGLE: "Veksle" +STR_TOGGLE_BOOKMARK: "Veksle bokmerke" +STR_CONFIRM: "Bekreft" +STR_CANCEL: "Avbryt" +STR_CONNECT: "Koble til" +STR_OPEN: "Åpne" +STR_DOWNLOAD: "Last ned" +STR_RETRY: "Prøv igjen" +STR_YES: "Ja" +STR_NO: "Nei" +STR_SHOW: "Vis" +STR_HIDE: "Skjul" +STR_STATE_ON: "PÅ" +STR_STATE_OFF: "AV" +STR_NOT_SET: "Ikke angitt" +STR_DIR_LEFT: "Venstre" +STR_DIR_RIGHT: "Høyre" +STR_DIR_UP: "Opp" +STR_DIR_DOWN: "Ned" +STR_OK_BUTTON: "OK" +STR_SLEEP_COVER_FILTER: "Omslagsfilter for hvileskjerm" +STR_FILTER_CONTRAST: "Kontrast" +STR_CUSTOMISE_STATUS_BAR: "Tilpass statuslinje" +STR_CHAPTER_PAGE_COUNT: "Sideantall i kapittel" +STR_BOOK_PROGRESS_PERCENTAGE: "Bokfremdrift i prosent" +STR_PROGRESS_BAR: "Fremdriftslinje" +STR_PROGRESS_BAR_THICKNESS: "Tykkelse på fremdriftslinje" +STR_PROGRESS_BAR_THIN: "Tynn" +STR_PROGRESS_BAR_MEDIUM: "Middels" +STR_PROGRESS_BAR_THICK: "Tykk" +STR_BOOK: "Bok" +STR_CHAPTER: "Kapittel" +STR_EXAMPLE_CHAPTER: "Kapittel 21" +STR_EXAMPLE_BOOK: "Boktittel" +STR_PREVIEW: "Forhåndsvisning" +STR_TITLE: "Tittel" +STR_BATTERY: "Batteri" +STR_XTC_STATUS_BAR: "XTC-statuslinje" +STR_BOTTOM: "Nederst" +STR_TOP: "Øverst" +STR_CLOCK: "Klokke" +STR_CLOCK_UTC_OFFSET: "UTC-forskyvning for klokke" +STR_CLOCK_FORMAT: "Klokkeformat" +STR_CLOCK_FORMAT_24H: "24-timers" +STR_CLOCK_FORMAT_12H: "12-timers" +STR_CURRENT_TIME: "Nåværende tid:" +STR_NEXT_FIELD: "Neste" +STR_CLOCK_SYNC: "Synkroniser klokke" +STR_CLOCK_SYNC_NOW: "Synkroniser klokke nå" +STR_CLOCK_SYNCING: "Synkroniserer fra NTP..." +STR_CLOCK_SYNC_OK: "Klokke synkronisert" +STR_CLOCK_SYNC_FAIL: "Synkronisering mislyktes" +STR_CLOCK_SYNC_NO_WIFI: "WiFi ikke tilkoblet" +STR_CLOCK_SYNC_NO_WIFI_HINT: "Koble til WiFi først, og prøv igjen." +STR_CLOCK_SYNCED: "Klokke synkronisert" +STR_UI_THEME: "Grensesnittstema" +STR_THEME_CLASSIC: "Klassisk" +STR_THEME_LYRA: "Lyra" +STR_THEME_ROUNDEDRAFF: "RoundedRaff" +STR_THEME_LYRA_EXTENDED: "Lyra Extended" +STR_SUNLIGHT_FADING_FIX: "Retting for soluttoning" +STR_REMAP_FRONT_BUTTONS: "Tilordne frontknapper på nytt" +STR_BOOKMARKS: "Bokmerker" +STR_BOOKMARK_ADDED: "Bokmerke lagt til." +STR_BOOKMARK_REMOVED: "Bokmerke fjernet." +STR_OPDS_BROWSER: "OPDS-leser" +STR_SEARCH: "Søk" +STR_COVER_CUSTOM: "Omslag + Egendefinert" +STR_QUICK_RESUME: "Hurtig gjenopptak" +STR_MENU_RECENT_BOOKS: "Nylige bøker" +STR_REMOVE_FROM_RECENTS: "Fjern fra Nylige bøker?" +STR_NO_RECENT_BOOKS: "Ingen nylige bøker" +STR_CALIBRE_DESC: "Bruk trådløs enhetsoverføring med Calibre" +STR_FORGET_AND_REMOVE: "Glem nettverk og fjern lagret passord?" +STR_FORGET_BUTTON: "Glem" +STR_CALIBRE_STARTING: "Starter Calibre..." +STR_CALIBRE_SETUP: "Oppsett" +STR_CALIBRE_STATUS: "Status" +STR_CLEAR_BUTTON: "Tøm" +STR_DEFAULT_VALUE: "Standard" +STR_REMAP_PROMPT: "Trykk en frontknapp for hver rolle" +STR_UNASSIGNED: "Ikke tilordnet" +STR_ALREADY_ASSIGNED: "Allerede tilordnet" +STR_REMAP_RESET_HINT: "Sideknapp opp: Nullstill til standardoppsett" +STR_REMAP_CANCEL_HINT: "Sideknapp ned: Avbryt omtilordning" +STR_HW_BACK_LABEL: "Tilbake (1. knapp)" +STR_HW_CONFIRM_LABEL: "Bekreft (2. knapp)" +STR_HW_LEFT_LABEL: "Venstre (3. knapp)" +STR_HW_RIGHT_LABEL: "Høyre (4. knapp)" +STR_GO_TO_PERCENT: "Gå til %" +STR_GO_HOME_BUTTON: "Hjem" +STR_SYNC_PROGRESS: "Synkroniser fremdrift" +STR_DELETE_CACHE: "Slett bokbuffer" +STR_DELETE: "Slett" +STR_CONFIRM_DELETE_BOOKMARK: "Slette dette bokmerket?" +STR_DISPLAY_QR: "Vis side som QR" +STR_CHAPTER_PREFIX: "Kapittel: " +STR_PAGES_SEPARATOR: " sider | " +STR_BOOK_PREFIX: "Bok: " +STR_CALIBRE_URL_HINT: "For Calibre, legg til /opds i URL-en din" +STR_PERCENT_STEP_HINT: "Venstre/Høyre: 1% Opp/Ned: 10%" +STR_SYNCING_TIME: "Synkroniserer tid..." +STR_CALC_HASH: "Beregner dokument-hash..." +STR_HASH_FAILED: "Kunne ikke beregne dokument-hash" +STR_FETCH_PROGRESS: "Henter ekstern fremdrift..." +STR_UPLOAD_PROGRESS: "Laster opp fremdrift..." +STR_NO_CREDENTIALS_MSG: "Ingen påloggingsinfo angitt" +STR_KOREADER_SETUP_HINT: "Sett opp KOReader-konto i Innstillinger" +STR_PROGRESS_FOUND: "Fremdrift funnet!" +STR_REMOTE_LABEL: "Ekstern:" +STR_LOCAL_LABEL: "Lokal:" +STR_PAGE_OVERALL_FORMAT: "Side %d, %.2f%% totalt" +STR_PAGE_TOTAL_OVERALL_FORMAT: "Side %d/%d, %.2f%% totalt" +STR_DEVICE_FROM_FORMAT: " Fra: %s" +STR_APPLY_REMOTE: "Bruk ekstern fremdrift" +STR_UPLOAD_LOCAL: "Last opp lokal fremdrift" +STR_NO_REMOTE_MSG: "Ingen ekstern fremdrift funnet" +STR_UPLOAD_PROMPT: "Last opp nåværende posisjon?" +STR_UPLOAD_SUCCESS: "Fremdrift lastet opp!" +STR_SYNC_FAILED_MSG: "Synkronisering mislyktes" +STR_SAVE_PROGRESS_FAILED: "Kunne ikke lagre fremdrift" +STR_SECTION_PREFIX: "Del " +STR_UPLOAD: "Last opp" +STR_BOOK_S_STYLE: "Bokens stil" +STR_EMBEDDED_STYLE: "Innebygd stil" +STR_FOCUS_READING: "Fokuslesing" +STR_OPDS_SERVER_URL: "OPDS-server-URL" +STR_PWR_BTN_FOOTNOTE_BACK: "Hurtig retur fra fotnoter" +STR_SET_SLEEP_COVER: "Velg omslag" +STR_FOOTNOTES: "Fotnoter" +STR_NO_FOOTNOTES: "Ingen fotnoter på denne siden" +STR_LINK: "[lenke]" +STR_SCREENSHOT_BUTTON: "Ta skjermbilde" +STR_SLEEP_TIMER_VALUE_FORMAT: "%u min" +STR_SLEEP_NEVER: "Aldri" +STR_SLEEP_TIMER_STEP_HINT: "Venstre/Høyre: 1 min Opp/Ned: 5 min" +STR_ADD_SERVER: "Legg til server" +STR_SERVER_NAME: "Servernavn" +STR_NO_SERVERS: "Ingen OPDS-servere konfigurert" +STR_DELETE_SERVER: "Slett server" +STR_OPDS_SERVERS: "OPDS-servere" +STR_AUTO_TURN_ENABLED: "Automatisk bla aktivert: " +STR_AUTO_TURN_PAGES_PER_MIN: "Automatisk bla (sider per minutt)" +STR_MANAGE_FONTS: "Administrer skrifttyper" +STR_FONT_BROWSER: "Bla i skrifttyper" +STR_LOADING_FONT_LIST: "Laster skrifttypeliste..." +STR_NO_FONTS_AVAILABLE: "Ingen skrifttyper tilgjengelig" +STR_FONT_INSTALLED: "Skrifttype installert!" +STR_FONT_INSTALL_FAILED: "Installasjon av skrifttype mislyktes" +STR_INSTALLED: "Installert" +STR_DOWNLOAD_ALL: "Last ned alle" +STR_UPDATE_ALL: "Oppdater alle" +STR_UPDATE_AVAILABLE: "Oppdater" +STR_CRASH_TITLE: "Systemkrasj" +STR_CRASH_DESCRIPTION: "En detaljert rapport ble lagret i crash_report.txt. Legg ved denne filen i feilrapporten din." +STR_CRASH_REASON: "Krasjårsak:" +STR_CRASH_NO_REASON: "(Ingen årsak ble registrert)" +STR_TILT_PAGE_TURN: "Vipp for å bla" +STR_KB_HINT_MOVE_CURSOR: "Trykk VENSTRE eller HØYRE for å flytte markøren" +STR_KB_HINT_RETURN_CURSOR: "Trykk VENSTRE for å gå tilbake til markørposisjonen" +STR_KB_HINT_HIDE_PASSWORD: "Hold HØYRE og trykk [***] for å skjule passord" +STR_KB_HINT_SHOW_PASSWORD: "Hold HØYRE og trykk [abc] for å vise passord" +STR_KB_HINT_TOGGLE_HIDE_PASSWORD: "Trykk [***] for å skjule passord" +STR_KB_HINT_TOGGLE_SHOW_PASSWORD: "Trykk [abc] for å vise passord" +STR_KB_HINT_EDIT_ENTRY: "Hold OPP for å redigere oppføring" +STR_KB_TIPS: "Tips:" +STR_KB_HINT_RETURN_KEYBOARD: "Trykk NED for å gå tilbake til tastaturet" +STR_KB_HINT_EXIT_URL_MODE: "Trykk ABC for å avslutte URL-modus" +STR_KB_HINT_CLEAR_TEXT: "Hold DEL for å slette all tekst" +STR_KB_HINT_SECONDARY_CHAR: "Hold VELG for sekundærtegn" +STR_KB_HINT_UPPER_SECONDARY: "Hold VELG for STORE BOKSTAVER eller sekundærtegn" +STR_KB_HINT_LOWER_SECONDARY: "Hold VELG for små bokstaver eller sekundærtegn" +STR_KB_HINT_URL_SNIPPETS: "Trykk URL for tekstbiter" +STR_SD_FIRMWARE_UPDATE: "Fastvareoppdatering fra SD-kort" +STR_SELECT_FIRMWARE_FILE: "Velg fastvarefil (.bin)" +STR_NO_BIN_FILES: "Ingen .bin-filer funnet" +STR_VALIDATING_FIRMWARE: "Validerer fastvare..." +STR_INVALID_FIRMWARE: "Ugyldig fastvarefil" +STR_FIRMWARE_TOO_LARGE: "Fastvaren er for stor for partisjonen" +STR_FIRMWARE_TOO_SMALL: "Fastvarefilen er for liten" +STR_FIRMWARE_UPDATE_PROMPT: "Oppdatere fastvare?" +STR_FIRMWARE_FILE_OPEN_FAILED: "Kan ikke åpne filen" +STR_FIRMWARE_WRITE_FAILED: "Skriving av fastvare mislyktes" +STR_FIRMWARE_UPDATE_DO_NOT_POWER_OFF: "Ikke slå av!" +STR_RECOVERY_MODE: "Gjenopprettingsmodus" +STR_RECOVERY_MODE_HINT: "Legg firmware.bin i roten av SD-kortet og velg den" diff --git a/lib/I18n/translations/polish.yaml b/lib/I18n/translations/polish.yaml index ec623e78c6..82e87d34d9 100644 --- a/lib/I18n/translations/polish.yaml +++ b/lib/I18n/translations/polish.yaml @@ -72,6 +72,7 @@ STR_IMAGES_SUPPRESS: "Pomijaj" STR_SHORT_PWR_BTN: "Krótkie naciśnięcie zasilania" STR_ORIENTATION: "Układ czytania" STR_SIDE_BTN_LAYOUT: "Układ przycisków bocznych" +STR_TOUCH_READER_CONTROLS: "Sterowanie dotykowe czytnika" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Orientuj przednie przyciski" STR_LONG_PRESS_BEHAVIOR: "Funkcja długiego przyciśnięcia" STR_LONG_PRESS_BEHAVIOR_OFF: "Wył." @@ -97,6 +98,7 @@ STR_USERNAME: "Użytkownik" STR_PASSWORD: "Hasło" STR_SYNC_SERVER_URL: "Serwer URL synchronizacji" STR_DOCUMENT_MATCHING: "Dopasowanie dokumentów" +STR_SEND_METADATA: "Wyślij metadane dokumentu" STR_AUTHENTICATE: "Uwierzytelnianie" STR_KOREADER_USERNAME: "Użytkownik KOReader" STR_KOREADER_PASSWORD: "Hasło KOReader" @@ -315,6 +317,11 @@ STR_SERVER_NAME: "Nazwa serwera" STR_NO_SERVERS: "Brak skonfigurowanych serwerów OPDS" STR_DELETE_SERVER: "Usuń serwer" STR_OPDS_SERVERS: "Serwery OPDS" +STR_OPDS_DOWNLOAD_FOLDER: "Folder pobierania" +STR_OPDS_FILENAME_FORMAT: "Format nazwy pliku" +STR_FMT_AUTHOR_TITLE: "Autor - Tytuł" +STR_FMT_TITLE_AUTHOR: "Tytuł - Autor" +STR_FMT_TITLE: "Tytuł" STR_AUTO_TURN_ENABLED: "Auto-kartkowanie: " STR_AUTO_TURN_PAGES_PER_MIN: "Auto-kartkowanie (str./min)" STR_DOWNLOAD_FONTS: "Pobierz czcionki" @@ -360,3 +367,5 @@ STR_FIRMWARE_WRITE_FAILED: "Zapis oprogramowania nieudany" STR_FIRMWARE_UPDATE_DO_NOT_POWER_OFF: "Nie wyłączać!" STR_RECOVERY_MODE: "Tryb przywracania" STR_RECOVERY_MODE_HINT: "Umieść firmware.bin w głównym katalogu karty SD i wybierz go" +STR_ADD_HIDDEN_NETWORK: "Dodaj ukrytą sieć..." +STR_ENTER_WIFI_SSID: "Wprowadź nazwę sieci (SSID)" diff --git a/lib/I18n/translations/portuguese.yaml b/lib/I18n/translations/portuguese-BR.yaml similarity index 97% rename from lib/I18n/translations/portuguese.yaml rename to lib/I18n/translations/portuguese-BR.yaml index f19a374ce9..876c877c0b 100644 --- a/lib/I18n/translations/portuguese.yaml +++ b/lib/I18n/translations/portuguese-BR.yaml @@ -73,6 +73,7 @@ STR_IMAGES_SUPPRESS: "Ocultar" STR_SHORT_PWR_BTN: "Clique curto botão ligar" STR_ORIENTATION: "Orientação de leitura" STR_SIDE_BTN_LAYOUT: "Disposição botões laterais" +STR_TOUCH_READER_CONTROLS: "Controles táteis do leitor" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Orientar botões frontais" STR_LONG_PRESS_BEHAVIOR: "Comportamento de Pressionar e segurar" STR_LONG_PRESS_BEHAVIOR_OFF: "DESL." @@ -99,6 +100,7 @@ STR_USERNAME: "Nome de usuário" STR_PASSWORD: "Senha" STR_SYNC_SERVER_URL: "URL servidor sincronização" STR_DOCUMENT_MATCHING: "Documento correspondente" +STR_SEND_METADATA: "Enviar metadados do doc." STR_AUTHENTICATE: "Autenticar" STR_KOREADER_USERNAME: "Usuário do KOReader" STR_KOREADER_PASSWORD: "Senha do KOReader" @@ -338,6 +340,11 @@ STR_SERVER_NAME: "Nome do Servidor" STR_NO_SERVERS: "Nenhum servidor OPDS configurado" STR_DELETE_SERVER: "Excluir Servidor" STR_OPDS_SERVERS: "Servidores OPDS" +STR_OPDS_DOWNLOAD_FOLDER: "Pasta de downloads" +STR_OPDS_FILENAME_FORMAT: "Formato do nome do arquivo" +STR_FMT_AUTHOR_TITLE: "Autor - Título" +STR_FMT_TITLE_AUTHOR: "Título - Autor" +STR_FMT_TITLE: "Título" STR_AUTO_TURN_ENABLED: "Virada automática ativada: " STR_AUTO_TURN_PAGES_PER_MIN: "Virada automática (páginas por minuto)" STR_MANAGE_FONTS: "Gerenciar fontes" @@ -383,3 +390,5 @@ STR_FIRMWARE_WRITE_FAILED: "Falha na gravação do firmware" STR_FIRMWARE_UPDATE_DO_NOT_POWER_OFF: "Não desligue o dispositivo!" STR_RECOVERY_MODE: "Modo de Recuperação" STR_RECOVERY_MODE_HINT: "Coloque o arquivo firmware.bin na raiz do cartão SD e selecione-o" +STR_ADD_HIDDEN_NETWORK: "Adicionar rede oculta..." +STR_ENTER_WIFI_SSID: "Insira o nome da rede (SSID)" diff --git a/lib/I18n/translations/portuguese-PT.yaml b/lib/I18n/translations/portuguese-PT.yaml new file mode 100644 index 0000000000..f65791b5ff --- /dev/null +++ b/lib/I18n/translations/portuguese-PT.yaml @@ -0,0 +1,393 @@ +_language_name: "Português (Portugal)" +_language_code: "P2" +_order: "27" + +STR_CROSSPOINT: "CrossPoint" +STR_BOOTING: "A INICIAR" +STR_SLEEPING: "EM REPOUSO" +STR_ENTERING_SLEEP: "A entrar em repouso" +STR_BROWSE_FILES: "Explorar ficheiros" +STR_FILE_TRANSFER: "Transferência de ficheiros" +STR_SETTINGS_TITLE: "Definições" +STR_CONTINUE_READING: "Continuar a ler" +STR_NO_OPEN_BOOK: "Nenhum livro aberto" +STR_START_READING: "Comece a ler abaixo" +STR_NO_FILES_FOUND: "Nenhum ficheiro encontrado" +STR_SELECT_CHAPTER: "Selecionar capítulo" +STR_NO_CHAPTERS: "Sem capítulos" +STR_END_OF_BOOK: "Fim do livro" +STR_EMPTY_CHAPTER: "Capítulo vazio" +STR_INDEXING: "A indexar" +STR_MEMORY_ERROR: "Erro de memória" +STR_PAGE_LOAD_ERROR: "Erro ao carregar a página" +STR_EMPTY_FILE: "Ficheiro vazio" +STR_OUT_OF_BOUNDS: "Fora dos limites" +STR_LOADING: "A carregar..." +STR_LOADING_POPUP: "A carregar" +STR_WIFI_NETWORKS: "Redes Wi-Fi" +STR_NO_NETWORKS: "Nenhuma rede encontrada" +STR_NETWORKS_FOUND: "%zu redes encontradas" +STR_SCANNING: "A procurar..." +STR_CONNECTING: "A ligar..." +STR_CONNECTED: "Ligado!" +STR_CONNECTION_FAILED: "Falha na ligação" +STR_FORGET_NETWORK: "Esquecer rede?" +STR_SAVE_PASSWORD: "Guardar palavra-passe para a próxima vez?" +STR_PRESS_OK_SCAN: "Prima OK para procurar novamente" +STR_JOIN_NETWORK: "Aderir a uma rede" +STR_CREATE_HOTSPOT: "Criar ponto de acesso" +STR_JOIN_DESC: "Ligue-se a uma rede Wi-Fi existente" +STR_HOTSPOT_DESC: "Crie uma rede Wi-Fi para outras pessoas se ligarem" +STR_STARTING_HOTSPOT: "A iniciar ponto de acesso..." +STR_HOTSPOT_MODE: "Modo de ponto de acesso" +STR_CONNECT_WIFI_HINT: "Ligue o seu dispositivo a esta rede Wi-Fi" +STR_OPEN_URL_HINT: "Abra este URL no seu navegador" +STR_OR_HTTP_PREFIX: "ou http://" +STR_SCAN_QR_HINT: "ou leia o código QR com o seu telemóvel:" +STR_CALIBRE_WIRELESS: "Calibre sem fios" +STR_NETWORK_LEGEND: "* = Encriptada | + = Guardada" +STR_MAC_ADDRESS: "Endereço MAC:" +STR_CHECKING_WIFI: "A verificar o Wi-Fi..." +STR_ENTER_WIFI_PASSWORD: "Introduza a palavra-passe do Wi-Fi" +STR_TO_PREFIX: "para " +STR_CALIBRE_RECEIVING: "A receber: " +STR_CALIBRE_RECEIVED: "Recebido: " +STR_CALIBRE_INSTRUCTION_1: "1) Instale o plugin CrossPoint Reader" +STR_CALIBRE_INSTRUCTION_2: "2) Esteja na mesma rede Wi-Fi" +STR_CALIBRE_INSTRUCTION_3: "3) No Calibre: \"Enviar para o dispositivo\"" +STR_CALIBRE_INSTRUCTION_4: "\"Mantenha este ecrã aberto durante o envio\"" +STR_CAT_DISPLAY: "Ecrã" +STR_CAT_READER: "Leitor" +STR_CAT_CONTROLS: "Controlos" +STR_CAT_SYSTEM: "Sistema" +STR_SLEEP_SCREEN: "Ecrã de repouso" +STR_QUICK_RESUME_TIMEOUT: "Retoma rápida após tempo limite" +STR_SLEEP_COVER_MODE: "Modo de capa no ecrã de repouso" +STR_HIDE_BATTERY: "Ocultar % da bateria" +STR_EXTRA_SPACING: "Espaçamento extra entre parágrafos" +STR_TEXT_AA: "Suavização do texto" +STR_IMAGES: "Imagens" +STR_IMAGES_DISPLAY: "Exibição" +STR_IMAGES_PLACEHOLDER: "Espaço reservado" +STR_IMAGES_SUPPRESS: "Suprimir" +STR_SHORT_PWR_BTN: "Clique curto no botão de energia" +STR_ORIENTATION: "Orientação de leitura" +STR_SIDE_BTN_LAYOUT: "Disposição dos botões laterais (leitor)" +STR_FRONT_BTN_FOLLOW_ORIENTATION: "Orientar botões frontais" +STR_LONG_PRESS_BEHAVIOR: "Comportamento de pressão longa" +STR_LONG_PRESS_BEHAVIOR_OFF: "DESL." +STR_LONG_PRESS_BEHAVIOR_SKIP: "Saltar capítulo" +STR_LONG_PRESS_BEHAVIOR_ORIENTATION: "Alterar orientação" +STR_LONG_PRESS_MENU: "Pressão longa no Menu" +STR_FONT_PREVIEW_TEXT: "A rápida raposa castanha salta por cima do cão preguiçoso" +STR_FONT_FAMILY: "Tipo de letra do leitor" +STR_FONT_SIZE: "Tamanho do tipo de letra" +STR_LINE_SPACING: "Espaçamento entre linhas" +STR_SCREEN_MARGIN: "Margens do ecrã" +STR_PARA_ALIGNMENT: "Alinhamento dos parágrafos" +STR_HYPHENATION: "Hifenização" +STR_TIME_TO_SLEEP: "Tempo até repousar" +STR_SHOW_HIDDEN_FILES: "Mostrar ficheiros ocultos" +STR_REMOVE_READ_FROM_RECENTS: "Limpar livros lidos da lista de recentes" +STR_MOVE_FINISHED_TO_READ: "Mover livros concluídos para a pasta Read" +STR_REFRESH_FREQ: "Frequência de atualização" +STR_KOREADER_SYNC: "Sincronização KOReader" +STR_CHECK_UPDATES: "Procurar atualizações" +STR_LANGUAGE: "Idioma" +STR_CLEAR_READING_CACHE: "Limpar cache de leitura" +STR_USERNAME: "Nome de utilizador" +STR_PASSWORD: "Palavra-passe" +STR_SYNC_SERVER_URL: "URL do servidor de sincronização" +STR_DOCUMENT_MATCHING: "Correspondência de documentos" +STR_SEND_METADATA: "Enviar metadados do documento" +STR_AUTHENTICATE: "Autenticar" +STR_KOREADER_USERNAME: "Utilizador do KOReader" +STR_KOREADER_PASSWORD: "Palavra-passe do KOReader" +STR_FILENAME: "Nome do ficheiro" +STR_BINARY: "Binário" +STR_SET_CREDENTIALS_FIRST: "Defina as credenciais primeiro" +STR_WIFI_CONN_FAILED: "Falha na ligação Wi-Fi" +STR_AUTHENTICATING: "A autenticar..." +STR_AUTH_SUCCESS: "Autenticado com sucesso!" +STR_KOREADER_AUTH: "Autenticação KOReader" +STR_SYNC_READY: "A sincronização KOReader está pronta a usar" +STR_AUTH_FAILED: "Falha na autenticação" +STR_DONE: "Concluído" +STR_CLEAR_CACHE_WARNING_1: "Isto irá limpar todos os dados de livros em cache." +STR_CLEAR_CACHE_WARNING_2: "Todo o progresso de leitura será perdido!" +STR_CLEAR_CACHE_WARNING_3: "Os livros terão de ser reindexados" +STR_CLEAR_CACHE_WARNING_4: "quando forem abertos novamente." +STR_CLEARING_CACHE: "A limpar a cache..." +STR_CACHE_CLEARED: "Cache limpa" +STR_ITEMS_REMOVED: "itens removidos" +STR_FAILED_LOWER: "falhou" +STR_CLEAR_CACHE_FAILED: "Falha ao limpar a cache" +STR_CHECK_SERIAL_OUTPUT: "Verifique a saída de série para obter detalhes" +STR_DARK: "Escuro" +STR_LIGHT: "Claro" +STR_CUSTOM: "Personalizado" +STR_COVER: "Capa" +STR_NONE_OPT: "Nenhum" +STR_FIT: "Ajustar" +STR_CROP: "Recortar" +STR_NEVER: "Nunca" +STR_IN_READER: "No leitor" +STR_ALWAYS: "Sempre" +STR_IGNORE: "Ignorar" +STR_SLEEP: "Repouso" +STR_PAGE_TURN: "Virar página" +STR_FORCE_REFRESH: "Atualizar ecrã" +STR_PORTRAIT: "Retrato" +STR_LANDSCAPE_CW: "Paisagem (Dir.)" +STR_INVERTED: "Invertido" +STR_ORIENTATION_INVERTED: "Retrato 180°" +STR_LANDSCAPE_CCW: "Paisagem (Esq.)" +STR_PREV_NEXT: "Ant/Seg" +STR_NEXT_PREV: "Seg/Ant" +STR_KOSYNC: "KOSync" +STR_BOOKMARK_OPTION: "Marcador" +STR_DISABLED: "Desativado" +STR_NOTO_SERIF: "Noto Serif" +STR_NOTO_SANS: "Noto Sans" +STR_SMALL: "Pequeno" +STR_MEDIUM: "Médio" +STR_LARGE: "Grande" +STR_X_LARGE: "Extra grande" +STR_TIGHT: "Apertado" +STR_NORMAL: "Normal" +STR_WIDE: "Largo" +STR_JUSTIFY: "Justificar" +STR_ALIGN_LEFT: "Esquerda" +STR_CENTER: "Centrar" +STR_ALIGN_RIGHT: "Direita" +STR_PAGES_1: "1 página" +STR_PAGES_5: "5 páginas" +STR_PAGES_10: "10 páginas" +STR_PAGES_15: "15 páginas" +STR_PAGES_30: "30 páginas" +STR_UPDATE: "Atualizar" +STR_CHECKING_UPDATE: "A procurar atualização..." +STR_NEW_UPDATE: "Nova atualização disponível!" +STR_CURRENT_VERSION: "Versão atual: " +STR_NEW_VERSION: "Nova versão: " +STR_UPDATING: "A atualizar..." +STR_NO_UPDATE: "Nenhuma atualização disponível" +STR_UPDATE_FAILED: "Falha na atualização" +STR_UPDATE_COMPLETE: "Atualização concluída" +STR_POWER_ON_HINT: "Prima sem soltar o botão de energia para voltar a ligar" +STR_RESTARTING_HINT: "A reiniciar... Se o dispositivo não reiniciar, mantenha premido o botão de energia durante alguns segundos." +STR_NO_ENTRIES: "Nenhum registo encontrado" +STR_DOWNLOADING: "A transferir..." +STR_DOWNLOAD_FAILED: "Falha na transferência" +STR_ERROR_MSG: "Erro:" +STR_UNNAMED: "Sem nome" +STR_HOLD_OPEN_TO_DELETE: "Mantenha premido Abrir para eliminar" +STR_NO_SERVER_URL: "Nenhum URL de servidor configurado" +STR_FETCH_FEED_FAILED: "Falha ao obter o feed" +STR_PARSE_FEED_FAILED: "Falha ao analisar o feed" +STR_NEXT_PAGE: "Página seguinte »" +STR_PREV_PAGE: "« Página anterior" +STR_NETWORK_PREFIX: "Rede: " +STR_IP_ADDRESS_PREFIX: "Endereço IP: " +STR_ERROR_GENERAL_FAILURE: "Erro: falha geral" +STR_ERROR_NETWORK_NOT_FOUND: "Erro: rede não encontrada" +STR_ERROR_CONNECTION_TIMEOUT: "Erro: tempo limite de ligação esgotado" +STR_SD_CARD: "Cartão SD" +STR_BACK: "« Voltar" +STR_EXIT: "« Sair" +STR_HOME: "« Início" +STR_SELECT: "Selecionar" +STR_SELECTED: "Selecionado" +STR_TOGGLE: "Alternar" +STR_TOGGLE_BOOKMARK: "Alternar marcador" +STR_CONFIRM: "Confirmar" +STR_CANCEL: "Cancelar" +STR_CONNECT: "Ligar" +STR_OPEN: "Abrir" +STR_DOWNLOAD: "Transferir" +STR_RETRY: "Tentar novamente" +STR_YES: "Sim" +STR_NO: "Não" +STR_SHOW: "Mostrar" +STR_HIDE: "Ocultar" +STR_STATE_ON: "LIG." +STR_STATE_OFF: "DESL." +STR_NOT_SET: "Não definido" +STR_DIR_LEFT: "Esquerda" +STR_DIR_RIGHT: "Direita" +STR_DIR_UP: "Cima" +STR_DIR_DOWN: "Baixo" +STR_OK_BUTTON: "OK" +STR_SLEEP_COVER_FILTER: "Filtro da capa de ecrã de repouso" +STR_FILTER_CONTRAST: "Contraste" +STR_CUSTOMISE_STATUS_BAR: "Personalizar barra de estado" +STR_CHAPTER_PAGE_COUNT: "Contagem de páginas do capítulo" +STR_BOOK_PROGRESS_PERCENTAGE: "Percentagem de progresso do livro" +STR_PROGRESS_BAR: "Barra de progresso" +STR_PROGRESS_BAR_THICKNESS: "Espessura da barra de progresso" +STR_PROGRESS_BAR_THIN: "Fina" +STR_PROGRESS_BAR_MEDIUM: "Média" +STR_PROGRESS_BAR_THICK: "Grossa" +STR_BOOK: "Livro" +STR_CHAPTER: "Capítulo" +STR_EXAMPLE_CHAPTER: "Capítulo 21" +STR_EXAMPLE_BOOK: "Título do livro" +STR_PREVIEW: "Pré-visualização" +STR_TITLE: "Título" +STR_BATTERY: "Bateria" +STR_XTC_STATUS_BAR: "Barra de estado XTC" +STR_BOTTOM: "Inferior" +STR_TOP: "Superior" +STR_CLOCK: "Relógio" +STR_CLOCK_UTC_OFFSET: "Deslocamento UTC do relógio" +STR_CLOCK_FORMAT: "Formato do relógio" +STR_CLOCK_FORMAT_24H: "24 horas" +STR_CLOCK_FORMAT_12H: "12 horas" +STR_CURRENT_TIME: "Hora atual:" +STR_NEXT_FIELD: "Seguinte" +STR_CLOCK_SYNC: "Sincronizar relógio" +STR_CLOCK_SYNC_NOW: "Sincronizar relógio agora" +STR_CLOCK_SYNCING: "A sincronizar via NTP..." +STR_CLOCK_SYNC_OK: "Relógio sincronizado" +STR_CLOCK_SYNC_FAIL: "Falha na sincronização" +STR_CLOCK_SYNC_NO_WIFI: "Wi-Fi não ligado" +STR_CLOCK_SYNC_NO_WIFI_HINT: "Ligue-se primeiro ao Wi-Fi e, em seguida, tente novamente." +STR_CLOCK_SYNCED: "Relógio sincronizado" +STR_UI_THEME: "Tema da interface" +STR_THEME_CLASSIC: "Clássico" +STR_THEME_LYRA: "Lyra" +STR_THEME_ROUNDEDRAFF: "RoundedRaff" +STR_THEME_LYRA_EXTENDED: "Lyra Extended" +STR_SUNLIGHT_FADING_FIX: "Ajuste de desbotamento ao sol" +STR_REMAP_FRONT_BUTTONS: "Remapear botões frontais" +STR_BOOKMARKS: "Marcadores" +STR_BOOKMARK_ADDED: "Marcador adicionado." +STR_BOOKMARK_REMOVED: "Marcador removido." +STR_OPDS_BROWSER: "Navegador OPDS" +STR_SEARCH: "Pesquisar" +STR_COVER_CUSTOM: "Capa + Personalizado" +STR_QUICK_RESUME: "Retoma rápida" +STR_MENU_RECENT_BOOKS: "Livros recentes" +STR_REMOVE_FROM_RECENTS: "Remover dos Livros recentes?" +STR_NO_RECENT_BOOKS: "Nenhum livro recente" +STR_CALIBRE_DESC: "Usar transferências sem fios de dispositivos do Calibre" +STR_FORGET_AND_REMOVE: "Esquecer rede e remover palavra-passe guardada?" +STR_FORGET_BUTTON: "Esquecer" +STR_CALIBRE_STARTING: "A iniciar o Calibre..." +STR_CALIBRE_SETUP: "Configuração" +STR_CALIBRE_STATUS: "Estado" +STR_CLEAR_BUTTON: "Limpar" +STR_DEFAULT_VALUE: "Predefinição" +STR_REMAP_PROMPT: "Prima um botão frontal para cada função" +STR_UNASSIGNED: "Não atribuído" +STR_ALREADY_ASSIGNED: "Já atribuído" +STR_REMAP_RESET_HINT: "Botão lateral Cima: Repor disposição predefinida" +STR_REMAP_CANCEL_HINT: "Botão lateral Baixo: Cancelar remapeamento" +STR_HW_BACK_LABEL: "Voltar (1º botão)" +STR_HW_CONFIRM_LABEL: "Confirmar (2º botão)" +STR_HW_LEFT_LABEL: "Esquerda (3º botão)" +STR_HW_RIGHT_LABEL: "Direita (4º botão)" +STR_GO_TO_PERCENT: "Ir para %" +STR_GO_HOME_BUTTON: "Ir para o Início" +STR_SYNC_PROGRESS: "Sincronizar progresso" +STR_DELETE_CACHE: "Eliminar cache do livro" +STR_DELETE: "Eliminar" +STR_CONFIRM_DELETE_BOOKMARK: "Eliminar este marcador?" +STR_DISPLAY_QR: "Mostrar página como QR" +STR_CHAPTER_PREFIX: "Capítulo: " +STR_PAGES_SEPARATOR: " páginas | " +STR_BOOK_PREFIX: "Livro: " +STR_CALIBRE_URL_HINT: "Para o Calibre, adicione /opds ao seu URL" +STR_SYNCING_TIME: "A sincronizar a hora..." +STR_CALC_HASH: "A calcular o hash do documento..." +STR_HASH_FAILED: "Falha ao calcular o hash do documento" +STR_FETCH_PROGRESS: "A procurar progresso remoto..." +STR_UPLOAD_PROGRESS: "A enviar progresso..." +STR_NO_CREDENTIALS_MSG: "Nenhuma credencial configurada" +STR_KOREADER_SETUP_HINT: "Configure a conta do KOReader nas Definições" +STR_PROGRESS_FOUND: "Progresso encontrado!" +STR_REMOTE_LABEL: "Remoto:" +STR_LOCAL_LABEL: "Local:" +STR_PAGE_OVERALL_FORMAT: "Página %d, %.2f%% total" +STR_PAGE_TOTAL_OVERALL_FORMAT: "Página %d/%d, %.2f%% total" +STR_DEVICE_FROM_FORMAT: " De: %s" +STR_APPLY_REMOTE: "Aplicar progresso remoto" +STR_UPLOAD_LOCAL: "Enviar progresso local" +STR_NO_REMOTE_MSG: "Nenhum progresso remoto encontrado" +STR_UPLOAD_PROMPT: "Enviar posição atual?" +STR_UPLOAD_SUCCESS: "Progresso enviado!" +STR_SYNC_FAILED_MSG: "Falha na sincronização" +STR_SAVE_PROGRESS_FAILED: "Não foi possível guardar o progresso" +STR_SECTION_PREFIX: "Secção " +STR_UPLOAD: "Enviar" +STR_BOOK_S_STYLE: "Estilo do livro" +STR_EMBEDDED_STYLE: "Estilo embutido" +STR_FOCUS_READING: "Leitura focada" +STR_OPDS_SERVER_URL: "URL do servidor OPDS" +STR_PWR_BTN_FOOTNOTE_BACK: "Retorno rápido das notas de rodapé" +STR_SET_SLEEP_COVER: "Definir capa" +STR_FOOTNOTES: "Notas de rodapé" +STR_NO_FOOTNOTES: "Nenhuma nota de rodapé nesta página" +STR_LINK: "[ligação]" +STR_SCREENSHOT_BUTTON: "Captura de ecrã" +STR_SLEEP_TIMER_VALUE_FORMAT: "%u min" +STR_SLEEP_NEVER: "Nunca" +STR_STEP_HINT_FRONT: "Botões frontais:" +STR_STEP_HINT_SIDE: "Botões laterais:" +STR_ADD_SERVER: "Adicionar servidor" +STR_SERVER_NAME: "Nome do servidor" +STR_NO_SERVERS: "Nenhum servidor OPDS configurado" +STR_DELETE_SERVER: "Eliminar servidor" +STR_OPDS_SERVERS: "Servidores OPDS" +STR_OPDS_DOWNLOAD_FOLDER: "Pasta de downloads" +STR_OPDS_FILENAME_FORMAT: "Formato do nome do ficheiro" +STR_FMT_AUTHOR_TITLE: "Autor - Título" +STR_FMT_TITLE: "Título" +STR_FMT_TITLE_AUTHOR: "Título - Autor" +STR_AUTO_TURN_ENABLED: "Virar página automático ativado: " +STR_AUTO_TURN_PAGES_PER_MIN: "Virar página automático (Páginas por minuto)" +STR_MANAGE_FONTS: "Gerir tipos de letra" +STR_FONT_BROWSER: "Navegador de tipos de letra" +STR_LOADING_FONT_LIST: "A carregar a lista de tipos de letra..." +STR_NO_FONTS_AVAILABLE: "Nenhum tipo de letra disponível" +STR_FONT_INSTALLED: "Tipo de letra instalado!" +STR_FONT_INSTALL_FAILED: "Falha na instalação do tipo de letra" +STR_INSTALLED: "Instalado" +STR_DOWNLOAD_ALL: "Transferir tudo" +STR_UPDATE_ALL: "Atualizar tudo" +STR_UPDATE_AVAILABLE: "Atualizar" +STR_CRASH_TITLE: "Falha do sistema" +STR_CRASH_DESCRIPTION: "Um relatório detalhado foi guardado em crash_report.txt. Por favor, inclua este ficheiro no seu relatório de erro." +STR_CRASH_REASON: "Motivo da falha:" +STR_CRASH_NO_REASON: "(Nenhum motivo foi registado)" +STR_TILT_PAGE_TURN: "Virar página por inclinação" +STR_KB_HINT_MOVE_CURSOR: "Prima ESQUERDA ou DIREITA para mover o cursor" +STR_KB_HINT_RETURN_CURSOR: "Prima ESQUERDA para regressar à posição do cursor" +STR_KB_HINT_HIDE_PASSWORD: "Mantenha premido DIREITA e depois prima [***] para ocultar a palavra-passe" +STR_KB_HINT_SHOW_PASSWORD: "Mantenha premido DIREITA e depois prima [abc] para mostrar a palavra-passe" +STR_KB_HINT_TOGGLE_HIDE_PASSWORD: "Prima [***] para ocultar a palavra-passe" +STR_KB_HINT_TOGGLE_SHOW_PASSWORD: "Prima [abc] para mostrar a palavra-passe" +STR_KB_HINT_EDIT_ENTRY: "Mantenha premido CIMA para editar a entrada" +STR_KB_TIPS: "Dicas:" +STR_KB_HINT_RETURN_KEYBOARD: "Prima BAIXO para regressar ao teclado" +STR_KB_HINT_EXIT_URL_MODE: "Prima ABC para sair do modo URL" +STR_KB_HINT_CLEAR_TEXT: "Mantenha premido DEL para limpar todo o texto" +STR_KB_HINT_SECONDARY_CHAR: "Mantenha premido SELECT para o carácter secundário" +STR_KB_HINT_UPPER_SECONDARY: "Mantenha premido SELECT para MAIÚSCULAS ou carácter secundário" +STR_KB_HINT_LOWER_SECONDARY: "Mantenha premido SELECT para minúsculas ou carácter secundário" +STR_KB_HINT_URL_SNIPPETS: "Prima URL para atalhos" +STR_SD_FIRMWARE_UPDATE: "Atualização de firmware via cartão SD" +STR_SELECT_FIRMWARE_FILE: "Selecione o ficheiro de firmware (.bin)" +STR_NO_BIN_FILES: "Nenhum ficheiro .bin encontrado" +STR_VALIDATING_FIRMWARE: "A validar o firmware..." +STR_INVALID_FIRMWARE: "Ficheiro de firmware inválido" +STR_FIRMWARE_TOO_LARGE: "Firmware demasiado grande para a partição" +STR_FIRMWARE_TOO_SMALL: "Ficheiro de firmware demasiado pequeno" +STR_FIRMWARE_UPDATE_PROMPT: "Atualizar firmware?" +STR_FIRMWARE_FILE_OPEN_FAILED: "Não foi possível abrir o ficheiro" +STR_FIRMWARE_WRITE_FAILED: "Falha na gravação do firmware" +STR_FIRMWARE_UPDATE_DO_NOT_POWER_OFF: "Não desligue o dispositivo!" +STR_RECOVERY_MODE: "Modo de Recuperação" +STR_RECOVERY_MODE_HINT: "Coloque o ficheiro firmware.bin na raiz do cartão SD e selecione-o" +STR_ADD_HIDDEN_NETWORK: "Adicionar rede oculta..." +STR_ENTER_WIFI_SSID: "Introduza o nome da rede (SSID)" diff --git a/lib/I18n/translations/romanian.yaml b/lib/I18n/translations/romanian.yaml index ed2c4eb563..fb9cae5174 100644 --- a/lib/I18n/translations/romanian.yaml +++ b/lib/I18n/translations/romanian.yaml @@ -72,6 +72,7 @@ STR_IMAGES_SUPPRESS: "Suprimare" STR_SHORT_PWR_BTN: "Apăsare scurtă întrerupător" STR_ORIENTATION: "Orientare lectură" STR_SIDE_BTN_LAYOUT: "Aspect butoane laterale (lectură)" +STR_TOUCH_READER_CONTROLS: "Comenzi tactile cititor" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Orientare butoane frontale" STR_LONG_PRESS_BEHAVIOR: "Comportament buton apăsat lung" STR_LONG_PRESS_BEHAVIOR_OFF: "Dezactivat" @@ -97,6 +98,7 @@ STR_USERNAME: "Utilizator" STR_PASSWORD: "Parolă" STR_SYNC_SERVER_URL: "URL server sincronizare" STR_DOCUMENT_MATCHING: "Corespondenţă document" +STR_SEND_METADATA: "Trimite metadate document" STR_AUTHENTICATE: "Autentificare" STR_KOREADER_USERNAME: "Nume utilizator KOReader" STR_KOREADER_PASSWORD: "Parolă KOReader" @@ -299,7 +301,14 @@ STR_SLEEP_TIMER_VALUE_FORMAT: "%u min" STR_SLEEP_NEVER: "Niciodată" STR_STEP_HINT_FRONT: "Butoane frontale:" STR_STEP_HINT_SIDE: "Butoane laterale:" +STR_OPDS_DOWNLOAD_FOLDER: "Dosar descărcări" +STR_OPDS_FILENAME_FORMAT: "Format nume fișier" +STR_FMT_AUTHOR_TITLE: "Autor - Titlu" +STR_FMT_TITLE_AUTHOR: "Titlu - Autor" +STR_FMT_TITLE: "Titlu" STR_SCREENSHOT_BUTTON: "Captură ecran" STR_AUTO_TURN_ENABLED: "Răsfoire automată: " STR_AUTO_TURN_PAGES_PER_MIN: "Pagini pe minut" STR_TILT_PAGE_TURN: "Întoarcere pagină prin înclinare" +STR_ADD_HIDDEN_NETWORK: "Adaugă rețea ascunsă..." +STR_ENTER_WIFI_SSID: "Introduceți numele rețelei (SSID)" diff --git a/lib/I18n/translations/russian.yaml b/lib/I18n/translations/russian.yaml index 1863d8c734..ab6cb88eb8 100644 --- a/lib/I18n/translations/russian.yaml +++ b/lib/I18n/translations/russian.yaml @@ -73,6 +73,7 @@ STR_IMAGES_SUPPRESS: "Скрыть" STR_SHORT_PWR_BTN: "Короткое нажатие PWR" STR_ORIENTATION: "Ориентация чтения" STR_SIDE_BTN_LAYOUT: "Боковые кнопки" +STR_TOUCH_READER_CONTROLS: "Сенсорное управление чтением" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Ориентировать передние кнопки" STR_LONG_PRESS_BEHAVIOR: "Долгое нажатие" STR_LONG_PRESS_BEHAVIOR_OFF: "Ничего" @@ -99,6 +100,7 @@ STR_USERNAME: "Имя пользователя" STR_PASSWORD: "Пароль" STR_SYNC_SERVER_URL: "URL сервера синхронизации" STR_DOCUMENT_MATCHING: "Сопоставление документов" +STR_SEND_METADATA: "Отправлять метаданные" STR_AUTHENTICATE: "Авторизация" STR_KOREADER_USERNAME: "Имя пользователя KOReader" STR_KOREADER_PASSWORD: "Пароль KOReader" @@ -338,6 +340,11 @@ STR_SERVER_NAME: "Имя сервера" STR_NO_SERVERS: "Нет настроенных серверов OPDS" STR_DELETE_SERVER: "Удалить сервер" STR_OPDS_SERVERS: "Серверы OPDS" +STR_OPDS_DOWNLOAD_FOLDER: "Папка загрузок" +STR_OPDS_FILENAME_FORMAT: "Формат имени файла" +STR_FMT_AUTHOR_TITLE: "Автор - Название" +STR_FMT_TITLE_AUTHOR: "Название - Автор" +STR_FMT_TITLE: "Название" STR_AUTO_TURN_ENABLED: "Автоперелистывание: " STR_AUTO_TURN_PAGES_PER_MIN: "Автоперелистывание (стр./мин)" STR_MANAGE_FONTS: "Управление шрифтами" @@ -383,3 +390,5 @@ STR_FIRMWARE_WRITE_FAILED: "Ошибка записи прошивки" STR_FIRMWARE_UPDATE_DO_NOT_POWER_OFF: "Не выключайте питание!" STR_RECOVERY_MODE: "Режим восстановления" STR_RECOVERY_MODE_HINT: "Поместите firmware.bin в корень SD-карты и выберите его" +STR_ADD_HIDDEN_NETWORK: "Добавить скрытую сеть..." +STR_ENTER_WIFI_SSID: "Введите имя сети (SSID)" diff --git a/lib/I18n/translations/slovak.yaml b/lib/I18n/translations/slovak.yaml index 700298665d..f5644b3962 100644 --- a/lib/I18n/translations/slovak.yaml +++ b/lib/I18n/translations/slovak.yaml @@ -72,7 +72,8 @@ STR_IMAGES_PLACEHOLDER: "Rezervované miesto" STR_IMAGES_SUPPRESS: "Potlačiť" STR_SHORT_PWR_BTN: "Krátke stlačenie tlačidla napájania" STR_ORIENTATION: "Orientácia čítania" -STR_SIDE_BTN_LAYOUT: "Rozloženie bočných tlačidiel (čítačka)" +STR_SIDE_BTN_LAYOUT: "Rozloženie bočných tlačidiel (čítačka)" +STR_TOUCH_READER_CONTROLS: "Dotykové ovládanie čítačky" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Prispôsobiť predné tlačidlá orientácii" STR_LONG_PRESS_BEHAVIOR: "Správanie pri dlhom stlačení tlačidla" STR_LONG_PRESS_BEHAVIOR_OFF: "VYP" @@ -97,7 +98,8 @@ STR_CLEAR_READING_CACHE: "Vymazať vyrovnávaciu pamäť čítania" STR_USERNAME: "Používateľské meno" STR_PASSWORD: "Heslo" STR_SYNC_SERVER_URL: "URL synchronizačného servera" -STR_DOCUMENT_MATCHING: "Párovanie dokumentov" +STR_DOCUMENT_MATCHING: "Párovanie dokumentov" +STR_SEND_METADATA: "Odosielať metadáta dokumentu" STR_AUTHENTICATE: "Overiť" STR_KOREADER_USERNAME: "Používateľské meno KOReader" STR_KOREADER_PASSWORD: "Heslo KOReader" @@ -327,13 +329,18 @@ STR_LINK: "[link]" STR_SCREENSHOT_BUTTON: "Urobiť snímku obrazovky" STR_SLEEP_TIMER_VALUE_FORMAT: "%u min" STR_SLEEP_NEVER: "Nikdy" -STR_STEP_HINT_FRONT: "Predné tlačidlá:" -STR_STEP_HINT_SIDE: "Bočné tlačidlá:" +STR_STEP_HINT_FRONT: "Predné tlačidlá:" +STR_STEP_HINT_SIDE: "Bočné tlačidlá:" STR_ADD_SERVER: "Pridať server" STR_SERVER_NAME: "Názov servera" STR_NO_SERVERS: "Nie sú nakonfigurované žiadne OPDS servery" STR_DELETE_SERVER: "Odstrániť server" STR_OPDS_SERVERS: "OPDS servery" +STR_OPDS_DOWNLOAD_FOLDER: "Priečinok sťahovania" +STR_OPDS_FILENAME_FORMAT: "Formát názvu súboru" +STR_FMT_AUTHOR_TITLE: "Autor - Názov" +STR_FMT_TITLE_AUTHOR: "Názov - Autor" +STR_FMT_TITLE: "Názov" STR_AUTO_TURN_ENABLED: "Automatické otáčanie strán zapnuté: " STR_AUTO_TURN_PAGES_PER_MIN: "Automatické otáčanie (strán za minútu)" STR_MANAGE_FONTS: "Správa písiem" @@ -379,3 +386,5 @@ STR_FIRMWARE_WRITE_FAILED: "Zápis firmvéru zlyhal" STR_FIRMWARE_UPDATE_DO_NOT_POWER_OFF: "Nevypínajte zariadenie!" STR_RECOVERY_MODE: "Režim obnovenia" STR_RECOVERY_MODE_HINT: "Umiestnite firmware.bin do koreňového adresára SD karty a vyberte ho" +STR_ADD_HIDDEN_NETWORK: "Pridať skrytú sieť..." +STR_ENTER_WIFI_SSID: "Zadajte názov siete (SSID)" diff --git a/lib/I18n/translations/slovenian.yaml b/lib/I18n/translations/slovenian.yaml index 41e6457629..bf38ebf7d0 100644 --- a/lib/I18n/translations/slovenian.yaml +++ b/lib/I18n/translations/slovenian.yaml @@ -72,6 +72,7 @@ STR_IMAGES_SUPPRESS: "Zatdi" STR_SHORT_PWR_BTN: "Kratek pritisk na gumb za vklop" STR_ORIENTATION: "Orientacija branja" STR_SIDE_BTN_LAYOUT: "Razpored stranskih gumbov" +STR_TOUCH_READER_CONTROLS: "Upravljanje bralnika na dotik" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Usmeri sprednje gumbe" STR_LONG_PRESS_SKIP: "Dolgi pritisk za preskok poglavja" STR_FONT_PREVIEW_TEXT: "V kožuščku hudobnega fanta stopiclja mizar" @@ -94,6 +95,7 @@ STR_USERNAME: "Uporabniško ime" STR_PASSWORD: "Geslo" STR_SYNC_SERVER_URL: "URL strežnika za sinhronizacijo" STR_DOCUMENT_MATCHING: "Ujemanje dokumentov" +STR_SEND_METADATA: "Pošlji metapodatke dokumenta" STR_AUTHENTICATE: "Avtentikacija" STR_KOREADER_USERNAME: "KOReader uporabnik" STR_KOREADER_PASSWORD: "KOReader geslo" @@ -296,7 +298,14 @@ STR_SLEEP_TIMER_VALUE_FORMAT: "%u min" STR_SLEEP_NEVER: "Nikoli" STR_STEP_HINT_FRONT: "Sprednji gumbi:" STR_STEP_HINT_SIDE: "Stranski gumbi:" +STR_OPDS_DOWNLOAD_FOLDER: "Mapa za prenose" +STR_OPDS_FILENAME_FORMAT: "Oblika imena datoteke" +STR_FMT_AUTHOR_TITLE: "Avtor - Naslov" +STR_FMT_TITLE_AUTHOR: "Naslov - Avtor" +STR_FMT_TITLE: "Naslov" STR_SCREENSHOT_BUTTON: "Naredi posnetek zaslona" STR_AUTO_TURN_ENABLED: "Samodejno obračanje: " STR_AUTO_TURN_PAGES_PER_MIN: "Samodejno obračanje (strani na minuto)" STR_TILT_PAGE_TURN: "Obračanje s priklonom" +STR_ADD_HIDDEN_NETWORK: "Dodaj skrito omrežje..." +STR_ENTER_WIFI_SSID: "Vnesite ime omrežja (SSID)" diff --git a/lib/I18n/translations/spanish.yaml b/lib/I18n/translations/spanish.yaml index dfc55d5c07..a258075f07 100644 --- a/lib/I18n/translations/spanish.yaml +++ b/lib/I18n/translations/spanish.yaml @@ -18,6 +18,7 @@ STR_NO_CHAPTERS: "Sin capítulos" STR_END_OF_BOOK: "Fin del libro" STR_EMPTY_CHAPTER: "Capítulo vacío" STR_INDEXING: "Indexando" +STR_INDEX_FAILED: "No se pudo indexar: libro no válido" STR_MEMORY_ERROR: "Error de memoria" STR_PAGE_LOAD_ERROR: "Error al cargar la página" STR_EMPTY_FILE: "Archivo vacío" @@ -28,7 +29,10 @@ STR_WIFI_NETWORKS: "Redes Wi-Fi" STR_NO_NETWORKS: "No hay redes disponibles" STR_NETWORKS_FOUND: "%zu red(es) encontrada(s)" STR_SCANNING: "Buscando..." +STR_FINDING_SAVED_WIFI: "Buscando redes Wi-Fi guardadas..." STR_CONNECTING: "Conectando..." +STR_CONNECTING_SAVED_WIFI: "Conectando a una red Wi-Fi guardada..." +STR_SHOW_NETWORKS: "Mostrar" STR_CONNECTED: "¡Conectado!" STR_CONNECTION_FAILED: "Error de conexión" STR_FORGET_NETWORK: "¿Olvidar la red?" @@ -69,9 +73,12 @@ STR_IMAGES: "Imágenes" STR_IMAGES_DISPLAY: "Mostrar" STR_IMAGES_PLACEHOLDER: "Reemplazar" STR_IMAGES_SUPPRESS: "Ocultar" +STR_EOB_HOME: "Inicio" +STR_EOB_CONTINUE_WITH: "Continuar con" STR_SHORT_PWR_BTN: "Toque corto del encendido" STR_ORIENTATION: "Orientación" STR_SIDE_BTN_LAYOUT: "Función botones laterales (lector)" +STR_TOUCH_READER_CONTROLS: "Controles táctiles del lector" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Orientar botones frontales" STR_LONG_PRESS_BEHAVIOR: "Al mantener pulsado un botón" STR_LONG_PRESS_BEHAVIOR_OFF: "No hacer nada" @@ -98,6 +105,7 @@ STR_USERNAME: "Usuario" STR_PASSWORD: "Contraseña" STR_SYNC_SERVER_URL: "URL del servidor de sinc." STR_DOCUMENT_MATCHING: "Coincidencia de doc." +STR_SEND_METADATA: "Enviar metadatos doc." STR_AUTHENTICATE: "Autenticar" STR_KOREADER_USERNAME: "Usuario de KOReader" STR_KOREADER_PASSWORD: "Contraseña de KOReader" @@ -338,6 +346,11 @@ STR_SERVER_NAME: "Nombre de servidor" STR_NO_SERVERS: "No se configuraron servidores OPDS" STR_DELETE_SERVER: "Borrar servidor" STR_OPDS_SERVERS: "Servidores OPDS" +STR_OPDS_DOWNLOAD_FOLDER: "Carpeta de descargas" +STR_OPDS_FILENAME_FORMAT: "Formato del nombre de archivo" +STR_FMT_AUTHOR_TITLE: "Autor - Título" +STR_FMT_TITLE_AUTHOR: "Título - Autor" +STR_FMT_TITLE: "Título" STR_AUTO_TURN_ENABLED: "Avance activado: " STR_AUTO_TURN_PAGES_PER_MIN: "Avance auto. (pág./min)" STR_MANAGE_FONTS: "Gestionar tipografías" @@ -383,3 +396,5 @@ STR_FIRMWARE_WRITE_FAILED: "Falló la escritura del firmware" STR_FIRMWARE_UPDATE_DO_NOT_POWER_OFF: "¡No apague el dispositivo!" STR_RECOVERY_MODE: "Modo de recuperación" STR_RECOVERY_MODE_HINT: "Ponga firmware.bin en la raíz de la tarj. SD y selecciónelo" +STR_ADD_HIDDEN_NETWORK: "Añadir red oculta..." +STR_ENTER_WIFI_SSID: "Introduce el nombre de la red (SSID)" diff --git a/lib/I18n/translations/swedish.yaml b/lib/I18n/translations/swedish.yaml index ab2083bd98..0198666b28 100644 --- a/lib/I18n/translations/swedish.yaml +++ b/lib/I18n/translations/swedish.yaml @@ -10,6 +10,7 @@ STR_BROWSE_FILES: "Bläddra filer…" STR_FILE_TRANSFER: "Filöverföring" STR_SETTINGS_TITLE: "Inställningar" STR_CONTINUE_READING: "Fortsätt läsa" +STR_RESUME: "Återuppta" STR_NO_OPEN_BOOK: "Ingen öppen bok" STR_START_READING: "Börja läsa nedan" STR_NO_FILES_FOUND: "Inga filer hittades" @@ -18,17 +19,27 @@ STR_NO_CHAPTERS: "Inga kapitel" STR_END_OF_BOOK: "Slutet på boken" STR_EMPTY_CHAPTER: "Tomt kapitel" STR_INDEXING: "Indexerar" +STR_INDEX_FAILED: "Misslyckades att indexera - ogiltig bok" STR_MEMORY_ERROR: "Minnesfel" STR_PAGE_LOAD_ERROR: "Sidladdningsfel" STR_EMPTY_FILE: "Tom fil" STR_OUT_OF_BOUNDS: "Utanför gränserna" STR_LOADING: "Laddar…" STR_LOADING_POPUP: "Laddar" +STR_LOOKUP: "Slå upp" +STR_DICT_LOOKING_UP: "Slår upp..." +STR_DICT_INDEXING: "Indexerar ordbok..." +STR_DICT_NOT_FOUND: "Hittades inte" +STR_DICT_NO_DICT_SET: "Ingen ordbok angiven" +STR_DICT_ERROR: "Ordboksfel" STR_WIFI_NETWORKS: "Trådlösa nätverk" STR_NO_NETWORKS: "Inga nätverk funna" STR_NETWORKS_FOUND: "%zu nätverk funna" STR_SCANNING: "Scannar…" +STR_FINDING_SAVED_WIFI: "Hittar sparade Wi-Fi..." STR_CONNECTING: "Ansluter…" +STR_CONNECTING_SAVED_WIFI: "Ansluter till sparat Wi-Fi..." +STR_SHOW_NETWORKS: "Visa" STR_CONNECTED: "Ansluten!" STR_CONNECTION_FAILED: "Anslutning misslyckades" STR_FORGET_NETWORK: "Glöm nätverk?" @@ -49,6 +60,8 @@ STR_NETWORK_LEGEND: "* = Krypterad | + = Sparad" STR_MAC_ADDRESS: "MAC-adress:" STR_CHECKING_WIFI: "Kontrollerar trådlöst nätverk…" STR_ENTER_WIFI_PASSWORD: "Skriv in Wi-Fi-lösenord" +STR_ADD_HIDDEN_NETWORK: "Lägg till dolt nätverk..." +STR_ENTER_WIFI_SSID: "Ange nätverksnamn (SSID)" STR_TO_PREFIX: "till " STR_CALIBRE_RECEIVING: "Tar emot:" STR_CALIBRE_RECEIVED: "Mottaget:" @@ -61,7 +74,7 @@ STR_CAT_READER: "Läsare" STR_CAT_CONTROLS: "Kontroller" STR_CAT_SYSTEM: "System" STR_SLEEP_SCREEN: "Viloskärm" -STR_SEAMLESS_SLEEP: "Sida som viloskärm" +STR_QUICK_RESUME_TIMEOUT: "Snabb återupptagning efter timeout" STR_SLEEP_COVER_MODE: "Viloskärmens omslagsläge" STR_HIDE_BATTERY: "Dölj batteriprocent" STR_EXTRA_SPACING: "Extra paragrafmellanrum" @@ -70,14 +83,18 @@ STR_IMAGES: "Bilder" STR_IMAGES_DISPLAY: "Visa" STR_IMAGES_PLACEHOLDER: "Platshållare" STR_IMAGES_SUPPRESS: "Dölj" +STR_EOB_HOME: "Hem" +STR_EOB_CONTINUE_WITH: "Fortsätt med" STR_SHORT_PWR_BTN: "Kort strömknappsklick" STR_ORIENTATION: "Läsrikting" STR_SIDE_BTN_LAYOUT: "Sidoknappslayout (Läsare)" +STR_TOUCH_READER_CONTROLS: "Pekkontroller i läsaren" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Rikta främre knappar" STR_LONG_PRESS_BEHAVIOR: "Beteende vid lång knapptryckning" STR_LONG_PRESS_BEHAVIOR_OFF: "AV" STR_LONG_PRESS_BEHAVIOR_SKIP: "Hoppa över kapitel" STR_LONG_PRESS_BEHAVIOR_ORIENTATION: "Ändra orientering" +STR_LONG_PRESS_MENU: "Långtrycksmeny" STR_FONT_PREVIEW_TEXT: "Flygande bäckasiner söka hwila på mjuka tuvor" STR_FONT_FAMILY: "Eboksläsarens typsnittsfamilj" STR_FONT_SIZE: "Eboksläsarens typsnittsstorlek" @@ -98,7 +115,16 @@ STR_USERNAME: "Användarnamn" STR_PASSWORD: "Lösenord" STR_SYNC_SERVER_URL: "Synkronisera serveradress" STR_DOCUMENT_MATCHING: "Dokumentmatchning" +STR_SEND_METADATA: "Skicka dokumentmetadata" +STR_SYNC_BEHAVIOR: "Synkroniseringsbeteende" +STR_ASK_EVERY_TIME: "Fråga varje gång" +STR_SMART_SYNC: "Smart synkronisering" STR_AUTHENTICATE: "Autentisera " +STR_SIGN_UP: "Registrera dig" +STR_CREATING_ACCOUNT: "Skapar konto..." +STR_ACCOUNT_CREATED: "Konto skapat" +STR_SIGNUP_FAILED: "Registreringen misslyckades" +STR_USERNAME_TAKEN: "Användarnamnet är redan registrerat" STR_KOREADER_USERNAME: "KOReader användarnamn" STR_KOREADER_PASSWORD: "KOReader lösenord" STR_FILENAME: "Filnamn" @@ -142,6 +168,9 @@ STR_ORIENTATION_INVERTED: "Porträtt 180°" STR_LANDSCAPE_CCW: "Landskap moturs" STR_PREV_NEXT: "Förra/Nästa" STR_NEXT_PREV: "Nästa/Förra" +STR_KOSYNC: "KOSync" +STR_BOOKMARK_OPTION: "Bokmärke" +STR_DICTIONARY: "Ordbok" STR_DISABLED: "Inaktiverad" STR_NOTO_SERIF: "Noto Serif" STR_NOTO_SANS: "Noto Sans" @@ -255,7 +284,6 @@ STR_THEME_LYRA: "Lyra" STR_THEME_ROUNDEDRAFF: "RoundedRaff" STR_THEME_LYRA_EXTENDED: "Lyra utökad" STR_SUNLIGHT_FADING_FIX: "Fix för solskensmattning" -STR_QUICK_RESUME_TIMEOUT: "Snabb återupptagning efter timeout" STR_REMAP_FRONT_BUTTONS: "Ändra frontknappar" STR_BOOKMARKS: "Bokmärken" STR_BOOKMARK_ADDED: "Bokmärke tillagt." @@ -313,6 +341,7 @@ STR_UPLOAD_LOCAL: "Ladda upp lokala framsteg" STR_NO_REMOTE_MSG: "Inga fjärrframsteg funna" STR_UPLOAD_PROMPT: "Ladda upp nuvarande position?" STR_UPLOAD_SUCCESS: "Framsteg uppladdade!" +STR_ALREADY_SYNCED: "Redan synkroniserad" STR_SYNC_FAILED_MSG: "Synkronisering misslyckades" STR_SAVE_PROGRESS_FAILED: "Kunde inte spara framsteg" STR_SECTION_PREFIX: "Sektion" @@ -321,20 +350,28 @@ STR_BOOK_S_STYLE: "Bokstil" STR_EMBEDDED_STYLE: "Inbäddad stil" STR_FOCUS_READING: "Fokusläsning" STR_OPDS_SERVER_URL: "OPDS-serveradress" +STR_PWR_BTN_FOOTNOTE_BACK: "Snabbåtergång från fotnoter" +STR_BACK_SHORT_TO_FILE_BROWSER: "Snabb tillbaka till filläsaren" STR_SET_SLEEP_COVER: "Ställ in omslag" STR_FOOTNOTES: "Fotnoter" STR_NO_FOOTNOTES: "Inga fotnoter på den här sidan" STR_LINK: "[länk]" +STR_SCREENSHOT_BUTTON: "Ta en skärmdump" STR_SLEEP_TIMER_VALUE_FORMAT: "%u min" STR_SLEEP_NEVER: "Aldrig" STR_STEP_HINT_FRONT: "Framknappar:" STR_STEP_HINT_SIDE: "Sidoknappar:" -STR_SCREENSHOT_BUTTON: "Ta en skärmdump" STR_ADD_SERVER: "Lägg till server" STR_SERVER_NAME: "Servernamn" STR_NO_SERVERS: "Inga OPDS-servrar konfigurerade" STR_DELETE_SERVER: "Ta bort server" STR_OPDS_SERVERS: "OPDS-servrar" +STR_OPDS_DOWNLOAD_FOLDER: "Hämtningsmapp" +STR_OPDS_FILENAME_FORMAT: "Filnamnsformat" +STR_FMT_AUTHOR_TITLE: "Författare - Titel" +STR_FMT_TITLE_AUTHOR: "Titel - Författare" +STR_FMT_TITLE: "Titel" +STR_OPDS_SD_ROOT: "SD-rot" STR_AUTO_TURN_ENABLED: "Automatisk vändning aktiverad: " STR_AUTO_TURN_PAGES_PER_MIN: "Automatisk vändning (sidor per minut)" STR_MANAGE_FONTS: "Hantera teckensnitt" diff --git a/lib/I18n/translations/turkish.yaml b/lib/I18n/translations/turkish.yaml index 863ba643c0..efe2075fdc 100644 --- a/lib/I18n/translations/turkish.yaml +++ b/lib/I18n/translations/turkish.yaml @@ -67,11 +67,12 @@ STR_TEXT_AA: "Metin Yumuşatma (AA)" STR_SHORT_PWR_BTN: "Kısa Güç Tuşu Tıklaması" STR_ORIENTATION: "Okuma Yönü" STR_SIDE_BTN_LAYOUT: "Yan Tuş Dizilimi (okuyucu)" +STR_TOUCH_READER_CONTROLS: "Dokunmatik okuyucu kontrolleri" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Ön düğmeleri yönlendir" -STR_LONG_PRESS_BEHAVIOR: "Long-press button behavior" -STR_LONG_PRESS_BEHAVIOR_OFF: "OFF" -STR_LONG_PRESS_BEHAVIOR_SKIP: "Chapter skip" -STR_LONG_PRESS_BEHAVIOR_ORIENTATION: "Orientation change" +STR_LONG_PRESS_BEHAVIOR: "Uzun basma tuş davranışı" +STR_LONG_PRESS_BEHAVIOR_OFF: "KAPALI" +STR_LONG_PRESS_BEHAVIOR_SKIP: "Bölüm atlama" +STR_LONG_PRESS_BEHAVIOR_ORIENTATION: "Yön değiştirme" STR_FONT_PREVIEW_TEXT: "Pijamalı hasta yağız şoföre çabucak güvendi" STR_FONT_FAMILY: "Okuyucu Yazı Tipi Ailesi" STR_FONT_SIZE: "Arayüz Yazı Boyutu" @@ -92,6 +93,7 @@ STR_USERNAME: "Kullanıcı Adı" STR_PASSWORD: "Şifre" STR_SYNC_SERVER_URL: "Senkronizasyon Sunucu Adresi" STR_DOCUMENT_MATCHING: "Belge Eşleştirme" +STR_SEND_METADATA: "Belge üst verisi gönder" STR_AUTHENTICATE: "Kimlik Doğrula" STR_KOREADER_USERNAME: "KOReader Kullanıcı Adı" STR_KOREADER_PASSWORD: "KOReader Şifresi" @@ -290,6 +292,11 @@ STR_SLEEP_TIMER_VALUE_FORMAT: "%u dak" STR_SLEEP_NEVER: "Asla" STR_STEP_HINT_FRONT: "Ön tuşlar:" STR_STEP_HINT_SIDE: "Yan tuşlar:" +STR_OPDS_DOWNLOAD_FOLDER: "İndirme klasörü" +STR_OPDS_FILENAME_FORMAT: "Dosya adı biçimi" +STR_FMT_AUTHOR_TITLE: "Yazar - Başlık" +STR_FMT_TITLE_AUTHOR: "Başlık - Yazar" +STR_FMT_TITLE: "Başlık" STR_NO_FILES_FOUND: "Dosya bulunamadı" STR_NO_FOOTNOTES: "Bu sayfada dipnot yok" STR_PREVIEW: "Önizleme" @@ -303,3 +310,91 @@ STR_SELECTED: "Seçili" STR_SHOW: "Göster" STR_TITLE: "Başlık" STR_TILT_PAGE_TURN: "Eğerek sayfa çevirme" +STR_ADD_HIDDEN_NETWORK: "Gizli ağ ekle..." +STR_ENTER_WIFI_SSID: "Ağ adını girin (SSID)" +STR_ADD_SERVER: "Sunucu Ekle" +STR_BOOKMARKS: "Yer İmleri" +STR_BOOKMARK_ADDED: "Yer imi eklendi." +STR_BOOKMARK_OPTION: "Yer İmi" +STR_BOTTOM: "Alt" +STR_CLOCK: "Saat" +STR_CLOCK_FORMAT: "Saat Biçimi" +STR_CLOCK_FORMAT_12H: "12 saat" +STR_CLOCK_FORMAT_24H: "24 saat" +STR_CLOCK_SYNC: "Saati Eşitle" +STR_CLOCK_SYNCED: "Saat Eşitlendi" +STR_CLOCK_SYNCING: "NTP'den eşitleniyor..." +STR_CLOCK_SYNC_FAIL: "Eşitleme başarısız" +STR_CLOCK_SYNC_NOW: "Saati şimdi eşitle" +STR_CLOCK_SYNC_NO_WIFI: "Wi-Fi bağlı değil" +STR_CLOCK_SYNC_NO_WIFI_HINT: "Önce Wi-Fi'ye bağlanın, sonra tekrar deneyin." +STR_CLOCK_SYNC_OK: "Saat eşitlendi" +STR_CLOCK_UTC_OFFSET: "Saat UTC Farkı" +STR_CONFIRM_DELETE_BOOKMARK: "Bu yer imi silinsin mi?" +STR_CONNECTING_SAVED_WIFI: "Kayıtlı Wi-Fi'ye bağlanılıyor..." +STR_CRASH_DESCRIPTION: "Ayrıntılı rapor crash_report.txt dosyasına kaydedildi. Lütfen hata bildiriminize bu dosyayı ekleyin." +STR_CRASH_NO_REASON: "(Neden kaydedilmedi)" +STR_CRASH_REASON: "Çökme nedeni:" +STR_CRASH_TITLE: "Sistem Çökmesi" +STR_CURRENT_TIME: "Şu anki saat:" +STR_DELETE_SERVER: "Sunucuyu Sil" +STR_DISABLED: "Devre dışı" +STR_DOWNLOAD_ALL: "Tümünü İndir" +STR_EOB_CONTINUE_WITH: "Şununla devam et" +STR_EOB_HOME: "Ana Ekran" +STR_FINDING_SAVED_WIFI: "Kayıtlı Wi-Fi aranıyor..." +STR_FIRMWARE_FILE_OPEN_FAILED: "Dosya açılamıyor" +STR_FIRMWARE_TOO_LARGE: "Firmware, bölümlemeye sığmıyor" +STR_FIRMWARE_TOO_SMALL: "Firmware dosyası çok küçük" +STR_FIRMWARE_UPDATE_DO_NOT_POWER_OFF: "Cihazı kapatmayın!" +STR_FIRMWARE_UPDATE_PROMPT: "Firmware güncellensin mi?" +STR_FIRMWARE_WRITE_FAILED: "Firmware yazılamadı" +STR_FONT_BROWSER: "Yazı Tipi Tarayıcısı" +STR_FONT_INSTALLED: "Yazı tipi yüklendi!" +STR_FONT_INSTALL_FAILED: "Yazı tipi yüklenemedi" +STR_FORCE_REFRESH: "Ekranı Yenile" +STR_INDEX_FAILED: "Endeksleme başarısız - geçersiz kitap" +STR_INSTALLED: "Yüklü" +STR_INVALID_FIRMWARE: "Geçersiz firmware dosyası" +STR_KB_HINT_CLEAR_TEXT: "Tüm metni silmek için DEL tuşunu basılı tutun" +STR_KB_HINT_EDIT_ENTRY: "Girdiyi düzenlemek için UP tuşunu basılı tutun" +STR_KB_HINT_EXIT_URL_MODE: "URL modundan çıkmak için ABC'ye basın" +STR_KB_HINT_HIDE_PASSWORD: "Şifreyi gizlemek için RIGHT'ı basılı tutup [***] tuşuna basın" +STR_KB_HINT_LOWER_SECONDARY: "Küçük harf veya ikincil karakter için SELECT'i basılı tutun" +STR_KB_HINT_MOVE_CURSOR: "İmleci taşımak için LEFT veya RIGHT'a basın" +STR_KB_HINT_RETURN_CURSOR: "İmleç konumuna dönmek için LEFT'e basın" +STR_KB_HINT_RETURN_KEYBOARD: "Klavyeye dönmek için DOWN'a basın" +STR_KB_HINT_SECONDARY_CHAR: "İkincil karakter için SELECT'i basılı tutun" +STR_KB_HINT_SHOW_PASSWORD: "Şifreyi göstermek için RIGHT'ı basılı tutup [abc] tuşuna basın" +STR_KB_HINT_TOGGLE_HIDE_PASSWORD: "Şifreyi gizlemek için [***] tuşuna basın" +STR_KB_HINT_TOGGLE_SHOW_PASSWORD: "Şifreyi göstermek için [abc] tuşuna basın" +STR_KB_HINT_UPPER_SECONDARY: "BÜYÜK harf veya ikincil karakter için SELECT'i basılı tutun" +STR_KB_HINT_URL_SNIPPETS: "Hazır kalıplar için URL'ye basın" +STR_KB_TIPS: "İpuçları:" +STR_KOSYNC: "KOSync" +STR_LOADING_FONT_LIST: "Yazı tipi listesi yükleniyor..." +STR_LONG_PRESS_MENU: "Uzun Basma Menüsü" +STR_MANAGE_FONTS: "Yazı Tiplerini Yönet" +STR_NEXT_FIELD: "Sonraki" +STR_NEXT_PAGE: "Sonraki Sayfa »" +STR_NO_BIN_FILES: ".bin dosyası bulunamadı" +STR_NO_FONTS_AVAILABLE: "Kullanılabilir yazı tipi yok" +STR_NO_SERVERS: "Yapılandırılmış OPDS sunucusu yok" +STR_OPDS_SERVERS: "OPDS Sunucuları" +STR_PREV_PAGE: "« Önceki Sayfa" +STR_PWR_BTN_FOOTNOTE_BACK: "Dipnottan hızlı dönüş" +STR_RECOVERY_MODE: "Kurtarma Modu" +STR_RECOVERY_MODE_HINT: "firmware.bin dosyasını SD kartın köküne koyup seçin" +STR_RESTARTING_HINT: "Yeniden başlatılıyor... Cihaz yeniden başlamazsa güç düğmesini birkaç saniye basılı tutun." +STR_SD_FIRMWARE_UPDATE: "SD Karttan Firmware Güncelleme" +STR_SEARCH: "Ara" +STR_SELECT_FIRMWARE_FILE: "Firmware dosyası seçin (.bin)" +STR_SERVER_NAME: "Sunucu Adı" +STR_SET_SLEEP_COVER: "Kapak Ayarla" +STR_SHOW_NETWORKS: "Göster" +STR_THEME_ROUNDEDRAFF: "RoundedRaff" +STR_TOP: "Üst" +STR_UPDATE_ALL: "Tümünü Güncelle" +STR_UPDATE_AVAILABLE: "Güncelle" +STR_VALIDATING_FIRMWARE: "Firmware doğrulanıyor..." +STR_XTC_STATUS_BAR: "XTC Durum Çubuğu" diff --git a/lib/I18n/translations/ukrainian.yaml b/lib/I18n/translations/ukrainian.yaml index a6873b8bdb..8a5fc38974 100644 --- a/lib/I18n/translations/ukrainian.yaml +++ b/lib/I18n/translations/ukrainian.yaml @@ -73,6 +73,7 @@ STR_IMAGES_SUPPRESS: "Приховати" STR_SHORT_PWR_BTN: "Короткий натиск кн. живл." STR_ORIENTATION: "Орієнтація читання" STR_SIDE_BTN_LAYOUT: "Схема бічних кнопок" +STR_TOUCH_READER_CONTROLS: "Сенсорне керування читанням" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Орієнтувати передні кнопки" STR_LONG_PRESS_BEHAVIOR: "Поведінка при довгому настику" STR_LONG_PRESS_BEHAVIOR_OFF: "Немає" @@ -98,6 +99,7 @@ STR_USERNAME: "Ім'я користувача" STR_PASSWORD: "Пароль" STR_SYNC_SERVER_URL: "URL для синхронізації" STR_DOCUMENT_MATCHING: "Порівняння документів" +STR_SEND_METADATA: "Надсилати метадані" STR_AUTHENTICATE: "Автентифікувати" STR_KOREADER_USERNAME: "Ім'я користувача KOReader" STR_KOREADER_PASSWORD: "Пароль KOReader" @@ -335,6 +337,11 @@ STR_SERVER_NAME: "Назва сервера" STR_NO_SERVERS: "Не налаштовано жодного сервера OPDS" STR_DELETE_SERVER: "Видалити сервер" STR_OPDS_SERVERS: "Сервери OPDS" +STR_OPDS_DOWNLOAD_FOLDER: "Папка завантажень" +STR_OPDS_FILENAME_FORMAT: "Формат імені файлу" +STR_FMT_AUTHOR_TITLE: "Автор - Назва" +STR_FMT_TITLE_AUTHOR: "Назва - Автор" +STR_FMT_TITLE: "Назва" STR_AUTO_TURN_ENABLED: "Автоперегортання увімк: " STR_AUTO_TURN_PAGES_PER_MIN: "Автоперегортання (ст/хв)" STR_MANAGE_FONTS: "Керування шрифтами" @@ -380,3 +387,5 @@ STR_FIRMWARE_WRITE_FAILED: "Помилка запису прошивки" STR_FIRMWARE_UPDATE_DO_NOT_POWER_OFF: "Не вимикайте пристрій!" STR_RECOVERY_MODE: "Режим відновлення" STR_RECOVERY_MODE_HINT: "Помістіть firmware.bin у корінь SD-карти та виберіть його" +STR_ADD_HIDDEN_NETWORK: "Додати приховану мережу..." +STR_ENTER_WIFI_SSID: "Введіть назву мережі (SSID)" diff --git a/lib/I18n/translations/valencian.yaml b/lib/I18n/translations/valencian.yaml index 9845f71ec7..9ef1160eff 100644 --- a/lib/I18n/translations/valencian.yaml +++ b/lib/I18n/translations/valencian.yaml @@ -7,7 +7,7 @@ STR_BOOTING: "ARRENCANT" STR_SLEEPING: "ENTRANT EN REPÒS" STR_ENTERING_SLEEP: "Entrant en repòs" STR_BROWSE_FILES: "Explora arxius" -STR_FILE_TRANSFER: "Transferència" +STR_FILE_TRANSFER: "Transferència d'arxius" STR_SETTINGS_TITLE: "Configuració" STR_CONTINUE_READING: "Continua llegint" STR_NO_OPEN_BOOK: "Cap llibre obert" @@ -18,6 +18,7 @@ STR_NO_CHAPTERS: "Sense capítols" STR_END_OF_BOOK: "Final del llibre" STR_EMPTY_CHAPTER: "Capítol buit" STR_INDEXING: "S'està indexant" +STR_INDEX_FAILED: "No s'ha pogut indexar: llibre no vàlid" STR_MEMORY_ERROR: "Error de memòria" STR_PAGE_LOAD_ERROR: "Error en carregar la pàgina" STR_EMPTY_FILE: "Arxiu buit" @@ -28,60 +29,66 @@ STR_WIFI_NETWORKS: "Xarxes Wi-Fi" STR_NO_NETWORKS: "No s'han trobat xarxes" STR_NETWORKS_FOUND: "%zu xarxes trobades" STR_SCANNING: "S'està escanejant..." +STR_FINDING_SAVED_WIFI: "S'estan buscant xarxes Wi-Fi guardades..." STR_CONNECTING: "S'està connectant..." +STR_CONNECTING_SAVED_WIFI: "S'està connectant a una xarxa Wi-Fi guardada..." +STR_SHOW_NETWORKS: "Mostra" STR_CONNECTED: "S'ha connectat!" STR_CONNECTION_FAILED: "Error de connexió" -STR_FORGET_NETWORK: "Voleu oblidar esta xarxa?" -STR_SAVE_PASSWORD: "Voleu guardar la contrasenya per a la pròxima vegada?" -STR_PRESS_OK_SCAN: "Premeu OK per tornar a escanejar" -STR_JOIN_NETWORK: "Uneix-te a una xarxa" +STR_FORGET_NETWORK: "Vols oblidar esta xarxa?" +STR_SAVE_PASSWORD: "Vols guardar la contrasenya per a la pròxima vegada?" +STR_PRESS_OK_SCAN: "Prem OK per tornar a escanejar" +STR_JOIN_NETWORK: "Unix-te a una xarxa" STR_CREATE_HOTSPOT: "Crea un punt d'accés" STR_JOIN_DESC: "Connecta't a una xarxa Wi-Fi existent" STR_HOTSPOT_DESC: "Crea una xarxa Wi-Fi per unir-s'hi" STR_STARTING_HOTSPOT: "S'està iniciant el punt d'accés..." STR_HOTSPOT_MODE: "Mode de punt d'accés" -STR_CONNECT_WIFI_HINT: "Connecteu el dispositiu a esta xarxa Wi-Fi" -STR_OPEN_URL_HINT: "Obriu este URL al navegador" +STR_CONNECT_WIFI_HINT: "Connecta el dispositiu a esta xarxa Wi-Fi" +STR_OPEN_URL_HINT: "Obri este URL al navegador" STR_OR_HTTP_PREFIX: "o http://" -STR_SCAN_QR_HINT: "o escanegeu el codi QR amb el telèfon:" +STR_SCAN_QR_HINT: "o escaneja el codi QR amb el telèfon:" STR_CALIBRE_WIRELESS: "Calibre sense fils" STR_NETWORK_LEGEND: "* = Encriptat | + = Guardat" STR_MAC_ADDRESS: "Adreça MAC:" STR_CHECKING_WIFI: "S'està comprovant el Wi-Fi..." -STR_ENTER_WIFI_PASSWORD: "Introduïu la contrasenya Wi-Fi" +STR_ENTER_WIFI_PASSWORD: "Introduïx la contrasenya Wi-Fi" STR_TO_PREFIX: "a " STR_CALIBRE_RECEIVING: "S'està rebent: " STR_CALIBRE_RECEIVED: "S'ha rebut: " -STR_CALIBRE_INSTRUCTION_1: "1) Instal·leu el connector CrossPoint Reader" -STR_CALIBRE_INSTRUCTION_2: "2) Estigueu a la mateixa xarxa Wi-Fi" +STR_CALIBRE_INSTRUCTION_1: "1) Instal·la el connector CrossPoint Reader" +STR_CALIBRE_INSTRUCTION_2: "2) Estigues a la mateixa xarxa Wi-Fi" STR_CALIBRE_INSTRUCTION_3: "3) A Calibre: \"Envia a un dispositiu\"" -STR_CALIBRE_INSTRUCTION_4: "\"Mantingueu esta pantalla oberta mentre s'envia\"" +STR_CALIBRE_INSTRUCTION_4: "\"Mantín esta pantalla oberta mentre s'envia\"" STR_CAT_DISPLAY: "Visualització" STR_CAT_READER: "Lector" STR_CAT_CONTROLS: "Controls" STR_CAT_SYSTEM: "Sistema" STR_SLEEP_SCREEN: "Pantalla de repòs" -STR_QUICK_RESUME_TIMEOUT: "Represa ràpida després del temps" -STR_SLEEP_COVER_MODE: "Mode de pantalla de repòs" +STR_QUICK_RESUME_TIMEOUT: "Represa ràpida per inactivitat" +STR_SLEEP_COVER_MODE: "Ajust de la portada en repòs" STR_HIDE_BATTERY: "Oculta el % de bateria" STR_EXTRA_SPACING: "Espaiat de paràgraf extra" STR_TEXT_AA: "Antialiàsing del text" STR_IMAGES: "Imatges" STR_IMAGES_DISPLAY: "Mostrar" -STR_IMAGES_PLACEHOLDER: "Text de mostra" +STR_IMAGES_PLACEHOLDER: "Text alternatiu" STR_IMAGES_SUPPRESS: "Eliminar" -STR_SHORT_PWR_BTN: "Clic curt del botó d'engegada" +STR_EOB_HOME: "Inici" +STR_EOB_CONTINUE_WITH: "Continua amb" +STR_SHORT_PWR_BTN: "Pulsació curta del botó d'engegada" STR_ORIENTATION: "Orientació de lectura" STR_SIDE_BTN_LAYOUT: "Disposició botons laterals" +STR_TOUCH_READER_CONTROLS: "Controls tàctils del lector" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Orientar botons frontals" -STR_LONG_PRESS_BEHAVIOR: "Comportament de prémer llargament el botó" +STR_LONG_PRESS_BEHAVIOR: "Acció en mantindre premut un botó" STR_LONG_PRESS_BEHAVIOR_OFF: "Desactivat" STR_LONG_PRESS_BEHAVIOR_SKIP: "Saltar capítols" STR_LONG_PRESS_BEHAVIOR_ORIENTATION: "Canvi d'orientació" STR_LONG_PRESS_MENU: "Funció de pulsació llarga" STR_FONT_PREVIEW_TEXT: "Jove xef, porti whisky amb quinze glaçons d'hidrogen, coi!" STR_FONT_FAMILY: "Família de fonts" -STR_FONT_SIZE: "Grandària de la lletra (UI)" +STR_FONT_SIZE: "Cos de lletra del lector" STR_LINE_SPACING: "Interlineat del lector" STR_SCREEN_MARGIN: "Marge de pantalla del lector" STR_PARA_ALIGNMENT: "Alineació de paràgrafs del lector" @@ -94,21 +101,22 @@ STR_STEP_HINT_SIDE: "Botons laterals:" STR_SHOW_HIDDEN_FILES: "Mostra arxius ocults" STR_REMOVE_READ_FROM_RECENTS: "Esborra els llibres llegits de la llista de recents" STR_MOVE_FINISHED_TO_READ: "Mou els llibres acabats a la carpeta Read" -STR_REFRESH_FREQ: "Freqüència de refresc" +STR_REFRESH_FREQ: "Freqüència d'actualització" STR_KOREADER_SYNC: "Sincronització del KOReader" STR_CHECK_UPDATES: "Comprova si hi ha actualitzacions" -STR_LANGUAGE: "Idioma" +STR_LANGUAGE: "Llengua" STR_CLEAR_READING_CACHE: "Esborra la memòria cau de lectura" STR_USERNAME: "Nom d'usuari" STR_PASSWORD: "Contrasenya" STR_SYNC_SERVER_URL: "URL del servidor de sincronització" STR_DOCUMENT_MATCHING: "Coincidència de documents" +STR_SEND_METADATA: "Envia metadades del document" STR_AUTHENTICATE: "Autentica" STR_KOREADER_USERNAME: "Nom d'usuari del KOReader" STR_KOREADER_PASSWORD: "Contrasenya del KOReader" STR_FILENAME: "Nom d'arxiu" STR_BINARY: "Binari" -STR_SET_CREDENTIALS_FIRST: "Estableix les credencials primer" +STR_SET_CREDENTIALS_FIRST: "Establix les credencials primer" STR_WIFI_CONN_FAILED: "Connexió Wi-Fi fallida" STR_AUTHENTICATING: "S'està autenticant..." STR_AUTH_SUCCESS: "Autenticació correcta!" @@ -148,7 +156,7 @@ STR_PREV_NEXT: "Anterior/Següent" STR_NEXT_PREV: "Següent/Anterior" STR_KOSYNC: "KOSync" STR_BOOKMARK_OPTION: "Punt de llibre" -STR_DISABLED: "Desactivats" +STR_DISABLED: "Sense funció" STR_NOTO_SERIF: "Noto Serif" STR_NOTO_SANS: "Noto Sans" STR_SMALL: "Petita" @@ -176,16 +184,16 @@ STR_UPDATING: "S'està actualitzant..." STR_NO_UPDATE: "No hi ha actualitzacions disponibles" STR_UPDATE_FAILED: "Ha fallat l'actualització" STR_UPDATE_COMPLETE: "Actualització completada" -STR_POWER_ON_HINT: "Premeu i manteniu premut el botó d'encesa per tornar a engegar" +STR_POWER_ON_HINT: "Prem i mantín premut el botó d'encesa per tornar a engegar" STR_NO_ENTRIES: "No s'ha trobat cap entrada" STR_DOWNLOADING: "S'està baixant..." STR_DOWNLOAD_FAILED: "Ha fallat la baixada" STR_ERROR_MSG: "Error:" STR_UNNAMED: "Sense nom" -STR_HOLD_OPEN_TO_DELETE: "Manteniu premut Obre per esborrar" +STR_HOLD_OPEN_TO_DELETE: "Mantín premut Obri per esborrar" STR_NO_SERVER_URL: "No s'ha configurat cap URL de servidor" -STR_FETCH_FEED_FAILED: "Ha fallat l'obtenció del feed" -STR_PARSE_FEED_FAILED: "Ha fallat l'anàlisi del feed" +STR_FETCH_FEED_FAILED: "Ha fallat l'obtenció del canal de continguts" +STR_PARSE_FEED_FAILED: "Ha fallat l'anàlisi del canal de continguts" STR_NETWORK_PREFIX: "Xarxa: " STR_IP_ADDRESS_PREFIX: "Adreça IP: " STR_ERROR_GENERAL_FAILURE: "Error: Fallada general" @@ -198,11 +206,11 @@ STR_HOME: "« Inici" STR_SELECT: "Selecciona" STR_SELECTED: "Seleccionat" STR_TOGGLE: "Canvia" -STR_TOGGLE_BOOKMARK: "Canvia punt de llibre" +STR_TOGGLE_BOOKMARK: "Afig o elimina el punt de llibre" STR_CONFIRM: "Confirma" STR_CANCEL: "Cancel·la" STR_CONNECT: "Connecta" -STR_OPEN: "Obre" +STR_OPEN: "Obri" STR_DOWNLOAD: "Descarrega" STR_RETRY: "Reintenta" STR_YES: "Sí" @@ -217,7 +225,7 @@ STR_DIR_RIGHT: "Dreta" STR_DIR_UP: "Amunt" STR_DIR_DOWN: "Avall" STR_OK_BUTTON: "OK" -STR_SLEEP_COVER_FILTER: "Filtre de pantalla de repòs" +STR_SLEEP_COVER_FILTER: "Filtre de la portada en repòs" STR_FILTER_CONTRAST: "Contrast" STR_CUSTOMISE_STATUS_BAR: "Personalitza la barra d'estat" STR_CHAPTER_PAGE_COUNT: "Comptador de pàgines del capítol" @@ -247,20 +255,20 @@ STR_OPDS_BROWSER: "Navegador OPDS" STR_COVER_CUSTOM: "Portada + Personalitzat" STR_QUICK_RESUME: "Represa ràpida" STR_MENU_RECENT_BOOKS: "Llibres recents" -STR_REMOVE_FROM_RECENTS: "Voleu eliminar-lo de Llibres recents?" +STR_REMOVE_FROM_RECENTS: "Vols eliminar-lo de Llibres recents?" STR_NO_RECENT_BOOKS: "No hi ha llibres recents" STR_CALIBRE_DESC: "Utilitza les transferències sense fils de Calibre" -STR_FORGET_AND_REMOVE: "Voleu eliminar la contrasenya guardada?" +STR_FORGET_AND_REMOVE: "Vols oblidar la xarxa i eliminar la contrasenya guardada?" STR_FORGET_BUTTON: "Oblida" STR_CALIBRE_STARTING: "S'està iniciant el Calibre..." STR_CALIBRE_SETUP: "Configura" STR_CALIBRE_STATUS: "Estat" STR_CLEAR_BUTTON: "Esborra" STR_DEFAULT_VALUE: "Per defecte" -STR_REMAP_PROMPT: "Premeu un botó frontal per a cada rol" +STR_REMAP_PROMPT: "Prem un botó frontal per a cada rol" STR_UNASSIGNED: "No assignat" STR_ALREADY_ASSIGNED: "Ja assignat" -STR_REMAP_RESET_HINT: "Botó lateral Amunt: Restableix la disposició per defecte" +STR_REMAP_RESET_HINT: "Botó lateral Amunt: Restablix la disposició per defecte" STR_REMAP_CANCEL_HINT: "Botó lateral Avall: Cancel·la la reassignació" STR_HW_BACK_LABEL: "Arrere (1r botó)" STR_HW_CONFIRM_LABEL: "Confirma (2n botó)" @@ -271,19 +279,19 @@ STR_GO_HOME_BUTTON: "Ves a l'inici" STR_SYNC_PROGRESS: "Sincronitza el progrés" STR_DELETE_CACHE: "Esborra la memòria cau del llibre" STR_DELETE: "Esborra" -STR_CONFIRM_DELETE_BOOKMARK: "Voleu esborrar este punt de llibre?" +STR_CONFIRM_DELETE_BOOKMARK: "Vols esborrar este punt de llibre?" STR_DISPLAY_QR: "Mostra la pàgina com a QR" STR_CHAPTER_PREFIX: "Capítol: " STR_PAGES_SEPARATOR: " pàgines | " STR_BOOK_PREFIX: "Llibre: " -STR_CALIBRE_URL_HINT: "Per al Calibre, afegiu /opds a la URL" +STR_CALIBRE_URL_HINT: "Per al Calibre, afig /opds a la URL" STR_SYNCING_TIME: "S'està sincronitzant el temps..." -STR_CALC_HASH: "S'està calculant el hash del document..." -STR_HASH_FAILED: "No s'ha pogut calcular el hash del document" +STR_CALC_HASH: "S'està calculant l'empremta electrònica del document..." +STR_HASH_FAILED: "No s'ha pogut calcular l'empremta electrònica del document" STR_FETCH_PROGRESS: "S'està obtenint el progrés remot..." STR_UPLOAD_PROGRESS: "S'està pujant el progrés..." STR_NO_CREDENTIALS_MSG: "No s'han configurat credencials" -STR_KOREADER_SETUP_HINT: "Configureu el compte de KOReader en Configuració" +STR_KOREADER_SETUP_HINT: "Configura el compte de KOReader en Configuració" STR_PROGRESS_FOUND: "S'ha trobat progrés!" STR_REMOTE_LABEL: "Remot:" STR_LOCAL_LABEL: "Local:" @@ -293,7 +301,7 @@ STR_DEVICE_FROM_FORMAT: " De: %s" STR_APPLY_REMOTE: "Aplica el progrés remot" STR_UPLOAD_LOCAL: "Puja el progrés local" STR_NO_REMOTE_MSG: "No s'ha trobat progrés remot" -STR_UPLOAD_PROMPT: "Voleu pujar la posició actual?" +STR_UPLOAD_PROMPT: "Vols pujar la posició actual?" STR_UPLOAD_SUCCESS: "Progrés pujat!" STR_SYNC_FAILED_MSG: "Sincronització fallida" STR_SAVE_PROGRESS_FAILED: "No s'ha pogut guardar el progrés" @@ -308,11 +316,11 @@ STR_FOOTNOTES: "Notes al peu" STR_NO_FOOTNOTES: "No hi ha notes al peu en esta pàgina" STR_LINK: "[enllaç]" STR_SCREENSHOT_BUTTON: "Fes una captura de pantalla" -STR_AUTO_TURN_ENABLED: "Passar automàtic activat: " -STR_AUTO_TURN_PAGES_PER_MIN: "Passar automàtic (pàgines per minut)" +STR_AUTO_TURN_ENABLED: "Pas automàtic de pàgina activat" +STR_AUTO_TURN_PAGES_PER_MIN: "Pas automàtic de pàgina (pàg./min)" STR_TILT_PAGE_TURN: "Pas de pàgina per inclinació" STR_FORCE_REFRESH: "Refresca la pantalla" -STR_RESTARTING_HINT: "S'està reiniciant... Si el dispositiu no es reinicia, manteniu premut el botó d'encesa durant uns segons." +STR_RESTARTING_HINT: "S'està reiniciant... Si el dispositiu no es reinicia, mantín premut el botó d'encesa durant uns segons." STR_NEXT_PAGE: "Pàgina següent »" STR_PREV_PAGE: "« Pàgina anterior" STR_XTC_STATUS_BAR: "Barra d'estat XTC" @@ -341,6 +349,11 @@ STR_SERVER_NAME: "Nom del servidor" STR_NO_SERVERS: "No hi ha servidors OPDS configurats" STR_DELETE_SERVER: "Elimina el servidor" STR_OPDS_SERVERS: "Servidors OPDS" +STR_OPDS_DOWNLOAD_FOLDER: "Carpeta de baixades" +STR_OPDS_FILENAME_FORMAT: "Format del nom de fitxer" +STR_FMT_AUTHOR_TITLE: "Autor - Títol" +STR_FMT_TITLE_AUTHOR: "Títol - Autor" +STR_FMT_TITLE: "Títol" STR_MANAGE_FONTS: "Gestiona les fonts" STR_FONT_BROWSER: "Navegador de fonts" STR_LOADING_FONT_LIST: "S'està carregant la llista de fonts..." @@ -351,35 +364,37 @@ STR_INSTALLED: "Instal·lat" STR_DOWNLOAD_ALL: "Descarrega-ho tot" STR_UPDATE_ALL: "Actualitza-ho tot" STR_UPDATE_AVAILABLE: "Actualitza" -STR_CRASH_TITLE: "Bloqueig del sistema" -STR_CRASH_DESCRIPTION: "S'ha guardat un informe detallat a crash_report.txt. Incloeu este arxiu en l'informe d'errors." -STR_CRASH_REASON: "Motiu del bloqueig:" +STR_CRASH_TITLE: "Fallada del sistema" +STR_CRASH_DESCRIPTION: "S'ha guardat un informe detallat a crash_report.txt. Inclou este arxiu en l'informe d'errors." +STR_CRASH_REASON: "Motiu de la fallada" STR_CRASH_NO_REASON: "(No s'ha registrat cap motiu)" STR_KB_HINT_MOVE_CURSOR: "Prem Esquerra o Dreta per moure el cursor" STR_KB_HINT_RETURN_CURSOR: "Prem Esquerra per tornar a la posició del cursor" -STR_KB_HINT_HIDE_PASSWORD: "Mantén premut Dreta i prem [***] per ocultar la contrasenya" -STR_KB_HINT_SHOW_PASSWORD: "Mantén premut Dreta i prem [abc] per mostrar la contrasenya" +STR_KB_HINT_HIDE_PASSWORD: "Mantín premut Dreta i prem [***] per ocultar la contrasenya" +STR_KB_HINT_SHOW_PASSWORD: "Mantín premut Dreta i prem [abc] per mostrar la contrasenya" STR_KB_HINT_TOGGLE_HIDE_PASSWORD: "Prem [***] per ocultar la contrasenya" STR_KB_HINT_TOGGLE_SHOW_PASSWORD: "Prem [abc] per mostrar la contrasenya" -STR_KB_HINT_EDIT_ENTRY: "Mantén premut Amunt per editar l'entrada" +STR_KB_HINT_EDIT_ENTRY: "Mantín premut Amunt per editar l'entrada" STR_KB_TIPS: "Consells:" STR_KB_HINT_RETURN_KEYBOARD: "Prem Avall per tornar al teclat" STR_KB_HINT_EXIT_URL_MODE: "Prem ABC per eixir del mode URL" -STR_KB_HINT_CLEAR_TEXT: "Mantén premut DEL per esborrar tot el text" -STR_KB_HINT_SECONDARY_CHAR: "Mantén premut SELECT per al caràcter secundari" -STR_KB_HINT_UPPER_SECONDARY: "Mantén premut SELECT per MAJÚSCULES o caràcter secundari" -STR_KB_HINT_LOWER_SECONDARY: "Mantén premut SELECT per minúscules o caràcter secundari" +STR_KB_HINT_CLEAR_TEXT: "Mantín premut DEL per esborrar tot el text" +STR_KB_HINT_SECONDARY_CHAR: "Mantín premut SELECT: caràcter secundari" +STR_KB_HINT_UPPER_SECONDARY: "Mantín premut SELECT: majúscules o caràcter secundari" +STR_KB_HINT_LOWER_SECONDARY: "Mantín premut SELECT: minúscules o caràcter secundari" STR_KB_HINT_URL_SNIPPETS: "Prem URL per inserir fragments" STR_SD_FIRMWARE_UPDATE: "Actualització de firmware des de la targeta SD" -STR_SELECT_FIRMWARE_FILE: "Seleccioneu un arxiu de firmware (.bin)" +STR_SELECT_FIRMWARE_FILE: "Selecciona un arxiu de firmware (.bin)" STR_NO_BIN_FILES: "No s'han trobat arxius .bin" STR_VALIDATING_FIRMWARE: "S'està validant el firmware..." STR_INVALID_FIRMWARE: "Arxiu de firmware no vàlid" STR_FIRMWARE_TOO_LARGE: "El firmware és massa gran per a la partició" STR_FIRMWARE_TOO_SMALL: "L'arxiu de firmware és massa menut" -STR_FIRMWARE_UPDATE_PROMPT: "Voleu actualitzar el firmware?" +STR_FIRMWARE_UPDATE_PROMPT: "Vols actualitzar el firmware?" STR_FIRMWARE_FILE_OPEN_FAILED: "No es pot obrir l'arxiu" STR_FIRMWARE_WRITE_FAILED: "Ha fallat l'escriptura del firmware" -STR_FIRMWARE_UPDATE_DO_NOT_POWER_OFF: "No apagueu el dispositiu!" +STR_FIRMWARE_UPDATE_DO_NOT_POWER_OFF: "No apagues el dispositiu!" STR_RECOVERY_MODE: "Mode de recuperació" -STR_RECOVERY_MODE_HINT: "Poseu firmware.bin a l'arrel de la targeta SD i seleccioneu-lo" +STR_RECOVERY_MODE_HINT: "Posa firmware.bin a l'arrel de la targeta SD i selecciona'l" +STR_ADD_HIDDEN_NETWORK: "Afig una xarxa oculta..." +STR_ENTER_WIFI_SSID: "Introduïx el nom de la xarxa (SSID)" diff --git a/lib/I18n/translations/vietnamese.yaml b/lib/I18n/translations/vietnamese.yaml index 2701fa90ed..b9d045c435 100644 --- a/lib/I18n/translations/vietnamese.yaml +++ b/lib/I18n/translations/vietnamese.yaml @@ -10,6 +10,7 @@ STR_BROWSE_FILES: "Duyệt tập tin" STR_FILE_TRANSFER: "Truyền tập tin" STR_SETTINGS_TITLE: "Cài đặt" STR_CONTINUE_READING: "Đọc tiếp" +STR_RESUME: "Tiếp tục" STR_NO_OPEN_BOOK: "Chưa mở sách" STR_START_READING: "Bắt đầu đọc bên dưới" STR_NO_FILES_FOUND: "Không tìm thấy tập tin" @@ -18,17 +19,27 @@ STR_NO_CHAPTERS: "Không có chương" STR_END_OF_BOOK: "Hết sách" STR_EMPTY_CHAPTER: "Chương trống" STR_INDEXING: "Đang lập chỉ mục" +STR_INDEX_FAILED: "Lập chỉ mục thất bại - Sách không hợp lệ" STR_MEMORY_ERROR: "Lỗi bộ nhớ" STR_PAGE_LOAD_ERROR: "Lỗi tải trang" STR_EMPTY_FILE: "Tập tin trống" STR_OUT_OF_BOUNDS: "Vượt giới hạn" STR_LOADING: "Đang tải..." STR_LOADING_POPUP: "Đang tải" +STR_LOOKUP: "Tra từ" +STR_DICT_LOOKING_UP: "Đang tra từ..." +STR_DICT_INDEXING: "Đang lập chỉ mục từ điển..." +STR_DICT_NOT_FOUND: "Không tìm thấy" +STR_DICT_NO_DICT_SET: "Chưa chọn từ điển" +STR_DICT_ERROR: "Lỗi từ điển" STR_WIFI_NETWORKS: "Mạng Wi-Fi" STR_NO_NETWORKS: "Không tìm thấy mạng" STR_NETWORKS_FOUND: "Tìm thấy %zu mạng" STR_SCANNING: "Đang quét..." +STR_FINDING_SAVED_WIFI: "Đang tìm mạng Wi-Fi đã lưu..." STR_CONNECTING: "Đang kết nối..." +STR_CONNECTING_SAVED_WIFI: "Đang kết nối tới mạng Wi-Fi đã lưu..." +STR_SHOW_NETWORKS: "Hiện" STR_CONNECTED: "Đã kết nối!" STR_CONNECTION_FAILED: "Kết nối thất bại" STR_FORGET_NETWORK: "Quên mạng này?" @@ -62,7 +73,7 @@ STR_CAT_CONTROLS: "Điều khiển" STR_CAT_SYSTEM: "Hệ thống" STR_SLEEP_SCREEN: "Màn hình ngủ" STR_QUICK_RESUME_TIMEOUT: "Khôi phục nhanh khi hết giờ" -STR_SLEEP_COVER_MODE: "Kiểu ảnh bìa màn hình ngủ" +STR_SLEEP_COVER_MODE: "Kiểu ảnh màn hình ngủ" STR_HIDE_BATTERY: "Ẩn % pin" STR_EXTRA_SPACING: "Giãn cách đoạn thêm" STR_TEXT_AA: "Khử răng cưa chữ" @@ -70,9 +81,12 @@ STR_IMAGES: "Hình ảnh" STR_IMAGES_DISPLAY: "Hiển thị" STR_IMAGES_PLACEHOLDER: "Khung thay thế" STR_IMAGES_SUPPRESS: "Ẩn đi" +STR_EOB_HOME: "Màn hình chính" +STR_EOB_CONTINUE_WITH: "Tiếp tục với" STR_SHORT_PWR_BTN: "Nhấn nhanh nút nguồn" STR_ORIENTATION: "Hướng đọc" STR_SIDE_BTN_LAYOUT: "Bố trí nút bên (trình đọc)" +STR_TOUCH_READER_CONTROLS: "Điều khiển đọc bằng cảm ứng" STR_FRONT_BTN_FOLLOW_ORIENTATION: "Xoay nút trước theo hướng" STR_LONG_PRESS_BEHAVIOR: "Hành vi nhấn giữ nút" STR_LONG_PRESS_BEHAVIOR_OFF: "TẮT" @@ -98,6 +112,7 @@ STR_USERNAME: "Tên đăng nhập" STR_PASSWORD: "Mật khẩu" STR_SYNC_SERVER_URL: "URL máy chủ đồng bộ" STR_DOCUMENT_MATCHING: "Khớp tài liệu" +STR_SEND_METADATA: "Gửi siêu dữ liệu tài liệu" STR_AUTHENTICATE: "Xác thực" STR_KOREADER_USERNAME: "Tên đăng nhập KOReader" STR_KOREADER_PASSWORD: "Mật khẩu KOReader" @@ -142,6 +157,9 @@ STR_ORIENTATION_INVERTED: "Dọc 180°" STR_LANDSCAPE_CCW: "Ngang (ngược)" STR_PREV_NEXT: "Trước/Sau" STR_NEXT_PREV: "Sau/Trước" +STR_KOSYNC: "KOSync" +STR_BOOKMARK_OPTION: "Dấu trang" +STR_DICTIONARY: "Từ điển" STR_DISABLED: "Tắt" STR_NOTO_SERIF: "Noto Serif" STR_NOTO_SANS: "Noto Sans" @@ -202,6 +220,7 @@ STR_CONNECT: "Kết nối" STR_OPEN: "Mở" STR_DOWNLOAD: "Tải về" STR_RETRY: "Thử lại" +STR_TAP_TO_RETRY: "Nhấn để thử lại" STR_YES: "Có" STR_NO: "Không" STR_SHOW: "Hiện" @@ -214,7 +233,7 @@ STR_DIR_RIGHT: "Phải" STR_DIR_UP: "Lên" STR_DIR_DOWN: "Xuống" STR_OK_BUTTON: "OK" -STR_SLEEP_COVER_FILTER: "Bộ lọc ảnh bìa màn hình ngủ" +STR_SLEEP_COVER_FILTER: "Bộ lọc ảnh màn hình ngủ" STR_FILTER_CONTRAST: "Tương phản" STR_CUSTOMISE_STATUS_BAR: "Tùy chỉnh thanh trạng thái" STR_CHAPTER_PAGE_COUNT: "Số trang trong chương" @@ -320,7 +339,7 @@ STR_BOOK_S_STYLE: "Kiểu của sách" STR_EMBEDDED_STYLE: "Kiểu nhúng sẵn" STR_FOCUS_READING: "Đọc tập trung" STR_OPDS_SERVER_URL: "URL máy chủ OPDS" -STR_SET_SLEEP_COVER: "Đặt ảnh bìa" +STR_SET_SLEEP_COVER: "Đặt ảnh màn hình ngủ" STR_FOOTNOTES: "Chú thích" STR_NO_FOOTNOTES: "Trang này không có chú thích" STR_LINK: "[liên kết]" @@ -334,6 +353,11 @@ STR_SERVER_NAME: "Tên máy chủ" STR_NO_SERVERS: "Chưa cấu hình máy chủ OPDS" STR_DELETE_SERVER: "Xóa máy chủ" STR_OPDS_SERVERS: "Máy chủ OPDS" +STR_OPDS_DOWNLOAD_FOLDER: "Thư mục tải xuống" +STR_OPDS_FILENAME_FORMAT: "Định dạng tên tệp" +STR_FMT_AUTHOR_TITLE: "Tác giả - Tựa đề" +STR_FMT_TITLE_AUTHOR: "Tựa đề - Tác giả" +STR_FMT_TITLE: "Tựa đề" STR_AUTO_TURN_ENABLED: "Tự lật trang: " STR_AUTO_TURN_PAGES_PER_MIN: "Tự lật (số trang mỗi phút)" STR_MANAGE_FONTS: "Quản lý phông chữ" @@ -379,3 +403,5 @@ STR_FIRMWARE_WRITE_FAILED: "Ghi firmware thất bại" STR_FIRMWARE_UPDATE_DO_NOT_POWER_OFF: "Không được tắt nguồn!" STR_RECOVERY_MODE: "Chế độ phục hồi" STR_RECOVERY_MODE_HINT: "Đặt firmware.bin ở thư mục gốc thẻ SD rồi chọn" +STR_ADD_HIDDEN_NETWORK: "Thêm mạng ẩn..." +STR_ENTER_WIFI_SSID: "Nhập tên mạng (SSID)" diff --git a/lib/InflateReader/InflateReader.h b/lib/InflateReader/InflateReader.h index ce090d1544..2c8fbd1767 100644 --- a/lib/InflateReader/InflateReader.h +++ b/lib/InflateReader/InflateReader.h @@ -13,6 +13,11 @@ enum class InflateStatus { // Streaming deflate decompressor wrapping uzlib. // +// NOTE: retained ONLY for FontDecompressor's tiny one-shot flash-resident group +// decompressions, where uzlib's ~1KB state beats tinfl's ~11KB on the +// OOM-sensitive render path. All throughput paths (zip entries, PNG IDAT) use +// InflateStream (lib/miniz), which decodes several times faster. +// // Two modes: // init(false) — one-shot: input is a contiguous buffer, call read() once. // init(true) — streaming: allocates a 32KB ring buffer for back-references diff --git a/lib/JpegToBmpConverter/JpegToBmpConverter.cpp b/lib/JpegToBmpConverter/JpegToBmpConverter.cpp index a0e8b5741a..0cf47c1d78 100644 --- a/lib/JpegToBmpConverter/JpegToBmpConverter.cpp +++ b/lib/JpegToBmpConverter/JpegToBmpConverter.cpp @@ -5,6 +5,8 @@ #include #include #include +#include +#include #include #include @@ -169,11 +171,22 @@ constexpr uint32_t FP_ONE = 1UL << 16; // Static file pointer for JPEGDEC open callback. // Safe in single-threaded embedded context; never accessed concurrently. static HalFile* s_jpegFile = nullptr; +static uint8_t s_jpegIoSinceYield = 0; + +static void yieldToIdle() { vTaskDelay(1); } + +static void yieldDuringJpegIo() { + if (++s_jpegIoSinceYield < 4) return; + s_jpegIoSinceYield = 0; + yieldToIdle(); +} void* bmpJpegOpen(const char* /*filename*/, int32_t* size) { if (!s_jpegFile || !*s_jpegFile) return nullptr; + s_jpegIoSinceYield = 0; s_jpegFile->seek(0); *size = static_cast(s_jpegFile->size()); + yieldDuringJpegIo(); return s_jpegFile; } @@ -187,6 +200,7 @@ int32_t bmpJpegRead(JPEGFILE* pFile, uint8_t* pBuf, int32_t len) { int32_t n = f->read(pBuf, len); if (n < 0) n = 0; pFile->iPos += n; + yieldDuringJpegIo(); return n; } @@ -194,6 +208,7 @@ int32_t bmpJpegSeek(JPEGFILE* pFile, int32_t pos) { auto* f = reinterpret_cast(pFile->fHandle); if (!f || !f->seek(pos)) return -1; pFile->iPos = pos; + yieldDuringJpegIo(); return pos; } @@ -236,9 +251,23 @@ struct BmpConvertCtx { std::unique_ptr fsDitherer; std::unique_ptr atkinson1BitDitherer; + uint8_t rowsSinceYield; + uint8_t blocksSinceYield; bool error; }; +static void yieldDuringDecode(BmpConvertCtx* ctx) { + if (++ctx->rowsSinceYield < 8) return; + ctx->rowsSinceYield = 0; + yieldToIdle(); +} + +static void yieldDuringDecodeBlock(BmpConvertCtx* ctx) { + if (++ctx->blocksSinceYield < 16) return; + ctx->blocksSinceYield = 0; + yieldToIdle(); +} + // Write a fully-assembled output row (grayscale bytes, length outWidth) to BMP static void writeOutputRow(BmpConvertCtx* ctx, const uint8_t* srcRow, int outY) { memset(ctx->bmpRow.get(), 0, ctx->bytesPerRow); @@ -274,6 +303,7 @@ static void writeOutputRow(BmpConvertCtx* ctx, const uint8_t* srcRow, int outY) } ctx->bmpOut->write(ctx->bmpRow.get(), ctx->bytesPerRow); + yieldDuringDecode(ctx); } // Matches the progressive-JPEG smoothing used by JpegToFramebufferConverter, but stays @@ -396,6 +426,7 @@ static void flushScaledRow(BmpConvertCtx* ctx) { ctx->bmpOut->write(ctx->bmpRow.get(), ctx->bytesPerRow); ctx->currentOutY++; + yieldDuringDecode(ctx); } // JPEGDEC draw callback — receives one MCU-width × MCU-height block at a time, @@ -405,6 +436,7 @@ static void flushScaledRow(BmpConvertCtx* ctx) { int bmpDrawCallback(JPEGDRAW* pDraw) { auto* ctx = reinterpret_cast(pDraw->pUser); if (!ctx || ctx->error) return 0; + yieldDuringDecodeBlock(ctx); const uint8_t* pixels = reinterpret_cast(pDraw->pPixels); const int stride = pDraw->iWidth; @@ -599,6 +631,8 @@ bool JpegToBmpConverter::jpegFileToBmpStreamInternal(HalFile& jpegFile, Print& b ctx.smoothScaleY_fp = interpolationStep(ctx.srcHeight, outHeight); ctx.smoothNextOutY = 0; ctx.smoothPrevY = -1; + ctx.rowsSinceYield = 0; + ctx.blocksSinceYield = 0; ctx.error = false; // MCU row buffer: MAX_MCU_HEIGHT rows × decoded srcWidth columns of grayscale diff --git a/lib/KOReaderSync/ChapterXPathResolver.cpp b/lib/KOReaderSync/ChapterXPathResolver.cpp index 5928ebd767..73877519da 100644 --- a/lib/KOReaderSync/ChapterXPathResolver.cpp +++ b/lib/KOReaderSync/ChapterXPathResolver.cpp @@ -278,13 +278,18 @@ class XPathParagraphResolver final : public Print { path.push_back({name, siblingIndex}); parentStates.emplace_back(); + // Count both

    and

  • as paragraph-like positions, matching how the section + // layout tracks them (xpathParagraphIndex and xpathListItemIndex). This ensures + // KOReader progress in list items maps to the correct XPath. if (name == "p") { paragraphCount++; - if (paragraphCount == targetParagraph) { - xpath = buildParagraphXPath(spineIndex, path, 0, 0); - stopped = true; - XML_StopParser(parser, XML_FALSE); - } + } else if (name == "li") { + paragraphCount++; + } + if (paragraphCount == targetParagraph) { + xpath = buildParagraphXPath(spineIndex, path, 0, 0); + stopped = true; + XML_StopParser(parser, XML_FALSE); } depth++; diff --git a/lib/KOReaderSync/KOReaderCredentialStore.cpp b/lib/KOReaderSync/KOReaderCredentialStore.cpp index 3b96eb506d..515b81ce72 100644 --- a/lib/KOReaderSync/KOReaderCredentialStore.cpp +++ b/lib/KOReaderSync/KOReaderCredentialStore.cpp @@ -1,118 +1,81 @@ #include "KOReaderCredentialStore.h" -#include #include #include #include -#include - -#include "KOReaderJsonIO.h" - -// Initialize the static instance -KOReaderCredentialStore KOReaderCredentialStore::instance; namespace { -// File format version (for binary migration) -constexpr uint8_t KOREADER_FILE_VERSION = 1; - -// File paths -constexpr char KOREADER_FILE_BIN[] = "/.crosspoint/koreader.bin"; -constexpr char KOREADER_FILE_JSON[] = "/.crosspoint/koreader.json"; -constexpr char KOREADER_FILE_BAK[] = "/.crosspoint/koreader.bin.bak"; +// Default sync server URL. crosspoint-sync speaks the full KOSync protocol, so +// pointing at any other kosync server (e.g. https://sync.koreader.rocks:443) +// still works via the custom server URL setting. +constexpr char DEFAULT_SERVER_URL[] = "https://sync.crosspointreader.com"; -// Default sync server URL -constexpr char DEFAULT_SERVER_URL[] = "https://sync.koreader.rocks:443"; +// Default before config version 2. Configs saved without a version stamp and an +// empty serverUrl were implicitly syncing here — they get pinned on upgrade. +constexpr char LEGACY_DEFAULT_SERVER_URL[] = "https://sync.koreader.rocks:443"; -// Legacy obfuscation key - "KOReader" in ASCII (only used for binary migration) -constexpr uint8_t LEGACY_OBFUSCATION_KEY[] = {0x4B, 0x4F, 0x52, 0x65, 0x61, 0x64, 0x65, 0x72}; -constexpr size_t LEGACY_KEY_LENGTH = sizeof(LEGACY_OBFUSCATION_KEY); - -void legacyDeobfuscate(std::string& data) { - for (size_t i = 0; i < data.size(); i++) { - data[i] ^= LEGACY_OBFUSCATION_KEY[i % LEGACY_KEY_LENGTH]; - } -} +// Bumped when a change to defaults would alter behavior for existing configs. +constexpr uint8_t CONFIG_VERSION = 2; } // namespace -bool KOReaderCredentialStore::saveToFile() const { - Storage.mkdir("/.crosspoint"); - return KOReaderJsonIO::save(*this, KOREADER_FILE_JSON); +void KOReaderCredentialStore::toJson(JsonDocument& doc) const { + doc["cfgVersion"] = CONFIG_VERSION; + doc["username"] = getUsername(); + doc["password_obf"] = obfuscation::obfuscateToBase64(getPassword()); + doc["serverUrl"] = getServerUrl(); + doc["matchMethod"] = static_cast(getMatchMethod()); + doc["sendMetadata"] = getSendMetadata(); + doc["syncBehavior"] = static_cast(getSyncBehavior()); } -bool KOReaderCredentialStore::loadFromFile() { - // Try JSON first - if (Storage.exists(KOREADER_FILE_JSON)) { - String json = Storage.readFile(KOREADER_FILE_JSON); - if (!json.isEmpty()) { - bool resave = false; - bool result = KOReaderJsonIO::load(*this, json.c_str(), &resave); - if (result && resave) { - saveToFile(); - LOG_DBG("KRS", "Resaved KOReader credentials to update format"); - } - return result; - } - } - - // Fall back to binary migration - if (Storage.exists(KOREADER_FILE_BIN)) { - if (loadFromBinaryFile()) { - if (saveToFile()) { - Storage.rename(KOREADER_FILE_BIN, KOREADER_FILE_BAK); - LOG_DBG("KRS", "Migrated koreader.bin to koreader.json"); - return true; - } else { - LOG_ERR("KRS", "Failed to save KOReader credentials during migration"); - return false; - } - } - } - - LOG_DBG("KRS", "No credentials file found"); - return false; -} +bool KOReaderCredentialStore::fromJson(JsonVariantConst doc) { + std::string user = doc["username"] | ""; -bool KOReaderCredentialStore::loadFromBinaryFile() { - HalFile file; - if (!Storage.openFileForRead("KRS", KOREADER_FILE_BIN, file)) { - return false; - } + bool needsResave = false; + std::string pass = extractPassword(doc, needsResave); - uint8_t version; - serialization::readPod(file, version); - if (version != KOREADER_FILE_VERSION) { - LOG_DBG("KRS", "Unknown file version: %u", version); - return false; - } + setCredentials(user, pass); + setServerUrl(doc["serverUrl"] | ""); - if (file.available()) { - serialization::readString(file, username); - } else { - username.clear(); + // The default server changed in config v2 (sync.koreader.rocks -> crosspoint-sync). + // A pre-v2 config with credentials and no explicit URL was actively syncing + // against the old default — pin that URL so the upgrade doesn't switch servers + // out from under the user. Fresh setups get the new default. + const uint8_t cfgVersion = doc["cfgVersion"] | (uint8_t)1; + if (cfgVersion < CONFIG_VERSION) { + if (getServerUrl().empty() && hasCredentials()) { + LOG_DBG("KRS", "Pre-v2 config used the old default server; pinning %s", LEGACY_DEFAULT_SERVER_URL); + setServerUrl(LEGACY_DEFAULT_SERVER_URL); + } + needsResave = true; // stamp cfgVersion so this migration runs once } - if (file.available()) { - serialization::readString(file, password); - legacyDeobfuscate(password); + uint8_t method = doc["matchMethod"] | (uint8_t)0; + if (method <= static_cast(DocumentMatchMethod::BINARY)) { + setMatchMethod(static_cast(method)); } else { - password.clear(); + LOG_DBG("KRS", "Invalid matchMethod %u in JSON, resetting to FILENAME", method); + setMatchMethod(DocumentMatchMethod::FILENAME); } - - if (file.available()) { - serialization::readString(file, serverUrl); + setSendMetadata(doc["sendMetadata"] | false); + + const JsonVariantConst behaviorValue = doc["syncBehavior"]; + const bool missingBehavior = behaviorValue.isNull(); + uint8_t behavior = behaviorValue | static_cast(KOReaderSyncBehavior::ASK_EVERY_TIME); + if (behavior <= static_cast(KOReaderSyncBehavior::SMART)) { + setSyncBehavior(static_cast(behavior)); + needsResave = needsResave || missingBehavior; } else { - serverUrl.clear(); + LOG_DBG("KRS", "Invalid syncBehavior %u in JSON, resetting to ASK_EVERY_TIME", behavior); + setSyncBehavior(KOReaderSyncBehavior::ASK_EVERY_TIME); + needsResave = true; } - if (file.available()) { - uint8_t method; - serialization::readPod(file, method); - matchMethod = static_cast(method); - } else { - matchMethod = DocumentMatchMethod::FILENAME; + if (needsResave) { + LOG_DBG("KRS", "Resaving KOReader credentials to update format"); + requestResave(); } - LOG_DBG("KRS", "Loaded KOReader credentials from binary for user: %s", username.c_str()); return true; } @@ -173,3 +136,16 @@ void KOReaderCredentialStore::setMatchMethod(DocumentMatchMethod method) { matchMethod = method; LOG_DBG("KRS", "Set match method: %s", method == DocumentMatchMethod::FILENAME ? "Filename" : "Binary"); } + +void KOReaderCredentialStore::setSendMetadata(bool enabled) { + sendMetadata = enabled; + LOG_DBG("KRS", "Set send metadata: %s", enabled ? "true" : "false"); +} + +void KOReaderCredentialStore::setSyncBehavior(KOReaderSyncBehavior behavior) { + if (static_cast(behavior) > static_cast(KOReaderSyncBehavior::SMART)) { + behavior = KOReaderSyncBehavior::ASK_EVERY_TIME; + } + syncBehavior = behavior; + LOG_DBG("KRS", "Set sync behavior: %s", behavior == KOReaderSyncBehavior::SMART ? "Smart" : "Ask"); +} diff --git a/lib/KOReaderSync/KOReaderCredentialStore.h b/lib/KOReaderSync/KOReaderCredentialStore.h index c2ea515d45..00a5f17c74 100644 --- a/lib/KOReaderSync/KOReaderCredentialStore.h +++ b/lib/KOReaderSync/KOReaderCredentialStore.h @@ -1,4 +1,7 @@ #pragma once +#include +#include + #include #include @@ -8,36 +11,38 @@ enum class DocumentMatchMethod : uint8_t { BINARY = 1, // Match by partial MD5 of file content (more accurate, but files must be identical) }; +// How manual "Sync Progress" resolves differences after fetching remote progress. +enum class KOReaderSyncBehavior : uint8_t { + ASK_EVERY_TIME = 0, // Preserve legacy behavior: always show Apply/Upload choices. + SMART = 1, // Auto-resolve simple cases using furthest progress. +}; + /** * Singleton class for storing KOReader sync credentials on the SD card. * Passwords are XOR-obfuscated with the device's unique hardware MAC address * and base64-encoded before writing to JSON (not cryptographically secure, * but prevents casual reading and ties credentials to the specific device). */ -class KOReaderCredentialStore { + +class KOReaderCredentialStore : public PersistableStore { private: - static KOReaderCredentialStore instance; std::string username; std::string password; std::string serverUrl; // Custom sync server URL (empty = default) DocumentMatchMethod matchMethod = DocumentMatchMethod::FILENAME; // Default to filename for compatibility + bool sendMetadata = false; // Send document metadata with progress sync + KOReaderSyncBehavior syncBehavior = KOReaderSyncBehavior::SMART; // Private constructor for singleton KOReaderCredentialStore() = default; + ~KOReaderCredentialStore() = default; - bool loadFromBinaryFile(); + friend class PersistableStore; public: - // Delete copy constructor and assignment - KOReaderCredentialStore(const KOReaderCredentialStore&) = delete; - KOReaderCredentialStore& operator=(const KOReaderCredentialStore&) = delete; - - // Get singleton instance - static KOReaderCredentialStore& getInstance() { return instance; } - - // Save/load from SD card - bool saveToFile() const; - bool loadFromFile(); + static const char* getFilePath() { return "/.crosspoint/koreader.json"; } + void toJson(JsonDocument& doc) const; + bool fromJson(JsonVariantConst doc); // Credential management void setCredentials(const std::string& user, const std::string& pass); @@ -63,6 +68,14 @@ class KOReaderCredentialStore { // Document matching method void setMatchMethod(DocumentMatchMethod method); DocumentMatchMethod getMatchMethod() const { return matchMethod; } + + // Send metadata setting + void setSendMetadata(bool enabled); + bool getSendMetadata() const { return sendMetadata; } + + // Sync behavior + void setSyncBehavior(KOReaderSyncBehavior behavior); + KOReaderSyncBehavior getSyncBehavior() const { return syncBehavior; } }; // Helper macro to access credential store diff --git a/lib/KOReaderSync/KOReaderJsonIO.cpp b/lib/KOReaderSync/KOReaderJsonIO.cpp deleted file mode 100644 index 05bfc11964..0000000000 --- a/lib/KOReaderSync/KOReaderJsonIO.cpp +++ /dev/null @@ -1,51 +0,0 @@ -#include "KOReaderJsonIO.h" - -#include -#include -#include -#include - -#include "KOReaderCredentialStore.h" - -namespace KOReaderJsonIO { - -bool save(const KOReaderCredentialStore& store, const char* path) { - JsonDocument doc; - doc["username"] = store.getUsername(); - doc["password_obf"] = obfuscation::obfuscateToBase64(store.getPassword()); - doc["serverUrl"] = store.getServerUrl(); - doc["matchMethod"] = static_cast(store.getMatchMethod()); - - String json; - serializeJson(doc, json); - return Storage.writeFile(path, json); -} - -bool load(KOReaderCredentialStore& store, const char* json, bool* needsResave) { - if (needsResave) *needsResave = false; - JsonDocument doc; - auto error = deserializeJson(doc, json); - if (error) { - LOG_ERR("KRS", "JSON parse error: %s", error.c_str()); - return false; - } - - std::string user = doc["username"] | std::string(""); - - bool ok = false; - std::string pass = obfuscation::deobfuscateFromBase64(doc["password_obf"] | "", &ok); - if (!ok || pass.empty()) { - pass = doc["password"] | std::string(""); - if (!pass.empty() && needsResave) *needsResave = true; - } - - store.setCredentials(user, pass); - store.setServerUrl(doc["serverUrl"] | std::string("")); - - uint8_t method = doc["matchMethod"] | (uint8_t)0; - store.setMatchMethod(static_cast(method)); - - return true; -} - -} // namespace KOReaderJsonIO diff --git a/lib/KOReaderSync/KOReaderJsonIO.h b/lib/KOReaderSync/KOReaderJsonIO.h deleted file mode 100644 index c8d8eb814e..0000000000 --- a/lib/KOReaderSync/KOReaderJsonIO.h +++ /dev/null @@ -1,8 +0,0 @@ -#pragma once - -class KOReaderCredentialStore; - -namespace KOReaderJsonIO { -bool save(const KOReaderCredentialStore& store, const char* path); -bool load(KOReaderCredentialStore& store, const char* json, bool* needsResave); -} // namespace KOReaderJsonIO diff --git a/lib/KOReaderSync/KOReaderSyncClient.cpp b/lib/KOReaderSync/KOReaderSyncClient.cpp index 1e4f512d96..66253485a6 100644 --- a/lib/KOReaderSync/KOReaderSyncClient.cpp +++ b/lib/KOReaderSync/KOReaderSyncClient.cpp @@ -2,10 +2,10 @@ #include #include -#include -#include +#include +#include -#include +#include #include "KOReaderCredentialStore.h" @@ -16,114 +16,102 @@ namespace { constexpr char DEVICE_NAME[] = "CrossPoint"; constexpr char DEVICE_ID[] = "crosspoint-reader"; -// Small TLS buffers to fit in ESP32-C3's limited heap (~46KB free after WiFi). -// KOSync payloads are tiny JSON (<1KB), so 2KB buffers are sufficient. -// Default 16KB buffers cause OOM during TLS handshake. -constexpr int HTTP_BUF_SIZE = 2048; - -// Cloudflare tunnels send a 3-cert Google Trust Services chain. During the TLS handshake -// mbedTLS makes many small allocations that collectively consume ~48KB of heap. With only -// ~50KB free after WiFi connects, the session drove min-free-ever down to 2600 bytes before -// failing with MBEDTLS_ERR_X509_ALLOC_FAILED (-0x2880). Check total free heap (not max -// contiguous block) because the failure mode is aggregate exhaustion, not one large alloc. +// KOSync's TLS-1.3 servers can't be reached through the precompiled system +// mbedTLS (TLS 1.3 is stubbed out), so requests run over wolfSSL via +// SecureHttpClient. The handshake still needs working heap; gate on it. wolfSSL's +// footprint is smaller than mbedTLS's old ~48KB peak, but keep a conservative +// floor. Check both total free heap and largest contiguous block so fragmented +// heap does not fall through into a failed TLS allocation path. constexpr uint32_t MIN_HEAP_FOR_TLS = 55000; -// Response buffer for reading HTTP body -struct ResponseBuffer { - char* data = nullptr; - int len = 0; - int capacity = 0; - - ~ResponseBuffer() { free(data); } +// Apply the shared KOSync auth headers after begin(). x-auth-* is the native +// KOSync scheme; Basic auth is added for Calibre-Web-Automated compatibility. +void applyAuthHeaders(freeink::SecureHttpClient& http) { + http.addHeader("Accept", "application/vnd.koreader.v1+json"); + http.addHeader("x-auth-user", KOREADER_STORE.getUsername()); + http.addHeader("x-auth-key", KOREADER_STORE.getMd5Password()); + const std::string credentials = KOREADER_STORE.getUsername() + ":" + KOREADER_STORE.getPassword(); + const String encoded = base64::encode(credentials.c_str()); + http.addHeader("Authorization", std::string("Basic ") + encoded.c_str()); +} - bool ensure(int size) { - if (size <= capacity) return true; - char* newData = (char*)realloc(data, size); - if (!newData) return false; - data = newData; - capacity = size; +// True when free heap is too low to risk a TLS handshake. +bool insufficientHeap() { + const uint32_t freeHeap = ESP.getFreeHeap(); + const uint32_t maxAllocHeap = ESP.getMaxAllocHeap(); + if (freeHeap < MIN_HEAP_FOR_TLS || maxAllocHeap < MIN_HEAP_FOR_TLS) { + LOG_ERR("KOSync", "Insufficient heap for TLS handshake: %u bytes free, %u max alloc (need %u)", freeHeap, + maxAllocHeap, MIN_HEAP_FOR_TLS); return true; } -}; - -// HTTP event handler to collect response body -esp_err_t httpEventHandler(esp_http_client_event_t* evt) { - auto* buf = static_cast(evt->user_data); - if (evt->event_id == HTTP_EVENT_ON_DATA && buf) { - if (buf->ensure(buf->len + evt->data_len + 1)) { - memcpy(buf->data + buf->len, evt->data, evt->data_len); - buf->len += evt->data_len; - buf->data[buf->len] = '\0'; - } else { - LOG_ERR("KOSync", "Response buffer allocation failed (%d bytes)", evt->data_len); - } - } - return ESP_OK; + return false; } +} // namespace + +KOReaderSyncClient::Error KOReaderSyncClient::authenticate() { + lastHttpCode = 0; + if (!KOREADER_STORE.hasCredentials()) { + LOG_DBG("KOSync", "No credentials configured"); + return NO_CREDENTIALS; + } + + const std::string url = KOREADER_STORE.getBaseUrl() + "/users/auth"; + LOG_DBG("KOSync", "Authenticating: %s (heap: %u)", url.c_str(), (unsigned)ESP.getFreeHeap()); + if (insufficientHeap()) return LOW_MEMORY; -// Create configured esp_http_client with small TLS buffers -esp_http_client_handle_t createClient(const char* url, ResponseBuffer* buf, - esp_http_client_method_t method = HTTP_METHOD_GET) { - esp_http_client_config_t config = {}; - config.url = url; - config.event_handler = httpEventHandler; - config.user_data = buf; - config.method = method; - config.timeout_ms = 15000; - config.buffer_size = HTTP_BUF_SIZE; - config.buffer_size_tx = HTTP_BUF_SIZE; - config.crt_bundle_attach = esp_crt_bundle_attach; - - // HTTP Basic Auth for Calibre-Web-Automated compatibility - config.username = KOREADER_STORE.getUsername().c_str(); - config.password = KOREADER_STORE.getPassword().c_str(); - config.auth_type = HTTP_AUTH_TYPE_BASIC; - - esp_http_client_handle_t client = esp_http_client_init(&config); - if (!client) return nullptr; - - // KOSync auth headers - if (esp_http_client_set_header(client, "Accept", "application/vnd.koreader.v1+json") != ESP_OK || - esp_http_client_set_header(client, "x-auth-user", KOREADER_STORE.getUsername().c_str()) != ESP_OK || - esp_http_client_set_header(client, "x-auth-key", KOREADER_STORE.getMd5Password().c_str()) != ESP_OK) { - LOG_ERR("KOSync", "Failed to set auth headers"); - esp_http_client_cleanup(client); - return nullptr; + freeink::SecureHttpClient http; + http.setInsecure(); + if (!http.begin(url)) { + LOG_ERR("KOSync", "Bad URL: %s", url.c_str()); + return NETWORK_ERROR; } + applyAuthHeaders(http); + const int httpCode = http.GET(); + http.end(); + lastHttpCode = httpCode; + + LOG_DBG("KOSync", "Auth response: %d", httpCode); - return client; + if (httpCode <= 0) return NETWORK_ERROR; + if (httpCode == 200) return OK; + if (httpCode == 401) return AUTH_FAILED; + return SERVER_ERROR; } -} // namespace -KOReaderSyncClient::Error KOReaderSyncClient::authenticate() { +KOReaderSyncClient::Error KOReaderSyncClient::createUser() { lastHttpCode = 0; if (!KOREADER_STORE.hasCredentials()) { LOG_DBG("KOSync", "No credentials configured"); return NO_CREDENTIALS; } - std::string url = KOREADER_STORE.getBaseUrl() + "/users/auth"; - const uint32_t freeHeap = ESP.getFreeHeap(); - LOG_DBG("KOSync", "Authenticating: %s (heap: %u)", url.c_str(), (unsigned)freeHeap); - if (freeHeap < MIN_HEAP_FOR_TLS) { - LOG_ERR("KOSync", "Insufficient heap for TLS handshake: %u bytes free (need %u)", freeHeap, MIN_HEAP_FOR_TLS); - return LOW_MEMORY; - } + const std::string url = KOREADER_STORE.getBaseUrl() + "/users/create"; + LOG_DBG("KOSync", "Creating account: %s (heap: %u)", url.c_str(), (unsigned)ESP.getFreeHeap()); + if (insufficientHeap()) return LOW_MEMORY; - ResponseBuffer buf; - esp_http_client_handle_t client = createClient(url.c_str(), &buf); - if (!client) return NETWORK_ERROR; + JsonDocument doc; + doc["username"] = KOREADER_STORE.getUsername(); + doc["password"] = KOREADER_STORE.getMd5Password(); + std::string body; + serializeJson(doc, body); - esp_err_t err = esp_http_client_perform(client); - const int httpCode = esp_http_client_get_status_code(client); + freeink::SecureHttpClient http; + http.setInsecure(); + if (!http.begin(url)) { + LOG_ERR("KOSync", "Bad URL: %s", url.c_str()); + return NETWORK_ERROR; + } + http.addHeader("Accept", "application/vnd.koreader.v1+json"); + http.addHeader("Content-Type", "application/json"); + const int httpCode = http.sendRequest("POST", body); + http.end(); lastHttpCode = httpCode; - esp_http_client_cleanup(client); - LOG_DBG("KOSync", "Auth response: %d (err: %d)", httpCode, err); + LOG_DBG("KOSync", "Create user response: %d", httpCode); - if (err != ESP_OK) return NETWORK_ERROR; - if (httpCode == 200) return OK; - if (httpCode == 401) return AUTH_FAILED; + if (httpCode <= 0) return NETWORK_ERROR; + if (httpCode == 200 || httpCode == 201) return OK; + if (httpCode == 402) return USER_EXISTS; return SERVER_ERROR; } @@ -135,30 +123,31 @@ KOReaderSyncClient::Error KOReaderSyncClient::getProgress(const std::string& doc return NO_CREDENTIALS; } - std::string url = KOREADER_STORE.getBaseUrl() + "/syncs/progress/" + documentHash; - const uint32_t freeHeap = ESP.getFreeHeap(); - LOG_DBG("KOSync", "Getting progress: %s (heap: %u)", url.c_str(), (unsigned)freeHeap); - if (freeHeap < MIN_HEAP_FOR_TLS) { - LOG_ERR("KOSync", "Insufficient heap for TLS handshake: %u bytes free (need %u)", freeHeap, MIN_HEAP_FOR_TLS); - return LOW_MEMORY; - } - - ResponseBuffer buf; - esp_http_client_handle_t client = createClient(url.c_str(), &buf); - if (!client) return NETWORK_ERROR; + const std::string url = KOREADER_STORE.getBaseUrl() + "/syncs/progress/" + documentHash; + LOG_DBG("KOSync", "Getting progress: %s (heap: %u)", url.c_str(), (unsigned)ESP.getFreeHeap()); + if (insufficientHeap()) return LOW_MEMORY; - esp_err_t err = esp_http_client_perform(client); - const int httpCode = esp_http_client_get_status_code(client); + freeink::SecureHttpClient http; + http.setInsecure(); + if (!http.begin(url)) { + LOG_ERR("KOSync", "Bad URL: %s", url.c_str()); + return NETWORK_ERROR; + } + applyAuthHeaders(http); + const int httpCode = http.GET(); lastHttpCode = httpCode; - esp_http_client_cleanup(client); - LOG_DBG("KOSync", "Get progress response: %d (err: %d)", httpCode, err); + LOG_DBG("KOSync", "Get progress response: %d", httpCode); - if (err != ESP_OK) return NETWORK_ERROR; + if (httpCode <= 0) { + http.end(); + return NETWORK_ERROR; + } - if (httpCode == 200 && buf.data) { + if (httpCode == 200) { JsonDocument doc; - const DeserializationError error = deserializeJson(doc, buf.data); + const DeserializationError error = deserializeJson(doc, http.getString().c_str()); + http.end(); if (error) { LOG_ERR("KOSync", "JSON parse failed: %s", error.c_str()); @@ -172,10 +161,29 @@ KOReaderSyncClient::Error KOReaderSyncClient::getProgress(const std::string& doc outProgress.deviceId = doc["device_id"].as(); outProgress.timestamp = doc["timestamp"].as(); + // Extended crosspoint-sync field; absent on plain kosync servers. + outProgress.position.reset(); + const JsonObjectConst pos = doc["position"].as(); + if (!pos.isNull()) { + KOReaderRichPosition rich; + rich.pctQ = pos["pctQ"].as(); + rich.spineIndex = pos["spine"].as(); + rich.pageNumber = pos["page"].as(); + const uint16_t pages = pos["pages"].as(); + rich.totalPages = pages > 0 ? pages : 1; + const uint16_t para = pos["para"].as(); + if (para > 0) rich.paragraphIndex = para; + rich.xpath = pos["xpath"].as() ? pos["xpath"].as() : ""; + LOG_DBG("KOSync", "Got rich position: spine=%u page=%u/%u para=%u", rich.spineIndex, rich.pageNumber, + rich.totalPages, para); + outProgress.position = std::move(rich); + } + LOG_DBG("KOSync", "Got progress: %.2f%% at %s", outProgress.percentage * 100, outProgress.progress.c_str()); return OK; } + http.end(); if (httpCode == 401) return AUTH_FAILED; if (httpCode == 404) return NOT_FOUND; return SERVER_ERROR; @@ -188,46 +196,56 @@ KOReaderSyncClient::Error KOReaderSyncClient::updateProgress(const KOReaderProgr return NO_CREDENTIALS; } - std::string url = KOREADER_STORE.getBaseUrl() + "/syncs/progress"; - const uint32_t freeHeap = ESP.getFreeHeap(); - LOG_DBG("KOSync", "Updating progress: %s (heap: %u)", url.c_str(), (unsigned)freeHeap); - if (freeHeap < MIN_HEAP_FOR_TLS) { - LOG_ERR("KOSync", "Insufficient heap for TLS handshake: %u bytes free (need %u)", freeHeap, MIN_HEAP_FOR_TLS); - return LOW_MEMORY; - } + const std::string url = KOREADER_STORE.getBaseUrl() + "/syncs/progress"; + LOG_DBG("KOSync", "Updating progress: %s (heap: %u)", url.c_str(), (unsigned)ESP.getFreeHeap()); + if (insufficientHeap()) return LOW_MEMORY; // Build JSON body JsonDocument doc; doc["document"] = progress.document; + if (progress.metadata.has_value()) { + auto meta = doc["metadata"].to(); + meta["filename"] = progress.metadata->filename; + meta["title"] = progress.metadata->title; + meta["authors"] = progress.metadata->authors; + } doc["progress"] = progress.progress; doc["percentage"] = progress.percentage; doc["device"] = DEVICE_NAME; doc["device_id"] = DEVICE_ID; + if (progress.position.has_value()) { + // Extended crosspoint-sync field; kosync servers ignore unknown keys. + const auto& p = *progress.position; + auto pos = doc["position"].to(); + pos["pctQ"] = p.pctQ; + pos["spine"] = p.spineIndex; + pos["page"] = p.pageNumber; + pos["pages"] = p.totalPages; + if (p.paragraphIndex.has_value()) pos["para"] = *p.paragraphIndex; + // Server rejects the whole position object if xpath exceeds 120 bytes. + if (!p.xpath.empty() && p.xpath.size() <= 120) pos["xpath"] = p.xpath; + } std::string body; serializeJson(doc, body); LOG_DBG("KOSync", "Request body: %s", body.c_str()); - ResponseBuffer buf; - esp_http_client_handle_t client = createClient(url.c_str(), &buf, HTTP_METHOD_PUT); - if (!client) return NETWORK_ERROR; - - if (esp_http_client_set_header(client, "Content-Type", "application/json") != ESP_OK || - esp_http_client_set_post_field(client, body.c_str(), body.length()) != ESP_OK) { - LOG_ERR("KOSync", "Failed to set request body"); - esp_http_client_cleanup(client); + freeink::SecureHttpClient http; + http.setInsecure(); + if (!http.begin(url)) { + LOG_ERR("KOSync", "Bad URL: %s", url.c_str()); return NETWORK_ERROR; } - - esp_err_t err = esp_http_client_perform(client); - const int httpCode = esp_http_client_get_status_code(client); + applyAuthHeaders(http); + http.addHeader("Content-Type", "application/json"); + const int httpCode = http.sendRequest("PUT", body); + http.end(); lastHttpCode = httpCode; - esp_http_client_cleanup(client); - LOG_DBG("KOSync", "Update progress response: %d (err: %d)", httpCode, err); + LOG_DBG("KOSync", "Update progress response: %d", httpCode); - if (err != ESP_OK) return NETWORK_ERROR; + if (httpCode <= 0) return NETWORK_ERROR; if (httpCode == 200 || httpCode == 202) return OK; if (httpCode == 401) return AUTH_FAILED; return SERVER_ERROR; diff --git a/lib/KOReaderSync/KOReaderSyncClient.h b/lib/KOReaderSync/KOReaderSyncClient.h index 7c0208d9a9..643a0d2777 100644 --- a/lib/KOReaderSync/KOReaderSyncClient.h +++ b/lib/KOReaderSync/KOReaderSyncClient.h @@ -1,16 +1,46 @@ #pragma once +#include +#include #include +/** + * Optional document metadata sent alongside progress sync requests. + * Mirrors the metadata object added in KOReader PR #15306. + * The official sync server ignores this field; custom servers may use it. + */ +struct KOReaderMetadata { + std::string filename; // e.g. "my_book.epub" + std::string title; // Document title from EPUB metadata + std::string authors; // Author(s) from EPUB metadata +}; + +/** + * Rich CrossPoint position sent alongside progress uploads. Maps 1:1 onto the + * crosspoint-sync extended `position` object (see crosspoint-sync docs/API.md). + * The official KOSync server ignores unknown fields; crosspoint-sync stores it + * so CrossPoint<->CrossPoint sync is lossless instead of xpath-approximated. + */ +struct KOReaderRichPosition { + uint32_t pctQ = 0; // Percentage quantized 0..1,000,000 (authoritative) + uint16_t spineIndex = 0; // Spine (chapter) index + uint16_t pageNumber = 0; // Page within spine (layout-dependent hint) + uint16_t totalPages = 1; // Spine page count (layout-dependent hint) + std::optional paragraphIndex; // Synthetic 1-based paragraph index + std::string xpath; // KOReader-style xpath (server cap: 120 bytes) +}; + /** * Progress data from KOReader sync server. */ struct KOReaderProgress { - std::string document; // Document hash - std::string progress; // XPath-like progress string - float percentage; // Progress percentage (0.0 to 1.0) - std::string device; // Device name - std::string deviceId; // Device ID - int64_t timestamp; // Unix timestamp of last update + std::string document; // Document hash + std::string progress; // XPath-like progress string + float percentage; // Progress percentage (0.0 to 1.0) + std::string device; // Device name + std::string deviceId; // Device ID + int64_t timestamp; // Unix timestamp of last update + std::optional metadata; // Optional document metadata + std::optional position; // Optional rich position (crosspoint-sync servers only) }; /** @@ -29,7 +59,17 @@ struct KOReaderProgress { */ class KOReaderSyncClient { public: - enum Error { OK = 0, NO_CREDENTIALS, NETWORK_ERROR, AUTH_FAILED, SERVER_ERROR, JSON_ERROR, NOT_FOUND, LOW_MEMORY }; + enum Error { + OK = 0, + NO_CREDENTIALS, + NETWORK_ERROR, + AUTH_FAILED, + SERVER_ERROR, + JSON_ERROR, + NOT_FOUND, + LOW_MEMORY, + USER_EXISTS + }; /** * Authenticate with the sync server (validate credentials). @@ -37,6 +77,14 @@ class KOReaderSyncClient { */ static Error authenticate(); + /** + * Register a new account on the sync server using the stored credentials + * (POST /users/create with the MD5 auth key — the server never sees the + * plain password). + * @return OK on success, USER_EXISTS if the username is taken + */ + static Error createUser(); + /** * Get reading progress for a document. * @param documentHash The document hash (from KOReaderDocumentId) diff --git a/lib/KOReaderSync/ProgressMapper.cpp b/lib/KOReaderSync/ProgressMapper.cpp index 2f1ab97f35..cdd72eedd8 100644 --- a/lib/KOReaderSync/ProgressMapper.cpp +++ b/lib/KOReaderSync/ProgressMapper.cpp @@ -709,12 +709,13 @@ SavedProgressPosition ProgressMapper::toSavedProgress(const std::shared_ptr 1) ? static_cast(pos.pageNumber) / static_cast(pos.totalPages - 1) : 0.0f; result.percentage = epub->calculateProgress(pos.spineIndex, intra); - // Progress-based XPath correctly handles both

    and

  • positions. - result.xpath = ChapterXPathResolver::findXPathForProgress(epub, pos.spineIndex, intra); - // Fall back to paragraph-index lookup when progress-based resolution fails. - if (result.xpath.empty() && pos.hasParagraphIndex && pos.paragraphIndex > 0) { + if (pos.hasParagraphIndex && pos.paragraphIndex > 0) { result.xpath = ChapterXPathResolver::findXPathForParagraph(epub, pos.spineIndex, pos.paragraphIndex); } + // Fall back to progress-based XPath, then synthetic progress mapping. + if (result.xpath.empty()) { + result.xpath = ChapterXPathResolver::findXPathForProgress(epub, pos.spineIndex, intra); + } if (result.xpath.empty()) { result.xpath = generateXPath(epub, pos.spineIndex, intra); } @@ -723,6 +724,59 @@ SavedProgressPosition ProgressMapper::toSavedProgress(const std::shared_ptr ProgressMapper::fromRichPosition(const std::shared_ptr& epub, + const KOReaderRichPosition& rich, + GfxRenderer& renderer) { + const int spineCount = epub->getSpineItemsCount(); + if (static_cast(rich.spineIndex) >= spineCount) { + LOG_DBG("PM", "Rich position spine %u out of range (%d spine items)", rich.spineIndex, spineCount); + return std::nullopt; + } + + CrossPointPosition result{}; + result.spineIndex = rich.spineIndex; + + Section tempSection(epub, result.spineIndex, renderer); + const auto cachedCount = tempSection.getCachedPageCount(); + if (!cachedCount || *cachedCount <= 0) { + // No local layout for the target spine yet; the percentage/xpath mapping + // handles density estimation better than a blind copy of remote pages. + LOG_DBG("PM", "Rich position spine %u has no cached page count", rich.spineIndex); + return std::nullopt; + } + result.totalPages = *cachedCount; + + const int remotePages = rich.totalPages > 0 ? rich.totalPages : 1; + if (result.totalPages == remotePages) { + // Identical layout (same render settings) — the page transfers losslessly. + result.pageNumber = std::min(rich.pageNumber, result.totalPages - 1); + LOG_DBG("PM", "Rich position exact: spine=%d page=%d/%d", result.spineIndex, result.pageNumber, result.totalPages); + return result; + } + + // Layout differs; the paragraph LUT is the most accurate anchor we have. + if (rich.paragraphIndex.has_value()) { + const auto lutPage = tempSection.getPageForParagraphIndex(*rich.paragraphIndex); + if (lutPage.has_value()) { + result.paragraphIndex = *rich.paragraphIndex; + result.hasParagraphIndex = true; + result.pageNumber = std::min(*lutPage, result.totalPages - 1); + LOG_DBG("PM", "Rich position para %u -> spine=%d page=%d/%d", *rich.paragraphIndex, result.spineIndex, + result.pageNumber, result.totalPages); + return result; + } + } + + // Fall back to the intra-spine page fraction. + const float intra = + (remotePages > 1) ? static_cast(rich.pageNumber) / static_cast(remotePages - 1) : 0.0f; + result.pageNumber = std::max( + 0, std::min(static_cast(intra * static_cast(result.totalPages - 1) + 0.5f), result.totalPages - 1)); + LOG_DBG("PM", "Rich position scaled: spine=%d remote %u/%d -> page=%d/%d", result.spineIndex, rich.pageNumber, + remotePages, result.pageNumber, result.totalPages); + return result; +} + CrossPointPosition ProgressMapper::toCrossPoint(const std::shared_ptr& epub, const SavedProgressPosition& koPos, GfxRenderer& renderer, int currentSpineIndex, int totalPagesInCurrentSpine, int fallbackTotalPages) { diff --git a/lib/KOReaderSync/ProgressMapper.h b/lib/KOReaderSync/ProgressMapper.h index d48da2e329..74dbf850ff 100644 --- a/lib/KOReaderSync/ProgressMapper.h +++ b/lib/KOReaderSync/ProgressMapper.h @@ -3,8 +3,11 @@ #include #include +#include #include +#include "KOReaderSyncClient.h" + /** * CrossPoint position representation. */ @@ -65,6 +68,20 @@ class ProgressMapper { GfxRenderer& renderer, int currentSpineIndex = -1, int totalPagesInCurrentSpine = 0, int fallbackTotalPages = 0); + /** + * Convert a rich CrossPoint position (downloaded from a crosspoint-sync + * server) directly to a CrossPoint position, without XPath approximation. + * When the local layout matches the uploader's (same spine page count) the + * page transfers losslessly; otherwise the paragraph LUT or the intra-spine + * page fraction is used. + * + * @return The position, or std::nullopt when the rich position cannot be + * applied (spine out of range, no section cache) and the caller + * should fall back to toCrossPoint(). + */ + static std::optional fromRichPosition(const std::shared_ptr& epub, + const KOReaderRichPosition& rich, GfxRenderer& renderer); + private: /** * Generate a fallback XPath by streaming the spine item's XHTML and resolving diff --git a/lib/Logging/Logging.cpp b/lib/Logging/Logging.cpp index 7b483657bd..52837f45a7 100644 --- a/lib/Logging/Logging.cpp +++ b/lib/Logging/Logging.cpp @@ -1,5 +1,8 @@ #include "Logging.h" +#include +#include + #include #define MAX_ENTRY_LEN 256 @@ -59,9 +62,16 @@ void logPrintf(const char* level, const char* origin, const char* format, ...) { } } va_end(args); +#if FREEINK_LOG_TRANSPORT == FREEINK_LOG_TRANSPORT_ROM_PRINTF + // IDF/ROM console path for boards monitored over USB-Serial-JTAG, where the + // HWCDC `operator bool` reads false under `pio device monitor` and logs would + // otherwise be silently dropped (e.g. Sticky). + esp_rom_printf("%s", buf); +#else if (logSerial) { logSerial.print(buf); } +#endif addToLogRingBuffer(buf); } diff --git a/lib/Logging/Logging.h b/lib/Logging/Logging.h index 8784a3418f..3b4283a990 100644 --- a/lib/Logging/Logging.h +++ b/lib/Logging/Logging.h @@ -1,6 +1,10 @@ #pragma once +#include #include +#if defined(ARDUINO_USB_CDC_ON_BOOT) && ARDUINO_USB_CDC_ON_BOOT +#include +#endif #include @@ -27,7 +31,13 @@ won't trigger deprecation warnings. #define LOG_LEVEL 0 #endif +#if defined(ARDUINO_USB_CDC_ON_BOOT) && ARDUINO_USB_CDC_ON_BOOT static HWCDC& logSerial = Serial; +#define LOG_SERIAL_HAS_TX_TIMEOUT 1 +#else +static HardwareSerial& logSerial = Serial; +#define LOG_SERIAL_HAS_TX_TIMEOUT 0 +#endif void logPrintf(const char* level, const char* origin, const char* format, ...); diff --git a/lib/Memory/BuildScratch.cpp b/lib/Memory/BuildScratch.cpp new file mode 100644 index 0000000000..aaae6f0bdd --- /dev/null +++ b/lib/Memory/BuildScratch.cpp @@ -0,0 +1,51 @@ +#include "BuildScratch.h" + +#include + +#include + +namespace buildscratch { +namespace { +uint8_t* block = nullptr; +size_t blockLen = 0; +// atomic exchange so an opportunistic claim from another task can never +// double-hand-out the block (single core, but FreeRTOS preempts). +std::atomic claimed{false}; +} // namespace + +void lend(uint8_t* buf, const size_t len) { + if (block) { + LOG_ERR("SCR", "Build scratch lent twice; ignoring second lend"); + return; + } + block = buf; + blockLen = len; + claimed.store(false); +} + +void reclaim() { + if (claimed.load()) { + // A consumer still holds the block. The storage stays valid (it is the + // framebuffer allocation, never freed) but its contents are about to be + // clobbered; the consumer's output will be garbage. Loud log so a + // lifetime bug is visible instead of a silent corrupt decode. + LOG_ERR("SCR", "Build scratch reclaimed while still claimed"); + } + block = nullptr; + blockLen = 0; + claimed.store(false); +} + +uint8_t* claim(const size_t minLen, size_t* lenOut) { + if (!block || blockLen < minLen) return nullptr; + bool expected = false; + if (!claimed.compare_exchange_strong(expected, true)) return nullptr; + if (lenOut) *lenOut = blockLen; + return block; +} + +void release(const uint8_t* p) { + if (p && p == block) claimed.store(false); +} + +} // namespace buildscratch diff --git a/lib/Memory/BuildScratch.h b/lib/Memory/BuildScratch.h new file mode 100644 index 0000000000..56237fb320 --- /dev/null +++ b/lib/Memory/BuildScratch.h @@ -0,0 +1,27 @@ +#pragma once + +#include +#include + +// Registry for the framebuffer bytes lent out during a build phase +// (GfxRenderer::FrameBufferLoan). The lender (GfxRenderer) deposits the block +// with lend()/reclaim(); a memory-hungry consumer (e.g. InflateStream's ~43KB +// tinfl state + window) may claim() it instead of allocating from the heap. +// +// Exactly one claimant at a time; claim() returns nullptr when the block is +// absent or already claimed, and consumers must fall back to the heap. The +// underlying storage is the framebuffer allocation itself, which is never +// freed -- so even the pathological case (reclaim() while still claimed, which +// logs an error) reads garbage, never freed memory. +namespace buildscratch { + +// Lender side (GfxRenderer only). +void lend(uint8_t* buf, size_t len); +void reclaim(); + +// Consumer side: exclusive claim of the whole block if it is at least minLen +// bytes; nullptr means "use the heap". Release with the same pointer. +uint8_t* claim(size_t minLen, size_t* lenOut = nullptr); +void release(const uint8_t* p); + +} // namespace buildscratch diff --git a/lib/MiniBidi/BidiUtils.cpp b/lib/MiniBidi/BidiUtils.cpp index 07f061f88f..168063f89f 100644 --- a/lib/MiniBidi/BidiUtils.cpp +++ b/lib/MiniBidi/BidiUtils.cpp @@ -11,6 +11,13 @@ extern "C" { #include #include +#include + +// Guards the static bidi_char buffers in applyBidiVisual() and +// computeVisualWordOrder(). The bidi+shaping pipeline is not reentrant; +// this mutex serialises access so multi-core callers don't corrupt each +// other's intermediate state. +static std::mutex bidiMutex; namespace { @@ -68,11 +75,25 @@ int detectParagraphLevel(const char* utf8, const int fallbackLevel, const int ma return fallbackLevel & 1; } +bool isTransparentMark(const uint32_t cp) { + // RTL-script combining marks: Hebrew niqqud/cantillation and Arabic + // harakat/Quranic annotation. Transparent for Arabic joining (do_shape + // skips them), zero-advance for measurement, and rendered as overlays on + // the preceding base glyph when the active font carries their glyphs. + // The cp >= 0x0591 guard keeps Latin combining marks (U+0300-U+036F, also + // NSM) on their existing utf8IsCombiningMark() rendering path. + return cp >= 0x0591 && bidi_class(cp) == NSM; +} + bool applyBidiVisual(const char* utf8, std::string& out, int paragraphLevel) { if (!utf8 || !*utf8) return false; + const std::lock_guard lock(bidiMutex); static bidi_char line[BIDI_MAX_LINE]; + static bidi_char shaped[BIDI_MAX_LINE]; int count = 0; + int lastBase = -1; // last non-formatter character (mintty's ibase) + uint8_t pendingJoiners = 0; // ZWJ/ZWNJ seen since lastBase auto* p = reinterpret_cast(utf8); while (*p) { if (count >= BIDI_MAX_LINE) { @@ -84,18 +105,66 @@ bool applyBidiVisual(const char* utf8, std::string& out, int paragraphLevel) { if (!cp || cp == REPLACEMENT_GLYPH) break; line[count].origwc = line[count].wc = cp; line[count].index = static_cast(count); + line[count].joiners = 0; + + // Flag Arabic joining formatters mintty-style (termline.c): the ZWJ/ZWNJ + // goes into the low nibble of the character it follows and the high + // nibble of the character it precedes. Flags are assigned in logical + // order here; do_shape() reads them after reordering. + if (cp == 0x200C || cp == 0x200D) { + const uint8_t joiner = (cp == 0x200D) ? ZWJ : ZWNJ; + if (lastBase >= 0) line[lastBase].joiners |= joiner; + pendingJoiners |= joiner; + } else { + line[count].joiners = pendingJoiners << 4; + pendingJoiners = 0; + lastBase = count; + } count++; } if (!count) return false; const bool autodir = (paragraphLevel < 0); const int level = autodir ? 0 : (paragraphLevel & 1); + + // Order matters (mintty does the same): do_bidi() first to obtain visual + // order, then do_shape() — contextual forms are resolved from *visual* + // adjacency, and shaping presentation forms must never be reordered. do_bidi(autodir, level, line, count); + do_shape(line, shaped, count); out.clear(); out.reserve(std::strlen(utf8)); + // Lam-Alef collapse sentinel and zero-width joining formatters have done + // their job during shaping and have no glyphs to render. + const auto filtered = [](const uint32_t cp) { return cp == LIGATURE_PLACEHOLDER || cp == 0x200C || cp == 0x200D; }; for (int i = 0; i < count; i++) { - utf8AppendCodepoint(line[i].wc, out); + const uint32_t cp = shaped[i].wc; + if (filtered(cp)) continue; + if (!isTransparentMark(cp)) { + utf8AppendCodepoint(cp, out); + continue; + } + // UAX#9 rule L3: reversing an RTL run leaves combining marks *before* + // their base character. The renderer overlays a mark on the most + // recently drawn glyph, so emit the base first, then its marks in + // logical order. `index` is the original logical position: a base + // following its marks with a *lower* index means the run was reversed. + int j = i; // [i, j) = the run of marks (and filtered entries) + while (j < count && (filtered(shaped[j].wc) || isTransparentMark(shaped[j].wc))) j++; + if (j < count && shaped[j].index < shaped[i].index) { + utf8AppendCodepoint(shaped[j].wc, out); + for (int k = j - 1; k >= i; k--) { + if (isTransparentMark(shaped[k].wc)) utf8AppendCodepoint(shaped[k].wc, out); + } + i = j; // base already emitted + } else { + // Unreversed (or trailing, base-less) marks already follow their base. + for (int k = i; k < j; k++) { + if (isTransparentMark(shaped[k].wc)) utf8AppendCodepoint(shaped[k].wc, out); + } + i = j - 1; + } } return true; } @@ -105,6 +174,7 @@ bool computeVisualWordOrder(const std::vector& words, bool paragrap visualOrder.clear(); const size_t nWords = words.size(); if (nWords <= 1 || nWords > BIDI_MAX_LINE) return false; + const std::lock_guard lock(bidiMutex); static bidi_char line[BIDI_MAX_LINE]; int count = 0; @@ -121,6 +191,7 @@ bool computeVisualWordOrder(const std::vector& words, bool paragrap if (!cp || cp == REPLACEMENT_GLYPH) break; line[count].origwc = line[count].wc = cp; line[count].index = static_cast(w); + line[count].joiners = 0; count++; } @@ -131,6 +202,7 @@ bool computeVisualWordOrder(const std::vector& words, bool paragrap } line[count].origwc = line[count].wc = ' '; line[count].index = static_cast(nWords); + line[count].joiners = 0; count++; } } diff --git a/lib/MiniBidi/BidiUtils.h b/lib/MiniBidi/BidiUtils.h index c36c9a36da..466375c84e 100644 --- a/lib/MiniBidi/BidiUtils.h +++ b/lib/MiniBidi/BidiUtils.h @@ -13,6 +13,14 @@ bool startsWithRtl(const char* utf8, int maxStrongChars = RTL_PARAGRAPH_PROBE_DE int detectParagraphLevel(const char* utf8, int fallbackLevel = 0, int maxStrongChars = 64); +// True for RTL-script non-spacing marks (Hebrew niqqud/cantillation, Arabic +// harakat and Quranic annotation): zero-width for measurement, transparent for +// Arabic joining, and rendered as overlays on the preceding base glyph when +// the active font carries their glyphs (SD fonts; built-in fonts don't). +// Latin combining marks (U+0300-U+036F) intentionally return false — they are +// handled by the utf8IsCombiningMark() rendering path. +bool isTransparentMark(uint32_t cp); + // paragraphLevel: -1 = auto-detect, 0 = LTR, 1 = RTL bool applyBidiVisual(const char* utf8, std::string& out, int paragraphLevel = -1); diff --git a/lib/MiniBidi/bidiclasses.t b/lib/MiniBidi/bidiclasses.t index f300d3aedb..10a0ccf67f 100644 --- a/lib/MiniBidi/bidiclasses.t +++ b/lib/MiniBidi/bidiclasses.t @@ -1,15 +1,19 @@ -/* bidiclasses.t — bidi class table for CrossPoint Hebrew/English epub. +/* bidiclasses.t — bidi class table for CrossPoint RTL (Hebrew/Arabic) epub. * * Coverage rationale: - * Hebrew + English is the primary target. However, CrossPoint renders - * Latin and Cyrillic scripts for many other languages, so these MUST be - * classified as L (not fall through to ON) to avoid regression when they - * appear adjacent to Hebrew runs. + * Hebrew and Arabic-script languages (Arabic, Farsi, Urdu, Sindhi, Pashto, + * Kurdish) are the RTL targets. CrossPoint also renders Latin and Cyrillic + * scripts for many other languages, so these MUST be classified as L (not + * fall through to ON) to avoid regression when they appear adjacent to + * RTL runs. * * Scripts NOT in this table fall through to ON — correct per UAX#9 for - * scripts CrossPoint's fonts don't support (CJK, Arabic, Devanagari, etc.) + * scripts CrossPoint's fonts don't support (CJK, Devanagari, etc.) * ON is the right class for "unknown" — it behaves neutrally. * + * Arabic ranges are sourced from Unicode UCD extracted/DerivedBidiClass.txt + * (values verified against Unicode 17.0.0). + * * Entries sorted ascending by first (binary search requirement). */ @@ -84,6 +88,36 @@ {0x05D0, 0x05EA, R}, /* alef … tav */ {0x05F0, 0x05F4, R}, /* alternative forms + geresh/gershayim */ +/* ── Arabic / Perso-Arabic (DerivedBidiClass.txt) ───────────────────── */ +/* Letters are AL (Arabic Letter), harakat/marks are NSM, Arabic-Indic + digits are AN, extended (Farsi/Urdu) digits are EN. + 0x0606-0x0607, 0x060E-0x060F, 0x06DE, 0x06E9 are ON — fall through. */ +{0x0600, 0x0605, AN}, /* Arabic number signs (Cf) */ +{0x0608, 0x0608, AL}, /* Arabic ray */ +{0x0609, 0x060A, ET}, /* per mille / per ten thousand */ +{0x060B, 0x060B, AL}, /* afghani sign */ +{0x060C, 0x060C, CS}, /* Arabic comma */ +{0x060D, 0x060D, AL}, /* Arabic date separator */ +{0x0610, 0x061A, NSM}, /* honorifics + small marks */ +{0x061B, 0x061F, AL}, /* semicolon, ALM, end-of-text, hamza mark, question mark */ +{0x0620, 0x064A, AL}, /* core Arabic letters + tatweel */ +{0x064B, 0x065F, NSM}, /* harakat (fathatan … wavy hamza below) */ +{0x0660, 0x0669, AN}, /* Arabic-Indic digits ٠-٩ */ +{0x066A, 0x066A, ET}, /* Arabic percent sign */ +{0x066B, 0x066C, AN}, /* decimal / thousands separators */ +{0x066D, 0x066F, AL}, /* five-pointed star, dotless beh/qaf */ +{0x0670, 0x0670, NSM}, /* superscript alef */ +{0x0671, 0x06D5, AL}, /* extended letters: Farsi, Urdu, Sindhi, Pashto, Kurdish */ +{0x06D6, 0x06DC, NSM}, /* Quranic annotation marks */ +{0x06DD, 0x06DD, AN}, /* end of ayah */ +{0x06DF, 0x06E4, NSM}, +{0x06E5, 0x06E6, AL}, /* small waw / small yeh */ +{0x06E7, 0x06E8, NSM}, +{0x06EA, 0x06ED, NSM}, +{0x06EE, 0x06EF, AL}, /* dal/reh with inverted V */ +{0x06F0, 0x06F9, EN}, /* extended Arabic-Indic digits ۰-۹ (Farsi/Urdu) — EN per UCD */ +{0x06FA, 0x06FF, AL}, + /* ── Latin Extended Additional (L) ─────────────────────────────────── */ /* Covers accented chars for Vietnamese, Welsh, Romanian, etc. Not currently rendered by CrossPoint fonts, but costs only 2 table rows. */ @@ -110,6 +144,14 @@ {0x2069, 0x2069, PDI}, {0x206A, 0x206F, BN}, +/* ── Arabic presentation forms (output of do_shape()) ───────────────── */ +/* Contextual/ligature forms emitted by the shaper must classify as AL so + a reshaped line still resolves RTL. Ranges per DerivedBidiClass.txt; + 0xFBC3-0xFBD2 are ON — fall through. */ +{0xFB50, 0xFBC2, AL}, /* Presentation Forms-A: Perso-Arabic contextual forms */ +{0xFBD3, 0xFBFF, AL}, /* Presentation Forms-A: NG … Farsi Yeh forms */ +{0xFE70, 0xFE74, AL}, /* Presentation Forms-B: harakat isolated forms */ +{0xFE76, 0xFEFC, AL}, /* Presentation Forms-B: contextual forms + Lam-Alef ligatures */ /* ── Byte Order Mark ────────────────────────────────────────────────── */ {0xFEFF, 0xFEFF, BN}, diff --git a/lib/MiniBidi/minibidi.c b/lib/MiniBidi/minibidi.c index 262837020d..68d90c26d4 100644 --- a/lib/MiniBidi/minibidi.c +++ b/lib/MiniBidi/minibidi.c @@ -127,6 +127,345 @@ ucschar mirror(ucschar c) { return p ? p->to : c; } +/* ═══════════════════════════════════════════════════════════════════════ + * Arabic contextual shaping — do_shape() + * + * Ported from mintty src/minibidi.c (https://github.com/mintty/mintty), + * original author Ahmad Khalifa (www.arabeyes.org), maintained by + * Thomas Wolff. MIT licence. + * + * CrossPoint deviations from the upstream code, each marked inline: + * 1. Joining-context lookups skip NSM marks (harakat). mintty stores + * combining marks out-of-line in terminal cells, so they never appear + * in its bidi_char array; in CrossPoint they are real array entries + * and must be transparent for joining (Unicode joining type T). + * 2. The Alef absorbed into a Lam-Alef ligature is overwritten with + * LIGATURE_PLACEHOLDER instead of a space: a terminal must keep the + * cell, a proportional-text renderer must drop the character. + * 3. The STYPE/SISOLATED macros became functions backed by a second + * lookup table covering Perso-Arabic letters outside mintty's native + * U+0621–U+064A range (Farsi پ چ ژ گ, Urdu ٹ ڈ ڑ ں ہ ے, plus Sindhi/ + * Pashto/Kurdish letters). Joining types are sourced from Unicode + * ArabicShaping.txt and presentation forms from UnicodeData.txt + * (Arabic Presentation Forms-A), both Unicode 17.0.0. Letters with a + * joining type but no presentation-form codepoints keep their base + * codepoint (neighbours still shape correctly around them). + * U+200C/U+200D also get their ArabicShaping.txt types (U and C) so + * that in-stream ZWJ/ZWNJ — which mintty never has in its array — + * affect adjacency the same way the joiners flags do. + * ═══════════════════════════════════════════════════════════════════════ */ + +/* Shaping Types (mintty) */ +enum { + SL, /* Left-Joining, doesn't exist in U+0600 - U+06FF */ + SR, /* Right-Joining, i.e. has Isolated, Final */ + SD, /* Dual-Joining, i.e. has Isolated, Final, Initial, Medial */ + SU, /* Non-Joining */ + SC /* Join-Causing, like U+0640 (TATWEEL) */ +}; + +typedef struct { + uchar type; + uchar form_b; /* isolated form = 0xFE00 + form_b (Presentation Forms-B) */ +} shape_node; + +/* Kept near the actual table, for verification. (mintty) */ +enum { SHAPE_FIRST = 0x621, SHAPE_LAST = 0x64A }; + +/* mintty's shapetypes[] — verbatim */ +static const shape_node shapetypes[] = { + /* index, Typ, Iso, Ligature Index */ + /* 621 */ {SU, 0x80}, + /* 622 */ {SR, 0x81}, + /* 623 */ {SR, 0x83}, + /* 624 */ {SR, 0x85}, + /* 625 */ {SR, 0x87}, + /* 626 */ {SD, 0x89}, + /* 627 */ {SR, 0x8D}, + /* 628 */ {SD, 0x8F}, + /* 629 */ {SR, 0x93}, + /* 62A */ {SD, 0x95}, + /* 62B */ {SD, 0x99}, + /* 62C */ {SD, 0x9D}, + /* 62D */ {SD, 0xA1}, + /* 62E */ {SD, 0xA5}, + /* 62F */ {SR, 0xA9}, + /* 630 */ {SR, 0xAB}, + /* 631 */ {SR, 0xAD}, + /* 632 */ {SR, 0xAF}, + /* 633 */ {SD, 0xB1}, + /* 634 */ {SD, 0xB5}, + /* 635 */ {SD, 0xB9}, + /* 636 */ {SD, 0xBD}, + /* 637 */ {SD, 0xC1}, + /* 638 */ {SD, 0xC5}, + /* 639 */ {SD, 0xC9}, + /* 63A */ {SD, 0xCD}, + /* 63B */ {SU, 0x0}, + /* 63C */ {SU, 0x0}, + /* 63D */ {SU, 0x0}, + /* 63E */ {SU, 0x0}, + /* 63F */ {SU, 0x0}, + /* 640 */ {SC, 0x0}, + /* 641 */ {SD, 0xD1}, + /* 642 */ {SD, 0xD5}, + /* 643 */ {SD, 0xD9}, + /* 644 */ {SD, 0xDD}, + /* 645 */ {SD, 0xE1}, + /* 646 */ {SD, 0xE5}, + /* 647 */ {SD, 0xE9}, + /* 648 */ {SR, 0xED}, + /* 649 */ {SR, 0xEF}, + /* 64A */ {SD, 0xF1}}; + +/* ── CrossPoint extension: joining types outside U+0621–U+064A ────────── + * Source: Unicode ArabicShaping.txt (joining type column). Ranges of + * letters sharing one type are collapsed. Sorted ascending (binary + * search). Anything not listed here or in shapetypes[] is SU. */ +static const struct { + ucschar first, last; + uchar type; +} xjointypes[] = { + {0x0620, 0x0620, SD}, /* kashmiri yeh */ + {0x066E, 0x066F, SD}, /* dotless beh/qaf */ + {0x0671, 0x0673, SR}, /* alef wasla + wavy-hamza alefs */ + {0x0675, 0x0677, SR}, /* high-hamza alef/waw */ + {0x0678, 0x0687, SD}, /* high-hamza yeh, beh group (ٹ ٺ ٻ … پ), hah group (چ ڇ) */ + {0x0688, 0x0699, SR}, /* dal group (ڈ ڊ ڌ …), reh group (ڑ ړ ژ …) */ + {0x069A, 0x06BF, SD}, /* seen/sad/feh/qaf/kaf/gaf/lam/noon groups (ک گ ں ھ …) */ + {0x06C0, 0x06C0, SR}, /* heh with yeh above */ + {0x06C1, 0x06C2, SD}, /* heh goal (ہ) */ + {0x06C3, 0x06CB, SR}, /* teh marbuta goal, waw group (ۆ ۇ ۋ …) */ + {0x06CC, 0x06CC, SD}, /* farsi yeh (ی) */ + {0x06CD, 0x06CD, SR}, /* yeh with tail */ + {0x06CE, 0x06CE, SD}, /* farsi yeh with V (Kurdish ێ) */ + {0x06CF, 0x06CF, SR}, /* waw with dot above */ + {0x06D0, 0x06D1, SD}, /* e (Pashto ې), yeh three dots below */ + {0x06D2, 0x06D3, SR}, /* yeh barree (ے ۓ) */ + {0x06D5, 0x06D5, SR}, /* ae (Kurdish ە) */ + {0x06EE, 0x06EF, SR}, /* dal/reh with inverted V */ + {0x06FA, 0x06FC, SD}, /* sheen/dad/ghain with dot below */ + {0x06FF, 0x06FF, SD}, /* heh with inverted V */ + {0x200C, 0x200C, SU}, /* ZWNJ — joining type U per ArabicShaping.txt */ + {0x200D, 0x200D, SC}, /* ZWJ — joining type C per ArabicShaping.txt */ +}; + +/* ── CrossPoint extension: presentation forms outside U+0621–U+064A ───── + * Source: UnicodeData.txt, Arabic Presentation Forms-A (U+FB50–U+FBFF). + * forms = number of consecutive presentation forms allocated for the + * letter, always in the order isolated, final, initial, medial (matching + * the SHAPE_* offsets below): 2 = isolated+final, 4 = all. + * Letters absent here have no presentation forms and keep their base + * codepoint. Sorted ascending (binary search). */ +static const struct { + ucschar cp; + ucschar isolated; + uchar forms; +} xshapeforms[] = { + {0x0671, 0xFB50, 2}, /* alef wasla */ + {0x0679, 0xFB66, 4}, /* tteh (Urdu ٹ) */ + {0x067A, 0xFB5E, 4}, /* tteheh */ + {0x067B, 0xFB52, 4}, /* beeh (Sindhi ٻ) */ + {0x067E, 0xFB56, 4}, /* peh (Farsi پ) */ + {0x067F, 0xFB62, 4}, /* teheh */ + {0x0680, 0xFB5A, 4}, /* beheh (Sindhi ڀ) */ + {0x0683, 0xFB76, 4}, /* nyeh (Sindhi ڃ) */ + {0x0684, 0xFB72, 4}, /* dyeh (Sindhi ڄ) */ + {0x0686, 0xFB7A, 4}, /* tcheh (Farsi چ) */ + {0x0687, 0xFB7E, 4}, /* tcheheh (Sindhi ڇ) */ + {0x0688, 0xFB88, 2}, /* ddal (Urdu ڈ) */ + {0x068C, 0xFB84, 2}, /* dahal (Sindhi ڌ) */ + {0x068D, 0xFB82, 2}, /* ddahal (Sindhi ڍ) */ + {0x068E, 0xFB86, 2}, /* dul (Sindhi ڎ) */ + {0x0691, 0xFB8C, 2}, /* rreh (Urdu ڑ) */ + {0x0698, 0xFB8A, 2}, /* jeh (Farsi ژ) */ + {0x06A4, 0xFB6A, 4}, /* veh (Kurdish ڤ) */ + {0x06A6, 0xFB6E, 4}, /* peheh (Sindhi ڦ) */ + {0x06A9, 0xFB8E, 4}, /* keheh (Farsi/Urdu ک) */ + {0x06AD, 0xFBD3, 4}, /* ng */ + {0x06AF, 0xFB92, 4}, /* gaf (Farsi/Urdu گ) */ + {0x06B1, 0xFB9A, 4}, /* ngoeh (Sindhi ڱ) */ + {0x06B3, 0xFB96, 4}, /* gueh (Sindhi ڳ) */ + {0x06BA, 0xFB9E, 2}, /* noon ghunna (Urdu ں) — dual-joining but only + isolated+final forms exist; initial/medial + contexts keep the base codepoint */ + {0x06BB, 0xFBA0, 4}, /* rnoon (Sindhi ڻ) */ + {0x06BE, 0xFBAA, 4}, /* heh doachashmee (Urdu ھ) */ + {0x06C0, 0xFBA4, 2}, /* heh with yeh above */ + {0x06C1, 0xFBA6, 4}, /* heh goal (Urdu ہ) */ + {0x06C5, 0xFBE0, 2}, /* kirghiz oe */ + {0x06C6, 0xFBD9, 2}, /* oe (Kurdish ۆ) */ + {0x06C7, 0xFBD7, 2}, /* u (ۇ) */ + {0x06C8, 0xFBDB, 2}, /* yu */ + {0x06C9, 0xFBE2, 2}, /* kirghiz yu */ + {0x06CB, 0xFBDE, 2}, /* ve */ + {0x06CC, 0xFBFC, 4}, /* farsi yeh (Farsi/Urdu ی) */ + {0x06D0, 0xFBE4, 4}, /* e (Pashto ې) */ + {0x06D2, 0xFBAE, 2}, /* yeh barree (Urdu ے) */ + {0x06D3, 0xFBB0, 2}, /* yeh barree with hamza above (ۓ) */ +}; + +/* Contextual form offsets from the isolated form — identical ordering in + Presentation Forms-A and -B, matching mintty's SFINAL/SINITIAL/SMEDIAL + (+1/+2/+3) macros. */ +enum { SHAPE_ISOLATED = 0, SHAPE_FINAL = 1, SHAPE_INITIAL = 2, SHAPE_MEDIAL = 3 }; + +/* STYPE equivalent (mintty macro → function to add the extended table) */ +static uchar stype(ucschar c) { + if (c >= SHAPE_FIRST && c <= SHAPE_LAST) return shapetypes[c - SHAPE_FIRST].type; + + int i = -1, j = lengthof(xjointypes); + while (j - i > 1) { + int k = (i + j) / 2; + if (c < xjointypes[k].first) + j = k; + else if (c > xjointypes[k].last) + i = k; + else + return xjointypes[k].type; + } + return SU; +} + +/* SISOLATED/SFINAL/SINITIAL/SMEDIAL equivalent. + form is one of the SHAPE_* offsets; returns c unchanged when the letter + has no presentation form allocated for that context. */ +static ucschar shape_form(ucschar c, uchar form) { + if (c >= SHAPE_FIRST && c <= SHAPE_LAST) { + const uchar form_b = shapetypes[c - SHAPE_FIRST].form_b; + return form_b ? 0xFE00 + form_b + form : c; + } + + int i = -1, j = lengthof(xshapeforms); + while (j - i > 1) { + int k = (i + j) / 2; + if (c < xshapeforms[k].cp) + j = k; + else if (c > xshapeforms[k].cp) + i = k; + else + return form < xshapeforms[k].forms ? xshapeforms[k].isolated + form : c; + } + return c; +} + +/* CrossPoint deviation 1: NSM marks (harakat) sit between letters in our + array but are transparent for joining (Unicode joining type T). These + helpers find the effective joining neighbour. */ +static int next_non_nsm(const bidi_char* line, int i, int count) { + int j = i + 1; + while (j < count && bidi_class(line[j].wc) == NSM) j++; + return j; +} + +static int prev_non_nsm(const bidi_char* line, int i) { + int j = i - 1; + while (j >= 0 && bidi_class(line[j].wc) == NSM) j--; + return j; +} + +/* The Main shaping function (mintty, structure preserved). + * + * line: visual-order buffer — must have been passed through do_bidi() first + * to: output buffer for the shaped data + * count: number of characters in line + */ +int do_shape(bidi_char* line, bidi_char* to, int count) { + for (int i = 0; i < count; i++) { + to[i] = line[i]; + int tempShape = stype(line[i].wc); + switch (tempShape) { + case SR: { /* Right-Joining, i.e. has Isolated, Final */ + const int nx = next_non_nsm(line, i, count); /* deviation 1: was i + 1 */ + tempShape = (nx < count) ? stype(line[nx].wc) : SU; + if (tempShape == SL || tempShape == SD || tempShape == SC) + to[i].wc = shape_form(line[i].wc, SHAPE_FINAL); + else + to[i].wc = shape_form(line[i].wc, SHAPE_ISOLATED); + break; + } + case SD: { /* Dual-Joining, i.e. has Isolated, Final, Initial, Medial */ + const int nx = next_non_nsm(line, i, count); /* deviation 1: was i + 1 */ + const int pv = prev_non_nsm(line, i); /* deviation 1: was i - 1 */ + + /* Make Ligatures */ + tempShape = (nx < count) ? stype(line[nx].wc) : SU; + if (line[i].wc == 0x644) { /* Lam: the Alef variant is at pv (visually left) */ + int ligFlag = 0; + switch (pv >= 0 ? line[pv].wc : 0) { + case 0x622: /* Alef with Madda above → لآ */ + ligFlag = 1; + to[i].wc = (tempShape == SL || tempShape == SD || tempShape == SC) ? 0xFEF6 : 0xFEF5; + break; + case 0x623: /* Alef with Hamza above → لأ */ + ligFlag = 1; + to[i].wc = (tempShape == SL || tempShape == SD || tempShape == SC) ? 0xFEF8 : 0xFEF7; + break; + case 0x625: /* Alef with Hamza below → لإ */ + ligFlag = 1; + to[i].wc = (tempShape == SL || tempShape == SD || tempShape == SC) ? 0xFEFA : 0xFEF9; + break; + case 0x627: /* Alef → لا */ + ligFlag = 1; + to[i].wc = (tempShape == SL || tempShape == SD || tempShape == SC) ? 0xFEFC : 0xFEFB; + break; + } + if (ligFlag) { + to[pv].wc = LIGATURE_PLACEHOLDER; /* deviation 2: mintty writes 0x20 */ + break; + } + } + + /* Arabic joining formatters: adapt forms (mintty) */ + const uchar joiners = line[i].joiners & 0xF; + const uchar prevjoiners = line[i].joiners >> 4; + if (prevjoiners == ZWNJ) { + /* backward join blocked; initial only if the visually-right + (logically next) neighbour joins, else isolated */ + tempShape = (pv >= 0) ? stype(line[pv].wc) : SU; + if (tempShape == SR || tempShape == SD || tempShape == SC) + to[i].wc = shape_form(line[i].wc, SHAPE_INITIAL); + else + to[i].wc = shape_form(line[i].wc, SHAPE_ISOLATED); + } else if (prevjoiners == (ZWJ | ZWNJ)) { + to[i].wc = shape_form(line[i].wc, SHAPE_MEDIAL); + } else if (prevjoiners == ZWJ) { + to[i].wc = shape_form(line[i].wc, SHAPE_FINAL); + } else if (joiners & ZWNJ) { + /* forward join blocked; final only if the visually-left + (logically previous) neighbour joins, else isolated — + tempShape still holds stype(nx) from above */ + if (tempShape == SL || tempShape == SD || tempShape == SC) + to[i].wc = shape_form(line[i].wc, SHAPE_FINAL); + else + to[i].wc = shape_form(line[i].wc, SHAPE_ISOLATED); + } else if (tempShape == SL || tempShape == SD || tempShape == SC) { + /* visually-right neighbour joins → final, or medial if the + visually-left neighbour joins too */ + tempShape = (pv >= 0) ? stype(line[pv].wc) : SU; + if (tempShape == SR || tempShape == SD || tempShape == SC) + to[i].wc = shape_form(line[i].wc, SHAPE_MEDIAL); + else + to[i].wc = shape_form(line[i].wc, SHAPE_FINAL); + } else { + /* visually-right neighbour doesn't join → isolated, or initial + if the visually-left neighbour joins */ + tempShape = (pv >= 0) ? stype(line[pv].wc) : SU; + if (tempShape == SR || tempShape == SD || tempShape == SC) + to[i].wc = shape_form(line[i].wc, SHAPE_INITIAL); + else + to[i].wc = shape_form(line[i].wc, SHAPE_ISOLATED); + } + break; + } + default: + /* SU, SL, SC and non-Arabic characters pass through unchanged */ + break; + } + } + return 1; +} + /* ═══════════════════════════════════════════════════════════════════════ * Directional Status Stack * (replaces GCC nested functions — ESP32C3 has no executable stack) diff --git a/lib/MiniBidi/minibidi.h b/lib/MiniBidi/minibidi.h index 26555d1b75..7f2aa4a04c 100644 --- a/lib/MiniBidi/minibidi.h +++ b/lib/MiniBidi/minibidi.h @@ -5,8 +5,10 @@ * minibidi.h — standalone header for ESP32C3 BiDi calculations * * Derived from [mintty](https://github.com/mintty/mintty/) (Thomas Wolff, MIT licence). - * Stripped of: Arabic shaping, box-drawing mirror, terminal dependencies, - * GCC nested functions, VLAs, and non-Hebrew/English Unicode data. + * Includes: UAX#9 bidi (do_bidi) and Arabic contextual shaping (do_shape), + * both ported from mintty src/minibidi.c (Ahmad Khalifa, Thomas Wolff). + * Stripped of: box-drawing mirror, terminal dependencies, GCC nested + * functions, VLAs, and Unicode data for scripts CrossPoint doesn't render. */ #include @@ -34,13 +36,18 @@ typedef uint32_t ucschar; /* Unicode codepoint; BMP-only content fits uint16_t #define BIDI_MAX_LINE 128 /* ── bidi_char ───────────────────────────────────────────────────────── */ -/* origwc: the codepoint as it came from the epub text stream - wc: working codepoint (may be replaced by mirrored form after do_bidi) - index: original logical position, so the caller can reorder glyphs */ +/* origwc: the codepoint as it came from the epub text stream + wc: working codepoint (may be replaced by mirrored form after + do_bidi, or by an Arabic contextual form after do_shape) + index: original logical position, so the caller can reorder glyphs + joiners: ZWJ/ZWNJ context for Arabic shaping, mintty layout: + low nibble = joiners that logically FOLLOW this character, + high nibble = joiners that logically PRECEDE this character */ typedef struct { ucschar origwc; ucschar wc; uint16_t index; + uint8_t joiners; } bidi_char; /* ── Bidi character classes (UAX #9) ────────────────────────────────── */ @@ -71,6 +78,20 @@ enum { PDI, /* Pop Directional Isolate */ }; +/* ── Arabic joining formatter flags (bidi_char.joiners nibbles) ─────── */ +/* Values match mintty's minibidi.h: ZWNJ 0x01, ZWJ 0x02. do_shape() + compares nibble values directly, so these must not be changed. */ +enum { + ZWNJ = 0x01, /* U+200C ZERO WIDTH NON-JOINER */ + ZWJ = 0x02, /* U+200D ZERO WIDTH JOINER */ +}; + +/* Sentinel written by do_shape() over the Alef absorbed into a Lam-Alef + ligature. Callers must filter it out when emitting shaped text. + (Upstream mintty writes a space instead — a terminal must keep the cell; + a proportional-text renderer must drop the character entirely.) */ +#define LIGATURE_PLACEHOLDER 0xFFFFu + /* ── Public API ──────────────────────────────────────────────────────── */ /* @@ -94,6 +115,32 @@ bool is_rtl_class(uchar bc); */ ucschar mirror(ucschar ch); +/* + * do_shape(line, to, count) + * + * Applies Arabic contextual shaping (and Lam-Alef ligation) to + * `line[0..count-1]`, writing the result to `to[0..count-1]`. + * + * MUST be called AFTER do_bidi(): the algorithm resolves joining from + * VISUAL adjacency (line[i-1] is the visually-left neighbour, line[i+1] + * the visually-right one), exactly like upstream mintty. + * + * line: visual-order input; the joiners field must be populated by the + * caller (in logical order, before do_bidi) for ZWJ/ZWNJ support + * to: output buffer, same size as line; non-Arabic entries are copied + * through unchanged. An Alef absorbed by a Lam-Alef ligature is + * replaced with LIGATURE_PLACEHOLDER — filter it on emission. + * count: number of characters (≤ BIDI_MAX_LINE) + * + * Returns 1. + * + * Ported from mintty src/minibidi.c (Ahmad Khalifa, Thomas Wolff, + * MIT licence), https://github.com/mintty/mintty — with CrossPoint + * extensions for Perso-Arabic letters and in-stream diacritics, see + * minibidi.c for details. + */ +int do_shape(bidi_char* line, bidi_char* to, int count); + /* * do_bidi(autodir, paragraphLevel, line, count) * diff --git a/lib/OpdsParser/OpdsParser.cpp b/lib/OpdsParser/OpdsParser.cpp index 26cdaed886..45827bcd0a 100644 --- a/lib/OpdsParser/OpdsParser.cpp +++ b/lib/OpdsParser/OpdsParser.cpp @@ -5,12 +5,28 @@ #include +namespace { +constexpr size_t ENTRY_STORAGE_CAPACITY = 64; +constexpr size_t MAX_ENTRIES = ENTRY_STORAGE_CAPACITY - 2; +constexpr size_t MAX_TITLE_CHARS = 160; +constexpr size_t MAX_AUTHOR_CHARS = 120; +constexpr size_t MAX_ID_CHARS = 128; +constexpr size_t MAX_HREF_CHARS = 768; +constexpr size_t MAX_SEARCH_TEMPLATE_CHARS = 768; +constexpr size_t MAX_PAGE_URL_CHARS = 768; +} // namespace + OpdsParser::OpdsParser() { parser = XML_ParserCreate(nullptr); if (!parser) { errorOccured = true; LOG_DBG("OPDS", "Couldn't allocate memory for parser"); + return; } + entries.reserve(ENTRY_STORAGE_CAPACITY); + XML_SetUserData(parser, this); + XML_SetElementHandler(parser, startElement, endElement); + XML_SetCharacterDataHandler(parser, characterData); } OpdsParser::~OpdsParser() { destroyXmlParser(parser); } @@ -20,10 +36,6 @@ size_t OpdsParser::write(uint8_t c) { return write(&c, 1); } size_t OpdsParser::write(const uint8_t* xmlData, const size_t length) { if (errorOccured) return length; - XML_SetUserData(parser, this); - XML_SetElementHandler(parser, startElement, endElement); - XML_SetCharacterDataHandler(parser, characterData); - const char* currentPos = reinterpret_cast(xmlData); size_t remaining = length; constexpr size_t chunkSize = 1024; @@ -54,6 +66,7 @@ size_t OpdsParser::write(const uint8_t* xmlData, const size_t length) { } void OpdsParser::flush() { + if (errorOccured || !parser) return; if (XML_Parse(parser, nullptr, 0, XML_TRUE) != XML_STATUS_OK) { errorOccured = true; destroyXmlParser(parser); @@ -70,6 +83,8 @@ void OpdsParser::clear() { currentEntry = OpdsEntry{}; currentText.clear(); inEntry = inTitle = inAuthor = inAuthorName = inId = false; + collectCurrentEntry = false; + feedTruncated = false; } std::vector OpdsParser::getBooks() const { @@ -87,9 +102,33 @@ const char* OpdsParser::findAttribute(const XML_Char** atts, const char* name) { return nullptr; } +void OpdsParser::assignBounded(std::string& target, const char* value, const size_t maxLen) { + if (!value) { + target.clear(); + return; + } + target.assign(value, strnlen(value, maxLen)); +} + +void OpdsParser::appendBounded(std::string& target, const char* value, const size_t len, const size_t maxLen) { + if (target.size() >= maxLen) return; + const size_t remaining = maxLen - target.size(); + target.append(value, len < remaining ? len : remaining); +} + void XMLCALL OpdsParser::startElement(void* userData, const XML_Char* name, const XML_Char** atts) { auto* self = static_cast(userData); + if (strcmp(name, "entry") == 0 || strstr(name, ":entry") != nullptr) { + self->inEntry = true; + self->collectCurrentEntry = self->entries.size() < MAX_ENTRIES; + self->feedTruncated = self->feedTruncated || !self->collectCurrentEntry; + self->currentEntry = OpdsEntry{}; + self->currentText.clear(); + self->inTitle = self->inAuthor = self->inAuthorName = self->inId = false; + return; + } + if (strcmp(name, "link") == 0 || strstr(name, ":link") != nullptr) { const char* href = findAttribute(atts, "href"); if (href) { @@ -97,17 +136,16 @@ void XMLCALL OpdsParser::startElement(void* userData, const XML_Char* name, cons const char* type = findAttribute(atts, "type"); if (rel && strcmp(rel, "search") == 0) { - std::string sHref(href); - if (sHref.find("{searchTerms}") != std::string::npos) { - self->searchTemplate = sHref; + if (strstr(href, "{searchTerms}") != nullptr) { + assignBounded(self->searchTemplate, href, MAX_SEARCH_TEMPLATE_CHARS); } } else if (rel && strcmp(rel, "next") == 0 && !self->inEntry) { - self->nextPageUrl = href; + assignBounded(self->nextPageUrl, href, MAX_PAGE_URL_CHARS); } else if (rel && strcmp(rel, "previous") == 0 && !self->inEntry) { - self->prevPageUrl = href; + assignBounded(self->prevPageUrl, href, MAX_PAGE_URL_CHARS); } - if (self->inEntry) { + if (self->inEntry && self->collectCurrentEntry) { if (rel && type && strstr(rel, "opds-spec.org/acquisition") != nullptr && strcmp(type, "application/epub+zip") == 0) { // Prefer plain EPUB links over derived formats when multiple @@ -118,25 +156,19 @@ void XMLCALL OpdsParser::startElement(void* userData, const XML_Char* name, cons self->currentEntry.href.find("/epub/") != std::string::npos); if (self->currentEntry.type != OpdsEntryType::BOOK || (isPlainEpub && !alreadyHasPlainEpub)) { self->currentEntry.type = OpdsEntryType::BOOK; - self->currentEntry.href = href; + assignBounded(self->currentEntry.href, href, MAX_HREF_CHARS); } } else if (type && strstr(type, "application/atom+xml") != nullptr) { if (self->currentEntry.type != OpdsEntryType::BOOK) { self->currentEntry.type = OpdsEntryType::NAVIGATION; - self->currentEntry.href = href; + assignBounded(self->currentEntry.href, href, MAX_HREF_CHARS); } } } } } - if (strcmp(name, "entry") == 0 || strstr(name, ":entry") != nullptr) { - self->inEntry = true; - self->currentEntry = OpdsEntry{}; - return; - } - - if (!self->inEntry) return; + if (!self->inEntry || !self->collectCurrentEntry) return; if (strcmp(name, "title") == 0 || strstr(name, ":title") != nullptr) { self->inTitle = true; @@ -156,10 +188,11 @@ void XMLCALL OpdsParser::endElement(void* userData, const XML_Char* name) { auto* self = static_cast(userData); if (strcmp(name, "entry") == 0 || strstr(name, ":entry") != nullptr) { - if (!self->currentEntry.title.empty() && !self->currentEntry.href.empty()) { + if (self->collectCurrentEntry && !self->currentEntry.title.empty() && !self->currentEntry.href.empty()) { self->entries.push_back(self->currentEntry); } self->inEntry = false; + self->collectCurrentEntry = false; } else if (self->inEntry) { if (strcmp(name, "title") == 0 || strstr(name, ":title") != nullptr) { if (self->inTitle) self->currentEntry.title = self->currentText; @@ -178,7 +211,12 @@ void XMLCALL OpdsParser::endElement(void* userData, const XML_Char* name) { void XMLCALL OpdsParser::characterData(void* userData, const XML_Char* s, const int len) { auto* self = static_cast(userData); - if (self->inTitle || self->inAuthorName || self->inId) { - self->currentText.append(s, len); + if (!self->collectCurrentEntry) return; + if (self->inTitle) { + appendBounded(self->currentText, s, len, MAX_TITLE_CHARS); + } else if (self->inAuthorName) { + appendBounded(self->currentText, s, len, MAX_AUTHOR_CHARS); + } else if (self->inId) { + appendBounded(self->currentText, s, len, MAX_ID_CHARS); } } diff --git a/lib/OpdsParser/OpdsParser.h b/lib/OpdsParser/OpdsParser.h index 9c93b89aca..a86e4c0348 100644 --- a/lib/OpdsParser/OpdsParser.h +++ b/lib/OpdsParser/OpdsParser.h @@ -61,6 +61,7 @@ class OpdsParser final : public Print { void flush() override; bool error() const; + bool truncated() const { return feedTruncated; } operator bool() { return !error(); } @@ -93,6 +94,8 @@ class OpdsParser final : public Print { std::string prevPageUrl; // Helper to find attribute value static const char* findAttribute(const XML_Char** atts, const char* name); + static void assignBounded(std::string& target, const char* value, size_t maxLen); + static void appendBounded(std::string& target, const char* value, size_t len, size_t maxLen); XML_Parser parser = nullptr; std::vector entries; @@ -105,6 +108,8 @@ class OpdsParser final : public Print { bool inAuthor = false; bool inAuthorName = false; bool inId = false; + bool collectCurrentEntry = false; bool errorOccured = false; + bool feedTruncated = false; }; diff --git a/lib/PngToBmpConverter/PngToBmpConverter.cpp b/lib/PngToBmpConverter/PngToBmpConverter.cpp index 5332b8f6f4..30babeb493 100644 --- a/lib/PngToBmpConverter/PngToBmpConverter.cpp +++ b/lib/PngToBmpConverter/PngToBmpConverter.cpp @@ -2,8 +2,10 @@ #include #include -#include +#include #include +#include +#include #include #include @@ -72,6 +74,12 @@ enum PngFilter : uint8_t { PNG_FILTER_PAETH = 4, }; +void yieldDuringDecode(uint8_t& rowsSinceYield) { + if (++rowsSinceYield < 8) return; + rowsSinceYield = 0; + vTaskDelay(1); +} + // Read a big-endian 32-bit value from file bool readBE32(HalFile& file, uint32_t& value) { uint8_t buf[4]; @@ -174,9 +182,8 @@ void writeBmpHeader2bit(Print& bmpOut, const int width, const int height) { } // namespace // Context for streaming PNG decompression -// IMPORTANT: reader must be the first field - the uzlib callback casts uzlib_uncomp* to PngDecodeContext* struct PngDecodeContext { - InflateReader reader; // Must be first — callback casts uzlib_uncomp* to PngDecodeContext* + InflateStream reader; HalFile* file; // PNG image properties @@ -195,7 +202,7 @@ struct PngDecodeContext { uint32_t chunkBytesRemaining; // bytes left in current IDAT chunk bool idatFinished; // no more IDAT chunks - // File read buffer for feeding uzlib + // File read buffer for feeding the inflate stream uint8_t readBuf[2048]; // Palette for indexed color (type 3) @@ -229,21 +236,21 @@ static bool findNextIdatChunk(PngDecodeContext& ctx) { } } -// uzlib callback: reads the next batch of IDAT data from the file -static int pngIdatReadCallback(uzlib_uncomp* uncomp) { - auto* ctx = reinterpret_cast(uncomp); +// Fill callback: reads the next batch of IDAT data from the file +static size_t pngIdatFillCallback(void* vctx, const uint8_t** data) { + auto* ctx = static_cast(vctx); - if (ctx->idatFinished) return -1; + if (ctx->idatFinished) return 0; // Skip 4-byte CRC and find next IDAT chunk when current chunk is exhausted while (ctx->chunkBytesRemaining == 0) { if (!ctx->file->seekCur(4)) { // skip 4-byte CRC of previous IDAT ctx->idatFinished = true; - return -1; + return 0; } if (!findNextIdatChunk(*ctx)) { ctx->idatFinished = true; - return -1; + return 0; } } @@ -251,18 +258,15 @@ static int pngIdatReadCallback(uzlib_uncomp* uncomp) { size_t toRead = sizeof(ctx->readBuf); if (toRead > ctx->chunkBytesRemaining) toRead = ctx->chunkBytesRemaining; - int bytesRead = ctx->file->read(ctx->readBuf, toRead); + const int bytesRead = ctx->file->read(ctx->readBuf, toRead); if (bytesRead <= 0) { ctx->idatFinished = true; - return -1; + return 0; } ctx->chunkBytesRemaining -= bytesRead; - - // Give uzlib the buffer (skip first byte since we return it directly) - uncomp->source = ctx->readBuf + 1; - uncomp->source_limit = ctx->readBuf + bytesRead; - return ctx->readBuf[0]; + *data = ctx->readBuf; + return static_cast(bytesRead); } // Decode one scanline: decompress filter byte + raw bytes, then unfilter @@ -555,16 +559,16 @@ bool PngToBmpConverter::pngFileToBmpStreamInternal(HalFile& pngFile, Print& bmpO return false; } - // Initialize streaming decompressor with 32KB ring buffer for back-reference history + // Initialize streaming decompressor with 32KB window for back-reference history if (!ctx.reader.init(true)) { - LOG_ERR("PNG", "Failed to init inflate reader"); + LOG_ERR("PNG", "Failed to init inflate stream"); free(ctx.currentRow); free(ctx.previousRow); return false; } - ctx.reader.setReadCallback(pngIdatReadCallback); - // PNG IDAT data is zlib-wrapped: consume the 2-byte zlib header (CMF + FLG) - ctx.reader.skipZlibHeader(); + ctx.reader.setFill(pngIdatFillCallback, &ctx); + // PNG IDAT data is zlib-wrapped (2-byte header + trailing adler32) + ctx.reader.setZlibWrapped(); // Calculate output dimensions (same logic as JpegToBmpConverter) int outWidth = width; @@ -663,6 +667,7 @@ bool PngToBmpConverter::pngFileToBmpStreamInternal(HalFile& pngFile, Print& bmpO } bool success = true; + uint8_t rowsSinceYield = 0; // Process each scanline for (uint32_t y = 0; y < height; y++) { @@ -714,6 +719,7 @@ bool PngToBmpConverter::pngFileToBmpStreamInternal(HalFile& pngFile, Print& bmpO fsDitherer->nextRow(); } bmpOut.write(rowBuffer, bytesPerRow); + yieldDuringDecode(rowsSinceYield); } else { // Area-averaging scaling (same as JpegToBmpConverter) for (int outX = 0; outX < outWidth; outX++) { @@ -782,6 +788,7 @@ bool PngToBmpConverter::pngFileToBmpStreamInternal(HalFile& pngFile, Print& bmpO bmpOut.write(rowBuffer, bytesPerRow); currentOutY++; + yieldDuringDecode(rowsSinceYield); nextOutY_srcStart = static_cast(currentOutY + 1) * scaleY_fp; diff --git a/lib/Serialization/BufferedFile.h b/lib/Serialization/BufferedFile.h new file mode 100644 index 0000000000..921c697f63 --- /dev/null +++ b/lib/Serialization/BufferedFile.h @@ -0,0 +1,161 @@ +#pragma once +#include +#include + +#include +#include +#include + +namespace serialization { + +// Sequential buffered wrappers over HalFile. +// +// SdFat keeps ONE shared 512-byte sector cache per volume, so interleaving small +// reads/writes across two or more files evicts and reloads that sector on nearly +// every call -- each 4-byte pod becomes a full SD transaction (measured: 31s to +// stream ~200KB through BookMetadataCache::buildBookBin on a 1,732-spine EPUB). +// Batching into chunk-sized transfers keeps each file at sequential SD speed. +// +// Heap: one fixed buffer per wrapper, allocated once at construction and freed at +// scope exit. If the allocation fails the wrapper degrades to unbuffered +// passthrough -- correct, just slow -- so callers never need an OOM path. +// +// Constraint: the wrapper must be the file's ONLY accessor while alive (it tracks +// the underlying position itself); mixing direct HalFile calls in desynchronizes it. + +class BufferedFileWriter { + public: + BufferedFileWriter(HalFile& file, const size_t capacity) + : file(file), buf(makeUniqueNoThrow(capacity)), cap(buf ? capacity : 0), pos(file.position()) {} + ~BufferedFileWriter() { flush(); } + BufferedFileWriter(const BufferedFileWriter&) = delete; + BufferedFileWriter& operator=(const BufferedFileWriter&) = delete; + + void write(const void* src, const size_t len) { + pos += len; + const auto* p = static_cast(src); + if (fill + len > cap) { + flushBuffer(); + } + if (len >= cap) { // also the cap == 0 passthrough + okFlag &= file.write(p, len) == len; + return; + } + // Typed local: cppcheck misreads unique_ptr::get() arithmetic as void*. + uint8_t* const data = buf.get(); + memcpy(data + fill, p, len); + fill += len; + } + + // Logical write position (bytes written since the file was opened). + size_t position() const { return pos; } + + // Flush buffered bytes; returns false if any write so far has failed short. + bool flush() { + flushBuffer(); + return okFlag; + } + + private: + void flushBuffer() { + if (fill == 0) return; + okFlag &= file.write(buf.get(), fill) == fill; + fill = 0; + } + + HalFile& file; + std::unique_ptr buf; + const size_t cap; + size_t fill = 0; + size_t pos; + bool okFlag = true; +}; + +class BufferedFileReader { + public: + BufferedFileReader(HalFile& file, const size_t capacity) + : file(file), buf(makeUniqueNoThrow(capacity)), cap(buf ? capacity : 0), bufStart(file.position()) {} + BufferedFileReader(const BufferedFileReader&) = delete; + BufferedFileReader& operator=(const BufferedFileReader&) = delete; + + size_t read(void* dst, size_t len) { + auto* p = static_cast(dst); + if (cap == 0) { // passthrough + const int n = file.read(p, len); + const size_t got = n < 0 ? 0 : static_cast(n); + bufStart += got; + return got; + } + size_t total = 0; + while (len > 0) { + if (off == fill) { + bufStart += fill; + off = 0; + const int n = file.read(buf.get(), cap); + fill = n < 0 ? 0 : static_cast(n); + if (fill == 0) break; // EOF or error + } + const size_t chunk = std::min(len, fill - off); + // Typed local: cppcheck misreads unique_ptr::get() arithmetic as void*. + const uint8_t* const data = buf.get(); + memcpy(p, data + off, chunk); + p += chunk; + off += chunk; + len -= chunk; + total += chunk; + } + return total; + } + + // Logical read position. + size_t position() const { return bufStart + off; } + + bool seek(const size_t target) { + // Within the buffered window: just move the cursor. + if (cap != 0 && target >= bufStart && target < bufStart + fill) { + off = target - bufStart; + return true; + } + if (!file.seek(target)) return false; + bufStart = target; + fill = 0; + off = 0; + return true; + } + + private: + HalFile& file; + std::unique_ptr buf; + const size_t cap; + size_t fill = 0; + size_t off = 0; + size_t bufStart; +}; + +// serialization:: overloads mirroring the HalFile ones in Serialization.h. +template +void writePod(BufferedFileWriter& out, const T& value) { + out.write(&value, sizeof(T)); +} + +template +void readPod(BufferedFileReader& in, T& value) { + in.read(&value, sizeof(T)); +} + +inline void writeString(BufferedFileWriter& out, const std::string& s) { + const uint32_t len = s.size(); + writePod(out, len); + out.write(s.data(), len); +} + +inline void readString(BufferedFileReader& in, std::string& s) { + uint32_t len; + readPod(in, len); + s.resize(len); + if (len > 0) { + in.read(&s[0], len); + } +} + +} // namespace serialization diff --git a/lib/Serialization/PersistableStore.cpp b/lib/Serialization/PersistableStore.cpp new file mode 100644 index 0000000000..b9a2514f30 --- /dev/null +++ b/lib/Serialization/PersistableStore.cpp @@ -0,0 +1,45 @@ +#include "PersistableStore.h" + +#include +#include +#include + +bool PersistableStoreBase::writeDocToFile(const char* path, const JsonDocument& doc) { + Storage.mkdir("/.crosspoint"); + String json; + serializeJson(doc, json); + if (!Storage.writeFile(path, json)) { + LOG_ERR("PERSIST", "Failed to write %s", path); + return false; + } + return true; +} + +bool PersistableStoreBase::readDocFromFile(const char* path, JsonDocument& doc) { + if (!Storage.exists(path)) { + return false; // Expected on first boot — not an error. + } + String json = Storage.readFile(path); + if (json.isEmpty()) { + LOG_ERR("PERSIST", "Failed to read %s (empty)", path); + return false; + } + auto error = deserializeJson(doc, json); + if (error) { + LOG_ERR("PERSIST", "JSON parse error in %s: %s", path, error.c_str()); + return false; + } + return true; +} + +std::string PersistableStoreBase::extractPassword(JsonVariantConst doc, bool& needsResave) { + bool ok = false; + std::string pass = obfuscation::deobfuscateFromBase64(doc["password_obf"] | "", &ok); + if (!ok) { + // Deobfuscation failed — fall back to legacy plaintext password. + pass = doc["password"] | ""; + if (!pass.empty()) needsResave = true; + } + // A successfully decoded empty string is a legitimate value; preserve as-is. + return pass; +} diff --git a/lib/Serialization/PersistableStore.h b/lib/Serialization/PersistableStore.h new file mode 100644 index 0000000000..8d8b1bb146 --- /dev/null +++ b/lib/Serialization/PersistableStore.h @@ -0,0 +1,129 @@ +#pragma once + +#include +#include +#include + +#include +#include + +/** + * @brief Non-template core of PersistableStore. + * + * All ArduinoJson parse/serialize machinery is instantiated once here (in + * PersistableStore.cpp) instead of in every store's translation unit. GCC + * emits the JSON serializer/parser templates as local .isra clones per TU + * (~0.5KB each), so keeping serializeJson/deserializeJson out of the stores + * is what makes the abstraction flash-neutral. + */ +class PersistableStoreBase { + protected: + PersistableStoreBase() = default; + ~PersistableStoreBase() = default; + + // Serializes saveToFile/loadFromFile against each other across FreeRTOS + // tasks, so the JSON snapshot cannot tear mid-serialize and two concurrent + // saves cannot write their documents out of order. Concurrent saves are + // reachable: the web server task saves settings while the main task can too. + // + // It is deliberately held across the SD write. That is safe only because the + // read path does NOT take it — derived stores build their snapshots (e.g. + // CrossPointSettings::statusBarSpec) unlocked. If you ever lock this mutex on + // a read path, you put it on the render path and stall rendering behind SD + // I/O, and you create a storeMutex/storageMutex ordering hazard. Don't. + mutable std::mutex storeMutex; + + // fromJson() implementations call this (instead of saveToFile()) when the + // on-disk JSON used a legacy shape that was upgraded in memory. + // loadFromFile() performs the save after releasing storeMutex; calling + // saveToFile() from inside fromJson() would deadlock on storeMutex. + void requestResave() { resaveRequested = true; } + + bool resaveRequested = false; + + public: + // Public so non-store JSON files (e.g. per-book bookmarks) can reuse them + // instead of instantiating serializeJson/deserializeJson in their own TU — + // that per-TU duplication is exactly what this class exists to prevent. + + // Serializes doc and writes it to path (ensures /.crosspoint exists). Logs on failure. + static bool writeDocToFile(const char* path, const JsonDocument& doc); + + // Reads path and parses it into doc. Returns false silently when the file + // does not exist (expected on first boot); logs on read/parse failure. + static bool readDocFromFile(const char* path, JsonDocument& doc); + + protected: + /** + * Helper function for extracting an obfuscated password from a JSON value. + * Accepts JsonVariantConst so callers can pass either a whole JsonDocument + * or a JsonObject element (e.g. inside an array iteration). + * If the decoded password requires a resave (e.g. from plaintext fallback), `needsResave` is set to true. + */ + static std::string extractPassword(JsonVariantConst doc, bool& needsResave); +}; + +/** + * @brief Base class for persistable singletons using CRTP. + * + * Derived classes must provide: + * - A private default constructor + * - friend class PersistableStore; + * - static const char* getFilePath(); + * - void toJson(JsonDocument& doc) const; + * - bool fromJson(JsonVariantConst doc); + * + * Note for implementers: read string values as `const char*` (e.g. + * `obj["name"] | ""`), never as `| std::string("")` — ArduinoJson's + * std::string converter drags a per-TU copy of the whole JSON serializer + * into flash via its serializeJson fallback. + * + * Concurrency: saveToFile/loadFromFile lock storeMutex, so toJson/fromJson + * always run under it. fromJson must signal legacy-shape upgrades with + * requestResave(), never by calling saveToFile() directly (deadlock). + */ +template +class PersistableStore : public PersistableStoreBase { + protected: + PersistableStore() = default; + ~PersistableStore() = default; + + public: + // Delete copy constructor and assignment + PersistableStore(const PersistableStore&) = delete; + PersistableStore& operator=(const PersistableStore&) = delete; + + static T& getInstance() { + static T instance; + return instance; + } + + bool saveToFile() const { + std::lock_guard lock(storeMutex); + JsonDocument doc; + static_cast(this)->toJson(doc); + return writeDocToFile(T::getFilePath(), doc); + } + + bool loadFromFile() { + bool ok; + bool doResave; + { + std::lock_guard lock(storeMutex); + resaveRequested = false; + JsonDocument doc; + if (!readDocFromFile(T::getFilePath(), doc)) { + return false; + } + ok = static_cast(this)->fromJson(doc.as()); + // Read the flag under the lock that guards the fromJson() that set it. + doResave = resaveRequested; + resaveRequested = false; + } + // Deliberately outside the lock: saveToFile() takes storeMutex itself. + if (ok && doResave && !saveToFile()) { + LOG_ERR("PERSIST", "Failed to resave %s after format update", T::getFilePath()); + } + return ok; + } +}; diff --git a/lib/Txt/Txt.cpp b/lib/Txt/Txt.cpp index 581c8c624b..ef9ee1754d 100644 --- a/lib/Txt/Txt.cpp +++ b/lib/Txt/Txt.cpp @@ -42,7 +42,7 @@ std::string Txt::getTitle() const { // Remove .txt extension if (FsHelpers::hasTxtExtension(filename)) { - filename = filename.substr(0, filename.length() - 4); + filename.resize(filename.length() - 4); } return filename; diff --git a/lib/Xtc/Xtc.cpp b/lib/Xtc/Xtc.cpp index 1142c763ed..1d7c30f575 100644 --- a/lib/Xtc/Xtc.cpp +++ b/lib/Xtc/Xtc.cpp @@ -10,6 +10,16 @@ #include #include #include +#include +#include + +namespace { +void yieldDuringThumbnail(uint8_t& rowsSinceYield) { + if (++rowsSinceYield < 8) return; + rowsSinceYield = 0; + vTaskDelay(1); +} +} // namespace bool Xtc::load() { LOG_DBG("XTC", "Loading XTC: %s", filepath.c_str()); @@ -380,6 +390,7 @@ bool Xtc::generateThumbBmp(int height) const { const uint8_t* plane2 = (bitDepth == 2) ? pageBuffer + planeSize : nullptr; const size_t colBytes = (bitDepth == 2) ? ((pageInfo.height + 7) / 8) : 0; const size_t srcRowBytes = (bitDepth == 1) ? ((pageInfo.width + 7) / 8) : 0; + uint8_t rowsSinceYield = 0; for (uint16_t dstY = 0; dstY < thumbHeight; dstY++) { memset(rowBuffer, 0xFF, rowSize); // Start with all white (bit 1) @@ -471,6 +482,7 @@ bool Xtc::generateThumbBmp(int height) const { // Write row (already padded to 4-byte boundary by rowSize) thumbBmp.write(rowBuffer, rowSize); + yieldDuringThumbnail(rowsSinceYield); } free(rowBuffer); diff --git a/lib/ZipFile/ZipFile.cpp b/lib/ZipFile/ZipFile.cpp index 711c05c797..867a155c75 100644 --- a/lib/ZipFile/ZipFile.cpp +++ b/lib/ZipFile/ZipFile.cpp @@ -1,13 +1,12 @@ #include "ZipFile.h" #include -#include +#include #include #include struct ZipInflateCtx { - InflateReader reader; // Must be first — callback casts uzlib_uncomp* to ZipInflateCtx* HalFile* file = nullptr; size_t fileRemaining = 0; uint8_t* readBuf = nullptr; @@ -40,19 +39,16 @@ class ScopedOpenClose final { bool ok = true; // true when zip was already open (no open() call needed) }; -int zipReadCallback(uzlib_uncomp* uncomp) { - auto* ctx = reinterpret_cast(uncomp); - if (ctx->fileRemaining == 0) return -1; +size_t zipFillCallback(void* vctx, const uint8_t** data) { + auto* ctx = static_cast(vctx); + if (ctx->fileRemaining == 0) return 0; const size_t toRead = ctx->fileRemaining < ctx->readBufSize ? ctx->fileRemaining : ctx->readBufSize; const size_t bytesRead = ctx->file->read(ctx->readBuf, toRead); ctx->fileRemaining -= bytesRead; - if (bytesRead == 0) return -1; - - uncomp->source = ctx->readBuf + 1; - uncomp->source_limit = ctx->readBuf + bytesRead; - return ctx->readBuf[0]; + *data = ctx->readBuf; + return bytesRead; } } // namespace @@ -410,15 +406,18 @@ uint8_t* ZipFile::readFileToMemory(const char* filename, size_t* size, const boo ctx.readBuf = fileReadBuffer; ctx.readBufSize = 1024; - if (!ctx.reader.init(true)) { - LOG_ERR("ZIP", "Failed to init inflate reader"); + // One-shot mode: `data` holds the entire output, so back-references + // resolve inside it and no 32KB window is allocated. + InflateStream inflate; + if (!inflate.init(false)) { + LOG_ERR("ZIP", "Failed to init inflate stream"); free(fileReadBuffer); free(data); return nullptr; } - ctx.reader.setReadCallback(zipReadCallback); + inflate.setFill(zipFillCallback, &ctx); - if (!ctx.reader.read(data, inflatedDataSize)) { + if (!inflate.read(data, inflatedDataSize)) { LOG_ERR("ZIP", "Failed to inflate file"); free(fileReadBuffer); free(data); @@ -501,20 +500,21 @@ bool ZipFile::readFileToStream(const char* filename, Print& out, const size_t ch ctx.readBuf = fileReadBuffer; ctx.readBufSize = chunkSize; - if (!ctx.reader.init(true)) { - LOG_ERR("ZIP", "Failed to init inflate reader"); + InflateStream inflate; + if (!inflate.init(true)) { + LOG_ERR("ZIP", "Failed to init inflate stream"); free(outputBuffer); free(fileReadBuffer); return false; } - ctx.reader.setReadCallback(zipReadCallback); + inflate.setFill(zipFillCallback, &ctx); bool success = false; size_t totalProduced = 0; while (true) { size_t produced; - const InflateStatus status = ctx.reader.readAtMost(outputBuffer, chunkSize, &produced); + const InflateStream::Status status = inflate.readAtMost(outputBuffer, chunkSize, &produced); totalProduced += produced; if (totalProduced > static_cast(inflatedDataSize)) { @@ -530,7 +530,7 @@ bool ZipFile::readFileToStream(const char* filename, Print& out, const size_t ch } } - if (status == InflateStatus::Done) { + if (status == InflateStream::Status::Done) { if (totalProduced != static_cast(inflatedDataSize)) { LOG_ERR("ZIP", "Decompressed size mismatch (expected %zu, got %zu)", static_cast(inflatedDataSize), totalProduced); @@ -541,16 +541,16 @@ bool ZipFile::readFileToStream(const char* filename, Print& out, const size_t ch break; } - if (status == InflateStatus::Error) { + if (status == InflateStream::Status::Error) { LOG_ERR("ZIP", "Decompression failed"); break; } - // InflateStatus::Ok: output buffer full, continue + // InflateStream::Status::Ok: output buffer full, continue } free(outputBuffer); free(fileReadBuffer); - return success; // ctx.reader destructor frees the ring buffer + return success; // inflate destructor frees the decompressor state + window } LOG_ERR("ZIP", "Unsupported compression method"); diff --git a/lib/hal/HalClock.cpp b/lib/hal/HalClock.cpp index 6e3c3a90b6..c793c9e29a 100644 --- a/lib/hal/HalClock.cpp +++ b/lib/hal/HalClock.cpp @@ -5,46 +5,11 @@ #include #include -#include - HalClock halClock; // Singleton instance -// DS3231 register layout (BCD encoded): -// 0x00: Seconds (bits 6-4 = tens, bits 3-0 = ones) -// 0x01: Minutes (bits 6-4 = tens, bits 3-0 = ones) -// 0x02: Hours (bit 6 = 12/24 mode, bits 5-4 = tens, bits 3-0 = ones) - -static uint8_t bcdToDec(uint8_t bcd) { return ((bcd >> 4) * 10) + (bcd & 0x0F); } -static uint8_t decToBcd(uint8_t dec) { return ((dec / 10) << 4) | (dec % 10); } - void HalClock::begin() { - if (!gpio.deviceIsX3()) { - _available = false; - return; - } - - // I2C is already initialised by HalPowerManager::begin() for X3. - // Probe the DS3231 by reading the seconds register. - Wire.beginTransmission(I2C_ADDR_DS3231); - Wire.write(DS3231_SEC_REG); - if (Wire.endTransmission(false) != 0) { - LOG_INF("CLK", "DS3231 RTC not found"); - _available = false; - return; - } - Wire.requestFrom(I2C_ADDR_DS3231, (uint8_t)1); - if (Wire.available() < 1) { - _available = false; - return; - } - Wire.read(); // discard — just testing connectivity - - _available = true; - LOG_INF("CLK", "DS3231 RTC found"); - - // Prime the cache with an initial read - uint8_t h, m; - getTime(h, m); + _available = _sdkRtc.begin(); + LOG_INF("CLK", _available ? "SDK RTC found" : "RTC not found"); } bool HalClock::getTime(uint8_t& hour, uint8_t& minute) const { @@ -57,44 +22,18 @@ bool HalClock::getTime(uint8_t& hour, uint8_t& minute) const { return true; } - // Read 3 bytes starting at register 0x00: seconds, minutes, hours - Wire.beginTransmission(I2C_ADDR_DS3231); - Wire.write(DS3231_SEC_REG); - if (Wire.endTransmission(false) != 0) { + Rtc::DateTime dt; + if (!_sdkRtc.now(dt)) { if (!_hasCachedTime) return false; _lastPollMs = now; hour = _cachedHour; minute = _cachedMinute; return true; } - Wire.requestFrom(I2C_ADDR_DS3231, (uint8_t)3); - if (Wire.available() < 3) { - if (!_hasCachedTime) return false; - _lastPollMs = now; - hour = _cachedHour; - minute = _cachedMinute; - return true; - } - - Wire.read(); // seconds — not needed - const uint8_t rawMin = Wire.read(); - const uint8_t rawHour = Wire.read(); - - _cachedMinute = bcdToDec(rawMin & 0x7F); - // Handle 12/24h mode: bit 6 high = 12h mode - if (rawHour & 0x40) { - // 12h mode: bit 5 = PM, bits 4-0 = hours (1-12) - uint8_t h12 = bcdToDec(rawHour & 0x1F); - bool pm = rawHour & 0x20; - if (h12 == 12) h12 = 0; - _cachedHour = pm ? (h12 + 12) : h12; - } else { - // 24h mode: bits 5-0 = hours (0-23) - _cachedHour = bcdToDec(rawHour & 0x3F); - } + _cachedHour = dt.hour; + _cachedMinute = dt.minute; _lastPollMs = now; _hasCachedTime = true; - hour = _cachedHour; minute = _cachedMinute; return true; @@ -127,28 +66,6 @@ bool HalClock::formatTime(char* buf, size_t bufSize, uint8_t utcOffsetQuarterHou return true; } -bool HalClock::writeTimeToRTC(uint8_t hour, uint8_t minute, uint8_t second) { - assert(hour < 24); - assert(minute < 60); - assert(second < 60); - Wire.beginTransmission(I2C_ADDR_DS3231); - Wire.write(DS3231_SEC_REG); // Start at register 0x00 - Wire.write(decToBcd(second)); // 0x00: Seconds - Wire.write(decToBcd(minute)); // 0x01: Minutes - Wire.write(decToBcd(hour)); // 0x02: Hours (24h mode, bit 6 = 0) - if (Wire.endTransmission() != 0) { - LOG_ERR("CLK", "Failed to write time to DS3231"); - return false; - } - - // Invalidate cache so next read fetches fresh data - _lastPollMs = 0; - _cachedHour = hour; - _cachedMinute = minute; - _hasCachedTime = true; - return true; -} - bool HalClock::syncFromNTP() { if (!_available) return false; @@ -168,8 +85,21 @@ bool HalClock::syncFromNTP() { struct tm timeinfo; gmtime_r(&now, &timeinfo); - if (writeTimeToRTC(timeinfo.tm_hour, timeinfo.tm_min, timeinfo.tm_sec)) { - LOG_INF("CLK", "RTC set to %02d:%02d:%02d UTC", timeinfo.tm_hour, timeinfo.tm_min, timeinfo.tm_sec); + Rtc::DateTime dt; + dt.year = static_cast(timeinfo.tm_year + 1900); + dt.month = static_cast(timeinfo.tm_mon + 1); + dt.day = static_cast(timeinfo.tm_mday); + dt.hour = static_cast(timeinfo.tm_hour); + dt.minute = static_cast(timeinfo.tm_min); + dt.second = static_cast(timeinfo.tm_sec); + dt.weekday = static_cast(timeinfo.tm_wday); + if (_sdkRtc.set(dt)) { + _lastPollMs = 0; + _cachedHour = dt.hour; + _cachedMinute = dt.minute; + _hasCachedTime = true; + LOG_INF("CLK", "RTC set to %04u-%02u-%02u %02u:%02u:%02u UTC", dt.year, dt.month, dt.day, dt.hour, dt.minute, + dt.second); return true; } return false; diff --git a/lib/hal/HalClock.h b/lib/hal/HalClock.h index a0cc48251e..7fd2f6bfdf 100644 --- a/lib/hal/HalClock.h +++ b/lib/hal/HalClock.h @@ -1,15 +1,14 @@ #pragma once #include -#include - -#include "HalGPIO.h" +#include class HalClock; extern HalClock halClock; // Singleton class HalClock { bool _available = false; + mutable Rtc _sdkRtc; mutable uint8_t _cachedHour = 0; mutable uint8_t _cachedMinute = 0; mutable bool _hasCachedTime = false; @@ -18,10 +17,10 @@ class HalClock { static constexpr unsigned long CLOCK_POLL_MS = 10000; // 10 seconds public: - // Call after gpio.begin() and powerManager.begin() (I2C already initialised for X3) + // Call after BoardConfig has selected the active device. void begin(); - // True if the DS3231 RTC is present on this device + // True if an RTC is present on this device bool isAvailable() const { return _available; } // Get current hour (0-23) and minute (0-59). @@ -35,14 +34,11 @@ class HalClock { // Returns false if RTC is not available. bool formatTime(char* buf, size_t bufSize, uint8_t utcOffsetQuarterHoursBiased = 48, bool use12Hour = false) const; - // Sync the DS3231 RTC from an NTP server. Requires WiFi to be connected. + // Sync the RTC from an NTP server. Requires WiFi to be connected. // Blocks for up to ~5s while waiting for SNTP response. // Returns true if the RTC was successfully updated. // // Debouncing (skip if already synced once) is enforced by the caller, not here, // so the HAL stays free of any app-layer settings dependency. bool syncFromNTP(); - - private: - bool writeTimeToRTC(uint8_t hour, uint8_t minute, uint8_t second); }; diff --git a/lib/hal/HalDisplay.cpp b/lib/hal/HalDisplay.cpp index f90e85c096..c7a0ceb782 100644 --- a/lib/hal/HalDisplay.cpp +++ b/lib/hal/HalDisplay.cpp @@ -65,6 +65,18 @@ void HalDisplay::displayBuffer(HalDisplay::RefreshMode mode, bool turnOffScreen) einkDisplay.displayBuffer(convertRefreshMode(mode), turnOffScreen); } +void HalDisplay::displayBufferAsync(HalDisplay::RefreshMode mode) { + if (gpio.deviceIsX3() && mode == RefreshMode::HALF_REFRESH) { + einkDisplay.requestResync(1); + } + + einkDisplay.displayBufferAsyncNoShadow(convertRefreshMode(mode)); +} + +void HalDisplay::waitRefreshComplete() { einkDisplay.waitRefreshComplete(); } + +bool HalDisplay::supportsAsyncRefresh() const { return einkDisplay.supportsAsyncRefresh(); } + void HalDisplay::refreshDisplay(HalDisplay::RefreshMode mode, bool turnOffScreen) { if (gpio.deviceIsX3() && mode == RefreshMode::HALF_REFRESH) { einkDisplay.requestResync(1); @@ -77,6 +89,10 @@ void HalDisplay::deepSleep() { einkDisplay.deepSleep(); } uint8_t* HalDisplay::getFrameBuffer() const { return einkDisplay.getFrameBuffer(); } +uint8_t* HalDisplay::lendFrameBufferStorage(uint32_t* sizeOut) { return einkDisplay.lendBuildStorage(sizeOut); } + +void HalDisplay::returnFrameBufferStorage() { einkDisplay.returnBuildStorage(); } + void HalDisplay::copyGrayscaleBuffers(const uint8_t* lsbBuffer, const uint8_t* msbBuffer) { einkDisplay.copyGrayscaleBuffers(lsbBuffer, msbBuffer); } diff --git a/lib/hal/HalDisplay.h b/lib/hal/HalDisplay.h index 7b21a72f8c..34e74a6232 100644 --- a/lib/hal/HalDisplay.h +++ b/lib/hal/HalDisplay.h @@ -39,6 +39,17 @@ class HalDisplay { bool fromProgmem = false) const; void displayBuffer(RefreshMode mode = RefreshMode::FAST_REFRESH, bool turnOffScreen = false); + // Non-blocking refresh (shadow-free): starts the panel waveform and returns + // while the panel refreshes on its own. The framebuffer must stay untouched + // until waitRefreshComplete(), and the caller must rebuild the differential + // baseline before the next differential update (the tiled grayscale cleanup + // does). Panels without deferral fall back to a blocking refresh. + void displayBufferAsync(RefreshMode mode = RefreshMode::FAST_REFRESH); + // Block until a pending deferred refresh completes (no-op when none is). + void waitRefreshComplete(); + // True when displayBufferAsync() genuinely overlaps (panel driver defers); + // false where it falls back to a blocking refresh. + bool supportsAsyncRefresh() const; void refreshDisplay(RefreshMode mode = RefreshMode::FAST_REFRESH, bool turnOffScreen = false); // Power management @@ -47,6 +58,14 @@ class HalDisplay { // Access to frame buffer uint8_t* getFrameBuffer() const; + // Lend the framebuffer's ~48 KB STORAGE to a memory-hungry phase (chapter + // builds) without freeing it: the allocation never moves, so repeated loans + // cannot fragment the heap (free+realloc measurably did). No display calls + // between lend and return; the panel keeps its last refreshed image. The + // buffer comes back white — redraw fully. Returns nullptr if already lent. + uint8_t* lendFrameBufferStorage(uint32_t* sizeOut); + void returnFrameBufferStorage(); + // X3 grayscale preconditioning (OEM "AA-pre-BW(mid)" settle pass), windowed // to the gray region in physical panel coordinates (no-arg = full frame). // Call after the BW base frame is displayed and before the grayscale planes diff --git a/lib/hal/HalGPIO.cpp b/lib/hal/HalGPIO.cpp index b150dc8c75..f623e4c95d 100644 --- a/lib/hal/HalGPIO.cpp +++ b/lib/hal/HalGPIO.cpp @@ -1,5 +1,6 @@ #include #include +#include #include #include #include @@ -191,15 +192,20 @@ HalGPIO::DeviceType detectDeviceTypeWithFingerprint() { } // namespace void HalGPIO::begin() { - inputMgr.begin(); +#if FREEINK_MCU_C3 SPI.begin(EPD_SCLK, SPI_MISO, EPD_MOSI, EPD_CS); _deviceType = detectDeviceTypeWithFingerprint(); + BoardConfig::selectDevice(deviceIsX3() ? BoardConfig::Board::XteinkX3 : BoardConfig::Board::XteinkX4); if (deviceIsX4()) { pinMode(BAT_GPIO0, INPUT); pinMode(UART0_RXD, INPUT); } +#else + _deviceType = DeviceType::X4; +#endif + inputMgr.begin(); } void HalGPIO::update() { @@ -225,29 +231,54 @@ unsigned long HalGPIO::getHeldTime() const { return inputMgr.getHeldTime(); } unsigned long HalGPIO::getPowerButtonHeldTime() const { return inputMgr.getPowerButtonHeldTime(); } -void HalGPIO::startDeepSleep() { - // Ensure that the power button has been released to avoid immediately turning back on if you're holding it - while (inputMgr.isPressed(BTN_POWER)) { - delay(50); - inputMgr.update(); - } - // Arm the wakeup trigger *after* the button is released - esp_deep_sleep_enable_gpio_wakeup(1ULL << InputManager::POWER_BUTTON_PIN, ESP_GPIO_WAKEUP_GPIO_LOW); - // Enter Deep Sleep - esp_deep_sleep_start(); +bool HalGPIO::hasTouch() const { return inputMgr.hasTouch(); } + +bool HalGPIO::wasTouchTap(float& nx, float& ny) const { return inputMgr.wasTouchTap(nx, ny); } + +bool HalGPIO::wasTouchDown(float& nx, float& ny) const { return inputMgr.wasTouchPressedAt(nx, ny); } + +bool HalGPIO::isTouchTapCandidate(float& nx, float& ny, unsigned long& heldMs) const { + return inputMgr.isTouchTapCandidate(nx, ny, heldMs); +} + +bool HalGPIO::isTouchHeldAt(float& nx, float& ny) const { return inputMgr.isTouchHeldAt(nx, ny); } + +unsigned long HalGPIO::lastTouchHeldMs() const { return inputMgr.lastTouchHeldMs(); } + +bool HalGPIO::wasSwipe(float& nxStart, float& nyStart, float& nxEnd, float& nyEnd) const { + return inputMgr.wasSwipe(nxStart, nyStart, nxEnd, nyEnd); +} + +bool HalGPIO::wasTouchActivity() const { return inputMgr.wasTouchActivity(); } + +void HalGPIO::setSharedConfirmPowerShortPressEmitsPower(const bool enabled) { + InputManager::setSharedConfirmPowerShortPressEmitsPower(enabled); } -void HalGPIO::verifyPowerButtonWakeup(uint16_t requiredDurationMs, bool shortPressAllowed) { +bool HalGPIO::isXteinkDevice() const { + return BoardConfig::ACTIVE.board == BoardConfig::Board::XteinkX3 || + BoardConfig::ACTIVE.board == BoardConfig::Board::XteinkX4; +} + +bool HalGPIO::verifyPowerButtonWakeup(uint16_t requiredDurationMs, bool shortPressAllowed) { + // Boards without a power button (or M5Paper's latch circuit) cannot verify a + // hold; treat the wake as valid. + if (BoardConfig::ACTIVE.input.power < 0) { + return true; + } +#if defined(FREEINK_DEVICE_M5PAPER) && FREEINK_DEVICE_M5PAPER + return true; +#endif if (shortPressAllowed) { // Fast path - no duration check needed - return; + return true; } // TODO: Intermittent edge case remains: a single tap followed by another single tap // can still power on the device. Tighten wake debounce/state handling here. - // Calibrate: subtract boot time already elapsed, assuming button held since boot - const uint16_t calibration = millis(); - const uint16_t calibratedDuration = (calibration < requiredDurationMs) ? (requiredDurationMs - calibration) : 1; + // Calibrate: subtract boot time already elapsed, assuming button held since boot. + const unsigned long calibration = millis(); + const unsigned long calibratedDuration = (calibration < requiredDurationMs) ? (requiredDurationMs - calibration) : 1; const auto start = millis(); inputMgr.update(); @@ -262,11 +293,12 @@ void HalGPIO::verifyPowerButtonWakeup(uint16_t requiredDurationMs, bool shortPre inputMgr.update(); } while (inputMgr.isPressed(BTN_POWER) && inputMgr.getPowerButtonHeldTime() < calibratedDuration); if (inputMgr.getPowerButtonHeldTime() < calibratedDuration) { - startDeepSleep(); + return false; } } else { - startDeepSleep(); + return false; } + return true; } bool HalGPIO::isUsbConnected() const { @@ -282,8 +314,10 @@ bool HalGPIO::isUsbConnected() const { } return false; } - // U0RXD/GPIO20 reads HIGH when USB is connected - return digitalRead(UART0_RXD) == HIGH; + if (BoardConfig::ACTIVE.usbDetect < 0) { + return false; + } + return digitalRead(BoardConfig::ACTIVE.usbDetect) == HIGH; } HalGPIO::WakeupReason HalGPIO::getWakeupReason() const { @@ -292,8 +326,11 @@ HalGPIO::WakeupReason HalGPIO::getWakeupReason() const { const bool usbConnected = isUsbConnected(); - if ((wakeupCause == ESP_SLEEP_WAKEUP_UNDEFINED && resetReason == ESP_RST_POWERON && !usbConnected) || - (wakeupCause == ESP_SLEEP_WAKEUP_GPIO && resetReason == ESP_RST_DEEPSLEEP && usbConnected)) { + if (resetReason == ESP_RST_DEEPSLEEP && + (wakeupCause == ESP_SLEEP_WAKEUP_GPIO || wakeupCause == ESP_SLEEP_WAKEUP_EXT1)) { + return WakeupReason::PowerButton; + } + if (wakeupCause == ESP_SLEEP_WAKEUP_UNDEFINED && resetReason == ESP_RST_POWERON && !usbConnected) { return WakeupReason::PowerButton; } if (wakeupCause == ESP_SLEEP_WAKEUP_UNDEFINED && resetReason == ESP_RST_UNKNOWN && usbConnected) { diff --git a/lib/hal/HalGPIO.h b/lib/hal/HalGPIO.h index 94e9bcd711..69755bd4e9 100644 --- a/lib/hal/HalGPIO.h +++ b/lib/hal/HalGPIO.h @@ -58,6 +58,7 @@ class HalGPIO { // Inline device type helpers for cleaner downstream checks inline bool deviceIsX3() const { return _deviceType == DeviceType::X3; } inline bool deviceIsX4() const { return _deviceType == DeviceType::X4; } + bool isXteinkDevice() const; // Start button GPIO and setup SPI for screen and SD card void begin(); @@ -71,14 +72,20 @@ class HalGPIO { bool wasAnyReleased() const; unsigned long getHeldTime() const; unsigned long getPowerButtonHeldTime() const; - - // Setup wake up GPIO and enter deep sleep - void startDeepSleep(); + bool hasTouch() const; + bool wasTouchTap(float& nx, float& ny) const; + bool wasTouchDown(float& nx, float& ny) const; + bool isTouchTapCandidate(float& nx, float& ny, unsigned long& heldMs) const; + bool isTouchHeldAt(float& nx, float& ny) const; + unsigned long lastTouchHeldMs() const; + bool wasSwipe(float& nxStart, float& nyStart, float& nxEnd, float& nyEnd) const; + bool wasTouchActivity() const; + void setSharedConfirmPowerShortPressEmitsPower(bool enabled); // Verify power button was held long enough after wakeup. - // If verification fails, enters deep sleep and does not return. + // Returns true if verification succeeded, false if device should return to sleep. // Should only be called when wakeup reason is PowerButton. - void verifyPowerButtonWakeup(uint16_t requiredDurationMs, bool shortPressAllowed); + bool verifyPowerButtonWakeup(uint16_t requiredDurationMs, bool shortPressAllowed); // Check if USB is connected bool isUsbConnected() const; diff --git a/lib/hal/HalPowerManager.cpp b/lib/hal/HalPowerManager.cpp index 78f0018fe1..358c921c11 100644 --- a/lib/hal/HalPowerManager.cpp +++ b/lib/hal/HalPowerManager.cpp @@ -1,8 +1,11 @@ #include "HalPowerManager.h" +#include #include +#include #include #include +#include #include @@ -11,14 +14,8 @@ HalPowerManager powerManager; // Singleton instance void HalPowerManager::begin() { - if (gpio.deviceIsX3()) { - // X3 uses an I2C fuel gauge for battery monitoring. - // I2C init must come AFTER gpio.begin() so early hardware detection/probes are finished. - Wire.begin(X3_I2C_SDA, X3_I2C_SCL, X3_I2C_FREQ); - Wire.setTimeOut(4); - _batteryUseI2C = true; - } else { - pinMode(BAT_GPIO0, INPUT); + if (BoardConfig::ACTIVE.batteryAdc >= 0) { + pinMode(BoardConfig::ACTIVE.batteryAdc, INPUT); } normalFreq = getCpuFrequencyMhz(); modeMutex = xSemaphoreCreateMutex(); @@ -61,12 +58,6 @@ void HalPowerManager::setPowerSaving(bool enabled) { } void HalPowerManager::startDeepSleep(HalGPIO& gpio) const { - // Ensure that the power button has been released to avoid immediately turning back on if you're holding it - while (gpio.isPressed(HalGPIO::BTN_POWER)) { - delay(50); - gpio.update(); - } - #ifdef ENABLE_SERIAL_LOG // Tear down HWCDC so the host sees a clean disconnect and the peripheral // doesn't hold power domains that interfere with USB-powered GPIO wake. @@ -75,53 +66,47 @@ void HalPowerManager::startDeepSleep(HalGPIO& gpio) const { logSerial.end(); #endif - // Pre-sleep routines from the original firmware - // GPIO13 is connected to battery latch MOSFET, we need to make sure it's low during sleep - // Note that this means the MCU will be completely powered off during sleep, including RTC - constexpr gpio_num_t GPIO_SPIWP = GPIO_NUM_13; - gpio_set_direction(GPIO_SPIWP, GPIO_MODE_OUTPUT); - gpio_set_level(GPIO_SPIWP, 0); - esp_sleep_config_gpio_isolate(); - gpio_deep_sleep_hold_en(); - gpio_hold_en(GPIO_SPIWP); - pinMode(InputManager::POWER_BUTTON_PIN, INPUT_PULLUP); - // Arm the wakeup trigger *after* the button is released - // Note: this is only useful for waking up on USB power. On battery, the MCU will be completely powered off, so the - // power button is hard-wired to briefly provide power to the MCU, waking it up regardless of the wakeup source - // configuration - esp_deep_sleep_enable_gpio_wakeup(1ULL << InputManager::POWER_BUTTON_PIN, ESP_GPIO_WAKEUP_GPIO_LOW); - // Enter Deep Sleep - esp_deep_sleep_start(); +#if !SOC_PM_SUPPORT_EXT1_WAKEUP + if (gpio.isXteinkDevice() && !gpio.deviceIsX3()) { + // X4 GPIO13 is connected to the battery latch MOSFET. Keeping it low powers + // the MCU off on battery, while the SDK wake source still handles USB power. + constexpr gpio_num_t GPIO_SPIWP = GPIO_NUM_13; + gpio_set_direction(GPIO_SPIWP, GPIO_MODE_OUTPUT); + gpio_set_level(GPIO_SPIWP, 0); + gpio_hold_en(GPIO_SPIWP); + } +#endif + + // Cut the gated peripheral rails (touch/SD/EPD on boards like the Sticky) and + // hold the enables off through deep sleep — otherwise the GT911 and SD card + // stay powered all through "off" and drain the battery. No-op on boards with + // no switched rails (X4/X3). Trade-off: no touch-to-wake; wake is the power + // button. Must run after display.deepSleep() so the panel controller gets its + // deep-sleep command while its rail is still up (enterDeepSleep() in main.cpp + // guarantees that ordering). + freeink::PowerManager::powerDownRailsForSleep(); + + // Waits for the power button to be physically released (so holding it doesn't + // immediately wake the device again), then arms the wake source and sleeps. + freeink::PowerManager::deepSleepUntilPowerButton(); } uint16_t HalPowerManager::getBatteryPercentage() const { - if (_batteryUseI2C) { + static const BatteryMonitor battery; + if (BoardConfig::ACTIVE.batteryGauge.gaugeAddr != 0) { const unsigned long now = millis(); if (_batteryLastPollMs != 0 && (now - _batteryLastPollMs) < BATTERY_POLL_MS) { return _batteryCachedPercent; } - // Read SOC directly from I2C fuel gauge (16-bit LE register). - // On I2C error, keep last known value to avoid UI jitter/slowdowns. - Wire.beginTransmission(I2C_ADDR_BQ27220); - Wire.write(BQ27220_SOC_REG); - if (Wire.endTransmission(false) != 0) { - _batteryLastPollMs = now; - return _batteryCachedPercent; - } - Wire.requestFrom(I2C_ADDR_BQ27220, (uint8_t)2); - if (Wire.available() < 2) { - _batteryLastPollMs = now; + _batteryLastPollMs = now; + uint16_t percent = 0; + if (!battery.readPercentageChecked(percent)) { return _batteryCachedPercent; } - const uint8_t lo = Wire.read(); - const uint8_t hi = Wire.read(); - const uint16_t soc = (hi << 8) | lo; - _batteryCachedPercent = soc > 100 ? 100 : soc; - _batteryLastPollMs = now; + _batteryCachedPercent = percent; return _batteryCachedPercent; } - static const BatteryMonitor battery = BatteryMonitor(BAT_GPIO0); // smooth the battery %. if (_batteryCachedPercent == 0) { diff --git a/lib/hal/HalPowerManager.h b/lib/hal/HalPowerManager.h index bf78623ca3..d2cc99c12b 100644 --- a/lib/hal/HalPowerManager.h +++ b/lib/hal/HalPowerManager.h @@ -4,7 +4,6 @@ #include #include #include -#include #include #include @@ -18,8 +17,6 @@ class HalPowerManager { int normalFreq = 0; // MHz bool isLowPower = false; - // I2C fuel gauge configuration for X3 battery monitoring - bool _batteryUseI2C = false; // True if using I2C fuel gauge (X3), false for ADC (X4) mutable int _batteryCachedPercent = 0; // Last read battery percentage (0-100) mutable unsigned long _batteryLastPollMs = 0; // Timestamp of last battery read in milliseconds @@ -28,7 +25,11 @@ class HalPowerManager { SemaphoreHandle_t modeMutex = nullptr; // Protect access to currentLockMode public: - static constexpr int LOW_POWER_FREQ = 10; // MHz +#if BOARD_HAS_PSRAM + static constexpr int LOW_POWER_FREQ = 80; // MHz +#else + static constexpr int LOW_POWER_FREQ = 10; // MHz +#endif static constexpr unsigned long IDLE_POWER_SAVING_MS = 3000; // ms static constexpr unsigned long BATTERY_POLL_MS = 1500; // ms diff --git a/lib/hal/HalSystem.cpp b/lib/hal/HalSystem.cpp index b92c95a173..2384572086 100644 --- a/lib/hal/HalSystem.cpp +++ b/lib/hal/HalSystem.cpp @@ -38,6 +38,11 @@ void IRAM_ATTR __wrap_panic_print_backtrace(const void* frame, int core) { __real_panic_print_backtrace(frame, core); return; } + +#if !__riscv + __real_panic_print_backtrace(frame, core); + return; +#else for (size_t i = 0; i < MAX_PANIC_STACK_DEPTH; i++) { panicStack[i].sp = 0; } @@ -65,6 +70,7 @@ void IRAM_ATTR __wrap_panic_print_backtrace(const void* frame, int core) { } __real_panic_print_backtrace(frame, core); +#endif } } diff --git a/lib/hal/HalTiltSensor.cpp b/lib/hal/HalTiltSensor.cpp index b5808cca2a..d7f3edfccc 100644 --- a/lib/hal/HalTiltSensor.cpp +++ b/lib/hal/HalTiltSensor.cpp @@ -4,84 +4,29 @@ HalTiltSensor halTiltSensor; // Singleton instance -bool HalTiltSensor::writeReg(uint8_t reg, uint8_t val) const { - Wire.beginTransmission(_i2cAddr); - Wire.write(reg); - Wire.write(val); - return Wire.endTransmission() == 0; -} - -bool HalTiltSensor::readReg(uint8_t reg, uint8_t* val) const { - Wire.beginTransmission(_i2cAddr); - Wire.write(reg); - if (Wire.endTransmission(false) != 0) { - return false; - } - Wire.requestFrom(_i2cAddr, (uint8_t)1); - if (Wire.available() < 1) { - return false; - } - *val = Wire.read(); - return true; -} - bool HalTiltSensor::readGyro(float& gx, float& gy, float& gz) const { - Wire.beginTransmission(_i2cAddr); - Wire.write(REG_GX_L); // Start reading at Gyro X Low - if (Wire.endTransmission(false) != 0) { - return false; - } - - Wire.requestFrom(_i2cAddr, (uint8_t)6); - if (Wire.available() < 6) { - return false; - } - - auto readInt16 = [&]() -> int16_t { - const uint8_t lo = Wire.read(); - const uint8_t hi = Wire.read(); - return static_cast((hi << 8) | lo); - }; - - // If Full Scale is ±512 dps, the scale factor is 32768 / 512 = 64 LSB/dps - constexpr float SCALE = 1.0f / 64.0f; - gx = readInt16() * SCALE; - gy = readInt16() * SCALE; - gz = readInt16() * SCALE; + Imu::Sample sample; + if (!_sdkImu.read(sample)) return false; + gx = sample.gx; + gy = sample.gy; + gz = sample.gz; return true; } void HalTiltSensor::begin() { - if (!gpio.deviceIsX3()) { - _available = false; - return; - } - - // Try primary address, then alternate - uint8_t whoami = 0; - _i2cAddr = I2C_ADDR_QMI8658; - if (!readReg(QMI8658_WHO_AM_I_REG, &whoami) || whoami != QMI8658_WHO_AM_I_VALUE) { - _i2cAddr = I2C_ADDR_QMI8658_ALT; - if (!readReg(QMI8658_WHO_AM_I_REG, &whoami) || whoami != QMI8658_WHO_AM_I_VALUE) { - LOG_ERR("GYR", "QMI8658 IMU not found"); - _available = false; - return; + _available = _sdkImu.begin(); + if (_available) { + _initMs = millis(); + _lastPollMs = millis(); + // begin() leaves the sensors sampling; stand them by until tilt page turn + // actually wakes them, so a disabled IMU doesn't drain the battery. + if (!_sdkImu.sleep()) { + LOG_ERR("GYR", "IMU standby failed"); } - } - - LOG_INF("GYR", "QMI8658 IMU found at 0x%02X", _i2cAddr); - - if (!writeReg(REG_CTRL7, CTRL7_DISABLE_ALL) || !writeReg(REG_CTRL3, CTRL3_FS_512DPS | CTRL3_ODR_28HZ) || - !writeReg(REG_CTRL1, CTRL1_BASE | CTRL1_SENSOR_DISABLE)) { - LOG_ERR("GYR", "QMI8658 register configuration failed"); - _available = false; + LOG_INF("GYR", "SDK IMU initialized"); return; } - - _available = true; - _initMs = millis(); - _lastPollMs = millis(); - LOG_INF("GYR", "QMI8658 gyro initialized and put to sleep"); + LOG_ERR("GYR", "SDK IMU not found"); } bool HalTiltSensor::wake() { @@ -89,21 +34,16 @@ bool HalTiltSensor::wake() { return false; } - // Wait for init to complete before waking - if ((millis() - _initMs) < SLEEP_STABILIZE_MS) { + if (!_sdkImu.wake()) { + LOG_ERR("GYR", "IMU wake failed"); return false; } - if (writeReg(REG_CTRL1, CTRL1_BASE) && writeReg(REG_CTRL7, CTRL7_GYRO_ENABLE)) { - _lastPollMs = millis(); - _lastTiltMs = millis(); - _wakeMs = millis(); - LOG_INF("GYR", "QMI8658 woke up"); - return true; - } else { - LOG_ERR("GYR", "Failed to wake QMI8658"); - return false; - } + _lastPollMs = millis(); + _lastTiltMs = millis(); + _wakeMs = millis(); + _isAwake = true; + return true; } bool HalTiltSensor::deepSleep() { @@ -111,20 +51,15 @@ bool HalTiltSensor::deepSleep() { return false; } - if ((millis() - _wakeMs) < SLEEP_STABILIZE_MS) { + if (!_sdkImu.sleep()) { + LOG_ERR("GYR", "IMU sleep failed"); return false; } - if (writeReg(REG_CTRL7, CTRL7_DISABLE_ALL) && writeReg(REG_CTRL1, CTRL1_BASE | CTRL1_SENSOR_DISABLE)) { - // Clear any residual state so it doesn't immediately trigger upon waking - clearPendingEvents(); - _inTilt = false; - LOG_INF("GYR", "QMI8658 entered sleep mode"); - return true; - } else { - LOG_ERR("GYR", "Failed to put QMI8658 to sleep"); - return false; - } + clearPendingEvents(); + _inTilt = false; + _isAwake = false; + return true; } void HalTiltSensor::update(const uint8_t mode, const uint8_t orientation, const bool inReader) { diff --git a/lib/hal/HalTiltSensor.h b/lib/hal/HalTiltSensor.h index ef132183a4..3c2ba0ff53 100644 --- a/lib/hal/HalTiltSensor.h +++ b/lib/hal/HalTiltSensor.h @@ -1,9 +1,7 @@ #pragma once #include -#include - -#include "HalGPIO.h" +#include // TODO: Move enums into new header and share with CrossPointSettings.h namespace CrossPointOrientation { @@ -19,7 +17,7 @@ extern HalTiltSensor halTiltSensor; // Singleton class HalTiltSensor { bool _available = false; - uint8_t _i2cAddr = 0; + mutable Imu _sdkImu; // Tilt gesture state machine bool _tiltForwardEvent = false; // Consumed by wasTiltedForward() @@ -37,47 +35,22 @@ class HalTiltSensor { static constexpr unsigned long COOLDOWN_MS = 600; // Minimum ms between triggers static constexpr unsigned long POLL_INTERVAL_MS = 50; // 20 Hz polling static constexpr unsigned long WAKE_STABILIZE_MS = 300; // Ignore readings after wake - static constexpr unsigned long SLEEP_STABILIZE_MS = 15; // Sleep turn on/off delay mutable unsigned long _lastPollMs = 0; - // --- QMI8658 registers --- - static constexpr uint8_t REG_CTRL1 = 0x02; - static constexpr uint8_t REG_CTRL3 = 0x04; - static constexpr uint8_t REG_CTRL7 = 0x08; - static constexpr uint8_t REG_GX_L = 0x3B; - - // --- Register Bit Flags --- - - // REG_CTRL1 (0x02) - static constexpr uint8_t CTRL1_BIG_ENDIAN = (1 << 5); // 0x20: Default state (1 = Big Endian) - static constexpr uint8_t CTRL1_AUTO_INC = (1 << 6); // 0x40: Enable address auto-increment - static constexpr uint8_t CTRL1_SENSOR_DISABLE = (1 << 0); // 0x01: Power down sensor engine - static constexpr uint8_t CTRL1_BASE = CTRL1_AUTO_INC | CTRL1_BIG_ENDIAN; // 0x60 - - // REG_CTRL3 (0x04) - Gyro Config - static constexpr uint8_t CTRL3_FS_512DPS = (0b101 << 4); // Bits 6:4 = 101 - static constexpr uint8_t CTRL3_ODR_28HZ = 0b1000; // Bits 3:0 = 1000 (28.025 Hz) - - // REG_CTRL7 (0x08) - Enable - static constexpr uint8_t CTRL7_DISABLE_ALL = 0x00; - static constexpr uint8_t CTRL7_GYRO_ENABLE = (1 << 1); // Bit 1 = 1 - - bool writeReg(uint8_t reg, uint8_t val) const; - bool readReg(uint8_t reg, uint8_t* val) const; bool readGyro(float& gx, float& gy, float& gz) const; public: - // Call after gpio.begin() and powerManager.begin() (I2C already initialised for X3) + // Call after BoardConfig has selected the active device. void begin(); - // Enables the QMI8658 internal sensor engine + // Enables tilt polling state bool wake(); - // Puts the QMI8658 into a low-power standby state + // Puts tilt polling state to sleep bool deepSleep(); - // True if the QMI8658 IMU is present on this device + // True if an IMU is present on this device bool isAvailable() const { return _available; } // Poll the accelerometer and update tilt gesture state. diff --git a/lib/miniz/library.json b/lib/miniz/library.json new file mode 100644 index 0000000000..86e8d0b222 --- /dev/null +++ b/lib/miniz/library.json @@ -0,0 +1,9 @@ +{ + "name": "miniz", + "version": "11.3.2", + "description": "Vendored miniz (tinfl inflate only) + InflateStream wrapper", + "build": { + "srcDir": "src", + "includeDir": "src" + } +} diff --git a/lib/miniz/src/InflateStream.cpp b/lib/miniz/src/InflateStream.cpp new file mode 100644 index 0000000000..fd4a5c3cf7 --- /dev/null +++ b/lib/miniz/src/InflateStream.cpp @@ -0,0 +1,165 @@ +#include "InflateStream.h" + +#include + +#include +#include + +#include "MinizConfig.h" + +namespace { +// tinfl's window must be a power of two; TINFL_LZ_DICT_SIZE is 32768. +constexpr size_t WINDOW_SIZE = TINFL_LZ_DICT_SIZE; +// tinfl_decompressor holds mz_uint32 arrays; 8 keeps the window aligned too. +constexpr size_t STATE_ALIGNED = (sizeof(tinfl_decompressor) + 7) & ~size_t{7}; +} // namespace + +InflateStream::~InflateStream() { deinit(); } + +bool InflateStream::init(const bool streaming) { + // Every consumer constructs a fresh stream per operation, so acquire storage + // from scratch each init (releasing any prior backing first). + deinit(); + + // During a framebuffer loan the lent 48KB is up for grabs: state (~11KB) + + // window (32KB) fit inside it, so a chapter-build inflate costs the heap + // nothing. Absent (or already claimed): plain heap, freed in deinit(). + const size_t needed = STATE_ALIGNED + (streaming ? WINDOW_SIZE : 0); + arenaBase = buildscratch::claim(needed); + if (arenaBase) { + state = reinterpret_cast(arenaBase); + window = streaming ? arenaBase + STATE_ALIGNED : nullptr; + } else { + // Raw malloc (not makeUniqueNoThrow): the header keeps tinfl_decompressor + // an incomplete type so consumers never include miniz; both blocks are + // freed in deinit()/the destructor. + state = static_cast(malloc(sizeof(tinfl_decompressor))); + if (!state) return false; + if (streaming) { + window = static_cast(malloc(WINDOW_SIZE)); + if (!window) return false; // state kept; deinit()/next init reclaims it + } + } + + tinfl_init(state); + windowPos = 0; + pendingStart = 0; + pendingLen = 0; + inPtr = nullptr; + inAvail = 0; + fill = nullptr; + fillCtx = nullptr; + inputExhausted = false; + zlibWrapped = false; + finished = false; + oneShotStart = nullptr; + return true; +} + +void InflateStream::deinit() { + if (arenaBase) { + buildscratch::release(arenaBase); + arenaBase = nullptr; + } else { + free(state); + free(window); + } + state = nullptr; + window = nullptr; +} + +void InflateStream::setSource(const uint8_t* src, const size_t len) { + inPtr = src; + inAvail = len; + inputExhausted = true; // the whole input is present; nothing more will come +} + +void InflateStream::setFill(const FillFn fn, void* ctx) { + fill = fn; + fillCtx = ctx; +} + +InflateStream::Status InflateStream::readAtMost(uint8_t* dest, const size_t maxLen, size_t* produced) { + *produced = 0; + if (!state) return Status::Error; + + const bool streaming = window != nullptr; + if (!streaming && !oneShotStart) oneShotStart = dest; + + for (;;) { + // Drain window bytes left over from a previous tinfl call. In ring mode + // tinfl may produce more than the caller asked for in one shot -- the + // overshoot stays pending in the window until a later readAtMost. + if (pendingLen > 0) { + size_t n = maxLen - *produced; + if (n > pendingLen) n = pendingLen; + memcpy(dest + *produced, window + pendingStart, n); + pendingStart += n; + pendingLen -= n; + *produced += n; + } + if (*produced == maxLen) { + return (finished && pendingLen == 0) ? Status::Done : Status::Ok; + } + if (finished) return Status::Done; + + if (inAvail == 0 && !inputExhausted && fill) { + inAvail = fill(fillCtx, &inPtr); + if (inAvail == 0) inputExhausted = true; + } + + const mz_uint32 flags = (zlibWrapped ? TINFL_FLAG_PARSE_ZLIB_HEADER : 0) | + (inputExhausted ? 0 : TINFL_FLAG_HAS_MORE_INPUT) | + (streaming ? 0 : TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF); + + size_t inBytes = inAvail; + tinfl_status status; + size_t outBytes; + if (streaming) { + // Ring mode invariant: tinfl derives its wrap mask from + // (cursor offset + avail_out), so avail_out MUST always reach the end of + // the 32KB window -- never cap it to the caller's remaining space. + outBytes = WINDOW_SIZE - windowPos; + status = tinfl_decompress(state, inPtr, &inBytes, window, window + windowPos, &outBytes, flags); + pendingStart = windowPos; + pendingLen = outBytes; + windowPos += outBytes; + if (windowPos == WINDOW_SIZE) windowPos = 0; + } else { + // One-shot: back-references resolve directly inside the destination buffer. + outBytes = maxLen - *produced; + status = tinfl_decompress(state, inPtr, &inBytes, oneShotStart, dest + *produced, &outBytes, flags); + *produced += outBytes; + } + inPtr += inBytes; + inAvail -= inBytes; + + if (status == TINFL_STATUS_DONE) { + finished = true; // drain any pending window bytes on the next pass + continue; + } + if (status < TINFL_STATUS_DONE) return Status::Error; // corrupt stream / adler mismatch + // TINFL_STATUS_NEEDS_MORE_INPUT loops back to the fill above; once the fill + // runs dry the HAS_MORE_INPUT flag drops and tinfl either finishes or fails + // (truncated stream) instead of spinning. + if (status == TINFL_STATUS_NEEDS_MORE_INPUT && inputExhausted && inAvail == 0) { + return Status::Error; + } + if (*produced == maxLen) { + return (finished && pendingLen == 0) ? Status::Done : Status::Ok; + } + } +} + +bool InflateStream::read(uint8_t* dest, const size_t len) { + size_t total = 0; + while (total < len) { + size_t produced = 0; + const Status status = readAtMost(dest + total, len - total, &produced); + total += produced; + if (status == Status::Error) return false; + if (status == Status::Done) return total == len; + if (produced == 0) return false; // no progress safeguard + } + return true; +} diff --git a/lib/miniz/src/InflateStream.h b/lib/miniz/src/InflateStream.h new file mode 100644 index 0000000000..51124e2c1c --- /dev/null +++ b/lib/miniz/src/InflateStream.h @@ -0,0 +1,95 @@ +#pragma once + +#include +#include + +// Forward declaration keeps miniz out of consumer translation units; the +// decompressor state is heap-allocated in the .cpp where the type is complete. +struct tinfl_decompressor_tag; + +// Streaming deflate decompressor wrapping miniz's tinfl. +// +// Replaces the uzlib-backed InflateReader on the throughput paths (EPUB zip +// entries, PNG IDAT). tinfl decodes via lookup tables where uzlib walks the +// Huffman tree bit-by-bit -- several times faster on this CPU -- at the cost +// of a larger decompressor state (~11KB, transient for the scope of the +// stream; taken from the lent framebuffer bytes via buildscratch::claim() +// when a FrameBufferLoan is active, heap otherwise). FontDecompressor +// intentionally stays on InflateReader: +// its one-shot flash-resident group decompressions are tiny, and the render +// path should not carry the extra state allocation. +// +// Two modes: +// init(false) -- one-shot: the destination buffer holds the ENTIRE output, +// so back-references resolve inside it and no 32KB window is +// allocated. read()/readAtMost() must be driven with +// contiguous, forward-only slices of that one buffer +// (a single read(dest, totalSize) is the common case). +// init(true) -- streaming: allocates a 32KB window; output can go to any +// buffer in any-sized chunks across calls. +// +// Input is either a single contiguous buffer (setSource) or pulled on demand +// through a fill callback (setFill): return the number of bytes available and +// point *data at them (valid until the next fill call); return 0 at end of +// input. Call setZlibWrapped() before the first read when the stream has a +// zlib header (e.g. PNG IDAT). +class InflateStream { + public: + enum class Status { + Ok, // Output buffer full; more decompressed data remains. + Done, // Stream ended cleanly. produced may be < maxLen. + Error, // Corrupt/truncated stream, or decompression failed. + }; + + using FillFn = size_t (*)(void* ctx, const uint8_t** data); + + InflateStream() = default; + ~InflateStream(); + InflateStream(const InflateStream&) = delete; + InflateStream& operator=(const InflateStream&) = delete; + + // Allocate decompressor state (and the 32KB window when streaming) and reset + // stream state. Reuses existing allocations on repeated calls. Returns false + // on OOM. + bool init(bool streaming); + + // Free the decompressor state and window. + void deinit(); + + // Provide the entire compressed input as one contiguous buffer. + void setSource(const uint8_t* src, size_t len); + + // Provide compressed input on demand. ctx is passed back to fn verbatim. + void setFill(FillFn fn, void* ctx); + + // Declare the input zlib-wrapped (2-byte header + trailing adler32). + void setZlibWrapped() { zlibWrapped = true; } + + // Decompress exactly len bytes into dest. Returns false if the stream ends + // or errors before producing len bytes. + bool read(uint8_t* dest, size_t len); + + // Decompress up to maxLen bytes into dest; *produced gets the byte count. + Status readAtMost(uint8_t* dest, size_t maxLen, size_t* produced); + + private: + tinfl_decompressor_tag* state = nullptr; // ~11KB: heap, or inside the claimed build scratch + uint8_t* window = nullptr; // 32KB ring, streaming mode only + uint8_t* arenaBase = nullptr; // non-null when state/window live in lent framebuffer bytes + size_t windowPos = 0; // ring write cursor + // Decompressed-but-undelivered region of the window (tinfl can overshoot the + // caller's requested length; the overshoot waits here for the next read). + size_t pendingStart = 0; + size_t pendingLen = 0; + + const uint8_t* inPtr = nullptr; + size_t inAvail = 0; + FillFn fill = nullptr; + void* fillCtx = nullptr; + bool inputExhausted = false; + bool zlibWrapped = false; + bool finished = false; + + // One-shot mode: tinfl needs the output buffer start for back-references. + uint8_t* oneShotStart = nullptr; +}; diff --git a/lib/miniz/src/MinizConfig.h b/lib/miniz/src/MinizConfig.h new file mode 100644 index 0000000000..28767fbf69 --- /dev/null +++ b/lib/miniz/src/MinizConfig.h @@ -0,0 +1,35 @@ +/* CrossPoint only needs miniz's low-level streaming inflate (tinfl). The + * archive, deflate, stdio, and zlib-compatibility layers are compiled out so + * the vendored library stays small and never touches the filesystem or clock. + * Include this header instead of so every translation unit sees the + * same configuration. */ +#pragma once + +#define MINIZ_NO_STDIO +#define MINIZ_NO_TIME +#define MINIZ_NO_ARCHIVE_APIS +#define MINIZ_NO_ARCHIVE_WRITING_APIS +#define MINIZ_NO_DEFLATE_APIS +#define MINIZ_NO_ZLIB_COMPATIBLE_NAMES + +// The ESP32 mask ROM exports tinfl_* at fixed addresses via DIRECT linker +// script assignments (e.g. "tinfl_decompress = 0x...;" in the ROM .ld), +// which override object-file definitions -- without these renames the +// firmware silently binds to the ROM's 2021 build (TINFL_LESS_MEMORY, a +// different tinfl_decompressor layout) and corrupts inflate state on real +// data. Rename so the linker can never capture them. The prefix is +// crosspoint_ (NOT freeink_) so a future branch that links FreeInkBook's +// identically-renamed copy does not collide. +#define tinfl_decompress crosspoint_tinfl_decompress +#define tinfl_decompress_mem_to_heap crosspoint_tinfl_decompress_mem_to_heap +#define tinfl_decompress_mem_to_mem crosspoint_tinfl_decompress_mem_to_mem +#define tinfl_decompress_mem_to_callback crosspoint_tinfl_decompress_mem_to_callback +#define mz_crc32 crosspoint_mz_crc32 +#define mz_adler32 crosspoint_mz_adler32 +#define mz_free crosspoint_mz_free + +// Include the vendored miniz by relative path: ESP-IDF ships a ROM miniz.h +// with the SAME include guard but a different (TINFL_LESS_MEMORY) struct +// layout -- resolving through the platform include path would +// silently compile against the wrong structures. +#include "../third_party/miniz.h" diff --git a/lib/miniz/src/miniz_impl.c b/lib/miniz/src/miniz_impl.c new file mode 100644 index 0000000000..4923e30fa1 --- /dev/null +++ b/lib/miniz/src/miniz_impl.c @@ -0,0 +1,7 @@ +/* Compiles the vendored miniz with CrossPoint's configuration. The include + * order is load-bearing (the config defines/renames must be seen first). */ +// clang-format off +#include "MinizConfig.h" + +#include "../third_party/miniz.c" +// clang-format on diff --git a/lib/miniz/third_party/miniz.c b/lib/miniz/third_party/miniz.c new file mode 100644 index 0000000000..54fc5f39ef --- /dev/null +++ b/lib/miniz/third_party/miniz.c @@ -0,0 +1,7922 @@ +#include "miniz.h" +/************************************************************************** + * + * Copyright 2013-2014 RAD Game Tools and Valve Software + * Copyright 2010-2014 Rich Geldreich and Tenacious Software LLC + * 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. + * + **************************************************************************/ + + + +typedef unsigned char mz_validate_uint16[sizeof(mz_uint16) == 2 ? 1 : -1]; +typedef unsigned char mz_validate_uint32[sizeof(mz_uint32) == 4 ? 1 : -1]; +typedef unsigned char mz_validate_uint64[sizeof(mz_uint64) == 8 ? 1 : -1]; + +#ifdef __cplusplus +extern "C" +{ +#endif + + /* ------------------- zlib-style API's */ + + mz_ulong mz_adler32(mz_ulong adler, const unsigned char *ptr, size_t buf_len) + { + mz_uint32 i, s1 = (mz_uint32)(adler & 0xffff), s2 = (mz_uint32)(adler >> 16); + size_t block_len = buf_len % 5552; + if (!ptr) + return MZ_ADLER32_INIT; + while (buf_len) + { + for (i = 0; i + 7 < block_len; i += 8, ptr += 8) + { + s1 += ptr[0], s2 += s1; + s1 += ptr[1], s2 += s1; + s1 += ptr[2], s2 += s1; + s1 += ptr[3], s2 += s1; + s1 += ptr[4], s2 += s1; + s1 += ptr[5], s2 += s1; + s1 += ptr[6], s2 += s1; + s1 += ptr[7], s2 += s1; + } + for (; i < block_len; ++i) + s1 += *ptr++, s2 += s1; + s1 %= 65521U, s2 %= 65521U; + buf_len -= block_len; + block_len = 5552; + } + return (s2 << 16) + s1; + } + +/* Karl Malbrain's compact CRC-32. See "A compact CCITT crc16 and crc32 C implementation that balances processor cache usage against speed": http://www.geocities.com/malbrain/ */ +#if 0 + mz_ulong mz_crc32(mz_ulong crc, const mz_uint8 *ptr, size_t buf_len) + { + static const mz_uint32 s_crc32[16] = { 0, 0x1db71064, 0x3b6e20c8, 0x26d930ac, 0x76dc4190, 0x6b6b51f4, 0x4db26158, 0x5005713c, + 0xedb88320, 0xf00f9344, 0xd6d6a3e8, 0xcb61b38c, 0x9b64c2b0, 0x86d3d2d4, 0xa00ae278, 0xbdbdf21c }; + mz_uint32 crcu32 = (mz_uint32)crc; + if (!ptr) + return MZ_CRC32_INIT; + crcu32 = ~crcu32; + while (buf_len--) + { + mz_uint8 b = *ptr++; + crcu32 = (crcu32 >> 4) ^ s_crc32[(crcu32 & 0xF) ^ (b & 0xF)]; + crcu32 = (crcu32 >> 4) ^ s_crc32[(crcu32 & 0xF) ^ (b >> 4)]; + } + return ~crcu32; + } +#elif defined(USE_EXTERNAL_MZCRC) +/* If USE_EXTERNAL_CRC is defined, an external module will export the + * mz_crc32() symbol for us to use, e.g. an SSE-accelerated version. + * Depending on the impl, it may be necessary to ~ the input/output crc values. + */ +mz_ulong mz_crc32(mz_ulong crc, const mz_uint8 *ptr, size_t buf_len); +#else +/* Faster, but larger CPU cache footprint. + */ +mz_ulong mz_crc32(mz_ulong crc, const mz_uint8 *ptr, size_t buf_len) +{ + static const mz_uint32 s_crc_table[256] = { + 0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA, 0x076DC419, 0x706AF48F, 0xE963A535, + 0x9E6495A3, 0x0EDB8832, 0x79DCB8A4, 0xE0D5E91E, 0x97D2D988, 0x09B64C2B, 0x7EB17CBD, + 0xE7B82D07, 0x90BF1D91, 0x1DB71064, 0x6AB020F2, 0xF3B97148, 0x84BE41DE, 0x1ADAD47D, + 0x6DDDE4EB, 0xF4D4B551, 0x83D385C7, 0x136C9856, 0x646BA8C0, 0xFD62F97A, 0x8A65C9EC, + 0x14015C4F, 0x63066CD9, 0xFA0F3D63, 0x8D080DF5, 0x3B6E20C8, 0x4C69105E, 0xD56041E4, + 0xA2677172, 0x3C03E4D1, 0x4B04D447, 0xD20D85FD, 0xA50AB56B, 0x35B5A8FA, 0x42B2986C, + 0xDBBBC9D6, 0xACBCF940, 0x32D86CE3, 0x45DF5C75, 0xDCD60DCF, 0xABD13D59, 0x26D930AC, + 0x51DE003A, 0xC8D75180, 0xBFD06116, 0x21B4F4B5, 0x56B3C423, 0xCFBA9599, 0xB8BDA50F, + 0x2802B89E, 0x5F058808, 0xC60CD9B2, 0xB10BE924, 0x2F6F7C87, 0x58684C11, 0xC1611DAB, + 0xB6662D3D, 0x76DC4190, 0x01DB7106, 0x98D220BC, 0xEFD5102A, 0x71B18589, 0x06B6B51F, + 0x9FBFE4A5, 0xE8B8D433, 0x7807C9A2, 0x0F00F934, 0x9609A88E, 0xE10E9818, 0x7F6A0DBB, + 0x086D3D2D, 0x91646C97, 0xE6635C01, 0x6B6B51F4, 0x1C6C6162, 0x856530D8, 0xF262004E, + 0x6C0695ED, 0x1B01A57B, 0x8208F4C1, 0xF50FC457, 0x65B0D9C6, 0x12B7E950, 0x8BBEB8EA, + 0xFCB9887C, 0x62DD1DDF, 0x15DA2D49, 0x8CD37CF3, 0xFBD44C65, 0x4DB26158, 0x3AB551CE, + 0xA3BC0074, 0xD4BB30E2, 0x4ADFA541, 0x3DD895D7, 0xA4D1C46D, 0xD3D6F4FB, 0x4369E96A, + 0x346ED9FC, 0xAD678846, 0xDA60B8D0, 0x44042D73, 0x33031DE5, 0xAA0A4C5F, 0xDD0D7CC9, + 0x5005713C, 0x270241AA, 0xBE0B1010, 0xC90C2086, 0x5768B525, 0x206F85B3, 0xB966D409, + 0xCE61E49F, 0x5EDEF90E, 0x29D9C998, 0xB0D09822, 0xC7D7A8B4, 0x59B33D17, 0x2EB40D81, + 0xB7BD5C3B, 0xC0BA6CAD, 0xEDB88320, 0x9ABFB3B6, 0x03B6E20C, 0x74B1D29A, 0xEAD54739, + 0x9DD277AF, 0x04DB2615, 0x73DC1683, 0xE3630B12, 0x94643B84, 0x0D6D6A3E, 0x7A6A5AA8, + 0xE40ECF0B, 0x9309FF9D, 0x0A00AE27, 0x7D079EB1, 0xF00F9344, 0x8708A3D2, 0x1E01F268, + 0x6906C2FE, 0xF762575D, 0x806567CB, 0x196C3671, 0x6E6B06E7, 0xFED41B76, 0x89D32BE0, + 0x10DA7A5A, 0x67DD4ACC, 0xF9B9DF6F, 0x8EBEEFF9, 0x17B7BE43, 0x60B08ED5, 0xD6D6A3E8, + 0xA1D1937E, 0x38D8C2C4, 0x4FDFF252, 0xD1BB67F1, 0xA6BC5767, 0x3FB506DD, 0x48B2364B, + 0xD80D2BDA, 0xAF0A1B4C, 0x36034AF6, 0x41047A60, 0xDF60EFC3, 0xA867DF55, 0x316E8EEF, + 0x4669BE79, 0xCB61B38C, 0xBC66831A, 0x256FD2A0, 0x5268E236, 0xCC0C7795, 0xBB0B4703, + 0x220216B9, 0x5505262F, 0xC5BA3BBE, 0xB2BD0B28, 0x2BB45A92, 0x5CB36A04, 0xC2D7FFA7, + 0xB5D0CF31, 0x2CD99E8B, 0x5BDEAE1D, 0x9B64C2B0, 0xEC63F226, 0x756AA39C, 0x026D930A, + 0x9C0906A9, 0xEB0E363F, 0x72076785, 0x05005713, 0x95BF4A82, 0xE2B87A14, 0x7BB12BAE, + 0x0CB61B38, 0x92D28E9B, 0xE5D5BE0D, 0x7CDCEFB7, 0x0BDBDF21, 0x86D3D2D4, 0xF1D4E242, + 0x68DDB3F8, 0x1FDA836E, 0x81BE16CD, 0xF6B9265B, 0x6FB077E1, 0x18B74777, 0x88085AE6, + 0xFF0F6A70, 0x66063BCA, 0x11010B5C, 0x8F659EFF, 0xF862AE69, 0x616BFFD3, 0x166CCF45, + 0xA00AE278, 0xD70DD2EE, 0x4E048354, 0x3903B3C2, 0xA7672661, 0xD06016F7, 0x4969474D, + 0x3E6E77DB, 0xAED16A4A, 0xD9D65ADC, 0x40DF0B66, 0x37D83BF0, 0xA9BCAE53, 0xDEBB9EC5, + 0x47B2CF7F, 0x30B5FFE9, 0xBDBDF21C, 0xCABAC28A, 0x53B39330, 0x24B4A3A6, 0xBAD03605, + 0xCDD70693, 0x54DE5729, 0x23D967BF, 0xB3667A2E, 0xC4614AB8, 0x5D681B02, 0x2A6F2B94, + 0xB40BBE37, 0xC30C8EA1, 0x5A05DF1B, 0x2D02EF8D + }; + + mz_uint32 crc32 = (mz_uint32)crc ^ 0xFFFFFFFF; + const mz_uint8 *pByte_buf = (const mz_uint8 *)ptr; + + while (buf_len >= 4) + { + crc32 = (crc32 >> 8) ^ s_crc_table[(crc32 ^ pByte_buf[0]) & 0xFF]; + crc32 = (crc32 >> 8) ^ s_crc_table[(crc32 ^ pByte_buf[1]) & 0xFF]; + crc32 = (crc32 >> 8) ^ s_crc_table[(crc32 ^ pByte_buf[2]) & 0xFF]; + crc32 = (crc32 >> 8) ^ s_crc_table[(crc32 ^ pByte_buf[3]) & 0xFF]; + pByte_buf += 4; + buf_len -= 4; + } + + while (buf_len) + { + crc32 = (crc32 >> 8) ^ s_crc_table[(crc32 ^ pByte_buf[0]) & 0xFF]; + ++pByte_buf; + --buf_len; + } + + return ~crc32; +} +#endif + + void mz_free(void *p) + { + MZ_FREE(p); + } + + MINIZ_EXPORT void *miniz_def_alloc_func(void *opaque, size_t items, size_t size) + { + (void)opaque, (void)items, (void)size; + return MZ_MALLOC(items * size); + } + MINIZ_EXPORT void miniz_def_free_func(void *opaque, void *address) + { + (void)opaque, (void)address; + MZ_FREE(address); + } + MINIZ_EXPORT void *miniz_def_realloc_func(void *opaque, void *address, size_t items, size_t size) + { + (void)opaque, (void)address, (void)items, (void)size; + return MZ_REALLOC(address, items * size); + } + + const char *mz_version(void) + { + return MZ_VERSION; + } + +#ifndef MINIZ_NO_ZLIB_APIS + +#ifndef MINIZ_NO_DEFLATE_APIS + + int mz_deflateInit(mz_streamp pStream, int level) + { + return mz_deflateInit2(pStream, level, MZ_DEFLATED, MZ_DEFAULT_WINDOW_BITS, 9, MZ_DEFAULT_STRATEGY); + } + + int mz_deflateInit2(mz_streamp pStream, int level, int method, int window_bits, int mem_level, int strategy) + { + tdefl_compressor *pComp; + mz_uint comp_flags = TDEFL_COMPUTE_ADLER32 | tdefl_create_comp_flags_from_zip_params(level, window_bits, strategy); + + if (!pStream) + return MZ_STREAM_ERROR; + if ((method != MZ_DEFLATED) || ((mem_level < 1) || (mem_level > 9)) || ((window_bits != MZ_DEFAULT_WINDOW_BITS) && (-window_bits != MZ_DEFAULT_WINDOW_BITS))) + return MZ_PARAM_ERROR; + + pStream->data_type = 0; + pStream->adler = MZ_ADLER32_INIT; + pStream->msg = NULL; + pStream->reserved = 0; + pStream->total_in = 0; + pStream->total_out = 0; + if (!pStream->zalloc) + pStream->zalloc = miniz_def_alloc_func; + if (!pStream->zfree) + pStream->zfree = miniz_def_free_func; + + pComp = (tdefl_compressor *)pStream->zalloc(pStream->opaque, 1, sizeof(tdefl_compressor)); + if (!pComp) + return MZ_MEM_ERROR; + + pStream->state = (struct mz_internal_state *)pComp; + + if (tdefl_init(pComp, NULL, NULL, comp_flags) != TDEFL_STATUS_OKAY) + { + mz_deflateEnd(pStream); + return MZ_PARAM_ERROR; + } + + return MZ_OK; + } + + int mz_deflateReset(mz_streamp pStream) + { + if ((!pStream) || (!pStream->state) || (!pStream->zalloc) || (!pStream->zfree)) + return MZ_STREAM_ERROR; + pStream->total_in = pStream->total_out = 0; + tdefl_init((tdefl_compressor *)pStream->state, NULL, NULL, ((tdefl_compressor *)pStream->state)->m_flags); + return MZ_OK; + } + + int mz_deflate(mz_streamp pStream, int flush) + { + size_t in_bytes, out_bytes; + mz_ulong orig_total_in, orig_total_out; + int mz_status = MZ_OK; + + if ((!pStream) || (!pStream->state) || (flush < 0) || (flush > MZ_FINISH) || (!pStream->next_out)) + return MZ_STREAM_ERROR; + if (!pStream->avail_out) + return MZ_BUF_ERROR; + + if (flush == MZ_PARTIAL_FLUSH) + flush = MZ_SYNC_FLUSH; + + if (((tdefl_compressor *)pStream->state)->m_prev_return_status == TDEFL_STATUS_DONE) + return (flush == MZ_FINISH) ? MZ_STREAM_END : MZ_BUF_ERROR; + + orig_total_in = pStream->total_in; + orig_total_out = pStream->total_out; + for (;;) + { + tdefl_status defl_status; + in_bytes = pStream->avail_in; + out_bytes = pStream->avail_out; + + defl_status = tdefl_compress((tdefl_compressor *)pStream->state, pStream->next_in, &in_bytes, pStream->next_out, &out_bytes, (tdefl_flush)flush); + pStream->next_in += (mz_uint)in_bytes; + pStream->avail_in -= (mz_uint)in_bytes; + pStream->total_in += (mz_uint)in_bytes; + pStream->adler = tdefl_get_adler32((tdefl_compressor *)pStream->state); + + pStream->next_out += (mz_uint)out_bytes; + pStream->avail_out -= (mz_uint)out_bytes; + pStream->total_out += (mz_uint)out_bytes; + + if (defl_status < 0) + { + mz_status = MZ_STREAM_ERROR; + break; + } + else if (defl_status == TDEFL_STATUS_DONE) + { + mz_status = MZ_STREAM_END; + break; + } + else if (!pStream->avail_out) + break; + else if ((!pStream->avail_in) && (flush != MZ_FINISH)) + { + if ((flush) || (pStream->total_in != orig_total_in) || (pStream->total_out != orig_total_out)) + break; + return MZ_BUF_ERROR; /* Can't make forward progress without some input. + */ + } + } + return mz_status; + } + + int mz_deflateEnd(mz_streamp pStream) + { + if (!pStream) + return MZ_STREAM_ERROR; + if (pStream->state) + { + pStream->zfree(pStream->opaque, pStream->state); + pStream->state = NULL; + } + return MZ_OK; + } + + mz_ulong mz_deflateBound(mz_streamp pStream, mz_ulong source_len) + { + (void)pStream; + /* This is really over conservative. (And lame, but it's actually pretty tricky to compute a true upper bound given the way tdefl's blocking works.) */ + return MZ_MAX(128 + (source_len * 110) / 100, 128 + source_len + ((source_len / (31 * 1024)) + 1) * 5); + } + + int mz_compress2(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong source_len, int level) + { + int status; + mz_stream stream; + memset(&stream, 0, sizeof(stream)); + + /* In case mz_ulong is 64-bits (argh I hate longs). */ + if ((mz_uint64)(source_len | *pDest_len) > 0xFFFFFFFFU) + return MZ_PARAM_ERROR; + + stream.next_in = pSource; + stream.avail_in = (mz_uint32)source_len; + stream.next_out = pDest; + stream.avail_out = (mz_uint32)*pDest_len; + + status = mz_deflateInit(&stream, level); + if (status != MZ_OK) + return status; + + status = mz_deflate(&stream, MZ_FINISH); + if (status != MZ_STREAM_END) + { + mz_deflateEnd(&stream); + return (status == MZ_OK) ? MZ_BUF_ERROR : status; + } + + *pDest_len = stream.total_out; + return mz_deflateEnd(&stream); + } + + int mz_compress(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong source_len) + { + return mz_compress2(pDest, pDest_len, pSource, source_len, MZ_DEFAULT_COMPRESSION); + } + + mz_ulong mz_compressBound(mz_ulong source_len) + { + return mz_deflateBound(NULL, source_len); + } + +#endif /*#ifndef MINIZ_NO_DEFLATE_APIS*/ + +#ifndef MINIZ_NO_INFLATE_APIS + + typedef struct + { + tinfl_decompressor m_decomp; + mz_uint m_dict_ofs, m_dict_avail, m_first_call, m_has_flushed; + int m_window_bits; + mz_uint8 m_dict[TINFL_LZ_DICT_SIZE]; + tinfl_status m_last_status; + } inflate_state; + + int mz_inflateInit2(mz_streamp pStream, int window_bits) + { + inflate_state *pDecomp; + if (!pStream) + return MZ_STREAM_ERROR; + if ((window_bits != MZ_DEFAULT_WINDOW_BITS) && (-window_bits != MZ_DEFAULT_WINDOW_BITS)) + return MZ_PARAM_ERROR; + + pStream->data_type = 0; + pStream->adler = 0; + pStream->msg = NULL; + pStream->total_in = 0; + pStream->total_out = 0; + pStream->reserved = 0; + if (!pStream->zalloc) + pStream->zalloc = miniz_def_alloc_func; + if (!pStream->zfree) + pStream->zfree = miniz_def_free_func; + + pDecomp = (inflate_state *)pStream->zalloc(pStream->opaque, 1, sizeof(inflate_state)); + if (!pDecomp) + return MZ_MEM_ERROR; + + pStream->state = (struct mz_internal_state *)pDecomp; + + tinfl_init(&pDecomp->m_decomp); + pDecomp->m_dict_ofs = 0; + pDecomp->m_dict_avail = 0; + pDecomp->m_last_status = TINFL_STATUS_NEEDS_MORE_INPUT; + pDecomp->m_first_call = 1; + pDecomp->m_has_flushed = 0; + pDecomp->m_window_bits = window_bits; + + return MZ_OK; + } + + int mz_inflateInit(mz_streamp pStream) + { + return mz_inflateInit2(pStream, MZ_DEFAULT_WINDOW_BITS); + } + + int mz_inflateReset(mz_streamp pStream) + { + inflate_state *pDecomp; + if (!pStream) + return MZ_STREAM_ERROR; + + pStream->data_type = 0; + pStream->adler = 0; + pStream->msg = NULL; + pStream->total_in = 0; + pStream->total_out = 0; + pStream->reserved = 0; + + pDecomp = (inflate_state *)pStream->state; + + tinfl_init(&pDecomp->m_decomp); + pDecomp->m_dict_ofs = 0; + pDecomp->m_dict_avail = 0; + pDecomp->m_last_status = TINFL_STATUS_NEEDS_MORE_INPUT; + pDecomp->m_first_call = 1; + pDecomp->m_has_flushed = 0; + /* pDecomp->m_window_bits = window_bits */; + + return MZ_OK; + } + + int mz_inflate(mz_streamp pStream, int flush) + { + inflate_state *pState; + mz_uint n, first_call, decomp_flags = TINFL_FLAG_COMPUTE_ADLER32; + size_t in_bytes, out_bytes, orig_avail_in; + tinfl_status status; + + if ((!pStream) || (!pStream->state)) + return MZ_STREAM_ERROR; + if (flush == MZ_PARTIAL_FLUSH) + flush = MZ_SYNC_FLUSH; + if ((flush) && (flush != MZ_SYNC_FLUSH) && (flush != MZ_FINISH)) + return MZ_STREAM_ERROR; + + pState = (inflate_state *)pStream->state; + if (pState->m_window_bits > 0) + decomp_flags |= TINFL_FLAG_PARSE_ZLIB_HEADER; + orig_avail_in = pStream->avail_in; + + first_call = pState->m_first_call; + pState->m_first_call = 0; + if (pState->m_last_status < 0) + return MZ_DATA_ERROR; + + if (pState->m_has_flushed && (flush != MZ_FINISH)) + return MZ_STREAM_ERROR; + pState->m_has_flushed |= (flush == MZ_FINISH); + + if ((flush == MZ_FINISH) && (first_call)) + { + /* MZ_FINISH on the first call implies that the input and output buffers are large enough to hold the entire compressed/decompressed file. */ + decomp_flags |= TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF; + in_bytes = pStream->avail_in; + out_bytes = pStream->avail_out; + status = tinfl_decompress(&pState->m_decomp, pStream->next_in, &in_bytes, pStream->next_out, pStream->next_out, &out_bytes, decomp_flags); + pState->m_last_status = status; + pStream->next_in += (mz_uint)in_bytes; + pStream->avail_in -= (mz_uint)in_bytes; + pStream->total_in += (mz_uint)in_bytes; + pStream->adler = tinfl_get_adler32(&pState->m_decomp); + pStream->next_out += (mz_uint)out_bytes; + pStream->avail_out -= (mz_uint)out_bytes; + pStream->total_out += (mz_uint)out_bytes; + + if (status < 0) + return MZ_DATA_ERROR; + else if (status != TINFL_STATUS_DONE) + { + pState->m_last_status = TINFL_STATUS_FAILED; + return MZ_BUF_ERROR; + } + return MZ_STREAM_END; + } + /* flush != MZ_FINISH then we must assume there's more input. */ + if (flush != MZ_FINISH) + decomp_flags |= TINFL_FLAG_HAS_MORE_INPUT; + + if (pState->m_dict_avail) + { + n = MZ_MIN(pState->m_dict_avail, pStream->avail_out); + memcpy(pStream->next_out, pState->m_dict + pState->m_dict_ofs, n); + pStream->next_out += n; + pStream->avail_out -= n; + pStream->total_out += n; + pState->m_dict_avail -= n; + pState->m_dict_ofs = (pState->m_dict_ofs + n) & (TINFL_LZ_DICT_SIZE - 1); + return ((pState->m_last_status == TINFL_STATUS_DONE) && (!pState->m_dict_avail)) ? MZ_STREAM_END : MZ_OK; + } + + for (;;) + { + in_bytes = pStream->avail_in; + out_bytes = TINFL_LZ_DICT_SIZE - pState->m_dict_ofs; + + status = tinfl_decompress(&pState->m_decomp, pStream->next_in, &in_bytes, pState->m_dict, pState->m_dict + pState->m_dict_ofs, &out_bytes, decomp_flags); + pState->m_last_status = status; + + pStream->next_in += (mz_uint)in_bytes; + pStream->avail_in -= (mz_uint)in_bytes; + pStream->total_in += (mz_uint)in_bytes; + pStream->adler = tinfl_get_adler32(&pState->m_decomp); + + pState->m_dict_avail = (mz_uint)out_bytes; + + n = MZ_MIN(pState->m_dict_avail, pStream->avail_out); + memcpy(pStream->next_out, pState->m_dict + pState->m_dict_ofs, n); + pStream->next_out += n; + pStream->avail_out -= n; + pStream->total_out += n; + pState->m_dict_avail -= n; + pState->m_dict_ofs = (pState->m_dict_ofs + n) & (TINFL_LZ_DICT_SIZE - 1); + + if (status < 0) + return MZ_DATA_ERROR; /* Stream is corrupted (there could be some uncompressed data left in the output dictionary - oh well). */ + else if ((status == TINFL_STATUS_NEEDS_MORE_INPUT) && (!orig_avail_in)) + return MZ_BUF_ERROR; /* Signal caller that we can't make forward progress without supplying more input or by setting flush to MZ_FINISH. */ + else if (flush == MZ_FINISH) + { + /* The output buffer MUST be large to hold the remaining uncompressed data when flush==MZ_FINISH. */ + if (status == TINFL_STATUS_DONE) + return pState->m_dict_avail ? MZ_BUF_ERROR : MZ_STREAM_END; + /* status here must be TINFL_STATUS_HAS_MORE_OUTPUT, which means there's at least 1 more byte on the way. If there's no more room left in the output buffer then something is wrong. */ + else if (!pStream->avail_out) + return MZ_BUF_ERROR; + } + else if ((status == TINFL_STATUS_DONE) || (!pStream->avail_in) || (!pStream->avail_out) || (pState->m_dict_avail)) + break; + } + + return ((status == TINFL_STATUS_DONE) && (!pState->m_dict_avail)) ? MZ_STREAM_END : MZ_OK; + } + + int mz_inflateEnd(mz_streamp pStream) + { + if (!pStream) + return MZ_STREAM_ERROR; + if (pStream->state) + { + pStream->zfree(pStream->opaque, pStream->state); + pStream->state = NULL; + } + return MZ_OK; + } + int mz_uncompress2(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong *pSource_len) + { + mz_stream stream; + int status; + memset(&stream, 0, sizeof(stream)); + + /* In case mz_ulong is 64-bits (argh I hate longs). */ + if ((mz_uint64)(*pSource_len | *pDest_len) > 0xFFFFFFFFU) + return MZ_PARAM_ERROR; + + stream.next_in = pSource; + stream.avail_in = (mz_uint32)*pSource_len; + stream.next_out = pDest; + stream.avail_out = (mz_uint32)*pDest_len; + + status = mz_inflateInit(&stream); + if (status != MZ_OK) + return status; + + status = mz_inflate(&stream, MZ_FINISH); + *pSource_len = *pSource_len - stream.avail_in; + if (status != MZ_STREAM_END) + { + mz_inflateEnd(&stream); + return ((status == MZ_BUF_ERROR) && (!stream.avail_in)) ? MZ_DATA_ERROR : status; + } + *pDest_len = stream.total_out; + + return mz_inflateEnd(&stream); + } + + int mz_uncompress(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong source_len) + { + return mz_uncompress2(pDest, pDest_len, pSource, &source_len); + } + +#endif /*#ifndef MINIZ_NO_INFLATE_APIS*/ + + const char *mz_error(int err) + { + static struct + { + int m_err; + const char *m_pDesc; + } s_error_descs[] = { + { MZ_OK, "" }, { MZ_STREAM_END, "stream end" }, { MZ_NEED_DICT, "need dictionary" }, { MZ_ERRNO, "file error" }, { MZ_STREAM_ERROR, "stream error" }, { MZ_DATA_ERROR, "data error" }, { MZ_MEM_ERROR, "out of memory" }, { MZ_BUF_ERROR, "buf error" }, { MZ_VERSION_ERROR, "version error" }, { MZ_PARAM_ERROR, "parameter error" } + }; + mz_uint i; + for (i = 0; i < sizeof(s_error_descs) / sizeof(s_error_descs[0]); ++i) + if (s_error_descs[i].m_err == err) + return s_error_descs[i].m_pDesc; + return NULL; + } + +#endif /*MINIZ_NO_ZLIB_APIS */ + +#ifdef __cplusplus +} +#endif + +/* + This is free and unencumbered software released into the public domain. + + Anyone is free to copy, modify, publish, use, compile, sell, or + distribute this software, either in source code form or as a compiled + binary, for any purpose, commercial or non-commercial, and by any + means. + + In jurisdictions that recognize copyright laws, the author or authors + of this software dedicate any and all copyright interest in the + software to the public domain. We make this dedication for the benefit + of the public at large and to the detriment of our heirs and + successors. We intend this dedication to be an overt act of + relinquishment in perpetuity of all present and future rights to this + software under copyright law. + + 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 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. + + For more information, please refer to +*/ +/************************************************************************** + * + * Copyright 2013-2014 RAD Game Tools and Valve Software + * Copyright 2010-2014 Rich Geldreich and Tenacious Software LLC + * 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. + * + **************************************************************************/ + + + +#ifndef MINIZ_NO_DEFLATE_APIS + +#ifdef __cplusplus +extern "C" +{ +#endif + + /* ------------------- Low-level Compression (independent from all decompression API's) */ + + /* Purposely making these tables static for faster init and thread safety. */ + static const mz_uint16 s_tdefl_len_sym[256] = { + 257, 258, 259, 260, 261, 262, 263, 264, 265, 265, 266, 266, 267, 267, 268, 268, 269, 269, 269, 269, 270, 270, 270, 270, 271, 271, 271, 271, 272, 272, 272, 272, + 273, 273, 273, 273, 273, 273, 273, 273, 274, 274, 274, 274, 274, 274, 274, 274, 275, 275, 275, 275, 275, 275, 275, 275, 276, 276, 276, 276, 276, 276, 276, 276, + 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, + 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, + 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, + 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, + 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 285 + }; + + static const mz_uint8 s_tdefl_len_extra[256] = { + 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0 + }; + + static const mz_uint8 s_tdefl_small_dist_sym[512] = { + 0, 1, 2, 3, 4, 4, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, + 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, + 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, + 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, + 14, 14, 14, 14, 14, 14, 14, 14, 14, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, + 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, + 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, + 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, + 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, + 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, + 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, + 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17 + }; + + static const mz_uint8 s_tdefl_small_dist_extra[512] = { + 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, + 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, + 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, + 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, + 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, + 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, + 7, 7, 7, 7, 7, 7, 7, 7 + }; + + static const mz_uint8 s_tdefl_large_dist_sym[128] = { + 0, 0, 18, 19, 20, 20, 21, 21, 22, 22, 22, 22, 23, 23, 23, 23, 24, 24, 24, 24, 24, 24, 24, 24, 25, 25, 25, 25, 25, 25, 25, 25, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, + 26, 26, 26, 26, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, + 28, 28, 28, 28, 28, 28, 28, 28, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29 + }; + + static const mz_uint8 s_tdefl_large_dist_extra[128] = { + 0, 0, 8, 8, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, + 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, + 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13 + }; + + /* Radix sorts tdefl_sym_freq[] array by 16-bit key m_key. Returns ptr to sorted values. */ + typedef struct + { + mz_uint16 m_key, m_sym_index; + } tdefl_sym_freq; + static tdefl_sym_freq *tdefl_radix_sort_syms(mz_uint num_syms, tdefl_sym_freq *pSyms0, tdefl_sym_freq *pSyms1) + { + mz_uint32 total_passes = 2, pass_shift, pass, i, hist[256 * 2]; + tdefl_sym_freq *pCur_syms = pSyms0, *pNew_syms = pSyms1; + MZ_CLEAR_ARR(hist); + for (i = 0; i < num_syms; i++) + { + mz_uint freq = pSyms0[i].m_key; + hist[freq & 0xFF]++; + hist[256 + ((freq >> 8) & 0xFF)]++; + } + while ((total_passes > 1) && (num_syms == hist[(total_passes - 1) * 256])) + total_passes--; + for (pass_shift = 0, pass = 0; pass < total_passes; pass++, pass_shift += 8) + { + const mz_uint32 *pHist = &hist[pass << 8]; + mz_uint offsets[256], cur_ofs = 0; + for (i = 0; i < 256; i++) + { + offsets[i] = cur_ofs; + cur_ofs += pHist[i]; + } + for (i = 0; i < num_syms; i++) + pNew_syms[offsets[(pCur_syms[i].m_key >> pass_shift) & 0xFF]++] = pCur_syms[i]; + { + tdefl_sym_freq *t = pCur_syms; + pCur_syms = pNew_syms; + pNew_syms = t; + } + } + return pCur_syms; + } + + /* tdefl_calculate_minimum_redundancy() originally written by: Alistair Moffat, alistair@cs.mu.oz.au, Jyrki Katajainen, jyrki@diku.dk, November 1996. */ + static void tdefl_calculate_minimum_redundancy(tdefl_sym_freq *A, int n) + { + int root, leaf, next, avbl, used, dpth; + if (n == 0) + return; + else if (n == 1) + { + A[0].m_key = 1; + return; + } + A[0].m_key += A[1].m_key; + root = 0; + leaf = 2; + for (next = 1; next < n - 1; next++) + { + if (leaf >= n || A[root].m_key < A[leaf].m_key) + { + A[next].m_key = A[root].m_key; + A[root++].m_key = (mz_uint16)next; + } + else + A[next].m_key = A[leaf++].m_key; + if (leaf >= n || (root < next && A[root].m_key < A[leaf].m_key)) + { + A[next].m_key = (mz_uint16)(A[next].m_key + A[root].m_key); + A[root++].m_key = (mz_uint16)next; + } + else + A[next].m_key = (mz_uint16)(A[next].m_key + A[leaf++].m_key); + } + A[n - 2].m_key = 0; + for (next = n - 3; next >= 0; next--) + A[next].m_key = A[A[next].m_key].m_key + 1; + avbl = 1; + used = dpth = 0; + root = n - 2; + next = n - 1; + while (avbl > 0) + { + while (root >= 0 && (int)A[root].m_key == dpth) + { + used++; + root--; + } + while (avbl > used) + { + A[next--].m_key = (mz_uint16)(dpth); + avbl--; + } + avbl = 2 * used; + dpth++; + used = 0; + } + } + + /* Limits canonical Huffman code table's max code size. */ + enum + { + TDEFL_MAX_SUPPORTED_HUFF_CODESIZE = 32 + }; + static void tdefl_huffman_enforce_max_code_size(int *pNum_codes, int code_list_len, int max_code_size) + { + int i; + mz_uint32 total = 0; + if (code_list_len <= 1) + return; + for (i = max_code_size + 1; i <= TDEFL_MAX_SUPPORTED_HUFF_CODESIZE; i++) + pNum_codes[max_code_size] += pNum_codes[i]; + for (i = max_code_size; i > 0; i--) + total += (((mz_uint32)pNum_codes[i]) << (max_code_size - i)); + while (total != (1UL << max_code_size)) + { + pNum_codes[max_code_size]--; + for (i = max_code_size - 1; i > 0; i--) + if (pNum_codes[i]) + { + pNum_codes[i]--; + pNum_codes[i + 1] += 2; + break; + } + total--; + } + } + + static void tdefl_optimize_huffman_table(tdefl_compressor *d, int table_num, int table_len, int code_size_limit, int static_table) + { + int i, j, l, num_codes[1 + TDEFL_MAX_SUPPORTED_HUFF_CODESIZE]; + mz_uint next_code[TDEFL_MAX_SUPPORTED_HUFF_CODESIZE + 1]; + MZ_CLEAR_ARR(num_codes); + if (static_table) + { + for (i = 0; i < table_len; i++) + num_codes[d->m_huff_code_sizes[table_num][i]]++; + } + else + { + tdefl_sym_freq syms0[TDEFL_MAX_HUFF_SYMBOLS], syms1[TDEFL_MAX_HUFF_SYMBOLS], *pSyms; + int num_used_syms = 0; + const mz_uint16 *pSym_count = &d->m_huff_count[table_num][0]; + for (i = 0; i < table_len; i++) + if (pSym_count[i]) + { + syms0[num_used_syms].m_key = (mz_uint16)pSym_count[i]; + syms0[num_used_syms++].m_sym_index = (mz_uint16)i; + } + + pSyms = tdefl_radix_sort_syms(num_used_syms, syms0, syms1); + tdefl_calculate_minimum_redundancy(pSyms, num_used_syms); + + for (i = 0; i < num_used_syms; i++) + num_codes[pSyms[i].m_key]++; + + tdefl_huffman_enforce_max_code_size(num_codes, num_used_syms, code_size_limit); + + MZ_CLEAR_ARR(d->m_huff_code_sizes[table_num]); + MZ_CLEAR_ARR(d->m_huff_codes[table_num]); + for (i = 1, j = num_used_syms; i <= code_size_limit; i++) + for (l = num_codes[i]; l > 0; l--) + d->m_huff_code_sizes[table_num][pSyms[--j].m_sym_index] = (mz_uint8)(i); + } + + next_code[1] = 0; + for (j = 0, i = 2; i <= code_size_limit; i++) + next_code[i] = j = ((j + num_codes[i - 1]) << 1); + + for (i = 0; i < table_len; i++) + { + mz_uint rev_code = 0, code, code_size; + if ((code_size = d->m_huff_code_sizes[table_num][i]) == 0) + continue; + code = next_code[code_size]++; + for (l = code_size; l > 0; l--, code >>= 1) + rev_code = (rev_code << 1) | (code & 1); + d->m_huff_codes[table_num][i] = (mz_uint16)rev_code; + } + } + +#define TDEFL_PUT_BITS(b, l) \ + do \ + { \ + mz_uint bits = b; \ + mz_uint len = l; \ + MZ_ASSERT(bits <= ((1U << len) - 1U)); \ + d->m_bit_buffer |= (bits << d->m_bits_in); \ + d->m_bits_in += len; \ + while (d->m_bits_in >= 8) \ + { \ + if (d->m_pOutput_buf < d->m_pOutput_buf_end) \ + *d->m_pOutput_buf++ = (mz_uint8)(d->m_bit_buffer); \ + d->m_bit_buffer >>= 8; \ + d->m_bits_in -= 8; \ + } \ + } \ + MZ_MACRO_END + +#define TDEFL_RLE_PREV_CODE_SIZE() \ + { \ + if (rle_repeat_count) \ + { \ + if (rle_repeat_count < 3) \ + { \ + d->m_huff_count[2][prev_code_size] = (mz_uint16)(d->m_huff_count[2][prev_code_size] + rle_repeat_count); \ + while (rle_repeat_count--) \ + packed_code_sizes[num_packed_code_sizes++] = prev_code_size; \ + } \ + else \ + { \ + d->m_huff_count[2][16] = (mz_uint16)(d->m_huff_count[2][16] + 1); \ + packed_code_sizes[num_packed_code_sizes++] = 16; \ + packed_code_sizes[num_packed_code_sizes++] = (mz_uint8)(rle_repeat_count - 3); \ + } \ + rle_repeat_count = 0; \ + } \ + } + +#define TDEFL_RLE_ZERO_CODE_SIZE() \ + { \ + if (rle_z_count) \ + { \ + if (rle_z_count < 3) \ + { \ + d->m_huff_count[2][0] = (mz_uint16)(d->m_huff_count[2][0] + rle_z_count); \ + while (rle_z_count--) \ + packed_code_sizes[num_packed_code_sizes++] = 0; \ + } \ + else if (rle_z_count <= 10) \ + { \ + d->m_huff_count[2][17] = (mz_uint16)(d->m_huff_count[2][17] + 1); \ + packed_code_sizes[num_packed_code_sizes++] = 17; \ + packed_code_sizes[num_packed_code_sizes++] = (mz_uint8)(rle_z_count - 3); \ + } \ + else \ + { \ + d->m_huff_count[2][18] = (mz_uint16)(d->m_huff_count[2][18] + 1); \ + packed_code_sizes[num_packed_code_sizes++] = 18; \ + packed_code_sizes[num_packed_code_sizes++] = (mz_uint8)(rle_z_count - 11); \ + } \ + rle_z_count = 0; \ + } \ + } + + static const mz_uint8 s_tdefl_packed_code_size_syms_swizzle[] = { 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 }; + + static void tdefl_start_dynamic_block(tdefl_compressor *d) + { + int num_lit_codes, num_dist_codes, num_bit_lengths; + mz_uint i, total_code_sizes_to_pack, num_packed_code_sizes, rle_z_count, rle_repeat_count, packed_code_sizes_index; + mz_uint8 code_sizes_to_pack[TDEFL_MAX_HUFF_SYMBOLS_0 + TDEFL_MAX_HUFF_SYMBOLS_1], packed_code_sizes[TDEFL_MAX_HUFF_SYMBOLS_0 + TDEFL_MAX_HUFF_SYMBOLS_1], prev_code_size = 0xFF; + + d->m_huff_count[0][256] = 1; + + tdefl_optimize_huffman_table(d, 0, TDEFL_MAX_HUFF_SYMBOLS_0, 15, MZ_FALSE); + tdefl_optimize_huffman_table(d, 1, TDEFL_MAX_HUFF_SYMBOLS_1, 15, MZ_FALSE); + + for (num_lit_codes = 286; num_lit_codes > 257; num_lit_codes--) + if (d->m_huff_code_sizes[0][num_lit_codes - 1]) + break; + for (num_dist_codes = 30; num_dist_codes > 1; num_dist_codes--) + if (d->m_huff_code_sizes[1][num_dist_codes - 1]) + break; + + memcpy(code_sizes_to_pack, &d->m_huff_code_sizes[0][0], num_lit_codes); + memcpy(code_sizes_to_pack + num_lit_codes, &d->m_huff_code_sizes[1][0], num_dist_codes); + total_code_sizes_to_pack = num_lit_codes + num_dist_codes; + num_packed_code_sizes = 0; + rle_z_count = 0; + rle_repeat_count = 0; + + memset(&d->m_huff_count[2][0], 0, sizeof(d->m_huff_count[2][0]) * TDEFL_MAX_HUFF_SYMBOLS_2); + for (i = 0; i < total_code_sizes_to_pack; i++) + { + mz_uint8 code_size = code_sizes_to_pack[i]; + if (!code_size) + { + TDEFL_RLE_PREV_CODE_SIZE(); + if (++rle_z_count == 138) + { + TDEFL_RLE_ZERO_CODE_SIZE(); + } + } + else + { + TDEFL_RLE_ZERO_CODE_SIZE(); + if (code_size != prev_code_size) + { + TDEFL_RLE_PREV_CODE_SIZE(); + d->m_huff_count[2][code_size] = (mz_uint16)(d->m_huff_count[2][code_size] + 1); + packed_code_sizes[num_packed_code_sizes++] = code_size; + } + else if (++rle_repeat_count == 6) + { + TDEFL_RLE_PREV_CODE_SIZE(); + } + } + prev_code_size = code_size; + } + if (rle_repeat_count) + { + TDEFL_RLE_PREV_CODE_SIZE(); + } + else + { + TDEFL_RLE_ZERO_CODE_SIZE(); + } + + tdefl_optimize_huffman_table(d, 2, TDEFL_MAX_HUFF_SYMBOLS_2, 7, MZ_FALSE); + + TDEFL_PUT_BITS(2, 2); + + TDEFL_PUT_BITS(num_lit_codes - 257, 5); + TDEFL_PUT_BITS(num_dist_codes - 1, 5); + + for (num_bit_lengths = 18; num_bit_lengths >= 0; num_bit_lengths--) + if (d->m_huff_code_sizes[2][s_tdefl_packed_code_size_syms_swizzle[num_bit_lengths]]) + break; + num_bit_lengths = MZ_MAX(4, (num_bit_lengths + 1)); + TDEFL_PUT_BITS(num_bit_lengths - 4, 4); + for (i = 0; (int)i < num_bit_lengths; i++) + TDEFL_PUT_BITS(d->m_huff_code_sizes[2][s_tdefl_packed_code_size_syms_swizzle[i]], 3); + + for (packed_code_sizes_index = 0; packed_code_sizes_index < num_packed_code_sizes;) + { + mz_uint code = packed_code_sizes[packed_code_sizes_index++]; + MZ_ASSERT(code < TDEFL_MAX_HUFF_SYMBOLS_2); + TDEFL_PUT_BITS(d->m_huff_codes[2][code], d->m_huff_code_sizes[2][code]); + if (code >= 16) + TDEFL_PUT_BITS(packed_code_sizes[packed_code_sizes_index++], "\02\03\07"[code - 16]); + } + } + + static void tdefl_start_static_block(tdefl_compressor *d) + { + mz_uint i; + mz_uint8 *p = &d->m_huff_code_sizes[0][0]; + + for (i = 0; i <= 143; ++i) + *p++ = 8; + for (; i <= 255; ++i) + *p++ = 9; + for (; i <= 279; ++i) + *p++ = 7; + for (; i <= 287; ++i) + *p++ = 8; + + memset(d->m_huff_code_sizes[1], 5, 32); + + tdefl_optimize_huffman_table(d, 0, 288, 15, MZ_TRUE); + tdefl_optimize_huffman_table(d, 1, 32, 15, MZ_TRUE); + + TDEFL_PUT_BITS(1, 2); + } + + static const mz_uint mz_bitmasks[17] = { 0x0000, 0x0001, 0x0003, 0x0007, 0x000F, 0x001F, 0x003F, 0x007F, 0x00FF, 0x01FF, 0x03FF, 0x07FF, 0x0FFF, 0x1FFF, 0x3FFF, 0x7FFF, 0xFFFF }; + +#if MINIZ_USE_UNALIGNED_LOADS_AND_STORES && MINIZ_LITTLE_ENDIAN && MINIZ_HAS_64BIT_REGISTERS + static mz_bool tdefl_compress_lz_codes(tdefl_compressor *d) + { + mz_uint flags; + mz_uint8 *pLZ_codes; + mz_uint8 *pOutput_buf = d->m_pOutput_buf; + mz_uint8 *pLZ_code_buf_end = d->m_pLZ_code_buf; + mz_uint64 bit_buffer = d->m_bit_buffer; + mz_uint bits_in = d->m_bits_in; + +#define TDEFL_PUT_BITS_FAST(b, l) \ + { \ + bit_buffer |= (((mz_uint64)(b)) << bits_in); \ + bits_in += (l); \ + } + + flags = 1; + for (pLZ_codes = d->m_lz_code_buf; pLZ_codes < pLZ_code_buf_end; flags >>= 1) + { + if (flags == 1) + flags = *pLZ_codes++ | 0x100; + + if (flags & 1) + { + mz_uint s0, s1, n0, n1, sym, num_extra_bits; + mz_uint match_len = pLZ_codes[0]; + mz_uint match_dist = (pLZ_codes[1] | (pLZ_codes[2] << 8)); + pLZ_codes += 3; + + MZ_ASSERT(d->m_huff_code_sizes[0][s_tdefl_len_sym[match_len]]); + TDEFL_PUT_BITS_FAST(d->m_huff_codes[0][s_tdefl_len_sym[match_len]], d->m_huff_code_sizes[0][s_tdefl_len_sym[match_len]]); + TDEFL_PUT_BITS_FAST(match_len & mz_bitmasks[s_tdefl_len_extra[match_len]], s_tdefl_len_extra[match_len]); + + /* This sequence coaxes MSVC into using cmov's vs. jmp's. */ + s0 = s_tdefl_small_dist_sym[match_dist & 511]; + n0 = s_tdefl_small_dist_extra[match_dist & 511]; + s1 = s_tdefl_large_dist_sym[match_dist >> 8]; + n1 = s_tdefl_large_dist_extra[match_dist >> 8]; + sym = (match_dist < 512) ? s0 : s1; + num_extra_bits = (match_dist < 512) ? n0 : n1; + + MZ_ASSERT(d->m_huff_code_sizes[1][sym]); + TDEFL_PUT_BITS_FAST(d->m_huff_codes[1][sym], d->m_huff_code_sizes[1][sym]); + TDEFL_PUT_BITS_FAST(match_dist & mz_bitmasks[num_extra_bits], num_extra_bits); + } + else + { + mz_uint lit = *pLZ_codes++; + MZ_ASSERT(d->m_huff_code_sizes[0][lit]); + TDEFL_PUT_BITS_FAST(d->m_huff_codes[0][lit], d->m_huff_code_sizes[0][lit]); + + if (((flags & 2) == 0) && (pLZ_codes < pLZ_code_buf_end)) + { + flags >>= 1; + lit = *pLZ_codes++; + MZ_ASSERT(d->m_huff_code_sizes[0][lit]); + TDEFL_PUT_BITS_FAST(d->m_huff_codes[0][lit], d->m_huff_code_sizes[0][lit]); + + if (((flags & 2) == 0) && (pLZ_codes < pLZ_code_buf_end)) + { + flags >>= 1; + lit = *pLZ_codes++; + MZ_ASSERT(d->m_huff_code_sizes[0][lit]); + TDEFL_PUT_BITS_FAST(d->m_huff_codes[0][lit], d->m_huff_code_sizes[0][lit]); + } + } + } + + if (pOutput_buf >= d->m_pOutput_buf_end) + return MZ_FALSE; + + memcpy(pOutput_buf, &bit_buffer, sizeof(mz_uint64)); + pOutput_buf += (bits_in >> 3); + bit_buffer >>= (bits_in & ~7); + bits_in &= 7; + } + +#undef TDEFL_PUT_BITS_FAST + + d->m_pOutput_buf = pOutput_buf; + d->m_bits_in = 0; + d->m_bit_buffer = 0; + + while (bits_in) + { + mz_uint32 n = MZ_MIN(bits_in, 16); + TDEFL_PUT_BITS((mz_uint)bit_buffer & mz_bitmasks[n], n); + bit_buffer >>= n; + bits_in -= n; + } + + TDEFL_PUT_BITS(d->m_huff_codes[0][256], d->m_huff_code_sizes[0][256]); + + return (d->m_pOutput_buf < d->m_pOutput_buf_end); + } +#else +static mz_bool tdefl_compress_lz_codes(tdefl_compressor *d) +{ + mz_uint flags; + mz_uint8 *pLZ_codes; + + flags = 1; + for (pLZ_codes = d->m_lz_code_buf; pLZ_codes < d->m_pLZ_code_buf; flags >>= 1) + { + if (flags == 1) + flags = *pLZ_codes++ | 0x100; + if (flags & 1) + { + mz_uint sym, num_extra_bits; + mz_uint match_len = pLZ_codes[0], match_dist = (pLZ_codes[1] | (pLZ_codes[2] << 8)); + pLZ_codes += 3; + + MZ_ASSERT(d->m_huff_code_sizes[0][s_tdefl_len_sym[match_len]]); + TDEFL_PUT_BITS(d->m_huff_codes[0][s_tdefl_len_sym[match_len]], d->m_huff_code_sizes[0][s_tdefl_len_sym[match_len]]); + TDEFL_PUT_BITS(match_len & mz_bitmasks[s_tdefl_len_extra[match_len]], s_tdefl_len_extra[match_len]); + + if (match_dist < 512) + { + sym = s_tdefl_small_dist_sym[match_dist]; + num_extra_bits = s_tdefl_small_dist_extra[match_dist]; + } + else + { + sym = s_tdefl_large_dist_sym[match_dist >> 8]; + num_extra_bits = s_tdefl_large_dist_extra[match_dist >> 8]; + } + MZ_ASSERT(d->m_huff_code_sizes[1][sym]); + TDEFL_PUT_BITS(d->m_huff_codes[1][sym], d->m_huff_code_sizes[1][sym]); + TDEFL_PUT_BITS(match_dist & mz_bitmasks[num_extra_bits], num_extra_bits); + } + else + { + mz_uint lit = *pLZ_codes++; + MZ_ASSERT(d->m_huff_code_sizes[0][lit]); + TDEFL_PUT_BITS(d->m_huff_codes[0][lit], d->m_huff_code_sizes[0][lit]); + } + } + + TDEFL_PUT_BITS(d->m_huff_codes[0][256], d->m_huff_code_sizes[0][256]); + + return (d->m_pOutput_buf < d->m_pOutput_buf_end); +} +#endif /* MINIZ_USE_UNALIGNED_LOADS_AND_STORES && MINIZ_LITTLE_ENDIAN && MINIZ_HAS_64BIT_REGISTERS */ + + static mz_bool tdefl_compress_block(tdefl_compressor *d, mz_bool static_block) + { + if (static_block) + tdefl_start_static_block(d); + else + tdefl_start_dynamic_block(d); + return tdefl_compress_lz_codes(d); + } + + static const mz_uint s_tdefl_num_probes[11] = { 0, 1, 6, 32, 16, 32, 128, 256, 512, 768, 1500 }; + + static int tdefl_flush_block(tdefl_compressor *d, int flush) + { + mz_uint saved_bit_buf, saved_bits_in; + mz_uint8 *pSaved_output_buf; + mz_bool comp_block_succeeded = MZ_FALSE; + int n, use_raw_block = ((d->m_flags & TDEFL_FORCE_ALL_RAW_BLOCKS) != 0) && (d->m_lookahead_pos - d->m_lz_code_buf_dict_pos) <= d->m_dict_size; + mz_uint8 *pOutput_buf_start = ((d->m_pPut_buf_func == NULL) && ((*d->m_pOut_buf_size - d->m_out_buf_ofs) >= TDEFL_OUT_BUF_SIZE)) ? ((mz_uint8 *)d->m_pOut_buf + d->m_out_buf_ofs) : d->m_output_buf; + + d->m_pOutput_buf = pOutput_buf_start; + d->m_pOutput_buf_end = d->m_pOutput_buf + TDEFL_OUT_BUF_SIZE - 16; + + MZ_ASSERT(!d->m_output_flush_remaining); + d->m_output_flush_ofs = 0; + d->m_output_flush_remaining = 0; + + *d->m_pLZ_flags = (mz_uint8)(*d->m_pLZ_flags >> d->m_num_flags_left); + d->m_pLZ_code_buf -= (d->m_num_flags_left == 8); + + if ((d->m_flags & TDEFL_WRITE_ZLIB_HEADER) && (!d->m_block_index)) + { + const mz_uint8 cmf = 0x78; + mz_uint8 flg, flevel = 3; + mz_uint header, i, mz_un = sizeof(s_tdefl_num_probes) / sizeof(mz_uint); + + /* Determine compression level by reversing the process in tdefl_create_comp_flags_from_zip_params() */ + for (i = 0; i < mz_un; i++) + if (s_tdefl_num_probes[i] == (d->m_flags & 0xFFF)) + break; + + if (i < 2) + flevel = 0; + else if (i < 6) + flevel = 1; + else if (i == 6) + flevel = 2; + + header = cmf << 8 | (flevel << 6); + header += 31 - (header % 31); + flg = header & 0xFF; + + TDEFL_PUT_BITS(cmf, 8); + TDEFL_PUT_BITS(flg, 8); + } + + TDEFL_PUT_BITS(flush == TDEFL_FINISH, 1); + + pSaved_output_buf = d->m_pOutput_buf; + saved_bit_buf = d->m_bit_buffer; + saved_bits_in = d->m_bits_in; + + if (!use_raw_block) + comp_block_succeeded = tdefl_compress_block(d, (d->m_flags & TDEFL_FORCE_ALL_STATIC_BLOCKS) || (d->m_total_lz_bytes < 48)); + + /* If the block gets expanded, forget the current contents of the output buffer and send a raw block instead. */ + if (((use_raw_block) || ((d->m_total_lz_bytes) && ((d->m_pOutput_buf - pSaved_output_buf + 1U) >= d->m_total_lz_bytes))) && + ((d->m_lookahead_pos - d->m_lz_code_buf_dict_pos) <= d->m_dict_size)) + { + mz_uint i; + d->m_pOutput_buf = pSaved_output_buf; + d->m_bit_buffer = saved_bit_buf, d->m_bits_in = saved_bits_in; + TDEFL_PUT_BITS(0, 2); + if (d->m_bits_in) + { + TDEFL_PUT_BITS(0, 8 - d->m_bits_in); + } + for (i = 2; i; --i, d->m_total_lz_bytes ^= 0xFFFF) + { + TDEFL_PUT_BITS(d->m_total_lz_bytes & 0xFFFF, 16); + } + for (i = 0; i < d->m_total_lz_bytes; ++i) + { + TDEFL_PUT_BITS(d->m_dict[(d->m_lz_code_buf_dict_pos + i) & TDEFL_LZ_DICT_SIZE_MASK], 8); + } + } + /* Check for the extremely unlikely (if not impossible) case of the compressed block not fitting into the output buffer when using dynamic codes. */ + else if (!comp_block_succeeded) + { + d->m_pOutput_buf = pSaved_output_buf; + d->m_bit_buffer = saved_bit_buf, d->m_bits_in = saved_bits_in; + tdefl_compress_block(d, MZ_TRUE); + } + + if (flush) + { + if (flush == TDEFL_FINISH) + { + if (d->m_bits_in) + { + TDEFL_PUT_BITS(0, 8 - d->m_bits_in); + } + if (d->m_flags & TDEFL_WRITE_ZLIB_HEADER) + { + mz_uint i, a = d->m_adler32; + for (i = 0; i < 4; i++) + { + TDEFL_PUT_BITS((a >> 24) & 0xFF, 8); + a <<= 8; + } + } + } + else + { + mz_uint i, z = 0; + TDEFL_PUT_BITS(0, 3); + if (d->m_bits_in) + { + TDEFL_PUT_BITS(0, 8 - d->m_bits_in); + } + for (i = 2; i; --i, z ^= 0xFFFF) + { + TDEFL_PUT_BITS(z & 0xFFFF, 16); + } + } + } + + MZ_ASSERT(d->m_pOutput_buf < d->m_pOutput_buf_end); + + memset(&d->m_huff_count[0][0], 0, sizeof(d->m_huff_count[0][0]) * TDEFL_MAX_HUFF_SYMBOLS_0); + memset(&d->m_huff_count[1][0], 0, sizeof(d->m_huff_count[1][0]) * TDEFL_MAX_HUFF_SYMBOLS_1); + + d->m_pLZ_code_buf = d->m_lz_code_buf + 1; + d->m_pLZ_flags = d->m_lz_code_buf; + d->m_num_flags_left = 8; + d->m_lz_code_buf_dict_pos += d->m_total_lz_bytes; + d->m_total_lz_bytes = 0; + d->m_block_index++; + + if ((n = (int)(d->m_pOutput_buf - pOutput_buf_start)) != 0) + { + if (d->m_pPut_buf_func) + { + *d->m_pIn_buf_size = d->m_pSrc - (const mz_uint8 *)d->m_pIn_buf; + if (!(*d->m_pPut_buf_func)(d->m_output_buf, n, d->m_pPut_buf_user)) + return (d->m_prev_return_status = TDEFL_STATUS_PUT_BUF_FAILED); + } + else if (pOutput_buf_start == d->m_output_buf) + { + int bytes_to_copy = (int)MZ_MIN((size_t)n, (size_t)(*d->m_pOut_buf_size - d->m_out_buf_ofs)); + memcpy((mz_uint8 *)d->m_pOut_buf + d->m_out_buf_ofs, d->m_output_buf, bytes_to_copy); + d->m_out_buf_ofs += bytes_to_copy; + if ((n -= bytes_to_copy) != 0) + { + d->m_output_flush_ofs = bytes_to_copy; + d->m_output_flush_remaining = n; + } + } + else + { + d->m_out_buf_ofs += n; + } + } + + return d->m_output_flush_remaining; + } + +#if MINIZ_USE_UNALIGNED_LOADS_AND_STORES +#ifdef MINIZ_UNALIGNED_USE_MEMCPY + static mz_uint16 TDEFL_READ_UNALIGNED_WORD(const mz_uint8 *p) + { + mz_uint16 ret; + memcpy(&ret, p, sizeof(mz_uint16)); + return ret; + } + static mz_uint16 TDEFL_READ_UNALIGNED_WORD2(const mz_uint16 *p) + { + mz_uint16 ret; + memcpy(&ret, p, sizeof(mz_uint16)); + return ret; + } +#else +#define TDEFL_READ_UNALIGNED_WORD(p) *(const mz_uint16 *)(p) +#define TDEFL_READ_UNALIGNED_WORD2(p) *(const mz_uint16 *)(p) +#endif + static MZ_FORCEINLINE void tdefl_find_match(tdefl_compressor *d, mz_uint lookahead_pos, mz_uint max_dist, mz_uint max_match_len, mz_uint *pMatch_dist, mz_uint *pMatch_len) + { + mz_uint dist, pos = lookahead_pos & TDEFL_LZ_DICT_SIZE_MASK, match_len = *pMatch_len, probe_pos = pos, next_probe_pos, probe_len; + mz_uint num_probes_left = d->m_max_probes[match_len >= 32]; + const mz_uint16 *s = (const mz_uint16 *)(d->m_dict + pos), *p, *q; + mz_uint16 c01 = TDEFL_READ_UNALIGNED_WORD(&d->m_dict[pos + match_len - 1]), s01 = TDEFL_READ_UNALIGNED_WORD2(s); + MZ_ASSERT(max_match_len <= TDEFL_MAX_MATCH_LEN); + if (max_match_len <= match_len) + return; + for (;;) + { + for (;;) + { + if (--num_probes_left == 0) + return; +#define TDEFL_PROBE \ + next_probe_pos = d->m_next[probe_pos]; \ + if ((!next_probe_pos) || ((dist = (mz_uint16)(lookahead_pos - next_probe_pos)) > max_dist)) \ + return; \ + probe_pos = next_probe_pos & TDEFL_LZ_DICT_SIZE_MASK; \ + if (TDEFL_READ_UNALIGNED_WORD(&d->m_dict[probe_pos + match_len - 1]) == c01) \ + break; + TDEFL_PROBE; + TDEFL_PROBE; + TDEFL_PROBE; + } + if (!dist) + break; + q = (const mz_uint16 *)(d->m_dict + probe_pos); + if (TDEFL_READ_UNALIGNED_WORD2(q) != s01) + continue; + p = s; + probe_len = 32; + do + { + } while ((TDEFL_READ_UNALIGNED_WORD2(++p) == TDEFL_READ_UNALIGNED_WORD2(++q)) && (TDEFL_READ_UNALIGNED_WORD2(++p) == TDEFL_READ_UNALIGNED_WORD2(++q)) && + (TDEFL_READ_UNALIGNED_WORD2(++p) == TDEFL_READ_UNALIGNED_WORD2(++q)) && (TDEFL_READ_UNALIGNED_WORD2(++p) == TDEFL_READ_UNALIGNED_WORD2(++q)) && (--probe_len > 0)); + if (!probe_len) + { + *pMatch_dist = dist; + *pMatch_len = MZ_MIN(max_match_len, (mz_uint)TDEFL_MAX_MATCH_LEN); + break; + } + else if ((probe_len = ((mz_uint)(p - s) * 2) + (mz_uint)(*(const mz_uint8 *)p == *(const mz_uint8 *)q)) > match_len) + { + *pMatch_dist = dist; + if ((*pMatch_len = match_len = MZ_MIN(max_match_len, probe_len)) == max_match_len) + break; + c01 = TDEFL_READ_UNALIGNED_WORD(&d->m_dict[pos + match_len - 1]); + } + } + } +#else +static MZ_FORCEINLINE void tdefl_find_match(tdefl_compressor *d, mz_uint lookahead_pos, mz_uint max_dist, mz_uint max_match_len, mz_uint *pMatch_dist, mz_uint *pMatch_len) +{ + mz_uint dist, pos = lookahead_pos & TDEFL_LZ_DICT_SIZE_MASK, match_len = *pMatch_len, probe_pos = pos, next_probe_pos, probe_len; + mz_uint num_probes_left = d->m_max_probes[match_len >= 32]; + const mz_uint8 *s = d->m_dict + pos, *p, *q; + mz_uint8 c0 = d->m_dict[pos + match_len], c1 = d->m_dict[pos + match_len - 1]; + MZ_ASSERT(max_match_len <= TDEFL_MAX_MATCH_LEN); + if (max_match_len <= match_len) + return; + for (;;) + { + for (;;) + { + if (--num_probes_left == 0) + return; +#define TDEFL_PROBE \ + next_probe_pos = d->m_next[probe_pos]; \ + if ((!next_probe_pos) || ((dist = (mz_uint16)(lookahead_pos - next_probe_pos)) > max_dist)) \ + return; \ + probe_pos = next_probe_pos & TDEFL_LZ_DICT_SIZE_MASK; \ + if ((d->m_dict[probe_pos + match_len] == c0) && (d->m_dict[probe_pos + match_len - 1] == c1)) \ + break; + TDEFL_PROBE; + TDEFL_PROBE; + TDEFL_PROBE; + } + if (!dist) + break; + p = s; + q = d->m_dict + probe_pos; + for (probe_len = 0; probe_len < max_match_len; probe_len++) + if (*p++ != *q++) + break; + if (probe_len > match_len) + { + *pMatch_dist = dist; + if ((*pMatch_len = match_len = probe_len) == max_match_len) + return; + c0 = d->m_dict[pos + match_len]; + c1 = d->m_dict[pos + match_len - 1]; + } + } +} +#endif /* #if MINIZ_USE_UNALIGNED_LOADS_AND_STORES */ + +#if MINIZ_USE_UNALIGNED_LOADS_AND_STORES && MINIZ_LITTLE_ENDIAN +#ifdef MINIZ_UNALIGNED_USE_MEMCPY + static mz_uint32 TDEFL_READ_UNALIGNED_WORD32(const mz_uint8 *p) + { + mz_uint32 ret; + memcpy(&ret, p, sizeof(mz_uint32)); + return ret; + } +#else +#define TDEFL_READ_UNALIGNED_WORD32(p) *(const mz_uint32 *)(p) +#endif + static mz_bool tdefl_compress_fast(tdefl_compressor *d) + { + /* Faster, minimally featured LZRW1-style match+parse loop with better register utilization. Intended for applications where raw throughput is valued more highly than ratio. */ + mz_uint lookahead_pos = d->m_lookahead_pos, lookahead_size = d->m_lookahead_size, dict_size = d->m_dict_size, total_lz_bytes = d->m_total_lz_bytes, num_flags_left = d->m_num_flags_left; + mz_uint8 *pLZ_code_buf = d->m_pLZ_code_buf, *pLZ_flags = d->m_pLZ_flags; + mz_uint cur_pos = lookahead_pos & TDEFL_LZ_DICT_SIZE_MASK; + + while ((d->m_src_buf_left) || ((d->m_flush) && (lookahead_size))) + { + const mz_uint TDEFL_COMP_FAST_LOOKAHEAD_SIZE = 4096; + mz_uint dst_pos = (lookahead_pos + lookahead_size) & TDEFL_LZ_DICT_SIZE_MASK; + mz_uint num_bytes_to_process = (mz_uint)MZ_MIN(d->m_src_buf_left, TDEFL_COMP_FAST_LOOKAHEAD_SIZE - lookahead_size); + d->m_src_buf_left -= num_bytes_to_process; + lookahead_size += num_bytes_to_process; + + while (num_bytes_to_process) + { + mz_uint32 n = MZ_MIN(TDEFL_LZ_DICT_SIZE - dst_pos, num_bytes_to_process); + memcpy(d->m_dict + dst_pos, d->m_pSrc, n); + if (dst_pos < (TDEFL_MAX_MATCH_LEN - 1)) + memcpy(d->m_dict + TDEFL_LZ_DICT_SIZE + dst_pos, d->m_pSrc, MZ_MIN(n, (TDEFL_MAX_MATCH_LEN - 1) - dst_pos)); + d->m_pSrc += n; + dst_pos = (dst_pos + n) & TDEFL_LZ_DICT_SIZE_MASK; + num_bytes_to_process -= n; + } + + dict_size = MZ_MIN(TDEFL_LZ_DICT_SIZE - lookahead_size, dict_size); + if ((!d->m_flush) && (lookahead_size < TDEFL_COMP_FAST_LOOKAHEAD_SIZE)) + break; + + while (lookahead_size >= 4) + { + mz_uint cur_match_dist, cur_match_len = 1; + mz_uint8 *pCur_dict = d->m_dict + cur_pos; + mz_uint first_trigram = TDEFL_READ_UNALIGNED_WORD32(pCur_dict) & 0xFFFFFF; + mz_uint hash = (first_trigram ^ (first_trigram >> (24 - (TDEFL_LZ_HASH_BITS - 8)))) & TDEFL_LEVEL1_HASH_SIZE_MASK; + mz_uint probe_pos = d->m_hash[hash]; + d->m_hash[hash] = (mz_uint16)lookahead_pos; + + if (((cur_match_dist = (mz_uint16)(lookahead_pos - probe_pos)) <= dict_size) && ((TDEFL_READ_UNALIGNED_WORD32(d->m_dict + (probe_pos &= TDEFL_LZ_DICT_SIZE_MASK)) & 0xFFFFFF) == first_trigram)) + { + const mz_uint16 *p = (const mz_uint16 *)pCur_dict; + const mz_uint16 *q = (const mz_uint16 *)(d->m_dict + probe_pos); + mz_uint32 probe_len = 32; + do + { + } while ((TDEFL_READ_UNALIGNED_WORD2(++p) == TDEFL_READ_UNALIGNED_WORD2(++q)) && (TDEFL_READ_UNALIGNED_WORD2(++p) == TDEFL_READ_UNALIGNED_WORD2(++q)) && + (TDEFL_READ_UNALIGNED_WORD2(++p) == TDEFL_READ_UNALIGNED_WORD2(++q)) && (TDEFL_READ_UNALIGNED_WORD2(++p) == TDEFL_READ_UNALIGNED_WORD2(++q)) && (--probe_len > 0)); + cur_match_len = ((mz_uint)(p - (const mz_uint16 *)pCur_dict) * 2) + (mz_uint)(*(const mz_uint8 *)p == *(const mz_uint8 *)q); + if (!probe_len) + cur_match_len = cur_match_dist ? TDEFL_MAX_MATCH_LEN : 0; + + if ((cur_match_len < TDEFL_MIN_MATCH_LEN) || ((cur_match_len == TDEFL_MIN_MATCH_LEN) && (cur_match_dist >= 8U * 1024U))) + { + cur_match_len = 1; + *pLZ_code_buf++ = (mz_uint8)first_trigram; + *pLZ_flags = (mz_uint8)(*pLZ_flags >> 1); + d->m_huff_count[0][(mz_uint8)first_trigram]++; + } + else + { + mz_uint32 s0, s1; + cur_match_len = MZ_MIN(cur_match_len, lookahead_size); + + MZ_ASSERT((cur_match_len >= TDEFL_MIN_MATCH_LEN) && (cur_match_dist >= 1) && (cur_match_dist <= TDEFL_LZ_DICT_SIZE)); + + cur_match_dist--; + + pLZ_code_buf[0] = (mz_uint8)(cur_match_len - TDEFL_MIN_MATCH_LEN); +#ifdef MINIZ_UNALIGNED_USE_MEMCPY + memcpy(&pLZ_code_buf[1], &cur_match_dist, sizeof(cur_match_dist)); +#else + *(mz_uint16 *)(&pLZ_code_buf[1]) = (mz_uint16)cur_match_dist; +#endif + pLZ_code_buf += 3; + *pLZ_flags = (mz_uint8)((*pLZ_flags >> 1) | 0x80); + + s0 = s_tdefl_small_dist_sym[cur_match_dist & 511]; + s1 = s_tdefl_large_dist_sym[cur_match_dist >> 8]; + d->m_huff_count[1][(cur_match_dist < 512) ? s0 : s1]++; + + d->m_huff_count[0][s_tdefl_len_sym[cur_match_len - TDEFL_MIN_MATCH_LEN]]++; + } + } + else + { + *pLZ_code_buf++ = (mz_uint8)first_trigram; + *pLZ_flags = (mz_uint8)(*pLZ_flags >> 1); + d->m_huff_count[0][(mz_uint8)first_trigram]++; + } + + if (--num_flags_left == 0) + { + num_flags_left = 8; + pLZ_flags = pLZ_code_buf++; + } + + total_lz_bytes += cur_match_len; + lookahead_pos += cur_match_len; + dict_size = MZ_MIN(dict_size + cur_match_len, (mz_uint)TDEFL_LZ_DICT_SIZE); + cur_pos = (cur_pos + cur_match_len) & TDEFL_LZ_DICT_SIZE_MASK; + MZ_ASSERT(lookahead_size >= cur_match_len); + lookahead_size -= cur_match_len; + + if (pLZ_code_buf > &d->m_lz_code_buf[TDEFL_LZ_CODE_BUF_SIZE - 8]) + { + int n; + d->m_lookahead_pos = lookahead_pos; + d->m_lookahead_size = lookahead_size; + d->m_dict_size = dict_size; + d->m_total_lz_bytes = total_lz_bytes; + d->m_pLZ_code_buf = pLZ_code_buf; + d->m_pLZ_flags = pLZ_flags; + d->m_num_flags_left = num_flags_left; + if ((n = tdefl_flush_block(d, 0)) != 0) + return (n < 0) ? MZ_FALSE : MZ_TRUE; + total_lz_bytes = d->m_total_lz_bytes; + pLZ_code_buf = d->m_pLZ_code_buf; + pLZ_flags = d->m_pLZ_flags; + num_flags_left = d->m_num_flags_left; + } + } + + while (lookahead_size) + { + mz_uint8 lit = d->m_dict[cur_pos]; + + total_lz_bytes++; + *pLZ_code_buf++ = lit; + *pLZ_flags = (mz_uint8)(*pLZ_flags >> 1); + if (--num_flags_left == 0) + { + num_flags_left = 8; + pLZ_flags = pLZ_code_buf++; + } + + d->m_huff_count[0][lit]++; + + lookahead_pos++; + dict_size = MZ_MIN(dict_size + 1, (mz_uint)TDEFL_LZ_DICT_SIZE); + cur_pos = (cur_pos + 1) & TDEFL_LZ_DICT_SIZE_MASK; + lookahead_size--; + + if (pLZ_code_buf > &d->m_lz_code_buf[TDEFL_LZ_CODE_BUF_SIZE - 8]) + { + int n; + d->m_lookahead_pos = lookahead_pos; + d->m_lookahead_size = lookahead_size; + d->m_dict_size = dict_size; + d->m_total_lz_bytes = total_lz_bytes; + d->m_pLZ_code_buf = pLZ_code_buf; + d->m_pLZ_flags = pLZ_flags; + d->m_num_flags_left = num_flags_left; + if ((n = tdefl_flush_block(d, 0)) != 0) + return (n < 0) ? MZ_FALSE : MZ_TRUE; + total_lz_bytes = d->m_total_lz_bytes; + pLZ_code_buf = d->m_pLZ_code_buf; + pLZ_flags = d->m_pLZ_flags; + num_flags_left = d->m_num_flags_left; + } + } + } + + d->m_lookahead_pos = lookahead_pos; + d->m_lookahead_size = lookahead_size; + d->m_dict_size = dict_size; + d->m_total_lz_bytes = total_lz_bytes; + d->m_pLZ_code_buf = pLZ_code_buf; + d->m_pLZ_flags = pLZ_flags; + d->m_num_flags_left = num_flags_left; + return MZ_TRUE; + } +#endif /* MINIZ_USE_UNALIGNED_LOADS_AND_STORES && MINIZ_LITTLE_ENDIAN */ + + static MZ_FORCEINLINE void tdefl_record_literal(tdefl_compressor *d, mz_uint8 lit) + { + d->m_total_lz_bytes++; + *d->m_pLZ_code_buf++ = lit; + *d->m_pLZ_flags = (mz_uint8)(*d->m_pLZ_flags >> 1); + if (--d->m_num_flags_left == 0) + { + d->m_num_flags_left = 8; + d->m_pLZ_flags = d->m_pLZ_code_buf++; + } + d->m_huff_count[0][lit]++; + } + + static MZ_FORCEINLINE void tdefl_record_match(tdefl_compressor *d, mz_uint match_len, mz_uint match_dist) + { + mz_uint32 s0, s1; + + MZ_ASSERT((match_len >= TDEFL_MIN_MATCH_LEN) && (match_dist >= 1) && (match_dist <= TDEFL_LZ_DICT_SIZE)); + + d->m_total_lz_bytes += match_len; + + d->m_pLZ_code_buf[0] = (mz_uint8)(match_len - TDEFL_MIN_MATCH_LEN); + + match_dist -= 1; + d->m_pLZ_code_buf[1] = (mz_uint8)(match_dist & 0xFF); + d->m_pLZ_code_buf[2] = (mz_uint8)(match_dist >> 8); + d->m_pLZ_code_buf += 3; + + *d->m_pLZ_flags = (mz_uint8)((*d->m_pLZ_flags >> 1) | 0x80); + if (--d->m_num_flags_left == 0) + { + d->m_num_flags_left = 8; + d->m_pLZ_flags = d->m_pLZ_code_buf++; + } + + s0 = s_tdefl_small_dist_sym[match_dist & 511]; + s1 = s_tdefl_large_dist_sym[(match_dist >> 8) & 127]; + d->m_huff_count[1][(match_dist < 512) ? s0 : s1]++; + d->m_huff_count[0][s_tdefl_len_sym[match_len - TDEFL_MIN_MATCH_LEN]]++; + } + + static mz_bool tdefl_compress_normal(tdefl_compressor *d) + { + const mz_uint8 *pSrc = d->m_pSrc; + size_t src_buf_left = d->m_src_buf_left; + tdefl_flush flush = d->m_flush; + + while ((src_buf_left) || ((flush) && (d->m_lookahead_size))) + { + mz_uint len_to_move, cur_match_dist, cur_match_len, cur_pos; + /* Update dictionary and hash chains. Keeps the lookahead size equal to TDEFL_MAX_MATCH_LEN. */ + if ((d->m_lookahead_size + d->m_dict_size) >= (TDEFL_MIN_MATCH_LEN - 1)) + { + mz_uint dst_pos = (d->m_lookahead_pos + d->m_lookahead_size) & TDEFL_LZ_DICT_SIZE_MASK, ins_pos = d->m_lookahead_pos + d->m_lookahead_size - 2; + mz_uint hash = (d->m_dict[ins_pos & TDEFL_LZ_DICT_SIZE_MASK] << TDEFL_LZ_HASH_SHIFT) ^ d->m_dict[(ins_pos + 1) & TDEFL_LZ_DICT_SIZE_MASK]; + mz_uint num_bytes_to_process = (mz_uint)MZ_MIN(src_buf_left, TDEFL_MAX_MATCH_LEN - d->m_lookahead_size); + const mz_uint8 *pSrc_end = pSrc ? pSrc + num_bytes_to_process : NULL; + src_buf_left -= num_bytes_to_process; + d->m_lookahead_size += num_bytes_to_process; + while (pSrc != pSrc_end) + { + mz_uint8 c = *pSrc++; + d->m_dict[dst_pos] = c; + if (dst_pos < (TDEFL_MAX_MATCH_LEN - 1)) + d->m_dict[TDEFL_LZ_DICT_SIZE + dst_pos] = c; + hash = ((hash << TDEFL_LZ_HASH_SHIFT) ^ c) & (TDEFL_LZ_HASH_SIZE - 1); + d->m_next[ins_pos & TDEFL_LZ_DICT_SIZE_MASK] = d->m_hash[hash]; + d->m_hash[hash] = (mz_uint16)(ins_pos); + dst_pos = (dst_pos + 1) & TDEFL_LZ_DICT_SIZE_MASK; + ins_pos++; + } + } + else + { + while ((src_buf_left) && (d->m_lookahead_size < TDEFL_MAX_MATCH_LEN)) + { + mz_uint8 c = *pSrc++; + mz_uint dst_pos = (d->m_lookahead_pos + d->m_lookahead_size) & TDEFL_LZ_DICT_SIZE_MASK; + src_buf_left--; + d->m_dict[dst_pos] = c; + if (dst_pos < (TDEFL_MAX_MATCH_LEN - 1)) + d->m_dict[TDEFL_LZ_DICT_SIZE + dst_pos] = c; + if ((++d->m_lookahead_size + d->m_dict_size) >= TDEFL_MIN_MATCH_LEN) + { + mz_uint ins_pos = d->m_lookahead_pos + (d->m_lookahead_size - 1) - 2; + mz_uint hash = ((d->m_dict[ins_pos & TDEFL_LZ_DICT_SIZE_MASK] << (TDEFL_LZ_HASH_SHIFT * 2)) ^ (d->m_dict[(ins_pos + 1) & TDEFL_LZ_DICT_SIZE_MASK] << TDEFL_LZ_HASH_SHIFT) ^ c) & (TDEFL_LZ_HASH_SIZE - 1); + d->m_next[ins_pos & TDEFL_LZ_DICT_SIZE_MASK] = d->m_hash[hash]; + d->m_hash[hash] = (mz_uint16)(ins_pos); + } + } + } + d->m_dict_size = MZ_MIN(TDEFL_LZ_DICT_SIZE - d->m_lookahead_size, d->m_dict_size); + if ((!flush) && (d->m_lookahead_size < TDEFL_MAX_MATCH_LEN)) + break; + + /* Simple lazy/greedy parsing state machine. */ + len_to_move = 1; + cur_match_dist = 0; + cur_match_len = d->m_saved_match_len ? d->m_saved_match_len : (TDEFL_MIN_MATCH_LEN - 1); + cur_pos = d->m_lookahead_pos & TDEFL_LZ_DICT_SIZE_MASK; + if (d->m_flags & (TDEFL_RLE_MATCHES | TDEFL_FORCE_ALL_RAW_BLOCKS)) + { + if ((d->m_dict_size) && (!(d->m_flags & TDEFL_FORCE_ALL_RAW_BLOCKS))) + { + mz_uint8 c = d->m_dict[(cur_pos - 1) & TDEFL_LZ_DICT_SIZE_MASK]; + cur_match_len = 0; + while (cur_match_len < d->m_lookahead_size) + { + if (d->m_dict[cur_pos + cur_match_len] != c) + break; + cur_match_len++; + } + if (cur_match_len < TDEFL_MIN_MATCH_LEN) + cur_match_len = 0; + else + cur_match_dist = 1; + } + } + else + { + tdefl_find_match(d, d->m_lookahead_pos, d->m_dict_size, d->m_lookahead_size, &cur_match_dist, &cur_match_len); + } + if (((cur_match_len == TDEFL_MIN_MATCH_LEN) && (cur_match_dist >= 8U * 1024U)) || (cur_pos == cur_match_dist) || ((d->m_flags & TDEFL_FILTER_MATCHES) && (cur_match_len <= 5))) + { + cur_match_dist = cur_match_len = 0; + } + if (d->m_saved_match_len) + { + if (cur_match_len > d->m_saved_match_len) + { + tdefl_record_literal(d, (mz_uint8)d->m_saved_lit); + if (cur_match_len >= 128) + { + tdefl_record_match(d, cur_match_len, cur_match_dist); + d->m_saved_match_len = 0; + len_to_move = cur_match_len; + } + else + { + d->m_saved_lit = d->m_dict[cur_pos]; + d->m_saved_match_dist = cur_match_dist; + d->m_saved_match_len = cur_match_len; + } + } + else + { + tdefl_record_match(d, d->m_saved_match_len, d->m_saved_match_dist); + len_to_move = d->m_saved_match_len - 1; + d->m_saved_match_len = 0; + } + } + else if (!cur_match_dist) + tdefl_record_literal(d, d->m_dict[MZ_MIN(cur_pos, sizeof(d->m_dict) - 1)]); + else if ((d->m_greedy_parsing) || (d->m_flags & TDEFL_RLE_MATCHES) || (cur_match_len >= 128)) + { + tdefl_record_match(d, cur_match_len, cur_match_dist); + len_to_move = cur_match_len; + } + else + { + d->m_saved_lit = d->m_dict[MZ_MIN(cur_pos, sizeof(d->m_dict) - 1)]; + d->m_saved_match_dist = cur_match_dist; + d->m_saved_match_len = cur_match_len; + } + /* Move the lookahead forward by len_to_move bytes. */ + d->m_lookahead_pos += len_to_move; + MZ_ASSERT(d->m_lookahead_size >= len_to_move); + d->m_lookahead_size -= len_to_move; + d->m_dict_size = MZ_MIN(d->m_dict_size + len_to_move, (mz_uint)TDEFL_LZ_DICT_SIZE); + /* Check if it's time to flush the current LZ codes to the internal output buffer. */ + if ((d->m_pLZ_code_buf > &d->m_lz_code_buf[TDEFL_LZ_CODE_BUF_SIZE - 8]) || + ((d->m_total_lz_bytes > 31 * 1024) && (((((mz_uint)(d->m_pLZ_code_buf - d->m_lz_code_buf) * 115) >> 7) >= d->m_total_lz_bytes) || (d->m_flags & TDEFL_FORCE_ALL_RAW_BLOCKS)))) + { + int n; + d->m_pSrc = pSrc; + d->m_src_buf_left = src_buf_left; + if ((n = tdefl_flush_block(d, 0)) != 0) + return (n < 0) ? MZ_FALSE : MZ_TRUE; + } + } + + d->m_pSrc = pSrc; + d->m_src_buf_left = src_buf_left; + return MZ_TRUE; + } + + static tdefl_status tdefl_flush_output_buffer(tdefl_compressor *d) + { + if (d->m_pIn_buf_size) + { + *d->m_pIn_buf_size = d->m_pSrc - (const mz_uint8 *)d->m_pIn_buf; + } + + if (d->m_pOut_buf_size) + { + size_t n = MZ_MIN(*d->m_pOut_buf_size - d->m_out_buf_ofs, d->m_output_flush_remaining); + memcpy((mz_uint8 *)d->m_pOut_buf + d->m_out_buf_ofs, d->m_output_buf + d->m_output_flush_ofs, n); + d->m_output_flush_ofs += (mz_uint)n; + d->m_output_flush_remaining -= (mz_uint)n; + d->m_out_buf_ofs += n; + + *d->m_pOut_buf_size = d->m_out_buf_ofs; + } + + return (d->m_finished && !d->m_output_flush_remaining) ? TDEFL_STATUS_DONE : TDEFL_STATUS_OKAY; + } + + tdefl_status tdefl_compress(tdefl_compressor *d, const void *pIn_buf, size_t *pIn_buf_size, void *pOut_buf, size_t *pOut_buf_size, tdefl_flush flush) + { + if (!d) + { + if (pIn_buf_size) + *pIn_buf_size = 0; + if (pOut_buf_size) + *pOut_buf_size = 0; + return TDEFL_STATUS_BAD_PARAM; + } + + d->m_pIn_buf = pIn_buf; + d->m_pIn_buf_size = pIn_buf_size; + d->m_pOut_buf = pOut_buf; + d->m_pOut_buf_size = pOut_buf_size; + d->m_pSrc = (const mz_uint8 *)(pIn_buf); + d->m_src_buf_left = pIn_buf_size ? *pIn_buf_size : 0; + d->m_out_buf_ofs = 0; + d->m_flush = flush; + + if (((d->m_pPut_buf_func != NULL) == ((pOut_buf != NULL) || (pOut_buf_size != NULL))) || (d->m_prev_return_status != TDEFL_STATUS_OKAY) || + (d->m_wants_to_finish && (flush != TDEFL_FINISH)) || (pIn_buf_size && *pIn_buf_size && !pIn_buf) || (pOut_buf_size && *pOut_buf_size && !pOut_buf)) + { + if (pIn_buf_size) + *pIn_buf_size = 0; + if (pOut_buf_size) + *pOut_buf_size = 0; + return (d->m_prev_return_status = TDEFL_STATUS_BAD_PARAM); + } + d->m_wants_to_finish |= (flush == TDEFL_FINISH); + + if ((d->m_output_flush_remaining) || (d->m_finished)) + return (d->m_prev_return_status = tdefl_flush_output_buffer(d)); + +#if MINIZ_USE_UNALIGNED_LOADS_AND_STORES && MINIZ_LITTLE_ENDIAN + if (((d->m_flags & TDEFL_MAX_PROBES_MASK) == 1) && + ((d->m_flags & TDEFL_GREEDY_PARSING_FLAG) != 0) && + ((d->m_flags & (TDEFL_FILTER_MATCHES | TDEFL_FORCE_ALL_RAW_BLOCKS | TDEFL_RLE_MATCHES)) == 0)) + { + if (!tdefl_compress_fast(d)) + return d->m_prev_return_status; + } + else +#endif /* #if MINIZ_USE_UNALIGNED_LOADS_AND_STORES && MINIZ_LITTLE_ENDIAN */ + { + if (!tdefl_compress_normal(d)) + return d->m_prev_return_status; + } + + if ((d->m_flags & (TDEFL_WRITE_ZLIB_HEADER | TDEFL_COMPUTE_ADLER32)) && (pIn_buf)) + d->m_adler32 = (mz_uint32)mz_adler32(d->m_adler32, (const mz_uint8 *)pIn_buf, d->m_pSrc - (const mz_uint8 *)pIn_buf); + + if ((flush) && (!d->m_lookahead_size) && (!d->m_src_buf_left) && (!d->m_output_flush_remaining)) + { + if (tdefl_flush_block(d, flush) < 0) + return d->m_prev_return_status; + d->m_finished = (flush == TDEFL_FINISH); + if (flush == TDEFL_FULL_FLUSH) + { + MZ_CLEAR_ARR(d->m_hash); + MZ_CLEAR_ARR(d->m_next); + d->m_dict_size = 0; + } + } + + return (d->m_prev_return_status = tdefl_flush_output_buffer(d)); + } + + tdefl_status tdefl_compress_buffer(tdefl_compressor *d, const void *pIn_buf, size_t in_buf_size, tdefl_flush flush) + { + MZ_ASSERT(d->m_pPut_buf_func); + return tdefl_compress(d, pIn_buf, &in_buf_size, NULL, NULL, flush); + } + + tdefl_status tdefl_init(tdefl_compressor *d, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags) + { + d->m_pPut_buf_func = pPut_buf_func; + d->m_pPut_buf_user = pPut_buf_user; + d->m_flags = (mz_uint)(flags); + d->m_max_probes[0] = 1 + ((flags & 0xFFF) + 2) / 3; + d->m_greedy_parsing = (flags & TDEFL_GREEDY_PARSING_FLAG) != 0; + d->m_max_probes[1] = 1 + (((flags & 0xFFF) >> 2) + 2) / 3; + if (!(flags & TDEFL_NONDETERMINISTIC_PARSING_FLAG)) + MZ_CLEAR_ARR(d->m_hash); + d->m_lookahead_pos = d->m_lookahead_size = d->m_dict_size = d->m_total_lz_bytes = d->m_lz_code_buf_dict_pos = d->m_bits_in = 0; + d->m_output_flush_ofs = d->m_output_flush_remaining = d->m_finished = d->m_block_index = d->m_bit_buffer = d->m_wants_to_finish = 0; + d->m_pLZ_code_buf = d->m_lz_code_buf + 1; + d->m_pLZ_flags = d->m_lz_code_buf; + *d->m_pLZ_flags = 0; + d->m_num_flags_left = 8; + d->m_pOutput_buf = d->m_output_buf; + d->m_pOutput_buf_end = d->m_output_buf; + d->m_prev_return_status = TDEFL_STATUS_OKAY; + d->m_saved_match_dist = d->m_saved_match_len = d->m_saved_lit = 0; + d->m_adler32 = 1; + d->m_pIn_buf = NULL; + d->m_pOut_buf = NULL; + d->m_pIn_buf_size = NULL; + d->m_pOut_buf_size = NULL; + d->m_flush = TDEFL_NO_FLUSH; + d->m_pSrc = NULL; + d->m_src_buf_left = 0; + d->m_out_buf_ofs = 0; + if (!(flags & TDEFL_NONDETERMINISTIC_PARSING_FLAG)) + MZ_CLEAR_ARR(d->m_dict); + memset(&d->m_huff_count[0][0], 0, sizeof(d->m_huff_count[0][0]) * TDEFL_MAX_HUFF_SYMBOLS_0); + memset(&d->m_huff_count[1][0], 0, sizeof(d->m_huff_count[1][0]) * TDEFL_MAX_HUFF_SYMBOLS_1); + return TDEFL_STATUS_OKAY; + } + + tdefl_status tdefl_get_prev_return_status(tdefl_compressor *d) + { + return d->m_prev_return_status; + } + + mz_uint32 tdefl_get_adler32(tdefl_compressor *d) + { + return d->m_adler32; + } + + mz_bool tdefl_compress_mem_to_output(const void *pBuf, size_t buf_len, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags) + { + tdefl_compressor *pComp; + mz_bool succeeded; + if (((buf_len) && (!pBuf)) || (!pPut_buf_func)) + return MZ_FALSE; + pComp = (tdefl_compressor *)MZ_MALLOC(sizeof(tdefl_compressor)); + if (!pComp) + return MZ_FALSE; + succeeded = (tdefl_init(pComp, pPut_buf_func, pPut_buf_user, flags) == TDEFL_STATUS_OKAY); + succeeded = succeeded && (tdefl_compress_buffer(pComp, pBuf, buf_len, TDEFL_FINISH) == TDEFL_STATUS_DONE); + MZ_FREE(pComp); + return succeeded; + } + + typedef struct + { + size_t m_size, m_capacity; + mz_uint8 *m_pBuf; + mz_bool m_expandable; + } tdefl_output_buffer; + + static mz_bool tdefl_output_buffer_putter(const void *pBuf, int len, void *pUser) + { + tdefl_output_buffer *p = (tdefl_output_buffer *)pUser; + size_t new_size = p->m_size + len; + if (new_size > p->m_capacity) + { + size_t new_capacity = p->m_capacity; + mz_uint8 *pNew_buf; + if (!p->m_expandable) + return MZ_FALSE; + do + { + new_capacity = MZ_MAX(128U, new_capacity << 1U); + } while (new_size > new_capacity); + pNew_buf = (mz_uint8 *)MZ_REALLOC(p->m_pBuf, new_capacity); + if (!pNew_buf) + return MZ_FALSE; + p->m_pBuf = pNew_buf; + p->m_capacity = new_capacity; + } + memcpy((mz_uint8 *)p->m_pBuf + p->m_size, pBuf, len); + p->m_size = new_size; + return MZ_TRUE; + } + + void *tdefl_compress_mem_to_heap(const void *pSrc_buf, size_t src_buf_len, size_t *pOut_len, int flags) + { + tdefl_output_buffer out_buf; + MZ_CLEAR_OBJ(out_buf); + if (!pOut_len) + return MZ_FALSE; + else + *pOut_len = 0; + out_buf.m_expandable = MZ_TRUE; + if (!tdefl_compress_mem_to_output(pSrc_buf, src_buf_len, tdefl_output_buffer_putter, &out_buf, flags)) + return NULL; + *pOut_len = out_buf.m_size; + return out_buf.m_pBuf; + } + + size_t tdefl_compress_mem_to_mem(void *pOut_buf, size_t out_buf_len, const void *pSrc_buf, size_t src_buf_len, int flags) + { + tdefl_output_buffer out_buf; + MZ_CLEAR_OBJ(out_buf); + if (!pOut_buf) + return 0; + out_buf.m_pBuf = (mz_uint8 *)pOut_buf; + out_buf.m_capacity = out_buf_len; + if (!tdefl_compress_mem_to_output(pSrc_buf, src_buf_len, tdefl_output_buffer_putter, &out_buf, flags)) + return 0; + return out_buf.m_size; + } + + /* level may actually range from [0,10] (10 is a "hidden" max level, where we want a bit more compression and it's fine if throughput to fall off a cliff on some files). */ + mz_uint tdefl_create_comp_flags_from_zip_params(int level, int window_bits, int strategy) + { + mz_uint comp_flags = s_tdefl_num_probes[(level >= 0) ? MZ_MIN(10, level) : MZ_DEFAULT_LEVEL] | ((level <= 3) ? TDEFL_GREEDY_PARSING_FLAG : 0); + if (window_bits > 0) + comp_flags |= TDEFL_WRITE_ZLIB_HEADER; + + if (!level) + comp_flags |= TDEFL_FORCE_ALL_RAW_BLOCKS; + else if (strategy == MZ_FILTERED) + comp_flags |= TDEFL_FILTER_MATCHES; + else if (strategy == MZ_HUFFMAN_ONLY) + comp_flags &= ~TDEFL_MAX_PROBES_MASK; + else if (strategy == MZ_FIXED) + comp_flags |= TDEFL_FORCE_ALL_STATIC_BLOCKS; + else if (strategy == MZ_RLE) + comp_flags |= TDEFL_RLE_MATCHES; + + return comp_flags; + } + +#ifdef _MSC_VER +#pragma warning(push) +#pragma warning(disable : 4204) /* nonstandard extension used : non-constant aggregate initializer (also supported by GNU C and C99, so no big deal) */ +#endif + + /* Simple PNG writer function by Alex Evans, 2011. Released into the public domain: https://gist.github.com/908299, more context at + http://altdevblogaday.org/2011/04/06/a-smaller-jpg-encoder/. + This is actually a modification of Alex's original code so PNG files generated by this function pass pngcheck. */ + void *tdefl_write_image_to_png_file_in_memory_ex(const void *pImage, int w, int h, int num_chans, size_t *pLen_out, mz_uint level, mz_bool flip) + { + /* Using a local copy of this array here in case MINIZ_NO_ZLIB_APIS was defined. */ + static const mz_uint s_tdefl_png_num_probes[11] = { 0, 1, 6, 32, 16, 32, 128, 256, 512, 768, 1500 }; + tdefl_compressor *pComp = (tdefl_compressor *)MZ_MALLOC(sizeof(tdefl_compressor)); + tdefl_output_buffer out_buf; + int i, bpl = w * num_chans, y, z; + mz_uint32 c; + *pLen_out = 0; + if (!pComp) + return NULL; + if (w <= 0 || h <= 0 || w > 0xFFFF || h > 0xFFFF || num_chans < 1 || num_chans > 4) + { + MZ_FREE(pComp); + return NULL; + } + MZ_CLEAR_OBJ(out_buf); + out_buf.m_expandable = MZ_TRUE; + out_buf.m_capacity = 57 + MZ_MAX(64, (1 + bpl) * h); + if (NULL == (out_buf.m_pBuf = (mz_uint8 *)MZ_MALLOC(out_buf.m_capacity))) + { + MZ_FREE(pComp); + return NULL; + } + /* write dummy header */ + for (z = 41; z; --z) + tdefl_output_buffer_putter(&z, 1, &out_buf); + /* compress image data */ + tdefl_init(pComp, tdefl_output_buffer_putter, &out_buf, s_tdefl_png_num_probes[MZ_MIN(10, level)] | TDEFL_WRITE_ZLIB_HEADER); + for (y = 0; y < h; ++y) + { + tdefl_compress_buffer(pComp, &z, 1, TDEFL_NO_FLUSH); + tdefl_compress_buffer(pComp, (mz_uint8 *)pImage + (flip ? (h - 1 - y) : y) * bpl, bpl, TDEFL_NO_FLUSH); + } + if (tdefl_compress_buffer(pComp, NULL, 0, TDEFL_FINISH) != TDEFL_STATUS_DONE) + { + MZ_FREE(pComp); + MZ_FREE(out_buf.m_pBuf); + return NULL; + } + /* write real header */ + *pLen_out = out_buf.m_size - 41; + { + static const mz_uint8 chans[] = { 0x00, 0x00, 0x04, 0x02, 0x06 }; + mz_uint8 pnghdr[41] = { 0x89, 0x50, 0x4e, 0x47, 0x0d, + 0x0a, 0x1a, 0x0a, 0x00, 0x00, + 0x00, 0x0d, 0x49, 0x48, 0x44, + 0x52, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x49, 0x44, 0x41, + 0x54 }; + pnghdr[18] = (mz_uint8)(w >> 8); + pnghdr[19] = (mz_uint8)w; + pnghdr[22] = (mz_uint8)(h >> 8); + pnghdr[23] = (mz_uint8)h; + pnghdr[25] = chans[num_chans]; + pnghdr[33] = (mz_uint8)(*pLen_out >> 24); + pnghdr[34] = (mz_uint8)(*pLen_out >> 16); + pnghdr[35] = (mz_uint8)(*pLen_out >> 8); + pnghdr[36] = (mz_uint8)*pLen_out; + c = (mz_uint32)mz_crc32(MZ_CRC32_INIT, pnghdr + 12, 17); + for (i = 0; i < 4; ++i, c <<= 8) + ((mz_uint8 *)(pnghdr + 29))[i] = (mz_uint8)(c >> 24); + memcpy(out_buf.m_pBuf, pnghdr, 41); + } + /* write footer (IDAT CRC-32, followed by IEND chunk) */ + if (!tdefl_output_buffer_putter("\0\0\0\0\0\0\0\0\x49\x45\x4e\x44\xae\x42\x60\x82", 16, &out_buf)) + { + *pLen_out = 0; + MZ_FREE(pComp); + MZ_FREE(out_buf.m_pBuf); + return NULL; + } + c = (mz_uint32)mz_crc32(MZ_CRC32_INIT, out_buf.m_pBuf + 41 - 4, *pLen_out + 4); + for (i = 0; i < 4; ++i, c <<= 8) + (out_buf.m_pBuf + out_buf.m_size - 16)[i] = (mz_uint8)(c >> 24); + /* compute final size of file, grab compressed data buffer and return */ + *pLen_out += 57; + MZ_FREE(pComp); + return out_buf.m_pBuf; + } + void *tdefl_write_image_to_png_file_in_memory(const void *pImage, int w, int h, int num_chans, size_t *pLen_out) + { + /* Level 6 corresponds to TDEFL_DEFAULT_MAX_PROBES or MZ_DEFAULT_LEVEL (but we can't depend on MZ_DEFAULT_LEVEL being available in case the zlib API's where #defined out) */ + return tdefl_write_image_to_png_file_in_memory_ex(pImage, w, h, num_chans, pLen_out, 6, MZ_FALSE); + } + +#ifndef MINIZ_NO_MALLOC + /* Allocate the tdefl_compressor and tinfl_decompressor structures in C so that */ + /* non-C language bindings to tdefL_ and tinfl_ API don't need to worry about */ + /* structure size and allocation mechanism. */ + tdefl_compressor *tdefl_compressor_alloc(void) + { + return (tdefl_compressor *)MZ_MALLOC(sizeof(tdefl_compressor)); + } + + void tdefl_compressor_free(tdefl_compressor *pComp) + { + MZ_FREE(pComp); + } +#endif + +#ifdef _MSC_VER +#pragma warning(pop) +#endif + +#ifdef __cplusplus +} +#endif + +#endif /*#ifndef MINIZ_NO_DEFLATE_APIS*/ + /************************************************************************** + * + * Copyright 2013-2014 RAD Game Tools and Valve Software + * Copyright 2010-2014 Rich Geldreich and Tenacious Software LLC + * 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. + * + **************************************************************************/ + + + +#ifndef MINIZ_NO_INFLATE_APIS + +#ifdef __cplusplus +extern "C" +{ +#endif + + /* ------------------- Low-level Decompression (completely independent from all compression API's) */ + +#define TINFL_MEMCPY(d, s, l) memcpy(d, s, l) +#define TINFL_MEMSET(p, c, l) memset(p, c, l) + +#define TINFL_CR_BEGIN \ + switch (r->m_state) \ + { \ + case 0: +#define TINFL_CR_RETURN(state_index, result) \ + do \ + { \ + status = result; \ + r->m_state = state_index; \ + goto common_exit; \ + case state_index:; \ + } \ + MZ_MACRO_END +#define TINFL_CR_RETURN_FOREVER(state_index, result) \ + do \ + { \ + for (;;) \ + { \ + TINFL_CR_RETURN(state_index, result); \ + } \ + } \ + MZ_MACRO_END +#define TINFL_CR_FINISH } + +#define TINFL_GET_BYTE(state_index, c) \ + do \ + { \ + while (pIn_buf_cur >= pIn_buf_end) \ + { \ + TINFL_CR_RETURN(state_index, (decomp_flags & TINFL_FLAG_HAS_MORE_INPUT) ? TINFL_STATUS_NEEDS_MORE_INPUT : TINFL_STATUS_FAILED_CANNOT_MAKE_PROGRESS); \ + } \ + c = *pIn_buf_cur++; \ + } \ + MZ_MACRO_END + +#define TINFL_NEED_BITS(state_index, n) \ + do \ + { \ + mz_uint c; \ + TINFL_GET_BYTE(state_index, c); \ + bit_buf |= (((tinfl_bit_buf_t)c) << num_bits); \ + num_bits += 8; \ + } while (num_bits < (mz_uint)(n)) +#define TINFL_SKIP_BITS(state_index, n) \ + do \ + { \ + if (num_bits < (mz_uint)(n)) \ + { \ + TINFL_NEED_BITS(state_index, n); \ + } \ + bit_buf >>= (n); \ + num_bits -= (n); \ + } \ + MZ_MACRO_END +#define TINFL_GET_BITS(state_index, b, n) \ + do \ + { \ + if (num_bits < (mz_uint)(n)) \ + { \ + TINFL_NEED_BITS(state_index, n); \ + } \ + b = bit_buf & ((1 << (n)) - 1); \ + bit_buf >>= (n); \ + num_bits -= (n); \ + } \ + MZ_MACRO_END + +/* TINFL_HUFF_BITBUF_FILL() is only used rarely, when the number of bytes remaining in the input buffer falls below 2. */ +/* It reads just enough bytes from the input stream that are needed to decode the next Huffman code (and absolutely no more). It works by trying to fully decode a */ +/* Huffman code by using whatever bits are currently present in the bit buffer. If this fails, it reads another byte, and tries again until it succeeds or until the */ +/* bit buffer contains >=15 bits (deflate's max. Huffman code size). */ +#define TINFL_HUFF_BITBUF_FILL(state_index, pLookUp, pTree) \ + do \ + { \ + temp = pLookUp[bit_buf & (TINFL_FAST_LOOKUP_SIZE - 1)]; \ + if (temp >= 0) \ + { \ + code_len = temp >> 9; \ + if ((code_len) && (num_bits >= code_len)) \ + break; \ + } \ + else if (num_bits > TINFL_FAST_LOOKUP_BITS) \ + { \ + code_len = TINFL_FAST_LOOKUP_BITS; \ + do \ + { \ + temp = pTree[~temp + ((bit_buf >> code_len++) & 1)]; \ + } while ((temp < 0) && (num_bits >= (code_len + 1))); \ + if (temp >= 0) \ + break; \ + } \ + TINFL_GET_BYTE(state_index, c); \ + bit_buf |= (((tinfl_bit_buf_t)c) << num_bits); \ + num_bits += 8; \ + } while (num_bits < 15); + +/* TINFL_HUFF_DECODE() decodes the next Huffman coded symbol. It's more complex than you would initially expect because the zlib API expects the decompressor to never read */ +/* beyond the final byte of the deflate stream. (In other words, when this macro wants to read another byte from the input, it REALLY needs another byte in order to fully */ +/* decode the next Huffman code.) Handling this properly is particularly important on raw deflate (non-zlib) streams, which aren't followed by a byte aligned adler-32. */ +/* The slow path is only executed at the very end of the input buffer. */ +/* v1.16: The original macro handled the case at the very end of the passed-in input buffer, but we also need to handle the case where the user passes in 1+zillion bytes */ +/* following the deflate data and our non-conservative read-ahead path won't kick in here on this code. This is much trickier. */ +#define TINFL_HUFF_DECODE(state_index, sym, pLookUp, pTree) \ + do \ + { \ + int temp; \ + mz_uint code_len, c; \ + if (num_bits < 15) \ + { \ + if ((pIn_buf_end - pIn_buf_cur) < 2) \ + { \ + TINFL_HUFF_BITBUF_FILL(state_index, pLookUp, pTree); \ + } \ + else \ + { \ + bit_buf |= (((tinfl_bit_buf_t)pIn_buf_cur[0]) << num_bits) | (((tinfl_bit_buf_t)pIn_buf_cur[1]) << (num_bits + 8)); \ + pIn_buf_cur += 2; \ + num_bits += 16; \ + } \ + } \ + if ((temp = pLookUp[bit_buf & (TINFL_FAST_LOOKUP_SIZE - 1)]) >= 0) \ + code_len = temp >> 9, temp &= 511; \ + else \ + { \ + code_len = TINFL_FAST_LOOKUP_BITS; \ + do \ + { \ + temp = pTree[~temp + ((bit_buf >> code_len++) & 1)]; \ + } while (temp < 0); \ + } \ + sym = temp; \ + bit_buf >>= code_len; \ + num_bits -= code_len; \ + } \ + MZ_MACRO_END + + static void tinfl_clear_tree(tinfl_decompressor *r) + { + if (r->m_type == 0) + MZ_CLEAR_ARR(r->m_tree_0); + else if (r->m_type == 1) + MZ_CLEAR_ARR(r->m_tree_1); + else + MZ_CLEAR_ARR(r->m_tree_2); + } + + tinfl_status tinfl_decompress(tinfl_decompressor *r, const mz_uint8 *pIn_buf_next, size_t *pIn_buf_size, mz_uint8 *pOut_buf_start, mz_uint8 *pOut_buf_next, size_t *pOut_buf_size, const mz_uint32 decomp_flags) + { + static const mz_uint16 s_length_base[31] = { 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0 }; + static const mz_uint8 s_length_extra[31] = { 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, 0, 0 }; + static const mz_uint16 s_dist_base[32] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577, 0, 0 }; + static const mz_uint8 s_dist_extra[32] = { 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13 }; + static const mz_uint8 s_length_dezigzag[19] = { 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 }; + static const mz_uint16 s_min_table_sizes[3] = { 257, 1, 4 }; + + mz_int16 *pTrees[3]; + mz_uint8 *pCode_sizes[3]; + + tinfl_status status = TINFL_STATUS_FAILED; + mz_uint32 num_bits, dist, counter, num_extra; + tinfl_bit_buf_t bit_buf; + const mz_uint8 *pIn_buf_cur = pIn_buf_next, *const pIn_buf_end = pIn_buf_next + *pIn_buf_size; + mz_uint8 *pOut_buf_cur = pOut_buf_next, *const pOut_buf_end = pOut_buf_next ? pOut_buf_next + *pOut_buf_size : NULL; + size_t out_buf_size_mask = (decomp_flags & TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF) ? (size_t)-1 : ((pOut_buf_next - pOut_buf_start) + *pOut_buf_size) - 1, dist_from_out_buf_start; + + /* Ensure the output buffer's size is a power of 2, unless the output buffer is large enough to hold the entire output file (in which case it doesn't matter). */ + if (((out_buf_size_mask + 1) & out_buf_size_mask) || (pOut_buf_next < pOut_buf_start)) + { + *pIn_buf_size = *pOut_buf_size = 0; + return TINFL_STATUS_BAD_PARAM; + } + + pTrees[0] = r->m_tree_0; + pTrees[1] = r->m_tree_1; + pTrees[2] = r->m_tree_2; + pCode_sizes[0] = r->m_code_size_0; + pCode_sizes[1] = r->m_code_size_1; + pCode_sizes[2] = r->m_code_size_2; + + num_bits = r->m_num_bits; + bit_buf = r->m_bit_buf; + dist = r->m_dist; + counter = r->m_counter; + num_extra = r->m_num_extra; + dist_from_out_buf_start = r->m_dist_from_out_buf_start; + TINFL_CR_BEGIN + + bit_buf = num_bits = dist = counter = num_extra = r->m_zhdr0 = r->m_zhdr1 = 0; + r->m_z_adler32 = r->m_check_adler32 = 1; + if (decomp_flags & TINFL_FLAG_PARSE_ZLIB_HEADER) + { + TINFL_GET_BYTE(1, r->m_zhdr0); + TINFL_GET_BYTE(2, r->m_zhdr1); + counter = (((r->m_zhdr0 * 256 + r->m_zhdr1) % 31 != 0) || (r->m_zhdr1 & 32) || ((r->m_zhdr0 & 15) != 8)); + if (!(decomp_flags & TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF)) + counter |= (((1U << (8U + (r->m_zhdr0 >> 4))) > 32768U) || ((out_buf_size_mask + 1) < (size_t)((size_t)1 << (8U + (r->m_zhdr0 >> 4))))); + if (counter) + { + TINFL_CR_RETURN_FOREVER(36, TINFL_STATUS_FAILED); + } + } + + do + { + TINFL_GET_BITS(3, r->m_final, 3); + r->m_type = r->m_final >> 1; + if (r->m_type == 0) + { + TINFL_SKIP_BITS(5, num_bits & 7); + for (counter = 0; counter < 4; ++counter) + { + if (num_bits) + TINFL_GET_BITS(6, r->m_raw_header[counter], 8); + else + TINFL_GET_BYTE(7, r->m_raw_header[counter]); + } + if ((counter = (r->m_raw_header[0] | (r->m_raw_header[1] << 8))) != (mz_uint)(0xFFFF ^ (r->m_raw_header[2] | (r->m_raw_header[3] << 8)))) + { + TINFL_CR_RETURN_FOREVER(39, TINFL_STATUS_FAILED); + } + while ((counter) && (num_bits)) + { + TINFL_GET_BITS(51, dist, 8); + while (pOut_buf_cur >= pOut_buf_end) + { + TINFL_CR_RETURN(52, TINFL_STATUS_HAS_MORE_OUTPUT); + } + *pOut_buf_cur++ = (mz_uint8)dist; + counter--; + } + while (counter) + { + size_t n; + while (pOut_buf_cur >= pOut_buf_end) + { + TINFL_CR_RETURN(9, TINFL_STATUS_HAS_MORE_OUTPUT); + } + while (pIn_buf_cur >= pIn_buf_end) + { + TINFL_CR_RETURN(38, (decomp_flags & TINFL_FLAG_HAS_MORE_INPUT) ? TINFL_STATUS_NEEDS_MORE_INPUT : TINFL_STATUS_FAILED_CANNOT_MAKE_PROGRESS); + } + n = MZ_MIN(MZ_MIN((size_t)(pOut_buf_end - pOut_buf_cur), (size_t)(pIn_buf_end - pIn_buf_cur)), counter); + TINFL_MEMCPY(pOut_buf_cur, pIn_buf_cur, n); + pIn_buf_cur += n; + pOut_buf_cur += n; + counter -= (mz_uint)n; + } + } + else if (r->m_type == 3) + { + TINFL_CR_RETURN_FOREVER(10, TINFL_STATUS_FAILED); + } + else + { + if (r->m_type == 1) + { + mz_uint8 *p = r->m_code_size_0; + mz_uint i; + r->m_table_sizes[0] = 288; + r->m_table_sizes[1] = 32; + TINFL_MEMSET(r->m_code_size_1, 5, 32); + for (i = 0; i <= 143; ++i) + *p++ = 8; + for (; i <= 255; ++i) + *p++ = 9; + for (; i <= 279; ++i) + *p++ = 7; + for (; i <= 287; ++i) + *p++ = 8; + } + else + { + for (counter = 0; counter < 3; counter++) + { + TINFL_GET_BITS(11, r->m_table_sizes[counter], "\05\05\04"[counter]); + r->m_table_sizes[counter] += s_min_table_sizes[counter]; + } + MZ_CLEAR_ARR(r->m_code_size_2); + for (counter = 0; counter < r->m_table_sizes[2]; counter++) + { + mz_uint s; + TINFL_GET_BITS(14, s, 3); + r->m_code_size_2[s_length_dezigzag[counter]] = (mz_uint8)s; + } + r->m_table_sizes[2] = 19; + } + for (; (int)r->m_type >= 0; r->m_type--) + { + int tree_next, tree_cur; + mz_int16 *pLookUp; + mz_int16 *pTree; + mz_uint8 *pCode_size; + mz_uint i, j, used_syms, total, sym_index, next_code[17], total_syms[16]; + pLookUp = r->m_look_up[r->m_type]; + pTree = pTrees[r->m_type]; + pCode_size = pCode_sizes[r->m_type]; + MZ_CLEAR_ARR(total_syms); + TINFL_MEMSET(pLookUp, 0, sizeof(r->m_look_up[0])); + tinfl_clear_tree(r); + for (i = 0; i < r->m_table_sizes[r->m_type]; ++i) + total_syms[pCode_size[i]]++; + used_syms = 0, total = 0; + next_code[0] = next_code[1] = 0; + for (i = 1; i <= 15; ++i) + { + used_syms += total_syms[i]; + next_code[i + 1] = (total = ((total + total_syms[i]) << 1)); + } + if ((65536 != total) && (used_syms > 1)) + { + TINFL_CR_RETURN_FOREVER(35, TINFL_STATUS_FAILED); + } + for (tree_next = -1, sym_index = 0; sym_index < r->m_table_sizes[r->m_type]; ++sym_index) + { + mz_uint rev_code = 0, l, cur_code, code_size = pCode_size[sym_index]; + if (!code_size) + continue; + cur_code = next_code[code_size]++; + for (l = code_size; l > 0; l--, cur_code >>= 1) + rev_code = (rev_code << 1) | (cur_code & 1); + if (code_size <= TINFL_FAST_LOOKUP_BITS) + { + mz_int16 k = (mz_int16)((code_size << 9) | sym_index); + while (rev_code < TINFL_FAST_LOOKUP_SIZE) + { + pLookUp[rev_code] = k; + rev_code += (1 << code_size); + } + continue; + } + if (0 == (tree_cur = pLookUp[rev_code & (TINFL_FAST_LOOKUP_SIZE - 1)])) + { + pLookUp[rev_code & (TINFL_FAST_LOOKUP_SIZE - 1)] = (mz_int16)tree_next; + tree_cur = tree_next; + tree_next -= 2; + } + rev_code >>= (TINFL_FAST_LOOKUP_BITS - 1); + for (j = code_size; j > (TINFL_FAST_LOOKUP_BITS + 1); j--) + { + tree_cur -= ((rev_code >>= 1) & 1); + if (!pTree[-tree_cur - 1]) + { + pTree[-tree_cur - 1] = (mz_int16)tree_next; + tree_cur = tree_next; + tree_next -= 2; + } + else + tree_cur = pTree[-tree_cur - 1]; + } + tree_cur -= ((rev_code >>= 1) & 1); + pTree[-tree_cur - 1] = (mz_int16)sym_index; + } + if (r->m_type == 2) + { + for (counter = 0; counter < (r->m_table_sizes[0] + r->m_table_sizes[1]);) + { + mz_uint s; + TINFL_HUFF_DECODE(16, dist, r->m_look_up[2], r->m_tree_2); + if (dist < 16) + { + r->m_len_codes[counter++] = (mz_uint8)dist; + continue; + } + if ((dist == 16) && (!counter)) + { + TINFL_CR_RETURN_FOREVER(17, TINFL_STATUS_FAILED); + } + num_extra = "\02\03\07"[dist - 16]; + TINFL_GET_BITS(18, s, num_extra); + s += "\03\03\013"[dist - 16]; + TINFL_MEMSET(r->m_len_codes + counter, (dist == 16) ? r->m_len_codes[counter - 1] : 0, s); + counter += s; + } + if ((r->m_table_sizes[0] + r->m_table_sizes[1]) != counter) + { + TINFL_CR_RETURN_FOREVER(21, TINFL_STATUS_FAILED); + } + TINFL_MEMCPY(r->m_code_size_0, r->m_len_codes, r->m_table_sizes[0]); + TINFL_MEMCPY(r->m_code_size_1, r->m_len_codes + r->m_table_sizes[0], r->m_table_sizes[1]); + } + } + for (;;) + { + mz_uint8 *pSrc; + for (;;) + { + if (((pIn_buf_end - pIn_buf_cur) < 4) || ((pOut_buf_end - pOut_buf_cur) < 2)) + { + TINFL_HUFF_DECODE(23, counter, r->m_look_up[0], r->m_tree_0); + if (counter >= 256) + break; + while (pOut_buf_cur >= pOut_buf_end) + { + TINFL_CR_RETURN(24, TINFL_STATUS_HAS_MORE_OUTPUT); + } + *pOut_buf_cur++ = (mz_uint8)counter; + } + else + { + int sym2; + mz_uint code_len; +#if TINFL_USE_64BIT_BITBUF + if (num_bits < 30) + { + bit_buf |= (((tinfl_bit_buf_t)MZ_READ_LE32(pIn_buf_cur)) << num_bits); + pIn_buf_cur += 4; + num_bits += 32; + } +#else + if (num_bits < 15) + { + bit_buf |= (((tinfl_bit_buf_t)MZ_READ_LE16(pIn_buf_cur)) << num_bits); + pIn_buf_cur += 2; + num_bits += 16; + } +#endif + if ((sym2 = r->m_look_up[0][bit_buf & (TINFL_FAST_LOOKUP_SIZE - 1)]) >= 0) + code_len = sym2 >> 9; + else + { + code_len = TINFL_FAST_LOOKUP_BITS; + do + { + sym2 = r->m_tree_0[~sym2 + ((bit_buf >> code_len++) & 1)]; + } while (sym2 < 0); + } + counter = sym2; + bit_buf >>= code_len; + num_bits -= code_len; + if (code_len == 0) + { + TINFL_CR_RETURN_FOREVER(40, TINFL_STATUS_FAILED); + } + if (counter & 256) + break; + +#if !TINFL_USE_64BIT_BITBUF + if (num_bits < 15) + { + bit_buf |= (((tinfl_bit_buf_t)MZ_READ_LE16(pIn_buf_cur)) << num_bits); + pIn_buf_cur += 2; + num_bits += 16; + } +#endif + if ((sym2 = r->m_look_up[0][bit_buf & (TINFL_FAST_LOOKUP_SIZE - 1)]) >= 0) + code_len = sym2 >> 9; + else + { + code_len = TINFL_FAST_LOOKUP_BITS; + do + { + sym2 = r->m_tree_0[~sym2 + ((bit_buf >> code_len++) & 1)]; + } while (sym2 < 0); + } + bit_buf >>= code_len; + num_bits -= code_len; + if (code_len == 0) + { + TINFL_CR_RETURN_FOREVER(54, TINFL_STATUS_FAILED); + } + + pOut_buf_cur[0] = (mz_uint8)counter; + if (sym2 & 256) + { + pOut_buf_cur++; + counter = sym2; + break; + } + pOut_buf_cur[1] = (mz_uint8)sym2; + pOut_buf_cur += 2; + } + } + if ((counter &= 511) == 256) + break; + + num_extra = s_length_extra[counter - 257]; + counter = s_length_base[counter - 257]; + if (num_extra) + { + mz_uint extra_bits; + TINFL_GET_BITS(25, extra_bits, num_extra); + counter += extra_bits; + } + + TINFL_HUFF_DECODE(26, dist, r->m_look_up[1], r->m_tree_1); + num_extra = s_dist_extra[dist]; + dist = s_dist_base[dist]; + if (num_extra) + { + mz_uint extra_bits; + TINFL_GET_BITS(27, extra_bits, num_extra); + dist += extra_bits; + } + + dist_from_out_buf_start = pOut_buf_cur - pOut_buf_start; + if ((dist == 0 || dist > dist_from_out_buf_start || dist_from_out_buf_start == 0) && (decomp_flags & TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF)) + { + TINFL_CR_RETURN_FOREVER(37, TINFL_STATUS_FAILED); + } + + pSrc = pOut_buf_start + ((dist_from_out_buf_start - dist) & out_buf_size_mask); + + if ((MZ_MAX(pOut_buf_cur, pSrc) + counter) > pOut_buf_end) + { + while (counter--) + { + while (pOut_buf_cur >= pOut_buf_end) + { + TINFL_CR_RETURN(53, TINFL_STATUS_HAS_MORE_OUTPUT); + } + *pOut_buf_cur++ = pOut_buf_start[(dist_from_out_buf_start++ - dist) & out_buf_size_mask]; + } + continue; + } +#if MINIZ_USE_UNALIGNED_LOADS_AND_STORES + else if ((counter >= 9) && (counter <= dist)) + { + const mz_uint8 *pSrc_end = pSrc + (counter & ~7); + do + { +#ifdef MINIZ_UNALIGNED_USE_MEMCPY + memcpy(pOut_buf_cur, pSrc, sizeof(mz_uint32) * 2); +#else + ((mz_uint32 *)pOut_buf_cur)[0] = ((const mz_uint32 *)pSrc)[0]; + ((mz_uint32 *)pOut_buf_cur)[1] = ((const mz_uint32 *)pSrc)[1]; +#endif + pOut_buf_cur += 8; + } while ((pSrc += 8) < pSrc_end); + if ((counter &= 7) < 3) + { + if (counter) + { + pOut_buf_cur[0] = pSrc[0]; + if (counter > 1) + pOut_buf_cur[1] = pSrc[1]; + pOut_buf_cur += counter; + } + continue; + } + } +#endif + while (counter > 2) + { + pOut_buf_cur[0] = pSrc[0]; + pOut_buf_cur[1] = pSrc[1]; + pOut_buf_cur[2] = pSrc[2]; + pOut_buf_cur += 3; + pSrc += 3; + counter -= 3; + } + if (counter > 0) + { + pOut_buf_cur[0] = pSrc[0]; + if (counter > 1) + pOut_buf_cur[1] = pSrc[1]; + pOut_buf_cur += counter; + } + } + } + } while (!(r->m_final & 1)); + + /* Ensure byte alignment and put back any bytes from the bitbuf if we've looked ahead too far on gzip, or other Deflate streams followed by arbitrary data. */ + /* I'm being super conservative here. A number of simplifications can be made to the byte alignment part, and the Adler32 check shouldn't ever need to worry about reading from the bitbuf now. */ + TINFL_SKIP_BITS(32, num_bits & 7); + while ((pIn_buf_cur > pIn_buf_next) && (num_bits >= 8)) + { + --pIn_buf_cur; + num_bits -= 8; + } + bit_buf &= ~(~(tinfl_bit_buf_t)0 << num_bits); + MZ_ASSERT(!num_bits); /* if this assert fires then we've read beyond the end of non-deflate/zlib streams with following data (such as gzip streams). */ + + if (decomp_flags & TINFL_FLAG_PARSE_ZLIB_HEADER) + { + for (counter = 0; counter < 4; ++counter) + { + mz_uint s; + if (num_bits) + TINFL_GET_BITS(41, s, 8); + else + TINFL_GET_BYTE(42, s); + r->m_z_adler32 = (r->m_z_adler32 << 8) | s; + } + } + TINFL_CR_RETURN_FOREVER(34, TINFL_STATUS_DONE); + + TINFL_CR_FINISH + + common_exit: + /* As long as we aren't telling the caller that we NEED more input to make forward progress: */ + /* Put back any bytes from the bitbuf in case we've looked ahead too far on gzip, or other Deflate streams followed by arbitrary data. */ + /* We need to be very careful here to NOT push back any bytes we definitely know we need to make forward progress, though, or we'll lock the caller up into an inf loop. */ + if ((status != TINFL_STATUS_NEEDS_MORE_INPUT) && (status != TINFL_STATUS_FAILED_CANNOT_MAKE_PROGRESS)) + { + while ((pIn_buf_cur > pIn_buf_next) && (num_bits >= 8)) + { + --pIn_buf_cur; + num_bits -= 8; + } + } + r->m_num_bits = num_bits; + r->m_bit_buf = bit_buf & ~(~(tinfl_bit_buf_t)0 << num_bits); + r->m_dist = dist; + r->m_counter = counter; + r->m_num_extra = num_extra; + r->m_dist_from_out_buf_start = dist_from_out_buf_start; + *pIn_buf_size = pIn_buf_cur - pIn_buf_next; + *pOut_buf_size = pOut_buf_cur - pOut_buf_next; + if ((decomp_flags & (TINFL_FLAG_PARSE_ZLIB_HEADER | TINFL_FLAG_COMPUTE_ADLER32)) && (status >= 0)) + { + const mz_uint8 *ptr = pOut_buf_next; + size_t buf_len = *pOut_buf_size; + mz_uint32 i, s1 = r->m_check_adler32 & 0xffff, s2 = r->m_check_adler32 >> 16; + size_t block_len = buf_len % 5552; + while (buf_len) + { + for (i = 0; i + 7 < block_len; i += 8, ptr += 8) + { + s1 += ptr[0], s2 += s1; + s1 += ptr[1], s2 += s1; + s1 += ptr[2], s2 += s1; + s1 += ptr[3], s2 += s1; + s1 += ptr[4], s2 += s1; + s1 += ptr[5], s2 += s1; + s1 += ptr[6], s2 += s1; + s1 += ptr[7], s2 += s1; + } + for (; i < block_len; ++i) + s1 += *ptr++, s2 += s1; + s1 %= 65521U, s2 %= 65521U; + buf_len -= block_len; + block_len = 5552; + } + r->m_check_adler32 = (s2 << 16) + s1; + if ((status == TINFL_STATUS_DONE) && (decomp_flags & TINFL_FLAG_PARSE_ZLIB_HEADER) && (r->m_check_adler32 != r->m_z_adler32)) + status = TINFL_STATUS_ADLER32_MISMATCH; + } + return status; + } + + /* Higher level helper functions. */ + void *tinfl_decompress_mem_to_heap(const void *pSrc_buf, size_t src_buf_len, size_t *pOut_len, int flags) + { + tinfl_decompressor decomp; + void *pBuf = NULL, *pNew_buf; + size_t src_buf_ofs = 0, out_buf_capacity = 0; + *pOut_len = 0; + tinfl_init(&decomp); + for (;;) + { + size_t src_buf_size = src_buf_len - src_buf_ofs, dst_buf_size = out_buf_capacity - *pOut_len, new_out_buf_capacity; + tinfl_status status = tinfl_decompress(&decomp, (const mz_uint8 *)pSrc_buf + src_buf_ofs, &src_buf_size, (mz_uint8 *)pBuf, pBuf ? (mz_uint8 *)pBuf + *pOut_len : NULL, &dst_buf_size, + (flags & ~TINFL_FLAG_HAS_MORE_INPUT) | TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF); + if ((status < 0) || (status == TINFL_STATUS_NEEDS_MORE_INPUT)) + { + MZ_FREE(pBuf); + *pOut_len = 0; + return NULL; + } + src_buf_ofs += src_buf_size; + *pOut_len += dst_buf_size; + if (status == TINFL_STATUS_DONE) + break; + new_out_buf_capacity = out_buf_capacity * 2; + if (new_out_buf_capacity < 128) + new_out_buf_capacity = 128; + pNew_buf = MZ_REALLOC(pBuf, new_out_buf_capacity); + if (!pNew_buf) + { + MZ_FREE(pBuf); + *pOut_len = 0; + return NULL; + } + pBuf = pNew_buf; + out_buf_capacity = new_out_buf_capacity; + } + return pBuf; + } + + size_t tinfl_decompress_mem_to_mem(void *pOut_buf, size_t out_buf_len, const void *pSrc_buf, size_t src_buf_len, int flags) + { + tinfl_decompressor decomp; + tinfl_status status; + tinfl_init(&decomp); + status = tinfl_decompress(&decomp, (const mz_uint8 *)pSrc_buf, &src_buf_len, (mz_uint8 *)pOut_buf, (mz_uint8 *)pOut_buf, &out_buf_len, (flags & ~TINFL_FLAG_HAS_MORE_INPUT) | TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF); + return (status != TINFL_STATUS_DONE) ? TINFL_DECOMPRESS_MEM_TO_MEM_FAILED : out_buf_len; + } + + int tinfl_decompress_mem_to_callback(const void *pIn_buf, size_t *pIn_buf_size, tinfl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags) + { + int result = 0; + tinfl_decompressor decomp; + mz_uint8 *pDict = (mz_uint8 *)MZ_MALLOC(TINFL_LZ_DICT_SIZE); + size_t in_buf_ofs = 0, dict_ofs = 0; + if (!pDict) + return TINFL_STATUS_FAILED; + memset(pDict, 0, TINFL_LZ_DICT_SIZE); + tinfl_init(&decomp); + for (;;) + { + size_t in_buf_size = *pIn_buf_size - in_buf_ofs, dst_buf_size = TINFL_LZ_DICT_SIZE - dict_ofs; + tinfl_status status = tinfl_decompress(&decomp, (const mz_uint8 *)pIn_buf + in_buf_ofs, &in_buf_size, pDict, pDict + dict_ofs, &dst_buf_size, + (flags & ~(TINFL_FLAG_HAS_MORE_INPUT | TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF))); + in_buf_ofs += in_buf_size; + if ((dst_buf_size) && (!(*pPut_buf_func)(pDict + dict_ofs, (int)dst_buf_size, pPut_buf_user))) + break; + if (status != TINFL_STATUS_HAS_MORE_OUTPUT) + { + result = (status == TINFL_STATUS_DONE); + break; + } + dict_ofs = (dict_ofs + dst_buf_size) & (TINFL_LZ_DICT_SIZE - 1); + } + MZ_FREE(pDict); + *pIn_buf_size = in_buf_ofs; + return result; + } + +#ifndef MINIZ_NO_MALLOC + tinfl_decompressor *tinfl_decompressor_alloc(void) + { + tinfl_decompressor *pDecomp = (tinfl_decompressor *)MZ_MALLOC(sizeof(tinfl_decompressor)); + if (pDecomp) + tinfl_init(pDecomp); + return pDecomp; + } + + void tinfl_decompressor_free(tinfl_decompressor *pDecomp) + { + MZ_FREE(pDecomp); + } +#endif + +#ifdef __cplusplus +} +#endif + +#endif /*#ifndef MINIZ_NO_INFLATE_APIS*/ + /************************************************************************** + * + * Copyright 2013-2014 RAD Game Tools and Valve Software + * Copyright 2010-2014 Rich Geldreich and Tenacious Software LLC + * Copyright 2016 Martin Raiber + * 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. + * + **************************************************************************/ + + +#ifndef MINIZ_NO_ARCHIVE_APIS + +#ifdef __cplusplus +extern "C" +{ +#endif + + /* ------------------- .ZIP archive reading */ + +#ifdef MINIZ_NO_STDIO +#define MZ_FILE void * +#else +#include + +#if defined(_MSC_VER) || defined(__MINGW64__) || defined(__MINGW32__) + +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#ifndef __cplusplus +#define MICROSOFT_WINDOWS_WINBASE_H_DEFINE_INTERLOCKED_CPLUSPLUS_OVERLOADS 0 +#endif +#ifndef NOMINMAX +#define NOMINMAX +#endif +#include + +static WCHAR *mz_utf8z_to_widechar(const char *str) +{ + int reqChars = MultiByteToWideChar(CP_UTF8, 0, str, -1, NULL, 0); + WCHAR *wStr = (WCHAR *)malloc(reqChars * sizeof(WCHAR)); + MultiByteToWideChar(CP_UTF8, 0, str, -1, wStr, reqChars); + return wStr; +} + +static FILE *mz_fopen(const char *pFilename, const char *pMode) +{ + WCHAR *wFilename = mz_utf8z_to_widechar(pFilename); + WCHAR *wMode = mz_utf8z_to_widechar(pMode); + FILE *pFile = NULL; + errno_t err = _wfopen_s(&pFile, wFilename, wMode); + free(wFilename); + free(wMode); + return err ? NULL : pFile; +} + +static FILE *mz_freopen(const char *pPath, const char *pMode, FILE *pStream) +{ + WCHAR *wPath = mz_utf8z_to_widechar(pPath); + WCHAR *wMode = mz_utf8z_to_widechar(pMode); + FILE *pFile = NULL; + errno_t err = _wfreopen_s(&pFile, wPath, wMode, pStream); + free(wPath); + free(wMode); + return err ? NULL : pFile; +} + +#if defined(__MINGW32__) +static int mz_stat(const char *path, struct _stat *buffer) +{ + WCHAR *wPath = mz_utf8z_to_widechar(path); + int res = _wstat(wPath, buffer); + free(wPath); + return res; +} +#else +static int mz_stat64(const char *path, struct __stat64 *buffer) +{ + WCHAR *wPath = mz_utf8z_to_widechar(path); + int res = _wstat64(wPath, buffer); + free(wPath); + return res; +} +#endif + +#ifndef MINIZ_NO_TIME +#include +#endif +#define MZ_FOPEN mz_fopen +#define MZ_FCLOSE fclose +#define MZ_FREAD fread +#define MZ_FWRITE fwrite +#define MZ_FTELL64 _ftelli64 +#define MZ_FSEEK64 _fseeki64 +#if defined(__MINGW32__) +#define MZ_FILE_STAT_STRUCT _stat +#define MZ_FILE_STAT mz_stat +#else +#define MZ_FILE_STAT_STRUCT _stat64 +#define MZ_FILE_STAT mz_stat64 +#endif +#define MZ_FFLUSH fflush +#define MZ_FREOPEN mz_freopen +#define MZ_DELETE_FILE remove + +#elif defined(__WATCOMC__) +#ifndef MINIZ_NO_TIME +#include +#endif +#define MZ_FOPEN(f, m) fopen(f, m) +#define MZ_FCLOSE fclose +#define MZ_FREAD fread +#define MZ_FWRITE fwrite +#define MZ_FTELL64 _ftelli64 +#define MZ_FSEEK64 _fseeki64 +#define MZ_FILE_STAT_STRUCT stat +#define MZ_FILE_STAT stat +#define MZ_FFLUSH fflush +#define MZ_FREOPEN(f, m, s) freopen(f, m, s) +#define MZ_DELETE_FILE remove + +#elif defined(__TINYC__) +#ifndef MINIZ_NO_TIME +#include +#endif +#define MZ_FOPEN(f, m) fopen(f, m) +#define MZ_FCLOSE fclose +#define MZ_FREAD fread +#define MZ_FWRITE fwrite +#define MZ_FTELL64 ftell +#define MZ_FSEEK64 fseek +#define MZ_FILE_STAT_STRUCT stat +#define MZ_FILE_STAT stat +#define MZ_FFLUSH fflush +#define MZ_FREOPEN(f, m, s) freopen(f, m, s) +#define MZ_DELETE_FILE remove + +#elif defined(__USE_LARGEFILE64) /* gcc, clang */ +#ifndef MINIZ_NO_TIME +#include +#endif +#define MZ_FOPEN(f, m) fopen64(f, m) +#define MZ_FCLOSE fclose +#define MZ_FREAD fread +#define MZ_FWRITE fwrite +#define MZ_FTELL64 ftello64 +#define MZ_FSEEK64 fseeko64 +#define MZ_FILE_STAT_STRUCT stat64 +#define MZ_FILE_STAT stat64 +#define MZ_FFLUSH fflush +#define MZ_FREOPEN(p, m, s) freopen64(p, m, s) +#define MZ_DELETE_FILE remove + +#elif defined(__APPLE__) || defined(__FreeBSD__) || (defined(__linux__) && defined(__x86_64__)) +#ifndef MINIZ_NO_TIME +#include +#endif +#define MZ_FOPEN(f, m) fopen(f, m) +#define MZ_FCLOSE fclose +#define MZ_FREAD fread +#define MZ_FWRITE fwrite +#define MZ_FTELL64 ftello +#define MZ_FSEEK64 fseeko +#define MZ_FILE_STAT_STRUCT stat +#define MZ_FILE_STAT stat +#define MZ_FFLUSH fflush +#define MZ_FREOPEN(p, m, s) freopen(p, m, s) +#define MZ_DELETE_FILE remove + +#else +#pragma message("Using fopen, ftello, fseeko, stat() etc. path for file I/O - this path may not support large files.") +#ifndef MINIZ_NO_TIME +#include +#endif +#define MZ_FOPEN(f, m) fopen(f, m) +#define MZ_FCLOSE fclose +#define MZ_FREAD fread +#define MZ_FWRITE fwrite +#ifdef __STRICT_ANSI__ +#define MZ_FTELL64 ftell +#define MZ_FSEEK64 fseek +#else +#define MZ_FTELL64 ftello +#define MZ_FSEEK64 fseeko +#endif +#define MZ_FILE_STAT_STRUCT stat +#define MZ_FILE_STAT stat +#define MZ_FFLUSH fflush +#define MZ_FREOPEN(f, m, s) freopen(f, m, s) +#define MZ_DELETE_FILE remove +#endif /* #ifdef _MSC_VER */ +#endif /* #ifdef MINIZ_NO_STDIO */ + +#define MZ_TOLOWER(c) ((((c) >= 'A') && ((c) <= 'Z')) ? ((c) - 'A' + 'a') : (c)) + + /* Various ZIP archive enums. To completely avoid cross platform compiler alignment and platform endian issues, miniz.c doesn't use structs for any of this stuff. */ + enum + { + /* ZIP archive identifiers and record sizes */ + MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIG = 0x06054b50, + MZ_ZIP_CENTRAL_DIR_HEADER_SIG = 0x02014b50, + MZ_ZIP_LOCAL_DIR_HEADER_SIG = 0x04034b50, + MZ_ZIP_LOCAL_DIR_HEADER_SIZE = 30, + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE = 46, + MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE = 22, + + /* ZIP64 archive identifier and record sizes */ + MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIG = 0x06064b50, + MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIG = 0x07064b50, + MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE = 56, + MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE = 20, + MZ_ZIP64_EXTENDED_INFORMATION_FIELD_HEADER_ID = 0x0001, + MZ_ZIP_DATA_DESCRIPTOR_ID = 0x08074b50, + MZ_ZIP_DATA_DESCRIPTER_SIZE64 = 24, + MZ_ZIP_DATA_DESCRIPTER_SIZE32 = 16, + + /* Central directory header record offsets */ + MZ_ZIP_CDH_SIG_OFS = 0, + MZ_ZIP_CDH_VERSION_MADE_BY_OFS = 4, + MZ_ZIP_CDH_VERSION_NEEDED_OFS = 6, + MZ_ZIP_CDH_BIT_FLAG_OFS = 8, + MZ_ZIP_CDH_METHOD_OFS = 10, + MZ_ZIP_CDH_FILE_TIME_OFS = 12, + MZ_ZIP_CDH_FILE_DATE_OFS = 14, + MZ_ZIP_CDH_CRC32_OFS = 16, + MZ_ZIP_CDH_COMPRESSED_SIZE_OFS = 20, + MZ_ZIP_CDH_DECOMPRESSED_SIZE_OFS = 24, + MZ_ZIP_CDH_FILENAME_LEN_OFS = 28, + MZ_ZIP_CDH_EXTRA_LEN_OFS = 30, + MZ_ZIP_CDH_COMMENT_LEN_OFS = 32, + MZ_ZIP_CDH_DISK_START_OFS = 34, + MZ_ZIP_CDH_INTERNAL_ATTR_OFS = 36, + MZ_ZIP_CDH_EXTERNAL_ATTR_OFS = 38, + MZ_ZIP_CDH_LOCAL_HEADER_OFS = 42, + + /* Local directory header offsets */ + MZ_ZIP_LDH_SIG_OFS = 0, + MZ_ZIP_LDH_VERSION_NEEDED_OFS = 4, + MZ_ZIP_LDH_BIT_FLAG_OFS = 6, + MZ_ZIP_LDH_METHOD_OFS = 8, + MZ_ZIP_LDH_FILE_TIME_OFS = 10, + MZ_ZIP_LDH_FILE_DATE_OFS = 12, + MZ_ZIP_LDH_CRC32_OFS = 14, + MZ_ZIP_LDH_COMPRESSED_SIZE_OFS = 18, + MZ_ZIP_LDH_DECOMPRESSED_SIZE_OFS = 22, + MZ_ZIP_LDH_FILENAME_LEN_OFS = 26, + MZ_ZIP_LDH_EXTRA_LEN_OFS = 28, + MZ_ZIP_LDH_BIT_FLAG_HAS_LOCATOR = 1 << 3, + + /* End of central directory offsets */ + MZ_ZIP_ECDH_SIG_OFS = 0, + MZ_ZIP_ECDH_NUM_THIS_DISK_OFS = 4, + MZ_ZIP_ECDH_NUM_DISK_CDIR_OFS = 6, + MZ_ZIP_ECDH_CDIR_NUM_ENTRIES_ON_DISK_OFS = 8, + MZ_ZIP_ECDH_CDIR_TOTAL_ENTRIES_OFS = 10, + MZ_ZIP_ECDH_CDIR_SIZE_OFS = 12, + MZ_ZIP_ECDH_CDIR_OFS_OFS = 16, + MZ_ZIP_ECDH_COMMENT_SIZE_OFS = 20, + + /* ZIP64 End of central directory locator offsets */ + MZ_ZIP64_ECDL_SIG_OFS = 0, /* 4 bytes */ + MZ_ZIP64_ECDL_NUM_DISK_CDIR_OFS = 4, /* 4 bytes */ + MZ_ZIP64_ECDL_REL_OFS_TO_ZIP64_ECDR_OFS = 8, /* 8 bytes */ + MZ_ZIP64_ECDL_TOTAL_NUMBER_OF_DISKS_OFS = 16, /* 4 bytes */ + + /* ZIP64 End of central directory header offsets */ + MZ_ZIP64_ECDH_SIG_OFS = 0, /* 4 bytes */ + MZ_ZIP64_ECDH_SIZE_OF_RECORD_OFS = 4, /* 8 bytes */ + MZ_ZIP64_ECDH_VERSION_MADE_BY_OFS = 12, /* 2 bytes */ + MZ_ZIP64_ECDH_VERSION_NEEDED_OFS = 14, /* 2 bytes */ + MZ_ZIP64_ECDH_NUM_THIS_DISK_OFS = 16, /* 4 bytes */ + MZ_ZIP64_ECDH_NUM_DISK_CDIR_OFS = 20, /* 4 bytes */ + MZ_ZIP64_ECDH_CDIR_NUM_ENTRIES_ON_DISK_OFS = 24, /* 8 bytes */ + MZ_ZIP64_ECDH_CDIR_TOTAL_ENTRIES_OFS = 32, /* 8 bytes */ + MZ_ZIP64_ECDH_CDIR_SIZE_OFS = 40, /* 8 bytes */ + MZ_ZIP64_ECDH_CDIR_OFS_OFS = 48, /* 8 bytes */ + MZ_ZIP_VERSION_MADE_BY_DOS_FILESYSTEM_ID = 0, + MZ_ZIP_DOS_DIR_ATTRIBUTE_BITFLAG = 0x10, + MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_IS_ENCRYPTED = 1, + MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_COMPRESSED_PATCH_FLAG = 32, + MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_USES_STRONG_ENCRYPTION = 64, + MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_LOCAL_DIR_IS_MASKED = 8192, + MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_UTF8 = 1 << 11 + }; + + typedef struct + { + void *m_p; + size_t m_size, m_capacity; + mz_uint m_element_size; + } mz_zip_array; + + struct mz_zip_internal_state_tag + { + mz_zip_array m_central_dir; + mz_zip_array m_central_dir_offsets; + mz_zip_array m_sorted_central_dir_offsets; + + /* The flags passed in when the archive is initially opened. */ + mz_uint32 m_init_flags; + + /* MZ_TRUE if the archive has a zip64 end of central directory headers, etc. */ + mz_bool m_zip64; + + /* MZ_TRUE if we found zip64 extended info in the central directory (m_zip64 will also be slammed to true too, even if we didn't find a zip64 end of central dir header, etc.) */ + mz_bool m_zip64_has_extended_info_fields; + + /* These fields are used by the file, FILE, memory, and memory/heap read/write helpers. */ + MZ_FILE *m_pFile; + mz_uint64 m_file_archive_start_ofs; + + void *m_pMem; + size_t m_mem_size; + size_t m_mem_capacity; + }; + +#define MZ_ZIP_ARRAY_SET_ELEMENT_SIZE(array_ptr, element_size) (array_ptr)->m_element_size = element_size + +#if defined(DEBUG) || defined(_DEBUG) + static MZ_FORCEINLINE mz_uint mz_zip_array_range_check(const mz_zip_array *pArray, mz_uint index) + { + MZ_ASSERT(index < pArray->m_size); + return index; + } +#define MZ_ZIP_ARRAY_ELEMENT(array_ptr, element_type, index) ((element_type *)((array_ptr)->m_p))[mz_zip_array_range_check(array_ptr, index)] +#else +#define MZ_ZIP_ARRAY_ELEMENT(array_ptr, element_type, index) ((element_type *)((array_ptr)->m_p))[index] +#endif + + static MZ_FORCEINLINE void mz_zip_array_init(mz_zip_array *pArray, mz_uint32 element_size) + { + memset(pArray, 0, sizeof(mz_zip_array)); + pArray->m_element_size = element_size; + } + + static MZ_FORCEINLINE void mz_zip_array_clear(mz_zip_archive *pZip, mz_zip_array *pArray) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pArray->m_p); + memset(pArray, 0, sizeof(mz_zip_array)); + } + + static mz_bool mz_zip_array_ensure_capacity(mz_zip_archive *pZip, mz_zip_array *pArray, size_t min_new_capacity, mz_uint growing) + { + void *pNew_p; + size_t new_capacity = min_new_capacity; + MZ_ASSERT(pArray->m_element_size); + if (pArray->m_capacity >= min_new_capacity) + return MZ_TRUE; + if (growing) + { + new_capacity = MZ_MAX(1, pArray->m_capacity); + while (new_capacity < min_new_capacity) + new_capacity *= 2; + } + if (NULL == (pNew_p = pZip->m_pRealloc(pZip->m_pAlloc_opaque, pArray->m_p, pArray->m_element_size, new_capacity))) + return MZ_FALSE; + pArray->m_p = pNew_p; + pArray->m_capacity = new_capacity; + return MZ_TRUE; + } + + static MZ_FORCEINLINE mz_bool mz_zip_array_reserve(mz_zip_archive *pZip, mz_zip_array *pArray, size_t new_capacity, mz_uint growing) + { + if (new_capacity > pArray->m_capacity) + { + if (!mz_zip_array_ensure_capacity(pZip, pArray, new_capacity, growing)) + return MZ_FALSE; + } + return MZ_TRUE; + } + + static MZ_FORCEINLINE mz_bool mz_zip_array_resize(mz_zip_archive *pZip, mz_zip_array *pArray, size_t new_size, mz_uint growing) + { + if (new_size > pArray->m_capacity) + { + if (!mz_zip_array_ensure_capacity(pZip, pArray, new_size, growing)) + return MZ_FALSE; + } + pArray->m_size = new_size; + return MZ_TRUE; + } + + static MZ_FORCEINLINE mz_bool mz_zip_array_ensure_room(mz_zip_archive *pZip, mz_zip_array *pArray, size_t n) + { + return mz_zip_array_reserve(pZip, pArray, pArray->m_size + n, MZ_TRUE); + } + + static MZ_FORCEINLINE mz_bool mz_zip_array_push_back(mz_zip_archive *pZip, mz_zip_array *pArray, const void *pElements, size_t n) + { + size_t orig_size = pArray->m_size; + if (!mz_zip_array_resize(pZip, pArray, orig_size + n, MZ_TRUE)) + return MZ_FALSE; + if (n > 0) + memcpy((mz_uint8 *)pArray->m_p + orig_size * pArray->m_element_size, pElements, n * pArray->m_element_size); + return MZ_TRUE; + } + +#ifndef MINIZ_NO_TIME + static MZ_TIME_T mz_zip_dos_to_time_t(int dos_time, int dos_date) + { + struct tm tm; + memset(&tm, 0, sizeof(tm)); + tm.tm_isdst = -1; + tm.tm_year = ((dos_date >> 9) & 127) + 1980 - 1900; + tm.tm_mon = ((dos_date >> 5) & 15) - 1; + tm.tm_mday = dos_date & 31; + tm.tm_hour = (dos_time >> 11) & 31; + tm.tm_min = (dos_time >> 5) & 63; + tm.tm_sec = (dos_time << 1) & 62; + return mktime(&tm); + } + +#ifndef MINIZ_NO_ARCHIVE_WRITING_APIS + static void mz_zip_time_t_to_dos_time(MZ_TIME_T time, mz_uint16 *pDOS_time, mz_uint16 *pDOS_date) + { +#ifdef _MSC_VER + struct tm tm_struct; + struct tm *tm = &tm_struct; + errno_t err = localtime_s(tm, &time); + if (err) + { + *pDOS_date = 0; + *pDOS_time = 0; + return; + } +#else + struct tm *tm = localtime(&time); +#endif /* #ifdef _MSC_VER */ + + *pDOS_time = (mz_uint16)(((tm->tm_hour) << 11) + ((tm->tm_min) << 5) + ((tm->tm_sec) >> 1)); + *pDOS_date = (mz_uint16)(((tm->tm_year + 1900 - 1980) << 9) + ((tm->tm_mon + 1) << 5) + tm->tm_mday); + } +#endif /* MINIZ_NO_ARCHIVE_WRITING_APIS */ + +#ifndef MINIZ_NO_STDIO +#ifndef MINIZ_NO_ARCHIVE_WRITING_APIS + static mz_bool mz_zip_get_file_modified_time(const char *pFilename, MZ_TIME_T *pTime) + { + struct MZ_FILE_STAT_STRUCT file_stat; + + /* On Linux with x86 glibc, this call will fail on large files (I think >= 0x80000000 bytes) unless you compiled with _LARGEFILE64_SOURCE. Argh. */ + if (MZ_FILE_STAT(pFilename, &file_stat) != 0) + return MZ_FALSE; + + *pTime = file_stat.st_mtime; + + return MZ_TRUE; + } +#endif /* #ifndef MINIZ_NO_ARCHIVE_WRITING_APIS*/ + + static mz_bool mz_zip_set_file_times(const char *pFilename, MZ_TIME_T access_time, MZ_TIME_T modified_time) + { + struct utimbuf t; + + memset(&t, 0, sizeof(t)); + t.actime = access_time; + t.modtime = modified_time; + + return !utime(pFilename, &t); + } +#endif /* #ifndef MINIZ_NO_STDIO */ +#endif /* #ifndef MINIZ_NO_TIME */ + + static MZ_FORCEINLINE mz_bool mz_zip_set_error(mz_zip_archive *pZip, mz_zip_error err_num) + { + if (pZip) + pZip->m_last_error = err_num; + return MZ_FALSE; + } + + static mz_bool mz_zip_reader_init_internal(mz_zip_archive *pZip, mz_uint flags) + { + (void)flags; + if ((!pZip) || (pZip->m_pState) || (pZip->m_zip_mode != MZ_ZIP_MODE_INVALID)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (!pZip->m_pAlloc) + pZip->m_pAlloc = miniz_def_alloc_func; + if (!pZip->m_pFree) + pZip->m_pFree = miniz_def_free_func; + if (!pZip->m_pRealloc) + pZip->m_pRealloc = miniz_def_realloc_func; + + pZip->m_archive_size = 0; + pZip->m_central_directory_file_ofs = 0; + pZip->m_total_files = 0; + pZip->m_last_error = MZ_ZIP_NO_ERROR; + + if (NULL == (pZip->m_pState = (mz_zip_internal_state *)pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, sizeof(mz_zip_internal_state)))) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + + memset(pZip->m_pState, 0, sizeof(mz_zip_internal_state)); + MZ_ZIP_ARRAY_SET_ELEMENT_SIZE(&pZip->m_pState->m_central_dir, sizeof(mz_uint8)); + MZ_ZIP_ARRAY_SET_ELEMENT_SIZE(&pZip->m_pState->m_central_dir_offsets, sizeof(mz_uint32)); + MZ_ZIP_ARRAY_SET_ELEMENT_SIZE(&pZip->m_pState->m_sorted_central_dir_offsets, sizeof(mz_uint32)); + pZip->m_pState->m_init_flags = flags; + pZip->m_pState->m_zip64 = MZ_FALSE; + pZip->m_pState->m_zip64_has_extended_info_fields = MZ_FALSE; + + pZip->m_zip_mode = MZ_ZIP_MODE_READING; + + return MZ_TRUE; + } + + static MZ_FORCEINLINE mz_bool mz_zip_reader_filename_less(const mz_zip_array *pCentral_dir_array, const mz_zip_array *pCentral_dir_offsets, mz_uint l_index, mz_uint r_index) + { + const mz_uint8 *pL = &MZ_ZIP_ARRAY_ELEMENT(pCentral_dir_array, mz_uint8, MZ_ZIP_ARRAY_ELEMENT(pCentral_dir_offsets, mz_uint32, l_index)), *pE; + const mz_uint8 *pR = &MZ_ZIP_ARRAY_ELEMENT(pCentral_dir_array, mz_uint8, MZ_ZIP_ARRAY_ELEMENT(pCentral_dir_offsets, mz_uint32, r_index)); + mz_uint l_len = MZ_READ_LE16(pL + MZ_ZIP_CDH_FILENAME_LEN_OFS), r_len = MZ_READ_LE16(pR + MZ_ZIP_CDH_FILENAME_LEN_OFS); + mz_uint8 l = 0, r = 0; + pL += MZ_ZIP_CENTRAL_DIR_HEADER_SIZE; + pR += MZ_ZIP_CENTRAL_DIR_HEADER_SIZE; + pE = pL + MZ_MIN(l_len, r_len); + while (pL < pE) + { + if ((l = MZ_TOLOWER(*pL)) != (r = MZ_TOLOWER(*pR))) + break; + pL++; + pR++; + } + return (pL == pE) ? (l_len < r_len) : (l < r); + } + +#define MZ_SWAP_UINT32(a, b) \ + do \ + { \ + mz_uint32 t = a; \ + a = b; \ + b = t; \ + } \ + MZ_MACRO_END + + /* Heap sort of lowercased filenames, used to help accelerate plain central directory searches by mz_zip_reader_locate_file(). (Could also use qsort(), but it could allocate memory.) */ + static void mz_zip_reader_sort_central_dir_offsets_by_filename(mz_zip_archive *pZip) + { + mz_zip_internal_state *pState = pZip->m_pState; + const mz_zip_array *pCentral_dir_offsets = &pState->m_central_dir_offsets; + const mz_zip_array *pCentral_dir = &pState->m_central_dir; + mz_uint32 *pIndices; + mz_uint32 start, end; + const mz_uint32 size = pZip->m_total_files; + + if (size <= 1U) + return; + + pIndices = &MZ_ZIP_ARRAY_ELEMENT(&pState->m_sorted_central_dir_offsets, mz_uint32, 0); + + start = (size - 2U) >> 1U; + for (;;) + { + mz_uint64 child, root = start; + for (;;) + { + if ((child = (root << 1U) + 1U) >= size) + break; + child += (((child + 1U) < size) && (mz_zip_reader_filename_less(pCentral_dir, pCentral_dir_offsets, pIndices[child], pIndices[child + 1U]))); + if (!mz_zip_reader_filename_less(pCentral_dir, pCentral_dir_offsets, pIndices[root], pIndices[child])) + break; + MZ_SWAP_UINT32(pIndices[root], pIndices[child]); + root = child; + } + if (!start) + break; + start--; + } + + end = size - 1; + while (end > 0) + { + mz_uint64 child, root = 0; + MZ_SWAP_UINT32(pIndices[end], pIndices[0]); + for (;;) + { + if ((child = (root << 1U) + 1U) >= end) + break; + child += (((child + 1U) < end) && mz_zip_reader_filename_less(pCentral_dir, pCentral_dir_offsets, pIndices[child], pIndices[child + 1U])); + if (!mz_zip_reader_filename_less(pCentral_dir, pCentral_dir_offsets, pIndices[root], pIndices[child])) + break; + MZ_SWAP_UINT32(pIndices[root], pIndices[child]); + root = child; + } + end--; + } + } + + static mz_bool mz_zip_reader_locate_header_sig(mz_zip_archive *pZip, mz_uint32 record_sig, mz_uint32 record_size, mz_int64 *pOfs) + { + mz_int64 cur_file_ofs; + mz_uint32 buf_u32[4096 / sizeof(mz_uint32)]; + mz_uint8 *pBuf = (mz_uint8 *)buf_u32; + + /* Basic sanity checks - reject files which are too small */ + if (pZip->m_archive_size < record_size) + return MZ_FALSE; + + /* Find the record by scanning the file from the end towards the beginning. */ + cur_file_ofs = MZ_MAX((mz_int64)pZip->m_archive_size - (mz_int64)sizeof(buf_u32), 0); + for (;;) + { + int i, n = (int)MZ_MIN(sizeof(buf_u32), pZip->m_archive_size - cur_file_ofs); + + if (pZip->m_pRead(pZip->m_pIO_opaque, cur_file_ofs, pBuf, n) != (mz_uint)n) + return MZ_FALSE; + + for (i = n - 4; i >= 0; --i) + { + mz_uint s = MZ_READ_LE32(pBuf + i); + if (s == record_sig) + { + if ((pZip->m_archive_size - (cur_file_ofs + i)) >= record_size) + break; + } + } + + if (i >= 0) + { + cur_file_ofs += i; + break; + } + + /* Give up if we've searched the entire file, or we've gone back "too far" (~64kb) */ + if ((!cur_file_ofs) || ((pZip->m_archive_size - cur_file_ofs) >= ((mz_uint64)(MZ_UINT16_MAX) + record_size))) + return MZ_FALSE; + + cur_file_ofs = MZ_MAX(cur_file_ofs - (sizeof(buf_u32) - 3), 0); + } + + *pOfs = cur_file_ofs; + return MZ_TRUE; + } + + static mz_bool mz_zip_reader_eocd64_valid(mz_zip_archive *pZip, uint64_t offset, uint8_t *buf) + { + if (pZip->m_pRead(pZip->m_pIO_opaque, offset, buf, MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE) == MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE) + { + if (MZ_READ_LE32(buf + MZ_ZIP64_ECDH_SIG_OFS) == MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIG) + { + return MZ_TRUE; + } + } + + return MZ_FALSE; + } + + static mz_bool mz_zip_reader_read_central_dir(mz_zip_archive *pZip, mz_uint flags) + { + mz_uint cdir_size = 0, cdir_entries_on_this_disk = 0, num_this_disk = 0, cdir_disk_index = 0; + mz_uint64 cdir_ofs = 0, eocd_ofs = 0, archive_ofs = 0; + mz_int64 cur_file_ofs = 0; + const mz_uint8 *p; + + mz_uint32 buf_u32[4096 / sizeof(mz_uint32)]; + mz_uint8 *pBuf = (mz_uint8 *)buf_u32; + mz_bool sort_central_dir = ((flags & MZ_ZIP_FLAG_DO_NOT_SORT_CENTRAL_DIRECTORY) == 0); + mz_uint32 zip64_end_of_central_dir_locator_u32[(MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE + sizeof(mz_uint32) - 1) / sizeof(mz_uint32)]; + mz_uint8 *pZip64_locator = (mz_uint8 *)zip64_end_of_central_dir_locator_u32; + + mz_uint32 zip64_end_of_central_dir_header_u32[(MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE + sizeof(mz_uint32) - 1) / sizeof(mz_uint32)]; + mz_uint8 *pZip64_end_of_central_dir = (mz_uint8 *)zip64_end_of_central_dir_header_u32; + + mz_uint64 zip64_end_of_central_dir_ofs = 0; + + /* Basic sanity checks - reject files which are too small, and check the first 4 bytes of the file to make sure a local header is there. */ + if (pZip->m_archive_size < MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_NOT_AN_ARCHIVE); + + if (!mz_zip_reader_locate_header_sig(pZip, MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIG, MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE, &cur_file_ofs)) + return mz_zip_set_error(pZip, MZ_ZIP_FAILED_FINDING_CENTRAL_DIR); + + eocd_ofs = cur_file_ofs; + /* Read and verify the end of central directory record. */ + if (pZip->m_pRead(pZip->m_pIO_opaque, cur_file_ofs, pBuf, MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE) != MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + + if (MZ_READ_LE32(pBuf + MZ_ZIP_ECDH_SIG_OFS) != MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIG) + return mz_zip_set_error(pZip, MZ_ZIP_NOT_AN_ARCHIVE); + + if (cur_file_ofs >= (MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE + MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE)) + { + if (pZip->m_pRead(pZip->m_pIO_opaque, cur_file_ofs - MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE, pZip64_locator, MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE) == MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE) + { + if (MZ_READ_LE32(pZip64_locator + MZ_ZIP64_ECDL_SIG_OFS) == MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIG) + { + pZip->m_pState->m_zip64 = MZ_TRUE; + } + } + } + + if (pZip->m_pState->m_zip64) + { + /* Try locating the EOCD64 right before the EOCD64 locator. This works even + * when the effective start of the zip header is not yet known. */ + if (cur_file_ofs < MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE + + MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_NOT_AN_ARCHIVE); + + zip64_end_of_central_dir_ofs = cur_file_ofs - + MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE - + MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE; + + if (!mz_zip_reader_eocd64_valid(pZip, zip64_end_of_central_dir_ofs, + pZip64_end_of_central_dir)) + { + /* That failed, try reading where the locator tells us to. */ + zip64_end_of_central_dir_ofs = MZ_READ_LE64( + pZip64_locator + MZ_ZIP64_ECDL_REL_OFS_TO_ZIP64_ECDR_OFS); + + if (zip64_end_of_central_dir_ofs > + (pZip->m_archive_size - MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE)) + return mz_zip_set_error(pZip, MZ_ZIP_NOT_AN_ARCHIVE); + + if (!mz_zip_reader_eocd64_valid(pZip, zip64_end_of_central_dir_ofs, + pZip64_end_of_central_dir)) + return mz_zip_set_error(pZip, MZ_ZIP_NOT_AN_ARCHIVE); + } + } + + pZip->m_total_files = MZ_READ_LE16(pBuf + MZ_ZIP_ECDH_CDIR_TOTAL_ENTRIES_OFS); + cdir_entries_on_this_disk = MZ_READ_LE16(pBuf + MZ_ZIP_ECDH_CDIR_NUM_ENTRIES_ON_DISK_OFS); + num_this_disk = MZ_READ_LE16(pBuf + MZ_ZIP_ECDH_NUM_THIS_DISK_OFS); + cdir_disk_index = MZ_READ_LE16(pBuf + MZ_ZIP_ECDH_NUM_DISK_CDIR_OFS); + cdir_size = MZ_READ_LE32(pBuf + MZ_ZIP_ECDH_CDIR_SIZE_OFS); + cdir_ofs = MZ_READ_LE32(pBuf + MZ_ZIP_ECDH_CDIR_OFS_OFS); + + if (pZip->m_pState->m_zip64) + { + mz_uint32 zip64_total_num_of_disks = MZ_READ_LE32(pZip64_locator + MZ_ZIP64_ECDL_TOTAL_NUMBER_OF_DISKS_OFS); + mz_uint64 zip64_cdir_total_entries = MZ_READ_LE64(pZip64_end_of_central_dir + MZ_ZIP64_ECDH_CDIR_TOTAL_ENTRIES_OFS); + mz_uint64 zip64_cdir_total_entries_on_this_disk = MZ_READ_LE64(pZip64_end_of_central_dir + MZ_ZIP64_ECDH_CDIR_NUM_ENTRIES_ON_DISK_OFS); + mz_uint64 zip64_size_of_end_of_central_dir_record = MZ_READ_LE64(pZip64_end_of_central_dir + MZ_ZIP64_ECDH_SIZE_OF_RECORD_OFS); + mz_uint64 zip64_size_of_central_directory = MZ_READ_LE64(pZip64_end_of_central_dir + MZ_ZIP64_ECDH_CDIR_SIZE_OFS); + + if (zip64_size_of_end_of_central_dir_record < (MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE - 12)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + if (zip64_total_num_of_disks != 1U) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_MULTIDISK); + + /* Check for miniz's practical limits */ + if (zip64_cdir_total_entries > MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); + + pZip->m_total_files = (mz_uint32)zip64_cdir_total_entries; + + if (zip64_cdir_total_entries_on_this_disk > MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); + + cdir_entries_on_this_disk = (mz_uint32)zip64_cdir_total_entries_on_this_disk; + + /* Check for miniz's current practical limits (sorry, this should be enough for millions of files) */ + if (zip64_size_of_central_directory > MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_CDIR_SIZE); + + cdir_size = (mz_uint32)zip64_size_of_central_directory; + + num_this_disk = MZ_READ_LE32(pZip64_end_of_central_dir + MZ_ZIP64_ECDH_NUM_THIS_DISK_OFS); + + cdir_disk_index = MZ_READ_LE32(pZip64_end_of_central_dir + MZ_ZIP64_ECDH_NUM_DISK_CDIR_OFS); + + cdir_ofs = MZ_READ_LE64(pZip64_end_of_central_dir + MZ_ZIP64_ECDH_CDIR_OFS_OFS); + } + + if (pZip->m_total_files != cdir_entries_on_this_disk) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_MULTIDISK); + + if (((num_this_disk | cdir_disk_index) != 0) && ((num_this_disk != 1) || (cdir_disk_index != 1))) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_MULTIDISK); + + if (cdir_size < (mz_uint64)pZip->m_total_files * MZ_ZIP_CENTRAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + if (cdir_size> pZip->m_archive_size || cdir_ofs > pZip->m_archive_size - cdir_size) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + if (eocd_ofs < cdir_ofs + cdir_size) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + /* The end of central dir follows the central dir, unless the zip file has + * some trailing data (e.g. it is appended to an executable file). */ + archive_ofs = eocd_ofs - (cdir_ofs + cdir_size); + if (pZip->m_pState->m_zip64) + { + if (archive_ofs < MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE + + MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + archive_ofs -= MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE + + MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE; + } + + /* Update the archive start position, but only if not specified. */ + if ((pZip->m_zip_type == MZ_ZIP_TYPE_FILE || pZip->m_zip_type == MZ_ZIP_TYPE_CFILE || + pZip->m_zip_type == MZ_ZIP_TYPE_USER) && pZip->m_pState->m_file_archive_start_ofs == 0) + { + pZip->m_pState->m_file_archive_start_ofs = archive_ofs; + pZip->m_archive_size -= archive_ofs; + } + + pZip->m_central_directory_file_ofs = cdir_ofs; + + if (pZip->m_total_files) + { + mz_uint i, n; + /* Read the entire central directory into a heap block, and allocate another heap block to hold the unsorted central dir file record offsets, and possibly another to hold the sorted indices. */ + if ((!mz_zip_array_resize(pZip, &pZip->m_pState->m_central_dir, cdir_size, MZ_FALSE)) || + (!mz_zip_array_resize(pZip, &pZip->m_pState->m_central_dir_offsets, pZip->m_total_files, MZ_FALSE))) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + + if (sort_central_dir) + { + if (!mz_zip_array_resize(pZip, &pZip->m_pState->m_sorted_central_dir_offsets, pZip->m_total_files, MZ_FALSE)) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + if (pZip->m_pRead(pZip->m_pIO_opaque, cdir_ofs, pZip->m_pState->m_central_dir.m_p, cdir_size) != cdir_size) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + + /* Now create an index into the central directory file records, do some basic sanity checking on each record */ + p = (const mz_uint8 *)pZip->m_pState->m_central_dir.m_p; + for (n = cdir_size, i = 0; i < pZip->m_total_files; ++i) + { + mz_uint total_header_size, disk_index, bit_flags, filename_size, ext_data_size; + mz_uint64 comp_size, decomp_size, local_header_ofs; + + if ((n < MZ_ZIP_CENTRAL_DIR_HEADER_SIZE) || (MZ_READ_LE32(p) != MZ_ZIP_CENTRAL_DIR_HEADER_SIG)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + MZ_ZIP_ARRAY_ELEMENT(&pZip->m_pState->m_central_dir_offsets, mz_uint32, i) = (mz_uint32)(p - (const mz_uint8 *)pZip->m_pState->m_central_dir.m_p); + + if (sort_central_dir) + MZ_ZIP_ARRAY_ELEMENT(&pZip->m_pState->m_sorted_central_dir_offsets, mz_uint32, i) = i; + + comp_size = MZ_READ_LE32(p + MZ_ZIP_CDH_COMPRESSED_SIZE_OFS); + decomp_size = MZ_READ_LE32(p + MZ_ZIP_CDH_DECOMPRESSED_SIZE_OFS); + local_header_ofs = MZ_READ_LE32(p + MZ_ZIP_CDH_LOCAL_HEADER_OFS); + filename_size = MZ_READ_LE16(p + MZ_ZIP_CDH_FILENAME_LEN_OFS); + ext_data_size = MZ_READ_LE16(p + MZ_ZIP_CDH_EXTRA_LEN_OFS); + + if ((!pZip->m_pState->m_zip64_has_extended_info_fields) && + (ext_data_size) && + (MZ_MAX(MZ_MAX(comp_size, decomp_size), local_header_ofs) == MZ_UINT32_MAX)) + { + /* Attempt to find zip64 extended information field in the entry's extra data */ + mz_uint32 extra_size_remaining = ext_data_size; + + if (extra_size_remaining) + { + const mz_uint8 *pExtra_data; + void *buf = NULL; + + if (MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + filename_size + ext_data_size > n) + { + buf = MZ_MALLOC(ext_data_size); + if (buf == NULL) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + + if (pZip->m_pRead(pZip->m_pIO_opaque, cdir_ofs + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + filename_size, buf, ext_data_size) != ext_data_size) + { + MZ_FREE(buf); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + } + + pExtra_data = (mz_uint8 *)buf; + } + else + { + pExtra_data = p + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + filename_size; + } + + do + { + mz_uint32 field_id; + mz_uint32 field_data_size; + + if (extra_size_remaining < (sizeof(mz_uint16) * 2)) + { + MZ_FREE(buf); + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + } + + field_id = MZ_READ_LE16(pExtra_data); + field_data_size = MZ_READ_LE16(pExtra_data + sizeof(mz_uint16)); + + if ((field_data_size + sizeof(mz_uint16) * 2) > extra_size_remaining) + { + MZ_FREE(buf); + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + } + + if (field_id == MZ_ZIP64_EXTENDED_INFORMATION_FIELD_HEADER_ID) + { + /* Ok, the archive didn't have any zip64 headers but it uses a zip64 extended information field so mark it as zip64 anyway (this can occur with infozip's zip util when it reads compresses files from stdin). */ + pZip->m_pState->m_zip64 = MZ_TRUE; + pZip->m_pState->m_zip64_has_extended_info_fields = MZ_TRUE; + break; + } + + pExtra_data += sizeof(mz_uint16) * 2 + field_data_size; + extra_size_remaining = extra_size_remaining - sizeof(mz_uint16) * 2 - field_data_size; + } while (extra_size_remaining); + + MZ_FREE(buf); + } + } + + /* I've seen archives that aren't marked as zip64 that uses zip64 ext data, argh */ + if ((comp_size != MZ_UINT32_MAX) && (decomp_size != MZ_UINT32_MAX)) + { + if (((!MZ_READ_LE32(p + MZ_ZIP_CDH_METHOD_OFS)) && (decomp_size != comp_size)) || (decomp_size && !comp_size)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + } + + disk_index = MZ_READ_LE16(p + MZ_ZIP_CDH_DISK_START_OFS); + if ((disk_index == MZ_UINT16_MAX) || ((disk_index != num_this_disk) && (disk_index != 1))) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_MULTIDISK); + + if (comp_size != MZ_UINT32_MAX) + { + if (((mz_uint64)MZ_READ_LE32(p + MZ_ZIP_CDH_LOCAL_HEADER_OFS) + MZ_ZIP_LOCAL_DIR_HEADER_SIZE + comp_size) > pZip->m_archive_size) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + } + + bit_flags = MZ_READ_LE16(p + MZ_ZIP_CDH_BIT_FLAG_OFS); + if (bit_flags & MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_LOCAL_DIR_IS_MASKED) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_ENCRYPTION); + + if ((total_header_size = MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + MZ_READ_LE16(p + MZ_ZIP_CDH_FILENAME_LEN_OFS) + MZ_READ_LE16(p + MZ_ZIP_CDH_EXTRA_LEN_OFS) + MZ_READ_LE16(p + MZ_ZIP_CDH_COMMENT_LEN_OFS)) > n) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + n -= total_header_size; + p += total_header_size; + } + } + + if (sort_central_dir) + mz_zip_reader_sort_central_dir_offsets_by_filename(pZip); + + return MZ_TRUE; + } + + void mz_zip_zero_struct(mz_zip_archive *pZip) + { + if (pZip) + MZ_CLEAR_PTR(pZip); + } + + static mz_bool mz_zip_reader_end_internal(mz_zip_archive *pZip, mz_bool set_last_error) + { + mz_bool status = MZ_TRUE; + + if (!pZip) + return MZ_FALSE; + + if ((!pZip->m_pState) || (!pZip->m_pAlloc) || (!pZip->m_pFree) || (pZip->m_zip_mode != MZ_ZIP_MODE_READING)) + { + if (set_last_error) + pZip->m_last_error = MZ_ZIP_INVALID_PARAMETER; + + return MZ_FALSE; + } + + if (pZip->m_pState) + { + mz_zip_internal_state *pState = pZip->m_pState; + pZip->m_pState = NULL; + + mz_zip_array_clear(pZip, &pState->m_central_dir); + mz_zip_array_clear(pZip, &pState->m_central_dir_offsets); + mz_zip_array_clear(pZip, &pState->m_sorted_central_dir_offsets); + +#ifndef MINIZ_NO_STDIO + if (pState->m_pFile) + { + if (pZip->m_zip_type == MZ_ZIP_TYPE_FILE) + { + if (MZ_FCLOSE(pState->m_pFile) == EOF) + { + if (set_last_error) + pZip->m_last_error = MZ_ZIP_FILE_CLOSE_FAILED; + status = MZ_FALSE; + } + } + pState->m_pFile = NULL; + } +#endif /* #ifndef MINIZ_NO_STDIO */ + + pZip->m_pFree(pZip->m_pAlloc_opaque, pState); + } + pZip->m_zip_mode = MZ_ZIP_MODE_INVALID; + + return status; + } + + mz_bool mz_zip_reader_end(mz_zip_archive *pZip) + { + return mz_zip_reader_end_internal(pZip, MZ_TRUE); + } + mz_bool mz_zip_reader_init(mz_zip_archive *pZip, mz_uint64 size, mz_uint flags) + { + if ((!pZip) || (!pZip->m_pRead)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (!mz_zip_reader_init_internal(pZip, flags)) + return MZ_FALSE; + + pZip->m_zip_type = MZ_ZIP_TYPE_USER; + pZip->m_archive_size = size; + + if (!mz_zip_reader_read_central_dir(pZip, flags)) + { + mz_zip_reader_end_internal(pZip, MZ_FALSE); + return MZ_FALSE; + } + + return MZ_TRUE; + } + + static size_t mz_zip_mem_read_func(void *pOpaque, mz_uint64 file_ofs, void *pBuf, size_t n) + { + mz_zip_archive *pZip = (mz_zip_archive *)pOpaque; + size_t s = (file_ofs >= pZip->m_archive_size) ? 0 : (size_t)MZ_MIN(pZip->m_archive_size - file_ofs, n); + memcpy(pBuf, (const mz_uint8 *)pZip->m_pState->m_pMem + file_ofs, s); + return s; + } + + mz_bool mz_zip_reader_init_mem(mz_zip_archive *pZip, const void *pMem, size_t size, mz_uint flags) + { + if (!pMem) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (size < MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_NOT_AN_ARCHIVE); + + if (!mz_zip_reader_init_internal(pZip, flags)) + return MZ_FALSE; + + pZip->m_zip_type = MZ_ZIP_TYPE_MEMORY; + pZip->m_archive_size = size; + pZip->m_pRead = mz_zip_mem_read_func; + pZip->m_pIO_opaque = pZip; + pZip->m_pNeeds_keepalive = NULL; + +#ifdef __cplusplus + pZip->m_pState->m_pMem = const_cast(pMem); +#else + pZip->m_pState->m_pMem = (void *)pMem; +#endif + + pZip->m_pState->m_mem_size = size; + + if (!mz_zip_reader_read_central_dir(pZip, flags)) + { + mz_zip_reader_end_internal(pZip, MZ_FALSE); + return MZ_FALSE; + } + + return MZ_TRUE; + } + +#ifndef MINIZ_NO_STDIO + static size_t mz_zip_file_read_func(void *pOpaque, mz_uint64 file_ofs, void *pBuf, size_t n) + { + mz_zip_archive *pZip = (mz_zip_archive *)pOpaque; + mz_int64 cur_ofs = MZ_FTELL64(pZip->m_pState->m_pFile); + + file_ofs += pZip->m_pState->m_file_archive_start_ofs; + + if (((mz_int64)file_ofs < 0) || (((cur_ofs != (mz_int64)file_ofs)) && (MZ_FSEEK64(pZip->m_pState->m_pFile, (mz_int64)file_ofs, SEEK_SET)))) + return 0; + + return MZ_FREAD(pBuf, 1, n, pZip->m_pState->m_pFile); + } + + mz_bool mz_zip_reader_init_file(mz_zip_archive *pZip, const char *pFilename, mz_uint32 flags) + { + return mz_zip_reader_init_file_v2(pZip, pFilename, flags, 0, 0); + } + + mz_bool mz_zip_reader_init_file_v2(mz_zip_archive *pZip, const char *pFilename, mz_uint flags, mz_uint64 file_start_ofs, mz_uint64 archive_size) + { + mz_uint64 file_size; + MZ_FILE *pFile; + + if ((!pZip) || (!pFilename) || ((archive_size) && (archive_size < MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE))) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + pFile = MZ_FOPEN(pFilename, (flags & MZ_ZIP_FLAG_READ_ALLOW_WRITING ) ? "r+b" : "rb"); + if (!pFile) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_OPEN_FAILED); + + file_size = archive_size; + if (!file_size) + { + if (MZ_FSEEK64(pFile, 0, SEEK_END)) + { + MZ_FCLOSE(pFile); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_SEEK_FAILED); + } + + file_size = MZ_FTELL64(pFile); + } + + /* TODO: Better sanity check archive_size and the # of actual remaining bytes */ + + if (file_size < MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE) + { + MZ_FCLOSE(pFile); + return mz_zip_set_error(pZip, MZ_ZIP_NOT_AN_ARCHIVE); + } + + if (!mz_zip_reader_init_internal(pZip, flags)) + { + MZ_FCLOSE(pFile); + return MZ_FALSE; + } + + pZip->m_zip_type = MZ_ZIP_TYPE_FILE; + pZip->m_pRead = mz_zip_file_read_func; + pZip->m_pIO_opaque = pZip; + pZip->m_pState->m_pFile = pFile; + pZip->m_archive_size = file_size; + pZip->m_pState->m_file_archive_start_ofs = file_start_ofs; + + if (!mz_zip_reader_read_central_dir(pZip, flags)) + { + mz_zip_reader_end_internal(pZip, MZ_FALSE); + return MZ_FALSE; + } + + return MZ_TRUE; + } + + mz_bool mz_zip_reader_init_cfile(mz_zip_archive *pZip, MZ_FILE *pFile, mz_uint64 archive_size, mz_uint flags) + { + mz_uint64 cur_file_ofs; + + if ((!pZip) || (!pFile)) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_OPEN_FAILED); + + cur_file_ofs = MZ_FTELL64(pFile); + + if (!archive_size) + { + if (MZ_FSEEK64(pFile, 0, SEEK_END)) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_SEEK_FAILED); + + archive_size = MZ_FTELL64(pFile) - cur_file_ofs; + + if (archive_size < MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_NOT_AN_ARCHIVE); + } + + if (!mz_zip_reader_init_internal(pZip, flags)) + return MZ_FALSE; + + pZip->m_zip_type = MZ_ZIP_TYPE_CFILE; + pZip->m_pRead = mz_zip_file_read_func; + + pZip->m_pIO_opaque = pZip; + pZip->m_pState->m_pFile = pFile; + pZip->m_archive_size = archive_size; + pZip->m_pState->m_file_archive_start_ofs = cur_file_ofs; + + if (!mz_zip_reader_read_central_dir(pZip, flags)) + { + mz_zip_reader_end_internal(pZip, MZ_FALSE); + return MZ_FALSE; + } + + return MZ_TRUE; + } + +#endif /* #ifndef MINIZ_NO_STDIO */ + + static MZ_FORCEINLINE const mz_uint8 *mz_zip_get_cdh(mz_zip_archive *pZip, mz_uint file_index) + { + if ((!pZip) || (!pZip->m_pState) || (file_index >= pZip->m_total_files)) + return NULL; + return &MZ_ZIP_ARRAY_ELEMENT(&pZip->m_pState->m_central_dir, mz_uint8, MZ_ZIP_ARRAY_ELEMENT(&pZip->m_pState->m_central_dir_offsets, mz_uint32, file_index)); + } + + mz_bool mz_zip_reader_is_file_encrypted(mz_zip_archive *pZip, mz_uint file_index) + { + mz_uint m_bit_flag; + const mz_uint8 *p = mz_zip_get_cdh(pZip, file_index); + if (!p) + { + mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + return MZ_FALSE; + } + + m_bit_flag = MZ_READ_LE16(p + MZ_ZIP_CDH_BIT_FLAG_OFS); + return (m_bit_flag & (MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_IS_ENCRYPTED | MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_USES_STRONG_ENCRYPTION)) != 0; + } + + mz_bool mz_zip_reader_is_file_supported(mz_zip_archive *pZip, mz_uint file_index) + { + mz_uint bit_flag; + mz_uint method; + + const mz_uint8 *p = mz_zip_get_cdh(pZip, file_index); + if (!p) + { + mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + return MZ_FALSE; + } + + method = MZ_READ_LE16(p + MZ_ZIP_CDH_METHOD_OFS); + bit_flag = MZ_READ_LE16(p + MZ_ZIP_CDH_BIT_FLAG_OFS); + + if ((method != 0) && (method != MZ_DEFLATED)) + { + mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_METHOD); + return MZ_FALSE; + } + + if (bit_flag & (MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_IS_ENCRYPTED | MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_USES_STRONG_ENCRYPTION)) + { + mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_ENCRYPTION); + return MZ_FALSE; + } + + if (bit_flag & MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_COMPRESSED_PATCH_FLAG) + { + mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_FEATURE); + return MZ_FALSE; + } + + return MZ_TRUE; + } + + mz_bool mz_zip_reader_is_file_a_directory(mz_zip_archive *pZip, mz_uint file_index) + { + mz_uint filename_len, attribute_mapping_id, external_attr; + const mz_uint8 *p = mz_zip_get_cdh(pZip, file_index); + if (!p) + { + mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + return MZ_FALSE; + } + + filename_len = MZ_READ_LE16(p + MZ_ZIP_CDH_FILENAME_LEN_OFS); + if (filename_len) + { + if (*(p + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + filename_len - 1) == '/') + return MZ_TRUE; + } + + /* Bugfix: This code was also checking if the internal attribute was non-zero, which wasn't correct. */ + /* Most/all zip writers (hopefully) set DOS file/directory attributes in the low 16-bits, so check for the DOS directory flag and ignore the source OS ID in the created by field. */ + /* FIXME: Remove this check? Is it necessary - we already check the filename. */ + attribute_mapping_id = MZ_READ_LE16(p + MZ_ZIP_CDH_VERSION_MADE_BY_OFS) >> 8; + (void)attribute_mapping_id; + + external_attr = MZ_READ_LE32(p + MZ_ZIP_CDH_EXTERNAL_ATTR_OFS); + if ((external_attr & MZ_ZIP_DOS_DIR_ATTRIBUTE_BITFLAG) != 0) + { + return MZ_TRUE; + } + + return MZ_FALSE; + } + + static mz_bool mz_zip_file_stat_internal(mz_zip_archive *pZip, mz_uint file_index, const mz_uint8 *pCentral_dir_header, mz_zip_archive_file_stat *pStat, mz_bool *pFound_zip64_extra_data) + { + mz_uint n; + const mz_uint8 *p = pCentral_dir_header; + + if (pFound_zip64_extra_data) + *pFound_zip64_extra_data = MZ_FALSE; + + if ((!p) || (!pStat)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + /* Extract fields from the central directory record. */ + pStat->m_file_index = file_index; + pStat->m_central_dir_ofs = MZ_ZIP_ARRAY_ELEMENT(&pZip->m_pState->m_central_dir_offsets, mz_uint32, file_index); + pStat->m_version_made_by = MZ_READ_LE16(p + MZ_ZIP_CDH_VERSION_MADE_BY_OFS); + pStat->m_version_needed = MZ_READ_LE16(p + MZ_ZIP_CDH_VERSION_NEEDED_OFS); + pStat->m_bit_flag = MZ_READ_LE16(p + MZ_ZIP_CDH_BIT_FLAG_OFS); + pStat->m_method = MZ_READ_LE16(p + MZ_ZIP_CDH_METHOD_OFS); +#ifndef MINIZ_NO_TIME + pStat->m_time = mz_zip_dos_to_time_t(MZ_READ_LE16(p + MZ_ZIP_CDH_FILE_TIME_OFS), MZ_READ_LE16(p + MZ_ZIP_CDH_FILE_DATE_OFS)); +#endif + pStat->m_crc32 = MZ_READ_LE32(p + MZ_ZIP_CDH_CRC32_OFS); + pStat->m_comp_size = MZ_READ_LE32(p + MZ_ZIP_CDH_COMPRESSED_SIZE_OFS); + pStat->m_uncomp_size = MZ_READ_LE32(p + MZ_ZIP_CDH_DECOMPRESSED_SIZE_OFS); + pStat->m_internal_attr = MZ_READ_LE16(p + MZ_ZIP_CDH_INTERNAL_ATTR_OFS); + pStat->m_external_attr = MZ_READ_LE32(p + MZ_ZIP_CDH_EXTERNAL_ATTR_OFS); + pStat->m_local_header_ofs = MZ_READ_LE32(p + MZ_ZIP_CDH_LOCAL_HEADER_OFS); + + /* Copy as much of the filename and comment as possible. */ + n = MZ_READ_LE16(p + MZ_ZIP_CDH_FILENAME_LEN_OFS); + n = MZ_MIN(n, MZ_ZIP_MAX_ARCHIVE_FILENAME_SIZE - 1); + memcpy(pStat->m_filename, p + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE, n); + pStat->m_filename[n] = '\0'; + + n = MZ_READ_LE16(p + MZ_ZIP_CDH_COMMENT_LEN_OFS); + n = MZ_MIN(n, MZ_ZIP_MAX_ARCHIVE_FILE_COMMENT_SIZE - 1); + pStat->m_comment_size = n; + memcpy(pStat->m_comment, p + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + MZ_READ_LE16(p + MZ_ZIP_CDH_FILENAME_LEN_OFS) + MZ_READ_LE16(p + MZ_ZIP_CDH_EXTRA_LEN_OFS), n); + pStat->m_comment[n] = '\0'; + + /* Set some flags for convienance */ + pStat->m_is_directory = mz_zip_reader_is_file_a_directory(pZip, file_index); + pStat->m_is_encrypted = mz_zip_reader_is_file_encrypted(pZip, file_index); + pStat->m_is_supported = mz_zip_reader_is_file_supported(pZip, file_index); + + /* See if we need to read any zip64 extended information fields. */ + /* Confusingly, these zip64 fields can be present even on non-zip64 archives (Debian zip on a huge files from stdin piped to stdout creates them). */ + if (MZ_MAX(MZ_MAX(pStat->m_comp_size, pStat->m_uncomp_size), pStat->m_local_header_ofs) == MZ_UINT32_MAX) + { + /* Attempt to find zip64 extended information field in the entry's extra data */ + mz_uint32 extra_size_remaining = MZ_READ_LE16(p + MZ_ZIP_CDH_EXTRA_LEN_OFS); + + if (extra_size_remaining) + { + const mz_uint8 *pExtra_data = p + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + MZ_READ_LE16(p + MZ_ZIP_CDH_FILENAME_LEN_OFS); + + do + { + mz_uint32 field_id; + mz_uint32 field_data_size; + + if (extra_size_remaining < (sizeof(mz_uint16) * 2)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + field_id = MZ_READ_LE16(pExtra_data); + field_data_size = MZ_READ_LE16(pExtra_data + sizeof(mz_uint16)); + + if ((field_data_size + sizeof(mz_uint16) * 2) > extra_size_remaining) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + if (field_id == MZ_ZIP64_EXTENDED_INFORMATION_FIELD_HEADER_ID) + { + const mz_uint8 *pField_data = pExtra_data + sizeof(mz_uint16) * 2; + mz_uint32 field_data_remaining = field_data_size; + + if (pFound_zip64_extra_data) + *pFound_zip64_extra_data = MZ_TRUE; + + if (pStat->m_uncomp_size == MZ_UINT32_MAX) + { + if (field_data_remaining < sizeof(mz_uint64)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + pStat->m_uncomp_size = MZ_READ_LE64(pField_data); + pField_data += sizeof(mz_uint64); + field_data_remaining -= sizeof(mz_uint64); + } + + if (pStat->m_comp_size == MZ_UINT32_MAX) + { + if (field_data_remaining < sizeof(mz_uint64)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + pStat->m_comp_size = MZ_READ_LE64(pField_data); + pField_data += sizeof(mz_uint64); + field_data_remaining -= sizeof(mz_uint64); + } + + if (pStat->m_local_header_ofs == MZ_UINT32_MAX) + { + if (field_data_remaining < sizeof(mz_uint64)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + pStat->m_local_header_ofs = MZ_READ_LE64(pField_data); + pField_data += sizeof(mz_uint64); + field_data_remaining -= sizeof(mz_uint64); + } + + break; + } + + pExtra_data += sizeof(mz_uint16) * 2 + field_data_size; + extra_size_remaining = extra_size_remaining - sizeof(mz_uint16) * 2 - field_data_size; + } while (extra_size_remaining); + } + } + + return MZ_TRUE; + } + + static MZ_FORCEINLINE mz_bool mz_zip_string_equal(const char *pA, const char *pB, mz_uint len, mz_uint flags) + { + mz_uint i; + if (flags & MZ_ZIP_FLAG_CASE_SENSITIVE) + return 0 == memcmp(pA, pB, len); + for (i = 0; i < len; ++i) + if (MZ_TOLOWER(pA[i]) != MZ_TOLOWER(pB[i])) + return MZ_FALSE; + return MZ_TRUE; + } + + static MZ_FORCEINLINE int mz_zip_filename_compare(const mz_zip_array *pCentral_dir_array, const mz_zip_array *pCentral_dir_offsets, mz_uint l_index, const char *pR, mz_uint r_len) + { + const mz_uint8 *pL = &MZ_ZIP_ARRAY_ELEMENT(pCentral_dir_array, mz_uint8, MZ_ZIP_ARRAY_ELEMENT(pCentral_dir_offsets, mz_uint32, l_index)), *pE; + mz_uint l_len = MZ_READ_LE16(pL + MZ_ZIP_CDH_FILENAME_LEN_OFS); + mz_uint8 l = 0, r = 0; + pL += MZ_ZIP_CENTRAL_DIR_HEADER_SIZE; + pE = pL + MZ_MIN(l_len, r_len); + while (pL < pE) + { + if ((l = MZ_TOLOWER(*pL)) != (r = MZ_TOLOWER(*pR))) + break; + pL++; + pR++; + } + return (pL == pE) ? (int)(l_len - r_len) : (l - r); + } + + static mz_bool mz_zip_locate_file_binary_search(mz_zip_archive *pZip, const char *pFilename, mz_uint32 *pIndex) + { + mz_zip_internal_state *pState = pZip->m_pState; + const mz_zip_array *pCentral_dir_offsets = &pState->m_central_dir_offsets; + const mz_zip_array *pCentral_dir = &pState->m_central_dir; + mz_uint32 *pIndices = &MZ_ZIP_ARRAY_ELEMENT(&pState->m_sorted_central_dir_offsets, mz_uint32, 0); + const mz_uint32 size = pZip->m_total_files; + const mz_uint filename_len = (mz_uint)strlen(pFilename); + + if (pIndex) + *pIndex = 0; + + if (size) + { + /* yes I could use uint32_t's, but then we would have to add some special case checks in the loop, argh, and */ + /* honestly the major expense here on 32-bit CPU's will still be the filename compare */ + mz_int64 l = 0, h = (mz_int64)size - 1; + + while (l <= h) + { + mz_int64 m = l + ((h - l) >> 1); + mz_uint32 file_index = pIndices[(mz_uint32)m]; + + int comp = mz_zip_filename_compare(pCentral_dir, pCentral_dir_offsets, file_index, pFilename, filename_len); + if (!comp) + { + if (pIndex) + *pIndex = file_index; + return MZ_TRUE; + } + else if (comp < 0) + l = m + 1; + else + h = m - 1; + } + } + + return mz_zip_set_error(pZip, MZ_ZIP_FILE_NOT_FOUND); + } + + int mz_zip_reader_locate_file(mz_zip_archive *pZip, const char *pName, const char *pComment, mz_uint flags) + { + mz_uint32 index; + if (!mz_zip_reader_locate_file_v2(pZip, pName, pComment, flags, &index)) + return -1; + else + return (int)index; + } + + mz_bool mz_zip_reader_locate_file_v2(mz_zip_archive *pZip, const char *pName, const char *pComment, mz_uint flags, mz_uint32 *pIndex) + { + mz_uint file_index; + size_t name_len, comment_len; + + if (pIndex) + *pIndex = 0; + + if ((!pZip) || (!pZip->m_pState) || (!pName)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + /* See if we can use a binary search */ + if (((pZip->m_pState->m_init_flags & MZ_ZIP_FLAG_DO_NOT_SORT_CENTRAL_DIRECTORY) == 0) && + (pZip->m_zip_mode == MZ_ZIP_MODE_READING) && + ((flags & (MZ_ZIP_FLAG_IGNORE_PATH | MZ_ZIP_FLAG_CASE_SENSITIVE)) == 0) && (!pComment) && (pZip->m_pState->m_sorted_central_dir_offsets.m_size)) + { + return mz_zip_locate_file_binary_search(pZip, pName, pIndex); + } + + /* Locate the entry by scanning the entire central directory */ + name_len = strlen(pName); + if (name_len > MZ_UINT16_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + comment_len = pComment ? strlen(pComment) : 0; + if (comment_len > MZ_UINT16_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + for (file_index = 0; file_index < pZip->m_total_files; file_index++) + { + const mz_uint8 *pHeader = &MZ_ZIP_ARRAY_ELEMENT(&pZip->m_pState->m_central_dir, mz_uint8, MZ_ZIP_ARRAY_ELEMENT(&pZip->m_pState->m_central_dir_offsets, mz_uint32, file_index)); + mz_uint filename_len = MZ_READ_LE16(pHeader + MZ_ZIP_CDH_FILENAME_LEN_OFS); + const char *pFilename = (const char *)pHeader + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE; + if (filename_len < name_len) + continue; + if (comment_len) + { + mz_uint file_extra_len = MZ_READ_LE16(pHeader + MZ_ZIP_CDH_EXTRA_LEN_OFS), file_comment_len = MZ_READ_LE16(pHeader + MZ_ZIP_CDH_COMMENT_LEN_OFS); + const char *pFile_comment = pFilename + filename_len + file_extra_len; + if ((file_comment_len != comment_len) || (!mz_zip_string_equal(pComment, pFile_comment, file_comment_len, flags))) + continue; + } + if ((flags & MZ_ZIP_FLAG_IGNORE_PATH) && (filename_len)) + { + int ofs = filename_len - 1; + do + { + if ((pFilename[ofs] == '/') || (pFilename[ofs] == '\\') || (pFilename[ofs] == ':')) + break; + } while (--ofs >= 0); + ofs++; + pFilename += ofs; + filename_len -= ofs; + } + if ((filename_len == name_len) && (mz_zip_string_equal(pName, pFilename, filename_len, flags))) + { + if (pIndex) + *pIndex = file_index; + return MZ_TRUE; + } + } + + return mz_zip_set_error(pZip, MZ_ZIP_FILE_NOT_FOUND); + } + + static mz_bool mz_zip_reader_extract_to_mem_no_alloc1(mz_zip_archive *pZip, mz_uint file_index, void *pBuf, size_t buf_size, mz_uint flags, void *pUser_read_buf, size_t user_read_buf_size, const mz_zip_archive_file_stat *st) + { + int status = TINFL_STATUS_DONE; + mz_uint64 needed_size, cur_file_ofs, comp_remaining, out_buf_ofs = 0, read_buf_size, read_buf_ofs = 0, read_buf_avail; + mz_zip_archive_file_stat file_stat; + void *pRead_buf; + mz_uint32 local_header_u32[(MZ_ZIP_LOCAL_DIR_HEADER_SIZE + sizeof(mz_uint32) - 1) / sizeof(mz_uint32)]; + mz_uint8 *pLocal_header = (mz_uint8 *)local_header_u32; + tinfl_decompressor inflator; + + if ((!pZip) || (!pZip->m_pState) || ((buf_size) && (!pBuf)) || ((user_read_buf_size) && (!pUser_read_buf)) || (!pZip->m_pRead)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (st) + { + file_stat = *st; + } + else if (!mz_zip_reader_file_stat(pZip, file_index, &file_stat)) + return MZ_FALSE; + + /* A directory or zero length file */ + if ((file_stat.m_is_directory) || (!file_stat.m_comp_size)) + return MZ_TRUE; + + /* Encryption and patch files are not supported. */ + if (file_stat.m_bit_flag & (MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_IS_ENCRYPTED | MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_USES_STRONG_ENCRYPTION | MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_COMPRESSED_PATCH_FLAG)) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_ENCRYPTION); + + /* This function only supports decompressing stored and deflate. */ + if ((!(flags & MZ_ZIP_FLAG_COMPRESSED_DATA)) && (file_stat.m_method != 0) && (file_stat.m_method != MZ_DEFLATED)) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_METHOD); + + /* Ensure supplied output buffer is large enough. */ + needed_size = (flags & MZ_ZIP_FLAG_COMPRESSED_DATA) ? file_stat.m_comp_size : file_stat.m_uncomp_size; + if (buf_size < needed_size) + return mz_zip_set_error(pZip, MZ_ZIP_BUF_TOO_SMALL); + + /* Read and parse the local directory entry. */ + cur_file_ofs = file_stat.m_local_header_ofs; + if (pZip->m_pRead(pZip->m_pIO_opaque, cur_file_ofs, pLocal_header, MZ_ZIP_LOCAL_DIR_HEADER_SIZE) != MZ_ZIP_LOCAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + + if (MZ_READ_LE32(pLocal_header) != MZ_ZIP_LOCAL_DIR_HEADER_SIG) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + cur_file_ofs += (mz_uint64)(MZ_ZIP_LOCAL_DIR_HEADER_SIZE) + MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_FILENAME_LEN_OFS) + MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_EXTRA_LEN_OFS); + if ((cur_file_ofs + file_stat.m_comp_size) > pZip->m_archive_size) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + if ((flags & MZ_ZIP_FLAG_COMPRESSED_DATA) || (!file_stat.m_method)) + { + /* The file is stored or the caller has requested the compressed data. */ + if (pZip->m_pRead(pZip->m_pIO_opaque, cur_file_ofs, pBuf, (size_t)needed_size) != needed_size) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + if ((flags & MZ_ZIP_FLAG_COMPRESSED_DATA) == 0) + { + if (mz_crc32(MZ_CRC32_INIT, (const mz_uint8 *)pBuf, (size_t)file_stat.m_uncomp_size) != file_stat.m_crc32) + return mz_zip_set_error(pZip, MZ_ZIP_CRC_CHECK_FAILED); + } +#endif + + return MZ_TRUE; + } + + /* Decompress the file either directly from memory or from a file input buffer. */ + tinfl_init(&inflator); + + if (pZip->m_pState->m_pMem) + { + /* Read directly from the archive in memory. */ + pRead_buf = (mz_uint8 *)pZip->m_pState->m_pMem + cur_file_ofs; + read_buf_size = read_buf_avail = file_stat.m_comp_size; + comp_remaining = 0; + } + else if (pUser_read_buf) + { + /* Use a user provided read buffer. */ + if (!user_read_buf_size) + return MZ_FALSE; + pRead_buf = (mz_uint8 *)pUser_read_buf; + read_buf_size = user_read_buf_size; + read_buf_avail = 0; + comp_remaining = file_stat.m_comp_size; + } + else + { + /* Temporarily allocate a read buffer. */ + read_buf_size = MZ_MIN(file_stat.m_comp_size, (mz_uint64)MZ_ZIP_MAX_IO_BUF_SIZE); + if (((sizeof(size_t) == sizeof(mz_uint32))) && (read_buf_size > 0x7FFFFFFF)) + return mz_zip_set_error(pZip, MZ_ZIP_INTERNAL_ERROR); + + if (NULL == (pRead_buf = pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, (size_t)read_buf_size))) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + + read_buf_avail = 0; + comp_remaining = file_stat.m_comp_size; + } + + do + { + /* The size_t cast here should be OK because we've verified that the output buffer is >= file_stat.m_uncomp_size above */ + size_t in_buf_size, out_buf_size = (size_t)(file_stat.m_uncomp_size - out_buf_ofs); + if ((!read_buf_avail) && (!pZip->m_pState->m_pMem)) + { + read_buf_avail = MZ_MIN(read_buf_size, comp_remaining); + if (pZip->m_pRead(pZip->m_pIO_opaque, cur_file_ofs, pRead_buf, (size_t)read_buf_avail) != read_buf_avail) + { + status = TINFL_STATUS_FAILED; + mz_zip_set_error(pZip, MZ_ZIP_DECOMPRESSION_FAILED); + break; + } + cur_file_ofs += read_buf_avail; + comp_remaining -= read_buf_avail; + read_buf_ofs = 0; + } + in_buf_size = (size_t)read_buf_avail; + status = tinfl_decompress(&inflator, (mz_uint8 *)pRead_buf + read_buf_ofs, &in_buf_size, (mz_uint8 *)pBuf, (mz_uint8 *)pBuf + out_buf_ofs, &out_buf_size, TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF | (comp_remaining ? TINFL_FLAG_HAS_MORE_INPUT : 0)); + read_buf_avail -= in_buf_size; + read_buf_ofs += in_buf_size; + out_buf_ofs += out_buf_size; + } while (status == TINFL_STATUS_NEEDS_MORE_INPUT); + + if (status == TINFL_STATUS_DONE) + { + /* Make sure the entire file was decompressed, and check its CRC. */ + if (out_buf_ofs != file_stat.m_uncomp_size) + { + mz_zip_set_error(pZip, MZ_ZIP_UNEXPECTED_DECOMPRESSED_SIZE); + status = TINFL_STATUS_FAILED; + } +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + else if (mz_crc32(MZ_CRC32_INIT, (const mz_uint8 *)pBuf, (size_t)file_stat.m_uncomp_size) != file_stat.m_crc32) + { + mz_zip_set_error(pZip, MZ_ZIP_CRC_CHECK_FAILED); + status = TINFL_STATUS_FAILED; + } +#endif + } + + if ((!pZip->m_pState->m_pMem) && (!pUser_read_buf)) + pZip->m_pFree(pZip->m_pAlloc_opaque, pRead_buf); + + return status == TINFL_STATUS_DONE; + } + + mz_bool mz_zip_reader_extract_to_mem_no_alloc(mz_zip_archive *pZip, mz_uint file_index, void *pBuf, size_t buf_size, mz_uint flags, void *pUser_read_buf, size_t user_read_buf_size) + { + return mz_zip_reader_extract_to_mem_no_alloc1(pZip, file_index, pBuf, buf_size, flags, pUser_read_buf, user_read_buf_size, NULL); + } + + mz_bool mz_zip_reader_extract_file_to_mem_no_alloc(mz_zip_archive *pZip, const char *pFilename, void *pBuf, size_t buf_size, mz_uint flags, void *pUser_read_buf, size_t user_read_buf_size) + { + mz_uint32 file_index; + if (!mz_zip_reader_locate_file_v2(pZip, pFilename, NULL, flags, &file_index)) + return MZ_FALSE; + return mz_zip_reader_extract_to_mem_no_alloc1(pZip, file_index, pBuf, buf_size, flags, pUser_read_buf, user_read_buf_size, NULL); + } + + mz_bool mz_zip_reader_extract_to_mem(mz_zip_archive *pZip, mz_uint file_index, void *pBuf, size_t buf_size, mz_uint flags) + { + return mz_zip_reader_extract_to_mem_no_alloc1(pZip, file_index, pBuf, buf_size, flags, NULL, 0, NULL); + } + + mz_bool mz_zip_reader_extract_file_to_mem(mz_zip_archive *pZip, const char *pFilename, void *pBuf, size_t buf_size, mz_uint flags) + { + return mz_zip_reader_extract_file_to_mem_no_alloc(pZip, pFilename, pBuf, buf_size, flags, NULL, 0); + } + + void *mz_zip_reader_extract_to_heap(mz_zip_archive *pZip, mz_uint file_index, size_t *pSize, mz_uint flags) + { + mz_zip_archive_file_stat file_stat; + mz_uint64 alloc_size; + void *pBuf; + + if (pSize) + *pSize = 0; + + if (!mz_zip_reader_file_stat(pZip, file_index, &file_stat)) + return NULL; + + alloc_size = (flags & MZ_ZIP_FLAG_COMPRESSED_DATA) ? file_stat.m_comp_size : file_stat.m_uncomp_size; + if (((sizeof(size_t) == sizeof(mz_uint32))) && (alloc_size > 0x7FFFFFFF)) + { + mz_zip_set_error(pZip, MZ_ZIP_INTERNAL_ERROR); + return NULL; + } + + if (NULL == (pBuf = pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, (size_t)alloc_size))) + { + mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + return NULL; + } + + if (!mz_zip_reader_extract_to_mem_no_alloc1(pZip, file_index, pBuf, (size_t)alloc_size, flags, NULL, 0, &file_stat)) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pBuf); + return NULL; + } + + if (pSize) + *pSize = (size_t)alloc_size; + return pBuf; + } + + void *mz_zip_reader_extract_file_to_heap(mz_zip_archive *pZip, const char *pFilename, size_t *pSize, mz_uint flags) + { + mz_uint32 file_index; + if (!mz_zip_reader_locate_file_v2(pZip, pFilename, NULL, flags, &file_index)) + { + if (pSize) + *pSize = 0; + return MZ_FALSE; + } + return mz_zip_reader_extract_to_heap(pZip, file_index, pSize, flags); + } + + mz_bool mz_zip_reader_extract_to_callback(mz_zip_archive *pZip, mz_uint file_index, mz_file_write_func pCallback, void *pOpaque, mz_uint flags) + { + int status = TINFL_STATUS_DONE; +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + mz_uint file_crc32 = MZ_CRC32_INIT; +#endif + mz_uint64 read_buf_size, read_buf_ofs = 0, read_buf_avail, comp_remaining, out_buf_ofs = 0, cur_file_ofs; + mz_zip_archive_file_stat file_stat; + void *pRead_buf = NULL; + void *pWrite_buf = NULL; + mz_uint32 local_header_u32[(MZ_ZIP_LOCAL_DIR_HEADER_SIZE + sizeof(mz_uint32) - 1) / sizeof(mz_uint32)]; + mz_uint8 *pLocal_header = (mz_uint8 *)local_header_u32; + + if ((!pZip) || (!pZip->m_pState) || (!pCallback) || (!pZip->m_pRead)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (!mz_zip_reader_file_stat(pZip, file_index, &file_stat)) + return MZ_FALSE; + + /* A directory or zero length file */ + if ((file_stat.m_is_directory) || (!file_stat.m_comp_size)) + return MZ_TRUE; + + /* Encryption and patch files are not supported. */ + if (file_stat.m_bit_flag & (MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_IS_ENCRYPTED | MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_USES_STRONG_ENCRYPTION | MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_COMPRESSED_PATCH_FLAG)) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_ENCRYPTION); + + /* This function only supports decompressing stored and deflate. */ + if ((!(flags & MZ_ZIP_FLAG_COMPRESSED_DATA)) && (file_stat.m_method != 0) && (file_stat.m_method != MZ_DEFLATED)) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_METHOD); + + /* Read and do some minimal validation of the local directory entry (this doesn't crack the zip64 stuff, which we already have from the central dir) */ + cur_file_ofs = file_stat.m_local_header_ofs; + if (pZip->m_pRead(pZip->m_pIO_opaque, cur_file_ofs, pLocal_header, MZ_ZIP_LOCAL_DIR_HEADER_SIZE) != MZ_ZIP_LOCAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + + if (MZ_READ_LE32(pLocal_header) != MZ_ZIP_LOCAL_DIR_HEADER_SIG) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + cur_file_ofs += (mz_uint64)(MZ_ZIP_LOCAL_DIR_HEADER_SIZE) + MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_FILENAME_LEN_OFS) + MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_EXTRA_LEN_OFS); + if ((cur_file_ofs + file_stat.m_comp_size) > pZip->m_archive_size) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + /* Decompress the file either directly from memory or from a file input buffer. */ + if (pZip->m_pState->m_pMem) + { + pRead_buf = (mz_uint8 *)pZip->m_pState->m_pMem + cur_file_ofs; + read_buf_size = read_buf_avail = file_stat.m_comp_size; + comp_remaining = 0; + } + else + { + read_buf_size = MZ_MIN(file_stat.m_comp_size, (mz_uint64)MZ_ZIP_MAX_IO_BUF_SIZE); + if (NULL == (pRead_buf = pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, (size_t)read_buf_size))) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + + read_buf_avail = 0; + comp_remaining = file_stat.m_comp_size; + } + + if ((flags & MZ_ZIP_FLAG_COMPRESSED_DATA) || (!file_stat.m_method)) + { + /* The file is stored or the caller has requested the compressed data. */ + if (pZip->m_pState->m_pMem) + { + if (((sizeof(size_t) == sizeof(mz_uint32))) && (file_stat.m_comp_size > MZ_UINT32_MAX)) + return mz_zip_set_error(pZip, MZ_ZIP_INTERNAL_ERROR); + + if (pCallback(pOpaque, out_buf_ofs, pRead_buf, (size_t)file_stat.m_comp_size) != file_stat.m_comp_size) + { + mz_zip_set_error(pZip, MZ_ZIP_WRITE_CALLBACK_FAILED); + status = TINFL_STATUS_FAILED; + } + else if (!(flags & MZ_ZIP_FLAG_COMPRESSED_DATA)) + { +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + file_crc32 = (mz_uint32)mz_crc32(file_crc32, (const mz_uint8 *)pRead_buf, (size_t)file_stat.m_comp_size); +#endif + } + + cur_file_ofs += file_stat.m_comp_size; + out_buf_ofs += file_stat.m_comp_size; + comp_remaining = 0; + } + else + { + while (comp_remaining) + { + read_buf_avail = MZ_MIN(read_buf_size, comp_remaining); + if (pZip->m_pRead(pZip->m_pIO_opaque, cur_file_ofs, pRead_buf, (size_t)read_buf_avail) != read_buf_avail) + { + mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + status = TINFL_STATUS_FAILED; + break; + } + +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + if (!(flags & MZ_ZIP_FLAG_COMPRESSED_DATA)) + { + file_crc32 = (mz_uint32)mz_crc32(file_crc32, (const mz_uint8 *)pRead_buf, (size_t)read_buf_avail); + } +#endif + + if (pCallback(pOpaque, out_buf_ofs, pRead_buf, (size_t)read_buf_avail) != read_buf_avail) + { + mz_zip_set_error(pZip, MZ_ZIP_WRITE_CALLBACK_FAILED); + status = TINFL_STATUS_FAILED; + break; + } + + cur_file_ofs += read_buf_avail; + out_buf_ofs += read_buf_avail; + comp_remaining -= read_buf_avail; + } + } + } + else + { + tinfl_decompressor inflator; + tinfl_init(&inflator); + + if (NULL == (pWrite_buf = pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, TINFL_LZ_DICT_SIZE))) + { + mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + status = TINFL_STATUS_FAILED; + } + else + { + do + { + mz_uint8 *pWrite_buf_cur = (mz_uint8 *)pWrite_buf + (out_buf_ofs & (TINFL_LZ_DICT_SIZE - 1)); + size_t in_buf_size, out_buf_size = TINFL_LZ_DICT_SIZE - (out_buf_ofs & (TINFL_LZ_DICT_SIZE - 1)); + if ((!read_buf_avail) && (!pZip->m_pState->m_pMem)) + { + read_buf_avail = MZ_MIN(read_buf_size, comp_remaining); + if (pZip->m_pRead(pZip->m_pIO_opaque, cur_file_ofs, pRead_buf, (size_t)read_buf_avail) != read_buf_avail) + { + mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + status = TINFL_STATUS_FAILED; + break; + } + cur_file_ofs += read_buf_avail; + comp_remaining -= read_buf_avail; + read_buf_ofs = 0; + } + + in_buf_size = (size_t)read_buf_avail; + status = tinfl_decompress(&inflator, (const mz_uint8 *)pRead_buf + read_buf_ofs, &in_buf_size, (mz_uint8 *)pWrite_buf, pWrite_buf_cur, &out_buf_size, comp_remaining ? TINFL_FLAG_HAS_MORE_INPUT : 0); + read_buf_avail -= in_buf_size; + read_buf_ofs += in_buf_size; + + if (out_buf_size) + { + if (pCallback(pOpaque, out_buf_ofs, pWrite_buf_cur, out_buf_size) != out_buf_size) + { + mz_zip_set_error(pZip, MZ_ZIP_WRITE_CALLBACK_FAILED); + status = TINFL_STATUS_FAILED; + break; + } + +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + file_crc32 = (mz_uint32)mz_crc32(file_crc32, pWrite_buf_cur, out_buf_size); +#endif + if ((out_buf_ofs += out_buf_size) > file_stat.m_uncomp_size) + { + mz_zip_set_error(pZip, MZ_ZIP_DECOMPRESSION_FAILED); + status = TINFL_STATUS_FAILED; + break; + } + } + } while ((status == TINFL_STATUS_NEEDS_MORE_INPUT) || (status == TINFL_STATUS_HAS_MORE_OUTPUT)); + } + } + + if ((status == TINFL_STATUS_DONE) && (!(flags & MZ_ZIP_FLAG_COMPRESSED_DATA))) + { + /* Make sure the entire file was decompressed, and check its CRC. */ + if (out_buf_ofs != file_stat.m_uncomp_size) + { + mz_zip_set_error(pZip, MZ_ZIP_UNEXPECTED_DECOMPRESSED_SIZE); + status = TINFL_STATUS_FAILED; + } +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + else if (file_crc32 != file_stat.m_crc32) + { + mz_zip_set_error(pZip, MZ_ZIP_DECOMPRESSION_FAILED); + status = TINFL_STATUS_FAILED; + } +#endif + } + + if (!pZip->m_pState->m_pMem) + pZip->m_pFree(pZip->m_pAlloc_opaque, pRead_buf); + + if (pWrite_buf) + pZip->m_pFree(pZip->m_pAlloc_opaque, pWrite_buf); + + return status == TINFL_STATUS_DONE; + } + + mz_bool mz_zip_reader_extract_file_to_callback(mz_zip_archive *pZip, const char *pFilename, mz_file_write_func pCallback, void *pOpaque, mz_uint flags) + { + mz_uint32 file_index; + if (!mz_zip_reader_locate_file_v2(pZip, pFilename, NULL, flags, &file_index)) + return MZ_FALSE; + + return mz_zip_reader_extract_to_callback(pZip, file_index, pCallback, pOpaque, flags); + } + + mz_zip_reader_extract_iter_state *mz_zip_reader_extract_iter_new(mz_zip_archive *pZip, mz_uint file_index, mz_uint flags) + { + mz_zip_reader_extract_iter_state *pState; + mz_uint32 local_header_u32[(MZ_ZIP_LOCAL_DIR_HEADER_SIZE + sizeof(mz_uint32) - 1) / sizeof(mz_uint32)]; + mz_uint8 *pLocal_header = (mz_uint8 *)local_header_u32; + + /* Argument sanity check */ + if ((!pZip) || (!pZip->m_pState)) + return NULL; + + /* Allocate an iterator status structure */ + pState = (mz_zip_reader_extract_iter_state *)pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, sizeof(mz_zip_reader_extract_iter_state)); + if (!pState) + { + mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + return NULL; + } + + /* Fetch file details */ + if (!mz_zip_reader_file_stat(pZip, file_index, &pState->file_stat)) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pState); + return NULL; + } + + /* Encryption and patch files are not supported. */ + if (pState->file_stat.m_bit_flag & (MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_IS_ENCRYPTED | MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_USES_STRONG_ENCRYPTION | MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_COMPRESSED_PATCH_FLAG)) + { + mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_ENCRYPTION); + pZip->m_pFree(pZip->m_pAlloc_opaque, pState); + return NULL; + } + + /* This function only supports decompressing stored and deflate. */ + if ((!(flags & MZ_ZIP_FLAG_COMPRESSED_DATA)) && (pState->file_stat.m_method != 0) && (pState->file_stat.m_method != MZ_DEFLATED)) + { + mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_METHOD); + pZip->m_pFree(pZip->m_pAlloc_opaque, pState); + return NULL; + } + + /* Init state - save args */ + pState->pZip = pZip; + pState->flags = flags; + + /* Init state - reset variables to defaults */ + pState->status = TINFL_STATUS_DONE; +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + pState->file_crc32 = MZ_CRC32_INIT; +#endif + pState->read_buf_ofs = 0; + pState->out_buf_ofs = 0; + pState->pRead_buf = NULL; + pState->pWrite_buf = NULL; + pState->out_blk_remain = 0; + + /* Read and parse the local directory entry. */ + pState->cur_file_ofs = pState->file_stat.m_local_header_ofs; + if (pZip->m_pRead(pZip->m_pIO_opaque, pState->cur_file_ofs, pLocal_header, MZ_ZIP_LOCAL_DIR_HEADER_SIZE) != MZ_ZIP_LOCAL_DIR_HEADER_SIZE) + { + mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + pZip->m_pFree(pZip->m_pAlloc_opaque, pState); + return NULL; + } + + if (MZ_READ_LE32(pLocal_header) != MZ_ZIP_LOCAL_DIR_HEADER_SIG) + { + mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + pZip->m_pFree(pZip->m_pAlloc_opaque, pState); + return NULL; + } + + pState->cur_file_ofs += (mz_uint64)(MZ_ZIP_LOCAL_DIR_HEADER_SIZE) + MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_FILENAME_LEN_OFS) + MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_EXTRA_LEN_OFS); + if ((pState->cur_file_ofs + pState->file_stat.m_comp_size) > pZip->m_archive_size) + { + mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + pZip->m_pFree(pZip->m_pAlloc_opaque, pState); + return NULL; + } + + /* Decompress the file either directly from memory or from a file input buffer. */ + if (pZip->m_pState->m_pMem) + { + pState->pRead_buf = (mz_uint8 *)pZip->m_pState->m_pMem + pState->cur_file_ofs; + pState->read_buf_size = pState->read_buf_avail = pState->file_stat.m_comp_size; + pState->comp_remaining = pState->file_stat.m_comp_size; + } + else + { + if (!((flags & MZ_ZIP_FLAG_COMPRESSED_DATA) || (!pState->file_stat.m_method))) + { + /* Decompression required, therefore intermediate read buffer required */ + pState->read_buf_size = MZ_MIN(pState->file_stat.m_comp_size, (mz_uint64)MZ_ZIP_MAX_IO_BUF_SIZE); + if (NULL == (pState->pRead_buf = pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, (size_t)pState->read_buf_size))) + { + mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + pZip->m_pFree(pZip->m_pAlloc_opaque, pState); + return NULL; + } + } + else + { + /* Decompression not required - we will be reading directly into user buffer, no temp buf required */ + pState->read_buf_size = 0; + } + pState->read_buf_avail = 0; + pState->comp_remaining = pState->file_stat.m_comp_size; + } + + if (!((flags & MZ_ZIP_FLAG_COMPRESSED_DATA) || (!pState->file_stat.m_method))) + { + /* Decompression required, init decompressor */ + tinfl_init(&pState->inflator); + + /* Allocate write buffer */ + if (NULL == (pState->pWrite_buf = pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, TINFL_LZ_DICT_SIZE))) + { + mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + if (pState->pRead_buf) + pZip->m_pFree(pZip->m_pAlloc_opaque, pState->pRead_buf); + pZip->m_pFree(pZip->m_pAlloc_opaque, pState); + return NULL; + } + } + + return pState; + } + + mz_zip_reader_extract_iter_state *mz_zip_reader_extract_file_iter_new(mz_zip_archive *pZip, const char *pFilename, mz_uint flags) + { + mz_uint32 file_index; + + /* Locate file index by name */ + if (!mz_zip_reader_locate_file_v2(pZip, pFilename, NULL, flags, &file_index)) + return NULL; + + /* Construct iterator */ + return mz_zip_reader_extract_iter_new(pZip, file_index, flags); + } + + size_t mz_zip_reader_extract_iter_read(mz_zip_reader_extract_iter_state *pState, void *pvBuf, size_t buf_size) + { + size_t copied_to_caller = 0; + + /* Argument sanity check */ + if ((!pState) || (!pState->pZip) || (!pState->pZip->m_pState) || (!pvBuf)) + return 0; + + if ((pState->flags & MZ_ZIP_FLAG_COMPRESSED_DATA) || (!pState->file_stat.m_method)) + { + /* The file is stored or the caller has requested the compressed data, calc amount to return. */ + copied_to_caller = (size_t)MZ_MIN(buf_size, pState->comp_remaining); + + /* Zip is in memory....or requires reading from a file? */ + if (pState->pZip->m_pState->m_pMem) + { + /* Copy data to caller's buffer */ + memcpy(pvBuf, pState->pRead_buf, copied_to_caller); + pState->pRead_buf = ((mz_uint8 *)pState->pRead_buf) + copied_to_caller; + } + else + { + /* Read directly into caller's buffer */ + if (pState->pZip->m_pRead(pState->pZip->m_pIO_opaque, pState->cur_file_ofs, pvBuf, copied_to_caller) != copied_to_caller) + { + /* Failed to read all that was asked for, flag failure and alert user */ + mz_zip_set_error(pState->pZip, MZ_ZIP_FILE_READ_FAILED); + pState->status = TINFL_STATUS_FAILED; + copied_to_caller = 0; + } + } + +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + /* Compute CRC if not returning compressed data only */ + if (!(pState->flags & MZ_ZIP_FLAG_COMPRESSED_DATA)) + pState->file_crc32 = (mz_uint32)mz_crc32(pState->file_crc32, (const mz_uint8 *)pvBuf, copied_to_caller); +#endif + + /* Advance offsets, dec counters */ + pState->cur_file_ofs += copied_to_caller; + pState->out_buf_ofs += copied_to_caller; + pState->comp_remaining -= copied_to_caller; + } + else + { + do + { + /* Calc ptr to write buffer - given current output pos and block size */ + mz_uint8 *pWrite_buf_cur = (mz_uint8 *)pState->pWrite_buf + (pState->out_buf_ofs & (TINFL_LZ_DICT_SIZE - 1)); + + /* Calc max output size - given current output pos and block size */ + size_t in_buf_size, out_buf_size = TINFL_LZ_DICT_SIZE - (pState->out_buf_ofs & (TINFL_LZ_DICT_SIZE - 1)); + + if (!pState->out_blk_remain) + { + /* Read more data from file if none available (and reading from file) */ + if ((!pState->read_buf_avail) && (!pState->pZip->m_pState->m_pMem)) + { + /* Calc read size */ + pState->read_buf_avail = MZ_MIN(pState->read_buf_size, pState->comp_remaining); + if (pState->pZip->m_pRead(pState->pZip->m_pIO_opaque, pState->cur_file_ofs, pState->pRead_buf, (size_t)pState->read_buf_avail) != pState->read_buf_avail) + { + mz_zip_set_error(pState->pZip, MZ_ZIP_FILE_READ_FAILED); + pState->status = TINFL_STATUS_FAILED; + break; + } + + /* Advance offsets, dec counters */ + pState->cur_file_ofs += pState->read_buf_avail; + pState->comp_remaining -= pState->read_buf_avail; + pState->read_buf_ofs = 0; + } + + /* Perform decompression */ + in_buf_size = (size_t)pState->read_buf_avail; + pState->status = tinfl_decompress(&pState->inflator, (const mz_uint8 *)pState->pRead_buf + pState->read_buf_ofs, &in_buf_size, (mz_uint8 *)pState->pWrite_buf, pWrite_buf_cur, &out_buf_size, pState->comp_remaining ? TINFL_FLAG_HAS_MORE_INPUT : 0); + pState->read_buf_avail -= in_buf_size; + pState->read_buf_ofs += in_buf_size; + + /* Update current output block size remaining */ + pState->out_blk_remain = out_buf_size; + } + + if (pState->out_blk_remain) + { + /* Calc amount to return. */ + size_t to_copy = MZ_MIN((buf_size - copied_to_caller), pState->out_blk_remain); + + /* Copy data to caller's buffer */ + memcpy((mz_uint8 *)pvBuf + copied_to_caller, pWrite_buf_cur, to_copy); + +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + /* Perform CRC */ + pState->file_crc32 = (mz_uint32)mz_crc32(pState->file_crc32, pWrite_buf_cur, to_copy); +#endif + + /* Decrement data consumed from block */ + pState->out_blk_remain -= to_copy; + + /* Inc output offset, while performing sanity check */ + if ((pState->out_buf_ofs += to_copy) > pState->file_stat.m_uncomp_size) + { + mz_zip_set_error(pState->pZip, MZ_ZIP_DECOMPRESSION_FAILED); + pState->status = TINFL_STATUS_FAILED; + break; + } + + /* Increment counter of data copied to caller */ + copied_to_caller += to_copy; + } + } while ((copied_to_caller < buf_size) && ((pState->status == TINFL_STATUS_NEEDS_MORE_INPUT) || (pState->status == TINFL_STATUS_HAS_MORE_OUTPUT))); + } + + /* Return how many bytes were copied into user buffer */ + return copied_to_caller; + } + + mz_bool mz_zip_reader_extract_iter_free(mz_zip_reader_extract_iter_state *pState) + { + int status; + + /* Argument sanity check */ + if ((!pState) || (!pState->pZip) || (!pState->pZip->m_pState)) + return MZ_FALSE; + + /* Was decompression completed and requested? */ + if ((pState->status == TINFL_STATUS_DONE) && (!(pState->flags & MZ_ZIP_FLAG_COMPRESSED_DATA))) + { + /* Make sure the entire file was decompressed, and check its CRC. */ + if (pState->out_buf_ofs != pState->file_stat.m_uncomp_size) + { + mz_zip_set_error(pState->pZip, MZ_ZIP_UNEXPECTED_DECOMPRESSED_SIZE); + pState->status = TINFL_STATUS_FAILED; + } +#ifndef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + else if (pState->file_crc32 != pState->file_stat.m_crc32) + { + mz_zip_set_error(pState->pZip, MZ_ZIP_DECOMPRESSION_FAILED); + pState->status = TINFL_STATUS_FAILED; + } +#endif + } + + /* Free buffers */ + if (!pState->pZip->m_pState->m_pMem) + pState->pZip->m_pFree(pState->pZip->m_pAlloc_opaque, pState->pRead_buf); + if (pState->pWrite_buf) + pState->pZip->m_pFree(pState->pZip->m_pAlloc_opaque, pState->pWrite_buf); + + /* Save status */ + status = pState->status; + + /* Free context */ + pState->pZip->m_pFree(pState->pZip->m_pAlloc_opaque, pState); + + return status == TINFL_STATUS_DONE; + } + +#ifndef MINIZ_NO_STDIO + static size_t mz_zip_file_write_callback(void *pOpaque, mz_uint64 ofs, const void *pBuf, size_t n) + { + (void)ofs; + + return MZ_FWRITE(pBuf, 1, n, (MZ_FILE *)pOpaque); + } + + mz_bool mz_zip_reader_extract_to_file(mz_zip_archive *pZip, mz_uint file_index, const char *pDst_filename, mz_uint flags) + { + mz_bool status; + mz_zip_archive_file_stat file_stat; + MZ_FILE *pFile; + + if (!mz_zip_reader_file_stat(pZip, file_index, &file_stat)) + return MZ_FALSE; + + if ((file_stat.m_is_directory) || (!file_stat.m_is_supported)) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_FEATURE); + + pFile = MZ_FOPEN(pDst_filename, "wb"); + if (!pFile) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_OPEN_FAILED); + + status = mz_zip_reader_extract_to_callback(pZip, file_index, mz_zip_file_write_callback, pFile, flags); + + if (MZ_FCLOSE(pFile) == EOF) + { + if (status) + mz_zip_set_error(pZip, MZ_ZIP_FILE_CLOSE_FAILED); + + status = MZ_FALSE; + } + +#if !defined(MINIZ_NO_TIME) && !defined(MINIZ_NO_STDIO) + if (status) + mz_zip_set_file_times(pDst_filename, file_stat.m_time, file_stat.m_time); +#endif + + return status; + } + + mz_bool mz_zip_reader_extract_file_to_file(mz_zip_archive *pZip, const char *pArchive_filename, const char *pDst_filename, mz_uint flags) + { + mz_uint32 file_index; + if (!mz_zip_reader_locate_file_v2(pZip, pArchive_filename, NULL, flags, &file_index)) + return MZ_FALSE; + + return mz_zip_reader_extract_to_file(pZip, file_index, pDst_filename, flags); + } + + mz_bool mz_zip_reader_extract_to_cfile(mz_zip_archive *pZip, mz_uint file_index, MZ_FILE *pFile, mz_uint flags) + { + mz_zip_archive_file_stat file_stat; + + if (!mz_zip_reader_file_stat(pZip, file_index, &file_stat)) + return MZ_FALSE; + + if ((file_stat.m_is_directory) || (!file_stat.m_is_supported)) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_FEATURE); + + return mz_zip_reader_extract_to_callback(pZip, file_index, mz_zip_file_write_callback, pFile, flags); + } + + mz_bool mz_zip_reader_extract_file_to_cfile(mz_zip_archive *pZip, const char *pArchive_filename, MZ_FILE *pFile, mz_uint flags) + { + mz_uint32 file_index; + if (!mz_zip_reader_locate_file_v2(pZip, pArchive_filename, NULL, flags, &file_index)) + return MZ_FALSE; + + return mz_zip_reader_extract_to_cfile(pZip, file_index, pFile, flags); + } +#endif /* #ifndef MINIZ_NO_STDIO */ + + static size_t mz_zip_compute_crc32_callback(void *pOpaque, mz_uint64 file_ofs, const void *pBuf, size_t n) + { + mz_uint32 *p = (mz_uint32 *)pOpaque; + (void)file_ofs; + *p = (mz_uint32)mz_crc32(*p, (const mz_uint8 *)pBuf, n); + return n; + } + + mz_bool mz_zip_validate_file(mz_zip_archive *pZip, mz_uint file_index, mz_uint flags) + { + mz_zip_archive_file_stat file_stat; + mz_zip_internal_state *pState; + const mz_uint8 *pCentral_dir_header; + mz_bool found_zip64_ext_data_in_cdir = MZ_FALSE; + mz_bool found_zip64_ext_data_in_ldir = MZ_FALSE; + mz_uint32 local_header_u32[(MZ_ZIP_LOCAL_DIR_HEADER_SIZE + sizeof(mz_uint32) - 1) / sizeof(mz_uint32)]; + mz_uint8 *pLocal_header = (mz_uint8 *)local_header_u32; + mz_uint64 local_header_ofs = 0; + mz_uint32 local_header_filename_len, local_header_extra_len, local_header_crc32; + mz_uint64 local_header_comp_size, local_header_uncomp_size; + mz_uint32 uncomp_crc32 = MZ_CRC32_INIT; + mz_bool has_data_descriptor; + mz_uint32 local_header_bit_flags; + + mz_zip_array file_data_array; + mz_zip_array_init(&file_data_array, 1); + + if ((!pZip) || (!pZip->m_pState) || (!pZip->m_pAlloc) || (!pZip->m_pFree) || (!pZip->m_pRead)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (file_index > pZip->m_total_files) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + pState = pZip->m_pState; + + pCentral_dir_header = mz_zip_get_cdh(pZip, file_index); + + if (!mz_zip_file_stat_internal(pZip, file_index, pCentral_dir_header, &file_stat, &found_zip64_ext_data_in_cdir)) + return MZ_FALSE; + + /* A directory or zero length file */ + if ((file_stat.m_is_directory) || (!file_stat.m_uncomp_size)) + return MZ_TRUE; + + /* Encryption and patch files are not supported. */ + if (file_stat.m_is_encrypted) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_ENCRYPTION); + + /* This function only supports stored and deflate. */ + if ((file_stat.m_method != 0) && (file_stat.m_method != MZ_DEFLATED)) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_METHOD); + + if (!file_stat.m_is_supported) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_FEATURE); + + /* Read and parse the local directory entry. */ + local_header_ofs = file_stat.m_local_header_ofs; + if (pZip->m_pRead(pZip->m_pIO_opaque, local_header_ofs, pLocal_header, MZ_ZIP_LOCAL_DIR_HEADER_SIZE) != MZ_ZIP_LOCAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + + if (MZ_READ_LE32(pLocal_header) != MZ_ZIP_LOCAL_DIR_HEADER_SIG) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + local_header_filename_len = MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_FILENAME_LEN_OFS); + local_header_extra_len = MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_EXTRA_LEN_OFS); + local_header_comp_size = MZ_READ_LE32(pLocal_header + MZ_ZIP_LDH_COMPRESSED_SIZE_OFS); + local_header_uncomp_size = MZ_READ_LE32(pLocal_header + MZ_ZIP_LDH_DECOMPRESSED_SIZE_OFS); + local_header_crc32 = MZ_READ_LE32(pLocal_header + MZ_ZIP_LDH_CRC32_OFS); + local_header_bit_flags = MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_BIT_FLAG_OFS); + has_data_descriptor = (local_header_bit_flags & 8) != 0; + + if (local_header_filename_len != strlen(file_stat.m_filename)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + if ((local_header_ofs + MZ_ZIP_LOCAL_DIR_HEADER_SIZE + local_header_filename_len + local_header_extra_len + file_stat.m_comp_size) > pZip->m_archive_size) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + if (!mz_zip_array_resize(pZip, &file_data_array, MZ_MAX(local_header_filename_len, local_header_extra_len), MZ_FALSE)) + { + mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + goto handle_failure; + } + + if (local_header_filename_len) + { + if (pZip->m_pRead(pZip->m_pIO_opaque, local_header_ofs + MZ_ZIP_LOCAL_DIR_HEADER_SIZE, file_data_array.m_p, local_header_filename_len) != local_header_filename_len) + { + mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + goto handle_failure; + } + + /* I've seen 1 archive that had the same pathname, but used backslashes in the local dir and forward slashes in the central dir. Do we care about this? For now, this case will fail validation. */ + if (memcmp(file_stat.m_filename, file_data_array.m_p, local_header_filename_len) != 0) + { + mz_zip_set_error(pZip, MZ_ZIP_VALIDATION_FAILED); + goto handle_failure; + } + } + + if ((local_header_extra_len) && ((local_header_comp_size == MZ_UINT32_MAX) || (local_header_uncomp_size == MZ_UINT32_MAX))) + { + mz_uint32 extra_size_remaining = local_header_extra_len; + const mz_uint8 *pExtra_data = (const mz_uint8 *)file_data_array.m_p; + + if (pZip->m_pRead(pZip->m_pIO_opaque, local_header_ofs + MZ_ZIP_LOCAL_DIR_HEADER_SIZE + local_header_filename_len, file_data_array.m_p, local_header_extra_len) != local_header_extra_len) + { + mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + goto handle_failure; + } + + do + { + mz_uint32 field_id, field_data_size, field_total_size; + + if (extra_size_remaining < (sizeof(mz_uint16) * 2)) + { + mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + goto handle_failure; + } + + field_id = MZ_READ_LE16(pExtra_data); + field_data_size = MZ_READ_LE16(pExtra_data + sizeof(mz_uint16)); + field_total_size = field_data_size + sizeof(mz_uint16) * 2; + + if (field_total_size > extra_size_remaining) + { + mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + goto handle_failure; + } + + if (field_id == MZ_ZIP64_EXTENDED_INFORMATION_FIELD_HEADER_ID) + { + const mz_uint8 *pSrc_field_data = pExtra_data + sizeof(mz_uint32); + + if (field_data_size < sizeof(mz_uint64) * 2) + { + mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + goto handle_failure; + } + + local_header_uncomp_size = MZ_READ_LE64(pSrc_field_data); + local_header_comp_size = MZ_READ_LE64(pSrc_field_data + sizeof(mz_uint64)); + + found_zip64_ext_data_in_ldir = MZ_TRUE; + break; + } + + pExtra_data += field_total_size; + extra_size_remaining -= field_total_size; + } while (extra_size_remaining); + } + + /* TODO: parse local header extra data when local_header_comp_size is 0xFFFFFFFF! (big_descriptor.zip) */ + /* I've seen zips in the wild with the data descriptor bit set, but proper local header values and bogus data descriptors */ + if ((has_data_descriptor) && (!local_header_comp_size) && (!local_header_crc32)) + { + mz_uint8 descriptor_buf[32]; + mz_bool has_id; + const mz_uint8 *pSrc; + mz_uint32 file_crc32; + mz_uint64 comp_size = 0, uncomp_size = 0; + + mz_uint32 num_descriptor_uint32s = ((pState->m_zip64) || (found_zip64_ext_data_in_ldir)) ? 6 : 4; + + if (pZip->m_pRead(pZip->m_pIO_opaque, local_header_ofs + MZ_ZIP_LOCAL_DIR_HEADER_SIZE + local_header_filename_len + local_header_extra_len + file_stat.m_comp_size, descriptor_buf, sizeof(mz_uint32) * num_descriptor_uint32s) != (sizeof(mz_uint32) * num_descriptor_uint32s)) + { + mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + goto handle_failure; + } + + has_id = (MZ_READ_LE32(descriptor_buf) == MZ_ZIP_DATA_DESCRIPTOR_ID); + pSrc = has_id ? (descriptor_buf + sizeof(mz_uint32)) : descriptor_buf; + + file_crc32 = MZ_READ_LE32(pSrc); + + if ((pState->m_zip64) || (found_zip64_ext_data_in_ldir)) + { + comp_size = MZ_READ_LE64(pSrc + sizeof(mz_uint32)); + uncomp_size = MZ_READ_LE64(pSrc + sizeof(mz_uint32) + sizeof(mz_uint64)); + } + else + { + comp_size = MZ_READ_LE32(pSrc + sizeof(mz_uint32)); + uncomp_size = MZ_READ_LE32(pSrc + sizeof(mz_uint32) + sizeof(mz_uint32)); + } + + if ((file_crc32 != file_stat.m_crc32) || (comp_size != file_stat.m_comp_size) || (uncomp_size != file_stat.m_uncomp_size)) + { + mz_zip_set_error(pZip, MZ_ZIP_VALIDATION_FAILED); + goto handle_failure; + } + } + else + { + if ((local_header_crc32 != file_stat.m_crc32) || (local_header_comp_size != file_stat.m_comp_size) || (local_header_uncomp_size != file_stat.m_uncomp_size)) + { + mz_zip_set_error(pZip, MZ_ZIP_VALIDATION_FAILED); + goto handle_failure; + } + } + + mz_zip_array_clear(pZip, &file_data_array); + + if ((flags & MZ_ZIP_FLAG_VALIDATE_HEADERS_ONLY) == 0) + { + if (!mz_zip_reader_extract_to_callback(pZip, file_index, mz_zip_compute_crc32_callback, &uncomp_crc32, 0)) + return MZ_FALSE; + + /* 1 more check to be sure, although the extract checks too. */ + if (uncomp_crc32 != file_stat.m_crc32) + { + mz_zip_set_error(pZip, MZ_ZIP_VALIDATION_FAILED); + return MZ_FALSE; + } + } + + return MZ_TRUE; + + handle_failure: + mz_zip_array_clear(pZip, &file_data_array); + return MZ_FALSE; + } + + mz_bool mz_zip_validate_archive(mz_zip_archive *pZip, mz_uint flags) + { + mz_zip_internal_state *pState; + mz_uint32 i; + + if ((!pZip) || (!pZip->m_pState) || (!pZip->m_pAlloc) || (!pZip->m_pFree) || (!pZip->m_pRead)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + pState = pZip->m_pState; + + /* Basic sanity checks */ + if (!pState->m_zip64) + { + if (pZip->m_total_files > MZ_UINT16_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); + + if (pZip->m_archive_size > MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); + } + else + { + if (pState->m_central_dir.m_size >= MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); + } + + for (i = 0; i < pZip->m_total_files; i++) + { + if (MZ_ZIP_FLAG_VALIDATE_LOCATE_FILE_FLAG & flags) + { + mz_uint32 found_index; + mz_zip_archive_file_stat stat; + + if (!mz_zip_reader_file_stat(pZip, i, &stat)) + return MZ_FALSE; + + if (!mz_zip_reader_locate_file_v2(pZip, stat.m_filename, NULL, 0, &found_index)) + return MZ_FALSE; + + /* This check can fail if there are duplicate filenames in the archive (which we don't check for when writing - that's up to the user) */ + if (found_index != i) + return mz_zip_set_error(pZip, MZ_ZIP_VALIDATION_FAILED); + } + + if (!mz_zip_validate_file(pZip, i, flags)) + return MZ_FALSE; + } + + return MZ_TRUE; + } + + mz_bool mz_zip_validate_mem_archive(const void *pMem, size_t size, mz_uint flags, mz_zip_error *pErr) + { + mz_bool success = MZ_TRUE; + mz_zip_archive zip; + mz_zip_error actual_err = MZ_ZIP_NO_ERROR; + + if ((!pMem) || (!size)) + { + if (pErr) + *pErr = MZ_ZIP_INVALID_PARAMETER; + return MZ_FALSE; + } + + mz_zip_zero_struct(&zip); + + if (!mz_zip_reader_init_mem(&zip, pMem, size, flags)) + { + if (pErr) + *pErr = zip.m_last_error; + return MZ_FALSE; + } + + if (!mz_zip_validate_archive(&zip, flags)) + { + actual_err = zip.m_last_error; + success = MZ_FALSE; + } + + if (!mz_zip_reader_end_internal(&zip, success)) + { + if (!actual_err) + actual_err = zip.m_last_error; + success = MZ_FALSE; + } + + if (pErr) + *pErr = actual_err; + + return success; + } + +#ifndef MINIZ_NO_STDIO + mz_bool mz_zip_validate_file_archive(const char *pFilename, mz_uint flags, mz_zip_error *pErr) + { + mz_bool success = MZ_TRUE; + mz_zip_archive zip; + mz_zip_error actual_err = MZ_ZIP_NO_ERROR; + + if (!pFilename) + { + if (pErr) + *pErr = MZ_ZIP_INVALID_PARAMETER; + return MZ_FALSE; + } + + mz_zip_zero_struct(&zip); + + if (!mz_zip_reader_init_file_v2(&zip, pFilename, flags, 0, 0)) + { + if (pErr) + *pErr = zip.m_last_error; + return MZ_FALSE; + } + + if (!mz_zip_validate_archive(&zip, flags)) + { + actual_err = zip.m_last_error; + success = MZ_FALSE; + } + + if (!mz_zip_reader_end_internal(&zip, success)) + { + if (!actual_err) + actual_err = zip.m_last_error; + success = MZ_FALSE; + } + + if (pErr) + *pErr = actual_err; + + return success; + } +#endif /* #ifndef MINIZ_NO_STDIO */ + + /* ------------------- .ZIP archive writing */ + +#ifndef MINIZ_NO_ARCHIVE_WRITING_APIS + + static MZ_FORCEINLINE void mz_write_le16(mz_uint8 *p, mz_uint16 v) + { + p[0] = (mz_uint8)v; + p[1] = (mz_uint8)(v >> 8); + } + static MZ_FORCEINLINE void mz_write_le32(mz_uint8 *p, mz_uint32 v) + { + p[0] = (mz_uint8)v; + p[1] = (mz_uint8)(v >> 8); + p[2] = (mz_uint8)(v >> 16); + p[3] = (mz_uint8)(v >> 24); + } + static MZ_FORCEINLINE void mz_write_le64(mz_uint8 *p, mz_uint64 v) + { + mz_write_le32(p, (mz_uint32)v); + mz_write_le32(p + sizeof(mz_uint32), (mz_uint32)(v >> 32)); + } + +#define MZ_WRITE_LE16(p, v) mz_write_le16((mz_uint8 *)(p), (mz_uint16)(v)) +#define MZ_WRITE_LE32(p, v) mz_write_le32((mz_uint8 *)(p), (mz_uint32)(v)) +#define MZ_WRITE_LE64(p, v) mz_write_le64((mz_uint8 *)(p), (mz_uint64)(v)) + + static size_t mz_zip_heap_write_func(void *pOpaque, mz_uint64 file_ofs, const void *pBuf, size_t n) + { + mz_zip_archive *pZip = (mz_zip_archive *)pOpaque; + mz_zip_internal_state *pState = pZip->m_pState; + mz_uint64 new_size = MZ_MAX(file_ofs + n, pState->m_mem_size); + + if (!n) + return 0; + + /* An allocation this big is likely to just fail on 32-bit systems, so don't even go there. */ + if ((sizeof(size_t) == sizeof(mz_uint32)) && (new_size > 0x7FFFFFFF)) + { + mz_zip_set_error(pZip, MZ_ZIP_FILE_TOO_LARGE); + return 0; + } + + if (new_size > pState->m_mem_capacity) + { + void *pNew_block; + size_t new_capacity = MZ_MAX(64, pState->m_mem_capacity); + + while (new_capacity < new_size) + new_capacity *= 2; + + if (NULL == (pNew_block = pZip->m_pRealloc(pZip->m_pAlloc_opaque, pState->m_pMem, 1, new_capacity))) + { + mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + return 0; + } + + pState->m_pMem = pNew_block; + pState->m_mem_capacity = new_capacity; + } + memcpy((mz_uint8 *)pState->m_pMem + file_ofs, pBuf, n); + pState->m_mem_size = (size_t)new_size; + return n; + } + + static mz_bool mz_zip_writer_end_internal(mz_zip_archive *pZip, mz_bool set_last_error) + { + mz_zip_internal_state *pState; + mz_bool status = MZ_TRUE; + + if ((!pZip) || (!pZip->m_pState) || (!pZip->m_pAlloc) || (!pZip->m_pFree) || ((pZip->m_zip_mode != MZ_ZIP_MODE_WRITING) && (pZip->m_zip_mode != MZ_ZIP_MODE_WRITING_HAS_BEEN_FINALIZED))) + { + if (set_last_error) + mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + return MZ_FALSE; + } + + pState = pZip->m_pState; + pZip->m_pState = NULL; + mz_zip_array_clear(pZip, &pState->m_central_dir); + mz_zip_array_clear(pZip, &pState->m_central_dir_offsets); + mz_zip_array_clear(pZip, &pState->m_sorted_central_dir_offsets); + +#ifndef MINIZ_NO_STDIO + if (pState->m_pFile) + { + if (pZip->m_zip_type == MZ_ZIP_TYPE_FILE) + { + if (MZ_FCLOSE(pState->m_pFile) == EOF) + { + if (set_last_error) + mz_zip_set_error(pZip, MZ_ZIP_FILE_CLOSE_FAILED); + status = MZ_FALSE; + } + } + + pState->m_pFile = NULL; + } +#endif /* #ifndef MINIZ_NO_STDIO */ + + if ((pZip->m_pWrite == mz_zip_heap_write_func) && (pState->m_pMem)) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pState->m_pMem); + pState->m_pMem = NULL; + } + + pZip->m_pFree(pZip->m_pAlloc_opaque, pState); + pZip->m_zip_mode = MZ_ZIP_MODE_INVALID; + return status; + } + + mz_bool mz_zip_writer_init_v2(mz_zip_archive *pZip, mz_uint64 existing_size, mz_uint flags) + { + mz_bool zip64 = (flags & MZ_ZIP_FLAG_WRITE_ZIP64) != 0; + + if ((!pZip) || (pZip->m_pState) || (!pZip->m_pWrite) || (pZip->m_zip_mode != MZ_ZIP_MODE_INVALID)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (flags & MZ_ZIP_FLAG_WRITE_ALLOW_READING) + { + if (!pZip->m_pRead) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + } + + if (pZip->m_file_offset_alignment) + { + /* Ensure user specified file offset alignment is a power of 2. */ + if (pZip->m_file_offset_alignment & (pZip->m_file_offset_alignment - 1)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + } + + if (!pZip->m_pAlloc) + pZip->m_pAlloc = miniz_def_alloc_func; + if (!pZip->m_pFree) + pZip->m_pFree = miniz_def_free_func; + if (!pZip->m_pRealloc) + pZip->m_pRealloc = miniz_def_realloc_func; + + pZip->m_archive_size = existing_size; + pZip->m_central_directory_file_ofs = 0; + pZip->m_total_files = 0; + + if (NULL == (pZip->m_pState = (mz_zip_internal_state *)pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, sizeof(mz_zip_internal_state)))) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + + memset(pZip->m_pState, 0, sizeof(mz_zip_internal_state)); + + MZ_ZIP_ARRAY_SET_ELEMENT_SIZE(&pZip->m_pState->m_central_dir, sizeof(mz_uint8)); + MZ_ZIP_ARRAY_SET_ELEMENT_SIZE(&pZip->m_pState->m_central_dir_offsets, sizeof(mz_uint32)); + MZ_ZIP_ARRAY_SET_ELEMENT_SIZE(&pZip->m_pState->m_sorted_central_dir_offsets, sizeof(mz_uint32)); + + pZip->m_pState->m_zip64 = zip64; + pZip->m_pState->m_zip64_has_extended_info_fields = zip64; + + pZip->m_zip_type = MZ_ZIP_TYPE_USER; + pZip->m_zip_mode = MZ_ZIP_MODE_WRITING; + + return MZ_TRUE; + } + + mz_bool mz_zip_writer_init(mz_zip_archive *pZip, mz_uint64 existing_size) + { + return mz_zip_writer_init_v2(pZip, existing_size, 0); + } + + mz_bool mz_zip_writer_init_heap_v2(mz_zip_archive *pZip, size_t size_to_reserve_at_beginning, size_t initial_allocation_size, mz_uint flags) + { + pZip->m_pWrite = mz_zip_heap_write_func; + pZip->m_pNeeds_keepalive = NULL; + + if (flags & MZ_ZIP_FLAG_WRITE_ALLOW_READING) + pZip->m_pRead = mz_zip_mem_read_func; + + pZip->m_pIO_opaque = pZip; + + if (!mz_zip_writer_init_v2(pZip, size_to_reserve_at_beginning, flags)) + return MZ_FALSE; + + pZip->m_zip_type = MZ_ZIP_TYPE_HEAP; + + if (0 != (initial_allocation_size = MZ_MAX(initial_allocation_size, size_to_reserve_at_beginning))) + { + if (NULL == (pZip->m_pState->m_pMem = pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, initial_allocation_size))) + { + mz_zip_writer_end_internal(pZip, MZ_FALSE); + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + pZip->m_pState->m_mem_capacity = initial_allocation_size; + } + + return MZ_TRUE; + } + + mz_bool mz_zip_writer_init_heap(mz_zip_archive *pZip, size_t size_to_reserve_at_beginning, size_t initial_allocation_size) + { + return mz_zip_writer_init_heap_v2(pZip, size_to_reserve_at_beginning, initial_allocation_size, 0); + } + +#ifndef MINIZ_NO_STDIO + static size_t mz_zip_file_write_func(void *pOpaque, mz_uint64 file_ofs, const void *pBuf, size_t n) + { + mz_zip_archive *pZip = (mz_zip_archive *)pOpaque; + mz_int64 cur_ofs = MZ_FTELL64(pZip->m_pState->m_pFile); + + file_ofs += pZip->m_pState->m_file_archive_start_ofs; + + if (((mz_int64)file_ofs < 0) || (((cur_ofs != (mz_int64)file_ofs)) && (MZ_FSEEK64(pZip->m_pState->m_pFile, (mz_int64)file_ofs, SEEK_SET)))) + { + mz_zip_set_error(pZip, MZ_ZIP_FILE_SEEK_FAILED); + return 0; + } + + return MZ_FWRITE(pBuf, 1, n, pZip->m_pState->m_pFile); + } + + mz_bool mz_zip_writer_init_file(mz_zip_archive *pZip, const char *pFilename, mz_uint64 size_to_reserve_at_beginning) + { + return mz_zip_writer_init_file_v2(pZip, pFilename, size_to_reserve_at_beginning, 0); + } + + mz_bool mz_zip_writer_init_file_v2(mz_zip_archive *pZip, const char *pFilename, mz_uint64 size_to_reserve_at_beginning, mz_uint flags) + { + MZ_FILE *pFile; + + pZip->m_pWrite = mz_zip_file_write_func; + pZip->m_pNeeds_keepalive = NULL; + + if (flags & MZ_ZIP_FLAG_WRITE_ALLOW_READING) + pZip->m_pRead = mz_zip_file_read_func; + + pZip->m_pIO_opaque = pZip; + + if (!mz_zip_writer_init_v2(pZip, size_to_reserve_at_beginning, flags)) + return MZ_FALSE; + + if (NULL == (pFile = MZ_FOPEN(pFilename, (flags & MZ_ZIP_FLAG_WRITE_ALLOW_READING) ? "w+b" : "wb"))) + { + mz_zip_writer_end(pZip); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_OPEN_FAILED); + } + + pZip->m_pState->m_pFile = pFile; + pZip->m_zip_type = MZ_ZIP_TYPE_FILE; + + if (size_to_reserve_at_beginning) + { + mz_uint64 cur_ofs = 0; + char buf[4096]; + + MZ_CLEAR_ARR(buf); + + do + { + size_t n = (size_t)MZ_MIN(sizeof(buf), size_to_reserve_at_beginning); + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_ofs, buf, n) != n) + { + mz_zip_writer_end(pZip); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + } + cur_ofs += n; + size_to_reserve_at_beginning -= n; + } while (size_to_reserve_at_beginning); + } + + return MZ_TRUE; + } + + mz_bool mz_zip_writer_init_cfile(mz_zip_archive *pZip, MZ_FILE *pFile, mz_uint flags) + { + pZip->m_pWrite = mz_zip_file_write_func; + pZip->m_pNeeds_keepalive = NULL; + + if (flags & MZ_ZIP_FLAG_WRITE_ALLOW_READING) + pZip->m_pRead = mz_zip_file_read_func; + + pZip->m_pIO_opaque = pZip; + + if (!mz_zip_writer_init_v2(pZip, 0, flags)) + return MZ_FALSE; + + pZip->m_pState->m_pFile = pFile; + pZip->m_pState->m_file_archive_start_ofs = MZ_FTELL64(pZip->m_pState->m_pFile); + pZip->m_zip_type = MZ_ZIP_TYPE_CFILE; + + return MZ_TRUE; + } +#endif /* #ifndef MINIZ_NO_STDIO */ + + mz_bool mz_zip_writer_init_from_reader_v2(mz_zip_archive *pZip, const char *pFilename, mz_uint flags) + { + mz_zip_internal_state *pState; + + if ((!pZip) || (!pZip->m_pState) || (pZip->m_zip_mode != MZ_ZIP_MODE_READING)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (flags & MZ_ZIP_FLAG_WRITE_ZIP64) + { + /* We don't support converting a non-zip64 file to zip64 - this seems like more trouble than it's worth. (What about the existing 32-bit data descriptors that could follow the compressed data?) */ + if (!pZip->m_pState->m_zip64) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + } + + /* No sense in trying to write to an archive that's already at the support max size */ + if (pZip->m_pState->m_zip64) + { + if (pZip->m_total_files == MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); + } + else + { + if (pZip->m_total_files == MZ_UINT16_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); + + if ((pZip->m_archive_size + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + MZ_ZIP_LOCAL_DIR_HEADER_SIZE) > MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_TOO_LARGE); + } + + pState = pZip->m_pState; + + if (pState->m_pFile) + { +#ifdef MINIZ_NO_STDIO + (void)pFilename; + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); +#else + if (pZip->m_pIO_opaque != pZip) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (pZip->m_zip_type == MZ_ZIP_TYPE_FILE && + !(flags & MZ_ZIP_FLAG_READ_ALLOW_WRITING) ) + { + if (!pFilename) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + /* Archive is being read from stdio and was originally opened only for reading. Try to reopen as writable. */ + if (NULL == (pState->m_pFile = MZ_FREOPEN(pFilename, "r+b", pState->m_pFile))) + { + /* The mz_zip_archive is now in a bogus state because pState->m_pFile is NULL, so just close it. */ + mz_zip_reader_end_internal(pZip, MZ_FALSE); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_OPEN_FAILED); + } + } + + pZip->m_pWrite = mz_zip_file_write_func; + pZip->m_pNeeds_keepalive = NULL; +#endif /* #ifdef MINIZ_NO_STDIO */ + } + else if (pState->m_pMem) + { + /* Archive lives in a memory block. Assume it's from the heap that we can resize using the realloc callback. */ + if (pZip->m_pIO_opaque != pZip) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + pState->m_mem_capacity = pState->m_mem_size; + pZip->m_pWrite = mz_zip_heap_write_func; + pZip->m_pNeeds_keepalive = NULL; + } + /* Archive is being read via a user provided read function - make sure the user has specified a write function too. */ + else if (!pZip->m_pWrite) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + /* Start writing new files at the archive's current central directory location. */ + /* TODO: We could add a flag that lets the user start writing immediately AFTER the existing central dir - this would be safer. */ + pZip->m_archive_size = pZip->m_central_directory_file_ofs; + pZip->m_central_directory_file_ofs = 0; + + /* Clear the sorted central dir offsets, they aren't useful or maintained now. */ + /* Even though we're now in write mode, files can still be extracted and verified, but file locates will be slow. */ + /* TODO: We could easily maintain the sorted central directory offsets. */ + mz_zip_array_clear(pZip, &pZip->m_pState->m_sorted_central_dir_offsets); + + pZip->m_zip_mode = MZ_ZIP_MODE_WRITING; + + return MZ_TRUE; + } + + mz_bool mz_zip_writer_init_from_reader(mz_zip_archive *pZip, const char *pFilename) + { + return mz_zip_writer_init_from_reader_v2(pZip, pFilename, 0); + } + + /* TODO: pArchive_name is a terrible name here! */ + mz_bool mz_zip_writer_add_mem(mz_zip_archive *pZip, const char *pArchive_name, const void *pBuf, size_t buf_size, mz_uint level_and_flags) + { + return mz_zip_writer_add_mem_ex(pZip, pArchive_name, pBuf, buf_size, NULL, 0, level_and_flags, 0, 0); + } + + typedef struct + { + mz_zip_archive *m_pZip; + mz_uint64 m_cur_archive_file_ofs; + mz_uint64 m_comp_size; + } mz_zip_writer_add_state; + + static mz_bool mz_zip_writer_add_put_buf_callback(const void *pBuf, int len, void *pUser) + { + mz_zip_writer_add_state *pState = (mz_zip_writer_add_state *)pUser; + if ((int)pState->m_pZip->m_pWrite(pState->m_pZip->m_pIO_opaque, pState->m_cur_archive_file_ofs, pBuf, len) != len) + return MZ_FALSE; + + pState->m_cur_archive_file_ofs += len; + pState->m_comp_size += len; + return MZ_TRUE; + } + +#define MZ_ZIP64_MAX_LOCAL_EXTRA_FIELD_SIZE (sizeof(mz_uint16) * 2 + sizeof(mz_uint64) * 2) +#define MZ_ZIP64_MAX_CENTRAL_EXTRA_FIELD_SIZE (sizeof(mz_uint16) * 2 + sizeof(mz_uint64) * 3) + static mz_uint32 mz_zip_writer_create_zip64_extra_data(mz_uint8 *pBuf, mz_uint64 *pUncomp_size, mz_uint64 *pComp_size, mz_uint64 *pLocal_header_ofs) + { + mz_uint8 *pDst = pBuf; + mz_uint32 field_size = 0; + + MZ_WRITE_LE16(pDst + 0, MZ_ZIP64_EXTENDED_INFORMATION_FIELD_HEADER_ID); + MZ_WRITE_LE16(pDst + 2, 0); + pDst += sizeof(mz_uint16) * 2; + + if (pUncomp_size) + { + MZ_WRITE_LE64(pDst, *pUncomp_size); + pDst += sizeof(mz_uint64); + field_size += sizeof(mz_uint64); + } + + if (pComp_size) + { + MZ_WRITE_LE64(pDst, *pComp_size); + pDst += sizeof(mz_uint64); + field_size += sizeof(mz_uint64); + } + + if (pLocal_header_ofs) + { + MZ_WRITE_LE64(pDst, *pLocal_header_ofs); + pDst += sizeof(mz_uint64); + field_size += sizeof(mz_uint64); + } + + MZ_WRITE_LE16(pBuf + 2, field_size); + + return (mz_uint32)(pDst - pBuf); + } + + static mz_bool mz_zip_writer_create_local_dir_header(mz_zip_archive *pZip, mz_uint8 *pDst, mz_uint16 filename_size, mz_uint16 extra_size, mz_uint64 uncomp_size, mz_uint64 comp_size, mz_uint32 uncomp_crc32, mz_uint16 method, mz_uint16 bit_flags, mz_uint16 dos_time, mz_uint16 dos_date) + { + (void)pZip; + memset(pDst, 0, MZ_ZIP_LOCAL_DIR_HEADER_SIZE); + MZ_WRITE_LE32(pDst + MZ_ZIP_LDH_SIG_OFS, MZ_ZIP_LOCAL_DIR_HEADER_SIG); + MZ_WRITE_LE16(pDst + MZ_ZIP_LDH_VERSION_NEEDED_OFS, method ? 20 : 0); + MZ_WRITE_LE16(pDst + MZ_ZIP_LDH_BIT_FLAG_OFS, bit_flags); + MZ_WRITE_LE16(pDst + MZ_ZIP_LDH_METHOD_OFS, method); + MZ_WRITE_LE16(pDst + MZ_ZIP_LDH_FILE_TIME_OFS, dos_time); + MZ_WRITE_LE16(pDst + MZ_ZIP_LDH_FILE_DATE_OFS, dos_date); + MZ_WRITE_LE32(pDst + MZ_ZIP_LDH_CRC32_OFS, uncomp_crc32); + MZ_WRITE_LE32(pDst + MZ_ZIP_LDH_COMPRESSED_SIZE_OFS, MZ_MIN(comp_size, MZ_UINT32_MAX)); + MZ_WRITE_LE32(pDst + MZ_ZIP_LDH_DECOMPRESSED_SIZE_OFS, MZ_MIN(uncomp_size, MZ_UINT32_MAX)); + MZ_WRITE_LE16(pDst + MZ_ZIP_LDH_FILENAME_LEN_OFS, filename_size); + MZ_WRITE_LE16(pDst + MZ_ZIP_LDH_EXTRA_LEN_OFS, extra_size); + return MZ_TRUE; + } + + static mz_bool mz_zip_writer_create_central_dir_header(mz_zip_archive *pZip, mz_uint8 *pDst, + mz_uint16 filename_size, mz_uint16 extra_size, mz_uint16 comment_size, + mz_uint64 uncomp_size, mz_uint64 comp_size, mz_uint32 uncomp_crc32, + mz_uint16 method, mz_uint16 bit_flags, mz_uint16 dos_time, mz_uint16 dos_date, + mz_uint64 local_header_ofs, mz_uint32 ext_attributes) + { + (void)pZip; + memset(pDst, 0, MZ_ZIP_CENTRAL_DIR_HEADER_SIZE); + MZ_WRITE_LE32(pDst + MZ_ZIP_CDH_SIG_OFS, MZ_ZIP_CENTRAL_DIR_HEADER_SIG); + MZ_WRITE_LE16(pDst + MZ_ZIP_CDH_VERSION_NEEDED_OFS, method ? 20 : 0); + MZ_WRITE_LE16(pDst + MZ_ZIP_CDH_BIT_FLAG_OFS, bit_flags); + MZ_WRITE_LE16(pDst + MZ_ZIP_CDH_METHOD_OFS, method); + MZ_WRITE_LE16(pDst + MZ_ZIP_CDH_FILE_TIME_OFS, dos_time); + MZ_WRITE_LE16(pDst + MZ_ZIP_CDH_FILE_DATE_OFS, dos_date); + MZ_WRITE_LE32(pDst + MZ_ZIP_CDH_CRC32_OFS, uncomp_crc32); + MZ_WRITE_LE32(pDst + MZ_ZIP_CDH_COMPRESSED_SIZE_OFS, MZ_MIN(comp_size, MZ_UINT32_MAX)); + MZ_WRITE_LE32(pDst + MZ_ZIP_CDH_DECOMPRESSED_SIZE_OFS, MZ_MIN(uncomp_size, MZ_UINT32_MAX)); + MZ_WRITE_LE16(pDst + MZ_ZIP_CDH_FILENAME_LEN_OFS, filename_size); + MZ_WRITE_LE16(pDst + MZ_ZIP_CDH_EXTRA_LEN_OFS, extra_size); + MZ_WRITE_LE16(pDst + MZ_ZIP_CDH_COMMENT_LEN_OFS, comment_size); + MZ_WRITE_LE32(pDst + MZ_ZIP_CDH_EXTERNAL_ATTR_OFS, ext_attributes); + MZ_WRITE_LE32(pDst + MZ_ZIP_CDH_LOCAL_HEADER_OFS, MZ_MIN(local_header_ofs, MZ_UINT32_MAX)); + return MZ_TRUE; + } + + static mz_bool mz_zip_writer_add_to_central_dir(mz_zip_archive *pZip, const char *pFilename, mz_uint16 filename_size, + const void *pExtra, mz_uint16 extra_size, const void *pComment, mz_uint16 comment_size, + mz_uint64 uncomp_size, mz_uint64 comp_size, mz_uint32 uncomp_crc32, + mz_uint16 method, mz_uint16 bit_flags, mz_uint16 dos_time, mz_uint16 dos_date, + mz_uint64 local_header_ofs, mz_uint32 ext_attributes, + const char *user_extra_data, mz_uint user_extra_data_len) + { + mz_zip_internal_state *pState = pZip->m_pState; + mz_uint32 central_dir_ofs = (mz_uint32)pState->m_central_dir.m_size; + size_t orig_central_dir_size = pState->m_central_dir.m_size; + mz_uint8 central_dir_header[MZ_ZIP_CENTRAL_DIR_HEADER_SIZE]; + + if (!pZip->m_pState->m_zip64) + { + if (local_header_ofs > 0xFFFFFFFF) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_TOO_LARGE); + } + + /* miniz doesn't support central dirs >= MZ_UINT32_MAX bytes yet */ + if (((mz_uint64)pState->m_central_dir.m_size + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + filename_size + extra_size + user_extra_data_len + comment_size) >= MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_CDIR_SIZE); + + if (!mz_zip_writer_create_central_dir_header(pZip, central_dir_header, filename_size, (mz_uint16)(extra_size + user_extra_data_len), comment_size, uncomp_size, comp_size, uncomp_crc32, method, bit_flags, dos_time, dos_date, local_header_ofs, ext_attributes)) + return mz_zip_set_error(pZip, MZ_ZIP_INTERNAL_ERROR); + + if ((!mz_zip_array_push_back(pZip, &pState->m_central_dir, central_dir_header, MZ_ZIP_CENTRAL_DIR_HEADER_SIZE)) || + (!mz_zip_array_push_back(pZip, &pState->m_central_dir, pFilename, filename_size)) || + (!mz_zip_array_push_back(pZip, &pState->m_central_dir, pExtra, extra_size)) || + (!mz_zip_array_push_back(pZip, &pState->m_central_dir, user_extra_data, user_extra_data_len)) || + (!mz_zip_array_push_back(pZip, &pState->m_central_dir, pComment, comment_size)) || + (!mz_zip_array_push_back(pZip, &pState->m_central_dir_offsets, ¢ral_dir_ofs, 1))) + { + /* Try to resize the central directory array back into its original state. */ + mz_zip_array_resize(pZip, &pState->m_central_dir, orig_central_dir_size, MZ_FALSE); + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + return MZ_TRUE; + } + + static mz_bool mz_zip_writer_validate_archive_name(const char *pArchive_name) + { + /* Basic ZIP archive filename validity checks: Valid filenames cannot start with a forward slash, cannot contain a drive letter, and cannot use DOS-style backward slashes. */ + if (*pArchive_name == '/') + return MZ_FALSE; + + /* Making sure the name does not contain drive letters or DOS style backward slashes is the responsibility of the program using miniz*/ + + return MZ_TRUE; + } + + static mz_uint mz_zip_writer_compute_padding_needed_for_file_alignment(mz_zip_archive *pZip) + { + mz_uint32 n; + if (!pZip->m_file_offset_alignment) + return 0; + n = (mz_uint32)(pZip->m_archive_size & (pZip->m_file_offset_alignment - 1)); + return (mz_uint)((pZip->m_file_offset_alignment - n) & (pZip->m_file_offset_alignment - 1)); + } + + static mz_bool mz_zip_writer_write_zeros(mz_zip_archive *pZip, mz_uint64 cur_file_ofs, mz_uint32 n) + { + char buf[4096]; + memset(buf, 0, MZ_MIN(sizeof(buf), n)); + while (n) + { + mz_uint32 s = MZ_MIN(sizeof(buf), n); + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_file_ofs, buf, s) != s) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + cur_file_ofs += s; + n -= s; + } + return MZ_TRUE; + } + + mz_bool mz_zip_writer_add_mem_ex(mz_zip_archive *pZip, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, + mz_uint64 uncomp_size, mz_uint32 uncomp_crc32) + { + return mz_zip_writer_add_mem_ex_v2(pZip, pArchive_name, pBuf, buf_size, pComment, comment_size, level_and_flags, uncomp_size, uncomp_crc32, NULL, NULL, 0, NULL, 0); + } + + mz_bool mz_zip_writer_add_mem_ex_v2(mz_zip_archive *pZip, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, + mz_uint level_and_flags, mz_uint64 uncomp_size, mz_uint32 uncomp_crc32, MZ_TIME_T *last_modified, + const char *user_extra_data, mz_uint user_extra_data_len, const char *user_extra_data_central, mz_uint user_extra_data_central_len) + { + mz_uint16 method = 0, dos_time = 0, dos_date = 0; + mz_uint level, ext_attributes = 0, num_alignment_padding_bytes; + mz_uint64 local_dir_header_ofs = pZip->m_archive_size, cur_archive_file_ofs = pZip->m_archive_size, comp_size = 0; + size_t archive_name_size; + mz_uint8 local_dir_header[MZ_ZIP_LOCAL_DIR_HEADER_SIZE]; + tdefl_compressor *pComp = NULL; + mz_bool store_data_uncompressed; + mz_zip_internal_state *pState; + mz_uint8 *pExtra_data = NULL; + mz_uint32 extra_size = 0; + mz_uint8 extra_data[MZ_ZIP64_MAX_CENTRAL_EXTRA_FIELD_SIZE]; + mz_uint16 bit_flags = 0; + + if ((int)level_and_flags < 0) + level_and_flags = MZ_DEFAULT_LEVEL; + + if (uncomp_size || (buf_size && !(level_and_flags & MZ_ZIP_FLAG_COMPRESSED_DATA))) + bit_flags |= MZ_ZIP_LDH_BIT_FLAG_HAS_LOCATOR; + + if (!(level_and_flags & MZ_ZIP_FLAG_ASCII_FILENAME)) + bit_flags |= MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_UTF8; + + level = level_and_flags & 0xF; + store_data_uncompressed = ((!level) || (level_and_flags & MZ_ZIP_FLAG_COMPRESSED_DATA)); + + if ((!pZip) || (!pZip->m_pState) || (pZip->m_zip_mode != MZ_ZIP_MODE_WRITING) || ((buf_size) && (!pBuf)) || (!pArchive_name) || ((comment_size) && (!pComment)) || (level > MZ_UBER_COMPRESSION)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + pState = pZip->m_pState; + + if (pState->m_zip64) + { + if (pZip->m_total_files == MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); + } + else + { + if (pZip->m_total_files == MZ_UINT16_MAX) + { + pState->m_zip64 = MZ_TRUE; + /*return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); */ + } + if (((mz_uint64)buf_size > 0xFFFFFFFF) || (uncomp_size > 0xFFFFFFFF)) + { + pState->m_zip64 = MZ_TRUE; + /*return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); */ + } + } + + if ((!(level_and_flags & MZ_ZIP_FLAG_COMPRESSED_DATA)) && (uncomp_size)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (!mz_zip_writer_validate_archive_name(pArchive_name)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_FILENAME); + +#ifndef MINIZ_NO_TIME + if (last_modified != NULL) + { + mz_zip_time_t_to_dos_time(*last_modified, &dos_time, &dos_date); + } + else + { + MZ_TIME_T cur_time; + time(&cur_time); + mz_zip_time_t_to_dos_time(cur_time, &dos_time, &dos_date); + } +#else + (void)last_modified; +#endif /* #ifndef MINIZ_NO_TIME */ + + if (!(level_and_flags & MZ_ZIP_FLAG_COMPRESSED_DATA)) + { + uncomp_crc32 = (mz_uint32)mz_crc32(MZ_CRC32_INIT, (const mz_uint8 *)pBuf, buf_size); + uncomp_size = buf_size; + if (uncomp_size <= 3) + { + level = 0; + store_data_uncompressed = MZ_TRUE; + } + } + + archive_name_size = strlen(pArchive_name); + if (archive_name_size > MZ_UINT16_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_FILENAME); + + num_alignment_padding_bytes = mz_zip_writer_compute_padding_needed_for_file_alignment(pZip); + + /* miniz doesn't support central dirs >= MZ_UINT32_MAX bytes yet */ + if (((mz_uint64)pState->m_central_dir.m_size + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + archive_name_size + MZ_ZIP64_MAX_CENTRAL_EXTRA_FIELD_SIZE + comment_size) >= MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_CDIR_SIZE); + + if (!pState->m_zip64) + { + /* Bail early if the archive would obviously become too large */ + if ((pZip->m_archive_size + num_alignment_padding_bytes + MZ_ZIP_LOCAL_DIR_HEADER_SIZE + archive_name_size + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + archive_name_size + comment_size + user_extra_data_len + + pState->m_central_dir.m_size + MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE + user_extra_data_central_len + MZ_ZIP_DATA_DESCRIPTER_SIZE32) > 0xFFFFFFFF) + { + pState->m_zip64 = MZ_TRUE; + /*return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); */ + } + } + + if ((archive_name_size) && (pArchive_name[archive_name_size - 1] == '/')) + { + /* Set DOS Subdirectory attribute bit. */ + ext_attributes |= MZ_ZIP_DOS_DIR_ATTRIBUTE_BITFLAG; + + /* Subdirectories cannot contain data. */ + if ((buf_size) || (uncomp_size)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + } + + /* Try to do any allocations before writing to the archive, so if an allocation fails the file remains unmodified. (A good idea if we're doing an in-place modification.) */ + if ((!mz_zip_array_ensure_room(pZip, &pState->m_central_dir, MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + archive_name_size + comment_size + (pState->m_zip64 ? MZ_ZIP64_MAX_CENTRAL_EXTRA_FIELD_SIZE : 0))) || (!mz_zip_array_ensure_room(pZip, &pState->m_central_dir_offsets, 1))) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + + if ((!store_data_uncompressed) && (buf_size)) + { + if (NULL == (pComp = (tdefl_compressor *)pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, sizeof(tdefl_compressor)))) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + if (!mz_zip_writer_write_zeros(pZip, cur_archive_file_ofs, num_alignment_padding_bytes)) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pComp); + return MZ_FALSE; + } + + local_dir_header_ofs += num_alignment_padding_bytes; + if (pZip->m_file_offset_alignment) + { + MZ_ASSERT((local_dir_header_ofs & (pZip->m_file_offset_alignment - 1)) == 0); + } + cur_archive_file_ofs += num_alignment_padding_bytes; + + MZ_CLEAR_ARR(local_dir_header); + + if (!store_data_uncompressed || (level_and_flags & MZ_ZIP_FLAG_COMPRESSED_DATA)) + { + method = MZ_DEFLATED; + } + + if (pState->m_zip64) + { + if (uncomp_size >= MZ_UINT32_MAX || local_dir_header_ofs >= MZ_UINT32_MAX) + { + pExtra_data = extra_data; + extra_size = mz_zip_writer_create_zip64_extra_data(extra_data, (uncomp_size >= MZ_UINT32_MAX) ? &uncomp_size : NULL, + (uncomp_size >= MZ_UINT32_MAX) ? &comp_size : NULL, (local_dir_header_ofs >= MZ_UINT32_MAX) ? &local_dir_header_ofs : NULL); + } + + if (!mz_zip_writer_create_local_dir_header(pZip, local_dir_header, (mz_uint16)archive_name_size, (mz_uint16)(extra_size + user_extra_data_len), 0, 0, 0, method, bit_flags, dos_time, dos_date)) + return mz_zip_set_error(pZip, MZ_ZIP_INTERNAL_ERROR); + + if (pZip->m_pWrite(pZip->m_pIO_opaque, local_dir_header_ofs, local_dir_header, sizeof(local_dir_header)) != sizeof(local_dir_header)) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + cur_archive_file_ofs += sizeof(local_dir_header); + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, pArchive_name, archive_name_size) != archive_name_size) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pComp); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + } + cur_archive_file_ofs += archive_name_size; + + if (pExtra_data != NULL) + { + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, extra_data, extra_size) != extra_size) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + cur_archive_file_ofs += extra_size; + } + } + else + { + if ((comp_size > MZ_UINT32_MAX) || (cur_archive_file_ofs > MZ_UINT32_MAX)) + return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); + if (!mz_zip_writer_create_local_dir_header(pZip, local_dir_header, (mz_uint16)archive_name_size, (mz_uint16)user_extra_data_len, 0, 0, 0, method, bit_flags, dos_time, dos_date)) + return mz_zip_set_error(pZip, MZ_ZIP_INTERNAL_ERROR); + + if (pZip->m_pWrite(pZip->m_pIO_opaque, local_dir_header_ofs, local_dir_header, sizeof(local_dir_header)) != sizeof(local_dir_header)) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + cur_archive_file_ofs += sizeof(local_dir_header); + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, pArchive_name, archive_name_size) != archive_name_size) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pComp); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + } + cur_archive_file_ofs += archive_name_size; + } + + if (user_extra_data_len > 0) + { + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, user_extra_data, user_extra_data_len) != user_extra_data_len) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + cur_archive_file_ofs += user_extra_data_len; + } + + if (store_data_uncompressed) + { + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, pBuf, buf_size) != buf_size) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pComp); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + } + + cur_archive_file_ofs += buf_size; + comp_size = buf_size; + } + else if (buf_size) + { + mz_zip_writer_add_state state; + + state.m_pZip = pZip; + state.m_cur_archive_file_ofs = cur_archive_file_ofs; + state.m_comp_size = 0; + + if ((tdefl_init(pComp, mz_zip_writer_add_put_buf_callback, &state, tdefl_create_comp_flags_from_zip_params(level, -15, MZ_DEFAULT_STRATEGY)) != TDEFL_STATUS_OKAY) || + (tdefl_compress_buffer(pComp, pBuf, buf_size, TDEFL_FINISH) != TDEFL_STATUS_DONE)) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pComp); + return mz_zip_set_error(pZip, MZ_ZIP_COMPRESSION_FAILED); + } + + comp_size = state.m_comp_size; + cur_archive_file_ofs = state.m_cur_archive_file_ofs; + } + + pZip->m_pFree(pZip->m_pAlloc_opaque, pComp); + pComp = NULL; + + if (uncomp_size) + { + mz_uint8 local_dir_footer[MZ_ZIP_DATA_DESCRIPTER_SIZE64]; + mz_uint32 local_dir_footer_size = MZ_ZIP_DATA_DESCRIPTER_SIZE32; + + MZ_ASSERT(bit_flags & MZ_ZIP_LDH_BIT_FLAG_HAS_LOCATOR); + + MZ_WRITE_LE32(local_dir_footer + 0, MZ_ZIP_DATA_DESCRIPTOR_ID); + MZ_WRITE_LE32(local_dir_footer + 4, uncomp_crc32); + if (pExtra_data == NULL) + { + if (comp_size > MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); + + MZ_WRITE_LE32(local_dir_footer + 8, comp_size); + MZ_WRITE_LE32(local_dir_footer + 12, uncomp_size); + } + else + { + MZ_WRITE_LE64(local_dir_footer + 8, comp_size); + MZ_WRITE_LE64(local_dir_footer + 16, uncomp_size); + local_dir_footer_size = MZ_ZIP_DATA_DESCRIPTER_SIZE64; + } + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, local_dir_footer, local_dir_footer_size) != local_dir_footer_size) + return MZ_FALSE; + + cur_archive_file_ofs += local_dir_footer_size; + } + + if (pExtra_data != NULL) + { + extra_size = mz_zip_writer_create_zip64_extra_data(extra_data, (uncomp_size >= MZ_UINT32_MAX) ? &uncomp_size : NULL, + (uncomp_size >= MZ_UINT32_MAX) ? &comp_size : NULL, (local_dir_header_ofs >= MZ_UINT32_MAX) ? &local_dir_header_ofs : NULL); + } + + if (!mz_zip_writer_add_to_central_dir(pZip, pArchive_name, (mz_uint16)archive_name_size, pExtra_data, (mz_uint16)extra_size, pComment, + comment_size, uncomp_size, comp_size, uncomp_crc32, method, bit_flags, dos_time, dos_date, local_dir_header_ofs, ext_attributes, + user_extra_data_central, user_extra_data_central_len)) + return MZ_FALSE; + + pZip->m_total_files++; + pZip->m_archive_size = cur_archive_file_ofs; + + return MZ_TRUE; + } + + mz_bool mz_zip_writer_add_read_buf_callback(mz_zip_archive *pZip, const char *pArchive_name, mz_file_read_func read_callback, void *callback_opaque, mz_uint64 max_size, const MZ_TIME_T *pFile_time, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, + const char *user_extra_data, mz_uint user_extra_data_len, const char *user_extra_data_central, mz_uint user_extra_data_central_len) + { + mz_uint16 gen_flags; + mz_uint uncomp_crc32 = MZ_CRC32_INIT, level, num_alignment_padding_bytes; + mz_uint16 method = 0, dos_time = 0, dos_date = 0, ext_attributes = 0; + mz_uint64 local_dir_header_ofs, cur_archive_file_ofs = pZip->m_archive_size, uncomp_size = 0, comp_size = 0; + size_t archive_name_size; + mz_uint8 local_dir_header[MZ_ZIP_LOCAL_DIR_HEADER_SIZE]; + mz_uint8 *pExtra_data = NULL; + mz_uint32 extra_size = 0; + mz_uint8 extra_data[MZ_ZIP64_MAX_CENTRAL_EXTRA_FIELD_SIZE]; + mz_zip_internal_state *pState; + mz_uint64 file_ofs = 0, cur_archive_header_file_ofs; + + if ((int)level_and_flags < 0) + level_and_flags = MZ_DEFAULT_LEVEL; + level = level_and_flags & 0xF; + + gen_flags = (level_and_flags & MZ_ZIP_FLAG_WRITE_HEADER_SET_SIZE) ? 0 : MZ_ZIP_LDH_BIT_FLAG_HAS_LOCATOR; + + if (!(level_and_flags & MZ_ZIP_FLAG_ASCII_FILENAME)) + gen_flags |= MZ_ZIP_GENERAL_PURPOSE_BIT_FLAG_UTF8; + + /* Sanity checks */ + if ((!pZip) || (!pZip->m_pState) || (pZip->m_zip_mode != MZ_ZIP_MODE_WRITING) || (!pArchive_name) || ((comment_size) && (!pComment)) || (level > MZ_UBER_COMPRESSION)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + pState = pZip->m_pState; + + if ((!pState->m_zip64) && (max_size > MZ_UINT32_MAX)) + { + /* Source file is too large for non-zip64 */ + /*return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); */ + pState->m_zip64 = MZ_TRUE; + } + + /* We could support this, but why? */ + if (level_and_flags & MZ_ZIP_FLAG_COMPRESSED_DATA) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (!mz_zip_writer_validate_archive_name(pArchive_name)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_FILENAME); + + if (pState->m_zip64) + { + if (pZip->m_total_files == MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); + } + else + { + if (pZip->m_total_files == MZ_UINT16_MAX) + { + pState->m_zip64 = MZ_TRUE; + /*return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); */ + } + } + + archive_name_size = strlen(pArchive_name); + if (archive_name_size > MZ_UINT16_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_FILENAME); + + num_alignment_padding_bytes = mz_zip_writer_compute_padding_needed_for_file_alignment(pZip); + + /* miniz doesn't support central dirs >= MZ_UINT32_MAX bytes yet */ + if (((mz_uint64)pState->m_central_dir.m_size + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + archive_name_size + MZ_ZIP64_MAX_CENTRAL_EXTRA_FIELD_SIZE + comment_size) >= MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_CDIR_SIZE); + + if (!pState->m_zip64) + { + /* Bail early if the archive would obviously become too large */ + if ((pZip->m_archive_size + num_alignment_padding_bytes + MZ_ZIP_LOCAL_DIR_HEADER_SIZE + archive_name_size + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + archive_name_size + comment_size + user_extra_data_len + pState->m_central_dir.m_size + MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE + 1024 + MZ_ZIP_DATA_DESCRIPTER_SIZE32 + user_extra_data_central_len) > 0xFFFFFFFF) + { + pState->m_zip64 = MZ_TRUE; + /*return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); */ + } + } + +#ifndef MINIZ_NO_TIME + if (pFile_time) + { + mz_zip_time_t_to_dos_time(*pFile_time, &dos_time, &dos_date); + } +#else + (void)pFile_time; +#endif + + if (max_size <= 3) + level = 0; + + if (!mz_zip_writer_write_zeros(pZip, cur_archive_file_ofs, num_alignment_padding_bytes)) + { + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + } + + cur_archive_file_ofs += num_alignment_padding_bytes; + local_dir_header_ofs = cur_archive_file_ofs; + + if (pZip->m_file_offset_alignment) + { + MZ_ASSERT((cur_archive_file_ofs & (pZip->m_file_offset_alignment - 1)) == 0); + } + + if (max_size && level) + { + method = MZ_DEFLATED; + } + + MZ_CLEAR_ARR(local_dir_header); + if (pState->m_zip64) + { + if (max_size >= MZ_UINT32_MAX || local_dir_header_ofs >= MZ_UINT32_MAX) + { + pExtra_data = extra_data; + if (level_and_flags & MZ_ZIP_FLAG_WRITE_HEADER_SET_SIZE) + extra_size = mz_zip_writer_create_zip64_extra_data(extra_data, (max_size >= MZ_UINT32_MAX) ? &uncomp_size : NULL, + (max_size >= MZ_UINT32_MAX) ? &comp_size : NULL, + (local_dir_header_ofs >= MZ_UINT32_MAX) ? &local_dir_header_ofs : NULL); + else + extra_size = mz_zip_writer_create_zip64_extra_data(extra_data, NULL, + NULL, + (local_dir_header_ofs >= MZ_UINT32_MAX) ? &local_dir_header_ofs : NULL); + } + + if (!mz_zip_writer_create_local_dir_header(pZip, local_dir_header, (mz_uint16)archive_name_size, (mz_uint16)(extra_size + user_extra_data_len), 0, 0, 0, method, gen_flags, dos_time, dos_date)) + return mz_zip_set_error(pZip, MZ_ZIP_INTERNAL_ERROR); + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, local_dir_header, sizeof(local_dir_header)) != sizeof(local_dir_header)) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + cur_archive_file_ofs += sizeof(local_dir_header); + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, pArchive_name, archive_name_size) != archive_name_size) + { + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + } + + cur_archive_file_ofs += archive_name_size; + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, extra_data, extra_size) != extra_size) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + cur_archive_file_ofs += extra_size; + } + else + { + if ((comp_size > MZ_UINT32_MAX) || (cur_archive_file_ofs > MZ_UINT32_MAX)) + return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); + if (!mz_zip_writer_create_local_dir_header(pZip, local_dir_header, (mz_uint16)archive_name_size, (mz_uint16)user_extra_data_len, 0, 0, 0, method, gen_flags, dos_time, dos_date)) + return mz_zip_set_error(pZip, MZ_ZIP_INTERNAL_ERROR); + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, local_dir_header, sizeof(local_dir_header)) != sizeof(local_dir_header)) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + cur_archive_file_ofs += sizeof(local_dir_header); + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, pArchive_name, archive_name_size) != archive_name_size) + { + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + } + + cur_archive_file_ofs += archive_name_size; + } + + if (user_extra_data_len > 0) + { + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, user_extra_data, user_extra_data_len) != user_extra_data_len) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + cur_archive_file_ofs += user_extra_data_len; + } + + if (max_size) + { + void *pRead_buf = pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, MZ_ZIP_MAX_IO_BUF_SIZE); + if (!pRead_buf) + { + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + if (!level) + { + while (1) + { + size_t n = read_callback(callback_opaque, file_ofs, pRead_buf, MZ_ZIP_MAX_IO_BUF_SIZE); + if (n == 0) + break; + + if ((n > MZ_ZIP_MAX_IO_BUF_SIZE) || (file_ofs + n > max_size)) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pRead_buf); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + } + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, pRead_buf, n) != n) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pRead_buf); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + } + file_ofs += n; + uncomp_crc32 = (mz_uint32)mz_crc32(uncomp_crc32, (const mz_uint8 *)pRead_buf, n); + cur_archive_file_ofs += n; + } + uncomp_size = file_ofs; + comp_size = uncomp_size; + } + else + { + mz_bool result = MZ_FALSE; + mz_zip_writer_add_state state; + tdefl_compressor *pComp = (tdefl_compressor *)pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, sizeof(tdefl_compressor)); + if (!pComp) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pRead_buf); + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + state.m_pZip = pZip; + state.m_cur_archive_file_ofs = cur_archive_file_ofs; + state.m_comp_size = 0; + + if (tdefl_init(pComp, mz_zip_writer_add_put_buf_callback, &state, tdefl_create_comp_flags_from_zip_params(level, -15, MZ_DEFAULT_STRATEGY)) != TDEFL_STATUS_OKAY) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pComp); + pZip->m_pFree(pZip->m_pAlloc_opaque, pRead_buf); + return mz_zip_set_error(pZip, MZ_ZIP_INTERNAL_ERROR); + } + + for (;;) + { + tdefl_status status; + tdefl_flush flush = TDEFL_NO_FLUSH; + + size_t n = read_callback(callback_opaque, file_ofs, pRead_buf, MZ_ZIP_MAX_IO_BUF_SIZE); + if ((n > MZ_ZIP_MAX_IO_BUF_SIZE) || (file_ofs + n > max_size)) + { + mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + break; + } + + file_ofs += n; + uncomp_crc32 = (mz_uint32)mz_crc32(uncomp_crc32, (const mz_uint8 *)pRead_buf, n); + + if (pZip->m_pNeeds_keepalive != NULL && pZip->m_pNeeds_keepalive(pZip->m_pIO_opaque)) + flush = TDEFL_FULL_FLUSH; + + if (n == 0) + flush = TDEFL_FINISH; + + status = tdefl_compress_buffer(pComp, pRead_buf, n, flush); + if (status == TDEFL_STATUS_DONE) + { + result = MZ_TRUE; + break; + } + else if (status != TDEFL_STATUS_OKAY) + { + mz_zip_set_error(pZip, MZ_ZIP_COMPRESSION_FAILED); + break; + } + } + + pZip->m_pFree(pZip->m_pAlloc_opaque, pComp); + + if (!result) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pRead_buf); + return MZ_FALSE; + } + + uncomp_size = file_ofs; + comp_size = state.m_comp_size; + cur_archive_file_ofs = state.m_cur_archive_file_ofs; + } + + pZip->m_pFree(pZip->m_pAlloc_opaque, pRead_buf); + } + + if (!(level_and_flags & MZ_ZIP_FLAG_WRITE_HEADER_SET_SIZE)) + { + mz_uint8 local_dir_footer[MZ_ZIP_DATA_DESCRIPTER_SIZE64]; + mz_uint32 local_dir_footer_size = MZ_ZIP_DATA_DESCRIPTER_SIZE32; + + MZ_WRITE_LE32(local_dir_footer + 0, MZ_ZIP_DATA_DESCRIPTOR_ID); + MZ_WRITE_LE32(local_dir_footer + 4, uncomp_crc32); + if (pExtra_data == NULL) + { + if (comp_size > MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); + + MZ_WRITE_LE32(local_dir_footer + 8, comp_size); + MZ_WRITE_LE32(local_dir_footer + 12, uncomp_size); + } + else + { + MZ_WRITE_LE64(local_dir_footer + 8, comp_size); + MZ_WRITE_LE64(local_dir_footer + 16, uncomp_size); + local_dir_footer_size = MZ_ZIP_DATA_DESCRIPTER_SIZE64; + } + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_file_ofs, local_dir_footer, local_dir_footer_size) != local_dir_footer_size) + return MZ_FALSE; + + cur_archive_file_ofs += local_dir_footer_size; + } + + if (level_and_flags & MZ_ZIP_FLAG_WRITE_HEADER_SET_SIZE) + { + if (pExtra_data != NULL) + { + extra_size = mz_zip_writer_create_zip64_extra_data(extra_data, (max_size >= MZ_UINT32_MAX) ? &uncomp_size : NULL, + (max_size >= MZ_UINT32_MAX) ? &comp_size : NULL, (local_dir_header_ofs >= MZ_UINT32_MAX) ? &local_dir_header_ofs : NULL); + } + + if (!mz_zip_writer_create_local_dir_header(pZip, local_dir_header, + (mz_uint16)archive_name_size, (mz_uint16)(extra_size + user_extra_data_len), + (max_size >= MZ_UINT32_MAX) ? MZ_UINT32_MAX : uncomp_size, + (max_size >= MZ_UINT32_MAX) ? MZ_UINT32_MAX : comp_size, + uncomp_crc32, method, gen_flags, dos_time, dos_date)) + return mz_zip_set_error(pZip, MZ_ZIP_INTERNAL_ERROR); + + cur_archive_header_file_ofs = local_dir_header_ofs; + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_header_file_ofs, local_dir_header, sizeof(local_dir_header)) != sizeof(local_dir_header)) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + if (pExtra_data != NULL) + { + cur_archive_header_file_ofs += sizeof(local_dir_header); + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_header_file_ofs, pArchive_name, archive_name_size) != archive_name_size) + { + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + } + + cur_archive_header_file_ofs += archive_name_size; + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_archive_header_file_ofs, extra_data, extra_size) != extra_size) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + cur_archive_header_file_ofs += extra_size; + } + } + + if (pExtra_data != NULL) + { + extra_size = mz_zip_writer_create_zip64_extra_data(extra_data, (uncomp_size >= MZ_UINT32_MAX) ? &uncomp_size : NULL, + (uncomp_size >= MZ_UINT32_MAX) ? &comp_size : NULL, (local_dir_header_ofs >= MZ_UINT32_MAX) ? &local_dir_header_ofs : NULL); + } + + if (!mz_zip_writer_add_to_central_dir(pZip, pArchive_name, (mz_uint16)archive_name_size, pExtra_data, (mz_uint16)extra_size, pComment, comment_size, + uncomp_size, comp_size, uncomp_crc32, method, gen_flags, dos_time, dos_date, local_dir_header_ofs, ext_attributes, + user_extra_data_central, user_extra_data_central_len)) + return MZ_FALSE; + + pZip->m_total_files++; + pZip->m_archive_size = cur_archive_file_ofs; + + return MZ_TRUE; + } + +#ifndef MINIZ_NO_STDIO + + static size_t mz_file_read_func_stdio(void *pOpaque, mz_uint64 file_ofs, void *pBuf, size_t n) + { + MZ_FILE *pSrc_file = (MZ_FILE *)pOpaque; + mz_int64 cur_ofs = MZ_FTELL64(pSrc_file); + + if (((mz_int64)file_ofs < 0) || (((cur_ofs != (mz_int64)file_ofs)) && (MZ_FSEEK64(pSrc_file, (mz_int64)file_ofs, SEEK_SET)))) + return 0; + + return MZ_FREAD(pBuf, 1, n, pSrc_file); + } + + mz_bool mz_zip_writer_add_cfile(mz_zip_archive *pZip, const char *pArchive_name, MZ_FILE *pSrc_file, mz_uint64 max_size, const MZ_TIME_T *pFile_time, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, + const char *user_extra_data, mz_uint user_extra_data_len, const char *user_extra_data_central, mz_uint user_extra_data_central_len) + { + return mz_zip_writer_add_read_buf_callback(pZip, pArchive_name, mz_file_read_func_stdio, pSrc_file, max_size, pFile_time, pComment, comment_size, level_and_flags, + user_extra_data, user_extra_data_len, user_extra_data_central, user_extra_data_central_len); + } + + mz_bool mz_zip_writer_add_file(mz_zip_archive *pZip, const char *pArchive_name, const char *pSrc_filename, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags) + { + MZ_FILE *pSrc_file = NULL; + mz_uint64 uncomp_size = 0; + MZ_TIME_T file_modified_time; + MZ_TIME_T *pFile_time = NULL; + mz_bool status; + + memset(&file_modified_time, 0, sizeof(file_modified_time)); + +#if !defined(MINIZ_NO_TIME) && !defined(MINIZ_NO_STDIO) + pFile_time = &file_modified_time; + if (!mz_zip_get_file_modified_time(pSrc_filename, &file_modified_time)) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_STAT_FAILED); +#endif + + pSrc_file = MZ_FOPEN(pSrc_filename, "rb"); + if (!pSrc_file) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_OPEN_FAILED); + + MZ_FSEEK64(pSrc_file, 0, SEEK_END); + uncomp_size = MZ_FTELL64(pSrc_file); + MZ_FSEEK64(pSrc_file, 0, SEEK_SET); + + status = mz_zip_writer_add_cfile(pZip, pArchive_name, pSrc_file, uncomp_size, pFile_time, pComment, comment_size, level_and_flags, NULL, 0, NULL, 0); + + MZ_FCLOSE(pSrc_file); + + return status; + } +#endif /* #ifndef MINIZ_NO_STDIO */ + + static mz_bool mz_zip_writer_update_zip64_extension_block(mz_zip_array *pNew_ext, mz_zip_archive *pZip, const mz_uint8 *pExt, mz_uint32 ext_len, mz_uint64 *pComp_size, mz_uint64 *pUncomp_size, mz_uint64 *pLocal_header_ofs, mz_uint32 *pDisk_start) + { + /* + 64 should be enough for any new zip64 data */ + if (!mz_zip_array_reserve(pZip, pNew_ext, ext_len + 64, MZ_FALSE)) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + + mz_zip_array_resize(pZip, pNew_ext, 0, MZ_FALSE); + + if ((pUncomp_size) || (pComp_size) || (pLocal_header_ofs) || (pDisk_start)) + { + mz_uint8 new_ext_block[64]; + mz_uint8 *pDst = new_ext_block; + mz_write_le16(pDst, MZ_ZIP64_EXTENDED_INFORMATION_FIELD_HEADER_ID); + mz_write_le16(pDst + sizeof(mz_uint16), 0); + pDst += sizeof(mz_uint16) * 2; + + if (pUncomp_size) + { + mz_write_le64(pDst, *pUncomp_size); + pDst += sizeof(mz_uint64); + } + + if (pComp_size) + { + mz_write_le64(pDst, *pComp_size); + pDst += sizeof(mz_uint64); + } + + if (pLocal_header_ofs) + { + mz_write_le64(pDst, *pLocal_header_ofs); + pDst += sizeof(mz_uint64); + } + + if (pDisk_start) + { + mz_write_le32(pDst, *pDisk_start); + pDst += sizeof(mz_uint32); + } + + mz_write_le16(new_ext_block + sizeof(mz_uint16), (mz_uint16)((pDst - new_ext_block) - sizeof(mz_uint16) * 2)); + + if (!mz_zip_array_push_back(pZip, pNew_ext, new_ext_block, pDst - new_ext_block)) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + if ((pExt) && (ext_len)) + { + mz_uint32 extra_size_remaining = ext_len; + const mz_uint8 *pExtra_data = pExt; + + do + { + mz_uint32 field_id, field_data_size, field_total_size; + + if (extra_size_remaining < (sizeof(mz_uint16) * 2)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + field_id = MZ_READ_LE16(pExtra_data); + field_data_size = MZ_READ_LE16(pExtra_data + sizeof(mz_uint16)); + field_total_size = field_data_size + sizeof(mz_uint16) * 2; + + if (field_total_size > extra_size_remaining) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + if (field_id != MZ_ZIP64_EXTENDED_INFORMATION_FIELD_HEADER_ID) + { + if (!mz_zip_array_push_back(pZip, pNew_ext, pExtra_data, field_total_size)) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + pExtra_data += field_total_size; + extra_size_remaining -= field_total_size; + } while (extra_size_remaining); + } + + return MZ_TRUE; + } + + /* TODO: This func is now pretty freakin complex due to zip64, split it up? */ + mz_bool mz_zip_writer_add_from_zip_reader(mz_zip_archive *pZip, mz_zip_archive *pSource_zip, mz_uint src_file_index) + { + mz_uint n, bit_flags, num_alignment_padding_bytes, src_central_dir_following_data_size; + mz_uint64 src_archive_bytes_remaining, local_dir_header_ofs; + mz_uint64 cur_src_file_ofs, cur_dst_file_ofs; + mz_uint32 local_header_u32[(MZ_ZIP_LOCAL_DIR_HEADER_SIZE + sizeof(mz_uint32) - 1) / sizeof(mz_uint32)]; + mz_uint8 *pLocal_header = (mz_uint8 *)local_header_u32; + mz_uint8 new_central_header[MZ_ZIP_CENTRAL_DIR_HEADER_SIZE]; + size_t orig_central_dir_size; + mz_zip_internal_state *pState; + void *pBuf; + const mz_uint8 *pSrc_central_header; + mz_zip_archive_file_stat src_file_stat; + mz_uint32 src_filename_len, src_comment_len, src_ext_len; + mz_uint32 local_header_filename_size, local_header_extra_len; + mz_uint64 local_header_comp_size, local_header_uncomp_size; + mz_bool found_zip64_ext_data_in_ldir = MZ_FALSE; + + /* Sanity checks */ + if ((!pZip) || (!pZip->m_pState) || (pZip->m_zip_mode != MZ_ZIP_MODE_WRITING) || (!pSource_zip->m_pRead)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + pState = pZip->m_pState; + + /* Don't support copying files from zip64 archives to non-zip64, even though in some cases this is possible */ + if ((pSource_zip->m_pState->m_zip64) && (!pZip->m_pState->m_zip64)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + /* Get pointer to the source central dir header and crack it */ + if (NULL == (pSrc_central_header = mz_zip_get_cdh(pSource_zip, src_file_index))) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (MZ_READ_LE32(pSrc_central_header + MZ_ZIP_CDH_SIG_OFS) != MZ_ZIP_CENTRAL_DIR_HEADER_SIG) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + src_filename_len = MZ_READ_LE16(pSrc_central_header + MZ_ZIP_CDH_FILENAME_LEN_OFS); + src_comment_len = MZ_READ_LE16(pSrc_central_header + MZ_ZIP_CDH_COMMENT_LEN_OFS); + src_ext_len = MZ_READ_LE16(pSrc_central_header + MZ_ZIP_CDH_EXTRA_LEN_OFS); + src_central_dir_following_data_size = src_filename_len + src_ext_len + src_comment_len; + + /* TODO: We don't support central dir's >= MZ_UINT32_MAX bytes right now (+32 fudge factor in case we need to add more extra data) */ + if ((pState->m_central_dir.m_size + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + src_central_dir_following_data_size + 32) >= MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_CDIR_SIZE); + + num_alignment_padding_bytes = mz_zip_writer_compute_padding_needed_for_file_alignment(pZip); + + if (!pState->m_zip64) + { + if (pZip->m_total_files == MZ_UINT16_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); + } + else + { + /* TODO: Our zip64 support still has some 32-bit limits that may not be worth fixing. */ + if (pZip->m_total_files == MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); + } + + if (!mz_zip_file_stat_internal(pSource_zip, src_file_index, pSrc_central_header, &src_file_stat, NULL)) + return MZ_FALSE; + + cur_src_file_ofs = src_file_stat.m_local_header_ofs; + cur_dst_file_ofs = pZip->m_archive_size; + + /* Read the source archive's local dir header */ + if (pSource_zip->m_pRead(pSource_zip->m_pIO_opaque, cur_src_file_ofs, pLocal_header, MZ_ZIP_LOCAL_DIR_HEADER_SIZE) != MZ_ZIP_LOCAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + + if (MZ_READ_LE32(pLocal_header) != MZ_ZIP_LOCAL_DIR_HEADER_SIG) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + + cur_src_file_ofs += MZ_ZIP_LOCAL_DIR_HEADER_SIZE; + + /* Compute the total size we need to copy (filename+extra data+compressed data) */ + local_header_filename_size = MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_FILENAME_LEN_OFS); + local_header_extra_len = MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_EXTRA_LEN_OFS); + local_header_comp_size = MZ_READ_LE32(pLocal_header + MZ_ZIP_LDH_COMPRESSED_SIZE_OFS); + local_header_uncomp_size = MZ_READ_LE32(pLocal_header + MZ_ZIP_LDH_DECOMPRESSED_SIZE_OFS); + src_archive_bytes_remaining = src_file_stat.m_comp_size + local_header_filename_size + local_header_extra_len; + + /* Try to find a zip64 extended information field */ + if ((local_header_extra_len) && ((local_header_comp_size == MZ_UINT32_MAX) || (local_header_uncomp_size == MZ_UINT32_MAX))) + { + mz_zip_array file_data_array; + const mz_uint8 *pExtra_data; + mz_uint32 extra_size_remaining = local_header_extra_len; + + mz_zip_array_init(&file_data_array, 1); + if (!mz_zip_array_resize(pZip, &file_data_array, local_header_extra_len, MZ_FALSE)) + { + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + if (pSource_zip->m_pRead(pSource_zip->m_pIO_opaque, src_file_stat.m_local_header_ofs + MZ_ZIP_LOCAL_DIR_HEADER_SIZE + local_header_filename_size, file_data_array.m_p, local_header_extra_len) != local_header_extra_len) + { + mz_zip_array_clear(pZip, &file_data_array); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + } + + pExtra_data = (const mz_uint8 *)file_data_array.m_p; + + do + { + mz_uint32 field_id, field_data_size, field_total_size; + + if (extra_size_remaining < (sizeof(mz_uint16) * 2)) + { + mz_zip_array_clear(pZip, &file_data_array); + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + } + + field_id = MZ_READ_LE16(pExtra_data); + field_data_size = MZ_READ_LE16(pExtra_data + sizeof(mz_uint16)); + field_total_size = field_data_size + sizeof(mz_uint16) * 2; + + if (field_total_size > extra_size_remaining) + { + mz_zip_array_clear(pZip, &file_data_array); + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + } + + if (field_id == MZ_ZIP64_EXTENDED_INFORMATION_FIELD_HEADER_ID) + { + const mz_uint8 *pSrc_field_data = pExtra_data + sizeof(mz_uint32); + + if (field_data_size < sizeof(mz_uint64) * 2) + { + mz_zip_array_clear(pZip, &file_data_array); + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_HEADER_OR_CORRUPTED); + } + + local_header_uncomp_size = MZ_READ_LE64(pSrc_field_data); + local_header_comp_size = MZ_READ_LE64(pSrc_field_data + sizeof(mz_uint64)); /* may be 0 if there's a descriptor */ + + found_zip64_ext_data_in_ldir = MZ_TRUE; + break; + } + + pExtra_data += field_total_size; + extra_size_remaining -= field_total_size; + } while (extra_size_remaining); + + mz_zip_array_clear(pZip, &file_data_array); + } + + if (!pState->m_zip64) + { + /* Try to detect if the new archive will most likely wind up too big and bail early (+(sizeof(mz_uint32) * 4) is for the optional descriptor which could be present, +64 is a fudge factor). */ + /* We also check when the archive is finalized so this doesn't need to be perfect. */ + mz_uint64 approx_new_archive_size = cur_dst_file_ofs + num_alignment_padding_bytes + MZ_ZIP_LOCAL_DIR_HEADER_SIZE + src_archive_bytes_remaining + (sizeof(mz_uint32) * 4) + + pState->m_central_dir.m_size + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + src_central_dir_following_data_size + MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE + 64; + + if (approx_new_archive_size >= MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); + } + + /* Write dest archive padding */ + if (!mz_zip_writer_write_zeros(pZip, cur_dst_file_ofs, num_alignment_padding_bytes)) + return MZ_FALSE; + + cur_dst_file_ofs += num_alignment_padding_bytes; + + local_dir_header_ofs = cur_dst_file_ofs; + if (pZip->m_file_offset_alignment) + { + MZ_ASSERT((local_dir_header_ofs & (pZip->m_file_offset_alignment - 1)) == 0); + } + + /* The original zip's local header+ext block doesn't change, even with zip64, so we can just copy it over to the dest zip */ + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_dst_file_ofs, pLocal_header, MZ_ZIP_LOCAL_DIR_HEADER_SIZE) != MZ_ZIP_LOCAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + cur_dst_file_ofs += MZ_ZIP_LOCAL_DIR_HEADER_SIZE; + + /* Copy over the source archive bytes to the dest archive, also ensure we have enough buf space to handle optional data descriptor */ + if (NULL == (pBuf = pZip->m_pAlloc(pZip->m_pAlloc_opaque, 1, (size_t)MZ_MAX(32U, MZ_MIN((mz_uint64)MZ_ZIP_MAX_IO_BUF_SIZE, src_archive_bytes_remaining))))) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + + while (src_archive_bytes_remaining) + { + n = (mz_uint)MZ_MIN((mz_uint64)MZ_ZIP_MAX_IO_BUF_SIZE, src_archive_bytes_remaining); + if (pSource_zip->m_pRead(pSource_zip->m_pIO_opaque, cur_src_file_ofs, pBuf, n) != n) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pBuf); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + } + cur_src_file_ofs += n; + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_dst_file_ofs, pBuf, n) != n) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pBuf); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + } + cur_dst_file_ofs += n; + + src_archive_bytes_remaining -= n; + } + + /* Now deal with the optional data descriptor */ + bit_flags = MZ_READ_LE16(pLocal_header + MZ_ZIP_LDH_BIT_FLAG_OFS); + if (bit_flags & 8) + { + /* Copy data descriptor */ + if ((pSource_zip->m_pState->m_zip64) || (found_zip64_ext_data_in_ldir)) + { + /* src is zip64, dest must be zip64 */ + + /* name uint32_t's */ + /* id 1 (optional in zip64?) */ + /* crc 1 */ + /* comp_size 2 */ + /* uncomp_size 2 */ + if (pSource_zip->m_pRead(pSource_zip->m_pIO_opaque, cur_src_file_ofs, pBuf, (sizeof(mz_uint32) * 6)) != (sizeof(mz_uint32) * 6)) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pBuf); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + } + + n = sizeof(mz_uint32) * ((MZ_READ_LE32(pBuf) == MZ_ZIP_DATA_DESCRIPTOR_ID) ? 6 : 5); + } + else + { + /* src is NOT zip64 */ + mz_bool has_id; + + if (pSource_zip->m_pRead(pSource_zip->m_pIO_opaque, cur_src_file_ofs, pBuf, sizeof(mz_uint32) * 4) != sizeof(mz_uint32) * 4) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pBuf); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_READ_FAILED); + } + + has_id = (MZ_READ_LE32(pBuf) == MZ_ZIP_DATA_DESCRIPTOR_ID); + + if (pZip->m_pState->m_zip64) + { + /* dest is zip64, so upgrade the data descriptor */ + const mz_uint8 *pSrc_descriptor = (const mz_uint8 *)pBuf + (has_id ? sizeof(mz_uint32) : 0); + const mz_uint32 src_crc32 = MZ_READ_LE32(pSrc_descriptor); + const mz_uint64 src_comp_size = MZ_READ_LE32(pSrc_descriptor + sizeof(mz_uint32)); + const mz_uint64 src_uncomp_size = MZ_READ_LE32(pSrc_descriptor + 2 * sizeof(mz_uint32)); + + mz_write_le32((mz_uint8 *)pBuf, MZ_ZIP_DATA_DESCRIPTOR_ID); + mz_write_le32((mz_uint8 *)pBuf + sizeof(mz_uint32) * 1, src_crc32); + mz_write_le64((mz_uint8 *)pBuf + sizeof(mz_uint32) * 2, src_comp_size); + mz_write_le64((mz_uint8 *)pBuf + sizeof(mz_uint32) * 4, src_uncomp_size); + + n = sizeof(mz_uint32) * 6; + } + else + { + /* dest is NOT zip64, just copy it as-is */ + n = sizeof(mz_uint32) * (has_id ? 4 : 3); + } + } + + if (pZip->m_pWrite(pZip->m_pIO_opaque, cur_dst_file_ofs, pBuf, n) != n) + { + pZip->m_pFree(pZip->m_pAlloc_opaque, pBuf); + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + } + + cur_src_file_ofs += n; + cur_dst_file_ofs += n; + } + pZip->m_pFree(pZip->m_pAlloc_opaque, pBuf); + + /* Finally, add the new central dir header */ + orig_central_dir_size = pState->m_central_dir.m_size; + + memcpy(new_central_header, pSrc_central_header, MZ_ZIP_CENTRAL_DIR_HEADER_SIZE); + + if (pState->m_zip64) + { + /* This is the painful part: We need to write a new central dir header + ext block with updated zip64 fields, and ensure the old fields (if any) are not included. */ + const mz_uint8 *pSrc_ext = pSrc_central_header + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + src_filename_len; + mz_zip_array new_ext_block; + + mz_zip_array_init(&new_ext_block, sizeof(mz_uint8)); + + MZ_WRITE_LE32(new_central_header + MZ_ZIP_CDH_COMPRESSED_SIZE_OFS, MZ_UINT32_MAX); + MZ_WRITE_LE32(new_central_header + MZ_ZIP_CDH_DECOMPRESSED_SIZE_OFS, MZ_UINT32_MAX); + MZ_WRITE_LE32(new_central_header + MZ_ZIP_CDH_LOCAL_HEADER_OFS, MZ_UINT32_MAX); + + if (!mz_zip_writer_update_zip64_extension_block(&new_ext_block, pZip, pSrc_ext, src_ext_len, &src_file_stat.m_comp_size, &src_file_stat.m_uncomp_size, &local_dir_header_ofs, NULL)) + { + mz_zip_array_clear(pZip, &new_ext_block); + return MZ_FALSE; + } + + MZ_WRITE_LE16(new_central_header + MZ_ZIP_CDH_EXTRA_LEN_OFS, new_ext_block.m_size); + + if (!mz_zip_array_push_back(pZip, &pState->m_central_dir, new_central_header, MZ_ZIP_CENTRAL_DIR_HEADER_SIZE)) + { + mz_zip_array_clear(pZip, &new_ext_block); + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + if (!mz_zip_array_push_back(pZip, &pState->m_central_dir, pSrc_central_header + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE, src_filename_len)) + { + mz_zip_array_clear(pZip, &new_ext_block); + mz_zip_array_resize(pZip, &pState->m_central_dir, orig_central_dir_size, MZ_FALSE); + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + if (!mz_zip_array_push_back(pZip, &pState->m_central_dir, new_ext_block.m_p, new_ext_block.m_size)) + { + mz_zip_array_clear(pZip, &new_ext_block); + mz_zip_array_resize(pZip, &pState->m_central_dir, orig_central_dir_size, MZ_FALSE); + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + if (!mz_zip_array_push_back(pZip, &pState->m_central_dir, pSrc_central_header + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE + src_filename_len + src_ext_len, src_comment_len)) + { + mz_zip_array_clear(pZip, &new_ext_block); + mz_zip_array_resize(pZip, &pState->m_central_dir, orig_central_dir_size, MZ_FALSE); + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + mz_zip_array_clear(pZip, &new_ext_block); + } + else + { + /* sanity checks */ + if (cur_dst_file_ofs > MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); + + if (local_dir_header_ofs >= MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_ARCHIVE_TOO_LARGE); + + MZ_WRITE_LE32(new_central_header + MZ_ZIP_CDH_LOCAL_HEADER_OFS, local_dir_header_ofs); + + if (!mz_zip_array_push_back(pZip, &pState->m_central_dir, new_central_header, MZ_ZIP_CENTRAL_DIR_HEADER_SIZE)) + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + + if (!mz_zip_array_push_back(pZip, &pState->m_central_dir, pSrc_central_header + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE, src_central_dir_following_data_size)) + { + mz_zip_array_resize(pZip, &pState->m_central_dir, orig_central_dir_size, MZ_FALSE); + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + } + + /* This shouldn't trigger unless we screwed up during the initial sanity checks */ + if (pState->m_central_dir.m_size >= MZ_UINT32_MAX) + { + /* TODO: Support central dirs >= 32-bits in size */ + mz_zip_array_resize(pZip, &pState->m_central_dir, orig_central_dir_size, MZ_FALSE); + return mz_zip_set_error(pZip, MZ_ZIP_UNSUPPORTED_CDIR_SIZE); + } + + n = (mz_uint32)orig_central_dir_size; + if (!mz_zip_array_push_back(pZip, &pState->m_central_dir_offsets, &n, 1)) + { + mz_zip_array_resize(pZip, &pState->m_central_dir, orig_central_dir_size, MZ_FALSE); + return mz_zip_set_error(pZip, MZ_ZIP_ALLOC_FAILED); + } + + pZip->m_total_files++; + pZip->m_archive_size = cur_dst_file_ofs; + + return MZ_TRUE; + } + + mz_bool mz_zip_writer_finalize_archive(mz_zip_archive *pZip) + { + mz_zip_internal_state *pState; + mz_uint64 central_dir_ofs, central_dir_size; + mz_uint8 hdr[256]; + + if ((!pZip) || (!pZip->m_pState) || (pZip->m_zip_mode != MZ_ZIP_MODE_WRITING)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + pState = pZip->m_pState; + + if (pState->m_zip64) + { + if ((mz_uint64)pState->m_central_dir.m_size >= MZ_UINT32_MAX) + return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); + } + else + { + if ((pZip->m_total_files > MZ_UINT16_MAX) || ((pZip->m_archive_size + pState->m_central_dir.m_size + MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE) > MZ_UINT32_MAX)) + return mz_zip_set_error(pZip, MZ_ZIP_TOO_MANY_FILES); + } + + central_dir_ofs = 0; + central_dir_size = 0; + if (pZip->m_total_files) + { + /* Write central directory */ + central_dir_ofs = pZip->m_archive_size; + central_dir_size = pState->m_central_dir.m_size; + pZip->m_central_directory_file_ofs = central_dir_ofs; + if (pZip->m_pWrite(pZip->m_pIO_opaque, central_dir_ofs, pState->m_central_dir.m_p, (size_t)central_dir_size) != central_dir_size) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + pZip->m_archive_size += central_dir_size; + } + + if (pState->m_zip64) + { + /* Write zip64 end of central directory header */ + mz_uint64 rel_ofs_to_zip64_ecdr = pZip->m_archive_size; + + MZ_CLEAR_ARR(hdr); + MZ_WRITE_LE32(hdr + MZ_ZIP64_ECDH_SIG_OFS, MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIG); + MZ_WRITE_LE64(hdr + MZ_ZIP64_ECDH_SIZE_OF_RECORD_OFS, MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE - sizeof(mz_uint32) - sizeof(mz_uint64)); + MZ_WRITE_LE16(hdr + MZ_ZIP64_ECDH_VERSION_MADE_BY_OFS, 0x031E); /* TODO: always Unix */ + MZ_WRITE_LE16(hdr + MZ_ZIP64_ECDH_VERSION_NEEDED_OFS, 0x002D); + MZ_WRITE_LE64(hdr + MZ_ZIP64_ECDH_CDIR_NUM_ENTRIES_ON_DISK_OFS, pZip->m_total_files); + MZ_WRITE_LE64(hdr + MZ_ZIP64_ECDH_CDIR_TOTAL_ENTRIES_OFS, pZip->m_total_files); + MZ_WRITE_LE64(hdr + MZ_ZIP64_ECDH_CDIR_SIZE_OFS, central_dir_size); + MZ_WRITE_LE64(hdr + MZ_ZIP64_ECDH_CDIR_OFS_OFS, central_dir_ofs); + if (pZip->m_pWrite(pZip->m_pIO_opaque, pZip->m_archive_size, hdr, MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE) != MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + pZip->m_archive_size += MZ_ZIP64_END_OF_CENTRAL_DIR_HEADER_SIZE; + + /* Write zip64 end of central directory locator */ + MZ_CLEAR_ARR(hdr); + MZ_WRITE_LE32(hdr + MZ_ZIP64_ECDL_SIG_OFS, MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIG); + MZ_WRITE_LE64(hdr + MZ_ZIP64_ECDL_REL_OFS_TO_ZIP64_ECDR_OFS, rel_ofs_to_zip64_ecdr); + MZ_WRITE_LE32(hdr + MZ_ZIP64_ECDL_TOTAL_NUMBER_OF_DISKS_OFS, 1); + if (pZip->m_pWrite(pZip->m_pIO_opaque, pZip->m_archive_size, hdr, MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE) != MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + + pZip->m_archive_size += MZ_ZIP64_END_OF_CENTRAL_DIR_LOCATOR_SIZE; + } + + /* Write end of central directory record */ + MZ_CLEAR_ARR(hdr); + MZ_WRITE_LE32(hdr + MZ_ZIP_ECDH_SIG_OFS, MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIG); + MZ_WRITE_LE16(hdr + MZ_ZIP_ECDH_CDIR_NUM_ENTRIES_ON_DISK_OFS, MZ_MIN(MZ_UINT16_MAX, pZip->m_total_files)); + MZ_WRITE_LE16(hdr + MZ_ZIP_ECDH_CDIR_TOTAL_ENTRIES_OFS, MZ_MIN(MZ_UINT16_MAX, pZip->m_total_files)); + MZ_WRITE_LE32(hdr + MZ_ZIP_ECDH_CDIR_SIZE_OFS, MZ_MIN(MZ_UINT32_MAX, central_dir_size)); + MZ_WRITE_LE32(hdr + MZ_ZIP_ECDH_CDIR_OFS_OFS, MZ_MIN(MZ_UINT32_MAX, central_dir_ofs)); + + if (pZip->m_pWrite(pZip->m_pIO_opaque, pZip->m_archive_size, hdr, MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE) != MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_WRITE_FAILED); + +#ifndef MINIZ_NO_STDIO + if ((pState->m_pFile) && (MZ_FFLUSH(pState->m_pFile) == EOF)) + return mz_zip_set_error(pZip, MZ_ZIP_FILE_CLOSE_FAILED); +#endif /* #ifndef MINIZ_NO_STDIO */ + + pZip->m_archive_size += MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE; + + pZip->m_zip_mode = MZ_ZIP_MODE_WRITING_HAS_BEEN_FINALIZED; + return MZ_TRUE; + } + + mz_bool mz_zip_writer_finalize_heap_archive(mz_zip_archive *pZip, void **ppBuf, size_t *pSize) + { + if ((!ppBuf) || (!pSize)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + *ppBuf = NULL; + *pSize = 0; + + if ((!pZip) || (!pZip->m_pState)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (pZip->m_pWrite != mz_zip_heap_write_func) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + if (!mz_zip_writer_finalize_archive(pZip)) + return MZ_FALSE; + + *ppBuf = pZip->m_pState->m_pMem; + *pSize = pZip->m_pState->m_mem_size; + pZip->m_pState->m_pMem = NULL; + pZip->m_pState->m_mem_size = pZip->m_pState->m_mem_capacity = 0; + + return MZ_TRUE; + } + + mz_bool mz_zip_writer_end(mz_zip_archive *pZip) + { + return mz_zip_writer_end_internal(pZip, MZ_TRUE); + } + +#ifndef MINIZ_NO_STDIO + mz_bool mz_zip_add_mem_to_archive_file_in_place(const char *pZip_filename, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags) + { + return mz_zip_add_mem_to_archive_file_in_place_v2(pZip_filename, pArchive_name, pBuf, buf_size, pComment, comment_size, level_and_flags, NULL); + } + + mz_bool mz_zip_add_mem_to_archive_file_in_place_v2(const char *pZip_filename, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, mz_zip_error *pErr) + { + mz_bool status, created_new_archive = MZ_FALSE; + mz_zip_archive zip_archive; + struct MZ_FILE_STAT_STRUCT file_stat; + mz_zip_error actual_err = MZ_ZIP_NO_ERROR; + + mz_zip_zero_struct(&zip_archive); + if ((int)level_and_flags < 0) + level_and_flags = MZ_DEFAULT_LEVEL; + + if ((!pZip_filename) || (!pArchive_name) || ((buf_size) && (!pBuf)) || ((comment_size) && (!pComment)) || ((level_and_flags & 0xF) > MZ_UBER_COMPRESSION)) + { + if (pErr) + *pErr = MZ_ZIP_INVALID_PARAMETER; + return MZ_FALSE; + } + + if (!mz_zip_writer_validate_archive_name(pArchive_name)) + { + if (pErr) + *pErr = MZ_ZIP_INVALID_FILENAME; + return MZ_FALSE; + } + + /* Important: The regular non-64 bit version of stat() can fail here if the file is very large, which could cause the archive to be overwritten. */ + /* So be sure to compile with _LARGEFILE64_SOURCE 1 */ + if (MZ_FILE_STAT(pZip_filename, &file_stat) != 0) + { + /* Create a new archive. */ + if (!mz_zip_writer_init_file_v2(&zip_archive, pZip_filename, 0, level_and_flags)) + { + if (pErr) + *pErr = zip_archive.m_last_error; + return MZ_FALSE; + } + + created_new_archive = MZ_TRUE; + } + else + { + /* Append to an existing archive. */ + if (!mz_zip_reader_init_file_v2(&zip_archive, pZip_filename, level_and_flags | MZ_ZIP_FLAG_DO_NOT_SORT_CENTRAL_DIRECTORY | MZ_ZIP_FLAG_READ_ALLOW_WRITING, 0, 0)) + { + if (pErr) + *pErr = zip_archive.m_last_error; + return MZ_FALSE; + } + + if (!mz_zip_writer_init_from_reader_v2(&zip_archive, pZip_filename, level_and_flags | MZ_ZIP_FLAG_READ_ALLOW_WRITING)) + { + if (pErr) + *pErr = zip_archive.m_last_error; + + mz_zip_reader_end_internal(&zip_archive, MZ_FALSE); + + return MZ_FALSE; + } + } + + status = mz_zip_writer_add_mem_ex(&zip_archive, pArchive_name, pBuf, buf_size, pComment, comment_size, level_and_flags, 0, 0); + actual_err = zip_archive.m_last_error; + + /* Always finalize, even if adding failed for some reason, so we have a valid central directory. (This may not always succeed, but we can try.) */ + if (!mz_zip_writer_finalize_archive(&zip_archive)) + { + if (!actual_err) + actual_err = zip_archive.m_last_error; + + status = MZ_FALSE; + } + + if (!mz_zip_writer_end_internal(&zip_archive, status)) + { + if (!actual_err) + actual_err = zip_archive.m_last_error; + + status = MZ_FALSE; + } + + if ((!status) && (created_new_archive)) + { + /* It's a new archive and something went wrong, so just delete it. */ + int ignoredStatus = MZ_DELETE_FILE(pZip_filename); + (void)ignoredStatus; + } + + if (pErr) + *pErr = actual_err; + + return status; + } + + void *mz_zip_extract_archive_file_to_heap_v2(const char *pZip_filename, const char *pArchive_name, const char *pComment, size_t *pSize, mz_uint flags, mz_zip_error *pErr) + { + mz_uint32 file_index; + mz_zip_archive zip_archive; + void *p = NULL; + + if (pSize) + *pSize = 0; + + if ((!pZip_filename) || (!pArchive_name)) + { + if (pErr) + *pErr = MZ_ZIP_INVALID_PARAMETER; + + return NULL; + } + + mz_zip_zero_struct(&zip_archive); + if (!mz_zip_reader_init_file_v2(&zip_archive, pZip_filename, flags | MZ_ZIP_FLAG_DO_NOT_SORT_CENTRAL_DIRECTORY, 0, 0)) + { + if (pErr) + *pErr = zip_archive.m_last_error; + + return NULL; + } + + if (mz_zip_reader_locate_file_v2(&zip_archive, pArchive_name, pComment, flags, &file_index)) + { + p = mz_zip_reader_extract_to_heap(&zip_archive, file_index, pSize, flags); + } + + mz_zip_reader_end_internal(&zip_archive, p != NULL); + + if (pErr) + *pErr = zip_archive.m_last_error; + + return p; + } + + void *mz_zip_extract_archive_file_to_heap(const char *pZip_filename, const char *pArchive_name, size_t *pSize, mz_uint flags) + { + return mz_zip_extract_archive_file_to_heap_v2(pZip_filename, pArchive_name, NULL, pSize, flags, NULL); + } + +#endif /* #ifndef MINIZ_NO_STDIO */ + +#endif /* #ifndef MINIZ_NO_ARCHIVE_WRITING_APIS */ + + /* ------------------- Misc utils */ + + mz_zip_mode mz_zip_get_mode(mz_zip_archive *pZip) + { + return pZip ? pZip->m_zip_mode : MZ_ZIP_MODE_INVALID; + } + + mz_zip_type mz_zip_get_type(mz_zip_archive *pZip) + { + return pZip ? pZip->m_zip_type : MZ_ZIP_TYPE_INVALID; + } + + mz_zip_error mz_zip_set_last_error(mz_zip_archive *pZip, mz_zip_error err_num) + { + mz_zip_error prev_err; + + if (!pZip) + return MZ_ZIP_INVALID_PARAMETER; + + prev_err = pZip->m_last_error; + + pZip->m_last_error = err_num; + return prev_err; + } + + mz_zip_error mz_zip_peek_last_error(mz_zip_archive *pZip) + { + if (!pZip) + return MZ_ZIP_INVALID_PARAMETER; + + return pZip->m_last_error; + } + + mz_zip_error mz_zip_clear_last_error(mz_zip_archive *pZip) + { + return mz_zip_set_last_error(pZip, MZ_ZIP_NO_ERROR); + } + + mz_zip_error mz_zip_get_last_error(mz_zip_archive *pZip) + { + mz_zip_error prev_err; + + if (!pZip) + return MZ_ZIP_INVALID_PARAMETER; + + prev_err = pZip->m_last_error; + + pZip->m_last_error = MZ_ZIP_NO_ERROR; + return prev_err; + } + + const char *mz_zip_get_error_string(mz_zip_error mz_err) + { + switch (mz_err) + { + case MZ_ZIP_NO_ERROR: + return "no error"; + case MZ_ZIP_UNDEFINED_ERROR: + return "undefined error"; + case MZ_ZIP_TOO_MANY_FILES: + return "too many files"; + case MZ_ZIP_FILE_TOO_LARGE: + return "file too large"; + case MZ_ZIP_UNSUPPORTED_METHOD: + return "unsupported method"; + case MZ_ZIP_UNSUPPORTED_ENCRYPTION: + return "unsupported encryption"; + case MZ_ZIP_UNSUPPORTED_FEATURE: + return "unsupported feature"; + case MZ_ZIP_FAILED_FINDING_CENTRAL_DIR: + return "failed finding central directory"; + case MZ_ZIP_NOT_AN_ARCHIVE: + return "not a ZIP archive"; + case MZ_ZIP_INVALID_HEADER_OR_CORRUPTED: + return "invalid header or archive is corrupted"; + case MZ_ZIP_UNSUPPORTED_MULTIDISK: + return "unsupported multidisk archive"; + case MZ_ZIP_DECOMPRESSION_FAILED: + return "decompression failed or archive is corrupted"; + case MZ_ZIP_COMPRESSION_FAILED: + return "compression failed"; + case MZ_ZIP_UNEXPECTED_DECOMPRESSED_SIZE: + return "unexpected decompressed size"; + case MZ_ZIP_CRC_CHECK_FAILED: + return "CRC-32 check failed"; + case MZ_ZIP_UNSUPPORTED_CDIR_SIZE: + return "unsupported central directory size"; + case MZ_ZIP_ALLOC_FAILED: + return "allocation failed"; + case MZ_ZIP_FILE_OPEN_FAILED: + return "file open failed"; + case MZ_ZIP_FILE_CREATE_FAILED: + return "file create failed"; + case MZ_ZIP_FILE_WRITE_FAILED: + return "file write failed"; + case MZ_ZIP_FILE_READ_FAILED: + return "file read failed"; + case MZ_ZIP_FILE_CLOSE_FAILED: + return "file close failed"; + case MZ_ZIP_FILE_SEEK_FAILED: + return "file seek failed"; + case MZ_ZIP_FILE_STAT_FAILED: + return "file stat failed"; + case MZ_ZIP_INVALID_PARAMETER: + return "invalid parameter"; + case MZ_ZIP_INVALID_FILENAME: + return "invalid filename"; + case MZ_ZIP_BUF_TOO_SMALL: + return "buffer too small"; + case MZ_ZIP_INTERNAL_ERROR: + return "internal error"; + case MZ_ZIP_FILE_NOT_FOUND: + return "file not found"; + case MZ_ZIP_ARCHIVE_TOO_LARGE: + return "archive is too large"; + case MZ_ZIP_VALIDATION_FAILED: + return "validation failed"; + case MZ_ZIP_WRITE_CALLBACK_FAILED: + return "write callback failed"; + case MZ_ZIP_TOTAL_ERRORS: + return "total errors"; + default: + break; + } + + return "unknown error"; + } + + /* Note: Just because the archive is not zip64 doesn't necessarily mean it doesn't have Zip64 extended information extra field, argh. */ + mz_bool mz_zip_is_zip64(mz_zip_archive *pZip) + { + if ((!pZip) || (!pZip->m_pState)) + return MZ_FALSE; + + return pZip->m_pState->m_zip64; + } + + size_t mz_zip_get_central_dir_size(mz_zip_archive *pZip) + { + if ((!pZip) || (!pZip->m_pState)) + return 0; + + return pZip->m_pState->m_central_dir.m_size; + } + + mz_uint mz_zip_reader_get_num_files(mz_zip_archive *pZip) + { + return pZip ? pZip->m_total_files : 0; + } + + mz_uint64 mz_zip_get_archive_size(mz_zip_archive *pZip) + { + if (!pZip) + return 0; + return pZip->m_archive_size; + } + + mz_uint64 mz_zip_get_archive_file_start_offset(mz_zip_archive *pZip) + { + if ((!pZip) || (!pZip->m_pState)) + return 0; + return pZip->m_pState->m_file_archive_start_ofs; + } + + MZ_FILE *mz_zip_get_cfile(mz_zip_archive *pZip) + { + if ((!pZip) || (!pZip->m_pState)) + return 0; + return pZip->m_pState->m_pFile; + } + + size_t mz_zip_read_archive_data(mz_zip_archive *pZip, mz_uint64 file_ofs, void *pBuf, size_t n) + { + if ((!pZip) || (!pZip->m_pState) || (!pBuf) || (!pZip->m_pRead)) + return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + + return pZip->m_pRead(pZip->m_pIO_opaque, file_ofs, pBuf, n); + } + + mz_uint mz_zip_reader_get_filename(mz_zip_archive *pZip, mz_uint file_index, char *pFilename, mz_uint filename_buf_size) + { + mz_uint n; + const mz_uint8 *p = mz_zip_get_cdh(pZip, file_index); + if (!p) + { + if (filename_buf_size) + pFilename[0] = '\0'; + mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER); + return 0; + } + n = MZ_READ_LE16(p + MZ_ZIP_CDH_FILENAME_LEN_OFS); + if (filename_buf_size) + { + n = MZ_MIN(n, filename_buf_size - 1); + memcpy(pFilename, p + MZ_ZIP_CENTRAL_DIR_HEADER_SIZE, n); + pFilename[n] = '\0'; + } + return n + 1; + } + + mz_bool mz_zip_reader_file_stat(mz_zip_archive *pZip, mz_uint file_index, mz_zip_archive_file_stat *pStat) + { + return mz_zip_file_stat_internal(pZip, file_index, mz_zip_get_cdh(pZip, file_index), pStat, NULL); + } + + mz_bool mz_zip_end(mz_zip_archive *pZip) + { + if (!pZip) + return MZ_FALSE; + + if (pZip->m_zip_mode == MZ_ZIP_MODE_READING) + return mz_zip_reader_end(pZip); +#ifndef MINIZ_NO_ARCHIVE_WRITING_APIS + else if ((pZip->m_zip_mode == MZ_ZIP_MODE_WRITING) || (pZip->m_zip_mode == MZ_ZIP_MODE_WRITING_HAS_BEEN_FINALIZED)) + return mz_zip_writer_end(pZip); +#endif + + return MZ_FALSE; + } + +#ifdef __cplusplus +} +#endif + +#endif /*#ifndef MINIZ_NO_ARCHIVE_APIS*/ diff --git a/lib/miniz/third_party/miniz.h b/lib/miniz/third_party/miniz.h new file mode 100644 index 0000000000..d8244d085b --- /dev/null +++ b/lib/miniz/third_party/miniz.h @@ -0,0 +1,1510 @@ +#ifndef MINIZ_EXPORT +#define MINIZ_EXPORT +#endif +/* miniz.c 3.1.2 - public domain deflate/inflate, zlib-subset, ZIP reading/writing/appending, PNG writing + See "unlicense" statement at the end of this file. + Rich Geldreich , last updated Oct. 13, 2013 + Implements RFC 1950: http://www.ietf.org/rfc/rfc1950.txt and RFC 1951: http://www.ietf.org/rfc/rfc1951.txt + + Most API's defined in miniz.c are optional. For example, to disable the archive related functions just define + MINIZ_NO_ARCHIVE_APIS, or to get rid of all stdio usage define MINIZ_NO_STDIO (see the list below for more macros). + + * Low-level Deflate/Inflate implementation notes: + + Compression: Use the "tdefl" API's. The compressor supports raw, static, and dynamic blocks, lazy or + greedy parsing, match length filtering, RLE-only, and Huffman-only streams. It performs and compresses + approximately as well as zlib. + + Decompression: Use the "tinfl" API's. The entire decompressor is implemented as a single function + coroutine: see tinfl_decompress(). It supports decompression into a 32KB (or larger power of 2) wrapping buffer, or into a memory + block large enough to hold the entire file. + + The low-level tdefl/tinfl API's do not make any use of dynamic memory allocation. + + * zlib-style API notes: + + miniz.c implements a fairly large subset of zlib. There's enough functionality present for it to be a drop-in + zlib replacement in many apps: + The z_stream struct, optional memory allocation callbacks + deflateInit/deflateInit2/deflate/deflateReset/deflateEnd/deflateBound + inflateInit/inflateInit2/inflate/inflateReset/inflateEnd + compress, compress2, compressBound, uncompress + CRC-32, Adler-32 - Using modern, minimal code size, CPU cache friendly routines. + Supports raw deflate streams or standard zlib streams with adler-32 checking. + + Limitations: + The callback API's are not implemented yet. No support for gzip headers or zlib static dictionaries. + I've tried to closely emulate zlib's various flavors of stream flushing and return status codes, but + there are no guarantees that miniz.c pulls this off perfectly. + + * PNG writing: See the tdefl_write_image_to_png_file_in_memory() function, originally written by + Alex Evans. Supports 1-4 bytes/pixel images. + + * ZIP archive API notes: + + The ZIP archive API's where designed with simplicity and efficiency in mind, with just enough abstraction to + get the job done with minimal fuss. There are simple API's to retrieve file information, read files from + existing archives, create new archives, append new files to existing archives, or clone archive data from + one archive to another. It supports archives located in memory or the heap, on disk (using stdio.h), + or you can specify custom file read/write callbacks. + + - Archive reading: Just call this function to read a single file from a disk archive: + + void *mz_zip_extract_archive_file_to_heap(const char *pZip_filename, const char *pArchive_name, + size_t *pSize, mz_uint zip_flags); + + For more complex cases, use the "mz_zip_reader" functions. Upon opening an archive, the entire central + directory is located and read as-is into memory, and subsequent file access only occurs when reading individual files. + + - Archives file scanning: The simple way is to use this function to scan a loaded archive for a specific file: + + int mz_zip_reader_locate_file(mz_zip_archive *pZip, const char *pName, const char *pComment, mz_uint flags); + + The locate operation can optionally check file comments too, which (as one example) can be used to identify + multiple versions of the same file in an archive. This function uses a simple linear search through the central + directory, so it's not very fast. + + Alternately, you can iterate through all the files in an archive (using mz_zip_reader_get_num_files()) and + retrieve detailed info on each file by calling mz_zip_reader_file_stat(). + + - Archive creation: Use the "mz_zip_writer" functions. The ZIP writer immediately writes compressed file data + to disk and builds an exact image of the central directory in memory. The central directory image is written + all at once at the end of the archive file when the archive is finalized. + + The archive writer can optionally align each file's local header and file data to any power of 2 alignment, + which can be useful when the archive will be read from optical media. Also, the writer supports placing + arbitrary data blobs at the very beginning of ZIP archives. Archives written using either feature are still + readable by any ZIP tool. + + - Archive appending: The simple way to add a single file to an archive is to call this function: + + mz_bool mz_zip_add_mem_to_archive_file_in_place(const char *pZip_filename, const char *pArchive_name, + const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags); + + The archive will be created if it doesn't already exist, otherwise it'll be appended to. + Note the appending is done in-place and is not an atomic operation, so if something goes wrong + during the operation it's possible the archive could be left without a central directory (although the local + file headers and file data will be fine, so the archive will be recoverable). + + For more complex archive modification scenarios: + 1. The safest way is to use a mz_zip_reader to read the existing archive, cloning only those bits you want to + preserve into a new archive using using the mz_zip_writer_add_from_zip_reader() function (which compiles the + compressed file data as-is). When you're done, delete the old archive and rename the newly written archive, and + you're done. This is safe but requires a bunch of temporary disk space or heap memory. + + 2. Or, you can convert an mz_zip_reader in-place to an mz_zip_writer using mz_zip_writer_init_from_reader(), + append new files as needed, then finalize the archive which will write an updated central directory to the + original archive. (This is basically what mz_zip_add_mem_to_archive_file_in_place() does.) There's a + possibility that the archive's central directory could be lost with this method if anything goes wrong, though. + + - ZIP archive support limitations: + No spanning support. Extraction functions can only handle unencrypted, stored or deflated files. + Requires streams capable of seeking. + + * This is a header file library, like stb_image.c. To get only a header file, either cut and paste the + below header, or create miniz.h, #define MINIZ_HEADER_FILE_ONLY, and then include miniz.c from it. + + * Important: For best perf. be sure to customize the below macros for your target platform: + #define MINIZ_USE_UNALIGNED_LOADS_AND_STORES 1 + #define MINIZ_LITTLE_ENDIAN 1 + #define MINIZ_HAS_64BIT_REGISTERS 1 + + * On platforms using glibc, Be sure to "#define _LARGEFILE64_SOURCE 1" before including miniz.c to ensure miniz + uses the 64-bit variants: fopen64(), stat64(), etc. Otherwise you won't be able to process large files + (i.e. 32-bit stat() fails for me on files > 0x7FFFFFFF bytes). +*/ +#pragma once + + + +#if defined(__STRICT_ANSI__) +#define MZ_FORCEINLINE +#elif defined(_MSC_VER) +#define MZ_FORCEINLINE __forceinline +#elif defined(__GNUC__) +#define MZ_FORCEINLINE __inline__ __attribute__((__always_inline__)) +#else +#define MZ_FORCEINLINE inline +#endif + +/* Defines to completely disable specific portions of miniz.c: + If all macros here are defined the only functionality remaining will be CRC-32 and adler-32. */ + +/* Define MINIZ_NO_STDIO to disable all usage and any functions which rely on stdio for file I/O. */ +/*#define MINIZ_NO_STDIO */ + +/* If MINIZ_NO_TIME is specified then the ZIP archive functions will not be able to get the current time, or */ +/* get/set file times, and the C run-time funcs that get/set times won't be called. */ +/* The current downside is the times written to your archives will be from 1979. */ +/*#define MINIZ_NO_TIME */ + +/* Define MINIZ_NO_DEFLATE_APIS to disable all compression API's. */ +/*#define MINIZ_NO_DEFLATE_APIS */ + +/* Define MINIZ_NO_INFLATE_APIS to disable all decompression API's. */ +/*#define MINIZ_NO_INFLATE_APIS */ + +/* Define MINIZ_NO_ARCHIVE_APIS to disable all ZIP archive API's. */ +/*#define MINIZ_NO_ARCHIVE_APIS */ + +/* Define MINIZ_NO_ARCHIVE_WRITING_APIS to disable all writing related ZIP archive API's. */ +/*#define MINIZ_NO_ARCHIVE_WRITING_APIS */ + +/* Define MINIZ_NO_ZLIB_APIS to remove all ZLIB-style compression/decompression API's. */ +/*#define MINIZ_NO_ZLIB_APIS */ + +/* Define MINIZ_NO_ZLIB_COMPATIBLE_NAME to disable zlib names, to prevent conflicts against stock zlib. */ +/*#define MINIZ_NO_ZLIB_COMPATIBLE_NAMES */ + +/* Define MINIZ_NO_MALLOC to disable all calls to malloc, free, and realloc. + Note if MINIZ_NO_MALLOC is defined then the user must always provide custom user alloc/free/realloc + callbacks to the zlib and archive API's, and a few stand-alone helper API's which don't provide custom user + functions (such as tdefl_compress_mem_to_heap() and tinfl_decompress_mem_to_heap()) won't work. */ +/*#define MINIZ_NO_MALLOC */ + +#ifdef MINIZ_NO_INFLATE_APIS +#define MINIZ_NO_ARCHIVE_APIS +#endif + +#ifdef MINIZ_NO_DEFLATE_APIS +#define MINIZ_NO_ARCHIVE_WRITING_APIS +#endif + +#if defined(__TINYC__) && (defined(__linux) || defined(__linux__)) +/* TODO: Work around "error: include file 'sys\utime.h' when compiling with tcc on Linux */ +#define MINIZ_NO_TIME +#endif + +#include + +#if !defined(MINIZ_NO_TIME) && !defined(MINIZ_NO_ARCHIVE_APIS) +#include +#endif + +#if defined(_M_IX86) || defined(_M_X64) || defined(__i386__) || defined(__i386) || defined(__i486__) || defined(__i486) || defined(i386) || defined(__ia64__) || defined(__x86_64__) +/* MINIZ_X86_OR_X64_CPU is only used to help set the below macros. */ +#define MINIZ_X86_OR_X64_CPU 1 +#else +#define MINIZ_X86_OR_X64_CPU 0 +#endif + +/* Set MINIZ_LITTLE_ENDIAN only if not set */ +#if !defined(MINIZ_LITTLE_ENDIAN) +#if defined(__BYTE_ORDER__) && defined(__ORDER_LITTLE_ENDIAN__) + +#if (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__) +/* Set MINIZ_LITTLE_ENDIAN to 1 if the processor is little endian. */ +#define MINIZ_LITTLE_ENDIAN 1 +#else +#define MINIZ_LITTLE_ENDIAN 0 +#endif + +#else + +#if MINIZ_X86_OR_X64_CPU +#define MINIZ_LITTLE_ENDIAN 1 +#else +#define MINIZ_LITTLE_ENDIAN 0 +#endif + +#endif +#endif + +/* Using unaligned loads and stores causes errors when using UBSan */ +#if defined(__has_feature) +#if __has_feature(undefined_behavior_sanitizer) +#define MINIZ_USE_UNALIGNED_LOADS_AND_STORES 0 +#endif +#endif + +/* Set MINIZ_USE_UNALIGNED_LOADS_AND_STORES only if not set */ +#if !defined(MINIZ_USE_UNALIGNED_LOADS_AND_STORES) +#if MINIZ_X86_OR_X64_CPU +/* Set MINIZ_USE_UNALIGNED_LOADS_AND_STORES to 1 on CPU's that permit efficient integer loads and stores from unaligned addresses. */ +#define MINIZ_USE_UNALIGNED_LOADS_AND_STORES 0 +#define MINIZ_UNALIGNED_USE_MEMCPY +#else +#define MINIZ_USE_UNALIGNED_LOADS_AND_STORES 0 +#endif +#endif + +#if defined(_M_X64) || defined(_WIN64) || defined(__MINGW64__) || defined(_LP64) || defined(__LP64__) || defined(__ia64__) || defined(__x86_64__) +/* Set MINIZ_HAS_64BIT_REGISTERS to 1 if operations on 64-bit integers are reasonably fast (and don't involve compiler generated calls to helper functions). */ +#define MINIZ_HAS_64BIT_REGISTERS 1 +#else +#define MINIZ_HAS_64BIT_REGISTERS 0 +#endif + +#ifdef __cplusplus +extern "C" +{ +#endif + + /* ------------------- zlib-style API Definitions. */ + + /* For more compatibility with zlib, miniz.c uses unsigned long for some parameters/struct members. Beware: mz_ulong can be either 32 or 64-bits! */ + typedef unsigned long mz_ulong; + + /* mz_free() internally uses the MZ_FREE() macro (which by default calls free() unless you've modified the MZ_MALLOC macro) to release a block allocated from the heap. */ + MINIZ_EXPORT void mz_free(void *p); + +#define MZ_ADLER32_INIT (1) + /* mz_adler32() returns the initial adler-32 value to use when called with ptr==NULL. */ + MINIZ_EXPORT mz_ulong mz_adler32(mz_ulong adler, const unsigned char *ptr, size_t buf_len); + +#define MZ_CRC32_INIT (0) + /* mz_crc32() returns the initial CRC-32 value to use when called with ptr==NULL. */ + MINIZ_EXPORT mz_ulong mz_crc32(mz_ulong crc, const unsigned char *ptr, size_t buf_len); + + /* Compression strategies. */ + enum + { + MZ_DEFAULT_STRATEGY = 0, + MZ_FILTERED = 1, + MZ_HUFFMAN_ONLY = 2, + MZ_RLE = 3, + MZ_FIXED = 4 + }; + +/* Method */ +#define MZ_DEFLATED 8 + + /* Heap allocation callbacks. + Note that mz_alloc_func parameter types purposely differ from zlib's: items/size is size_t, not unsigned long. */ + typedef void *(*mz_alloc_func)(void *opaque, size_t items, size_t size); + typedef void (*mz_free_func)(void *opaque, void *address); + typedef void *(*mz_realloc_func)(void *opaque, void *address, size_t items, size_t size); + + /* Compression levels: 0-9 are the standard zlib-style levels, 10 is best possible compression (not zlib compatible, and may be very slow), MZ_DEFAULT_COMPRESSION=MZ_DEFAULT_LEVEL. */ + enum + { + MZ_NO_COMPRESSION = 0, + MZ_BEST_SPEED = 1, + MZ_BEST_COMPRESSION = 9, + MZ_UBER_COMPRESSION = 10, + MZ_DEFAULT_LEVEL = 6, + MZ_DEFAULT_COMPRESSION = -1 + }; + +#define MZ_VERSION "11.3.2" +#define MZ_VERNUM 0xB302 +#define MZ_VER_MAJOR 11 +#define MZ_VER_MINOR 3 +#define MZ_VER_REVISION 2 +#define MZ_VER_SUBREVISION 0 + +#ifndef MINIZ_NO_ZLIB_APIS + + /* Flush values. For typical usage you only need MZ_NO_FLUSH and MZ_FINISH. The other values are for advanced use (refer to the zlib docs). */ + enum + { + MZ_NO_FLUSH = 0, + MZ_PARTIAL_FLUSH = 1, + MZ_SYNC_FLUSH = 2, + MZ_FULL_FLUSH = 3, + MZ_FINISH = 4, + MZ_BLOCK = 5 + }; + + /* Return status codes. MZ_PARAM_ERROR is non-standard. */ + enum + { + MZ_OK = 0, + MZ_STREAM_END = 1, + MZ_NEED_DICT = 2, + MZ_ERRNO = -1, + MZ_STREAM_ERROR = -2, + MZ_DATA_ERROR = -3, + MZ_MEM_ERROR = -4, + MZ_BUF_ERROR = -5, + MZ_VERSION_ERROR = -6, + MZ_PARAM_ERROR = -10000 + }; + +/* Window bits */ +#define MZ_DEFAULT_WINDOW_BITS 15 + + struct mz_internal_state; + + /* Compression/decompression stream struct. */ + typedef struct mz_stream_s + { + const unsigned char *next_in; /* pointer to next byte to read */ + unsigned int avail_in; /* number of bytes available at next_in */ + mz_ulong total_in; /* total number of bytes consumed so far */ + + unsigned char *next_out; /* pointer to next byte to write */ + unsigned int avail_out; /* number of bytes that can be written to next_out */ + mz_ulong total_out; /* total number of bytes produced so far */ + + char *msg; /* error msg (unused) */ + struct mz_internal_state *state; /* internal state, allocated by zalloc/zfree */ + + mz_alloc_func zalloc; /* optional heap allocation function (defaults to malloc) */ + mz_free_func zfree; /* optional heap free function (defaults to free) */ + void *opaque; /* heap alloc function user pointer */ + + int data_type; /* data_type (unused) */ + mz_ulong adler; /* adler32 of the source or uncompressed data */ + mz_ulong reserved; /* not used */ + } mz_stream; + + typedef mz_stream *mz_streamp; + + /* Returns the version string of miniz.c. */ + MINIZ_EXPORT const char *mz_version(void); + +#ifndef MINIZ_NO_DEFLATE_APIS + + /* mz_deflateInit() initializes a compressor with default options: */ + /* Parameters: */ + /* pStream must point to an initialized mz_stream struct. */ + /* level must be between [MZ_NO_COMPRESSION, MZ_BEST_COMPRESSION]. */ + /* level 1 enables a specially optimized compression function that's been optimized purely for performance, not ratio. */ + /* (This special func. is currently only enabled when MINIZ_USE_UNALIGNED_LOADS_AND_STORES and MINIZ_LITTLE_ENDIAN are defined.) */ + /* Return values: */ + /* MZ_OK on success. */ + /* MZ_STREAM_ERROR if the stream is bogus. */ + /* MZ_PARAM_ERROR if the input parameters are bogus. */ + /* MZ_MEM_ERROR on out of memory. */ + MINIZ_EXPORT int mz_deflateInit(mz_streamp pStream, int level); + + /* mz_deflateInit2() is like mz_deflate(), except with more control: */ + /* Additional parameters: */ + /* method must be MZ_DEFLATED */ + /* window_bits must be MZ_DEFAULT_WINDOW_BITS (to wrap the deflate stream with zlib header/adler-32 footer) or -MZ_DEFAULT_WINDOW_BITS (raw deflate/no header or footer) */ + /* mem_level must be between [1, 9] (it's checked but ignored by miniz.c) */ + MINIZ_EXPORT int mz_deflateInit2(mz_streamp pStream, int level, int method, int window_bits, int mem_level, int strategy); + + /* Quickly resets a compressor without having to reallocate anything. Same as calling mz_deflateEnd() followed by mz_deflateInit()/mz_deflateInit2(). */ + MINIZ_EXPORT int mz_deflateReset(mz_streamp pStream); + + /* mz_deflate() compresses the input to output, consuming as much of the input and producing as much output as possible. */ + /* Parameters: */ + /* pStream is the stream to read from and write to. You must initialize/update the next_in, avail_in, next_out, and avail_out members. */ + /* flush may be MZ_NO_FLUSH, MZ_PARTIAL_FLUSH/MZ_SYNC_FLUSH, MZ_FULL_FLUSH, or MZ_FINISH. */ + /* Return values: */ + /* MZ_OK on success (when flushing, or if more input is needed but not available, and/or there's more output to be written but the output buffer is full). */ + /* MZ_STREAM_END if all input has been consumed and all output bytes have been written. Don't call mz_deflate() on the stream anymore. */ + /* MZ_STREAM_ERROR if the stream is bogus. */ + /* MZ_PARAM_ERROR if one of the parameters is invalid. */ + /* MZ_BUF_ERROR if no forward progress is possible because the input and/or output buffers are empty. (Fill up the input buffer or free up some output space and try again.) */ + MINIZ_EXPORT int mz_deflate(mz_streamp pStream, int flush); + + /* mz_deflateEnd() deinitializes a compressor: */ + /* Return values: */ + /* MZ_OK on success. */ + /* MZ_STREAM_ERROR if the stream is bogus. */ + MINIZ_EXPORT int mz_deflateEnd(mz_streamp pStream); + + /* mz_deflateBound() returns a (very) conservative upper bound on the amount of data that could be generated by deflate(), assuming flush is set to only MZ_NO_FLUSH or MZ_FINISH. */ + MINIZ_EXPORT mz_ulong mz_deflateBound(mz_streamp pStream, mz_ulong source_len); + + /* Single-call compression functions mz_compress() and mz_compress2(): */ + /* Returns MZ_OK on success, or one of the error codes from mz_deflate() on failure. */ + MINIZ_EXPORT int mz_compress(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong source_len); + MINIZ_EXPORT int mz_compress2(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong source_len, int level); + + /* mz_compressBound() returns a (very) conservative upper bound on the amount of data that could be generated by calling mz_compress(). */ + MINIZ_EXPORT mz_ulong mz_compressBound(mz_ulong source_len); + +#endif /*#ifndef MINIZ_NO_DEFLATE_APIS*/ + +#ifndef MINIZ_NO_INFLATE_APIS + + /* Initializes a decompressor. */ + MINIZ_EXPORT int mz_inflateInit(mz_streamp pStream); + + /* mz_inflateInit2() is like mz_inflateInit() with an additional option that controls the window size and whether or not the stream has been wrapped with a zlib header/footer: */ + /* window_bits must be MZ_DEFAULT_WINDOW_BITS (to parse zlib header/footer) or -MZ_DEFAULT_WINDOW_BITS (raw deflate). */ + MINIZ_EXPORT int mz_inflateInit2(mz_streamp pStream, int window_bits); + + /* Quickly resets a compressor without having to reallocate anything. Same as calling mz_inflateEnd() followed by mz_inflateInit()/mz_inflateInit2(). */ + MINIZ_EXPORT int mz_inflateReset(mz_streamp pStream); + + /* Decompresses the input stream to the output, consuming only as much of the input as needed, and writing as much to the output as possible. */ + /* Parameters: */ + /* pStream is the stream to read from and write to. You must initialize/update the next_in, avail_in, next_out, and avail_out members. */ + /* flush may be MZ_NO_FLUSH, MZ_SYNC_FLUSH, or MZ_FINISH. */ + /* On the first call, if flush is MZ_FINISH it's assumed the input and output buffers are both sized large enough to decompress the entire stream in a single call (this is slightly faster). */ + /* MZ_FINISH implies that there are no more source bytes available beside what's already in the input buffer, and that the output buffer is large enough to hold the rest of the decompressed data. */ + /* Return values: */ + /* MZ_OK on success. Either more input is needed but not available, and/or there's more output to be written but the output buffer is full. */ + /* MZ_STREAM_END if all needed input has been consumed and all output bytes have been written. For zlib streams, the adler-32 of the decompressed data has also been verified. */ + /* MZ_STREAM_ERROR if the stream is bogus. */ + /* MZ_DATA_ERROR if the deflate stream is invalid. */ + /* MZ_PARAM_ERROR if one of the parameters is invalid. */ + /* MZ_BUF_ERROR if no forward progress is possible because the input buffer is empty but the inflater needs more input to continue, or if the output buffer is not large enough. Call mz_inflate() again */ + /* with more input data, or with more room in the output buffer (except when using single call decompression, described above). */ + MINIZ_EXPORT int mz_inflate(mz_streamp pStream, int flush); + + /* Deinitializes a decompressor. */ + MINIZ_EXPORT int mz_inflateEnd(mz_streamp pStream); + + /* Single-call decompression. */ + /* Returns MZ_OK on success, or one of the error codes from mz_inflate() on failure. */ + MINIZ_EXPORT int mz_uncompress(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong source_len); + MINIZ_EXPORT int mz_uncompress2(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong *pSource_len); +#endif /*#ifndef MINIZ_NO_INFLATE_APIS*/ + + /* Returns a string description of the specified error code, or NULL if the error code is invalid. */ + MINIZ_EXPORT const char *mz_error(int err); + +/* Redefine zlib-compatible names to miniz equivalents, so miniz.c can be used as a drop-in replacement for the subset of zlib that miniz.c supports. */ +/* Define MINIZ_NO_ZLIB_COMPATIBLE_NAMES to disable zlib-compatibility if you use zlib in the same project. */ +#ifndef MINIZ_NO_ZLIB_COMPATIBLE_NAMES + typedef unsigned char Byte; + typedef unsigned int uInt; + typedef mz_ulong uLong; + typedef Byte Bytef; + typedef uInt uIntf; + typedef char charf; + typedef int intf; + typedef void *voidpf; + typedef uLong uLongf; + typedef void *voidp; + typedef void *const voidpc; +#define Z_NULL 0 +#define Z_NO_FLUSH MZ_NO_FLUSH +#define Z_PARTIAL_FLUSH MZ_PARTIAL_FLUSH +#define Z_SYNC_FLUSH MZ_SYNC_FLUSH +#define Z_FULL_FLUSH MZ_FULL_FLUSH +#define Z_FINISH MZ_FINISH +#define Z_BLOCK MZ_BLOCK +#define Z_OK MZ_OK +#define Z_STREAM_END MZ_STREAM_END +#define Z_NEED_DICT MZ_NEED_DICT +#define Z_ERRNO MZ_ERRNO +#define Z_STREAM_ERROR MZ_STREAM_ERROR +#define Z_DATA_ERROR MZ_DATA_ERROR +#define Z_MEM_ERROR MZ_MEM_ERROR +#define Z_BUF_ERROR MZ_BUF_ERROR +#define Z_VERSION_ERROR MZ_VERSION_ERROR +#define Z_PARAM_ERROR MZ_PARAM_ERROR +#define Z_NO_COMPRESSION MZ_NO_COMPRESSION +#define Z_BEST_SPEED MZ_BEST_SPEED +#define Z_BEST_COMPRESSION MZ_BEST_COMPRESSION +#define Z_DEFAULT_COMPRESSION MZ_DEFAULT_COMPRESSION +#define Z_DEFAULT_STRATEGY MZ_DEFAULT_STRATEGY +#define Z_FILTERED MZ_FILTERED +#define Z_HUFFMAN_ONLY MZ_HUFFMAN_ONLY +#define Z_RLE MZ_RLE +#define Z_FIXED MZ_FIXED +#define Z_DEFLATED MZ_DEFLATED +#define Z_DEFAULT_WINDOW_BITS MZ_DEFAULT_WINDOW_BITS + /* See mz_alloc_func */ + typedef void *(*alloc_func)(void *opaque, size_t items, size_t size); + /* See mz_free_func */ + typedef void (*free_func)(void *opaque, void *address); + +#define internal_state mz_internal_state +#define z_stream mz_stream + +#ifndef MINIZ_NO_DEFLATE_APIS + /* Compatiblity with zlib API. See called functions for documentation */ + static MZ_FORCEINLINE int deflateInit(mz_streamp pStream, int level) + { + return mz_deflateInit(pStream, level); + } + static MZ_FORCEINLINE int deflateInit2(mz_streamp pStream, int level, int method, int window_bits, int mem_level, int strategy) + { + return mz_deflateInit2(pStream, level, method, window_bits, mem_level, strategy); + } + static MZ_FORCEINLINE int deflateReset(mz_streamp pStream) + { + return mz_deflateReset(pStream); + } + static MZ_FORCEINLINE int deflate(mz_streamp pStream, int flush) + { + return mz_deflate(pStream, flush); + } + static MZ_FORCEINLINE int deflateEnd(mz_streamp pStream) + { + return mz_deflateEnd(pStream); + } + static MZ_FORCEINLINE mz_ulong deflateBound(mz_streamp pStream, mz_ulong source_len) + { + return mz_deflateBound(pStream, source_len); + } + static MZ_FORCEINLINE int compress(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong source_len) + { + return mz_compress(pDest, pDest_len, pSource, source_len); + } + static MZ_FORCEINLINE int compress2(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char *pSource, mz_ulong source_len, int level) + { + return mz_compress2(pDest, pDest_len, pSource, source_len, level); + } + static MZ_FORCEINLINE mz_ulong compressBound(mz_ulong source_len) + { + return mz_compressBound(source_len); + } +#endif /*#ifndef MINIZ_NO_DEFLATE_APIS*/ + +#ifndef MINIZ_NO_INFLATE_APIS + /* Compatiblity with zlib API. See called functions for documentation */ + static MZ_FORCEINLINE int inflateInit(mz_streamp pStream) + { + return mz_inflateInit(pStream); + } + + static MZ_FORCEINLINE int inflateInit2(mz_streamp pStream, int window_bits) + { + return mz_inflateInit2(pStream, window_bits); + } + + static MZ_FORCEINLINE int inflateReset(mz_streamp pStream) + { + return mz_inflateReset(pStream); + } + + static MZ_FORCEINLINE int inflate(mz_streamp pStream, int flush) + { + return mz_inflate(pStream, flush); + } + + static MZ_FORCEINLINE int inflateEnd(mz_streamp pStream) + { + return mz_inflateEnd(pStream); + } + + static MZ_FORCEINLINE int uncompress(unsigned char* pDest, mz_ulong* pDest_len, const unsigned char* pSource, mz_ulong source_len) + { + return mz_uncompress(pDest, pDest_len, pSource, source_len); + } + + static MZ_FORCEINLINE int uncompress2(unsigned char* pDest, mz_ulong* pDest_len, const unsigned char* pSource, mz_ulong* pSource_len) + { + return mz_uncompress2(pDest, pDest_len, pSource, pSource_len); + } +#endif /*#ifndef MINIZ_NO_INFLATE_APIS*/ + + static MZ_FORCEINLINE mz_ulong crc32(mz_ulong crc, const unsigned char *ptr, size_t buf_len) + { + return mz_crc32(crc, ptr, buf_len); + } + + static MZ_FORCEINLINE mz_ulong adler32(mz_ulong adler, const unsigned char *ptr, size_t buf_len) + { + return mz_adler32(adler, ptr, buf_len); + } + +#define MAX_WBITS 15 +#define MAX_MEM_LEVEL 9 + + static MZ_FORCEINLINE const char* zError(int err) + { + return mz_error(err); + } +#define ZLIB_VERSION MZ_VERSION +#define ZLIB_VERNUM MZ_VERNUM +#define ZLIB_VER_MAJOR MZ_VER_MAJOR +#define ZLIB_VER_MINOR MZ_VER_MINOR +#define ZLIB_VER_REVISION MZ_VER_REVISION +#define ZLIB_VER_SUBREVISION MZ_VER_SUBREVISION + +#define zlibVersion mz_version +#define zlib_version mz_version() +#endif /* #ifndef MINIZ_NO_ZLIB_COMPATIBLE_NAMES */ + +#endif /* MINIZ_NO_ZLIB_APIS */ + +#ifdef __cplusplus +} +#endif + + + + + +#pragma once +#include +#include +#include +#include + + + +/* ------------------- Types and macros */ +typedef unsigned char mz_uint8; +typedef int16_t mz_int16; +typedef uint16_t mz_uint16; +typedef uint32_t mz_uint32; +typedef uint32_t mz_uint; +typedef int64_t mz_int64; +typedef uint64_t mz_uint64; +typedef int mz_bool; + +#define MZ_FALSE (0) +#define MZ_TRUE (1) + +/* Works around MSVC's spammy "warning C4127: conditional expression is constant" message. */ +#ifdef _MSC_VER +#define MZ_MACRO_END while (0, 0) +#else +#define MZ_MACRO_END while (0) +#endif + +#ifdef MINIZ_NO_STDIO +#define MZ_FILE void * +#else +#include +#define MZ_FILE FILE +#endif /* #ifdef MINIZ_NO_STDIO */ + +#ifdef MINIZ_NO_TIME +typedef struct mz_dummy_time_t_tag +{ + mz_uint32 m_dummy1; + mz_uint32 m_dummy2; +} mz_dummy_time_t; +#define MZ_TIME_T mz_dummy_time_t +#else +#define MZ_TIME_T time_t +#endif + +#define MZ_ASSERT(x) assert(x) + +#ifdef MINIZ_NO_MALLOC +#define MZ_MALLOC(x) NULL +#define MZ_FREE(x) (void)x, ((void)0) +#define MZ_REALLOC(p, x) NULL +#else +#define MZ_MALLOC(x) malloc(x) +#define MZ_FREE(x) free(x) +#define MZ_REALLOC(p, x) realloc(p, x) +#endif + +#define MZ_MAX(a, b) (((a) > (b)) ? (a) : (b)) +#define MZ_MIN(a, b) (((a) < (b)) ? (a) : (b)) +#define MZ_CLEAR_OBJ(obj) memset(&(obj), 0, sizeof(obj)) +#define MZ_CLEAR_ARR(obj) memset((obj), 0, sizeof(obj)) +#define MZ_CLEAR_PTR(obj) memset((obj), 0, sizeof(*obj)) + +#if MINIZ_USE_UNALIGNED_LOADS_AND_STORES && MINIZ_LITTLE_ENDIAN +#define MZ_READ_LE16(p) *((const mz_uint16 *)(p)) +#define MZ_READ_LE32(p) *((const mz_uint32 *)(p)) +#else +#define MZ_READ_LE16(p) ((mz_uint32)(((const mz_uint8 *)(p))[0]) | ((mz_uint32)(((const mz_uint8 *)(p))[1]) << 8U)) +#define MZ_READ_LE32(p) ((mz_uint32)(((const mz_uint8 *)(p))[0]) | ((mz_uint32)(((const mz_uint8 *)(p))[1]) << 8U) | ((mz_uint32)(((const mz_uint8 *)(p))[2]) << 16U) | ((mz_uint32)(((const mz_uint8 *)(p))[3]) << 24U)) +#endif + +#define MZ_READ_LE64(p) (((mz_uint64)MZ_READ_LE32(p)) | (((mz_uint64)MZ_READ_LE32((const mz_uint8 *)(p) + sizeof(mz_uint32))) << 32U)) + +#ifdef __cplusplus +extern "C" +{ +#endif + + extern MINIZ_EXPORT void *miniz_def_alloc_func(void *opaque, size_t items, size_t size); + extern MINIZ_EXPORT void miniz_def_free_func(void *opaque, void *address); + extern MINIZ_EXPORT void *miniz_def_realloc_func(void *opaque, void *address, size_t items, size_t size); + +#define MZ_UINT16_MAX (0xFFFFU) +#define MZ_UINT32_MAX (0xFFFFFFFFU) + +#ifdef __cplusplus +} +#endif + #pragma once + + +#ifndef MINIZ_NO_DEFLATE_APIS + +#ifdef __cplusplus +extern "C" +{ +#endif +/* ------------------- Low-level Compression API Definitions */ + +/* Set TDEFL_LESS_MEMORY to 1 to use less memory (compression will be slightly slower, and raw/dynamic blocks will be output more frequently). */ +#ifndef TDEFL_LESS_MEMORY +#define TDEFL_LESS_MEMORY 0 +#endif + + /* tdefl_init() compression flags logically OR'd together (low 12 bits contain the max. number of probes per dictionary search): */ + /* TDEFL_DEFAULT_MAX_PROBES: The compressor defaults to 128 dictionary probes per dictionary search. 0=Huffman only, 1=Huffman+LZ (fastest/crap compression), 4095=Huffman+LZ (slowest/best compression). */ + enum + { + TDEFL_HUFFMAN_ONLY = 0, + TDEFL_DEFAULT_MAX_PROBES = 128, + TDEFL_MAX_PROBES_MASK = 0xFFF + }; + + /* TDEFL_WRITE_ZLIB_HEADER: If set, the compressor outputs a zlib header before the deflate data, and the Adler-32 of the source data at the end. Otherwise, you'll get raw deflate data. */ + /* TDEFL_COMPUTE_ADLER32: Always compute the adler-32 of the input data (even when not writing zlib headers). */ + /* TDEFL_GREEDY_PARSING_FLAG: Set to use faster greedy parsing, instead of more efficient lazy parsing. */ + /* TDEFL_NONDETERMINISTIC_PARSING_FLAG: Enable to decrease the compressor's initialization time to the minimum, but the output may vary from run to run given the same input (depending on the contents of memory). */ + /* TDEFL_RLE_MATCHES: Only look for RLE matches (matches with a distance of 1) */ + /* TDEFL_FILTER_MATCHES: Discards matches <= 5 chars if enabled. */ + /* TDEFL_FORCE_ALL_STATIC_BLOCKS: Disable usage of optimized Huffman tables. */ + /* TDEFL_FORCE_ALL_RAW_BLOCKS: Only use raw (uncompressed) deflate blocks. */ + /* The low 12 bits are reserved to control the max # of hash probes per dictionary lookup (see TDEFL_MAX_PROBES_MASK). */ + enum + { + TDEFL_WRITE_ZLIB_HEADER = 0x01000, + TDEFL_COMPUTE_ADLER32 = 0x02000, + TDEFL_GREEDY_PARSING_FLAG = 0x04000, + TDEFL_NONDETERMINISTIC_PARSING_FLAG = 0x08000, + TDEFL_RLE_MATCHES = 0x10000, + TDEFL_FILTER_MATCHES = 0x20000, + TDEFL_FORCE_ALL_STATIC_BLOCKS = 0x40000, + TDEFL_FORCE_ALL_RAW_BLOCKS = 0x80000 + }; + + /* High level compression functions: */ + /* tdefl_compress_mem_to_heap() compresses a block in memory to a heap block allocated via malloc(). */ + /* On entry: */ + /* pSrc_buf, src_buf_len: Pointer and size of source block to compress. */ + /* flags: The max match finder probes (default is 128) logically OR'd against the above flags. Higher probes are slower but improve compression. */ + /* On return: */ + /* Function returns a pointer to the compressed data, or NULL on failure. */ + /* *pOut_len will be set to the compressed data's size, which could be larger than src_buf_len on uncompressible data. */ + /* The caller must free() the returned block when it's no longer needed. */ + MINIZ_EXPORT void *tdefl_compress_mem_to_heap(const void *pSrc_buf, size_t src_buf_len, size_t *pOut_len, int flags); + + /* tdefl_compress_mem_to_mem() compresses a block in memory to another block in memory. */ + /* Returns 0 on failure. */ + MINIZ_EXPORT size_t tdefl_compress_mem_to_mem(void *pOut_buf, size_t out_buf_len, const void *pSrc_buf, size_t src_buf_len, int flags); + + /* Compresses an image to a compressed PNG file in memory. */ + /* On entry: */ + /* pImage, w, h, and num_chans describe the image to compress. num_chans may be 1, 2, 3, or 4. */ + /* The image pitch in bytes per scanline will be w*num_chans. The leftmost pixel on the top scanline is stored first in memory. */ + /* level may range from [0,10], use MZ_NO_COMPRESSION, MZ_BEST_SPEED, MZ_BEST_COMPRESSION, etc. or a decent default is MZ_DEFAULT_LEVEL */ + /* If flip is true, the image will be flipped on the Y axis (useful for OpenGL apps). */ + /* On return: */ + /* Function returns a pointer to the compressed data, or NULL on failure. */ + /* *pLen_out will be set to the size of the PNG image file. */ + /* The caller must mz_free() the returned heap block (which will typically be larger than *pLen_out) when it's no longer needed. */ + MINIZ_EXPORT void *tdefl_write_image_to_png_file_in_memory_ex(const void *pImage, int w, int h, int num_chans, size_t *pLen_out, mz_uint level, mz_bool flip); + MINIZ_EXPORT void *tdefl_write_image_to_png_file_in_memory(const void *pImage, int w, int h, int num_chans, size_t *pLen_out); + + /* Output stream interface. The compressor uses this interface to write compressed data. It'll typically be called TDEFL_OUT_BUF_SIZE at a time. */ + typedef mz_bool (*tdefl_put_buf_func_ptr)(const void *pBuf, int len, void *pUser); + + /* tdefl_compress_mem_to_output() compresses a block to an output stream. The above helpers use this function internally. */ + MINIZ_EXPORT mz_bool tdefl_compress_mem_to_output(const void *pBuf, size_t buf_len, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags); + + enum + { + TDEFL_MAX_HUFF_TABLES = 3, + TDEFL_MAX_HUFF_SYMBOLS_0 = 288, + TDEFL_MAX_HUFF_SYMBOLS_1 = 32, + TDEFL_MAX_HUFF_SYMBOLS_2 = 19, + TDEFL_LZ_DICT_SIZE = 32768, + TDEFL_LZ_DICT_SIZE_MASK = TDEFL_LZ_DICT_SIZE - 1, + TDEFL_MIN_MATCH_LEN = 3, + TDEFL_MAX_MATCH_LEN = 258 + }; + +/* TDEFL_OUT_BUF_SIZE MUST be large enough to hold a single entire compressed output block (using static/fixed Huffman codes). */ +#if TDEFL_LESS_MEMORY + enum + { + TDEFL_LZ_CODE_BUF_SIZE = 24 * 1024, + TDEFL_OUT_BUF_SIZE = (TDEFL_LZ_CODE_BUF_SIZE * 13) / 10, + TDEFL_MAX_HUFF_SYMBOLS = 288, + TDEFL_LZ_HASH_BITS = 12, + TDEFL_LEVEL1_HASH_SIZE_MASK = 4095, + TDEFL_LZ_HASH_SHIFT = (TDEFL_LZ_HASH_BITS + 2) / 3, + TDEFL_LZ_HASH_SIZE = 1 << TDEFL_LZ_HASH_BITS + }; +#else +enum +{ + TDEFL_LZ_CODE_BUF_SIZE = 64 * 1024, + TDEFL_OUT_BUF_SIZE = (mz_uint)((TDEFL_LZ_CODE_BUF_SIZE * 13) / 10), + TDEFL_MAX_HUFF_SYMBOLS = 288, + TDEFL_LZ_HASH_BITS = 15, + TDEFL_LEVEL1_HASH_SIZE_MASK = 4095, + TDEFL_LZ_HASH_SHIFT = (TDEFL_LZ_HASH_BITS + 2) / 3, + TDEFL_LZ_HASH_SIZE = 1 << TDEFL_LZ_HASH_BITS +}; +#endif + + /* The low-level tdefl functions below may be used directly if the above helper functions aren't flexible enough. The low-level functions don't make any heap allocations, unlike the above helper functions. */ + typedef enum + { + TDEFL_STATUS_BAD_PARAM = -2, + TDEFL_STATUS_PUT_BUF_FAILED = -1, + TDEFL_STATUS_OKAY = 0, + TDEFL_STATUS_DONE = 1 + } tdefl_status; + + /* Must map to MZ_NO_FLUSH, MZ_SYNC_FLUSH, etc. enums */ + typedef enum + { + TDEFL_NO_FLUSH = 0, + TDEFL_SYNC_FLUSH = 2, + TDEFL_FULL_FLUSH = 3, + TDEFL_FINISH = 4 + } tdefl_flush; + + /* tdefl's compression state structure. */ + typedef struct + { + tdefl_put_buf_func_ptr m_pPut_buf_func; + void *m_pPut_buf_user; + mz_uint m_flags, m_max_probes[2]; + int m_greedy_parsing; + mz_uint m_adler32, m_lookahead_pos, m_lookahead_size, m_dict_size; + mz_uint8 *m_pLZ_code_buf, *m_pLZ_flags, *m_pOutput_buf, *m_pOutput_buf_end; + mz_uint m_num_flags_left, m_total_lz_bytes, m_lz_code_buf_dict_pos, m_bits_in, m_bit_buffer; + mz_uint m_saved_match_dist, m_saved_match_len, m_saved_lit, m_output_flush_ofs, m_output_flush_remaining, m_finished, m_block_index, m_wants_to_finish; + tdefl_status m_prev_return_status; + const void *m_pIn_buf; + void *m_pOut_buf; + size_t *m_pIn_buf_size, *m_pOut_buf_size; + tdefl_flush m_flush; + const mz_uint8 *m_pSrc; + size_t m_src_buf_left, m_out_buf_ofs; + mz_uint8 m_dict[TDEFL_LZ_DICT_SIZE + TDEFL_MAX_MATCH_LEN - 1]; + mz_uint16 m_huff_count[TDEFL_MAX_HUFF_TABLES][TDEFL_MAX_HUFF_SYMBOLS]; + mz_uint16 m_huff_codes[TDEFL_MAX_HUFF_TABLES][TDEFL_MAX_HUFF_SYMBOLS]; + mz_uint8 m_huff_code_sizes[TDEFL_MAX_HUFF_TABLES][TDEFL_MAX_HUFF_SYMBOLS]; + mz_uint8 m_lz_code_buf[TDEFL_LZ_CODE_BUF_SIZE]; + mz_uint16 m_next[TDEFL_LZ_DICT_SIZE]; + mz_uint16 m_hash[TDEFL_LZ_HASH_SIZE]; + mz_uint8 m_output_buf[TDEFL_OUT_BUF_SIZE]; + } tdefl_compressor; + + /* Initializes the compressor. */ + /* There is no corresponding deinit() function because the tdefl API's do not dynamically allocate memory. */ + /* pBut_buf_func: If NULL, output data will be supplied to the specified callback. In this case, the user should call the tdefl_compress_buffer() API for compression. */ + /* If pBut_buf_func is NULL the user should always call the tdefl_compress() API. */ + /* flags: See the above enums (TDEFL_HUFFMAN_ONLY, TDEFL_WRITE_ZLIB_HEADER, etc.) */ + MINIZ_EXPORT tdefl_status tdefl_init(tdefl_compressor *d, tdefl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags); + + /* Compresses a block of data, consuming as much of the specified input buffer as possible, and writing as much compressed data to the specified output buffer as possible. */ + MINIZ_EXPORT tdefl_status tdefl_compress(tdefl_compressor *d, const void *pIn_buf, size_t *pIn_buf_size, void *pOut_buf, size_t *pOut_buf_size, tdefl_flush flush); + + /* tdefl_compress_buffer() is only usable when the tdefl_init() is called with a non-NULL tdefl_put_buf_func_ptr. */ + /* tdefl_compress_buffer() always consumes the entire input buffer. */ + MINIZ_EXPORT tdefl_status tdefl_compress_buffer(tdefl_compressor *d, const void *pIn_buf, size_t in_buf_size, tdefl_flush flush); + + MINIZ_EXPORT tdefl_status tdefl_get_prev_return_status(tdefl_compressor *d); + MINIZ_EXPORT mz_uint32 tdefl_get_adler32(tdefl_compressor *d); + + /* Create tdefl_compress() flags given zlib-style compression parameters. */ + /* level may range from [0,10] (where 10 is absolute max compression, but may be much slower on some files) */ + /* window_bits may be -15 (raw deflate) or 15 (zlib) */ + /* strategy may be either MZ_DEFAULT_STRATEGY, MZ_FILTERED, MZ_HUFFMAN_ONLY, MZ_RLE, or MZ_FIXED */ + MINIZ_EXPORT mz_uint tdefl_create_comp_flags_from_zip_params(int level, int window_bits, int strategy); + +#ifndef MINIZ_NO_MALLOC + /* Allocate the tdefl_compressor structure in C so that */ + /* non-C language bindings to tdefl_ API don't need to worry about */ + /* structure size and allocation mechanism. */ + MINIZ_EXPORT tdefl_compressor *tdefl_compressor_alloc(void); + MINIZ_EXPORT void tdefl_compressor_free(tdefl_compressor *pComp); +#endif + +#ifdef __cplusplus +} +#endif + +#endif /*#ifndef MINIZ_NO_DEFLATE_APIS*/ + #pragma once + +/* ------------------- Low-level Decompression API Definitions */ + +#ifndef MINIZ_NO_INFLATE_APIS + +#ifdef __cplusplus +extern "C" +{ +#endif + /* Decompression flags used by tinfl_decompress(). */ + /* TINFL_FLAG_PARSE_ZLIB_HEADER: If set, the input has a valid zlib header and ends with an adler32 checksum (it's a valid zlib stream). Otherwise, the input is a raw deflate stream. */ + /* TINFL_FLAG_HAS_MORE_INPUT: If set, there are more input bytes available beyond the end of the supplied input buffer. If clear, the input buffer contains all remaining input. */ + /* TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF: If set, the output buffer is large enough to hold the entire decompressed stream. If clear, the output buffer is at least the size of the dictionary (typically 32KB). */ + /* TINFL_FLAG_COMPUTE_ADLER32: Force adler-32 checksum computation of the decompressed bytes. */ + enum + { + TINFL_FLAG_PARSE_ZLIB_HEADER = 1, + TINFL_FLAG_HAS_MORE_INPUT = 2, + TINFL_FLAG_USING_NON_WRAPPING_OUTPUT_BUF = 4, + TINFL_FLAG_COMPUTE_ADLER32 = 8 + }; + + /* High level decompression functions: */ + /* tinfl_decompress_mem_to_heap() decompresses a block in memory to a heap block allocated via malloc(). */ + /* On entry: */ + /* pSrc_buf, src_buf_len: Pointer and size of the Deflate or zlib source data to decompress. */ + /* On return: */ + /* Function returns a pointer to the decompressed data, or NULL on failure. */ + /* *pOut_len will be set to the decompressed data's size, which could be larger than src_buf_len on uncompressible data. */ + /* The caller must call mz_free() on the returned block when it's no longer needed. */ + MINIZ_EXPORT void *tinfl_decompress_mem_to_heap(const void *pSrc_buf, size_t src_buf_len, size_t *pOut_len, int flags); + +/* tinfl_decompress_mem_to_mem() decompresses a block in memory to another block in memory. */ +/* Returns TINFL_DECOMPRESS_MEM_TO_MEM_FAILED on failure, or the number of bytes written on success. */ +#define TINFL_DECOMPRESS_MEM_TO_MEM_FAILED ((size_t)(-1)) + MINIZ_EXPORT size_t tinfl_decompress_mem_to_mem(void *pOut_buf, size_t out_buf_len, const void *pSrc_buf, size_t src_buf_len, int flags); + + /* tinfl_decompress_mem_to_callback() decompresses a block in memory to an internal 32KB buffer, and a user provided callback function will be called to flush the buffer. */ + /* Returns 1 on success or 0 on failure. */ + typedef int (*tinfl_put_buf_func_ptr)(const void *pBuf, int len, void *pUser); + MINIZ_EXPORT int tinfl_decompress_mem_to_callback(const void *pIn_buf, size_t *pIn_buf_size, tinfl_put_buf_func_ptr pPut_buf_func, void *pPut_buf_user, int flags); + + struct tinfl_decompressor_tag; + typedef struct tinfl_decompressor_tag tinfl_decompressor; + +#ifndef MINIZ_NO_MALLOC + /* Allocate the tinfl_decompressor structure in C so that */ + /* non-C language bindings to tinfl_ API don't need to worry about */ + /* structure size and allocation mechanism. */ + MINIZ_EXPORT tinfl_decompressor *tinfl_decompressor_alloc(void); + MINIZ_EXPORT void tinfl_decompressor_free(tinfl_decompressor *pDecomp); +#endif + +/* Max size of LZ dictionary. */ +#define TINFL_LZ_DICT_SIZE 32768 + + /* Return status. */ + typedef enum + { + /* This flags indicates the inflator needs 1 or more input bytes to make forward progress, but the caller is indicating that no more are available. The compressed data */ + /* is probably corrupted. If you call the inflator again with more bytes it'll try to continue processing the input but this is a BAD sign (either the data is corrupted or you called it incorrectly). */ + /* If you call it again with no input you'll just get TINFL_STATUS_FAILED_CANNOT_MAKE_PROGRESS again. */ + TINFL_STATUS_FAILED_CANNOT_MAKE_PROGRESS = -4, + + /* This flag indicates that one or more of the input parameters was obviously bogus. (You can try calling it again, but if you get this error the calling code is wrong.) */ + TINFL_STATUS_BAD_PARAM = -3, + + /* This flags indicate the inflator is finished but the adler32 check of the uncompressed data didn't match. If you call it again it'll return TINFL_STATUS_DONE. */ + TINFL_STATUS_ADLER32_MISMATCH = -2, + + /* This flags indicate the inflator has somehow failed (bad code, corrupted input, etc.). If you call it again without resetting via tinfl_init() it it'll just keep on returning the same status failure code. */ + TINFL_STATUS_FAILED = -1, + + /* Any status code less than TINFL_STATUS_DONE must indicate a failure. */ + + /* This flag indicates the inflator has returned every byte of uncompressed data that it can, has consumed every byte that it needed, has successfully reached the end of the deflate stream, and */ + /* if zlib headers and adler32 checking enabled that it has successfully checked the uncompressed data's adler32. If you call it again you'll just get TINFL_STATUS_DONE over and over again. */ + TINFL_STATUS_DONE = 0, + + /* This flag indicates the inflator MUST have more input data (even 1 byte) before it can make any more forward progress, or you need to clear the TINFL_FLAG_HAS_MORE_INPUT */ + /* flag on the next call if you don't have any more source data. If the source data was somehow corrupted it's also possible (but unlikely) for the inflator to keep on demanding input to */ + /* proceed, so be sure to properly set the TINFL_FLAG_HAS_MORE_INPUT flag. */ + TINFL_STATUS_NEEDS_MORE_INPUT = 1, + + /* This flag indicates the inflator definitely has 1 or more bytes of uncompressed data available, but it cannot write this data into the output buffer. */ + /* Note if the source compressed data was corrupted it's possible for the inflator to return a lot of uncompressed data to the caller. I've been assuming you know how much uncompressed data to expect */ + /* (either exact or worst case) and will stop calling the inflator and fail after receiving too much. In pure streaming scenarios where you have no idea how many bytes to expect this may not be possible */ + /* so I may need to add some code to address this. */ + TINFL_STATUS_HAS_MORE_OUTPUT = 2 + } tinfl_status; + +/* Initializes the decompressor to its initial state. */ +#define tinfl_init(r) \ + do \ + { \ + (r)->m_state = 0; \ + } \ + MZ_MACRO_END +#define tinfl_get_adler32(r) (r)->m_check_adler32 + + /* Main low-level decompressor coroutine function. This is the only function actually needed for decompression. All the other functions are just high-level helpers for improved usability. */ + /* This is a universal API, i.e. it can be used as a building block to build any desired higher level decompression API. In the limit case, it can be called once per every byte input or output. */ + MINIZ_EXPORT tinfl_status tinfl_decompress(tinfl_decompressor *r, const mz_uint8 *pIn_buf_next, size_t *pIn_buf_size, mz_uint8 *pOut_buf_start, mz_uint8 *pOut_buf_next, size_t *pOut_buf_size, const mz_uint32 decomp_flags); + + /* Internal/private bits follow. */ + enum + { + TINFL_MAX_HUFF_TABLES = 3, + TINFL_MAX_HUFF_SYMBOLS_0 = 288, + TINFL_MAX_HUFF_SYMBOLS_1 = 32, + TINFL_MAX_HUFF_SYMBOLS_2 = 19, + TINFL_FAST_LOOKUP_BITS = 10, + TINFL_FAST_LOOKUP_SIZE = 1 << TINFL_FAST_LOOKUP_BITS + }; + +#if MINIZ_HAS_64BIT_REGISTERS +#define TINFL_USE_64BIT_BITBUF 1 +#else +#define TINFL_USE_64BIT_BITBUF 0 +#endif + +#if TINFL_USE_64BIT_BITBUF + typedef mz_uint64 tinfl_bit_buf_t; +#define TINFL_BITBUF_SIZE (64) +#else +typedef mz_uint32 tinfl_bit_buf_t; +#define TINFL_BITBUF_SIZE (32) +#endif + + struct tinfl_decompressor_tag + { + mz_uint32 m_state, m_num_bits, m_zhdr0, m_zhdr1, m_z_adler32, m_final, m_type, m_check_adler32, m_dist, m_counter, m_num_extra, m_table_sizes[TINFL_MAX_HUFF_TABLES]; + tinfl_bit_buf_t m_bit_buf; + size_t m_dist_from_out_buf_start; + mz_int16 m_look_up[TINFL_MAX_HUFF_TABLES][TINFL_FAST_LOOKUP_SIZE]; + mz_int16 m_tree_0[TINFL_MAX_HUFF_SYMBOLS_0 * 2]; + mz_int16 m_tree_1[TINFL_MAX_HUFF_SYMBOLS_1 * 2]; + mz_int16 m_tree_2[TINFL_MAX_HUFF_SYMBOLS_2 * 2]; + mz_uint8 m_code_size_0[TINFL_MAX_HUFF_SYMBOLS_0]; + mz_uint8 m_code_size_1[TINFL_MAX_HUFF_SYMBOLS_1]; + mz_uint8 m_code_size_2[TINFL_MAX_HUFF_SYMBOLS_2]; + mz_uint8 m_raw_header[4], m_len_codes[TINFL_MAX_HUFF_SYMBOLS_0 + TINFL_MAX_HUFF_SYMBOLS_1 + 137]; + }; + +#ifdef __cplusplus +} +#endif + +#endif /*#ifndef MINIZ_NO_INFLATE_APIS*/ + +#pragma once + + +/* ------------------- ZIP archive reading/writing */ + +#ifndef MINIZ_NO_ARCHIVE_APIS + +#ifdef __cplusplus +extern "C" +{ +#endif + + enum + { + /* Note: These enums can be reduced as needed to save memory or stack space - they are pretty conservative. */ + MZ_ZIP_MAX_IO_BUF_SIZE = 64 * 1024, + MZ_ZIP_MAX_ARCHIVE_FILENAME_SIZE = 512, + MZ_ZIP_MAX_ARCHIVE_FILE_COMMENT_SIZE = 512 + }; + + typedef struct + { + /* Central directory file index. */ + mz_uint32 m_file_index; + + /* Byte offset of this entry in the archive's central directory. Note we currently only support up to UINT_MAX or less bytes in the central dir. */ + mz_uint64 m_central_dir_ofs; + + /* These fields are copied directly from the zip's central dir. */ + mz_uint16 m_version_made_by; + mz_uint16 m_version_needed; + mz_uint16 m_bit_flag; + mz_uint16 m_method; + + /* CRC-32 of uncompressed data. */ + mz_uint32 m_crc32; + + /* File's compressed size. */ + mz_uint64 m_comp_size; + + /* File's uncompressed size. Note, I've seen some old archives where directory entries had 512 bytes for their uncompressed sizes, but when you try to unpack them you actually get 0 bytes. */ + mz_uint64 m_uncomp_size; + + /* Zip internal and external file attributes. */ + mz_uint16 m_internal_attr; + mz_uint32 m_external_attr; + + /* Entry's local header file offset in bytes. */ + mz_uint64 m_local_header_ofs; + + /* Size of comment in bytes. */ + mz_uint32 m_comment_size; + + /* MZ_TRUE if the entry appears to be a directory. */ + mz_bool m_is_directory; + + /* MZ_TRUE if the entry uses encryption/strong encryption (which miniz_zip doesn't support) */ + mz_bool m_is_encrypted; + + /* MZ_TRUE if the file is not encrypted, a patch file, and if it uses a compression method we support. */ + mz_bool m_is_supported; + + /* Filename. If string ends in '/' it's a subdirectory entry. */ + /* Guaranteed to be zero terminated, may be truncated to fit. */ + char m_filename[MZ_ZIP_MAX_ARCHIVE_FILENAME_SIZE]; + + /* Comment field. */ + /* Guaranteed to be zero terminated, may be truncated to fit. */ + char m_comment[MZ_ZIP_MAX_ARCHIVE_FILE_COMMENT_SIZE]; + +#ifdef MINIZ_NO_TIME + MZ_TIME_T m_padding; +#else + MZ_TIME_T m_time; +#endif + } mz_zip_archive_file_stat; + + typedef size_t (*mz_file_read_func)(void *pOpaque, mz_uint64 file_ofs, void *pBuf, size_t n); + typedef size_t (*mz_file_write_func)(void *pOpaque, mz_uint64 file_ofs, const void *pBuf, size_t n); + typedef mz_bool (*mz_file_needs_keepalive)(void *pOpaque); + + struct mz_zip_internal_state_tag; + typedef struct mz_zip_internal_state_tag mz_zip_internal_state; + + typedef enum + { + MZ_ZIP_MODE_INVALID = 0, + MZ_ZIP_MODE_READING = 1, + MZ_ZIP_MODE_WRITING = 2, + MZ_ZIP_MODE_WRITING_HAS_BEEN_FINALIZED = 3 + } mz_zip_mode; + + typedef enum + { + MZ_ZIP_FLAG_CASE_SENSITIVE = 0x0100, + MZ_ZIP_FLAG_IGNORE_PATH = 0x0200, + MZ_ZIP_FLAG_COMPRESSED_DATA = 0x0400, + MZ_ZIP_FLAG_DO_NOT_SORT_CENTRAL_DIRECTORY = 0x0800, + MZ_ZIP_FLAG_VALIDATE_LOCATE_FILE_FLAG = 0x1000, /* if enabled, mz_zip_reader_locate_file() will be called on each file as its validated to ensure the func finds the file in the central dir (intended for testing) */ + MZ_ZIP_FLAG_VALIDATE_HEADERS_ONLY = 0x2000, /* validate the local headers, but don't decompress the entire file and check the crc32 */ + MZ_ZIP_FLAG_WRITE_ZIP64 = 0x4000, /* always use the zip64 file format, instead of the original zip file format with automatic switch to zip64. Use as flags parameter with mz_zip_writer_init*_v2 */ + MZ_ZIP_FLAG_WRITE_ALLOW_READING = 0x8000, + MZ_ZIP_FLAG_ASCII_FILENAME = 0x10000, + /*After adding a compressed file, seek back + to local file header and set the correct sizes*/ + MZ_ZIP_FLAG_WRITE_HEADER_SET_SIZE = 0x20000, + MZ_ZIP_FLAG_READ_ALLOW_WRITING = 0x40000 + } mz_zip_flags; + + typedef enum + { + MZ_ZIP_TYPE_INVALID = 0, + MZ_ZIP_TYPE_USER, + MZ_ZIP_TYPE_MEMORY, + MZ_ZIP_TYPE_HEAP, + MZ_ZIP_TYPE_FILE, + MZ_ZIP_TYPE_CFILE, + MZ_ZIP_TOTAL_TYPES + } mz_zip_type; + + /* miniz error codes. Be sure to update mz_zip_get_error_string() if you add or modify this enum. */ + typedef enum + { + MZ_ZIP_NO_ERROR = 0, + MZ_ZIP_UNDEFINED_ERROR, + MZ_ZIP_TOO_MANY_FILES, + MZ_ZIP_FILE_TOO_LARGE, + MZ_ZIP_UNSUPPORTED_METHOD, + MZ_ZIP_UNSUPPORTED_ENCRYPTION, + MZ_ZIP_UNSUPPORTED_FEATURE, + MZ_ZIP_FAILED_FINDING_CENTRAL_DIR, + MZ_ZIP_NOT_AN_ARCHIVE, + MZ_ZIP_INVALID_HEADER_OR_CORRUPTED, + MZ_ZIP_UNSUPPORTED_MULTIDISK, + MZ_ZIP_DECOMPRESSION_FAILED, + MZ_ZIP_COMPRESSION_FAILED, + MZ_ZIP_UNEXPECTED_DECOMPRESSED_SIZE, + MZ_ZIP_CRC_CHECK_FAILED, + MZ_ZIP_UNSUPPORTED_CDIR_SIZE, + MZ_ZIP_ALLOC_FAILED, + MZ_ZIP_FILE_OPEN_FAILED, + MZ_ZIP_FILE_CREATE_FAILED, + MZ_ZIP_FILE_WRITE_FAILED, + MZ_ZIP_FILE_READ_FAILED, + MZ_ZIP_FILE_CLOSE_FAILED, + MZ_ZIP_FILE_SEEK_FAILED, + MZ_ZIP_FILE_STAT_FAILED, + MZ_ZIP_INVALID_PARAMETER, + MZ_ZIP_INVALID_FILENAME, + MZ_ZIP_BUF_TOO_SMALL, + MZ_ZIP_INTERNAL_ERROR, + MZ_ZIP_FILE_NOT_FOUND, + MZ_ZIP_ARCHIVE_TOO_LARGE, + MZ_ZIP_VALIDATION_FAILED, + MZ_ZIP_WRITE_CALLBACK_FAILED, + MZ_ZIP_TOTAL_ERRORS + } mz_zip_error; + + typedef struct + { + mz_uint64 m_archive_size; + mz_uint64 m_central_directory_file_ofs; + + /* We only support up to UINT32_MAX files in zip64 mode. */ + mz_uint32 m_total_files; + mz_zip_mode m_zip_mode; + mz_zip_type m_zip_type; + mz_zip_error m_last_error; + + mz_uint64 m_file_offset_alignment; + + mz_alloc_func m_pAlloc; + mz_free_func m_pFree; + mz_realloc_func m_pRealloc; + void *m_pAlloc_opaque; + + mz_file_read_func m_pRead; + mz_file_write_func m_pWrite; + mz_file_needs_keepalive m_pNeeds_keepalive; + void *m_pIO_opaque; + + mz_zip_internal_state *m_pState; + + } mz_zip_archive; + + typedef struct + { + mz_zip_archive *pZip; + mz_uint flags; + + int status; + + mz_uint64 read_buf_size, read_buf_ofs, read_buf_avail, comp_remaining, out_buf_ofs, cur_file_ofs; + mz_zip_archive_file_stat file_stat; + void *pRead_buf; + void *pWrite_buf; + + size_t out_blk_remain; + + tinfl_decompressor inflator; + +#ifdef MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS + mz_uint padding; +#else + mz_uint file_crc32; +#endif + + } mz_zip_reader_extract_iter_state; + + /* -------- ZIP reading */ + + /* Inits a ZIP archive reader. */ + /* These functions read and validate the archive's central directory. */ + MINIZ_EXPORT mz_bool mz_zip_reader_init(mz_zip_archive *pZip, mz_uint64 size, mz_uint flags); + + MINIZ_EXPORT mz_bool mz_zip_reader_init_mem(mz_zip_archive *pZip, const void *pMem, size_t size, mz_uint flags); + +#ifndef MINIZ_NO_STDIO + /* Read a archive from a disk file. */ + /* file_start_ofs is the file offset where the archive actually begins, or 0. */ + /* actual_archive_size is the true total size of the archive, which may be smaller than the file's actual size on disk. If zero the entire file is treated as the archive. */ + MINIZ_EXPORT mz_bool mz_zip_reader_init_file(mz_zip_archive *pZip, const char *pFilename, mz_uint32 flags); + MINIZ_EXPORT mz_bool mz_zip_reader_init_file_v2(mz_zip_archive *pZip, const char *pFilename, mz_uint flags, mz_uint64 file_start_ofs, mz_uint64 archive_size); + + /* Read an archive from an already opened FILE, beginning at the current file position. */ + /* The archive is assumed to be archive_size bytes long. If archive_size is 0, then the entire rest of the file is assumed to contain the archive. */ + /* The FILE will NOT be closed when mz_zip_reader_end() is called. */ + MINIZ_EXPORT mz_bool mz_zip_reader_init_cfile(mz_zip_archive *pZip, MZ_FILE *pFile, mz_uint64 archive_size, mz_uint flags); +#endif + + /* Ends archive reading, freeing all allocations, and closing the input archive file if mz_zip_reader_init_file() was used. */ + MINIZ_EXPORT mz_bool mz_zip_reader_end(mz_zip_archive *pZip); + + /* -------- ZIP reading or writing */ + + /* Clears a mz_zip_archive struct to all zeros. */ + /* Important: This must be done before passing the struct to any mz_zip functions. */ + MINIZ_EXPORT void mz_zip_zero_struct(mz_zip_archive *pZip); + + MINIZ_EXPORT mz_zip_mode mz_zip_get_mode(mz_zip_archive *pZip); + MINIZ_EXPORT mz_zip_type mz_zip_get_type(mz_zip_archive *pZip); + + /* Returns the total number of files in the archive. */ + MINIZ_EXPORT mz_uint mz_zip_reader_get_num_files(mz_zip_archive *pZip); + + MINIZ_EXPORT mz_uint64 mz_zip_get_archive_size(mz_zip_archive *pZip); + MINIZ_EXPORT mz_uint64 mz_zip_get_archive_file_start_offset(mz_zip_archive *pZip); + MINIZ_EXPORT MZ_FILE *mz_zip_get_cfile(mz_zip_archive *pZip); + + /* Reads n bytes of raw archive data, starting at file offset file_ofs, to pBuf. */ + MINIZ_EXPORT size_t mz_zip_read_archive_data(mz_zip_archive *pZip, mz_uint64 file_ofs, void *pBuf, size_t n); + + /* All mz_zip funcs set the m_last_error field in the mz_zip_archive struct. These functions retrieve/manipulate this field. */ + /* Note that the m_last_error functionality is not thread safe. */ + MINIZ_EXPORT mz_zip_error mz_zip_set_last_error(mz_zip_archive *pZip, mz_zip_error err_num); + MINIZ_EXPORT mz_zip_error mz_zip_peek_last_error(mz_zip_archive *pZip); + MINIZ_EXPORT mz_zip_error mz_zip_clear_last_error(mz_zip_archive *pZip); + MINIZ_EXPORT mz_zip_error mz_zip_get_last_error(mz_zip_archive *pZip); + MINIZ_EXPORT const char *mz_zip_get_error_string(mz_zip_error mz_err); + + /* MZ_TRUE if the archive file entry is a directory entry. */ + MINIZ_EXPORT mz_bool mz_zip_reader_is_file_a_directory(mz_zip_archive *pZip, mz_uint file_index); + + /* MZ_TRUE if the file is encrypted/strong encrypted. */ + MINIZ_EXPORT mz_bool mz_zip_reader_is_file_encrypted(mz_zip_archive *pZip, mz_uint file_index); + + /* MZ_TRUE if the compression method is supported, and the file is not encrypted, and the file is not a compressed patch file. */ + MINIZ_EXPORT mz_bool mz_zip_reader_is_file_supported(mz_zip_archive *pZip, mz_uint file_index); + + /* Retrieves the filename of an archive file entry. */ + /* Returns the number of bytes written to pFilename, or if filename_buf_size is 0 this function returns the number of bytes needed to fully store the filename. */ + MINIZ_EXPORT mz_uint mz_zip_reader_get_filename(mz_zip_archive *pZip, mz_uint file_index, char *pFilename, mz_uint filename_buf_size); + + /* Attempts to locates a file in the archive's central directory. */ + /* Valid flags: MZ_ZIP_FLAG_CASE_SENSITIVE, MZ_ZIP_FLAG_IGNORE_PATH */ + /* Returns -1 if the file cannot be found. */ + MINIZ_EXPORT int mz_zip_reader_locate_file(mz_zip_archive *pZip, const char *pName, const char *pComment, mz_uint flags); + MINIZ_EXPORT mz_bool mz_zip_reader_locate_file_v2(mz_zip_archive *pZip, const char *pName, const char *pComment, mz_uint flags, mz_uint32 *file_index); + + /* Returns detailed information about an archive file entry. */ + MINIZ_EXPORT mz_bool mz_zip_reader_file_stat(mz_zip_archive *pZip, mz_uint file_index, mz_zip_archive_file_stat *pStat); + + /* MZ_TRUE if the file is in zip64 format. */ + /* A file is considered zip64 if it contained a zip64 end of central directory marker, or if it contained any zip64 extended file information fields in the central directory. */ + MINIZ_EXPORT mz_bool mz_zip_is_zip64(mz_zip_archive *pZip); + + /* Returns the total central directory size in bytes. */ + /* The current max supported size is <= MZ_UINT32_MAX. */ + MINIZ_EXPORT size_t mz_zip_get_central_dir_size(mz_zip_archive *pZip); + + /* Extracts a archive file to a memory buffer using no memory allocation. */ + /* There must be at least enough room on the stack to store the inflator's state (~34KB or so). */ + MINIZ_EXPORT mz_bool mz_zip_reader_extract_to_mem_no_alloc(mz_zip_archive *pZip, mz_uint file_index, void *pBuf, size_t buf_size, mz_uint flags, void *pUser_read_buf, size_t user_read_buf_size); + MINIZ_EXPORT mz_bool mz_zip_reader_extract_file_to_mem_no_alloc(mz_zip_archive *pZip, const char *pFilename, void *pBuf, size_t buf_size, mz_uint flags, void *pUser_read_buf, size_t user_read_buf_size); + + /* Extracts a archive file to a memory buffer. */ + MINIZ_EXPORT mz_bool mz_zip_reader_extract_to_mem(mz_zip_archive *pZip, mz_uint file_index, void *pBuf, size_t buf_size, mz_uint flags); + MINIZ_EXPORT mz_bool mz_zip_reader_extract_file_to_mem(mz_zip_archive *pZip, const char *pFilename, void *pBuf, size_t buf_size, mz_uint flags); + + /* Extracts a archive file to a dynamically allocated heap buffer. */ + /* The memory will be allocated via the mz_zip_archive's alloc/realloc functions. */ + /* Returns NULL and sets the last error on failure. */ + MINIZ_EXPORT void *mz_zip_reader_extract_to_heap(mz_zip_archive *pZip, mz_uint file_index, size_t *pSize, mz_uint flags); + MINIZ_EXPORT void *mz_zip_reader_extract_file_to_heap(mz_zip_archive *pZip, const char *pFilename, size_t *pSize, mz_uint flags); + + /* Extracts a archive file using a callback function to output the file's data. */ + MINIZ_EXPORT mz_bool mz_zip_reader_extract_to_callback(mz_zip_archive *pZip, mz_uint file_index, mz_file_write_func pCallback, void *pOpaque, mz_uint flags); + MINIZ_EXPORT mz_bool mz_zip_reader_extract_file_to_callback(mz_zip_archive *pZip, const char *pFilename, mz_file_write_func pCallback, void *pOpaque, mz_uint flags); + + /* Extract a file iteratively */ + MINIZ_EXPORT mz_zip_reader_extract_iter_state *mz_zip_reader_extract_iter_new(mz_zip_archive *pZip, mz_uint file_index, mz_uint flags); + MINIZ_EXPORT mz_zip_reader_extract_iter_state *mz_zip_reader_extract_file_iter_new(mz_zip_archive *pZip, const char *pFilename, mz_uint flags); + MINIZ_EXPORT size_t mz_zip_reader_extract_iter_read(mz_zip_reader_extract_iter_state *pState, void *pvBuf, size_t buf_size); + MINIZ_EXPORT mz_bool mz_zip_reader_extract_iter_free(mz_zip_reader_extract_iter_state *pState); + +#ifndef MINIZ_NO_STDIO + /* Extracts a archive file to a disk file and sets its last accessed and modified times. */ + /* This function only extracts files, not archive directory records. */ + MINIZ_EXPORT mz_bool mz_zip_reader_extract_to_file(mz_zip_archive *pZip, mz_uint file_index, const char *pDst_filename, mz_uint flags); + MINIZ_EXPORT mz_bool mz_zip_reader_extract_file_to_file(mz_zip_archive *pZip, const char *pArchive_filename, const char *pDst_filename, mz_uint flags); + + /* Extracts a archive file starting at the current position in the destination FILE stream. */ + MINIZ_EXPORT mz_bool mz_zip_reader_extract_to_cfile(mz_zip_archive *pZip, mz_uint file_index, MZ_FILE *File, mz_uint flags); + MINIZ_EXPORT mz_bool mz_zip_reader_extract_file_to_cfile(mz_zip_archive *pZip, const char *pArchive_filename, MZ_FILE *pFile, mz_uint flags); +#endif + +#if 0 +/* TODO */ + typedef void *mz_zip_streaming_extract_state_ptr; + mz_zip_streaming_extract_state_ptr mz_zip_streaming_extract_begin(mz_zip_archive *pZip, mz_uint file_index, mz_uint flags); + mz_uint64 mz_zip_streaming_extract_get_size(mz_zip_archive *pZip, mz_zip_streaming_extract_state_ptr pState); + mz_uint64 mz_zip_streaming_extract_get_cur_ofs(mz_zip_archive *pZip, mz_zip_streaming_extract_state_ptr pState); + mz_bool mz_zip_streaming_extract_seek(mz_zip_archive *pZip, mz_zip_streaming_extract_state_ptr pState, mz_uint64 new_ofs); + size_t mz_zip_streaming_extract_read(mz_zip_archive *pZip, mz_zip_streaming_extract_state_ptr pState, void *pBuf, size_t buf_size); + mz_bool mz_zip_streaming_extract_end(mz_zip_archive *pZip, mz_zip_streaming_extract_state_ptr pState); +#endif + + /* This function compares the archive's local headers, the optional local zip64 extended information block, and the optional descriptor following the compressed data vs. the data in the central directory. */ + /* It also validates that each file can be successfully uncompressed unless the MZ_ZIP_FLAG_VALIDATE_HEADERS_ONLY is specified. */ + MINIZ_EXPORT mz_bool mz_zip_validate_file(mz_zip_archive *pZip, mz_uint file_index, mz_uint flags); + + /* Validates an entire archive by calling mz_zip_validate_file() on each file. */ + MINIZ_EXPORT mz_bool mz_zip_validate_archive(mz_zip_archive *pZip, mz_uint flags); + + /* Misc utils/helpers, valid for ZIP reading or writing */ + MINIZ_EXPORT mz_bool mz_zip_validate_mem_archive(const void *pMem, size_t size, mz_uint flags, mz_zip_error *pErr); +#ifndef MINIZ_NO_STDIO + MINIZ_EXPORT mz_bool mz_zip_validate_file_archive(const char *pFilename, mz_uint flags, mz_zip_error *pErr); +#endif + + /* Universal end function - calls either mz_zip_reader_end() or mz_zip_writer_end(). */ + MINIZ_EXPORT mz_bool mz_zip_end(mz_zip_archive *pZip); + + /* -------- ZIP writing */ + +#ifndef MINIZ_NO_ARCHIVE_WRITING_APIS + + /* Inits a ZIP archive writer. */ + /*Set pZip->m_pWrite (and pZip->m_pIO_opaque) before calling mz_zip_writer_init or mz_zip_writer_init_v2*/ + /*The output is streamable, i.e. file_ofs in mz_file_write_func always increases only by n*/ + MINIZ_EXPORT mz_bool mz_zip_writer_init(mz_zip_archive *pZip, mz_uint64 existing_size); + MINIZ_EXPORT mz_bool mz_zip_writer_init_v2(mz_zip_archive *pZip, mz_uint64 existing_size, mz_uint flags); + + MINIZ_EXPORT mz_bool mz_zip_writer_init_heap(mz_zip_archive *pZip, size_t size_to_reserve_at_beginning, size_t initial_allocation_size); + MINIZ_EXPORT mz_bool mz_zip_writer_init_heap_v2(mz_zip_archive *pZip, size_t size_to_reserve_at_beginning, size_t initial_allocation_size, mz_uint flags); + +#ifndef MINIZ_NO_STDIO + MINIZ_EXPORT mz_bool mz_zip_writer_init_file(mz_zip_archive *pZip, const char *pFilename, mz_uint64 size_to_reserve_at_beginning); + MINIZ_EXPORT mz_bool mz_zip_writer_init_file_v2(mz_zip_archive *pZip, const char *pFilename, mz_uint64 size_to_reserve_at_beginning, mz_uint flags); + MINIZ_EXPORT mz_bool mz_zip_writer_init_cfile(mz_zip_archive *pZip, MZ_FILE *pFile, mz_uint flags); +#endif + + /* Converts a ZIP archive reader object into a writer object, to allow efficient in-place file appends to occur on an existing archive. */ + /* For archives opened using mz_zip_reader_init_file, pFilename must be the archive's filename so it can be reopened for writing. If the file can't be reopened, mz_zip_reader_end() will be called. */ + /* For archives opened using mz_zip_reader_init_mem, the memory block must be growable using the realloc callback (which defaults to realloc unless you've overridden it). */ + /* Finally, for archives opened using mz_zip_reader_init, the mz_zip_archive's user provided m_pWrite function cannot be NULL. */ + /* Note: In-place archive modification is not recommended unless you know what you're doing, because if execution stops or something goes wrong before */ + /* the archive is finalized the file's central directory will be hosed. */ + MINIZ_EXPORT mz_bool mz_zip_writer_init_from_reader(mz_zip_archive *pZip, const char *pFilename); + MINIZ_EXPORT mz_bool mz_zip_writer_init_from_reader_v2(mz_zip_archive *pZip, const char *pFilename, mz_uint flags); + + /* Adds the contents of a memory buffer to an archive. These functions record the current local time into the archive. */ + /* To add a directory entry, call this method with an archive name ending in a forwardslash with an empty buffer. */ + /* level_and_flags - compression level (0-10, see MZ_BEST_SPEED, MZ_BEST_COMPRESSION, etc.) logically OR'd with zero or more mz_zip_flags, or just set to MZ_DEFAULT_COMPRESSION. */ + MINIZ_EXPORT mz_bool mz_zip_writer_add_mem(mz_zip_archive *pZip, const char *pArchive_name, const void *pBuf, size_t buf_size, mz_uint level_and_flags); + + /* Like mz_zip_writer_add_mem(), except you can specify a file comment field, and optionally supply the function with already compressed data. */ + /* uncomp_size/uncomp_crc32 are only used if the MZ_ZIP_FLAG_COMPRESSED_DATA flag is specified. */ + MINIZ_EXPORT mz_bool mz_zip_writer_add_mem_ex(mz_zip_archive *pZip, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, + mz_uint64 uncomp_size, mz_uint32 uncomp_crc32); + + MINIZ_EXPORT mz_bool mz_zip_writer_add_mem_ex_v2(mz_zip_archive *pZip, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, + mz_uint64 uncomp_size, mz_uint32 uncomp_crc32, MZ_TIME_T *last_modified, const char *user_extra_data_local, mz_uint user_extra_data_local_len, + const char *user_extra_data_central, mz_uint user_extra_data_central_len); + + /* Adds the contents of a file to an archive. This function also records the disk file's modified time into the archive. */ + /* File data is supplied via a read callback function. User mz_zip_writer_add_(c)file to add a file directly.*/ + MINIZ_EXPORT mz_bool mz_zip_writer_add_read_buf_callback(mz_zip_archive *pZip, const char *pArchive_name, mz_file_read_func read_callback, void *callback_opaque, mz_uint64 max_size, + const MZ_TIME_T *pFile_time, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, const char *user_extra_data_local, mz_uint user_extra_data_local_len, + const char *user_extra_data_central, mz_uint user_extra_data_central_len); + +#ifndef MINIZ_NO_STDIO + /* Adds the contents of a disk file to an archive. This function also records the disk file's modified time into the archive. */ + /* level_and_flags - compression level (0-10, see MZ_BEST_SPEED, MZ_BEST_COMPRESSION, etc.) logically OR'd with zero or more mz_zip_flags, or just set to MZ_DEFAULT_COMPRESSION. */ + MINIZ_EXPORT mz_bool mz_zip_writer_add_file(mz_zip_archive *pZip, const char *pArchive_name, const char *pSrc_filename, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags); + + /* Like mz_zip_writer_add_file(), except the file data is read from the specified FILE stream. */ + MINIZ_EXPORT mz_bool mz_zip_writer_add_cfile(mz_zip_archive *pZip, const char *pArchive_name, MZ_FILE *pSrc_file, mz_uint64 max_size, + const MZ_TIME_T *pFile_time, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, const char *user_extra_data_local, mz_uint user_extra_data_local_len, + const char *user_extra_data_central, mz_uint user_extra_data_central_len); +#endif + + /* Adds a file to an archive by fully cloning the data from another archive. */ + /* This function fully clones the source file's compressed data (no recompression), along with its full filename, extra data (it may add or modify the zip64 local header extra data field), and the optional descriptor following the compressed data. */ + MINIZ_EXPORT mz_bool mz_zip_writer_add_from_zip_reader(mz_zip_archive *pZip, mz_zip_archive *pSource_zip, mz_uint src_file_index); + + /* Finalizes the archive by writing the central directory records followed by the end of central directory record. */ + /* After an archive is finalized, the only valid call on the mz_zip_archive struct is mz_zip_writer_end(). */ + /* An archive must be manually finalized by calling this function for it to be valid. */ + MINIZ_EXPORT mz_bool mz_zip_writer_finalize_archive(mz_zip_archive *pZip); + + /* Finalizes a heap archive, returning a pointer to the heap block and its size. */ + /* The heap block will be allocated using the mz_zip_archive's alloc/realloc callbacks. */ + MINIZ_EXPORT mz_bool mz_zip_writer_finalize_heap_archive(mz_zip_archive *pZip, void **ppBuf, size_t *pSize); + + /* Ends archive writing, freeing all allocations, and closing the output file if mz_zip_writer_init_file() was used. */ + /* Note for the archive to be valid, it *must* have been finalized before ending (this function will not do it for you). */ + MINIZ_EXPORT mz_bool mz_zip_writer_end(mz_zip_archive *pZip); + + /* -------- Misc. high-level helper functions: */ + + /* mz_zip_add_mem_to_archive_file_in_place() efficiently (but not atomically) appends a memory blob to a ZIP archive. */ + /* Note this is NOT a fully safe operation. If it crashes or dies in some way your archive can be left in a screwed up state (without a central directory). */ + /* level_and_flags - compression level (0-10, see MZ_BEST_SPEED, MZ_BEST_COMPRESSION, etc.) logically OR'd with zero or more mz_zip_flags, or just set to MZ_DEFAULT_COMPRESSION. */ + /* TODO: Perhaps add an option to leave the existing central dir in place in case the add dies? We could then truncate the file (so the old central dir would be at the end) if something goes wrong. */ + MINIZ_EXPORT mz_bool mz_zip_add_mem_to_archive_file_in_place(const char *pZip_filename, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags); + MINIZ_EXPORT mz_bool mz_zip_add_mem_to_archive_file_in_place_v2(const char *pZip_filename, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, mz_zip_error *pErr); + +#ifndef MINIZ_NO_STDIO + /* Reads a single file from an archive into a heap block. */ + /* If pComment is not NULL, only the file with the specified comment will be extracted. */ + /* Returns NULL on failure. */ + MINIZ_EXPORT void *mz_zip_extract_archive_file_to_heap(const char *pZip_filename, const char *pArchive_name, size_t *pSize, mz_uint flags); + MINIZ_EXPORT void *mz_zip_extract_archive_file_to_heap_v2(const char *pZip_filename, const char *pArchive_name, const char *pComment, size_t *pSize, mz_uint flags, mz_zip_error *pErr); +#endif + +#endif /* #ifndef MINIZ_NO_ARCHIVE_WRITING_APIS */ + +#ifdef __cplusplus +} +#endif + +#endif /* MINIZ_NO_ARCHIVE_APIS */ diff --git a/nix/default.nix b/nix/default.nix new file mode 120000 index 0000000000..593a000b67 --- /dev/null +++ b/nix/default.nix @@ -0,0 +1 @@ +shell.nix \ No newline at end of file diff --git a/nix/flake.lock b/nix/flake.lock new file mode 100644 index 0000000000..2d51f2ec38 --- /dev/null +++ b/nix/flake.lock @@ -0,0 +1,43 @@ +{ + "nodes": { + "flake-compat": { + "locked": { + "lastModified": 1767039857, + "narHash": "sha256-vNpUSpF5Nuw8xvDLj2KCwwksIbjua2LZCqhV1LNRDns=", + "owner": "NixOS", + "repo": "flake-compat", + "rev": "5edf11c44bc78a0d334f6334cdaf7d60d732daab", + "type": "github" + }, + "original": { + "owner": "NixOS", + "repo": "flake-compat", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1784356753, + "narHash": "sha256-12KrbMiWLcf8m7pCvAtZh1ZrgF85ZXDXvfR/fWTKy84=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "61b7c44c4073f0b827768aff0049561b5110ea5a", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "flake-compat": "flake-compat", + "nixpkgs": "nixpkgs" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/nix/flake.nix b/nix/flake.nix new file mode 100644 index 0000000000..08ad390d68 --- /dev/null +++ b/nix/flake.nix @@ -0,0 +1,79 @@ +{ + description = "CrossPoint Reader development environment"; + + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + flake-compat.url = "github:NixOS/flake-compat"; + }; + + outputs = + { nixpkgs, ... }: + let + systems = [ + "x86_64-linux" + "aarch64-linux" + ]; + forAllSystems = nixpkgs.lib.genAttrs systems; + in + { + devShells = forAllSystems ( + system: + let + pkgs = import nixpkgs { inherit system; }; + # Detect the project root from wherever the user entered the shell, + # so commands work from the repository root or any subdirectory. + # Using `git rev-parse` to do so (assuming git is installed + # system-wide); user can overwrite this by setting PROJECT_ROOT env. + setEnvs = '' + PROJECT_ROOT="''${PROJECT_ROOT:-$(git rev-parse --show-toplevel 2>/dev/null || pwd)}" + export PROJECT_ROOT + export PLATFORMIO_CORE_DIR="$PROJECT_ROOT/.cache/platformio" + ''; + fhsEnv = pkgs.buildFHSEnv { + name = "crosspoint-reader-shell"; + + targetPkgs = + pkgs: with pkgs; [ + python3 + uv + + # Runtime libraries used by PlatformIO's downloaded ESP32 toolchain binaries. + stdenv.cc.cc.lib + zlib + ncurses + ]; + + profile = '' + ${setEnvs} + export PATH="$PROJECT_ROOT/.venv/bin:$PATH" + + if [ ! -x "$PROJECT_ROOT/.venv/bin/pio" ]; then + echo "Creating .venv and installing pioarduino PlatformIO Core..." + # Forcing python3 from fhsEnv, otherwise we get the following + # exception while running `pip check` + # ModuleNotFoundError: No module named 'littlefs' + uv venv --python /usr/bin/python3 "$PROJECT_ROOT/.venv" && + uv pip install --python "$PROJECT_ROOT/.venv/bin/python" \ + -U https://github.com/pioarduino/platformio-core/archive/refs/tags/v6.1.19.zip \ + -r "$PROJECT_ROOT/requirements.txt" || + echo "Failed to install pioarduino PlatformIO Core" >&2 + fi + ''; + }; + pio = pkgs.writeShellScriptBin "pio" '' + exec ${fhsEnv}/bin/crosspoint-reader-shell -c 'exec pio "$@"' pio "$@" + ''; + in + { + default = pkgs.mkShell { + packages = [ + pio + fhsEnv + ]; + + shellHook = setEnvs; + }; + } + ); + }; +} diff --git a/nix/shell.nix b/nix/shell.nix new file mode 100644 index 0000000000..692cd4df89 --- /dev/null +++ b/nix/shell.nix @@ -0,0 +1,12 @@ +(import ( + let + lock = builtins.fromJSON (builtins.readFile ./flake.lock); + nodeName = lock.nodes.root.inputs.flake-compat; + in + fetchTarball { + url = + lock.nodes.${nodeName}.locked.url + or "https://github.com/NixOS/flake-compat/archive/${lock.nodes.${nodeName}.locked.rev}.tar.gz"; + sha256 = lock.nodes.${nodeName}.locked.narHash; + } +) { src = ./.; }).shellNix diff --git a/platformio.ini b/platformio.ini index 03a2ece237..ddd05440ad 100644 --- a/platformio.ini +++ b/platformio.ini @@ -35,8 +35,19 @@ build_flags = # Increase PNG scanline buffer to support up to 2048px wide images # Default is (320*4+1)*2=2562, we need more for larger images -DPNG_MAX_BUFFERED_PIXELS=16416 - -DFREEINK_DEVICE_X4=1 - -DFREEINK_DEVICE_X3=1 + -DFREEINK_NET_WOLFSSL=1 + -DWOLFSSL_USER_SETTINGS + -DWOLFSSL_OPTIONS_H + -DWOLFSSL_CLIENT_EXAMPLE + -DWOLFSSL_TLS13 + -DWOLFSSL_SP_RISCV32 + -DHAVE_TLS_EXTENSIONS + -DHAVE_SUPPORTED_CURVES + -DHAVE_HKDF + -DHAVE_FFDHE_2048 + -DHAVE_CURVE25519 + -DWC_RSA_PSS + -DHAVE_SNI -Wno-bidi-chars -Wl,--wrap=panic_print_backtrace,--wrap=panic_abort,--wrap=bootloader_common_check_efuse_blk_validity -fno-exceptions @@ -51,6 +62,7 @@ board_build.flash_size = 16MB board_build.partitions = partitions.csv extra_scripts = + pre:scripts/patch_wolfssl.py pre:scripts/build_html.py pre:scripts/gen_i18n.py pre:scripts/git_branch.py @@ -65,6 +77,9 @@ lib_deps = SDCardManager=symlink://freeink-sdk/libs/hardware/SDCardManager BoardConfig=symlink://freeink-sdk/libs/hardware/BoardConfig PowerManager=symlink://freeink-sdk/libs/hardware/PowerManager + Rtc=symlink://freeink-sdk/libs/hardware/Rtc + Imu=symlink://freeink-sdk/libs/hardware/Imu + SecureNet=symlink://freeink-sdk/libs/network/SecureNet FreeInkUI=symlink://freeink-sdk/libs/ui/FreeInkUI Icons=symlink://freeink-sdk/libs/assets/Icons bblanchon/ArduinoJson @ 7.4.2 @@ -72,12 +87,18 @@ lib_deps = bitbank2/PNGdec @ 1.1.6 https://github.com/bitbank2/JPEGDEC.git#86282979224c8a32fd51e091ed5a35b0c699a52b links2004/WebSockets @ 2.7.3 + wolfssl/Arduino-wolfSSL @ 5.7.2 + +lib_ignore = + BLE [env:default] extends = base build_flags = ${base.build_flags} ; CROSSPOINT_VERSION is set by scripts/git_branch.py (includes branch + short SHA) + -DFREEINK_DEVICE_X4=1 + -DFREEINK_DEVICE_X3=1 -DENABLE_SERIAL_LOG -DLOG_LEVEL=2 ; Set log level to debug for development builds @@ -86,6 +107,8 @@ build_flags = extends = base build_flags = ${base.build_flags} + -DFREEINK_DEVICE_X4=1 + -DFREEINK_DEVICE_X3=1 -DCROSSPOINT_VERSION=\"${crosspoint.version}\" -DENABLE_SERIAL_LOG -DLOG_LEVEL=1 ; Set log level to info for release builds @@ -94,6 +117,8 @@ build_flags = extends = base build_flags = ${base.build_flags} + -DFREEINK_DEVICE_X4=1 + -DFREEINK_DEVICE_X3=1 -DCROSSPOINT_VERSION=\"${crosspoint.version}-rc+${sysenv.CROSSPOINT_RC_HASH}\" -DENABLE_SERIAL_LOG -DLOG_LEVEL=1 ; Set log level to info for release candidate builds @@ -102,6 +127,25 @@ build_flags = extends = base build_flags = ${base.build_flags} + -DFREEINK_DEVICE_X4=1 + -DFREEINK_DEVICE_X3=1 -DCROSSPOINT_VERSION=\"${crosspoint.version}-slim\" ; serial output is disabled in slim builds to save space -UENABLE_SERIAL_LOG + +; --- Seeed Sticky — ESP32-S3R8, 3.97" 800x480 SSD1677 + GT911 touch ----------- +; Different MCU family than the C3 envs (one binary per family). The SDK +; auto-enables CAP_TOUCH (GT911) and the BQ27220 gauge for this device; PSRAM is +; intentionally left off (48KB framebuffer fits in DRAM, same as X4). +; pio run -e sticky -t upload +[env:sticky] +extends = base +board = esp32-s3-devkitc1-n16r8 +board_build.mcu = esp32s3 +build_flags = + ${base.build_flags} + -DFREEINK_DEVICE_STICKY=1 + ; git_branch.py only injects CROSSPOINT_VERSION for the default env; set it here. + -DCROSSPOINT_VERSION=\"${crosspoint.version}-sticky\" + -DENABLE_SERIAL_LOG + -DLOG_LEVEL=2 diff --git a/scripts/generate_br_section_break_epub.py b/scripts/generate_br_section_break_epub.py new file mode 100644 index 0000000000..e942851534 --- /dev/null +++ b/scripts/generate_br_section_break_epub.py @@ -0,0 +1,274 @@ +#!/usr/bin/env python3 +""" +Generate a test EPUB for
    section-break rendering. + +Tests that a bare
    element between paragraphs produces a visible blank-line +gap (section separator), while a
    inside a paragraph only produces a line +break with no extra spacing. + +Also tests that
  • containing

    renders the bullet inline with the paragraph +text, not on a separate line (GitHub issue #956). + +Cases covered: + 1. Standalone
    between paragraphs (section break — must show gap). + 2.
    with a CSS class (calibre-style section break). + 3. Multiple consecutive
    elements (each adds one line of spacing). + 4. Inline
    inside a

    (line break only — no extra gap). + 5.
    at start of chapter (no gap before first paragraph). + 6.
    following a heading. + 7.

  • with bold+italic text (bullet must be inline with text). + 8.

  • with nested

      (bullet inline, nested list indented). + 9.
    • with direct text (no

      wrapper — baseline, already works). + +Visual verification instructions are embedded as the first paragraph of each +chapter so a human tester can confirm the expected result on device. +""" + +import os +import zipfile +from pathlib import Path + +OUTPUT_DIR = Path(__file__).parent.parent / "test" / "epubs" +OUTPUT_PATH = OUTPUT_DIR / "test_br_section_break.epub" + +FILLER = ( + "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " + "tempor incididunt ut labore et dolore magna aliqua." +) + +CSS = """\ +body { margin: 0; padding: 0; } +p { margin-top: 1pt; margin-bottom: 0; text-indent: 1em; text-align: justify; } +h1 { text-align: center; margin-top: 0.5em; margin-bottom: 0.5em; } +h2 { text-align: center; margin-top: 0.5em; margin-bottom: 0.5em; } +.section-br { display: block; } +.list-simple1 { margin-left: 1em; } +.list-item1 { text-indent: 0; } +.list-bullet { margin-left: 1em; } +.list-bullet2 { margin-left: 2em; } +.list { text-indent: 0; } +.list-item { text-indent: 0; } +""" + +def xhtml(title, body): + return f"""\ + + + + + {title} + + + +{body} + +""" + + +# --------------------------------------------------------------------------- +# Chapter 1 — standalone
      between paragraphs +# --------------------------------------------------------------------------- +ch1 = xhtml("Ch1: Standalone br", f""" +

      Ch 1: Standalone <br> Section Break

      +

      PASS: A visible blank-line gap should appear between the two sections below.

      +

      {FILLER}

      +
      +

      {FILLER}

      +

      PASS: The gap above should be roughly one line tall (same as a blank line).

      +""") + +# --------------------------------------------------------------------------- +# Chapter 2 —
      CSS-classed section break (calibre style) +# --------------------------------------------------------------------------- +ch2 = xhtml("Ch2: Classed br", f""" +

      Ch 2: <br class="section-br"/>

      +

      PASS: A blank-line gap should appear between the two sections below, identical +to Ch 1, even though the <br> carries a CSS class.

      +

      {FILLER}

      +
      +

      {FILLER}

      +""") + +# --------------------------------------------------------------------------- +# Chapter 3 — multiple consecutive
      elements +# --------------------------------------------------------------------------- +ch3 = xhtml("Ch3: Multiple br", f""" +

      Ch 3: Multiple Consecutive <br> Elements

      +

      PASS: Two blank lines should appear between the sections (one per <br>).

      +

      {FILLER}

      +
      +
      +

      {FILLER}

      +

      PASS: Three blank lines should appear below.

      +

      {FILLER}

      +
      +
      +
      +

      {FILLER}

      +""") + +# --------------------------------------------------------------------------- +# Chapter 4 — inline
      inside a paragraph (line break, NOT a gap) +# --------------------------------------------------------------------------- +ch4 = xhtml("Ch4: Inline br", """ +

      Ch 4: Inline <br> Inside a Paragraph

      +

      PASS: The two lines below should be adjacent with NO extra gap between them. +The <br> is inside the paragraph and must only break the line.

      +

      First line of the paragraph.
      Second line of the paragraph — directly below, no gap.

      +

      PASS: Above should look like two closely-spaced lines, not like two paragraphs +separated by a blank line.

      +""") + +# --------------------------------------------------------------------------- +# Chapter 5 —
      following a heading +# --------------------------------------------------------------------------- +ch5 = xhtml("Ch5: br after heading", f""" +

      Ch 5: <br> After a Heading

      +
      +

      PASS: There should be a blank-line gap between the heading above and this paragraph.

      +

      {FILLER}

      +

      Section heading

      +
      +

      PASS: There should be a blank-line gap between the section heading and this paragraph.

      +""") + +# --------------------------------------------------------------------------- +# Chapter 6 —
      at very start of chapter (no spurious leading gap) +# --------------------------------------------------------------------------- +ch6 = xhtml("Ch6: br at chapter start", f"""
      +

      Ch 6: <br> at Chapter Start

      +

      PASS: This heading should appear near the top of the page with no large blank +area above it despite the <br> being the very first element.

      +

      {FILLER}

      +""") + +# --------------------------------------------------------------------------- +# Chapter 7 —
    • with bold+italic (issue #956 example 1) +# --------------------------------------------------------------------------- +ch7 = xhtml("Ch7: li>p bold italic", """ +

      Ch 7: <li><p> with Bold+Italic

      +

      PASS: Each bullet below must be on the SAME line as its text, not on a +separate line above it. The bullet and text are inline.

      +
        +
      • Sketching User Experiences by Bill Buxton. This book examines the notion of sketching (Hint: prototypes are a kind of sketch) across a wide variety of disciplines, with eye-opening results.

      • +
      • Have Paper, Will Prototype by Bill Lucas. This lecture is a series of case studies about how to successfully create paper prototypes of computer interfaces.

      • +
      • The Kobold Guide to Board Game Design by Mike Selinker. The very best book there is on how to design great board games.

      • +
      +

      PASS: All three bullets above should be inline with their respective text.

      +""") + +# --------------------------------------------------------------------------- +# Chapter 8 —
    • with nested

        (issue #956 example 2) +# --------------------------------------------------------------------------- +ch8 = xhtml("Ch8: li>p nested ul", """ +

        Ch 8: <li><p> with Nested List

        +

        PASS: Each bullet must be inline with its text. The nested list should be +indented further with its own bullets also inline.

        +
          +
        • Problem statement: Design a flying dino game where dinosaurs race in and above the water.

        • +
        • Detailed problem statements

          +
            +
          • We need to figure out if we can schedule all the animation time needed for the dinosaurs.

          • +
          • We need to develop the right number of levels for this game.

          • +
          • We need to figure out all the power-ups that will go into this game.

          • +
        • +
        +

        PASS: All bullets above should be inline with their text, including the nested ones.

        +""") + +# --------------------------------------------------------------------------- +# Chapter 9 —
      • with direct text (no

        wrapper, baseline) +# --------------------------------------------------------------------------- +ch9 = xhtml("Ch9: li direct text", """ +

        Ch 9: <li> Direct Text (Baseline)

        +

        PASS: Each bullet below must be inline with its text. This is the baseline +case that already works — no <p> wrapper inside <li>.

        +
          +
        • The fundamental difference between changes to the behavior of a system and changes to its structure.
        • +
        • The enabling magic of alternating investment in structure and investment in behavior.
        • +
        • The basics of the theory of how software design works and the forces that act on it.
        • +
        +

        PASS: All three bullets above should be inline with their text.

        +""") + +CHAPTERS = [ + ("ch1", "chapter1.xhtml", "Chapter 1: Standalone br", ch1), + ("ch2", "chapter2.xhtml", "Chapter 2: Classed br", ch2), + ("ch3", "chapter3.xhtml", "Chapter 3: Multiple br", ch3), + ("ch4", "chapter4.xhtml", "Chapter 4: Inline br", ch4), + ("ch5", "chapter5.xhtml", "Chapter 5: br after heading", ch5), + ("ch6", "chapter6.xhtml", "Chapter 6: br at start", ch6), + ("ch7", "chapter7.xhtml", "Chapter 7: li>p bold italic", ch7), + ("ch8", "chapter8.xhtml", "Chapter 8: li>p nested ul", ch8), + ("ch9", "chapter9.xhtml", "Chapter 9: li direct text", ch9), +] + +def build_epub(path): + os.makedirs(os.path.dirname(path), exist_ok=True) + with zipfile.ZipFile(path, "w", zipfile.ZIP_DEFLATED) as epub: + # mimetype must be first and uncompressed + epub.writestr("mimetype", "application/epub+zip", + compress_type=zipfile.ZIP_STORED) + + epub.writestr("META-INF/container.xml", """\ + + + + + +""") + + epub.writestr("OEBPS/styles/test.css", CSS) + + manifest_items = [] + spine_items = [] + nav_items = [] + + for (chid, chfile, chtitle, chcontent) in CHAPTERS: + epub.writestr(f"OEBPS/{chfile}", chcontent) + manifest_items.append( + f' ') + spine_items.append(f' ') + nav_items.append(f'
      • {chtitle}
      • ') + + manifest_items.append( + ' ') + + content_opf = f"""\ + + + + test-epub-br-section-break + Test: br Section Break & li/p + en + + +{chr(10).join(manifest_items)} + + +{chr(10).join(spine_items)} + +""" + epub.writestr("OEBPS/content.opf", content_opf) + + nav_xhtml = f"""\ + + +Table of Contents + + + +""" + epub.writestr("OEBPS/nav.xhtml", nav_xhtml) + + print(f"Generated: {path}") + + +if __name__ == "__main__": + build_epub(OUTPUT_PATH) diff --git a/scripts/generate_userguide_epub.py b/scripts/generate_userguide_epub.py new file mode 100644 index 0000000000..8356a7c307 --- /dev/null +++ b/scripts/generate_userguide_epub.py @@ -0,0 +1,329 @@ +#!/usr/bin/env python3 +"""Generate an EPUB from USER_GUIDE.md.""" + +import html as _html +import io +import re +from pathlib import Path + +import markdown +from ebooklib import epub +from PIL import Image, ImageDraw, ImageFont + +ROOT = Path(__file__).parent.parent +SOURCE_MD = ROOT / "USER_GUIDE.md" +OUTPUT_EPUB = ROOT / "CrossPoint_User_Guide.epub" +LOGO_PNG = ROOT / "src/images/Logo120.png" + +# Portrait cover dimensions matching the X4 display (480×800) +COVER_W, COVER_H = 480, 800 + +CSS = """ +body { + font-family: Georgia, 'Times New Roman', serif; + font-size: 1em; + line-height: 1.6; + margin: 1em 1.5em; + color: #111; +} + +h1 { font-size: 1.8em; margin-top: 1.2em; margin-bottom: 0.4em; } +h2 { font-size: 1.4em; margin-top: 1.5em; margin-bottom: 0.3em; border-bottom: 1px solid #ccc; padding-bottom: 0.2em; } +h3 { font-size: 1.2em; margin-top: 1.2em; margin-bottom: 0.2em; } +h4 { font-size: 1.05em; margin-top: 1em; margin-bottom: 0.2em; } +h5 { font-size: 1em; margin-top: 0.8em; margin-bottom: 0.2em; } + +p { margin: 0.6em 0; } + +code { + font-family: 'Courier New', Courier, monospace; + font-size: 0.85em; + background: #f4f4f4; + padding: 0.1em 0.3em; + border-radius: 3px; +} + +pre { + font-family: 'Courier New', Courier, monospace; + font-size: 0.8em; + background: #f4f4f4; + border: 1px solid #ddd; + border-radius: 4px; + padding: 0.8em 1em; + overflow-x: auto; + white-space: pre-wrap; + word-wrap: break-word; +} + +pre code { + background: none; + padding: 0; + border-radius: 0; + font-size: 1em; +} + +table { + border-collapse: collapse; + width: 100%; + margin: 0.8em 0; + font-size: 0.9em; +} + +th, td { + border: 1px solid #ccc; + padding: 0.4em 0.6em; + text-align: left; +} + +th { background: #eee; font-weight: bold; } + +ul, ol { margin: 0.5em 0; padding-left: 1.8em; } +li { margin: 0.25em 0; } + +a { color: #1a6699; text-decoration: none; } + +hr { border: none; border-top: 1px solid #ccc; margin: 1.5em 0; } + +.callout { + border-left: 4px solid #888; + background: #f8f8f8; + padding: 0.5em 0.8em; + margin: 0.8em 0; + border-radius: 0 4px 4px 0; +} + +.callout-note { border-color: #2196F3; background: #e3f2fd; } +.callout-tip { border-color: #4CAF50; background: #e8f5e9; } +.callout-warning { border-color: #FF9800; background: #fff3e0; } + +.callout-title { + font-weight: bold; + margin-bottom: 0.3em; +} + +/* Cover page */ +.cover-page { + text-align: center; + margin: 0; + padding: 0; +} + +.cover-page img { + width: 100%; + height: auto; + display: block; + margin: 0; +} +""" + + +def make_cover_png() -> bytes: + """Generate a full-size (480×800) cover image with logo, title, and subtitle.""" + cover = Image.new('RGB', (COVER_W, COVER_H), color=(255, 255, 255)) + draw = ImageDraw.Draw(cover) + + # Paste logo centred at ~35% down the canvas + with Image.open(LOGO_PNG) as logo_raw: + if logo_raw.mode in ('RGBA', 'LA', 'P'): + bg = Image.new('RGB', logo_raw.size, (255, 255, 255)) + bg.paste(logo_raw, mask=logo_raw.convert('RGBA').split()[3]) + logo = bg + else: + logo = logo_raw.convert('RGB') + + # Scale logo to 240×240 (half the cover width) + logo = logo.resize((240, 240), Image.LANCZOS) + logo_x = (COVER_W - 240) // 2 + logo_y = int(COVER_H * 0.28) + cover.paste(logo, (logo_x, logo_y)) + + # Try to use a system font; fall back to default if unavailable + try: + font_title = ImageFont.truetype('/usr/share/fonts/truetype/liberation/LiberationSerif-Bold.ttf', 52) + font_sub = ImageFont.truetype('/usr/share/fonts/truetype/liberation/LiberationSerif-Regular.ttf', 32) + except OSError: + font_title = ImageFont.load_default() + font_sub = font_title + + title = 'CrossPoint' + subtitle = 'User Guide' + + # Draw title text + bbox = draw.textbbox((0, 0), title, font=font_title) + tw = bbox[2] - bbox[0] + ty = logo_y + 240 + 48 + draw.text(((COVER_W - tw) // 2, ty), title, fill=(0, 0, 0), font=font_title) + + # Draw subtitle text + bbox2 = draw.textbbox((0, 0), subtitle, font=font_sub) + sw = bbox2[2] - bbox2[0] + sy = ty + (bbox[3] - bbox[1]) + 18 + draw.text(((COVER_W - sw) // 2, sy), subtitle, fill=(80, 80, 80), font=font_sub) + + # Thin horizontal rules above and below the text block + rule_y1 = ty - 24 + rule_y2 = sy + (bbox2[3] - bbox2[1]) + 24 + draw.line([(60, rule_y1), (COVER_W - 60, rule_y1)], fill=(180, 180, 180), width=1) + draw.line([(60, rule_y2), (COVER_W - 60, rule_y2)], fill=(180, 180, 180), width=1) + + buf = io.BytesIO() + cover.save(buf, format='PNG') + return buf.getvalue() + + +def preprocess_callouts(text: str) -> str: + """Convert GitHub-style > [!TYPE] callouts to HTML divs.""" + lines = text.splitlines() + out = [] + i = 0 + while i < len(lines): + line = lines[i] + m = re.match(r'^>\s*\[!(NOTE|TIP|WARNING)\]\s*$', line.strip()) + if m: + kind = m.group(1).lower() + title = kind.capitalize() + body_lines = [] + i += 1 + while i < len(lines) and lines[i].startswith('>') \ + and not re.match(r'^>\s*\[!', lines[i]): + body_lines.append(lines[i][1:].lstrip()) + i += 1 + body = _html.escape('\n'.join(body_lines).strip()) + out.append( + f'\n
        ' + f'
        {title}
        ' + f'

        {body}

        ' + f'
        \n' + ) + else: + out.append(line) + i += 1 + return '\n'.join(out) + + +def strip_toc(text: str) -> str: + """Remove the inline TOC list that follows the H1 heading.""" + return re.sub( + r'(\n# CrossPoint User Guide\n)(.*?)(\n## 1\.)', + lambda m: m.group(1) + m.group(3), + text, + flags=re.DOTALL, + ) + + +def split_chapters(html: str): + """Split rendered HTML into (anchor_id, title, html_fragment) tuples by H2.""" + pattern = re.compile(r'(]*>)(.*?)()', re.DOTALL) + chapters = [] + positions = [(m.start(), m.group(0), m.group(2)) for m in pattern.finditer(html)] + + if not positions: + return [('intro', 'CrossPoint User Guide', html)] + + intro_html = html[:positions[0][0]].strip() + if intro_html: + chapters.append(('intro', 'Introduction', intro_html)) + + seen_anchors = {c[0] for c in chapters} # seed with 'intro' if present + for idx, (start, _tag, raw_title) in enumerate(positions): + end = positions[idx + 1][0] if idx + 1 < len(positions) else len(html) + fragment = html[start:end].strip() + title = _html.unescape(re.sub(r'<[^>]+>', '', raw_title).strip()) + base = re.sub(r'[^a-z0-9]+', '-', title.lower()).strip('-') or 'section' + anchor = base + n = 1 + while anchor in seen_anchors: + anchor = f'{base}-{n}' + n += 1 + seen_anchors.add(anchor) + chapters.append((anchor, title, fragment)) + + return chapters + + +def make_xhtml(title: str, body: str) -> bytes: + return ( + '\n' + '\n' + '\n' + f'{title}\n' + '\n' + f'\n\n{body}\n\n' + ).encode('utf-8') + + +def build_epub(): + source = SOURCE_MD.read_text(encoding='utf-8') + source = strip_toc(source) + source = preprocess_callouts(source) + + md = markdown.Markdown(extensions=['tables', 'fenced_code', 'attr_list']) + body_html = md.convert(source) + + book = epub.EpubBook() + book.set_identifier('crosspoint-user-guide-v1') + book.set_title('CrossPoint User Guide') + book.set_language('en') + book.add_author('CrossPoint Reader Project') + + style = epub.EpubItem( + uid='style', + file_name='style/main.css', + media_type='text/css', + content=CSS, + ) + book.add_item(style) + + # Full-size cover image (480×800) — used by CrossPoint for home-screen thumbnail. + # uid='cover-image' matches the EPUB 2 value. + cover_png_bytes = make_cover_png() + cover_img_item = epub.EpubItem( + uid='cover-image', + file_name='images/cover.png', + media_type='image/png', + content=cover_png_bytes, + ) + cover_img_item.properties = ['cover-image'] # EPUB 3 manifest property + book.add_item(cover_img_item) + # EPUB 2 cover declaration — CrossPoint's Tier 1 OPF lookup + book.add_metadata('OPF', 'meta', '', {'name': 'cover', 'content': 'cover-image'}) + + # Cover page XHTML — first readable page in the spine + cover_page = epub.EpubHtml(title='CrossPoint User Guide', file_name='cover.xhtml', lang='en') + cover_page.content = make_xhtml( + 'CrossPoint User Guide', + '
        ' + 'CrossPoint User Guide cover' + '
        ', + ) + cover_page.add_item(style) + cover_page.add_item(cover_img_item) + book.add_item(cover_page) + + chapters_data = split_chapters(body_html) + epub_chapters = [] + + for anchor, title, fragment in chapters_data: + filename = f'chap_{anchor}.xhtml' + chapter = epub.EpubHtml(title=title, file_name=filename, lang='en') + chapter.content = make_xhtml(title, fragment) + chapter.add_item(style) + book.add_item(chapter) + epub_chapters.append(chapter) + + book.toc = (epub.Link('cover.xhtml', 'Cover', 'cover'),) + tuple(epub_chapters) + book.add_item(epub.EpubNcx()) + book.add_item(epub.EpubNav()) + + # nav is excluded from the spine — CrossPoint locates it via properties="nav" in + # the manifest and does not respect linear="no", so omitting it prevents it from + # appearing as a readable page. Cover is the first spine item. + book.spine = [cover_page] + epub_chapters + + epub.write_epub(str(OUTPUT_EPUB), book) + print(f'Generated: {OUTPUT_EPUB}') + + +if __name__ == '__main__': + build_epub() diff --git a/scripts/patch_wolfssl.py b/scripts/patch_wolfssl.py new file mode 100644 index 0000000000..95b8696456 --- /dev/null +++ b/scripts/patch_wolfssl.py @@ -0,0 +1,29 @@ +from pathlib import Path + +Import("env") + + +PROJECT_DIR = Path(env.subst("$PROJECT_DIR")) +MARKER = "/* CrossPoint wolfSSL compatibility overrides */" +OVERRIDES = f""" + +{MARKER} +#undef NO_DH +#ifndef HAVE_FFDHE_2048 +#define HAVE_FFDHE_2048 +#endif +#undef FP_MAX_BITS +#define FP_MAX_BITS 16384 +""" + + +def patch_user_settings(path: Path) -> None: + text = path.read_text() + if MARKER in text: + text = text.split(MARKER, 1)[0].rstrip() + path.write_text(text + OVERRIDES + "\n") + print(f"Patched wolfSSL settings: {path.relative_to(PROJECT_DIR)}") + + +for settings in PROJECT_DIR.glob(".pio/libdeps/*/Arduino-wolfSSL/src/user_settings.h"): + patch_user_settings(settings) diff --git a/scripts/update_hyphenation.sh b/scripts/update_hyphenation.sh index 1f8d643b15..0a52669f2d 100755 --- a/scripts/update_hyphenation.sh +++ b/scripts/update_hyphenation.sh @@ -25,3 +25,4 @@ process it process uk process pl process sv +process fi diff --git a/src/CrossPointSettings.cpp b/src/CrossPointSettings.cpp index 3b5b5dcb71..ebb9d39bf5 100644 --- a/src/CrossPointSettings.cpp +++ b/src/CrossPointSettings.cpp @@ -1,65 +1,27 @@ #include "CrossPointSettings.h" -#include -#include +#include #include -#include +#include +#include #include -#include #include #include "I18nKeys.h" +#include "SettingsList.h" #include "fontIds.h" -// Initialize the static instance -CrossPointSettings CrossPointSettings::instance; +namespace { -void readAndValidate(HalFile& file, uint8_t& member, const uint8_t maxValue) { - uint8_t tempValue; - serialization::readPod(file, tempValue); - if (tempValue < maxValue) { - member = tempValue; - } -} +// Stack buffer for "_obf" key construction — avoids a std::string +// allocation per obfuscated setting on every save and load. +constexpr size_t OBF_KEY_BUF = 64; -namespace { -constexpr uint8_t SETTINGS_FILE_VERSION = 1; -constexpr char SETTINGS_FILE_BIN[] = "/.crosspoint/settings.bin"; -constexpr char SETTINGS_FILE_JSON[] = "/.crosspoint/settings.json"; -constexpr char SETTINGS_FILE_BAK[] = "/.crosspoint/settings.bin.bak"; -constexpr char LANG_FILE_BIN[] = "/.crosspoint/language.bin"; -constexpr char LANG_FILE_BAK[] = "/.crosspoint/language.bin.bak"; - -// Convert legacy front button layout into explicit logical->hardware mapping. -void applyLegacyFrontButtonLayout(CrossPointSettings& settings) { - switch (static_cast(settings.frontButtonLayout)) { - case CrossPointSettings::LEFT_RIGHT_BACK_CONFIRM: - settings.frontButtonBack = CrossPointSettings::FRONT_HW_LEFT; - settings.frontButtonConfirm = CrossPointSettings::FRONT_HW_RIGHT; - settings.frontButtonLeft = CrossPointSettings::FRONT_HW_BACK; - settings.frontButtonRight = CrossPointSettings::FRONT_HW_CONFIRM; - break; - case CrossPointSettings::LEFT_BACK_CONFIRM_RIGHT: - settings.frontButtonBack = CrossPointSettings::FRONT_HW_CONFIRM; - settings.frontButtonConfirm = CrossPointSettings::FRONT_HW_LEFT; - settings.frontButtonLeft = CrossPointSettings::FRONT_HW_BACK; - settings.frontButtonRight = CrossPointSettings::FRONT_HW_RIGHT; - break; - case CrossPointSettings::BACK_CONFIRM_RIGHT_LEFT: - settings.frontButtonBack = CrossPointSettings::FRONT_HW_BACK; - settings.frontButtonConfirm = CrossPointSettings::FRONT_HW_CONFIRM; - settings.frontButtonLeft = CrossPointSettings::FRONT_HW_RIGHT; - settings.frontButtonRight = CrossPointSettings::FRONT_HW_LEFT; - break; - case CrossPointSettings::BACK_CONFIRM_LEFT_RIGHT: - default: - settings.frontButtonBack = CrossPointSettings::FRONT_HW_BACK; - settings.frontButtonConfirm = CrossPointSettings::FRONT_HW_CONFIRM; - settings.frontButtonLeft = CrossPointSettings::FRONT_HW_LEFT; - settings.frontButtonRight = CrossPointSettings::FRONT_HW_RIGHT; - break; - } +// Null-terminated copy into a fixed-size settings field. +void copyToField(char* dest, const char* src, const size_t maxLen) { + strncpy(dest, src, maxLen - 1); + dest[maxLen - 1] = '\0'; } } // namespace @@ -96,199 +58,191 @@ uint8_t CrossPointSettings::sleepTimeoutEnumToMinutes(const uint8_t legacyValue) } } -bool CrossPointSettings::saveToFile() const { - std::lock_guard lock(_mutex); - Storage.mkdir("/.crosspoint"); - return JsonSettingsIO::saveSettings(*this, SETTINGS_FILE_JSON); -} +void CrossPointSettings::toJson(JsonDocument& doc) const { + const CrossPointSettings& s = *this; -bool CrossPointSettings::loadFromFile() { - // Try JSON first - if (Storage.exists(SETTINGS_FILE_JSON)) { - String json = Storage.readFile(SETTINGS_FILE_JSON); - if (!json.isEmpty()) { - bool resave = false; - bool result; - { - std::lock_guard lock(_mutex); - result = JsonSettingsIO::loadSettings(*this, json.c_str(), &resave); - } - if (result && resave) { - if (saveToFile()) { - LOG_DBG("CPS", "Resaved settings to update format"); - } else { - LOG_ERR("CPS", "Failed to resave settings after format update"); - } - } - migrateLanguageBinaryFile(); - return result; - } - } + for (const auto& info : getSettingsList()) { + if (!info.key) continue; + // Dynamic entries (KOReader etc.) are stored in their own files — skip. + if (!info.valuePtr && !info.stringOffset) continue; - // Fall back to binary migration - if (Storage.exists(SETTINGS_FILE_BIN)) { - if (loadFromBinaryFile()) { - migrateLanguageBinaryFile(); - if (saveToFile()) { - Storage.rename(SETTINGS_FILE_BIN, SETTINGS_FILE_BAK); - LOG_DBG("CPS", "Migrated settings.bin to settings.json"); - return true; + if (info.stringOffset) { + const char* strPtr = (const char*)&s + info.stringOffset; + if (info.obfuscated) { + char obfKey[OBF_KEY_BUF]; + snprintf(obfKey, sizeof(obfKey), "%s_obf", info.key); + doc[obfKey] = obfuscation::obfuscateToBase64(strPtr); } else { - LOG_ERR("CPS", "Failed to save migrated settings to JSON"); - return false; + doc[info.key] = strPtr; } + } else { + doc[info.key] = s.*(info.valuePtr); } } - // No settings files at all -- check for standalone language.bin - return migrateLanguageBinaryFile(); + // Front button remap — managed by RemapFrontButtons sub-activity, not in SettingsList. + doc["frontButtonBack"] = frontButtonBack; + doc["frontButtonConfirm"] = frontButtonConfirm; + doc["frontButtonLeft"] = frontButtonLeft; + doc["frontButtonRight"] = frontButtonRight; + // Font family — uses dynamic getter/setter in SettingsList so the generic loop skips it. + doc["fontFamily"] = fontFamily; + // SD card font family name — not in SettingsList, save manually + if (sdFontFamilyName[0] != '\0') { + doc["sdFontFamilyName"] = sdFontFamilyName; + } + // Dictionary folder name — uses dynamic getter/setter in SettingsList, save manually + if (dictionaryName[0] != '\0') { + doc["dictionaryName"] = dictionaryName; + } + + // Language -- managed by LanguageSelectActivity, not in SettingsList. + // Stored as ISO code string ("EN", "DE", ...) for stability across enum reorders. + doc["language"] = (language < getLanguageCount()) ? LANGUAGE_CODES[language] : "EN"; } -bool CrossPointSettings::migrateLanguageBinaryFile() { - // V1_LANGUAGES / V1_LANGUAGE_COUNT are emitted by gen_i18n.py with the - // frozen enum order from 2f969a9. - if (!Storage.exists(LANG_FILE_BIN)) return false; - - HalFile f; - if (Storage.openFileForRead("CPS", LANG_FILE_BIN, f)) { - uint8_t version; - serialization::readPod(f, version); - if (version == 1) { - uint8_t oldIndex; - serialization::readPod(f, oldIndex); - if (oldIndex < V1_LANGUAGE_COUNT) { - language = static_cast(V1_LANGUAGES[oldIndex]); +bool CrossPointSettings::fromJson(JsonVariantConst doc) { + CrossPointSettings& s = *this; + bool needsResave = false; + + auto clamp = [](uint8_t val, uint8_t maxVal, uint8_t def) -> uint8_t { return val < maxVal ? val : def; }; + + for (const auto& info : getSettingsList()) { + if (!info.key) continue; + // Dynamic entries (KOReader etc.) are stored in their own files — skip. + if (!info.valuePtr && !info.stringOffset) continue; + + if (info.stringOffset) { + // destPtr starts out holding the struct-initializer default; it stays that + // way unless the document actually carries a value for this key. + char* destPtr = (char*)&s + info.stringOffset; + if (info.stringMaxLen == 0) { + LOG_ERR("CPS", "Misconfigured SettingInfo: stringMaxLen is 0 for key '%s'", info.key); + destPtr[0] = '\0'; + needsResave = true; + continue; } + + bool loaded = false; + if (info.obfuscated) { + char obfKey[OBF_KEY_BUF]; + snprintf(obfKey, sizeof(obfKey), "%s_obf", info.key); + bool ok = false; + const std::string decoded = obfuscation::deobfuscateFromBase64(doc[obfKey] | "", &ok); + if (ok && !decoded.empty()) { + copyToField(destPtr, decoded.c_str(), info.stringMaxLen); + loaded = true; + } + } + if (!loaded) { + // Read as const char*, never `| std::string(...)`: ArduinoJson's + // std::string converter drags a per-TU copy of the serializer into + // flash. See the note in PersistableStore.h. + const char* raw = doc[info.key].is() ? doc[info.key].as() : nullptr; + if (raw) { + // Obfuscated field recovered from a legacy plaintext value -> resave. + if (info.obfuscated && strcmp(raw, destPtr) != 0) needsResave = true; + copyToField(destPtr, raw, info.stringMaxLen); + } + } + } else { + const uint8_t fieldDefault = s.*(info.valuePtr); // struct-initializer default, read before we overwrite it + uint8_t v = doc[info.key] | fieldDefault; + if (info.type == SettingType::ENUM) { + v = clamp(v, (uint8_t)info.enumValues.size(), fieldDefault); + } else if (info.type == SettingType::TOGGLE) { + v = clamp(v, (uint8_t)2, fieldDefault); + } else if (info.type == SettingType::VALUE) { + if (v < info.valueRange.min) + v = info.valueRange.min; + else if (v > info.valueRange.max) + v = info.valueRange.max; + } + s.*(info.valuePtr) = v; } } - Storage.rename(LANG_FILE_BIN, LANG_FILE_BAK); - saveToFile(); - LOG_DBG("CPS", "Migrated language.bin into settings.json"); - return true; -} -bool CrossPointSettings::loadFromBinaryFile() { - HalFile inputFile; - if (!Storage.openFileForRead("CPS", SETTINGS_FILE_BIN, inputFile)) { - return false; + if (doc["sleepTimeoutMinutes"].isNull() && !doc["sleepTimeout"].isNull()) { + const uint8_t legacyValue = + clamp(doc["sleepTimeout"] | (uint8_t)SLEEP_10_MIN, SLEEP_TIMEOUT_COUNT, (uint8_t)SLEEP_10_MIN); + sleepTimeoutMinutes = sleepTimeoutEnumToMinutes(legacyValue); + needsResave = true; } - std::lock_guard lock(_mutex); + // Front button remap — managed by RemapFrontButtons sub-activity, not in SettingsList. + frontButtonBack = clamp(doc["frontButtonBack"] | (uint8_t)FRONT_HW_BACK, FRONT_BUTTON_HARDWARE_COUNT, FRONT_HW_BACK); + frontButtonConfirm = + clamp(doc["frontButtonConfirm"] | (uint8_t)FRONT_HW_CONFIRM, FRONT_BUTTON_HARDWARE_COUNT, FRONT_HW_CONFIRM); + frontButtonLeft = clamp(doc["frontButtonLeft"] | (uint8_t)FRONT_HW_LEFT, FRONT_BUTTON_HARDWARE_COUNT, FRONT_HW_LEFT); + frontButtonRight = + clamp(doc["frontButtonRight"] | (uint8_t)FRONT_HW_RIGHT, FRONT_BUTTON_HARDWARE_COUNT, FRONT_HW_RIGHT); + validateFrontButtonMapping(s); - uint8_t version; - serialization::readPod(inputFile, version); - if (version != SETTINGS_FILE_VERSION) { - LOG_ERR("CPS", "Deserialization failed: Unknown version %u", version); - return false; + // Font family — uses dynamic getter/setter in SettingsList so the generic loop skips it. + const uint8_t storedFontFamily = doc["fontFamily"] | (uint8_t)0; + fontFamily = clamp(storedFontFamily, BUILTIN_FONT_COUNT, 0); + // SD card font family name — not in SettingsList, load manually + const char* sfn = doc["sdFontFamilyName"] | ""; + strncpy(sdFontFamilyName, sfn, sizeof(sdFontFamilyName) - 1); + sdFontFamilyName[sizeof(sdFontFamilyName) - 1] = '\0'; + if (storedFontFamily == LEGACY_OPENDYSLEXIC && sdFontFamilyName[0] == '\0') { + fontFamily = NOTOSERIF; + strncpy(sdFontFamilyName, "OpenDyslexic", sizeof(sdFontFamilyName) - 1); + sdFontFamilyName[sizeof(sdFontFamilyName) - 1] = '\0'; + needsResave = true; + } else if (storedFontFamily >= BUILTIN_FONT_COUNT) { + needsResave = true; } + // Dictionary folder name — uses dynamic getter/setter in SettingsList, load manually + copyToField(dictionaryName, doc["dictionaryName"] | "", sizeof(dictionaryName)); - uint8_t fileSettingsCount = 0; - serialization::readPod(inputFile, fileSettingsCount); - - uint8_t settingsRead = 0; - bool frontButtonMappingRead = false; - do { - readAndValidate(inputFile, sleepScreen, SLEEP_SCREEN_MODE_COUNT); - if (++settingsRead >= fileSettingsCount) break; - serialization::readPod(inputFile, extraParagraphSpacing); - if (++settingsRead >= fileSettingsCount) break; - readAndValidate(inputFile, shortPwrBtn, SHORT_PWRBTN_COUNT); - if (++settingsRead >= fileSettingsCount) break; - readAndValidate(inputFile, statusBar, STATUS_BAR_MODE_COUNT); // legacy - if (++settingsRead >= fileSettingsCount) break; - readAndValidate(inputFile, orientation, ORIENTATION_COUNT); - if (++settingsRead >= fileSettingsCount) break; - readAndValidate(inputFile, frontButtonLayout, FRONT_BUTTON_LAYOUT_COUNT); - if (++settingsRead >= fileSettingsCount) break; - readAndValidate(inputFile, sideButtonLayout, SIDE_BUTTON_LAYOUT_COUNT); - if (++settingsRead >= fileSettingsCount) break; - { - uint8_t legacyFontFamily; - serialization::readPod(inputFile, legacyFontFamily); - if (legacyFontFamily < BUILTIN_FONT_COUNT) { - fontFamily = legacyFontFamily; - } else if (legacyFontFamily == LEGACY_OPENDYSLEXIC) { - fontFamily = NOTOSERIF; - strncpy(sdFontFamilyName, "OpenDyslexic", sizeof(sdFontFamilyName) - 1); - sdFontFamilyName[sizeof(sdFontFamilyName) - 1] = '\0'; - } - } - if (++settingsRead >= fileSettingsCount) break; - readAndValidate(inputFile, fontSize, FONT_SIZE_COUNT); - if (++settingsRead >= fileSettingsCount) break; - readAndValidate(inputFile, lineSpacing, LINE_COMPRESSION_COUNT); - if (++settingsRead >= fileSettingsCount) break; - readAndValidate(inputFile, paragraphAlignment, PARAGRAPH_ALIGNMENT_COUNT); - if (++settingsRead >= fileSettingsCount) break; - uint8_t legacySleepTimeout = SLEEP_10_MIN; - readAndValidate(inputFile, legacySleepTimeout, SLEEP_TIMEOUT_COUNT); - sleepTimeoutMinutes = sleepTimeoutEnumToMinutes(legacySleepTimeout); - if (++settingsRead >= fileSettingsCount) break; - readAndValidate(inputFile, refreshFrequency, REFRESH_FREQUENCY_COUNT); - if (++settingsRead >= fileSettingsCount) break; - serialization::readPod(inputFile, screenMargin); - if (++settingsRead >= fileSettingsCount) break; - readAndValidate(inputFile, sleepScreenCoverMode, SLEEP_SCREEN_COVER_MODE_COUNT); - if (++settingsRead >= fileSettingsCount) break; - { - std::string urlStr; - serialization::readString(inputFile, urlStr); - strncpy(opdsServerUrl, urlStr.c_str(), sizeof(opdsServerUrl) - 1); - opdsServerUrl[sizeof(opdsServerUrl) - 1] = '\0'; - } - if (++settingsRead >= fileSettingsCount) break; - serialization::readPod(inputFile, textAntiAliasing); - if (++settingsRead >= fileSettingsCount) break; - readAndValidate(inputFile, hideBatteryPercentage, HIDE_BATTERY_PERCENTAGE_COUNT); - if (++settingsRead >= fileSettingsCount) break; - readAndValidate(inputFile, longPressButtonBehavior, LONG_PRESS_BUTTON_BEHAVIOR_COUNT); - if (++settingsRead >= fileSettingsCount) break; - serialization::readPod(inputFile, hyphenationEnabled); - if (++settingsRead >= fileSettingsCount) break; - { - std::string usernameStr; - serialization::readString(inputFile, usernameStr); - strncpy(opdsUsername, usernameStr.c_str(), sizeof(opdsUsername) - 1); - opdsUsername[sizeof(opdsUsername) - 1] = '\0'; - } - if (++settingsRead >= fileSettingsCount) break; - { - std::string passwordStr; - serialization::readString(inputFile, passwordStr); - strncpy(opdsPassword, passwordStr.c_str(), sizeof(opdsPassword) - 1); - opdsPassword[sizeof(opdsPassword) - 1] = '\0'; - } - if (++settingsRead >= fileSettingsCount) break; - readAndValidate(inputFile, sleepScreenCoverFilter, SLEEP_SCREEN_COVER_FILTER_COUNT); - if (++settingsRead >= fileSettingsCount) break; - serialization::readPod(inputFile, uiTheme); - if (++settingsRead >= fileSettingsCount) break; - readAndValidate(inputFile, frontButtonBack, FRONT_BUTTON_HARDWARE_COUNT); - if (++settingsRead >= fileSettingsCount) break; - readAndValidate(inputFile, frontButtonConfirm, FRONT_BUTTON_HARDWARE_COUNT); - if (++settingsRead >= fileSettingsCount) break; - readAndValidate(inputFile, frontButtonLeft, FRONT_BUTTON_HARDWARE_COUNT); - if (++settingsRead >= fileSettingsCount) break; - readAndValidate(inputFile, frontButtonRight, FRONT_BUTTON_HARDWARE_COUNT); - frontButtonMappingRead = true; - if (++settingsRead >= fileSettingsCount) break; - serialization::readPod(inputFile, fadingFix); - if (++settingsRead >= fileSettingsCount) break; - serialization::readPod(inputFile, embeddedStyle); - if (++settingsRead >= fileSettingsCount) break; - serialization::readPod(inputFile, frontButtonFollowOrientation); - if (++settingsRead >= fileSettingsCount) break; - } while (false); - - if (frontButtonMappingRead) { - CrossPointSettings::validateFrontButtonMapping(*this); - } else { - applyLegacyFrontButtonLayout(*this); + // Language -- stored as code string for stability across enum reorders. + if (doc["language"].is()) { + language = static_cast(I18n::languageFromCode(doc["language"].as())); } - LOG_DBG("CPS", "Settings loaded from binary file"); + if (needsResave) { + LOG_DBG("CPS", "Resaving settings to update format"); + requestResave(); + } + + LOG_DBG("CPS", "Settings loaded from file"); + return true; } +CrossPointSettings::StatusBarSpec CrossPointSettings::statusBarSpec() const { + StatusBarSpec spec; + spec.showChapterPageCount = statusBarChapterPageCount != 0; + spec.showBookProgressPercent = statusBarBookProgressPercentage != 0; + spec.titleMode = statusBarTitle; + spec.showBattery = statusBarBattery != 0; + spec.showBatteryPercent = hideBatteryPercentage == HIDE_NEVER; + spec.clockMode = statusBarClock; + spec.clock12h = clockFormat == 1; + spec.clockUtcOffsetQ = clockUtcOffsetQ; + spec.progressBarMode = statusBarProgressBar; + spec.progressBarHeightPx = + statusBarProgressBar != HIDE_PROGRESS ? static_cast((statusBarProgressBarThickness + 1) * 2) : 0; + spec.xtcMode = xtcStatusBarMode; + return spec; +} + +ReaderRenderSpec CrossPointSettings::readerRenderSpec(const uint16_t viewportWidth, + const uint16_t viewportHeight) const { + ReaderRenderSpec spec; + spec.fontId = getReaderFontId(); + spec.lineCompression = getReaderLineCompression(); + spec.extraParagraphSpacing = extraParagraphSpacing != 0; + spec.paragraphAlignment = paragraphAlignment; + spec.viewportWidth = viewportWidth; + spec.viewportHeight = viewportHeight; + spec.hyphenationEnabled = hyphenationEnabled != 0; + spec.embeddedStyle = embeddedStyle != 0; + spec.imageRendering = imageRendering; + spec.focusReadingEnabled = focusReadingEnabled != 0; + return spec; +} + float CrossPointSettings::getReaderLineCompression() const { // SD card fonts use same compression as Bookerly (the most neutral values) if (sdFontFamilyName[0] != '\0') { diff --git a/src/CrossPointSettings.h b/src/CrossPointSettings.h index 717942cc6a..0211660ef5 100644 --- a/src/CrossPointSettings.h +++ b/src/CrossPointSettings.h @@ -1,36 +1,25 @@ #pragma once -#include +#include +#include +#include #include -#include -#include -class CrossPointSettings { +class CrossPointSettings : public PersistableStore { private: - mutable std::mutex _mutex; - // Private constructor for singleton CrossPointSettings() = default; - // Static instance - static CrossPointSettings instance; + friend class PersistableStore; public: - // Delete copy constructor and assignment - CrossPointSettings(const CrossPointSettings&) = delete; - CrossPointSettings& operator=(const CrossPointSettings&) = delete; - - // Access the settings mutex for protecting multi-field reads/writes from other cores. - // Callers must not re-enter SETTINGS methods that lock _mutex while holding it. - std::mutex& getMutex() const { return _mutex; } - enum SLEEP_SCREEN_MODE { DARK = 0, LIGHT = 1, CUSTOM = 2, COVER = 3, - BLANK = 4, - COVER_CUSTOM = 5, + COVER_CUSTOM = 4, + BLANK = 5, QUICK_RESUME = 6, SLEEP_SCREEN_MODE_COUNT }; @@ -42,16 +31,6 @@ class CrossPointSettings { SLEEP_SCREEN_COVER_FILTER_COUNT }; - // Status bar enum - legacy - enum STATUS_BAR_MODE { - NONE = 0, - NO_PROGRESS = 1, - FULL = 2, - BOOK_PROGRESS_BAR = 3, - ONLY_BOOK_PROGRESS_BAR = 4, - CHAPTER_PROGRESS_BAR = 5, - STATUS_BAR_MODE_COUNT - }; enum STATUS_BAR_PROGRESS_BAR { BOOK_PROGRESS = 0, CHAPTER_PROGRESS = 1, @@ -153,6 +132,7 @@ class CrossPointSettings { LP_MENU_KOSYNC = 0, LP_MENU_DISABLED = 1, LP_MENU_BOOKMARK = 2, + LP_MENU_DICTIONARY = 3, LONG_PRESS_MENU_FUNCTION_COUNT }; @@ -175,6 +155,8 @@ class CrossPointSettings { enum TILT_PAGE_TURN { TILT_OFF = 0, TILT_NORMAL = 1, TILT_NVERTED = 2, TILT_PAGE_TURN_COUNT }; + enum TOUCH_READER_CONTROLS { TOUCH_READER_OFF = 0, TOUCH_READER_ON = 1, TOUCH_READER_CONTROLS_COUNT }; + enum QUICK_RESUME_SLEEP_SCREEN { QUICK_RESUME_NEVER = 0, QUICK_RESUME_AFTER_TIMEOUT = 1, @@ -187,8 +169,7 @@ class CrossPointSettings { uint8_t sleepScreenCoverMode = FIT; // Sleep screen cover filter uint8_t sleepScreenCoverFilter = NO_FILTER; - // Status bar settings (statusBar retained for migration only) - uint8_t statusBar = FULL; + // Status bar settings uint8_t statusBarChapterPageCount = 1; uint8_t statusBarBookProgressPercentage = 1; uint8_t statusBarProgressBar = HIDE_PROGRESS; @@ -238,10 +219,14 @@ class CrossPointSettings { // Reader screen margin settings uint8_t screenMargin = 5; - // OPDS browser settings - char opdsServerUrl[128] = ""; - char opdsUsername[64] = ""; - char opdsPassword[64] = ""; + // OPDS download destination folder ("" = SD root). Global; edited from the + // OPDS server list. Persisted via a category-less SettingInfo::String in + // SettingsList.h, so it stays out of the on-device Settings screen. + char opdsDownloadFolder[64] = ""; + // On-disk filename format for OPDS downloads (0=Author-Title default, 1=Title-Author, + // 2=Title). See OpdsFilenameFormat. Persisted via a category-less SettingInfo::Enum, + // edited from the OPDS server list; hidden from the on-device Settings screen. + uint8_t opdsFilenameFormat = 0; // Hide battery percentage uint8_t hideBatteryPercentage = HIDE_NEVER; // Long-press page turn button behavior @@ -261,26 +246,27 @@ class CrossPointSettings { uint8_t focusReadingEnabled = 0; // SD card font family name (empty = use built-in fontFamily) char sdFontFamilyName[32] = ""; + // Dictionary folder name under /dictionaries (empty = no dictionary) + char dictionaryName[32] = ""; // Show hidden files/directories (starting with '.') in the file browser (0 = hidden, 1 = show) uint8_t showHiddenFiles = 0; // Remove a book from the Recent Books list when its End-of-Book screen is reached (0 = off, 1 = on) uint8_t removeReadBooksFromRecents = 0; // Move epub to /Read/ folder on SD card when finished (0 = disabled, 1 = enabled) uint8_t moveFinishedToReadFolder = 0; + // Short press Back goes to file browser instead of home (0 = disabled, 1 = enabled) + uint8_t backShortToFileBrowser = 0; // Image rendering mode in EPUB reader uint8_t imageRendering = IMAGES_DISPLAY; // Tilt-based page turning (X3 only — requires QMI8658 IMU) uint8_t tiltPageTurn = TILT_OFF; + // Touch screen reader zones/gestures on boards with a touch controller. + uint8_t touchReaderControls = TOUCH_READER_ON; // Language setting (Language enum index, default 0 = EN) uint8_t language = 0; // Quick Resume: keep current content visible with moon icon instead of showing a static sleep screen. uint8_t quickResumeSleepScreen = QUICK_RESUME_NEVER; - ~CrossPointSettings() = default; - - // Get singleton instance - static CrossPointSettings& getInstance() { return instance; } - static constexpr uint8_t MIN_SLEEP_TIMEOUT_MINUTES = 1; static constexpr uint8_t SLEEP_TIMEOUT_NEVER_MINUTES = 31; static constexpr uint8_t MAX_SLEEP_TIMEOUT_MINUTES = SLEEP_TIMEOUT_NEVER_MINUTES; @@ -296,20 +282,53 @@ class CrossPointSettings { } int getReaderFontId() const; - // If count_only is true, returns the number of settings items that would be written. - uint8_t writeSettings(HalFile& file, bool count_only = false) const; + // Resolved status-bar composition. Consumers read the spec; only settings + // editors read the raw fields. + // + // Deliberately NOT built under storeMutex: every field it reads is a single + // byte, so a concurrent settings write can never produce a corrupt value — + // only a snapshot mixing pre- and post-change fields. That costs at most one + // e-ink frame drawn with a mixed status bar, which self-corrects on the next + // refresh. Locking here would instead put a mutex on the render path and + // stall it behind the SD write inside saveToFile(). Don't add one back. + struct StatusBarSpec { + bool showChapterPageCount = false; + bool showBookProgressPercent = false; + uint8_t titleMode = HIDE_TITLE; // STATUS_BAR_TITLE + bool showBattery = false; + bool showBatteryPercent = false; + uint8_t clockMode = STATUS_BAR_CLOCK_HIDE; // STATUS_BAR_CLOCK_MODE + bool clock12h = false; + uint8_t clockUtcOffsetQ = 48; // 48 = UTC+0 + uint8_t progressBarMode = HIDE_PROGRESS; // STATUS_BAR_PROGRESS_BAR + uint8_t progressBarHeightPx = 0; // (thickness+1)*2; 0 when the bar is hidden + uint8_t xtcMode = XTC_STATUS_BAR_HIDE; // XTC_STATUS_BAR_MODE + + bool showsProgressBar() const { return progressBarMode != HIDE_PROGRESS; } + bool showsTitle() const { return titleMode != HIDE_TITLE; } + bool showsClock() const { return clockMode != STATUS_BAR_CLOCK_HIDE; } + // Visibility of the text lane. Clock hardware presence is the caller's + // concern: pass halClock.isAvailable(), or true for layout reservation. + bool textLaneVisible(bool clockAvailable) const { + return showChapterPageCount || showBookProgressPercent || showsTitle() || showBattery || + (showsClock() && clockAvailable); + } + }; + StatusBarSpec statusBarSpec() const; + + // Resolved text-rendering configuration for the Epub layout engine. The + // viewport is renderer/orientation-derived, so the caller supplies it — + // passing it in keeps a spec from ever existing in a half-filled state. + // Unlocked for the same reason as statusBarSpec(); see the note above. + ReaderRenderSpec readerRenderSpec(uint16_t viewportWidth, uint16_t viewportHeight) const; - bool saveToFile() const; - bool loadFromFile(); + static const char* getFilePath() { return "/.crosspoint/settings.json"; } + void toJson(JsonDocument& doc) const; + bool fromJson(JsonVariantConst doc); static void validateFrontButtonMapping(CrossPointSettings& settings); static uint8_t sleepTimeoutEnumToMinutes(uint8_t legacyValue); - private: - bool loadFromBinaryFile(); - bool migrateLanguageBinaryFile(); - - public: float getReaderLineCompression() const; unsigned long getSleepTimeoutMs() const; int getRefreshFrequency() const; diff --git a/src/CrossPointState.cpp b/src/CrossPointState.cpp index 0a9d1a2559..88e6a0cca4 100644 --- a/src/CrossPointState.cpp +++ b/src/CrossPointState.cpp @@ -1,21 +1,9 @@ #include "CrossPointState.h" -#include -#include #include -#include #include -#include - -namespace { -constexpr uint8_t STATE_FILE_VERSION = 4; -constexpr char STATE_FILE_BIN[] = "/.crosspoint/state.bin"; -constexpr char STATE_FILE_JSON[] = "/.crosspoint/state.json"; -constexpr char STATE_FILE_BAK[] = "/.crosspoint/state.bin.bak"; -} // namespace - -CrossPointState CrossPointState::instance; +#include bool CrossPointState::isRecentSleep(uint16_t idx, uint8_t checkCount) const { const uint8_t effectiveCount = std::min(checkCount, recentSleepFill); @@ -32,71 +20,36 @@ void CrossPointState::pushRecentSleep(uint16_t idx) { if (recentSleepFill < SLEEP_RECENT_COUNT) recentSleepFill++; } -bool CrossPointState::saveToFile() const { - std::lock_guard lock(_mutex); - Storage.mkdir("/.crosspoint"); - return JsonSettingsIO::saveState(*this, STATE_FILE_JSON); -} - -bool CrossPointState::loadFromFile() { - // Try JSON first - if (Storage.exists(STATE_FILE_JSON)) { - String json = Storage.readFile(STATE_FILE_JSON); - if (!json.isEmpty()) { - std::lock_guard lock(_mutex); - return JsonSettingsIO::loadState(*this, json.c_str()); - } - } - - // Fall back to binary migration - if (Storage.exists(STATE_FILE_BIN)) { - if (loadFromBinaryFile()) { - if (saveToFile()) { - Storage.rename(STATE_FILE_BIN, STATE_FILE_BAK); - LOG_DBG("CPS", "Migrated state.bin to state.json"); - return true; - } else { - LOG_ERR("CPS", "Failed to save state during migration"); - return false; - } - } - } - - return false; +void CrossPointState::toJson(JsonDocument& doc) const { + doc["openEpubPath"] = openEpubPath; + JsonArray recentArr = doc["recentSleepImages"].to(); + for (int i = 0; i < SLEEP_RECENT_COUNT; i++) recentArr.add(recentSleepImages[i]); + doc["recentSleepPos"] = recentSleepPos; + doc["recentSleepFill"] = recentSleepFill; + doc["readerActivityLoadCount"] = readerActivityLoadCount; + doc["lastSleepFromReader"] = lastSleepFromReader; + doc["showBootScreen"] = showBootScreen; } -bool CrossPointState::loadFromBinaryFile() { - HalFile inputFile; - if (!Storage.openFileForRead("CPS", STATE_FILE_BIN, inputFile)) { - return false; - } - std::lock_guard lock(_mutex); - - uint8_t version; - serialization::readPod(inputFile, version); - if (version > STATE_FILE_VERSION) { - LOG_ERR("CPS", "Deserialization failed: Unknown version %u", version); - return false; - } - - serialization::readString(inputFile, openEpubPath); - if (version >= 2) { - uint8_t legacyLastSleep = UINT8_MAX; - serialization::readPod(inputFile, legacyLastSleep); - if (legacyLastSleep != UINT8_MAX) { - pushRecentSleep(static_cast(legacyLastSleep)); - } - } - - if (version >= 3) { - serialization::readPod(inputFile, readerActivityLoadCount); - } - - if (version >= 4) { - serialization::readPod(inputFile, lastSleepFromReader); - } else { - lastSleepFromReader = false; - } - +bool CrossPointState::fromJson(JsonVariantConst doc) { + openEpubPath = doc["openEpubPath"] | ""; + memset(recentSleepImages, 0, sizeof(recentSleepImages)); + JsonArrayConst recentArr = doc["recentSleepImages"]; + const int actualCount = + recentArr.isNull() ? 0 : std::min(static_cast(recentArr.size()), static_cast(SLEEP_RECENT_COUNT)); + for (int i = 0; i < actualCount; i++) recentSleepImages[i] = recentArr[i] | static_cast(0); + recentSleepPos = doc["recentSleepPos"] | static_cast(0); + if (recentSleepPos >= SLEEP_RECENT_COUNT) recentSleepPos = actualCount > 0 ? recentSleepPos % SLEEP_RECENT_COUNT : 0; + recentSleepFill = doc["recentSleepFill"] | static_cast(0); + recentSleepFill = static_cast(std::min(static_cast(recentSleepFill), actualCount)); + // Migrate legacy single-image field from old state.json (pre-recency-buffer). + // Only seeds the buffer if the new buffer is empty (fresh migration, not a resave). + if (recentSleepFill == 0 && !doc["lastSleepImage"].isNull()) { + const uint8_t legacy = doc["lastSleepImage"] | static_cast(UINT8_MAX); + if (legacy != UINT8_MAX) pushRecentSleep(static_cast(legacy)); + } + readerActivityLoadCount = doc["readerActivityLoadCount"] | static_cast(0); + lastSleepFromReader = doc["lastSleepFromReader"] | false; + showBootScreen = doc["showBootScreen"] | true; return true; } diff --git a/src/CrossPointState.h b/src/CrossPointState.h index 1a1a4cf7e6..1b8ecdee9d 100644 --- a/src/CrossPointState.h +++ b/src/CrossPointState.h @@ -1,18 +1,16 @@ #pragma once +#include +#include + #include -#include #include -class CrossPointState { - mutable std::mutex _mutex; +class CrossPointState : public PersistableStore { + CrossPointState() = default; - // Static instance - static CrossPointState instance; + friend class PersistableStore; public: - // Access the state mutex for protecting multi-field reads/writes from other cores. - std::mutex& getMutex() const { return _mutex; } - static constexpr uint8_t SLEEP_RECENT_COUNT = 16; std::string openEpubPath; @@ -23,23 +21,16 @@ class CrossPointState { bool lastSleepFromReader = false; bool showBootScreen = true; + static const char* getFilePath() { return "/.crosspoint/state.json"; } + void toJson(JsonDocument& doc) const; + bool fromJson(JsonVariantConst doc); + // Returns true if idx was shown within the last checkCount picks. // Walks backwards from the most recently written slot. bool isRecentSleep(uint16_t idx, uint8_t checkCount) const; void pushRecentSleep(uint16_t idx); - ~CrossPointState() = default; - - // Get singleton instance - static CrossPointState& getInstance() { return instance; } - - bool saveToFile() const; - - bool loadFromFile(); - - private: - bool loadFromBinaryFile(); }; -// Helper macro to access settings +// Helper macro to access state #define APP_STATE CrossPointState::getInstance() diff --git a/src/JsonSettingsIO.cpp b/src/JsonSettingsIO.cpp deleted file mode 100644 index 6f0a51d280..0000000000 --- a/src/JsonSettingsIO.cpp +++ /dev/null @@ -1,460 +0,0 @@ -#include "JsonSettingsIO.h" - -#include -#include -#include -#include - -#include -#include - -#include "BookmarkEntry.h" -#include "CrossPointSettings.h" -#include "CrossPointState.h" -#include "OpdsServerStore.h" -#include "RecentBooksStore.h" -#include "SettingsList.h" -#include "WifiCredentialStore.h" - -// Convert legacy settings. -void applyLegacyStatusBarSettings(CrossPointSettings& settings) { - switch (static_cast(settings.statusBar)) { - case CrossPointSettings::NONE: - settings.statusBarChapterPageCount = 0; - settings.statusBarBookProgressPercentage = 0; - settings.statusBarProgressBar = CrossPointSettings::HIDE_PROGRESS; - settings.statusBarTitle = CrossPointSettings::HIDE_TITLE; - settings.statusBarBattery = 0; - break; - case CrossPointSettings::NO_PROGRESS: - settings.statusBarChapterPageCount = 0; - settings.statusBarBookProgressPercentage = 0; - settings.statusBarProgressBar = CrossPointSettings::HIDE_PROGRESS; - settings.statusBarTitle = CrossPointSettings::CHAPTER_TITLE; - settings.statusBarBattery = 1; - break; - case CrossPointSettings::BOOK_PROGRESS_BAR: - settings.statusBarChapterPageCount = 1; - settings.statusBarBookProgressPercentage = 0; - settings.statusBarProgressBar = CrossPointSettings::BOOK_PROGRESS; - settings.statusBarTitle = CrossPointSettings::CHAPTER_TITLE; - settings.statusBarBattery = 1; - break; - case CrossPointSettings::ONLY_BOOK_PROGRESS_BAR: - settings.statusBarChapterPageCount = 1; - settings.statusBarBookProgressPercentage = 0; - settings.statusBarProgressBar = CrossPointSettings::BOOK_PROGRESS; - settings.statusBarTitle = CrossPointSettings::HIDE_TITLE; - settings.statusBarBattery = 0; - break; - case CrossPointSettings::CHAPTER_PROGRESS_BAR: - settings.statusBarChapterPageCount = 0; - settings.statusBarBookProgressPercentage = 1; - settings.statusBarProgressBar = CrossPointSettings::CHAPTER_PROGRESS; - settings.statusBarTitle = CrossPointSettings::CHAPTER_TITLE; - settings.statusBarBattery = 1; - break; - case CrossPointSettings::FULL: - default: - settings.statusBarChapterPageCount = 1; - settings.statusBarBookProgressPercentage = 1; - settings.statusBarProgressBar = CrossPointSettings::HIDE_PROGRESS; - settings.statusBarTitle = CrossPointSettings::CHAPTER_TITLE; - settings.statusBarBattery = 1; - break; - } -} - -// ---- CrossPointState ---- - -bool JsonSettingsIO::saveState(const CrossPointState& s, const char* path) { - JsonDocument doc; - doc["openEpubPath"] = s.openEpubPath; - JsonArray recentArr = doc["recentSleepImages"].to(); - for (int i = 0; i < CrossPointState::SLEEP_RECENT_COUNT; i++) recentArr.add(s.recentSleepImages[i]); - doc["recentSleepPos"] = s.recentSleepPos; - doc["recentSleepFill"] = s.recentSleepFill; - doc["readerActivityLoadCount"] = s.readerActivityLoadCount; - doc["lastSleepFromReader"] = s.lastSleepFromReader; - doc["showBootScreen"] = s.showBootScreen; - - String json; - serializeJson(doc, json); - return Storage.writeFile(path, json); -} - -bool JsonSettingsIO::loadState(CrossPointState& s, const char* json) { - JsonDocument doc; - auto error = deserializeJson(doc, json); - if (error) { - LOG_ERR("CPS", "JSON parse error: %s", error.c_str()); - return false; - } - - s.openEpubPath = doc["openEpubPath"] | std::string(""); - memset(s.recentSleepImages, 0, sizeof(s.recentSleepImages)); - JsonArrayConst recentArr = doc["recentSleepImages"]; - const int actualCount = recentArr.isNull() ? 0 - : std::min(static_cast(recentArr.size()), - static_cast(CrossPointState::SLEEP_RECENT_COUNT)); - for (int i = 0; i < actualCount; i++) s.recentSleepImages[i] = recentArr[i] | static_cast(0); - s.recentSleepPos = doc["recentSleepPos"] | static_cast(0); - if (s.recentSleepPos >= CrossPointState::SLEEP_RECENT_COUNT) - s.recentSleepPos = actualCount > 0 ? s.recentSleepPos % CrossPointState::SLEEP_RECENT_COUNT : 0; - s.recentSleepFill = doc["recentSleepFill"] | static_cast(0); - s.recentSleepFill = static_cast(std::min(static_cast(s.recentSleepFill), actualCount)); - // Migrate legacy single-image field from old state.json (pre-recency-buffer). - // Only seeds the buffer if the new buffer is empty (fresh migration, not a resave). - if (s.recentSleepFill == 0 && !doc["lastSleepImage"].isNull()) { - const uint8_t legacy = doc["lastSleepImage"] | static_cast(UINT8_MAX); - if (legacy != UINT8_MAX) s.pushRecentSleep(static_cast(legacy)); - } - s.readerActivityLoadCount = doc["readerActivityLoadCount"] | static_cast(0); - s.lastSleepFromReader = doc["lastSleepFromReader"] | false; - s.showBootScreen = doc["showBootScreen"] | true; - return true; -} - -// ---- CrossPointSettings ---- - -bool JsonSettingsIO::saveSettings(const CrossPointSettings& s, const char* path) { - JsonDocument doc; - - for (const auto& info : getSettingsList()) { - if (!info.key) continue; - // Dynamic entries (KOReader etc.) are stored in their own files — skip. - if (!info.valuePtr && !info.stringOffset) continue; - - if (info.stringOffset) { - const char* strPtr = (const char*)&s + info.stringOffset; - if (info.obfuscated) { - doc[std::string(info.key) + "_obf"] = obfuscation::obfuscateToBase64(strPtr); - } else { - doc[info.key] = strPtr; - } - } else { - doc[info.key] = s.*(info.valuePtr); - } - } - - // Front button remap — managed by RemapFrontButtons sub-activity, not in SettingsList. - doc["frontButtonBack"] = s.frontButtonBack; - doc["frontButtonConfirm"] = s.frontButtonConfirm; - doc["frontButtonLeft"] = s.frontButtonLeft; - doc["frontButtonRight"] = s.frontButtonRight; - // Font family — uses dynamic getter/setter in SettingsList so the generic loop skips it. - doc["fontFamily"] = s.fontFamily; - // SD card font family name — not in SettingsList, save manually - if (s.sdFontFamilyName[0] != '\0') { - doc["sdFontFamilyName"] = s.sdFontFamilyName; - } - - // Language -- managed by LanguageSelectActivity, not in SettingsList. - // Stored as ISO code string ("EN", "DE", ...) for stability across enum reorders. - doc["language"] = (s.language < getLanguageCount()) ? LANGUAGE_CODES[s.language] : "EN"; - - // Language -- managed by LanguageSelectActivity, not in SettingsList. - // Stored as ISO code string ("EN", "DE", ...) for stability across enum reorders. - doc["language"] = (s.language < getLanguageCount()) ? LANGUAGE_CODES[s.language] : "EN"; - - String json; - serializeJson(doc, json); - return Storage.writeFile(path, json); -} - -bool JsonSettingsIO::loadSettings(CrossPointSettings& s, const char* json, bool* needsResave) { - if (needsResave) *needsResave = false; - JsonDocument doc; - auto error = deserializeJson(doc, json); - if (error) { - LOG_ERR("CPS", "JSON parse error: %s", error.c_str()); - return false; - } - - auto clamp = [](uint8_t val, uint8_t maxVal, uint8_t def) -> uint8_t { return val < maxVal ? val : def; }; - - // Legacy migration: if statusBarChapterPageCount is absent this is a pre-refactor settings file. - // Populate s with migrated values now so the generic loop below picks them up as defaults and clamps them. - if (doc["statusBarChapterPageCount"].isNull()) { - applyLegacyStatusBarSettings(s); - } - - for (const auto& info : getSettingsList()) { - if (!info.key) continue; - // Dynamic entries (KOReader etc.) are stored in their own files — skip. - if (!info.valuePtr && !info.stringOffset) continue; - - if (info.stringOffset) { - const char* strPtr = (const char*)&s + info.stringOffset; - const std::string fieldDefault = strPtr; // current buffer = struct-initializer default - std::string val; - if (info.obfuscated) { - bool ok = false; - val = obfuscation::deobfuscateFromBase64(doc[std::string(info.key) + "_obf"] | "", &ok); - if (!ok || val.empty()) { - val = doc[info.key] | fieldDefault; - if (val != fieldDefault && needsResave) *needsResave = true; - } - } else { - val = doc[info.key] | fieldDefault; - } - char* destPtr = (char*)&s + info.stringOffset; - if (info.stringMaxLen == 0) { - LOG_ERR("CPS", "Misconfigured SettingInfo: stringMaxLen is 0 for key '%s'", info.key); - destPtr[0] = '\0'; - if (needsResave) *needsResave = true; - continue; - } - strncpy(destPtr, val.c_str(), info.stringMaxLen - 1); - destPtr[info.stringMaxLen - 1] = '\0'; - } else { - const uint8_t fieldDefault = s.*(info.valuePtr); // struct-initializer default, read before we overwrite it - uint8_t v = doc[info.key] | fieldDefault; - if (info.type == SettingType::ENUM) { - v = clamp(v, (uint8_t)info.enumValues.size(), fieldDefault); - } else if (info.type == SettingType::TOGGLE) { - v = clamp(v, (uint8_t)2, fieldDefault); - } else if (info.type == SettingType::VALUE) { - if (v < info.valueRange.min) - v = info.valueRange.min; - else if (v > info.valueRange.max) - v = info.valueRange.max; - } - s.*(info.valuePtr) = v; - } - } - - if (doc["sleepTimeoutMinutes"].isNull() && !doc["sleepTimeout"].isNull()) { - const uint8_t legacyValue = - clamp(doc["sleepTimeout"] | (uint8_t)CrossPointSettings::SLEEP_10_MIN, CrossPointSettings::SLEEP_TIMEOUT_COUNT, - (uint8_t)CrossPointSettings::SLEEP_10_MIN); - s.sleepTimeoutMinutes = CrossPointSettings::sleepTimeoutEnumToMinutes(legacyValue); - if (needsResave) *needsResave = true; - } - // Front button remap — managed by RemapFrontButtons sub-activity, not in SettingsList. - using S = CrossPointSettings; - s.frontButtonBack = - clamp(doc["frontButtonBack"] | (uint8_t)S::FRONT_HW_BACK, S::FRONT_BUTTON_HARDWARE_COUNT, S::FRONT_HW_BACK); - s.frontButtonConfirm = clamp(doc["frontButtonConfirm"] | (uint8_t)S::FRONT_HW_CONFIRM, S::FRONT_BUTTON_HARDWARE_COUNT, - S::FRONT_HW_CONFIRM); - s.frontButtonLeft = - clamp(doc["frontButtonLeft"] | (uint8_t)S::FRONT_HW_LEFT, S::FRONT_BUTTON_HARDWARE_COUNT, S::FRONT_HW_LEFT); - s.frontButtonRight = - clamp(doc["frontButtonRight"] | (uint8_t)S::FRONT_HW_RIGHT, S::FRONT_BUTTON_HARDWARE_COUNT, S::FRONT_HW_RIGHT); - CrossPointSettings::validateFrontButtonMapping(s); - - // Font family — uses dynamic getter/setter in SettingsList so the generic loop skips it. - const uint8_t storedFontFamily = doc["fontFamily"] | (uint8_t)0; - s.fontFamily = clamp(storedFontFamily, CrossPointSettings::BUILTIN_FONT_COUNT, 0); - // SD card font family name — not in SettingsList, load manually - const char* sfn = doc["sdFontFamilyName"] | ""; - strncpy(s.sdFontFamilyName, sfn, sizeof(s.sdFontFamilyName) - 1); - s.sdFontFamilyName[sizeof(s.sdFontFamilyName) - 1] = '\0'; - if (storedFontFamily == CrossPointSettings::LEGACY_OPENDYSLEXIC && s.sdFontFamilyName[0] == '\0') { - s.fontFamily = CrossPointSettings::NOTOSERIF; - strncpy(s.sdFontFamilyName, "OpenDyslexic", sizeof(s.sdFontFamilyName) - 1); - s.sdFontFamilyName[sizeof(s.sdFontFamilyName) - 1] = '\0'; - if (needsResave) *needsResave = true; - } else if (storedFontFamily >= CrossPointSettings::BUILTIN_FONT_COUNT) { - if (needsResave) *needsResave = true; - } - - // Language -- stored as code string for stability across enum reorders. - if (doc["language"].is()) { - s.language = static_cast(I18n::languageFromCode(doc["language"].as())); - } - - LOG_DBG("CPS", "Settings loaded from file"); - - return true; -} - -// ---- WifiCredentialStore ---- - -bool JsonSettingsIO::saveWifi(const WifiCredentialStore& store, const char* path) { - JsonDocument doc; - doc["lastConnectedSsid"] = store.getLastConnectedSsid(); - - JsonArray arr = doc["credentials"].to(); - for (const auto& cred : store.getCredentials()) { - JsonObject obj = arr.add(); - obj["ssid"] = cred.ssid; - obj["password_obf"] = obfuscation::obfuscateToBase64(cred.password); - } - - String json; - serializeJson(doc, json); - return Storage.writeFile(path, json); -} - -bool JsonSettingsIO::loadWifi(WifiCredentialStore& store, const char* json, bool* needsResave) { - if (needsResave) *needsResave = false; - JsonDocument doc; - auto error = deserializeJson(doc, json); - if (error) { - LOG_ERR("WCS", "JSON parse error: %s", error.c_str()); - return false; - } - - store.lastConnectedSsid = doc["lastConnectedSsid"] | std::string(""); - - store.credentials.clear(); - JsonArray arr = doc["credentials"].as(); - for (JsonObject obj : arr) { - if (store.credentials.size() >= store.MAX_NETWORKS) break; - WifiCredential cred; - cred.ssid = obj["ssid"] | std::string(""); - bool ok = false; - cred.password = obfuscation::deobfuscateFromBase64(obj["password_obf"] | "", &ok); - if (!ok || cred.password.empty()) { - cred.password = obj["password"] | std::string(""); - if (!cred.password.empty() && needsResave) *needsResave = true; - } - store.credentials.push_back(cred); - } - - LOG_DBG("WCS", "Loaded %zu WiFi credentials from file", store.credentials.size()); - return true; -} - -// ---- RecentBooksStore ---- - -bool JsonSettingsIO::saveRecentBooks(const RecentBooksStore& store, const char* path) { - JsonDocument doc; - JsonArray arr = doc["books"].to(); - for (const auto& book : store.getBooks()) { - JsonObject obj = arr.add(); - obj["path"] = book.path; - obj["title"] = book.title; - obj["author"] = book.author; - obj["coverBmpPath"] = book.coverBmpPath; - } - - String json; - serializeJson(doc, json); - return Storage.writeFile(path, json); -} - -bool JsonSettingsIO::loadRecentBooks(RecentBooksStore& store, const char* json) { - JsonDocument doc; - auto error = deserializeJson(doc, json); - if (error) { - LOG_ERR("RBS", "JSON parse error: %s", error.c_str()); - return false; - } - - store.recentBooks.clear(); - JsonArray arr = doc["books"].as(); - for (JsonObject obj : arr) { - if (store.getCount() >= 10) break; - RecentBook book; - book.path = obj["path"] | std::string(""); - book.title = obj["title"] | std::string(""); - book.author = obj["author"] | std::string(""); - book.coverBmpPath = obj["coverBmpPath"] | std::string(""); - store.recentBooks.push_back(book); - } - - LOG_DBG("RBS", "Recent books loaded from file (%d entries)", store.getCount()); - return true; -} - -// ---- OpdsServerStore ---- -// Follows the same save/load pattern as WifiCredentialStore above. -// Passwords are XOR-obfuscated with the device MAC and base64-encoded ("password_obf" key). - -bool JsonSettingsIO::saveOpds(const OpdsServerStore& store, const char* path) { - JsonDocument doc; - - JsonArray arr = doc["servers"].to(); - for (const auto& server : store.getServers()) { - JsonObject obj = arr.add(); - obj["name"] = server.name; - obj["url"] = server.url; - obj["username"] = server.username; - obj["password_obf"] = obfuscation::obfuscateToBase64(server.password); - } - - String json; - serializeJson(doc, json); - return Storage.writeFile(path, json); -} - -bool JsonSettingsIO::loadOpds(OpdsServerStore& store, const char* json, bool* needsResave) { - if (needsResave) *needsResave = false; - JsonDocument doc; - auto error = deserializeJson(doc, json); - if (error) { - LOG_ERR("OPS", "JSON parse error: %s", error.c_str()); - return false; - } - - store.servers.clear(); - JsonArray arr = doc["servers"].as(); - for (JsonObject obj : arr) { - if (store.servers.size() >= OpdsServerStore::MAX_SERVERS) break; - OpdsServer server; - server.name = obj["name"] | std::string(""); - server.url = obj["url"] | std::string(""); - server.username = obj["username"] | std::string(""); - // Try the obfuscated key first; fall back to plaintext "password" for - // files written before obfuscation was added (or hand-edited JSON). - bool ok = false; - server.password = obfuscation::deobfuscateFromBase64(obj["password_obf"] | "", &ok); - if (!ok || server.password.empty()) { - server.password = obj["password"] | std::string(""); - if (!server.password.empty() && needsResave) *needsResave = true; - } - store.servers.push_back(std::move(server)); - } - - LOG_DBG("OPS", "Loaded %zu OPDS servers from file", store.servers.size()); - return true; -} - -// ---- Bookmarks ---- - -bool JsonSettingsIO::saveBookmarks(const std::vector& bookmarks, const char* path) { - JsonDocument doc; - JsonArray arr = doc["bookmarks"].to(); - LOG_DBG("BKM", "Saving %zu bookmarks to file", bookmarks.size()); - for (const auto& bookmark : bookmarks) { - JsonObject obj = arr.add(); - obj["xpath"] = bookmark.xpath; - obj["percentage"] = bookmark.percentage; - obj["summary"] = bookmark.summary; - obj["si"] = bookmark.computedSpineIndex; - obj["pc"] = bookmark.computedChapterPageCount; - obj["pp"] = bookmark.computedChapterProgress; - } - - String json; - serializeJson(doc, json); - return Storage.writeFile(path, json); -} - -bool JsonSettingsIO::loadBookmarks(std::vector& bookmarks, const char* json) { - JsonDocument doc; - auto error = deserializeJson(doc, json); - if (error) { - LOG_ERR("BKM", "JSON parse error: %s", error.c_str()); - return false; - } - - JsonArray arr = doc["bookmarks"].as(); - bookmarks.clear(); - bookmarks.reserve(arr.size()); - for (JsonObject obj : arr) { - bookmarks.emplace_back(); - auto& bookmark = bookmarks.back(); - bookmark.xpath = obj["xpath"] | std::string(""); - bookmark.percentage = obj["percentage"] | static_cast(0); - bookmark.summary = obj["summary"] | std::string(""); - bookmark.computedSpineIndex = obj["si"] | static_cast(0); - bookmark.computedChapterPageCount = obj["pc"] | static_cast(0); - bookmark.computedChapterProgress = obj["pp"] | static_cast(0); - } - - LOG_DBG("BKM", "Loaded %zu bookmarks from file", bookmarks.size()); - return true; -} diff --git a/src/JsonSettingsIO.h b/src/JsonSettingsIO.h deleted file mode 100644 index 45888b67a9..0000000000 --- a/src/JsonSettingsIO.h +++ /dev/null @@ -1,38 +0,0 @@ -#pragma once - -#include - -class CrossPointSettings; -class CrossPointState; -class WifiCredentialStore; -class RecentBooksStore; -class OpdsServerStore; -struct BookmarkEntry; - -namespace JsonSettingsIO { - -// CrossPointSettings -bool saveSettings(const CrossPointSettings& s, const char* path); -bool loadSettings(CrossPointSettings& s, const char* json, bool* needsResave = nullptr); - -// CrossPointState -bool saveState(const CrossPointState& s, const char* path); -bool loadState(CrossPointState& s, const char* json); - -// WifiCredentialStore -bool saveWifi(const WifiCredentialStore& store, const char* path); -bool loadWifi(WifiCredentialStore& store, const char* json, bool* needsResave = nullptr); - -// RecentBooksStore -bool saveRecentBooks(const RecentBooksStore& store, const char* path); -bool loadRecentBooks(RecentBooksStore& store, const char* json); - -// OpdsServerStore -bool saveOpds(const OpdsServerStore& store, const char* path); -bool loadOpds(OpdsServerStore& store, const char* json, bool* needsResave = nullptr); - -// Bookmarks -bool saveBookmarks(const std::vector& bookmarks, const char* path); -bool loadBookmarks(std::vector& bookmarks, const char* json); - -} // namespace JsonSettingsIO diff --git a/src/MappedInputManager.cpp b/src/MappedInputManager.cpp index f8b5f0cc20..eb1598632d 100644 --- a/src/MappedInputManager.cpp +++ b/src/MappedInputManager.cpp @@ -2,7 +2,11 @@ #include +#include +#include + #include "CrossPointSettings.h" +#include "components/UITheme.h" bool MappedInputManager::isNavDirectionSwapped() const { // Key the swap on the orientation the screen is *actually* rendered at, not the persisted reader @@ -74,9 +78,209 @@ bool MappedInputManager::mapButton(const Button button, bool (HalGPIO::*fn)(uint return false; } -bool MappedInputManager::wasPressed(const Button button) const { return mapButton(button, &HalGPIO::wasPressed); } +namespace { +constexpr float LEFT_EDGE_BACK_GESTURE_FRAC_X = 0.25f; +constexpr float BOTTOM_EDGE_BACK_GESTURE_FRAC_Y = 0.14f; +constexpr float TOP_EDGE_MENU_GESTURE_FRAC_Y = 0.14f; +constexpr unsigned long TOUCH_DOWN_SELECT_DELAY_MS = 90; +constexpr unsigned long TOUCH_HELD_OVERRIDE_WINDOW_MS = 250; +} // namespace + +bool MappedInputManager::hasTouch() const { return gpio.hasTouch(); } + +void MappedInputManager::rememberTouchHeldTime() const { + touchHeldOverrideValid = true; + touchHeldOverrideMs = gpio.lastTouchHeldMs(); + touchHeldOverrideAt = millis(); +} + +bool MappedInputManager::wasScreenTapped(int& x, int& y) const { + float nx = 0.0f; + float ny = 0.0f; + if (!gpio.wasTouchTap(nx, ny)) return false; + renderer.tapToLogical(nx, ny, x, y); + rememberTouchHeldTime(); + return true; +} + +bool MappedInputManager::wasScreenTouchDown(int& x, int& y) const { + float nx = 0.0f; + float ny = 0.0f; + unsigned long heldMs = 0; + if (!gpio.isTouchTapCandidate(nx, ny, heldMs)) return false; + if (heldMs < TOUCH_DOWN_SELECT_DELAY_MS) return false; + renderer.tapToLogical(nx, ny, x, y); + return true; +} + +bool MappedInputManager::isScreenTouchHeld(int& x, int& y) const { + // Live contact position while the finger is down (no tap-slop gate) — drag tracking. + float nx = 0.0f; + float ny = 0.0f; + if (!gpio.isTouchHeldAt(nx, ny)) return false; + renderer.tapToLogical(nx, ny, x, y); + return true; +} + +bool MappedInputManager::wasTapInRect(const int x, const int y, const int width, const int height) const { + int tx = 0; + int ty = 0; + return wasScreenTapped(tx, ty) && tx >= x && tx < x + width && ty >= y && ty < y + height; +} -bool MappedInputManager::wasReleased(const Button button) const { return mapButton(button, &HalGPIO::wasReleased); } +bool MappedInputManager::listItemFromPoint(const int x, const int y, int& index, const int itemCount, + const int selectedIndex, const int listTop, const int listHeight, + const bool hasSubtitle) const { + (void)x; + if (itemCount <= 0) return false; + if (y < listTop || y >= listTop + listHeight) return false; + + const auto& theme = UITheme::getInstance().getTheme(); + const int rowStep = theme.getListRowStep(hasSubtitle); + if (rowStep <= 0) return false; + + const int pageItems = theme.getListPageItems(listHeight, hasSubtitle); + if (pageItems <= 0) return false; + const int pageStart = std::max(0, selectedIndex / pageItems) * pageItems; + const int row = (y - listTop) / rowStep; + const int tapped = pageStart + row; + if (row < 0 || row >= pageItems || tapped >= itemCount) return false; + index = tapped; + return true; +} + +bool MappedInputManager::wasListItemTapped(int& index, const int itemCount, const int selectedIndex, const int listTop, + const int listHeight, const bool hasSubtitle) const { + int tx = 0; + int ty = 0; + return wasScreenTapped(tx, ty) && + listItemFromPoint(tx, ty, index, itemCount, selectedIndex, listTop, listHeight, hasSubtitle); +} + +bool MappedInputManager::wasListItemTouchedDown(int& index, const int itemCount, const int selectedIndex, + const int listTop, const int listHeight, const bool hasSubtitle) const { + int tx = 0; + int ty = 0; + return wasScreenTouchDown(tx, ty) && + listItemFromPoint(tx, ty, index, itemCount, selectedIndex, listTop, listHeight, hasSubtitle); +} + +MappedInputManager::RowTouch MappedInputManager::rowTouch(int& row, const int top, const int rowStep, + const int rowCount, const int xStart, const int xEnd, + const int rowHeight) const { + if (rowStep <= 0 || rowCount <= 0) return RowTouch::None; + const auto hit = [&](const int x, const int y) { + if (x < xStart || x >= xEnd || y < top) return false; + const int r = (y - top) / rowStep; + if (r >= rowCount) return false; + if (rowHeight > 0 && (y - top) % rowStep >= rowHeight) return false; + row = r; + return true; + }; + int x = 0; + int y = 0; + if (wasScreenTouchDown(x, y) && hit(x, y)) return RowTouch::Down; + if (wasScreenTapped(x, y) && hit(x, y)) return RowTouch::Tap; + return RowTouch::None; +} + +MappedInputManager::RowTouch MappedInputManager::colTouch(int& col, const int left, const int colStep, + const int colCount, const int yStart, const int yEnd, + const int colWidth) const { + if (colStep <= 0 || colCount <= 0) return RowTouch::None; + const auto hit = [&](const int x, const int y) { + if (y < yStart || y >= yEnd || x < left) return false; + const int c = (x - left) / colStep; + if (c >= colCount) return false; + if (colWidth > 0 && (x - left) % colStep >= colWidth) return false; + col = c; + return true; + }; + int x = 0; + int y = 0; + if (wasScreenTouchDown(x, y) && hit(x, y)) return RowTouch::Down; + if (wasScreenTapped(x, y) && hit(x, y)) return RowTouch::Tap; + return RowTouch::None; +} + +bool MappedInputManager::decodeSwipe(int& sx, int& sy, int& ex, int& ey) const { + float nxs = 0.0f; + float nys = 0.0f; + float nxe = 0.0f; + float nye = 0.0f; + if (!gpio.wasSwipe(nxs, nys, nxe, nye)) return false; + renderer.tapToLogical(nxs, nys, sx, sy); + renderer.tapToLogical(nxe, nye, ex, ey); + return true; +} + +MappedInputManager::SwipeDir MappedInputManager::wasSwipe() const { + int sx = 0; + int sy = 0; + int ex = 0; + int ey = 0; + if (!decodeSwipe(sx, sy, ex, ey)) return SwipeDir::None; + const int dx = ex - sx; + const int dy = ey - sy; + if (std::abs(dx) >= std::abs(dy)) { + return dx < 0 ? SwipeDir::Left : SwipeDir::Right; + } + return dy < 0 ? SwipeDir::Up : SwipeDir::Down; +} + +bool MappedInputManager::wasBackGesture() const { + // Back = left-to-right swipe starting near the left edge. Edge-anchored so that + // mid-screen horizontal swipes stay available to activities that consume + // SwipeDir::Left/Right (e.g. percent selection, image viewer). + int sx = 0; + int sy = 0; + int ex = 0; + int ey = 0; + if (!decodeSwipe(sx, sy, ex, ey)) return false; + const bool hit = sx <= renderer.getScreenWidth() * LEFT_EDGE_BACK_GESTURE_FRAC_X && ex > sx && + std::abs(ex - sx) > std::abs(ey - sy); + if (hit) rememberTouchHeldTime(); + return hit; +} + +bool MappedInputManager::wasMenuGesture() const { + // Downward swipe starting at the top edge (mirror of the bottom-edge home gesture). + int sx = 0; + int sy = 0; + int ex = 0; + int ey = 0; + if (!decodeSwipe(sx, sy, ex, ey)) return false; + const int topEdgeBottom = static_cast(renderer.getScreenHeight() * TOP_EDGE_MENU_GESTURE_FRAC_Y); + const bool hit = sy <= topEdgeBottom && ey > sy && std::abs(ey - sy) > std::abs(ex - sx); + if (hit) rememberTouchHeldTime(); + return hit; +} + +bool MappedInputManager::wasHomeGesture() const { + int sx = 0; + int sy = 0; + int ex = 0; + int ey = 0; + if (decodeSwipe(sx, sy, ex, ey)) { + const int bottomEdgeTop = + renderer.getScreenHeight() - static_cast(renderer.getScreenHeight() * BOTTOM_EDGE_BACK_GESTURE_FRAC_Y); + if (sy >= bottomEdgeTop && ey < sy && std::abs(ey - sy) > std::abs(ex - sx)) { + rememberTouchHeldTime(); + return true; + } + } + return false; +} + +bool MappedInputManager::wasPressed(const Button button) const { + if (button == Button::Back && wasBackGesture()) return true; + return mapButton(button, &HalGPIO::wasPressed); +} + +bool MappedInputManager::wasReleased(const Button button) const { + if (button == Button::Back && wasBackGesture()) return true; + return mapButton(button, &HalGPIO::wasReleased); +} bool MappedInputManager::isPressed(const Button button) const { return mapButton(button, &HalGPIO::isPressed); } @@ -84,7 +288,14 @@ bool MappedInputManager::wasAnyPressed() const { return gpio.wasAnyPressed(); } bool MappedInputManager::wasAnyReleased() const { return gpio.wasAnyReleased(); } -unsigned long MappedInputManager::getHeldTime() const { return gpio.getHeldTime(); } +unsigned long MappedInputManager::getHeldTime() const { + if (!gpio.wasAnyPressed() && !gpio.wasAnyReleased() && touchHeldOverrideValid && + millis() - touchHeldOverrideAt <= TOUCH_HELD_OVERRIDE_WINDOW_MS) { + return touchHeldOverrideMs; + } + touchHeldOverrideValid = false; + return gpio.getHeldTime(); +} MappedInputManager::Labels MappedInputManager::mapLabels(const char* back, const char* confirm, const char* previous, const char* next) const { diff --git a/src/MappedInputManager.h b/src/MappedInputManager.h index 89e6b86207..134f61bce7 100644 --- a/src/MappedInputManager.h +++ b/src/MappedInputManager.h @@ -7,6 +7,7 @@ class GfxRenderer; class MappedInputManager { public: enum class Button { Back, Confirm, Left, Right, Up, Down, Power, PageBack, PageForward, NavNext, NavPrevious }; + enum class SwipeDir { None, Left, Right, Up, Down }; struct Labels { const char* btn1; @@ -21,9 +22,35 @@ class MappedInputManager { bool wasPressed(Button button) const; bool wasReleased(Button button) const; bool isPressed(Button button) const; + bool hasTouch() const; + bool wasScreenTapped(int& x, int& y) const; + bool wasScreenTouchDown(int& x, int& y) const; + bool isScreenTouchHeld(int& x, int& y) const; + bool wasTapInRect(int x, int y, int width, int height) const; + bool wasListItemTapped(int& index, int itemCount, int selectedIndex, int listTop, int listHeight, + bool hasSubtitle) const; + bool wasListItemTouchedDown(int& index, int itemCount, int selectedIndex, int listTop, int listHeight, + bool hasSubtitle) const; + + // Combined touch interaction for a band of equal rows with caller-supplied + // geometry — the shared hit-test for lists the theme helpers above do not + // cover (custom row heights, option prompts, menus). Down = a held + // tap-candidate is on a row (update the selection highlight); Tap = a tap + // released on one (activate). rowHeight limits the hit to the top rowHeight + // px of each step (0 = the full step, no gap band). + enum class RowTouch : uint8_t { None, Down, Tap }; + RowTouch rowTouch(int& row, int top, int rowStep, int rowCount, int xStart = 0, int xEnd = INT32_MAX, + int rowHeight = 0) const; + // Horizontal variant for side-by-side button pairs (confirmation prompts). + RowTouch colTouch(int& col, int left, int colStep, int colCount, int yStart, int yEnd, int colWidth = 0) const; + + SwipeDir wasSwipe() const; + bool wasHomeGesture() const; + bool wasMenuGesture() const; bool wasAnyPressed() const; bool wasAnyReleased() const; unsigned long getHeldTime() const; + const GfxRenderer& getRenderer() const { return renderer; } Labels mapLabels(const char* back, const char* confirm, const char* previous, const char* next) const; // Returns the raw front button index that was pressed this frame (or -1 if none). int getPressedFrontButton() const; @@ -44,4 +71,14 @@ class MappedInputManager { const GfxRenderer& renderer; bool mapButton(Button button, bool (HalGPIO::*fn)(uint8_t) const) const; + bool wasBackGesture() const; + // Fetch the pending swipe (if any) and map both endpoints to logical screen coords + bool decodeSwipe(int& sx, int& sy, int& ex, int& ey) const; + bool listItemFromPoint(int x, int y, int& index, int itemCount, int selectedIndex, int listTop, int listHeight, + bool hasSubtitle) const; + void rememberTouchHeldTime() const; + + mutable bool touchHeldOverrideValid = false; + mutable unsigned long touchHeldOverrideMs = 0; + mutable unsigned long touchHeldOverrideAt = 0; }; diff --git a/src/OpdsServerStore.cpp b/src/OpdsServerStore.cpp index b21516828d..f9e1a1188a 100644 --- a/src/OpdsServerStore.cpp +++ b/src/OpdsServerStore.cpp @@ -1,74 +1,48 @@ #include "OpdsServerStore.h" -#include -#include #include +#include +#include #include -#include "CrossPointSettings.h" - -OpdsServerStore OpdsServerStore::instance; - -namespace { -constexpr char OPDS_FILE_JSON[] = "/.crosspoint/opds.json"; -} // namespace - -bool OpdsServerStore::saveToFile() const { - Storage.mkdir("/.crosspoint"); - return JsonSettingsIO::saveOpds(*this, OPDS_FILE_JSON); -} - -bool OpdsServerStore::loadFromFile() { - if (Storage.exists(OPDS_FILE_JSON)) { - String json = Storage.readFile(OPDS_FILE_JSON); - if (!json.isEmpty()) { - // resave flag is set when passwords were stored in plaintext and need re-obfuscation - bool resave = false; - bool result = JsonSettingsIO::loadOpds(*this, json.c_str(), &resave); - if (result && resave) { - LOG_DBG("OPS", "Resaving JSON with obfuscated passwords"); - saveToFile(); - } - return result; - } +void OpdsServerStore::toJson(JsonDocument& doc) const { + JsonArray arr = doc["servers"].to(); + for (const auto& server : servers) { + JsonObject obj = arr.add(); + obj["name"] = server.name; + obj["url"] = server.url; + obj["username"] = server.username; + obj["password_obf"] = obfuscation::obfuscateToBase64(server.password); } - - // No opds.json found — attempt one-time migration from the legacy single-server - // fields in CrossPointSettings (opdsServerUrl/opdsUsername/opdsPassword). - if (migrateFromSettings()) { - LOG_DBG("OPS", "Migrated legacy OPDS settings"); - return true; - } - - return false; } -bool OpdsServerStore::migrateFromSettings() { - if (strlen(SETTINGS.opdsServerUrl) == 0) { - return false; +bool OpdsServerStore::fromJson(JsonVariantConst doc) { + // Tolerate a missing/invalid 'servers' key (treat as empty list); only a + // JSON parse error is fatal. A null JsonArray iterates zero times. + servers.clear(); + JsonArrayConst arr = doc["servers"].as(); + servers.reserve(std::min(arr.size(), MAX_SERVERS)); + bool needsResave = false; + + for (JsonObjectConst obj : arr) { + if (servers.size() >= OpdsServerStore::MAX_SERVERS) break; + OpdsServer server; + server.name = obj["name"] | ""; + server.url = obj["url"] | ""; + server.username = obj["username"] | ""; + server.password = extractPassword(obj, needsResave); + servers.push_back(std::move(server)); } - OpdsServer server; - server.name = "OPDS Server"; - server.url = SETTINGS.opdsServerUrl; - server.username = SETTINGS.opdsUsername; - server.password = SETTINGS.opdsPassword; - servers.push_back(std::move(server)); + LOG_DBG("OPS", "Loaded %zu OPDS servers from file", servers.size()); - if (saveToFile()) { - // Clear legacy fields so migration won't run again on next boot - SETTINGS.opdsServerUrl[0] = '\0'; - SETTINGS.opdsUsername[0] = '\0'; - SETTINGS.opdsPassword[0] = '\0'; - SETTINGS.saveToFile(); - LOG_DBG("OPS", "Migrated single-server OPDS config to opds.json"); - return true; + if (needsResave) { + LOG_DBG("OPS", "Resaving JSON with obfuscated passwords"); + requestResave(); } - // Save failed — roll back in-memory state so we don't have a partial migration - servers.clear(); - return false; + return true; } bool OpdsServerStore::addServer(const OpdsServer& server) { diff --git a/src/OpdsServerStore.h b/src/OpdsServerStore.h index 87571f6514..3845b1f3b4 100644 --- a/src/OpdsServerStore.h +++ b/src/OpdsServerStore.h @@ -1,4 +1,7 @@ #pragma once +#include +#include + #include #include @@ -9,37 +12,25 @@ struct OpdsServer { std::string password; // Plaintext in memory; obfuscated with hardware key on disk }; -class OpdsServerStore; -namespace JsonSettingsIO { -bool saveOpds(const OpdsServerStore& store, const char* path); -bool loadOpds(OpdsServerStore& store, const char* json, bool* needsResave); -} // namespace JsonSettingsIO - /** * Singleton class for storing OPDS server configurations on the SD card. * Passwords are XOR-obfuscated with the device's unique hardware MAC address * and base64-encoded before writing to JSON. */ -class OpdsServerStore { +class OpdsServerStore : public PersistableStore { private: - static OpdsServerStore instance; std::vector servers; static constexpr size_t MAX_SERVERS = 8; OpdsServerStore() = default; - friend bool JsonSettingsIO::saveOpds(const OpdsServerStore&, const char*); - friend bool JsonSettingsIO::loadOpds(OpdsServerStore&, const char*, bool*); + friend class PersistableStore; public: - OpdsServerStore(const OpdsServerStore&) = delete; - OpdsServerStore& operator=(const OpdsServerStore&) = delete; - - static OpdsServerStore& getInstance() { return instance; } - - bool saveToFile() const; - bool loadFromFile(); + static const char* getFilePath() { return "/.crosspoint/opds.json"; } + void toJson(JsonDocument& doc) const; + bool fromJson(JsonVariantConst doc); bool addServer(const OpdsServer& server); bool updateServer(size_t index, const OpdsServer& server); @@ -49,12 +40,6 @@ class OpdsServerStore { const OpdsServer* getServer(size_t index) const; size_t getCount() const { return servers.size(); } bool hasServers() const { return !servers.empty(); } - - /** - * Migrate from legacy single-server settings in CrossPointSettings. - * Called once during first load if no opds.json exists. - */ - bool migrateFromSettings(); }; #define OPDS_STORE OpdsServerStore::getInstance() diff --git a/src/RecentBooksStore.cpp b/src/RecentBooksStore.cpp index af6e9d4c7c..897e8a5455 100644 --- a/src/RecentBooksStore.cpp +++ b/src/RecentBooksStore.cpp @@ -3,23 +3,42 @@ #include #include #include -#include #include -#include #include #include #include -namespace { -constexpr uint8_t RECENT_BOOKS_FILE_VERSION = 3; -constexpr char RECENT_BOOKS_FILE_BIN[] = "/.crosspoint/recent.bin"; -constexpr char RECENT_BOOKS_FILE_JSON[] = "/.crosspoint/recent.json"; -constexpr char RECENT_BOOKS_FILE_BAK[] = "/.crosspoint/recent.bin.bak"; -constexpr int MAX_RECENT_BOOKS = 10; -} // namespace +void RecentBooksStore::toJson(JsonDocument& doc) const { + JsonArray arr = doc["books"].to(); + for (const auto& book : recentBooks) { + JsonObject obj = arr.add(); + obj["path"] = book.path; + obj["title"] = book.title; + obj["author"] = book.author; + obj["coverBmpPath"] = book.coverBmpPath; + } +} + +bool RecentBooksStore::fromJson(JsonVariantConst doc) { + // Tolerate a missing/invalid 'books' key (treat as empty list); only a + // JSON parse error is fatal. A null JsonArray iterates zero times. + recentBooks.clear(); + JsonArrayConst arr = doc["books"].as(); + recentBooks.reserve(std::min(arr.size(), static_cast(MAX_RECENT_BOOKS))); + for (JsonObjectConst obj : arr) { + if (getCount() >= MAX_RECENT_BOOKS) break; + RecentBook book; + book.path = obj["path"] | ""; + book.title = obj["title"] | ""; + book.author = obj["author"] | ""; + book.coverBmpPath = obj["coverBmpPath"] | ""; + recentBooks.push_back(book); + } -RecentBooksStore RecentBooksStore::instance; + LOG_DBG("RBS", "Recent books loaded from file (%d entries)", getCount()); + return true; +} void RecentBooksStore::addBook(const std::string& path, const std::string& title, const std::string& author, const std::string& coverBmpPath) { @@ -92,11 +111,6 @@ bool RecentBooksStore::pruneMissing() { return recentBooks.size() != before; } -bool RecentBooksStore::saveToFile() const { - Storage.mkdir("/.crosspoint"); - return JsonSettingsIO::saveRecentBooks(*this, RECENT_BOOKS_FILE_JSON); -} - RecentBook RecentBooksStore::getDataFromBook(std::string path) const { std::string lastBookFileName = ""; const size_t lastSlash = path.find_last_of('/'); @@ -124,95 +138,3 @@ RecentBook RecentBooksStore::getDataFromBook(std::string path) const { } return RecentBook{path, "", "", ""}; } - -bool RecentBooksStore::loadFromFile() { - // Try JSON first - if (Storage.exists(RECENT_BOOKS_FILE_JSON)) { - String json = Storage.readFile(RECENT_BOOKS_FILE_JSON); - if (!json.isEmpty()) { - return JsonSettingsIO::loadRecentBooks(*this, json.c_str()); - } - } - - // Fall back to binary migration - if (Storage.exists(RECENT_BOOKS_FILE_BIN)) { - if (loadFromBinaryFile()) { - saveToFile(); - Storage.rename(RECENT_BOOKS_FILE_BIN, RECENT_BOOKS_FILE_BAK); - LOG_DBG("RBS", "Migrated recent.bin to recent.json"); - return true; - } - } - - return false; -} - -bool RecentBooksStore::loadFromBinaryFile() { - HalFile inputFile; - if (!Storage.openFileForRead("RBS", RECENT_BOOKS_FILE_BIN, inputFile)) { - return false; - } - - uint8_t version; - serialization::readPod(inputFile, version); - if (version == 1 || version == 2) { - // Old version, just read paths - uint8_t count; - serialization::readPod(inputFile, count); - recentBooks.clear(); - recentBooks.reserve(count); - for (uint8_t i = 0; i < count; i++) { - std::string path; - serialization::readString(inputFile, path); - - // load book to get missing data - RecentBook book = getDataFromBook(path); - if (book.title.empty() && book.author.empty() && version == 2) { - // Fall back to loading what we can from the store - std::string title, author; - serialization::readString(inputFile, title); - serialization::readString(inputFile, author); - recentBooks.push_back({path, title, author, ""}); - } else { - recentBooks.push_back(book); - } - } - } else if (version == 3) { - uint8_t count; - serialization::readPod(inputFile, count); - - recentBooks.clear(); - recentBooks.reserve(count); - uint8_t omitted = 0; - - for (uint8_t i = 0; i < count; i++) { - std::string path, title, author, coverBmpPath; - serialization::readString(inputFile, path); - serialization::readString(inputFile, title); - serialization::readString(inputFile, author); - serialization::readString(inputFile, coverBmpPath); - - // Omit books with missing title (e.g. saved before metadata was available) - if (title.empty()) { - omitted++; - continue; - } - - recentBooks.push_back({path, title, author, coverBmpPath}); - } - - if (omitted > 0) { - // Explicitly close() file before saveToFile() rewrites the same file - inputFile.close(); - saveToFile(); - LOG_DBG("RBS", "Omitted %u recent book(s) with missing title", omitted); - return true; - } - } else { - LOG_ERR("RBS", "Deserialization failed: Unknown version %u", version); - return false; - } - - LOG_DBG("RBS", "Recent books loaded from binary file (%d entries)", static_cast(recentBooks.size())); - return true; -} diff --git a/src/RecentBooksStore.h b/src/RecentBooksStore.h index f3a8391e89..37f390476b 100644 --- a/src/RecentBooksStore.h +++ b/src/RecentBooksStore.h @@ -1,4 +1,7 @@ #pragma once +#include +#include + #include #include @@ -11,24 +14,21 @@ struct RecentBook { bool operator==(const RecentBook& other) const { return path == other.path; } }; -class RecentBooksStore; -namespace JsonSettingsIO { -bool loadRecentBooks(RecentBooksStore& store, const char* json); -} // namespace JsonSettingsIO - -class RecentBooksStore { - // Static instance - static RecentBooksStore instance; - +class RecentBooksStore : public PersistableStore { + private: std::vector recentBooks; - friend bool JsonSettingsIO::loadRecentBooks(RecentBooksStore&, const char*); + static constexpr int MAX_RECENT_BOOKS = 10; - public: + RecentBooksStore() = default; ~RecentBooksStore() = default; - // Get singleton instance - static RecentBooksStore& getInstance() { return instance; } + friend class PersistableStore; + + public: + static const char* getFilePath() { return "/.crosspoint/recent.json"; } + void toJson(JsonDocument& doc) const; + bool fromJson(JsonVariantConst doc); // Add a book to the recent list (moves to front if already exists) void addBook(const std::string& path, const std::string& title, const std::string& author, @@ -61,13 +61,7 @@ class RecentBooksStore { // Get the count of recent books int getCount() const { return static_cast(recentBooks.size()); } - bool saveToFile() const; - - bool loadFromFile(); RecentBook getDataFromBook(std::string path) const; - - private: - bool loadFromBinaryFile(); }; // Helper macro to access recent books store diff --git a/src/SdCardFontSystem.cpp b/src/SdCardFontSystem.cpp index 79aa122649..d0b311bb48 100644 --- a/src/SdCardFontSystem.cpp +++ b/src/SdCardFontSystem.cpp @@ -34,10 +34,12 @@ void SdCardFontSystem::begin(GfxRenderer& renderer) { } else { LOG_ERR("SDFS", "Failed to load SD font family: %s (clearing)", SETTINGS.sdFontFamilyName); SETTINGS.sdFontFamilyName[0] = '\0'; + SETTINGS.saveToFile(); } } else { LOG_DBG("SDFS", "SD font family not found on card: %s (clearing)", SETTINGS.sdFontFamilyName); SETTINGS.sdFontFamilyName[0] = '\0'; + SETTINGS.saveToFile(); } } @@ -76,6 +78,7 @@ void SdCardFontSystem::ensureLoaded(GfxRenderer& renderer) { LOG_DBG("SDFS", "SD font family disappeared: %s (clearing)", wantedFamily); manager_.unloadAll(renderer); SETTINGS.sdFontFamilyName[0] = '\0'; + SETTINGS.saveToFile(); return; } const auto* selected = family->findClosestReaderSize(sizeEnum); @@ -96,10 +99,12 @@ void SdCardFontSystem::ensureLoaded(GfxRenderer& renderer) { } else { LOG_ERR("SDFS", "Failed to load SD font family: %s (clearing)", wantedFamily); SETTINGS.sdFontFamilyName[0] = '\0'; + SETTINGS.saveToFile(); } } else { LOG_DBG("SDFS", "SD font family not found: %s (clearing)", wantedFamily); SETTINGS.sdFontFamilyName[0] = '\0'; + SETTINGS.saveToFile(); } } diff --git a/src/SettingsList.h b/src/SettingsList.h index 5f34a87eb2..c1c6b8045f 100644 --- a/src/SettingsList.h +++ b/src/SettingsList.h @@ -1,5 +1,6 @@ #pragma once +#include #include #include #include @@ -13,6 +14,7 @@ #include "CrossPointSettings.h" #include "KOReaderCredentialStore.h" #include "activities/settings/SettingsActivity.h" +#include "util/DictionaryRegistry.h" // Build the font family setting dynamically. When registry is non-null, SD card fonts // are appended after the built-in fonts. Otherwise only built-in fonts are listed. @@ -90,6 +92,47 @@ inline SettingInfo buildFontFamilySetting(const SdCardFontRegistry* registry) { return s; } +// Build the dictionary selection setting dynamically from the folders discovered +// under /dictionaries. "None" plus one option per dictionary; the selected folder +// name persists in SETTINGS.dictionaryName (saved/loaded manually in +// CrossPointSettings::toJson/fromJson — the generic loop skips dynamic entries). +inline SettingInfo buildDictionarySetting(const std::vector& dictionaries) { + std::vector folderNames; + folderNames.reserve(dictionaries.size()); + std::transform(dictionaries.begin(), dictionaries.end(), std::back_inserter(folderNames), + [](const DictionaryEntry& d) { return d.name; }); + + SettingInfo s; + s.nameId = StrId::STR_DICTIONARY; + s.type = SettingType::ENUM; + s.enumStringValues.reserve(folderNames.size() + 1); + s.enumStringValues.push_back(I18N.get(StrId::STR_NONE_OPT)); + s.enumStringValues.insert(s.enumStringValues.end(), folderNames.begin(), folderNames.end()); + s.category = StrId::STR_CAT_READER; + + s.valueGetter = [folderNames]() -> uint8_t { + for (size_t i = 0; i < folderNames.size(); i++) { + // Compare within the settings field capacity: an over-long folder name is + // stored truncated, and must still match its list entry. + if (strncmp(folderNames[i].c_str(), SETTINGS.dictionaryName, sizeof(SETTINGS.dictionaryName) - 1) == 0) { + return static_cast(i + 1); + } + } + return 0; // "None", also when the stored folder no longer exists + }; + + s.valueSetter = [folderNames](uint8_t v) { + if (v == 0 || v > folderNames.size()) { + SETTINGS.dictionaryName[0] = '\0'; + return; + } + strncpy(SETTINGS.dictionaryName, folderNames[v - 1].c_str(), sizeof(SETTINGS.dictionaryName) - 1); + SETTINGS.dictionaryName[sizeof(SETTINGS.dictionaryName) - 1] = '\0'; + }; + + return s; +} + // Shared settings list used by both the device settings UI and the web settings API. // Each entry has a key (for JSON API) and category (for grouping). // ACTION-type entries and entries without a key are device-only. @@ -99,7 +142,8 @@ inline SettingInfo buildFontFamilySetting(const SdCardFontRegistry* registry) { // SdCardFontRegistry is supplied AND has SD card fonts installed, the // font-family entry is replaced in a per-call copy with a registry-aware // version. Callers without SD fonts pay only a vector copy. -inline std::vector getSettingsList(const SdCardFontRegistry* registry = nullptr) { +inline std::vector getSettingsList(const SdCardFontRegistry* registry = nullptr, + const std::vector* dictionaries = nullptr) { static const std::vector baseList = [] { std::vector v = { // --- Display --- @@ -166,6 +210,8 @@ inline std::vector getSettingsList(const SdCardFontRegistry* regist SettingInfo::Enum(StrId::STR_SIDE_BTN_LAYOUT, &CrossPointSettings::sideButtonLayout, {StrId::STR_PREV_NEXT, StrId::STR_NEXT_PREV, StrId::STR_DISABLED}, "sideButtonLayout", StrId::STR_CAT_CONTROLS), + SettingInfo::Enum(StrId::STR_TOUCH_READER_CONTROLS, &CrossPointSettings::touchReaderControls, + {StrId::STR_STATE_OFF, StrId::STR_STATE_ON}, "touchReaderControls", StrId::STR_CAT_CONTROLS), SettingInfo::Toggle(StrId::STR_FRONT_BTN_FOLLOW_ORIENTATION, &CrossPointSettings::frontButtonFollowOrientation, "frontButtonFollowOrientation", StrId::STR_CAT_CONTROLS), SettingInfo::Enum(StrId::STR_LONG_PRESS_BEHAVIOR, &CrossPointSettings::longPressButtonBehavior, @@ -173,14 +219,16 @@ inline std::vector getSettingsList(const SdCardFontRegistry* regist StrId::STR_LONG_PRESS_BEHAVIOR_ORIENTATION}, "longPressButtonBehavior", StrId::STR_CAT_CONTROLS), SettingInfo::Enum(StrId::STR_LONG_PRESS_MENU, &CrossPointSettings::longPressMenuFunction, - {StrId::STR_KOSYNC, StrId::STR_DISABLED, StrId::STR_BOOKMARK_OPTION}, "longPressMenuFunction", - StrId::STR_CAT_CONTROLS), + {StrId::STR_KOSYNC, StrId::STR_DISABLED, StrId::STR_BOOKMARK_OPTION, StrId::STR_DICTIONARY}, + "longPressMenuFunction", StrId::STR_CAT_CONTROLS), SettingInfo::Enum( StrId::STR_SHORT_PWR_BTN, &CrossPointSettings::shortPwrBtn, {StrId::STR_IGNORE, StrId::STR_SLEEP, StrId::STR_PAGE_TURN, StrId::STR_FORCE_REFRESH, StrId::STR_FOOTNOTES}, "shortPwrBtn", StrId::STR_CAT_CONTROLS), SettingInfo::Toggle(StrId::STR_PWR_BTN_FOOTNOTE_BACK, &CrossPointSettings::pwrBtnFootnoteBack, "pwrBtnFootnoteBack", StrId::STR_CAT_CONTROLS), + SettingInfo::Toggle(StrId::STR_BACK_SHORT_TO_FILE_BROWSER, &CrossPointSettings::backShortToFileBrowser, + "backShortToFileBrowser", StrId::STR_CAT_CONTROLS), // --- System --- SettingInfo::Value( @@ -194,6 +242,16 @@ inline std::vector getSettingsList(const SdCardFontRegistry* regist SettingInfo::Toggle(StrId::STR_MOVE_FINISHED_TO_READ, &CrossPointSettings::moveFinishedToReadFolder, "moveFinishedToReadFolder", StrId::STR_CAT_SYSTEM), + // OPDS download folder: persisted + web-exposed, but category-less so it + // is hidden from the on-device Settings screen (edited via OPDS UI). + SettingInfo::String(StrId::STR_OPDS_DOWNLOAD_FOLDER, &SETTINGS.opdsDownloadFolder[0], + sizeof(SETTINGS.opdsDownloadFolder), "opdsDownloadFolder"), + // OPDS download filename format: persisted + web-exposed, category-less so it + // is hidden from the on-device Settings screen (cycled from the OPDS UI). + SettingInfo::Enum(StrId::STR_OPDS_FILENAME_FORMAT, &CrossPointSettings::opdsFilenameFormat, + {StrId::STR_FMT_AUTHOR_TITLE, StrId::STR_FMT_TITLE_AUTHOR, StrId::STR_FMT_TITLE}, + "opdsFilenameFormat"), + // --- KOReader Sync (web-only, uses KOReaderCredentialStore) --- SettingInfo::DynamicString( StrId::STR_KOREADER_USERNAME, [] { return KOREADER_STORE.getUsername(); }, @@ -224,6 +282,22 @@ inline std::vector getSettingsList(const SdCardFontRegistry* regist KOREADER_STORE.saveToFile(); }, "koMatchMethod", StrId::STR_KOREADER_SYNC), + SettingInfo::DynamicEnum( + StrId::STR_SEND_METADATA, {StrId::STR_STATE_OFF, StrId::STR_STATE_ON}, + [] { return static_cast(KOREADER_STORE.getSendMetadata()); }, + [](uint8_t v) { + KOREADER_STORE.setSendMetadata(v != 0); + KOREADER_STORE.saveToFile(); + }, + "koSendMetadata", StrId::STR_KOREADER_SYNC), + SettingInfo::DynamicEnum( + StrId::STR_SYNC_BEHAVIOR, {StrId::STR_ASK_EVERY_TIME, StrId::STR_SMART_SYNC}, + [] { return static_cast(KOREADER_STORE.getSyncBehavior()); }, + [](uint8_t v) { + KOREADER_STORE.setSyncBehavior(static_cast(v)); + KOREADER_STORE.saveToFile(); + }, + "koSyncBehavior", StrId::STR_KOREADER_SYNC), // --- Status Bar Settings (web-only, uses StatusBarSettingsActivity) --- SettingInfo::Toggle(StrId::STR_CHAPTER_PAGE_COUNT, &CrossPointSettings::statusBarChapterPageCount, "statusBarChapterPageCount", StrId::STR_CUSTOMISE_STATUS_BAR), @@ -274,11 +348,30 @@ inline std::vector getSettingsList(const SdCardFontRegistry* regist }(); std::vector v = baseList; + if (!BoardConfig::hasTouch()) { + v.erase(std::remove_if(v.begin(), v.end(), + [](const SettingInfo& s) { + return s.nameId == StrId::STR_TOUCH_READER_CONTROLS || + s.nameId == StrId::STR_SUNLIGHT_FADING_FIX; + }), + v.end()); + } + if (BoardConfig::hasTouch()) { + v.erase(std::remove_if(v.begin(), v.end(), + [](const SettingInfo& s) { return s.nameId == StrId::STR_FRONT_BTN_FOLLOW_ORIENTATION; }), + v.end()); + } if (registry && registry->getFamilyCount() > 0) { auto it = std::find_if(v.begin(), v.end(), [](const SettingInfo& s) { return s.nameId == StrId::STR_FONT_FAMILY; }); if (it != v.end()) { *it = buildFontFamilySetting(registry); } } + if (dictionaries && !dictionaries->empty()) { + // Insert at the end of the Reader category (just before the first Controls entry). + auto it = + std::find_if(v.begin(), v.end(), [](const SettingInfo& s) { return s.category == StrId::STR_CAT_CONTROLS; }); + v.insert(it, buildDictionarySetting(*dictionaries)); + } return v; } diff --git a/src/WifiCredentialStore.cpp b/src/WifiCredentialStore.cpp index 4776023733..2ae2d8ef50 100644 --- a/src/WifiCredentialStore.cpp +++ b/src/WifiCredentialStore.cpp @@ -1,103 +1,46 @@ #include "WifiCredentialStore.h" -#include -#include #include #include -#include -// Initialize the static instance -WifiCredentialStore WifiCredentialStore::instance; +#include -namespace { -// File format version (for binary migration) -constexpr uint8_t WIFI_FILE_VERSION = 2; +void WifiCredentialStore::toJson(JsonDocument& doc) const { + doc["lastConnectedSsid"] = lastConnectedSsid; -// File paths -constexpr char WIFI_FILE_BIN[] = "/.crosspoint/wifi.bin"; -constexpr char WIFI_FILE_JSON[] = "/.crosspoint/wifi.json"; -constexpr char WIFI_FILE_BAK[] = "/.crosspoint/wifi.bin.bak"; - -// Legacy obfuscation key - "CrossPoint" in ASCII (only used for binary migration) -constexpr uint8_t LEGACY_OBFUSCATION_KEY[] = {0x43, 0x72, 0x6F, 0x73, 0x73, 0x50, 0x6F, 0x69, 0x6E, 0x74}; -constexpr size_t LEGACY_KEY_LENGTH = sizeof(LEGACY_OBFUSCATION_KEY); - -void legacyDeobfuscate(std::string& data) { - for (size_t i = 0; i < data.size(); i++) { - data[i] ^= LEGACY_OBFUSCATION_KEY[i % LEGACY_KEY_LENGTH]; + JsonArray arr = doc["credentials"].to(); + for (const auto& cred : credentials) { + JsonObject obj = arr.add(); + obj["ssid"] = cred.ssid; + obj["password_obf"] = obfuscation::obfuscateToBase64(cred.password); } } -} // namespace - -bool WifiCredentialStore::saveToFile() const { - Storage.mkdir("/.crosspoint"); - return JsonSettingsIO::saveWifi(*this, WIFI_FILE_JSON); -} - -bool WifiCredentialStore::loadFromFile() { - // Try JSON first - if (Storage.exists(WIFI_FILE_JSON)) { - String json = Storage.readFile(WIFI_FILE_JSON); - if (!json.isEmpty()) { - bool resave = false; - bool result = JsonSettingsIO::loadWifi(*this, json.c_str(), &resave); - if (result && resave) { - LOG_DBG("WCS", "Resaving JSON with obfuscated passwords"); - saveToFile(); - } - return result; - } - } - - // Fall back to binary migration - if (Storage.exists(WIFI_FILE_BIN)) { - if (loadFromBinaryFile()) { - if (saveToFile()) { - Storage.rename(WIFI_FILE_BIN, WIFI_FILE_BAK); - LOG_DBG("WCS", "Migrated wifi.bin to wifi.json"); - return true; - } else { - LOG_ERR("WCS", "Failed to save wifi during migration"); - return false; - } - } - } - return false; -} +bool WifiCredentialStore::fromJson(JsonVariantConst doc) { + lastConnectedSsid = doc["lastConnectedSsid"] | ""; -bool WifiCredentialStore::loadFromBinaryFile() { - HalFile file; - if (!Storage.openFileForRead("WCS", WIFI_FILE_BIN, file)) { - return false; - } - - uint8_t version; - serialization::readPod(file, version); - if (version > WIFI_FILE_VERSION) { - LOG_DBG("WCS", "Unknown file version: %u", version); - return false; - } + // Tolerate a missing/invalid 'credentials' key (treat as empty list); only + // a JSON parse error is fatal. A null JsonArray iterates zero times. + credentials.clear(); + JsonArrayConst arr = doc["credentials"].as(); + credentials.reserve(std::min(arr.size(), MAX_NETWORKS)); + bool needsResave = false; - if (version >= 2) { - serialization::readString(file, lastConnectedSsid); - } else { - lastConnectedSsid.clear(); + for (JsonObjectConst obj : arr) { + if (credentials.size() >= MAX_NETWORKS) break; + WifiCredential cred; + cred.ssid = obj["ssid"] | ""; + cred.password = extractPassword(obj, needsResave); + credentials.push_back(cred); } - uint8_t count; - serialization::readPod(file, count); + LOG_DBG("WCS", "Loaded %zu WiFi credentials from file", credentials.size()); - credentials.clear(); - for (uint8_t i = 0; i < count && i < MAX_NETWORKS; i++) { - WifiCredential cred; - serialization::readString(file, cred.ssid); - serialization::readString(file, cred.password); - legacyDeobfuscate(cred.password); - credentials.push_back(cred); + if (needsResave) { + LOG_DBG("WCS", "Resaving JSON with obfuscated passwords"); + requestResave(); } - // LOG_DBG("WCS", "Loaded %zu WiFi credentials from binary file", credentials.size()); return true; } diff --git a/src/WifiCredentialStore.h b/src/WifiCredentialStore.h index 466509544d..8a95ebe9ba 100644 --- a/src/WifiCredentialStore.h +++ b/src/WifiCredentialStore.h @@ -1,4 +1,7 @@ #pragma once +#include +#include + #include #include @@ -7,21 +10,14 @@ struct WifiCredential { std::string password; // Plaintext in memory; obfuscated with hardware key on disk }; -class WifiCredentialStore; -namespace JsonSettingsIO { -bool saveWifi(const WifiCredentialStore& store, const char* path); -bool loadWifi(WifiCredentialStore& store, const char* json, bool* needsResave); -} // namespace JsonSettingsIO - /** * Singleton class for storing WiFi credentials on the SD card. * Passwords are XOR-obfuscated with the device's unique hardware MAC address * and base64-encoded before writing to JSON (not cryptographically secure, * but prevents casual reading and ties credentials to the specific device). */ -class WifiCredentialStore { +class WifiCredentialStore : public PersistableStore { private: - static WifiCredentialStore instance; std::vector credentials; std::string lastConnectedSsid; @@ -30,22 +26,12 @@ class WifiCredentialStore { // Private constructor for singleton WifiCredentialStore() = default; - bool loadFromBinaryFile(); - - friend bool JsonSettingsIO::saveWifi(const WifiCredentialStore&, const char*); - friend bool JsonSettingsIO::loadWifi(WifiCredentialStore&, const char*, bool*); + friend class PersistableStore; public: - // Delete copy constructor and assignment - WifiCredentialStore(const WifiCredentialStore&) = delete; - WifiCredentialStore& operator=(const WifiCredentialStore&) = delete; - - // Get singleton instance - static WifiCredentialStore& getInstance() { return instance; } - - // Save/load from SD card - bool saveToFile() const; - bool loadFromFile(); + static const char* getFilePath() { return "/.crosspoint/wifi.json"; } + void toJson(JsonDocument& doc) const; + bool fromJson(JsonVariantConst doc); // Credential management bool addCredential(const std::string& ssid, const std::string& password); diff --git a/src/activities/Activity.cpp b/src/activities/Activity.cpp index eaabc2aa31..cb26f1adb8 100644 --- a/src/activities/Activity.cpp +++ b/src/activities/Activity.cpp @@ -22,3 +22,20 @@ void Activity::startActivityForResult(std::unique_ptr&& activity, Acti void Activity::setResult(ActivityResult&& result) { this->result = std::move(result); } void Activity::finish() { activityManager.popActivity(); } + +Activity::ListTouchResult Activity::handleListTouch(int& selectedIndex, const int itemCount, const int listTop, + const int listHeight, const bool hasSubtitle) { + int touched = -1; + if (mappedInput.wasListItemTouchedDown(touched, itemCount, selectedIndex, listTop, listHeight, hasSubtitle)) { + if (selectedIndex != touched) { + selectedIndex = touched; + requestUpdate(); + } + return ListTouchResult::Consumed; + } + if (mappedInput.wasListItemTapped(touched, itemCount, selectedIndex, listTop, listHeight, hasSubtitle)) { + selectedIndex = touched; + return ListTouchResult::Activated; + } + return ListTouchResult::None; +} diff --git a/src/activities/Activity.h b/src/activities/Activity.h index 070eb4fde3..d068e6196c 100644 --- a/src/activities/Activity.h +++ b/src/activities/Activity.h @@ -44,6 +44,8 @@ class Activity { virtual bool skipLoopDelay() { return false; } virtual bool preventAutoSleep() { return false; } virtual bool isReaderActivity() const { return false; } + virtual bool isHomeActivity() const { return false; } + virtual bool handleHomeGesture() { return false; } virtual ScreenshotInfo getScreenshotInfo() const { return {}; } // Start a new activity without destroying the current one @@ -60,4 +62,16 @@ class Activity { // TODO: remove this in near future void onGoHome(HomeMenuItem item = HomeMenuItem::NONE); void onSelectBook(const std::string& path); + + protected: + enum class ListTouchResult : uint8_t { + None, // touch did not hit the list + Consumed, // touchdown moved the highlight (repaint already requested) + Activated // tap landed on a row: selectedIndex is updated, caller activates it + }; + + // Shared touch handling for selectable list screens: touchdown highlights the + // touched row, a tap selects and reports Activated. The caller supplies the + // list band and runs its own activate action on Activated. + ListTouchResult handleListTouch(int& selectedIndex, int itemCount, int listTop, int listHeight, bool hasSubtitle); }; diff --git a/src/activities/ActivityManager.cpp b/src/activities/ActivityManager.cpp index 7757d050b8..8647ec0102 100644 --- a/src/activities/ActivityManager.cpp +++ b/src/activities/ActivityManager.cpp @@ -22,12 +22,17 @@ static portMUX_TYPE activityManagerSpinlock = portMUX_INITIALIZER_UNLOCKED; void ActivityManager::begin() { +#if defined(configNUM_CORES) && configNUM_CORES > 1 + constexpr BaseType_t renderTaskCore = 1; +#else + constexpr BaseType_t renderTaskCore = 0; +#endif xTaskCreatePinnedToCore(&renderTaskTrampoline, "ActivityManagerRender", 8192, // Stack size this, // Parameters 1, // Priority &renderTaskHandle, // Task handle - 0 // Pin to core 0 (PRO_CPU) + renderTaskCore // Keep long renders/cover decodes off CPU 0's idle watchdog when available ); assert(renderTaskHandle != nullptr && "Failed to create render task"); } @@ -61,6 +66,14 @@ void ActivityManager::renderTaskLoop() { void ActivityManager::loop() { if (currentActivity) { + if (!currentActivity->isHomeActivity() && mappedInput.wasHomeGesture()) { + if (currentActivity->handleHomeGesture()) { + return; + } + goHome(); + return; + } + // Note: do not hold a lock here, the loop() method must be responsible for acquire one if needed currentActivity->loop(); } diff --git a/src/activities/ActivityResult.h b/src/activities/ActivityResult.h index cc996967e4..31a9539838 100644 --- a/src/activities/ActivityResult.h +++ b/src/activities/ActivityResult.h @@ -43,6 +43,10 @@ struct PageResult { struct ProgressChangeResult { int spineIndex = 0; int page = 0; + int totalPages = 0; + std::string xpath; + float percentage = 0.0f; + bool hasSavedProgress = false; }; enum class NetworkMode; diff --git a/src/activities/boot_sleep/SleepActivity.cpp b/src/activities/boot_sleep/SleepActivity.cpp index e7ff4317e4..a181df16f0 100644 --- a/src/activities/boot_sleep/SleepActivity.cpp +++ b/src/activities/boot_sleep/SleepActivity.cpp @@ -149,6 +149,10 @@ void SleepActivity::renderCustomSleepScreen() const { renderDefaultSleepScreen(); } +// Sleep screens paint with a single HALF refresh (stock parity): the OEM X4 +// firmware's only clean refresh in normal operation is the single-pass 0xD7 +// sequence, used once for the sleep image. It never runs the multi-flash GC +// waveform (0xF7) that FULL_REFRESH selects (#2471's blinking complaint). void SleepActivity::renderDefaultSleepScreen() const { const auto pageWidth = renderer.getScreenWidth(); const auto pageHeight = renderer.getScreenHeight(); @@ -163,7 +167,7 @@ void SleepActivity::renderDefaultSleepScreen() const { renderer.invertScreen(); } - renderer.displayBuffer(HalDisplay::FULL_REFRESH); + renderer.displayBuffer(HalDisplay::HALF_REFRESH); } void SleepActivity::renderBitmapSleepScreen(const Bitmap& bitmap) const { @@ -219,11 +223,13 @@ void SleepActivity::renderBitmapSleepScreen(const Bitmap& bitmap) const { } if (hasGreyscale) { - // OEM grayscale pipeline base: use a full sleep-screen paint so the panel - // enters deep sleep from a clean B/W baseline before the gray nudge refresh. - renderer.displayGrayscaleBase(HalDisplay::FULL_REFRESH); + // OEM grayscale pipeline base. Must stay HALF: the gray nudge LUT is + // calibrated against the pixel state the single-pass HALF waveform leaves + // behind. A FULL (GC) base parks pixels in a different charge state and + // the differential nudge then lands unevenly (blotchy noise in gray areas). + renderer.displayGrayscaleBase(HalDisplay::HALF_REFRESH); } else { - renderer.displayBuffer(HalDisplay::FULL_REFRESH); + renderer.displayBuffer(HalDisplay::HALF_REFRESH); } if (hasGreyscale) { @@ -331,5 +337,5 @@ void SleepActivity::renderLastScreenSleepScreen() const { void SleepActivity::renderBlankSleepScreen() const { renderer.clearScreen(); - renderer.displayBuffer(HalDisplay::FULL_REFRESH); + renderer.displayBuffer(HalDisplay::HALF_REFRESH); } diff --git a/src/activities/browser/OpdsBookBrowserActivity.cpp b/src/activities/browser/OpdsBookBrowserActivity.cpp index 6ff5b71960..ccbc1d0a27 100644 --- a/src/activities/browser/OpdsBookBrowserActivity.cpp +++ b/src/activities/browser/OpdsBookBrowserActivity.cpp @@ -1,26 +1,47 @@ #include "OpdsBookBrowserActivity.h" +#include #include +#include #include #include #include #include +#include "CrossPointSettings.h" #include "MappedInputManager.h" #include "SilentRestart.h" #include "activities/network/WifiSelectionActivity.h" #include "activities/util/KeyboardEntryActivity.h" #include "components/UITheme.h" +#include "components/icons/search24.h" #include "fontIds.h" #include "network/HttpDownloader.h" #include "util/BookCacheUtils.h" +#include "util/OpdsFilename.h" #include "util/StringUtils.h" #include "util/UrlUtils.h" namespace { constexpr int PAGE_ITEMS = 23; +constexpr int HEADER_Y = 15; +constexpr int HEADER_X = 16; +constexpr int SEARCH_ICON_SIZE = 24; +constexpr int SEARCH_ICON_MARGIN = 14; +constexpr int SEARCH_ICON_Y = 15; +constexpr int DOWNLOAD_PROGRESS_STEP_PERCENT = 5; +constexpr unsigned long DOWNLOAD_PROGRESS_MIN_UPDATE_MS = 5000; + +Rect searchIconRect(const GfxRenderer& renderer) { + return Rect{renderer.getScreenWidth() - SEARCH_ICON_SIZE - SEARCH_ICON_MARGIN, SEARCH_ICON_Y, SEARCH_ICON_SIZE + 8, + SEARCH_ICON_SIZE + 8}; } +bool contains(const Rect& rect, const int x, const int y) { + return x >= rect.x && x < rect.x + rect.width && y >= rect.y && y < rect.y + rect.height; +} +} // namespace + void OpdsBookBrowserActivity::onEnter() { Activity::onEnter(); @@ -66,7 +87,9 @@ void OpdsBookBrowserActivity::loop() { } if (state == BrowserState::ERROR) { - if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { + int tx = 0; + int ty = 0; + if (mappedInput.wasReleased(MappedInputManager::Button::Confirm) || mappedInput.wasScreenTapped(tx, ty)) { if (WiFi.status() == WL_CONNECTED && WiFi.localIP() != IPAddress(0, 0, 0, 0)) { state = BrowserState::LOADING; statusMessage = tr(STR_LOADING); @@ -91,18 +114,59 @@ void OpdsBookBrowserActivity::loop() { if (state == BrowserState::DOWNLOADING) return; if (state == BrowserState::BROWSING) { - if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { + auto activateSelected = [this] { if (!entries.empty()) { const auto& entry = entries[selectorIndex]; entry.type == OpdsEntryType::BOOK ? downloadBook(entry) : navigateToEntry(entry); } + }; + + if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { + activateSelected(); } else if (mappedInput.wasReleased(MappedInputManager::Button::Back)) { navigateBack(); } else if (mappedInput.wasReleased(MappedInputManager::Button::Left)) { if (!searchTemplate.empty() && selectorIndex == 0) launchSearch(); } + int tx = 0; + int ty = 0; + if (!searchTemplate.empty() && mappedInput.wasScreenTapped(tx, ty) && contains(searchIconRect(renderer), tx, ty)) { + launchSearch(); + return; + } + if (!entries.empty()) { + int row = -1; + const auto touch = mappedInput.rowTouch(row, /*top=*/60, /*rowStep=*/30, PAGE_ITEMS); + if (touch != MappedInputManager::RowTouch::None) { + const int touched = selectorIndex / PAGE_ITEMS * PAGE_ITEMS + row; + if (touched >= 0 && touched < static_cast(entries.size())) { + if (touch == MappedInputManager::RowTouch::Down) { + if (selectorIndex != touched) { + selectorIndex = touched; + requestUpdate(); + } + } else { + selectorIndex = touched; + activateSelected(); + } + return; + } + } + + const auto swipe = mappedInput.wasSwipe(); + if (swipe == MappedInputManager::SwipeDir::Up) { + selectorIndex = ButtonNavigator::nextPageIndex(selectorIndex, entries.size(), PAGE_ITEMS); + requestUpdate(); + return; + } + if (swipe == MappedInputManager::SwipeDir::Down) { + selectorIndex = ButtonNavigator::previousPageIndex(selectorIndex, entries.size(), PAGE_ITEMS); + requestUpdate(); + return; + } + buttonNavigator.onNextRelease([this] { selectorIndex = ButtonNavigator::nextIndex(selectorIndex, entries.size()); requestUpdate(); @@ -130,7 +194,14 @@ void OpdsBookBrowserActivity::render(RenderLock&&) { // Show server name in header if available, otherwise generic title const char* headerTitle = server.name.empty() ? tr(STR_OPDS_BROWSER) : server.name.c_str(); - renderer.drawCenteredText(UI_12_FONT_ID, 15, headerTitle, true, EpdFontFamily::BOLD); + const int headerRightInset = searchTemplate.empty() ? HEADER_X : (SEARCH_ICON_SIZE + SEARCH_ICON_MARGIN * 2 + 8); + const auto clippedHeader = + renderer.truncatedText(UI_12_FONT_ID, headerTitle, pageWidth - HEADER_X - headerRightInset, EpdFontFamily::BOLD); + renderer.drawText(UI_12_FONT_ID, HEADER_X, HEADER_Y, clippedHeader.c_str(), true, EpdFontFamily::BOLD); + if (!searchTemplate.empty()) { + const auto rect = searchIconRect(renderer); + renderer.drawIcon(Search24Icon.bits, rect.x + 4, rect.y + 4, Search24Icon.w); + } if (state == BrowserState::CHECK_WIFI || state == BrowserState::LOADING) { renderer.drawCenteredText(UI_10_FONT_ID, pageHeight / 2, statusMessage.c_str()); @@ -143,6 +214,9 @@ void OpdsBookBrowserActivity::render(RenderLock&&) { if (state == BrowserState::ERROR) { renderer.drawCenteredText(UI_10_FONT_ID, pageHeight / 2 - 20, tr(STR_ERROR_MSG)); renderer.drawCenteredText(UI_10_FONT_ID, pageHeight / 2 + 10, errorMessage.c_str()); + if (mappedInput.hasTouch()) { + renderer.drawCenteredText(UI_10_FONT_ID, pageHeight / 2 + 40, tr(STR_TAP_TO_RETRY)); + } const auto labels = mappedInput.mapLabels(tr(STR_BACK), tr(STR_RETRY), "", ""); GUI.drawButtonHints(renderer, labels.btn1, labels.btn2, labels.btn3, labels.btn4); renderer.displayBuffer(); @@ -193,7 +267,7 @@ void OpdsBookBrowserActivity::fetchFeed(const std::string& path) { return; } - std::string url = (path.find("http") == 0) ? path : UrlUtils::buildUrl(server.url, path); + std::string url = UrlUtils::buildUrl(server.url, path); LOG_DBG("OPDS", "Fetching: %s", url.c_str()); OpdsParser parser; { @@ -216,14 +290,19 @@ void OpdsBookBrowserActivity::fetchFeed(const std::string& path) { searchTemplate = parser.getSearchTemplate(); const auto& nextUrl = parser.getNextPageUrl(); const auto& prevUrl = parser.getPrevPageUrl(); + const bool feedTruncated = parser.truncated(); entries = std::move(parser).getEntries(); + entries.reserve(entries.size() + (prevUrl.empty() ? 0 : 1) + (nextUrl.empty() ? 0 : 1)); if (!prevUrl.empty()) { entries.insert(entries.begin(), OpdsEntry{OpdsEntryType::NAVIGATION, tr(STR_PREV_PAGE), "", prevUrl, ""}); } if (!nextUrl.empty()) { entries.push_back(OpdsEntry{OpdsEntryType::NAVIGATION, tr(STR_NEXT_PAGE), "", nextUrl, ""}); } + if (feedTruncated) { + LOG_INF("OPDS", "Feed truncated to fit memory"); + } selectorIndex = 0; state = entries.empty() ? BrowserState::ERROR : BrowserState::BROWSING; @@ -231,6 +310,8 @@ void OpdsBookBrowserActivity::fetchFeed(const std::string& path) { requestUpdate(); } +void OpdsBookBrowserActivity::releaseEntries() { std::vector().swap(entries); } + void OpdsBookBrowserActivity::navigateToEntry(const OpdsEntry& entry) { navigationHistory.push_back(currentPath); // Resolve to a full URL so sub-sub-navigation retains parent path context @@ -239,7 +320,7 @@ void OpdsBookBrowserActivity::navigateToEntry(const OpdsEntry& entry) { state = BrowserState::LOADING; statusMessage = tr(STR_LOADING); - entries.clear(); + releaseEntries(); selectorIndex = 0; requestUpdate(true); fetchFeed(currentPath); @@ -253,7 +334,7 @@ void OpdsBookBrowserActivity::navigateBack() { navigationHistory.pop_back(); state = BrowserState::LOADING; statusMessage = tr(STR_LOADING); - entries.clear(); + releaseEntries(); selectorIndex = 0; requestUpdate(); fetchFeed(currentPath); @@ -269,16 +350,44 @@ void OpdsBookBrowserActivity::downloadBook(const OpdsEntry& book) { // Build full download URL relative to the current feed, not the root server URL const std::string feedUrl = UrlUtils::buildUrl(server.url, currentPath); std::string downloadUrl = UrlUtils::buildUrl(feedUrl, book.href); - std::string filename = - "/" + StringUtils::sanitizeFilename((book.author.empty() ? "" : book.author + " - ") + book.title) + ".epub"; + // opdsDownloadFolder is already a null-terminated char[64]; use it directly — + // no std::string copy. exists()/mkdir() take const char*. + const char* folder = SETTINGS.opdsDownloadFolder; // "" => SD root + bool haveFolder = folder[0] != '\0'; + if (haveFolder && !Storage.exists(folder) && !Storage.mkdir(folder)) { + // exists()-guard first: mkdir's return-on-existing is unconfirmed, and every + // existing caller checks exists() before mkdir. On real failure, fall back + // to SD root so the download is never lost. + LOG_ERR("OPDS", "mkdir failed for %s, using SD root", folder); + haveFolder = false; + } + + // downloadToFile() needs a std::string, and titles are unbounded (a fixed + // char[] would truncate). Cold path (a multi-second download follows), so one + // reserve'd, in-place-appended owning string is the right call. + std::string filename; + filename.reserve(96); + if (haveFolder) filename += folder; + filename += '/'; + filename += opdsBookFilename(book.author, book.title, static_cast(SETTINGS.opdsFilenameFormat)); LOG_DBG("OPDS", "Downloading: %s -> %s", downloadUrl.c_str(), filename.c_str()); + int lastRenderedPercent = -1; + unsigned long lastProgressUpdateMs = 0; const auto result = HttpDownloader::downloadToFile( downloadUrl, filename, - [this](const size_t downloaded, const size_t total) { + [this, &lastRenderedPercent, &lastProgressUpdateMs](const size_t downloaded, const size_t total) { downloadProgress = downloaded; downloadTotal = total; - requestUpdate(true); + const int percent = total > 0 ? static_cast(static_cast(downloaded) * 100 / total) : 0; + const unsigned long now = millis(); + if (percent >= 100 || lastRenderedPercent < 0 || + percent >= lastRenderedPercent + DOWNLOAD_PROGRESS_STEP_PERCENT || + now - lastProgressUpdateMs >= DOWNLOAD_PROGRESS_MIN_UPDATE_MS) { + lastRenderedPercent = percent; + lastProgressUpdateMs = now; + requestUpdate(true); + } }, nullptr, server.username, server.password); @@ -286,6 +395,7 @@ void OpdsBookBrowserActivity::downloadBook(const OpdsEntry& book) { clearBookCache(filename); state = BrowserState::BROWSING; } else { + LOG_ERR("OPDS", "Download failed: %d", static_cast(result)); state = BrowserState::ERROR; errorMessage = tr(STR_DOWNLOAD_FAILED); } @@ -340,6 +450,8 @@ void OpdsBookBrowserActivity::performSearch(const std::string& query) { state = BrowserState::LOADING; statusMessage = tr(STR_LOADING); + releaseEntries(); + selectorIndex = 0; requestUpdate(true); fetchFeed(url); } diff --git a/src/activities/browser/OpdsBookBrowserActivity.h b/src/activities/browser/OpdsBookBrowserActivity.h index 437ba58bcb..426ab028b4 100644 --- a/src/activities/browser/OpdsBookBrowserActivity.h +++ b/src/activities/browser/OpdsBookBrowserActivity.h @@ -46,6 +46,7 @@ class OpdsBookBrowserActivity final : public Activity { void launchWifiSelection(); void onWifiSelectionComplete(bool connected); void fetchFeed(const std::string& path); + void releaseEntries(); void navigateToEntry(const OpdsEntry& entry); void navigateBack(); void downloadBook(const OpdsEntry& book); diff --git a/src/activities/home/CrashActivity.cpp b/src/activities/home/CrashActivity.cpp index 4f5a392b94..3303e0a1c9 100644 --- a/src/activities/home/CrashActivity.cpp +++ b/src/activities/home/CrashActivity.cpp @@ -20,7 +20,9 @@ void CrashActivity::onEnter() { } void CrashActivity::loop() { - if (mappedInput.isPressed(MappedInputManager::Button::Back)) { + int x = 0; + int y = 0; + if (mappedInput.wasPressed(MappedInputManager::Button::Back) || mappedInput.wasScreenTapped(x, y)) { finish(); } } diff --git a/src/activities/home/FileBrowserActivity.cpp b/src/activities/home/FileBrowserActivity.cpp index 256a67552d..db696ecec8 100644 --- a/src/activities/home/FileBrowserActivity.cpp +++ b/src/activities/home/FileBrowserActivity.cpp @@ -205,8 +205,12 @@ void FileBrowserActivity::loop() { const int pathReserved = renderer.getLineHeight(SMALL_FONT_ID) + UITheme::getInstance().getMetrics().verticalSpacing; const int pageItems = UITheme::getNumberOfItemsPerPage(renderer, true, false, true, false, pathReserved); + const auto& metrics = UITheme::getInstance().getMetrics(); + const int contentTop = metrics.topPadding + metrics.headerHeight + metrics.verticalSpacing; + const int contentHeight = + renderer.getScreenHeight() - contentTop - metrics.buttonHintsHeight - metrics.verticalSpacing - pathReserved; - if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { + auto activateSelected = [this] { if (lockNextConfirmRelease) { lockNextConfirmRelease = false; return; @@ -234,6 +238,11 @@ void FileBrowserActivity::loop() { const std::string fullPath = cleanBasePath + entry; auto handler = [this, fullPath](const ActivityResult& res) { + // The confirmation popup acts on button press; if that button is still + // held when we resume, swallow its release so it doesn't also act here + // (Back would go up a directory, Confirm would open the selection). + lockLongPressBack = mappedInput.isPressed(MappedInputManager::Button::Back); + lockNextConfirmRelease = mappedInput.isPressed(MappedInputManager::Button::Confirm); if (!res.isCancelled) { LOG_DBG("FileBrowser", "Attempting to delete: %s", fullPath.c_str()); if (removeDirFile(fullPath)) { @@ -273,6 +282,19 @@ void FileBrowserActivity::loop() { } } return; + }; + + int touchSel = static_cast(selectorIndex); + const auto listTouch = handleListTouch(touchSel, static_cast(files.size()), contentTop, contentHeight, false); + if (listTouch != ListTouchResult::None) { + selectorIndex = static_cast(touchSel); + if (listTouch == ListTouchResult::Activated) activateSelected(); + return; + } + + if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { + activateSelected(); + return; } if (mappedInput.wasReleased(MappedInputManager::Button::Back)) { @@ -303,6 +325,18 @@ void FileBrowserActivity::loop() { } int listSize = static_cast(files.size()); + const auto swipe = mappedInput.wasSwipe(); + if (swipe == MappedInputManager::SwipeDir::Up) { + selectorIndex = ButtonNavigator::nextPageIndex(static_cast(selectorIndex), listSize, pageItems); + requestUpdate(); + return; + } + if (swipe == MappedInputManager::SwipeDir::Down) { + selectorIndex = ButtonNavigator::previousPageIndex(static_cast(selectorIndex), listSize, pageItems); + requestUpdate(); + return; + } + buttonNavigator.onNextRelease([this, listSize] { selectorIndex = ButtonNavigator::nextIndex(static_cast(selectorIndex), listSize); requestUpdate(); @@ -336,7 +370,7 @@ std::string getFileName(std::string filename) { return filename.substr(0, pos); } -std::string getFileExtension(std::string filename) { +std::string getFileExtension(const std::string& filename) { if (filename.back() == '/') { return ""; } diff --git a/src/activities/home/HomeActivity.cpp b/src/activities/home/HomeActivity.cpp index 287432643f..c15059adfa 100644 --- a/src/activities/home/HomeActivity.cpp +++ b/src/activities/home/HomeActivity.cpp @@ -168,6 +168,34 @@ void HomeActivity::freeCoverBuffer() { void HomeActivity::loop() { const int menuCount = getMenuItemCount(); + const auto& metrics = UITheme::getInstance().getMetrics(); + + auto activateSelection = [this] { + if (selectorIndex < recentBooks.size()) { + onSelectBook(recentBooks[selectorIndex].path); + return; + } + const int menuIndex = selectorIndex - static_cast(recentBooks.size()); + switch (indexToMenuItem(menuIndex, hasOpdsServers)) { + case HomeMenuItem::FILE_BROWSER: + onFileBrowserOpen(); + break; + case HomeMenuItem::RECENTS: + onRecentsOpen(); + break; + case HomeMenuItem::OPDS_BROWSER: + onOpdsBrowserOpen(); + break; + case HomeMenuItem::FILE_TRANSFER: + onFileTransferOpen(); + break; + case HomeMenuItem::SETTINGS_MENU: + onSettingsOpen(); + break; + default: + break; + } + }; buttonNavigator.onNext([this, menuCount] { selectorIndex = ButtonNavigator::nextIndex(selectorIndex, menuCount); @@ -179,31 +207,72 @@ void HomeActivity::loop() { requestUpdate(); }); - if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { - if (selectorIndex < recentBooks.size()) { - onSelectBook(recentBooks[selectorIndex].path); - } else { - const int menuIndex = selectorIndex - static_cast(recentBooks.size()); - switch (indexToMenuItem(menuIndex, hasOpdsServers)) { - case HomeMenuItem::FILE_BROWSER: - onFileBrowserOpen(); - break; - case HomeMenuItem::RECENTS: - onRecentsOpen(); - break; - case HomeMenuItem::OPDS_BROWSER: - onOpdsBrowserOpen(); - break; - case HomeMenuItem::FILE_TRANSFER: - onFileTransferOpen(); - break; - case HomeMenuItem::SETTINGS_MENU: - onSettingsOpen(); - break; - default: - break; + const auto swipe = mappedInput.wasSwipe(); + if (swipe == MappedInputManager::SwipeDir::Up) { + selectorIndex = ButtonNavigator::nextIndex(selectorIndex, menuCount); + requestUpdate(); + return; + } + if (swipe == MappedInputManager::SwipeDir::Down) { + selectorIndex = ButtonNavigator::previousIndex(selectorIndex, menuCount); + requestUpdate(); + return; + } + + if (mappedInput.wasPressed(MappedInputManager::Button::Back)) backPressSeen = true; + + // Back is otherwise unused on the home menu: open the most recently read + // book directly (recentBooks is most-recent-first and already pruned of + // files missing from the SD card). backPressSeen guards against the stale + // release of the Back press that closed the previous activity. + if (mappedInput.wasReleased(MappedInputManager::Button::Back) && backPressSeen && !recentBooks.empty()) { + onSelectBook(recentBooks[0].path); + return; + } + + int tx = 0; + int ty = 0; + if (!recentBooks.empty() && mappedInput.wasScreenTouchDown(tx, ty) && tx >= 0 && tx < renderer.getScreenWidth() && + ty >= metrics.homeTopPadding && ty < metrics.homeTopPadding + metrics.homeCoverTileHeight) { + if (selectorIndex != 0) { + selectorIndex = 0; + requestUpdate(); + } + return; + } + + if (!recentBooks.empty() && + mappedInput.wasTapInRect(0, metrics.homeTopPadding, renderer.getScreenWidth(), metrics.homeCoverTileHeight)) { + selectorIndex = 0; + activateSelection(); + return; + } + + const int menuTop = metrics.homeTopPadding + metrics.homeCoverTileHeight + metrics.homeMenuTopOffset; + const int renderedMenuSelection = + metrics.homeContinueReadingInMenu ? selectorIndex : selectorIndex - recentBooks.size(); + const int renderedMenuCount = + menuCount - (metrics.homeContinueReadingInMenu ? 0 : static_cast(recentBooks.size())); + int menuRow = -1; + const auto menuTouch = mappedInput.rowTouch(menuRow, menuTop, metrics.menuRowHeight + metrics.menuSpacing, + renderedMenuCount, 0, INT32_MAX, metrics.menuRowHeight); + if (menuTouch != MappedInputManager::RowTouch::None) { + const int touchedIndex = + metrics.homeContinueReadingInMenu ? menuRow : menuRow + static_cast(recentBooks.size()); + if (menuTouch == MappedInputManager::RowTouch::Down) { + if (selectorIndex != touchedIndex) { + selectorIndex = touchedIndex; + requestUpdate(); } + } else { + selectorIndex = touchedIndex; + activateSelection(); } + return; + } + + if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { + activateSelection(); } } @@ -256,7 +325,8 @@ void HomeActivity::render(RenderLock&&) { [&menuItems](int index) { return std::string(menuItems[index]); }, [&menuIcons](int index) { return menuIcons[index]; }); - const auto labels = mappedInput.mapLabels("", tr(STR_SELECT), tr(STR_DIR_UP), tr(STR_DIR_DOWN)); + const auto labels = mappedInput.mapLabels(recentBooks.empty() ? "" : tr(STR_RESUME), tr(STR_SELECT), tr(STR_DIR_UP), + tr(STR_DIR_DOWN)); GUI.drawButtonHints(renderer, labels.btn1, labels.btn2, labels.btn3, labels.btn4); renderer.displayBuffer(); diff --git a/src/activities/home/HomeActivity.h b/src/activities/home/HomeActivity.h index 6d170cddc3..84bd62ec99 100644 --- a/src/activities/home/HomeActivity.h +++ b/src/activities/home/HomeActivity.h @@ -18,6 +18,9 @@ class HomeActivity final : public Activity { bool hasOpdsServers = false; bool coverRendered = false; // Track if cover has been rendered once bool coverBufferStored = false; // Track if cover buffer is stored + // Home can be entered while Back is still held (e.g. leaving Settings with + // Back): ignore that stale release until a fresh press is seen here. + bool backPressSeen = false; uint8_t* coverBuffer = nullptr; // HomeActivity's own buffer for cover image size_t coverBufferSize = 0; // Bytes allocated to coverBuffer // Logical rect last passed to drawRecentBookCover. The cover snapshot only @@ -77,4 +80,5 @@ class HomeActivity final : public Activity { void onExit() override; void loop() override; void render(RenderLock&&) override; + bool isHomeActivity() const override { return true; } }; diff --git a/src/activities/home/RecentBooksActivity.cpp b/src/activities/home/RecentBooksActivity.cpp index 7b4a0117c3..f99b454003 100644 --- a/src/activities/home/RecentBooksActivity.cpp +++ b/src/activities/home/RecentBooksActivity.cpp @@ -43,6 +43,10 @@ void RecentBooksActivity::onExit() { void RecentBooksActivity::loop() { const int pageItems = UITheme::getInstance().getNumberOfItemsPerPage(renderer, true, false, true, true); + const auto& metrics = UITheme::getInstance().getMetrics(); + const int contentTop = metrics.topPadding + metrics.headerHeight + metrics.verticalSpacing; + const int contentHeight = + renderer.getScreenHeight() - contentTop - metrics.buttonHintsHeight - metrics.verticalSpacing; // After a long-press has fired, swallow input until Confirm is physically released // (so the release doesn't also open the book; re-arm only once the button is up). @@ -71,11 +75,34 @@ void RecentBooksActivity::loop() { } } + int touchSel = static_cast(selectorIndex); + const auto listTouch = + handleListTouch(touchSel, static_cast(recentBooks.size()), contentTop, contentHeight, true); + if (listTouch != ListTouchResult::None) { + selectorIndex = static_cast(touchSel); + if (listTouch == ListTouchResult::Activated) { + LOG_DBG("RBA", "Tapped recent book: %s", recentBooks[selectorIndex].path.c_str()); + onSelectBook(recentBooks[selectorIndex].path); + } + return; + } + if (mappedInput.wasReleased(MappedInputManager::Button::Back)) { onGoHome(); } int listSize = static_cast(recentBooks.size()); + const auto swipe = mappedInput.wasSwipe(); + if (swipe == MappedInputManager::SwipeDir::Up) { + selectorIndex = ButtonNavigator::nextPageIndex(static_cast(selectorIndex), listSize, pageItems); + requestUpdate(); + return; + } + if (swipe == MappedInputManager::SwipeDir::Down) { + selectorIndex = ButtonNavigator::previousPageIndex(static_cast(selectorIndex), listSize, pageItems); + requestUpdate(); + return; + } buttonNavigator.onNextRelease([this, listSize] { selectorIndex = ButtonNavigator::nextIndex(static_cast(selectorIndex), listSize); diff --git a/src/activities/network/CalibreConnectActivity.cpp b/src/activities/network/CalibreConnectActivity.cpp index ff89cf274d..7d821c6b91 100644 --- a/src/activities/network/CalibreConnectActivity.cpp +++ b/src/activities/network/CalibreConnectActivity.cpp @@ -4,13 +4,13 @@ #include #include #include -#include #include "MappedInputManager.h" #include "SilentRestart.h" #include "WifiSelectionActivity.h" #include "components/UITheme.h" #include "fontIds.h" +#include "util/TaskWatchdog.h" namespace { constexpr const char* HOSTNAME = "crosspoint"; @@ -110,12 +110,12 @@ void CalibreConnectActivity::loop() { LOG_DBG("CAL", "WARNING: %lu ms gap since last handleClient", timeSinceLastHandleClient); } - esp_task_wdt_reset(); + resetTaskWatchdogIfSubscribed(); constexpr int MAX_ITERATIONS = 80; for (int i = 0; i < MAX_ITERATIONS && webServer->isRunning(); i++) { webServer->handleClient(); if ((i & 0x07) == 0x07) { - esp_task_wdt_reset(); + resetTaskWatchdogIfSubscribed(); } if ((i & 0x0F) == 0x0F) { yield(); diff --git a/src/activities/network/CrossPointWebServerActivity.cpp b/src/activities/network/CrossPointWebServerActivity.cpp index 29737a5a03..f4dae62a1b 100644 --- a/src/activities/network/CrossPointWebServerActivity.cpp +++ b/src/activities/network/CrossPointWebServerActivity.cpp @@ -5,7 +5,6 @@ #include #include #include -#include #include @@ -17,6 +16,7 @@ #include "components/UITheme.h" #include "fontIds.h" #include "util/QrUtils.h" +#include "util/TaskWatchdog.h" namespace { // AP Mode configuration @@ -328,7 +328,7 @@ void CrossPointWebServerActivity::loop() { } // Reset watchdog BEFORE processing - HTTP header parsing can be slow - esp_task_wdt_reset(); + resetTaskWatchdogIfSubscribed(); // Process HTTP requests in tight loop for maximum throughput // More iterations = more data processed per main loop cycle @@ -337,7 +337,7 @@ void CrossPointWebServerActivity::loop() { webServer->handleClient(); // Reset watchdog every 32 iterations if ((i & 0x1F) == 0x1F) { - esp_task_wdt_reset(); + resetTaskWatchdogIfSubscribed(); } // Yield and check for exit button every 64 iterations if ((i & 0x3F) == 0x3F) { @@ -410,7 +410,8 @@ void CrossPointWebServerActivity::renderServerRunning() const { startY += height10 + metrics.verticalSpacing * 2; // Show QR code for Wifi - const std::string wifiConfig = std::string("WIFI:S:") + connectedSSID + ";;"; + // follows spec at https://github.com/zxing/zxing/wiki/Barcode-Contents#wi-fi-network-config-android-ios-11 + const std::string wifiConfig = std::string("WIFI:T:nopass;S:") + connectedSSID + ";;"; const Rect qrBoundsWifi(metrics.contentSidePadding, startY, QR_CODE_WIDTH, QR_CODE_HEIGHT); QrUtils::drawQrCode(renderer, qrBoundsWifi, wifiConfig); diff --git a/src/activities/network/NetworkModeSelectionActivity.cpp b/src/activities/network/NetworkModeSelectionActivity.cpp index f8e453077c..e77208014d 100644 --- a/src/activities/network/NetworkModeSelectionActivity.cpp +++ b/src/activities/network/NetworkModeSelectionActivity.cpp @@ -24,6 +24,16 @@ void NetworkModeSelectionActivity::onEnter() { void NetworkModeSelectionActivity::onExit() { Activity::onExit(); } void NetworkModeSelectionActivity::loop() { + auto selectCurrent = [this] { + NetworkMode mode = NetworkMode::JOIN_NETWORK; + if (selectedIndex == 1) { + mode = NetworkMode::CONNECT_CALIBRE; + } else if (selectedIndex == 2) { + mode = NetworkMode::CREATE_HOTSPOT; + } + onModeSelected(mode); + }; + // Handle back button - cancel if (mappedInput.wasPressed(MappedInputManager::Button::Back)) { onCancel(); @@ -32,16 +42,24 @@ void NetworkModeSelectionActivity::loop() { // Handle confirm button - select current option if (mappedInput.wasPressed(MappedInputManager::Button::Confirm)) { - NetworkMode mode = NetworkMode::JOIN_NETWORK; - if (selectedIndex == 1) { - mode = NetworkMode::CONNECT_CALIBRE; - } else if (selectedIndex == 2) { - mode = NetworkMode::CREATE_HOTSPOT; - } - onModeSelected(mode); + selectCurrent(); return; } + const auto& metrics = UITheme::getInstance().getMetrics(); + const int contentTop = metrics.topPadding + metrics.headerHeight + metrics.verticalSpacing; + const int contentHeight = + renderer.getScreenHeight() - contentTop - metrics.buttonHintsHeight - metrics.verticalSpacing * 2; + switch (handleListTouch(selectedIndex, MENU_ITEM_COUNT, contentTop, contentHeight, true)) { + case ListTouchResult::Activated: + selectCurrent(); + return; + case ListTouchResult::Consumed: + return; + case ListTouchResult::None: + break; + } + // Handle navigation buttonNavigator.onNext([this] { selectedIndex = ButtonNavigator::nextIndex(selectedIndex, MENU_ITEM_COUNT); diff --git a/src/activities/network/WifiSelectionActivity.cpp b/src/activities/network/WifiSelectionActivity.cpp index 9d47369910..f643697725 100644 --- a/src/activities/network/WifiSelectionActivity.cpp +++ b/src/activities/network/WifiSelectionActivity.cpp @@ -6,6 +6,8 @@ #include #include +#include + #include "CrossPointSettings.h" #include "MappedInputManager.h" #include "WifiCredentialStore.h" @@ -26,6 +28,7 @@ void WifiSelectionActivity::onEnter() { // Reset state selectedNetworkIndex = 0; networks.clear(); + realNetworkCount = 0; state = WifiSelectionState::SCANNING; selectedSSID.clear(); connectedIP.clear(); @@ -35,6 +38,9 @@ void WifiSelectionActivity::onEnter() { savePromptSelection = 0; forgetPromptSelection = 0; autoConnecting = false; + manualNetworkListRequested = false; + autoAttemptedSsids.clear(); + autoAttemptedSsids.reserve(WIFI_STORE.getCredentials().size()); // Cache MAC address for display uint8_t mac[6]; @@ -47,23 +53,20 @@ void WifiSelectionActivity::onEnter() { // Trigger first update to show scanning message requestUpdate(); - // Attempt to auto-connect to the last network - if (allowAutoConnect) { + // Attempt to auto-connect to known networks. Try the last successful + // network first for speed, then scan and try any visible saved networks by + // signal strength. The user can interrupt this and show the scan result. + if (allowAutoConnect && !WIFI_STORE.getCredentials().empty()) { const std::string lastSsid = WIFI_STORE.getLastConnectedSsid(); if (!lastSsid.empty()) { const auto* cred = WIFI_STORE.findCredential(lastSsid); - if (cred) { - LOG_DBG("WIFI", "Attempting to auto-connect to %s", lastSsid.c_str()); - selectedSSID = cred->ssid; - enteredPassword = cred->password; - selectedRequiresPassword = !cred->password.empty(); - usedSavedPassword = true; - autoConnecting = true; - attemptConnection(); - requestUpdate(); + if (cred && tryAutoConnectCredential(*cred)) { return; } } + + startWifiScan(true); + return; } // Fallback to scanning @@ -87,8 +90,9 @@ void WifiSelectionActivity::onExit() { LOG_DBG("WIFI", "Free heap at onExit end: %d bytes", ESP.getFreeHeap()); } -void WifiSelectionActivity::startWifiScan() { - autoConnecting = false; +void WifiSelectionActivity::startWifiScan(const bool autoScan) { + autoConnecting = autoScan; + manualNetworkListRequested = false; state = WifiSelectionState::SCANNING; networks.clear(); requestUpdate(); @@ -111,7 +115,13 @@ void WifiSelectionActivity::processWifiScanResults() { } if (scanResult == WIFI_SCAN_FAILED) { + networks.clear(); + realNetworkCount = 0; + appendHiddenNetworkEntry(); + autoConnecting = false; + manualNetworkListRequested = false; state = WifiSelectionState::NETWORK_LIST; + selectedNetworkIndex = 0; requestUpdate(); return; } @@ -153,18 +163,46 @@ void WifiSelectionActivity::processWifiScanResults() { return a.rssi > b.rssi; }); + realNetworkCount = networks.size(); + appendHiddenNetworkEntry(); + WiFi.scanDelete(); + + if (autoConnecting && !manualNetworkListRequested && tryNextSavedNetworkFromScan()) { + return; + } + + autoConnecting = false; + manualNetworkListRequested = false; state = WifiSelectionState::NETWORK_LIST; selectedNetworkIndex = 0; requestUpdate(); } +void WifiSelectionActivity::appendHiddenNetworkEntry() { + // Synthetic list entry that lets the user type an SSID that is not broadcast. + // ESP32 can join hidden APs as long as the SSID is supplied to WiFi.begin(). + WifiNetworkInfo placeholder; + placeholder.rssi = 0; + placeholder.isEncrypted = true; // Treated as encrypted; an empty password still connects open APs + placeholder.hasSavedPassword = false; + placeholder.isHiddenPlaceholder = true; + networks.push_back(std::move(placeholder)); +} + void WifiSelectionActivity::selectNetwork(const int index) { if (index < 0 || index >= static_cast(networks.size())) { return; } const auto& network = networks[index]; + + // Synthetic "Add hidden network..." entry: prompt the user to type the SSID first + if (network.isHiddenPlaceholder) { + promptHiddenSsid(); + return; + } + selectedSSID = network.ssid; selectedRequiresPassword = network.isEncrypted; usedSavedPassword = false; @@ -183,27 +221,127 @@ void WifiSelectionActivity::selectNetwork(const int index) { } if (selectedRequiresPassword) { - // Show password entry - state = WifiSelectionState::PASSWORD_ENTRY; - // Don't allow screen updates while changing activity - startActivityForResult(std::make_unique(renderer, mappedInput, tr(STR_ENTER_WIFI_PASSWORD), - "", // No initial text - 64, // Max password length - InputType::Password), - [this](const ActivityResult& result) { - if (result.isCancelled) { - state = WifiSelectionState::NETWORK_LIST; - } else { - enteredPassword = std::get(result.data).text; - // state will be updated in next loop iteration - } - }); + promptPasswordEntry(); } else { // Connect directly for open networks attemptConnection(); } } +void WifiSelectionActivity::promptPasswordEntry() { + // Show password entry + state = WifiSelectionState::PASSWORD_ENTRY; + // Don't allow screen updates while changing activity + startActivityForResult(std::make_unique(renderer, mappedInput, tr(STR_ENTER_WIFI_PASSWORD), + "", // No initial text + 64, // Max password length + InputType::Password), + [this](const ActivityResult& result) { + if (result.isCancelled) { + state = WifiSelectionState::NETWORK_LIST; + } else { + enteredPassword = std::get(result.data).text; + // state will be updated in next loop iteration + } + }); +} + +void WifiSelectionActivity::promptHiddenSsid() { + selectedSSID.clear(); + selectedRequiresPassword = true; // Hidden networks are usually encrypted; empty password still joins open APs + usedSavedPassword = false; + enteredPassword.clear(); + autoConnecting = false; + + // Suppress rendering during the activity transition (see render()). + state = WifiSelectionState::HIDDEN_SSID_ENTRY; + startActivityForResult(std::make_unique(renderer, mappedInput, tr(STR_ENTER_WIFI_SSID), + "", // No initial text + 32, // Max SSID length (IEEE 802.11: 32 bytes) + InputType::Text), + [this](const ActivityResult& result) { + if (result.isCancelled) { + state = WifiSelectionState::NETWORK_LIST; + return; + } + selectedSSID = std::get(result.data).text; + if (selectedSSID.empty()) { + state = WifiSelectionState::NETWORK_LIST; + } + // Otherwise stay in HIDDEN_SSID_ENTRY; loop() continues the flow. + }); +} + +bool WifiSelectionActivity::hasAttemptedAutoSsid(const std::string& ssid) const { + return std::find(autoAttemptedSsids.begin(), autoAttemptedSsids.end(), ssid) != autoAttemptedSsids.end(); +} + +bool WifiSelectionActivity::tryAutoConnectCredential(const WifiCredential& cred) { + if (hasAttemptedAutoSsid(cred.ssid)) { + return false; + } + + LOG_DBG("WIFI", "Attempting saved network: %s", cred.ssid.c_str()); + autoAttemptedSsids.push_back(cred.ssid); + selectedSSID = cred.ssid; + enteredPassword = cred.password; + selectedRequiresPassword = !cred.password.empty(); + usedSavedPassword = true; + autoConnecting = true; + manualNetworkListRequested = false; + attemptConnection(); + requestUpdate(); + return true; +} + +bool WifiSelectionActivity::tryNextSavedNetworkFromScan() { + for (const auto& network : networks) { + if (!network.hasSavedPassword || hasAttemptedAutoSsid(network.ssid)) { + continue; + } + + const auto* cred = WIFI_STORE.findCredential(network.ssid); + if (cred && tryAutoConnectCredential(*cred)) { + return true; + } + } + return false; +} + +void WifiSelectionActivity::handleAutoConnectFailure() { + LOG_DBG("WIFI", "Saved network failed: %s", selectedSSID.c_str()); + WiFi.disconnect(); + + if (!networks.empty()) { + if (tryNextSavedNetworkFromScan()) { + return; + } + autoConnecting = false; + state = WifiSelectionState::NETWORK_LIST; + selectedNetworkIndex = 0; + requestUpdate(); + return; + } + + startWifiScan(true); +} + +void WifiSelectionActivity::showNetworkListFromAutoConnect() { + LOG_DBG("WIFI", "User requested manual network list"); + WiFi.disconnect(); + autoConnecting = false; + manualNetworkListRequested = true; + + if (networks.empty()) { + startWifiScan(false); + return; + } + + state = WifiSelectionState::NETWORK_LIST; + selectedNetworkIndex = 0; + requestUpdate(); +} + void WifiSelectionActivity::attemptConnection() { state = autoConnecting ? WifiSelectionState::AUTO_CONNECTING : WifiSelectionState::CONNECTING; connectionStartTime = millis(); @@ -216,6 +354,11 @@ void WifiSelectionActivity::attemptConnection() { WiFi.disconnect(true, true); // Abort any in-progress SDK auto-connect and clear NVS-saved SSID delay(100); + // Scan all channels so networks with multiple APs use the strongest matching + // BSSID instead of the first match found by the framework's default fast scan. + WiFi.setScanMethod(WIFI_ALL_CHANNEL_SCAN); + WiFi.setSortMethod(WIFI_CONNECT_AP_BY_SIGNAL); + // Set hostname so routers show "CrossPoint-Reader-AABBCCDDEEFF" instead of "esp32-XXXXXXXXXXXX" String mac = WiFi.macAddress(); mac.replace(":", ""); @@ -244,6 +387,16 @@ void WifiSelectionActivity::checkConnectionStatus() { connectedIP = ipStr; autoConnecting = false; +#if defined(ENABLE_SERIAL_LOG) && LOG_LEVEL >= 2 + uint8_t connectedBssid[6] = {}; + WiFi.BSSID(connectedBssid); + LOG_DBG("WIFI", "Connected BSSID: %02x:%02x:%02x:%02x:%02x:%02x, channel: %d, RSSI: %d dBm", + static_cast(connectedBssid[0]), static_cast(connectedBssid[1]), + static_cast(connectedBssid[2]), static_cast(connectedBssid[3]), + static_cast(connectedBssid[4]), static_cast(connectedBssid[5]), WiFi.channel(), + WiFi.RSSI()); +#endif + // Sync RTC from NTP on the first successful WiFi connection only. The DS3231 // drifts ~2 ppm so one sync is enough; users can force a re-sync from // Settings > Customise Status Bar > Sync clock now. @@ -282,15 +435,24 @@ void WifiSelectionActivity::checkConnectionStatus() { if (status == WL_NO_SSID_AVAIL) { connectionError = tr(STR_ERROR_NETWORK_NOT_FOUND); } + if (autoConnecting) { + handleAutoConnectFailure(); + return; + } state = WifiSelectionState::CONNECTION_FAILED; requestUpdate(); return; } // Check for timeout - if (millis() - connectionStartTime > CONNECTION_TIMEOUT_MS) { + const unsigned long timeoutMs = autoConnecting ? AUTO_CONNECTION_TIMEOUT_MS : CONNECTION_TIMEOUT_MS; + if (millis() - connectionStartTime > timeoutMs) { WiFi.disconnect(); connectionError = tr(STR_ERROR_CONNECTION_TIMEOUT); + if (autoConnecting) { + handleAutoConnectFailure(); + return; + } state = WifiSelectionState::CONNECTION_FAILED; requestUpdate(); return; @@ -300,16 +462,53 @@ void WifiSelectionActivity::checkConnectionStatus() { void WifiSelectionActivity::loop() { // Check scan progress if (state == WifiSelectionState::SCANNING) { + if (mappedInput.wasPressed(MappedInputManager::Button::Back)) { + WiFi.scanDelete(); + onComplete(false); + return; + } + if (autoConnecting && mappedInput.wasPressed(MappedInputManager::Button::Confirm)) { + autoConnecting = false; + manualNetworkListRequested = true; + requestUpdate(); + } processWifiScanResults(); return; } // Check connection progress if (state == WifiSelectionState::CONNECTING || state == WifiSelectionState::AUTO_CONNECTING) { + if (state == WifiSelectionState::AUTO_CONNECTING) { + if (mappedInput.wasPressed(MappedInputManager::Button::Back)) { + WiFi.disconnect(); + onComplete(false); + return; + } + if (mappedInput.wasPressed(MappedInputManager::Button::Confirm)) { + showNetworkListFromAutoConnect(); + return; + } + } checkConnectionStatus(); return; } + // Reached once the hidden-network SSID has been entered (and was non-empty). + if (state == WifiSelectionState::HIDDEN_SSID_ENTRY) { + const auto* savedCred = WIFI_STORE.findCredential(selectedSSID); + if (savedCred && !savedCred->password.empty()) { + // We already know this hidden network - connect with the saved password + enteredPassword = savedCred->password; + usedSavedPassword = true; + LOG_DBG("WiFi", "Using saved password for hidden network %s", selectedSSID.c_str()); + attemptConnection(); + } else { + // Prompt for the password (empty password connects to open hidden APs) + promptPasswordEntry(); + } + return; + } + if (state == WifiSelectionState::PASSWORD_ENTRY) { // Reach here once password entry finished in subactivity attemptConnection(); @@ -318,6 +517,34 @@ void WifiSelectionActivity::loop() { // Handle save prompt state if (state == WifiSelectionState::SAVE_PROMPT) { + { + const Rect screen = UITheme::getInstance().getScreenSafeArea(renderer, true, false); + const auto height = renderer.getLineHeight(UI_10_FONT_ID); + const int buttonY = screen.y + (screen.height - height * 3) / 2 + 80; + constexpr int buttonWidth = 60; + constexpr int buttonSpacing = 30; + const int startX = screen.x + (screen.width - (buttonWidth * 2 + buttonSpacing)) / 2; + int touchedOption = -1; + const auto touch = mappedInput.colTouch(touchedOption, startX - 8, buttonWidth + buttonSpacing, 2, buttonY - 8, + buttonY + height + 8, buttonWidth + 16); + if (touch == MappedInputManager::RowTouch::Down) { + if (savePromptSelection != touchedOption) { + savePromptSelection = touchedOption; + requestUpdate(); + } + return; + } + if (touch == MappedInputManager::RowTouch::Tap) { + savePromptSelection = touchedOption; + if (savePromptSelection == 0) { + RenderLock lock(*this); + WIFI_STORE.addCredential(selectedSSID, enteredPassword); + } + onComplete(true); + return; + } + } + if (mappedInput.wasPressed(MappedInputManager::Button::Up) || mappedInput.wasPressed(MappedInputManager::Button::Left)) { if (savePromptSelection > 0) { @@ -347,6 +574,39 @@ void WifiSelectionActivity::loop() { // Handle forget prompt state (connection failed with saved credentials) if (state == WifiSelectionState::FORGET_PROMPT) { + { + const Rect screen = UITheme::getInstance().getScreenSafeArea(renderer, true, false); + const auto height = renderer.getLineHeight(UI_10_FONT_ID); + const int buttonY = screen.y + (screen.height - height * 3) / 2 + 80; + constexpr int buttonWidth = 120; + constexpr int buttonSpacing = 30; + const int startX = screen.x + (screen.width - (buttonWidth * 2 + buttonSpacing)) / 2; + int touchedOption = -1; + const auto touch = mappedInput.colTouch(touchedOption, startX - 8, buttonWidth + buttonSpacing, 2, buttonY - 8, + buttonY + height + 8, buttonWidth + 16); + if (touch == MappedInputManager::RowTouch::Down) { + if (forgetPromptSelection != touchedOption) { + forgetPromptSelection = touchedOption; + requestUpdate(); + } + return; + } + if (touch == MappedInputManager::RowTouch::Tap) { + forgetPromptSelection = touchedOption; + if (forgetPromptSelection == 1) { + RenderLock lock(*this); + WIFI_STORE.removeCredential(selectedSSID); + const auto network = find_if(networks.begin(), networks.end(), + [this](const WifiNetworkInfo& net) { return net.ssid == selectedSSID; }); + if (network != networks.end()) { + network->hasSavedPassword = false; + } + } + startWifiScan(); + return; + } + } + if (mappedInput.wasPressed(MappedInputManager::Button::Up) || mappedInput.wasPressed(MappedInputManager::Button::Left)) { if (forgetPromptSelection > 0) { @@ -442,6 +702,35 @@ void WifiSelectionActivity::loop() { } } + if (!networks.empty()) { + const auto& metrics = UITheme::getInstance().getMetrics(); + Rect screen = UITheme::getInstance().getScreenSafeArea(renderer, true, false); + const int contentTop = + screen.y + metrics.topPadding + metrics.headerHeight + metrics.tabBarHeight + metrics.verticalSpacing; + const int contentHeight = screen.height - contentTop - metrics.verticalSpacing * 2; + int touchSel = static_cast(selectedNetworkIndex); + const auto listTouch = + handleListTouch(touchSel, static_cast(networks.size()), contentTop, contentHeight, false); + if (listTouch != ListTouchResult::None) { + selectedNetworkIndex = static_cast(touchSel); + if (listTouch == ListTouchResult::Activated) selectNetwork(selectedNetworkIndex); + return; + } + + const int pageItems = GUI.getListPageItems(contentHeight, false); + const auto swipe = mappedInput.wasSwipe(); + if (swipe == MappedInputManager::SwipeDir::Up) { + selectedNetworkIndex = ButtonNavigator::nextPageIndex(selectedNetworkIndex, networks.size(), pageItems); + requestUpdate(); + return; + } + if (swipe == MappedInputManager::SwipeDir::Down) { + selectedNetworkIndex = ButtonNavigator::previousPageIndex(selectedNetworkIndex, networks.size(), pageItems); + requestUpdate(); + return; + } + } + // Handle navigation buttonNavigator.onNext([this] { selectedNetworkIndex = ButtonNavigator::nextIndex(selectedNetworkIndex, networks.size()); @@ -470,9 +759,9 @@ std::string WifiSelectionActivity::getSignalStrengthIndicator(const int32_t rssi } void WifiSelectionActivity::render(RenderLock&&) { - // Don't render if we're in PASSWORD_ENTRY state - we're just transitioning + // Don't render if we're in a keyboard-entry state - we're just transitioning // from the keyboard subactivity back to the main activity - if (state == WifiSelectionState::PASSWORD_ENTRY) { + if (state == WifiSelectionState::PASSWORD_ENTRY || state == WifiSelectionState::HIDDEN_SSID_ENTRY) { return; } @@ -484,7 +773,7 @@ void WifiSelectionActivity::render(RenderLock&&) { // Draw header char countStr[32]; - snprintf(countStr, sizeof(countStr), tr(STR_NETWORKS_FOUND), networks.size()); + snprintf(countStr, sizeof(countStr), tr(STR_NETWORKS_FOUND), realNetworkCount); GUI.drawHeader(renderer, Rect{screen.x, screen.y + metrics.topPadding, screen.width, metrics.headerHeight}, tr(STR_WIFI_NETWORKS), countStr); GUI.drawSubHeader( @@ -502,6 +791,9 @@ void WifiSelectionActivity::render(RenderLock&&) { case WifiSelectionState::NETWORK_LIST: renderNetworkList(&screen, &metrics); break; + case WifiSelectionState::HIDDEN_SSID_ENTRY: + // Transitioning to/from the SSID keyboard subactivity - nothing to draw + break; case WifiSelectionState::CONNECTING: renderConnecting(&screen, &metrics); break; @@ -535,9 +827,17 @@ void WifiSelectionActivity::renderNetworkList(const Rect* screen, const ThemeMet int contentHeight = screen->height - contentTop - metrics->verticalSpacing * 2; GUI.drawList( renderer, Rect{screen->x, contentTop, screen->width, contentHeight}, static_cast(networks.size()), - selectedNetworkIndex, [this](int index) { return networks[index].ssid; }, nullptr, nullptr, + selectedNetworkIndex, [this](int index) { - auto network = networks[index]; + const auto& network = networks[index]; + return network.isHiddenPlaceholder ? std::string(tr(STR_ADD_HIDDEN_NETWORK)) : network.ssid; + }, + nullptr, nullptr, + [this](int index) { + const auto& network = networks[index]; + if (network.isHiddenPlaceholder) { + return std::string(); + } return std::string(network.hasSavedPassword ? "+ " : "") + (network.isEncrypted ? "* " : "") + getSignalStrengthIndicator(network.rssi); }); @@ -559,9 +859,15 @@ void WifiSelectionActivity::renderConnecting(const Rect* screen, const ThemeMetr const auto top = screen->y + (screen->height - height) / 2; if (state == WifiSelectionState::SCANNING) { - UITheme::drawCenteredText(renderer, *screen, UI_10_FONT_ID, top, tr(STR_SCANNING)); + UITheme::drawCenteredText(renderer, *screen, UI_10_FONT_ID, top, + autoConnecting ? tr(STR_FINDING_SAVED_WIFI) : tr(STR_SCANNING)); + if (autoConnecting) { + const auto labels = mappedInput.mapLabels(tr(STR_CANCEL), tr(STR_SHOW_NETWORKS), "", ""); + GUI.drawButtonHints(renderer, labels.btn1, labels.btn2, labels.btn3, labels.btn4); + } } else { - UITheme::drawCenteredText(renderer, *screen, UI_12_FONT_ID, top - 40, tr(STR_CONNECTING), true, + UITheme::drawCenteredText(renderer, *screen, UI_12_FONT_ID, top - 40, + autoConnecting ? tr(STR_CONNECTING_SAVED_WIFI) : tr(STR_CONNECTING), true, EpdFontFamily::BOLD); std::string ssidInfo = std::string(tr(STR_TO_PREFIX)) + selectedSSID; @@ -569,6 +875,10 @@ void WifiSelectionActivity::renderConnecting(const Rect* screen, const ThemeMetr ssidInfo.replace(22, ssidInfo.length() - 22, "..."); } UITheme::drawCenteredText(renderer, *screen, UI_10_FONT_ID, top, ssidInfo.c_str()); + if (autoConnecting) { + const auto labels = mappedInput.mapLabels(tr(STR_CANCEL), tr(STR_SHOW_NETWORKS), "", ""); + GUI.drawButtonHints(renderer, labels.btn1, labels.btn2, labels.btn3, labels.btn4); + } } } diff --git a/src/activities/network/WifiSelectionActivity.h b/src/activities/network/WifiSelectionActivity.h index 4b534d1721..f352f493fc 100644 --- a/src/activities/network/WifiSelectionActivity.h +++ b/src/activities/network/WifiSelectionActivity.h @@ -11,13 +11,15 @@ struct Rect; struct ThemeMetrics; +struct WifiCredential; // Structure to hold WiFi network information struct WifiNetworkInfo { std::string ssid; int32_t rssi; bool isEncrypted; - bool hasSavedPassword; // Whether we have saved credentials for this network + bool hasSavedPassword; // Whether we have saved credentials for this network + bool isHiddenPlaceholder = false; // Synthetic "Add hidden network..." list entry }; // WiFi selection states @@ -25,6 +27,7 @@ enum class WifiSelectionState { AUTO_CONNECTING, // Trying to connect to the last known network SCANNING, // Scanning for networks NETWORK_LIST, // Displaying available networks + HIDDEN_SSID_ENTRY, // Entering SSID for a hidden network PASSWORD_ENTRY, // Entering password for selected network CONNECTING, // Attempting to connect CONNECTED, // Successfully connected @@ -50,6 +53,8 @@ class WifiSelectionActivity final : public Activity { WifiSelectionState state = WifiSelectionState::SCANNING; size_t selectedNetworkIndex = 0; std::vector networks; + // Number of real (scanned) networks, excluding the synthetic hidden-network entry + size_t realNetworkCount = 0; // Selected network for connection std::string selectedSSID; @@ -71,15 +76,22 @@ class WifiSelectionActivity final : public Activity { // Whether to attempt auto-connect on entry const bool allowAutoConnect; - // Whether we are attempting to auto-connect + // Whether we are attempting to auto-connect or auto-scan saved networks. bool autoConnecting = false; + // True when the user stopped auto-connect and asked to see the scan result. + bool manualNetworkListRequested = false; + + // Saved SSIDs already attempted during the current auto-connect session. + std::vector autoAttemptedSsids; + // Save/forget prompt selection (0 = Yes, 1 = No) int savePromptSelection = 0; int forgetPromptSelection = 0; // Connection timeout static constexpr unsigned long CONNECTION_TIMEOUT_MS = 15000; + static constexpr unsigned long AUTO_CONNECTION_TIMEOUT_MS = 7000; unsigned long connectionStartTime = 0; void renderNetworkList(const Rect* screen, const ThemeMetrics* metrics) const; @@ -90,11 +102,19 @@ class WifiSelectionActivity final : public Activity { void renderConnectionFailed(const Rect* screen, const ThemeMetrics* metrics) const; void renderForgetPrompt(const Rect* screen, const ThemeMetrics* metrics) const; - void startWifiScan(); + void startWifiScan(bool autoScan = false); void processWifiScanResults(); + void appendHiddenNetworkEntry(); void selectNetwork(int index); + void promptHiddenSsid(); + void promptPasswordEntry(); void attemptConnection(); void checkConnectionStatus(); + bool tryAutoConnectCredential(const WifiCredential& cred); + bool tryNextSavedNetworkFromScan(); + void handleAutoConnectFailure(); + void showNetworkListFromAutoConnect(); + bool hasAttemptedAutoSsid(const std::string& ssid) const; std::string getSignalStrengthIndicator(int32_t rssi) const; void onComplete(bool connected); diff --git a/src/activities/reader/DictionaryDefinitionActivity.cpp b/src/activities/reader/DictionaryDefinitionActivity.cpp new file mode 100644 index 0000000000..963c23f201 --- /dev/null +++ b/src/activities/reader/DictionaryDefinitionActivity.cpp @@ -0,0 +1,254 @@ +#include "DictionaryDefinitionActivity.h" + +#include +#include +#include + +#include +#include +#include + +#include "CrossPointSettings.h" +#include "components/UITheme.h" +#include "fontIds.h" +#include "util/HtmlToPlainText.h" + +namespace { + +// Longest measurable/drawable span. Wrapped lines stay under the screen width +// (far below this); only pathological unbreakable tokens are split at this cap. +constexpr size_t MAX_LINE_BYTES = 191; + +// Body text left/right inset, matching the reader's default feel. +constexpr int SIDE_PADDING = 20; + +} // namespace + +void DictionaryDefinitionActivity::onEnter() { + Activity::onEnter(); + // Normalize StarDict multi-type separators so the wrap loop and the + // C-string font APIs below both see the whole definition. + std::replace(definition.begin(), definition.end(), '\0', '\n'); + definition = htmlToPlainText(definition); + wrapText(); + requestUpdate(); +} + +int DictionaryDefinitionActivity::measureSpan(const int fontId, const char* text, size_t len) const { + char buf[MAX_LINE_BYTES + 1]; + len = std::min(len, MAX_LINE_BYTES); + memcpy(buf, text, len); + buf[len] = '\0'; + return renderer.getTextAdvanceX(fontId, buf, EpdFontFamily::REGULAR); +} + +// Greedy word-wrap of `definition` into byte spans. '\n' breaks lines (blank +// lines survive as paragraph spacing; NULs from multi-type StarDict entries +// were normalized to newlines in onEnter); '\r' is dropped by treating it as +// a space at a token edge. +void DictionaryDefinitionActivity::wrapText() { + lines.clear(); + lines.reserve(definition.size() / 32 + 8); + + const int fontId = SETTINGS.getReaderFontId(); + // SD-card fonts: merge every definition codepoint into the persistent + // advance table up front. Otherwise each unseen codepoint measured below + // falls back to an on-demand glyph load from SD (8-slot overflow ring). + renderer.ensureSdCardFontReady(fontId, definition.c_str(), 0x01 /* REGULAR */); + + const auto& metrics = UITheme::getInstance().getMetrics(); + const auto orientation = renderer.getOrientation(); + const bool isLandscape = orientation == GfxRenderer::Orientation::LandscapeClockwise || + orientation == GfxRenderer::Orientation::LandscapeCounterClockwise; + const bool isInverted = orientation == GfxRenderer::Orientation::PortraitInverted; + const int hintGutterWidth = isLandscape ? metrics.sideButtonHintsWidth : 0; + const int maxWidth = renderer.getScreenWidth() - hintGutterWidth - 2 * SIDE_PADDING; + const int spaceWidth = renderer.getSpaceWidth(fontId, EpdFontFamily::REGULAR); + + const int lineHeight = renderer.getLineHeight(fontId); + const int topArea = (isInverted ? metrics.buttonHintsHeight : 0) + metrics.topPadding + metrics.headerHeight; + const int bottomArea = metrics.buttonHintsHeight + metrics.verticalSpacing; + linesPerPage = std::max(1, (renderer.getScreenHeight() - topArea - bottomArea) / lineHeight); + + const char* text = definition.c_str(); + const uint32_t n = static_cast(definition.size()); + uint32_t lineStart = 0; + uint32_t lineEnd = 0; // one past the last token byte on the current line + int lineWidth = 0; + + const auto flushLine = [&](uint32_t nextStart) { + lines.push_back({lineStart, static_cast(lineEnd - lineStart)}); + lineStart = nextStart; + lineEnd = nextStart; + lineWidth = 0; + }; + + uint32_t i = 0; + while (i < n) { + const char c = text[i]; + if (c == '\n' || c == '\0') { + flushLine(i + 1); + i++; + continue; + } + if (c == ' ' || c == '\t' || c == '\r') { + i++; + continue; + } + + // Token: run of non-whitespace bytes, capped at the measure buffer. + const uint32_t tokenStart = i; + while (i < n && text[i] != ' ' && text[i] != '\t' && text[i] != '\r' && text[i] != '\n' && text[i] != '\0' && + i - tokenStart < MAX_LINE_BYTES) { + i++; + } + // If the byte cap cut the token mid-UTF-8-sequence, back off to the last + // complete codepoint so measure/draw never see a partial sequence. A + // natural stop lands on whitespace or the terminating NUL, never on a + // continuation byte, so this is a no-op there. + while (i - tokenStart > 1 && (text[i] & 0xC0) == 0x80) i--; + const uint32_t tokenLen = i - tokenStart; + const int tokenWidth = measureSpan(fontId, text + tokenStart, tokenLen); + + if (lineEnd == lineStart) { + lineStart = tokenStart; + lineEnd = tokenStart + tokenLen; + lineWidth = tokenWidth; + } else if (lineWidth + spaceWidth + tokenWidth <= maxWidth && + tokenStart + tokenLen - lineStart <= UINT16_MAX) { // span len must fit Line::len + lineEnd = tokenStart + tokenLen; + lineWidth += spaceWidth + tokenWidth; + } else { + flushLine(tokenStart); + lineEnd = tokenStart + tokenLen; + lineWidth = tokenWidth; + } + + // An unbreakable token wider than the screen is now alone on the line + // (any previous content was flushed above): split it at the widest + // fitting UTF-8 boundary and carry the remainder forward. + while (lineWidth > maxWidth && lineEnd - lineStart > 1) { + const uint32_t len = lineEnd - lineStart; + uint32_t lastFit = 0; + for (uint32_t f = 1; f <= len; f++) { + if (f == len || (text[lineStart + f] & 0xC0) != 0x80) { // codepoint boundary + if (measureSpan(fontId, text + lineStart, f) > maxWidth) break; + lastFit = f; + } + } + if (lastFit == 0) { + // Even a single over-wide glyph must make progress; consume its whole + // UTF-8 sequence rather than splitting it into invalid fragments. + lastFit = 1; + while (lastFit < len && (text[lineStart + lastFit] & 0xC0) == 0x80) lastFit++; + } + const uint32_t rest = lineStart + lastFit; + lineEnd = rest; + flushLine(rest); + lineEnd = rest + (len - lastFit); + lineWidth = measureSpan(fontId, text + lineStart, lineEnd - lineStart); + } + } + if (lineEnd > lineStart) flushLine(n); + + // Trim trailing blank lines so the last page is not empty padding. + while (!lines.empty() && lines.back().len == 0) lines.pop_back(); + + totalPages = std::max(1, (static_cast(lines.size()) + linesPerPage - 1) / linesPerPage); + currentPage = 0; +} + +void DictionaryDefinitionActivity::loop() { + if (mappedInput.wasReleased(MappedInputManager::Button::Back)) { + finish(); + return; + } + + // Same tap zones as the reader page turns: left third = previous page, + // the rest = next. Back is the usual left-edge swipe. + int tx = 0; + int ty = 0; + if (mappedInput.wasScreenTapped(tx, ty)) { + if (tx < renderer.getScreenWidth() / 3) { + if (currentPage > 0) { + currentPage--; + requestUpdate(); + } + } else if (currentPage + 1 < totalPages) { + currentPage++; + requestUpdate(); + } + return; + } + + buttonNavigator.onNext([this] { + if (currentPage + 1 < totalPages) { + currentPage++; + requestUpdate(); + } + }); + + buttonNavigator.onPrevious([this] { + if (currentPage > 0) { + currentPage--; + requestUpdate(); + } + }); +} + +// Draws the current page's line spans (copied into a stack buffer for NUL +// termination). Called twice per render: once in font-cache scan mode, once +// for the real paint. +void DictionaryDefinitionActivity::drawBody(const int fontId, const int x, const int startY) const { + const int lineHeight = renderer.getLineHeight(fontId); + char buf[MAX_LINE_BYTES + 1]; + const int firstLine = currentPage * linesPerPage; + const int lastLine = std::min(firstLine + linesPerPage, static_cast(lines.size())); + for (int i = firstLine; i < lastLine; i++) { + if (lines[i].len == 0) continue; + const size_t len = std::min(static_cast(lines[i].len), MAX_LINE_BYTES); + memcpy(buf, definition.c_str() + lines[i].start, len); + buf[len] = '\0'; + renderer.drawText(fontId, x, startY + (i - firstLine) * lineHeight, buf); + } +} + +void DictionaryDefinitionActivity::render(RenderLock&&) { + renderer.clearScreen(); + + const auto& metrics = UITheme::getInstance().getMetrics(); + const auto orientation = renderer.getOrientation(); + const bool isLandscapeCw = orientation == GfxRenderer::Orientation::LandscapeClockwise; + const bool isLandscapeCcw = orientation == GfxRenderer::Orientation::LandscapeCounterClockwise; + const bool isInverted = orientation == GfxRenderer::Orientation::PortraitInverted; + const int hintGutterWidth = (isLandscapeCw || isLandscapeCcw) ? metrics.sideButtonHintsWidth : 0; + const int contentX = isLandscapeCw ? hintGutterWidth : 0; + const int contentWidth = renderer.getScreenWidth() - hintGutterWidth; + const int contentY = isInverted ? metrics.buttonHintsHeight : 0; + + // Header: matched headword left, page counter right. + const int headerY = contentY + metrics.topPadding + 10; + renderer.drawText(UI_12_FONT_ID, contentX + SIDE_PADDING, headerY, headword.c_str(), true, EpdFontFamily::BOLD); + if (totalPages > 1) { + char counter[16]; + snprintf(counter, sizeof(counter), "%d/%d", currentPage + 1, totalPages); + const int counterWidth = renderer.getTextWidth(UI_10_FONT_ID, counter); + renderer.drawText(UI_10_FONT_ID, contentX + contentWidth - SIDE_PADDING - counterWidth, headerY, counter); + } + + // Body: two-pass draw inside a prewarm scope (same pattern as the reader's + // renderContents) so SD-card font glyphs load from SD in one batch instead + // of one on-demand overflow read per character on every page turn. + const int fontId = SETTINGS.getReaderFontId(); + const int bodyStartY = contentY + metrics.topPadding + metrics.headerHeight; + auto* fcm = renderer.getFontCacheManager(); + auto scope = fcm->createPrewarmScope(); + drawBody(fontId, contentX + SIDE_PADDING, bodyStartY); // scan pass: records codepoints only + scope.endScanAndPrewarm(); + drawBody(fontId, contentX + SIDE_PADDING, bodyStartY); + + const auto labels = + mappedInput.mapLabels(tr(STR_BACK), "", (currentPage > 0 ? "<" : ""), (currentPage + 1 < totalPages ? ">" : "")); + GUI.drawButtonHints(renderer, labels.btn1, labels.btn2, labels.btn3, labels.btn4); + renderer.displayBuffer(); +} diff --git a/src/activities/reader/DictionaryDefinitionActivity.h b/src/activities/reader/DictionaryDefinitionActivity.h new file mode 100644 index 0000000000..ef2c133017 --- /dev/null +++ b/src/activities/reader/DictionaryDefinitionActivity.h @@ -0,0 +1,46 @@ +#pragma once + +#include +#include +#include + +#include "activities/Activity.h" +#include "util/ButtonNavigator.h" + +// Paged plain-text viewer for one dictionary definition. The definition is +// word-wrapped once on entry; each page renders spans of the original string, +// so no per-line copies are held. +class DictionaryDefinitionActivity final : public Activity { + public: + explicit DictionaryDefinitionActivity(GfxRenderer& renderer, MappedInputManager& mappedInput, std::string headword, + std::string definition) + : Activity("DictionaryDefinition", renderer, mappedInput), + headword(std::move(headword)), + definition(std::move(definition)) {} + + void onEnter() override; + void loop() override; + void render(RenderLock&&) override; + + private: + // One wrapped display line: a byte span of `definition`. Wrapping keeps + // lines under the screen width, so uint16_t length is ample. + struct Line { + uint32_t start; + uint16_t len; + }; + + void wrapText(); + int measureSpan(int fontId, const char* text, size_t len) const; + void drawBody(int fontId, int x, int startY) const; + + const std::string headword; + // Not const: onEnter() normalizes embedded NULs (StarDict multi-type + // separators) to newlines so C-string APIs see the whole text. + std::string definition; + std::vector lines; + int currentPage = 0; + int totalPages = 1; + int linesPerPage = 1; + ButtonNavigator buttonNavigator; +}; diff --git a/src/activities/reader/DictionaryWordSelectActivity.cpp b/src/activities/reader/DictionaryWordSelectActivity.cpp new file mode 100644 index 0000000000..5a4390ce4f --- /dev/null +++ b/src/activities/reader/DictionaryWordSelectActivity.cpp @@ -0,0 +1,337 @@ +#include "DictionaryWordSelectActivity.h" + +#include +#include +#include +#include +#include + +#include +#include +#include + +#include "CrossPointSettings.h" +#include "DictionaryDefinitionActivity.h" +#include "components/UITheme.h" + +namespace { + +constexpr unsigned long POPUP_DURATION_MS = 1500; + +// A token is selectable when it has an ASCII alphanumeric or a non-ASCII +// codepoint outside U+2000-U+206F (dashes, bullets and other General +// Punctuation that appear as standalone tokens are not words). +bool isSelectableToken(const char* text) { + for (const uint8_t* p = reinterpret_cast(text); *p != 0; p++) { + if (*p < 0x80) { + if (std::isalnum(*p)) return true; + } else if (*p == 0xE2 && (p[1] == 0x80 || p[1] == 0x81)) { + if (p[2] == 0) break; // truncated sequence: skipping would step past the NUL + p += 2; // skip the 3-byte General Punctuation codepoint + } else { + return true; + } + } + return false; +} + +void indexBuildYield(void*) { vTaskDelay(1); } + +} // namespace + +void DictionaryWordSelectActivity::onEnter() { + Activity::onEnter(); + fontId = SETTINGS.getReaderFontId(); + lineHeight = renderer.getLineHeight(fontId); + // No null check: a failed allocation just disables the differential + // fast path (drawHighlightWithSnapshot skips the read), keeping the + // full-repaint path as the fallback. + snapshot = makeUniqueNoThrow(SNAPSHOT_CAPACITY); + extractWords(); + // Start on the middle row's word nearest mid-screen instead of top-left: + // any word on the page is then at most half a page of moves away. + if (!words.empty()) { + const int initial = closestInRow(rowCount / 2, renderer.getScreenWidth() / 2); + if (initial >= 0) selected = initial; + } + requestUpdate(); +} + +void DictionaryWordSelectActivity::extractWords() { + words.clear(); + words.reserve(128); + rowCount = 0; + + // Single walk: collect the selectable words while accumulating their text + // and styles (~2KB transient string, freed on return). Widths are measured + // afterwards: merging the page's codepoints into the SD font's persistent + // advance table first keeps getTextAdvanceX on the in-RAM path instead of + // loading glyphs from SD one overflow slot at a time. + std::string pageText; + pageText.reserve(2048); + uint8_t styleMask = 0; + + for (const auto& element : page->elements) { + if (element->getTag() != TAG_PageLine) continue; + const auto* line = static_cast(element.get()); + const auto& block = line->getBlock(); + if (!block || !block->valid()) continue; + + bool rowHasWords = false; + for (uint16_t i = 0; i < block->wordCount(); i++) { + const char* text = block->wordText(i); + if (!isSelectableToken(text)) continue; + + WordBox box; + box.x = static_cast(line->xPos + block->wordXpos(i) + marginLeft); + box.y = static_cast(line->yPos + marginTop); + box.style = block->wordStyle(i); + box.width = 0; // measured below, once the advance table is ready + box.row = rowCount; + box.text = text; + words.push_back(box); + rowHasWords = true; + + pageText.append(text); + pageText.push_back(' '); + styleMask |= static_cast(1u << (static_cast(box.style) & 0x03)); + } + if (rowHasWords) rowCount++; + } + + if (styleMask == 0) styleMask = 0x01; // REGULAR + renderer.ensureSdCardFontReady(fontId, pageText.c_str(), styleMask); + for (auto& word : words) { + word.width = static_cast(renderer.getTextAdvanceX(fontId, word.text, word.style)); + } +} + +// Index of the word whose box (with finger-sized slop) contains the touch +// point; -1 when the touch lands on no word. Boxes never overlap after the +// slop grows them, at worst they touch, so first hit wins. +int DictionaryWordSelectActivity::wordAt(const int x, const int y) const { + constexpr int SLOP = 4; // matches the highlight box (+2) plus finger error + for (int i = 0; i < static_cast(words.size()); i++) { + const WordBox& word = words[i]; + if (x >= word.x - SLOP && x < word.x + word.width + SLOP && y >= word.y - SLOP && y < word.y + lineHeight + SLOP) { + return i; + } + } + return -1; +} + +// Index of the word in `row` whose horizontal center is closest to centerX; +// -1 when the row has no words. +int DictionaryWordSelectActivity::closestInRow(const uint16_t row, const int centerX) const { + int best = -1; + int bestDistance = INT_MAX; + for (int i = 0; i < static_cast(words.size()); i++) { + if (words[i].row != row) continue; + const int distance = std::abs(words[i].x + words[i].width / 2 - centerX); + if (distance < bestDistance) { + bestDistance = distance; + best = i; + } + } + return best; +} + +void DictionaryWordSelectActivity::moveVertical(const int direction) { + const WordBox& current = words[selected]; + const int targetRow = static_cast(current.row) + direction; + if (targetRow < 0 || targetRow >= static_cast(rowCount)) return; + + const int best = closestInRow(static_cast(targetRow), current.x + current.width / 2); + if (best >= 0 && best != selected) { + selected = best; + requestUpdate(); + } +} + +void DictionaryWordSelectActivity::performLookup() { + popup = Popup::Busy; + if (!dictOpenAttempted) { + dictOpenAttempted = true; + dictOpenOk = dict.open(SETTINGS.dictionaryName); + } + const bool indexing = dictOpenOk && dict.needsIndex(); + popupMsg = indexing ? StrId::STR_DICT_INDEXING : StrId::STR_DICT_LOOKING_UP; + requestUpdateAndWait(); // paint the page + busy popup before blocking on SD + + bool ok = dictOpenOk; + if (ok && indexing) ok = dict.buildIndex(&indexBuildYield); + + std::string definition; + std::string headword; + const bool found = ok && dict.lookup(words[selected].text, definition, headword); + + if (found) { + popup = Popup::None; + startActivityForResult(std::make_unique(renderer, mappedInput, std::move(headword), + std::move(definition)), + [this](const ActivityResult&) { requestUpdate(); }); + return; + } + popup = ok ? Popup::NotFound : Popup::Error; + popupMsg = ok ? StrId::STR_DICT_NOT_FOUND : StrId::STR_DICT_ERROR; + popupTime = millis(); + requestUpdate(); +} + +void DictionaryWordSelectActivity::loop() { + if (popup == Popup::NotFound || popup == Popup::Error) { + if (millis() - popupTime >= POPUP_DURATION_MS) { + popup = Popup::None; + requestUpdate(); + } + return; + } + + if (mappedInput.wasPressed(MappedInputManager::Button::Confirm)) confirmPressSeen = true; + + if (mappedInput.wasReleased(MappedInputManager::Button::Back)) { + finish(); + return; + } + if (mappedInput.wasReleased(MappedInputManager::Button::Confirm) && confirmPressSeen && !words.empty()) { + performLookup(); + return; + } + + if (words.empty()) return; + + // Touch: a touch-down moves the highlight to the touched word (differential + // repaint), a tap on a word selects and looks it up in one go. + int tx = 0; + int ty = 0; + if (mappedInput.wasScreenTouchDown(tx, ty)) { + const int hit = wordAt(tx, ty); + if (hit >= 0 && hit != selected) { + selected = hit; + requestUpdate(); + } + return; + } + if (mappedInput.wasScreenTapped(tx, ty)) { + const int hit = wordAt(tx, ty); + if (hit >= 0) { + selected = hit; + performLookup(); + } + return; + } + + if (mappedInput.wasPressed(MappedInputManager::Button::Left) && selected > 0) { + selected--; + requestUpdate(); + } else if (mappedInput.wasPressed(MappedInputManager::Button::Right) && + selected + 1 < static_cast(words.size())) { + selected++; + requestUpdate(); + } else if (mappedInput.wasPressed(MappedInputManager::Button::Up)) { + moveVertical(-1); + } else if (mappedInput.wasPressed(MappedInputManager::Button::Down)) { + moveVertical(1); + } +} + +// Saves the pixels under words[selected]'s highlight box, then draws the +// highlight over them. Returns false when the pixels could not be saved +// (no buffer / oversize box) — the highlight is drawn regardless, but the +// next cursor move must do a full repaint. +bool DictionaryWordSelectActivity::drawHighlightWithSnapshot() { + const WordBox& word = words[selected]; + int hx = word.x - 2; + int hy = word.y - 2; + int hw = word.width + 4; + int hh = lineHeight + 4; + // Clamp to the panel so save, draw and restore all use the same box. + if (hx < 0) { + hw += hx; + hx = 0; + } + if (hy < 0) { + hh += hy; + hy = 0; + } + + bool saved = false; + if (snapshot && hw > 0 && hh > 0) { + saved = renderer.readFramebufferRegion(hx, hy, hw, hh, snapshot.get(), SNAPSHOT_CAPACITY) > 0; + } + snapshotX = static_cast(hx); + snapshotY = static_cast(hy); + snapshotW = static_cast(hw); + snapshotH = static_cast(hh); + snapshotIdx = saved ? selected : -1; + + renderer.fillRect(hx, hy, hw, hh, true); + renderer.drawText(fontId, word.x, word.y, word.text, false, word.style); + return saved; +} + +// Front-button bar (Back/Confirm/Left/Right). Drawn last on every repaint +// path, including the differential highlight-only path, so it always ends +// up as the top layer even when a highlighted word's box falls under a +// hint's screen area. No side-button hints: Up/Down row jump has no spare +// screen area on this page (it reuses the reader's full-bleed layout), and +// a hint box there would hide text instead of sitting in a reserved gutter. +void DictionaryWordSelectActivity::drawHints() const { + // No selectable word on this page: Confirm/Left/Right are all no-ops + // (guarded by words.empty() in loop()/performLookup), so only Back does + // anything and only Back is hinted. + if (words.empty()) { + const auto labels = mappedInput.mapLabels(tr(STR_BACK), "", "", ""); + GUI.drawButtonHints(renderer, labels.btn1, labels.btn2, labels.btn3, labels.btn4); + return; + } + const auto labels = mappedInput.mapLabels(tr(STR_BACK), tr(STR_LOOKUP), tr(STR_DIR_LEFT), tr(STR_DIR_RIGHT)); + GUI.drawButtonHints(renderer, labels.btn1, labels.btn2, labels.btn3, labels.btn4); +} + +void DictionaryWordSelectActivity::render(RenderLock&&) { + // Differential fast path: only the highlight moved and the framebuffer + // still holds a clean page (no popup or sub-activity since the last full + // repaint). Restore the pixels under the old highlight, draw the new one, + // and push — skipping the two-pass page render entirely. + if (popup == Popup::None && snapshotIdx >= 0 && !words.empty() && selected != snapshotIdx) { + renderer.writeFramebufferRegion(snapshotX, snapshotY, snapshotW, snapshotH, snapshot.get()); + // The full path's PrewarmScope cleared the glyph cache on exit; batch-load + // just the highlighted word's glyphs before drawing them white-on-black. + renderer.getFontCacheManager()->prewarmCache( + fontId, words[selected].text, static_cast(1u << (static_cast(words[selected].style) & 0x03))); + if (drawHighlightWithSnapshot()) { + drawHints(); + renderer.displayBuffer(HalDisplay::FAST_REFRESH); + return; + } + // Snapshot failed (oversize box) — fall through to a full repaint. + } + + renderer.clearScreen(); + + // Same prewarm-scan-then-render pass the reader uses, so SD-card fonts hit + // the in-RAM glyph cache during the real draw. + auto* fcm = renderer.getFontCacheManager(); + auto scope = fcm->createPrewarmScope(); + page->render(renderer, fontId, marginLeft, marginTop); + scope.endScanAndPrewarm(); + page->render(renderer, fontId, marginLeft, marginTop); + + if (!words.empty()) { + drawHighlightWithSnapshot(); + } + + drawHints(); + + if (popup != Popup::None) { + // The popup overdraws the page, so the snapshot no longer matches the + // framebuffer — force the next render onto the full-repaint path. + snapshotIdx = -1; + // drawPopup overlays the framebuffer and refreshes the display itself. + // I18N.get directly: tr() only accepts literal key names. + GUI.drawPopup(renderer, I18N.get(popupMsg)); + return; + } + renderer.displayBuffer(HalDisplay::FAST_REFRESH); +} diff --git a/src/activities/reader/DictionaryWordSelectActivity.h b/src/activities/reader/DictionaryWordSelectActivity.h new file mode 100644 index 0000000000..2ca842c9ad --- /dev/null +++ b/src/activities/reader/DictionaryWordSelectActivity.h @@ -0,0 +1,86 @@ +#pragma once + +#include +#include + +#include +#include + +#include "activities/Activity.h" +#include "util/Dictionary.h" + +// Word selection over the current reader page: Left/Right step through words +// in reading order, Up/Down jump rows, Confirm looks the word up and opens +// DictionaryDefinitionActivity, Back returns to the reader. On touch devices a +// touch-down moves the highlight and a tap on a word looks it up directly. +class DictionaryWordSelectActivity final : public Activity { + public: + explicit DictionaryWordSelectActivity(GfxRenderer& renderer, MappedInputManager& mappedInput, + std::unique_ptr page, int marginLeft, int marginTop) + : Activity("DictionaryWordSelect", renderer, mappedInput), + page(std::move(page)), + marginLeft(marginLeft), + marginTop(marginTop) {} + + void onEnter() override; + void loop() override; + void render(RenderLock&&) override; + + private: + // Screen box of one selectable word. `text` points into the owned Page's + // TextBlock arena (NUL-terminated), valid for this activity's lifetime. + struct WordBox { + int16_t x; + int16_t y; + int16_t width; + uint16_t row; + const char* text; + EpdFontFamily::Style style; + }; + + enum class Popup : uint8_t { None, Busy, NotFound, Error }; + + void extractWords(); + int closestInRow(uint16_t row, int centerX) const; + int wordAt(int x, int y) const; + void moveVertical(int direction); + void performLookup(); + bool drawHighlightWithSnapshot(); + void drawHints() const; + + std::unique_ptr page; + const int marginLeft; + const int marginTop; + int fontId = 0; + int lineHeight = 0; + + std::vector words; + int selected = 0; + uint16_t rowCount = 0; + + Dictionary dict; + bool dictOpenAttempted = false; + bool dictOpenOk = false; + + Popup popup = Popup::None; + StrId popupMsg = StrId::STR_DICT_NOT_FOUND; + unsigned long popupTime = 0; + + // Differential highlight repaint: the pixels under the current highlight + // box, so a cursor move restores them and repaints only the two affected + // boxes instead of re-running the full two-pass page render (which also + // reloads every SD-font glyph on the page). snapshotIdx is the word whose + // under-pixels are saved; -1 means the framebuffer no longer holds a clean + // page (popup drawn, sub-activity shown) and the next render must be full. + static constexpr size_t SNAPSHOT_CAPACITY = 4096; + std::unique_ptr snapshot; + int16_t snapshotX = 0; + int16_t snapshotY = 0; + int16_t snapshotW = 0; + int16_t snapshotH = 0; + int snapshotIdx = -1; + + // The activity is entered while Confirm is still held (long-press trigger): + // ignore the stale release until a fresh press is seen. + bool confirmPressSeen = false; +}; diff --git a/src/activities/reader/EndOfBookOptions.cpp b/src/activities/reader/EndOfBookOptions.cpp new file mode 100644 index 0000000000..1e6e14db6e --- /dev/null +++ b/src/activities/reader/EndOfBookOptions.cpp @@ -0,0 +1,119 @@ +#include "EndOfBookOptions.h" + +#include +#include +#include + +#include "CrossPointSettings.h" +#include "ReaderUtils.h" +// ReaderUtils.h pulls in ActivityManager.h, which only forward-declares Activity while holding +// std::unique_ptr members. Destroying that unique_ptr needs the complete type, so the +// definition must be visible here. +#include "activities/Activity.h" +#include "components/UITheme.h" +#include "fontIds.h" +#include "util/ButtonNavigator.h" +#include "util/NextBookFinder.h" + +namespace { +// Display name without the file extension, mirroring the file browser rows +std::string displayName(const std::string& filename) { + const auto pos = filename.rfind('.'); + return filename.substr(0, pos); +} +} // namespace + +void EndOfBookOptions::loadOnce(const std::string& currentBookPath) { + if (isLoaded.load(std::memory_order_acquire)) { + return; + } + folder = FsHelpers::extractFolderPath(currentBookPath); + names = NextBookFinder::findNextBooks(currentBookPath, MAX_SUGGESTIONS); + selector = 0; + // Release-publish so the main task, which gates all access on isLoaded, never + // observes a partially built list + isLoaded.store(true, std::memory_order_release); +} + +bool EndOfBookOptions::menuActive() const { return isLoaded.load(std::memory_order_acquire) && !names.empty(); } + +std::string EndOfBookOptions::fullPath(const size_t index) const { + if (index >= names.size()) { + return {}; + } + return folder == "/" ? "/" + names[index] : folder + "/" + names[index]; +} + +EndOfBookOptions::Action EndOfBookOptions::handleMenuInput(const MappedInputManager& input, std::string* openPath) { + if (input.wasReleased(MappedInputManager::Button::Confirm)) { + if (selector < static_cast(names.size())) { + if (openPath) { + *openPath = fullPath(selector); + } + return Action::OpenBook; + } + return Action::GoHome; // "Home" entry selected + } + + // Short-press Back returns to the last page; a long press falls through to the + // reader's own handler (file browser). Home is reached through the list's Home entry. + if (input.wasReleased(MappedInputManager::Button::Back) && input.getHeldTime() < ReaderUtils::GO_HOME_MS) { + return Action::LastPage; + } + + // Selection movement on the standard list navigation buttons (side Up/Down plus front + // Left/Right, orientation swap included). It follows the reader's page-turn semantics + // (press-triggered by default, release-triggered when a long-press behavior is + // configured, same rule as ReaderUtils::detectPageTurn). This matters on entry: with + // press-triggered turns, the press that turned the final page already fired in the + // reader, and its release must not double-fire into this menu. + const bool usePress = SETTINGS.longPressButtonBehavior == CrossPointSettings::OFF; + const auto triggered = [&](const MappedInputManager::Button button) { + return usePress ? input.wasPressed(button) : input.wasReleased(button); + }; + const int itemCount = static_cast(names.size()) + 1; // + "Home" entry + if (triggered(MappedInputManager::Button::NavPrevious)) { + selector = ButtonNavigator::previousIndex(selector, itemCount); // wraps to the bottom + return Action::Redraw; + } + if (triggered(MappedInputManager::Button::NavNext)) { + selector = ButtonNavigator::nextIndex(selector, itemCount); // wraps to the top + return Action::Redraw; + } + return Action::None; +} + +void EndOfBookOptions::render(GfxRenderer& renderer, const MappedInputManager& input) const { + const auto& metrics = UITheme::getInstance().getMetrics(); + + if (!menuActive()) { + // No suggestions: the historical plain end screen. 3/8 of the screen height matches + // the previous fixed position on the 480x800 panel and scales to other resolutions. + renderer.drawCenteredText(UI_12_FONT_ID, renderer.getScreenHeight() * 3 / 8, tr(STR_END_OF_BOOK), true, + EpdFontFamily::BOLD); + return; + } + + // Suggestion menu: title, list (+ Home entry) and button hints. The hints are drawn at + // the physical front buttons, which is a logical side/top edge in the rotated + // orientations — lay out inside the safe area so nothing hides behind them. Vertical + // positions derive from the safe-area height and font line heights so other panel + // resolutions scale (review request on #2532). + const Rect safe = UITheme::getInstance().getScreenSafeArea(renderer, true, false); + const int titleY = safe.y + safe.height / 8; + const int subtitleY = titleY + renderer.getLineHeight(UI_12_FONT_ID) + metrics.verticalSpacing; + const int listTop = subtitleY + renderer.getLineHeight(UI_10_FONT_ID) + metrics.verticalSpacing * 2; + + UITheme::drawCenteredText(renderer, safe, UI_12_FONT_ID, titleY, tr(STR_END_OF_BOOK), true, EpdFontFamily::BOLD); + UITheme::drawCenteredText(renderer, safe, UI_10_FONT_ID, subtitleY, tr(STR_EOB_CONTINUE_WITH)); + + const int listHeight = safe.y + safe.height - listTop - metrics.verticalSpacing; + GUI.drawList(renderer, Rect{safe.x, listTop, safe.width, listHeight}, static_cast(names.size()) + 1, selector, + [this](const int index) { + return index < static_cast(names.size()) ? displayName(names[index]) + : std::string(tr(STR_EOB_HOME)); + }); + + const auto labels = input.mapLabels(tr(STR_BACK), tr(STR_OPEN), tr(STR_DIR_UP), tr(STR_DIR_DOWN)); + GUI.drawButtonHints(renderer, labels.btn1, labels.btn2, labels.btn3, labels.btn4); +} diff --git a/src/activities/reader/EndOfBookOptions.h b/src/activities/reader/EndOfBookOptions.h new file mode 100644 index 0000000000..ed0ff940ea --- /dev/null +++ b/src/activities/reader/EndOfBookOptions.h @@ -0,0 +1,48 @@ +#pragma once + +#include +#include +#include + +class GfxRenderer; +class MappedInputManager; + +// Shared End-of-Book next-book menu for the EPUB and XTC readers. Collects up to +// MAX_SUGGESTIONS sibling books once per reader session, handles the menu input, and +// draws the end screen. With no suggestions the end screen keeps its historical +// plain-title look and behavior. +class EndOfBookOptions { + public: + enum class Action { None, Redraw, OpenBook, GoHome, LastPage }; + + static constexpr size_t MAX_SUGGESTIONS = 3; + + // Scans the book's folder for suggestions; no-op when already loaded. Call ONLY from + // the reader's render() (the render task, serialized by RenderLock) — the loaded flag + // is the release/acquire publication point that lets the main task read the finished + // list safely. + void loadOnce(const std::string& currentBookPath); + + // True when the suggestion menu is showing and should own the reader's input. + bool menuActive() const; + + // Menu input handling, following the standard list idiom: side Up/Down and front + // Left/Right move the selection (wrapping), Confirm opens it (or Home), and a short + // Back press returns to the last page of the book. Fills openPath when the result is + // OpenBook. Returns Action::None when nothing relevant was pressed; callers continue + // their normal input path (keeping long-press Back to the file browser working). + Action handleMenuInput(const MappedInputManager& input, std::string* openPath); + + // Draws the full end screen (plain title, or the suggestion menu) onto a cleared buffer. + void render(GfxRenderer& renderer, const MappedInputManager& input) const; + + private: + std::string folder; + // Written by the render task in loadOnce(), immutable afterwards; the main task only + // reads it after isLoaded is observed true (acquire), so no further locking is needed. + std::vector names; + int selector = 0; + std::atomic isLoaded{false}; + + std::string fullPath(size_t index) const; +}; diff --git a/src/activities/reader/EpubReaderActivity.cpp b/src/activities/reader/EpubReaderActivity.cpp index 5948fd9ae5..721cdfef66 100644 --- a/src/activities/reader/EpubReaderActivity.cpp +++ b/src/activities/reader/EpubReaderActivity.cpp @@ -7,7 +7,6 @@ #include #include #include -#include #include #include #include @@ -17,9 +16,11 @@ #include #include +#include "../../util/BookmarkFile.h" #include "BookmarkEntry.h" #include "CrossPointSettings.h" #include "CrossPointState.h" +#include "DictionaryWordSelectActivity.h" #include "EpubReaderBookmarksActivity.h" #include "EpubReaderChapterSelectionActivity.h" #include "EpubReaderFootnotesActivity.h" @@ -155,6 +156,8 @@ void EpubReaderActivity::onEnter() { return; } + ImageBlock::clearSessionRenderFailures(); + // Configure screen orientation based on settings // NOTE: This affects layout math and must be applied before any render calls. ReaderUtils::applyOrientation(renderer, SETTINGS.orientation); @@ -231,6 +234,53 @@ void EpubReaderActivity::onExit() { } } +void EpubReaderActivity::openReaderMenu() { + const int currentPage = section ? section->currentPage + 1 : 0; + const int totalPages = section ? section->estimatedTotalPages() : 0; + float bookProgress = 0.0f; + if (epub->getBookSize() > 0 && section && section->estimatedTotalPages() > 0) { + const float chapterProgress = + static_cast(section->currentPage) / static_cast(section->estimatedTotalPages()); + bookProgress = epub->calculateProgress(currentSpineIndex, chapterProgress) * 100.0f; + } + const int bookProgressPercent = clampPercent(static_cast(bookProgress + 0.5f)); + startActivityForResult(std::make_unique( + renderer, mappedInput, epub->getTitle(), currentPage, totalPages, bookProgressPercent, + SETTINGS.orientation, !currentPageFootnotes.empty(), !cachedBookmarks.empty()), + [this](const ActivityResult& result) { + // Always apply orientation change even if the menu was cancelled + const auto& menu = std::get(result.data); + applyOrientation(menu.orientation); + toggleAutoPageTurn(menu.pageTurnOption); + if (!result.isCancelled) { + onReaderMenuConfirm(static_cast(menu.action)); + } + }); +} + +void EpubReaderActivity::openDictionaryWordSelect() { + if (SETTINGS.dictionaryName[0] == '\0') { + showDictionaryMessage = true; + dictionaryMessageTime = millis(); + requestUpdate(); + return; + } + if (!section) return; + auto page = section->loadPage(section->currentPage); + if (!page) return; + + // Word geometry must match render(): viewable-area margins plus screen margin. + int orientedMarginTop, orientedMarginRight, orientedMarginBottom, orientedMarginLeft; + renderer.getOrientedViewableTRBL(&orientedMarginTop, &orientedMarginRight, &orientedMarginBottom, + &orientedMarginLeft); + orientedMarginTop += SETTINGS.screenMargin; + orientedMarginLeft += SETTINGS.screenMargin; + + startActivityForResult(std::make_unique(renderer, mappedInput, std::move(page), + orientedMarginLeft, orientedMarginTop), + [this](const ActivityResult&) { requestUpdate(); }); +} + void EpubReaderActivity::loop() { if (!epub) { // Should never happen @@ -238,6 +288,60 @@ void EpubReaderActivity::loop() { return; } + // Lazily resume a partial's extension build once the reader nears its watermark. Far from + // it the rebuild is all cost (whole-chapter re-layout from page 0) and no benefit this + // session, so reopening a partial deliberately does NOT start it (see the deferral in + // render()); crossing this margin is the signal that the reader will actually need pages + // past the watermark soon. Uses the last render's viewport so pagination matches the + // partial being extended. + if (section && !section->isBuilding() && section->isPartial() && !RenderLock::peek() && buildViewportWidth > 0 && + !partialRebuildStartFailed && + section->currentPage + PARTIAL_REBUILD_START_MARGIN >= static_cast(section->pageCount)) { + RenderLock lock; + // Reuse the last render's viewport so the extension paginates identically to the partial. + const ReaderRenderSpec buildSpec = SETTINGS.readerRenderSpec(buildViewportWidth, buildViewportHeight); + if (!section->startBuild(buildSpec)) { + // Not fatal: the partial keeps serving its pages; crossing the watermark falls back to + // the blocking extension in render(). Don't retry every tick. + partialRebuildStartFailed = true; + LOG_ERR("ERS", "Failed to start deferred partial extension build"); + } else { + LOG_DBG("ERS", "Reader near partial watermark (%d/%d), resuming extension build", section->currentPage, + section->pageCount); + } + } + + // Drive any in-progress incremental section build forward, off the page-turn critical path, + // but only within a small window ahead of the reader: an unbounded build monopolized the + // RenderLock and locked out page turns. The build follows the reader instead, and instant + // reopen comes from suspendBuild() persisting the laid-out pages as a partial on exit. + // Skip while the render mutex is busy so we never delay a pending render; re-check + // isBuilding() under the lock since render() may have just finished it. + // While extending a partial (rebuild from a previous session), pageCount is pinned at the + // partial's watermark until the build catches up, so the window check would wrongly read + // "far enough ahead" and stall the build at 0 pages -- then the first turn past the + // watermark re-parses the whole chapter synchronously. Keep ticking until it finalizes. + if (section && section->isBuilding() && !RenderLock::peek() && + (section->isPartial() || static_cast(section->pageCount) < section->currentPage + BUILD_WINDOW_AHEAD)) { + RenderLock lock; + // Re-check under the lock: render() (which also holds the RenderLock) may have finalized the + // build between the outer isBuilding() check and acquiring the lock here, in which case + // buildSomeMore() would fail and wrongly reset the section. cppcheck can't see the cross-task + // mutation, so it flags this as always true. + // cppcheck-suppress knownConditionTrueFalse + if (section->isBuilding()) { + if (!section->buildSomeMore(BACKGROUND_BUILD_PAGES_PER_TICK)) { + LOG_ERR("ERS", "Background section build failed"); + section.reset(); + requestUpdate(); + } else if (section->isBuildComplete() && applyDeferredReposition()) { + // The chapter re-paginated since the saved progress (settings changed): we now know the + // real page count, so re-render at the remapped page. No-op for an unchanged resume. + requestUpdate(); + } + } + } + // End-of-Book screen reached (currentSpineIndex == spine count) means the book is // finished. Two independent finished-book features key off this same condition. const bool atEndOfBook = currentSpineIndex > 0 && currentSpineIndex >= epub->getSpineItemsCount(); @@ -267,9 +371,11 @@ void EpubReaderActivity::loop() { pendingReadFolderMove = false; } + const auto touch = ReaderUtils::detectTouchPageTurn(renderer, mappedInput); + if (automaticPageTurnActive) { if (mappedInput.wasReleased(MappedInputManager::Button::Confirm) || - mappedInput.wasReleased(MappedInputManager::Button::Back)) { + mappedInput.wasReleased(MappedInputManager::Button::Back) || ReaderUtils::isTouchMenuGesture(mappedInput)) { automaticPageTurnActive = false; // updates chapter title space to indicate page turn disabled requestUpdate(); @@ -298,33 +404,48 @@ void EpubReaderActivity::loop() { requestUpdate(); } - // Enter reader menu activity on short-press Confirm. A long-press that fired a bound - // function (bookmark or KOReader sync) sets ignoreNextConfirmRelease so the release + if (showDictionaryMessage && (millis() - dictionaryMessageTime) >= ReaderUtils::BOOKMARK_MESSAGE_DURATION_MS) { + showDictionaryMessage = false; + requestUpdate(); + } + + // While the end screen suggestion menu is showing it owns Confirm/Back/navigation + // input. Anything it doesn't handle (e.g. long-press Back to the file browser) falls + // through to the regular handlers below; page turns are absorbed by the end-of-book + // block. A Confirm release after a long-press function (bookmark/sync) fired is left + // to the regular Confirm handler below, which consumes it via ignoreNextConfirmRelease. + if (atEndOfBook && endOfBookOptions.menuActive() && + !(ignoreNextConfirmRelease && mappedInput.wasReleased(MappedInputManager::Button::Confirm))) { + std::string openPath; + switch (endOfBookOptions.handleMenuInput(mappedInput, &openPath)) { + case EndOfBookOptions::Action::OpenBook: + activityManager.goToReader(openPath); + return; + case EndOfBookOptions::Action::GoHome: + onGoHome(); + return; + case EndOfBookOptions::Action::LastPage: + currentSpineIndex = std::max(epub->getSpineItemsCount() - 1, 0); + nextPageNumber = 0; + pendingPageJump = std::numeric_limits::max(); + requestUpdate(); + return; + case EndOfBookOptions::Action::Redraw: + requestUpdate(); + return; + case EndOfBookOptions::Action::None: + break; + } + } + + // Enter reader menu activity on short-press Confirm or a downward swipe from the top edge. A long-press + // that fired a bound function (bookmark or KOReader sync) sets ignoreNextConfirmRelease so the release // following the hold does not also open the menu. - if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { + if (mappedInput.wasReleased(MappedInputManager::Button::Confirm) || ReaderUtils::isTouchMenuGesture(mappedInput)) { if (ignoreNextConfirmRelease) { ignoreNextConfirmRelease = false; } else { - const int currentPage = section ? section->currentPage + 1 : 0; - const int totalPages = section ? section->pageCount : 0; - float bookProgress = 0.0f; - if (epub->getBookSize() > 0 && section && section->pageCount > 0) { - const float chapterProgress = static_cast(section->currentPage) / static_cast(section->pageCount); - bookProgress = epub->calculateProgress(currentSpineIndex, chapterProgress) * 100.0f; - } - const int bookProgressPercent = clampPercent(static_cast(bookProgress + 0.5f)); - startActivityForResult(std::make_unique( - renderer, mappedInput, epub->getTitle(), currentPage, totalPages, bookProgressPercent, - SETTINGS.orientation, !currentPageFootnotes.empty(), !cachedBookmarks.empty()), - [this](const ActivityResult& result) { - // Always apply orientation change even if the menu was cancelled - const auto& menu = std::get(result.data); - applyOrientation(menu.orientation); - toggleAutoPageTurn(menu.pageTurnOption); - if (!result.isCancelled) { - onReaderMenuConfirm(static_cast(menu.action)); - } - }); + openReaderMenu(); } } @@ -351,26 +472,29 @@ void EpubReaderActivity::loop() { } } break; + case CrossPointSettings::LP_MENU_DICTIONARY: + // Hold ~0.4s starts dictionary word selection on the current page. + if (mappedInput.getHeldTime() >= ReaderUtils::BOOKMARK_HOLD_MS && !showDictionaryMessage) { + ignoreNextConfirmRelease = true; // Prevent menu open on the release that follows + openDictionaryWordSelect(); + return; + } + break; case CrossPointSettings::LP_MENU_DISABLED: default: break; } } - // Long press BACK (1s+) goes to file selection - if (mappedInput.isPressed(MappedInputManager::Button::Back) && mappedInput.getHeldTime() >= ReaderUtils::GO_HOME_MS) { - activityManager.goToFileBrowser(epub ? epub->getPath() : ""); + // Short press Back restores position when viewing a footnote (takes priority over navigation) + if (footnoteDepth > 0 && mappedInput.wasReleased(MappedInputManager::Button::Back) && + mappedInput.getHeldTime() < ReaderUtils::GO_BACK_OR_HOME_MS) { + restoreSavedPosition(); return; } - // Short press BACK goes directly to home (or restores position if viewing footnote) - if (mappedInput.wasReleased(MappedInputManager::Button::Back) && - mappedInput.getHeldTime() < ReaderUtils::GO_HOME_MS) { - if (footnoteDepth > 0) { - restoreSavedPosition(); - return; - } - onGoHome(); + if (ReaderUtils::handleBackNavigation(mappedInput, activityManager, epub ? epub->getPath().c_str() : "", + {this, [](void* ctx) { static_cast(ctx)->onGoHome(); }})) { return; } @@ -400,13 +524,21 @@ void EpubReaderActivity::loop() { return; } - const auto [prevTriggered, nextTriggered, fromTilt] = ReaderUtils::detectPageTurn(mappedInput); + auto [prevTriggered, nextTriggered, fromTilt] = ReaderUtils::detectPageTurn(mappedInput); + prevTriggered = prevTriggered || touch.prev; + nextTriggered = nextTriggered || touch.next; if (!prevTriggered && !nextTriggered) { return; } - // At end of the book, forward button goes home and back button returns to last page + // At end of the book with no suggestion menu, forward button goes home and back + // button returns to last page if (currentSpineIndex > 0 && currentSpineIndex >= epub->getSpineItemsCount()) { + if (endOfBookOptions.menuActive()) { + // Selection movement was handled above; absorb leftover page-turn triggers so + // e.g. "previous" at the top of the list doesn't jump back into the book + return; + } if (nextTriggered) { onGoHome(); } else { @@ -418,7 +550,8 @@ void EpubReaderActivity::loop() { return; } - const bool longPress = !fromTilt && mappedInput.getHeldTime() > ReaderUtils::SKIP_HOLD_MS; + const unsigned long heldMs = (touch.prev || touch.next) ? touch.heldMs : mappedInput.getHeldTime(); + const bool longPress = !fromTilt && heldMs > ReaderUtils::SKIP_HOLD_MS; // Don't skip chapter after screenshot if (gpio.wasReleased(HalGPIO::BTN_POWER) && gpio.wasReleased(HalGPIO::BTN_DOWN)) { @@ -537,11 +670,32 @@ void EpubReaderActivity::onReaderMenuConfirm(EpubReaderMenuActivity::MenuAction loadCachedBookmarks(); if (!result.isCancelled) { const auto& sync = std::get(result.data); - if (currentSpineIndex != sync.spineIndex || (section && section->currentPage != sync.page)) { + int targetSpineIndex = sync.spineIndex; + int targetPage = sync.page; + const int activeTotalPages = section ? section->estimatedTotalPages() : 0; + const bool cachedPageMatchesActiveSection = section && sync.totalPages > 0 && + currentSpineIndex == sync.spineIndex && sync.page >= 0 && + sync.page < sync.totalPages && activeTotalPages == sync.totalPages; + + if (!cachedPageMatchesActiveSection && sync.hasSavedProgress) { + const int totalPages = section ? section->estimatedTotalPages() : cachedChapterTotalPageCount; + CrossPointPosition fallback = + ProgressMapper::toCrossPoint(epub, {sync.xpath, sync.percentage}, renderer, currentSpineIndex, totalPages); + targetSpineIndex = fallback.spineIndex; + targetPage = fallback.pageNumber; + } + + if (currentSpineIndex != targetSpineIndex) { RenderLock lock(*this); - currentSpineIndex = sync.spineIndex; - nextPageNumber = sync.page; + currentSpineIndex = targetSpineIndex; + nextPageNumber = targetPage; section.reset(); + } else if (section && section->currentPage != targetPage) { + RenderLock lock(*this); + const int clampedTargetPage = std::max(0, targetPage); + section->currentPage = clampedTargetPage; + } else if (!section) { + nextPageNumber = targetPage; } } }; @@ -597,6 +751,10 @@ void EpubReaderActivity::onReaderMenuConfirm(EpubReaderMenuActivity::MenuAction }); break; } + case EpubReaderMenuActivity::MenuAction::DICTIONARY: { + openDictionaryWordSelect(); + break; + } case EpubReaderMenuActivity::MenuAction::DISPLAY_QR: { if (section && section->currentPage >= 0 && section->currentPage < section->pageCount) { std::string fullText = section->getTextFromSectionFile(); @@ -661,7 +819,7 @@ bool EpubReaderActivity::launchKOReaderSync() { if (!KOREADER_STORE.hasCredentials()) return false; // no-op: nothing to launch const int currentPage = section ? section->currentPage : nextPageNumber; - const int totalPages = section ? section->pageCount : cachedChapterTotalPageCount; + const int totalPages = section ? section->estimatedTotalPages() : cachedChapterTotalPageCount; std::optional paragraphIndex; if (section && currentPage >= 0 && currentPage < section->pageCount) { const uint16_t paragraphPage = @@ -759,7 +917,12 @@ void EpubReaderActivity::toggleAutoPageTurn(const uint8_t selectedPageTurnOption void EpubReaderActivity::pageTurn(bool isForwardTurn) { if (isForwardTurn) { - if (section->currentPage < section->pageCount - 1) { + // Advance within the section while there are (or may still be) more pages: either a built + // page ahead, or the section is still building (windowed), in which case more pages exist + // beyond the current watermark and render()'s ensure-built pump will lay them out. Only when + // the section is fully built AND we're on its last page do we move to the next spine -- using + // the live pageCount alone would mistake the build watermark for the end of a giant spine. + if (section->currentPage < section->pageCount - 1 || section->isBuilding()) { section->currentPage++; } else { // We don't want to delete the section mid-render, so grab the semaphore @@ -800,6 +963,15 @@ void EpubReaderActivity::render(RenderLock&& lock) { GUI.drawPopup(renderer, tr(STR_SAVE_PROGRESS_FAILED)); }; + // A section build failure (e.g. an invalid/corrupt EPUB that fails XML parsing) leaves the + // "Indexing" popup on screen with no way forward. Surface an explicit error instead of hanging. + // clearScreen first so the error popup doesn't overlay the stale "Indexing" popup. + const auto showBuildError = [this]() { + renderer.clearScreen(); + GUI.drawPopup(renderer, tr(STR_INDEX_FAILED)); + automaticPageTurnActive = false; + }; + // edge case handling for sub-zero spine index if (currentSpineIndex < 0) { currentSpineIndex = 0; @@ -811,8 +983,11 @@ void EpubReaderActivity::render(RenderLock&& lock) { // Show end of book screen if (currentSpineIndex == epub->getSpineItemsCount()) { + // Sole load site: runs on the render task (serialized by RenderLock); the main + // task only reads the suggestions once the loaded flag is published + endOfBookOptions.loadOnce(epub->getPath()); renderer.clearScreen(); - renderer.drawCenteredText(UI_12_FONT_ID, 300, tr(STR_END_OF_BOOK), true, EpdFontFamily::BOLD); + endOfBookOptions.render(renderer, mappedInput); renderer.displayBuffer(); automaticPageTurnActive = false; showPendingSyncSaveError(); @@ -841,54 +1016,165 @@ void EpubReaderActivity::render(RenderLock&& lock) { const uint16_t viewportWidth = renderer.getScreenWidth() - orientedMarginLeft - orientedMarginRight; const uint16_t viewportHeight = renderer.getScreenHeight() - orientedMarginTop - orientedMarginBottom; + // Capture for loop()'s lazy partial-extension start (must match this render's layout params). + buildViewportWidth = viewportWidth; + buildViewportHeight = viewportHeight; + + const ReaderRenderSpec renderSpec = SETTINGS.readerRenderSpec(viewportWidth, viewportHeight); if (!section) { const auto filepath = epub->getSpineItem(currentSpineIndex).href; LOG_DBG("ERS", "Loading file: %s, index: %d", filepath.c_str(), currentSpineIndex); section = std::unique_ptr
        (new Section(epub, currentSpineIndex, renderer)); + // Fresh section, fresh chance: a failed lazy extension start in a previous + // section must not suppress watermark-triggered rebuilds for this one. + partialRebuildStartFailed = false; + + // A finalized cache serves every page as-is. A partial cache (suspended build from a + // previous session) serves its pages instantly too, but a build must still run to lay + // out the rest -- it re-parses from the top in the background (HTML already cached, + // pages are deterministic) and finalizes, so the partial machinery retires itself. + const bool cacheLoaded = section->loadSectionFile(renderSpec); + if (cacheLoaded) { + // Matching render params means identical pagination, so the saved page number is valid + // as-is: consume any pending settings-change reposition. Without this, a chapter total + // saved while the section was still building (i.e. a watermark, not the real count) + // would remap the resume page against the finalized count and teleport the reader. + cachedChapterTotalPageCount = 0; + } + const bool cacheComplete = cacheLoaded && !section->isPartial(); + if (!cacheComplete) { + if (section->isPartial()) { + LOG_DBG("ERS", "Partial cache found (%d pages), resuming build...", section->pageCount); + } else { + LOG_DBG("ERS", "Cache not found, building..."); + } - if (!section->loadSectionFile(SETTINGS.getReaderFontId(), SETTINGS.getReaderLineCompression(), - SETTINGS.extraParagraphSpacing, SETTINGS.paragraphAlignment, viewportWidth, - viewportHeight, SETTINGS.hyphenationEnabled, SETTINGS.embeddedStyle, - SETTINGS.imageRendering, SETTINGS.focusReadingEnabled)) { - LOG_DBG("ERS", "Cache not found, building..."); - - GUI.drawPopup(renderer, tr(STR_INDEXING)); - - const auto popupFn = [this]() { GUI.drawPopup(renderer, tr(STR_INDEXING)); }; - - if (!section->createSectionFile(SETTINGS.getReaderFontId(), SETTINGS.getReaderLineCompression(), - SETTINGS.extraParagraphSpacing, SETTINGS.paragraphAlignment, viewportWidth, - viewportHeight, SETTINGS.hyphenationEnabled, SETTINGS.embeddedStyle, - SETTINGS.imageRendering, SETTINGS.focusReadingEnabled, popupFn)) { - LOG_ERR("ERS", "Failed to persist page data to SD"); - section.reset(); - showPendingSyncSaveError(); - return; + // Jumps that need the final pagination or the anchor map -- explicit page jumps, + // fragment anchors, percent jumps, and cross-setting progress repositioning -- can't + // resolve their landing page until the whole chapter is laid out, so they take the full + // (blocking) build with the indexing popup. Everything else -- plain forward reads, resume, + // and explicit page jumps -- only needs a specific page, so it builds incrementally to that + // page and finishes the rest in loop(). The settings-change reposition (cachedChapterTotal*) + // is NOT a full-build trigger: it's deferred to applyDeferredReposition() once the real page + // count is known, so it never blocks the first page. + // Only a percent jump truly needs the whole chapter up front (percent -> page needs the final + // page count). Anchor jumps (TOC / chapter select / footnotes) resolve incrementally below -- + // the anchor is recorded as its page is laid out, so a chapter-top anchor lands on page 0 + // without indexing the whole chapter. + const bool needsFullBuild = pendingPercentJump; + if (needsFullBuild) { + GUI.drawPopup(renderer, tr(STR_INDEXING)); + // The popup's own refresh is a plain FAST, so force the page that replaces it onto the HALF + // ghost-cleanup path -- otherwise the "INDEXING" text ghosts under the rendered page. + pagesUntilFullRefresh = 1; + // No popup redraws while the framebuffer is lent to the build below; + // the panel holds the popup displayed above (e-ink is persistent). + const auto popupFn = [this]() { + if (renderer.hasFrameBuffer()) GUI.drawPopup(renderer, tr(STR_INDEXING)); + }; + // Lend the framebuffer's 48 KB to the blocking full build; restored + // (white) at scope exit, and the page render below redraws everything. + GfxRenderer::FrameBufferLoan loan(renderer); + if (!section->createSectionFile(renderSpec, popupFn)) { + LOG_ERR("ERS", "Failed to persist page data to SD"); + section.reset(); + loan.end(); // restore before anything draws + showBuildError(); + return; + } + loan.end(); + } else { + // Lay out just enough to show the landing page; loop() builds the rest behind it. Show the + // indexing popup up front only when the build will actually be slow: a large spine (its + // whole HTML must be inflated before page 1 can lay out -- the giant single-spine case), or + // a deep resume/jump that must lay out many pages to reach the landing page. Tiny sections + // build in a blink and stay popup-free. + const int target = pendingPageJump.has_value() ? *pendingPageJump : (nextPageNumber < 0 ? 0 : nextPageNumber); + const bool anchorJump = !pendingAnchor.empty(); + + // Landing well inside a partial: the page (or anchor, via the on-disk map) is already + // servable, so don't restart the extension build now -- it re-lays out the WHOLE chapter + // from page 0 (minutes of background CPU + SD writes on a giant spine), pure waste when + // the reader never nears the watermark this session. loop() starts it lazily once the + // reader is within PARTIAL_REBUILD_START_MARGIN pages of the watermark. + if (section->isPartial() && + (anchorJump ? section->getPageForAnchor(pendingAnchor).has_value() + : target + PARTIAL_REBUILD_START_MARGIN < static_cast(section->pageCount))) { + LOG_DBG("ERS", "Partial covers target %d of %d; deferring extension build", target, section->pageCount); + } else { + const size_t spineBytes = + epub->getCumulativeSpineItemSize(currentSpineIndex) - + (currentSpineIndex > 0 ? epub->getCumulativeSpineItemSize(currentSpineIndex - 1) : 0); + // Popup only when the build will actually be slow: a big spine whose HTML still needs + // inflating (the multi-second cost), or a deep page target. A reopen with cached HTML builds + // fast, so no popup -- that's what made an already-indexed book look like it was reindexing. + // A partial cache that already covers the target page shows it instantly: never popup. + const bool willInflate = !section->hasHtmlCache(); + bool showPopup; + if (anchorJump) { + // An anchor jump's cost is bounded by the anchor's page, not `target`. An anchor already + // in the on-disk map (partial or finalized cache) lands instantly: no popup. Otherwise it + // lies beyond the indexed watermark and the build may lay out the whole spine to find it, + // so gate on spine size alone -- laying out a big spine takes seconds even with cached + // HTML. Ordinary chapter-top TOC jumps resolve on page 0 and stay popup-free. + showPopup = !section->findAnchor(pendingAnchor).has_value() && spineBytes > BUILD_POPUP_BYTE_THRESHOLD; + } else { + const bool targetAvailable = target < static_cast(section->pageCount); + showPopup = !targetAvailable && ((spineBytes > BUILD_POPUP_BYTE_THRESHOLD && willInflate) || + target > BUILD_POPUP_PAGE_THRESHOLD); + } + if (showPopup) { + GUI.drawPopup(renderer, tr(STR_INDEXING)); + // HALF-clear the popup when the page replaces it, else "INDEXING" ghosts under the page. + pagesUntilFullRefresh = 1; + } + // Lend the framebuffer's 48 KB to the blocking pre-render burst + // (startBuild inflates the whole spine HTML — the memory peak). The + // background buildSomeMore chunks in loop() do NOT get the loan: they + // deliberately interleave with page renders. Restored before render. + GfxRenderer::FrameBufferLoan loan(renderer); + if (!section->startBuild(renderSpec)) { + LOG_ERR("ERS", "Failed to start section build"); + section.reset(); + loan.end(); // restore before anything draws (showBuildError renders a popup) + showBuildError(); + return; + } + while (!section->isBuildComplete() && + (anchorJump ? !section->findAnchor(pendingAnchor) : static_cast(section->pageCount) <= target)) { + // Anchor jump: build until the anchor's page is laid out (usually page 0), checking a + // partial's on-disk anchor map too so an already-indexed anchor resolves immediately. + // Otherwise: build until the target page exists. loop() builds the rest behind it. + if (!section->buildSomeMore(BUILD_PAGES_PER_CHUNK)) { + LOG_ERR("ERS", "Failed during incremental section build"); + section.reset(); + loan.end(); // restore before anything draws (showBuildError renders a popup) + showBuildError(); + return; + } + } + loan.end(); + } } } else { LOG_DBG("ERS", "Cache found, skipping build..."); } if (pendingPageJump.has_value()) { - if (*pendingPageJump >= section->pageCount && section->pageCount > 0) { - section->currentPage = section->pageCount - 1; - } else { - section->currentPage = *pendingPageJump; - } + section->currentPage = *pendingPageJump; pendingPageJump.reset(); } else { section->currentPage = nextPageNumber; if (section->currentPage < 0) { section->currentPage = 0; - } else if (section->currentPage >= section->pageCount && section->pageCount > 0) { - LOG_DBG("ERS", "Clamping cached page %d to %d", section->currentPage, section->pageCount - 1); - section->currentPage = section->pageCount - 1; } } if (!pendingAnchor.empty()) { - if (const auto page = section->getPageForAnchor(pendingAnchor)) { + // Resolve from the pages laid out so far and/or the on-disk map (finalized or partial). + const auto page = section->findAnchor(pendingAnchor); + if (page) { section->currentPage = *page; LOG_DBG("ERS", "Resolved anchor '%s' to page %d", pendingAnchor.c_str(), *page); } else { @@ -897,17 +1183,6 @@ void EpubReaderActivity::render(RenderLock&& lock) { pendingAnchor.clear(); } - // handles changes in reader settings and reset to approximate position based on cached progress - if (cachedChapterTotalPageCount > 0) { - // only goes to relative position if spine index matches cached value - if (currentSpineIndex == cachedSpineIndex && section->pageCount != cachedChapterTotalPageCount) { - float progress = static_cast(section->currentPage) / static_cast(cachedChapterTotalPageCount); - int newPage = static_cast(progress * section->pageCount); - section->currentPage = newPage; - } - cachedChapterTotalPageCount = 0; // resets to 0 to prevent reading cached progress again - } - if (pendingPercentJump && section->pageCount > 0) { // Apply the pending percent jump now that we know the new section's page count. int newPage = static_cast(pendingSpineProgress * static_cast(section->pageCount)); @@ -919,6 +1194,63 @@ void EpubReaderActivity::render(RenderLock&& lock) { } } + // Extend the build to the requested page if needed (for partials and in-progress builds). + // This runs every render, so it covers both the first page and any forward turn that gets + // ahead of the background builder; pages already built do no work here. + // + // Crossing a partial's watermark before the extension rebuild has caught up means a + // synchronous wait spanning the remaining prefix re-layout -- potentially tens of + // seconds on a giant spine. Show the indexing popup so it isn't a silent freeze + // (the page that replaces it takes the HALF ghost-cleanup path). Ordinary window + // catch-ups on a non-partial build are a page or two and stay popup-free. + if (section->isPartial() && section->currentPage >= static_cast(section->pageCount)) { + GUI.drawPopup(renderer, tr(STR_INDEXING)); + pagesUntilFullRefresh = 1; + } + while (section->isPartial() && section->currentPage >= static_cast(section->pageCount)) { + // Start a build to extend a partial toward the requested page. + if (!section->isBuilding() && !section->startBuild(renderSpec)) { + LOG_ERR("ERS", "Failed to start partial extension build"); + section.reset(); + showBuildError(); + return; + } + // Extend until either the target page exists or the build completes. + while (!section->isBuildComplete() && section->currentPage >= static_cast(section->pageCount)) { + if (!section->buildSomeMore(BUILD_PAGES_PER_CHUNK)) { + LOG_ERR("ERS", "Failed during incremental section build"); + section.reset(); + showBuildError(); + return; + } + } + } + // For an in-progress incremental build, make sure the page we're about to show has been laid out. + if (section->isBuilding()) { + while (!section->isBuildComplete() && section->currentPage >= static_cast(section->pageCount)) { + if (!section->buildSomeMore(BUILD_PAGES_PER_CHUNK)) { + LOG_ERR("ERS", "Failed during incremental section build"); + section.reset(); + showBuildError(); + return; + } + } + } + + // The requested page is now as built as it will get. If it still lands past the end, + // clamp to the last real page: the UINT16_MAX "last page" sentinel from backward chapter + // navigation, an explicit jump beyond a finished chapter, or a stale saved position. + // Guarded on !isBuilding() because a still-building section's pageCount is only the current + // watermark (not the final count) and has already been driven far enough by the loops above. + if (!section->isBuilding() && section->pageCount > 0 && + section->currentPage >= static_cast(section->pageCount)) { + section->currentPage = section->pageCount - 1; + } + + // Apply a deferred settings-change reposition now that the real page count is known (a no-op for + // a plain resume / unchanged pagination). If still building, this defers to loop() on completion. + applyDeferredReposition(); + renderer.clearScreen(); if (section->pageCount == 0) { @@ -944,17 +1276,34 @@ void EpubReaderActivity::render(RenderLock&& lock) { updateBookmarkFlag(); { - auto p = section->loadPageFromSectionFile(); + // Unified page read: the in-progress build's in-RAM table if it has reached the page, + // otherwise the on-disk file (finalized section, or a partial from a previous session). + auto p = section->loadPage(section->currentPage); if (!p) { LOG_ERR("ERS", "Failed to load page from SD - clearing section cache"); + automaticPageTurnActive = false; + // Retrying rebuilds a transiently corrupt section and usually recovers, but a page that keeps + // failing would loop forever on a blank screen, so bound the retries before giving up. + const bool giveUp = ++pageLoadRetryCount > MAX_PAGE_LOAD_RETRIES; + // Abandon (not suspend) any active build BEFORE clearing: clearCache deletes the files, + // and the destructor's suspend would otherwise commit tables into a deleted handle. + section->abandonBuild(); section->clearCache(); section.reset(); + if (giveUp) { + LOG_ERR("ERS", "Page load retry limit reached, aborting"); + pageLoadRetryCount = 0; // Reset so a later user-initiated navigation can try afresh + renderer.clearScreen(); + renderer.drawCenteredText(UI_12_FONT_ID, 300, tr(STR_PAGE_LOAD_ERROR), true, EpdFontFamily::BOLD); + renderer.displayBuffer(); + showPendingSyncSaveError(); + return; + } requestUpdate(); // Try again after clearing cache - // TODO: prevent infinite loop if the page keeps failing to load for some reason - automaticPageTurnActive = false; showPendingSyncSaveError(); return; } + pageLoadRetryCount = 0; // Reset the retry counter once a page loads cleanly // Collect footnotes from the loaded page currentPageFootnotes = std::move(p->footnotes); @@ -963,8 +1312,17 @@ void EpubReaderActivity::render(RenderLock&& lock) { renderContents(std::move(p), orientedMarginTop, orientedMarginRight, orientedMarginBottom, orientedMarginLeft); LOG_DBG("ERS", "Rendered page in %dms", millis() - start); } - silentIndexNextChapterIfNeeded(viewportWidth, viewportHeight); - saveProgress(currentSpineIndex, section->currentPage, section->pageCount); + // Only persist when the position actually changed. render() also runs on menu, + // bookmark and screenshot re-renders, and writeAtomic is several FAT ops for 6 bytes. + // Every real page turn changes currentPage, so progress durability is unaffected. + if (currentSpineIndex != lastSavedSpineIndex || section->currentPage != lastSavedPage || + section->pageCount != lastSavedPageCount) { + if (saveProgress(currentSpineIndex, section->currentPage, section->estimatedTotalPages())) { + lastSavedSpineIndex = currentSpineIndex; + lastSavedPage = section->currentPage; + lastSavedPageCount = section->estimatedTotalPages(); + } + } showPendingSyncSaveError(); @@ -976,38 +1334,34 @@ void EpubReaderActivity::render(RenderLock&& lock) { if (showBookmarkMessage) { GUI.drawPopup(renderer, bookmarkRemoved ? tr(STR_BOOKMARK_REMOVED) : tr(STR_BOOKMARK_ADDED)); } -} -void EpubReaderActivity::silentIndexNextChapterIfNeeded(const uint16_t viewportWidth, const uint16_t viewportHeight) { - if (!epub || !section || section->pageCount < 2) { - return; - } - - // Build the next chapter cache while the penultimate page is on screen. - if (section->currentPage != section->pageCount - 2) { - return; - } - - const int nextSpineIndex = currentSpineIndex + 1; - if (nextSpineIndex < 0 || nextSpineIndex >= epub->getSpineItemsCount()) { - return; - } - - Section nextSection(epub, nextSpineIndex, renderer); - if (nextSection.loadSectionFile(SETTINGS.getReaderFontId(), SETTINGS.getReaderLineCompression(), - SETTINGS.extraParagraphSpacing, SETTINGS.paragraphAlignment, viewportWidth, - viewportHeight, SETTINGS.hyphenationEnabled, SETTINGS.embeddedStyle, - SETTINGS.imageRendering, SETTINGS.focusReadingEnabled)) { - return; + if (showDictionaryMessage) { + GUI.drawPopup(renderer, tr(STR_DICT_NO_DICT_SET)); } +} - LOG_DBG("ERS", "Silently indexing next chapter: %d", nextSpineIndex); - if (!nextSection.createSectionFile(SETTINGS.getReaderFontId(), SETTINGS.getReaderLineCompression(), - SETTINGS.extraParagraphSpacing, SETTINGS.paragraphAlignment, viewportWidth, - viewportHeight, SETTINGS.hyphenationEnabled, SETTINGS.embeddedStyle, - SETTINGS.imageRendering, SETTINGS.focusReadingEnabled)) { - LOG_ERR("ERS", "Failed silent indexing for chapter: %d", nextSpineIndex); +bool EpubReaderActivity::applyDeferredReposition() { + if (cachedChapterTotalPageCount == 0 || !section || section->isBuilding()) { + return false; + } + bool changed = false; + // Only remap when the chapter actually re-paginated (e.g. after a settings change). A plain + // resume has identical pagination, so section->pageCount == cachedChapterTotalPageCount and + // nothing moves. + if (currentSpineIndex == cachedSpineIndex && section->pageCount != cachedChapterTotalPageCount) { + const float progress = static_cast(section->currentPage) / static_cast(cachedChapterTotalPageCount); + int newPage = static_cast(progress * static_cast(section->pageCount)); + if (newPage < 0) newPage = 0; + if (section->pageCount > 0 && newPage >= static_cast(section->pageCount)) { + newPage = section->pageCount - 1; + } + if (newPage != section->currentPage) { + section->currentPage = newPage; + changed = true; + } } + cachedChapterTotalPageCount = 0; // consumed; don't read cached progress again + return changed; } bool EpubReaderActivity::saveProgress(int spineIndex, int currentPage, int pageCount) { @@ -1027,8 +1381,14 @@ void EpubReaderActivity::renderContents(std::unique_ptr page, const int or const auto tPrewarm = millis(); const bool pageHasImages = page->hasImages(); + const bool pageHasImagesNeedingDecode = pageHasImages && page->hasImagesNeedingDecode(); const bool needsTextGrayscale = SETTINGS.textAntiAliasing; const bool needsAnyGrayscale = needsTextGrayscale || pageHasImages; + const bool tiledGrayscale = needsAnyGrayscale && renderer.supportsStripGrayscale(); + // Whole-plane buffering only pays when the BW refresh genuinely runs async + // underneath it; on blocking panels it would just spend ~50 KB for the + // identical serial timing. + const bool overlapRefresh = tiledGrayscale && renderer.supportsAsyncRefresh(); auto renderGrayscalePass = [&]() { if (needsTextGrayscale) { page->render(renderer, fontId, orientedMarginLeft, orientedMarginTop); @@ -1037,6 +1397,13 @@ void EpubReaderActivity::renderContents(std::unique_ptr page, const int or } }; + if (pageHasImagesNeedingDecode) { + page->renderWithImagePlaceholders(renderer, fontId, orientedMarginLeft, orientedMarginTop); + renderStatusBar(); + renderer.displayBuffer(HalDisplay::FAST_REFRESH); + renderer.clearScreen(); + } + page->render(renderer, fontId, orientedMarginLeft, orientedMarginTop); renderStatusBar(); const auto tBwRender = millis(); @@ -1067,50 +1434,66 @@ void EpubReaderActivity::renderContents(std::unique_ptr page, const int or // regardless of residue. pagesUntilFullRefresh = 1; } else { - ReaderUtils::displayWithRefreshCycle(renderer, pagesUntilFullRefresh); + // Deferred when a tiled grayscale pass follows: the plane rendering below + // then overlaps the panel's refresh time instead of following it. + ReaderUtils::displayWithRefreshCycle(renderer, pagesUntilFullRefresh, /*async=*/overlapRefresh); } const auto tDisplay = millis(); - // Tiled grayscale: render each plane band-by-band into a small scratch and - // stream straight to the controller, leaving the BW framebuffer intact so no - // full-frame storeBwBuffer is needed; controller RAM is re-synced from the - // live framebuffer afterward. The page is re-rendered ceil(H/STRIP_ROWS) times - // per plane, but renderCharImpl culls out-of-band glyphs before decode so the - // cost stays close to one render. Both text (drawPixel) and images - // (DirectPixelWriter) honor the active strip target. - if (needsAnyGrayscale && renderer.supportsStripGrayscale()) { + // Tiled grayscale: render each plane band-by-band, leaving the BW + // framebuffer intact so no full-frame storeBwBuffer is needed; controller + // RAM is re-synced from the live framebuffer afterward. The page is + // re-rendered ceil(H/STRIP_ROWS) times per plane, but renderCharImpl culls + // out-of-band glyphs before decode so the cost stays close to one render. + // Both text (drawPixel) and images (DirectPixelWriter) honor the active + // strip target. When the BW refresh above went out async, the plane + // rendering below overlaps the panel's refresh time; only the controller + // RAM writes wait for BUSY. + if (tiledGrayscale) { constexpr int STRIP_ROWS = 80; const int gh = renderer.getDisplayHeight(); const int gwBytes = renderer.getDisplayWidthBytes(); + const size_t planeBytes = static_cast(gwBytes) * gh; - auto scratch = makeUniqueNoThrow(static_cast(gwBytes) * STRIP_ROWS); - if (!scratch) { - LOG_ERR("ERS", "OOM: grayscale strip scratch (%d bytes); skipping AA this page", gwBytes * STRIP_ROWS); - } else { - // Bands may be streamed in any order: X4 windows each via setRamArea, X3 - // via PTL. - renderer.setRenderMode(GfxRenderer::GRAYSCALE_LSB); + // Render one plane band-by-band into a whole-plane buffer without touching + // the controller, so it can run while the refresh is still in flight. + auto renderPlaneToBuffer = [&](const bool lsbPlane, uint8_t* buf) { + renderer.setRenderMode(lsbPlane ? GfxRenderer::GRAYSCALE_LSB : GfxRenderer::GRAYSCALE_MSB); for (int y = 0; y < gh; y += STRIP_ROWS) { const int rows = (gh - y < STRIP_ROWS) ? (gh - y) : STRIP_ROWS; - renderer.beginStripTarget(scratch.get(), y, rows); + renderer.beginStripTarget(buf + static_cast(y) * gwBytes, y, rows); renderer.clearScreen(0x00); renderGrayscalePass(); renderer.endStripTarget(); - renderer.writeGrayscalePlaneStrip(true, scratch.get(), y, rows); } - const auto tGrayLsb = millis(); - - // MSB plane. - renderer.setRenderMode(GfxRenderer::GRAYSCALE_MSB); - for (int y = 0; y < gh; y += STRIP_ROWS) { - const int rows = (gh - y < STRIP_ROWS) ? (gh - y) : STRIP_ROWS; - renderer.beginStripTarget(scratch.get(), y, rows); - renderer.clearScreen(0x00); - renderGrayscalePass(); - renderer.endStripTarget(); - renderer.writeGrayscalePlaneStrip(false, scratch.get(), y, rows); + }; + + // Tiered on heap pressure: two plane buffers hide both plane renders + // inside the refresh wait; one hides the LSB render (its buffer is reused + // for MSB after streaming); none falls back to the strip-scratch flow with + // no overlap. The MSB buffer is only attempted when it leaves ~60 KB free + // so the pass never starves concurrent allocations. Blocking panels skip + // the buffers entirely (nothing to overlap). + auto lsbPlaneBuf = overlapRefresh ? makeUniqueNoThrow(planeBytes) : nullptr; + auto msbPlaneBuf = + (lsbPlaneBuf && ESP.getFreeHeap() >= planeBytes + 60000) ? makeUniqueNoThrow(planeBytes) : nullptr; + + if (lsbPlaneBuf) { + renderPlaneToBuffer(true, lsbPlaneBuf.get()); + if (msbPlaneBuf) renderPlaneToBuffer(false, msbPlaneBuf.get()); + const auto tGrayRender = millis(); + + renderer.waitRefreshComplete(); + const auto tWait = millis(); + + renderer.writeGrayscalePlaneStrip(true, lsbPlaneBuf.get(), 0, gh); + if (msbPlaneBuf) { + renderer.writeGrayscalePlaneStrip(false, msbPlaneBuf.get(), 0, gh); + } else { + renderPlaneToBuffer(false, lsbPlaneBuf.get()); + renderer.writeGrayscalePlaneStrip(false, lsbPlaneBuf.get(), 0, gh); } - const auto tGrayMsb = millis(); + const auto tGrayWrite = millis(); renderer.setRenderMode(GfxRenderer::BW); renderer.displayGrayBuffer(); @@ -1119,14 +1502,63 @@ void EpubReaderActivity::renderContents(std::unique_ptr page, const int or // BW framebuffer is intact; re-sync controller RAM for the next // differential page turn directly from it. renderer.cleanupGrayscaleWithFrameBuffer(); - const auto tCleanup = millis(); - const auto tEnd = millis(); + LOG_DBG("ERS", - "Page render (tiled): prewarm=%lums bw_render=%lums display=%lums gray_lsb=%lums " - "gray_msb=%lums gray_display=%lums cleanup=%lums total=%lums", - tPrewarm - t0, tBwRender - tPrewarm, tDisplay - tBwRender, tGrayLsb - tDisplay, tGrayMsb - tGrayLsb, - tGrayDisplay - tGrayMsb, tCleanup - tGrayDisplay, tEnd - t0); + "Page render (tiled async): prewarm=%lums bw_render=%lums display=%lums gray_render=%lums " + "wait=%lums gray_write=%lums gray_display=%lums cleanup=%lums total=%lums (planes buffered: %d)", + tPrewarm - t0, tBwRender - tPrewarm, tDisplay - tBwRender, tGrayRender - tDisplay, tWait - tGrayRender, + tGrayWrite - tWait, tGrayDisplay - tGrayWrite, tEnd - tGrayDisplay, tEnd - t0, msbPlaneBuf ? 2 : 1); + } else { + // Per-strip scratch tier: blocking panels and the OOM fallback. The + // strip writes below need the panel idle, so wait out any pending async + // refresh first (no-op on blocking panels). + auto scratch = makeUniqueNoThrow(static_cast(gwBytes) * STRIP_ROWS); + renderer.waitRefreshComplete(); + if (!scratch) { + LOG_ERR("ERS", "OOM: grayscale strip scratch (%d bytes); skipping AA this page", gwBytes * STRIP_ROWS); + } else { + // Bands may be streamed in any order: X4 windows each via setRamArea, + // X3 via PTL. + renderer.setRenderMode(GfxRenderer::GRAYSCALE_LSB); + for (int y = 0; y < gh; y += STRIP_ROWS) { + const int rows = (gh - y < STRIP_ROWS) ? (gh - y) : STRIP_ROWS; + renderer.beginStripTarget(scratch.get(), y, rows); + renderer.clearScreen(0x00); + renderGrayscalePass(); + renderer.endStripTarget(); + renderer.writeGrayscalePlaneStrip(true, scratch.get(), y, rows); + } + const auto tGrayLsb = millis(); + + // MSB plane. + renderer.setRenderMode(GfxRenderer::GRAYSCALE_MSB); + for (int y = 0; y < gh; y += STRIP_ROWS) { + const int rows = (gh - y < STRIP_ROWS) ? (gh - y) : STRIP_ROWS; + renderer.beginStripTarget(scratch.get(), y, rows); + renderer.clearScreen(0x00); + renderGrayscalePass(); + renderer.endStripTarget(); + renderer.writeGrayscalePlaneStrip(false, scratch.get(), y, rows); + } + const auto tGrayMsb = millis(); + + renderer.setRenderMode(GfxRenderer::BW); + renderer.displayGrayBuffer(); + const auto tGrayDisplay = millis(); + + // BW framebuffer is intact; re-sync controller RAM for the next + // differential page turn directly from it. + renderer.cleanupGrayscaleWithFrameBuffer(); + const auto tCleanup = millis(); + + const auto tEnd = millis(); + LOG_DBG("ERS", + "Page render (tiled): prewarm=%lums bw_render=%lums display=%lums gray_lsb=%lums " + "gray_msb=%lums gray_display=%lums cleanup=%lums total=%lums", + tPrewarm - t0, tBwRender - tPrewarm, tDisplay - tBwRender, tGrayLsb - tDisplay, tGrayMsb - tGrayLsb, + tGrayDisplay - tGrayMsb, tCleanup - tGrayDisplay, tEnd - t0); + } } } else { // Fallback path for a controller without strip support. grayscale rendering @@ -1180,15 +1612,17 @@ void EpubReaderActivity::renderContents(std::unique_ptr page, const int or } void EpubReaderActivity::renderStatusBar() const { - // Calculate progress in book + // Calculate progress in book. Use the estimated total while a giant spine is still building so + // "page X of Y" and the progress bar don't read off the small build watermark. const int currentPage = section->currentPage + 1; - const float pageCount = section->pageCount; + const float pageCount = section->estimatedTotalPages(); const float sectionChapterProg = (pageCount > 0) ? (static_cast(currentPage) / pageCount) : 0; const float bookProgress = epub->calculateProgress(currentSpineIndex, sectionChapterProg) * 100; std::string title; int textYOffset = 0; + const auto sb = SETTINGS.statusBarSpec(); if (automaticPageTurnActive) { title = tr(STR_AUTO_TURN_ENABLED) + std::to_string(60 * 1000 / pageTurnDuration); @@ -1201,7 +1635,7 @@ void EpubReaderActivity::renderStatusBar() const { textYOffset += UITheme::getInstance().getMetrics().statusBarVerticalMargin; } - } else if (SETTINGS.statusBarTitle == CrossPointSettings::STATUS_BAR_TITLE::CHAPTER_TITLE) { + } else if (sb.titleMode == CrossPointSettings::STATUS_BAR_TITLE::CHAPTER_TITLE) { title = tr(STR_UNNAMED); const int tocIndex = epub->getTocIndexForSpineIndex(currentSpineIndex); if (tocIndex != -1) { @@ -1209,11 +1643,12 @@ void EpubReaderActivity::renderStatusBar() const { title = tocItem.title; } - } else if (SETTINGS.statusBarTitle == CrossPointSettings::STATUS_BAR_TITLE::BOOK_TITLE) { + } else if (sb.titleMode == CrossPointSettings::STATUS_BAR_TITLE::BOOK_TITLE) { title = epub->getTitle(); } - GUI.drawStatusBar(renderer, bookProgress, currentPage, pageCount, title, 0, textYOffset, true, currentPageBookmarked); + GUI.drawStatusBar(renderer, bookProgress, currentPage, pageCount, title, 0, textYOffset, true, currentPageBookmarked, + section->isBuilding()); } void EpubReaderActivity::navigateToHref(const std::string& hrefStr, const bool savePosition) { @@ -1285,13 +1720,7 @@ void EpubReaderActivity::loadCachedBookmarks() { return; } - const std::string bmPath = BookmarkUtil::getBookmarkPath(epub->getPath()); - if (Storage.exists(bmPath.c_str())) { - String json = Storage.readFile(bmPath.c_str()); - if (!json.isEmpty()) { - JsonSettingsIO::loadBookmarks(cachedBookmarks, json.c_str()); - } - } + BookmarkFile::load(epub->getPath(), cachedBookmarks); updateBookmarkFlag(); } @@ -1304,7 +1733,7 @@ void EpubReaderActivity::addBookmark() { int pageCount; { RenderLock lock(*this); - pageCount = section->pageCount; + pageCount = section->estimatedTotalPages(); currentPage = section->currentPage; } @@ -1338,12 +1767,8 @@ void EpubReaderActivity::addBookmark() { currentPageBookmarked = true; } - const std::string path = BookmarkUtil::getBookmarkPath(epub->getPath()); - const std::string bookmarksDir = BookmarkUtil::getBookmarksDir(); - Storage.mkdir(bookmarksDir.c_str()); - const bool ok = JsonSettingsIO::saveBookmarks(cachedBookmarks, path.c_str()); - if (!ok) { - LOG_ERR("ERS", "Failed to save bookmarks to: %s", path.c_str()); + if (!BookmarkFile::save(epub->getPath(), cachedBookmarks)) { + LOG_ERR("ERS", "Failed to save bookmarks"); } requestUpdate(); } @@ -1353,10 +1778,10 @@ void EpubReaderActivity::updateBookmarkFlag() { currentPageBookmarked = false; return; } - const ProgressRange pageRange = - getPageProgressRange(epub, currentSpineIndex, section->currentPage, section->pageCount); + const int pageCount = section->estimatedTotalPages(); + const ProgressRange pageRange = getPageProgressRange(epub, currentSpineIndex, section->currentPage, pageCount); currentPageBookmarked = std::any_of(cachedBookmarks.begin(), cachedBookmarks.end(), [&](const BookmarkEntry& b) { - return bookmarkMatchesProgress(b, currentSpineIndex, section->currentPage, section->pageCount, pageRange); + return bookmarkMatchesProgress(b, currentSpineIndex, section->currentPage, pageCount, pageRange); }); } @@ -1369,9 +1794,9 @@ ScreenshotInfo EpubReaderActivity::getScreenshotInfo() const { } if (section) { info.currentPage = section->currentPage + 1; - info.totalPages = section->pageCount; - if (epub && epub->getBookSize() > 0 && section->pageCount > 0) { - const float chapterProgress = static_cast(section->currentPage) / static_cast(section->pageCount); + info.totalPages = section->estimatedTotalPages(); + if (epub && epub->getBookSize() > 0 && info.totalPages > 0) { + const float chapterProgress = static_cast(section->currentPage) / static_cast(info.totalPages); int pct = static_cast(epub->calculateProgress(currentSpineIndex, chapterProgress) * 100.0f + 0.5f); if (pct < 0) pct = 0; if (pct > 100) pct = 100; @@ -1383,7 +1808,7 @@ ScreenshotInfo EpubReaderActivity::getScreenshotInfo() const { CrossPointPosition EpubReaderActivity::getCurrentPosition() const { const int currentPage = section ? section->currentPage : nextPageNumber; - const int totalPages = section ? section->pageCount : cachedChapterTotalPageCount; + const int totalPages = section ? section->estimatedTotalPages() : cachedChapterTotalPageCount; std::optional paragraphIndex; if (section && currentPage >= 0 && currentPage < section->pageCount) { const uint16_t paragraphPage = diff --git a/src/activities/reader/EpubReaderActivity.h b/src/activities/reader/EpubReaderActivity.h index 7e2a4ad294..e9cd0179a2 100644 --- a/src/activities/reader/EpubReaderActivity.h +++ b/src/activities/reader/EpubReaderActivity.h @@ -6,6 +6,7 @@ #include #include "BookmarkEntry.h" +#include "EndOfBookOptions.h" #include "EpubReaderMenuActivity.h" #include "ProgressMapper.h" #include "activities/Activity.h" @@ -31,9 +32,16 @@ class EpubReaderActivity final : public Activity { float pendingSpineProgress = 0.0f; bool pendingScreenshot = false; bool pendingSyncSaveError = false; + // Consecutive page-load failures. Each failure drops the section and rebuilds on the next render, + // which recovers a transiently corrupt cache; capped so a persistently bad page can't spin forever. + uint8_t pageLoadRetryCount = 0; + static constexpr uint8_t MAX_PAGE_LOAD_RETRIES = 3; bool skipNextButtonCheck = false; // Skip button processing for one frame after subactivity exit bool automaticPageTurnActive = false; bool showBookmarkMessage = false; + // "No dictionary set" popup, shown when a lookup is triggered without a configured dictionary. + bool showDictionaryMessage = false; + unsigned long dictionaryMessageTime = 0UL; bool ignoreNextConfirmRelease = false; bool currentPageBookmarked = false; bool bookmarkRemoved = false; // true when last toggle removed (controls popup text) @@ -45,6 +53,8 @@ class EpubReaderActivity final : public Activity { // Set when the reader is left at end-of-book and SETTINGS.moveFinishedToReadFolder is on. // Consumed in onExit() to relocate the finished book into /Read/. bool pendingReadFolderMove = false; + // Next-book suggestion menu for the End-of-Book screen + EndOfBookOptions endOfBookOptions; // Footnote support std::vector currentPageFootnotes; @@ -56,14 +66,63 @@ class EpubReaderActivity final : public Activity { SavedPosition savedPositions[MAX_FOOTNOTE_DEPTH] = {}; int footnoteDepth = 0; + // Viewport of the last render(), captured so loop()'s lazy partial-extension start + // builds with IDENTICAL layout parameters to the pages already rendered (a mismatch + // would paginate differently than the partial being extended). 0 = no render yet. + uint16_t buildViewportWidth = 0; + uint16_t buildViewportHeight = 0; + // Set when the lazy extension start failed, so loop() doesn't retry (and log) every + // tick; the blocking extension in render() remains the fallback past the watermark. + bool partialRebuildStartFailed = false; + + // Last position persisted by render()'s saveProgress, used to skip redundant + // writeAtomic calls on no-op re-renders (menu/bookmark/screenshot). + int lastSavedSpineIndex = -1; + int lastSavedPage = -1; + int lastSavedPageCount = -1; + void renderContents(std::unique_ptr page, int orientedMarginTop, int orientedMarginRight, int orientedMarginBottom, int orientedMarginLeft); void renderStatusBar() const; - void silentIndexNextChapterIfNeeded(uint16_t viewportWidth, uint16_t viewportHeight); + // Pages laid out per incremental-build pump: on the render path (catching up to the page + // being shown) and per loop() tick (background build of a large chapter). Kept small so a + // background build chunk never noticeably delays input or a pending render. + static constexpr int BUILD_PAGES_PER_CHUNK = 8; + static constexpr int BACKGROUND_BUILD_PAGES_PER_TICK = 2; + // How many pages to keep laid out ahead of the reader for a still-building section. A page + // turn is ~1s on e-ink and a page builds in ~30ms, so the reader can't out-click the builder + // -- a tiny buffer is enough. The background build stops once the watermark is this far + // ahead and resumes as the reader advances; building unbounded instead locked up input by + // monopolizing the RenderLock. A giant single-spine book therefore never finalizes its .bin + // in one sitting -- instant reopen comes from Section::suspendBuild() persisting the pages + // already laid out as a partial file on exit/sleep. + static constexpr int BUILD_WINDOW_AHEAD = 5; + // Reopening a partial does NOT immediately restart its extension build (a whole-chapter + // re-layout from page 0 -- minutes of background CPU + SD writes on a giant spine, wasted + // when the reader never crosses the watermark that session). Instead loop() starts it once + // the reader is within this many pages of the watermark: at ~30s per page read and ~100-300ms + // per page rebuilt, this margin gives the rebuild ample runway to catch up (and finalize) + // before the reader arrives. + static constexpr int PARTIAL_REBUILD_START_MARGIN = 15; + // Show the indexing popup when an initial build must lay out more than this many pages up front + // (a deep resume/jump into a not-yet-built section), so it isn't a silent wait. Kept independent + // of the small look-ahead window so ordinary landings stay popup-free. + static constexpr int BUILD_POPUP_PAGE_THRESHOLD = 20; + // Also show the popup when first building a spine larger than this (uncompressed bytes): its + // whole HTML must be inflated before page 1 can lay out (the giant single-spine case), which is + // a multi-second wait. Normal chapters are well under this and stay popup-free. + static constexpr size_t BUILD_POPUP_BYTE_THRESHOLD = 96 * 1024; + // Remap the cached relative reading position once the section's real page count is known + // (used after a settings change re-paginates a chapter). Returns true if currentPage moved. + // No-op while the section is still building or when the pagination is unchanged (plain resume). + bool applyDeferredReposition(); bool saveProgress(int spineIndex, int currentPage, int pageCount); // Jump to a percentage of the book (0-100), mapping it to spine and page. void jumpToPercent(int percent); void onReaderMenuConfirm(EpubReaderMenuActivity::MenuAction action); + // Opens the reader menu for the current position (short-press Confirm) + void openReaderMenu(); + void openDictionaryWordSelect(); // Returns true if sync acted (launched, or surfaced a save error); false if it was a no-op // because no KOReader credentials are stored. bool launchKOReaderSync(); @@ -85,6 +144,11 @@ class EpubReaderActivity final : public Activity { void onExit() override; void loop() override; void render(RenderLock&& lock) override; + // Full CPU speed + fast loop ticks while a section build runs: at the low-power + // frequency a giant chapter's background rebuild stretches from ~40s to many + // minutes, so the reader exits before it can finalize and the next open restarts + // it from page 0. Reverts to normal power behavior the moment the build finishes. + bool skipLoopDelay() override { return section && section->isBuilding(); } bool isReaderActivity() const override { return true; } ScreenshotInfo getScreenshotInfo() const override; CrossPointPosition getCurrentPosition() const; diff --git a/src/activities/reader/EpubReaderBookmarksActivity.cpp b/src/activities/reader/EpubReaderBookmarksActivity.cpp index 0b1f3f30dc..1dfa6ef1ae 100644 --- a/src/activities/reader/EpubReaderBookmarksActivity.cpp +++ b/src/activities/reader/EpubReaderBookmarksActivity.cpp @@ -1,23 +1,17 @@ #include "EpubReaderBookmarksActivity.h" #include -#include #include -#include -#include #include +#include "../../util/BookmarkFile.h" #include "MappedInputManager.h" -#include "ProgressMapper.h" #include "components/UITheme.h" #include "fontIds.h" namespace { constexpr int ENTER_DELETE_MODE_MS = 700; -constexpr int DELETE_MODE_OFF = 0; -constexpr int DELETE_MODE_DISPLAY = 1; -constexpr int DELETE_MODE_CONFIRM = 2; // Layout constants used in renderScreen constexpr int LINE_HEIGHT = 60; @@ -30,19 +24,7 @@ void EpubReaderBookmarksActivity::onEnter() { return; } - const std::string path = BookmarkUtil::getBookmarkPath(epubPath); - if (Storage.exists(path.c_str())) { - String json = Storage.readFile(path.c_str()); - if (json.isEmpty()) { - LOG_ERR("EPB", "Failed to load bookmarks from %s. Empty bookmark file", path.c_str()); - bookmarks.clear(); - bookmarks.shrink_to_fit(); - } else { - JsonSettingsIO::loadBookmarks(bookmarks, json.c_str()); - } - } else { - LOG_DBG("EPB", "No bookmark file found at %s, starting with empty bookmarks", path.c_str()); - bookmarks.clear(); + if (!BookmarkFile::load(epubPath, bookmarks)) { bookmarks.shrink_to_fit(); } LOG_DBG("EPB", "Loaded %d bookmarks for book: %s", static_cast(bookmarks.size()), epubPath.c_str()); @@ -65,54 +47,35 @@ int EpubReaderBookmarksActivity::getListHeight(const GfxRenderer& renderer) { } void EpubReaderBookmarksActivity::loop() { - // Delete confirmation mode - if (confirmingDelete >= DELETE_MODE_DISPLAY) { - if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { - if (confirmingDelete == DELETE_MODE_DISPLAY) { - confirmingDelete = DELETE_MODE_CONFIRM; // first confirmation, update text - requestUpdate(); - return; - } - bookmarks.erase(bookmarks.begin() + selectorIndex); - const std::string path = BookmarkUtil::getBookmarkPath(epubPath); - Storage.mkdir(BookmarkUtil::getBookmarksDir().c_str()); - if (!JsonSettingsIO::saveBookmarks(bookmarks, path.c_str())) { - LOG_ERR("EPB", "Failed to save bookmarks after delete"); - } - - // Move selector up if we deleted the last item - if (selectorIndex >= bookmarks.size() && selectorIndex > 0) { - selectorIndex--; - } - - if (bookmarks.empty()) { - ActivityResult result; - result.isCancelled = true; - setResult(std::move(result)); - finish(); - return; - } - - requestUpdate(); - confirmingDelete = DELETE_MODE_OFF; - return; - } else if (mappedInput.wasReleased(MappedInputManager::Button::Back)) { - requestUpdate(); - confirmingDelete = DELETE_MODE_OFF; - return; - } - } - - if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { // Open + auto openBookmark = [this] { if (bookmarks.empty()) { return; } auto bookmark = bookmarks.at(selectorIndex); - CrossPointPosition pos = ProgressMapper::toCrossPoint(epub, {bookmark.xpath, bookmark.percentage}, renderer); - setResult(ProgressChangeResult{pos.spineIndex, pos.pageNumber}); + ProgressChangeResult result{}; + result.xpath = bookmark.xpath; + result.percentage = bookmark.percentage; + result.hasSavedProgress = true; + if (bookmark.computedChapterPageCount > 0 && bookmark.computedChapterProgress < bookmark.computedChapterPageCount && + bookmark.computedSpineIndex < epub->getSpineItemsCount()) { + result.spineIndex = bookmark.computedSpineIndex; + result.page = bookmark.computedChapterProgress; + result.totalPages = bookmark.computedChapterPageCount; + } + setResult(std::move(result)); finish(); + }; + + // Delete confirmation popup + if (confirmPopup.handleInput(mappedInput, [this] { requestUpdate(); })) return; + if (confirmingDelete) { + // Popup dismissed without a selection (Back button or tap outside): cancel delete + confirmingDelete = false; + requestUpdate(); return; - } else if (mappedInput.wasReleased(MappedInputManager::Button::Back)) { + } + + if (mappedInput.wasReleased(MappedInputManager::Button::Back)) { ActivityResult result; result.isCancelled = true; setResult(std::move(result)); @@ -120,11 +83,68 @@ void EpubReaderBookmarksActivity::loop() { return; } + const auto orientation = renderer.getOrientation(); + const bool isPortraitInverted = orientation == GfxRenderer::Orientation::PortraitInverted; + const bool isLandscapeCw = orientation == GfxRenderer::Orientation::LandscapeClockwise; + const bool isLandscapeCcw = orientation == GfxRenderer::Orientation::LandscapeCounterClockwise; + const int hintGutterWidth = (isLandscapeCw || isLandscapeCcw) ? 40 : 0; + const int contentX = isLandscapeCw ? hintGutterWidth : 0; + const int contentWidth = renderer.getScreenWidth() - hintGutterWidth; + const int contentY = isPortraitInverted ? 50 : 0; + const int listY = contentY + LINE_HEIGHT; + const int listHeight = getListHeight(renderer); + int tapped = 0; + int tx = 0; + int ty = 0; + if (mappedInput.wasScreenTouchDown(tx, ty) && tx >= contentX && tx < contentX + contentWidth && + mappedInput.wasListItemTouchedDown(tapped, static_cast(bookmarks.size()), selectorIndex, listY, listHeight, + true)) { + if (selectorIndex != tapped) { + selectorIndex = tapped; + requestUpdate(); + } + return; + } + if (mappedInput.wasScreenTapped(tx, ty) && tx >= contentX && tx < contentX + contentWidth && + mappedInput.wasListItemTapped(tapped, static_cast(bookmarks.size()), selectorIndex, listY, listHeight, + true)) { + selectorIndex = tapped; + openBookmark(); + return; + } + + const auto swipe = mappedInput.wasSwipe(); + if (swipe == MappedInputManager::SwipeDir::Up && !bookmarks.empty()) { + selectorIndex = + ButtonNavigator::nextPageIndex(selectorIndex, bookmarks.size(), GUI.getListPageItems(listHeight, true)); + requestUpdate(); + return; + } + if (swipe == MappedInputManager::SwipeDir::Down && !bookmarks.empty()) { + selectorIndex = + ButtonNavigator::previousPageIndex(selectorIndex, bookmarks.size(), GUI.getListPageItems(listHeight, true)); + requestUpdate(); + return; + } + + if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { // Open + openBookmark(); + return; + } + if (mappedInput.isPressed(MappedInputManager::Button::Confirm) && mappedInput.getHeldTime() > ENTER_DELETE_MODE_MS) { if (bookmarks.empty()) { return; } - confirmingDelete = DELETE_MODE_DISPLAY; + confirmingDelete = true; + const char* options[] = {tr(STR_CANCEL), tr(STR_DELETE)}; + confirmPopup.show(tr(STR_CONFIRM_DELETE_BOOKMARK), options, 2, 0, [this](int idx) { + confirmingDelete = false; + if (idx == 1) { + deleteSelectedBookmark(); + } + requestUpdate(); + }); requestUpdate(); } @@ -151,6 +171,25 @@ void EpubReaderBookmarksActivity::loop() { }); } +void EpubReaderBookmarksActivity::deleteSelectedBookmark() { + bookmarks.erase(bookmarks.begin() + selectorIndex); + if (!BookmarkFile::save(epubPath, bookmarks)) { + LOG_ERR("EPB", "Failed to save bookmarks after delete"); + } + + // Move selector up if we deleted the last item + if (selectorIndex >= bookmarks.size() && selectorIndex > 0) { + selectorIndex--; + } + + if (bookmarks.empty()) { + ActivityResult result; + result.isCancelled = true; + setResult(std::move(result)); + finish(); + } +} + void EpubReaderBookmarksActivity::render(RenderLock&&) { renderer.clearScreen(); @@ -180,10 +219,10 @@ void EpubReaderBookmarksActivity::render(RenderLock&&) { renderer.drawText(UI_12_FONT_ID, titleX, 15 + contentY, tr(STR_BOOKMARKS), true, EpdFontFamily::BOLD); const auto getBookmarkTitle = [this](int index) { - return bookmarks.at(confirmingDelete >= DELETE_MODE_DISPLAY ? selectorIndex : index).summary; + return bookmarks.at(confirmingDelete ? selectorIndex : index).summary; }; const auto getBookmarkSubtitle = [this](int index) { - auto bookmark = bookmarks.at(confirmingDelete >= DELETE_MODE_DISPLAY ? selectorIndex : index); + auto bookmark = bookmarks.at(confirmingDelete ? selectorIndex : index); auto tocIndex = epub->getTocIndexForSpineIndex(bookmark.computedSpineIndex); auto tocTitle = (tocIndex >= 0) ? (epub->getTocItem(tocIndex)).title : tr(STR_UNNAMED); std::string subtitle = std::to_string((int)(std::clamp(bookmark.percentage, 0.0f, 1.0f) * 100.0f + 0.5f)) + "% - "; @@ -199,12 +238,9 @@ void EpubReaderBookmarksActivity::render(RenderLock&&) { }; if (numBookmarks > 0) { - if (confirmingDelete >= DELETE_MODE_DISPLAY) { - GUI.drawHelpText(renderer, Rect{0, pageHeight / 2 - LINE_HEIGHT * 2, contentWidth, LINE_HEIGHT}, - tr(STR_CONFIRM_DELETE_BOOKMARK)); - - // render list with just the selected item for the user to confirm to delete - GUI.drawList(renderer, Rect{contentX, pageHeight / 2, contentWidth, LINE_HEIGHT}, 1, 0, getBookmarkTitle, + if (confirmingDelete) { + // Render just the selected item near the top; the confirmation popup occupies the center + GUI.drawList(renderer, Rect{contentX, listY, contentWidth, LINE_HEIGHT}, 1, 0, getBookmarkTitle, getBookmarkSubtitle, getBookmarkIcon); } else { GUI.drawList(renderer, Rect{contentX, listY, contentWidth, listHeight}, numBookmarks, selectorIndex, @@ -215,10 +251,10 @@ void EpubReaderBookmarksActivity::render(RenderLock&&) { } } - const auto backLabel = confirmingDelete >= DELETE_MODE_DISPLAY ? tr(STR_CANCEL) : tr(STR_BACK); - const auto confirmLabel = - bookmarks.size() > 0 ? (confirmingDelete >= DELETE_MODE_DISPLAY ? tr(STR_DELETE) : tr(STR_SELECT)) : ""; - const auto labels = mappedInput.mapLabels(backLabel, confirmLabel, tr(STR_DIR_UP), tr(STR_DIR_DOWN)); + if (confirmPopup.processRender(renderer, mappedInput)) return; + + const auto confirmLabel = bookmarks.size() > 0 ? tr(STR_SELECT) : ""; + const auto labels = mappedInput.mapLabels(tr(STR_BACK), confirmLabel, tr(STR_DIR_UP), tr(STR_DIR_DOWN)); GUI.drawButtonHints(renderer, labels.btn1, labels.btn2, labels.btn3, labels.btn4); renderer.displayBuffer(); diff --git a/src/activities/reader/EpubReaderBookmarksActivity.h b/src/activities/reader/EpubReaderBookmarksActivity.h index 56e57711b0..78f7a46c1d 100644 --- a/src/activities/reader/EpubReaderBookmarksActivity.h +++ b/src/activities/reader/EpubReaderBookmarksActivity.h @@ -5,6 +5,7 @@ #include "../../BookmarkEntry.h" #include "../Activity.h" +#include "components/OptionPopup.h" #include "util/ButtonNavigator.h" class EpubReaderBookmarksActivity final : public Activity { @@ -13,7 +14,8 @@ class EpubReaderBookmarksActivity final : public Activity { ButtonNavigator buttonNavigator; int selectorIndex = 0; std::vector bookmarks; - int confirmingDelete = 0; // 0 = hide dialog, 1 = show dialog, 2 = allow confirmation to delete + bool confirmingDelete = false; + OptionPopup confirmPopup; public: explicit EpubReaderBookmarksActivity(GfxRenderer& renderer, MappedInputManager& mappedInput, @@ -30,4 +32,7 @@ class EpubReaderBookmarksActivity final : public Activity { // Calculate the height available for the bookmark list based on orientation int getListHeight(const GfxRenderer& renderer); + + // Delete the currently selected bookmark and persist the list + void deleteSelectedBookmark(); }; diff --git a/src/activities/reader/EpubReaderChapterSelectionActivity.cpp b/src/activities/reader/EpubReaderChapterSelectionActivity.cpp index 6306346cb4..9042f33b12 100644 --- a/src/activities/reader/EpubReaderChapterSelectionActivity.cpp +++ b/src/activities/reader/EpubReaderChapterSelectionActivity.cpp @@ -31,7 +31,15 @@ void EpubReaderChapterSelectionActivity::loop() { const int pageItems = UITheme::getInstance().getNumberOfItemsPerPage(renderer, true, false, true, false); const int totalItems = getTotalItems(); - if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { + if (mappedInput.wasReleased(MappedInputManager::Button::Back)) { + ActivityResult result; + result.isCancelled = true; + setResult(std::move(result)); + finish(); + return; + } + + auto selectChapter = [this] { const auto tocItem = epub->getTocItem(selectorIndex); if (tocItem.spineIndex == -1) { ActivityResult result; @@ -42,11 +50,36 @@ void EpubReaderChapterSelectionActivity::loop() { setResult(ChapterResult{tocItem.spineIndex, tocItem.anchor}); finish(); } - } else if (mappedInput.wasReleased(MappedInputManager::Button::Back)) { - ActivityResult result; - result.isCancelled = true; - setResult(std::move(result)); - finish(); + }; + + auto metrics = UITheme::getInstance().getMetrics(); + Rect screen = UITheme::getInstance().getScreenSafeArea(renderer, true, false); + const int contentTop = screen.y + metrics.topPadding + metrics.headerHeight + metrics.verticalSpacing; + const int contentHeight = screen.height - contentTop - metrics.verticalSpacing; + switch (handleListTouch(selectorIndex, totalItems, contentTop, contentHeight, false)) { + case ListTouchResult::Activated: + selectChapter(); + return; + case ListTouchResult::Consumed: + return; + case ListTouchResult::None: + break; + } + + const auto swipe = mappedInput.wasSwipe(); + if (swipe == MappedInputManager::SwipeDir::Up) { + selectorIndex = ButtonNavigator::nextPageIndex(selectorIndex, totalItems, pageItems); + requestUpdate(); + return; + } + if (swipe == MappedInputManager::SwipeDir::Down) { + selectorIndex = ButtonNavigator::previousPageIndex(selectorIndex, totalItems, pageItems); + requestUpdate(); + return; + } + + if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { + selectChapter(); } buttonNavigator.onNextRelease([this, totalItems] { diff --git a/src/activities/reader/EpubReaderFootnotesActivity.cpp b/src/activities/reader/EpubReaderFootnotesActivity.cpp index 390dd3c57b..d8e109a1d5 100644 --- a/src/activities/reader/EpubReaderFootnotesActivity.cpp +++ b/src/activities/reader/EpubReaderFootnotesActivity.cpp @@ -18,6 +18,13 @@ void EpubReaderFootnotesActivity::onEnter() { void EpubReaderFootnotesActivity::onExit() { Activity::onExit(); } void EpubReaderFootnotesActivity::loop() { + auto selectFootnote = [this] { + if (selectedIndex >= 0 && selectedIndex < static_cast(footnotes.size())) { + setResult(FootnoteResult{footnotes[selectedIndex].href}); + finish(); + } + }; + if (mappedInput.wasReleased(MappedInputManager::Button::Back)) { ActivityResult result; result.isCancelled = true; @@ -28,13 +35,53 @@ void EpubReaderFootnotesActivity::loop() { if (mappedInput.wasReleased(MappedInputManager::Button::Confirm) || mappedInput.wasReleased(MappedInputManager::Button::Power)) { - if (selectedIndex >= 0 && selectedIndex < static_cast(footnotes.size())) { - setResult(FootnoteResult{footnotes[selectedIndex].href}); - finish(); - } + selectFootnote(); return; } + if (!footnotes.empty()) { + const auto orientation = renderer.getOrientation(); + const bool isLandscapeCw = orientation == GfxRenderer::Orientation::LandscapeClockwise; + const bool isLandscapeCcw = orientation == GfxRenderer::Orientation::LandscapeCounterClockwise; + const bool isPortraitInverted = orientation == GfxRenderer::Orientation::PortraitInverted; + const int hintGutterWidth = (isLandscapeCw || isLandscapeCcw) ? 30 : 0; + const int contentX = isLandscapeCw ? hintGutterWidth : 0; + const int contentWidth = renderer.getScreenWidth() - hintGutterWidth; + const int contentY = isPortraitInverted ? 50 : 0; + constexpr int lineHeight = 36; + const int listTop = 60 + contentY; + const int visibleCount = std::max(1, (renderer.getScreenHeight() - listTop) / lineHeight); + int row = -1; + const auto touch = mappedInput.rowTouch(row, listTop, lineHeight, visibleCount, contentX, contentX + contentWidth); + if (touch != MappedInputManager::RowTouch::None) { + const int touched = scrollOffset + row; + if (touched >= 0 && touched < static_cast(footnotes.size())) { + if (touch == MappedInputManager::RowTouch::Down) { + if (selectedIndex != touched) { + selectedIndex = touched; + requestUpdate(); + } + } else { + selectedIndex = touched; + selectFootnote(); + } + return; + } + } + + const auto swipe = mappedInput.wasSwipe(); + if (swipe == MappedInputManager::SwipeDir::Up) { + selectedIndex = std::min(static_cast(footnotes.size()) - 1, selectedIndex + visibleCount); + requestUpdate(); + return; + } + if (swipe == MappedInputManager::SwipeDir::Down) { + selectedIndex = std::max(0, selectedIndex - visibleCount); + requestUpdate(); + return; + } + } + buttonNavigator.onNext([this] { if (!footnotes.empty()) { selectedIndex = (selectedIndex + 1) % footnotes.size(); @@ -83,13 +130,14 @@ void EpubReaderFootnotesActivity::render(RenderLock&&) { constexpr int lineHeight = 36; const int screenWidth = renderer.getScreenWidth(); const int marginLeft = contentX + 20; + const int listTop = 60 + contentY; - const int visibleCount = std::max(1, (renderer.getScreenHeight() - contentY) / lineHeight); + const int visibleCount = std::max(1, (renderer.getScreenHeight() - listTop) / lineHeight); if (selectedIndex < scrollOffset) scrollOffset = selectedIndex; if (selectedIndex >= scrollOffset + visibleCount) scrollOffset = selectedIndex - visibleCount + 1; for (int i = scrollOffset; i < static_cast(footnotes.size()) && i < scrollOffset + visibleCount; i++) { - const int y = 60 + contentY + (i - scrollOffset) * lineHeight; + const int y = listTop + (i - scrollOffset) * lineHeight; const bool isSelected = (i == selectedIndex); if (isSelected) { diff --git a/src/activities/reader/EpubReaderMenuActivity.cpp b/src/activities/reader/EpubReaderMenuActivity.cpp index 2bf1df415f..b194b1e204 100644 --- a/src/activities/reader/EpubReaderMenuActivity.cpp +++ b/src/activities/reader/EpubReaderMenuActivity.cpp @@ -22,7 +22,7 @@ EpubReaderMenuActivity::EpubReaderMenuActivity(GfxRenderer& renderer, MappedInpu std::vector EpubReaderMenuActivity::buildMenuItems(bool hasFootnotes, bool hasBookmarks) { std::vector items; - items.reserve(12); + items.reserve(13); items.push_back({MenuAction::SELECT_CHAPTER, StrId::STR_SELECT_CHAPTER}); if (hasFootnotes) { items.push_back({MenuAction::FOOTNOTES, StrId::STR_FOOTNOTES}); @@ -31,6 +31,7 @@ std::vector EpubReaderMenuActivity::buildMenuI items.push_back({MenuAction::BOOKMARKS, StrId::STR_BOOKMARKS}); } items.push_back({MenuAction::TOGGLE_BOOKMARK, StrId::STR_TOGGLE_BOOKMARK}); + items.push_back({MenuAction::DICTIONARY, StrId::STR_LOOKUP}); items.push_back({MenuAction::ROTATE_SCREEN, StrId::STR_ORIENTATION}); items.push_back({MenuAction::AUTO_PAGE_TURN, StrId::STR_AUTO_TURN_PAGES_PER_MIN}); items.push_back({MenuAction::GO_TO_PERCENT, StrId::STR_GO_TO_PERCENT}); @@ -49,21 +50,45 @@ void EpubReaderMenuActivity::onEnter() { void EpubReaderMenuActivity::onExit() { Activity::onExit(); } -void EpubReaderMenuActivity::loop() { - if (optionPopup.handleInput(mappedInput, [this] { requestUpdate(); })) return; +void EpubReaderMenuActivity::closeCancelled() { + ActivityResult result; + result.isCancelled = true; + result.data = MenuResult{-1, pendingOrientation, selectedPageTurnOption}; + setResult(std::move(result)); + finish(); +} - // Handle navigation - buttonNavigator.onNext([this] { - selectedIndex = ButtonNavigator::nextIndex(selectedIndex, static_cast(menuItems.size())); - requestUpdate(); - }); +bool EpubReaderMenuActivity::handleHomeGesture() { + closeCancelled(); + return true; +} - buttonNavigator.onPrevious([this] { - selectedIndex = ButtonNavigator::previousIndex(selectedIndex, static_cast(menuItems.size())); - requestUpdate(); - }); +void EpubReaderMenuActivity::loop() { + if (optionPopup.handleInput(mappedInput, [this] { requestUpdate(); })) { + // The popup acts on button press; if that input closed it, the trailing + // release must be swallowed below (Back would close the menu, Confirm + // would re-activate the selected item). + popupClosing = !optionPopup.isActive(); + return; + } + if (popupClosing) { + if (mappedInput.isPressed(MappedInputManager::Button::Back) || + mappedInput.isPressed(MappedInputManager::Button::Confirm)) { + return; // closing press still held + } + popupClosing = false; + if (mappedInput.wasReleased(MappedInputManager::Button::Back) || + mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { + return; // swallow the release that closed the popup + } + } - if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { + if (mappedInput.wasReleased(MappedInputManager::Button::Back)) { + closeCancelled(); + return; + } + + auto activateSelected = [this] { const auto selectedAction = menuItems[selectedIndex].action; if (selectedAction == MenuAction::ROTATE_SCREEN) { optionPopup.show(StrId::STR_ORIENTATION, orientationLabels.data(), static_cast(orientationLabels.size()), @@ -87,13 +112,48 @@ void EpubReaderMenuActivity::loop() { setResult(MenuResult{static_cast(selectedAction), pendingOrientation, selectedPageTurnOption}); finish(); + }; + + auto metrics = UITheme::getInstance().getMetrics(); + Rect screen = UITheme::getInstance().getScreenSafeArea(renderer, true, false); + const int contentTop = + screen.y + metrics.topPadding + metrics.headerHeight + metrics.tabBarHeight + metrics.verticalSpacing; + const int contentHeight = screen.height - contentTop - metrics.verticalSpacing; + switch (handleListTouch(selectedIndex, static_cast(menuItems.size()), contentTop, contentHeight, false)) { + case ListTouchResult::Activated: + activateSelected(); + return; + case ListTouchResult::Consumed: + return; + case ListTouchResult::None: + break; + } + + const auto swipe = mappedInput.wasSwipe(); + if (swipe == MappedInputManager::SwipeDir::Up) { + selectedIndex = ButtonNavigator::nextIndex(selectedIndex, static_cast(menuItems.size())); + requestUpdate(); return; - } else if (mappedInput.wasReleased(MappedInputManager::Button::Back)) { - ActivityResult result; - result.isCancelled = true; - result.data = MenuResult{-1, pendingOrientation, selectedPageTurnOption}; - setResult(std::move(result)); - finish(); + } + if (swipe == MappedInputManager::SwipeDir::Down) { + selectedIndex = ButtonNavigator::previousIndex(selectedIndex, static_cast(menuItems.size())); + requestUpdate(); + return; + } + + // Handle navigation + buttonNavigator.onNext([this] { + selectedIndex = ButtonNavigator::nextIndex(selectedIndex, static_cast(menuItems.size())); + requestUpdate(); + }); + + buttonNavigator.onPrevious([this] { + selectedIndex = ButtonNavigator::previousIndex(selectedIndex, static_cast(menuItems.size())); + requestUpdate(); + }); + + if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { + activateSelected(); return; } } diff --git a/src/activities/reader/EpubReaderMenuActivity.h b/src/activities/reader/EpubReaderMenuActivity.h index 1920ac8eed..5850f6ebb9 100644 --- a/src/activities/reader/EpubReaderMenuActivity.h +++ b/src/activities/reader/EpubReaderMenuActivity.h @@ -24,7 +24,8 @@ class EpubReaderMenuActivity final : public Activity { DISPLAY_QR, GO_HOME, SYNC, - DELETE_CACHE + DELETE_CACHE, + DICTIONARY }; explicit EpubReaderMenuActivity(GfxRenderer& renderer, MappedInputManager& mappedInput, const std::string& title, @@ -35,6 +36,7 @@ class EpubReaderMenuActivity final : public Activity { void onExit() override; void loop() override; void render(RenderLock&&) override; + bool handleHomeGesture() override; private: struct MenuItem { @@ -43,6 +45,7 @@ class EpubReaderMenuActivity final : public Activity { }; static std::vector buildMenuItems(bool hasFootnotes, bool hasBookmarks); + void closeCancelled(); // Fixed menu layout const std::vector menuItems; @@ -51,6 +54,9 @@ class EpubReaderMenuActivity final : public Activity { ButtonNavigator buttonNavigator; OptionPopup optionPopup; + // True while the button press that closed the popup is still held; its release + // must not fall through to the menu's own Back/Confirm handlers. + bool popupClosing = false; std::string title = "Reader Menu"; uint8_t pendingOrientation = 0; uint8_t selectedPageTurnOption = 0; diff --git a/src/activities/reader/EpubReaderPercentSelectionActivity.cpp b/src/activities/reader/EpubReaderPercentSelectionActivity.cpp index 3ef5088ad9..1beae9a62c 100644 --- a/src/activities/reader/EpubReaderPercentSelectionActivity.cpp +++ b/src/activities/reader/EpubReaderPercentSelectionActivity.cpp @@ -4,6 +4,7 @@ #include #include +#include #include #include "MappedInputManager.h" @@ -36,6 +37,38 @@ void EpubReaderPercentSelectionActivity::adjustPercent(const int delta) { } void EpubReaderPercentSelectionActivity::loop() { + auto& theme = UITheme::getInstance(); + auto metrics = theme.getMetrics(); + Rect screen = theme.getScreenSafeArea(renderer, true, false); + const int contentTop = screen.y + metrics.topPadding + metrics.headerHeight + metrics.verticalSpacing * 4; + constexpr int barWidth = 360; + constexpr int barHeight = 16; + const int barX = screen.x + (screen.width - barWidth) / 2; + const int barY = contentTop + metrics.verticalSpacing * 2; + int tx = 0; + int ty = 0; + + // Live drag on the slider: once a touch lands on the bar, the percent follows the + // finger until release. Runs before the Back handler because the release of a drag + // can also register as a swipe (e.g. the left-edge rightward back gesture) — the + // drag must consume it so it can't cancel the dialog or step the percent. + if (mappedInput.isScreenTouchHeld(tx, ty)) { + if (draggingBar || + (tx >= barX - 20 && tx < barX + barWidth + 20 && ty >= barY - 24 && ty < barY + barHeight + 24)) { + draggingBar = true; + const int dragged = std::clamp((tx - barX) * 100 / barWidth, 0, 100); + if (dragged != percent) { + percent = dragged; + requestUpdate(); + } + return; + } + } else if (draggingBar) { + // Release frame of a drag: swallow the tap/swipe events it produced. + draggingBar = false; + return; + } + // Back cancels, confirm selects, arrows adjust the percent. if (mappedInput.wasReleased(MappedInputManager::Button::Back)) { ActivityResult result; @@ -45,6 +78,23 @@ void EpubReaderPercentSelectionActivity::loop() { return; } + if (mappedInput.wasScreenTapped(tx, ty) && tx >= barX - 20 && tx < barX + barWidth + 20 && ty >= barY - 24 && + ty < barY + barHeight + 24) { + percent = std::clamp((tx - barX) * 100 / barWidth, 0, 100); + requestUpdate(); + return; + } + + const auto swipe = mappedInput.wasSwipe(); + if (swipe == MappedInputManager::SwipeDir::Right) { + adjustPercent(kLargeStep); + return; + } + if (swipe == MappedInputManager::SwipeDir::Left) { + adjustPercent(-kLargeStep); + return; + } + if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { setResult(PercentResult{percent}); finish(); diff --git a/src/activities/reader/EpubReaderPercentSelectionActivity.h b/src/activities/reader/EpubReaderPercentSelectionActivity.h index 8cba8664f2..7c20c45954 100644 --- a/src/activities/reader/EpubReaderPercentSelectionActivity.h +++ b/src/activities/reader/EpubReaderPercentSelectionActivity.h @@ -20,6 +20,9 @@ class EpubReaderPercentSelectionActivity final : public Activity { // Current percent value (0-100) shown on the slider. int percent = 0; + // True while a touch that landed on the slider bar is being dragged. + bool draggingBar = false; + ButtonNavigator buttonNavigator; // Change the current percent by a delta and clamp within bounds. diff --git a/src/activities/reader/KOReaderSyncActivity.cpp b/src/activities/reader/KOReaderSyncActivity.cpp index d4f7fef65d..cb299083ed 100644 --- a/src/activities/reader/KOReaderSyncActivity.cpp +++ b/src/activities/reader/KOReaderSyncActivity.cpp @@ -10,6 +10,7 @@ #include #include +#include #include "Epub/Section.h" #include "EpubReaderUtils.h" @@ -24,6 +25,19 @@ #include "fontIds.h" namespace { +std::string calculateDocumentHashForMethod(const std::string& path, const DocumentMatchMethod method) { + return method == DocumentMatchMethod::FILENAME ? KOReaderDocumentId::calculateFromFilename(path) + : KOReaderDocumentId::calculate(path); +} + +DocumentMatchMethod alternateMatchMethod(const DocumentMatchMethod method) { + return method == DocumentMatchMethod::FILENAME ? DocumentMatchMethod::BINARY : DocumentMatchMethod::FILENAME; +} + +const char* matchMethodName(const DocumentMatchMethod method) { + return method == DocumentMatchMethod::FILENAME ? "filename" : "binary"; +} + void syncTimeWithNTP() { // Stop SNTP if already running (can't reconfigure while running) if (esp_sntp_enabled()) { @@ -84,6 +98,21 @@ void KOReaderSyncActivity::saveProgressAndReturn(int spineIndex, int page) { void KOReaderSyncActivity::returnToReader() { activityManager.goToReader(epubPath); } +bool KOReaderSyncActivity::smartSyncEnabled() const { + return KOREADER_STORE.getSyncBehavior() == KOReaderSyncBehavior::SMART; +} + +void KOReaderSyncActivity::markAutoReturn() { autoReturnAt = millis() + AUTO_RETURN_DELAY_MS; } + +void KOReaderSyncActivity::completeAlreadySynced() { + { + RenderLock lock(*this); + state = SYNC_COMPLETE; + } + markAutoReturn(); + requestUpdate(true); +} + void KOReaderSyncActivity::onWifiSelectionComplete(const bool success) { if (!success) { LOG_DBG("KOSync", "WiFi connection failed, exiting"); @@ -113,12 +142,8 @@ void KOReaderSyncActivity::onWifiSelectionComplete(const bool success) { } void KOReaderSyncActivity::performSync() { - // Calculate document hash based on user's preferred method - if (KOREADER_STORE.getMatchMethod() == DocumentMatchMethod::FILENAME) { - documentHash = KOReaderDocumentId::calculateFromFilename(epubPath); - } else { - documentHash = KOReaderDocumentId::calculate(epubPath); - } + const DocumentMatchMethod primaryMethod = KOREADER_STORE.getMatchMethod(); + documentHash = calculateDocumentHashForMethod(epubPath, primaryMethod); if (documentHash.empty()) { { RenderLock lock(*this); @@ -128,8 +153,9 @@ void KOReaderSyncActivity::performSync() { requestUpdate(true); return; } + const std::string primaryHash = documentHash; - LOG_DBG("KOSync", "Document hash: %s", documentHash.c_str()); + LOG_DBG("KOSync", "Document hash (%s): %s", matchMethodName(primaryMethod), documentHash.c_str()); { RenderLock lock(*this); @@ -137,10 +163,42 @@ void KOReaderSyncActivity::performSync() { } requestUpdateAndWait(); - // Fetch remote progress - const auto result = KOReaderSyncClient::getProgress(documentHash, remoteProgress); + // Fetch remote progress. In smart mode, also probe the alternate document-id + // method and use the furthest remote state we can find. This avoids a stale + // local upload when another KOReader device synced the same book with a + // different document matching method. + auto result = KOReaderSyncClient::getProgress(documentHash, remoteProgress); + LOG_DBG("KOSync", "Primary remote (%s): result=%d http=%d doc=%s local=%.6f remote=%.6f xpath=%s", + matchMethodName(primaryMethod), result, KOReaderSyncClient::lastHttpCode, documentHash.c_str(), + localProgress.percentage, remoteProgress.percentage, remoteProgress.progress.c_str()); + + if (smartSyncEnabled()) { + const DocumentMatchMethod altMethod = alternateMatchMethod(primaryMethod); + const std::string altHash = calculateDocumentHashForMethod(epubPath, altMethod); + if (!altHash.empty() && altHash != documentHash) { + KOReaderProgress altProgress; + const auto altResult = KOReaderSyncClient::getProgress(altHash, altProgress); + LOG_DBG("KOSync", "Alternate remote (%s): result=%d http=%d doc=%s local=%.6f remote=%.6f xpath=%s", + matchMethodName(altMethod), altResult, KOReaderSyncClient::lastHttpCode, altHash.c_str(), + localProgress.percentage, altProgress.percentage, altProgress.progress.c_str()); + + if (altResult == KOReaderSyncClient::OK && + (result == KOReaderSyncClient::NOT_FOUND || altProgress.percentage > remoteProgress.percentage)) { + documentHash = altHash; + remoteProgress = std::move(altProgress); + result = KOReaderSyncClient::OK; + } + } + } if (result == KOReaderSyncClient::NOT_FOUND) { + if (smartSyncEnabled()) { + LOG_DBG("KOSync", "Smart sync: no remote progress found for known document hashes; uploading local %.6f", + localProgress.percentage); + performUpload(); + return; + } + // No remote progress - offer to upload { RenderLock lock(*this); @@ -174,8 +232,42 @@ void KOReaderSyncActivity::performSync() { return; } - SavedProgressPosition koPos = {remoteProgress.progress, remoteProgress.percentage}; - remotePosition = ProgressMapper::toCrossPoint(epub, koPos, renderer, currentSpineIndex, totalPagesInSpine); + // Prefer the exact spine/page from a crosspoint-sync rich position (lossless + // CrossPoint<->CrossPoint sync); fall back to the approximate XPath mapping + // for plain kosync servers or when the rich position cannot be applied. + std::optional richMapped; + if (remoteProgress.position.has_value()) { + richMapped = ProgressMapper::fromRichPosition(epub, *remoteProgress.position, renderer); + } + if (richMapped.has_value()) { + remotePosition = *richMapped; + } else { + SavedProgressPosition koPos = {remoteProgress.progress, remoteProgress.percentage}; + remotePosition = ProgressMapper::toCrossPoint(epub, koPos, renderer, currentSpineIndex, totalPagesInSpine); + } + + if (smartSyncEnabled()) { + static constexpr float SAME_PROGRESS_EPSILON = 0.001f; // 0.1 percentage points + const float delta = localProgress.percentage - remoteProgress.percentage; + LOG_DBG("KOSync", "Smart decision: doc=%s local=%.6f remote=%.6f delta=%.6f remoteXpath=%s mapped=%d/%d", + documentHash.c_str(), localProgress.percentage, remoteProgress.percentage, delta, + remoteProgress.progress.c_str(), remotePosition.spineIndex, remotePosition.pageNumber); + if (std::fabs(delta) <= SAME_PROGRESS_EPSILON) { + completeAlreadySynced(); + return; + } + + if (delta > 0) { + // Alternate hashes are only probes for newer remote state. Keep uploads + // on the user's configured matching method so its primary record heals. + documentHash = primaryHash; + performUpload(); + return; + } + + saveProgressAndReturn(remotePosition.spineIndex, remotePosition.pageNumber); + return; + } // localProgress was pre-computed in EpubReaderActivity before the Epub was released. { @@ -206,6 +298,45 @@ void KOReaderSyncActivity::performUpload() { progress.progress = localProgress.xpath; progress.percentage = localProgress.percentage; + // Rich CrossPoint position for crosspoint-sync servers (lossless + // CrossPoint<->CrossPoint sync); plain kosync servers ignore the extra field. + { + KOReaderRichPosition pos; + const float pct = localProgress.percentage < 0.0f ? 0.0f + : localProgress.percentage > 1.0f ? 1.0f + : localProgress.percentage; + pos.pctQ = static_cast(pct * 1000000.0f + 0.5f); + pos.spineIndex = static_cast(currentSpineIndex); + pos.pageNumber = static_cast(currentPage); + pos.totalPages = static_cast(totalPagesInSpine > 0 ? totalPagesInSpine : 1); + pos.paragraphIndex = currentParagraphIndex; + pos.xpath = localProgress.xpath; + progress.position = std::move(pos); + } + + // Optionally include document metadata (KOReader PR #15306) + if (KOREADER_STORE.getSendMetadata()) { + // The Epub is released before the sync network calls and is only reloaded on the + // remote-progress path (performSync). When uploading from NO_REMOTE_PROGRESS the + // Epub is still null, so reload it here and guard the title/author reads to avoid + // dereferencing a null Epub. Filename is derived from the path and is always safe. + ensureEpubLoaded(); + KOReaderMetadata meta; + const auto lastSlash = epubPath.rfind('/'); + meta.filename = (lastSlash != std::string::npos) ? epubPath.substr(lastSlash + 1) : epubPath; + if (epub) { + meta.title = epub->getTitle(); + meta.authors = epub->getAuthor(); + } else { + LOG_ERR("KOSync", "Epub unavailable for metadata; sending filename only"); + } + progress.metadata = std::move(meta); + } + + // Release the Epub before the network call so the TLS handshake has enough free heap + // (consistent with the release-before-sync pattern in performSync); nothing below needs it. + epub.reset(); + const auto result = KOReaderSyncClient::updateProgress(progress); // Drop the radio while user reads the result; full teardown happens at silent reboot. @@ -225,6 +356,7 @@ void KOReaderSyncActivity::performUpload() { RenderLock lock(*this); state = UPLOAD_COMPLETE; } + markAutoReturn(); requestUpdate(true); } @@ -368,10 +500,12 @@ void KOReaderSyncActivity::render(RenderLock&&) { return; } - if (state == UPLOAD_COMPLETE) { - UITheme::drawCenteredText(renderer, screen, UI_10_FONT_ID, top, tr(STR_UPLOAD_SUCCESS), true, EpdFontFamily::BOLD); + if (state == UPLOAD_COMPLETE || state == SYNC_COMPLETE) { + UITheme::drawCenteredText(renderer, screen, UI_10_FONT_ID, top, + state == UPLOAD_COMPLETE ? tr(STR_UPLOAD_SUCCESS) : tr(STR_ALREADY_SYNCED), true, + EpdFontFamily::BOLD); - const auto labels = mappedInput.mapLabels(tr(STR_BACK), "", "", ""); + const auto labels = mappedInput.mapLabels(tr(STR_BACK), tr(STR_DONE), "", ""); GUI.drawButtonHints(renderer, labels.btn1, labels.btn2, labels.btn3, labels.btn4); renderer.displayBuffer(); return; @@ -389,14 +523,48 @@ void KOReaderSyncActivity::render(RenderLock&&) { } void KOReaderSyncActivity::loop() { - if (state == NO_CREDENTIALS || state == SYNC_FAILED || state == UPLOAD_COMPLETE) { - if (mappedInput.wasReleased(MappedInputManager::Button::Back)) { + if (state == NO_CREDENTIALS || state == SYNC_FAILED || state == UPLOAD_COMPLETE || state == SYNC_COMPLETE) { + if (autoReturnAt != 0 && millis() >= autoReturnAt) { + returnToReader(); + return; + } + if (mappedInput.wasReleased(MappedInputManager::Button::Back) || + mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { returnToReader(); } return; } if (state == SHOWING_RESULT) { + auto chooseSelected = [this] { + if (selectedOption == 0) { + saveProgressAndReturn(remotePosition.spineIndex, remotePosition.pageNumber); + } else if (selectedOption == 1) { + performUpload(); + } + }; + + { + const auto& metrics = UITheme::getInstance().getMetrics(); + const Rect screen = UITheme::getInstance().getScreenSafeArea(renderer, true, false); + const int top = screen.y + metrics.topPadding + metrics.headerHeight + metrics.verticalSpacing; + constexpr int optionHeight = 30; + int touchedOption = -1; + const auto touch = mappedInput.rowTouch(touchedOption, top + 230 - 2, optionHeight, 2); + if (touch == MappedInputManager::RowTouch::Down) { + if (selectedOption != touchedOption) { + selectedOption = touchedOption; + requestUpdate(); + } + return; + } + if (touch == MappedInputManager::RowTouch::Tap) { + selectedOption = touchedOption; + chooseSelected(); + return; + } + } + // Navigate options if (mappedInput.wasReleased(MappedInputManager::Button::Up) || mappedInput.wasReleased(MappedInputManager::Button::Left)) { @@ -409,12 +577,7 @@ void KOReaderSyncActivity::loop() { } if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { - if (selectedOption == 0) { - saveProgressAndReturn(remotePosition.spineIndex, remotePosition.pageNumber); - } else if (selectedOption == 1) { - // Upload local progress - performUpload(); - } + chooseSelected(); } if (mappedInput.wasReleased(MappedInputManager::Button::Back)) { @@ -424,6 +587,21 @@ void KOReaderSyncActivity::loop() { } if (state == NO_REMOTE_PROGRESS) { + int tx = 0; + int ty = 0; + if (mappedInput.wasScreenTapped(tx, ty) && ty > renderer.getScreenHeight() / 3 && + ty < renderer.getScreenHeight() * 2 / 3) { + if (documentHash.empty()) { + if (KOREADER_STORE.getMatchMethod() == DocumentMatchMethod::FILENAME) { + documentHash = KOReaderDocumentId::calculateFromFilename(epubPath); + } else { + documentHash = KOReaderDocumentId::calculate(epubPath); + } + } + performUpload(); + return; + } + if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { // Calculate hash if not done yet if (documentHash.empty()) { diff --git a/src/activities/reader/KOReaderSyncActivity.h b/src/activities/reader/KOReaderSyncActivity.h index b3b82d013d..39473198f3 100644 --- a/src/activities/reader/KOReaderSyncActivity.h +++ b/src/activities/reader/KOReaderSyncActivity.h @@ -40,7 +40,7 @@ class KOReaderSyncActivity final : public Activity { void onExit() override; void loop() override; void render(RenderLock&&) override; - bool preventAutoSleep() override { return state == CONNECTING || state == SYNCING; } + bool preventAutoSleep() override { return state == CONNECTING || state == SYNCING || state == UPLOADING; } private: enum State { @@ -50,6 +50,7 @@ class KOReaderSyncActivity final : public Activity { SHOWING_RESULT, UPLOADING, UPLOAD_COMPLETE, + SYNC_COMPLETE, NO_REMOTE_PROGRESS, SYNC_FAILED, NO_CREDENTIALS @@ -78,6 +79,10 @@ class KOReaderSyncActivity final : public Activity { // Selection in result screen (0=Apply, 1=Upload) int selectedOption = 0; + // Timed return for successful smart-sync terminal states. + unsigned long autoReturnAt = 0; + static constexpr unsigned long AUTO_RETURN_DELAY_MS = 1200; + // Tracks whether this session activated WiFi. Set in onEnter past the credentials // check; checked in onExit to decide whether to silent-reboot. Can't rely on // WiFi.getMode() because performUpload() calls esp_wifi_stop() on the way out, @@ -87,6 +92,9 @@ class KOReaderSyncActivity final : public Activity { void onWifiSelectionComplete(bool success); void performSync(); void performUpload(); + bool smartSyncEnabled() const; + void markAutoReturn(); + void completeAlreadySynced(); void ensureEpubLoaded(); void saveProgressAndReturn(int spineIndex, int page); void returnToReader(); diff --git a/src/activities/reader/QrDisplayActivity.cpp b/src/activities/reader/QrDisplayActivity.cpp index 2bcf330ab1..29cbdc1882 100644 --- a/src/activities/reader/QrDisplayActivity.cpp +++ b/src/activities/reader/QrDisplayActivity.cpp @@ -16,8 +16,10 @@ void QrDisplayActivity::onEnter() { void QrDisplayActivity::onExit() { Activity::onExit(); } void QrDisplayActivity::loop() { + int x = 0; + int y = 0; if (mappedInput.wasReleased(MappedInputManager::Button::Back) || - mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { + mappedInput.wasReleased(MappedInputManager::Button::Confirm) || mappedInput.wasScreenTapped(x, y)) { finish(); return; } diff --git a/src/activities/reader/ReaderActivity.cpp b/src/activities/reader/ReaderActivity.cpp index e4c040df91..8d1b89ea2d 100644 --- a/src/activities/reader/ReaderActivity.cpp +++ b/src/activities/reader/ReaderActivity.cpp @@ -2,8 +2,11 @@ #include #include +#include #include +#include + #include "CrossPointSettings.h" #include "Epub.h" #include "EpubReaderActivity.h" @@ -14,6 +17,7 @@ #include "XtcReaderActivity.h" #include "activities/util/BmpViewerActivity.h" #include "activities/util/FullScreenMessageActivity.h" +#include "components/UITheme.h" bool ReaderActivity::isXtcFile(const std::string& path) { return FsHelpers::hasXtcExtension(path); } @@ -35,7 +39,23 @@ std::unique_ptr ReaderActivity::loadEpub(const std::string& path) { LOG_ERR("READER", "Failed to allocate EPUB object"); return nullptr; } - if (epub->load(true, SETTINGS.embeddedStyle == 0)) { + // First open: building the spine/TOC index (book.bin) takes a couple of seconds. Show the + // indexing popup so it isn't a silent wait on the home screen. The cachePath/hash is known at + // construction, so this check is valid before load(); a cached open loads in a blink -> no popup. + const bool uncached = !Storage.exists((epub->getCachePath() + "/book.bin").c_str()); + if (uncached) { + GUI.drawPopup(renderer, tr(STR_INDEXING)); + } + bool loaded; + { + // Lend the framebuffer's 48 KB to the container parse (expat + spine/TOC + // build). The popup just displayed stays on the panel; whichever reader + // activity follows redraws the full screen anyway. + std::optional loan; + if (uncached) loan.emplace(renderer); + loaded = epub->load(true, SETTINGS.embeddedStyle == 0); + } + if (loaded) { return epub; } diff --git a/src/activities/reader/ReaderActivity.h b/src/activities/reader/ReaderActivity.h index 52625ecc6e..251030f310 100644 --- a/src/activities/reader/ReaderActivity.h +++ b/src/activities/reader/ReaderActivity.h @@ -11,7 +11,8 @@ class Txt; class ReaderActivity final : public Activity { std::string initialBookPath; std::string currentBookPath; // Track current book path for navigation - static std::unique_ptr loadEpub(const std::string& path); + // Non-static (unlike the other loaders): draws the first-open indexing popup, which needs the renderer. + std::unique_ptr loadEpub(const std::string& path); static std::unique_ptr loadXtc(const std::string& path); static std::unique_ptr loadTxt(const std::string& path); static bool isXtcFile(const std::string& path); diff --git a/src/activities/reader/ReaderUtils.h b/src/activities/reader/ReaderUtils.h index 4b37451ad4..9ef55c200c 100644 --- a/src/activities/reader/ReaderUtils.h +++ b/src/activities/reader/ReaderUtils.h @@ -2,18 +2,27 @@ #include #include +#include #include #include +#include #include "MappedInputManager.h" +#include "activities/ActivityManager.h" namespace ReaderUtils { constexpr unsigned long GO_HOME_MS = 1000; +constexpr unsigned long GO_BACK_OR_HOME_MS = GO_HOME_MS; constexpr unsigned long SKIP_HOLD_MS = 700; constexpr unsigned long BOOKMARK_HOLD_MS = 400; constexpr unsigned long BOOKMARK_MESSAGE_DURATION_MS = 2500; +enum ReaderTouchAction : freeink::ui::ActionId { + READER_TOUCH_PREV = 1, + READER_TOUCH_NEXT = 3, +}; + inline void applyOrientation(GfxRenderer& renderer, const uint8_t orientation) { switch (orientation) { case CrossPointSettings::ORIENTATION::PORTRAIT: @@ -59,12 +68,63 @@ inline PageTurnResult detectPageTurn(const MappedInputManager& input) { return {prev, next, tiltPrev || tiltNext}; } -inline void displayWithRefreshCycle(const GfxRenderer& renderer, int& pagesUntilFullRefresh) { +struct TouchPageTurn { + bool prev; + bool next; + unsigned long heldMs; +}; + +inline TouchPageTurn detectTouchPageTurn(GfxRenderer& renderer, const MappedInputManager& input) { + TouchPageTurn result{false, false, 0}; + if (!SETTINGS.touchReaderControls || !input.hasTouch()) { + return result; + } + + int x = 0; + int y = 0; + if (!input.wasScreenTapped(x, y)) { + return result; + } + + const int16_t width = static_cast(renderer.getScreenWidth()); + const int16_t height = static_cast(renderer.getScreenHeight()); + const int16_t previousZoneWidth = width / 3; + const freeink::ui::TapZone zones[] = { + {freeink::ui::Rect{0, 0, previousZoneWidth, height}, READER_TOUCH_PREV}, + {freeink::ui::Rect{previousZoneWidth, 0, static_cast(width - previousZoneWidth), height}, + READER_TOUCH_NEXT}, + }; + + for (const auto& zone : zones) { + if (!zone.enabled || !zone.rect.contains(static_cast(x), static_cast(y))) continue; + result.prev = zone.action == READER_TOUCH_PREV; + result.next = zone.action == READER_TOUCH_NEXT; + break; + } + result.heldMs = gpio.lastTouchHeldMs(); + return result; +} + +// Reader menu opens on a downward swipe from the top edge (replaces the old center tap-and-hold). +inline bool isTouchMenuGesture(const MappedInputManager& input) { + return SETTINGS.touchReaderControls && input.hasTouch() && input.wasMenuGesture(); +} + +// One helper, blocking or deferred: the async form starts the refresh and +// returns so the caller can overlap CPU work with the panel's refresh time. +// Async callers must not touch the framebuffer until +// renderer.waitRefreshComplete() and must rebuild the differential baseline +// before the next page turn (the tiled grayscale cleanup does). +inline void displayWithRefreshCycle(const GfxRenderer& renderer, int& pagesUntilFullRefresh, bool async = false) { + const auto mode = (pagesUntilFullRefresh <= 1) ? HalDisplay::HALF_REFRESH : HalDisplay::FAST_REFRESH; + if (async) { + renderer.displayBufferAsync(mode); + } else { + renderer.displayBuffer(mode); + } if (pagesUntilFullRefresh <= 1) { - renderer.displayBuffer(HalDisplay::HALF_REFRESH); pagesUntilFullRefresh = SETTINGS.getRefreshFrequency(); } else { - renderer.displayBuffer(); pagesUntilFullRefresh--; } } @@ -96,4 +156,37 @@ void renderAntiAliased(GfxRenderer& renderer, RenderFn&& renderFn) { renderer.restoreBwBuffer(); } +struct BackNavCallback { + void* ctx; + void (*fn)(void*); +}; + +// Returns true if the back button was consumed (caller should return). +// Long press (>= GO_BACK_OR_HOME_MS): +// - default: go to file browser +// - with backShortToFileBrowser: go home +// Short press (< GO_BACK_OR_HOME_MS): +// - default: go home +// - with backShortToFileBrowser: go to file browser. +inline bool handleBackNavigation(const MappedInputManager& mappedInput, ActivityManager& activityManager, + const char* filePath, BackNavCallback goHome) { + if (mappedInput.isPressed(MappedInputManager::Button::Back) && mappedInput.getHeldTime() >= GO_BACK_OR_HOME_MS) { + if (SETTINGS.backShortToFileBrowser) { + goHome.fn(goHome.ctx); + } else { + activityManager.goToFileBrowser(filePath); + } + return true; + } + if (mappedInput.wasReleased(MappedInputManager::Button::Back) && mappedInput.getHeldTime() < GO_BACK_OR_HOME_MS) { + if (SETTINGS.backShortToFileBrowser) { + activityManager.goToFileBrowser(filePath); + } else { + goHome.fn(goHome.ctx); + } + return true; + } + return false; +} + } // namespace ReaderUtils diff --git a/src/activities/reader/TxtReaderActivity.cpp b/src/activities/reader/TxtReaderActivity.cpp index 0464c614b9..8e8489895d 100644 --- a/src/activities/reader/TxtReaderActivity.cpp +++ b/src/activities/reader/TxtReaderActivity.cpp @@ -60,20 +60,15 @@ void TxtReaderActivity::onExit() { } void TxtReaderActivity::loop() { - // Long press BACK (1s+) goes to file selection - if (mappedInput.isPressed(MappedInputManager::Button::Back) && mappedInput.getHeldTime() >= ReaderUtils::GO_HOME_MS) { - activityManager.goToFileBrowser(txt ? txt->getPath() : ""); + if (ReaderUtils::handleBackNavigation(mappedInput, activityManager, txt ? txt->getPath().c_str() : "", + {this, [](void* ctx) { static_cast(ctx)->onGoHome(); }})) { return; } - // Short press BACK goes directly to home - if (mappedInput.wasReleased(MappedInputManager::Button::Back) && - mappedInput.getHeldTime() < ReaderUtils::GO_HOME_MS) { - onGoHome(); - return; - } - - const auto [prevTriggered, nextTriggered, fromTilt] = ReaderUtils::detectPageTurn(mappedInput); + const auto touch = ReaderUtils::detectTouchPageTurn(renderer, mappedInput); + auto [prevTriggered, nextTriggered, fromTilt] = ReaderUtils::detectPageTurn(mappedInput); + prevTriggered = prevTriggered || touch.prev; + nextTriggered = nextTriggered || touch.next; if (!prevTriggered && !nextTriggered) { return; } @@ -415,7 +410,7 @@ void TxtReaderActivity::renderPage() { void TxtReaderActivity::renderStatusBar() const { const float progress = totalPages > 0 ? (currentPage + 1) * 100.0f / totalPages : 0; std::string title; - if (SETTINGS.statusBarTitle != CrossPointSettings::STATUS_BAR_TITLE::HIDE_TITLE) { + if (SETTINGS.statusBarSpec().showsTitle()) { title = txt->getTitle(); } GUI.drawStatusBar(renderer, progress, currentPage + 1, totalPages, title); diff --git a/src/activities/reader/XtcReaderActivity.cpp b/src/activities/reader/XtcReaderActivity.cpp index d4af3e9b73..068b92fde5 100644 --- a/src/activities/reader/XtcReaderActivity.cpp +++ b/src/activities/reader/XtcReaderActivity.cpp @@ -53,40 +53,76 @@ void XtcReaderActivity::onExit() { xtc.reset(); } +void XtcReaderActivity::openChapterSelection() { + if (xtc && xtc->hasChapters() && !xtc->getChapters().empty()) { + startActivityForResult(std::make_unique(renderer, mappedInput, xtc, currentPage), + [this](const ActivityResult& result) { + if (!result.isCancelled) { + currentPage = std::get(result.data).page; + } + }); + } +} + void XtcReaderActivity::loop() { - // Enter chapter selection activity - if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { - if (xtc && xtc->hasChapters() && !xtc->getChapters().empty()) { - startActivityForResult( - std::make_unique(renderer, mappedInput, xtc, currentPage), - [this](const ActivityResult& result) { - if (!result.isCancelled) { - currentPage = std::get(result.data).page; - } - }); + if (!xtc) { + return; + } + + const auto touch = ReaderUtils::detectTouchPageTurn(renderer, mappedInput); + + const bool atEndOfBook = currentPage >= xtc->getPageCount(); + + // While the end screen suggestion menu is showing it owns Confirm/Back/navigation + // input. Anything it doesn't handle (e.g. long-press Back to the file browser) falls + // through to the regular handlers below; page turns are absorbed by the end-of-book + // block. + if (atEndOfBook && endOfBookOptions.menuActive()) { + std::string openPath; + switch (endOfBookOptions.handleMenuInput(mappedInput, &openPath)) { + case EndOfBookOptions::Action::OpenBook: + activityManager.goToReader(openPath); + return; + case EndOfBookOptions::Action::GoHome: + onGoHome(); + return; + case EndOfBookOptions::Action::LastPage: + currentPage = xtc->getPageCount() > 0 ? xtc->getPageCount() - 1 : 0; + requestUpdate(); + return; + case EndOfBookOptions::Action::Redraw: + requestUpdate(); + return; + case EndOfBookOptions::Action::None: + break; } } - // Long press BACK (1s+) goes to file selection - if (mappedInput.isPressed(MappedInputManager::Button::Back) && mappedInput.getHeldTime() >= ReaderUtils::GO_HOME_MS) { - activityManager.goToFileBrowser(xtc ? xtc->getPath() : ""); - return; + // Enter chapter selection activity + if (mappedInput.wasReleased(MappedInputManager::Button::Confirm) || ReaderUtils::isTouchMenuGesture(mappedInput)) { + openChapterSelection(); } - // Short press BACK goes directly to home - if (mappedInput.wasReleased(MappedInputManager::Button::Back) && - mappedInput.getHeldTime() < ReaderUtils::GO_HOME_MS) { - onGoHome(); + if (ReaderUtils::handleBackNavigation(mappedInput, activityManager, xtc ? xtc->getPath().c_str() : "", + {this, [](void* ctx) { static_cast(ctx)->onGoHome(); }})) { return; } - const auto [prevTriggered, nextTriggered, fromTilt] = ReaderUtils::detectPageTurn(mappedInput); + auto [prevTriggered, nextTriggered, fromTilt] = ReaderUtils::detectPageTurn(mappedInput); + prevTriggered = prevTriggered || touch.prev; + nextTriggered = nextTriggered || touch.next; if (!prevTriggered && !nextTriggered) { return; } - // At end of the book, forward button goes home and back button returns to last page + // At end of the book with no suggestion menu, forward button goes home and back + // button returns to last page if (currentPage >= xtc->getPageCount()) { + if (endOfBookOptions.menuActive()) { + // Selection movement was handled above; absorb leftover page-turn triggers so + // e.g. "previous" at the top of the list doesn't jump back into the book + return; + } if (nextTriggered) { onGoHome(); } else { @@ -96,8 +132,9 @@ void XtcReaderActivity::loop() { return; } - const bool skipPages = !fromTilt && SETTINGS.longPressButtonBehavior == SETTINGS.CHAPTER_SKIP && - mappedInput.getHeldTime() > ReaderUtils::SKIP_HOLD_MS; + const unsigned long heldMs = (touch.prev || touch.next) ? touch.heldMs : mappedInput.getHeldTime(); + const bool skipPages = + !fromTilt && SETTINGS.longPressButtonBehavior == SETTINGS.CHAPTER_SKIP && heldMs > ReaderUtils::SKIP_HOLD_MS; const int skipAmount = skipPages ? 10 : 1; if (prevTriggered) { @@ -123,9 +160,11 @@ void XtcReaderActivity::render(RenderLock&&) { // Bounds check if (currentPage >= xtc->getPageCount()) { - // Show end of book screen + // Show end of book screen. Sole load site: runs on the render task (serialized by + // RenderLock); the main task only reads the suggestions once the flag is published. + endOfBookOptions.loadOnce(xtc->getPath()); renderer.clearScreen(); - renderer.drawCenteredText(UI_12_FONT_ID, 300, tr(STR_END_OF_BOOK), true, EpdFontFamily::BOLD); + endOfBookOptions.render(renderer, mappedInput); renderer.displayBuffer(); return; } @@ -135,10 +174,10 @@ void XtcReaderActivity::render(RenderLock&&) { } XtcReaderActivity::StatusBarInfo XtcReaderActivity::getStatusBarInfo() const { + const auto sb = SETTINGS.statusBarSpec(); const int bookPageCount = static_cast(xtc->getPageCount()); const int bookPage = static_cast(currentPage) + 1; - std::string title = - SETTINGS.statusBarTitle == CrossPointSettings::STATUS_BAR_TITLE::BOOK_TITLE ? xtc->getTitle() : ""; + std::string title = sb.titleMode == CrossPointSettings::STATUS_BAR_TITLE::BOOK_TITLE ? xtc->getTitle() : ""; if (!xtc->hasChapters()) { return StatusBarInfo{bookPage, bookPageCount, std::move(title)}; @@ -153,7 +192,7 @@ XtcReaderActivity::StatusBarInfo XtcReaderActivity::getStatusBarInfo() const { return StatusBarInfo{bookPage, bookPageCount, std::move(title)}; } - if (SETTINGS.statusBarTitle == CrossPointSettings::STATUS_BAR_TITLE::CHAPTER_TITLE) { + if (sb.titleMode == CrossPointSettings::STATUS_BAR_TITLE::CHAPTER_TITLE) { title = chapterIt->name.empty() ? tr(STR_UNNAMED) : chapterIt->name; } @@ -162,9 +201,10 @@ XtcReaderActivity::StatusBarInfo XtcReaderActivity::getStatusBarInfo() const { } void XtcReaderActivity::renderStatusBarOverlay(const StatusBarOverlayPosition position) const { - const bool drawBottom = SETTINGS.xtcStatusBarMode == CrossPointSettings::XTC_STATUS_BAR_MODE::XTC_STATUS_BAR_BOTTOM && + const auto sb = SETTINGS.statusBarSpec(); + const bool drawBottom = sb.xtcMode == CrossPointSettings::XTC_STATUS_BAR_MODE::XTC_STATUS_BAR_BOTTOM && position == StatusBarOverlayPosition::Bottom; - const bool drawTop = SETTINGS.xtcStatusBarMode == CrossPointSettings::XTC_STATUS_BAR_MODE::XTC_STATUS_BAR_TOP && + const bool drawTop = sb.xtcMode == CrossPointSettings::XTC_STATUS_BAR_MODE::XTC_STATUS_BAR_TOP && position == StatusBarOverlayPosition::Top; if (!drawBottom && !drawTop) { return; @@ -376,7 +416,7 @@ void XtcReaderActivity::renderPage() { free(pageBuffer); - if (SETTINGS.xtcStatusBarMode == CrossPointSettings::XTC_STATUS_BAR_MODE::XTC_STATUS_BAR_TOP) { + if (SETTINGS.statusBarSpec().xtcMode == CrossPointSettings::XTC_STATUS_BAR_MODE::XTC_STATUS_BAR_TOP) { renderStatusBarOverlay(StatusBarOverlayPosition::Top); } else { renderStatusBarOverlay(StatusBarOverlayPosition::Bottom); diff --git a/src/activities/reader/XtcReaderActivity.h b/src/activities/reader/XtcReaderActivity.h index f020b0b04a..872b20c79f 100644 --- a/src/activities/reader/XtcReaderActivity.h +++ b/src/activities/reader/XtcReaderActivity.h @@ -12,6 +12,7 @@ #include #include +#include "EndOfBookOptions.h" #include "activities/Activity.h" class XtcReaderActivity final : public Activity { @@ -19,6 +20,8 @@ class XtcReaderActivity final : public Activity { uint32_t currentPage = 0; int pagesUntilFullRefresh = 0; + // Next-book suggestion menu for the End-of-Book screen + EndOfBookOptions endOfBookOptions; enum class StatusBarOverlayPosition { Bottom, Top }; struct StatusBarInfo { @@ -28,6 +31,8 @@ class XtcReaderActivity final : public Activity { }; void renderPage(); + // Opens chapter selection when the book has chapters (short-press Confirm); no-op otherwise + void openChapterSelection(); void renderStatusBarOverlay(StatusBarOverlayPosition position) const; StatusBarInfo getStatusBarInfo() const; void saveProgress() const; diff --git a/src/activities/reader/XtcReaderChapterSelectionActivity.cpp b/src/activities/reader/XtcReaderChapterSelectionActivity.cpp index 99d6b28dd8..605a1e1d0b 100644 --- a/src/activities/reader/XtcReaderChapterSelectionActivity.cpp +++ b/src/activities/reader/XtcReaderChapterSelectionActivity.cpp @@ -56,17 +56,63 @@ void XtcReaderChapterSelectionActivity::loop() { const int pageItems = getPageItems(); const int totalItems = static_cast(xtc->getChapters().size()); - if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { + if (mappedInput.wasReleased(MappedInputManager::Button::Back)) { + ActivityResult result; + result.isCancelled = true; + setResult(std::move(result)); + finish(); + return; + } + + auto selectChapter = [this] { const auto& chapters = xtc->getChapters(); if (!chapters.empty() && selectorIndex >= 0 && selectorIndex < static_cast(chapters.size())) { setResult(PageResult{chapters[selectorIndex].startPage}); finish(); } - } else if (mappedInput.wasReleased(MappedInputManager::Button::Back)) { - ActivityResult result; - result.isCancelled = true; - setResult(std::move(result)); - finish(); + }; + + const auto orientation = renderer.getOrientation(); + const bool isLandscapeCw = orientation == GfxRenderer::Orientation::LandscapeClockwise; + const bool isLandscapeCcw = orientation == GfxRenderer::Orientation::LandscapeCounterClockwise; + const bool isPortraitInverted = orientation == GfxRenderer::Orientation::PortraitInverted; + const int hintGutterWidth = (isLandscapeCw || isLandscapeCcw) ? 30 : 0; + const int contentX = isLandscapeCw ? hintGutterWidth : 0; + const int contentWidth = renderer.getScreenWidth() - hintGutterWidth; + const int contentY = isPortraitInverted ? 50 : 0; + const int listTop = 60 + contentY; + int row = -1; + const auto touch = mappedInput.rowTouch(row, listTop, 30, pageItems, contentX, contentX + contentWidth); + if (touch != MappedInputManager::RowTouch::None) { + const int touched = selectorIndex / pageItems * pageItems + row; + if (touched >= 0 && touched < totalItems) { + if (touch == MappedInputManager::RowTouch::Down) { + if (selectorIndex != touched) { + selectorIndex = touched; + requestUpdate(); + } + } else { + selectorIndex = touched; + selectChapter(); + } + return; + } + } + + const auto swipe = mappedInput.wasSwipe(); + if (swipe == MappedInputManager::SwipeDir::Up) { + selectorIndex = ButtonNavigator::nextPageIndex(selectorIndex, totalItems, pageItems); + requestUpdate(); + return; + } + if (swipe == MappedInputManager::SwipeDir::Down) { + selectorIndex = ButtonNavigator::previousPageIndex(selectorIndex, totalItems, pageItems); + requestUpdate(); + return; + } + + if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { + selectChapter(); } buttonNavigator.onNextRelease([this, totalItems] { diff --git a/src/activities/settings/ClearCacheActivity.cpp b/src/activities/settings/ClearCacheActivity.cpp index b0dcbfbb98..23ee1066ef 100644 --- a/src/activities/settings/ClearCacheActivity.cpp +++ b/src/activities/settings/ClearCacheActivity.cpp @@ -14,6 +14,14 @@ void ClearCacheActivity::onEnter() { Activity::onEnter(); state = WARNING; + const char* options[] = {tr(STR_CANCEL), tr(STR_CLEAR_BUTTON)}; + confirmPopup.show(tr(STR_CLEAR_READING_CACHE), options, 2, 0, [this](int idx) { + if (idx == 1) { + beginClear(); + } else { + goBack(); + } + }); requestUpdate(); } @@ -35,6 +43,8 @@ void ClearCacheActivity::render(RenderLock&&) { renderer.drawCenteredText(UI_10_FONT_ID, pageHeight / 2 + 10, tr(STR_CLEAR_CACHE_WARNING_3), true); renderer.drawCenteredText(UI_10_FONT_ID, pageHeight / 2 + 30, tr(STR_CLEAR_CACHE_WARNING_4), true); + if (confirmPopup.processRender(renderer, mappedInput)) return; + const auto labels = mappedInput.mapLabels(tr(STR_CANCEL), tr(STR_CLEAR_BUTTON), "", ""); GUI.drawButtonHints(renderer, labels.btn1, labels.btn2, labels.btn3, labels.btn4); renderer.displayBuffer(); @@ -73,6 +83,16 @@ void ClearCacheActivity::render(RenderLock&&) { } } +void ClearCacheActivity::beginClear() { + LOG_DBG("CLEAR_CACHE", "User confirmed, starting cache clear"); + { + RenderLock lock(*this); + state = CLEARING; + } + requestUpdateAndWait(); + clearCache(); +} + void ClearCacheActivity::clearCache() { LOG_DBG("CLEAR_CACHE", "Clearing cache..."); @@ -122,15 +142,10 @@ void ClearCacheActivity::clearCache() { void ClearCacheActivity::loop() { if (state == WARNING) { - if (mappedInput.wasPressed(MappedInputManager::Button::Confirm)) { - LOG_DBG("CLEAR_CACHE", "User confirmed, starting cache clear"); - { - RenderLock lock(*this); - state = CLEARING; - } - requestUpdateAndWait(); + if (confirmPopup.handleInput(mappedInput, [this] { requestUpdate(); })) return; - clearCache(); + if (mappedInput.wasPressed(MappedInputManager::Button::Confirm)) { + beginClear(); } if (mappedInput.wasPressed(MappedInputManager::Button::Back)) { @@ -141,7 +156,9 @@ void ClearCacheActivity::loop() { } if (state == SUCCESS || state == FAILED) { - if (mappedInput.wasPressed(MappedInputManager::Button::Back)) { + int x = 0; + int y = 0; + if (mappedInput.wasPressed(MappedInputManager::Button::Back) || mappedInput.wasScreenTapped(x, y)) { goBack(); } return; diff --git a/src/activities/settings/ClearCacheActivity.h b/src/activities/settings/ClearCacheActivity.h index 712f7a9ccd..fdb073e08c 100644 --- a/src/activities/settings/ClearCacheActivity.h +++ b/src/activities/settings/ClearCacheActivity.h @@ -3,6 +3,7 @@ #include #include "activities/Activity.h" +#include "components/OptionPopup.h" class ClearCacheActivity final : public Activity { public: @@ -24,5 +25,7 @@ class ClearCacheActivity final : public Activity { int clearedCount = 0; int failedCount = 0; + OptionPopup confirmPopup; + void beginClear(); void clearCache(); }; diff --git a/src/activities/settings/ClockOffsetActivity.cpp b/src/activities/settings/ClockOffsetActivity.cpp index 2000dacfc6..614bbee44c 100644 --- a/src/activities/settings/ClockOffsetActivity.cpp +++ b/src/activities/settings/ClockOffsetActivity.cpp @@ -18,6 +18,8 @@ constexpr uint8_t MAX_NEG_HOURS = 12; constexpr uint8_t MINUTE_STEPS = 4; // 0, 15, 30, 45 constexpr uint8_t MINUTES_PER_QUARTER = 15; constexpr uint8_t BIAS_QUARTER_HOURS = 48; // 0 stored = UTC-12, 48 stored = UTC+0 +constexpr int TOUCH_BUTTON_SIZE = 44; +constexpr int TOUCH_BUTTON_GAP = 18; // Convert a (sign, hours, quarter) triple into the biased storage value. // Returns a value in [0, 104]. @@ -43,6 +45,10 @@ void decodeOffset(uint8_t biased, uint8_t& sign, uint8_t& hours, uint8_t& quarte hours = static_cast(signedQuarter / 4); quarter = static_cast(signedQuarter % 4); } + +bool contains(const Rect& rect, const int x, const int y) { + return x >= rect.x && x < rect.x + rect.width && y >= rect.y && y < rect.y + rect.height; +} } // namespace void ClockOffsetActivity::onEnter() { @@ -108,6 +114,71 @@ void ClockOffsetActivity::adjustActiveField(int delta) { } } +bool ClockOffsetActivity::fieldFromPoint(const int x, const int y, Field& field) const { + const auto pageWidth = renderer.getScreenWidth(); + const auto pageHeight = renderer.getScreenHeight(); + const int centreY = pageHeight / 2 - 40; + auto widthOf = [&](const char* s) { return renderer.getTextWidth(UI_12_FONT_ID, s, EpdFontFamily::BOLD); }; + constexpr int fieldPaddingX = 6; + constexpr int labelGap = 16; + constexpr int fieldGap = 12; + constexpr int colonGap = 5; + const int lineHeight = renderer.getLineHeight(UI_12_FONT_ID); + const int fieldHeight = lineHeight + 2; + + const int labelWidth = widthOf("UTC"); + const int signBoxW = std::max(widthOf("+"), widthOf("-")) + fieldPaddingX * 2; + const int hoursBoxW = std::max(widthOf("14"), widthOf("12")) + fieldPaddingX * 2; + const int colonWidth = widthOf(":"); + const int minutesBoxW = std::max({widthOf("00"), widthOf("15"), widthOf("30"), widthOf("45")}) + fieldPaddingX * 2; + const int totalWidth = + labelWidth + labelGap + signBoxW + fieldGap + hoursBoxW + colonGap + colonWidth + colonGap + minutesBoxW; + + int boxX = (pageWidth - totalWidth) / 2 + labelWidth + labelGap; + auto hit = [&](const int width) { + return x >= boxX && x < boxX + width && y >= centreY && y < centreY + fieldHeight; + }; + if (hit(signBoxW)) { + field = FIELD_SIGN; + return true; + } + boxX += signBoxW + fieldGap; + if (hit(hoursBoxW)) { + field = FIELD_HOURS; + return true; + } + boxX += hoursBoxW + colonGap + colonWidth + colonGap; + if (hit(minutesBoxW)) { + field = FIELD_MINUTES; + return true; + } + return false; +} + +void ClockOffsetActivity::getTouchControlRects(Rect& minusRect, Rect& plusRect) const { + const auto pageWidth = renderer.getScreenWidth(); + const auto pageHeight = renderer.getScreenHeight(); + const int centreY = pageHeight / 2 - 40; + auto widthOf = [&](const char* s) { return renderer.getTextWidth(UI_12_FONT_ID, s, EpdFontFamily::BOLD); }; + constexpr int fieldPaddingX = 6; + constexpr int labelGap = 16; + constexpr int fieldGap = 12; + constexpr int colonGap = 5; + const int lineHeight = renderer.getLineHeight(UI_12_FONT_ID); + const int fieldHeight = lineHeight + 2; + const int labelWidth = widthOf("UTC"); + const int signBoxW = std::max(widthOf("+"), widthOf("-")) + fieldPaddingX * 2; + const int hoursBoxW = std::max(widthOf("14"), widthOf("12")) + fieldPaddingX * 2; + const int colonWidth = widthOf(":"); + const int minutesBoxW = std::max({widthOf("00"), widthOf("15"), widthOf("30"), widthOf("45")}) + fieldPaddingX * 2; + const int totalWidth = + labelWidth + labelGap + signBoxW + fieldGap + hoursBoxW + colonGap + colonWidth + colonGap + minutesBoxW; + const int offsetX = (pageWidth - totalWidth) / 2; + const int buttonY = centreY + (fieldHeight - TOUCH_BUTTON_SIZE) / 2; + minusRect = Rect{offsetX - TOUCH_BUTTON_GAP - TOUCH_BUTTON_SIZE, buttonY, TOUCH_BUTTON_SIZE, TOUCH_BUTTON_SIZE}; + plusRect = Rect{offsetX + totalWidth + TOUCH_BUTTON_GAP, buttonY, TOUCH_BUTTON_SIZE, TOUCH_BUTTON_SIZE}; +} + void ClockOffsetActivity::loop() { if (mappedInput.wasPressed(MappedInputManager::Button::Back)) { finish(); @@ -120,6 +191,53 @@ void ClockOffsetActivity::loop() { return; } + if (mappedInput.hasTouch()) { + int tx = 0; + int ty = 0; + Rect minusRect; + Rect plusRect; + getTouchControlRects(minusRect, plusRect); + + if (mappedInput.wasScreenTouchDown(tx, ty)) { + if (contains(minusRect, tx, ty) || contains(plusRect, tx, ty)) { + return; + } + Field touchedField = FIELD_HOURS; + if (fieldFromPoint(tx, ty, touchedField)) { + if (activeField != touchedField) { + activeField = touchedField; + requestUpdate(); + } + return; + } + } + + if (mappedInput.wasScreenTapped(tx, ty)) { + if (contains(minusRect, tx, ty)) { + adjustActiveField(-1); + requestUpdate(); + return; + } + if (contains(plusRect, tx, ty)) { + adjustActiveField(+1); + requestUpdate(); + return; + } + + Field touchedField = FIELD_HOURS; + if (fieldFromPoint(tx, ty, touchedField)) { + if (touchedField == FIELD_SIGN) { + activeField = FIELD_SIGN; + adjustActiveField(+1); + } else { + activeField = touchedField; + } + requestUpdate(); + return; + } + } + } + buttonNavigator.onNextRelease([this] { adjustActiveField(+1); requestUpdate(); @@ -196,6 +314,21 @@ void ClockOffsetActivity::render(RenderLock&&) { drawField(minutesStr, x, minutesBoxW, FIELD_MINUTES); + if (mappedInput.hasTouch()) { + Rect minusRect; + Rect plusRect; + getTouchControlRects(minusRect, plusRect); + auto drawTouchButton = [&](const Rect& rect, const char* label) { + renderer.fillRectDither(rect.x, rect.y, rect.width, rect.height, Color::White); + renderer.drawRect(rect.x, rect.y, rect.width, rect.height, true); + const int textX = rect.x + (rect.width - widthOf(label)) / 2; + const int textY = rect.y + (rect.height - lineHeight) / 2; + renderer.drawText(UI_12_FONT_ID, textX, textY, label, true, EpdFontFamily::BOLD); + }; + drawTouchButton(minusRect, "-"); + drawTouchButton(plusRect, "+"); + } + // Live preview of the resulting wall-clock time, so users can verify against a watch. if (halClock.isAvailable()) { char timeBuf[9]; diff --git a/src/activities/settings/ClockOffsetActivity.h b/src/activities/settings/ClockOffsetActivity.h index 8f25ee4cbf..5e569a30d5 100644 --- a/src/activities/settings/ClockOffsetActivity.h +++ b/src/activities/settings/ClockOffsetActivity.h @@ -1,8 +1,12 @@ #pragma once +#include + #include "activities/Activity.h" #include "util/ButtonNavigator.h" +struct Rect; + // Dedicated UTC offset picker for the status bar clock. // Three editable fields (sign, hours, minutes); Confirm cycles fields, Up/Down adjust the active one. // Supports the full IANA UTC offset range in 15 minute steps, including oddball zones like Nepal (+5:45). @@ -34,4 +38,6 @@ class ClockOffsetActivity final : public Activity { void saveToSettings() const; void adjustActiveField(int delta); void clampForSign(); + bool fieldFromPoint(int x, int y, Field& field) const; + void getTouchControlRects(Rect& minusRect, Rect& plusRect) const; }; diff --git a/src/activities/settings/ClockSyncActivity.cpp b/src/activities/settings/ClockSyncActivity.cpp index 496ecde6a5..377e9396de 100644 --- a/src/activities/settings/ClockSyncActivity.cpp +++ b/src/activities/settings/ClockSyncActivity.cpp @@ -93,7 +93,9 @@ void ClockSyncActivity::loop() { return; } - if (mappedInput.wasPressed(MappedInputManager::Button::Back)) { + int x = 0; + int y = 0; + if (mappedInput.wasPressed(MappedInputManager::Button::Back) || mappedInput.wasScreenTapped(x, y)) { finish(); } } diff --git a/src/activities/settings/FontDownloadActivity.cpp b/src/activities/settings/FontDownloadActivity.cpp index 0ccae7944e..380bbcfaa6 100644 --- a/src/activities/settings/FontDownloadActivity.cpp +++ b/src/activities/settings/FontDownloadActivity.cpp @@ -424,6 +424,36 @@ bool FontDownloadActivity::isSelectedFamilyDeletable() const { void FontDownloadActivity::loop() { if (state_ == FAMILY_LIST) { + auto activateSelected = [this] { + if (families_.empty()) return; + if (isDownloadAllRow(selectedIndex_)) { + currentFileIndex_ = 0; + currentFileTotal_ = 0; + for (const auto& f : families_) { + if (!f.installed) currentFileTotal_ += f.files.size(); + } + downloadAll(); + } else if (isUpdateAllRow(selectedIndex_)) { + currentFileIndex_ = 0; + currentFileTotal_ = 0; + for (const auto& f : families_) { + if (f.hasUpdate) currentFileTotal_ += f.files.size(); + } + updateAll(); + } else { + auto& family = families_[familyIndexFromList(selectedIndex_)]; + if (!family.installed || family.hasUpdate) { + currentFileIndex_ = 0; + currentFileTotal_ = family.files.size(); + downloadFamily(family); + } else { + promptDeleteSelectedFamily(); + return; + } + } + requestUpdateAndWait(); + }; + if (mappedInput.wasPressed(MappedInputManager::Button::Back)) { finish(); return; @@ -432,6 +462,34 @@ void FontDownloadActivity::loop() { const int listSize = listItemCount(); const int pageItems = UITheme::getNumberOfItemsPerPage(renderer, true, false, true, false); + if (!families_.empty()) { + const auto& metrics = UITheme::getInstance().getMetrics(); + const int contentTop = metrics.topPadding + metrics.headerHeight + metrics.verticalSpacing; + const int contentHeight = + renderer.getScreenHeight() - contentTop - metrics.buttonHintsHeight - metrics.verticalSpacing; + switch (handleListTouch(selectedIndex_, listSize, contentTop, contentHeight, true)) { + case ListTouchResult::Activated: + activateSelected(); + return; + case ListTouchResult::Consumed: + return; + case ListTouchResult::None: + break; + } + + const auto swipe = mappedInput.wasSwipe(); + if (swipe == MappedInputManager::SwipeDir::Up) { + selectedIndex_ = ButtonNavigator::nextPageIndex(selectedIndex_, listSize, pageItems); + requestUpdate(); + return; + } + if (swipe == MappedInputManager::SwipeDir::Down) { + selectedIndex_ = ButtonNavigator::previousPageIndex(selectedIndex_, listSize, pageItems); + requestUpdate(); + return; + } + } + buttonNavigator_.onNextRelease([this, listSize] { selectedIndex_ = ButtonNavigator::nextIndex(selectedIndex_, listSize); requestUpdate(); @@ -453,40 +511,14 @@ void FontDownloadActivity::loop() { }); if (mappedInput.wasPressed(MappedInputManager::Button::Confirm)) { - if (!families_.empty()) { - if (isDownloadAllRow(selectedIndex_)) { - currentFileIndex_ = 0; - currentFileTotal_ = 0; - for (const auto& f : families_) { - if (!f.installed) currentFileTotal_ += f.files.size(); - } - - downloadAll(); - } else if (isUpdateAllRow(selectedIndex_)) { - currentFileIndex_ = 0; - currentFileTotal_ = 0; - for (const auto& f : families_) { - if (f.hasUpdate) currentFileTotal_ += f.files.size(); - } - updateAll(); - } else { - auto& family = families_[familyIndexFromList(selectedIndex_)]; - if (!family.installed || family.hasUpdate) { - currentFileIndex_ = 0; - currentFileTotal_ = family.files.size(); - downloadFamily(family); - } else { - promptDeleteSelectedFamily(); - return; - } - } - requestUpdateAndWait(); - return; - } + activateSelected(); + return; } } else if (state_ == COMPLETE) { + int x = 0; + int y = 0; if (mappedInput.wasPressed(MappedInputManager::Button::Back) || - mappedInput.wasPressed(MappedInputManager::Button::Confirm)) { + mappedInput.wasPressed(MappedInputManager::Button::Confirm) || mappedInput.wasScreenTapped(x, y)) { { RenderLock lock(*this); state_ = FAMILY_LIST; @@ -512,6 +544,21 @@ void FontDownloadActivity::loop() { } requestUpdate(); } + } else { + int x = 0; + int y = 0; + if (mappedInput.wasScreenTapped(x, y)) { + if (downloadingFamilyIndex_ >= 0 && downloadingFamilyIndex_ < static_cast(families_.size())) { + downloadFamily(families_[downloadingFamilyIndex_]); + requestUpdateAndWait(); + return; + } + { + RenderLock lock(*this); + state_ = FAMILY_LIST; + } + requestUpdate(); + } } } } diff --git a/src/activities/settings/FontSelectionActivity.cpp b/src/activities/settings/FontSelectionActivity.cpp index ca53f3a8f4..d3e6a3415c 100644 --- a/src/activities/settings/FontSelectionActivity.cpp +++ b/src/activities/settings/FontSelectionActivity.cpp @@ -71,16 +71,7 @@ void FontSelectionActivity::onEnter() { void FontSelectionActivity::onExit() { Activity::onExit(); } void FontSelectionActivity::loop() { - if (mappedInput.wasPressed(MappedInputManager::Button::Back)) { - SETTINGS.fontFamily = originalFontFamily_; - strncpy(SETTINGS.sdFontFamilyName, originalSdFontFamilyName_, sizeof(SETTINGS.sdFontFamilyName) - 1); - SETTINGS.sdFontFamilyName[sizeof(SETTINGS.sdFontFamilyName) - 1] = '\0'; - sdFontSystem.ensureLoaded(renderer); - finish(); - return; - } - - if (mappedInput.wasPressed(MappedInputManager::Button::Confirm)) { + auto activateSelected = [this] { if (selectedIndex_ == previewFontIndex_) { handleSelection(); } else { @@ -100,12 +91,48 @@ void FontSelectionActivity::loop() { } requestUpdate(); } + }; + + if (mappedInput.wasPressed(MappedInputManager::Button::Back)) { + SETTINGS.fontFamily = originalFontFamily_; + strncpy(SETTINGS.sdFontFamilyName, originalSdFontFamilyName_, sizeof(SETTINGS.sdFontFamilyName) - 1); + SETTINGS.sdFontFamilyName[sizeof(SETTINGS.sdFontFamilyName) - 1] = '\0'; + sdFontSystem.ensureLoaded(renderer); + finish(); + return; + } + + if (mappedInput.wasPressed(MappedInputManager::Button::Confirm)) { + activateSelected(); return; } const int listSize = static_cast(fonts_.size()); const int pageItems = UITheme::getNumberOfItemsPerPage(renderer, true, false, true, false, previewHeight + metrics_.verticalSpacing); + const int listTop = afterHeader + previewHeight + metrics_.verticalSpacing; + const int listHeight = usableHeight - previewHeight - metrics_.verticalSpacing; + switch (handleListTouch(selectedIndex_, listSize, listTop, listHeight, false)) { + case ListTouchResult::Activated: + activateSelected(); + return; + case ListTouchResult::Consumed: + return; + case ListTouchResult::None: + break; + } + + const auto swipe = mappedInput.wasSwipe(); + if (swipe == MappedInputManager::SwipeDir::Up) { + selectedIndex_ = ButtonNavigator::nextPageIndex(selectedIndex_, listSize, pageItems); + requestUpdate(); + return; + } + if (swipe == MappedInputManager::SwipeDir::Down) { + selectedIndex_ = ButtonNavigator::previousPageIndex(selectedIndex_, listSize, pageItems); + requestUpdate(); + return; + } buttonNavigator_.onNextRelease([this, listSize] { selectedIndex_ = ButtonNavigator::nextIndex(selectedIndex_, listSize); diff --git a/src/activities/settings/KOReaderAuthActivity.cpp b/src/activities/settings/KOReaderAuthActivity.cpp index 72921c16e8..90dd94518d 100644 --- a/src/activities/settings/KOReaderAuthActivity.cpp +++ b/src/activities/settings/KOReaderAuthActivity.cpp @@ -26,7 +26,7 @@ void KOReaderAuthActivity::onWifiSelectionComplete(const bool success) { { RenderLock lock(*this); state = AUTHENTICATING; - statusMessage = tr(STR_AUTHENTICATING); + statusMessage = mode == Mode::SIGN_UP ? tr(STR_CREATING_ACCOUNT) : tr(STR_AUTHENTICATING); } requestUpdate(); @@ -34,16 +34,17 @@ void KOReaderAuthActivity::onWifiSelectionComplete(const bool success) { } void KOReaderAuthActivity::performAuthentication() { - const auto result = KOReaderSyncClient::authenticate(); + const auto result = mode == Mode::SIGN_UP ? KOReaderSyncClient::createUser() : KOReaderSyncClient::authenticate(); { RenderLock lock(*this); if (result == KOReaderSyncClient::OK) { state = SUCCESS; - statusMessage = tr(STR_AUTH_SUCCESS); + statusMessage = mode == Mode::SIGN_UP ? tr(STR_ACCOUNT_CREATED) : tr(STR_AUTH_SUCCESS); } else { state = FAILED; - errorMessage = KOReaderSyncClient::errorString(result); + errorMessage = + result == KOReaderSyncClient::USER_EXISTS ? tr(STR_USERNAME_TAKEN) : KOReaderSyncClient::errorString(result); } } requestUpdate(); @@ -80,17 +81,21 @@ void KOReaderAuthActivity::render(RenderLock&&) { const auto pageWidth = renderer.getScreenWidth(); const auto pageHeight = renderer.getScreenHeight(); - GUI.drawHeader(renderer, Rect{0, metrics.topPadding, pageWidth, metrics.headerHeight}, tr(STR_KOREADER_AUTH)); + GUI.drawHeader(renderer, Rect{0, metrics.topPadding, pageWidth, metrics.headerHeight}, + mode == Mode::SIGN_UP ? tr(STR_SIGN_UP) : tr(STR_KOREADER_AUTH)); const auto height = renderer.getLineHeight(UI_10_FONT_ID); const auto top = (pageHeight - height) / 2; if (state == AUTHENTICATING) { renderer.drawCenteredText(UI_10_FONT_ID, top, statusMessage.c_str()); } else if (state == SUCCESS) { - renderer.drawCenteredText(UI_10_FONT_ID, top, tr(STR_AUTH_SUCCESS), true, EpdFontFamily::BOLD); + renderer.drawCenteredText(UI_10_FONT_ID, top, + mode == Mode::SIGN_UP ? tr(STR_ACCOUNT_CREATED) : tr(STR_AUTH_SUCCESS), true, + EpdFontFamily::BOLD); renderer.drawCenteredText(UI_10_FONT_ID, top + height + 10, tr(STR_SYNC_READY)); } else if (state == FAILED) { - renderer.drawCenteredText(UI_10_FONT_ID, top, tr(STR_AUTH_FAILED), true, EpdFontFamily::BOLD); + renderer.drawCenteredText(UI_10_FONT_ID, top, mode == Mode::SIGN_UP ? tr(STR_SIGNUP_FAILED) : tr(STR_AUTH_FAILED), + true, EpdFontFamily::BOLD); renderer.drawCenteredText(UI_10_FONT_ID, top + height + 10, errorMessage.c_str()); } @@ -101,8 +106,10 @@ void KOReaderAuthActivity::render(RenderLock&&) { void KOReaderAuthActivity::loop() { if (state == SUCCESS || state == FAILED) { + int x = 0; + int y = 0; if (mappedInput.wasPressed(MappedInputManager::Button::Back) || - mappedInput.wasPressed(MappedInputManager::Button::Confirm)) { + mappedInput.wasPressed(MappedInputManager::Button::Confirm) || mappedInput.wasScreenTapped(x, y)) { finish(); } } diff --git a/src/activities/settings/KOReaderAuthActivity.h b/src/activities/settings/KOReaderAuthActivity.h index b4e330e794..250eed5dae 100644 --- a/src/activities/settings/KOReaderAuthActivity.h +++ b/src/activities/settings/KOReaderAuthActivity.h @@ -5,13 +5,16 @@ #include "activities/Activity.h" /** - * Activity for testing KOReader credentials. - * Connects to WiFi and authenticates with the KOReader sync server. + * Activity for testing KOReader credentials, or — in sign-up mode — creating a + * new account on the sync server with the entered username/password. + * Connects to WiFi, then authenticates or registers. */ class KOReaderAuthActivity final : public Activity { public: - explicit KOReaderAuthActivity(GfxRenderer& renderer, MappedInputManager& mappedInput) - : Activity("KOReaderAuth", renderer, mappedInput) {} + enum class Mode { AUTHENTICATE, SIGN_UP }; + + explicit KOReaderAuthActivity(GfxRenderer& renderer, MappedInputManager& mappedInput, Mode mode = Mode::AUTHENTICATE) + : Activity("KOReaderAuth", renderer, mappedInput), mode(mode) {} void onEnter() override; void onExit() override; @@ -22,6 +25,7 @@ class KOReaderAuthActivity final : public Activity { private: enum State { WIFI_SELECTION, CONNECTING, AUTHENTICATING, SUCCESS, FAILED }; + Mode mode = Mode::AUTHENTICATE; State state = WIFI_SELECTION; std::string statusMessage; std::string errorMessage; diff --git a/src/activities/settings/KOReaderSettingsActivity.cpp b/src/activities/settings/KOReaderSettingsActivity.cpp index 60edddcc04..2f6fe0c9a6 100644 --- a/src/activities/settings/KOReaderSettingsActivity.cpp +++ b/src/activities/settings/KOReaderSettingsActivity.cpp @@ -13,9 +13,10 @@ #include "fontIds.h" namespace { -constexpr int MENU_ITEMS = 5; -const StrId menuNames[MENU_ITEMS] = {StrId::STR_USERNAME, StrId::STR_PASSWORD, StrId::STR_SYNC_SERVER_URL, - StrId::STR_DOCUMENT_MATCHING, StrId::STR_AUTHENTICATE}; +constexpr int MENU_ITEMS = 8; +const StrId menuNames[MENU_ITEMS] = {StrId::STR_USERNAME, StrId::STR_PASSWORD, StrId::STR_SYNC_SERVER_URL, + StrId::STR_DOCUMENT_MATCHING, StrId::STR_SEND_METADATA, StrId::STR_SYNC_BEHAVIOR, + StrId::STR_SIGN_UP, StrId::STR_AUTHENTICATE}; } // namespace void KOReaderSettingsActivity::onEnter() { @@ -28,13 +29,27 @@ void KOReaderSettingsActivity::onEnter() { void KOReaderSettingsActivity::onExit() { Activity::onExit(); } void KOReaderSettingsActivity::loop() { + auto activateSelected = [this] { handleSelection(); }; + if (mappedInput.wasPressed(MappedInputManager::Button::Back)) { finish(); return; } if (mappedInput.wasPressed(MappedInputManager::Button::Confirm)) { - handleSelection(); + activateSelected(); + return; + } + + const auto& metrics = UITheme::getInstance().getMetrics(); + const int contentTop = metrics.topPadding + metrics.headerHeight + metrics.verticalSpacing; + const int contentHeight = + renderer.getScreenHeight() - contentTop - metrics.buttonHintsHeight - metrics.verticalSpacing * 2; + int touchSel = static_cast(selectedIndex); + const auto listTouch = handleListTouch(touchSel, MENU_ITEMS, contentTop, contentHeight, false); + if (listTouch != ListTouchResult::None) { + selectedIndex = static_cast(touchSel); + if (listTouch == ListTouchResult::Activated) activateSelected(); return; } @@ -98,6 +113,27 @@ void KOReaderSettingsActivity::handleSelection() { KOREADER_STORE.saveToFile(); requestUpdate(); } else if (selectedIndex == 4) { + // Send Metadata - toggle on/off + KOREADER_STORE.setSendMetadata(!KOREADER_STORE.getSendMetadata()); + KOREADER_STORE.saveToFile(); + requestUpdate(); + } else if (selectedIndex == 5) { + // Sync behavior - toggle between Ask and Smart + const auto current = KOREADER_STORE.getSyncBehavior(); + const auto newBehavior = (current == KOReaderSyncBehavior::ASK_EVERY_TIME) ? KOReaderSyncBehavior::SMART + : KOReaderSyncBehavior::ASK_EVERY_TIME; + KOREADER_STORE.setSyncBehavior(newBehavior); + KOREADER_STORE.saveToFile(); + requestUpdate(); + } else if (selectedIndex == 6) { + // Sign Up - create a new account on the sync server with the entered credentials + if (!KOREADER_STORE.hasCredentials()) { + return; + } + startActivityForResult( + std::make_unique(renderer, mappedInput, KOReaderAuthActivity::Mode::SIGN_UP), + [](const ActivityResult&) {}); + } else if (selectedIndex == 7) { // Authenticate if (!KOREADER_STORE.hasCredentials()) { // Can't authenticate without credentials - just show message briefly @@ -131,11 +167,25 @@ void KOReaderSettingsActivity::render(RenderLock&&) { return KOREADER_STORE.getPassword().empty() ? std::string(tr(STR_NOT_SET)) : std::string("******"); } else if (index == 2) { auto serverUrl = KOREADER_STORE.getServerUrl(); - return serverUrl.empty() ? std::string(tr(STR_DEFAULT_VALUE)) : serverUrl; + if (!serverUrl.empty()) { + return serverUrl; + } + // Show which server the default actually is, scheme stripped for space + std::string defaultUrl = KOREADER_STORE.getBaseUrl(); + const auto schemeEnd = defaultUrl.find("://"); + if (schemeEnd != std::string::npos) { + defaultUrl.erase(0, schemeEnd + 3); + } + return std::string(tr(STR_DEFAULT_VALUE)) + ": " + defaultUrl; } else if (index == 3) { return KOREADER_STORE.getMatchMethod() == DocumentMatchMethod::FILENAME ? std::string(tr(STR_FILENAME)) : std::string(tr(STR_BINARY)); } else if (index == 4) { + return KOREADER_STORE.getSendMetadata() ? std::string(tr(STR_STATE_ON)) : std::string(tr(STR_STATE_OFF)); + } else if (index == 5) { + return KOREADER_STORE.getSyncBehavior() == KOReaderSyncBehavior::SMART ? std::string(tr(STR_SMART_SYNC)) + : std::string(tr(STR_ASK_EVERY_TIME)); + } else if (index == 6 || index == 7) { return KOREADER_STORE.hasCredentials() ? "" : std::string("[") + tr(STR_SET_CREDENTIALS_FIRST) + "]"; } return std::string(tr(STR_NOT_SET)); diff --git a/src/activities/settings/LanguageSelectActivity.cpp b/src/activities/settings/LanguageSelectActivity.cpp index 231cba5216..2837da9b95 100644 --- a/src/activities/settings/LanguageSelectActivity.cpp +++ b/src/activities/settings/LanguageSelectActivity.cpp @@ -27,17 +27,44 @@ void LanguageSelectActivity::onEnter() { void LanguageSelectActivity::onExit() { Activity::onExit(); } void LanguageSelectActivity::loop() { + auto activateSelected = [this] { handleSelection(); }; + if (mappedInput.wasPressed(MappedInputManager::Button::Back)) { onBack(); return; } if (mappedInput.wasPressed(MappedInputManager::Button::Confirm)) { - handleSelection(); + activateSelected(); return; } + const auto& metrics = UITheme::getInstance().getMetrics(); + const int contentTop = metrics.topPadding + metrics.headerHeight + metrics.verticalSpacing; + const int contentHeight = + renderer.getScreenHeight() - contentTop - metrics.buttonHintsHeight - metrics.verticalSpacing; + switch (handleListTouch(selectedIndex, totalItems, contentTop, contentHeight, false)) { + case ListTouchResult::Activated: + activateSelected(); + return; + case ListTouchResult::Consumed: + return; + case ListTouchResult::None: + break; + } + const int pageItems = UITheme::getNumberOfItemsPerPage(renderer, true, false, true, false); + const auto swipe = mappedInput.wasSwipe(); + if (swipe == MappedInputManager::SwipeDir::Up) { + selectedIndex = ButtonNavigator::nextPageIndex(static_cast(selectedIndex), totalItems, pageItems); + requestUpdate(); + return; + } + if (swipe == MappedInputManager::SwipeDir::Down) { + selectedIndex = ButtonNavigator::previousPageIndex(static_cast(selectedIndex), totalItems, pageItems); + requestUpdate(); + return; + } // Handle navigation buttonNavigator.onNextRelease([this] { diff --git a/src/activities/settings/OpdsServerListActivity.cpp b/src/activities/settings/OpdsServerListActivity.cpp index 305577039b..9d52df9e69 100644 --- a/src/activities/settings/OpdsServerListActivity.cpp +++ b/src/activities/settings/OpdsServerListActivity.cpp @@ -3,19 +3,51 @@ #include #include +#include + +#include "CrossPointSettings.h" #include "MappedInputManager.h" #include "OpdsServerStore.h" #include "OpdsSettingsActivity.h" #include "activities/ActivityManager.h" #include "activities/browser/OpdsBookBrowserActivity.h" +#include "activities/util/KeyboardEntryActivity.h" #include "components/UITheme.h" #include "fontIds.h" +#include "util/OpdsFilename.h" + +namespace { +// Normalizes a user-typed folder: trims spaces, "" => SD root, otherwise a +// single leading '/' and no trailing '/'. Cold path (runs once per edit). +std::string normalizeFolder(std::string v) { + while (!v.empty() && (v.front() == ' ' || v.front() == '\t')) v.erase(v.begin()); + while (!v.empty() && (v.back() == ' ' || v.back() == '\t')) v.pop_back(); + if (v.empty()) return ""; + if (v.front() != '/') v.insert(v.begin(), '/'); + while (v.size() > 1 && v.back() == '/') v.pop_back(); + if (v == "/") return ""; // a bare slash is SD root, same as empty + return v; +} + +// Label shown for the current OPDS filename format in the list subtitle. +StrId opdsFormatLabel(uint8_t format) { + switch (format) { + case static_cast(OpdsFilenameFormat::TitleAuthor): + return StrId::STR_FMT_TITLE_AUTHOR; + case static_cast(OpdsFilenameFormat::TitleOnly): + return StrId::STR_FMT_TITLE; + default: + return StrId::STR_FMT_AUTHOR_TITLE; + } +} +} // namespace int OpdsServerListActivity::getItemCount() const { int count = static_cast(OPDS_STORE.getCount()); - // In settings mode, append a virtual "Add Server" item; in picker mode, only show real servers + // Settings mode appends three virtual items: "Add Server", "Download folder" + // and "Filename format". if (!pickerMode) { - count++; + count += 3; } return count; } @@ -32,6 +64,8 @@ void OpdsServerListActivity::onEnter() { void OpdsServerListActivity::onExit() { Activity::onExit(); } void OpdsServerListActivity::loop() { + auto activateSelected = [this] { handleSelection(); }; + if (mappedInput.wasPressed(MappedInputManager::Button::Back)) { if (pickerMode) { activityManager.goHome(HomeMenuItem::OPDS_BROWSER); @@ -42,12 +76,39 @@ void OpdsServerListActivity::loop() { } if (mappedInput.wasPressed(MappedInputManager::Button::Confirm)) { - handleSelection(); + activateSelected(); return; } const int itemCount = getItemCount(); if (itemCount > 0) { + const auto& metrics = UITheme::getInstance().getMetrics(); + const int contentTop = metrics.topPadding + metrics.headerHeight + metrics.verticalSpacing; + const int contentHeight = + renderer.getScreenHeight() - contentTop - metrics.buttonHintsHeight - metrics.verticalSpacing * 2; + switch (handleListTouch(selectedIndex, itemCount, contentTop, contentHeight, true)) { + case ListTouchResult::Activated: + activateSelected(); + return; + case ListTouchResult::Consumed: + return; + case ListTouchResult::None: + break; + } + + const int pageItems = GUI.getListPageItems(contentHeight, true); + const auto swipe = mappedInput.wasSwipe(); + if (swipe == MappedInputManager::SwipeDir::Up) { + selectedIndex = ButtonNavigator::nextPageIndex(selectedIndex, itemCount, pageItems); + requestUpdate(); + return; + } + if (swipe == MappedInputManager::SwipeDir::Down) { + selectedIndex = ButtonNavigator::previousPageIndex(selectedIndex, itemCount, pageItems); + requestUpdate(); + return; + } + buttonNavigator.onNext([this, itemCount] { selectedIndex = ButtonNavigator::nextIndex(selectedIndex, itemCount); requestUpdate(); @@ -74,6 +135,34 @@ void OpdsServerListActivity::handleSelection() { return; } + // Index layout: [servers 0..serverCount-1], [Add Server], [Download folder], [Filename format]. + if (selectedIndex == serverCount + 1) { + auto folderHandler = [this](const ActivityResult& result) { + if (!result.isCancelled) { + const auto& kb = std::get(result.data); + const std::string norm = normalizeFolder(kb.text); + strncpy(SETTINGS.opdsDownloadFolder, norm.c_str(), sizeof(SETTINGS.opdsDownloadFolder) - 1); + SETTINGS.opdsDownloadFolder[sizeof(SETTINGS.opdsDownloadFolder) - 1] = '\0'; + SETTINGS.saveToFile(); + requestUpdate(); + } + }; + startActivityForResult( + std::make_unique(renderer, mappedInput, tr(STR_OPDS_DOWNLOAD_FOLDER), + std::string(SETTINGS.opdsDownloadFolder), 63, InputType::Text), + folderHandler); + return; + } + + // "Filename format": tap cycles through the available formats. + if (selectedIndex == serverCount + 2) { + SETTINGS.opdsFilenameFormat = + static_cast((SETTINGS.opdsFilenameFormat + 1) % static_cast(OpdsFilenameFormat::Count)); + SETTINGS.saveToFile(); + requestUpdate(); + return; + } + // Settings mode: open editor for selected server, or create a new one auto resultHandler = [this](const ActivityResult&) { // Reload server list when returning from editor @@ -111,17 +200,30 @@ void OpdsServerListActivity::render(RenderLock&&) { // Secondary label: server URL (shown as subtitle when name is set). GUI.drawList( renderer, Rect{0, contentTop, pageWidth, contentHeight}, itemCount, selectedIndex, - [&servers, serverCount](int index) { + [&servers, serverCount](int index) -> std::string { if (index < serverCount) { const auto& server = servers[index]; return server.name.empty() ? server.url : server.name; } - return std::string(I18n::getInstance().get(StrId::STR_ADD_SERVER)); + if (index == serverCount) { + return std::string(I18n::getInstance().get(StrId::STR_ADD_SERVER)); + } + if (index == serverCount + 1) { + return std::string(I18n::getInstance().get(StrId::STR_OPDS_DOWNLOAD_FOLDER)); + } + return std::string(I18n::getInstance().get(StrId::STR_OPDS_FILENAME_FORMAT)); }, - [&servers, serverCount](int index) { + [&servers, serverCount](int index) -> std::string { if (index < serverCount && !servers[index].name.empty()) { return servers[index].url; } + if (index == serverCount + 1) { + const char* f = SETTINGS.opdsDownloadFolder; + return f[0] ? std::string(f) : std::string(I18n::getInstance().get(StrId::STR_OPDS_SD_ROOT)); + } + if (index == serverCount + 2) { + return std::string(I18n::getInstance().get(opdsFormatLabel(SETTINGS.opdsFilenameFormat))); + } return std::string(""); }); } diff --git a/src/activities/settings/OpdsSettingsActivity.cpp b/src/activities/settings/OpdsSettingsActivity.cpp index ec07c1f9db..f2b0772ee2 100644 --- a/src/activities/settings/OpdsSettingsActivity.cpp +++ b/src/activities/settings/OpdsSettingsActivity.cpp @@ -48,6 +48,20 @@ void OpdsSettingsActivity::onEnter() { void OpdsSettingsActivity::onExit() { Activity::onExit(); } void OpdsSettingsActivity::loop() { + const auto& metrics = UITheme::getInstance().getMetrics(); + const int contentTop = metrics.topPadding + metrics.headerHeight + metrics.verticalSpacing + metrics.tabBarHeight; + const int contentHeight = + renderer.getScreenHeight() - contentTop - metrics.buttonHintsHeight - metrics.verticalSpacing * 2; + const int menuItems = getMenuItemCount(); + + int touchSel = static_cast(selectedIndex); + const auto listTouch = handleListTouch(touchSel, menuItems, contentTop, contentHeight, false); + if (listTouch != ListTouchResult::None) { + selectedIndex = static_cast(touchSel); + if (listTouch == ListTouchResult::Activated) handleSelection(); + return; + } + if (mappedInput.wasPressed(MappedInputManager::Button::Back)) { finish(); return; @@ -58,7 +72,6 @@ void OpdsSettingsActivity::loop() { return; } - const int menuItems = getMenuItemCount(); buttonNavigator.onNext([this, menuItems] { selectedIndex = (selectedIndex + 1) % menuItems; requestUpdate(); diff --git a/src/activities/settings/OtaUpdateActivity.cpp b/src/activities/settings/OtaUpdateActivity.cpp index 905e1933a9..18c3dccfa4 100644 --- a/src/activities/settings/OtaUpdateActivity.cpp +++ b/src/activities/settings/OtaUpdateActivity.cpp @@ -11,6 +11,23 @@ #include "fontIds.h" #include "network/OtaUpdater.h" +namespace { +struct OtaActionRects { + Rect cancel; + Rect update; +}; + +OtaActionRects getOtaActionRects(const GfxRenderer& renderer) { + const int top = renderer.getScreenHeight() - 80; + const int width = renderer.getScreenWidth() / 2; + return {Rect{0, top, width, 80}, Rect{width, top, renderer.getScreenWidth() - width, 80}}; +} + +bool contains(const Rect& rect, const int x, const int y) { + return x >= rect.x && x < rect.x + rect.width && y >= rect.y && y < rect.y + rect.height; +} +} // namespace + void OtaUpdateActivity::onWifiSelectionComplete(const bool success) { if (!success) { LOG_ERR("OTA", "WiFi connection failed, exiting"); @@ -109,6 +126,14 @@ void OtaUpdateActivity::render(RenderLock&&) { renderer.drawText(UI_10_FONT_ID, metrics.contentSidePadding, top + height * 2 + metrics.verticalSpacing * 2, (std::string(tr(STR_NEW_VERSION)) + updater.getLatestVersion()).c_str()); + const auto actionRects = getOtaActionRects(renderer); + const int cancelTextWidth = renderer.getTextWidth(UI_10_FONT_ID, tr(STR_CANCEL)); + renderer.drawText(UI_10_FONT_ID, actionRects.cancel.x + (actionRects.cancel.width - cancelTextWidth) / 2, + actionRects.cancel.y + 28, tr(STR_CANCEL)); + const int updateTextWidth = renderer.getTextWidth(UI_10_FONT_ID, tr(STR_UPDATE)); + renderer.drawText(UI_10_FONT_ID, actionRects.update.x + (actionRects.update.width - updateTextWidth) / 2, + actionRects.update.y + 28, tr(STR_UPDATE)); + const auto labels = mappedInput.mapLabels(tr(STR_CANCEL), tr(STR_UPDATE), "", ""); GUI.drawButtonHints(renderer, labels.btn1, labels.btn2, labels.btn3, labels.btn4); } else if (state == UPDATE_IN_PROGRESS) { @@ -143,45 +168,64 @@ void OtaUpdateActivity::render(RenderLock&&) { renderer.displayBuffer(); } +void OtaUpdateActivity::runUpdateInstall() { + LOG_DBG("OTA", "New update available, starting download..."); + { + RenderLock lock(*this); + state = UPDATE_IN_PROGRESS; + } + requestUpdateAndWait(); + const auto res = updater.installUpdate( + [](void* ctx) { + // immediate=true notifies the render task directly. The default deferred path only + // sets a flag consumed at the end of ActivityManager::loop(), which never runs while + // installUpdate() blocks this task. + static_cast(ctx)->requestUpdate(true); + }, + this); + + if (res != OtaUpdater::OK) { + LOG_DBG("OTA", "Update failed: %d", res); + { + RenderLock lock(*this); + state = FAILED; + } + requestUpdate(); + return; + } + + { + RenderLock lock(*this); + state = FINISHED; + } + requestUpdateAndWait(); + // Hold the completion screen briefly so the user sees it, then restart. + delay(3000); + { + RenderLock lock(*this); + state = SHUTTING_DOWN; + } +} + void OtaUpdateActivity::loop() { if (state == WAITING_CONFIRMATION) { - if (mappedInput.wasPressed(MappedInputManager::Button::Confirm)) { - LOG_DBG("OTA", "New update available, starting download..."); - { - RenderLock lock(*this); - state = UPDATE_IN_PROGRESS; + int x = 0; + int y = 0; + if (mappedInput.wasScreenTapped(x, y)) { + const auto actionRects = getOtaActionRects(renderer); + if (contains(actionRects.cancel, x, y)) { + finish(); + return; } - requestUpdateAndWait(); - const auto res = updater.installUpdate( - [](void* ctx) { - // immediate=true notifies the render task directly. The default deferred path only - // sets a flag consumed at the end of ActivityManager::loop(), which never runs while - // installUpdate() blocks this task. - static_cast(ctx)->requestUpdate(true); - }, - this); - - if (res != OtaUpdater::OK) { - LOG_DBG("OTA", "Update failed: %d", res); - { - RenderLock lock(*this); - state = FAILED; - } - requestUpdate(); + if (contains(actionRects.update, x, y)) { + runUpdateInstall(); return; } + } - { - RenderLock lock(*this); - state = FINISHED; - } - requestUpdateAndWait(); - // Hold the completion screen briefly so the user sees it, then restart. - delay(3000); - { - RenderLock lock(*this); - state = SHUTTING_DOWN; - } + if (mappedInput.wasPressed(MappedInputManager::Button::Confirm)) { + runUpdateInstall(); + return; } if (mappedInput.wasPressed(MappedInputManager::Button::Back)) { @@ -192,14 +236,18 @@ void OtaUpdateActivity::loop() { } if (state == FAILED) { - if (mappedInput.wasPressed(MappedInputManager::Button::Back)) { + int x = 0; + int y = 0; + if (mappedInput.wasPressed(MappedInputManager::Button::Back) || mappedInput.wasScreenTapped(x, y)) { finish(); } return; } if (state == NO_UPDATE) { - if (mappedInput.wasPressed(MappedInputManager::Button::Back)) { + int x = 0; + int y = 0; + if (mappedInput.wasPressed(MappedInputManager::Button::Back) || mappedInput.wasScreenTapped(x, y)) { finish(); } return; diff --git a/src/activities/settings/OtaUpdateActivity.h b/src/activities/settings/OtaUpdateActivity.h index 12afc80d58..e5260f685a 100644 --- a/src/activities/settings/OtaUpdateActivity.h +++ b/src/activities/settings/OtaUpdateActivity.h @@ -23,6 +23,7 @@ class OtaUpdateActivity : public Activity { OtaUpdater updater; void onWifiSelectionComplete(bool success); + void runUpdateInstall(); public: explicit OtaUpdateActivity(GfxRenderer& renderer, MappedInputManager& mappedInput) diff --git a/src/activities/settings/SdFirmwareUpdateActivity.cpp b/src/activities/settings/SdFirmwareUpdateActivity.cpp index b0ca1f6340..e0ee743880 100644 --- a/src/activities/settings/SdFirmwareUpdateActivity.cpp +++ b/src/activities/settings/SdFirmwareUpdateActivity.cpp @@ -186,8 +186,10 @@ void SdFirmwareUpdateActivity::performUpdate() { void SdFirmwareUpdateActivity::loop() { if (state == State::FAILED) { + int x = 0; + int y = 0; if (mappedInput.wasPressed(MappedInputManager::Button::Back) || - mappedInput.wasPressed(MappedInputManager::Button::Confirm)) { + mappedInput.wasPressed(MappedInputManager::Button::Confirm) || mappedInput.wasScreenTapped(x, y)) { if (recoveryMode) { // Go back to picker so user can try a different .bin state = State::PICKING; diff --git a/src/activities/settings/SettingsActivity.cpp b/src/activities/settings/SettingsActivity.cpp index 1294c8d949..9a03a81f35 100644 --- a/src/activities/settings/SettingsActivity.cpp +++ b/src/activities/settings/SettingsActivity.cpp @@ -1,5 +1,6 @@ #include "SettingsActivity.h" +#include #include #include @@ -39,7 +40,12 @@ void SettingsActivity::rebuildSettingsLists() { // reader activity ran — otherwise the font-family picker shows stale list. sdFontSystem.refreshIfDirty(); - for (auto& setting : getSettingsList(&sdFontSystem.registry())) { + // Rescan /dictionaries on every rebuild: cheap (one directory listing) and + // picks up dictionaries copied to the SD card since the last visit. + std::vector dictionaries; + DictionaryRegistry::discover(dictionaries); + + for (auto& setting : getSettingsList(&sdFontSystem.registry(), &dictionaries)) { if (setting.category == StrId::STR_NONE_OPT) continue; if (setting.category == StrId::STR_CAT_DISPLAY) { displaySettings.push_back(setting); @@ -57,13 +63,18 @@ void SettingsActivity::rebuildSettingsLists() { } // Append device-only ACTION items - controlsSettings.insert(controlsSettings.begin(), - SettingInfo::Action(StrId::STR_REMAP_FRONT_BUTTONS, SettingAction::RemapFrontButtons)); + if (!BoardConfig::hasTouch()) { + controlsSettings.insert(controlsSettings.begin(), + SettingInfo::Action(StrId::STR_REMAP_FRONT_BUTTONS, SettingAction::RemapFrontButtons)); + } systemSettings.push_back(SettingInfo::Action(StrId::STR_WIFI_NETWORKS, SettingAction::Network)); systemSettings.push_back(SettingInfo::Action(StrId::STR_KOREADER_SYNC, SettingAction::KOReaderSync)); systemSettings.push_back(SettingInfo::Action(StrId::STR_OPDS_SERVERS, SettingAction::OPDSBrowser)); systemSettings.push_back(SettingInfo::Action(StrId::STR_CLEAR_READING_CACHE, SettingAction::ClearCache)); - systemSettings.push_back(SettingInfo::Action(StrId::STR_CHECK_UPDATES, SettingAction::CheckForUpdates)); + // TODO: Touch devices need their own firmware update path/artifacts before OTA is exposed. + if (!BoardConfig::hasTouch()) { + systemSettings.push_back(SettingInfo::Action(StrId::STR_CHECK_UPDATES, SettingAction::CheckForUpdates)); + } systemSettings.push_back(SettingInfo::Action(StrId::STR_SD_FIRMWARE_UPDATE, SettingAction::SdFirmwareUpdate)); systemSettings.push_back(SettingInfo::Action(StrId::STR_LANGUAGE, SettingAction::Language)); // Insert "Manage Fonts" right after the font family setting so users discover it naturally @@ -117,6 +128,24 @@ void SettingsActivity::loop() { bool hasChangedCategory = false; + auto applyCategorySelection = [this] { + switch (selectedCategoryIndex) { + case 0: + currentSettings = &displaySettings; + break; + case 1: + currentSettings = &readerSettings; + break; + case 2: + currentSettings = &controlsSettings; + break; + case 3: + currentSettings = &systemSettings; + break; + } + settingsCount = static_cast(currentSettings->size()); + }; + // Handle actions with early return if (mappedInput.wasPressed(MappedInputManager::Button::Confirm)) { if (selectedSettingIndex == 0) { @@ -141,7 +170,103 @@ void SettingsActivity::loop() { return; } + const auto& metrics = UITheme::getInstance().getMetrics(); + int tx = 0; + int ty = 0; + const int tabTop = metrics.topPadding + metrics.headerHeight; + const int listTop = metrics.topPadding + metrics.headerHeight + metrics.tabBarHeight + metrics.verticalSpacing; + const int listHeight = + renderer.getScreenHeight() - (metrics.topPadding + metrics.headerHeight + metrics.tabBarHeight + + metrics.buttonHintsHeight + metrics.verticalSpacing * 2); + auto buildTabs = [&]() { + std::vector tabs; + tabs.reserve(categoryCount); + for (int i = 0; i < categoryCount; i++) { + tabs.push_back({I18N.get(categoryNames[i]), selectedCategoryIndex == i}); + } + return tabs; + }; + auto settingIndexFromPoint = [&](const int x, const int y, int& settingIndex) { + (void)x; + if (settingsCount <= 0 || y < listTop || y >= listTop + listHeight) return false; + const int rowStep = GUI.getListRowStep(false); + if (rowStep <= 0) return false; + const int pageItems = GUI.getListPageItems(listHeight, false); + const int selectedRow = std::max(0, selectedSettingIndex - 1); + const int pageStart = selectedRow / pageItems * pageItems; + const int row = (y - listTop) / rowStep; + const int touched = pageStart + row; + if (row < 0 || row >= pageItems || touched < 0 || touched >= settingsCount) return false; + settingIndex = touched + 1; + return true; + }; + + if (mappedInput.wasScreenTouchDown(tx, ty)) { + int touchedCategory = -1; + const auto tabs = buildTabs(); + if (GUI.tabIndexFromPoint(renderer, Rect{0, tabTop, renderer.getScreenWidth(), metrics.tabBarHeight}, tabs, tx, ty, + touchedCategory)) { + if (selectedCategoryIndex != touchedCategory || selectedSettingIndex != 0) { + selectedCategoryIndex = touchedCategory; + selectedSettingIndex = 0; + applyCategorySelection(); + requestUpdate(); + } + return; + } + + int touchedSetting = -1; + if (settingIndexFromPoint(tx, ty, touchedSetting)) { + if (selectedSettingIndex != touchedSetting) { + selectedSettingIndex = touchedSetting; + requestUpdate(); + } + return; + } + } + + if (mappedInput.wasScreenTapped(tx, ty)) { + int tappedCategory = -1; + const auto tabs = buildTabs(); + if (GUI.tabIndexFromPoint(renderer, Rect{0, tabTop, renderer.getScreenWidth(), metrics.tabBarHeight}, tabs, tx, ty, + tappedCategory)) { + selectedCategoryIndex = tappedCategory; + selectedSettingIndex = 0; + applyCategorySelection(); + requestUpdate(); + return; + } + + int tappedSetting = -1; + if (settingIndexFromPoint(tx, ty, tappedSetting)) { + selectedSettingIndex = tappedSetting; + toggleCurrentSetting(); + requestUpdate(); + return; + } + } + // Handle navigation + const auto& navMetrics = UITheme::getInstance().getMetrics(); + const int settingsListHeight = + renderer.getScreenHeight() - (navMetrics.topPadding + navMetrics.headerHeight + navMetrics.tabBarHeight + + navMetrics.buttonHintsHeight + navMetrics.verticalSpacing * 2); + const int settingsPageItems = GUI.getListPageItems(settingsListHeight, false); + const auto swipe = mappedInput.wasSwipe(); + if (swipe == MappedInputManager::SwipeDir::Up) { + selectedSettingIndex = selectedSettingIndex == 0 ? 1 + : ButtonNavigator::nextPageIndex( + selectedSettingIndex, settingsCount + 1, settingsPageItems); + requestUpdate(); + return; + } + if (swipe == MappedInputManager::SwipeDir::Down) { + selectedSettingIndex = + ButtonNavigator::previousPageIndex(selectedSettingIndex, settingsCount + 1, settingsPageItems); + requestUpdate(); + return; + } + buttonNavigator.onNextRelease([this] { selectedSettingIndex = ButtonNavigator::nextIndex(selectedSettingIndex, settingsCount + 1); requestUpdate(); @@ -166,21 +291,7 @@ void SettingsActivity::loop() { if (hasChangedCategory) { selectedSettingIndex = (selectedSettingIndex == 0) ? 0 : 1; - switch (selectedCategoryIndex) { - case 0: - currentSettings = &displaySettings; - break; - case 1: - currentSettings = &readerSettings; - break; - case 2: - currentSettings = &controlsSettings; - break; - case 3: - currentSettings = &systemSettings; - break; - } - settingsCount = static_cast(currentSettings->size()); + applyCategorySelection(); } } diff --git a/src/activities/settings/StatusBarSettingsActivity.cpp b/src/activities/settings/StatusBarSettingsActivity.cpp index 7bd755d654..26caba0f6f 100644 --- a/src/activities/settings/StatusBarSettingsActivity.cpp +++ b/src/activities/settings/StatusBarSettingsActivity.cpp @@ -127,6 +127,21 @@ void StatusBarSettingsActivity::onExit() { Activity::onExit(); } void StatusBarSettingsActivity::loop() { if (optionPopup.handleInput(mappedInput, [this] { requestUpdate(); })) return; + const auto& metrics = UITheme::getInstance().getMetrics(); + const int contentTop = metrics.topPadding + metrics.headerHeight + metrics.verticalSpacing; + const int contentHeight = + renderer.getScreenHeight() - contentTop - metrics.buttonHintsHeight - metrics.verticalSpacing * 2; + switch (handleListTouch(selectedIndex, visibleItemCount, contentTop, contentHeight, false)) { + case ListTouchResult::Activated: + handleSelection(); + requestUpdate(); + return; + case ListTouchResult::Consumed: + return; + case ListTouchResult::None: + break; + } + if (mappedInput.wasPressed(MappedInputManager::Button::Back)) { finish(); return; diff --git a/src/activities/util/BmpViewerActivity.cpp b/src/activities/util/BmpViewerActivity.cpp index def410155d..edf3261621 100644 --- a/src/activities/util/BmpViewerActivity.cpp +++ b/src/activities/util/BmpViewerActivity.cpp @@ -180,11 +180,37 @@ void BmpViewerActivity::loop() { // Keep CPU awake/polling so 1st click works Activity::loop(); + auto openSibling = [this](const int delta) { + if (currentImageIndex < 0) { + return false; + } + const int nextIndex = currentImageIndex + delta; + if (siblingImages.size() <= 1 || nextIndex < 0 || nextIndex >= static_cast(siblingImages.size())) { + return false; + } + currentImageIndex = nextIndex; + std::string dirPath = FsHelpers::extractFolderPath(filePath); + if (dirPath.back() != '/') dirPath += "/"; + filePath = dirPath + siblingImages[currentImageIndex]; + onEnter(); + return true; + }; + if (mappedInput.wasReleased(MappedInputManager::Button::Back)) { activityManager.goToFileBrowser(filePath); return; } + const auto swipe = mappedInput.wasSwipe(); + if (swipe == MappedInputManager::SwipeDir::Left) { + openSibling(1); + return; + } + if (swipe == MappedInputManager::SwipeDir::Right) { + openSibling(-1); + return; + } + if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { doSetSleepCover(); return; @@ -192,26 +218,13 @@ void BmpViewerActivity::loop() { if (mappedInput.wasReleased(MappedInputManager::Button::Left) || mappedInput.wasReleased(MappedInputManager::Button::Up)) { - if (siblingImages.size() > 1 && currentImageIndex > 0) { - currentImageIndex--; - std::string dirPath = FsHelpers::extractFolderPath(filePath); - if (dirPath.back() != '/') dirPath += "/"; - filePath = dirPath + siblingImages[currentImageIndex]; - onEnter(); - } + openSibling(-1); return; } if (mappedInput.wasReleased(MappedInputManager::Button::Right) || mappedInput.wasReleased(MappedInputManager::Button::Down)) { - if (siblingImages.size() > 1 && currentImageIndex != -1 && - currentImageIndex < static_cast(siblingImages.size()) - 1) { - currentImageIndex++; - std::string dirPath = FsHelpers::extractFolderPath(filePath); - if (dirPath.back() != '/') dirPath += "/"; - filePath = dirPath + siblingImages[currentImageIndex]; - onEnter(); - } + openSibling(1); return; } -} \ No newline at end of file +} diff --git a/src/activities/util/ConfirmationActivity.cpp b/src/activities/util/ConfirmationActivity.cpp index f37cfde8e7..4feecef011 100644 --- a/src/activities/util/ConfirmationActivity.cpp +++ b/src/activities/util/ConfirmationActivity.cpp @@ -22,12 +22,17 @@ void ConfirmationActivity::onEnter() { safeBody = renderer.truncatedText(fontId, body.c_str(), maxWidth, EpdFontFamily::REGULAR); } - int totalHeight = 0; - if (!safeHeading.empty()) totalHeight += lineHeight; - if (!safeBody.empty()) totalHeight += lineHeight; - if (!safeHeading.empty() && !safeBody.empty()) totalHeight += spacing; + // Text sits in the upper part of the screen so the confirmation popup + // (centered) doesn't cover it. + startY = renderer.getScreenHeight() / 6; - startY = (renderer.getScreenHeight() - totalHeight) / 2; + const char* options[] = {I18N.get(StrId::STR_CANCEL), I18N.get(StrId::STR_CONFIRM)}; + confirmPopup.show(safeHeading.c_str(), options, 2, 0, [this](int idx) { + ActivityResult res; + res.isCancelled = (idx != 1); + setResult(std::move(res)); + finish(); + }); requestUpdate(true); } @@ -48,27 +53,17 @@ void ConfirmationActivity::render(RenderLock&& lock) { renderer.drawCenteredText(fontId, currentY, safeBody.c_str(), true, EpdFontFamily::REGULAR); } - // Draw UI Elements - const auto labels = mappedInput.mapLabels("", "", I18N.get(StrId::STR_CANCEL), I18N.get(StrId::STR_CONFIRM)); - GUI.drawButtonHints(renderer, labels.btn1, labels.btn2, labels.btn3, labels.btn4); + if (confirmPopup.processRender(renderer, mappedInput)) return; renderer.displayBuffer(HalDisplay::RefreshMode::FAST_REFRESH); } void ConfirmationActivity::loop() { - if (mappedInput.wasReleased(MappedInputManager::Button::Right)) { - ActivityResult res; - res.isCancelled = false; - setResult(std::move(res)); - finish(); - return; - } + if (confirmPopup.handleInput(mappedInput, [this] { requestUpdate(); })) return; - if (mappedInput.wasReleased(MappedInputManager::Button::Left)) { - ActivityResult res; - res.isCancelled = true; - setResult(std::move(res)); - finish(); - return; - } -} \ No newline at end of file + // Popup dismissed without a selection (Back button or tap outside): cancel. + ActivityResult res; + res.isCancelled = true; + setResult(std::move(res)); + finish(); +} diff --git a/src/activities/util/ConfirmationActivity.h b/src/activities/util/ConfirmationActivity.h index 1a4051cb68..29e815646f 100644 --- a/src/activities/util/ConfirmationActivity.h +++ b/src/activities/util/ConfirmationActivity.h @@ -3,6 +3,7 @@ #include #include "activities/Activity.h" +#include "components/OptionPopup.h" #include "fontIds.h" class ConfirmationActivity : public Activity { @@ -17,6 +18,7 @@ class ConfirmationActivity : public Activity { std::string safeHeading; std::string safeBody; + OptionPopup confirmPopup; int startY = 0; int lineHeight = 0; diff --git a/src/activities/util/IntervalSelectionActivity.cpp b/src/activities/util/IntervalSelectionActivity.cpp index 687360f256..d57098223d 100644 --- a/src/activities/util/IntervalSelectionActivity.cpp +++ b/src/activities/util/IntervalSelectionActivity.cpp @@ -49,6 +49,36 @@ void IntervalSelectionActivity::loop() { } } + int tx = 0; + int ty = 0; + const int screenWidth = renderer.getScreenWidth(); + const int barWidth = std::min(360, std::max(0, screenWidth - 40)); + constexpr int barHeight = 16; + const int barX = std::max(0, (screenWidth - barWidth) / 2); + const int barY = 140; + + // Live drag on the slider: once a touch lands on the bar, the value follows the + // finger until release. Runs before the Back/Confirm handlers because the release + // of a drag can also register as a swipe (e.g. the left-edge rightward back + // gesture) — the drag must consume it so it can't cancel or confirm the dialog. + if (mappedInput.isScreenTouchHeld(tx, ty)) { + if (draggingBar || (ty >= barY - 20 && ty < barY + barHeight + 20 && tx >= barX && tx < barX + barWidth)) { + draggingBar = true; + const int range = std::max(1, maxValue - minValue); + const int dragged = + clampedValue(minValue + std::clamp(tx - barX, 0, barWidth - 1) * range / std::max(1, barWidth - 1)); + if (dragged != value) { + value = dragged; + requestUpdate(); + } + return; + } + } else if (draggingBar) { + // Release frame of a drag: swallow the tap/swipe events it produced. + draggingBar = false; + return; + } + if (mappedInput.wasReleased(MappedInputManager::Button::Back)) { ActivityResult result; result.isCancelled = true; @@ -63,6 +93,27 @@ void IntervalSelectionActivity::loop() { return; } + if (mappedInput.wasScreenTapped(tx, ty)) { + if (ty >= barY - 20 && ty < barY + barHeight + 20 && tx >= barX && tx < barX + barWidth) { + const int range = std::max(1, maxValue - minValue); + value = clampedValue(minValue + (tx - barX) * range / std::max(1, barWidth - 1)); + requestUpdate(); + return; + } + if (ty >= renderer.getScreenHeight() - 80) { + if (tx < renderer.getScreenWidth() / 3) { + ActivityResult result; + result.isCancelled = true; + setResult(std::move(result)); + finish(); + } else if (tx > renderer.getScreenWidth() * 2 / 3) { + setResult(IntervalResult{static_cast(value)}); + finish(); + } + return; + } + } + buttonNavigator.onPressAndContinuous({MappedInputManager::Button::Left}, [this] { adjustValue(-smallStep); }); buttonNavigator.onPressAndContinuous({MappedInputManager::Button::Right}, [this] { adjustValue(smallStep); }); diff --git a/src/activities/util/IntervalSelectionActivity.h b/src/activities/util/IntervalSelectionActivity.h index bacc78abb1..6f3479031f 100644 --- a/src/activities/util/IntervalSelectionActivity.h +++ b/src/activities/util/IntervalSelectionActivity.h @@ -43,6 +43,7 @@ class IntervalSelectionActivity final : public Activity { int largeStep; bool readerActivity; bool ignoreConfirmRelease; + bool draggingBar = false; ButtonNavigator buttonNavigator; void adjustValue(int delta); diff --git a/src/activities/util/KeyboardEntryActivity.cpp b/src/activities/util/KeyboardEntryActivity.cpp index ec509a2aee..e434fec696 100644 --- a/src/activities/util/KeyboardEntryActivity.cpp +++ b/src/activities/util/KeyboardEntryActivity.cpp @@ -4,24 +4,140 @@ #include #include +#include #include "MappedInputManager.h" #include "components/UITheme.h" #include "fontIds.h" -const char* const KeyboardEntryActivity::shiftString[2] = {"shift", "SHIFT"}; +namespace fui = freeink::ui; + +namespace { + +constexpr fui::ActionId ACTION_KEY = 1; + +// --------------------------------------------------------------------------- +// URL layers. The SDK builtin layouts have no URL variant (":", "/", ".", the +// snippet panel), so these are app-defined tables over the same public +// KeyboardLayout structs. URLs are ASCII, so the letter rows are EN-arranged +// regardless of UI language. +// --------------------------------------------------------------------------- + +#define UK(label, output, value) \ + fui::KeyboardKey { label, output, fui::KeyKind::Normal, fui::StateNormal, value, 1, true, nullptr } +#define UKA(label, output, value, alt) \ + fui::KeyboardKey { label, output, fui::KeyKind::Normal, fui::StateNormal, value, 1, true, alt } +#define UKW(label, output, value, units) \ + fui::KeyboardKey { label, output, fui::KeyKind::Normal, fui::StateNormal, value, units, true, nullptr } +#define UKS(label, kind, value, units) \ + fui::KeyboardKey { label, nullptr, kind, fui::StateNormal, value, units, true, nullptr } + +constexpr int16_t URL_PANEL_VALUE = -3; // mirrors KeyboardEntryActivity::URL_PANEL_KEY + +const fui::KeyboardKey URL_NUM_ROW[] = {UKA("1", "1", '1', "!"), UKA("2", "2", '2', "@"), UKA("3", "3", '3', "#"), + UKA("4", "4", '4', "$"), UKA("5", "5", '5', "%"), UKA("6", "6", '6', "^"), + UKA("7", "7", '7', "&"), UKA("8", "8", '8', "*"), UKA("9", "9", '9', "("), + UKA("0", "0", '0', ")")}; + +const fui::KeyboardKey URL_ROW1[] = {UK("q", "q", 'q'), UK("w", "w", 'w'), UK("e", "e", 'e'), UK("r", "r", 'r'), + UK("t", "t", 't'), UK("y", "y", 'y'), UK("u", "u", 'u'), UK("i", "i", 'i'), + UK("o", "o", 'o'), UK("p", "p", 'p')}; +const fui::KeyboardKey URL_ROW2[] = {UK("a", "a", 'a'), UK("s", "s", 's'), UK("d", "d", 'd'), + UK("f", "f", 'f'), UK("g", "g", 'g'), UK("h", "h", 'h'), + UK("j", "j", 'j'), UK("k", "k", 'k'), UK("l", "l", 'l')}; +const fui::KeyboardKey URL_ROW3[] = {UKS("Shift", fui::KeyKind::Shift, fui::QWERTY_KEY_SHIFT, 2), + UK("z", "z", 'z'), + UK("x", "x", 'x'), + UK("c", "c", 'c'), + UK("v", "v", 'v'), + UK("b", "b", 'b'), + UK("n", "n", 'n'), + UK("m", "m", 'm'), + UKS("Del", fui::KeyKind::Delete, fui::QWERTY_KEY_BACKSPACE, 2)}; +// URLs have no spaces, so the URL bottom row spends the space slot on ":", +// "/", "." and the snippet-panel toggle instead (the legacy keyboard did the +// same with its "URL" key). +const fui::KeyboardKey URL_BOTTOM[] = {UKS("?123", fui::KeyKind::Mode, fui::QWERTY_KEY_MODE, 2), + UK(":", ":", ':'), + UK("/", "/", '/'), + UK(".", ".", '.'), + UKW("URL", nullptr, URL_PANEL_VALUE, 2), + UKS("OK", fui::KeyKind::Ok, fui::QWERTY_KEY_ENTER, 2)}; + +const fui::KeyboardKey URL_SHIFT_ROW1[] = {UK("Q", "Q", 'Q'), UK("W", "W", 'W'), UK("E", "E", 'E'), UK("R", "R", 'R'), + UK("T", "T", 'T'), UK("Y", "Y", 'Y'), UK("U", "U", 'U'), UK("I", "I", 'I'), + UK("O", "O", 'O'), UK("P", "P", 'P')}; +const fui::KeyboardKey URL_SHIFT_ROW2[] = {UK("A", "A", 'A'), UK("S", "S", 'S'), UK("D", "D", 'D'), + UK("F", "F", 'F'), UK("G", "G", 'G'), UK("H", "H", 'H'), + UK("J", "J", 'J'), UK("K", "K", 'K'), UK("L", "L", 'L')}; +const fui::KeyboardKey URL_SHIFT_ROW3[] = {UKS("Shift", fui::KeyKind::Shift, fui::QWERTY_KEY_SHIFT, 2), + UK("Z", "Z", 'Z'), + UK("X", "X", 'X'), + UK("C", "C", 'C'), + UK("V", "V", 'V'), + UK("B", "B", 'B'), + UK("N", "N", 'N'), + UK("M", "M", 'M'), + UKS("Del", fui::KeyKind::Delete, fui::QWERTY_KEY_BACKSPACE, 2)}; + +// Snippet keys: multi-character outputs, stable ids above the localized-key +// range so they never collide with layout key ids. +const fui::KeyboardKey URL_SNIP_ROW1[] = {UK("https://", "https://", 2001), UK("www.", "www.", 2002), + UK(".com", ".com", 2003)}; +const fui::KeyboardKey URL_SNIP_ROW2[] = {UK("http://", "http://", 2004), UK("192.168.", "192.168.", 2005), + UK(".org", ".org", 2006)}; +const fui::KeyboardKey URL_SNIP_ROW3[] = {UK("/opds", "/opds", 2007), UK(":8080", ":8080", 2008), + UK(".net", ".net", 2009)}; +const fui::KeyboardKey URL_SNIP_BOTTOM[] = {UKS("abc", fui::KeyKind::Mode, fui::QWERTY_KEY_MODE, 2), + UKW("URL", nullptr, URL_PANEL_VALUE, 2), + UKS("Del", fui::KeyKind::Delete, fui::QWERTY_KEY_BACKSPACE, 2), + UKS("OK", fui::KeyKind::Ok, fui::QWERTY_KEY_ENTER, 2)}; + +#undef UK +#undef UKA +#undef UKW +#undef UKS + +const fui::KeyboardRow URL_ROWS[] = { + {URL_NUM_ROW, 10, 0}, {URL_ROW1, 10, 0}, {URL_ROW2, 9, 1}, {URL_ROW3, 9, 0}, {URL_BOTTOM, 6, 0}}; +const fui::KeyboardRow URL_SHIFT_ROWS[] = { + {URL_NUM_ROW, 10, 0}, {URL_SHIFT_ROW1, 10, 0}, {URL_SHIFT_ROW2, 9, 1}, {URL_SHIFT_ROW3, 9, 0}, {URL_BOTTOM, 6, 0}}; +const fui::KeyboardRow URL_SNIP_ROWS[] = { + {URL_SNIP_ROW1, 3, 0}, {URL_SNIP_ROW2, 3, 0}, {URL_SNIP_ROW3, 3, 0}, {URL_SNIP_BOTTOM, 4, 0}}; + +const fui::KeyboardLayout URL_LAYOUT{URL_ROWS, 5}; +const fui::KeyboardLayout URL_SHIFT_LAYOUT{URL_SHIFT_ROWS, 5}; +const fui::KeyboardLayout URL_SNIPPET_LAYOUT{URL_SNIP_ROWS, 4}; + +fui::KeyboardLayoutId layoutForLanguage(const Language language) { + switch (language) { + case Language::FR: + return fui::KeyboardLayoutId::AzertyFr; + case Language::DE: + return fui::KeyboardLayoutId::QwertzDe; + case Language::ES: + return fui::KeyboardLayoutId::SpanishEs; + default: + return fui::KeyboardLayoutId::QwertyEn; + } +} + +} // namespace void KeyboardEntryActivity::onEnter() { Activity::onEnter(); cursorPos = text.length(); - symMode = false; - urlMode = false; + // URL layers are EN-arranged app tables; everything else follows the UI + // language. + layoutId = inputType == InputType::Url ? fui::KeyboardLayoutId::QwertyEn : layoutForLanguage(I18N.getLanguage()); + shifted = false; + symbols = false; + urlPanel = false; cursorMode = false; togglePos = false; passwordVisible = false; - shiftState = 0; - selectedRow = 0; - selectedCol = 0; + selRow = 0; + selCol = 0; delPressCount = 0; hintVisible = false; hintShowTime = 0; @@ -29,167 +145,397 @@ void KeyboardEntryActivity::onEnter() { rightLongHandled = false; savedCursorPos = 0; rightStartCursorPos = 0; + touchRouter.reset(); + touchRouter.holdMs = TOUCH_LONG_PRESS_MS; + touchRouter.overrideHoldMs = TOUCH_DEL_LONG_PRESS_MS; + interactionsReady = false; requestUpdate(); } void KeyboardEntryActivity::onExit() { Activity::onExit(); } -int KeyboardEntryActivity::getContentRowCount() const { - if (urlMode) return 3; - return ABC_ROWS; +const fui::KeyboardLayout& KeyboardEntryActivity::currentLayout() const { + if (symbols) return fui::builtinKeyboardLayout(layoutId, shifted, true); + if (inputType == InputType::Url) { + if (urlPanel) return URL_SNIPPET_LAYOUT; + return shifted ? URL_SHIFT_LAYOUT : URL_LAYOUT; + } + return fui::builtinKeyboardLayout(layoutId, shifted, false, /*numberRow=*/true); } -int KeyboardEntryActivity::getContentColCount() const { - if (urlMode) return 3; - return COLS; +const fui::KeyboardKey* KeyboardEntryActivity::selectedKey() const { + const fui::KeyboardLayout& layout = currentLayout(); + if (selRow < 0 || selRow >= layout.rowCount) return nullptr; + const fui::KeyboardRow& row = layout.rows[selRow]; + if (selCol < 0 || selCol >= row.count) return nullptr; + return &row.keys[selCol]; } -int KeyboardEntryActivity::getTotalRowCount() const { return getContentRowCount() + 1; } - -bool KeyboardEntryActivity::isBottomRow(const int row) const { return row == getContentRowCount(); } - -char KeyboardEntryActivity::getSelectedChar() const { - const KeyDef(*layout)[COLS] = symMode ? symLayout : (inputType == InputType::Url ? urlLayout : abcLayout); +int KeyboardEntryActivity::selectedLogicalIndex() const { + const fui::KeyboardLayout& layout = currentLayout(); + int index = 0; + for (int r = 0; r < selRow && r < layout.rowCount; r++) { + index += layout.rows[r].count; + } + return index + selCol; +} - if (selectedRow < 0 || selectedRow >= getContentRowCount()) return '\0'; - if (selectedCol < 0 || selectedCol >= COLS) return '\0'; +void KeyboardEntryActivity::clampSelection() { + const fui::KeyboardLayout& layout = currentLayout(); + if (layout.rowCount == 0) { + selRow = 0; + selCol = 0; + return; + } + if (selRow < 0) selRow = 0; + if (selRow >= layout.rowCount) selRow = layout.rowCount - 1; + const int cols = layout.rows[selRow].count; + if (selCol < 0) selCol = 0; + if (selCol >= cols) selCol = cols > 0 ? cols - 1 : 0; +} - const KeyDef& key = layout[selectedRow][selectedCol]; - return (shiftState > 0 && key.secondary != '\0') ? key.secondary : key.primary; +void KeyboardEntryActivity::moveSelectionRow(const int delta) { + const fui::KeyboardLayout& layout = currentLayout(); + if (layout.rowCount == 0) return; + const int oldCols = selRow < layout.rowCount ? layout.rows[selRow].count : 1; + selRow = (selRow + delta + layout.rowCount) % layout.rowCount; + const int newCols = layout.rows[selRow].count; + // Proportional column mapping keeps vertical travel intuitive between rows + // of different key counts (e.g. a 10-key letter row over a 6-key bottom row). + if (oldCols > 0 && newCols > 0 && oldCols != newCols) { + selCol = selCol * newCols / oldCols; + } + clampSelection(); } -char KeyboardEntryActivity::getAlternativeChar() const { - if (symMode || urlMode) return '\0'; - if (inputType == InputType::Url && selectedRow > 0) return '\0'; +void KeyboardEntryActivity::moveSelectionCol(const int delta) { + const fui::KeyboardLayout& layout = currentLayout(); + if (selRow < 0 || selRow >= layout.rowCount) return; + const int cols = layout.rows[selRow].count; + if (cols <= 0) return; + selCol = (selCol + delta + cols) % cols; +} - const KeyDef(*layout)[COLS] = abcLayout; +bool KeyboardEntryActivity::syncSelectionToValue(const int16_t value) { + const fui::KeyboardLayout& layout = currentLayout(); + for (int r = 0; r < layout.rowCount; r++) { + for (int c = 0; c < layout.rows[r].count; c++) { + if (layout.rows[r].keys[c].value == value) { + selRow = r; + selCol = c; + return true; + } + } + } + return false; +} - if (selectedRow < 0 || selectedRow >= getContentRowCount()) return '\0'; - if (selectedCol < 0 || selectedCol >= COLS) return '\0'; +size_t KeyboardEntryActivity::utf8Prev(const std::string& s, size_t pos) { + if (pos == 0) return 0; + pos--; + while (pos > 0 && (static_cast(s[pos]) & 0xC0) == 0x80) pos--; + return pos; +} - const KeyDef& key = layout[selectedRow][selectedCol]; - const char current = getSelectedChar(); - if (current == key.primary && key.secondary != '\0') return key.secondary; - if (current == key.secondary) return key.primary; - return '\0'; +size_t KeyboardEntryActivity::utf8Next(const std::string& s, size_t pos) { + if (pos >= s.length()) return s.length(); + pos++; + while (pos < s.length() && (static_cast(s[pos]) & 0xC0) == 0x80) pos++; + return pos; } -bool KeyboardEntryActivity::insertChar(char c) { - if (c == '\0') return true; - if (maxLength != 0 && text.length() >= maxLength) return true; +void KeyboardEntryActivity::insertUtf8(const char* out) { + if (!out || !*out) return; + const size_t n = strlen(out); + if (maxLength != 0 && text.length() + n > maxLength) return; if (cursorPos > text.length()) cursorPos = text.length(); + text.insert(cursorPos, out, n); + cursorPos += n; +} - text.insert(cursorPos, 1, c); - cursorPos++; +bool KeyboardEntryActivity::backspaceUtf8() { + if (text.empty() || cursorPos == 0) return false; + const size_t prev = utf8Prev(text, cursorPos); + text.erase(prev, cursorPos - prev); + cursorPos = prev; return true; } -void KeyboardEntryActivity::insertString(const std::string& str) { - if (str.empty()) return; - if (maxLength != 0 && text.length() + str.length() > maxLength) return; - if (cursorPos > text.length()) cursorPos = text.length(); +bool KeyboardEntryActivity::activateValue(const int16_t value, const bool longPress) { + switch (value) { + case fui::QWERTY_KEY_SHIFT: + delPressCount = 0; + hintVisible = false; + // Letters: case toggle. Symbols: pages between "?123" and "#+=". + shifted = !shifted; + clampSelection(); + return true; + case fui::QWERTY_KEY_MODE: + delPressCount = 0; + hintVisible = false; + if (urlPanel) { + urlPanel = false; + } else { + symbols = !symbols; + shifted = false; + } + clampSelection(); + return true; + case URL_PANEL_KEY: + delPressCount = 0; + hintVisible = false; + urlPanel = !urlPanel; + symbols = false; + shifted = false; + clampSelection(); + return true; + case fui::QWERTY_KEY_ENTER: + onComplete(text); + return false; + case fui::QWERTY_KEY_BACKSPACE: + if (longPress) { + text.clear(); + cursorPos = 0; + return true; + } + delPressCount++; + if (delPressCount >= 2) { + hintVisible = true; + hintShowTime = millis(); + } + backspaceUtf8(); + return true; + default: { + delPressCount = 0; + hintVisible = false; + const fui::KeyboardLayout& layer = currentLayout(); + // keyboardAltOutputFor covers explicit alts and the letter case-flip. + const char* out = longPress ? fui::keyboardAltOutputFor(layer, value) : nullptr; + if (!out) out = fui::keyboardOutputFor(layer, value); + if (!out) return false; + insertUtf8(out); + if (shifted && !symbols) { + shifted = false; // shift auto-releases after one character + clampSelection(); + } + return true; + } + } +} - text.insert(cursorPos, str); - cursorPos += str.length(); +bool KeyboardEntryActivity::clearAllOrAltOnSelected() { + const fui::KeyboardKey* key = selectedKey(); + if (!key) return false; + if (key->value == fui::QWERTY_KEY_BACKSPACE) { + text.clear(); + cursorPos = 0; + return true; + } + // Explicit alts and the letter case-flip, same as touch long-press. + const char* alt = fui::keyboardAltOutputFor(currentLayout(), key->value); + if (alt) { + insertUtf8(alt); + return true; + } + return false; } -bool KeyboardEntryActivity::handleKeyPress() { - if (isBottomRow(selectedRow)) { - switch (static_cast(selectedCol)) { - case SpecialKeyType::Shift: - delPressCount = 0; - hintVisible = false; - // Shift is meaningless in the URL-snippet panel and the symbol layout, but - // must work for the URL letter layout so uppercase letters can be entered (#2178). - if (urlMode) return true; - if (symMode) return true; - shiftState = (shiftState + 1) % 2; - return true; - case SpecialKeyType::Mode: { - delPressCount = 0; - hintVisible = false; - if (urlMode) { - urlMode = false; - symMode = false; - selectedRow = getTotalRowCount() - 1; - selectedCol = static_cast(SpecialKeyType::Mode); - requestUpdate(); - return true; - } - symMode = !symMode; - int maxRow = getTotalRowCount() - 1; - if (selectedRow > maxRow) selectedRow = maxRow; - if (isBottomRow(selectedRow)) { - if (selectedCol >= BOTTOM_KEY_COUNT) selectedCol = BOTTOM_KEY_COUNT - 1; - } else { - if (selectedCol >= getContentColCount()) selectedCol = getContentColCount() - 1; - } +std::string KeyboardEntryActivity::displayTextForCurrentState() const { + std::string displayText = text; + if (inputType != InputType::Password || passwordVisible) { + return displayText; + } + + size_t revealPos; + if (cursorMode) { + revealPos = text.length(); // no reveal in displayText; block draws actual char directly + } else { + revealPos = (text.length() > 0 && cursorPos > 0) ? cursorPos - 1 : std::string::npos; + } + for (size_t i = 0; i < displayText.length(); i++) { + if (i != revealPos) { + displayText[i] = '*'; + } + } + return displayText; +} + +int KeyboardEntryActivity::measureRange(std::string& s, const int start, const int end) const { + if (end <= start) return 0; + // s[end] is writable even at s.length() (the terminator slot); only '\0' may + // be written there, which is exactly what the measurement needs. + const char saved = s[end]; + s[end] = '\0'; + const int width = renderer.getTextAdvanceX(UI_12_FONT_ID, s.c_str() + start, EpdFontFamily::REGULAR); + s[end] = saved; + return width; +} + +int KeyboardEntryActivity::lineBreakEnd(std::string& s, const int start, const int maxWidth) const { + const int len = static_cast(s.length()); + if (measureRange(s, start, len) <= maxWidth) return len; + int lo = start + 1; + int hi = len - 1; + int best = start + 1; + while (lo <= hi) { + const int mid = lo + (hi - lo) / 2; + if (measureRange(s, start, mid) <= maxWidth) { + best = mid; + lo = mid + 1; + } else { + hi = mid - 1; + } + } + return best; +} + +bool KeyboardEntryActivity::cursorPositionFromPoint(const int x, const int y, size_t& position) const { + // Key taps are the overwhelmingly common case; they land on the keyboard, + // never the text field, so skip the wrap/measure work entirely. + if (y >= keyboardRect().y) return false; + + const int pageWidth = renderer.getScreenWidth(); + const auto& metrics = UITheme::getInstance().getMetrics(); + + const int lineHeight = renderer.getLineHeight(UI_12_FONT_ID); + const int inputStartY = metrics.topPadding + metrics.headerHeight + metrics.verticalSpacing + + metrics.verticalSpacing * 4 + metrics.keyboardVerticalOffset; + + int availableWidth = pageWidth; + if (gpio.deviceIsX3()) { + availableWidth -= 2 * metrics.sideButtonHintsWidth; + } + const int effectiveMargin = (pageWidth - availableWidth * metrics.keyboardTextFieldWidthPercent / 100) / 2; + const int toggleGap = inputType == InputType::Password ? 4 : 0; + const int toggleReserve = inputType == InputType::Password ? std::max(renderer.getTextWidth(UI_12_FONT_ID, "[abc]"), + renderer.getTextWidth(UI_12_FONT_ID, "[***]")) + + toggleGap + : 0; + const int textAreaWidth = pageWidth - 2 * effectiveMargin - toggleReserve; + const int maxLineWidth = textAreaWidth; + const bool centerText = metrics.keyboardCenteredText; + std::string displayText = displayTextForCurrentState(); + + int lineStartIdx = 0; + int lineY = inputStartY; + int lastLineStartIdx = 0; + int lastLineEndIdx = static_cast(displayText.length()); + int lastLineStartX = effectiveMargin; + int lastLineWidth = 0; + + while (true) { + const int lineEndIdx = lineBreakEnd(displayText, lineStartIdx, maxLineWidth); + const int textWidth = measureRange(displayText, lineStartIdx, lineEndIdx); + const int lineStartX = centerText ? effectiveMargin + (maxLineWidth - textWidth) / 2 : effectiveMargin; + lastLineStartIdx = lineStartIdx; + lastLineEndIdx = lineEndIdx; + lastLineStartX = lineStartX; + lastLineWidth = textWidth; + + if (y >= lineY - metrics.verticalSpacing && y < lineY + lineHeight + metrics.verticalSpacing) { + if (x <= lineStartX) { + position = static_cast(lineStartIdx); return true; } - case SpecialKeyType::Space: - delPressCount = 0; - hintVisible = false; - if (inputType == InputType::Url) { - urlMode = !urlMode; - if (urlMode) { - symMode = false; - } - selectedRow = getTotalRowCount() - 1; - selectedCol = static_cast(SpecialKeyType::Space); - requestUpdate(); - } else { - return insertChar(' '); - } + if (x >= lineStartX + textWidth) { + position = static_cast(lineEndIdx); return true; - case SpecialKeyType::Del: - delPressCount++; - if (delPressCount >= 2) { - hintVisible = true; - hintShowTime = millis(); - } - if (cursorPos > 0 && !text.empty()) { - text.erase(cursorPos - 1, 1); - cursorPos--; + } + + int previousWidth = 0; + for (int i = lineStartIdx; i < lineEndIdx; i++) { + const int nextWidth = measureRange(displayText, lineStartIdx, i + 1); + const int midpoint = lineStartX + previousWidth + (nextWidth - previousWidth) / 2; + if (x < midpoint) { + position = static_cast(i); + return true; } - return true; - case SpecialKeyType::Ok: - delPressCount = 0; - hintVisible = false; - onComplete(text); - return false; - default: - return true; + previousWidth = nextWidth; + } + position = static_cast(lineEndIdx); + return true; } - } - if (urlMode) { - delPressCount = 0; - hintVisible = false; - const int idx = selectedCol + selectedRow * 3; - if (idx < URL_SNIPPET_COUNT) { - insertString(urlSnippets[idx]); + if (lineEndIdx == static_cast(displayText.length())) { + break; } - return true; + + lineY += lineHeight; + lineStartIdx = lineEndIdx; } - delPressCount = 0; - hintVisible = false; + const int underlineBottom = lineY + lineHeight + metrics.verticalSpacing + 8; + if (y >= inputStartY - metrics.verticalSpacing && y < underlineBottom && x >= effectiveMargin && + x < effectiveMargin + maxLineWidth + toggleReserve) { + position = x < lastLineStartX + lastLineWidth ? static_cast(lastLineStartIdx) + : static_cast(lastLineEndIdx); + return true; + } - return insertChar(getSelectedChar()); + return false; } -void KeyboardEntryActivity::mapColContentBottom(int& col, bool goingUp) const { - if (urlMode) { - col = goingUp ? col - 1 : col + 1; - if (col < 0) col = 0; - if (col >= 3) col = 2; - } else { - col = goingUp ? col * 2 : col / 2; - } +fui::Rect KeyboardEntryActivity::keyboardRect() const { + const auto& metrics = UITheme::getInstance().getMetrics(); + const int pageWidth = renderer.getScreenWidth(); + const int pageHeight = renderer.getScreenHeight(); + const int rows = currentLayout().rowCount; + const int gap = metrics.keyboardKeySpacing; + const int height = rows * metrics.keyboardKeyHeight + (rows > 1 ? (rows - 1) * gap : 0); + const int width = pageWidth * metrics.keyboardWidthPercent / 100; + const int x = (pageWidth - width) / 2; + const int y = + pageHeight - metrics.buttonHintsHeight - metrics.verticalSpacing - height + metrics.keyboardVerticalOffset; + return fui::Rect{static_cast(x), static_cast(y), static_cast(width), + static_cast(height)}; } void KeyboardEntryActivity::loop() { - const int totalRows = getTotalRowCount(); + int tx = 0; + int ty = 0; + + size_t touchedCursorPos = 0; + if (mappedInput.wasScreenTapped(tx, ty) && cursorPositionFromPoint(tx, ty, touchedCursorPos)) { + cursorPos = std::min(touchedCursorPos, text.length()); + // The masked text field maps taps per byte; snap back to a boundary so + // the cursor never lands inside a multi-byte character. + while (cursorPos > 0 && cursorPos < text.length() && (static_cast(text[cursorPos]) & 0xC0) == 0x80) { + cursorPos--; + } + cursorMode = false; + togglePos = false; + hintVisible = false; + touchRouter.reset(); + requestUpdate(); + return; + } + + if (!cursorMode && interactionsReady) { + const bool pressedDown = mappedInput.wasScreenTouchDown(tx, ty); + int tapX = 0; + int tapY = 0; + const bool tapped = mappedInput.wasScreenTapped(tapX, tapY); + int hx = 0; + int hy = 0; + const bool inContact = mappedInput.isScreenTouchHeld(hx, hy); + + const fui::TouchHoldRouter::Result result = + touchRouter.update(interactions, pressedDown, static_cast(tx), static_cast(ty), tapped, + static_cast(tapX), static_cast(tapY), inContact, millis()); + if (result.event) { + syncSelectionToValue(result.event.value); + if (activateValue(result.event.value, result.event.longPress)) { + requestUpdate(); + } + return; + } + if (result.activeChanged) { + requestUpdate(); + } + if (pressedDown || tapped) { + return; + } + } if (!cursorMode && mappedInput.wasPressed(MappedInputManager::Button::Up)) { upHeld = true; @@ -207,16 +553,7 @@ void KeyboardEntryActivity::loop() { if (mappedInput.wasReleased(MappedInputManager::Button::Up)) { if (upHeld && !upLongHandled && !cursorMode) { - bool wasBottom = isBottomRow(selectedRow); - const int contentCols = getContentColCount(); - selectedRow = ButtonNavigator::previousIndex(selectedRow, totalRows); - if (wasBottom && !isBottomRow(selectedRow)) { - mapColContentBottom(selectedCol, true); - } else if (!wasBottom && isBottomRow(selectedRow)) { - mapColContentBottom(selectedCol, false); - } - int maxCol = isBottomRow(selectedRow) ? BOTTOM_KEY_COUNT - 1 : contentCols - 1; - if (selectedCol > maxCol) selectedCol = maxCol; + moveSelectionRow(-1); requestUpdate(); } upHeld = false; @@ -239,16 +576,7 @@ void KeyboardEntryActivity::loop() { if (mappedInput.wasReleased(MappedInputManager::Button::Down)) { if (downHeld && !downLongHandled && !cursorMode) { - bool wasBottom = isBottomRow(selectedRow); - const int contentCols = getContentColCount(); - selectedRow = ButtonNavigator::nextIndex(selectedRow, totalRows); - if (wasBottom && !isBottomRow(selectedRow)) { - mapColContentBottom(selectedCol, true); - } else if (!wasBottom && isBottomRow(selectedRow)) { - mapColContentBottom(selectedCol, false); - } - int maxCol = isBottomRow(selectedRow) ? BOTTOM_KEY_COUNT - 1 : contentCols - 1; - if (selectedCol > maxCol) selectedCol = maxCol; + moveSelectionRow(1); requestUpdate(); } downHeld = false; @@ -257,8 +585,7 @@ void KeyboardEntryActivity::loop() { buttonNavigator.onPressAndContinuous({MappedInputManager::Button::Left}, [this] { if (cursorMode) return; - int maxCol = isBottomRow(selectedRow) ? BOTTOM_KEY_COUNT - 1 : getContentColCount() - 1; - selectedCol = ButtonNavigator::previousIndex(selectedCol, maxCol + 1); + moveSelectionCol(-1); requestUpdate(); }); @@ -269,7 +596,7 @@ void KeyboardEntryActivity::loop() { togglePos = false; requestUpdate(); } else if (cursorPos > 0) { - cursorPos--; + cursorPos = utf8Prev(text, cursorPos); requestUpdate(); } } @@ -285,8 +612,7 @@ void KeyboardEntryActivity::loop() { buttonNavigator.onPressAndContinuous({MappedInputManager::Button::Right}, [this] { if (cursorMode) return; - int maxCol = isBottomRow(selectedRow) ? BOTTOM_KEY_COUNT - 1 : getContentColCount() - 1; - selectedCol = ButtonNavigator::nextIndex(selectedCol, maxCol + 1); + moveSelectionCol(1); requestUpdate(); }); @@ -306,7 +632,7 @@ void KeyboardEntryActivity::loop() { rightLongHandled = false; } if (cursorMode && !togglePos && cursorPos < text.length()) { - cursorPos++; + cursorPos = utf8Next(text, cursorPos); requestUpdate(); } if (cursorMode) return; @@ -319,20 +645,19 @@ void KeyboardEntryActivity::loop() { confirmLongHandled = false; } + const fui::KeyboardKey* selKey = selectedKey(); + const bool selectedDel = selKey && selKey->value == fui::QWERTY_KEY_BACKSPACE; + if (confirmHeld && !confirmLongHandled && mappedInput.isPressed(MappedInputManager::Button::Confirm) && - mappedInput.getHeldTime() > DEL_LONG_PRESS_MS && isBottomRow(selectedRow) && - selectedCol == static_cast(SpecialKeyType::Del)) { - text.clear(); - cursorPos = 0; + mappedInput.getHeldTime() > DEL_LONG_PRESS_MS && selectedDel) { + clearAllOrAltOnSelected(); confirmLongHandled = true; requestUpdate(); } if (confirmHeld && !confirmLongHandled && mappedInput.isPressed(MappedInputManager::Button::Confirm) && mappedInput.getHeldTime() > LONG_PRESS_MS) { - char alt = getAlternativeChar(); - if (alt != '\0') { - insertChar(alt); + if (!selectedDel && clearAllOrAltOnSelected()) { requestUpdate(); confirmLongHandled = true; } @@ -340,7 +665,7 @@ void KeyboardEntryActivity::loop() { if (mappedInput.wasReleased(MappedInputManager::Button::Confirm)) { if (confirmHeld && !confirmLongHandled && !cursorMode) { - if (handleKeyPress()) { + if (selKey && activateValue(selKey->value, false)) { requestUpdate(); } } else if (confirmHeld && !confirmLongHandled && cursorMode && inputType == InputType::Password && togglePos) { @@ -365,7 +690,6 @@ void KeyboardEntryActivity::render(RenderLock&&) { renderer.clearScreen(); const auto pageWidth = renderer.getScreenWidth(); - const auto pageHeight = renderer.getScreenHeight(); const auto& metrics = UITheme::getInstance().getMetrics(); GUI.drawHeader(renderer, Rect{0, metrics.topPadding, pageWidth, metrics.headerHeight}, title.c_str()); @@ -375,23 +699,7 @@ void KeyboardEntryActivity::render(RenderLock&&) { metrics.verticalSpacing * 4 + metrics.keyboardVerticalOffset; int inputHeight = 0; - std::string displayText; - if (inputType == InputType::Password && !passwordVisible) { - size_t revealPos; - if (cursorMode) { - revealPos = text.length(); // no reveal in displayText; block draws actual char directly - } else { - revealPos = (text.length() > 0 && cursorPos > 0) ? cursorPos - 1 : std::string::npos; - } - displayText = text; - for (size_t i = 0; i < displayText.length(); i++) { - if (i != revealPos) { - displayText[i] = '*'; - } - } - } else { - displayText = text; - } + std::string displayText = displayTextForCurrentState(); const bool isPassword = (inputType == InputType::Password); int availableWidth = pageWidth; @@ -415,16 +723,16 @@ void KeyboardEntryActivity::render(RenderLock&&) { } int lineStartIdx = 0; - int lineEndIdx = displayText.length(); int textWidth = 0; int cursorPixelX = effectiveMargin; int cursorLineY = inputStartY; bool cursorDrawn = false; while (true) { - std::string lineText = displayText.substr(lineStartIdx, lineEndIdx - lineStartIdx); + const int lineEndIdx = lineBreakEnd(displayText, lineStartIdx, maxLineWidth); + const std::string lineText = displayText.substr(lineStartIdx, lineEndIdx - lineStartIdx); textWidth = renderer.getTextAdvanceX(UI_12_FONT_ID, lineText.c_str(), EpdFontFamily::REGULAR); - if (textWidth <= maxLineWidth) { + { const bool isLastLine = (lineEndIdx == static_cast(displayText.length())); bool isCursorLine = false; if (!cursorDrawn && cursorPos >= lineStartIdx && @@ -473,15 +781,12 @@ void KeyboardEntryActivity::render(RenderLock&&) { } else { renderer.drawText(UI_12_FONT_ID, lineStartX, inputStartY + inputHeight, lineText.c_str()); } - if (lineEndIdx == displayText.length()) { + if (lineEndIdx == static_cast(displayText.length())) { break; } inputHeight += lineHeight; lineStartIdx = lineEndIdx; - lineEndIdx = displayText.length(); - } else { - lineEndIdx -= 1; } } @@ -549,20 +854,7 @@ void KeyboardEntryActivity::render(RenderLock&&) { } } - const int keyHeight = metrics.keyboardKeyHeight; - const int bottomKeyHeight = metrics.keyboardBottomKeyHeight; - const int keySpacing = metrics.keyboardKeySpacing; - const int contentCols = getContentColCount(); - const int keyboardWidth = pageWidth * metrics.keyboardWidthPercent / 100; - const int keyWidth = (keyboardWidth - (contentCols - 1) * keySpacing) / contentCols; - const int leftMargin = (pageWidth - (contentCols * keyWidth + (contentCols - 1) * keySpacing)) / 2; - - const int bottomRowGap = metrics.keyboardBottomKeySpacing > 0 ? 4 : 0; - const int keyboardStartY = metrics.keyboardBottomAligned - ? pageHeight - metrics.buttonHintsHeight - metrics.verticalSpacing - - (keyHeight + keySpacing) * getContentRowCount() - bottomKeyHeight - - bottomRowGap + metrics.keyboardVerticalOffset - : inputStartY + inputHeight + lineHeight + metrics.verticalSpacing; + const fui::Rect kbRect = keyboardRect(); const int tipsLh = renderer.getLineHeight(SMALL_FONT_ID); const int underlineBottom = inputStartY + inputHeight + lineHeight + metrics.verticalSpacing + 4; @@ -571,27 +863,27 @@ void KeyboardEntryActivity::render(RenderLock&&) { int tipCount = 0; if (cursorMode) { tipCount = 1; - } else if (urlMode) { + } else if (urlPanel) { tipCount = 1 + (!text.empty() ? 1 : 0); - } else if (symMode) { + } else if (symbols) { tipCount = !text.empty() ? 1 : 0; } else { tipCount = 1 + (inputType == InputType::Url ? 1 : 0) + (!text.empty() ? 1 : 0); } if (tipCount > 0) { - int y = (underlineBottom + keyboardStartY) / 2 - (tipCount + 1) * tipsLh / 2; + int y = (underlineBottom + kbRect.y) / 2 - (tipCount + 1) * tipsLh / 2; drawTip(tr(STR_KB_TIPS), y); y += tipsLh; if (cursorMode) { drawTip(tr(STR_KB_HINT_RETURN_KEYBOARD), y); - } else if (urlMode) { + } else if (urlPanel) { drawTip(tr(STR_KB_HINT_EXIT_URL_MODE), y); y += tipsLh; if (!text.empty()) { drawTip(tr(STR_KB_HINT_CLEAR_TEXT), y); } - } else if (symMode) { + } else if (symbols) { if (!text.empty()) { drawTip(tr(STR_KB_HINT_CLEAR_TEXT), y); } @@ -599,7 +891,7 @@ void KeyboardEntryActivity::render(RenderLock&&) { const char* altCharTip; if (inputType == InputType::Url) { altCharTip = tr(STR_KB_HINT_SECONDARY_CHAR); - } else if (shiftState > 0) { + } else if (shifted) { altCharTip = tr(STR_KB_HINT_LOWER_SECONDARY); } else { altCharTip = tr(STR_KB_HINT_UPPER_SECONDARY); @@ -616,123 +908,38 @@ void KeyboardEntryActivity::render(RenderLock&&) { } } - const int bkSpacing = metrics.keyboardBottomKeySpacing; - const int abcKeyWidth = (keyboardWidth - (COLS - 1) * keySpacing) / COLS; - const int contentTotalWidth = COLS * abcKeyWidth + (COLS - 1) * keySpacing; - const int bottomKeyWidth = (contentTotalWidth - (BOTTOM_KEY_COUNT - 1) * bkSpacing) / BOTTOM_KEY_COUNT; - const int bottomLeftMargin = - (pageWidth - (BOTTOM_KEY_COUNT * bottomKeyWidth + (BOTTOM_KEY_COUNT - 1) * bkSpacing)) / 2; - - int urlLeftMargin = leftMargin; - if (urlMode) { - const int urlTotalWidth = 3 * keyWidth + 2 * keySpacing; - const int urlCenterX = - bottomLeftMargin + static_cast(SpecialKeyType::Space) * (bottomKeyWidth + bkSpacing) + bottomKeyWidth / 2; - urlLeftMargin = urlCenterX - urlTotalWidth / 2; - } - - const KeyDef(*layout)[COLS] = symMode ? symLayout : (inputType == InputType::Url ? urlLayout : abcLayout); - const int contentRows = getContentRowCount(); - - for (int row = 0; row < contentRows; row++) { - const int rowY = keyboardStartY + row * (keyHeight + keySpacing); - const int rowLeftMargin = urlMode ? urlLeftMargin : leftMargin; - - for (int col = 0; col < contentCols; col++) { - const int keyX = rowLeftMargin + col * (keyWidth + keySpacing); - const bool isSelected = row == selectedRow && col == selectedCol; - const bool activeKeySelected = isSelected && !cursorMode; - - if (urlMode) { - const int snippetIdx = col + row * 3; - if (snippetIdx < URL_SNIPPET_COUNT) { - GUI.drawKeyboardKey(renderer, Rect{keyX, rowY, keyWidth, keyHeight}, urlSnippets[snippetIdx], - activeKeySelected, nullptr); - } - } else { - const KeyDef& key = layout[row][col]; - - char primaryChar = key.primary; - char secondaryChar = key.secondary; - - if (!symMode && shiftState > 0 && key.secondary != '\0') { - primaryChar = key.secondary; - secondaryChar = key.primary; - } - - const char primaryBuf[2] = {primaryChar, '\0'}; - const char secondaryBuf[2] = {secondaryChar, '\0'}; - const bool showSecondary = !symMode && row == 0 && secondaryChar != '\0'; - GUI.drawKeyboardKey(renderer, Rect{keyX, rowY, keyWidth, keyHeight}, primaryBuf, activeKeySelected, - showSecondary ? secondaryBuf : nullptr); - } - } - } - - const int bottomRowY = keyboardStartY + contentRows * (keyHeight + keySpacing) + bottomRowGap; - const bool bottomSelected = isBottomRow(selectedRow); - - struct BottomKeyInfo { - KeyboardKeyType themeType; - const char* label; - }; - const BottomKeyInfo bottomKeys[BOTTOM_KEY_COUNT] = { - {(symMode || urlMode) ? KeyboardKeyType::Disabled : KeyboardKeyType::Shift, - (symMode || urlMode) ? shiftString[0] : shiftString[shiftState]}, - {KeyboardKeyType::Mode, urlMode ? "abc" : (symMode ? "abc" : "#@!")}, - {inputType == InputType::Url ? KeyboardKeyType::Mode : KeyboardKeyType::Space, - inputType == InputType::Url ? "URL" : nullptr}, - {KeyboardKeyType::Del, nullptr}, - {KeyboardKeyType::Ok, tr(STR_OK_BUTTON)}, - }; - - for (int i = 0; i < BOTTOM_KEY_COUNT; i++) { - const int keyX = bottomLeftMargin + i * (bottomKeyWidth + bkSpacing); - const bool isSelected = bottomSelected && i == selectedCol; - - const bool activeKeySelected = isSelected && !cursorMode; - GUI.drawKeyboardKey(renderer, Rect{keyX, bottomRowY, bottomKeyWidth, bottomKeyHeight}, bottomKeys[i].label, - activeKeySelected, nullptr, bottomKeys[i].themeType); - } - - if (cursorMode) { - int selKeyX, selKeyY, selKeyW, selKeyH; - if (isBottomRow(selectedRow)) { - selKeyX = bottomLeftMargin + selectedCol * (bottomKeyWidth + bkSpacing); - selKeyY = bottomRowY; - selKeyW = bottomKeyWidth; - selKeyH = bottomKeyHeight; - } else { - const int rowLM = urlMode ? urlLeftMargin : leftMargin; - selKeyX = rowLM + selectedCol * (keyWidth + keySpacing); - selKeyY = keyboardStartY + selectedRow * (keyHeight + keySpacing); - selKeyW = keyWidth; - selKeyH = keyHeight; - } - if (isBottomRow(selectedRow)) { - GUI.drawKeyboardKey(renderer, Rect{selKeyX, selKeyY, selKeyW, selKeyH}, bottomKeys[selectedCol].label, true, - nullptr, bottomKeys[selectedCol].themeType, true); - } else if (urlMode) { - const int idx = selectedCol + selectedRow * 3; - if (idx < URL_SNIPPET_COUNT) { - GUI.drawKeyboardKey(renderer, Rect{selKeyX, selKeyY, selKeyW, selKeyH}, urlSnippets[idx], true, nullptr, - KeyboardKeyType::Normal, true); - } - } else { - const KeyDef& selKey = layout[selectedRow][selectedCol]; - char selPrimary = selKey.primary; - char selSecondary = selKey.secondary; - if (!symMode && shiftState > 0 && selKey.secondary != '\0') { - selPrimary = selKey.secondary; - selSecondary = selKey.primary; - } - const char selPrimaryBuf[2] = {selPrimary, '\0'}; - const char selSecondaryBuf[2] = {selSecondary, '\0'}; - const bool selShowSecondary = !symMode && selectedRow == 0 && selSecondary != '\0'; - GUI.drawKeyboardKey(renderer, Rect{selKeyX, selKeyY, selKeyW, selKeyH}, selPrimaryBuf, true, - selShowSecondary ? selSecondaryBuf : nullptr, KeyboardKeyType::Normal, true); - } - } + // The FreeInkUI keyboard draws the keys and registers their hit rects into + // `interactions`; loop() routes touch snapshots against that table. + interactionsReady = false; + fui::GfxRendererTarget target(renderer); + target.setFont(fui::GfxRendererTarget::FONT_SMALL, SMALL_FONT_ID); + target.setFont(fui::GfxRendererTarget::FONT_BODY, UI_12_FONT_ID); + const fui::DeviceContext device = target.deviceContext(); + const fui::InputSnapshot noInput{}; + fui::Frame<48> frame(target, device, noInput, interactions); + + fui::KeyboardProps props; + const fui::KeyboardLayout& layout = currentLayout(); + props.layout = &layout; + props.keyAction = ACTION_KEY; // one action id; loop() dispatches on key value + props.okLabel = tr(STR_OK_BUTTON); + props.shiftLabel = tr(STR_KEY_SHIFT); + // Match the label to the layer the mode key leads back from: the symbols + // layer and the URL snippet panel both label it "abc" in the static tables. + props.modeLabel = + (symbols || (inputType == InputType::Url && urlPanel)) ? tr(STR_KEY_MODE_ABC) : tr(STR_KEY_MODE_SYMBOLS); + props.inputMask = static_cast(fui::InputTouch | fui::InputLongPress); + props.selectedIndex = cursorMode ? -1 : static_cast(selectedLogicalIndex()); + props.labelText.font = fui::GfxRendererTarget::FONT_BODY; + props.altText.font = fui::GfxRendererTarget::FONT_SMALL; + props.gap = static_cast(metrics.keyboardKeySpacing); + props.padding = fui::Insets{0, 0, 0, 0}; + // Fingers land low on the bottom row (occlusion) and there is no key below + // to catch the miss — extend its hit band down to the button hints bar. + const int hintsTop = renderer.getScreenHeight() - metrics.buttonHintsHeight; + props.bottomHitOverflow = static_cast(std::max(0, hintsTop - (kbRect.y + kbRect.height))); + fui::keyboard(frame, kbRect, props); + interactionsReady = true; const auto labels = mappedInput.mapLabels(tr(STR_BACK), tr(STR_SELECT), tr(STR_DIR_LEFT), tr(STR_DIR_RIGHT)); GUI.drawButtonHints(renderer, labels.btn1, labels.btn2, labels.btn3, labels.btn4); diff --git a/src/activities/util/KeyboardEntryActivity.h b/src/activities/util/KeyboardEntryActivity.h index 128808acc2..c04e535dc2 100644 --- a/src/activities/util/KeyboardEntryActivity.h +++ b/src/activities/util/KeyboardEntryActivity.h @@ -1,23 +1,21 @@ #pragma once +#include #include +#include #include -#include #include #include #include "activities/Activity.h" #include "util/ButtonNavigator.h" -struct KeyDef { - char primary; - char secondary; -}; - -enum class SpecialKeyType { Shift, Mode, Space, Del, Ok }; - enum class InputType { Text, Password, Url }; +// Text entry on the FreeInkUI keyboard component: the SDK layout tables and +// keyboard() do the key rendering and hit-rect registration, InteractionBuffer +// routes taps/long-presses, and this activity owns the text field, cursor +// editing, and the URL snippet layouts. class KeyboardEntryActivity : public Activity { public: explicit KeyboardEntryActivity(GfxRenderer& renderer, MappedInputManager& mappedInput, @@ -43,16 +41,30 @@ class KeyboardEntryActivity : public Activity { ButtonNavigator buttonNavigator; - int selectedRow = 0; - int selectedCol = 0; - int shiftState = 0; - bool symMode = false; + // Keyboard layers. The letter/symbol layers come from the SDK's builtin + // layouts (with the always-visible number row); the URL layers are + // app-defined tables in the .cpp. + freeink::ui::KeyboardLayoutId layoutId = freeink::ui::KeyboardLayoutId::QwertyEn; + bool shifted = false; + bool symbols = false; + bool urlPanel = false; // URL snippet panel replaces the letter layer + + // Key hit rects registered by the keyboard component during render(); + // loop() routes touch snapshots against them. 5-row EN layout registers 41 + // keys, so 48 leaves headroom. + freeink::ui::InteractionBuffer<48> interactions; + + // GPIO selection over the current layout grid (row/col in layout terms; + // the bottom action row is just the last row). + int selRow = 0; + int selCol = 0; + bool confirmHeld = false; bool confirmLongHandled = false; bool cursorMode = false; bool togglePos = false; - size_t cursorPos = 0; + size_t cursorPos = 0; // byte offset into text (always on a code point boundary) bool upHeld = false; bool upLongHandled = false; bool downHeld = false; @@ -62,10 +74,15 @@ class KeyboardEntryActivity : public Activity { size_t savedCursorPos = 0; size_t rightStartCursorPos = 0; - bool urlMode = false; - static constexpr int URL_SNIPPET_COUNT = 9; - static constexpr const char* const urlSnippets[URL_SNIPPET_COUNT] = { - "https://", "www.", ".com", "http://", "192.168.", ".org", "/opds", ":8080", ".net"}; + // Tap/hold routing (threshold long-press, release swallow, slide re-arm) + // lives in the SDK; loop() feeds it the level-triggered touch state. + freeink::ui::TouchHoldRouter touchRouter; + + // loop() runs on the main task while render() rebuilds the interaction + // table on the render task; routing against a half-built table would read + // torn entries, so taps are dropped during the rebuild window. atomic (not + // volatile) so the flag also orders the table writes on dual-core targets. + std::atomic interactionsReady{false}; int delPressCount = 0; bool hintVisible = false; @@ -73,154 +90,40 @@ class KeyboardEntryActivity : public Activity { void onComplete(std::string text); void onCancel(); + bool cursorPositionFromPoint(int x, int y, size_t& position) const; + std::string displayTextForCurrentState() const; + // Advance of s[start, end) measured in place by temporarily null-terminating + // at `end` — avoids a substr temporary per measurement. + int measureRange(std::string& s, int start, int end) const; + // Largest line end in (start, s.length()] whose advance fits maxWidth. + // Binary search over the monotonic prefix advance; always advances at least + // one byte so an oversized glyph cannot stall the wrap loop. + int lineBreakEnd(std::string& s, int start, int maxWidth) const; + + const freeink::ui::KeyboardLayout& currentLayout() const; + const freeink::ui::KeyboardKey* selectedKey() const; + int selectedLogicalIndex() const; + void clampSelection(); + void moveSelectionRow(int delta); + void moveSelectionCol(int delta); + bool syncSelectionToValue(int16_t value); + // Handles one key activation (by stable key id). Returns true when the + // screen needs a repaint; OK/cancel finish the activity instead. + bool activateValue(int16_t value, bool longPress); + bool clearAllOrAltOnSelected(); + + void insertUtf8(const char* out); + bool backspaceUtf8(); + static size_t utf8Prev(const std::string& s, size_t pos); + static size_t utf8Next(const std::string& s, size_t pos); + + freeink::ui::Rect keyboardRect() const; static constexpr uint16_t LONG_PRESS_MS = 500; static constexpr uint16_t DEL_LONG_PRESS_MS = 1500; + static constexpr uint16_t TOUCH_LONG_PRESS_MS = 350; + static constexpr uint16_t TOUCH_DEL_LONG_PRESS_MS = 900; - static constexpr int COLS = 10; - static constexpr int ABC_ROWS = 4; - static constexpr int SYM_ROWS = 4; - static constexpr int BOTTOM_KEY_COUNT = 5; - - static constexpr KeyDef abcLayout[ABC_ROWS][COLS] = { - {{'1', '!'}, - {'2', '@'}, - {'3', '#'}, - {'4', '$'}, - {'5', '%'}, - {'6', '^'}, - {'7', '&'}, - {'8', '*'}, - {'9', '('}, - {'0', ')'}}, - {{'q', 'Q'}, - {'w', 'W'}, - {'e', 'E'}, - {'r', 'R'}, - {'t', 'T'}, - {'y', 'Y'}, - {'u', 'U'}, - {'i', 'I'}, - {'o', 'O'}, - {'p', 'P'}}, - {{'a', 'A'}, - {'s', 'S'}, - {'d', 'D'}, - {'f', 'F'}, - {'g', 'G'}, - {'h', 'H'}, - {'j', 'J'}, - {'k', 'K'}, - {'l', 'L'}, - {'-', '_'}}, - {{'z', 'Z'}, - {'x', 'X'}, - {'c', 'C'}, - {'v', 'V'}, - {'b', 'B'}, - {'n', 'N'}, - {'m', 'M'}, - {'=', '+'}, - {'.', '>'}, - {',', '<'}}, - }; - - static constexpr KeyDef urlLayout[ABC_ROWS][COLS] = { - {{'1', '!'}, - {'2', '@'}, - {'3', '#'}, - {'4', '$'}, - {'5', '%'}, - {'6', '^'}, - {'7', '&'}, - {'8', '*'}, - {'9', '('}, - {'0', ')'}}, - {{'q', 'Q'}, - {'w', 'W'}, - {'e', 'E'}, - {'r', 'R'}, - {'t', 'T'}, - {'y', 'Y'}, - {'u', 'U'}, - {'i', 'I'}, - {'o', 'O'}, - {'p', 'P'}}, - {{'a', 'A'}, - {'s', 'S'}, - {'d', 'D'}, - {'f', 'F'}, - {'g', 'G'}, - {'h', 'H'}, - {'j', 'J'}, - {'k', 'K'}, - {'l', 'L'}, - {'-', '_'}}, - {{'z', 'Z'}, - {'x', 'X'}, - {'c', 'C'}, - {'v', 'V'}, - {'b', 'B'}, - {'n', 'N'}, - {'m', 'M'}, - {':', '+'}, - {'.', '>'}, - {'/', '<'}}, - }; - - static constexpr KeyDef symLayout[SYM_ROWS][COLS] = { - {{'1', '\0'}, - {'2', '\0'}, - {'3', '\0'}, - {'4', '\0'}, - {'5', '\0'}, - {'6', '\0'}, - {'7', '\0'}, - {'8', '\0'}, - {'9', '\0'}, - {'0', '\0'}}, - {{'!', '\0'}, - {'@', '\0'}, - {'#', '\0'}, - {'$', '\0'}, - {'%', '\0'}, - {'^', '\0'}, - {'&', '\0'}, - {'*', '\0'}, - {'(', '\0'}, - {')', '\0'}}, - {{'-', '\0'}, - {'_', '\0'}, - {'=', '\0'}, - {'+', '\0'}, - {'[', '\0'}, - {']', '\0'}, - {'{', '\0'}, - {'}', '\0'}, - {';', '\0'}, - {':', '\0'}}, - {{'\'', '\0'}, - {'"', '\0'}, - {'/', '\0'}, - {'\\', '\0'}, - {'|', '\0'}, - {'?', '\0'}, - {'.', '\0'}, - {',', '\0'}, - {'~', '\0'}, - {'`', '\0'}}, - }; - - static const char* const shiftString[2]; - - int getContentRowCount() const; - int getContentColCount() const; - int getTotalRowCount() const; - bool isBottomRow(int row) const; - char getSelectedChar() const; - char getAlternativeChar() const; - bool handleKeyPress(); - bool insertChar(char c); - void insertString(const std::string& str); - void mapColContentBottom(int& col, bool goingUp) const; + // App-specific key id: toggles the URL snippet panel (URL fields only). + static constexpr int16_t URL_PANEL_KEY = -3; }; diff --git a/src/components/OptionPopup.h b/src/components/OptionPopup.h index e98bfbd073..f9c2bc5471 100644 --- a/src/components/OptionPopup.h +++ b/src/components/OptionPopup.h @@ -1,6 +1,7 @@ #pragma once #include +#include #include #include #include @@ -8,6 +9,7 @@ #include "GfxRenderer.h" #include "MappedInputManager.h" #include "components/UITheme.h" +#include "fontIds.h" class OptionPopup { public: @@ -20,6 +22,7 @@ class OptionPopup { } selectedIndex = currentIndex; onSelectCallback = std::move(onSelect); + layoutValid = false; active = true; } @@ -32,6 +35,7 @@ class OptionPopup { } selectedIndex = currentIndex; onSelectCallback = std::move(onSelect); + layoutValid = false; active = true; } @@ -41,6 +45,7 @@ class OptionPopup { ownedStrings = options; selectedIndex = currentIndex; onSelectCallback = std::move(onSelect); + layoutValid = false; active = true; } @@ -48,6 +53,39 @@ class OptionPopup { if (!active) return false; const int count = static_cast(ownedStrings.size()); + int tx = 0; + int ty = 0; + if (input.wasScreenTouchDown(tx, ty)) { + const auto& hitLayout = getLayout(input.getRenderer()); + for (int i = 0; i < static_cast(hitLayout.options.size()); i++) { + if (contains(hitLayout.options[i], tx, ty)) { + if (selectedIndex != i) { + selectedIndex = i; + requestUpdate(); + } + break; + } + } + return true; + } + if (input.wasScreenTapped(tx, ty)) { + const auto& hitLayout = getLayout(input.getRenderer()); + for (int i = 0; i < static_cast(hitLayout.options.size()); i++) { + if (contains(hitLayout.options[i], tx, ty)) { + selectedIndex = i; + active = false; + if (onSelectCallback) onSelectCallback(selectedIndex); + requestUpdate(); + return true; + } + } + // Taps on the dialog chrome (title, padding) keep the popup open; taps outside dismiss it + if (contains(hitLayout.dialog, tx, ty)) return true; + active = false; + requestUpdate(); + return true; + } + if (input.wasPressed(MappedInputManager::Button::Up) || input.wasPressed(MappedInputManager::Button::Left)) { selectedIndex = (selectedIndex - 1 + count) % count; requestUpdate(); @@ -87,9 +125,69 @@ class OptionPopup { bool isActive() const { return active; } private: + struct Layout { + Rect dialog{0, 0, 0, 0}; + std::vector options; + }; + + // Text measurement is expensive and wasScreenTouchDown() is level-triggered, so the + // layout is computed once per show() and cached rather than rebuilt every loop(). + const Layout& getLayout(const GfxRenderer& renderer) const { + if (layoutValid) return layout; + + const auto& metrics = UITheme::getInstance().getMetrics(); + const auto pageWidth = renderer.getScreenWidth(); + const auto pageHeight = renderer.getScreenHeight(); + const int optionFontId = metrics.optionPopupUseSmallFont ? UI_10_FONT_ID : UI_12_FONT_ID; + const EpdFontFamily::Style optionStyle = + metrics.optionPopupOptionFontBold ? EpdFontFamily::BOLD : EpdFontFamily::REGULAR; + + const int itemSpacing = metrics.optionPopupItemSpacing; + const int innerPadding = metrics.optionPopupInnerPadding; + const int selectionHPadding = metrics.optionPopupSelectionHPadding; + const int selectionVPadding = metrics.optionPopupSelectionVPadding; + + const int optionLineHeight = renderer.getLineHeight(optionFontId); + const int titleLineHeight = renderer.getLineHeight(UI_12_FONT_ID); + const int rowHeight = optionLineHeight + selectionVPadding * 2; + + int maxTextWidth = renderer.getTextWidth(UI_12_FONT_ID, title.c_str(), EpdFontFamily::BOLD); + for (const auto& opt : ownedStrings) { + const int width = renderer.getTextWidth(optionFontId, opt.c_str(), optionStyle); + if (width > maxTextWidth) maxTextWidth = width; + } + + const int optionCount = static_cast(ownedStrings.size()); + const int listHeight = rowHeight * optionCount + itemSpacing * (optionCount - 1); + const int dialogW = std::min((maxTextWidth + innerPadding * 2 + selectionHPadding * 2) * 12 / 10, + pageWidth - metrics.optionPopupDialogSideMargin * 2); + const int contentHeight = titleLineHeight + metrics.optionPopupTitleGap + listHeight; + const int dialogH = contentHeight + innerPadding * 2; + const int dialogX = (pageWidth - dialogW) / 2; + const int dialogY = (pageHeight - dialogH) / 2; + const int itemRectX = dialogX + innerPadding; + const int itemRectW = dialogW - innerPadding * 2; + const int firstItemY = dialogY + innerPadding + titleLineHeight + metrics.optionPopupTitleGap; + + layout.dialog = Rect{dialogX, dialogY, dialogW, dialogH}; + layout.options.clear(); + layout.options.reserve(optionCount); + for (int i = 0; i < optionCount; i++) { + layout.options.push_back(Rect{itemRectX, firstItemY + i * (rowHeight + itemSpacing), itemRectW, rowHeight}); + } + layoutValid = true; + return layout; + } + + static bool contains(const Rect& rect, const int x, const int y) { + return x >= rect.x && x < rect.x + rect.width && y >= rect.y && y < rect.y + rect.height; + } + bool active = false; std::string title; std::vector ownedStrings; int selectedIndex = 0; std::function onSelectCallback; + mutable Layout layout; + mutable bool layoutValid = false; }; diff --git a/src/components/UITheme.cpp b/src/components/UITheme.cpp index 9220d43c31..dcf1eef641 100644 --- a/src/components/UITheme.cpp +++ b/src/components/UITheme.cpp @@ -2,6 +2,7 @@ #include #include +#include #include #include @@ -48,11 +49,27 @@ void UITheme::setTheme(CrossPointSettings::UI_THEME type) { currentMetrics = &Lyra3CoversMetrics::values; break; } + metricsValid = false; +} + +const ThemeMetrics& UITheme::getMetrics() const { + // hasTouch() can flip once touch init completes after static construction, so the + // cached copy is refreshed when the flag differs instead of copying the struct per call. + const bool touch = gpio.hasTouch(); + if (!metricsValid || touch != metricsForTouch) { + adjustedMetrics = *currentMetrics; + if (touch) { + adjustedMetrics.buttonHintsHeight = 0; + } + metricsForTouch = touch; + metricsValid = true; + } + return adjustedMetrics; } int UITheme::getNumberOfItemsPerPage(const GfxRenderer& renderer, bool hasHeader, bool hasTabBar, bool hasButtonHints, bool hasSubtitle, int extraReservedHeight) { - const ThemeMetrics& metrics = UITheme::getInstance().getMetrics(); + const ThemeMetrics metrics = UITheme::getInstance().getMetrics(); auto orientation = renderer.getOrientation(); int reservedHeight = metrics.topPadding; if (hasHeader) { @@ -66,8 +83,7 @@ int UITheme::getNumberOfItemsPerPage(const GfxRenderer& renderer, bool hasHeader reservedHeight += metrics.verticalSpacing + metrics.buttonHintsHeight; } const int availableHeight = renderer.getScreenHeight() - reservedHeight - extraReservedHeight; - int rowHeight = hasSubtitle ? metrics.listWithSubtitleRowHeight : metrics.listRowHeight; - return availableHeight / rowHeight; + return UITheme::getInstance().getTheme().getListPageItems(availableHeight, hasSubtitle); } // Screen area excluding the button hints @@ -76,27 +92,28 @@ Rect UITheme::getScreenSafeArea(const GfxRenderer& renderer, bool hasFrontButton const int screenWidth = renderer.getScreenWidth(); const int screenHeight = renderer.getScreenHeight(); Rect safeArea = Rect{0, 0, screenWidth, screenHeight}; + const ThemeMetrics metrics = getMetrics(); switch (orientation) { case GfxRenderer::Orientation::Portrait: if (hasFrontButtonHints) { - safeArea.height -= currentMetrics->buttonHintsHeight; + safeArea.height -= metrics.buttonHintsHeight; } break; case GfxRenderer::Orientation::LandscapeClockwise: if (hasFrontButtonHints) { - safeArea.x += currentMetrics->buttonHintsHeight; - safeArea.width -= currentMetrics->buttonHintsHeight; + safeArea.x += metrics.buttonHintsHeight; + safeArea.width -= metrics.buttonHintsHeight; } break; case GfxRenderer::Orientation::PortraitInverted: if (hasFrontButtonHints) { - safeArea.y += currentMetrics->buttonHintsHeight; - safeArea.height -= currentMetrics->buttonHintsHeight; + safeArea.y += metrics.buttonHintsHeight; + safeArea.height -= metrics.buttonHintsHeight; } break; case GfxRenderer::Orientation::LandscapeCounterClockwise: if (hasFrontButtonHints) { - safeArea.width -= currentMetrics->buttonHintsHeight; + safeArea.width -= metrics.buttonHintsHeight; } break; } @@ -128,24 +145,19 @@ UIIcon UITheme::getFileIcon(const std::string& filename) { } int UITheme::getStatusBarHeight() { - const ThemeMetrics& metrics = UITheme::getInstance().getMetrics(); - - // Add status bar margin - const bool showStatusBar = - SETTINGS.statusBarChapterPageCount || SETTINGS.statusBarBookProgressPercentage || - SETTINGS.statusBarTitle != CrossPointSettings::STATUS_BAR_TITLE::HIDE_TITLE || SETTINGS.statusBarBattery || - SETTINGS.statusBarClock != CrossPointSettings::STATUS_BAR_CLOCK_MODE::STATUS_BAR_CLOCK_HIDE; - const bool showProgressBar = - SETTINGS.statusBarProgressBar != CrossPointSettings::STATUS_BAR_PROGRESS_BAR::HIDE_PROGRESS; - return (showStatusBar ? (metrics.statusBarVerticalMargin) : 0) + - (showProgressBar ? (((SETTINGS.statusBarProgressBarThickness + 1) * 2) + metrics.progressBarMarginTop) : 0); + const ThemeMetrics metrics = UITheme::getInstance().getMetrics(); + const auto sb = SETTINGS.statusBarSpec(); + + // Layout reservation is hardware-agnostic: pass clockAvailable=true so the + // reserved height does not depend on whether an RTC is present. + return (sb.textLaneVisible(true) ? (metrics.statusBarVerticalMargin) : 0) + + (sb.showsProgressBar() ? (sb.progressBarHeightPx + metrics.progressBarMarginTop) : 0); } int UITheme::getProgressBarHeight() { - const ThemeMetrics& metrics = UITheme::getInstance().getMetrics(); - const bool showProgressBar = - SETTINGS.statusBarProgressBar != CrossPointSettings::STATUS_BAR_PROGRESS_BAR::HIDE_PROGRESS; - return (showProgressBar ? (((SETTINGS.statusBarProgressBarThickness + 1) * 2) + metrics.progressBarMarginTop) : 0); + const ThemeMetrics metrics = UITheme::getInstance().getMetrics(); + const auto sb = SETTINGS.statusBarSpec(); + return sb.showsProgressBar() ? (sb.progressBarHeightPx + metrics.progressBarMarginTop) : 0; } // Centered text implementation that takes the safe area into account diff --git a/src/components/UITheme.h b/src/components/UITheme.h index 6660254124..b5fefae693 100644 --- a/src/components/UITheme.h +++ b/src/components/UITheme.h @@ -16,7 +16,7 @@ class UITheme { UITheme(); static UITheme& getInstance() { return instance; } - const ThemeMetrics& getMetrics() const { return *currentMetrics; } + const ThemeMetrics& getMetrics() const; const BaseTheme& getTheme() const { return *currentTheme; } Rect getScreenSafeArea(const GfxRenderer& renderer, bool hasFrontButtonHints = false, bool hasSideButtonHints = false); @@ -34,6 +34,9 @@ class UITheme { private: const ThemeMetrics* currentMetrics; std::unique_ptr currentTheme; + mutable ThemeMetrics adjustedMetrics; + mutable bool metricsValid = false; + mutable bool metricsForTouch = false; }; // Helper macro to access current theme diff --git a/src/components/icons/search24.h b/src/components/icons/search24.h new file mode 100644 index 0000000000..cbd9d48390 --- /dev/null +++ b/src/components/icons/search24.h @@ -0,0 +1,13 @@ +#pragma once + +#include + +#include + +// Generated by freeink-sdk/libs/assets/Icons/tools/gen_icons.py from Lucide search.svg. +static const uint8_t Search24IconBits[] = { + 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x03, 0xFF, 0xFC, 0x00, 0xFF, 0xF8, 0xFC, 0x7F, 0xF1, 0xFE, 0x3F, + 0xE3, 0xFF, 0x1F, 0xE7, 0xFF, 0x9F, 0xCF, 0xFF, 0xCF, 0xCF, 0xFF, 0xCF, 0xCF, 0xFF, 0xCF, 0xCF, 0xFF, 0xCF, + 0xCF, 0xFF, 0xCF, 0xCF, 0xFF, 0xCF, 0xE7, 0xFF, 0x9F, 0xE3, 0xFF, 0x1F, 0xF1, 0xFE, 0x3F, 0xF8, 0xFC, 0x1F, + 0xFC, 0x00, 0x8F, 0xFF, 0x03, 0xC7, 0xFF, 0xFF, 0xE3, 0xFF, 0xFF, 0xF3, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}; +static const freeink::Icon Search24Icon = {24, 24, 11, Search24IconBits}; diff --git a/src/components/themes/BaseTheme.cpp b/src/components/themes/BaseTheme.cpp index b2bbc21c16..3b511957b2 100644 --- a/src/components/themes/BaseTheme.cpp +++ b/src/components/themes/BaseTheme.cpp @@ -2,6 +2,7 @@ #include #include +#include #include #include #include @@ -26,12 +27,6 @@ constexpr int bookmarkStatusIconHeight = 14; constexpr int bookmarkStatusIconGap = 4; constexpr int bookmarkStatusIconTopCrop = 2; -bool statusBarTextLaneVisible() { - return SETTINGS.statusBarChapterPageCount || SETTINGS.statusBarBookProgressPercentage || - SETTINGS.statusBarTitle != CrossPointSettings::STATUS_BAR_TITLE::HIDE_TITLE || SETTINGS.statusBarBattery || - (SETTINGS.statusBarClock && halClock.isAvailable()); -} - void drawBookmarkStatusIcon(const GfxRenderer& renderer, const int x, const int y) { constexpr int bytesPerRow = bookmarkStatusIconWidth / 8; for (int row = 0; row < bookmarkStatusIconHeight; ++row) { @@ -156,6 +151,10 @@ void BaseTheme::drawProgressBar(const GfxRenderer& renderer, Rect rect, const si void BaseTheme::drawButtonHints(GfxRenderer& renderer, const char* btn1, const char* btn2, const char* btn3, const char* btn4) const { + if (gpio.hasTouch()) { + return; + } + const GfxRenderer::Orientation orig_orientation = renderer.getOrientation(); renderer.setOrientation(GfxRenderer::Orientation::Portrait); @@ -186,6 +185,10 @@ void BaseTheme::drawButtonHints(GfxRenderer& renderer, const char* btn1, const c } void BaseTheme::drawSideButtonHints(const GfxRenderer& renderer, const char* topBtn, const char* bottomBtn) const { + if (gpio.hasTouch()) { + return; + } + const int screenWidth = renderer.getScreenWidth(); constexpr int buttonWidth = BaseMetrics::values.sideButtonHintsWidth; // Width on screen (height when rotated) constexpr int buttonHeight = 80; // Height on screen (width when rotated) @@ -250,9 +253,15 @@ void BaseTheme::drawSideButtonHints(const GfxRenderer& renderer, const char* top } } -int BaseTheme::getListPageItems(int contentHeight, bool hasSubtitle) const { +int BaseTheme::getListRowStep(bool hasSubtitle) const { int rowHeight = (hasSubtitle) ? BaseMetrics::values.listWithSubtitleRowHeight : BaseMetrics::values.listRowHeight; - return contentHeight / rowHeight; + return rowHeight; +} + +int BaseTheme::getListPageItems(int contentHeight, bool hasSubtitle) const { + const int rowStep = getListRowStep(hasSubtitle); + if (rowStep <= 0) return 1; + return std::max(1, contentHeight / rowStep); } void BaseTheme::drawList(const GfxRenderer& renderer, Rect rect, int itemCount, int selectedIndex, @@ -263,7 +272,7 @@ void BaseTheme::drawList(const GfxRenderer& renderer, Rect rect, int itemCount, const std::function& rowDimmed) const { int rowHeight = (rowSubtitle != nullptr) ? BaseMetrics::values.listWithSubtitleRowHeight : BaseMetrics::values.listRowHeight; - int pageItems = rect.height / rowHeight; + int pageItems = rowHeight > 0 ? std::max(1, rect.height / rowHeight) : 1; const int totalPages = (itemCount + pageItems - 1) / pageItems; if (totalPages > 1) { @@ -432,6 +441,29 @@ void BaseTheme::drawTabBar(const GfxRenderer& renderer, const Rect rect, const s } } +bool BaseTheme::tabIndexFromPoint(const GfxRenderer& renderer, const Rect rect, const std::vector& tabs, + const int x, const int y, int& index) const { + if (tabs.empty() || y < rect.y || y >= rect.y + rect.height) { + return false; + } + + int currentX = rect.x + BaseMetrics::values.contentSidePadding; + for (size_t i = 0; i < tabs.size(); i++) { + const auto& tab = tabs[i]; + const int textWidth = + renderer.getTextWidth(UI_12_FONT_ID, tab.label, tab.selected ? EpdFontFamily::BOLD : EpdFontFamily::REGULAR); + const int left = (i == 0) ? rect.x : currentX - BaseMetrics::values.tabSpacing / 2; + const int right = currentX + textWidth + BaseMetrics::values.tabSpacing / 2; + if (x >= left && x < right) { + index = static_cast(i); + return true; + } + currentX += textWidth + BaseMetrics::values.tabSpacing; + } + + return false; +} + // Draw the "Recent Book" cover card on the home screen // TODO: Refactor method to make it cleaner, split into smaller methods void BaseTheme::drawRecentBookCover(GfxRenderer& renderer, Rect rect, const std::vector& recentBooks, @@ -749,12 +781,13 @@ void BaseTheme::fillPopupProgress(const GfxRenderer& renderer, const Rect& layou void BaseTheme::drawStatusBar(GfxRenderer& renderer, const float bookProgress, const int currentPage, const int pageCount, std::string title, const int paddingBottom, const int textYOffset, - const bool fillMargin, const bool isPageBookmarked) const { + const bool fillMargin, const bool isPageBookmarked, const bool pageCountEstimated) const { auto metrics = UITheme::getInstance().getMetrics(); int orientedMarginTop, orientedMarginRight, orientedMarginBottom, orientedMarginLeft; renderer.getOrientedViewableTRBL(&orientedMarginTop, &orientedMarginRight, &orientedMarginBottom, &orientedMarginLeft); - const bool showStatusBarTextLane = statusBarTextLaneVisible(); + const auto sb = SETTINGS.statusBarSpec(); + const bool showStatusBarTextLane = sb.textLaneVisible(halClock.isAvailable()); // Draw Progress Text const auto screenHeight = renderer.getScreenHeight(); @@ -765,16 +798,20 @@ void BaseTheme::drawStatusBar(GfxRenderer& renderer, const float bookProgress, c int leftClusterWidth = 0; int rightClusterWidth = 0; - if (SETTINGS.statusBarBookProgressPercentage || SETTINGS.statusBarChapterPageCount) { + if (sb.showBookProgressPercent || sb.showChapterPageCount) { // Right aligned text for progress counter char progressStr[32]; - if (SETTINGS.statusBarBookProgressPercentage && SETTINGS.statusBarChapterPageCount) { - snprintf(progressStr, sizeof(progressStr), "%d/%d %.0f%%", currentPage, pageCount, bookProgress); - } else if (SETTINGS.statusBarBookProgressPercentage) { + // Prefix the page count with "~" while a still-building spine only yields an estimated total. + const char* estimatePrefix = pageCountEstimated ? "~" : ""; + + if (sb.showBookProgressPercent && sb.showChapterPageCount) { + snprintf(progressStr, sizeof(progressStr), "%s%d/%d %.0f%%", estimatePrefix, currentPage, pageCount, + bookProgress); + } else if (sb.showBookProgressPercent) { snprintf(progressStr, sizeof(progressStr), "%.0f%%", bookProgress); } else { - snprintf(progressStr, sizeof(progressStr), "%d/%d", currentPage, pageCount); + snprintf(progressStr, sizeof(progressStr), "%s%d/%d", estimatePrefix, currentPage, pageCount); } int progressTextWidth = renderer.getTextWidth(SMALL_FONT_ID, progressStr); @@ -784,30 +821,28 @@ void BaseTheme::drawStatusBar(GfxRenderer& renderer, const float bookProgress, c } // Draw Progress Bar - if (SETTINGS.statusBarProgressBar != CrossPointSettings::STATUS_BAR_PROGRESS_BAR::HIDE_PROGRESS) { + if (sb.showsProgressBar()) { const int barMarginLeft = fillMargin ? 0 : orientedMarginLeft; const int barMarginRight = fillMargin ? 0 : orientedMarginRight; const int progressBarMaxWidth = renderer.getScreenWidth() - barMarginLeft - barMarginRight; - const int progressBarY = renderer.getScreenHeight() - orientedMarginBottom - - ((SETTINGS.statusBarProgressBarThickness + 1) * 2) - paddingBottom + (fillMargin ? 1 : 0); + const int progressBarY = renderer.getScreenHeight() - orientedMarginBottom - sb.progressBarHeightPx - + paddingBottom + (fillMargin ? 1 : 0); size_t progress; - if (SETTINGS.statusBarProgressBar == CrossPointSettings::STATUS_BAR_PROGRESS_BAR::BOOK_PROGRESS) { + if (sb.progressBarMode == CrossPointSettings::STATUS_BAR_PROGRESS_BAR::BOOK_PROGRESS) { progress = static_cast(bookProgress); } else { // Chapter progress progress = (pageCount > 0) ? (static_cast(currentPage) / pageCount) * 100 : 0; } const int barWidth = progressBarMaxWidth * progress / 100; - const int barHeight = - ((SETTINGS.statusBarProgressBarThickness + 1) * 2) + (fillMargin ? orientedMarginBottom - 1 : 0); + const int barHeight = sb.progressBarHeightPx + (fillMargin ? orientedMarginBottom - 1 : 0); renderer.fillRect(barMarginLeft, progressBarY, barWidth, barHeight, true); } // Draw Battery - const bool showBatteryPercentage = - SETTINGS.hideBatteryPercentage == CrossPointSettings::HIDE_BATTERY_PERCENTAGE::HIDE_NEVER; + const bool showBatteryPercentage = sb.showBatteryPercent; - if (SETTINGS.statusBarBattery) { + if (sb.showBattery) { GUI.drawBatteryLeft(renderer, Rect{leftClusterX + leftClusterWidth, textY, metrics.batteryWidth, metrics.batteryHeight}, showBatteryPercentage); @@ -824,16 +859,16 @@ void BaseTheme::drawStatusBar(GfxRenderer& renderer, const float bookProgress, c } // Draw Clock (X3 only — DS3231 RTC) - if (SETTINGS.statusBarClock && halClock.isAvailable()) { + if (sb.showsClock() && halClock.isAvailable()) { char timeBuf[9]; - if (halClock.formatTime(timeBuf, sizeof(timeBuf), SETTINGS.clockUtcOffsetQ, SETTINGS.clockFormat == 1)) { + if (halClock.formatTime(timeBuf, sizeof(timeBuf), sb.clockUtcOffsetQ, sb.clock12h)) { int clockTextWidth = renderer.getTextWidth(SMALL_FONT_ID, timeBuf); int clockX = 0; // Position to the left or right of the progress text (with a small gap) - if (SETTINGS.statusBarClock == CrossPointSettings::STATUS_BAR_CLOCK_LEFT) { + if (sb.clockMode == CrossPointSettings::STATUS_BAR_CLOCK_LEFT) { clockX = leftClusterX + leftClusterWidth + (leftClusterWidth > 0 ? 10 : 0); leftClusterWidth += clockTextWidth + 10; - } else if (SETTINGS.statusBarClock == CrossPointSettings::STATUS_BAR_CLOCK_RIGHT) { + } else if (sb.clockMode == CrossPointSettings::STATUS_BAR_CLOCK_RIGHT) { clockX = rightClusterX - rightClusterWidth - (rightClusterWidth > 0 ? 10 : 0) - clockTextWidth; rightClusterWidth += clockTextWidth + 10; } @@ -908,104 +943,6 @@ void BaseTheme::drawTextField(const GfxRenderer& renderer, Rect rect, const int } } -void BaseTheme::drawKeyboardKey(const GfxRenderer& renderer, Rect rect, const char* label, const bool isSelected, - const char* secondaryLabel, const KeyboardKeyType keyType, - const bool inactiveSelection) const { - const auto& metrics = UITheme::getInstance().getMetrics(); - const int cr = metrics.keyboardKeyCornerRadius; - const bool isSpecialKey = keyType == KeyboardKeyType::Shift || keyType == KeyboardKeyType::Mode || - keyType == KeyboardKeyType::Del || keyType == KeyboardKeyType::Space || - keyType == KeyboardKeyType::Ok || keyType == KeyboardKeyType::Disabled; - - if (isSelected) { - if (inactiveSelection) { - if (cr > 0) { - renderer.fillRoundedRect(rect.x, rect.y, rect.width, rect.height, cr, Color::LightGray); - } else { - renderer.drawRect(rect.x, rect.y, rect.width, rect.height, 2, true); - } - } else if (keyType == KeyboardKeyType::Disabled) { - if (cr > 0) { - renderer.fillRoundedRect(rect.x, rect.y, rect.width, rect.height, cr, Color::LightGray); - } else { - renderer.fillRectDither(rect.x, rect.y, rect.width, rect.height, Color::LightGray); - } - } else { - if (cr > 0) { - renderer.fillRoundedRect(rect.x, rect.y, rect.width, rect.height, cr, Color::Black); - } else { - renderer.fillRect(rect.x, rect.y, rect.width, rect.height, true); - } - } - } else { - if (metrics.keyboardFillUnselected) { - if (keyType == KeyboardKeyType::Disabled) { - if (cr > 0) { - renderer.fillRoundedRect(rect.x, rect.y, rect.width, rect.height, cr, Color::LightGray); - } else { - renderer.fillRectDither(rect.x, rect.y, rect.width, rect.height, Color::LightGray); - } - } else { - if (cr > 0) { - renderer.fillRoundedRect(rect.x, rect.y, rect.width, rect.height, cr, Color::White); - } else { - renderer.fillRect(rect.x, rect.y, rect.width, rect.height, false); - } - } - } - - const bool shouldDrawOutline = - (metrics.keyboardDrawSpecialOutlineWhenUnselected && isSpecialKey) || metrics.keyboardOutlineAllUnselected; - if (shouldDrawOutline) { - if (cr > 0) { - renderer.drawRoundedRect(rect.x, rect.y, rect.width, rect.height, 1, cr, true); - } else { - renderer.drawRect(rect.x, rect.y, rect.width, rect.height); - } - } - } - - const bool invert = isSelected && !inactiveSelection; - - if (keyType == KeyboardKeyType::Space) { - const int lineHalfWidth = rect.width * 3 / 10; - const int centerX = rect.x + rect.width / 2; - const int lineY = rect.y + rect.height / 2 + 3; - renderer.drawLine(centerX - lineHalfWidth, lineY, centerX + lineHalfWidth, lineY, 3, !invert); - return; - } - - if (keyType == KeyboardKeyType::Del) { - const int centerX = rect.x + rect.width / 2; - const int centerY = rect.y + rect.height / 2; - const int arrowLen = rect.width / 4; - const int arrowHead = std::max(metrics.keyboardMinArrowHeadSize, arrowLen / 2); - renderer.drawLine(centerX - arrowLen / 2, centerY, centerX + arrowLen / 2, centerY, 3, !invert); - renderer.drawLine(centerX - arrowLen / 2, centerY, centerX - arrowLen / 2 + arrowHead, centerY - arrowHead, 3, - !invert); - renderer.drawLine(centerX - arrowLen / 2, centerY, centerX - arrowLen / 2 + arrowHead, centerY + arrowHead, 3, - !invert); - return; - } - - if (label == nullptr || label[0] == '\0') { - return; - } - - const bool hasSecondary = secondaryLabel != nullptr && secondaryLabel[0] != '\0'; - const int itemWidth = renderer.getTextWidth(UI_12_FONT_ID, label); - const int textX = rect.x + (rect.width - itemWidth) / 2; - const int textY = rect.y + (rect.height - renderer.getLineHeight(UI_12_FONT_ID)) / 2; - - renderer.drawText(UI_12_FONT_ID, textX, textY, label, !invert); - - if (hasSecondary) { - const int secWidth = renderer.getTextWidth(SMALL_FONT_ID, secondaryLabel); - renderer.drawText(SMALL_FONT_ID, rect.x + rect.width - secWidth - metrics.keyboardSecondaryLabelRightPadding, - rect.y + metrics.keyboardSecondaryLabelTopPadding, secondaryLabel, !invert); - } -} - void BaseTheme::drawOptionPopup(const GfxRenderer& renderer, const char* title, const std::vector& options, int selectedIndex) const { const auto& metrics = UITheme::getInstance().getMetrics(); diff --git a/src/components/themes/BaseTheme.h b/src/components/themes/BaseTheme.h index 46d0bdaf8f..1d321d7502 100644 --- a/src/components/themes/BaseTheme.h +++ b/src/components/themes/BaseTheme.h @@ -61,24 +61,12 @@ struct ThemeMetrics { int progressBarMarginTop; int statusBarHorizontalMargin; int statusBarVerticalMargin; - - int keyboardKeyWidth; int keyboardKeyHeight; int keyboardKeySpacing; - int keyboardBottomKeyHeight; - int keyboardBottomKeySpacing; - bool keyboardBottomAligned; bool keyboardCenteredText; int keyboardVerticalOffset; int keyboardTextFieldWidthPercent; int keyboardWidthPercent; - int keyboardKeyCornerRadius; - bool keyboardFillUnselected; - bool keyboardOutlineAllUnselected; - bool keyboardDrawSpecialOutlineWhenUnselected; - int keyboardSecondaryLabelRightPadding; - int keyboardSecondaryLabelTopPadding; - int keyboardMinArrowHeadSize; float popupTopOffsetRatio; int popupMarginX; @@ -115,8 +103,6 @@ struct ThemeMetrics { enum UIIcon { None = 0, Folder, Text, Image, Book, File, Recent, Settings, Transfer, Library, Wifi, Hotspot, Bookmark }; -enum class KeyboardKeyType { Normal, Shift, Mode, Space, Del, Ok, Disabled }; - // Default theme implementation (Classic Theme) // Additional themes can inherit from this and override methods as needed @@ -150,23 +136,12 @@ constexpr ThemeMetrics values = {.batteryWidth = 15, .progressBarMarginTop = 1, .statusBarHorizontalMargin = 5, .statusBarVerticalMargin = 19, - .keyboardKeyWidth = 22, - .keyboardKeyHeight = 40, + .keyboardKeyHeight = 48, .keyboardKeySpacing = 0, - .keyboardBottomKeyHeight = 35, - .keyboardBottomKeySpacing = 5, - .keyboardBottomAligned = true, .keyboardCenteredText = false, .keyboardVerticalOffset = -13, .keyboardTextFieldWidthPercent = 85, - .keyboardWidthPercent = 90, - .keyboardKeyCornerRadius = 0, - .keyboardFillUnselected = false, - .keyboardOutlineAllUnselected = false, - .keyboardDrawSpecialOutlineWhenUnselected = true, - .keyboardSecondaryLabelRightPadding = 1, - .keyboardSecondaryLabelTopPadding = 0, - .keyboardMinArrowHeadSize = 0, + .keyboardWidthPercent = 94, .popupTopOffsetRatio = 0.075f, .popupMarginX = 15, .popupMarginY = 15, @@ -212,6 +187,7 @@ class BaseTheme { virtual void drawButtonHints(GfxRenderer& renderer, const char* btn1, const char* btn2, const char* btn3, const char* btn4) const; virtual void drawSideButtonHints(const GfxRenderer& renderer, const char* topBtn, const char* bottomBtn) const; + virtual int getListRowStep(bool hasSubtitle) const; virtual int getListPageItems(int contentHeight, bool hasSubtitle) const; virtual void drawList(const GfxRenderer& renderer, Rect rect, int itemCount, int selectedIndex, const std::function& rowTitle, @@ -225,6 +201,8 @@ class BaseTheme { const char* rightLabel = nullptr) const; virtual void drawTabBar(const GfxRenderer& renderer, Rect rect, const std::vector& tabs, bool selected) const; + virtual bool tabIndexFromPoint(const GfxRenderer& renderer, Rect rect, const std::vector& tabs, int x, int y, + int& index) const; virtual void drawRecentBookCover(GfxRenderer& renderer, Rect rect, const std::vector& recentBooks, const int selectorIndex, bool& coverRendered, bool& coverBufferStored, bool& bufferRestored, std::function storeCoverBuffer) const; @@ -237,13 +215,11 @@ class BaseTheme { virtual void fillPopupProgress(const GfxRenderer& renderer, const Rect& layout, const int progress) const; void drawStatusBar(GfxRenderer& renderer, const float bookProgress, const int currentPage, const int pageCount, std::string title, const int paddingBottom = 0, const int textYOffset = 0, - const bool fillMargin = true, const bool isPageBookmarked = false) const; + const bool fillMargin = true, const bool isPageBookmarked = false, + const bool pageCountEstimated = false) const; void drawHelpText(const GfxRenderer& renderer, Rect rect, const char* label) const; virtual void drawTextField(const GfxRenderer& renderer, Rect rect, const int textWidth, bool cursorMode = false, int contentStartX = 0, int contentWidth = 0) const; - virtual void drawKeyboardKey(const GfxRenderer& renderer, Rect rect, const char* label, const bool isSelected, - const char* secondaryLabel = nullptr, KeyboardKeyType keyType = KeyboardKeyType::Normal, - bool inactiveSelection = false) const; virtual bool showsFileIcons() const { return false; } // Shared constants and helpers for battery drawing (used by all themes) diff --git a/src/components/themes/lyra/LyraTheme.cpp b/src/components/themes/lyra/LyraTheme.cpp index c5af0a395c..c3d772a5e6 100644 --- a/src/components/themes/lyra/LyraTheme.cpp +++ b/src/components/themes/lyra/LyraTheme.cpp @@ -6,6 +6,7 @@ #include #include +#include #include #include #include @@ -205,9 +206,37 @@ void LyraTheme::drawTabBar(const GfxRenderer& renderer, Rect rect, const std::ve renderer.drawLine(rect.x, rect.y + rect.height - 1, rect.x + rect.width - 1, rect.y + rect.height - 1, true); } -int LyraTheme::getListPageItems(int contentHeight, bool hasSubtitle) const { +bool LyraTheme::tabIndexFromPoint(const GfxRenderer& renderer, const Rect rect, const std::vector& tabs, + const int x, const int y, int& index) const { + if (tabs.empty() || y < rect.y || y >= rect.y + rect.height) { + return false; + } + + int currentX = rect.x + LyraMetrics::values.contentSidePadding; + for (size_t i = 0; i < tabs.size(); i++) { + const int textWidth = renderer.getTextWidth(UI_10_FONT_ID, tabs[i].label, EpdFontFamily::REGULAR); + const int tabWidth = textWidth + 2 * hPaddingInSelection; + const int left = (i == 0) ? rect.x : currentX - LyraMetrics::values.tabSpacing / 2; + const int right = currentX + tabWidth + LyraMetrics::values.tabSpacing / 2; + if (x >= left && x < right) { + index = static_cast(i); + return true; + } + currentX += tabWidth + LyraMetrics::values.tabSpacing; + } + + return false; +} + +int LyraTheme::getListRowStep(bool hasSubtitle) const { int rowHeight = (hasSubtitle) ? LyraMetrics::values.listWithSubtitleRowHeight : LyraMetrics::values.listRowHeight; - return contentHeight / rowHeight; + return rowHeight; +} + +int LyraTheme::getListPageItems(int contentHeight, bool hasSubtitle) const { + const int rowStep = getListRowStep(hasSubtitle); + if (rowStep <= 0) return 1; + return std::max(1, contentHeight / rowStep); } void LyraTheme::drawList(const GfxRenderer& renderer, Rect rect, int itemCount, int selectedIndex, @@ -218,7 +247,7 @@ void LyraTheme::drawList(const GfxRenderer& renderer, Rect rect, int itemCount, const std::function& rowDimmed) const { int rowHeight = (rowSubtitle != nullptr) ? LyraMetrics::values.listWithSubtitleRowHeight : LyraMetrics::values.listRowHeight; - int pageItems = rect.height / rowHeight; + int pageItems = rowHeight > 0 ? std::max(1, rect.height / rowHeight) : 1; const int totalPages = (itemCount + pageItems - 1) / pageItems; if (totalPages > 1) { @@ -319,6 +348,10 @@ void LyraTheme::drawList(const GfxRenderer& renderer, Rect rect, int itemCount, void LyraTheme::drawButtonHints(GfxRenderer& renderer, const char* btn1, const char* btn2, const char* btn3, const char* btn4) const { + if (gpio.hasTouch()) { + return; + } + const GfxRenderer::Orientation orig_orientation = renderer.getOrientation(); renderer.setOrientation(GfxRenderer::Orientation::Portrait); @@ -357,6 +390,10 @@ void LyraTheme::drawButtonHints(GfxRenderer& renderer, const char* btn1, const c } void LyraTheme::drawSideButtonHints(const GfxRenderer& renderer, const char* topBtn, const char* bottomBtn) const { + if (gpio.hasTouch()) { + return; + } + const int screenWidth = renderer.getScreenWidth(); constexpr int buttonWidth = LyraMetrics::values.sideButtonHintsWidth; // Width on screen (height when rotated) constexpr int buttonHeight = 78; // Height on screen (width when rotated) diff --git a/src/components/themes/lyra/LyraTheme.h b/src/components/themes/lyra/LyraTheme.h index 15d94e6610..95e15d0ef5 100644 --- a/src/components/themes/lyra/LyraTheme.h +++ b/src/components/themes/lyra/LyraTheme.h @@ -35,23 +35,12 @@ constexpr ThemeMetrics values = {.batteryWidth = 16, .progressBarMarginTop = 1, .statusBarHorizontalMargin = 5, .statusBarVerticalMargin = 19, - .keyboardKeyWidth = 31, - .keyboardKeyHeight = 40, + .keyboardKeyHeight = 48, .keyboardKeySpacing = 0, - .keyboardBottomKeyHeight = 35, - .keyboardBottomKeySpacing = 5, - .keyboardBottomAligned = true, .keyboardCenteredText = false, .keyboardVerticalOffset = -7, .keyboardTextFieldWidthPercent = 85, - .keyboardWidthPercent = 90, - .keyboardKeyCornerRadius = 6, - .keyboardFillUnselected = false, - .keyboardOutlineAllUnselected = false, - .keyboardDrawSpecialOutlineWhenUnselected = true, - .keyboardSecondaryLabelRightPadding = 1, - .keyboardSecondaryLabelTopPadding = 0, - .keyboardMinArrowHeadSize = 0, + .keyboardWidthPercent = 94, .popupTopOffsetRatio = 0.165f, .popupMarginX = 16, .popupMarginY = 12, @@ -92,6 +81,9 @@ class LyraTheme : public BaseTheme { const char* rightLabel = nullptr) const override; void drawTabBar(const GfxRenderer& renderer, Rect rect, const std::vector& tabs, bool selected) const override; + bool tabIndexFromPoint(const GfxRenderer& renderer, Rect rect, const std::vector& tabs, int x, int y, + int& index) const override; + int getListRowStep(bool hasSubtitle) const override; int getListPageItems(int contentHeight, bool hasSubtitle) const override; void drawList(const GfxRenderer& renderer, Rect rect, int itemCount, int selectedIndex, const std::function& rowTitle, diff --git a/src/components/themes/roundedraff/RoundedRaffTheme.cpp b/src/components/themes/roundedraff/RoundedRaffTheme.cpp index 0e609ac993..999be97fb1 100644 --- a/src/components/themes/roundedraff/RoundedRaffTheme.cpp +++ b/src/components/themes/roundedraff/RoundedRaffTheme.cpp @@ -1,6 +1,7 @@ #include "RoundedRaffTheme.h" #include +#include #include #include @@ -112,6 +113,18 @@ void RoundedRaffTheme::drawTabBar(const GfxRenderer& renderer, Rect rect, const renderer.drawLine(rect.x, rect.y + rect.height - 1, rect.x + rect.width - 1, rect.y + rect.height - 1, true); } +bool RoundedRaffTheme::tabIndexFromPoint(const GfxRenderer& renderer, const Rect rect, const std::vector& tabs, + const int x, const int y, int& index) const { + (void)renderer; + if (tabs.empty() || y < rect.y || y >= rect.y + rect.height || x < rect.x || x >= rect.x + rect.width) { + return false; + } + + const int slotWidth = std::max(1, rect.width / static_cast(tabs.size())); + index = std::min(static_cast(tabs.size()) - 1, (x - rect.x) / slotWidth); + return true; +} + void RoundedRaffTheme::drawRecentBookCover(GfxRenderer& renderer, Rect rect, const std::vector& recentBooks, const int selectorIndex, bool& coverRendered, bool& coverBufferStored, bool& bufferRestored, std::function storeCoverBuffer) const { @@ -248,57 +261,14 @@ void RoundedRaffTheme::drawTextField(const GfxRenderer& renderer, Rect rect, con renderer.drawLine(lineStart, lineY, lineStart + lineW - 1, lineY, thickness, true); } -void RoundedRaffTheme::drawKeyboardKey(const GfxRenderer& renderer, Rect rect, const char* label, const bool isSelected, - const char* secondaryLabel, const KeyboardKeyType keyType, - const bool inactiveSelection) const { - constexpr int keyRadius = 10; - const bool disabled = keyType == KeyboardKeyType::Disabled; - const bool invert = isSelected && !inactiveSelection; - - if (isSelected) { - const Color fillColor = (inactiveSelection || disabled) ? Color::LightGray : Color::Black; - renderer.fillRoundedRect(rect.x, rect.y, rect.width, rect.height, keyRadius, fillColor); - } else { - if (disabled) { - renderer.fillRoundedRect(rect.x, rect.y, rect.width, rect.height, keyRadius, Color::LightGray); - } else { - renderer.fillRoundedRect(rect.x, rect.y, rect.width, rect.height, keyRadius, Color::White); - } - renderer.drawRoundedRect(rect.x, rect.y, rect.width, rect.height, 1, keyRadius, true); - } - - if (keyType == KeyboardKeyType::Space) { - const int lineHalfWidth = rect.width * 3 / 10; - const int centerX = rect.x + rect.width / 2; - const int lineY = rect.y + rect.height / 2 + 3; - renderer.drawLine(centerX - lineHalfWidth, lineY, centerX + lineHalfWidth, lineY, 3, !invert); - return; - } - - if (keyType == KeyboardKeyType::Del) { - const int centerX = rect.x + rect.width / 2; - const int centerY = rect.y + rect.height / 2; - const int arrowLen = rect.width / 4; - const int arrowHead = std::max(1, arrowLen / 2); - renderer.drawLine(centerX - arrowLen / 2, centerY, centerX + arrowLen / 2, centerY, 3, !invert); - renderer.drawLine(centerX - arrowLen / 2, centerY, centerX - arrowLen / 2 + arrowHead, centerY - arrowHead, 3, - !invert); - renderer.drawLine(centerX - arrowLen / 2, centerY, centerX - arrowLen / 2 + arrowHead, centerY + arrowHead, 3, - !invert); - return; - } - - if (label != nullptr && label[0] != '\0') { - const int itemWidth = renderer.getTextWidth(UI_12_FONT_ID, label); - const int textX = rect.x + (rect.width - itemWidth) / 2; - const int textY = rect.y + (rect.height - renderer.getLineHeight(UI_12_FONT_ID)) / 2; - renderer.drawText(UI_12_FONT_ID, textX, textY, label, !invert); - } +int RoundedRaffTheme::getListRowStep(bool hasSubtitle) const { + const int rowHeight = + hasSubtitle ? RoundedRaffMetrics::values.listWithSubtitleRowHeight : RoundedRaffMetrics::values.listRowHeight; + return rowHeight + kSelectableRowGap; +} - if (secondaryLabel != nullptr && secondaryLabel[0] != '\0') { - const int secWidth = renderer.getTextWidth(SMALL_FONT_ID, secondaryLabel); - renderer.drawText(SMALL_FONT_ID, rect.x + rect.width - secWidth - 3, rect.y + 1, secondaryLabel, !invert); - } +int RoundedRaffTheme::getListPageItems(int contentHeight, bool hasSubtitle) const { + return std::max(1, contentHeight / getListRowStep(hasSubtitle)); } void RoundedRaffTheme::drawList(const GfxRenderer& renderer, Rect rect, int itemCount, int selectedIndex, @@ -383,6 +353,10 @@ void RoundedRaffTheme::drawList(const GfxRenderer& renderer, Rect rect, int item void RoundedRaffTheme::drawButtonHints(GfxRenderer& renderer, const char* btn1, const char* btn2, const char* btn3, const char* btn4) const { + if (gpio.hasTouch()) { + return; + } + const GfxRenderer::Orientation origOrientation = renderer.getOrientation(); renderer.setOrientation(GfxRenderer::Orientation::Portrait); diff --git a/src/components/themes/roundedraff/RoundedRaffTheme.h b/src/components/themes/roundedraff/RoundedRaffTheme.h index 316b8b05a2..d359c5059b 100644 --- a/src/components/themes/roundedraff/RoundedRaffTheme.h +++ b/src/components/themes/roundedraff/RoundedRaffTheme.h @@ -35,23 +35,12 @@ constexpr ThemeMetrics values = {.batteryWidth = 15, .progressBarMarginTop = 1, .statusBarHorizontalMargin = 5, .statusBarVerticalMargin = 19, - .keyboardKeyWidth = 22, - .keyboardKeyHeight = 30, + .keyboardKeyHeight = 36, .keyboardKeySpacing = 10, - .keyboardBottomKeyHeight = 30, - .keyboardBottomKeySpacing = 5, - .keyboardBottomAligned = true, .keyboardCenteredText = false, .keyboardVerticalOffset = 0, .keyboardTextFieldWidthPercent = 85, - .keyboardWidthPercent = 90, - .keyboardKeyCornerRadius = 10, - .keyboardFillUnselected = true, - .keyboardOutlineAllUnselected = true, - .keyboardDrawSpecialOutlineWhenUnselected = true, - .keyboardSecondaryLabelRightPadding = 3, - .keyboardSecondaryLabelTopPadding = 1, - .keyboardMinArrowHeadSize = 1, + .keyboardWidthPercent = 94, .popupTopOffsetRatio = 0.12f, .popupMarginX = 20, .popupMarginY = 14, @@ -89,6 +78,8 @@ class RoundedRaffTheme : public BaseTheme { const char* subtitle = nullptr) const override; void drawTabBar(const GfxRenderer& renderer, Rect rect, const std::vector& tabs, bool selected) const override; + bool tabIndexFromPoint(const GfxRenderer& renderer, Rect rect, const std::vector& tabs, int x, int y, + int& index) const override; void drawRecentBookCover(GfxRenderer& renderer, Rect rect, const std::vector& recentBooks, int selectorIndex, bool& coverRendered, bool& coverBufferStored, bool& bufferRestored, std::function storeCoverBuffer) const override; @@ -97,9 +88,8 @@ class RoundedRaffTheme : public BaseTheme { const std::function& rowIcon) const override; void drawTextField(const GfxRenderer& renderer, Rect rect, int textWidth, bool cursorMode = false, int contentStartX = 0, int contentWidth = 0) const override; - void drawKeyboardKey(const GfxRenderer& renderer, Rect rect, const char* label, bool isSelected, - const char* secondaryLabel = nullptr, KeyboardKeyType keyType = KeyboardKeyType::Normal, - bool inactiveSelection = false) const override; + int getListRowStep(bool hasSubtitle) const override; + int getListPageItems(int contentHeight, bool hasSubtitle) const override; void drawList(const GfxRenderer& renderer, Rect rect, int itemCount, int selectedIndex, const std::function& rowTitle, const std::function& rowSubtitle = nullptr, diff --git a/src/main.cpp b/src/main.cpp index 13ba129b32..6230caf4f6 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,4 +1,5 @@ #include +#include #include #include #include @@ -159,49 +160,6 @@ void silentRestartToReader() { ESP.restart(); } -// Verify power button press duration on wake-up from deep sleep -// Pre-condition: isWakeupByPowerButton() == true -void verifyPowerButtonDuration() { - if (SETTINGS.shortPwrBtn == CrossPointSettings::SHORT_PWRBTN::SLEEP) { - // Fast path for short press - // Needed because inputManager.isPressed() may take up to ~500ms to return the correct state - return; - } - - // Give the user up to 1000ms to start holding the power button, and must hold for SETTINGS.getPowerButtonDuration() - const auto start = millis(); - bool abort = false; - // Subtract the current time, because inputManager only starts counting the HeldTime from the first update() - // This way, we remove the time we already took to reach here from the duration, - // assuming the button was held until now from millis()==0 (i.e. device start time). - const uint16_t calibration = start; - const uint16_t calibratedPressDuration = - (calibration < SETTINGS.getPowerButtonDuration()) ? SETTINGS.getPowerButtonDuration() - calibration : 1; - - gpio.update(); - // Needed because inputManager.isPressed() may take up to ~500ms to return the correct state - while (!gpio.isPressed(HalGPIO::BTN_POWER) && millis() - start < 1000) { - delay(10); // only wait 10ms each iteration to not delay too much in case of short configured duration. - gpio.update(); - } - - t2 = millis(); - if (gpio.isPressed(HalGPIO::BTN_POWER)) { - do { - delay(10); - gpio.update(); - } while (gpio.isPressed(HalGPIO::BTN_POWER) && gpio.getPowerButtonHeldTime() < calibratedPressDuration); - abort = gpio.getPowerButtonHeldTime() < calibratedPressDuration; - } else { - abort = true; - } - - if (abort) { - // Button released too early. Returning to sleep. - // IMPORTANT: Re-arm the wakeup trigger before sleeping again - powerManager.startDeepSleep(gpio); - } -} void waitForPowerRelease() { gpio.update(); while (gpio.isPressed(HalGPIO::BTN_POWER)) { @@ -303,6 +261,8 @@ void setupDisplayAndFonts(bool seamless = false) { } void setup() { + BoardConfig::holdPowerRails(); + t1 = millis(); #ifdef ENABLE_SERIAL_LOG @@ -313,7 +273,9 @@ void setup() { // worked without the delay because USB was already enumerated. delay(250); Serial.begin(115200); +#if LOG_SERIAL_HAS_TX_TIMEOUT logSerial.setTxTimeoutMs(1); // This is a load-bearing 1. Do not modify. +#endif #endif HalSystem::begin(); @@ -357,8 +319,10 @@ void setup() { switch (wakeupReason) { case HalGPIO::WakeupReason::PowerButton: LOG_DBG("MAIN", "Verifying power button press duration"); - gpio.verifyPowerButtonWakeup(SETTINGS.getPowerButtonDuration(), - SETTINGS.shortPwrBtn == CrossPointSettings::SHORT_PWRBTN::SLEEP); + if (!gpio.verifyPowerButtonWakeup(SETTINGS.getPowerButtonDuration(), + SETTINGS.shortPwrBtn == CrossPointSettings::SHORT_PWRBTN::SLEEP)) { + powerManager.startDeepSleep(gpio); + } break; case HalGPIO::WakeupReason::AfterUSBPower: // If USB power caused a cold boot, go back to sleep @@ -485,6 +449,7 @@ void loop() { const unsigned long loopStartTime = millis(); static unsigned long lastMemPrint = 0; + gpio.setSharedConfirmPowerShortPressEmitsPower(SETTINGS.shortPwrBtn == CrossPointSettings::SHORT_PWRBTN::SLEEP); gpio.update(); halTiltSensor.update(SETTINGS.tiltPageTurn, SETTINGS.orientation, activityManager.isReaderActivity()); @@ -515,7 +480,7 @@ void loop() { // Check for any user activity (button press or release) or active background work static unsigned long lastActivityTime = millis(); - if (gpio.wasAnyPressed() || gpio.wasAnyReleased() || halTiltSensor.hadActivity() || + if (gpio.wasAnyPressed() || gpio.wasAnyReleased() || gpio.wasTouchActivity() || halTiltSensor.hadActivity() || activityManager.preventAutoSleep()) { lastActivityTime = millis(); // Reset inactivity timer powerManager.setPowerSaving(false); // Restore normal CPU frequency on user activity diff --git a/src/network/CrossPointWebServer.cpp b/src/network/CrossPointWebServer.cpp index 0c6164b252..4804ee9a0f 100644 --- a/src/network/CrossPointWebServer.cpp +++ b/src/network/CrossPointWebServer.cpp @@ -8,7 +8,6 @@ #include #include #include -#include #include #include @@ -26,6 +25,7 @@ #include "html/SettingsPageHtml.generated.h" #include "html/js/jszip_minJs.generated.h" #include "util/BookCacheUtils.h" +#include "util/TaskWatchdog.h" namespace { // Folders/files to hide from the web interface file browser @@ -132,6 +132,11 @@ void CrossPointWebServer::begin() { return; } + // Add Access-Control-Allow-* headers to every response so web-based clients + // and PWAs on other origins can use the HTTP API. Preflight OPTIONS requests + // are answered in handleNotFound(). + server->enableCORS(true); + // Setup routes LOG_DBG("WEB", "Setting up routes..."); server->on("/", HTTP_GET, [this] { handleRoot(); }); @@ -353,6 +358,22 @@ void CrossPointWebServer::handleJszip() const { } void CrossPointWebServer::handleNotFound() const { + // CORS preflight: routes are registered per-method, so OPTIONS requests land + // here. The Access-Control-Allow-* headers are added by enableCORS(). + if (server->method() == HTTP_OPTIONS) { + server->send(204, "text/plain", ""); + return; + } + + // in AP mode, redirect unmatched browser/captive-portal requests to "/" so the OS auto-opens the browser + // API requests (/api/*) still return 404 so XHR errors surface correctly + // see https://en.wikipedia.org/wiki/Captive_portal#Detection + if (apMode && !server->uri().startsWith("/api/")) { + server->sendHeader("Location", "/", true); + server->send(302, "text/plain", ""); + return; + } + String message = "404 Not Found\n\n"; message += "URI: " + server->uri() + "\n"; server->send(404, "text/plain", message); @@ -373,6 +394,8 @@ void CrossPointWebServer::handleStatus() const { char snBuf[33] = {0}; bool valid = false; +#if !CONFIG_IDF_TARGET_ESP32 + // Classic ESP32's efuse table has no USER_DATA block (C3/S3 only) if (esp_efuse_read_field_blob(ESP_EFUSE_USER_DATA, snBuf, 256) == ESP_OK) { valid = snBuf[0] != '\0' && snBuf[0] != (char)0xFF; for (int i = 0; i < 32 && snBuf[i] != '\0'; i++) { @@ -382,6 +405,7 @@ void CrossPointWebServer::handleStatus() const { } } } +#endif if (valid) { doc["serial"] = snBuf; @@ -445,8 +469,8 @@ void CrossPointWebServer::scanFiles(const char* path, const std::function(result); size_t totalWritten = 0; while (totalWritten < bytesRead) { - esp_task_wdt_reset(); + resetTaskWatchdogIfSubscribed(); size_t wrote = client.write(buffer + totalWritten, bytesRead - totalWritten); if (wrote == 0) { downloadOk = false; @@ -597,12 +621,12 @@ static size_t writeCount = 0; static bool flushUploadBuffer(CrossPointWebServer::UploadState& state) { if (state.bufferPos > 0 && state.file) { - esp_task_wdt_reset(); // Reset watchdog before potentially slow SD write + resetTaskWatchdogIfSubscribed(); // Reset watchdog before potentially slow SD write const unsigned long writeStart = millis(); const size_t written = state.file.write(state.buffer.data(), state.bufferPos); totalWriteTime += millis() - writeStart; writeCount++; - esp_task_wdt_reset(); // Reset watchdog after SD write + resetTaskWatchdogIfSubscribed(); // Reset watchdog after SD write if (written != state.bufferPos) { LOG_DBG("WEB", "[UPLOAD] Buffer flush failed: expected %d, wrote %d", state.bufferPos, written); @@ -618,7 +642,7 @@ void CrossPointWebServer::handleUpload(UploadState& state) const { static size_t lastLoggedSize = 0; // Reset watchdog at start of every upload callback - HTTP parsing can be slow - esp_task_wdt_reset(); + resetTaskWatchdogIfSubscribed(); // Safety check: ensure server is still valid if (!running || !server) { @@ -630,7 +654,7 @@ void CrossPointWebServer::handleUpload(UploadState& state) const { if (upload.status == UPLOAD_FILE_START) { // Reset watchdog - this is the critical 1% crash point - esp_task_wdt_reset(); + resetTaskWatchdogIfSubscribed(); state.fileName = upload.filename; state.size = 0; @@ -662,27 +686,26 @@ void CrossPointWebServer::handleUpload(UploadState& state) const { LOG_DBG("WEB", "[UPLOAD] START: %s to path: %s", state.fileName.c_str(), state.path.c_str()); LOG_DBG("WEB", "[UPLOAD] Free heap: %d bytes", ESP.getFreeHeap()); - // Create file path String filePath = state.path; if (!filePath.endsWith("/")) filePath += "/"; filePath += state.fileName; // Check if file already exists - SD operations can be slow - esp_task_wdt_reset(); + resetTaskWatchdogIfSubscribed(); if (Storage.exists(filePath.c_str())) { - LOG_DBG("WEB", "[UPLOAD] Overwriting existing file: %s", filePath.c_str()); - esp_task_wdt_reset(); - Storage.remove(filePath.c_str()); + state.error = "File already exists: " + state.fileName; + LOG_DBG("WEB", "[UPLOAD] Collision: %s", filePath.c_str()); + return; } // Open file for writing - this can be slow due to FAT cluster allocation - esp_task_wdt_reset(); + resetTaskWatchdogIfSubscribed(); if (!Storage.openFileForWrite("WEB", filePath, state.file)) { state.error = "Failed to create file on SD card"; LOG_DBG("WEB", "[UPLOAD] FAILED to create file: %s", filePath.c_str()); return; } - esp_task_wdt_reset(); + resetTaskWatchdogIfSubscribed(); LOG_DBG("WEB", "[UPLOAD] File created successfully: %s", filePath.c_str()); } else if (upload.status == UPLOAD_FILE_WRITE) { @@ -740,7 +763,7 @@ void CrossPointWebServer::handleUpload(UploadState& state) const { LOG_DBG("WEB", "[UPLOAD] Diagnostics: %d writes, total write time: %lu ms (%.1f%%)", writeCount, totalWriteTime, writePercent); - // Clear epub cache to prevent stale metadata issues when overwriting files + // Clear epub cache after uploading the file String filePath = state.path; if (!filePath.endsWith("/")) filePath += "/"; filePath += state.fileName; @@ -1615,29 +1638,29 @@ void CrossPointWebServer::onWebSocketEvent(uint8_t num, WStype_t type, uint8_t* wsUploadPath = wsUploadPath.substring(0, wsUploadPath.length() - 1); } - // Build file path String filePath = wsUploadPath; if (!filePath.endsWith("/")) filePath += "/"; filePath += wsUploadFileName; - LOG_DBG("WS", "Starting upload: %s (%d bytes) to %s", wsUploadFileName.c_str(), wsUploadSize, - filePath.c_str()); - - // Check if file exists and remove it - esp_task_wdt_reset(); + resetTaskWatchdogIfSubscribed(); if (Storage.exists(filePath.c_str())) { - Storage.remove(filePath.c_str()); + LOG_DBG("WS", "Upload collision: %s", filePath.c_str()); + wsServer->sendTXT(num, "ERROR:File already exists: " + wsUploadFileName); + return; } + LOG_DBG("WS", "Starting upload: %s (%d bytes) to %s", wsUploadFileName.c_str(), wsUploadSize, + filePath.c_str()); + // Open file for writing - esp_task_wdt_reset(); + resetTaskWatchdogIfSubscribed(); if (!Storage.openFileForWrite("WS", filePath, wsUploadFile)) { wsServer->sendTXT(num, "ERROR:Failed to create file"); wsUploadInProgress = false; wsUploadClientNum = 255; return; } - esp_task_wdt_reset(); + resetTaskWatchdogIfSubscribed(); // Zero-byte upload: complete immediately without waiting for BIN frames if (wsUploadSize == 0) { @@ -1676,9 +1699,9 @@ void CrossPointWebServer::onWebSocketEvent(uint8_t num, WStype_t type, uint8_t* wsServer->sendTXT(num, "ERROR:Upload overflow"); return; } - esp_task_wdt_reset(); + resetTaskWatchdogIfSubscribed(); size_t written = wsUploadFile.write(payload, length); - esp_task_wdt_reset(); + resetTaskWatchdogIfSubscribed(); if (written != length) { abortWsUpload("WS"); @@ -1712,7 +1735,7 @@ void CrossPointWebServer::onWebSocketEvent(uint8_t num, WStype_t type, uint8_t* LOG_DBG("WS", "Upload complete: %s (%d bytes in %lu ms, %.1f KB/s)", wsUploadFileName.c_str(), wsUploadSize, elapsed, kbps); - // Clear epub cache to prevent stale metadata issues when overwriting files + // Clear epub cache after uploading the file String filePath = wsUploadPath; if (!filePath.endsWith("/")) filePath += "/"; filePath += wsUploadFileName; @@ -1782,7 +1805,7 @@ void CrossPointWebServer::handleFontUploadData() { switch (upload.status) { case UPLOAD_FILE_START: { - esp_task_wdt_reset(); + resetTaskWatchdogIfSubscribed(); String family = server->arg("family"); fontUpload.file = HalFile(); fontUpload.familyName.clear(); @@ -1833,7 +1856,7 @@ void CrossPointWebServer::handleFontUploadData() { case UPLOAD_FILE_WRITE: { if (!fontUpload.valid) break; - esp_task_wdt_reset(); + resetTaskWatchdogIfSubscribed(); // Validate magic bytes on first chunk only if (!fontUpload.magicChecked && upload.currentSize >= 8) { @@ -1860,7 +1883,7 @@ void CrossPointWebServer::handleFontUploadData() { fontUpload.file.write(fontUpload.buffer.data(), fontUpload.bufferPos); fontUpload.bytesWritten += fontUpload.bufferPos; fontUpload.bufferPos = 0; - esp_task_wdt_reset(); + resetTaskWatchdogIfSubscribed(); } } break; diff --git a/src/network/HttpDownloader.cpp b/src/network/HttpDownloader.cpp index b445985085..44a5a54381 100644 --- a/src/network/HttpDownloader.cpp +++ b/src/network/HttpDownloader.cpp @@ -4,27 +4,34 @@ #include #include #include -#include -#include -#include #include #include +#if defined(FREEINK_NET_WOLFSSL) +#include + +extern "C" void wolfSSL_Arduino_Serial_Print(const char* const msg) { LOG_DBG("WOLFSSL", "%s", msg); } +#else +#include +#include +#endif + namespace { -// RX holds the response headers. 4096 fits real OPDS servers; GitHub's release -// CDN sends more and logs HTTP_HEADER "Buffer length is small", but that's -// non-fatal: the headers we read (Location, Content-Length) come first and -// survive. Smaller keeps contiguous heap free while WiFi and TLS are up. TX -// only carries our GET; the body streams in READ_CHUNK pieces. -constexpr int HTTP_RX_BUF = 4096; -constexpr int HTTP_TX_BUF = 1024; +#if !defined(FREEINK_NET_WOLFSSL) +// RX holds the response headers. Smaller buffers leave enough contiguous heap +// for mbedTLS on redirect-heavy OPDS feeds while still preserving the headers +// we read directly (Location, Content-Length). +constexpr int HTTP_RX_BUF = 2048; +constexpr int HTTP_TX_BUF = 512; +#endif // Per-socket-op timeout. Some OPDS download endpoints are slow to send headers // (>15s) and chunked catalogs stall mid-body, so 15s killed them. 60s gives // slow servers room. esp_http_client's timeout_ms is uint32, so unlike Arduino // HTTPClient's uint16 setTimeout it doesn't silently truncate. constexpr int HTTP_TIMEOUT_MS = 60000; -constexpr size_t READ_CHUNK = 2048; +constexpr size_t READ_CHUNK = 1024; +constexpr int MAX_REDIRECTS = 5; struct Sink { std::function write; // returns false to abort the transfer @@ -38,6 +45,71 @@ bool isRedirect(int status) { return status == 301 || status == 302 || status == 303 || status == 307 || status == 308; } +#if defined(FREEINK_NET_WOLFSSL) +HttpDownloader::DownloadError runGetWolf(const std::string& startUrl, const std::string& username, + const std::string& password, Sink& sink) { + std::string url = startUrl; + + for (int hop = 0; hop <= MAX_REDIRECTS; ++hop) { + freeink::SecureHttpClient http; + http.setTimeout(HTTP_TIMEOUT_MS); + http.setInsecure(); + if (!http.begin(url)) { + LOG_ERR("HTTP", "wolfSSL bad URL: %s", url.c_str()); + return HttpDownloader::HTTP_ERROR; + } + // setUserAgent replaces SecureHttpClient's built-in UA; addHeader would + // append a second User-Agent header, which strict servers reject (aiohttp + // answers 400 "Duplicate 'User-Agent' header found"). + http.setUserAgent("CrossPoint-ESP32-" CROSSPOINT_VERSION); + if (!username.empty() && !password.empty()) { + const std::string credentials = username + ":" + password; + const String encoded = base64::encode(credentials.c_str()); + http.addHeader("Authorization", std::string("Basic ") + encoded.c_str()); + } + + LOG_DBG("HTTP", "wolfSSL GET: %s", url.c_str()); + const int status = http.GET( + [&http, &sink](const uint8_t* data, size_t len) { + if (http.getStatus() != 200) return true; + if (sink.total == 0 && http.hasContentLength()) sink.total = http.getContentLength(); + if (!sink.write(data, len)) return false; + sink.downloaded += len; + if (sink.progress && sink.total > 0) sink.progress(sink.downloaded, sink.total); + return true; + }, + [&sink]() { return sink.cancelFlag && *sink.cancelFlag; }); + + if (http.aborted()) return HttpDownloader::ABORTED; + if (status < 0) { + LOG_ERR("HTTP", "wolfSSL request failed: %s", url.c_str()); + return HttpDownloader::HTTP_ERROR; + } + if (isRedirect(status)) { + const std::string location = http.getHeader("location"); + if (location.empty() || !freeink::SecureHttpClient::resolveUrl(url, location, url)) { + LOG_ERR("HTTP", "wolfSSL bad redirect: %d", status); + return HttpDownloader::HTTP_ERROR; + } + continue; + } + if (status != 200) { + LOG_ERR("HTTP", "wolfSSL unexpected status: %d", status); + return HttpDownloader::HTTP_ERROR; + } + if (http.callbackAborted()) return HttpDownloader::FILE_ERROR; + if (!http.responseComplete()) { + LOG_ERR("HTTP", "wolfSSL incomplete: got %zu of %zu bytes", sink.downloaded, sink.total); + return HttpDownloader::HTTP_ERROR; + } + return HttpDownloader::OK; + } + LOG_ERR("HTTP", "too many redirects"); + return HttpDownloader::HTTP_ERROR; +} +#endif + +#if !defined(FREEINK_NET_WOLFSSL) // Streams a GET body through sink.write in READ_CHUNK pieces. Uses the manual // open/fetch_headers/read path rather than esp_http_client_perform(): perform() // pushes the whole body through an event callback and reports a chunked body @@ -84,8 +156,9 @@ HttpDownloader::DownloadError runGet(const std::string& url, const std::string& } int64_t contentLength = esp_http_client_fetch_headers(client); int status = esp_http_client_get_status_code(client); - for (int hop = 0; isRedirect(status) && hop < 5; ++hop) { + for (int hop = 0; isRedirect(status) && hop < MAX_REDIRECTS; ++hop) { if (esp_http_client_set_redirection(client) != ESP_OK) break; + esp_http_client_close(client); err = esp_http_client_open(client, 0); if (err != ESP_OK) { LOG_ERR("HTTP", "redirect open failed: %s", esp_err_to_name(err)); @@ -141,6 +214,20 @@ HttpDownloader::DownloadError runGet(const std::string& url, const std::string& } return HttpDownloader::OK; } +#endif // !FREEINK_NET_WOLFSSL + +// All HTTP(S) fetches go through wolfSSL when it is the active TLS stack: it +// speaks TLS 1.3 and reads large bodies from servers where the esp_http_client/ +// mbedTLS path fails to connect or stalls mid-stream. Plain-http URLs still use a +// WiFiClient inside runGetWolf, so this is safe for non-TLS targets too. +HttpDownloader::DownloadError runGetSecure(const std::string& url, const std::string& username, + const std::string& password, Sink& sink) { +#if defined(FREEINK_NET_WOLFSSL) + return runGetWolf(url, username, password, sink); +#else + return runGet(url, username, password, sink); +#endif +} } // namespace bool HttpDownloader::fetchUrl(const std::string& url, Stream& outContent, const std::string& username, @@ -148,7 +235,7 @@ bool HttpDownloader::fetchUrl(const std::string& url, Stream& outContent, const LOG_DBG("HTTP", "Fetching: %s", url.c_str()); Sink sink; sink.write = [&outContent](const uint8_t* data, size_t len) { return outContent.write(data, len) == len; }; - return runGet(url, username, password, sink) == OK; + return runGetSecure(url, username, password, sink) == OK; } bool HttpDownloader::fetchUrl(const std::string& url, std::string& outContent, const std::string& username, @@ -160,7 +247,7 @@ bool HttpDownloader::fetchUrl(const std::string& url, std::string& outContent, c outContent.append(reinterpret_cast(data), len); return true; }; - return runGet(url, username, password, sink) == OK; + return runGetSecure(url, username, password, sink) == OK; } bool HttpDownloader::fetchUrl(const std::string& url, const DataCallback& onData, const std::string& username, @@ -168,7 +255,7 @@ bool HttpDownloader::fetchUrl(const std::string& url, const DataCallback& onData LOG_DBG("HTTP", "Fetching: %s", url.c_str()); Sink sink; sink.write = onData; - return runGet(url, username, password, sink) == OK; + return runGetSecure(url, username, password, sink) == OK; } HttpDownloader::DownloadError HttpDownloader::downloadToFile(const std::string& url, const std::string& destPath, @@ -190,7 +277,7 @@ HttpDownloader::DownloadError HttpDownloader::downloadToFile(const std::string& sink.cancelFlag = cancelFlag; sink.write = [&file](const uint8_t* data, size_t len) { return file.write(data, len) == len; }; - const DownloadError result = runGet(url, username, password, sink); + const DownloadError result = runGetSecure(url, username, password, sink); // Close before any remove() on the same path; DESTRUCTOR_CLOSES_FILE would // otherwise close only after the remove. file.close(); diff --git a/src/network/OtaUpdater.cpp b/src/network/OtaUpdater.cpp index 63a1903f50..3a3b49a9bc 100644 --- a/src/network/OtaUpdater.cpp +++ b/src/network/OtaUpdater.cpp @@ -2,15 +2,12 @@ // clang-format off // HttpDownloader.h pulls Arduino/SdFat, whose macros collide with lwip's -// ip4_addr.h unless seen before esp_http_client (which includes lwip). Pin this -// order; clang-format would otherwise sort the local header last and break the -// build. +// ip4_addr.h unless seen first. Pin this order; clang-format would otherwise sort +// the local header last and break the build. #include "HttpDownloader.h" #include #include -#include -#include -#include +#include #include // clang-format on @@ -18,10 +15,6 @@ namespace { constexpr char latestReleaseUrl[] = "https://api.github.com/repos/crosspoint-reader/crosspoint-reader/releases/latest"; - -esp_err_t http_client_set_header_cb(esp_http_client_handle_t http_client) { - return esp_http_client_set_header(http_client, "User-Agent", "CrossPoint-ESP32-" CROSSPOINT_VERSION); -} } // namespace OtaUpdater::OtaUpdaterError OtaUpdater::checkForUpdate() { @@ -116,44 +109,39 @@ OtaUpdater::OtaUpdaterError OtaUpdater::installUpdate(ProgressCallback onProgres return UPDATE_OLDER_ERROR; } - esp_https_ota_handle_t ota_handle = NULL; - esp_err_t esp_err; - - esp_http_client_config_t client_config = { - .url = otaUrl.c_str(), - .timeout_ms = 15000, - // 4096 holds the github->CDN redirect headers (the 512 default truncates - // them); TX only carries our GET. Both are contiguous blocks contending - // with the TLS handshake on a tight internal arena, so keep them minimal. - .buffer_size = 4096, - .buffer_size_tx = 1024, - .skip_cert_common_name_check = true, - .crt_bundle_attach = esp_crt_bundle_attach, - .keep_alive_enable = true, - }; - - esp_https_ota_config_t ota_config = { - .http_config = &client_config, - .http_client_init_cb = http_client_set_header_cb, - }; - - /* For better timing and connectivity, we disable power saving for WiFi */ - esp_wifi_set_ps(WIFI_PS_NONE); + // esp_https_ota is hardwired to esp-tls/mbedTLS, whose precompiled build on this + // package can't negotiate TLS 1.3 (see SecureClient.h). Drive the OTA partition + // ourselves and stream the firmware through HttpDownloader, which runs over + // wolfSSL when FREEINK_NET_WOLFSSL is set, reusing its redirect handling for the + // GitHub -> CDN hop. + const esp_partition_t* updatePartition = esp_ota_get_next_update_partition(nullptr); + if (!updatePartition) { + LOG_ERR("OTA", "No OTA partition available"); + return INTERNAL_UPDATE_ERROR; + } - esp_err = esp_https_ota_begin(&ota_config, &ota_handle); + esp_ota_handle_t otaHandle = 0; + esp_err_t esp_err = esp_ota_begin(updatePartition, OTA_SIZE_UNKNOWN, &otaHandle); if (esp_err != ESP_OK) { - LOG_DBG("OTA", "HTTP OTA Begin Failed: %s", esp_err_to_name(esp_err)); + LOG_ERR("OTA", "esp_ota_begin failed: %s", esp_err_to_name(esp_err)); return INTERNAL_UPDATE_ERROR; } + /* For better timing and connectivity, we disable power saving for WiFi */ + esp_wifi_set_ps(WIFI_PS_NONE); + + processedSize = 0; int lastReportedPct = -1; - do { - esp_err = esp_https_ota_perform(ota_handle); - processedSize = esp_https_ota_get_image_len_read(ota_handle); - // Fire the callback only on whole-percent change. Without this it fired - // every ~100ms perform iteration, waking the render task whose framebuffer - // work contends with TLS on the same internal arena. E-ink can't repaint - // faster than a percent tick anyway. + bool flashOk = true; + const bool fetchOk = HttpDownloader::fetchUrl(otaUrl, [&](const uint8_t* data, size_t len) { + if (esp_ota_write(otaHandle, data, len) != ESP_OK) { + flashOk = false; + return false; // abort the transfer + } + processedSize += len; + // Fire the callback only on whole-percent change. Per-chunk updates wake the + // render task, whose framebuffer work contends with TLS on the internal arena, + // and e-ink can't repaint faster than a percent tick anyway. if (onProgress && totalSize > 0) { const int pct = static_cast(static_cast(processedSize) * 100 / totalSize); if (pct != lastReportedPct) { @@ -161,27 +149,27 @@ OtaUpdater::OtaUpdaterError OtaUpdater::installUpdate(ProgressCallback onProgres onProgress(ctx); } } - delay(100); // TODO: should we replace this with something better? - } while (esp_err == ESP_ERR_HTTPS_OTA_IN_PROGRESS); + return true; + }); /* Return back to default power saving for WiFi in case of failing */ esp_wifi_set_ps(WIFI_PS_MIN_MODEM); - if (esp_err != ESP_OK) { - LOG_ERR("OTA", "esp_https_ota_perform Failed: %s", esp_err_to_name(esp_err)); - esp_https_ota_finish(ota_handle); - return HTTP_ERROR; + if (!fetchOk || !flashOk) { + LOG_ERR("OTA", "Firmware install failed (%s)", flashOk ? "download" : "flash write"); + esp_ota_abort(otaHandle); + return flashOk ? HTTP_ERROR : INTERNAL_UPDATE_ERROR; } - if (!esp_https_ota_is_complete_data_received(ota_handle)) { - LOG_ERR("OTA", "esp_https_ota_is_complete_data_received Failed: %s", esp_err_to_name(esp_err)); - esp_https_ota_finish(ota_handle); + esp_err = esp_ota_end(otaHandle); // verifies the written image + if (esp_err != ESP_OK) { + LOG_ERR("OTA", "esp_ota_end failed: %s", esp_err_to_name(esp_err)); return INTERNAL_UPDATE_ERROR; } - esp_err = esp_https_ota_finish(ota_handle); + esp_err = esp_ota_set_boot_partition(updatePartition); if (esp_err != ESP_OK) { - LOG_ERR("OTA", "esp_https_ota_finish Failed: %s", esp_err_to_name(esp_err)); + LOG_ERR("OTA", "esp_ota_set_boot_partition failed: %s", esp_err_to_name(esp_err)); return INTERNAL_UPDATE_ERROR; } diff --git a/src/network/WebDAVHandler.cpp b/src/network/WebDAVHandler.cpp index 64fa3d09ce..81ca05f71a 100644 --- a/src/network/WebDAVHandler.cpp +++ b/src/network/WebDAVHandler.cpp @@ -3,9 +3,9 @@ #include #include #include -#include #include "util/BookCacheUtils.h" +#include "util/TaskWatchdog.h" namespace { constexpr const char* HIDDEN_ITEMS[] = {"System Volume Information", "XTCache"}; @@ -84,7 +84,7 @@ void WebDAVHandler::raw(WebServer& server, const String& uri, HTTPRaw& raw) { } else if (raw.status == RAW_WRITE) { if (_putFile && _putOk) { - esp_task_wdt_reset(); + resetTaskWatchdogIfSubscribed(); size_t written = _putFile.write(raw.buf, raw.currentSize); if (written != raw.currentSize) { _putOk = false; @@ -252,7 +252,7 @@ void WebDAVHandler::handlePropfind(WebServer& s) { file.close(); yield(); - esp_task_wdt_reset(); + resetTaskWatchdogIfSubscribed(); file = root.openNextFile(); } } @@ -628,7 +628,7 @@ void WebDAVHandler::handleCopy(WebServer& s) { uint8_t buf[4096]; bool copyOk = true; while (srcFile.available()) { - esp_task_wdt_reset(); + resetTaskWatchdogIfSubscribed(); int bytesRead = srcFile.read(buf, sizeof(buf)); if (bytesRead <= 0) break; size_t written = dstFile.write(buf, bytesRead); diff --git a/src/network/html/FilesPage.html b/src/network/html/FilesPage.html index 8572b3e102..5f2ceba305 100644 --- a/src/network/html/FilesPage.html +++ b/src/network/html/FilesPage.html @@ -169,6 +169,27 @@ .modal.picker-mode { max-width: 920px; } + .modal.image-preview-mode { + max-width: 640px; + } + .image-preview-stage { + display: flex; + justify-content: center; + align-items: center; + overflow: auto; + margin-bottom: 15px; + border-radius: 6px; + } + .image-preview-stage img { + max-width: 100%; + max-height: 65vh; + object-fit: contain; + } + #imagePreviewDownload { + display: inline-block; + width: auto; + text-decoration: none; + } .picker-columns.picker-active { display: flex; flex-direction: row; @@ -1558,6 +1579,19 @@

        📤 Upload file

        +
        +
        +
        Rename from Book Metadata
        +
        Use Title - Author.epub when available
        +
        +
        + +
        +
        +
        ⚫ True-Grayscale 📏 Max 480×800px @@ -1654,7 +1688,19 @@

        📤 Upload file

        +
        + +
        +
        +
        Remember Settings
        +
        Store these upload options in this browser
        +
        +
        +
        @@ -1779,6 +1825,21 @@

        📂 Move File

        + + +